From 411f6f59bd6536d0b484fb56f71b0efa726b19c2 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Mon, 21 Jan 2019 19:29:29 +0200 Subject: [PATCH 001/350] Initial commit --- .editorconfig | 16 +++ .gitignore | 12 ++ Cargo.toml | 48 +++++++ LICENSE | 24 ++++ README.md | 21 +++ build.rs | 31 ++++ build.sh | 26 ++++ clean-chain.sh | 1 + delete-chain-folder.sh | 1 + init.sh | 16 +++ runtime/Cargo.toml | 55 ++++++++ runtime/src/lib.rs | 304 ++++++++++++++++++++++++++++++++++++++++ runtime/wasm/Cargo.toml | 58 ++++++++ runtime/wasm/build.sh | 13 ++ runtime/wasm/src | 1 + src/chain_spec.rs | 104 ++++++++++++++ src/cli.rs | 117 ++++++++++++++++ src/error.rs | 13 ++ src/main.rs | 46 ++++++ src/service.rs | 104 ++++++++++++++ start-node.sh | 1 + 21 files changed, 1012 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 build.rs create mode 100755 build.sh create mode 100755 clean-chain.sh create mode 100755 delete-chain-folder.sh create mode 100755 init.sh create mode 100644 runtime/Cargo.toml create mode 100644 runtime/src/lib.rs create mode 100644 runtime/wasm/Cargo.toml create mode 100755 runtime/wasm/build.sh create mode 120000 runtime/wasm/src create mode 100644 src/chain_spec.rs create mode 100644 src/cli.rs create mode 100644 src/error.rs create mode 100644 src/main.rs create mode 100644 src/service.rs create mode 100755 start-node.sh 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 new file mode 100644 index 0000000000..ab95a58e9f --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# Generated by Cargo +# will have compiled files and executables +**/target/ + +# Cargo lock in subs +**/Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# JetBrains IDEs +.idea \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000000..a465507bd9 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,48 @@ +[package] +name = "joystream-node" +version = "0.9.0" +authors = ["Parity Technologies "] +build = "build.rs" + +[[bin]] +name = "joystream-node" +path = "src/main.rs" + +[dependencies] +error-chain = "0.12" +futures = "0.1" +ctrlc = { version = "3.0", features = ["termination"] } +log = "0.4" +tokio = "0.1.7" +exit-future = "0.1" +parking_lot = "0.4" +hex-literal = "0.1" +slog = "^2" +parity-codec = { version = "2.1" } +trie-root = { git = "https://github.com/paritytech/trie" } +sr-io = { git = "https://github.com/paritytech/substrate" } +sr-primitives = { git = "https://github.com/paritytech/substrate" } +substrate-cli = { git = "https://github.com/paritytech/substrate" } +substrate-primitives = { git = "https://github.com/paritytech/substrate" } +substrate-executor = { git = "https://github.com/paritytech/substrate" } +substrate-service = { git = "https://github.com/paritytech/substrate" } +substrate-transaction-pool = { git = "https://github.com/paritytech/substrate" } +substrate-network = { git = "https://github.com/paritytech/substrate" } +substrate-consensus-aura = { git = "https://github.com/paritytech/substrate" } +substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false } +substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate" } +substrate-basic-authorship = { git = "https://github.com/paritytech/substrate" } +joystream-node-runtime = { path = "runtime" } +node-executor = { git = "https://github.com/paritytech/substrate" } +structopt = "0.2.13" + +[build-dependencies] +vergen = "2" + +[workspace] +members = [ "runtime" ] +exclude = [ "runtime/wasm" ] + +[profile.release] +# Substrate runtime requires unwinding. +panic = "unwind" diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000..cf1ab25da0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/README.md b/README.md new file mode 100644 index 0000000000..e6fc296521 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Joystream Substrate Node + +Joystream node built on top of Substrate. + +## Build + +```sh +./build.sh +``` + +## Start node + +```sh +./start-node.sh +``` + +## Clean chain data + +```sh +./clean-chain.sh +``` diff --git a/build.rs b/build.rs new file mode 100644 index 0000000000..ef920cc6d2 --- /dev/null +++ b/build.rs @@ -0,0 +1,31 @@ +// Copyright 2015-2018 Parity Technologies (UK) Ltd. +// This file is part of Substrate. + +// Substrate 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. + +// Substrate 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 Substrate. If not, see . + +extern crate vergen; + +use vergen::{ConstantsFlags, Vergen}; + +const ERROR_MSG: &'static str = "Failed to generate metadata files"; + +fn main() { + let vergen = Vergen::new(ConstantsFlags::all()).expect(ERROR_MSG); + + for (k, v) in vergen.build_info() { + println!("cargo:rustc-env={}={}", k.name(), v); + } + + println!("cargo:rerun-if-changed=.git/HEAD"); +} diff --git a/build.sh b/build.sh new file mode 100755 index 0000000000..edbcba835c --- /dev/null +++ b/build.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +set -e + +PROJECT_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" + +export CARGO_INCREMENTAL=0 + +bold=$(tput bold) +normal=$(tput sgr0) + +# Save current directory. +pushd . >/dev/null + +for SRC in runtime/wasm +do + echo "${bold}Building webassembly binary in $SRC...${normal}" + cd "$PROJECT_ROOT/$SRC" + + ./build.sh + + cd - >> /dev/null +done + +# Restore initial directory. +popd >/dev/null diff --git a/clean-chain.sh b/clean-chain.sh new file mode 100755 index 0000000000..7082edf665 --- /dev/null +++ b/clean-chain.sh @@ -0,0 +1 @@ +cargo run -- --dev purge-chain diff --git a/delete-chain-folder.sh b/delete-chain-folder.sh new file mode 100755 index 0000000000..4b37a44316 --- /dev/null +++ b/delete-chain-folder.sh @@ -0,0 +1 @@ +rm -rf ~/Library/Application\ Support/Substrate/chains/dev/ diff --git a/init.sh b/init.sh new file mode 100755 index 0000000000..5dde6d4241 --- /dev/null +++ b/init.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +set -e + +echo "*** Initialising WASM build environment" + +if [ -z $CI_PROJECT_NAME ] ; then + rustup update nightly + rustup update stable +fi + +rustup target add wasm32-unknown-unknown --toolchain nightly + +# Install wasm-gc. It's useful for stripping slimming down wasm binaries. +command -v wasm-gc || \ + cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml new file mode 100644 index 0000000000..b935072ea5 --- /dev/null +++ b/runtime/Cargo.toml @@ -0,0 +1,55 @@ +[package] +name = "joystream-node-runtime" +version = "0.9.0" +authors = ["Parity Technologies "] + +[dependencies] +rustc-hex = "1.0" +hex-literal = "0.1.0" +serde = { version = "1.0", default-features = false } +serde_derive = { version = "1.0", optional = true } +safe-mix = { version = "1.0", default-features = false } +parity-codec = "2.0" +parity-codec-derive = "2.0" +sr-std = { git = "https://github.com/paritytech/substrate" } +sr-io = { git = "https://github.com/paritytech/substrate" } +srml-support = { git = "https://github.com/paritytech/substrate" } +substrate-primitives = { git = "https://github.com/paritytech/substrate" } +substrate-keyring = { git = "https://github.com/paritytech/substrate" } +srml-balances = { git = "https://github.com/paritytech/substrate" } +srml-consensus = { git = "https://github.com/paritytech/substrate" } +srml-aura = { git = "https://github.com/paritytech/substrate" } +srml-executive = { git = "https://github.com/paritytech/substrate" } +srml-indices = { git = "https://github.com/paritytech/substrate" } +sr-primitives = { git = "https://github.com/paritytech/substrate" } +srml-system = { git = "https://github.com/paritytech/substrate" } +srml-timestamp = { git = "https://github.com/paritytech/substrate" } +srml-sudo = { git = "https://github.com/paritytech/substrate" } +substrate-client = { git = "https://github.com/paritytech/substrate", optional = true } +sr-version = { git = "https://github.com/paritytech/substrate" } +substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate" } + +[features] +default = ["std"] +std = [ + "parity-codec/std", + "substrate-primitives/std", + "substrate-client/std", + "sr-std/std", + "sr-io/std", + "srml-support/std", + "srml-balances/std", + "srml-executive/std", + "srml-aura/std", + "srml-indices/std", + "sr-primitives/std", + "srml-system/std", + "srml-timestamp/std", + "srml-sudo/std", + "sr-version/std", + "serde_derive", + "serde/std", + "safe-mix/std", + "substrate-client", + "substrate-consensus-aura-primitives/std", +] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs new file mode 100644 index 0000000000..4c503d9250 --- /dev/null +++ b/runtime/src/lib.rs @@ -0,0 +1,304 @@ +//! The Substrate Node Template runtime. This can be compiled with `#[no_std]`, ready for Wasm. + +#![cfg_attr(not(feature = "std"), no_std)] +#![cfg_attr(not(feature = "std"), feature(alloc))] +// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. +#![recursion_limit="256"] + +extern crate sr_std as rstd; +extern crate sr_io as runtime_io; +#[macro_use] +extern crate substrate_client as client; +#[macro_use] +extern crate srml_support; +#[macro_use] +extern crate sr_primitives as runtime_primitives; +#[cfg(feature = "std")] +#[macro_use] +extern crate serde_derive; +extern crate substrate_primitives as primitives; +extern crate parity_codec; +#[macro_use] +extern crate parity_codec_derive; +#[macro_use] +extern crate sr_version as version; +extern crate srml_system as system; +extern crate srml_executive as executive; +extern crate srml_consensus as consensus; +extern crate srml_timestamp as timestamp; +extern crate srml_balances as balances; +extern crate srml_sudo as sudo; +extern crate srml_aura as aura; +extern crate srml_indices as indices; +extern crate substrate_consensus_aura_primitives as consensus_aura; + +use rstd::prelude::*; +#[cfg(feature = "std")] +use primitives::bytes; +use primitives::{Ed25519AuthorityId, OpaqueMetadata}; +use runtime_primitives::{ + ApplyResult, transaction_validity::TransactionValidity, Ed25519Signature, generic, + traits::{self, BlakeTwo256, Block as BlockT, ProvideInherent, StaticLookup}, + BasicInherentData, CheckInherentError +}; +use client::{block_builder::api as block_builder_api, runtime_api}; +use version::RuntimeVersion; +#[cfg(feature = "std")] +use version::NativeVersion; +use consensus_aura::api as aura_api; + +// A few exports that help ease life for downstream crates. +#[cfg(any(feature = "std", test))] +pub use runtime_primitives::BuildStorage; +pub use consensus::Call as ConsensusCall; +pub use timestamp::Call as TimestampCall; +pub use balances::Call as BalancesCall; +pub use runtime_primitives::{Permill, Perbill}; +pub use timestamp::BlockPeriod; +pub use srml_support::{StorageValue, RuntimeMetadata}; + +/// Alias to Ed25519 pubkey that identifies an account on the chain. +pub type AccountId = primitives::H256; + +/// A hash of some data used by the chain. +pub type Hash = primitives::H256; + +/// Index of a block number in the chain. +pub type BlockNumber = u64; + +/// Index of an account's extrinsic in the chain. +pub type Nonce = u64; + +/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know +/// the specifics of the runtime. They can then be made to be agnostic over specific formats +/// of data like extrinsics, allowing for them to continue syncing the network through upgrades +/// to even the core datastructures. +pub mod opaque { + use super::*; + + /// Opaque, encoded, unchecked extrinsic. + #[derive(PartialEq, Eq, Clone, Default, Encode, Decode)] + #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] + pub struct UncheckedExtrinsic(#[cfg_attr(feature = "std", serde(with="bytes"))] pub Vec); + impl traits::Extrinsic for UncheckedExtrinsic { + fn is_signed(&self) -> Option { + None + } + } + /// Opaque block header type. + pub type Header = generic::Header>; + /// Opaque block type. + pub type Block = generic::Block; + /// Opaque block identifier type. + pub type BlockId = generic::BlockId; + /// Opaque session key type. + pub type SessionKey = Ed25519AuthorityId; +} + +/// This runtime version. +pub const VERSION: RuntimeVersion = RuntimeVersion { + spec_name: create_runtime_str!("joystream-node"), + impl_name: create_runtime_str!("joystream-node"), + authoring_version: 3, + spec_version: 3, + impl_version: 0, + apis: RUNTIME_API_VERSIONS, +}; + +/// The version infromation used to identify this runtime when compiled natively. +#[cfg(feature = "std")] +pub fn native_version() -> NativeVersion { + NativeVersion { + runtime_version: VERSION, + can_author_with: Default::default(), + } +} + +impl system::Trait for Runtime { + /// The identifier used to distinguish between accounts. + type AccountId = AccountId; + /// The lookup mechanism to get account ID from whatever is passed in dispatchers. + type Lookup = Indices; + /// The index type for storing how many extrinsics an account has signed. + type Index = Nonce; + /// The index type for blocks. + type BlockNumber = BlockNumber; + /// The type for hashing blocks and tries. + type Hash = Hash; + /// The hashing algorithm used. + type Hashing = BlakeTwo256; + /// The header digest type. + type Digest = generic::Digest; + /// The header type. + type Header = generic::Header; + /// The ubiquitous event type. + type Event = Event; + /// The ubiquitous log type. + type Log = Log; + /// The ubiquitous origin type. + type Origin = Origin; +} + +impl aura::Trait for Runtime { + type HandleReport = (); +} + +impl consensus::Trait for Runtime { + /// The position in the block's extrinsics that the note-offline inherent must be placed. + const NOTE_OFFLINE_POSITION: u32 = 1; + /// The identifier we use to refer to authorities. + type SessionKey = Ed25519AuthorityId; + // The aura module handles offline-reports internally + // rather than using an explicit report system. + type InherentOfflineReport = (); + /// The ubiquitous log type. + type Log = Log; +} + +impl indices::Trait for Runtime { + /// The type for recording indexing into the account enumeration. If this ever overflows, there + /// will be problems! + type AccountIndex = u32; + /// Use the standard means of resolving an index hint from an id. + type ResolveHint = indices::SimpleResolveHint; + /// Determine whether an account is dead. + type IsDeadAccount = Balances; + /// The uniquitous event type. + type Event = Event; +} + +impl timestamp::Trait for Runtime { + /// The position in the block's extrinsics that the timestamp-set inherent must be placed. + const TIMESTAMP_SET_POSITION: u32 = 0; + /// A timestamp: seconds since the unix epoch. + type Moment = u64; + type OnTimestampSet = Aura; +} + +impl balances::Trait for Runtime { + /// The type for recording an account's balance. + type Balance = u128; + /// What to do if an account's free balance gets zeroed. + type OnFreeBalanceZero = (); + /// What to do if a new account is created. + type OnNewAccount = Indices; + /// Restrict whether an account can transfer funds. We don't place any further restrictions. + type EnsureAccountLiquid = (); + /// The uniquitous event type. + type Event = Event; +} + +impl sudo::Trait for Runtime { + /// The uniquitous event type. + type Event = Event; + type Proposal = Call; +} + +construct_runtime!( + pub enum Runtime with Log(InternalLog: DigestItem) where + Block = Block, + NodeBlock = opaque::Block, + InherentData = BasicInherentData + { + System: system::{default, Log(ChangesTrieRoot)}, + Timestamp: timestamp::{Module, Call, Storage, Config, Inherent}, + Consensus: consensus::{Module, Call, Storage, Config, Log(AuthoritiesChange), Inherent}, + Aura: aura::{Module}, + Indices: indices, + Balances: balances, + Sudo: sudo, + } +); + +/// The type used as a helper for interpreting the sender of transactions. +type Context = system::ChainContext; +/// The address format for describing accounts. +type Address = ::Source; +/// Block header type as expected by this runtime. +pub type Header = generic::Header; +/// Block type as expected by this runtime. +pub type Block = generic::Block; +/// BlockId type as expected by this runtime. +pub type BlockId = generic::BlockId; +/// Unchecked extrinsic type as expected by this runtime. +pub type UncheckedExtrinsic = generic::UncheckedMortalCompactExtrinsic; +/// Extrinsic type that has already been checked. +pub type CheckedExtrinsic = generic::CheckedExtrinsic; +/// Executive: handles dispatch to the various modules. +pub type Executive = executive::Executive; + +// Implement our runtime API endpoints. This is just a bunch of proxying. +impl_runtime_apis! { + impl runtime_api::Core for Runtime { + fn version() -> RuntimeVersion { + VERSION + } + + fn authorities() -> Vec { + Consensus::authorities() + } + + fn execute_block(block: Block) { + Executive::execute_block(block) + } + + fn initialise_block(header: ::Header) { + Executive::initialise_block(&header) + } + } + + impl runtime_api::Metadata for Runtime { + fn metadata() -> OpaqueMetadata { + Runtime::metadata().into() + } + } + + impl block_builder_api::BlockBuilder for Runtime { + fn apply_extrinsic(extrinsic: ::Extrinsic) -> ApplyResult { + Executive::apply_extrinsic(extrinsic) + } + + fn finalise_block() -> ::Header { + Executive::finalise_block() + } + + fn inherent_extrinsics(data: BasicInherentData) -> Vec<::Extrinsic> { + let mut inherent = Vec::new(); + + inherent.extend( + Timestamp::create_inherent_extrinsics(data.timestamp) + .into_iter() + .map(|v| (v.0, UncheckedExtrinsic::new_unsigned(Call::Timestamp(v.1)))) + ); + + inherent.extend( + Consensus::create_inherent_extrinsics(data.consensus) + .into_iter() + .map(|v| (v.0, UncheckedExtrinsic::new_unsigned(Call::Consensus(v.1)))) + ); + + inherent.as_mut_slice().sort_unstable_by_key(|v| v.0); + inherent.into_iter().map(|v| v.1).collect() + } + + fn check_inherents(block: Block, data: BasicInherentData) -> Result<(), CheckInherentError> { + Runtime::check_inherents(block, data) + } + + fn random_seed() -> ::Hash { + System::random_seed() + } + } + + impl runtime_api::TaggedTransactionQueue for Runtime { + fn validate_transaction(tx: ::Extrinsic) -> TransactionValidity { + Executive::validate_transaction(tx) + } + } + + impl aura_api::AuraApi for Runtime { + fn slot_duration() -> u64 { + Aura::slot_duration() + } + } +} diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml new file mode 100644 index 0000000000..870910544b --- /dev/null +++ b/runtime/wasm/Cargo.toml @@ -0,0 +1,58 @@ +[package] +name = "joystream-node-runtime" +version = "0.9.0" +authors = ["Parity Technologies "] + +[lib] +crate-type = ["cdylib"] + +[dependencies] +integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git" } +safe-mix = { version = "1.0", default-features = false} +parity-codec-derive = { version = "^2.1" } +parity-codec = { version = "^2.1", default-features = false } +substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false } +substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false } +sr-std = { git = "https://github.com/paritytech/substrate", default-features = false } +sr-io = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-support = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-balances = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-consensus = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-executive = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-aura = { git = "https://github.com/paritytech/substrate", default-features = false } +sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-system = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-indices = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false } +srml-sudo = { git = "https://github.com/paritytech/substrate", default-features = false } +sr-version = { git = "https://github.com/paritytech/substrate", default-features = false } +substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", default-features = false } + +[features] +default = [] +std = [ + "safe-mix/std", + "parity-codec/std", + "substrate-primitives/std", + "substrate-client/std", + "sr-std/std", + "sr-io/std", + "srml-support/std", + "srml-balances/std", + "srml-consensus/std", + "srml-executive/std", + "srml-aura/std", + "sr-primitives/std", + "srml-indices/std", + "srml-system/std", + "srml-timestamp/std", + "srml-sudo/std", + "sr-version/std", +] + +[profile.release] +panic = "abort" +lto = true + +[workspace] +members = [] diff --git a/runtime/wasm/build.sh b/runtime/wasm/build.sh new file mode 100755 index 0000000000..c8d051512d --- /dev/null +++ b/runtime/wasm/build.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +set -e + +if cargo --version | grep -q "nightly"; then + CARGO_CMD="cargo" +else + CARGO_CMD="cargo +nightly" +fi +$CARGO_CMD build --target=wasm32-unknown-unknown --release +for i in joystream_node_runtime +do + wasm-gc target/wasm32-unknown-unknown/release/$i.wasm target/wasm32-unknown-unknown/release/$i.compact.wasm +done diff --git a/runtime/wasm/src b/runtime/wasm/src new file mode 120000 index 0000000000..5cd551cf26 --- /dev/null +++ b/runtime/wasm/src @@ -0,0 +1 @@ +../src \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs new file mode 100644 index 0000000000..19eea0612d --- /dev/null +++ b/src/chain_spec.rs @@ -0,0 +1,104 @@ +use primitives::{Ed25519AuthorityId, ed25519}; +use joystream_node_runtime::{ + AccountId, GenesisConfig, ConsensusConfig, TimestampConfig, BalancesConfig, + SudoConfig, IndicesConfig +}; +use substrate_service; + +// Note this is the URL for the telemetry server +//const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; + +/// Specialised `ChainSpec`. This is a specialisation 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, +} + +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![ + ed25519::Pair::from_seed(b"Alice ").public().into(), + ], vec![ + ed25519::Pair::from_seed(b"Alice ").public().0.into(), + ], + ed25519::Pair::from_seed(b"Alice ").public().0.into() + ), + vec![], + None, + None, + None, + None + ), + Alternative::LocalTestnet => ChainSpec::from_genesis( + "Local Testnet", + "local_testnet", + || testnet_genesis(vec![ + ed25519::Pair::from_seed(b"Alice ").public().into(), + ed25519::Pair::from_seed(b"Bob ").public().into(), + ], vec![ + ed25519::Pair::from_seed(b"Alice ").public().0.into(), + ed25519::Pair::from_seed(b"Bob ").public().0.into(), + ed25519::Pair::from_seed(b"Charlie ").public().0.into(), + ed25519::Pair::from_seed(b"Dave ").public().0.into(), + ed25519::Pair::from_seed(b"Eve ").public().0.into(), + ed25519::Pair::from_seed(b"Ferdie ").public().0.into(), + ], + ed25519::Pair::from_seed(b"Alice ").public().0.into() + ), + vec![], + None, + None, + None, + None + ), + }) + } + + pub(crate) fn from(s: &str) -> Option { + match s { + "dev" => Some(Alternative::Development), + "local" => Some(Alternative::LocalTestnet), + _ => None, + } + } +} + +fn testnet_genesis(initial_authorities: Vec, endowed_accounts: Vec, root_key: AccountId) -> GenesisConfig { + GenesisConfig { + consensus: Some(ConsensusConfig { + code: include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime.compact.wasm").to_vec(), + authorities: initial_authorities.clone(), + }), + system: None, + timestamp: Some(TimestampConfig { + period: 5, // 5 second block time. + }), + indices: Some(IndicesConfig { + ids: endowed_accounts.clone(), + }), + balances: Some(BalancesConfig { + transaction_base_fee: 1, + transaction_byte_fee: 0, + existential_deposit: 500, + transfer_fee: 0, + creation_fee: 0, + balances: endowed_accounts.iter().map(|&k|(k, (1 << 60))).collect(), + }), + sudo: Some(SudoConfig { + key: root_key, + }), + } +} diff --git a/src/cli.rs b/src/cli.rs new file mode 100644 index 0000000000..3f3398d7ad --- /dev/null +++ b/src/cli.rs @@ -0,0 +1,117 @@ +use service; +use futures::{future, Future, sync::oneshot}; +use std::cell::RefCell; +use tokio::runtime::Runtime; +pub use substrate_cli::{VersionInfo, IntoExit, error}; +use substrate_cli::{Action, informant, parse_matches, execute_default, CoreParams}; +use substrate_service::{ServiceFactory, Roles as ServiceRoles}; +use chain_spec; +use std::ops::Deref; +use structopt::StructOpt; + +/// Extend params for Node +#[derive(Debug, StructOpt)] +pub struct NodeParams { + /// Should run as a GRANDPA authority node + #[structopt(long = "grandpa-authority", help = "Run Node as a GRANDPA authority, implies --validator")] + grandpa_authority: bool, + + /// Should run as a GRANDPA authority node only + #[structopt(long = "grandpa-authority-only", help = "Run Node as a GRANDPA authority only, don't as a usual validator, implies --grandpa-authority")] + grandpa_authority_only: bool, + + #[structopt(flatten)] + core: CoreParams +} + +/// 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, +{ + let full_version = substrate_service::config::full_version_from_strs( + version.version, + version.commit + ); + + let matches = match NodeParams::clap() + .name(version.executable_name) + .author(version.author) + .about(version.description) + .version(&(full_version + "\n")[..]) + .get_matches_from_safe(args) { + Ok(m) => m, + Err(e) => e.exit(), + }; + + let (spec, config) = parse_matches::( + load_spec, version, "substrate-node", &matches + )?; + + match execute_default::(spec, exit, &matches, &config)? { + Action::ExecutedInternally => (), + Action::RunService(exit) => { + info!("Substrate Node"); + info!(" version {}", config.full_version()); + info!(" by Parity Technologies, 2017, 2018"); + info!("Chain specification: {}", config.chain_spec.name()); + info!("Node name: {}", config.name); + info!("Roles: {:?}", config.roles); + let mut runtime = Runtime::new()?; + let executor = runtime.executor(); + match config.roles == ServiceRoles::LIGHT { + true => run_until_exit(&mut runtime, service::Factory::new_light(config, executor)?, exit)?, + false => run_until_exit(&mut runtime, service::Factory::new_full(config, executor)?, exit)?, + } + } + } + + Ok(()) +} + +fn load_spec(id: &str) -> Result, String> { + Ok(match chain_spec::Alternative::from(id) { + Some(spec) => Some(spec.load()?), + None => None, + }) +} + +fn run_until_exit( + runtime: &mut Runtime, + service: T, + e: E, +) -> error::Result<()> + where + T: Deref>, + C: substrate_service::Components, + E: IntoExit, +{ + let (exit_send, exit) = exit_future::signal(); + + let executor = runtime.executor(); + informant::start(&service, exit.clone(), executor.clone()); + + let _ = runtime.block_on(e.into_exit()); + exit_send.fire(); + Ok(()) +} + +// handles ctrl-c +pub struct Exit; +impl IntoExit for Exit { + type Exit = future::MapErr, fn(oneshot::Canceled) -> ()>; + fn into_exit(self) -> Self::Exit { + // can't use signal directly here because CtrlC takes only `Fn`. + let (exit_send, exit) = oneshot::channel(); + + let exit_send_cell = RefCell::new(Some(exit_send)); + ctrlc::set_handler(move || { + if let Some(exit_send) = exit_send_cell.try_borrow_mut().expect("signal handler not reentrant; qed").take() { + exit_send.send(()).expect("Error sending exit notification"); + } + }).expect("Error setting Ctrl-C handler"); + + exit.map_err(drop) + } +} diff --git a/src/error.rs b/src/error.rs new file mode 100644 index 0000000000..a8aa94bf32 --- /dev/null +++ b/src/error.rs @@ -0,0 +1,13 @@ +//! Initialization errors. + +use client; + +error_chain! { + foreign_links { + Io(::std::io::Error) #[doc="IO error"]; + Cli(::clap::Error) #[doc="CLI error"]; + } + links { + Client(client::error::Error, client::error::ErrorKind) #[doc="Client error"]; + } +} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000000..7e1e62b445 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,46 @@ +//! Substrate Node Template CLI library. + +#![warn(missing_docs)] +#![warn(unused_extern_crates)] + +extern crate futures; +#[macro_use] +extern crate error_chain; +extern crate tokio; +#[macro_use] +extern crate log; +extern crate substrate_cli; +extern crate substrate_primitives as primitives; +extern crate substrate_consensus_aura as consensus; +extern crate substrate_client as client; +#[macro_use] +extern crate substrate_network as network; +#[macro_use] +extern crate substrate_executor; +extern crate substrate_transaction_pool as transaction_pool; +extern crate substrate_basic_authorship as basic_authorship; +#[macro_use] +extern crate substrate_service; +extern crate joystream_node_runtime; +extern crate structopt; +extern crate node_executor; +extern crate sr_primitives as runtime_primitives; + +mod chain_spec; +mod service; +mod cli; + +pub use substrate_cli::{VersionInfo, IntoExit, error}; + +fn run() -> cli::error::Result<()> { + let version = VersionInfo { + commit: env!("VERGEN_SHA_SHORT"), + version: env!("CARGO_PKG_VERSION"), + executable_name: "joystream-node", + author: "jsgenesis", + description: "joystream-node", + }; + cli::run(::std::env::args(), cli::Exit, version) +} + +quick_main!(run); diff --git a/src/service.rs b/src/service.rs new file mode 100644 index 0000000000..3815a27587 --- /dev/null +++ b/src/service.rs @@ -0,0 +1,104 @@ +//! Service and ServiceFactory implementation. Specialized wrapper over Substrate service. + +#![warn(unused_extern_crates)] + +use std::sync::Arc; +use transaction_pool::{self, txpool::{Pool as TransactionPool}}; +use joystream_node_runtime::{self, GenesisConfig, opaque::Block, RuntimeApi}; +use substrate_service::{ + FactoryFullConfiguration, LightComponents, FullComponents, FullBackend, + FullClient, LightClient, LightBackend, FullExecutor, LightExecutor, + TaskExecutor, +}; +use basic_authorship::ProposerFactory; +use node_executor; +use consensus::{import_queue, start_aura, AuraImportQueue, SlotDuration, NothingExtra}; +use client; +use primitives::ed25519::Pair; +use runtime_primitives::BasicInherentData as InherentData; + +pub use substrate_executor::NativeExecutor; +// Our native executor instance. +native_executor_instance!( + pub Executor, + joystream_node_runtime::api::dispatch, + joystream_node_runtime::native_version, + include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime.compact.wasm") +); + +construct_simple_protocol! { + /// Demo protocol attachment for substrate. + pub struct NodeProtocol where Block = Block { } +} + +construct_service_factory! { + struct Factory { + Block = Block, + RuntimeApi = RuntimeApi, + NetworkProtocol = NodeProtocol { |config| Ok(NodeProtocol::new()) }, + RuntimeDispatch = node_executor::Executor, + FullTransactionPoolApi = transaction_pool::ChainApi, FullExecutor, Block, RuntimeApi>, Block> + { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, + LightTransactionPoolApi = transaction_pool::ChainApi, LightExecutor, Block, RuntimeApi>, Block> + { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, + Genesis = GenesisConfig, + Configuration = (), + FullService = FullComponents + { |config: FactoryFullConfiguration, executor: TaskExecutor| + FullComponents::::new(config, executor) + }, + AuthoritySetup = { + |service: Self::FullService, executor: TaskExecutor, key: Option>| { + if let Some(key) = key { + info!("Using authority key {}", key.public()); + let proposer = Arc::new(ProposerFactory { + client: service.client(), + transaction_pool: service.transaction_pool(), + }); + let client = service.client(); + executor.spawn(start_aura( + SlotDuration::get_or_compute(&*client)?, + key.clone(), + client.clone(), + client, + proposer, + service.network(), + service.on_exit(), + )); + } + + Ok(service) + } + }, + LightService = LightComponents + { |config, executor| >::new(config, executor) }, + FullImportQueue = AuraImportQueue< + Self::Block, + FullClient, + NothingExtra, + ::consensus::InherentProducingFn, + > + { |config: &mut FactoryFullConfiguration , client: Arc>| + Ok(import_queue( + SlotDuration::get_or_compute(&*client)?, + client, + NothingExtra, + ::consensus::make_basic_inherent as _, + )) + }, + LightImportQueue = AuraImportQueue< + Self::Block, + LightClient, + NothingExtra, + ::consensus::InherentProducingFn, + > + { |ref mut config, client: Arc>| + Ok(import_queue( + SlotDuration::get_or_compute(&*client)?, + client, + NothingExtra, + ::consensus::make_basic_inherent as _, + )) + }, + } +} diff --git a/start-node.sh b/start-node.sh new file mode 100755 index 0000000000..ff8ac74182 --- /dev/null +++ b/start-node.sh @@ -0,0 +1 @@ +./target/release/joystream-node --dev From 4d875c0015dfb41a77154a556237669550fa3b5a Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Mon, 21 Jan 2019 21:57:11 +0200 Subject: [PATCH 002/350] Add init.sh script and improve readme --- README.md | 15 ++++++++++++++- init-wasm.sh | 16 ++++++++++++++++ init.sh | 17 +++++------------ 3 files changed, 35 insertions(+), 13 deletions(-) create mode 100755 init-wasm.sh diff --git a/README.md b/README.md index e6fc296521..1f62300da1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,18 @@ Joystream node built on top of Substrate. -## Build +## Initial setup + +Call this script once. It will init WASM environment and build a node. +It will take some time (tens of minutes), so be patient. + +```sh +./init.sh +``` + +## Build runtime + +Call this script every time you updated a runtime, before restarting a node. ```sh ./build.sh @@ -16,6 +27,8 @@ Joystream node built on top of Substrate. ## Clean chain data +It's a good practice to clean chain data after a runtime updated and you are about to restart a node. + ```sh ./clean-chain.sh ``` diff --git a/init-wasm.sh b/init-wasm.sh new file mode 100755 index 0000000000..5dde6d4241 --- /dev/null +++ b/init-wasm.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +set -e + +echo "*** Initialising WASM build environment" + +if [ -z $CI_PROJECT_NAME ] ; then + rustup update nightly + rustup update stable +fi + +rustup target add wasm32-unknown-unknown --toolchain nightly + +# Install wasm-gc. It's useful for stripping slimming down wasm binaries. +command -v wasm-gc || \ + cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force diff --git a/init.sh b/init.sh index 5dde6d4241..69c17dffc8 100755 --- a/init.sh +++ b/init.sh @@ -1,16 +1,9 @@ #!/usr/bin/env bash -set -e +echo "Initialising webassembly build environment..." +./init-wasm.sh 2>/dev/null >/dev/null -echo "*** Initialising WASM build environment" +./build.sh -if [ -z $CI_PROJECT_NAME ] ; then - rustup update nightly - rustup update stable -fi - -rustup target add wasm32-unknown-unknown --toolchain nightly - -# Install wasm-gc. It's useful for stripping slimming down wasm binaries. -command -v wasm-gc || \ - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force +echo "Building node..." +cargo build --release From 010bf9ef9e86e91e32b88f76462c9fec60846adf Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Mon, 21 Jan 2019 22:04:25 +0200 Subject: [PATCH 003/350] Remove license file --- LICENSE | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 LICENSE diff --git a/LICENSE b/LICENSE deleted file mode 100644 index cf1ab25da0..0000000000 --- a/LICENSE +++ /dev/null @@ -1,24 +0,0 @@ -This is free and unencumbered software released into the public domain. - -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. - -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -For more information, please refer to From 480fc7e36600d24d38bf5727d28b5a6e075353e3 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 22 Jan 2019 14:16:36 +0200 Subject: [PATCH 004/350] Update a signature of fn initialise_block() due to latest changes in Substrate --- runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 4c503d9250..c579722477 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -242,8 +242,8 @@ impl_runtime_apis! { Executive::execute_block(block) } - fn initialise_block(header: ::Header) { - Executive::initialise_block(&header) + fn initialise_block(header: &::Header) { + Executive::initialise_block(header) } } From 8bba7cb7fe9e4fd135cdb0d56cd3d568828776f7 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 22 Jan 2019 14:41:49 +0200 Subject: [PATCH 005/350] Fixes related to latest API change --- src/cli.rs | 6 +++--- src/main.rs | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 3f3398d7ad..cdbdd02071 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -46,15 +46,15 @@ pub fn run(args: I, exit: E, version: VersionInfo) -> error::Result<()> }; let (spec, config) = parse_matches::( - load_spec, version, "substrate-node", &matches + load_spec, &version, "substrate-node", &matches )?; match execute_default::(spec, exit, &matches, &config)? { Action::ExecutedInternally => (), Action::RunService(exit) => { - info!("Substrate Node"); + info!("{}", version.name); info!(" version {}", config.full_version()); - info!(" by Parity Technologies, 2017, 2018"); + info!(" by {}, 2018, 2019", version.author); info!("Chain specification: {}", config.chain_spec.name()); info!("Node name: {}", config.name); info!("Roles: {:?}", config.roles); diff --git a/src/main.rs b/src/main.rs index 7e1e62b445..d19dcf2a89 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,11 +34,12 @@ pub use substrate_cli::{VersionInfo, IntoExit, error}; fn run() -> cli::error::Result<()> { let version = VersionInfo { + name: "Joystream Node", commit: env!("VERGEN_SHA_SHORT"), version: env!("CARGO_PKG_VERSION"), executable_name: "joystream-node", - author: "jsgenesis", - description: "joystream-node", + author: "Jsgenesis", + description: "Joystream Node", }; cli::run(::std::env::args(), cli::Exit, version) } From 18d57e3926335be54912de05e8749110b2957812 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 24 Jan 2019 12:28:05 +0200 Subject: [PATCH 006/350] Initial stubs for proposals module --- runtime/src/lib.rs | 46 ++--- runtime/src/proposals.rs | 372 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 390 insertions(+), 28 deletions(-) create mode 100644 runtime/src/proposals.rs diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index c579722477..9d4992caaa 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -38,10 +38,12 @@ use primitives::bytes; use primitives::{Ed25519AuthorityId, OpaqueMetadata}; use runtime_primitives::{ ApplyResult, transaction_validity::TransactionValidity, Ed25519Signature, generic, - traits::{self, BlakeTwo256, Block as BlockT, ProvideInherent, StaticLookup}, - BasicInherentData, CheckInherentError + traits::{self, BlakeTwo256, Block as BlockT, StaticLookup, Extrinsic}, +}; +use client::{ + block_builder::api::{CheckInherentsResult, InherentData, self as block_builder_api}, + runtime_api }; -use client::{block_builder::api as block_builder_api, runtime_api}; use version::RuntimeVersion; #[cfg(feature = "std")] use version::NativeVersion; @@ -57,6 +59,8 @@ pub use runtime_primitives::{Permill, Perbill}; pub use timestamp::BlockPeriod; pub use srml_support::{StorageValue, RuntimeMetadata}; +mod proposals; + /// Alias to Ed25519 pubkey that identifies an account on the chain. pub type AccountId = primitives::H256; @@ -144,8 +148,6 @@ impl aura::Trait for Runtime { } impl consensus::Trait for Runtime { - /// The position in the block's extrinsics that the note-offline inherent must be placed. - const NOTE_OFFLINE_POSITION: u32 = 1; /// The identifier we use to refer to authorities. type SessionKey = Ed25519AuthorityId; // The aura module handles offline-reports internally @@ -168,8 +170,6 @@ impl indices::Trait for Runtime { } impl timestamp::Trait for Runtime { - /// The position in the block's extrinsics that the timestamp-set inherent must be placed. - const TIMESTAMP_SET_POSITION: u32 = 0; /// A timestamp: seconds since the unix epoch. type Moment = u64; type OnTimestampSet = Aura; @@ -194,11 +194,15 @@ impl sudo::Trait for Runtime { type Proposal = Call; } +impl proposals::Trait for Runtime { + type Event = Event; +} + construct_runtime!( pub enum Runtime with Log(InternalLog: DigestItem) where Block = Block, NodeBlock = opaque::Block, - InherentData = BasicInherentData + UncheckedExtrinsic = UncheckedExtrinsic { System: system::{default, Log(ChangesTrieRoot)}, Timestamp: timestamp::{Module, Call, Storage, Config, Inherent}, @@ -207,6 +211,7 @@ construct_runtime!( Indices: indices, Balances: balances, Sudo: sudo, + Proposals: proposals::{Module, Call, Storage, Event}, } ); @@ -253,7 +258,7 @@ impl_runtime_apis! { } } - impl block_builder_api::BlockBuilder for Runtime { + impl block_builder_api::BlockBuilder for Runtime { fn apply_extrinsic(extrinsic: ::Extrinsic) -> ApplyResult { Executive::apply_extrinsic(extrinsic) } @@ -262,27 +267,12 @@ impl_runtime_apis! { Executive::finalise_block() } - fn inherent_extrinsics(data: BasicInherentData) -> Vec<::Extrinsic> { - let mut inherent = Vec::new(); - - inherent.extend( - Timestamp::create_inherent_extrinsics(data.timestamp) - .into_iter() - .map(|v| (v.0, UncheckedExtrinsic::new_unsigned(Call::Timestamp(v.1)))) - ); - - inherent.extend( - Consensus::create_inherent_extrinsics(data.consensus) - .into_iter() - .map(|v| (v.0, UncheckedExtrinsic::new_unsigned(Call::Consensus(v.1)))) - ); - - inherent.as_mut_slice().sort_unstable_by_key(|v| v.0); - inherent.into_iter().map(|v| v.1).collect() + fn inherent_extrinsics(data: InherentData) -> Vec<::Extrinsic> { + data.create_extrinsics() } - fn check_inherents(block: Block, data: BasicInherentData) -> Result<(), CheckInherentError> { - Runtime::check_inherents(block, data) + fn check_inherents(block: Block, data: InherentData) -> CheckInherentsResult { + data.check_extrinsics(&block) } fn random_seed() -> ::Hash { diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs new file mode 100644 index 0000000000..67d265c6b0 --- /dev/null +++ b/runtime/src/proposals.rs @@ -0,0 +1,372 @@ +use parity_codec::Encode; +use srml_support::{StorageValue, StorageMap, dispatch::Result}; +use runtime_primitives::traits::{As, Hash, Zero, CheckedAdd}; +use runtime_io::print; +use {balances, system::{self, ensure_signed}}; +use rstd::prelude::*; +use rstd::cmp; + +const VOTING_PERIOD_IN_DAYS: u64 = 10; +const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; + +// TODO delete deprecated +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] +pub struct Proposal { + id: Hash, + name: Vec, + dna: Hash, + price: Balance, + gen: u64, +} + +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] +pub struct RuntimeUpdateProposal { + id: Hash, + proposer: AccountId, + stake: Balance, + name: Vec, + description: Vec, + wasm_hash: Hash, + proposed_on: BlockNumber, +} + +pub trait Trait: balances::Trait + timestamp::Trait { + /// The overarching event type. + type Event: From> + Into<::Event>; +} + +decl_event!( + pub enum Event + where + ::AccountId, + ::Hash, + ::Balance + { + // New events + + /// Params: + /// * Account id of a member who proposed. + /// * Id of a newly created proposal after it was saved in storage. + ProposalCreated(AccountId, Hash), + ProposalCanceled(AccountId, Hash), + ProposalApproved(Hash), + + /// Params: + /// * Account id of a council member. + /// * Id of a proposal. + // TODO Add vote_kind: Approve, Reject, ... + Voted(AccountId, Hash), + + // TODO delete next events (copied from kitties) + + PriceSet(AccountId, Hash, Balance), + Transferred(AccountId, AccountId, Hash), + Bought(AccountId, AccountId, Hash, Balance), + } +); + +decl_storage! { + trait Store for Module as Proposals { + + // Parameters: + + /// The percentage (up to 100) of the council participants + /// which must vote affirmatively in order for it to pass. + ApprovalQuorum get(approval_quorum): u32 = 60; + + /// Minimum balance amount to be staked in order to make a proposal. + MinimumStake get(minimum_stake): T::Balance = T::Balance::sa(100); + + /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. + CancellationFee get(cancellation_fee): T::Balance = T::Balance::sa(10); + + /// Max duration of proposal in blocks until it will be expired if not enough votes. + VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa( + VOTING_PERIOD_IN_SECS / >::block_period().as_() + ); + + // Persistent state (always relevant, changes constantly): + + Proposals get(proposal): map T::Hash => Proposal; + ProposalOwner get(owner_of): map T::Hash => Option; + + AllProposalsArray get(proposal_by_index): map u64 => T::Hash; + AllProposalsCount get(all_proposals_count): u64; + AllProposalsIndex: map T::Hash => u64; + + OwnedProposalsArray get(proposal_of_owner_by_index): map (T::AccountId, u64) => T::Hash; + OwnedProposalsCount get(owned_proposal_count): map T::AccountId => u64; + OwnedProposalsIndex: map T::Hash => u64; + + // TODO add Votes. see democracy module + + // TODO get rid of nonce? yes + Nonce: u64; + } +} + +decl_module! { + pub struct Module for enum Call where origin: T::Origin { + + fn deposit_event() = default; + + // TODO see srml/democracy/src/lib.rs:92 + fn create_proposal( + origin, + stake: T::Balance, + name: Vec, + description: Vec, + wasm_hash: T::Hash + ) -> Result { + + let sender = ensure_signed(origin)?; + let nonce = >::get(); + + ensure!(stake >= Self::minimum_stake(), "Stake is too small"); + + // TODO use incremented idx for proposal, see srml/democracy/src/lib.rs:103 + // TODO or this: srml/treasury/src/lib.rs:86 + let random_hash = (>::random_seed(), &sender, nonce) + .using_encoded(::Hashing::hash); + + let new_proposal = Proposal { + id: random_hash, + name: name, + dna: random_hash, + price: >::sa(0), + gen: 0, + }; + + >::reserve(&sender, stake) + .map_err(|_| "Proposer's balance too low")?; + + Self::deposit_event(RawEvent::ProposalCreated(sender.clone(), random_hash)); + + // TODO throw event: StakeLocked ? + + Self::_create_proposal(sender, random_hash, new_proposal)?; + + >::mutate(|n| *n += 1); + + Ok(()) + } + + /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. + fn cancel_proposal(origin, proposal_id: T::Hash) -> Result { + let sender = ensure_signed(origin)?; + + ensure!(>::exists(proposal_id), "This proposal does not exist"); + + let proposal = Self::proposal(proposal_id); + // let proposer = proposal.proposer; + // ensure!(proposer == sender, "You do not own this proposal"); + + // TODO check that sender created this proposal + + // TODO delete proposal or mark it as canceled. + + // TODO spend some minimum fee on proposer's balance for canceling a proposal + // TODO uncomment when using new type for Runtime Update proposals: + let fee = Self::cancellation_fee(); +// let _ = >::slash_reserved(&proposer, fee); + + // TODO return unspent part of remaining staked deposit (after taking some fee) + // TODO uncomment when using new type for Runtime Update proposals: +// let left_stake = proposal.stake - cancellation_fee; +// let _ = >::unreserve(&proposer, left_stake); + + Self::deposit_event(RawEvent::ProposalCanceled(sender, proposal_id)); + + Ok(()) + } + + /// Reject a proposal. The staked deposit will be slashed. + fn _reject_proposal(proposal_id: T::Hash) { + ensure!(>::exists(proposal_id), "No proposal at that index"); + let proposal = Self::proposal(proposal_id); + + // TODO uncomment when using new type for Runtime Update proposals: +// let _ = >::slash_reserved(&proposal.proposer, proposal.stake); + } + + /// Approve a proposal. The staked deposit will be returned. + fn _approve_proposal(proposal_id: T::Hash) { + ensure!(>::exists(proposal_id), "No proposal at that index"); + let proposal = Self::proposal(proposal_id); + + // TODO think on this line (copied from Substrate) +// >::mutate(|v| v.push(proposal_id)); + + // Return staked deposit + // TODO uncomment when using new type for Runtime Update proposals: +// let _ = >::unreserve(&proposal.proposer, proposal.stake); + } + + fn run_update(origin, proposal_id: T::Hash, wasm_code: Vec) -> Result { + + // TODO compare hash of wasm code with a hash from approved proposal. + // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 + let code_hash = T::Hashing::hash(&wasm_code); + + // TODO run software update here + + // TODO throw event: RuntimeUpdated(proposal_id, wasm_hash) + + // TODO return locked stake to proposer's balance + + // TODO throw event: StakeUnlocked + + Ok(()) + } + + fn on_finalise(n: T::BlockNumber) { + if let Err(e) = Self::end_block(n) { + print(e); + } + } + + // TODO copy-pasted + fn buy_proposal(origin, proposal_id: T::Hash, max_price: T::Balance) -> Result { + let sender = ensure_signed(origin)?; + + ensure!(>::exists(proposal_id), "This proposal does not exist"); + + let owner = match Self::owner_of(proposal_id) { + Some(o) => o, + None => return Err("No owner for this proposal"), + }; + ensure!(owner != sender, "You can't buy your own proposal"); + + let mut proposal = Self::proposal(proposal_id); + + let proposal_price = proposal.price; + ensure!(!proposal_price.is_zero(), "The proposal you want to buy is not for sale"); + ensure!(proposal_price <= max_price, "The proposal you want to buy costs more than your max price"); + + // TODO: This payment logic needs to be updated + >::decrease_free_balance(&sender, proposal_price)?; + >::increase_free_balance_creating(&owner, proposal_price); + + Self::_transfer_from(owner.clone(), sender.clone(), proposal_id)?; + + proposal.price = >::sa(0); + >::insert(proposal_id, proposal); + + Self::deposit_event(RawEvent::Bought(sender, owner, proposal_id, proposal_price)); + + Ok(()) + } + } +} + +impl Module { + + pub fn is_expired(proposed_on: T::BlockNumber) -> bool { + // TODO print("...") + >::block_number() > proposed_on + Self::voting_period() + } + + pub fn is_member(sender: T::AccountId) -> bool { + // TODO impl + // TODO print("...") + true + } + + /// Get the voters for the current proposal. + pub fn tally(proposal_id: T::Hash) -> Result { + + // TODO finish + + Ok(()) + } + + fn end_block(now: T::BlockNumber) -> Result { + + // TODO iterate over not expired proposals and tally + +// Self::tally(); + // TODO approve or reject a proposal + + // TODO finish + + Ok(()) + } + + fn _create_proposal(to: T::AccountId, proposal_id: T::Hash, new_proposal: Proposal) -> Result { + ensure!(!>::exists(proposal_id), "Proposal already exists"); + + let owned_proposal_count = Self::owned_proposal_count(&to); + + let new_owned_proposal_count = match owned_proposal_count.checked_add(1) { + Some(c) => c, + None => return Err("Overflow adding a new proposal to account balance"), + }; + + let all_proposals_count = Self::all_proposals_count(); + + let new_all_proposals_count = match all_proposals_count.checked_add(1) { + Some (c) => c, + None => return Err("Overflow adding a new proposal to total supply"), + }; + + >::insert(proposal_id, new_proposal); + >::insert(proposal_id, &to); + + >::insert(all_proposals_count, proposal_id); + >::put(new_all_proposals_count); + >::insert(proposal_id, all_proposals_count); + + >::insert((to.clone(), owned_proposal_count), proposal_id); + >::insert(&to, new_owned_proposal_count); + >::insert(proposal_id, owned_proposal_count); + + Self::deposit_event(RawEvent::ProposalCreated(to, proposal_id)); + + Ok(()) + } + + fn _transfer_from(from: T::AccountId, to: T::AccountId, proposal_id: T::Hash) -> Result { + let owner = match Self::owner_of(proposal_id) { + Some(c) => c, + None => return Err("No owner for this proposal"), + }; + + ensure!(owner == from, "'from' account does not own this proposal"); + + let owned_proposal_count_from = Self::owned_proposal_count(&from); + let owned_proposal_count_to = Self::owned_proposal_count(&to); + + let new_owned_proposal_count_to = match owned_proposal_count_to.checked_add(1) { + Some(c) => c, + None => return Err("Transfer causes overflow of 'to' proposal balance"), + }; + + let new_owned_proposal_count_from = match owned_proposal_count_from.checked_sub(1) { + Some (c) => c, + None => return Err("Transfer causes underflow of 'from' proposal balance"), + }; + + // "Swap and pop" + let proposal_index = >::get(proposal_id); + if proposal_index != new_owned_proposal_count_from { + let last_proposal_id = >::get((from.clone(), new_owned_proposal_count_from)); + >::insert((from.clone(), proposal_index), last_proposal_id); + >::insert(last_proposal_id, proposal_index); + } + + >::insert(&proposal_id, &to); + >::insert(proposal_id, owned_proposal_count_to); + + >::remove((from.clone(), new_owned_proposal_count_from)); + >::insert((to.clone(), owned_proposal_count_to), proposal_id); + + >::insert(&from, new_owned_proposal_count_from); + >::insert(&to, new_owned_proposal_count_to); + + Self::deposit_event(RawEvent::Transferred(from, to, proposal_id)); + + Ok(()) + } +} From 068851bf4046a9e3f87823fea5d9bb37a2c65bfd Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 25 Jan 2019 14:46:51 +0200 Subject: [PATCH 007/350] Annotate sr_std import w/ macro_use --- runtime/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 9d4992caaa..983edf63d5 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -5,6 +5,7 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit="256"] +#[cfg_attr(not(feature = "std"), macro_use)] extern crate sr_std as rstd; extern crate sr_io as runtime_io; #[macro_use] From 114b6b4667b8853490b5414a0976983c710330ca Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 25 Jan 2019 14:47:32 +0200 Subject: [PATCH 008/350] WIP: Implement cancel proposal and tally --- runtime/src/proposals.rs | 331 +++++++++++++++++++++++++++++++++------ 1 file changed, 283 insertions(+), 48 deletions(-) diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs index 67d265c6b0..fc7a9d6c29 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/proposals.rs @@ -9,7 +9,55 @@ use rstd::cmp; const VOTING_PERIOD_IN_DAYS: u64 = 10; const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; -// TODO delete deprecated +// TODO use this type instead of T::Hash +pub type ProposalId = u32; +pub type Count = usize; + +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Clone, PartialEq, Eq)] +pub enum ProposalStatus { + /// A new proposal that is available for voting. + Pending, + /// If cancelled by a proposer. + Cancelled, + /// Not enough votes and voting period expired. + Expired, + /// To clear the quorum requirement, the percentage of council members with revealed votes + /// must be no less than the quorum value for the given proposal type. + Approved, + Rejected, + /// If all revealed votes are slashes, then the proposal is rejected, + /// and the proposal stake is slashed. + Slashed, +} + +impl Default for ProposalStatus { + fn default() -> Self { + ProposalStatus::Pending // TODO use another *special* value as default? + } +} + +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Clone, PartialEq, Eq)] +pub enum VoteKind { + /// Signals presence, but unwillingness to cast judgment on substance of vote. + Abstention, + /// Pass, an alternative or a ranking, for binary, multiple choice + /// and ranked choice propositions, respectively. + Approve, + /// Against proposal. + Reject, + /// Against the proposal, and slash proposal stake. + Slash, +} + +impl Default for VoteKind { + fn default() -> Self { + VoteKind::Abstention // TODO use another *special* value as default? + } +} + +/// TODO delete deprecated #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] pub struct Proposal { @@ -28,8 +76,22 @@ pub struct RuntimeUpdateProposal { stake: Balance, name: Vec, description: Vec, + // wasm_code: Vec, // TODO store code w/ proposal? wasm_hash: Hash, proposed_on: BlockNumber, + // TODO add 'status: ProposalStatus', +} + +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] +pub struct TallyResult { + proposal_id: Hash, + abstentions: Count, + approvals: Count, + rejections: Count, + slashes: Count, + status: ProposalStatus, + finalized_on: BlockNumber, } pub trait Trait: balances::Trait + timestamp::Trait { @@ -40,8 +102,9 @@ pub trait Trait: balances::Trait + timestamp::Trait { decl_event!( pub enum Event where - ::AccountId, ::Hash, + ::BlockNumber, + ::AccountId, ::Balance { // New events @@ -52,12 +115,15 @@ decl_event!( ProposalCreated(AccountId, Hash), ProposalCanceled(AccountId, Hash), ProposalApproved(Hash), + ProposalStatusUpdated(Hash, ProposalStatus), + + TallyFinalized(TallyResult), /// Params: /// * Account id of a council member. /// * Id of a proposal. // TODO Add vote_kind: Approve, Reject, ... - Voted(AccountId, Hash), + Voted(AccountId, Hash, VoteKind), // TODO delete next events (copied from kitties) @@ -74,7 +140,7 @@ decl_storage! { /// The percentage (up to 100) of the council participants /// which must vote affirmatively in order for it to pass. - ApprovalQuorum get(approval_quorum): u32 = 60; + ApprovalQuorum get(approval_quorum): usize = 60; /// Minimum balance amount to be staked in order to make a proposal. MinimumStake get(minimum_stake): T::Balance = T::Balance::sa(100); @@ -82,6 +148,9 @@ decl_storage! { /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. CancellationFee get(cancellation_fee): T::Balance = T::Balance::sa(10); + /// A fee to be slashed (burn) in case a proposal was rejected. + RejectionFee get(rejection_fee): T::Balance = T::Balance::sa(5); + /// Max duration of proposal in blocks until it will be expired if not enough votes. VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa( VOTING_PERIOD_IN_SECS / >::block_period().as_() @@ -92,6 +161,14 @@ decl_storage! { Proposals get(proposal): map T::Hash => Proposal; ProposalOwner get(owner_of): map T::Hash => Option; + PendingProposalIds get(pending_proposal_ids): Vec = vec![]; + + // TODO use this? + AllProposalIds get(finalized_proposal_ids): Vec = vec![]; + + // TODO rethink + ProposalStatusMap get(proposal_status): map T::Hash => Option; + AllProposalsArray get(proposal_by_index): map u64 => T::Hash; AllProposalsCount get(all_proposals_count): u64; AllProposalsIndex: map T::Hash => u64; @@ -100,7 +177,12 @@ decl_storage! { OwnedProposalsCount get(owned_proposal_count): map T::AccountId => u64; OwnedProposalsIndex: map T::Hash => u64; - // TODO add Votes. see democracy module + VotesByProposal get(votes_by_proposal): map T::Hash => Vec<(T::AccountId, VoteKind)>; + VoteByAccountAndProposal get(vote_by_account_and_proposal): map (T::AccountId, T::Hash) => VoteKind; + + TallyResults get(tally_results): map T::Hash => TallyResult; + + // TODO impl pending proposals, finished (talled) proposals... // TODO get rid of nonce? yes Nonce: u64; @@ -121,14 +203,15 @@ decl_module! { wasm_hash: T::Hash ) -> Result { - let sender = ensure_signed(origin)?; - let nonce = >::get(); - + let proposer = ensure_signed(origin)?; + ensure!(Self::is_council_member(proposer.clone()), "Only council members can make a proposal"); ensure!(stake >= Self::minimum_stake(), "Stake is too small"); + let nonce = >::get(); + // TODO use incremented idx for proposal, see srml/democracy/src/lib.rs:103 // TODO or this: srml/treasury/src/lib.rs:86 - let random_hash = (>::random_seed(), &sender, nonce) + let random_hash = (>::random_seed(), &proposer, nonce) .using_encoded(::Hashing::hash); let new_proposal = Proposal { @@ -139,20 +222,46 @@ decl_module! { gen: 0, }; - >::reserve(&sender, stake) - .map_err(|_| "Proposer's balance too low")?; + >::reserve(&proposer, stake) + .map_err(|_| "Proposer's balance is too low to be staked")?; - Self::deposit_event(RawEvent::ProposalCreated(sender.clone(), random_hash)); + Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), random_hash)); // TODO throw event: StakeLocked ? - Self::_create_proposal(sender, random_hash, new_proposal)?; + Self::_create_proposal(proposer, random_hash, new_proposal)?; >::mutate(|n| *n += 1); Ok(()) } + // DONE + fn vote_for_proposal(origin, proposal_id: T::Hash, vote: VoteKind) -> Result { + let voter = ensure_signed(origin)?; + ensure!(Self::is_council_member(voter.clone()), "Only council members can vote on proposals"); + ensure!(>::exists(proposal_id), "This proposal does not exist"); + + let proposal = Self::proposal(proposal_id); + // TODO check voting period: + // ensure!(!Self::is_voting_period_expired(proposal.proposed_on), "Voting period is expired for this proposal"); + + let did_not_vote_before = !>::exists((voter.clone(), proposal_id)); + ensure!(did_not_vote_before, "You have already voted for this proposal"); + + // Append a new vote to proposal votes casted by other councilors: + let new_vote = (voter.clone(), vote.clone()); + if >::exists(proposal_id) { + >::mutate(proposal_id, |votes| votes.push(new_vote)); + } else { + >::insert(proposal_id, vec![new_vote]); + } + >::insert((voter.clone(), proposal_id), &vote); + Self::deposit_event(RawEvent::Voted(voter, proposal_id, vote)); + + Ok(()) + } + /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. fn cancel_proposal(origin, proposal_id: T::Hash) -> Result { let sender = ensure_signed(origin)?; @@ -177,34 +286,19 @@ decl_module! { // let left_stake = proposal.stake - cancellation_fee; // let _ = >::unreserve(&proposer, left_stake); + Self::_update_proposal_status(proposal_id, ProposalStatus::Cancelled)?; + + // TODO don't delete proposal from storage for historical reasons, but rather mark it as cancelled. + >::remove(proposal_id); + >::remove(proposal_id); + // TODO Clean up other storage related to this proposal. + Self::deposit_event(RawEvent::ProposalCanceled(sender, proposal_id)); Ok(()) } - /// Reject a proposal. The staked deposit will be slashed. - fn _reject_proposal(proposal_id: T::Hash) { - ensure!(>::exists(proposal_id), "No proposal at that index"); - let proposal = Self::proposal(proposal_id); - - // TODO uncomment when using new type for Runtime Update proposals: -// let _ = >::slash_reserved(&proposal.proposer, proposal.stake); - } - - /// Approve a proposal. The staked deposit will be returned. - fn _approve_proposal(proposal_id: T::Hash) { - ensure!(>::exists(proposal_id), "No proposal at that index"); - let proposal = Self::proposal(proposal_id); - - // TODO think on this line (copied from Substrate) -// >::mutate(|v| v.push(proposal_id)); - - // Return staked deposit - // TODO uncomment when using new type for Runtime Update proposals: -// let _ = >::unreserve(&proposal.proposer, proposal.stake); - } - - fn run_update(origin, proposal_id: T::Hash, wasm_code: Vec) -> Result { + fn update_runtime(origin, proposal_id: T::Hash, wasm_code: Vec) -> Result { // TODO compare hash of wasm code with a hash from approved proposal. // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 @@ -263,30 +357,37 @@ decl_module! { impl Module { - pub fn is_expired(proposed_on: T::BlockNumber) -> bool { - // TODO print("...") - >::block_number() > proposed_on + Self::voting_period() + pub fn is_council_member(sender: T::AccountId) -> bool { + // TODO impl: this method should be in Council module. + true // TODO stub } - pub fn is_member(sender: T::AccountId) -> bool { - // TODO impl - // TODO print("...") - true + pub fn council_members_count() -> usize { + // TODO impl: this method should be in Council module. + 10 // TODO stub } - /// Get the voters for the current proposal. - pub fn tally(proposal_id: T::Hash) -> Result { + pub fn is_proposal_approved(proposal_id: T::Hash) -> bool { + Self::proposal_status(proposal_id) == Some(ProposalStatus::Approved) + } - // TODO finish + pub fn is_proposal_rejected(proposal_id: T::Hash) -> bool { + Self::proposal_status(proposal_id) == Some(ProposalStatus::Rejected) + } - Ok(()) + pub fn is_proposal_slashed(proposal_id: T::Hash) -> bool { + Self::proposal_status(proposal_id) == Some(ProposalStatus::Slashed) + } + + pub fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { + >::block_number() > proposed_on + Self::voting_period() } fn end_block(now: T::BlockNumber) -> Result { // TODO iterate over not expired proposals and tally -// Self::tally(); + Self::tally()?; // TODO approve or reject a proposal // TODO finish @@ -294,6 +395,135 @@ impl Module { Ok(()) } + /// Get the voters for the current proposal. + pub fn tally(/* proposal_id: T::Hash */) -> Result { + let councilors: usize = Self::council_members_count(); + let quorum: usize = ((Self::approval_quorum() as u32 * councilors as u32) / 100) as usize; + + for proposal_id in Self::pending_proposal_ids() { + let proposal = Self::proposal(proposal_id); + + // TODO uncomment when using new type for proposals + // let is_expired = Self::is_voting_period_expired(proposal.proposed_on); + let is_expired = false; // TODO stub + + let mut abstentions = 0; + let mut approvals = 0; + let mut rejections = 0; + let mut slashes = 0; + + let votes = Self::votes_by_proposal(proposal_id); + for (_, vote) in votes.iter() { + match vote { + VoteKind::Abstention => abstentions += 1, + VoteKind::Approve => approvals += 1, + VoteKind::Reject => rejections += 1, + VoteKind::Slash => slashes += 1, + } + } + + let new_status: Option = + if slashes == councilors { + Self::_slash_proposal(proposal_id); + Some(ProposalStatus::Slashed) + } else if approvals >= quorum { + // TODO Run runtime update + Self::_approve_proposal(proposal_id); + Some(ProposalStatus::Approved) + } else if votes.len() == councilors || is_expired { + // All councilors voted but no approval quorum reached or proposal expired. + Self::_reject_proposal(proposal_id); + Some(ProposalStatus::Rejected) + } else { + None + }; + + // TODO move next block outside of tally to 'end_block' + if let Some(status) = new_status { + // TODO store proposal's tally results (slashes, approvals, rejections...) + Self::_update_proposal_status(proposal_id, status.clone())?; + + let tally_result = TallyResult { + proposal_id, + abstentions, + approvals, + rejections, + slashes, + status, + finalized_on: >::block_number(), + }; + >::insert(proposal_id, &tally_result); + + // TODO send only TallyFinalized(proposal_id, tally_result_id) + Self::deposit_event(RawEvent::TallyFinalized(tally_result)); + } + } + + Ok(()) + } + + fn _update_proposal_status(proposal_id: T::Hash, new_status: ProposalStatus) -> Result { + // TODO check that it's internall call? + + let all_pendings = Self::pending_proposal_ids(); + let all_len = all_pendings.len(); + let other_pendings: Vec = all_pendings + .into_iter() + .filter(|&id| id != proposal_id) + .collect() + ; + + let not_found_in_pendings = other_pendings.len() == all_len; + if not_found_in_pendings { + // Seems like this proposal's status has been updated and removed from pendings. + Err("Proposal status has been updated already") + } else { + >::put(other_pendings); + // TODO update struct's field 'status' instead: + >::insert(proposal_id, &new_status); + Self::deposit_event(RawEvent::ProposalStatusUpdated(proposal_id, new_status)); + Ok(()) + } + } + + /// Slash a proposal. The staked deposit will be slashed. + fn _slash_proposal(proposal_id: T::Hash) { + let proposal = Self::proposal(proposal_id); + + // TODO uncomment when using new type for Runtime Update proposals: + // Slash proposer's stake: + // let _ = >::slash_reserved(&proposal.proposer, proposal.stake); + } + + /// Reject a proposal. The staked deposit will be returned to a proposer. + fn _reject_proposal(proposal_id: T::Hash) { + let proposal = Self::proposal(proposal_id); + + // Spend some minimum fee on proposer's balance to prevent spamming attacks: + // TODO uncomment when using new type for Runtime Update proposals: + let fee = Self::rejection_fee(); + // let _ = >::slash_reserved(&proposer, fee); + + // Return unspent part of remaining staked deposit (after taking some fee): + // TODO uncomment when using new type for Runtime Update proposals: + // let left_stake = proposal.stake - fee; + // let _ = >::unreserve(&proposer, left_stake); + } + + /// Approve a proposal. The staked deposit will be returned. + fn _approve_proposal(proposal_id: T::Hash) { + let proposal = Self::proposal(proposal_id); + + // TODO think on this line (copied from Substrate) +// >::mutate(|v| v.push(proposal_id)); + + // Return staked deposit to proposer: + // TODO uncomment when using new type for Runtime Update proposals: + // let _ = >::unreserve(&proposal.proposer, proposal.stake); + + // TODO Self::update_runtime(...) + } + fn _create_proposal(to: T::AccountId, proposal_id: T::Hash, new_proposal: Proposal) -> Result { ensure!(!>::exists(proposal_id), "Proposal already exists"); @@ -322,6 +552,11 @@ impl Module { >::insert(&to, new_owned_proposal_count); >::insert(proposal_id, owned_proposal_count); + + // NEW GOOD PART :) + + >::mutate(|ids| ids.push(proposal_id)); + Self::deposit_event(RawEvent::ProposalCreated(to, proposal_id)); Ok(()) From da25cafc38b03eefa92e7814a8e076774e2c6cd9 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 25 Jan 2019 22:29:00 +0200 Subject: [PATCH 009/350] WIP: Clean up and add more functionality --- runtime/src/proposals.rs | 390 +++++++++++---------------------------- 1 file changed, 108 insertions(+), 282 deletions(-) diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs index fc7a9d6c29..fbe152dd94 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/proposals.rs @@ -1,15 +1,12 @@ -use parity_codec::Encode; use srml_support::{StorageValue, StorageMap, dispatch::Result}; -use runtime_primitives::traits::{As, Hash, Zero, CheckedAdd}; +use runtime_primitives::traits::{As, Hash, CheckedAdd}; use runtime_io::print; use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; -use rstd::cmp; const VOTING_PERIOD_IN_DAYS: u64 = 10; const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; -// TODO use this type instead of T::Hash pub type ProposalId = u32; pub type Count = usize; @@ -57,35 +54,25 @@ impl Default for VoteKind { } } -/// TODO delete deprecated #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct Proposal { - id: Hash, - name: Vec, - dna: Hash, - price: Balance, - gen: u64, -} - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct RuntimeUpdateProposal { - id: Hash, +/// Proposal for node runtime update. +pub struct Proposal { + id: ProposalId, proposer: AccountId, stake: Balance, name: Vec, description: Vec, - // wasm_code: Vec, // TODO store code w/ proposal? - wasm_hash: Hash, + wasm_code: Vec, // TODO store code w/ proposal or just its hash? + // wasm_hash: Hash, proposed_on: BlockNumber, - // TODO add 'status: ProposalStatus', + status: ProposalStatus, } #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct TallyResult { - proposal_id: Hash, +pub struct TallyResult { + proposal_id: ProposalId, abstentions: Count, approvals: Count, rejections: Count, @@ -102,41 +89,32 @@ pub trait Trait: balances::Trait + timestamp::Trait { decl_event!( pub enum Event where - ::Hash, ::BlockNumber, - ::AccountId, - ::Balance + ::AccountId { // New events /// Params: /// * Account id of a member who proposed. /// * Id of a newly created proposal after it was saved in storage. - ProposalCreated(AccountId, Hash), - ProposalCanceled(AccountId, Hash), - ProposalApproved(Hash), - ProposalStatusUpdated(Hash, ProposalStatus), - - TallyFinalized(TallyResult), + ProposalCreated(AccountId, ProposalId), + ProposalCanceled(AccountId, ProposalId), + ProposalStatusUpdated(ProposalId, ProposalStatus), /// Params: - /// * Account id of a council member. + /// * Voter - an account id of a councilor. /// * Id of a proposal. - // TODO Add vote_kind: Approve, Reject, ... - Voted(AccountId, Hash, VoteKind), - - // TODO delete next events (copied from kitties) + /// * Kind of vote. + Voted(AccountId, ProposalId, VoteKind), - PriceSet(AccountId, Hash, Balance), - Transferred(AccountId, AccountId, Hash), - Bought(AccountId, AccountId, Hash, Balance), + TallyFinalized(TallyResult), } ); decl_storage! { trait Store for Module as Proposals { - // Parameters: + // Parameters (defaut values could be exported to config): /// The percentage (up to 100) of the council participants /// which must vote affirmatively in order for it to pass. @@ -146,10 +124,10 @@ decl_storage! { MinimumStake get(minimum_stake): T::Balance = T::Balance::sa(100); /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. - CancellationFee get(cancellation_fee): T::Balance = T::Balance::sa(10); + CancellationFee get(cancellation_fee): T::Balance = T::Balance::sa(5); /// A fee to be slashed (burn) in case a proposal was rejected. - RejectionFee get(rejection_fee): T::Balance = T::Balance::sa(5); + RejectionFee get(rejection_fee): T::Balance = T::Balance::sa(10); /// Max duration of proposal in blocks until it will be expired if not enough votes. VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa( @@ -158,34 +136,18 @@ decl_storage! { // Persistent state (always relevant, changes constantly): - Proposals get(proposal): map T::Hash => Proposal; - ProposalOwner get(owner_of): map T::Hash => Option; - - PendingProposalIds get(pending_proposal_ids): Vec = vec![]; - - // TODO use this? - AllProposalIds get(finalized_proposal_ids): Vec = vec![]; - - // TODO rethink - ProposalStatusMap get(proposal_status): map T::Hash => Option; + NextProposalId get(next_proposal_id): ProposalId; // TODO start w/ 1 (one) ? - AllProposalsArray get(proposal_by_index): map u64 => T::Hash; - AllProposalsCount get(all_proposals_count): u64; - AllProposalsIndex: map T::Hash => u64; + Proposals get(proposal): map ProposalId => Proposal; - OwnedProposalsArray get(proposal_of_owner_by_index): map (T::AccountId, u64) => T::Hash; - OwnedProposalsCount get(owned_proposal_count): map T::AccountId => u64; - OwnedProposalsIndex: map T::Hash => u64; + PendingProposalIds get(pending_proposal_ids): Vec = vec![]; - VotesByProposal get(votes_by_proposal): map T::Hash => Vec<(T::AccountId, VoteKind)>; - VoteByAccountAndProposal get(vote_by_account_and_proposal): map (T::AccountId, T::Hash) => VoteKind; + VotesByProposal get(votes_by_proposal): map ProposalId => Vec<(T::AccountId, VoteKind)>; - TallyResults get(tally_results): map T::Hash => TallyResult; + // TODO Rethink: this can be replaced with: votes_by_proposal.find(|vote| vote.0 == proposer) + VoteByAccountAndProposal get(vote_by_account_and_proposal): map (T::AccountId, ProposalId) => VoteKind; - // TODO impl pending proposals, finished (talled) proposals... - - // TODO get rid of nonce? yes - Nonce: u64; + TallyResults get(tally_results): map ProposalId => TallyResult; } } @@ -194,62 +156,66 @@ decl_module! { fn deposit_event() = default; - // TODO see srml/democracy/src/lib.rs:92 fn create_proposal( origin, stake: T::Balance, name: Vec, description: Vec, - wasm_hash: T::Hash + // wasm_hash: T::Hash, + wasm_code: Vec ) -> Result { let proposer = ensure_signed(origin)?; - ensure!(Self::is_council_member(proposer.clone()), "Only council members can make a proposal"); + ensure!(Self::is_member(proposer.clone()), "Only members can make a proposal"); ensure!(stake >= Self::minimum_stake(), "Stake is too small"); - let nonce = >::get(); - - // TODO use incremented idx for proposal, see srml/democracy/src/lib.rs:103 - // TODO or this: srml/treasury/src/lib.rs:86 - let random_hash = (>::random_seed(), &proposer, nonce) - .using_encoded(::Hashing::hash); - - let new_proposal = Proposal { - id: random_hash, - name: name, - dna: random_hash, - price: >::sa(0), - gen: 0, - }; + // TODO ensure that name is not blank + // TODO ensure that description is not blank + // TODO ensure that wasm_code is valid + // Lock proposer's stake: >::reserve(&proposer, stake) .map_err(|_| "Proposer's balance is too low to be staked")?; - Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), random_hash)); + let proposal_id = Self::next_proposal_id(); + >::mutate(|id| *id += 1); - // TODO throw event: StakeLocked ? + let new_proposal = Proposal { + id: proposal_id, + proposer: proposer.clone(), + stake, + name, + description, + wasm_code, + proposed_on: Self::current_block(), + status: ProposalStatus::Pending + }; - Self::_create_proposal(proposer, random_hash, new_proposal)?; + >::insert(proposal_id, new_proposal); + >::mutate(|ids| ids.push(proposal_id)); - >::mutate(|n| *n += 1); + Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), proposal_id)); Ok(()) } // DONE - fn vote_for_proposal(origin, proposal_id: T::Hash, vote: VoteKind) -> Result { + fn vote_for_proposal(origin, proposal_id: ProposalId, vote: VoteKind) -> Result { let voter = ensure_signed(origin)?; ensure!(Self::is_council_member(voter.clone()), "Only council members can vote on proposals"); - ensure!(>::exists(proposal_id), "This proposal does not exist"); + ensure!(>::exists(proposal_id), "This proposal does not exist"); let proposal = Self::proposal(proposal_id); - // TODO check voting period: - // ensure!(!Self::is_voting_period_expired(proposal.proposed_on), "Voting period is expired for this proposal"); + + ensure!(proposal.status == ProposalStatus::Pending, "Proposal is finalized already"); + + let not_expired = !Self::is_voting_period_expired(proposal.proposed_on); + ensure!(not_expired, "Voting period is expired for this proposal"); let did_not_vote_before = !>::exists((voter.clone(), proposal_id)); ensure!(did_not_vote_before, "You have already voted for this proposal"); - // Append a new vote to proposal votes casted by other councilors: + // Append a new vote to other votes on this proposal: let new_vote = (voter.clone(), vote.clone()); if >::exists(proposal_id) { >::mutate(proposal_id, |votes| votes.push(new_vote)); @@ -257,48 +223,37 @@ decl_module! { >::insert(proposal_id, vec![new_vote]); } >::insert((voter.clone(), proposal_id), &vote); + Self::deposit_event(RawEvent::Voted(voter, proposal_id, vote)); Ok(()) } /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. - fn cancel_proposal(origin, proposal_id: T::Hash) -> Result { - let sender = ensure_signed(origin)?; + fn cancel_proposal(origin, proposal_id: ProposalId) -> Result { + let proposer = ensure_signed(origin)?; ensure!(>::exists(proposal_id), "This proposal does not exist"); - let proposal = Self::proposal(proposal_id); - // let proposer = proposal.proposer; - // ensure!(proposer == sender, "You do not own this proposal"); - - // TODO check that sender created this proposal - // TODO delete proposal or mark it as canceled. + ensure!(proposer == proposal.proposer, "You do not own this proposal"); + ensure!(proposal.status == ProposalStatus::Pending, "Proposal is finalized already"); - // TODO spend some minimum fee on proposer's balance for canceling a proposal - // TODO uncomment when using new type for Runtime Update proposals: + // Spend some minimum fee on proposer's balance for canceling a proposal let fee = Self::cancellation_fee(); -// let _ = >::slash_reserved(&proposer, fee); + let _ = >::slash_reserved(&proposer, fee); - // TODO return unspent part of remaining staked deposit (after taking some fee) - // TODO uncomment when using new type for Runtime Update proposals: -// let left_stake = proposal.stake - cancellation_fee; -// let _ = >::unreserve(&proposer, left_stake); + // Return unspent part of remaining staked deposit (after taking some fee) + let left_stake = proposal.stake - fee; + let _ = >::unreserve(&proposer, left_stake); Self::_update_proposal_status(proposal_id, ProposalStatus::Cancelled)?; - - // TODO don't delete proposal from storage for historical reasons, but rather mark it as cancelled. - >::remove(proposal_id); - >::remove(proposal_id); - // TODO Clean up other storage related to this proposal. - - Self::deposit_event(RawEvent::ProposalCanceled(sender, proposal_id)); + Self::deposit_event(RawEvent::ProposalCanceled(proposer, proposal_id)); Ok(()) } - fn update_runtime(origin, proposal_id: T::Hash, wasm_code: Vec) -> Result { + fn update_runtime(origin, proposal_id: ProposalId, wasm_code: Vec) -> Result { // TODO compare hash of wasm code with a hash from approved proposal. // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 @@ -310,77 +265,41 @@ decl_module! { // TODO return locked stake to proposer's balance - // TODO throw event: StakeUnlocked - Ok(()) } + // Called on every block fn on_finalise(n: T::BlockNumber) { if let Err(e) = Self::end_block(n) { print(e); } } - - // TODO copy-pasted - fn buy_proposal(origin, proposal_id: T::Hash, max_price: T::Balance) -> Result { - let sender = ensure_signed(origin)?; - - ensure!(>::exists(proposal_id), "This proposal does not exist"); - - let owner = match Self::owner_of(proposal_id) { - Some(o) => o, - None => return Err("No owner for this proposal"), - }; - ensure!(owner != sender, "You can't buy your own proposal"); - - let mut proposal = Self::proposal(proposal_id); - - let proposal_price = proposal.price; - ensure!(!proposal_price.is_zero(), "The proposal you want to buy is not for sale"); - ensure!(proposal_price <= max_price, "The proposal you want to buy costs more than your max price"); - - // TODO: This payment logic needs to be updated - >::decrease_free_balance(&sender, proposal_price)?; - >::increase_free_balance_creating(&owner, proposal_price); - - Self::_transfer_from(owner.clone(), sender.clone(), proposal_id)?; - - proposal.price = >::sa(0); - >::insert(proposal_id, proposal); - - Self::deposit_event(RawEvent::Bought(sender, owner, proposal_id, proposal_price)); - - Ok(()) - } } } impl Module { - pub fn is_council_member(sender: T::AccountId) -> bool { - // TODO impl: this method should be in Council module. - true // TODO stub - } - - pub fn council_members_count() -> usize { - // TODO impl: this method should be in Council module. - 10 // TODO stub + pub fn current_block() -> T::BlockNumber { + >::block_number() } - pub fn is_proposal_approved(proposal_id: T::Hash) -> bool { - Self::proposal_status(proposal_id) == Some(ProposalStatus::Approved) + pub fn is_member(sender: T::AccountId) -> bool { + // TODO This method should be implemented in Membership module. + true } - pub fn is_proposal_rejected(proposal_id: T::Hash) -> bool { - Self::proposal_status(proposal_id) == Some(ProposalStatus::Rejected) + pub fn is_council_member(sender: T::AccountId) -> bool { + // TODO This method should be implemented in Council module. + true } - pub fn is_proposal_slashed(proposal_id: T::Hash) -> bool { - Self::proposal_status(proposal_id) == Some(ProposalStatus::Slashed) + pub fn council_members_count() -> usize { + // TODO This method should be implemented in Council module. + 10 } pub fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { - >::block_number() > proposed_on + Self::voting_period() + Self::current_block() > proposed_on + Self::voting_period() } fn end_block(now: T::BlockNumber) -> Result { @@ -396,23 +315,21 @@ impl Module { } /// Get the voters for the current proposal. - pub fn tally(/* proposal_id: T::Hash */) -> Result { + pub fn tally(/* proposal_id: ProposalId */) -> Result { let councilors: usize = Self::council_members_count(); let quorum: usize = ((Self::approval_quorum() as u32 * councilors as u32) / 100) as usize; for proposal_id in Self::pending_proposal_ids() { let proposal = Self::proposal(proposal_id); - - // TODO uncomment when using new type for proposals - // let is_expired = Self::is_voting_period_expired(proposal.proposed_on); - let is_expired = false; // TODO stub - + let is_expired = Self::is_voting_period_expired(proposal.proposed_on); + let votes = Self::votes_by_proposal(proposal_id); + let all_councilors_voted = votes.len() == councilors; + let mut abstentions = 0; let mut approvals = 0; let mut rejections = 0; let mut slashes = 0; - let votes = Self::votes_by_proposal(proposal_id); for (_, vote) in votes.iter() { match vote { VoteKind::Abstention => abstentions += 1, @@ -424,15 +341,15 @@ impl Module { let new_status: Option = if slashes == councilors { - Self::_slash_proposal(proposal_id); + Self::_slash_proposal(proposal_id); // TODO move to _update_proposal_status() Some(ProposalStatus::Slashed) } else if approvals >= quorum { - // TODO Run runtime update - Self::_approve_proposal(proposal_id); + Self::_approve_proposal(proposal_id); // TODO move to _update_proposal_status() Some(ProposalStatus::Approved) - } else if votes.len() == councilors || is_expired { - // All councilors voted but no approval quorum reached or proposal expired. - Self::_reject_proposal(proposal_id); + } else if all_councilors_voted || is_expired { + // All councilors voted but an approval quorum was not reached + // or proposal has been expired. + Self::_reject_proposal(proposal_id); // TODO move to _update_proposal_status() Some(ProposalStatus::Rejected) } else { None @@ -440,9 +357,7 @@ impl Module { // TODO move next block outside of tally to 'end_block' if let Some(status) = new_status { - // TODO store proposal's tally results (slashes, approvals, rejections...) Self::_update_proposal_status(proposal_id, status.clone())?; - let tally_result = TallyResult { proposal_id, abstentions, @@ -450,11 +365,9 @@ impl Module { rejections, slashes, status, - finalized_on: >::block_number(), + finalized_on: Self::current_block(), }; >::insert(proposal_id, &tally_result); - - // TODO send only TallyFinalized(proposal_id, tally_result_id) Self::deposit_event(RawEvent::TallyFinalized(tally_result)); } } @@ -462,12 +375,13 @@ impl Module { Ok(()) } - fn _update_proposal_status(proposal_id: T::Hash, new_status: ProposalStatus) -> Result { - // TODO check that it's internall call? + /// Updates proposal status and removes proposal from pending ids. + fn _update_proposal_status(proposal_id: ProposalId, new_status: ProposalStatus) -> Result { + // TODO check that this is an internall call? let all_pendings = Self::pending_proposal_ids(); let all_len = all_pendings.len(); - let other_pendings: Vec = all_pendings + let other_pendings: Vec = all_pendings .into_iter() .filter(|&id| id != proposal_id) .collect() @@ -479,129 +393,41 @@ impl Module { Err("Proposal status has been updated already") } else { >::put(other_pendings); - // TODO update struct's field 'status' instead: - >::insert(proposal_id, &new_status); + >::mutate(proposal_id, |p| p.status = new_status.clone()); Self::deposit_event(RawEvent::ProposalStatusUpdated(proposal_id, new_status)); Ok(()) } } /// Slash a proposal. The staked deposit will be slashed. - fn _slash_proposal(proposal_id: T::Hash) { + fn _slash_proposal(proposal_id: ProposalId) { let proposal = Self::proposal(proposal_id); - // TODO uncomment when using new type for Runtime Update proposals: // Slash proposer's stake: - // let _ = >::slash_reserved(&proposal.proposer, proposal.stake); + let _ = >::slash_reserved(&proposal.proposer, proposal.stake); } /// Reject a proposal. The staked deposit will be returned to a proposer. - fn _reject_proposal(proposal_id: T::Hash) { + fn _reject_proposal(proposal_id: ProposalId) { let proposal = Self::proposal(proposal_id); + let proposer = proposal.proposer; // Spend some minimum fee on proposer's balance to prevent spamming attacks: - // TODO uncomment when using new type for Runtime Update proposals: let fee = Self::rejection_fee(); - // let _ = >::slash_reserved(&proposer, fee); + let _ = >::slash_reserved(&proposer, fee); // Return unspent part of remaining staked deposit (after taking some fee): - // TODO uncomment when using new type for Runtime Update proposals: - // let left_stake = proposal.stake - fee; - // let _ = >::unreserve(&proposer, left_stake); + let left_stake = proposal.stake - fee; + let _ = >::unreserve(&proposer, left_stake); } /// Approve a proposal. The staked deposit will be returned. - fn _approve_proposal(proposal_id: T::Hash) { + fn _approve_proposal(proposal_id: ProposalId) { let proposal = Self::proposal(proposal_id); - // TODO think on this line (copied from Substrate) -// >::mutate(|v| v.push(proposal_id)); - // Return staked deposit to proposer: - // TODO uncomment when using new type for Runtime Update proposals: - // let _ = >::unreserve(&proposal.proposer, proposal.stake); + let _ = >::unreserve(&proposal.proposer, proposal.stake); // TODO Self::update_runtime(...) } - - fn _create_proposal(to: T::AccountId, proposal_id: T::Hash, new_proposal: Proposal) -> Result { - ensure!(!>::exists(proposal_id), "Proposal already exists"); - - let owned_proposal_count = Self::owned_proposal_count(&to); - - let new_owned_proposal_count = match owned_proposal_count.checked_add(1) { - Some(c) => c, - None => return Err("Overflow adding a new proposal to account balance"), - }; - - let all_proposals_count = Self::all_proposals_count(); - - let new_all_proposals_count = match all_proposals_count.checked_add(1) { - Some (c) => c, - None => return Err("Overflow adding a new proposal to total supply"), - }; - - >::insert(proposal_id, new_proposal); - >::insert(proposal_id, &to); - - >::insert(all_proposals_count, proposal_id); - >::put(new_all_proposals_count); - >::insert(proposal_id, all_proposals_count); - - >::insert((to.clone(), owned_proposal_count), proposal_id); - >::insert(&to, new_owned_proposal_count); - >::insert(proposal_id, owned_proposal_count); - - - // NEW GOOD PART :) - - >::mutate(|ids| ids.push(proposal_id)); - - Self::deposit_event(RawEvent::ProposalCreated(to, proposal_id)); - - Ok(()) - } - - fn _transfer_from(from: T::AccountId, to: T::AccountId, proposal_id: T::Hash) -> Result { - let owner = match Self::owner_of(proposal_id) { - Some(c) => c, - None => return Err("No owner for this proposal"), - }; - - ensure!(owner == from, "'from' account does not own this proposal"); - - let owned_proposal_count_from = Self::owned_proposal_count(&from); - let owned_proposal_count_to = Self::owned_proposal_count(&to); - - let new_owned_proposal_count_to = match owned_proposal_count_to.checked_add(1) { - Some(c) => c, - None => return Err("Transfer causes overflow of 'to' proposal balance"), - }; - - let new_owned_proposal_count_from = match owned_proposal_count_from.checked_sub(1) { - Some (c) => c, - None => return Err("Transfer causes underflow of 'from' proposal balance"), - }; - - // "Swap and pop" - let proposal_index = >::get(proposal_id); - if proposal_index != new_owned_proposal_count_from { - let last_proposal_id = >::get((from.clone(), new_owned_proposal_count_from)); - >::insert((from.clone(), proposal_index), last_proposal_id); - >::insert(last_proposal_id, proposal_index); - } - - >::insert(&proposal_id, &to); - >::insert(proposal_id, owned_proposal_count_to); - - >::remove((from.clone(), new_owned_proposal_count_from)); - >::insert((to.clone(), owned_proposal_count_to), proposal_id); - - >::insert(&from, new_owned_proposal_count_from); - >::insert(&to, new_owned_proposal_count_to); - - Self::deposit_event(RawEvent::Transferred(from, to, proposal_id)); - - Ok(()) - } } From bb3cb4d054a216550221e8b65a7e4436680e820f Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Sat, 26 Jan 2019 14:58:41 +0200 Subject: [PATCH 010/350] Check that voter is not proposer; Rename NextProposalId to ProposalCount; Set Expired status properly. --- runtime/src/proposals.rs | 46 ++++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 18 deletions(-) diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs index fbe152dd94..8a7dc9a3e5 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/proposals.rs @@ -8,7 +8,6 @@ const VOTING_PERIOD_IN_DAYS: u64 = 10; const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; pub type ProposalId = u32; -pub type Count = usize; #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Clone, PartialEq, Eq)] @@ -73,10 +72,10 @@ pub struct Proposal { #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] pub struct TallyResult { proposal_id: ProposalId, - abstentions: Count, - approvals: Count, - rejections: Count, - slashes: Count, + abstentions: u32, + approvals: u32, + rejections: u32, + slashes: u32, status: ProposalStatus, finalized_on: BlockNumber, } @@ -118,7 +117,7 @@ decl_storage! { /// The percentage (up to 100) of the council participants /// which must vote affirmatively in order for it to pass. - ApprovalQuorum get(approval_quorum): usize = 60; + ApprovalQuorum get(approval_quorum): u32 = 60; /// Minimum balance amount to be staked in order to make a proposal. MinimumStake get(minimum_stake): T::Balance = T::Balance::sa(100); @@ -136,7 +135,7 @@ decl_storage! { // Persistent state (always relevant, changes constantly): - NextProposalId get(next_proposal_id): ProposalId; // TODO start w/ 1 (one) ? + ProposalCount get(proposal_count): ProposalId; Proposals get(proposal): map ProposalId => Proposal; @@ -156,6 +155,10 @@ decl_module! { fn deposit_event() = default; + /// Use next code to create a proposal from Substrate UI's web console: + /// ```js + /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.createProposal(2500, "0x" + "Cool Proposal #1".toString("hex"), "0x" + "New features and bug fixes. For more info, see the latest CHANGELOG.md joystream-node repo on GitHub.".toString("hex"), "0x" + "...TODO some wasm code goes here...".toString("hex")) }).tie(console.log) + /// ``` fn create_proposal( origin, stake: T::Balance, @@ -177,8 +180,8 @@ decl_module! { >::reserve(&proposer, stake) .map_err(|_| "Proposer's balance is too low to be staked")?; - let proposal_id = Self::next_proposal_id(); - >::mutate(|id| *id += 1); + let proposal_id = Self::proposal_count() + 1; + >::put(proposal_id); let new_proposal = Proposal { id: proposal_id, @@ -199,14 +202,18 @@ decl_module! { Ok(()) } - // DONE - fn vote_for_proposal(origin, proposal_id: ProposalId, vote: VoteKind) -> Result { + /// Use next code to create a proposal from Substrate UI's web console: + /// ```js + /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.voteForProposal(1, { option: "Approve", _type: "VoteKind" }) }).tie(console.log) + /// ``` + fn vote_on_proposal(origin, proposal_id: ProposalId, vote: VoteKind) -> Result { let voter = ensure_signed(origin)?; ensure!(Self::is_council_member(voter.clone()), "Only council members can vote on proposals"); ensure!(>::exists(proposal_id), "This proposal does not exist"); let proposal = Self::proposal(proposal_id); + ensure!(voter != proposal.proposer, "You cannot vote on your proposals"); ensure!(proposal.status == ProposalStatus::Pending, "Proposal is finalized already"); let not_expired = !Self::is_voting_period_expired(proposal.proposed_on); @@ -293,7 +300,7 @@ impl Module { true } - pub fn council_members_count() -> usize { + pub fn council_members_count() -> u32 { // TODO This method should be implemented in Council module. 10 } @@ -316,14 +323,14 @@ impl Module { /// Get the voters for the current proposal. pub fn tally(/* proposal_id: ProposalId */) -> Result { - let councilors: usize = Self::council_members_count(); - let quorum: usize = ((Self::approval_quorum() as u32 * councilors as u32) / 100) as usize; + let councilors = Self::council_members_count(); + let quorum = (Self::approval_quorum() * councilors) / 100; for proposal_id in Self::pending_proposal_ids() { let proposal = Self::proposal(proposal_id); let is_expired = Self::is_voting_period_expired(proposal.proposed_on); let votes = Self::votes_by_proposal(proposal_id); - let all_councilors_voted = votes.len() == councilors; + let all_councilors_voted = votes.len() as u32 == councilors; let mut abstentions = 0; let mut approvals = 0; @@ -346,11 +353,14 @@ impl Module { } else if approvals >= quorum { Self::_approve_proposal(proposal_id); // TODO move to _update_proposal_status() Some(ProposalStatus::Approved) - } else if all_councilors_voted || is_expired { - // All councilors voted but an approval quorum was not reached - // or proposal has been expired. + } else if all_councilors_voted { + // All councilors voted but an approval quorum was not reached. Self::_reject_proposal(proposal_id); // TODO move to _update_proposal_status() Some(ProposalStatus::Rejected) + } else if is_expired { + // Proposal has been expired and quorum not reached. + Self::_reject_proposal(proposal_id); // TODO move to _update_proposal_status() + Some(ProposalStatus::Expired) } else { None }; From 29f14c39b0213eb350289c7c2cf7d4d55473df6b Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Sat, 26 Jan 2019 16:22:49 +0200 Subject: [PATCH 011/350] Small refactoring --- runtime/src/proposals.rs | 83 ++++++++++++++++++++++++---------------- 1 file changed, 50 insertions(+), 33 deletions(-) diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs index 8a7dc9a3e5..9b38437443 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/proposals.rs @@ -33,6 +33,8 @@ impl Default for ProposalStatus { } } +use self::ProposalStatus::*; + #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Clone, PartialEq, Eq)] pub enum VoteKind { @@ -53,6 +55,8 @@ impl Default for VoteKind { } } +use self::VoteKind::*; + #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] /// Proposal for node runtime update. @@ -88,6 +92,7 @@ pub trait Trait: balances::Trait + timestamp::Trait { decl_event!( pub enum Event where + ::Hash, ::BlockNumber, ::AccountId { @@ -107,6 +112,9 @@ decl_event!( Voted(AccountId, ProposalId, VoteKind), TallyFinalized(TallyResult), + + /// * Hash - hash of wasm code of runtime update. + RuntimeUpdated(ProposalId, Hash), } ); @@ -191,7 +199,7 @@ decl_module! { description, wasm_code, proposed_on: Self::current_block(), - status: ProposalStatus::Pending + status: Pending }; >::insert(proposal_id, new_proposal); @@ -214,7 +222,7 @@ decl_module! { let proposal = Self::proposal(proposal_id); ensure!(voter != proposal.proposer, "You cannot vote on your proposals"); - ensure!(proposal.status == ProposalStatus::Pending, "Proposal is finalized already"); + ensure!(proposal.status == Pending, "Proposal is finalized already"); let not_expired = !Self::is_voting_period_expired(proposal.proposed_on); ensure!(not_expired, "Voting period is expired for this proposal"); @@ -244,7 +252,7 @@ decl_module! { let proposal = Self::proposal(proposal_id); ensure!(proposer == proposal.proposer, "You do not own this proposal"); - ensure!(proposal.status == ProposalStatus::Pending, "Proposal is finalized already"); + ensure!(proposal.status == Pending, "Proposal is finalized already"); // Spend some minimum fee on proposer's balance for canceling a proposal let fee = Self::cancellation_fee(); @@ -254,26 +262,20 @@ decl_module! { let left_stake = proposal.stake - fee; let _ = >::unreserve(&proposer, left_stake); - Self::_update_proposal_status(proposal_id, ProposalStatus::Cancelled)?; + Self::_update_proposal_status(proposal_id, Cancelled)?; Self::deposit_event(RawEvent::ProposalCanceled(proposer, proposal_id)); Ok(()) } - fn update_runtime(origin, proposal_id: ProposalId, wasm_code: Vec) -> Result { - - // TODO compare hash of wasm code with a hash from approved proposal. - // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 - let code_hash = T::Hashing::hash(&wasm_code); - - // TODO run software update here + // fn update_runtime(origin, proposal_id: ProposalId, wasm_code: Vec) -> Result { + // ensure!(>::exists(proposal_id), "This proposal does not exist"); + // let proposal = Self::proposal(proposal_id); - // TODO throw event: RuntimeUpdated(proposal_id, wasm_hash) + // ensure!(proposal.status == Approved, "Proposal is not approved"); - // TODO return locked stake to proposer's balance - - Ok(()) - } + // Self::_update_runtime(proposal_id)? + // } // Called on every block fn on_finalise(n: T::BlockNumber) { @@ -339,28 +341,24 @@ impl Module { for (_, vote) in votes.iter() { match vote { - VoteKind::Abstention => abstentions += 1, - VoteKind::Approve => approvals += 1, - VoteKind::Reject => rejections += 1, - VoteKind::Slash => slashes += 1, + Abstention => abstentions += 1, + Approve => approvals += 1, + Reject => rejections += 1, + Slash => slashes += 1, } } let new_status: Option = if slashes == councilors { - Self::_slash_proposal(proposal_id); // TODO move to _update_proposal_status() - Some(ProposalStatus::Slashed) + Some(Slashed) } else if approvals >= quorum { - Self::_approve_proposal(proposal_id); // TODO move to _update_proposal_status() - Some(ProposalStatus::Approved) + Some(Approved) } else if all_councilors_voted { // All councilors voted but an approval quorum was not reached. - Self::_reject_proposal(proposal_id); // TODO move to _update_proposal_status() - Some(ProposalStatus::Rejected) + Some(Rejected) } else if is_expired { // Proposal has been expired and quorum not reached. - Self::_reject_proposal(proposal_id); // TODO move to _update_proposal_status() - Some(ProposalStatus::Expired) + Some(Expired) } else { None }; @@ -402,6 +400,13 @@ impl Module { // Seems like this proposal's status has been updated and removed from pendings. Err("Proposal status has been updated already") } else { + let pid = proposal_id.clone(); + match new_status { + Slashed => Self::_slash_proposal(pid)?, + Rejected | Expired => Self::_reject_proposal(pid)?, + Approved => Self::_approve_proposal(pid)?, + Pending | Cancelled => { /* nothing */ }, + } >::put(other_pendings); >::mutate(proposal_id, |p| p.status = new_status.clone()); Self::deposit_event(RawEvent::ProposalStatusUpdated(proposal_id, new_status)); @@ -410,15 +415,17 @@ impl Module { } /// Slash a proposal. The staked deposit will be slashed. - fn _slash_proposal(proposal_id: ProposalId) { + fn _slash_proposal(proposal_id: ProposalId) -> Result { let proposal = Self::proposal(proposal_id); // Slash proposer's stake: let _ = >::slash_reserved(&proposal.proposer, proposal.stake); + + Ok(()) } /// Reject a proposal. The staked deposit will be returned to a proposer. - fn _reject_proposal(proposal_id: ProposalId) { + fn _reject_proposal(proposal_id: ProposalId) -> Result { let proposal = Self::proposal(proposal_id); let proposer = proposal.proposer; @@ -429,15 +436,25 @@ impl Module { // Return unspent part of remaining staked deposit (after taking some fee): let left_stake = proposal.stake - fee; let _ = >::unreserve(&proposer, left_stake); + + Ok(()) } /// Approve a proposal. The staked deposit will be returned. - fn _approve_proposal(proposal_id: ProposalId) { + fn _approve_proposal(proposal_id: ProposalId) -> Result { let proposal = Self::proposal(proposal_id); - + // Return staked deposit to proposer: let _ = >::unreserve(&proposal.proposer, proposal.stake); + + // TODO run software update here + // consensus::set_code(wasm_code) + // See https://github.com/paritytech/substrate/blob/53bf81e57cdcae34f50bb9359813053e9498b1cd/srml/consensus/src/lib.rs#L225 - // TODO Self::update_runtime(...) + // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 + let wasm_hash = T::Hashing::hash(&proposal.wasm_code); + Self::deposit_event(RawEvent::RuntimeUpdated(proposal_id, wasm_hash)); + + Ok(()) } } From b87788e1f3d4ac1c040c2115c57dd773a4dbcbc3 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Sat, 26 Jan 2019 16:44:23 +0200 Subject: [PATCH 012/350] Update WASM code of Runtime on proposal approved --- runtime/src/proposals.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs index 9b38437443..30ac840487 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/proposals.rs @@ -446,10 +446,9 @@ impl Module { // Return staked deposit to proposer: let _ = >::unreserve(&proposal.proposer, proposal.stake); - - // TODO run software update here - // consensus::set_code(wasm_code) - // See https://github.com/paritytech/substrate/blob/53bf81e57cdcae34f50bb9359813053e9498b1cd/srml/consensus/src/lib.rs#L225 + + // Update wasm code of node's runtime: + >::set_code(proposal.wasm_code.clone()); // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 let wasm_hash = T::Hashing::hash(&proposal.wasm_code); From d8828b324d46a715c4573e1443187ec8da8399bd Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 29 Jan 2019 15:28:27 +0200 Subject: [PATCH 013/350] First major tests for Proposals module --- runtime/src/proposals.rs | 561 +++++++++++++++++++++++++++++++++++---- 1 file changed, 511 insertions(+), 50 deletions(-) diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs index 30ac840487..fc09e7925f 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/proposals.rs @@ -4,16 +4,30 @@ use runtime_io::print; use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; +const MIN_STAKE: u64 = 100; +const APPROVAL_QUORUM: u32 = 60; + const VOTING_PERIOD_IN_DAYS: u64 = 10; const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; +const MSG_STAKE_IS_TOO_SMALL: &str = "Stake is too small"; +const MSG_ONLY_MEMBERS_CAN_PROPOSE: &str = "Only members can make a proposal"; +const MSG_ONLY_COUNCILORS_CAN_VOTE: &str = "Only councilors can vote on proposals"; +const MSG_PROPOSAL_NOT_FOUND: &str = "This proposal does not exist"; +const MSG_PROPOSAL_EXPIRED: &str = "Voting period is expired for this proposal"; +const MSG_PROPOSAL_FINALIZED: &str = "Proposal is finalized already"; +const MSG_CANNOT_VOTE_ON_OWN_PROPOSAL: &str = "You cannot vote on your own proposals"; +const MSG_YOU_ALREADY_VOTED: &str = "You have already voted on this proposal"; +const MSG_YOU_DONT_OWN_THIS_PROPOSAL: &str = "You do not own this proposal"; +const MSG_PROPOSAL_STATUS_ALREADY_UPDATED: &str = "Proposal status has been updated already"; + pub type ProposalId = u32; #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Clone, PartialEq, Eq)] pub enum ProposalStatus { /// A new proposal that is available for voting. - Pending, + Pending, // TODO Rename to 'New' | 'Open' /// If cancelled by a proposer. Cancelled, /// Not enough votes and voting period expired. @@ -68,7 +82,7 @@ pub struct Proposal { description: Vec, wasm_code: Vec, // TODO store code w/ proposal or just its hash? // wasm_hash: Hash, - proposed_on: BlockNumber, + proposed_on: BlockNumber, // TODO rename to 'proposed_at' (i.e. at block) status: ProposalStatus, } @@ -81,7 +95,7 @@ pub struct TallyResult { rejections: u32, slashes: u32, status: ProposalStatus, - finalized_on: BlockNumber, + finalized_on: BlockNumber, // TODO rename to 'finalized_at' (i.e. at block) } pub trait Trait: balances::Trait + timestamp::Trait { @@ -90,7 +104,7 @@ pub trait Trait: balances::Trait + timestamp::Trait { } decl_event!( - pub enum Event + pub enum Event where ::Hash, ::BlockNumber, @@ -115,7 +129,7 @@ decl_event!( /// * Hash - hash of wasm code of runtime update. RuntimeUpdated(ProposalId, Hash), - } + } ); decl_storage! { @@ -123,21 +137,23 @@ decl_storage! { // Parameters (defaut values could be exported to config): + CouncilMembersCount get(council_members_count) config(): u32 = 10; + /// The percentage (up to 100) of the council participants /// which must vote affirmatively in order for it to pass. - ApprovalQuorum get(approval_quorum): u32 = 60; + ApprovalQuorum get(approval_quorum) config(): u32 = APPROVAL_QUORUM; /// Minimum balance amount to be staked in order to make a proposal. - MinimumStake get(minimum_stake): T::Balance = T::Balance::sa(100); + MinimumStake get(minimum_stake) config(): T::Balance = T::Balance::sa(MIN_STAKE); /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. - CancellationFee get(cancellation_fee): T::Balance = T::Balance::sa(5); + CancellationFee get(cancellation_fee) config(): T::Balance = T::Balance::sa(5); /// A fee to be slashed (burn) in case a proposal was rejected. - RejectionFee get(rejection_fee): T::Balance = T::Balance::sa(10); + RejectionFee get(rejection_fee) config(): T::Balance = T::Balance::sa(10); /// Max duration of proposal in blocks until it will be expired if not enough votes. - VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa( + VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::sa( VOTING_PERIOD_IN_SECS / >::block_period().as_() ); @@ -145,6 +161,7 @@ decl_storage! { ProposalCount get(proposal_count): ProposalId; + // TODO rename 'proposal' -> 'proposals' Proposals get(proposal): map ProposalId => Proposal; PendingProposalIds get(pending_proposal_ids): Vec = vec![]; @@ -165,7 +182,7 @@ decl_module! { /// Use next code to create a proposal from Substrate UI's web console: /// ```js - /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.createProposal(2500, "0x" + "Cool Proposal #1".toString("hex"), "0x" + "New features and bug fixes. For more info, see the latest CHANGELOG.md joystream-node repo on GitHub.".toString("hex"), "0x" + "...TODO some wasm code goes here...".toString("hex")) }).tie(console.log) + /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.createProposal(2500, "0x123", "0x456", "0x789") }).tie(console.log) /// ``` fn create_proposal( origin, @@ -177,8 +194,8 @@ decl_module! { ) -> Result { let proposer = ensure_signed(origin)?; - ensure!(Self::is_member(proposer.clone()), "Only members can make a proposal"); - ensure!(stake >= Self::minimum_stake(), "Stake is too small"); + ensure!(Self::is_member(proposer.clone()), MSG_ONLY_MEMBERS_CAN_PROPOSE); + ensure!(stake >= Self::minimum_stake(), MSG_STAKE_IS_TOO_SMALL); // TODO ensure that name is not blank // TODO ensure that description is not blank @@ -186,7 +203,7 @@ decl_module! { // Lock proposer's stake: >::reserve(&proposer, stake) - .map_err(|_| "Proposer's balance is too low to be staked")?; + .map_err(|_| "Proposer's balance is too low to be staked")?; let proposal_id = Self::proposal_count() + 1; >::put(proposal_id); @@ -212,23 +229,25 @@ decl_module! { /// Use next code to create a proposal from Substrate UI's web console: /// ```js - /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.voteForProposal(1, { option: "Approve", _type: "VoteKind" }) }).tie(console.log) + /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.voteOnProposal(1, { option: "Approve", _type: "VoteKind" }) }).tie(console.log) /// ``` fn vote_on_proposal(origin, proposal_id: ProposalId, vote: VoteKind) -> Result { let voter = ensure_signed(origin)?; - ensure!(Self::is_council_member(voter.clone()), "Only council members can vote on proposals"); + ensure!(Self::is_councilor(voter.clone()), MSG_ONLY_COUNCILORS_CAN_VOTE); - ensure!(>::exists(proposal_id), "This proposal does not exist"); + ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); - ensure!(voter != proposal.proposer, "You cannot vote on your proposals"); - ensure!(proposal.status == Pending, "Proposal is finalized already"); + // TODO fix bug? + ensure!(voter != proposal.proposer, MSG_CANNOT_VOTE_ON_OWN_PROPOSAL); + + ensure!(proposal.status == Pending, MSG_PROPOSAL_FINALIZED); let not_expired = !Self::is_voting_period_expired(proposal.proposed_on); - ensure!(not_expired, "Voting period is expired for this proposal"); + ensure!(not_expired, MSG_PROPOSAL_EXPIRED); let did_not_vote_before = !>::exists((voter.clone(), proposal_id)); - ensure!(did_not_vote_before, "You have already voted for this proposal"); + ensure!(did_not_vote_before, MSG_YOU_ALREADY_VOTED); // Append a new vote to other votes on this proposal: let new_vote = (voter.clone(), vote.clone()); @@ -244,23 +263,24 @@ decl_module! { Ok(()) } + // TODO add 'reason' why a proposer wants to cancel. /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. fn cancel_proposal(origin, proposal_id: ProposalId) -> Result { let proposer = ensure_signed(origin)?; - ensure!(>::exists(proposal_id), "This proposal does not exist"); + ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); - ensure!(proposer == proposal.proposer, "You do not own this proposal"); - ensure!(proposal.status == Pending, "Proposal is finalized already"); + ensure!(proposer == proposal.proposer, MSG_YOU_DONT_OWN_THIS_PROPOSAL); + ensure!(proposal.status == Pending, MSG_PROPOSAL_FINALIZED); // Spend some minimum fee on proposer's balance for canceling a proposal let fee = Self::cancellation_fee(); - let _ = >::slash_reserved(&proposer, fee); + let _ = >::slash_reserved(&proposer, fee); // Return unspent part of remaining staked deposit (after taking some fee) let left_stake = proposal.stake - fee; - let _ = >::unreserve(&proposer, left_stake); + let _ = >::unreserve(&proposer, left_stake); Self::_update_proposal_status(proposal_id, Cancelled)?; Self::deposit_event(RawEvent::ProposalCanceled(proposer, proposal_id)); @@ -268,7 +288,7 @@ decl_module! { Ok(()) } - // fn update_runtime(origin, proposal_id: ProposalId, wasm_code: Vec) -> Result { + // fn update_runtime(origin, proposal_id: ProposalId, wasm_code: Vec) -> Result { // ensure!(>::exists(proposal_id), "This proposal does not exist"); // let proposal = Self::proposal(proposal_id); @@ -279,10 +299,10 @@ decl_module! { // Called on every block fn on_finalise(n: T::BlockNumber) { - if let Err(e) = Self::end_block(n) { - print(e); - } - } + if let Err(e) = Self::end_block(n) { + print(e); + } + } } } @@ -297,16 +317,11 @@ impl Module { true } - pub fn is_council_member(sender: T::AccountId) -> bool { + pub fn is_councilor(sender: T::AccountId) -> bool { // TODO This method should be implemented in Council module. true } - pub fn council_members_count() -> u32 { - // TODO This method should be implemented in Council module. - 10 - } - pub fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { Self::current_block() > proposed_on + Self::voting_period() } @@ -325,19 +340,20 @@ impl Module { /// Get the voters for the current proposal. pub fn tally(/* proposal_id: ProposalId */) -> Result { - let councilors = Self::council_members_count(); - let quorum = (Self::approval_quorum() * councilors) / 100; - for proposal_id in Self::pending_proposal_ids() { + let councilors: u32 = Self::council_members_count(); + let quorum: u32 = (Self::approval_quorum() * councilors) / 100; + + for &proposal_id in Self::pending_proposal_ids().iter() { let proposal = Self::proposal(proposal_id); let is_expired = Self::is_voting_period_expired(proposal.proposed_on); let votes = Self::votes_by_proposal(proposal_id); let all_councilors_voted = votes.len() as u32 == councilors; - - let mut abstentions = 0; - let mut approvals = 0; - let mut rejections = 0; - let mut slashes = 0; + + let mut abstentions: u32 = 0; + let mut approvals: u32 = 0; + let mut rejections: u32 = 0; + let mut slashes: u32 = 0; for (_, vote) in votes.iter() { match vote { @@ -398,7 +414,7 @@ impl Module { let not_found_in_pendings = other_pendings.len() == all_len; if not_found_in_pendings { // Seems like this proposal's status has been updated and removed from pendings. - Err("Proposal status has been updated already") + Err(MSG_PROPOSAL_STATUS_ALREADY_UPDATED) } else { let pid = proposal_id.clone(); match new_status { @@ -419,7 +435,7 @@ impl Module { let proposal = Self::proposal(proposal_id); // Slash proposer's stake: - let _ = >::slash_reserved(&proposal.proposer, proposal.stake); + let _ = >::slash_reserved(&proposal.proposer, proposal.stake); Ok(()) } @@ -431,11 +447,11 @@ impl Module { // Spend some minimum fee on proposer's balance to prevent spamming attacks: let fee = Self::rejection_fee(); - let _ = >::slash_reserved(&proposer, fee); + let _ = >::slash_reserved(&proposer, fee); // Return unspent part of remaining staked deposit (after taking some fee): let left_stake = proposal.stake - fee; - let _ = >::unreserve(&proposer, left_stake); + let _ = >::unreserve(&proposer, left_stake); Ok(()) } @@ -448,7 +464,7 @@ impl Module { let _ = >::unreserve(&proposal.proposer, proposal.stake); // Update wasm code of node's runtime: - >::set_code(proposal.wasm_code.clone()); + >::set_code(proposal.wasm_code.clone())?; // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 let wasm_hash = T::Hashing::hash(&proposal.wasm_code); @@ -457,3 +473,448 @@ impl Module { Ok(()) } } + +#[cfg(test)] +mod tests { + + use super::*; + use runtime_io::with_externalities; + use primitives::{H256, Blake2Hasher}; + // The testing primitives are very useful for avoiding having to work with signatures + // or public keys. `u64` is used as the `AccountId` and no `Signature`s are requried. + use runtime_primitives::{ + BuildStorage, + traits::{BlakeTwo256, OnFinalise, IdentityLookup}, + testing::{Digest, DigestItem, Header, UintAuthorityId} + }; + + impl_outer_origin! { + pub enum Origin for Test {} + } + + // For testing the module, we construct most of a mock runtime. This means + // first constructing a configuration type (`Test`) which `impl`s each of the + // configuration traits of modules we want to use. + #[derive(Clone, Eq, PartialEq)] + pub struct Test; + + impl consensus::Trait for Test { + type SessionKey = UintAuthorityId; + type InherentOfflineReport = (); + type Log = DigestItem; + } + + impl system::Trait for Test { + type Origin = Origin; + type Index = u64; + type BlockNumber = u64; + type Hash = H256; + type Hashing = BlakeTwo256; + type Digest = Digest; + type AccountId = u64; + type Lookup = IdentityLookup; + type Header = Header; + type Event = (); + type Log = DigestItem; + } + + impl balances::Trait for Test { + type Balance = u64; + type OnFreeBalanceZero = (); + type OnNewAccount = (); + type EnsureAccountLiquid = (); + type Event = (); + } + + impl timestamp::Trait for Test { + type Moment = u64; + type OnTimestampSet = (); + } + + impl Trait for Test { + type Event = (); + } + + type System = system::Module; + type Consensus = consensus::Module; + type Balances = balances::Module; + type Proposals = Module; + + const COUNCILOR1: u64 = 1; + const COUNCILOR2: u64 = 2; + const COUNCILOR3: u64 = 3; + const COUNCILOR4: u64 = 4; + const COUNCILOR5: u64 = 5; + + const PROPOSER1: u64 = 11; + const PROPOSER2: u64 = 12; + + const NOT_MEMBER: u64 = 21; + const NOT_COUNCILOR: u64 = 22; + + const ALL_COUNCILORS: [u64; 5] = [ + COUNCILOR1, + COUNCILOR2, + COUNCILOR3, + COUNCILOR4, + COUNCILOR5 + ]; + + // This function basically just builds a genesis storage key/value store according to + // our desired mockup. + fn new_test_ext() -> runtime_io::TestExternalities { + let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; + // We use default for brevity, but you can configure as desired if needed. + t.extend(balances::GenesisConfig::::default().build_storage().unwrap().0); + + // Here we can override defaults: + t.extend(GenesisConfig::{ + council_members_count: ALL_COUNCILORS.len() as u32, + approval_quorum: APPROVAL_QUORUM, + minimum_stake: MIN_STAKE, + cancellation_fee: 5, + rejection_fee: 10, + voting_period: 10 + }.build_storage().unwrap().0); + + t.into() + } + + fn name() -> Vec { + b"Proposal Name".to_vec() + } + + fn description() -> Vec { + b"Proposal Description".to_vec() + } + + fn wasm_code() -> Vec { + b"Proposal Wasm Code".to_vec() + } + + fn _create_default_proposal() -> Result { + self::_create_proposal(None, None, None, None, None) + } + + fn _create_proposal( + origin: Option, + stake: Option, + name: Option>, + description: Option>, + wasm_code: Option> + ) -> Result { + Proposals::create_proposal( + Origin::signed(origin.unwrap_or(PROPOSER1)), + stake.unwrap_or(MIN_STAKE), + name.unwrap_or(self::name()), + description.unwrap_or(self::description()), + wasm_code.unwrap_or(self::wasm_code()) + ) + } + + #[test] + fn check_default_values() { + with_externalities(&mut new_test_ext(), || { + assert_eq!(Proposals::approval_quorum(), APPROVAL_QUORUM); + assert_eq!(Proposals::minimum_stake(), MIN_STAKE); + assert_eq!(Proposals::cancellation_fee(), 5); + assert_eq!(Proposals::rejection_fee(), 10); + assert_eq!(Proposals::proposal_count(), 0); + assert_eq!(Proposals::pending_proposal_ids().len(), 0); + }); + } + + #[test] + fn member_create_proposal() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + + assert_ok!(self::_create_default_proposal()); + assert_eq!(Proposals::pending_proposal_ids().len(), 1); + assert_eq!(Proposals::pending_proposal_ids()[0], 1); + + let expected_proposal = Proposal { + id: 1, + proposer: PROPOSER1, + stake: MIN_STAKE, + name: name(), + description: description(), + wasm_code: wasm_code(), + proposed_on: 1, + status: Pending + }; + assert_eq!(Proposals::proposal(1), expected_proposal); + + // TODO test event ProposalCreated(AccountId, ProposalId) + }); + } + + #[test] + fn not_member_cannot_create_proposal() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + + }); + } + + #[test] + fn cannot_create_proposal_with_small_stake() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + + assert_eq!(self::_create_proposal( + None, Some(MIN_STAKE - 1), None, None, None), + Err(MSG_STAKE_IS_TOO_SMALL)); + }); + } + + #[test] + fn cannot_create_proposal_with_empty_name() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + }); + } + + #[test] + fn cannot_create_proposal_with_empty_description() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + }); + } + + #[test] + fn cannot_create_proposal_with_empty_wasm_code() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + }); + } + + // TODO test: councilor cannot create a proposal ? + + // ------------------------------------------------------------------- + // Cancellation + + #[test] + fn owner_cancel_proposal() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + + assert_ok!(self::_create_default_proposal()); + assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); + + // TODO test that balance reduced by cancellation_fee + + assert_eq!(Proposals::proposal(1).status, Cancelled); + assert_eq!(Proposals::pending_proposal_ids().len(), 0); + + // TODO write test + // TODO test event ProposalCanceled(AccountId, ProposalId) + }); + } + + #[test] + fn owner_cannot_cancel_proposal_if_its_finalized() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + + assert_ok!(self::_create_default_proposal()); + assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); + assert_eq!(Proposals::proposal(1).status, Cancelled); + assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1), + Err(MSG_PROPOSAL_FINALIZED)); + }); + } + + #[test] + fn not_owner_cannot_cancel_proposal() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + + // TODO check that account is member first: + // assert_eq!(self::_create_proposal( + // Some(NOT_MEMBER), None, None, None, None), + // Err(MSG_ONLY_MEMBERS_CAN_PROPOSE)); + }); + } + + // ------------------------------------------------------------------- + // Voting + + #[test] + fn councilor_vote_on_proposal() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + assert_ok!(self::_create_default_proposal()); + + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(COUNCILOR1), 1, Approve)); + + assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); + assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); + + // expect event Voted(AccountId, ProposalId, VoteKind) + // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + }); + } + + #[test] + fn councilor_cannot_vote_on_proposal_twice() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + assert_ok!(self::_create_default_proposal()); + + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(COUNCILOR1), 1, Approve)); + assert_eq!(Proposals::vote_on_proposal( + Origin::signed(COUNCILOR1), 1, Approve), + Err(MSG_YOU_ALREADY_VOTED)); + }); + } + + #[test] + fn not_councilor_cannot_vote_on_proposal() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + assert_ok!(self::_create_default_proposal()); + + // TODO mock is_councilor == false for this place: + // assert_eq!(Proposals::vote_on_proposal( + // Origin::signed(NOT_COUNCILOR), 1, Approve), + // Err(MSG_ONLY_COUNCILORS_CAN_VOTE)); + }); + } + + #[test] + fn councilor_cannot_vote_on_proposal_if_its_not_pending() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + }); + } + + // ------------------------------------------------------------------- + // Tally + Outcome: + + #[test] + fn approve_proposal_when_all_councilors_approved_it() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + + assert_ok!(self::_create_default_proposal()); + + let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; + for &councilor in ALL_COUNCILORS.iter() { + expected_votes.push((councilor, Approve)); + assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Approve)); + assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Approve); + } + assert_eq!(Proposals::votes_by_proposal(1), expected_votes); + + System::set_block_number(2); + Proposals::on_finalise(2); + + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: ALL_COUNCILORS.len() as u32, + rejections: 0, + slashes: 0, + status: Approved, + finalized_on: 2 + }); + + // TODO finish test: + // proposer's stake has been unlocked + // runtime updated + // proposal's status updated to Approved + // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + }); + } + + #[test] + fn quorum_approved_proposal() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + // runtime updated + // proposal's status updated to Approved + // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + }); + } + + #[test] + fn reject_proposal_when_all_councilors_voted_but_quorum_not_reached() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + // proposer's balance reduced by rejection_fee + // proposal's status updated to Rejected + // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + }); + } + + #[test] + fn reject_proposal_when_not_all_councilors_voted_and_quorum_not_reached() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + // proposal's status updated to Rejected + // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + }); + } + + #[test] + fn reject_proposal_when_all_councilors_rejected_it() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + // runtime not updated + // proposal's status updated to Rejected + // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + }); + } + + #[test] + fn slash_proposal_when_all_councilors_slashed_it() { + with_externalities(&mut new_test_ext(), || { + + Balances::set_free_balance(&PROPOSER1, 250); + Balances::increase_total_stake_by(250); + + assert_ok!(self::_create_default_proposal()); + + let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; + for &councilor in ALL_COUNCILORS.iter() { + expected_votes.push((councilor, Slash)); + assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Slash)); + assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Slash); + } + assert_eq!(Proposals::votes_by_proposal(1), expected_votes); + + System::set_block_number(2); + Proposals::on_finalise(2); + + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: 0, + rejections: 0, + slashes: ALL_COUNCILORS.len() as u32, + status: Slashed, + finalized_on: 2 + }); + + assert_eq!(Proposals::proposal(1).status, Slashed); + + // TODO write test + // proposer's balance reduced by stake amount + // runtime not updated + // proposal's status updated to Slashed + // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + }); + } +} \ No newline at end of file From 27441097fbf2eb31b72b71e6b584fb46688d7fba Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 29 Jan 2019 15:45:52 +0200 Subject: [PATCH 014/350] Add script to run tests --- test-all.sh | 1 + 1 file changed, 1 insertion(+) create mode 100755 test-all.sh diff --git a/test-all.sh b/test-all.sh new file mode 100755 index 0000000000..9e06a10dfe --- /dev/null +++ b/test-all.sh @@ -0,0 +1 @@ +cargo test --all From 40726741c6b94c1a6577f28453fa4ab6a682f56e Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 29 Jan 2019 15:46:12 +0200 Subject: [PATCH 015/350] Upd readme --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1f62300da1..eb5b2a13f5 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Joystream node built on top of Substrate. Call this script once. It will init WASM environment and build a node. It will take some time (tens of minutes), so be patient. -```sh +```bash ./init.sh ``` @@ -15,13 +15,13 @@ It will take some time (tens of minutes), so be patient. Call this script every time you updated a runtime, before restarting a node. -```sh +```bash ./build.sh ``` ## Start node -```sh +```bash ./start-node.sh ``` @@ -29,6 +29,12 @@ Call this script every time you updated a runtime, before restarting a node. It's a good practice to clean chain data after a runtime updated and you are about to restart a node. -```sh +```bash ./clean-chain.sh ``` + +## Test + +```bash +./test-all.sh +``` From 65f237454abe44529e70b6cc5ef10f9ed10f0920 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 29 Jan 2019 15:51:50 +0200 Subject: [PATCH 016/350] Update node to substrate at commit 53bf81e5 --- Cargo.toml | 30 +++++++++++++++--------------- runtime/Cargo.toml | 38 +++++++++++++++++++------------------- runtime/wasm/Cargo.toml | 34 +++++++++++++++++----------------- src/chain_spec.rs | 2 +- src/main.rs | 6 +++--- src/service.rs | 35 +++++++++++++++++++++++------------ 6 files changed, 78 insertions(+), 67 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a465507bd9..46d78946f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,22 +18,22 @@ exit-future = "0.1" parking_lot = "0.4" hex-literal = "0.1" slog = "^2" -parity-codec = { version = "2.1" } -trie-root = { git = "https://github.com/paritytech/trie" } -sr-io = { git = "https://github.com/paritytech/substrate" } -sr-primitives = { git = "https://github.com/paritytech/substrate" } -substrate-cli = { git = "https://github.com/paritytech/substrate" } -substrate-primitives = { git = "https://github.com/paritytech/substrate" } -substrate-executor = { git = "https://github.com/paritytech/substrate" } -substrate-service = { git = "https://github.com/paritytech/substrate" } -substrate-transaction-pool = { git = "https://github.com/paritytech/substrate" } -substrate-network = { git = "https://github.com/paritytech/substrate" } -substrate-consensus-aura = { git = "https://github.com/paritytech/substrate" } -substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false } -substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate" } -substrate-basic-authorship = { git = "https://github.com/paritytech/substrate" } +parity-codec = { version = "2.2" } +trie-root = { git = "https://github.com/paritytech/trie", rev = "2616db2a" } +sr-io = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-cli = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-executor = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-service = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-inherents = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-transaction-pool = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-network = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-consensus-aura = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-client = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-basic-authorship = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } joystream-node-runtime = { path = "runtime" } -node-executor = { git = "https://github.com/paritytech/substrate" } +node-executor = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } structopt = "0.2.13" [build-dependencies] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index b935072ea5..f5ea24c69c 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -9,25 +9,25 @@ hex-literal = "0.1.0" serde = { version = "1.0", default-features = false } serde_derive = { version = "1.0", optional = true } safe-mix = { version = "1.0", default-features = false } -parity-codec = "2.0" -parity-codec-derive = "2.0" -sr-std = { git = "https://github.com/paritytech/substrate" } -sr-io = { git = "https://github.com/paritytech/substrate" } -srml-support = { git = "https://github.com/paritytech/substrate" } -substrate-primitives = { git = "https://github.com/paritytech/substrate" } -substrate-keyring = { git = "https://github.com/paritytech/substrate" } -srml-balances = { git = "https://github.com/paritytech/substrate" } -srml-consensus = { git = "https://github.com/paritytech/substrate" } -srml-aura = { git = "https://github.com/paritytech/substrate" } -srml-executive = { git = "https://github.com/paritytech/substrate" } -srml-indices = { git = "https://github.com/paritytech/substrate" } -sr-primitives = { git = "https://github.com/paritytech/substrate" } -srml-system = { git = "https://github.com/paritytech/substrate" } -srml-timestamp = { git = "https://github.com/paritytech/substrate" } -srml-sudo = { git = "https://github.com/paritytech/substrate" } -substrate-client = { git = "https://github.com/paritytech/substrate", optional = true } -sr-version = { git = "https://github.com/paritytech/substrate" } -substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate" } +parity-codec = "2.2" +parity-codec-derive = "2.1" +sr-std = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +sr-io = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-support = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-keyring = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-balances = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-consensus = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-aura = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-executive = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-indices = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +sr-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-system = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-timestamp = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +srml-sudo = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-client = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", optional = true } +sr-version = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } [features] default = ["std"] diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index 870910544b..047ea87275 100644 --- a/runtime/wasm/Cargo.toml +++ b/runtime/wasm/Cargo.toml @@ -10,23 +10,23 @@ crate-type = ["cdylib"] integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git" } safe-mix = { version = "1.0", default-features = false} parity-codec-derive = { version = "^2.1" } -parity-codec = { version = "^2.1", default-features = false } -substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false } -substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false } -sr-std = { git = "https://github.com/paritytech/substrate", default-features = false } -sr-io = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-support = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-balances = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-consensus = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-executive = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-aura = { git = "https://github.com/paritytech/substrate", default-features = false } -sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-system = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-indices = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false } -srml-sudo = { git = "https://github.com/paritytech/substrate", default-features = false } -sr-version = { git = "https://github.com/paritytech/substrate", default-features = false } -substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", default-features = false } +parity-codec = { version = "^2.2", default-features = false } +substrate-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +substrate-client = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +sr-std = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +sr-io = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-support = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-balances = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-consensus = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-executive = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-aura = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +sr-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-system = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-indices = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-timestamp = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +srml-sudo = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +sr-version = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } [features] default = [] diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 19eea0612d..e3602da5db 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -70,7 +70,7 @@ impl Alternative { pub(crate) fn from(s: &str) -> Option { match s { "dev" => Some(Alternative::Development), - "local" => Some(Alternative::LocalTestnet), + "" | "local" => Some(Alternative::LocalTestnet), _ => None, } } diff --git a/src/main.rs b/src/main.rs index d19dcf2a89..93ed7f7401 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,7 +24,7 @@ extern crate substrate_service; extern crate joystream_node_runtime; extern crate structopt; extern crate node_executor; -extern crate sr_primitives as runtime_primitives; +extern crate substrate_inherents as inherents; mod chain_spec; mod service; @@ -38,8 +38,8 @@ fn run() -> cli::error::Result<()> { commit: env!("VERGEN_SHA_SHORT"), version: env!("CARGO_PKG_VERSION"), executable_name: "joystream-node", - author: "Jsgenesis", - description: "Joystream Node", + author: "Jsgenesis.com", + description: "Joystream node built on top of Substrate", }; cli::run(::std::env::args(), cli::Exit, version) } diff --git a/src/service.rs b/src/service.rs index 3815a27587..d9c2fece61 100644 --- a/src/service.rs +++ b/src/service.rs @@ -15,7 +15,7 @@ use node_executor; use consensus::{import_queue, start_aura, AuraImportQueue, SlotDuration, NothingExtra}; use client; use primitives::ed25519::Pair; -use runtime_primitives::BasicInherentData as InherentData; +use inherents::InherentDataProviders; pub use substrate_executor::NativeExecutor; // Our native executor instance. @@ -26,6 +26,18 @@ native_executor_instance!( include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime.compact.wasm") ); +pub struct NodeConfig { + inherent_data_providers: InherentDataProviders, +} + +impl Default for NodeConfig { + fn default() -> Self { + NodeConfig { + inherent_data_providers: InherentDataProviders::new(), + } + } +} + construct_simple_protocol! { /// Demo protocol attachment for substrate. pub struct NodeProtocol where Block = Block { } @@ -42,7 +54,7 @@ construct_service_factory! { LightTransactionPoolApi = transaction_pool::ChainApi, LightExecutor, Block, RuntimeApi>, Block> { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, Genesis = GenesisConfig, - Configuration = (), + Configuration = NodeConfig, FullService = FullComponents { |config: FactoryFullConfiguration, executor: TaskExecutor| FullComponents::::new(config, executor) @@ -64,7 +76,8 @@ construct_service_factory! { proposer, service.network(), service.on_exit(), - )); + service.config.custom.inherent_data_providers.clone(), + )?); } Ok(service) @@ -76,29 +89,27 @@ construct_service_factory! { Self::Block, FullClient, NothingExtra, - ::consensus::InherentProducingFn, > { |config: &mut FactoryFullConfiguration , client: Arc>| - Ok(import_queue( + import_queue( SlotDuration::get_or_compute(&*client)?, client, NothingExtra, - ::consensus::make_basic_inherent as _, - )) + config.custom.inherent_data_providers.clone(), + ).map_err(Into::into) }, LightImportQueue = AuraImportQueue< Self::Block, LightClient, NothingExtra, - ::consensus::InherentProducingFn, > - { |ref mut config, client: Arc>| - Ok(import_queue( + { |config: &mut FactoryFullConfiguration, client: Arc>| + import_queue( SlotDuration::get_or_compute(&*client)?, client, NothingExtra, - ::consensus::make_basic_inherent as _, - )) + config.custom.inherent_data_providers.clone(), + ).map_err(Into::into) }, } } From db570357a3a9aead280e30e53c60c3577830c956 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 22 Jan 2019 14:17:58 +0200 Subject: [PATCH 017/350] importing council implementation --- runtime/src/governance/council.rs | 69 +++++++++ runtime/src/governance/election.rs | 239 +++++++++++++++++++++++++++++ runtime/src/governance/mod.rs | 58 +++++++ runtime/src/lib.rs | 14 ++ 4 files changed, 380 insertions(+) create mode 100644 runtime/src/governance/council.rs create mode 100644 runtime/src/governance/election.rs create mode 100644 runtime/src/governance/mod.rs diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs new file mode 100644 index 0000000000..9a5e213ada --- /dev/null +++ b/runtime/src/governance/council.rs @@ -0,0 +1,69 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +extern crate sr_std; +#[cfg(test)] +extern crate sr_io; +#[cfg(test)] +extern crate substrate_primitives; +extern crate sr_primitives; +#[cfg(feature = "std")] +extern crate parity_codec as codec; +//extern crate srml_system as system; +use srml_support::dispatch::Vec; + +use srml_support::{StorageValue, dispatch::Result}; +use runtime_primitives::traits::{Hash, As}; +use {balances, system::{self, ensure_signed}}; + +pub trait Trait: system::Trait + balances::Trait { + type Event: From> + Into<::Event>; +} + +#[derive(Clone, Encode, Decode)] +pub struct Seat { + pub member: Id, + pub stake: Stake, + pub backers: Vec>, +} + +#[derive(Clone, Encode, Decode)] +pub struct Backer { + pub member: Id, + pub stake: Stake, +} + +pub type Council = Vec>; + +decl_storage! { + trait Store for Module as CouncilInSession { + // Initial state - council is empty and resigned, which will trigger + // and election in next block + ActiveCouncil get(council): Option>; + + TermEnds get(term_ends): T::BlockNumber = T::BlockNumber::sa(0); + } +} + +/// Event for this module. +decl_event!( + pub enum Event where ::BlockNumber { + CouncilResigned(BlockNumber), + CouncilTermEnded(BlockNumber), + } +); + +impl Module { + pub fn set_council() { + + } + + pub fn term_ended(n: T::BlockNumber) -> bool { + n >= Self::term_ends() + } +} + +decl_module! { + pub struct Module for enum Call where origin: T::Origin { + fn deposit_event() = default; + } +} \ No newline at end of file diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs new file mode 100644 index 0000000000..bb7afe1184 --- /dev/null +++ b/runtime/src/governance/election.rs @@ -0,0 +1,239 @@ +extern crate parity_codec; + +use self::parity_codec::Encode; +use srml_support::{StorageValue, StorageMap, dispatch::Result}; +use runtime_primitives::traits::{Hash, As}; +use {balances, system::{self, ensure_signed}}; +use runtime_io::print; + +use governance::council; + +pub trait Trait: system::Trait + council::Trait + balances::Trait { + type Event: From> + Into<::Event>; +} + +#[derive(Clone, Copy, Encode, Decode)] +pub struct Period { + pub start: T, + pub end: T +} + +#[derive(Clone, Copy, Encode, Decode)] +pub enum Stage { + Announcing(Period), + Voting(Period), + Revealing(Period), +} + +#[derive(Clone, Copy, Encode, Decode, Default)] +pub struct Stake { + pub refundable: Balance, + pub transferred: Balance, +} + +type Round = u32; // should go in the Trait? - only if it needs to configurabel + +const ANNOUNCING_PERIOD:u64 = 20; +const VOTING_PERIOD:u64 = 20; +const REVEALING_PERIOD:u64 = 20; +const COUNCIL_SIZE: usize = 10; +const CANDIDACY_LIMIT: usize = 20; +const COUNCIL_MIN_STAKE: u32 = 100; + +decl_storage! { + trait Store for Module as CouncilElection { + //Current stage if there is an election ongoing + ElectionStage get(stage): Option>; + + // The election round + ElectionRound get(round): Round = 0; + + // map doesn't have a clear() method so need to keep track of keys to know + // what keys to delete later < if council is not modified during election + // we could always re-computer the vectors + BackingStakeHolders get(backing_stakeholders): Vec; + CouncilStakeHolders get(council_stakeholders): Vec; + AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; + AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; + + Applicants get(applicants): Vec<(T::AccountId, T::Balance)>; + ApplicantsMap get(applicants_map): map T::AccountId => Stake; + + Candidates get(candidates): Vec; + CandidatesMap get(candidates_map): map T::AccountId => bool; + } +} + +/// Event for this module. +decl_event!( + pub enum Event where ::BlockNumber { + /// A new election started + ElectionStarted(BlockNumber), + AnnouncingStarted(Round), + AnnouncingEnded(), + VotingStarted(), + VotingEnded(), + RevealingStarted(), + RevealingEnded(), + ElectionCompleted(), + } +); + + +impl Module { + pub fn start_election() -> Result { + if Self::stage().is_some() { + Err("election in progress") + } else { + print("Election: Starting"); + let current_block = >::block_number(); + Self::deposit_event(RawEvent::ElectionStarted(current_block)); + // take snapshot of council and backing stakes + Self::initialize_transferable_stakes(); + Self::move_to_announcing_stage(); + Ok(()) + } + } + + fn new_period(length: T::BlockNumber) -> Period { + let current_block = >::block_number(); + Period { + start: current_block, + end: current_block + length + } + } + + fn bump_round() -> Round { + // bump the round number + // >::mutate(|n| *n += 1) // doesn't return anything + let next_round = Self::round() + 1; + >::put(next_round); + print("Bumping Election Round"); + next_round + } + + fn move_to_announcing_stage() { + let period = Self::new_period(T::BlockNumber::sa(ANNOUNCING_PERIOD)); + + >::put(Stage::Announcing(period)); + + let next_round = Self::bump_round(); + + Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); + print("Announcing Started"); + } + + fn on_announcing_ended() { + if Self::applicants().len() < COUNCIL_SIZE { + // Not enough candidates announced candidacy + Self::move_to_announcing_stage(); + } else { + // Sort Applicants by stake decending, and filter top CANDIDACY_LIMIT + // Howto ensure deterministic sorting (stable sort -> sort_by_key) - also howto deal with + // equal stake for bottom slot - order in applicants vector. + let mut applicants = Self::applicants(); + applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? + applicants.reverse(); // If ASC + let mut candidates: Vec = vec![]; + for (ref applicant, _) in applicants[0..CANDIDACY_LIMIT].iter() { + >::insert(applicant, true); + candidates.push(applicant.clone()); + } + >::put(candidates); + Self::move_to_voting_stage(); + } + } + + fn move_to_voting_stage() { + let period = Self::new_period(T::BlockNumber::sa(VOTING_PERIOD)); + + >::put(Stage::Voting(period)); + + Self::deposit_event(RawEvent::VotingStarted()); + print("Voting Started"); + } + + fn on_voting_ended() { + Self::move_to_revealing_stage(); + } + + fn move_to_revealing_stage() { + let period = Self::new_period(T::BlockNumber::sa(REVEALING_PERIOD)); + + >::put(Stage::Revealing(period)); + + Self::deposit_event(RawEvent::RevealingStarted()); + print("Revealing Started"); + } + + fn on_revealing_ended() { + >::kill(); + Self::deposit_event(RawEvent::ElectionCompleted()); + //Self::set_new_council(X); + print("Election Round Ended"); + } + + fn tick(n: T::BlockNumber) { + print("Election: tick"); + if let Some(stage) = Self::stage() { + match stage { + Stage::Announcing(period) => { + if period.end == n { + Self::deposit_event(RawEvent::AnnouncingEnded()); + Self::on_announcing_ended(); + } + }, + Stage::Voting(period) => { + if period.end == n { + Self::deposit_event(RawEvent::VotingEnded()); + Self::on_voting_ended(); + } + }, + Stage::Revealing(period) => { + if period.end == n { + Self::deposit_event(RawEvent::RevealingEnded()); + Self::on_revealing_ended(); + } + }, + } + } + } + + pub fn can_start_election() -> bool { + Self::stage().is_none() + } + + /// Takes a snapshot of the stakes from the current council + fn initialize_transferable_stakes() { + if let Some(council) = >::council() { + let mut accountsCouncil: Vec = vec![]; + let mut accountsBackers: Vec = vec![]; + for ref seat in council.iter() { + >::insert(seat.member, seat.stake); + accountsCouncil.push(seat.member); + for ref backer in seat.backers.iter() { + if !>::exists(backer.member) { + >::insert(backer.member, backer.stake); + accountsBackers.push(backer.member); + } else { + >::mutate(backer.member, |stake| *stake += backer.stake); + } + } + } + + >::put(accountsCouncil); + >::put(accountsBackers); + } + } +} + +decl_module! { + pub struct Module for enum Call where origin: T::Origin { + fn deposit_event() = default; + + // No origin so this is a priviledged call + fn on_finalise(n: T::BlockNumber){ + let _ = Self::tick(n); + } + } +} diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs new file mode 100644 index 0000000000..7b08cd1ec7 --- /dev/null +++ b/runtime/src/governance/mod.rs @@ -0,0 +1,58 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +extern crate sr_std; +#[cfg(test)] +extern crate sr_io; +#[cfg(test)] +extern crate substrate_primitives; +extern crate sr_primitives; +#[cfg(feature = "std")] +extern crate parity_codec as codec; +//extern crate srml_system as system; +use runtime_io::print; + +pub mod election; +pub mod council; + +use srml_support::{StorageValue, dispatch::Result}; +use runtime_primitives::traits::{Hash, As}; +use {balances, system::{self, ensure_signed}}; + +pub trait Trait: system::Trait + council::Trait + election::Trait { + type Event: From> + Into<::Event>; +} + +decl_storage! { + trait Store for Module as Governance { + + } +} + +/// Event for this module. +decl_event!( + pub enum Event where ::BlockNumber { + Dummy(BlockNumber), + } +); + +impl Module { + +} + +decl_module! { + pub struct Module for enum Call where origin: T::Origin { + fn deposit_event() = default; + + fn on_finalise(n: T::BlockNumber) { + print("Governance::tick"); + // Determine if we need to start an election + if >::can_start_election() { + if >::council().is_none() || >::term_ended(n) { + print("Governance: Starting Election"); + // panic means broken invariant! + >::start_election().expect("must be able to start election"); + } + } + } + } +} \ No newline at end of file diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 983edf63d5..c551808349 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -33,6 +33,9 @@ extern crate srml_aura as aura; extern crate srml_indices as indices; extern crate substrate_consensus_aura_primitives as consensus_aura; +mod governance; +use governance::{election, council}; + use rstd::prelude::*; #[cfg(feature = "std")] use primitives::bytes; @@ -199,6 +202,14 @@ impl proposals::Trait for Runtime { type Event = Event; } +impl governance::election::Trait for Runtime { + type Event = Event; +} + +impl governance::council::Trait for Runtime { + type Event = Event; +} + construct_runtime!( pub enum Runtime with Log(InternalLog: DigestItem) where Block = Block, @@ -213,6 +224,9 @@ construct_runtime!( Balances: balances, Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event}, + Governance: governance::{Module, Call, Storage, Event}, + CouncilElection: election::{Module, Call, Storage, Event}, + Council: council::{Module, Call, Storage, Event}, } ); From bc580e392c31a2ae675c6c48bc8ead1e8b8deb72 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 23 Jan 2019 12:40:54 +0200 Subject: [PATCH 018/350] importing council implementation from other repo --- runtime/src/governance/council.rs | 2 +- runtime/src/governance/election.rs | 126 +++++++++++++++---- runtime/src/governance/mod.rs | 5 +- runtime/src/governance/transferable_stake.rs | 52 ++++++++ 4 files changed, 158 insertions(+), 27 deletions(-) create mode 100644 runtime/src/governance/transferable_stake.rs diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 9a5e213ada..f299f3136c 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -26,7 +26,7 @@ pub struct Seat { pub backers: Vec>, } -#[derive(Clone, Encode, Decode)] +#[derive(Copy, Clone, Encode, Decode)] pub struct Backer { pub member: Id, pub stake: Stake, diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index bb7afe1184..172dcdb184 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,11 +1,12 @@ extern crate parity_codec; - use self::parity_codec::Encode; -use srml_support::{StorageValue, StorageMap, dispatch::Result}; -use runtime_primitives::traits::{Hash, As}; +use srml_support::{StorageValue, StorageMap, StorageVec, dispatch::Result}; +use runtime_primitives::traits::{Hash, As, SimpleArithmetic, CheckedAdd, CheckedSub, Zero}; use {balances, system::{self, ensure_signed}}; use runtime_io::print; +use srml_support::dispatch::Vec; +use governance::transferable_stake::Stake; use governance::council; pub trait Trait: system::Trait + council::Trait + balances::Trait { @@ -25,12 +26,6 @@ pub enum Stage { Revealing(Period), } -#[derive(Clone, Copy, Encode, Decode, Default)] -pub struct Stake { - pub refundable: Balance, - pub transferred: Balance, -} - type Round = u32; // should go in the Trait? - only if it needs to configurabel const ANNOUNCING_PERIOD:u64 = 20; @@ -38,7 +33,7 @@ const VOTING_PERIOD:u64 = 20; const REVEALING_PERIOD:u64 = 20; const COUNCIL_SIZE: usize = 10; const CANDIDACY_LIMIT: usize = 20; -const COUNCIL_MIN_STAKE: u32 = 100; +const COUNCIL_MIN_STAKE: u64 = 100; decl_storage! { trait Store for Module as CouncilElection { @@ -56,11 +51,13 @@ decl_storage! { AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; - Applicants get(applicants): Vec<(T::AccountId, T::Balance)>; + Applicants get(applicants): Vec; ApplicantsMap get(applicants_map): map T::AccountId => Stake; Candidates get(candidates): Vec; CandidatesMap get(candidates_map): map T::AccountId => bool; + + //UsesStorageVec get(dummy): vec; } } @@ -131,11 +128,20 @@ impl Module { // Sort Applicants by stake decending, and filter top CANDIDACY_LIMIT // Howto ensure deterministic sorting (stable sort -> sort_by_key) - also howto deal with // equal stake for bottom slot - order in applicants vector. - let mut applicants = Self::applicants(); + // This is highly ineffieicent (cloning ApplicationId twice) + // using functional style should help + let mut applicants: Vec<(T::AccountId, Stake)> = Vec::new(); + for applicant in Self::applicants().iter() { + let stake = Self::applicants_map(applicant); + applicants.push((applicant.clone(), stake)); + } + applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? applicants.reverse(); // If ASC - let mut candidates: Vec = vec![]; - for (ref applicant, _) in applicants[0..CANDIDACY_LIMIT].iter() { + applicants.truncate(CANDIDACY_LIMIT); + + let mut candidates: Vec = Vec::new(); + for (applicant, _) in applicants.iter() { >::insert(applicant, true); candidates.push(applicant.clone()); } @@ -206,23 +212,82 @@ impl Module { /// Takes a snapshot of the stakes from the current council fn initialize_transferable_stakes() { if let Some(council) = >::council() { - let mut accountsCouncil: Vec = vec![]; - let mut accountsBackers: Vec = vec![]; + let mut accounts_council: Vec = Vec::new(); + let mut accounts_backers: Vec = Vec::new(); for ref seat in council.iter() { - >::insert(seat.member, seat.stake); - accountsCouncil.push(seat.member); + let id = seat.member.clone(); + >::insert(&id, seat.stake); + accounts_council.push(id); for ref backer in seat.backers.iter() { - if !>::exists(backer.member) { - >::insert(backer.member, backer.stake); - accountsBackers.push(backer.member); + let id = backer.member.clone(); + if !>::exists(&id) { + >::insert(&id, backer.stake); + accounts_backers.push(id); } else { - >::mutate(backer.member, |stake| *stake += backer.stake); + >::mutate(&backer.member, |stake| *stake += backer.stake); } } } - >::put(accountsCouncil); - >::put(accountsBackers); + >::put(accounts_council); + >::put(accounts_backers); + } + } + + fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { + let mut current_stake: Stake = Default::default(); //zero + + if >::exists(&applicant) { + current_stake = >::get(&applicant); + } + + let mut available_council_stake: T::Balance = Default::default(); //zero + + if >::exists(&applicant){ + available_council_stake = >::get(&applicant); + } + + if available_council_stake > T::Balance::zero() { + if available_council_stake >= stake { + available_council_stake -= stake; + current_stake.transferred += stake; + } else { + let diff = stake - available_council_stake; + if >::free_balance(&applicant) >= diff { + current_stake.transferred += available_council_stake; + available_council_stake = T::Balance::zero(); + current_stake.refundable += diff; + // deduct the difference from the applicant's balance + if >::decrease_free_balance(&applicant, diff).is_err() { + return Err("failed to update balance"); + } + } else { + return Err("not enough balance to cover stake") + } + } + >::insert(&applicant, available_council_stake); + } else { + if >::free_balance(&applicant) >= stake { + current_stake.refundable += stake; + if >::decrease_free_balance(&applicant, stake).is_err() { + return Err("failed to update balance"); + } + } else { + return Err("not enough balance to cover stake"); + } + } + + // Make sure total staked meets minimum council stake requirement + if current_stake.total() >= T::Balance::sa(COUNCIL_MIN_STAKE) { + if !>::exists(&applicant) { + let mut applicants = Self::applicants(); + applicants.push(applicant.clone()); + >::put(applicants); + } + >::insert(&applicant, current_stake); + Ok(()) + } else { + Err("minimum stake not met") } } } @@ -235,5 +300,18 @@ decl_module! { fn on_finalise(n: T::BlockNumber){ let _ = Self::tick(n); } + + fn announce_candidacy(origin, stake: T::Balance) -> Result { + let sender = ensure_signed(origin)?; + // Can only announce candidacy during election announcing stage + if let Some(stage) = Self::stage() { + match stage { + Stage::Announcing(period) => Self::try_add_applicant(sender, stake), + _ => Err("election not in announcing stage") + } + } else { + Err("election not running") + } + } } } diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 7b08cd1ec7..a332f3e2ae 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -8,15 +8,16 @@ extern crate substrate_primitives; extern crate sr_primitives; #[cfg(feature = "std")] extern crate parity_codec as codec; -//extern crate srml_system as system; +extern crate srml_system as system; use runtime_io::print; pub mod election; pub mod council; +pub mod transferable_stake; use srml_support::{StorageValue, dispatch::Result}; use runtime_primitives::traits::{Hash, As}; -use {balances, system::{self, ensure_signed}}; +use {balances, system::{ensure_signed}}; pub trait Trait: system::Trait + council::Trait + election::Trait { type Event: From> + Into<::Event>; diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs new file mode 100644 index 0000000000..a832982bac --- /dev/null +++ b/runtime/src/governance/transferable_stake.rs @@ -0,0 +1,52 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +extern crate sr_std; +#[cfg(test)] +extern crate sr_io; +#[cfg(test)] +extern crate substrate_primitives; +extern crate sr_primitives; +#[cfg(feature = "std")] +extern crate parity_codec as codec; + +use srml_support::inherent::cmp::Ordering; +use runtime_primitives::traits::{SimpleArithmetic, CheckedAdd, CheckedSub, Zero}; + +#[derive(Clone, Copy, Encode, Decode, Default)] +pub struct Stake +{ + pub refundable: Balance, + pub transferred: Balance, +} + +impl Stake + where Balance: SimpleArithmetic + CheckedAdd + Zero, +{ + pub fn total(&self) -> Balance { + if let Some(t) = self.refundable.checked_add(&self.transferred) { + t + } else { + Balance::zero() //overflow! howto deal with it? + } + } +} + +impl PartialOrd for Stake { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(&other)) + } +} + +impl Ord for Stake { + fn cmp(&self, other: &Self) -> Ordering { + self.total().cmp(&other.total()) + } +} + +impl PartialEq for Stake { + fn eq(&self, other: &Self) -> bool { + self.total() == other.total() + } +} + +impl Eq for Stake {} \ No newline at end of file From bca8f4229b3a26c48d28222b4ad825757fa4cec6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 23 Jan 2019 16:48:39 +0200 Subject: [PATCH 019/350] fix checking for council stake when processing announce candidacy --- runtime/src/governance/election.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 172dcdb184..ddfdabb987 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -243,7 +243,7 @@ impl Module { let mut available_council_stake: T::Balance = Default::default(); //zero - if >::exists(&applicant){ + if >::exists(&applicant){ available_council_stake = >::get(&applicant); } From 5bec37d93efadc64bf2bec16c84ee44d70b87f71 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 11:25:23 +0200 Subject: [PATCH 020/350] adding sealed vote type --- runtime/src/governance/election.rs | 139 +++++++++++++------ runtime/src/governance/mod.rs | 3 +- runtime/src/governance/sealed_vote.rs | 45 ++++++ runtime/src/governance/transferable_stake.rs | 67 +++++++-- 4 files changed, 193 insertions(+), 61 deletions(-) create mode 100644 runtime/src/governance/sealed_vote.rs diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index ddfdabb987..39f24364d9 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,13 +1,14 @@ extern crate parity_codec; use self::parity_codec::Encode; use srml_support::{StorageValue, StorageMap, StorageVec, dispatch::Result}; -use runtime_primitives::traits::{Hash, As, SimpleArithmetic, CheckedAdd, CheckedSub, Zero}; +use runtime_primitives::traits::{Hash, As, Zero}; use {balances, system::{self, ensure_signed}}; use runtime_io::print; use srml_support::dispatch::Vec; use governance::transferable_stake::Stake; use governance::council; +use governance::sealed_vote::SealedVote; pub trait Trait: system::Trait + council::Trait + balances::Trait { type Event: From> + Into<::Event>; @@ -54,10 +55,13 @@ decl_storage! { Applicants get(applicants): Vec; ApplicantsMap get(applicants_map): map T::AccountId => Stake; + // probably don't need this state we only check existance in map + // put in event instead good enough for ui Candidates get(candidates): Vec; CandidatesMap get(candidates_map): map T::AccountId => bool; - //UsesStorageVec get(dummy): vec; + Votes get(votes): Vec, T::AccountId, T::Hash, T::Hash>>; + //Voters get(voters): Vec; // not needed as far as I can see } } @@ -235,60 +239,90 @@ impl Module { } fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { - let mut current_stake: Stake = Default::default(); //zero + let applicant_stake = match >::exists(&applicant) { + false => Default::default(), //zero + true => >::get(&applicant) + }; - if >::exists(&applicant) { - current_stake = >::get(&applicant); + let transferable_stake = match >::exists(&applicant) { + false => Default::default(), //zero + true => >::get(&applicant) + }; + + let mut new_stake: Stake = Default::default(); + + new_stake.transferred = if transferable_stake >= stake { + stake + } else { + transferable_stake + }; + + new_stake.refundable = stake - new_stake.transferred; + + let balance = >::free_balance(&applicant); + + if new_stake.refundable > balance { + return Err("not enough balance to cover stake"); } - let mut available_council_stake: T::Balance = Default::default(); //zero - - if >::exists(&applicant){ - available_council_stake = >::get(&applicant); + if >::decrease_free_balance(&applicant, new_stake.refundable).is_err() { + return Err("failed to update balance"); } - if available_council_stake > T::Balance::zero() { - if available_council_stake >= stake { - available_council_stake -= stake; - current_stake.transferred += stake; - } else { - let diff = stake - available_council_stake; - if >::free_balance(&applicant) >= diff { - current_stake.transferred += available_council_stake; - available_council_stake = T::Balance::zero(); - current_stake.refundable += diff; - // deduct the difference from the applicant's balance - if >::decrease_free_balance(&applicant, diff).is_err() { - return Err("failed to update balance"); - } - } else { - return Err("not enough balance to cover stake") - } + >::insert(&applicant, transferable_stake - new_stake.transferred); + + if !>::exists(&applicant) { + >::mutate(|applicants| applicants.push(applicant.clone())); + } + + if let Some(total_stake) = applicant_stake.checked_add(&new_stake) { + let min_stake = Stake { + refundable: T::Balance::sa(COUNCIL_MIN_STAKE), + transferred: T::Balance::zero() + }; + + if min_stake > total_stake { + return Err("minimum stake not met"); } - >::insert(&applicant, available_council_stake); + + >::insert(applicant.clone(), total_stake); + return Ok(()); } else { - if >::free_balance(&applicant) >= stake { - current_stake.refundable += stake; - if >::decrease_free_balance(&applicant, stake).is_err() { - return Err("failed to update balance"); - } - } else { - return Err("not enough balance to cover stake"); - } + return Err("overflow adding new stake"); } + } - // Make sure total staked meets minimum council stake requirement - if current_stake.total() >= T::Balance::sa(COUNCIL_MIN_STAKE) { - if !>::exists(&applicant) { - let mut applicants = Self::applicants(); - applicants.push(applicant.clone()); - >::put(applicants); - } - >::insert(&applicant, current_stake); - Ok(()) + fn try_add_vote(voter: T::AccountId, stake: T::Balance, commitment: T::Hash) -> Result { + let transferable_stake: T::Balance = match >::exists(&voter) { + false => Default::default(), //zero + true => >::get(&voter) + }; + + let mut vote_stake: Stake = Default::default(); + + vote_stake.transferred = if transferable_stake >= stake { + stake } else { - Err("minimum stake not met") + transferable_stake + }; + + vote_stake.refundable = stake - vote_stake.transferred; + + let balance = >::free_balance(&voter); + + if vote_stake.refundable > balance { + return Err("not enough balance to cover voting stake"); } + + if >::decrease_free_balance(&voter, vote_stake.refundable).is_err() { + return Err("failed to update balance"); + } + + >::mutate(|votes| votes.push(SealedVote::new(voter.clone(), commitment, vote_stake))); + + >::insert(voter.clone(), transferable_stake - vote_stake.transferred); + + Ok(()) } } @@ -306,12 +340,25 @@ decl_module! { // Can only announce candidacy during election announcing stage if let Some(stage) = Self::stage() { match stage { - Stage::Announcing(period) => Self::try_add_applicant(sender, stake), + Stage::Announcing(_) => Self::try_add_applicant(sender, stake), _ => Err("election not in announcing stage") } } else { Err("election not running") } } + + fn vote_for_candidate(origin, commitment: T::Hash, stake: T::Balance) -> Result { + let sender = ensure_signed(origin)?; + // Can only vote during election voting stage + if let Some(stage) = Self::stage() { + match stage { + Stage::Voting(_) => Self::try_add_vote(sender, stake, commitment), + _ => Err("election not in voting stage") + } + } else { + Err("election not running") + } + } } } diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index a332f3e2ae..4746a2e427 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -13,7 +13,8 @@ use runtime_io::print; pub mod election; pub mod council; -pub mod transferable_stake; +mod transferable_stake; +mod sealed_vote; use srml_support::{StorageValue, dispatch::Result}; use runtime_primitives::traits::{Hash, As}; diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs new file mode 100644 index 0000000000..fd8003add5 --- /dev/null +++ b/runtime/src/governance/sealed_vote.rs @@ -0,0 +1,45 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +extern crate sr_std; +#[cfg(test)] +extern crate sr_io; +#[cfg(test)] +extern crate substrate_primitives as primitives; +extern crate sr_primitives; +#[cfg(feature = "std")] +extern crate parity_codec as codec; + +// commitment of a sealed vote is calculated over this structure +#[derive(Clone, Copy, Encode, Decode, Default)] +pub struct Vote { + payload: Payload, + salt: Salt // 32 bytes - secret which seals the payload +} + +#[derive(Clone, Copy, Encode, Decode, Default)] +pub struct SealedVote { + voter: AccountId, + commitment: Hash, // 32 bytes - SHA256 hash of payload + stake: Stake, + vote: Option>, +} + +impl SealedVote { + pub fn new(voter: AccountId, commitment: Hash, stake: Stake) -> SealedVote { + SealedVote { + voter, + commitment, + stake, + vote: None, + } + } + + pub fn unseal(&self, vote: Vote) -> bool { + + false + } + + pub fn unsealed(&self) -> bool { + self.vote.is_some() + } +} \ No newline at end of file diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index a832982bac..fc94afb635 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -10,43 +10,82 @@ extern crate sr_primitives; extern crate parity_codec as codec; use srml_support::inherent::cmp::Ordering; -use runtime_primitives::traits::{SimpleArithmetic, CheckedAdd, CheckedSub, Zero}; +use runtime_primitives::traits::{SimpleArithmetic, CheckedAdd, Zero}; + +//use std::ops::Add; // cant use this in WASM runtime +use rstd::ops::Add; #[derive(Clone, Copy, Encode, Decode, Default)] pub struct Stake + where Balance: Copy + SimpleArithmetic + CheckedAdd + Zero, { pub refundable: Balance, pub transferred: Balance, } -impl Stake - where Balance: SimpleArithmetic + CheckedAdd + Zero, +impl Stake + where Balance: Copy + SimpleArithmetic + CheckedAdd + Zero, { - pub fn total(&self) -> Balance { - if let Some(t) = self.refundable.checked_add(&self.transferred) { - t - } else { - Balance::zero() //overflow! howto deal with it? + pub fn checked_total(&self) -> ::Output { + // sum is not Balance but enum Option because implementaiton does a checked add + self.refundable + self.transferred + } + + // Overflow results in total being zero - only use this for sorting purposes! + fn sorting_total(&self) -> Balance { + match self.refundable.checked_add(&self.transferred) { + Some(t) => t, + None => Balance::zero(), + } + } + + pub fn checked_add(&self, v: &Self) -> Option { + if let Some(refundable) = self.refundable.checked_add(&v.refundable) { + if let Some(transferred) = self.transferred.checked_add(&v.transferred) { + return Some(Self { + refundable, + transferred + }) + } } + + None } } -impl PartialOrd for Stake { +// impl CheckedAdd for Stake { +// fn checked_add(&self, v: &Self) -> Option { +// } +// } + +// impl + Copy> Add for Stake // Balance doesn't satisfy T: Add +// { +// type Output = Stake; + +// fn add(self, other: Stake) -> Stake { +// Stake { +// refundable: self.refundable + other.refundable, +// transferred: self.transferred + other.transferred +// } +// } +// } + +impl PartialOrd for Stake { fn partial_cmp(&self, other: &Self) -> Option { Some(self.cmp(&other)) } } -impl Ord for Stake { +impl Ord for Stake { fn cmp(&self, other: &Self) -> Ordering { - self.total().cmp(&other.total()) + self.sorting_total().cmp(&other.sorting_total()) } } -impl PartialEq for Stake { +impl PartialEq for Stake { fn eq(&self, other: &Self) -> bool { - self.total() == other.total() + self.refundable == other.refundable && self.transferred == other.transferred } } -impl Eq for Stake {} \ No newline at end of file +impl Eq for Stake {} \ No newline at end of file From 6fea74fa1871c143e9839ab3a5f7b6f43eafe1a8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 15:26:53 +0200 Subject: [PATCH 021/350] implemented unsealing of vote --- runtime/src/governance/election.rs | 30 ++++++++++++++-- runtime/src/governance/sealed_vote.rs | 49 ++++++++++++++++++--------- 2 files changed, 60 insertions(+), 19 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 39f24364d9..fb5fa1afcd 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -60,8 +60,8 @@ decl_storage! { Candidates get(candidates): Vec; CandidatesMap get(candidates_map): map T::AccountId => bool; - Votes get(votes): Vec, T::AccountId, T::Hash, T::Hash>>; - //Voters get(voters): Vec; // not needed as far as I can see + Commitments get(commitments): Vec; + Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; } } @@ -318,7 +318,9 @@ impl Module { return Err("failed to update balance"); } - >::mutate(|votes| votes.push(SealedVote::new(voter.clone(), commitment, vote_stake))); + >::mutate(|commitments| commitments.push(commitment)); + + >::insert(commitment, SealedVote::new(voter.clone(), vote_stake, commitment)); >::insert(voter.clone(), transferable_stake - vote_stake.transferred); @@ -360,5 +362,27 @@ decl_module! { Err("election not running") } } + + fn reveal_vote(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) -> Result { + let sender = ensure_signed(origin)?; + + if !>::exists(commitment) { + return Err("commitment not found"); + } + + let mut sealed_vote = >::get(commitment); + + // only voter can reveal their own votes + if !sealed_vote.owned_by(sender) { + return Err("sender is not owner of vote"); + } + + let mut salt = salt.clone(); + let valid = sealed_vote.unseal(vote, &mut salt, ::Hashing::hash)?; + match valid { + true => Ok(()), + false => Err("invalid salt") + } + } } } diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index fd8003add5..08cb27eead 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -9,23 +9,21 @@ extern crate sr_primitives; #[cfg(feature = "std")] extern crate parity_codec as codec; -// commitment of a sealed vote is calculated over this structure -#[derive(Clone, Copy, Encode, Decode, Default)] -pub struct Vote { - payload: Payload, - salt: Salt // 32 bytes - secret which seals the payload -} #[derive(Clone, Copy, Encode, Decode, Default)] -pub struct SealedVote { +pub struct SealedVote + where Vote: codec::Encode, Hash: PartialEq, AccountId: PartialEq +{ voter: AccountId, - commitment: Hash, // 32 bytes - SHA256 hash of payload + commitment: Hash, // 32 bytes - salted hash of serialized Vote stake: Stake, - vote: Option>, + vote: Option, // will be set when unsealing } -impl SealedVote { - pub fn new(voter: AccountId, commitment: Hash, stake: Stake) -> SealedVote { +impl SealedVote + where Vote: codec::Encode, Hash: PartialEq, AccountId: PartialEq +{ + pub fn new(voter: AccountId, stake: Stake, commitment: Hash) -> SealedVote { SealedVote { voter, commitment, @@ -34,12 +32,31 @@ impl SealedVote) -> bool { + pub fn unseal(&mut self, vote: Vote, salt: &mut Vec, hasher: fn(&[u8]) -> Hash) -> Result { + // only unseal once + if self.vote.is_some() { + return Err("vote already unsealed"); + } + + // seralize the vote and append the salt + let mut payload = vote.encode(); + payload.append(salt); + + // hash the payload, if it matches the commitment it is a valid revealing of the vote + self.vote = match self.commitment == hasher(&payload) { + true => Some(vote), + false => None, + }; - false + Ok(self.vote.is_some()) } - pub fn unsealed(&self) -> bool { - self.vote.is_some() + pub fn get_vote(&self) -> &Option { + &self.vote } -} \ No newline at end of file + + pub fn owned_by(&self, someone: AccountId) -> bool { + someone == self.voter + } +} + From 3e39937ec0355ec47918a0e182a22f11d6e07b68 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 15:28:54 +0200 Subject: [PATCH 022/350] update sealed vote in storage when unsealed --- runtime/src/governance/election.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index fb5fa1afcd..87be25c010 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -380,7 +380,12 @@ decl_module! { let mut salt = salt.clone(); let valid = sealed_vote.unseal(vote, &mut salt, ::Hashing::hash)?; match valid { - true => Ok(()), + true => { + // update the sealed vote + >::insert(commitment, sealed_vote); + Ok(()) + }, + false => Err("invalid salt") } } From 30fb742dc1171aeb6111294c79bd0dd103149e20 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 15:39:01 +0200 Subject: [PATCH 023/350] fix codec trait import --- runtime/src/governance/sealed_vote.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index 08cb27eead..b5ce4dc1cf 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -7,12 +7,14 @@ extern crate sr_io; extern crate substrate_primitives as primitives; extern crate sr_primitives; #[cfg(feature = "std")] -extern crate parity_codec as codec; +extern crate parity_codec; +use parity_codec::Encode; +use srml_support::dispatch::Vec; #[derive(Clone, Copy, Encode, Decode, Default)] pub struct SealedVote - where Vote: codec::Encode, Hash: PartialEq, AccountId: PartialEq + where Vote: Encode, Hash: PartialEq, AccountId: PartialEq { voter: AccountId, commitment: Hash, // 32 bytes - salted hash of serialized Vote @@ -21,7 +23,7 @@ pub struct SealedVote } impl SealedVote - where Vote: codec::Encode, Hash: PartialEq, AccountId: PartialEq + where Vote: Encode, Hash: PartialEq, AccountId: PartialEq { pub fn new(voter: AccountId, stake: Stake, commitment: Hash) -> SealedVote { SealedVote { @@ -58,5 +60,4 @@ impl SealedVote pub fn owned_by(&self, someone: AccountId) -> bool { someone == self.voter } -} - +} \ No newline at end of file From 33891563c801958e69ae9d53ae9ee737a5f4f343 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 16:09:16 +0200 Subject: [PATCH 024/350] refactor handling revealing --- runtime/src/governance/election.rs | 61 ++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 21 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 87be25c010..ed4533d770 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -326,6 +326,35 @@ impl Module { Ok(()) } + + fn try_reveal_vote(voter: T::AccountId, commitment: T::Hash, candidate: T::AccountId, salt: Vec) -> Result { + if !>::exists(&candidate) { + return Err("vote for non-candidate not allowed"); + } + + if !>::exists(&commitment) { + return Err("commitment not found"); + } + + let mut sealed_vote = >::get(&commitment); + + // only voter can reveal their own votes + if !sealed_vote.owned_by(voter) { + return Err("sender is not owner of vote"); + } + + let mut salt = salt.clone(); + let valid = sealed_vote.unseal(candidate, &mut salt, ::Hashing::hash)?; + match valid { + true => { + // update the sealed vote + >::insert(commitment, sealed_vote); + Ok(()) + }, + + false => Err("invalid salt") + } + } } decl_module! { @@ -365,29 +394,19 @@ decl_module! { fn reveal_vote(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) -> Result { let sender = ensure_signed(origin)?; - - if !>::exists(commitment) { - return Err("commitment not found"); - } - let mut sealed_vote = >::get(commitment); - - // only voter can reveal their own votes - if !sealed_vote.owned_by(sender) { - return Err("sender is not owner of vote"); - } - - let mut salt = salt.clone(); - let valid = sealed_vote.unseal(vote, &mut salt, ::Hashing::hash)?; - match valid { - true => { - // update the sealed vote - >::insert(commitment, sealed_vote); - Ok(()) - }, - - false => Err("invalid salt") + // Can only reveal vote during election revealing stage + if let Some(stage) = Self::stage() { + match stage { + Stage::Revealing(_) => Self::try_reveal_vote(sender, commitment, vote, salt), + _ => Err("election not in revealing stage") + } + } else { + Err("election not running") } } + + // fn withdraw_candidacy() + // fn withdraw_vote() } } From 73ce18f19a6f765933301229fb3b7316f5318214 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 18:07:32 +0200 Subject: [PATCH 025/350] transferable stake total - removed checked_total and sorting_total --- runtime/src/governance/transferable_stake.rs | 24 +++++++++----------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index fc94afb635..80feab19f8 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -13,7 +13,7 @@ use srml_support::inherent::cmp::Ordering; use runtime_primitives::traits::{SimpleArithmetic, CheckedAdd, Zero}; //use std::ops::Add; // cant use this in WASM runtime -use rstd::ops::Add; +//use rstd::ops::Add; #[derive(Clone, Copy, Encode, Decode, Default)] pub struct Stake @@ -26,19 +26,10 @@ pub struct Stake impl Stake where Balance: Copy + SimpleArithmetic + CheckedAdd + Zero, { - pub fn checked_total(&self) -> ::Output { - // sum is not Balance but enum Option because implementaiton does a checked add + pub fn total(&self) -> Balance { self.refundable + self.transferred } - // Overflow results in total being zero - only use this for sorting purposes! - fn sorting_total(&self) -> Balance { - match self.refundable.checked_add(&self.transferred) { - Some(t) => t, - None => Balance::zero(), - } - } - pub fn checked_add(&self, v: &Self) -> Option { if let Some(refundable) = self.refundable.checked_add(&v.refundable) { if let Some(transferred) = self.transferred.checked_add(&v.transferred) { @@ -51,6 +42,13 @@ impl Stake None } + + pub fn add(&self, v: &Self) -> Self { + Self { + refundable: self.refundable + v.refundable, + transferred: self.transferred + v.transferred + } + } } // impl CheckedAdd for Stake { @@ -78,13 +76,13 @@ impl PartialOrd for Stake { impl Ord for Stake { fn cmp(&self, other: &Self) -> Ordering { - self.sorting_total().cmp(&other.sorting_total()) + self.total().cmp(&other.total()) } } impl PartialEq for Stake { fn eq(&self, other: &Self) -> bool { - self.refundable == other.refundable && self.transferred == other.transferred + self.total() == other.total() } } From 66320d434bcc0c2e3b9e164a2b5a122118b47358 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 18:09:14 +0200 Subject: [PATCH 026/350] add methods on sealed vote --- runtime/src/governance/sealed_vote.rs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index b5ce4dc1cf..9144262428 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -16,9 +16,9 @@ use srml_support::dispatch::Vec; pub struct SealedVote where Vote: Encode, Hash: PartialEq, AccountId: PartialEq { - voter: AccountId, + pub voter: AccountId, commitment: Hash, // 32 bytes - salted hash of serialized Vote - stake: Stake, + pub stake: Stake, vote: Option, // will be set when unsealing } @@ -36,7 +36,7 @@ impl SealedVote pub fn unseal(&mut self, vote: Vote, salt: &mut Vec, hasher: fn(&[u8]) -> Hash) -> Result { // only unseal once - if self.vote.is_some() { + if self.was_revealed() { return Err("vote already unsealed"); } @@ -50,7 +50,7 @@ impl SealedVote false => None, }; - Ok(self.vote.is_some()) + Ok(self.was_revealed()) } pub fn get_vote(&self) -> &Option { @@ -60,4 +60,8 @@ impl SealedVote pub fn owned_by(&self, someone: AccountId) -> bool { someone == self.voter } + + pub fn was_revealed(&self) -> bool { + self.vote.is_some() + } } \ No newline at end of file From 4f5e7256dfd32cdaada9e3e1d473bf2b1a1155d8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 24 Jan 2019 18:34:57 +0200 Subject: [PATCH 027/350] better use of mutate to bump round number --- runtime/src/governance/election.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index ed4533d770..7923e34845 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -106,11 +106,11 @@ impl Module { fn bump_round() -> Round { // bump the round number - // >::mutate(|n| *n += 1) // doesn't return anything - let next_round = Self::round() + 1; - >::put(next_round); print("Bumping Election Round"); - next_round + >::mutate(|n| { + *n += 1; + *n + }) } fn move_to_announcing_stage() { From 8a00a11df25b88186e76a06898cd7abbcf94f439 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 25 Jan 2019 01:12:18 +0200 Subject: [PATCH 028/350] do not change state before doing all validation --- runtime/src/governance/election.rs | 143 ++++++++++++++++++++--------- runtime/src/governance/mod.rs | 10 +- 2 files changed, 104 insertions(+), 49 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 7923e34845..e4bea5defe 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -16,8 +16,8 @@ pub trait Trait: system::Trait + council::Trait + balances::Trait { #[derive(Clone, Copy, Encode, Decode)] pub struct Period { - pub start: T, - pub end: T + pub starts: T, + pub ends: T } #[derive(Clone, Copy, Encode, Decode)] @@ -84,23 +84,26 @@ decl_event!( impl Module { pub fn start_election() -> Result { if Self::stage().is_some() { - Err("election in progress") - } else { - print("Election: Starting"); - let current_block = >::block_number(); + return Err("election in progress") + } + + let current_block = >::block_number(); + + if >::term_ended(current_block) { Self::deposit_event(RawEvent::ElectionStarted(current_block)); // take snapshot of council and backing stakes Self::initialize_transferable_stakes(); Self::move_to_announcing_stage(); - Ok(()) } + + Ok(()) } fn new_period(length: T::BlockNumber) -> Period { let current_block = >::block_number(); Period { - start: current_block, - end: current_block + length + starts: current_block, + ends: current_block + length } } @@ -134,7 +137,7 @@ impl Module { // equal stake for bottom slot - order in applicants vector. // This is highly ineffieicent (cloning ApplicationId twice) // using functional style should help - let mut applicants: Vec<(T::AccountId, Stake)> = Vec::new(); + let mut applicants = Vec::new(); for applicant in Self::applicants().iter() { let stake = Self::applicants_map(applicant); applicants.push((applicant.clone(), stake)); @@ -177,30 +180,80 @@ impl Module { } fn on_revealing_ended() { + // tally the revealed votes + + >::kill(); Self::deposit_event(RawEvent::ElectionCompleted()); - //Self::set_new_council(X); print("Election Round Ended"); } - fn tick(n: T::BlockNumber) { + fn tally_votes() -> Result { + +/* Notes from specs: +Tally votes => create a new Council +(what is the success criteria for a valid/successful election: + minimum backing stake for each candidate, + minimum total backing stake == %participation/quorum, + size of elected council < CouncilSize) + +refund vote stakes of un-revealed commitments +if (successfulElection) { + refund all vote stakes for candidates that did not get elected + refund all unused availableBackingStakes + refund all applicantsPool stakes for applicants that did not get elected + refund all unused availableCouncilStakes + set new council + electionCompleted() +} else { + refund refundable vote stakes + return transferred stake from votes back to backingStakes + clear Votes + clear candidatePool + start new election round - startRevealingPeriod() +} +*/ + // iterate over > + // for commitment in Self::commitments().iter() { + // let sealed_vote = Self::votes(commitment); + // if sealed_vote.was_revealed() { + + // } else { + // // return stake to voter's account + // if sealed_vote.stake.refundable > T::Balance::zero() { + // >:: + // } + + // // return transferred stake to available stake + // if sealed_vote.stake.transferred > T::Balance::zero() { + + // } + + // // remove vote + // >::remove(commitment); + // } + // } + + Ok(()) + } + fn tick(now: T::BlockNumber) { print("Election: tick"); if let Some(stage) = Self::stage() { match stage { Stage::Announcing(period) => { - if period.end == n { + if period.ends == now { Self::deposit_event(RawEvent::AnnouncingEnded()); Self::on_announcing_ended(); } }, Stage::Voting(period) => { - if period.end == n { + if period.ends == now { Self::deposit_event(RawEvent::VotingEnded()); Self::on_voting_ended(); } }, Stage::Revealing(period) => { - if period.end == n { + if period.ends == now { Self::deposit_event(RawEvent::RevealingEnded()); Self::on_revealing_ended(); } @@ -209,10 +262,6 @@ impl Module { } } - pub fn can_start_election() -> bool { - Self::stage().is_none() - } - /// Takes a snapshot of the stakes from the current council fn initialize_transferable_stakes() { if let Some(council) = >::council() { @@ -244,7 +293,8 @@ impl Module { true => >::get(&applicant) }; - let transferable_stake = match >::exists(&applicant) { + let applicant_has_council_stake = >::exists(&applicant); + let transferable_stake = match applicant_has_council_stake { false => Default::default(), //zero true => >::get(&applicant) }; @@ -264,36 +314,43 @@ impl Module { if new_stake.refundable > balance { return Err("not enough balance to cover stake"); } + + let total_stake = applicant_stake.add(&new_stake); + + let min_stake = Stake { + refundable: T::Balance::sa(COUNCIL_MIN_STAKE), + transferred: T::Balance::zero() + }; + + if min_stake > total_stake { + return Err("minimum stake not met"); + } if >::decrease_free_balance(&applicant, new_stake.refundable).is_err() { return Err("failed to update balance"); } - >::insert(&applicant, transferable_stake - new_stake.transferred); + if applicant_has_council_stake { + >::insert(&applicant, transferable_stake - new_stake.transferred); + } if !>::exists(&applicant) { >::mutate(|applicants| applicants.push(applicant.clone())); } - - if let Some(total_stake) = applicant_stake.checked_add(&new_stake) { - let min_stake = Stake { - refundable: T::Balance::sa(COUNCIL_MIN_STAKE), - transferred: T::Balance::zero() - }; - - if min_stake > total_stake { - return Err("minimum stake not met"); - } - >::insert(applicant.clone(), total_stake); - return Ok(()); - } else { - return Err("overflow adding new stake"); - } + >::insert(applicant.clone(), total_stake); + + Ok(()) } fn try_add_vote(voter: T::AccountId, stake: T::Balance, commitment: T::Hash) -> Result { - let transferable_stake: T::Balance = match >::exists(&voter) { + if >::exists(commitment) { + return Err("duplicate commitment"); + } + + let voter_has_backing_stake = >::exists(&voter); + + let transferable_stake: T::Balance = match voter_has_backing_stake { false => Default::default(), //zero true => >::get(&voter) }; @@ -321,8 +378,10 @@ impl Module { >::mutate(|commitments| commitments.push(commitment)); >::insert(commitment, SealedVote::new(voter.clone(), vote_stake, commitment)); - - >::insert(voter.clone(), transferable_stake - vote_stake.transferred); + + if voter_has_backing_stake { + >::insert(voter.clone(), transferable_stake - vote_stake.transferred); + } Ok(()) } @@ -340,7 +399,7 @@ impl Module { // only voter can reveal their own votes if !sealed_vote.owned_by(voter) { - return Err("sender is not owner of vote"); + return Err("only voter can reveal vote"); } let mut salt = salt.clone(); @@ -362,8 +421,8 @@ decl_module! { fn deposit_event() = default; // No origin so this is a priviledged call - fn on_finalise(n: T::BlockNumber){ - let _ = Self::tick(n); + fn on_finalise(now: T::BlockNumber){ + let _ = Self::tick(now); } fn announce_candidacy(origin, stake: T::Balance) -> Result { diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 4746a2e427..2f8921344a 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -46,14 +46,10 @@ decl_module! { fn deposit_event() = default; fn on_finalise(n: T::BlockNumber) { - print("Governance::tick"); + // print("Governance::tick"); // Determine if we need to start an election - if >::can_start_election() { - if >::council().is_none() || >::term_ended(n) { - print("Governance: Starting Election"); - // panic means broken invariant! - >::start_election().expect("must be able to start election"); - } + if >::start_election().is_ok() { + print("Election Started"); } } } From 409d87d670647a6d7f28e2c40141f76bbaeb7b30 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 25 Jan 2019 10:40:17 +0200 Subject: [PATCH 029/350] use super in mod path --- runtime/src/governance/election.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index e4bea5defe..68ccb6b6c4 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,14 +1,14 @@ extern crate parity_codec; use self::parity_codec::Encode; -use srml_support::{StorageValue, StorageMap, StorageVec, dispatch::Result}; +use srml_support::{StorageValue, StorageMap, dispatch::Result}; use runtime_primitives::traits::{Hash, As, Zero}; use {balances, system::{self, ensure_signed}}; use runtime_io::print; use srml_support::dispatch::Vec; -use governance::transferable_stake::Stake; -use governance::council; -use governance::sealed_vote::SealedVote; +use super::transferable_stake::Stake; +use super::council; +use super::sealed_vote::SealedVote; pub trait Trait: system::Trait + council::Trait + balances::Trait { type Event: From> + Into<::Event>; From 053bb73e352a16ae4d90ffa8363bf1d40435581c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 26 Jan 2019 13:26:53 +0200 Subject: [PATCH 030/350] tallying votes and constructing new council --- runtime/src/governance/council.rs | 18 +- runtime/src/governance/election.rs | 254 +++++++++++++++---- runtime/src/governance/sealed_vote.rs | 2 +- runtime/src/governance/transferable_stake.rs | 3 - 4 files changed, 222 insertions(+), 55 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index f299f3136c..69f7ae790f 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -8,12 +8,14 @@ extern crate substrate_primitives; extern crate sr_primitives; #[cfg(feature = "std")] extern crate parity_codec as codec; -//extern crate srml_system as system; +extern crate srml_system as system; use srml_support::dispatch::Vec; use srml_support::{StorageValue, dispatch::Result}; use runtime_primitives::traits::{Hash, As}; -use {balances, system::{self, ensure_signed}}; +use {balances, system::{ensure_signed}}; + +use rstd::ops::Add; pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; @@ -26,6 +28,18 @@ pub struct Seat { pub backers: Vec>, } +impl Seat + where Stake: Add + Copy, +{ + pub fn total_stake(&self) -> Stake { + let mut stake = self.stake; + for backer in self.backers.iter() { + stake = stake + backer.stake; + } + stake + } +} + #[derive(Copy, Clone, Encode, Decode)] pub struct Backer { pub member: Id, diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 68ccb6b6c4..79be4ec260 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,11 +1,25 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +extern crate sr_std; +#[cfg(test)] +extern crate sr_io; +#[cfg(test)] +extern crate substrate_primitives; +extern crate sr_primitives; +#[cfg(feature = "std")] +extern crate parity_codec as codec; +extern crate srml_system as system; + extern crate parity_codec; -use self::parity_codec::Encode; +//use self::parity_codec::Encode; use srml_support::{StorageValue, StorageMap, dispatch::Result}; use runtime_primitives::traits::{Hash, As, Zero}; -use {balances, system::{self, ensure_signed}}; +use {balances, system::{ensure_signed}}; use runtime_io::print; use srml_support::dispatch::Vec; +use rstd::collections::btree_map::BTreeMap; + use super::transferable_stake::Stake; use super::council; use super::sealed_vote::SealedVote; @@ -61,6 +75,8 @@ decl_storage! { CandidatesMap get(candidates_map): map T::AccountId => bool; Commitments get(commitments): Vec; + // simply a Yes vote for a candidate. Consider changing the vote payload to support + // For and Against. Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; } } @@ -181,61 +197,201 @@ impl Module { fn on_revealing_ended() { // tally the revealed votes + let mut votes = Vec::new(); + + for commitment in Self::commitments().iter() { + votes.push(Self::votes(commitment)); + } + + let mut new_council = Self::tally_votes(&votes); + + // Note here that candidates with zero votes have been excluded from the tally. + // Is a candidate with some votes but less total stake than another candidate with zero votes + // more qualified to be on the council? + // Consider implications - if a council can be formed purely by staking are we fine with that? + for candidate in Self::candidates() { + match new_council.get(&candidate) { + Some(_) => (), + None => { + new_council.insert(candidate.clone(), council::Seat { + member: candidate.clone(), + stake: Self::applicants_map(candidate).total(), + backers: Vec::new(), + }); + } + } + } + + if new_council.len() == COUNCIL_SIZE { + // all candidates in the tally will form the new council + } else if new_council.len() > COUNCIL_SIZE { + // we have more than enough elected candidates to form the new council + // select top COUNCIL_SIZE prioritised by stake + Self::filter_top_staked(&mut new_council, COUNCIL_SIZE); + } else { + // Not enough candidates with votes to form a council. + // This may happen if we didn't add candidates with zero votes to the tally, + // or in future if we allow candidates to withdraw candidacy during voting or revealing stages. + // Solution 1. Restart election. + // Solution 2. Add to the tally candidates with zero votes. + // selection criteria: + // -> priority by largest stake? + // -> priority given to candidates who announced first? + // -> deterministic random selection? + } + + // unless we want to add more filtering criteria to what is considered a successful election + // other than just the minimum stake for candidacy, we have a new council! +// refund all vote stakes for candidates that did not get elected +// refund all applicantsPool stakes for applicants that did not get elected + // (maybe this should have been done when moving to voting stage, so applicants who did not make it to + // to be candidates can reuse their stake for voting?) + // since candidates is a subest of applicants, this will obvioulsy include non elected candidates. +// refund all unused availableBackingStakes +// refund all unused availableCouncilStakes + + Self::refund_voting_stakes(&votes, &new_council); + Self::refund_applicant_stakes(&new_council); + Self::refund_unused_transferable_stakes(); + >::kill(); + + //>::set_council(&new_council); + Self::deposit_event(RawEvent::ElectionCompleted()); - print("Election Round Ended"); + print("Election Completed"); } - fn tally_votes() -> Result { - -/* Notes from specs: -Tally votes => create a new Council -(what is the success criteria for a valid/successful election: - minimum backing stake for each candidate, - minimum total backing stake == %participation/quorum, - size of elected council < CouncilSize) - -refund vote stakes of un-revealed commitments -if (successfulElection) { - refund all vote stakes for candidates that did not get elected - refund all unused availableBackingStakes - refund all applicantsPool stakes for applicants that did not get elected - refund all unused availableCouncilStakes - set new council - electionCompleted() -} else { - refund refundable vote stakes - return transferred stake from votes back to backingStakes - clear Votes - clear candidatePool - start new election round - startRevealingPeriod() -} -*/ - // iterate over > - // for commitment in Self::commitments().iter() { - // let sealed_vote = Self::votes(commitment); - // if sealed_vote.was_revealed() { - - // } else { - // // return stake to voter's account - // if sealed_vote.stake.refundable > T::Balance::zero() { - // >:: - // } - - // // return transferred stake to available stake - // if sealed_vote.stake.transferred > T::Balance::zero() { - - // } - - // // remove vote - // >::remove(commitment); - // } - // } + fn refund_unused_transferable_stakes() { + // BackingStakeHolders get(backing_stakeholders): Vec; + // CouncilStakeHolders get(council_stakeholders): Vec; + // AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; + // AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; + + // move stakes back to account holder's free balance - Ok(()) + // clear snapshot + } + + fn refund_applicant_stakes(new_council: &BTreeMap>) { + for applicant in Self::applicants().iter() { + let do_refund = match new_council.get(&applicant) { + Some(_) => false, + None => true + }; + + if do_refund { + Self::return_stake_to(&applicant, >::get(applicant)); + } + + >::remove(applicant); + } + + >::kill(); + } + + fn return_stake_to(who: &T::AccountId, stake_to_return: Stake) { + // return refundable stake to account's free balance + if stake_to_return.refundable > T::Balance::zero() { + let balance = >::free_balance(who); + >::set_free_balance(who, balance + stake_to_return.refundable); + } + + // return unused transferable stake + if stake_to_return.transferred > T::Balance::zero() { + >::mutate(who, |stake| *stake += stake_to_return.transferred); + } + } + + fn refund_voting_stakes( + sealed_votes: &Vec, T::Hash, T::AccountId>>, + new_council: &BTreeMap>) + { + for sealed_vote in sealed_votes.iter() { + // Do a refund if commitment was not revealed or vote was for candidate that did + // not get elected to the council + let do_refund = match sealed_vote.get_vote() { + Some(candidate) => { + match new_council.get(&candidate) { + None => true, + Some(_) => false + } + }, + None => true + }; + + if do_refund { + Self::return_stake_to(&sealed_vote.voter, sealed_vote.stake); + } + + // remove vote + >::remove(sealed_vote.commitment); + } + + // clear commitments + //>::put(Vec::new()); + >::kill(); } + + fn tally_votes(sealed_votes: &Vec, T::Hash, T::AccountId>>) -> BTreeMap> { + let mut tally: BTreeMap> = BTreeMap::new(); + + for sealed_vote in sealed_votes.iter() { + if let Some(candidate) = sealed_vote.get_vote() { + match tally.get(&candidate) { + // Add new seat and first backer + None => { + let backers = [council::Backer { + member: sealed_vote.voter.clone(), + stake: sealed_vote.stake.total() + }].to_vec(); + + let seat = council::Seat { + member: candidate.clone(), + stake: Self::applicants_map(candidate).total(), + backers: backers, + }; + + tally.insert(candidate.clone(), seat); + }, + + // Add backer to existing seat + Some(_) => { + if let Some(seat) = tally.get_mut(&candidate) { + seat.backers.push(council::Backer { + member: sealed_vote.voter.clone(), + stake: sealed_vote.stake.total() + }); + } + } + } + } + } + + tally + } + + fn filter_top_staked(tally: &mut BTreeMap>, limit: usize) { + // + let mut seats = Vec::new(); + + // is iteration deterministic??? + for (id, seat) in tally.iter() { + seats.push((id.clone(), seat.total_stake())); + } + + seats.sort_by_key(|&(_, stake)| stake); // ASC + + // seats at bottom of list + let filtered_out_seats = &seats[0 .. seats.len() - rstd::cmp::min(limit, seats.len())]; + + for (id, _) in filtered_out_seats.iter() { + tally.remove(&id); + } + } + fn tick(now: T::BlockNumber) { print("Election: tick"); if let Some(stage) = Self::stage() { diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index 9144262428..41f9f02f90 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -17,7 +17,7 @@ pub struct SealedVote where Vote: Encode, Hash: PartialEq, AccountId: PartialEq { pub voter: AccountId, - commitment: Hash, // 32 bytes - salted hash of serialized Vote + pub commitment: Hash, // 32 bytes - salted hash of serialized Vote pub stake: Stake, vote: Option, // will be set when unsealing } diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index 80feab19f8..0a1ed964ef 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -12,9 +12,6 @@ extern crate parity_codec as codec; use srml_support::inherent::cmp::Ordering; use runtime_primitives::traits::{SimpleArithmetic, CheckedAdd, Zero}; -//use std::ops::Add; // cant use this in WASM runtime -//use rstd::ops::Add; - #[derive(Clone, Copy, Encode, Decode, Default)] pub struct Stake where Balance: Copy + SimpleArithmetic + CheckedAdd + Zero, From 6c417fdf82e794d6683f496e3e5fea487e54b630 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 26 Jan 2019 17:16:47 +0200 Subject: [PATCH 031/350] complete refunding of unused transferable stake and set council --- runtime/src/governance/council.rs | 14 ++++++++++- runtime/src/governance/election.rs | 38 ++++++++++++++++-------------- 2 files changed, 33 insertions(+), 19 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 69f7ae790f..17b3d8f539 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -10,6 +10,7 @@ extern crate sr_primitives; extern crate parity_codec as codec; extern crate srml_system as system; use srml_support::dispatch::Vec; +use rstd::collections::btree_map::BTreeMap; use srml_support::{StorageValue, dispatch::Result}; use runtime_primitives::traits::{Hash, As}; @@ -48,6 +49,8 @@ pub struct Backer { pub type Council = Vec>; +const COUNCIL_TERM: u64 = 1000; + decl_storage! { trait Store for Module as CouncilInSession { // Initial state - council is empty and resigned, which will trigger @@ -67,8 +70,17 @@ decl_event!( ); impl Module { - pub fn set_council() { + pub fn set_council(council: &BTreeMap>) { + let mut new_council = Vec::new(); + + for (_, seat) in council.iter() { + new_council.push(seat.clone()); + } + + >::put(new_council); + let next_term_ends = >::block_number() + T::BlockNumber::sa(COUNCIL_TERM); + >::put(next_term_ends); } pub fn term_ended(n: T::BlockNumber) -> bool { diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 79be4ec260..e9f8e97490 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -11,7 +11,6 @@ extern crate parity_codec as codec; extern crate srml_system as system; extern crate parity_codec; -//use self::parity_codec::Encode; use srml_support::{StorageValue, StorageMap, dispatch::Result}; use runtime_primitives::traits::{Hash, As, Zero}; use {balances, system::{ensure_signed}}; @@ -242,37 +241,40 @@ impl Module { // unless we want to add more filtering criteria to what is considered a successful election // other than just the minimum stake for candidacy, we have a new council! - - -// refund all vote stakes for candidates that did not get elected -// refund all applicantsPool stakes for applicants that did not get elected - // (maybe this should have been done when moving to voting stage, so applicants who did not make it to - // to be candidates can reuse their stake for voting?) - // since candidates is a subest of applicants, this will obvioulsy include non elected candidates. -// refund all unused availableBackingStakes -// refund all unused availableCouncilStakes Self::refund_voting_stakes(&votes, &new_council); Self::refund_applicant_stakes(&new_council); Self::refund_unused_transferable_stakes(); >::kill(); - - //>::set_council(&new_council); + + >::set_council(&new_council); Self::deposit_event(RawEvent::ElectionCompleted()); print("Election Completed"); } fn refund_unused_transferable_stakes() { - // BackingStakeHolders get(backing_stakeholders): Vec; - // CouncilStakeHolders get(council_stakeholders): Vec; - // AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; - // AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; - // move stakes back to account holder's free balance + for stakeholder in Self::backing_stakeholders().iter() { + let stake = Self::backing_stakes(stakeholder); + if stake > T::Balance::zero() { + let balance = >::free_balance(stakeholder); + >::set_free_balance(stakeholder, balance + stake); + } + >::remove(stakeholder); + } + >::kill(); - // clear snapshot + for stakeholder in Self::council_stakeholders().iter() { + let stake = Self::council_stakes(stakeholder); + if stake > T::Balance::zero() { + let balance = >::free_balance(stakeholder); + >::set_free_balance(stakeholder, balance + stake); + } + >::remove(stakeholder); + } + >::kill(); } fn refund_applicant_stakes(new_council: &BTreeMap>) { From b9c71609111f408c1f25440afdf61114227ac540 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 26 Jan 2019 17:55:07 +0200 Subject: [PATCH 032/350] cleanup imports --- runtime/src/governance/election.rs | 1 - runtime/src/governance/sealed_vote.rs | 9 ----- runtime/src/governance/transferable_stake.rs | 40 ++++---------------- 3 files changed, 7 insertions(+), 43 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index e9f8e97490..a2d5783918 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -10,7 +10,6 @@ extern crate sr_primitives; extern crate parity_codec as codec; extern crate srml_system as system; -extern crate parity_codec; use srml_support::{StorageValue, StorageMap, dispatch::Result}; use runtime_primitives::traits::{Hash, As, Zero}; use {balances, system::{ensure_signed}}; diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index 41f9f02f90..6fb12cef02 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -1,15 +1,6 @@ #![cfg_attr(not(feature = "std"), no_std)] -extern crate sr_std; -#[cfg(test)] -extern crate sr_io; -#[cfg(test)] -extern crate substrate_primitives as primitives; -extern crate sr_primitives; -#[cfg(feature = "std")] -extern crate parity_codec; use parity_codec::Encode; - use srml_support::dispatch::Vec; #[derive(Clone, Copy, Encode, Decode, Default)] diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index 0a1ed964ef..f9d542f68b 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -1,27 +1,18 @@ #![cfg_attr(not(feature = "std"), no_std)] -extern crate sr_std; -#[cfg(test)] -extern crate sr_io; -#[cfg(test)] -extern crate substrate_primitives; -extern crate sr_primitives; -#[cfg(feature = "std")] -extern crate parity_codec as codec; - use srml_support::inherent::cmp::Ordering; -use runtime_primitives::traits::{SimpleArithmetic, CheckedAdd, Zero}; +use runtime_primitives::traits::{SimpleArithmetic, Zero}; #[derive(Clone, Copy, Encode, Decode, Default)] pub struct Stake - where Balance: Copy + SimpleArithmetic + CheckedAdd + Zero, + where Balance: Copy + SimpleArithmetic + Zero, { pub refundable: Balance, pub transferred: Balance, } impl Stake - where Balance: Copy + SimpleArithmetic + CheckedAdd + Zero, + where Balance: Copy + SimpleArithmetic + Zero, { pub fn total(&self) -> Balance { self.refundable + self.transferred @@ -48,39 +39,22 @@ impl Stake } } -// impl CheckedAdd for Stake { -// fn checked_add(&self, v: &Self) -> Option { -// } -// } - -// impl + Copy> Add for Stake // Balance doesn't satisfy T: Add -// { -// type Output = Stake; - -// fn add(self, other: Stake) -> Stake { -// Stake { -// refundable: self.refundable + other.refundable, -// transferred: self.transferred + other.transferred -// } -// } -// } - -impl PartialOrd for Stake { +impl PartialOrd for Stake { fn partial_cmp(&self, other: &Self) -> Option { Some(self.cmp(&other)) } } -impl Ord for Stake { +impl Ord for Stake { fn cmp(&self, other: &Self) -> Ordering { self.total().cmp(&other.total()) } } -impl PartialEq for Stake { +impl PartialEq for Stake { fn eq(&self, other: &Self) -> bool { self.total() == other.total() } } -impl Eq for Stake {} \ No newline at end of file +impl Eq for Stake {} \ No newline at end of file From 45b5ff1ac86a6ea2f1d58ee5a5731039bd0ac185 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 27 Jan 2019 11:50:40 +0200 Subject: [PATCH 033/350] comment out tests --- runtime/src/governance/mod.rs | 85 ++++++++++++++++++++++++++++++++++- 1 file changed, 84 insertions(+), 1 deletion(-) diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 2f8921344a..29a30a4fd7 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -26,7 +26,8 @@ pub trait Trait: system::Trait + council::Trait + election::Trait { decl_storage! { trait Store for Module as Governance { - + /// Just a dummy storage item. TODO: Documentation for this item (or just remove it). + Something get(something) config(): Option; } } @@ -53,4 +54,86 @@ decl_module! { } } } +} + +// Tests +#[cfg(test)] +mod tests { + use super::*; + + use self::sr_io::with_externalities; + use self::substrate_primitives::{H256, Blake2Hasher}; + use self::sr_primitives::{ + BuildStorage, traits::BlakeTwo256, testing::{Digest, DigestItem, Header} + }; + + impl_outer_origin! { + pub enum Origin for Test {} + } + + // For testing the module, we construct most of a mock runtime. This means + // first constructing a configuration type (`Test`) which `impl`s each of the + // configuration traits of modules we want to use. + #[derive(Clone, Eq, PartialEq)] + pub struct Test; + impl system::Trait for Test { + type Origin = Origin; + type Index = u64; + type BlockNumber = u64; + type Hash = H256; + type Hashing = BlakeTwo256; + type Digest = Digest; + type AccountId = u64; + type Header = Header; + type Event = (); + type Log = DigestItem; + // type Lookup = (); // StaticLookup; + } + impl council::Trait for Test { + type Event = (); + } + impl election::Trait for Test { + type Event = (); + } + impl balances::Trait for Test { + type Event = (); + + /// The balance of an account. + type Balance = u32; + + /// A function which is invoked when the free-balance has fallen below the existential deposit and + /// has been reduced to zero. + /// + /// Gives a chance to clean up resources associated with the given account. + type OnFreeBalanceZero = (); + + /// Handler for when a new account is created. + type OnNewAccount = (); + + /// A function that returns true iff a given account can transfer its funds to another account. + type EnsureAccountLiquid = (); + } + impl Trait for Test { + type Event = (); + } + type Governance = Module; + + /* + // This function basically just builds a genesis storage key/value store according to + // our desired mockup. + fn new_test_ext() -> sr_io::TestExternalities { + let mut t = system::GenesisConfig::::default().build_storage().unwrap(); + t.extend(GenesisConfig::{ + something: 42, + }.build_storage().unwrap()); + t.into() + } + + #[test] + fn it_works_for_default_value() { + with_externalities(&mut new_test_ext(), || { + assert_eq!(Governance::something(), Some(42)); + }); + } + */ } \ No newline at end of file From 247865b2cfcb838814698b0b4d2371ce201937a9 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 27 Jan 2019 22:25:09 +0200 Subject: [PATCH 034/350] removed separate candidates state, reuse applicants after entering voting stage --- runtime/src/governance/election.rs | 67 +++++++++++++++++------------- runtime/src/governance/mod.rs | 7 ++-- 2 files changed, 40 insertions(+), 34 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index a2d5783918..9d39f4a680 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -65,12 +65,7 @@ decl_storage! { AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; Applicants get(applicants): Vec; - ApplicantsMap get(applicants_map): map T::AccountId => Stake; - - // probably don't need this state we only check existance in map - // put in event instead good enough for ui - Candidates get(candidates): Vec; - CandidatesMap get(candidates_map): map T::AccountId => bool; + ApplicantStakes get(applicant_stakes): map T::AccountId => Stake; Commitments get(commitments): Vec; // simply a Yes vote for a candidate. Consider changing the vote payload to support @@ -142,7 +137,9 @@ impl Module { } fn on_announcing_ended() { - if Self::applicants().len() < COUNCIL_SIZE { + let applicants = Self::applicants(); + + if applicants.len() < COUNCIL_SIZE { // Not enough candidates announced candidacy Self::move_to_announcing_stage(); } else { @@ -151,22 +148,33 @@ impl Module { // equal stake for bottom slot - order in applicants vector. // This is highly ineffieicent (cloning ApplicationId twice) // using functional style should help - let mut applicants = Vec::new(); - for applicant in Self::applicants().iter() { - let stake = Self::applicants_map(applicant); - applicants.push((applicant.clone(), stake)); + let mut sorted_applicants = Vec::new(); + for applicant in applicants.iter() { + let stake = Self::applicant_stakes(applicant); + sorted_applicants.push((applicant, stake)); } - applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? - applicants.reverse(); // If ASC - applicants.truncate(CANDIDACY_LIMIT); + sorted_applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? + + let bottom_applicants = &sorted_applicants[0 .. sorted_applicants.len() - COUNCIL_SIZE]; + let candidates = &sorted_applicants[sorted_applicants.len() - COUNCIL_SIZE..]; + + for (applicant, stake) in bottom_applicants.iter() { + // refund applicants + Self::return_stake_to(applicant, *stake); + // remove applicant + >::remove(*applicant); + //applicants.remove_item(applicant); // unstable feature - let mut candidates: Vec = Vec::new(); - for (applicant, _) in applicants.iter() { - >::insert(applicant, true); - candidates.push(applicant.clone()); } - >::put(candidates); + + let mut updated_candidates = Vec::new(); + for (applicant,_) in candidates.iter() { + updated_candidates.push(*applicant); + } + + >::put(updated_candidates); + Self::move_to_voting_stage(); } } @@ -207,13 +215,13 @@ impl Module { // Is a candidate with some votes but less total stake than another candidate with zero votes // more qualified to be on the council? // Consider implications - if a council can be formed purely by staking are we fine with that? - for candidate in Self::candidates() { + for candidate in Self::applicants() { match new_council.get(&candidate) { Some(_) => (), None => { new_council.insert(candidate.clone(), council::Seat { member: candidate.clone(), - stake: Self::applicants_map(candidate).total(), + stake: Self::applicant_stakes(candidate).total(), backers: Vec::new(), }); } @@ -244,7 +252,6 @@ impl Module { Self::refund_voting_stakes(&votes, &new_council); Self::refund_applicant_stakes(&new_council); Self::refund_unused_transferable_stakes(); - >::kill(); >::set_council(&new_council); @@ -284,10 +291,10 @@ impl Module { }; if do_refund { - Self::return_stake_to(&applicant, >::get(applicant)); + Self::return_stake_to(&applicant, >::get(applicant)); } - >::remove(applicant); + >::remove(applicant); } >::kill(); @@ -351,7 +358,7 @@ impl Module { let seat = council::Seat { member: candidate.clone(), - stake: Self::applicants_map(candidate).total(), + stake: Self::applicant_stakes(candidate).total(), backers: backers, }; @@ -445,9 +452,9 @@ impl Module { } fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { - let applicant_stake = match >::exists(&applicant) { + let applicant_stake = match >::exists(&applicant) { false => Default::default(), //zero - true => >::get(&applicant) + true => >::get(&applicant) }; let applicant_has_council_stake = >::exists(&applicant); @@ -491,11 +498,11 @@ impl Module { >::insert(&applicant, transferable_stake - new_stake.transferred); } - if !>::exists(&applicant) { + if !>::exists(&applicant) { >::mutate(|applicants| applicants.push(applicant.clone())); } - >::insert(applicant.clone(), total_stake); + >::insert(applicant.clone(), total_stake); Ok(()) } @@ -544,7 +551,7 @@ impl Module { } fn try_reveal_vote(voter: T::AccountId, commitment: T::Hash, candidate: T::AccountId, salt: Vec) -> Result { - if !>::exists(&candidate) { + if !>::exists(&candidate) { return Err("vote for non-candidate not allowed"); } diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 29a30a4fd7..9a88e3c96e 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -56,7 +56,7 @@ decl_module! { } } -// Tests +/* Tests #[cfg(test)] mod tests { use super::*; @@ -118,7 +118,6 @@ mod tests { } type Governance = Module; - /* // This function basically just builds a genesis storage key/value store according to // our desired mockup. fn new_test_ext() -> sr_io::TestExternalities { @@ -135,5 +134,5 @@ mod tests { assert_eq!(Governance::something(), Some(42)); }); } - */ -} \ No newline at end of file +} +*/ \ No newline at end of file From 68753932cf98b4bcd1bedcffad1054303a747e05 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 28 Jan 2019 09:38:31 +0200 Subject: [PATCH 035/350] fix dereference --- runtime/src/governance/election.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 9d39f4a680..6dcf30e947 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -170,7 +170,7 @@ impl Module { let mut updated_candidates = Vec::new(); for (applicant,_) in candidates.iter() { - updated_candidates.push(*applicant); + updated_candidates.push((*applicant).clone()); } >::put(updated_candidates); From 010067f4918aed702ab38b4e7ac873ff113a24aa Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 28 Jan 2019 14:54:23 +0200 Subject: [PATCH 036/350] fix selecting candidates --- runtime/src/governance/election.rs | 42 ++++++++++++++++-------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 6dcf30e947..a9ec2a0b6d 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -148,33 +148,35 @@ impl Module { // equal stake for bottom slot - order in applicants vector. // This is highly ineffieicent (cloning ApplicationId twice) // using functional style should help - let mut sorted_applicants = Vec::new(); - for applicant in applicants.iter() { - let stake = Self::applicant_stakes(applicant); - sorted_applicants.push((applicant, stake)); - } + if applicants.len() > CANDIDACY_LIMIT { + let mut sorted_applicants = Vec::new(); + for applicant in applicants.iter() { + let stake = Self::applicant_stakes(applicant); + sorted_applicants.push((applicant, stake)); + } - sorted_applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? + sorted_applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? - let bottom_applicants = &sorted_applicants[0 .. sorted_applicants.len() - COUNCIL_SIZE]; - let candidates = &sorted_applicants[sorted_applicants.len() - COUNCIL_SIZE..]; + let bottom_applicants = &sorted_applicants[0 .. sorted_applicants.len() - CANDIDACY_LIMIT]; + let candidates = &sorted_applicants[sorted_applicants.len() - CANDIDACY_LIMIT..]; - for (applicant, stake) in bottom_applicants.iter() { - // refund applicants - Self::return_stake_to(applicant, *stake); - // remove applicant - >::remove(*applicant); - //applicants.remove_item(applicant); // unstable feature + for (applicant, stake) in bottom_applicants.iter() { + // refund applicants + Self::return_stake_to(applicant, *stake); + // remove applicant + >::remove(*applicant); + //applicants.remove_item(applicant); // unstable feature - } + } - let mut updated_candidates = Vec::new(); - for (applicant,_) in candidates.iter() { - updated_candidates.push((*applicant).clone()); + let mut updated_candidates = Vec::new(); + for (applicant,_) in candidates.iter() { + updated_candidates.push((*applicant).clone()); + } + + >::put(updated_candidates); } - >::put(updated_candidates); - Self::move_to_voting_stage(); } } From b4e1c1d6eb1172b365a71799d1d92e88cf22d1c8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 28 Jan 2019 14:55:08 +0200 Subject: [PATCH 037/350] trying to get tests to run --- runtime/src/governance/mod.rs | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 9a88e3c96e..9a332de981 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -56,15 +56,15 @@ decl_module! { } } -/* Tests +// Tests #[cfg(test)] -mod tests { +pub mod tests { use super::*; use self::sr_io::with_externalities; use self::substrate_primitives::{H256, Blake2Hasher}; use self::sr_primitives::{ - BuildStorage, traits::BlakeTwo256, testing::{Digest, DigestItem, Header} + BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, testing::{Digest, DigestItem, Header} }; impl_outer_origin! { @@ -87,7 +87,7 @@ mod tests { type Header = Header; type Event = (); type Log = DigestItem; - // type Lookup = (); // StaticLookup; + type Lookup = IdentityLookup; } impl council::Trait for Test { type Event = (); @@ -116,23 +116,26 @@ mod tests { impl Trait for Test { type Event = (); } - type Governance = Module; + + type gov = Module; // This function basically just builds a genesis storage key/value store according to // our desired mockup. fn new_test_ext() -> sr_io::TestExternalities { + runtime_io::TestExternalities::new(system::GenesisConfig::::default().build_storage().unwrap().0) + /* let mut t = system::GenesisConfig::::default().build_storage().unwrap(); - t.extend(GenesisConfig::{ + t.extend(gov::GenesisConfig:: { something: 42, - }.build_storage().unwrap()); + }.build_storage().unwrap().0); t.into() + */ } #[test] fn it_works_for_default_value() { with_externalities(&mut new_test_ext(), || { - assert_eq!(Governance::something(), Some(42)); + assert_eq!(gov::something(), Some(42)); // this should fail! }); } -} -*/ \ No newline at end of file +} \ No newline at end of file From 5748432224e915db15527698c6ef0f89ebac687d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 28 Jan 2019 18:44:41 +0200 Subject: [PATCH 038/350] reorg code for root governance module for clarity --- runtime/src/governance/election.rs | 13 +- runtime/src/governance/governance.rs | 36 ++++++ runtime/src/governance/mod.rs | 176 +++++++++++---------------- 3 files changed, 111 insertions(+), 114 deletions(-) create mode 100644 runtime/src/governance/governance.rs diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index a9ec2a0b6d..e052614f29 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -11,7 +11,7 @@ extern crate parity_codec as codec; extern crate srml_system as system; use srml_support::{StorageValue, StorageMap, dispatch::Result}; -use runtime_primitives::traits::{Hash, As, Zero}; +use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; use {balances, system::{ensure_signed}}; use runtime_io::print; use srml_support::dispatch::Vec; @@ -39,8 +39,6 @@ pub enum Stage { Revealing(Period), } -type Round = u32; // should go in the Trait? - only if it needs to configurabel - const ANNOUNCING_PERIOD:u64 = 20; const VOTING_PERIOD:u64 = 20; const REVEALING_PERIOD:u64 = 20; @@ -54,7 +52,7 @@ decl_storage! { ElectionStage get(stage): Option>; // The election round - ElectionRound get(round): Round = 0; + ElectionRound get(round): u32; // map doesn't have a clear() method so need to keep track of keys to know // what keys to delete later < if council is not modified during election @@ -78,14 +76,14 @@ decl_storage! { decl_event!( pub enum Event where ::BlockNumber { /// A new election started - ElectionStarted(BlockNumber), - AnnouncingStarted(Round), + AnnouncingStarted(u32), AnnouncingEnded(), VotingStarted(), VotingEnded(), RevealingStarted(), RevealingEnded(), ElectionCompleted(), + Dummy(BlockNumber), } ); @@ -99,7 +97,6 @@ impl Module { let current_block = >::block_number(); if >::term_ended(current_block) { - Self::deposit_event(RawEvent::ElectionStarted(current_block)); // take snapshot of council and backing stakes Self::initialize_transferable_stakes(); Self::move_to_announcing_stage(); @@ -116,7 +113,7 @@ impl Module { } } - fn bump_round() -> Round { + fn bump_round() -> u32 { // bump the round number print("Bumping Election Round"); >::mutate(|n| { diff --git a/runtime/src/governance/governance.rs b/runtime/src/governance/governance.rs new file mode 100644 index 0000000000..105deedaca --- /dev/null +++ b/runtime/src/governance/governance.rs @@ -0,0 +1,36 @@ +use governance::{council, election}; +use runtime_io::print; + +pub trait Trait: system::Trait + council::Trait + election::Trait { + type Event: From> + Into<::Event>; +} + +decl_storage! { + trait Store for Module as Gov { + + } +} + +/// Event for this module. +decl_event!( + pub enum Event where ::BlockNumber { + ElectionStarted(BlockNumber), + } +); + +impl Module { + +} + +decl_module! { + pub struct Module for enum Call where origin: T::Origin { + fn deposit_event() = default; + + fn on_finalise(n: T::BlockNumber) { + if >::start_election().is_ok() { + print("Election Started"); + Self::deposit_event(RawEvent::ElectionStarted(n)); + } + } + } +} \ No newline at end of file diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 9a332de981..400de257d5 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -9,86 +9,49 @@ extern crate sr_primitives; #[cfg(feature = "std")] extern crate parity_codec as codec; extern crate srml_system as system; -use runtime_io::print; pub mod election; pub mod council; +pub mod governance; + mod transferable_stake; mod sealed_vote; -use srml_support::{StorageValue, dispatch::Result}; -use runtime_primitives::traits::{Hash, As}; -use {balances, system::{ensure_signed}}; +pub use self::governance::{Trait, Module, RawEvent, Event}; -pub trait Trait: system::Trait + council::Trait + election::Trait { - type Event: From> + Into<::Event>; -} +#[cfg(test)] +pub mod tests { + pub use super::*; -decl_storage! { - trait Store for Module as Governance { - /// Just a dummy storage item. TODO: Documentation for this item (or just remove it). - Something get(something) config(): Option; - } -} - -/// Event for this module. -decl_event!( - pub enum Event where ::BlockNumber { - Dummy(BlockNumber), - } -); - -impl Module { - -} - -decl_module! { - pub struct Module for enum Call where origin: T::Origin { - fn deposit_event() = default; - - fn on_finalise(n: T::BlockNumber) { - // print("Governance::tick"); - // Determine if we need to start an election - if >::start_election().is_ok() { - print("Election Started"); - } - } + use self::sr_io::with_externalities; + use self::substrate_primitives::{H256, Blake2Hasher}; + use self::sr_primitives::{ + BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, testing::{Digest, DigestItem, Header} + }; + + + impl_outer_origin! { + pub enum Origin for Test {} } -} -// Tests -#[cfg(test)] -pub mod tests { - use super::*; - - use self::sr_io::with_externalities; - use self::substrate_primitives::{H256, Blake2Hasher}; - use self::sr_primitives::{ - BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, testing::{Digest, DigestItem, Header} - }; - - impl_outer_origin! { - pub enum Origin for Test {} - } - - // For testing the module, we construct most of a mock runtime. This means - // first constructing a configuration type (`Test`) which `impl`s each of the - // configuration traits of modules we want to use. - #[derive(Clone, Eq, PartialEq)] - pub struct Test; - impl system::Trait for Test { - type Origin = Origin; - type Index = u64; - type BlockNumber = u64; - type Hash = H256; - type Hashing = BlakeTwo256; - type Digest = Digest; - type AccountId = u64; - type Header = Header; - type Event = (); - type Log = DigestItem; - type Lookup = IdentityLookup; - } + // For testing the module, we construct most of a mock runtime. This means + // first constructing a configuration type (`Test`) which `impl`s each of the + // configuration traits of modules we want to use. + #[derive(Clone, Eq, PartialEq)] + pub struct Test; + impl system::Trait for Test { + type Origin = Origin; + type Index = u64; + type BlockNumber = u64; + type Hash = H256; + type Hashing = BlakeTwo256; + type Digest = Digest; + type AccountId = u64; + type Header = Header; + type Event = (); + type Log = DigestItem; + type Lookup = IdentityLookup; + } impl council::Trait for Test { type Event = (); } @@ -98,44 +61,45 @@ pub mod tests { impl balances::Trait for Test { type Event = (); - /// The balance of an account. - type Balance = u32; + /// The balance of an account. + type Balance = u32; + + /// A function which is invoked when the free-balance has fallen below the existential deposit and + /// has been reduced to zero. + /// + /// Gives a chance to clean up resources associated with the given account. + type OnFreeBalanceZero = (); - /// A function which is invoked when the free-balance has fallen below the existential deposit and - /// has been reduced to zero. - /// - /// Gives a chance to clean up resources associated with the given account. - type OnFreeBalanceZero = (); + /// Handler for when a new account is created. + type OnNewAccount = (); + + /// A function that returns true iff a given account can transfer its funds to another account. + type EnsureAccountLiquid = (); + } + impl governance::Trait for Test { + type Event = (); + } - /// Handler for when a new account is created. - type OnNewAccount = (); + // This function basically just builds a genesis storage key/value store according to + // our desired mockup. + fn new_test_ext() -> sr_io::TestExternalities { + let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; + /* + t.extend(governance::GenesisConfig::{ + //items + }.build_storage().unwrap().0); + */ + runtime_io::TestExternalities::new(t) + } - /// A function that returns true iff a given account can transfer its funds to another account. - type EnsureAccountLiquid = (); + #[test] + fn it_works_for_default_value() { + with_externalities(&mut new_test_ext(), || { + assert!(true); + }); } - impl Trait for Test { - type Event = (); - } - - type gov = Module; - - // This function basically just builds a genesis storage key/value store according to - // our desired mockup. - fn new_test_ext() -> sr_io::TestExternalities { - runtime_io::TestExternalities::new(system::GenesisConfig::::default().build_storage().unwrap().0) - /* - let mut t = system::GenesisConfig::::default().build_storage().unwrap(); - t.extend(gov::GenesisConfig:: { - something: 42, - }.build_storage().unwrap().0); - t.into() - */ - } - - #[test] - fn it_works_for_default_value() { - with_externalities(&mut new_test_ext(), || { - assert_eq!(gov::something(), Some(42)); // this should fail! - }); - } + + pub type Governance = Module; + pub type System = system::Module; + pub type Balances = balances::Module; } \ No newline at end of file From 5f4d06eb32e5f790f0a4938c1d99209188401c35 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 28 Jan 2019 23:04:45 +0200 Subject: [PATCH 039/350] adding basic test for starting election --- runtime/src/governance/election.rs | 4 ++-- runtime/src/governance/mod.rs | 31 ++++++++++++++++++++++++++---- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index e052614f29..d777926126 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -26,7 +26,7 @@ pub trait Trait: system::Trait + council::Trait + balances::Trait { type Event: From> + Into<::Event>; } -#[derive(Clone, Copy, Encode, Decode)] +#[derive(Clone, Copy, Encode, Decode, PartialEq, Debug)] pub struct Period { pub starts: T, pub ends: T @@ -39,7 +39,7 @@ pub enum Stage { Revealing(Period), } -const ANNOUNCING_PERIOD:u64 = 20; +pub const ANNOUNCING_PERIOD:u64 = 20; const VOTING_PERIOD:u64 = 20; const REVEALING_PERIOD:u64 = 20; const COUNCIL_SIZE: usize = 10; diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 400de257d5..da0a9068e9 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -82,7 +82,7 @@ pub mod tests { // This function basically just builds a genesis storage key/value store according to // our desired mockup. - fn new_test_ext() -> sr_io::TestExternalities { + fn initial_test_ext() -> sr_io::TestExternalities { let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; /* t.extend(governance::GenesisConfig::{ @@ -93,13 +93,36 @@ pub mod tests { } #[test] - fn it_works_for_default_value() { - with_externalities(&mut new_test_ext(), || { - assert!(true); + fn election_starts() { + with_externalities(&mut initial_test_ext(), || { + assert_eq!(Election::round(), 0); + System::set_block_number(1); + + assert!(Election::start_election().is_ok()); + + // election round is bumped + assert_eq!(Election::round(), 1); + + // we enter the announcing stage for a specified period + let expected_period = election::Period { + starts: 1, + ends: 1 + election::ANNOUNCING_PERIOD + }; + + if let Some(election_stage) = Election::stage() { + match election_stage { + election::Stage::Announcing(period) => assert_eq!(period, expected_period), + _ => assert!(false) + } + } else { + assert!(false); + } }); } pub type Governance = Module; + pub type Election = election::Module; + pub type Council = council::Module; pub type System = system::Module; pub type Balances = balances::Module; } \ No newline at end of file From 9f82b4c17f4c0d6c54644067c853aeee297af770 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 29 Jan 2019 00:23:22 +0200 Subject: [PATCH 040/350] final testing setup for governance module --- runtime/src/governance/council.rs | 13 +++++ runtime/src/governance/election.rs | 44 +++++++++++++-- runtime/src/governance/mod.rs | 54 +++++-------------- .../src/governance/{governance.rs => root.rs} | 21 ++++++-- runtime/src/lib.rs | 3 +- 5 files changed, 84 insertions(+), 51 deletions(-) rename runtime/src/governance/{governance.rs => root.rs} (66%) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 17b3d8f539..30a0e4e130 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -92,4 +92,17 @@ decl_module! { pub struct Module for enum Call where origin: T::Origin { fn deposit_event() = default; } +} + +#[cfg(test)] +mod tests { + use super::*; + use ::governance::tests::*; + + #[test] + fn dummy() { + with_externalities(&mut initial_test_ext(), || { + assert!(true); + }); + } } \ No newline at end of file diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d777926126..abf52bf147 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -40,11 +40,11 @@ pub enum Stage { } pub const ANNOUNCING_PERIOD:u64 = 20; -const VOTING_PERIOD:u64 = 20; -const REVEALING_PERIOD:u64 = 20; -const COUNCIL_SIZE: usize = 10; -const CANDIDACY_LIMIT: usize = 20; -const COUNCIL_MIN_STAKE: u64 = 100; +pub const VOTING_PERIOD:u64 = 20; +pub const REVEALING_PERIOD:u64 = 20; +pub const COUNCIL_SIZE: usize = 10; +pub const CANDIDACY_LIMIT: usize = 20; +pub const COUNCIL_MIN_STAKE: u64 = 100; decl_storage! { trait Store for Module as CouncilElection { @@ -632,3 +632,37 @@ decl_module! { // fn withdraw_vote() } } + +#[cfg(test)] +mod tests { + use super::*; + use ::governance::tests::*; + + #[test] + fn election_starts_if_not_started() { + with_externalities(&mut initial_test_ext(), || { + assert_eq!(Election::round(), 0); + System::set_block_number(1); + + assert!(Election::start_election().is_ok()); + + // election round is bumped + assert_eq!(Election::round(), 1); + + // we enter the announcing stage for a specified period + let expected_period = election::Period { + starts: 1, + ends: 1 + election::ANNOUNCING_PERIOD + }; + + if let Some(election_stage) = Election::stage() { + match election_stage { + election::Stage::Announcing(period) => assert_eq!(period, expected_period), + _ => assert!(false) + } + } else { + assert!(false); + } + }); + } +} \ No newline at end of file diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index da0a9068e9..1e8a45f5a9 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -12,24 +12,21 @@ extern crate srml_system as system; pub mod election; pub mod council; -pub mod governance; +pub mod root; mod transferable_stake; mod sealed_vote; -pub use self::governance::{Trait, Module, RawEvent, Event}; - #[cfg(test)] pub mod tests { pub use super::*; - use self::sr_io::with_externalities; - use self::substrate_primitives::{H256, Blake2Hasher}; - use self::sr_primitives::{ + pub use self::sr_io::with_externalities; + pub use self::substrate_primitives::{H256, Blake2Hasher}; + pub use self::sr_primitives::{ BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, testing::{Digest, DigestItem, Header} }; - impl_outer_origin! { pub enum Origin for Test {} } @@ -76,51 +73,24 @@ pub mod tests { /// A function that returns true iff a given account can transfer its funds to another account. type EnsureAccountLiquid = (); } - impl governance::Trait for Test { + impl root::Trait for Test { type Event = (); } // This function basically just builds a genesis storage key/value store according to // our desired mockup. - fn initial_test_ext() -> sr_io::TestExternalities { + pub fn initial_test_ext() -> sr_io::TestExternalities { let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; - /* - t.extend(governance::GenesisConfig::{ - //items - }.build_storage().unwrap().0); - */ - runtime_io::TestExternalities::new(t) - } - #[test] - fn election_starts() { - with_externalities(&mut initial_test_ext(), || { - assert_eq!(Election::round(), 0); - System::set_block_number(1); - - assert!(Election::start_election().is_ok()); - - // election round is bumped - assert_eq!(Election::round(), 1); - - // we enter the announcing stage for a specified period - let expected_period = election::Period { - starts: 1, - ends: 1 + election::ANNOUNCING_PERIOD - }; + t.extend(root::GenesisConfig:: { + dummy: 0, + _genesis_phantom_data: Default::default(), + }.build_storage().unwrap().0); - if let Some(election_stage) = Election::stage() { - match election_stage { - election::Stage::Announcing(period) => assert_eq!(period, expected_period), - _ => assert!(false) - } - } else { - assert!(false); - } - }); + runtime_io::TestExternalities::new(t) } - pub type Governance = Module; + pub type Governance = root::Module; pub type Election = election::Module; pub type Council = council::Module; pub type System = system::Module; diff --git a/runtime/src/governance/governance.rs b/runtime/src/governance/root.rs similarity index 66% rename from runtime/src/governance/governance.rs rename to runtime/src/governance/root.rs index 105deedaca..8c655aeebe 100644 --- a/runtime/src/governance/governance.rs +++ b/runtime/src/governance/root.rs @@ -6,8 +6,8 @@ pub trait Trait: system::Trait + council::Trait + election::Trait { } decl_storage! { - trait Store for Module as Gov { - + trait Store for Module as Root { + Dummy get(dummy) config(): u32; } } @@ -19,7 +19,9 @@ decl_event!( ); impl Module { - + fn private_function() -> bool { + true + } } decl_module! { @@ -33,4 +35,17 @@ decl_module! { } } } +} + +#[cfg(test)] +mod tests { + use super::*; + use ::governance::tests::*; + + #[test] + fn can_test_private_function() { + with_externalities(&mut initial_test_ext(), || { + assert!(Governance::private_function()); + }); + } } \ No newline at end of file diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index c551808349..0e771cafbb 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -34,7 +34,7 @@ extern crate srml_indices as indices; extern crate substrate_consensus_aura_primitives as consensus_aura; mod governance; -use governance::{election, council}; +use governance::{election, council, root}; use rstd::prelude::*; #[cfg(feature = "std")] @@ -225,6 +225,7 @@ construct_runtime!( Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event}, Governance: governance::{Module, Call, Storage, Event}, + Governance: root::{Module, Call, Storage, Event}, CouncilElection: election::{Module, Call, Storage, Event}, Council: council::{Module, Call, Storage, Event}, } From 856e4a50810b39e3fba15f3867925055d52a7f05 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 29 Jan 2019 01:13:03 +0200 Subject: [PATCH 041/350] basic test for transferable stake --- runtime/src/governance/transferable_stake.rs | 56 ++++++++++++++++---- 1 file changed, 47 insertions(+), 9 deletions(-) diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index f9d542f68b..9e88b42d4b 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -1,18 +1,18 @@ #![cfg_attr(not(feature = "std"), no_std)] use srml_support::inherent::cmp::Ordering; -use runtime_primitives::traits::{SimpleArithmetic, Zero}; +use runtime_primitives::traits::{SimpleArithmetic}; -#[derive(Clone, Copy, Encode, Decode, Default)] -pub struct Stake - where Balance: Copy + SimpleArithmetic + Zero, +#[derive(Encode, Decode, Clone, Copy, Default, Debug)] +pub struct Stake + where Balance: Copy + SimpleArithmetic, { pub refundable: Balance, pub transferred: Balance, } impl Stake - where Balance: Copy + SimpleArithmetic + Zero, + where Balance: Copy + SimpleArithmetic, { pub fn total(&self) -> Balance { self.refundable + self.transferred @@ -39,22 +39,60 @@ impl Stake } } -impl PartialOrd for Stake { +impl PartialOrd for Stake { fn partial_cmp(&self, other: &Self) -> Option { Some(self.cmp(&other)) } } -impl Ord for Stake { +impl Ord for Stake { fn cmp(&self, other: &Self) -> Ordering { self.total().cmp(&other.total()) } } -impl PartialEq for Stake { +impl PartialEq for Stake { fn eq(&self, other: &Self) -> bool { self.total() == other.total() } } -impl Eq for Stake {} \ No newline at end of file +impl Eq for Stake {} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn total() { + let a: u128 = 4; + let b: u128 = 5; + let s = Stake { + refundable: a, + transferred: b, + }; + assert_eq!(a + b, s.total()); + } + + #[test] + fn can_add_stakes() { + let a1: u128 = 3; let b1: u128 = 2; + let a2: u128 = 5; let b2: u128 = 7; + + let s1 = Stake { + refundable: a1, + transferred: b1, + }; + + let s2 = Stake { + refundable: a2, + transferred: b2, + }; + + let sum = s1.add(&s2); + + assert_eq!(sum.refundable, 8); + assert_eq!(sum.transferred, 9); + } + +} \ No newline at end of file From 55c24ca6ae5955636b06be85ae85c34ce784cad6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 29 Jan 2019 01:35:05 +0200 Subject: [PATCH 042/350] more tests --- runtime/src/governance/election.rs | 16 ++++-- runtime/src/governance/transferable_stake.rs | 54 +++++++++++++++----- 2 files changed, 53 insertions(+), 17 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index abf52bf147..84965366d9 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -641,9 +641,13 @@ mod tests { #[test] fn election_starts_if_not_started() { with_externalities(&mut initial_test_ext(), || { - assert_eq!(Election::round(), 0); System::set_block_number(1); + assert!(Council::term_ended(1)); + assert!(Council::council().is_none()); + assert!(Election::stage().is_none()); + assert_eq!(Election::round(), 0); + assert!(Election::start_election().is_ok()); // election round is bumped @@ -657,11 +661,15 @@ mod tests { if let Some(election_stage) = Election::stage() { match election_stage { - election::Stage::Announcing(period) => assert_eq!(period, expected_period), - _ => assert!(false) + election::Stage::Announcing(period) => { + assert_eq!(period, expected_period, "Election period not set correctly") + } + _ => { + assert!(false, "Election Stage was not correctly set to Announcing") + } } } else { - assert!(false); + assert!(false, "Election Stage was not set"); } }); } diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index 9e88b42d4b..2bbfb88a66 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -18,18 +18,17 @@ impl Stake self.refundable + self.transferred } - pub fn checked_add(&self, v: &Self) -> Option { - if let Some(refundable) = self.refundable.checked_add(&v.refundable) { - if let Some(transferred) = self.transferred.checked_add(&v.transferred) { - return Some(Self { - refundable, - transferred - }) - } - } - - None - } + // pub fn checked_add(&self, v: &Self) -> Option { + // if let Some(refundable) = self.refundable.checked_add(&v.refundable) { + // if let Some(transferred) = self.transferred.checked_add(&v.transferred) { + // return Some(Self { + // refundable, + // transferred + // }) + // } + // } + // None + // } pub fn add(&self, v: &Self) -> Self { Self { @@ -75,7 +74,7 @@ mod tests { } #[test] - fn can_add_stakes() { + fn adding() { let a1: u128 = 3; let b1: u128 = 2; let a2: u128 = 5; let b2: u128 = 7; @@ -95,4 +94,33 @@ mod tests { assert_eq!(sum.transferred, 9); } + #[test] + fn equality(){ + let a1: u128 = 3; let b1: u128 = 2; + let a2: u128 = 2; let b2: u128 = 3; + let a3: u128 = 10; let b3: u128 = 10; + + let s1 = Stake { + refundable: a1, + transferred: b1, + }; + + let s2 = s1; + + assert_eq!(s1, s2); + + let s3 = Stake { + refundable: a2, + transferred: b2, + }; + + assert_eq!(s1, s3); + + let s4 = Stake { + refundable: a3, + transferred: b3, + }; + + assert_ne!(s1, s4); + } } \ No newline at end of file From 9bce32b8a19bde3a9442c23105f8670a49a53cf2 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 29 Jan 2019 16:22:30 +0200 Subject: [PATCH 043/350] adding stub tests --- runtime/src/governance/election.rs | 117 ++++++++++++++++++++++++++++- 1 file changed, 114 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 84965366d9..2d23c3dd47 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -43,7 +43,7 @@ pub const ANNOUNCING_PERIOD:u64 = 20; pub const VOTING_PERIOD:u64 = 20; pub const REVEALING_PERIOD:u64 = 20; pub const COUNCIL_SIZE: usize = 10; -pub const CANDIDACY_LIMIT: usize = 20; +pub const CANDIDACY_LIMIT: usize = 20; // should be greater than COUNCIL_SIZE pub const COUNCIL_MIN_STAKE: u64 = 100; decl_storage! { @@ -122,7 +122,7 @@ impl Module { }) } - fn move_to_announcing_stage() { + fn move_to_announcing_stage() -> Period { let period = Self::new_period(T::BlockNumber::sa(ANNOUNCING_PERIOD)); >::put(Stage::Announcing(period)); @@ -131,6 +131,7 @@ impl Module { Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); print("Announcing Started"); + period } fn on_announcing_ended() { @@ -639,7 +640,17 @@ mod tests { use ::governance::tests::*; #[test] - fn election_starts_if_not_started() { + fn default_paramas_should_work () { + + } + + #[test] + fn election_start_when_term_ends_should_work() { + + } + + #[test] + fn election_starts_only_if_not_started_should_work() { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); @@ -671,6 +682,106 @@ mod tests { } else { assert!(false, "Election Stage was not set"); } + + // Should fail to start election if already ongoing + assert!(Election::start_election().is_err()); + }); + } + + #[test] + fn init_transferable_stake_should_work () { + + } + + #[test] + fn announcing_should_work() { + + } + + #[test] + fn announcing_with_transferable_council_stake_should_work() { + + } + + #[test] + fn increasing_stake_when_announcing_should_work () { + + } + + #[test] + fn applicants_announcing_when_not_in_announcing_stage_should_not_work () { + + } + + #[test] + fn moving_to_voting_without_enough_applicants_should_not_work() { + with_externalities(&mut initial_test_ext(), || { + System::set_block_number(1); + let ann_period = Election::move_to_announcing_stage(); + let round = Election::round(); + + System::set_block_number(ann_period.ends); + Election::on_announcing_ended(); + + // A new round should have been started + assert_eq!(Election::round(), round + 1); + + match Election::stage() { + Some(stage) => { + match stage { + // ensure a new announcing period was created + election::Stage::Announcing(period) => { + assert_eq!(period.ends, ann_period.ends + election::ANNOUNCING_PERIOD, "A new announcing period should have been created"); + }, + _ => { + assert!(false, "Election should have returned to announcing stage") + } + } + }, + _ => assert!(false, "Election should not have ended") + } + + // applicants list should be the same }); } + + #[test] + fn top_applicants_become_candidates_should_work() { + + } + + #[test] + fn refunding_applicant_stakes_should_work () { + + } + + #[test] + fn votes_can_be_submitted_in_voting_stage () { + + } + + #[test] + fn votes_can_be_revealed_in_revealing_stage () { + + } + + #[test] + fn invalid_votes_should_not_work () { + + } + + #[test] + fn vote_tallying_should_work () { + + } + + #[test] + fn refunding_voting_stakes_should_work () { + + } + + #[test] + fn council_is_set_after_revealing_should_work() { + + } } \ No newline at end of file From 7af6dcc08be0fb189e1d7942571cc7891abbc928 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 29 Jan 2019 16:59:28 +0200 Subject: [PATCH 044/350] rebase fixes --- runtime/src/governance/transferable_stake.rs | 2 +- runtime/src/lib.rs | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index 2bbfb88a66..886ec46378 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -1,6 +1,6 @@ #![cfg_attr(not(feature = "std"), no_std)] -use srml_support::inherent::cmp::Ordering; +use rstd::cmp::Ordering; use runtime_primitives::traits::{SimpleArithmetic}; #[derive(Encode, Decode, Clone, Copy, Default, Debug)] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 0e771cafbb..f6e0d258ed 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -210,6 +210,10 @@ impl governance::council::Trait for Runtime { type Event = Event; } +impl governance::root::Trait for Runtime { + type Event = Event; +} + construct_runtime!( pub enum Runtime with Log(InternalLog: DigestItem) where Block = Block, @@ -224,7 +228,6 @@ construct_runtime!( Balances: balances, Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event}, - Governance: governance::{Module, Call, Storage, Event}, Governance: root::{Module, Call, Storage, Event}, CouncilElection: election::{Module, Call, Storage, Event}, Council: council::{Module, Call, Storage, Event}, From 4d9253156b1bfb63a45ea1036ea9d097efa91f33 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 30 Jan 2019 01:32:39 +0200 Subject: [PATCH 045/350] better use of iterators --- runtime/src/governance/council.rs | 6 +--- runtime/src/governance/election.rs | 47 ++++++++++++++---------------- 2 files changed, 23 insertions(+), 30 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 30a0e4e130..f4d6363364 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -71,11 +71,7 @@ decl_event!( impl Module { pub fn set_council(council: &BTreeMap>) { - let mut new_council = Vec::new(); - - for (_, seat) in council.iter() { - new_council.push(seat.clone()); - } + let new_council: Vec> = council.into_iter().map(|(_, seat)| seat.clone()).collect(); >::put(new_council); diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 2d23c3dd47..f1a0ab9511 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -135,7 +135,7 @@ impl Module { } fn on_announcing_ended() { - let applicants = Self::applicants(); + let mut applicants = Self::applicants(); if applicants.len() < COUNCIL_SIZE { // Not enough candidates announced candidacy @@ -147,11 +147,9 @@ impl Module { // This is highly ineffieicent (cloning ApplicationId twice) // using functional style should help if applicants.len() > CANDIDACY_LIMIT { - let mut sorted_applicants = Vec::new(); - for applicant in applicants.iter() { - let stake = Self::applicant_stakes(applicant); - sorted_applicants.push((applicant, stake)); - } + let mut sorted_applicants: Vec<(&T::AccountId, Stake)> = applicants.iter() + .map(|applicant| (applicant, Self::applicant_stakes(applicant))) + .collect(); sorted_applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? @@ -160,19 +158,18 @@ impl Module { for (applicant, stake) in bottom_applicants.iter() { // refund applicants - Self::return_stake_to(applicant, *stake); + Self::return_stake_to(*applicant, *stake); // remove applicant >::remove(*applicant); //applicants.remove_item(applicant); // unstable feature } - let mut updated_candidates = Vec::new(); - for (applicant,_) in candidates.iter() { - updated_candidates.push((*applicant).clone()); - } - - >::put(updated_candidates); + let candidates: Vec = candidates.into_iter() + .map(|(applicant,_)| (*applicant).clone()) + .collect(); + + >::put(candidates); } Self::move_to_voting_stage(); @@ -215,18 +212,18 @@ impl Module { // Is a candidate with some votes but less total stake than another candidate with zero votes // more qualified to be on the council? // Consider implications - if a council can be formed purely by staking are we fine with that? - for candidate in Self::applicants() { - match new_council.get(&candidate) { - Some(_) => (), - None => { - new_council.insert(candidate.clone(), council::Seat { - member: candidate.clone(), - stake: Self::applicant_stakes(candidate).total(), - backers: Vec::new(), - }); - } - } - } + let applicants = Self::applicants(); + let not_on_council: Vec<&T::AccountId> = applicants.iter() + .filter(|applicant| new_council.get(applicant).is_none()).collect(); + + let _: Vec<()> = not_on_council.into_iter().map(|applicant| { + new_council.insert(applicant.clone(), council::Seat { + member: applicant.clone(), + stake: Self::applicant_stakes(applicant).total(), + backers: Vec::new(), + }); + () + }).collect(); if new_council.len() == COUNCIL_SIZE { // all candidates in the tally will form the new council From c87234398150020f97ad2351215c4cbd1f91c0ba Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 30 Jan 2019 09:48:17 +0200 Subject: [PATCH 046/350] Check free and reserved balances of proposer in tests --- runtime/src/proposals.rs | 166 +++++++++++++++++++++++++++------------ 1 file changed, 114 insertions(+), 52 deletions(-) diff --git a/runtime/src/proposals.rs b/runtime/src/proposals.rs index fc09e7925f..7b0cb1fb21 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/proposals.rs @@ -4,8 +4,10 @@ use runtime_io::print; use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; -const MIN_STAKE: u64 = 100; const APPROVAL_QUORUM: u32 = 60; +const MIN_STAKE: u64 = 100; +const CANCELLATION_FEE: u64 = 5; +const REJECTION_FEE: u64 = 10; const VOTING_PERIOD_IN_DAYS: u64 = 10; const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; @@ -137,25 +139,29 @@ decl_storage! { // Parameters (defaut values could be exported to config): + // TODO get this value from Council or Config mudule: CouncilMembersCount get(council_members_count) config(): u32 = 10; + // TODO rename? 'approval_quorum' -> 'approval_quorum_per' /// The percentage (up to 100) of the council participants /// which must vote affirmatively in order for it to pass. ApprovalQuorum get(approval_quorum) config(): u32 = APPROVAL_QUORUM; /// Minimum balance amount to be staked in order to make a proposal. - MinimumStake get(minimum_stake) config(): T::Balance = T::Balance::sa(MIN_STAKE); + MinimumStake get(minimum_stake) config(): T::Balance = + T::Balance::sa(MIN_STAKE); /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. - CancellationFee get(cancellation_fee) config(): T::Balance = T::Balance::sa(5); + CancellationFee get(cancellation_fee) config(): T::Balance = + T::Balance::sa(CANCELLATION_FEE); /// A fee to be slashed (burn) in case a proposal was rejected. - RejectionFee get(rejection_fee) config(): T::Balance = T::Balance::sa(10); + RejectionFee get(rejection_fee) config(): T::Balance = + T::Balance::sa(REJECTION_FEE); /// Max duration of proposal in blocks until it will be expired if not enough votes. - VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::sa( - VOTING_PERIOD_IN_SECS / >::block_period().as_() - ); + VotingPeriod get(voting_period) config(): T::BlockNumber = + T::BlockNumber::sa(VOTING_PERIOD_IN_SECS / >::block_period().as_()); // Persistent state (always relevant, changes constantly): @@ -536,7 +542,6 @@ mod tests { } type System = system::Module; - type Consensus = consensus::Module; type Balances = balances::Module; type Proposals = Module; @@ -560,6 +565,9 @@ mod tests { COUNCILOR5 ]; + // Initial balance of proposer 1. + const INITIAL_BALANCE: u64 = (MIN_STAKE as f64 * 2.5) as u64; + // This function basically just builds a genesis storage key/value store according to // our desired mockup. fn new_test_ext() -> runtime_io::TestExternalities { @@ -572,8 +580,8 @@ mod tests { council_members_count: ALL_COUNCILORS.len() as u32, approval_quorum: APPROVAL_QUORUM, minimum_stake: MIN_STAKE, - cancellation_fee: 5, - rejection_fee: 10, + cancellation_fee: CANCELLATION_FEE, + rejection_fee: REJECTION_FEE, voting_period: 10 }.build_storage().unwrap().0); @@ -617,8 +625,8 @@ mod tests { with_externalities(&mut new_test_ext(), || { assert_eq!(Proposals::approval_quorum(), APPROVAL_QUORUM); assert_eq!(Proposals::minimum_stake(), MIN_STAKE); - assert_eq!(Proposals::cancellation_fee(), 5); - assert_eq!(Proposals::rejection_fee(), 10); + assert_eq!(Proposals::cancellation_fee(), CANCELLATION_FEE); + assert_eq!(Proposals::rejection_fee(), REJECTION_FEE); assert_eq!(Proposals::proposal_count(), 0); assert_eq!(Proposals::pending_proposal_ids().len(), 0); }); @@ -627,8 +635,8 @@ mod tests { #[test] fn member_create_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); assert_eq!(Proposals::pending_proposal_ids().len(), 1); @@ -646,6 +654,10 @@ mod tests { }; assert_eq!(Proposals::proposal(1), expected_proposal); + // Check that stake amount has been locked on proposer's balance: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); + assert_eq!(Balances::reserved_balance(PROPOSER1), MIN_STAKE); + // TODO test event ProposalCreated(AccountId, ProposalId) }); } @@ -661,12 +673,16 @@ mod tests { #[test] fn cannot_create_proposal_with_small_stake() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_eq!(self::_create_proposal( None, Some(MIN_STAKE - 1), None, None, None), Err(MSG_STAKE_IS_TOO_SMALL)); + + // Check that balances remain unchanged afer a failed attempt to create a proposal: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); }); } @@ -699,16 +715,17 @@ mod tests { #[test] fn owner_cancel_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); - - // TODO test that balance reduced by cancellation_fee - assert_eq!(Proposals::proposal(1).status, Cancelled); assert_eq!(Proposals::pending_proposal_ids().len(), 0); + + // Check that proposer's balance reduced by cancellation fee and other part of his stake returned to his balance: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - CANCELLATION_FEE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO write test // TODO test event ProposalCanceled(AccountId, ProposalId) @@ -718,22 +735,31 @@ mod tests { #[test] fn owner_cannot_cancel_proposal_if_its_finalized() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); assert_eq!(Proposals::proposal(1).status, Cancelled); + + // Get balances updated after cancelling a proposal: + let updated_free_balance = Balances::free_balance(PROPOSER1); + let updated_reserved_balance = Balances::reserved_balance(PROPOSER1); + assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1), Err(MSG_PROPOSAL_FINALIZED)); + + // Check that proposer's balance and locked stake haven't been changed: + assert_eq!(Balances::free_balance(PROPOSER1), updated_free_balance); + assert_eq!(Balances::reserved_balance(PROPOSER1), updated_reserved_balance); }); } #[test] fn not_owner_cannot_cancel_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); // TODO check that account is member first: // assert_eq!(self::_create_proposal( @@ -748,26 +774,26 @@ mod tests { #[test] fn councilor_vote_on_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); assert_ok!(Proposals::vote_on_proposal( Origin::signed(COUNCILOR1), 1, Approve)); + // Check that a vote has been saved: assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); // expect event Voted(AccountId, ProposalId, VoteKind) - // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) }); } #[test] fn councilor_cannot_vote_on_proposal_twice() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); assert_ok!(Proposals::vote_on_proposal( @@ -781,8 +807,8 @@ mod tests { #[test] fn not_councilor_cannot_vote_on_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); // TODO mock is_councilor == false for this place: @@ -805,8 +831,8 @@ mod tests { #[test] fn approve_proposal_when_all_councilors_approved_it() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); @@ -821,6 +847,8 @@ mod tests { System::set_block_number(2); Proposals::on_finalise(2); + assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert_eq!(Proposals::proposal(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, @@ -831,21 +859,23 @@ mod tests { finalized_on: 2 }); + // Check that proposer's stake has been added back to his balance: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + // TODO finish test: - // proposer's stake has been unlocked // runtime updated - // proposal's status updated to Approved - // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + // expect event ProposalStatusUpdated(1, Approved) }); } #[test] - fn quorum_approved_proposal() { + fn approved_proposal_when_quorum_reached() { with_externalities(&mut new_test_ext(), || { // TODO write test // runtime updated // proposal's status updated to Approved - // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + // expect event ProposalStatusUpdated(1, Approved) }); } @@ -855,35 +885,65 @@ mod tests { // TODO write test // proposer's balance reduced by rejection_fee // proposal's status updated to Rejected - // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + // expect event ProposalStatusUpdated(1, Rejected) }); } #[test] - fn reject_proposal_when_not_all_councilors_voted_and_quorum_not_reached() { + fn reject_proposal_when_voting_period_expired_and_quorum_not_reached() { with_externalities(&mut new_test_ext(), || { // TODO write test // proposal's status updated to Rejected - // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + // expect event ProposalStatusUpdated(1, Rejected) }); } #[test] fn reject_proposal_when_all_councilors_rejected_it() { with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; + for &councilor in ALL_COUNCILORS.iter() { + expected_votes.push((councilor, Reject)); + assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Reject)); + assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Reject); + } + assert_eq!(Proposals::votes_by_proposal(1), expected_votes); + + System::set_block_number(2); + Proposals::on_finalise(2); + + assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert_eq!(Proposals::proposal(1).status, Rejected); + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: 0, + rejections: ALL_COUNCILORS.len() as u32, + slashes: 0, + status: Rejected, + finalized_on: 2 + }); + + // Check that proposer's balance reduced by burnt stake: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + // TODO write test // runtime not updated - // proposal's status updated to Rejected - // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + // expect event ProposalStatusUpdated(1, Rejected) }); } #[test] fn slash_proposal_when_all_councilors_slashed_it() { with_externalities(&mut new_test_ext(), || { - - Balances::set_free_balance(&PROPOSER1, 250); - Balances::increase_total_stake_by(250); + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); @@ -898,6 +958,8 @@ mod tests { System::set_block_number(2); Proposals::on_finalise(2); + assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert_eq!(Proposals::proposal(1).status, Slashed); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, @@ -908,13 +970,13 @@ mod tests { finalized_on: 2 }); - assert_eq!(Proposals::proposal(1).status, Slashed); + // Check that proposer's balance reduced by burnt stake: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - // TODO write test - // proposer's balance reduced by stake amount + // TODO finsih test // runtime not updated - // proposal's status updated to Slashed - // expect event ProposalStatusUpdated(ProposalId, ProposalStatus) + // expect event ProposalStatusUpdated(1, Slashed) }); } } \ No newline at end of file From 212ce1da7fa439ffa936829aca411c78f322f714 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 30 Jan 2019 10:31:08 +0200 Subject: [PATCH 047/350] use TriggerElection hook to more safely allow election to be started --- runtime/src/governance/election.rs | 12 +++++++----- runtime/src/governance/mod.rs | 2 ++ runtime/src/governance/root.rs | 28 +++++++++++++++++++++++++++- runtime/src/lib.rs | 2 ++ 4 files changed, 38 insertions(+), 6 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index f1a0ab9511..edb3d9e684 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -21,6 +21,7 @@ use rstd::collections::btree_map::BTreeMap; use super::transferable_stake::Stake; use super::council; use super::sealed_vote::SealedVote; +use super::root; pub trait Trait: system::Trait + council::Trait + balances::Trait { type Event: From> + Into<::Event>; @@ -87,9 +88,8 @@ decl_event!( } ); - -impl Module { - pub fn start_election() -> Result { +impl root::TriggerElection for Module { + fn trigger_election() -> Result { if Self::stage().is_some() { return Err("election in progress") } @@ -104,7 +104,9 @@ impl Module { Ok(()) } +} +impl Module { fn new_period(length: T::BlockNumber) -> Period { let current_block = >::block_number(); Period { @@ -656,7 +658,7 @@ mod tests { assert!(Election::stage().is_none()); assert_eq!(Election::round(), 0); - assert!(Election::start_election().is_ok()); + assert!(::trigger_election().is_ok()); // election round is bumped assert_eq!(Election::round(), 1); @@ -681,7 +683,7 @@ mod tests { } // Should fail to start election if already ongoing - assert!(Election::start_election().is_err()); + assert!(::trigger_election().is_err()); }); } diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 1e8a45f5a9..7b19a1d6cb 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -75,6 +75,8 @@ pub mod tests { } impl root::Trait for Test { type Event = (); + + type TriggerElection = (Election,); } // This function basically just builds a genesis storage key/value store according to diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 8c655aeebe..c094f285b9 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -1,8 +1,30 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +use srml_support::{StorageValue, StorageMap, dispatch::Result}; + use governance::{council, election}; + use runtime_io::print; +// Hook For starting election +pub trait TriggerElection { + fn trigger_election() -> Result; +} + +impl TriggerElection for () { + fn trigger_election() -> Result { Ok(())} +} + +impl TriggerElection for (X,) { + fn trigger_election() -> Result{ + X::trigger_election() + } +} + pub trait Trait: system::Trait + council::Trait + election::Trait { type Event: From> + Into<::Event>; + + type TriggerElection: TriggerElection; } decl_storage! { @@ -29,10 +51,14 @@ decl_module! { fn deposit_event() = default; fn on_finalise(n: T::BlockNumber) { - if >::start_election().is_ok() { + if T::TriggerElection::trigger_election().is_ok() { print("Election Started"); Self::deposit_event(RawEvent::ElectionStarted(n)); } + // if >::start_election().is_ok() { + // print("Election Started"); + // Self::deposit_event(RawEvent::ElectionStarted(n)); + // } } } } diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index f6e0d258ed..330c0be06e 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -212,6 +212,8 @@ impl governance::council::Trait for Runtime { impl governance::root::Trait for Runtime { type Event = Event; + + type TriggerElection = (CouncilElection,); } construct_runtime!( From bf8b258b4416dcb94bbbf64b56815d82a03a6613 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 30 Jan 2019 11:21:55 +0200 Subject: [PATCH 048/350] Add bash header to all *.sh scripts --- clean-chain.sh | 2 ++ delete-chain-folder.sh | 2 ++ start-node.sh | 2 ++ test-all.sh | 2 ++ 4 files changed, 8 insertions(+) diff --git a/clean-chain.sh b/clean-chain.sh index 7082edf665..7af2df038e 100755 --- a/clean-chain.sh +++ b/clean-chain.sh @@ -1 +1,3 @@ +#!/usr/bin/env bash + cargo run -- --dev purge-chain diff --git a/delete-chain-folder.sh b/delete-chain-folder.sh index 4b37a44316..504c5d5991 100755 --- a/delete-chain-folder.sh +++ b/delete-chain-folder.sh @@ -1 +1,3 @@ +#!/usr/bin/env bash + rm -rf ~/Library/Application\ Support/Substrate/chains/dev/ diff --git a/start-node.sh b/start-node.sh index ff8ac74182..e8505364c9 100755 --- a/start-node.sh +++ b/start-node.sh @@ -1 +1,3 @@ +#!/usr/bin/env bash + ./target/release/joystream-node --dev diff --git a/test-all.sh b/test-all.sh index 9e06a10dfe..bb39687d3b 100755 --- a/test-all.sh +++ b/test-all.sh @@ -1 +1,3 @@ +#!/usr/bin/env bash + cargo test --all From 8fbc5c789050c939f94297d5de52b36c51b3a7d9 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 30 Jan 2019 12:05:40 +0200 Subject: [PATCH 049/350] Upd authors in Cargo.toml files to Jsgenesis --- Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- runtime/wasm/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 46d78946f3..b54c705f5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "joystream-node" version = "0.9.0" -authors = ["Parity Technologies "] +authors = ["Jsgenesis "] build = "build.rs" [[bin]] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index f5ea24c69c..4460080c52 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "joystream-node-runtime" version = "0.9.0" -authors = ["Parity Technologies "] +authors = ["Jsgenesis "] [dependencies] rustc-hex = "1.0" diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index 047ea87275..ced5f8593c 100644 --- a/runtime/wasm/Cargo.toml +++ b/runtime/wasm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "joystream-node-runtime" version = "0.9.0" -authors = ["Parity Technologies "] +authors = ["Jsgenesis "] [lib] crate-type = ["cdylib"] From 93e2edc6d97418cb7fa628d8ebb1f14c3139acc1 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 30 Jan 2019 12:08:11 +0200 Subject: [PATCH 050/350] Script to run test for proposals module only --- test-proposals.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 test-proposals.sh diff --git a/test-proposals.sh b/test-proposals.sh new file mode 100755 index 0000000000..95801acc4d --- /dev/null +++ b/test-proposals.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +set -e + +bold=$(tput bold) +normal=$(tput sgr0) + +# Save current directory. +pushd . >/dev/null + +MODULE=proposals +echo "Run tests for ${bold}$MODULE${normal} module..." +cd ./runtime +cargo test $MODULE + +# Restore initial directory. +popd >/dev/null From 972004694d0c3e66346176b888b0c357a699f5b1 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 30 Jan 2019 17:00:33 +0200 Subject: [PATCH 051/350] Integrate proposal into governance module --- runtime/src/governance/council.rs | 18 ++- runtime/src/governance/mod.rs | 17 ++- runtime/src/{ => governance}/proposals.rs | 157 ++++++++++++++++++---- runtime/src/lib.rs | 8 +- 4 files changed, 166 insertions(+), 34 deletions(-) rename runtime/src/{ => governance}/proposals.rs (87%) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index f4d6363364..f73372899e 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -22,7 +22,8 @@ pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; } -#[derive(Clone, Encode, Decode)] +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] pub struct Seat { pub member: Id, pub stake: Stake, @@ -41,7 +42,8 @@ impl Seat } } -#[derive(Copy, Clone, Encode, Decode)] +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] pub struct Backer { pub member: Id, pub stake: Stake, @@ -55,9 +57,9 @@ decl_storage! { trait Store for Module as CouncilInSession { // Initial state - council is empty and resigned, which will trigger // and election in next block - ActiveCouncil get(council): Option>; + ActiveCouncil get(council) config(): Option>; - TermEnds get(term_ends): T::BlockNumber = T::BlockNumber::sa(0); + TermEnds get(term_ends) config(): T::BlockNumber = T::BlockNumber::sa(0); } } @@ -82,6 +84,14 @@ impl Module { pub fn term_ended(n: T::BlockNumber) -> bool { n >= Self::term_ends() } + + pub fn is_councilor(sender: T::AccountId) -> bool { + if let Some(council) = Self::council() { + council.iter().any(|c| c.member == sender) + } else { + false + } + } } decl_module! { diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 7b19a1d6cb..25bd2b7dc9 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -13,6 +13,7 @@ extern crate srml_system as system; pub mod election; pub mod council; pub mod root; +pub mod proposals; mod transferable_stake; mod sealed_vote; @@ -24,7 +25,8 @@ pub mod tests { pub use self::sr_io::with_externalities; pub use self::substrate_primitives::{H256, Blake2Hasher}; pub use self::sr_primitives::{ - BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, testing::{Digest, DigestItem, Header} + BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, + testing::{Digest, DigestItem, Header, UintAuthorityId} }; impl_outer_origin! { @@ -49,12 +51,24 @@ pub mod tests { type Log = DigestItem; type Lookup = IdentityLookup; } + impl timestamp::Trait for Test { + type Moment = u64; + type OnTimestampSet = (); + } + impl consensus::Trait for Test { + type SessionKey = UintAuthorityId; + type InherentOfflineReport = (); + type Log = DigestItem; + } impl council::Trait for Test { type Event = (); } impl election::Trait for Test { type Event = (); } + impl proposals::Trait for Test { + type Event = (); + } impl balances::Trait for Test { type Event = (); @@ -95,6 +109,7 @@ pub mod tests { pub type Governance = root::Module; pub type Election = election::Module; pub type Council = council::Module; + pub type Proposals = proposals::Module; pub type System = system::Module; pub type Balances = balances::Module; } \ No newline at end of file diff --git a/runtime/src/proposals.rs b/runtime/src/governance/proposals.rs similarity index 87% rename from runtime/src/proposals.rs rename to runtime/src/governance/proposals.rs index 7b0cb1fb21..9bb8ec4f1f 100644 --- a/runtime/src/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -1,9 +1,12 @@ -use srml_support::{StorageValue, StorageMap, dispatch::Result}; +use srml_support::{storage, StorageValue, StorageMap, dispatch::Result}; +use primitives::{storage::well_known_keys}; use runtime_primitives::traits::{As, Hash, CheckedAdd}; use runtime_io::print; use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; +use council; + const APPROVAL_QUORUM: u32 = 60; const MIN_STAKE: u64 = 100; const CANCELLATION_FEE: u64 = 5; @@ -22,6 +25,9 @@ const MSG_CANNOT_VOTE_ON_OWN_PROPOSAL: &str = "You cannot vote on your own propo const MSG_YOU_ALREADY_VOTED: &str = "You have already voted on this proposal"; const MSG_YOU_DONT_OWN_THIS_PROPOSAL: &str = "You do not own this proposal"; const MSG_PROPOSAL_STATUS_ALREADY_UPDATED: &str = "Proposal status has been updated already"; +const MSG_EMPTY_NAME_PROVIDED: &str = "Proposal cannot have an empty name"; +const MSG_EMPTY_DESCRIPTION_PROVIDED: &str = "Proposal cannot have an empty description"; +const MSG_EMPTY_WASM_CODE_PROVIDED: &str = "Proposal cannot have an empty WASM code"; pub type ProposalId = u32; @@ -100,7 +106,7 @@ pub struct TallyResult { finalized_on: BlockNumber, // TODO rename to 'finalized_at' (i.e. at block) } -pub trait Trait: balances::Trait + timestamp::Trait { +pub trait Trait: balances::Trait + timestamp::Trait + council::Trait { /// The overarching event type. type Event: From> + Into<::Event>; } @@ -140,7 +146,7 @@ decl_storage! { // Parameters (defaut values could be exported to config): // TODO get this value from Council or Config mudule: - CouncilMembersCount get(council_members_count) config(): u32 = 10; + CouncilorsCount get(councilors_count_old) config(): u32 = 10; // TODO rename? 'approval_quorum' -> 'approval_quorum_per' /// The percentage (up to 100) of the council participants @@ -202,10 +208,9 @@ decl_module! { let proposer = ensure_signed(origin)?; ensure!(Self::is_member(proposer.clone()), MSG_ONLY_MEMBERS_CAN_PROPOSE); ensure!(stake >= Self::minimum_stake(), MSG_STAKE_IS_TOO_SMALL); - - // TODO ensure that name is not blank - // TODO ensure that description is not blank - // TODO ensure that wasm_code is valid + ensure!(name.len() > 0, MSG_EMPTY_NAME_PROVIDED); + ensure!(description.len() > 0, MSG_EMPTY_DESCRIPTION_PROVIDED); + ensure!(wasm_code.len() > 0, MSG_EMPTY_WASM_CODE_PROVIDED); // Lock proposer's stake: >::reserve(&proposer, stake) @@ -227,9 +232,13 @@ decl_module! { >::insert(proposal_id, new_proposal); >::mutate(|ids| ids.push(proposal_id)); - Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), proposal_id)); + // TODO Make an auto-vote Approve if proposer is a councilor + // if Self::is_councilor(proposer) { + // Self::vote_on_proposal(); + // } + Ok(()) } @@ -244,7 +253,7 @@ decl_module! { ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); - // TODO fix bug? + // TODO fix bug? or remove this check, such as councilors can create proposals ensure!(voter != proposal.proposer, MSG_CANNOT_VOTE_ON_OWN_PROPOSAL); ensure!(proposal.status == Pending, MSG_PROPOSAL_FINALIZED); @@ -324,8 +333,7 @@ impl Module { } pub fn is_councilor(sender: T::AccountId) -> bool { - // TODO This method should be implemented in Council module. - true + >::is_councilor(sender) } pub fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { @@ -343,11 +351,15 @@ impl Module { Ok(()) } + + fn councilors_count() -> u32 { + >::council().unwrap_or(vec![]).len() as u32 + } /// Get the voters for the current proposal. pub fn tally(/* proposal_id: ProposalId */) -> Result { - let councilors: u32 = Self::council_members_count(); + let councilors: u32 = Self::councilors_count(); let quorum: u32 = (Self::approval_quorum() * councilors) / 100; for &proposal_id in Self::pending_proposal_ids().iter() { @@ -414,8 +426,7 @@ impl Module { let other_pendings: Vec = all_pendings .into_iter() .filter(|&id| id != proposal_id) - .collect() - ; + .collect(); let not_found_in_pendings = other_pendings.len() == all_len; if not_found_in_pendings { @@ -465,15 +476,29 @@ impl Module { /// Approve a proposal. The staked deposit will be returned. fn _approve_proposal(proposal_id: ProposalId) -> Result { let proposal = Self::proposal(proposal_id); + let wasm_code = proposal.wasm_code; // Return staked deposit to proposer: let _ = >::unreserve(&proposal.proposer, proposal.stake); + + + // TODO fix: this doesn't update storage in tests :( + // println!("> before storage::unhashed::get_raw\n{:?}", + // storage::unhashed::get_raw(well_known_keys::CODE)); + + // println!("wasm code: {:?}", wasm_code.clone()); + // Update wasm code of node's runtime: - >::set_code(proposal.wasm_code.clone())?; + storage::unhashed::put_raw(well_known_keys::CODE, &wasm_code.clone()); + + // println!("< AFTER storage::unhashed::get_raw\n{:?}", + // storage::unhashed::get_raw(well_known_keys::CODE)); + + // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 - let wasm_hash = T::Hashing::hash(&proposal.wasm_code); + let wasm_hash = T::Hashing::hash(&wasm_code); Self::deposit_event(RawEvent::RuntimeUpdated(proposal_id, wasm_hash)); Ok(()) @@ -493,6 +518,7 @@ mod tests { traits::{BlakeTwo256, OnFinalise, IdentityLookup}, testing::{Digest, DigestItem, Header, UintAuthorityId} }; + use system::{EventRecord, Phase}; impl_outer_origin! { pub enum Origin for Test {} @@ -537,14 +563,22 @@ mod tests { type OnTimestampSet = (); } + impl council::Trait for Test { + type Event = (); + } + impl Trait for Test { type Event = (); } type System = system::Module; type Balances = balances::Module; + type Consensus = consensus::Module; type Proposals = Module; + // Initial balance of proposer 1. + const INITIAL_BALANCE: u64 = (MIN_STAKE as f64 * 2.5) as u64; + const COUNCILOR1: u64 = 1; const COUNCILOR2: u64 = 2; const COUNCILOR3: u64 = 3; @@ -565,8 +599,15 @@ mod tests { COUNCILOR5 ]; - // Initial balance of proposer 1. - const INITIAL_BALANCE: u64 = (MIN_STAKE as f64 * 2.5) as u64; + // TODO Figure out how to test Events in test... (low priority) + // mod proposals { + // pub use ::Event; + // } + // impl_outer_event!{ + // pub enum TestEvent for Test { + // balances,system,proposals, + // } + // } // This function basically just builds a genesis storage key/value store according to // our desired mockup. @@ -575,9 +616,21 @@ mod tests { // We use default for brevity, but you can configure as desired if needed. t.extend(balances::GenesisConfig::::default().build_storage().unwrap().0); + let council_mock: council::Council = + ALL_COUNCILORS.iter().map(|&c| council::Seat { + member: c, + stake: 0u64, + backers: vec![], + }).collect(); + + t.extend(council::GenesisConfig::{ + council: council_mock, + term_ends: 0 + }.build_storage().unwrap().0); + // Here we can override defaults: t.extend(GenesisConfig::{ - council_members_count: ALL_COUNCILORS.len() as u32, + councilors_count_old: ALL_COUNCILORS.len() as u32, approval_quorum: APPROVAL_QUORUM, minimum_stake: MIN_STAKE, cancellation_fee: CANCELLATION_FEE, @@ -620,6 +673,18 @@ mod tests { ) } + fn get_runtime_code() -> Option> { + storage::unhashed::get_raw(well_known_keys::CODE) + } + + macro_rules! assert_runtime_code_empty { + () => { assert_eq!(get_runtime_code(), Some(vec![])) } + } + + macro_rules! assert_runtime_code { + ($code:expr) => { assert_eq!(get_runtime_code(), Some($code)) } + } + #[test] fn check_default_values() { with_externalities(&mut new_test_ext(), || { @@ -666,7 +731,6 @@ mod tests { fn not_member_cannot_create_proposal() { with_externalities(&mut new_test_ext(), || { // TODO write test - }); } @@ -689,25 +753,44 @@ mod tests { #[test] fn cannot_create_proposal_with_empty_name() { with_externalities(&mut new_test_ext(), || { - // TODO write test + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + assert_eq!(self::_create_proposal( + None, None, Some(vec![]), None, None), + Err(MSG_EMPTY_NAME_PROVIDED)); }); } #[test] fn cannot_create_proposal_with_empty_description() { with_externalities(&mut new_test_ext(), || { - // TODO write test + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + assert_eq!(self::_create_proposal( + None, None, None, Some(vec![]), None), + Err(MSG_EMPTY_DESCRIPTION_PROVIDED)); }); } #[test] fn cannot_create_proposal_with_empty_wasm_code() { with_externalities(&mut new_test_ext(), || { - // TODO write test + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + assert_eq!(self::_create_proposal( + None, None, None, None, Some(vec![])), + Err(MSG_EMPTY_WASM_CODE_PROVIDED)); }); } - // TODO test: councilor cannot create a proposal ? + // TODO test approve auto-vote when councilor creates a proposal + + #[test] + fn autovote_with_approve_when_councilor_creates_proposal() { + with_externalities(&mut new_test_ext(), || { + // TODO write test + }); + } // ------------------------------------------------------------------- // Cancellation @@ -836,6 +919,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); + // All councilors vote with 'Approve' on proposal: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; for &councilor in ALL_COUNCILORS.iter() { expected_votes.push((councilor, Approve)); @@ -844,9 +928,14 @@ mod tests { } assert_eq!(Proposals::votes_by_proposal(1), expected_votes); + assert_runtime_code_empty!(); + System::set_block_number(2); Proposals::on_finalise(2); + // Check that runtime code has been updated after proposal approved. + assert_runtime_code!(wasm_code()); + assert_eq!(Proposals::pending_proposal_ids().len(), 0); assert_eq!(Proposals::proposal(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { @@ -906,6 +995,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); + // All councilors vote with 'Reject' on proposal: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; for &councilor in ALL_COUNCILORS.iter() { expected_votes.push((councilor, Reject)); @@ -914,9 +1004,14 @@ mod tests { } assert_eq!(Proposals::votes_by_proposal(1), expected_votes); + assert_runtime_code_empty!(); + System::set_block_number(2); Proposals::on_finalise(2); + // Check that runtime code has NOT been updated after proposal rejected. + assert_runtime_code_empty!(); + assert_eq!(Proposals::pending_proposal_ids().len(), 0); assert_eq!(Proposals::proposal(1).status, Rejected); assert_eq!(Proposals::tally_results(1), TallyResult { @@ -947,6 +1042,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); + // All councilors vote with 'Slash' on proposal: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; for &councilor in ALL_COUNCILORS.iter() { expected_votes.push((councilor, Slash)); @@ -955,9 +1051,14 @@ mod tests { } assert_eq!(Proposals::votes_by_proposal(1), expected_votes); + assert_runtime_code_empty!(); + System::set_block_number(2); Proposals::on_finalise(2); + // Check that runtime code has NOT been updated after proposal slashed. + assert_runtime_code_empty!(); + assert_eq!(Proposals::pending_proposal_ids().len(), 0); assert_eq!(Proposals::proposal(1).status, Slashed); assert_eq!(Proposals::tally_results(1), TallyResult { @@ -974,6 +1075,14 @@ mod tests { assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + // TODO fix: event log assertion doesn't work and return empty event in every record + // assert_eq!(*System::events().last().unwrap(), + // EventRecord { + // phase: Phase::ApplyExtrinsic(0), + // event: RawEvent::ProposalStatusUpdated(1, Slashed), + // } + // ); + // TODO finsih test // runtime not updated // expect event ProposalStatusUpdated(1, Slashed) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 330c0be06e..ade943810d 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -33,8 +33,8 @@ extern crate srml_aura as aura; extern crate srml_indices as indices; extern crate substrate_consensus_aura_primitives as consensus_aura; -mod governance; -use governance::{election, council, root}; +pub mod governance; +use governance::{election, council, root, proposals}; use rstd::prelude::*; #[cfg(feature = "std")] @@ -63,8 +63,6 @@ pub use runtime_primitives::{Permill, Perbill}; pub use timestamp::BlockPeriod; pub use srml_support::{StorageValue, RuntimeMetadata}; -mod proposals; - /// Alias to Ed25519 pubkey that identifies an account on the chain. pub type AccountId = primitives::H256; @@ -198,7 +196,7 @@ impl sudo::Trait for Runtime { type Proposal = Call; } -impl proposals::Trait for Runtime { +impl governance::proposals::Trait for Runtime { type Event = Event; } From 7d24d8ae69cf619a9dc4a6ca0f55d96d32df7bf9 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 30 Jan 2019 18:02:12 +0200 Subject: [PATCH 052/350] Impl more test for Proposals module --- runtime/src/governance/proposals.rs | 50 +++++++++++++++++------------ 1 file changed, 29 insertions(+), 21 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 9bb8ec4f1f..46ad095cf7 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -1,6 +1,6 @@ use srml_support::{storage, StorageValue, StorageMap, dispatch::Result}; use primitives::{storage::well_known_keys}; -use runtime_primitives::traits::{As, Hash, CheckedAdd}; +use runtime_primitives::traits::{As, Hash, Zero, CheckedAdd}; use runtime_io::print; use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; @@ -253,9 +253,6 @@ decl_module! { ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); - // TODO fix bug? or remove this check, such as councilors can create proposals - ensure!(voter != proposal.proposer, MSG_CANNOT_VOTE_ON_OWN_PROPOSAL); - ensure!(proposal.status == Pending, MSG_PROPOSAL_FINALIZED); let not_expired = !Self::is_voting_period_expired(proposal.proposed_on); @@ -327,9 +324,9 @@ impl Module { >::block_number() } + // TODO This method should be moved to Membership module once it's created. pub fn is_member(sender: T::AccountId) -> bool { - // TODO This method should be implemented in Membership module. - true + !>::free_balance(sender).is_zero() } pub fn is_councilor(sender: T::AccountId) -> bool { @@ -730,7 +727,10 @@ mod tests { #[test] fn not_member_cannot_create_proposal() { with_externalities(&mut new_test_ext(), || { - // TODO write test + // In this test a proposer has an empty balance + // thus he is not considered as a member. + assert_eq!(self::_create_default_proposal(), + Err(MSG_ONLY_MEMBERS_CAN_PROPOSE)); }); } @@ -783,8 +783,6 @@ mod tests { }); } - // TODO test approve auto-vote when councilor creates a proposal - #[test] fn autovote_with_approve_when_councilor_creates_proposal() { with_externalities(&mut new_test_ext(), || { @@ -842,12 +840,11 @@ mod tests { fn not_owner_cannot_cancel_proposal() { with_externalities(&mut new_test_ext(), || { Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - - // TODO check that account is member first: - // assert_eq!(self::_create_proposal( - // Some(NOT_MEMBER), None, None, None, None), - // Err(MSG_ONLY_MEMBERS_CAN_PROPOSE)); + Balances::set_free_balance(&PROPOSER2, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE * 2); + assert_ok!(self::_create_default_proposal()); + assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), + Err(MSG_YOU_DONT_OWN_THIS_PROPOSAL)); }); } @@ -893,18 +890,29 @@ mod tests { Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); + assert_eq!(Proposals::vote_on_proposal( + Origin::signed(NOT_COUNCILOR), 1, Approve), + Err(MSG_ONLY_COUNCILORS_CAN_VOTE)); + }); + } - // TODO mock is_councilor == false for this place: - // assert_eq!(Proposals::vote_on_proposal( - // Origin::signed(NOT_COUNCILOR), 1, Approve), - // Err(MSG_ONLY_COUNCILORS_CAN_VOTE)); + #[test] + fn councilor_cannot_vote_on_proposal_if_it_has_been_cancelled() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + assert_ok!(self::_create_default_proposal()); + assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); + assert_eq!(Proposals::vote_on_proposal( + Origin::signed(COUNCILOR1), 1, Approve), + Err(MSG_PROPOSAL_FINALIZED)); }); } #[test] - fn councilor_cannot_vote_on_proposal_if_its_not_pending() { + fn councilor_cannot_vote_on_proposal_if_it_has_been_filalized() { with_externalities(&mut new_test_ext(), || { - // TODO write test + // TODO write test: Create proposal, Approve it, Try to vote. }); } From 4a590b3d8f0a0414c4d14f55d2d8e259ea7497c6 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 31 Jan 2019 12:41:27 +0200 Subject: [PATCH 053/350] Add more tests for proposals. One test left --- runtime/src/governance/proposals.rs | 177 ++++++++++++++++++++-------- 1 file changed, 131 insertions(+), 46 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 46ad095cf7..a0a904bf2c 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -145,9 +145,6 @@ decl_storage! { // Parameters (defaut values could be exported to config): - // TODO get this value from Council or Config mudule: - CouncilorsCount get(councilors_count_old) config(): u32 = 10; - // TODO rename? 'approval_quorum' -> 'approval_quorum_per' /// The percentage (up to 100) of the council participants /// which must vote affirmatively in order for it to pass. @@ -300,15 +297,6 @@ decl_module! { Ok(()) } - // fn update_runtime(origin, proposal_id: ProposalId, wasm_code: Vec) -> Result { - // ensure!(>::exists(proposal_id), "This proposal does not exist"); - // let proposal = Self::proposal(proposal_id); - - // ensure!(proposal.status == Approved, "Proposal is not approved"); - - // Self::_update_runtime(proposal_id)? - // } - // Called on every block fn on_finalise(n: T::BlockNumber) { if let Err(e) = Self::end_block(n) { @@ -333,6 +321,10 @@ impl Module { >::is_councilor(sender) } + fn councilors_count() -> u32 { + >::council().unwrap_or(vec![]).len() as u32 + } + pub fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { Self::current_block() > proposed_on + Self::voting_period() } @@ -348,16 +340,16 @@ impl Module { Ok(()) } - - fn councilors_count() -> u32 { - >::council().unwrap_or(vec![]).len() as u32 + + pub fn approval_quorum_seats() -> u32 { + (Self::approval_quorum() * Self::councilors_count()) / 100 } /// Get the voters for the current proposal. pub fn tally(/* proposal_id: ProposalId */) -> Result { let councilors: u32 = Self::councilors_count(); - let quorum: u32 = (Self::approval_quorum() * councilors) / 100; + let quorum: u32 = Self::approval_quorum_seats(); for &proposal_id in Self::pending_proposal_ids().iter() { let proposal = Self::proposal(proposal_id); @@ -585,7 +577,6 @@ mod tests { const PROPOSER1: u64 = 11; const PROPOSER2: u64 = 12; - const NOT_MEMBER: u64 = 21; const NOT_COUNCILOR: u64 = 22; const ALL_COUNCILORS: [u64; 5] = [ @@ -627,7 +618,6 @@ mod tests { // Here we can override defaults: t.extend(GenesisConfig::{ - councilors_count_old: ALL_COUNCILORS.len() as u32, approval_quorum: APPROVAL_QUORUM, minimum_stake: MIN_STAKE, cancellation_fee: CANCELLATION_FEE, @@ -720,7 +710,7 @@ mod tests { assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); assert_eq!(Balances::reserved_balance(PROPOSER1), MIN_STAKE); - // TODO test event ProposalCreated(AccountId, ProposalId) + // TODO expect event ProposalCreated(AccountId, ProposalId) }); } @@ -783,13 +773,6 @@ mod tests { }); } - #[test] - fn autovote_with_approve_when_councilor_creates_proposal() { - with_externalities(&mut new_test_ext(), || { - // TODO write test - }); - } - // ------------------------------------------------------------------- // Cancellation @@ -808,8 +791,7 @@ mod tests { assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - CANCELLATION_FEE); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - // TODO write test - // TODO test event ProposalCanceled(AccountId, ProposalId) + // TODO expect event ProposalCancelled(AccountId, ProposalId) }); } @@ -865,7 +847,7 @@ mod tests { assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); - // expect event Voted(AccountId, ProposalId, VoteKind) + // TODO expect event Voted(AccountId, ProposalId, VoteKind) }); } @@ -884,6 +866,22 @@ mod tests { }); } + #[test] + fn autovote_with_approve_when_councilor_creates_proposal() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&COUNCILOR1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + assert_ok!(self::_create_proposal( + Some(COUNCILOR1), None, None, None, None + )); + + // Check that a vote has been sent automatically, + // such as the proposer is a councilor: + assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); + assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); + }); + } + #[test] fn not_councilor_cannot_vote_on_proposal() { with_externalities(&mut new_test_ext(), || { @@ -910,9 +908,32 @@ mod tests { } #[test] - fn councilor_cannot_vote_on_proposal_if_it_has_been_filalized() { + fn councilor_cannot_vote_on_proposal_if_tally_has_been_finalized() { with_externalities(&mut new_test_ext(), || { - // TODO write test: Create proposal, Approve it, Try to vote. + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // All councilors vote with 'Approve' on proposal: + let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; + for &councilor in ALL_COUNCILORS.iter() { + expected_votes.push((councilor, Approve)); + assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Approve)); + assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Approve); + } + assert_eq!(Proposals::votes_by_proposal(1), expected_votes); + + System::set_block_number(2); + Proposals::on_finalise(2); + + assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert_eq!(Proposals::proposal(1).status, Approved); + + // Try to vote on finalized proposal: + assert_eq!(Proposals::vote_on_proposal( + Origin::signed(COUNCILOR1), 1, Reject), + Err(MSG_PROPOSAL_FINALIZED)); }); } @@ -942,7 +963,8 @@ mod tests { Proposals::on_finalise(2); // Check that runtime code has been updated after proposal approved. - assert_runtime_code!(wasm_code()); + // TODO Uncomment next line when Gavin help w/ storate updates in test: + // assert_runtime_code!(wasm_code()); assert_eq!(Proposals::pending_proposal_ids().len(), 0); assert_eq!(Proposals::proposal(1).status, Approved); @@ -960,22 +982,90 @@ mod tests { assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - // TODO finish test: - // runtime updated - // expect event ProposalStatusUpdated(1, Approved) + // TODO expect event ProposalStatusUpdated(1, Approved) }); } #[test] - fn approved_proposal_when_quorum_reached() { + fn approve_proposal_when_quorum_reached() { with_externalities(&mut new_test_ext(), || { - // TODO write test - // runtime updated - // proposal's status updated to Approved + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // Quorum of councilors vote with 'Approve' on proposal: + let approvals = Proposals::approval_quorum_seats(); + for i in 0..approvals as usize { + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(ALL_COUNCILORS[i]), 1, Approve)); + } + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); + + assert_runtime_code_empty!(); + + System::set_block_number(2); + Proposals::on_finalise(2); + + // Check that runtime code has been updated after proposal approved. + // TODO Uncomment next line when Gavin help w/ storate updates in test: + // assert_runtime_code!(wasm_code()); + + assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert_eq!(Proposals::proposal(1).status, Approved); + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: approvals, + rejections: 0, + slashes: 0, + status: Approved, + finalized_on: 2 + }); + + // Check that proposer's stake has been added back to his balance: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + // expect event ProposalStatusUpdated(1, Approved) }); } + #[test] + fn dont_approve_proposal_when_quorum_not_reached_yet() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // Less than a quorum of councilors vote with 'Approve' on proposal: + let approvals = Proposals::approval_quorum_seats() - 1; + for i in 0..approvals as usize { + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(ALL_COUNCILORS[i]), 1, Approve)); + } + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); + + assert_runtime_code_empty!(); + + System::set_block_number(2); + Proposals::on_finalise(2); + + // Check that runtime code has NOT been updated: + assert_runtime_code_empty!(); + + assert_eq!(Proposals::pending_proposal_ids().len(), 1); + assert_eq!(Proposals::proposal(1).status, Pending); + + // TODO assert that >::exists(1) == false + + // Proposer's stake is still reserved: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); + assert_eq!(Balances::reserved_balance(PROPOSER1), MIN_STAKE); + }); + } + #[test] fn reject_proposal_when_all_councilors_voted_but_quorum_not_reached() { with_externalities(&mut new_test_ext(), || { @@ -1036,9 +1126,7 @@ mod tests { assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - // TODO write test - // runtime not updated - // expect event ProposalStatusUpdated(1, Rejected) + // TODO expect event ProposalStatusUpdated(1, Rejected) }); } @@ -1083,6 +1171,7 @@ mod tests { assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + // TODO expect event ProposalStatusUpdated(1, Slashed) // TODO fix: event log assertion doesn't work and return empty event in every record // assert_eq!(*System::events().last().unwrap(), // EventRecord { @@ -1090,10 +1179,6 @@ mod tests { // event: RawEvent::ProposalStatusUpdated(1, Slashed), // } // ); - - // TODO finsih test - // runtime not updated - // expect event ProposalStatusUpdated(1, Slashed) }); } } \ No newline at end of file From b0e10c86f5dc7c7f983ae3e4071bd7b7164b52e7 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 31 Jan 2019 14:04:01 +0200 Subject: [PATCH 054/350] Auto-vote Approve if proposer is a councilor + more tests --- runtime/src/governance/proposals.rs | 181 ++++++++++++++++++++-------- 1 file changed, 132 insertions(+), 49 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index a0a904bf2c..bc549350f8 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -231,10 +231,10 @@ decl_module! { >::mutate(|ids| ids.push(proposal_id)); Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), proposal_id)); - // TODO Make an auto-vote Approve if proposer is a councilor - // if Self::is_councilor(proposer) { - // Self::vote_on_proposal(); - // } + // Auto-vote with Approve if proposer is a councilor: + if Self::is_councilor(proposer.clone()) { + Self::_process_vote(proposer, proposal_id, Approve)?; + } Ok(()) } @@ -258,17 +258,7 @@ decl_module! { let did_not_vote_before = !>::exists((voter.clone(), proposal_id)); ensure!(did_not_vote_before, MSG_YOU_ALREADY_VOTED); - // Append a new vote to other votes on this proposal: - let new_vote = (voter.clone(), vote.clone()); - if >::exists(proposal_id) { - >::mutate(proposal_id, |votes| votes.push(new_vote)); - } else { - >::insert(proposal_id, vec![new_vote]); - } - >::insert((voter.clone(), proposal_id), &vote); - - Self::deposit_event(RawEvent::Voted(voter, proposal_id, vote)); - + Self::_process_vote(voter, proposal_id, vote)?; Ok(()) } @@ -308,16 +298,16 @@ decl_module! { impl Module { - pub fn current_block() -> T::BlockNumber { + fn current_block() -> T::BlockNumber { >::block_number() } // TODO This method should be moved to Membership module once it's created. - pub fn is_member(sender: T::AccountId) -> bool { + fn is_member(sender: T::AccountId) -> bool { !>::free_balance(sender).is_zero() } - pub fn is_councilor(sender: T::AccountId) -> bool { + fn is_councilor(sender: T::AccountId) -> bool { >::is_councilor(sender) } @@ -325,8 +315,26 @@ impl Module { >::council().unwrap_or(vec![]).len() as u32 } - pub fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { - Self::current_block() > proposed_on + Self::voting_period() + fn approval_quorum_seats() -> u32 { + (Self::approval_quorum() * Self::councilors_count()) / 100 + } + + fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { + Self::current_block() >= proposed_on + Self::voting_period() + } + + fn _process_vote(voter: T::AccountId, proposal_id: ProposalId, vote: VoteKind) -> Result { + let new_vote = (voter.clone(), vote.clone()); + if >::exists(proposal_id) { + // Append a new vote to other votes on this proposal: + >::mutate(proposal_id, |votes| votes.push(new_vote)); + } else { + // This is the first vote on this proposal: + >::insert(proposal_id, vec![new_vote]); + } + >::insert((voter.clone(), proposal_id), &vote); + Self::deposit_event(RawEvent::Voted(voter, proposal_id, vote)); + Ok(()) } fn end_block(now: T::BlockNumber) -> Result { @@ -341,10 +349,6 @@ impl Module { Ok(()) } - pub fn approval_quorum_seats() -> u32 { - (Self::approval_quorum() * Self::councilors_count()) / 100 - } - /// Get the voters for the current proposal. pub fn tally(/* proposal_id: ProposalId */) -> Result { @@ -565,6 +569,8 @@ mod tests { type Consensus = consensus::Module; type Proposals = Module; + const VOTING_PERIOD_MOCK: u64 = 10; + // Initial balance of proposer 1. const INITIAL_BALANCE: u64 = (MIN_STAKE as f64 * 2.5) as u64; @@ -622,7 +628,7 @@ mod tests { minimum_stake: MIN_STAKE, cancellation_fee: CANCELLATION_FEE, rejection_fee: REJECTION_FEE, - voting_period: 10 + voting_period: VOTING_PERIOD_MOCK }.build_storage().unwrap().0); t.into() @@ -680,7 +686,7 @@ mod tests { assert_eq!(Proposals::cancellation_fee(), CANCELLATION_FEE); assert_eq!(Proposals::rejection_fee(), REJECTION_FEE); assert_eq!(Proposals::proposal_count(), 0); - assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert!(Proposals::pending_proposal_ids().is_empty()); }); } @@ -785,7 +791,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); assert_eq!(Proposals::proposal(1).status, Cancelled); - assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert!(Proposals::pending_proposal_ids().is_empty()); // Check that proposer's balance reduced by cancellation fee and other part of his stake returned to his balance: assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - CANCELLATION_FEE); @@ -927,7 +933,7 @@ mod tests { System::set_block_number(2); Proposals::on_finalise(2); - assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); // Try to vote on finalized proposal: @@ -948,7 +954,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); - // All councilors vote with 'Approve' on proposal: + // All councilors approved: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; for &councilor in ALL_COUNCILORS.iter() { expected_votes.push((councilor, Approve)); @@ -966,7 +972,7 @@ mod tests { // TODO Uncomment next line when Gavin help w/ storate updates in test: // assert_runtime_code!(wasm_code()); - assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -994,7 +1000,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); - // Quorum of councilors vote with 'Approve' on proposal: + // Quorum of councilors approved: let approvals = Proposals::approval_quorum_seats(); for i in 0..approvals as usize { assert_ok!(Proposals::vote_on_proposal( @@ -1011,7 +1017,7 @@ mod tests { // TODO Uncomment next line when Gavin help w/ storate updates in test: // assert_runtime_code!(wasm_code()); - assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1039,14 +1045,14 @@ mod tests { assert_ok!(self::_create_default_proposal()); - // Less than a quorum of councilors vote with 'Approve' on proposal: + // Less than a quorum of councilors approved: let approvals = Proposals::approval_quorum_seats() - 1; for i in 0..approvals as usize { assert_ok!(Proposals::vote_on_proposal( Origin::signed(ALL_COUNCILORS[i]), 1, Approve)); } assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - + assert_runtime_code_empty!(); System::set_block_number(2); @@ -1057,8 +1063,9 @@ mod tests { assert_eq!(Proposals::pending_proposal_ids().len(), 1); assert_eq!(Proposals::proposal(1).status, Pending); - - // TODO assert that >::exists(1) == false + + // There should be NO tally results for this proposal: + assert!(!>::exists(1)); // Proposer's stake is still reserved: assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); @@ -1067,21 +1074,97 @@ mod tests { } #[test] - fn reject_proposal_when_all_councilors_voted_but_quorum_not_reached() { + fn reject_proposal_when_all_councilors_voted_and_quorum_not_reached() { with_externalities(&mut new_test_ext(), || { - // TODO write test - // proposer's balance reduced by rejection_fee - // proposal's status updated to Rejected - // expect event ProposalStatusUpdated(1, Rejected) + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // Less than a quorum of councilors approved, while others slashed: + let councilors = Proposals::councilors_count(); + let approvals = Proposals::approval_quorum_seats() - 1; + let slashes = councilors - approvals; + for i in 0..councilors as usize { + let vote = if (i as u32) < approvals { Approve } else { Slash }; + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(ALL_COUNCILORS[i]), 1, vote)); + } + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, councilors); + + assert_runtime_code_empty!(); + + System::set_block_number(2); + Proposals::on_finalise(2); + + // Check that runtime code has NOT been updated after proposal slashed. + assert_runtime_code_empty!(); + + assert!(Proposals::pending_proposal_ids().is_empty()); + assert_eq!(Proposals::proposal(1).status, Rejected); + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: approvals, + rejections: 0, + slashes: slashes, + status: Rejected, + finalized_on: 2 + }); + + // Check that proposer's balance reduced by burnt stake: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + + // TODO expect event ProposalStatusUpdated(1, Rejected) }); } + // In this case 'reject' means that proposal will be marked as 'Expired' + // and it will be processed in the same way as if it would be rejected. #[test] - fn reject_proposal_when_voting_period_expired_and_quorum_not_reached() { + fn reject_expired_proposal_when_not_all_councilors_voted_and_quorum_not_reached() { with_externalities(&mut new_test_ext(), || { - // TODO write test - // proposal's status updated to Rejected - // expect event ProposalStatusUpdated(1, Rejected) + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // Less than a quorum of councilors approved: + let approvals = Proposals::approval_quorum_seats() - 1; + for i in 0..approvals as usize { + let vote = if (i as u32) < approvals { Approve } else { Slash }; + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(ALL_COUNCILORS[i]), 1, vote)); + } + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); + + assert_runtime_code_empty!(); + + let expiration_block = System::block_number() + Proposals::voting_period(); + System::set_block_number(expiration_block); + Proposals::on_finalise(expiration_block); + + // Check that runtime code has NOT been updated after proposal slashed. + assert_runtime_code_empty!(); + + assert!(Proposals::pending_proposal_ids().is_empty()); + assert_eq!(Proposals::proposal(1).status, Expired); + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: approvals, + rejections: 0, + slashes: 0, + status: Expired, + finalized_on: expiration_block + }); + + // Check that proposer's balance reduced by burnt stake: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + + // TODO expect event ProposalStatusUpdated(1, Rejected) }); } @@ -1093,7 +1176,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); - // All councilors vote with 'Reject' on proposal: + // All councilors rejected: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; for &councilor in ALL_COUNCILORS.iter() { expected_votes.push((councilor, Reject)); @@ -1110,7 +1193,7 @@ mod tests { // Check that runtime code has NOT been updated after proposal rejected. assert_runtime_code_empty!(); - assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Rejected); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1138,7 +1221,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); - // All councilors vote with 'Slash' on proposal: + // All councilors slashed: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; for &councilor in ALL_COUNCILORS.iter() { expected_votes.push((councilor, Slash)); @@ -1155,7 +1238,7 @@ mod tests { // Check that runtime code has NOT been updated after proposal slashed. assert_runtime_code_empty!(); - assert_eq!(Proposals::pending_proposal_ids().len(), 0); + assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Slashed); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, From 5ed3e09c7c4ae43690ebe94df2b0462f360f8825 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 31 Jan 2019 14:53:27 +0200 Subject: [PATCH 055/350] Finish tests for Proposals module --- runtime/src/governance/proposals.rs | 246 +++++++++++++++------------- 1 file changed, 130 insertions(+), 116 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index bc549350f8..9b000375f5 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -51,7 +51,7 @@ pub enum ProposalStatus { impl Default for ProposalStatus { fn default() -> Self { - ProposalStatus::Pending // TODO use another *special* value as default? + ProposalStatus::Pending } } @@ -73,7 +73,7 @@ pub enum VoteKind { impl Default for VoteKind { fn default() -> Self { - VoteKind::Abstention // TODO use another *special* value as default? + VoteKind::Abstention } } @@ -88,7 +88,7 @@ pub struct Proposal { stake: Balance, name: Vec, description: Vec, - wasm_code: Vec, // TODO store code w/ proposal or just its hash? + wasm_code: Vec, // wasm_hash: Hash, proposed_on: BlockNumber, // TODO rename to 'proposed_at' (i.e. at block) status: ProposalStatus, @@ -262,7 +262,7 @@ decl_module! { Ok(()) } - // TODO add 'reason' why a proposer wants to cancel. + // TODO add 'reason' why a proposer wants to cancel (UX + feedback)? /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. fn cancel_proposal(origin, proposal_id: ProposalId) -> Result { let proposer = ensure_signed(origin)?; @@ -339,13 +339,13 @@ impl Module { fn end_block(now: T::BlockNumber) -> Result { + // TODO refactor this method + // TODO iterate over not expired proposals and tally Self::tally()?; // TODO approve or reject a proposal - // TODO finish - Ok(()) } @@ -376,17 +376,19 @@ impl Module { } let new_status: Option = - if slashes == councilors { - Some(Slashed) - } else if approvals >= quorum { - Some(Approved) - } else if all_councilors_voted { - // All councilors voted but an approval quorum was not reached. - Some(Rejected) + if all_councilors_voted { + if approvals >= quorum { + Some(Approved) + } else if slashes == councilors { + Some(Slashed) + } else { + Some(Rejected) + } } else if is_expired { // Proposal has been expired and quorum not reached. Some(Expired) } else { + // Councilors still have time to vote on this proposal. None }; @@ -412,8 +414,6 @@ impl Module { /// Updates proposal status and removes proposal from pending ids. fn _update_proposal_status(proposal_id: ProposalId, new_status: ProposalStatus) -> Result { - // TODO check that this is an internall call? - let all_pendings = Self::pending_proposal_ids(); let all_len = all_pendings.len(); let other_pendings: Vec = all_pendings @@ -853,7 +853,7 @@ mod tests { assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); - // TODO expect event Voted(AccountId, ProposalId, VoteKind) + // TODO expect event Voted(PROPOSER1, 1, Approve) }); } @@ -993,29 +993,31 @@ mod tests { } #[test] - fn approve_proposal_when_quorum_reached() { + fn approve_proposal_when_all_councilors_voted_and_only_quorum_approved() { with_externalities(&mut new_test_ext(), || { Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); - // Quorum of councilors approved: + // Only a quorum of councilors approved, others rejected: + let councilors = Proposals::councilors_count(); let approvals = Proposals::approval_quorum_seats(); - for i in 0..approvals as usize { + let rejections = councilors - approvals; + for i in 0..councilors as usize { + let vote = if (i as u32) < approvals { Approve } else { Reject }; assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, Approve)); + Origin::signed(ALL_COUNCILORS[i]), 1, vote)); } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, councilors); assert_runtime_code_empty!(); - + System::set_block_number(2); Proposals::on_finalise(2); - // Check that runtime code has been updated after proposal approved. - // TODO Uncomment next line when Gavin help w/ storate updates in test: - // assert_runtime_code!(wasm_code()); + // Check that runtime code has NOT been updated after proposal slashed. + assert_runtime_code_empty!(); assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); @@ -1023,7 +1025,7 @@ mod tests { proposal_id: 1, abstentions: 0, approvals: approvals, - rejections: 0, + rejections: rejections, slashes: 0, status: Approved, finalized_on: 2 @@ -1033,43 +1035,7 @@ mod tests { assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - // expect event ProposalStatusUpdated(1, Approved) - }); - } - - #[test] - fn dont_approve_proposal_when_quorum_not_reached_yet() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - - assert_ok!(self::_create_default_proposal()); - - // Less than a quorum of councilors approved: - let approvals = Proposals::approval_quorum_seats() - 1; - for i in 0..approvals as usize { - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, Approve)); - } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - - assert_runtime_code_empty!(); - - System::set_block_number(2); - Proposals::on_finalise(2); - - // Check that runtime code has NOT been updated: - assert_runtime_code_empty!(); - - assert_eq!(Proposals::pending_proposal_ids().len(), 1); - assert_eq!(Proposals::proposal(1).status, Pending); - - // There should be NO tally results for this proposal: - assert!(!>::exists(1)); - - // Proposer's stake is still reserved: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); - assert_eq!(Balances::reserved_balance(PROPOSER1), MIN_STAKE); + // TODO expect event ProposalStatusUpdated(1, Approved) }); } @@ -1081,12 +1047,12 @@ mod tests { assert_ok!(self::_create_default_proposal()); - // Less than a quorum of councilors approved, while others slashed: + // Less than a quorum of councilors approved, while others abstentioned: let councilors = Proposals::councilors_count(); let approvals = Proposals::approval_quorum_seats() - 1; - let slashes = councilors - approvals; + let abstentions = councilors - approvals; for i in 0..councilors as usize { - let vote = if (i as u32) < approvals { Approve } else { Slash }; + let vote = if (i as u32) < approvals { Approve } else { Abstention }; assert_ok!(Proposals::vote_on_proposal( Origin::signed(ALL_COUNCILORS[i]), 1, vote)); } @@ -1104,10 +1070,10 @@ mod tests { assert_eq!(Proposals::proposal(1).status, Rejected); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, - abstentions: 0, + abstentions: abstentions, approvals: approvals, rejections: 0, - slashes: slashes, + slashes: 0, status: Rejected, finalized_on: 2 }); @@ -1120,54 +1086,6 @@ mod tests { }); } - // In this case 'reject' means that proposal will be marked as 'Expired' - // and it will be processed in the same way as if it would be rejected. - #[test] - fn reject_expired_proposal_when_not_all_councilors_voted_and_quorum_not_reached() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - - assert_ok!(self::_create_default_proposal()); - - // Less than a quorum of councilors approved: - let approvals = Proposals::approval_quorum_seats() - 1; - for i in 0..approvals as usize { - let vote = if (i as u32) < approvals { Approve } else { Slash }; - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, vote)); - } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - - assert_runtime_code_empty!(); - - let expiration_block = System::block_number() + Proposals::voting_period(); - System::set_block_number(expiration_block); - Proposals::on_finalise(expiration_block); - - // Check that runtime code has NOT been updated after proposal slashed. - assert_runtime_code_empty!(); - - assert!(Proposals::pending_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Expired); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: approvals, - rejections: 0, - slashes: 0, - status: Expired, - finalized_on: expiration_block - }); - - // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Rejected) - }); - } - #[test] fn reject_proposal_when_all_councilors_rejected_it() { with_externalities(&mut new_test_ext(), || { @@ -1264,4 +1182,100 @@ mod tests { // ); }); } + + // In this case a proposal will be marked as 'Expired' + // and it will be processed in the same way as if it has been rejected. + #[test] + fn expire_proposal_when_not_all_councilors_voted_even_if_quorum_reached() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // Only quorum of councilors approved, other councilors didn't vote: + let approvals = Proposals::approval_quorum_seats(); + for i in 0..approvals as usize { + let vote = if (i as u32) < approvals { Approve } else { Slash }; + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(ALL_COUNCILORS[i]), 1, vote)); + } + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); + + assert_runtime_code_empty!(); + + let expiration_block = System::block_number() + Proposals::voting_period(); + System::set_block_number(expiration_block); + Proposals::on_finalise(expiration_block); + + // Check that runtime code has NOT been updated after proposal slashed. + assert_runtime_code_empty!(); + + assert!(Proposals::pending_proposal_ids().is_empty()); + assert_eq!(Proposals::proposal(1).status, Expired); + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: approvals, + rejections: 0, + slashes: 0, + status: Expired, + finalized_on: expiration_block + }); + + // Check that proposer's balance reduced by burnt stake: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + + // TODO expect event ProposalStatusUpdated(1, Rejected) + }); + } + + // In this case a proposal will be marked as 'Expired' + // and it will be processed in the same way as if it has been rejected. + #[test] + fn expire_proposal_when_not_all_councilors_voted_and_quorum_not_reached() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // Less than a quorum of councilors approved: + let approvals = Proposals::approval_quorum_seats() - 1; + for i in 0..approvals as usize { + let vote = if (i as u32) < approvals { Approve } else { Slash }; + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(ALL_COUNCILORS[i]), 1, vote)); + } + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); + + assert_runtime_code_empty!(); + + let expiration_block = System::block_number() + Proposals::voting_period(); + System::set_block_number(expiration_block); + Proposals::on_finalise(expiration_block); + + // Check that runtime code has NOT been updated after proposal slashed. + assert_runtime_code_empty!(); + + assert!(Proposals::pending_proposal_ids().is_empty()); + assert_eq!(Proposals::proposal(1).status, Expired); + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: approvals, + rejections: 0, + slashes: 0, + status: Expired, + finalized_on: expiration_block + }); + + // Check that proposer's balance reduced by burnt stake: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + + // TODO expect event ProposalStatusUpdated(1, Rejected) + }); + } } \ No newline at end of file From a6cc64aa276df92e566716961c10d5d3cf95999c Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 31 Jan 2019 14:58:20 +0200 Subject: [PATCH 056/350] Rename: proposed_on -> proposed_at --- runtime/src/governance/proposals.rs | 34 ++++++++++++++--------------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 9b000375f5..6a19e1da92 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -21,7 +21,6 @@ const MSG_ONLY_COUNCILORS_CAN_VOTE: &str = "Only councilors can vote on proposal const MSG_PROPOSAL_NOT_FOUND: &str = "This proposal does not exist"; const MSG_PROPOSAL_EXPIRED: &str = "Voting period is expired for this proposal"; const MSG_PROPOSAL_FINALIZED: &str = "Proposal is finalized already"; -const MSG_CANNOT_VOTE_ON_OWN_PROPOSAL: &str = "You cannot vote on your own proposals"; const MSG_YOU_ALREADY_VOTED: &str = "You have already voted on this proposal"; const MSG_YOU_DONT_OWN_THIS_PROPOSAL: &str = "You do not own this proposal"; const MSG_PROPOSAL_STATUS_ALREADY_UPDATED: &str = "Proposal status has been updated already"; @@ -90,7 +89,7 @@ pub struct Proposal { description: Vec, wasm_code: Vec, // wasm_hash: Hash, - proposed_on: BlockNumber, // TODO rename to 'proposed_at' (i.e. at block) + proposed_at: BlockNumber, status: ProposalStatus, } @@ -103,7 +102,7 @@ pub struct TallyResult { rejections: u32, slashes: u32, status: ProposalStatus, - finalized_on: BlockNumber, // TODO rename to 'finalized_at' (i.e. at block) + finalized_at: BlockNumber, } pub trait Trait: balances::Trait + timestamp::Trait + council::Trait { @@ -223,7 +222,7 @@ decl_module! { name, description, wasm_code, - proposed_on: Self::current_block(), + proposed_at: Self::current_block(), status: Pending }; @@ -252,7 +251,7 @@ decl_module! { ensure!(proposal.status == Pending, MSG_PROPOSAL_FINALIZED); - let not_expired = !Self::is_voting_period_expired(proposal.proposed_on); + let not_expired = !Self::is_voting_period_expired(proposal.proposed_at); ensure!(not_expired, MSG_PROPOSAL_EXPIRED); let did_not_vote_before = !>::exists((voter.clone(), proposal_id)); @@ -319,8 +318,8 @@ impl Module { (Self::approval_quorum() * Self::councilors_count()) / 100 } - fn is_voting_period_expired(proposed_on: T::BlockNumber) -> bool { - Self::current_block() >= proposed_on + Self::voting_period() + fn is_voting_period_expired(proposed_at: T::BlockNumber) -> bool { + Self::current_block() >= proposed_at + Self::voting_period() } fn _process_vote(voter: T::AccountId, proposal_id: ProposalId, vote: VoteKind) -> Result { @@ -357,7 +356,7 @@ impl Module { for &proposal_id in Self::pending_proposal_ids().iter() { let proposal = Self::proposal(proposal_id); - let is_expired = Self::is_voting_period_expired(proposal.proposed_on); + let is_expired = Self::is_voting_period_expired(proposal.proposed_at); let votes = Self::votes_by_proposal(proposal_id); let all_councilors_voted = votes.len() as u32 == councilors; @@ -402,7 +401,7 @@ impl Module { rejections, slashes, status, - finalized_on: Self::current_block(), + finalized_at: Self::current_block(), }; >::insert(proposal_id, &tally_result); Self::deposit_event(RawEvent::TallyFinalized(tally_result)); @@ -566,7 +565,6 @@ mod tests { type System = system::Module; type Balances = balances::Module; - type Consensus = consensus::Module; type Proposals = Module; const VOTING_PERIOD_MOCK: u64 = 10; @@ -707,7 +705,7 @@ mod tests { name: name(), description: description(), wasm_code: wasm_code(), - proposed_on: 1, + proposed_at: 1, status: Pending }; assert_eq!(Proposals::proposal(1), expected_proposal); @@ -981,7 +979,7 @@ mod tests { rejections: 0, slashes: 0, status: Approved, - finalized_on: 2 + finalized_at: 2 }); // Check that proposer's stake has been added back to his balance: @@ -1028,7 +1026,7 @@ mod tests { rejections: rejections, slashes: 0, status: Approved, - finalized_on: 2 + finalized_at: 2 }); // Check that proposer's stake has been added back to his balance: @@ -1075,7 +1073,7 @@ mod tests { rejections: 0, slashes: 0, status: Rejected, - finalized_on: 2 + finalized_at: 2 }); // Check that proposer's balance reduced by burnt stake: @@ -1120,7 +1118,7 @@ mod tests { rejections: ALL_COUNCILORS.len() as u32, slashes: 0, status: Rejected, - finalized_on: 2 + finalized_at: 2 }); // Check that proposer's balance reduced by burnt stake: @@ -1165,7 +1163,7 @@ mod tests { rejections: 0, slashes: ALL_COUNCILORS.len() as u32, status: Slashed, - finalized_on: 2 + finalized_at: 2 }); // Check that proposer's balance reduced by burnt stake: @@ -1220,7 +1218,7 @@ mod tests { rejections: 0, slashes: 0, status: Expired, - finalized_on: expiration_block + finalized_at: expiration_block }); // Check that proposer's balance reduced by burnt stake: @@ -1268,7 +1266,7 @@ mod tests { rejections: 0, slashes: 0, status: Expired, - finalized_on: expiration_block + finalized_at: expiration_block }); // Check that proposer's balance reduced by burnt stake: From 9cfe88f679df0cc0c0a9852f0bf7406c60f1166a Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 1 Feb 2019 14:08:30 +0200 Subject: [PATCH 057/350] Test that proposal cannot be created if stake is greater than balance --- runtime/src/governance/proposals.rs | 148 +++++++++++++++++----------- 1 file changed, 90 insertions(+), 58 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 6a19e1da92..959cfc5752 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -15,7 +15,8 @@ const REJECTION_FEE: u64 = 10; const VOTING_PERIOD_IN_DAYS: u64 = 10; const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; -const MSG_STAKE_IS_TOO_SMALL: &str = "Stake is too small"; +const MSG_STAKE_IS_TOO_LOW: &str = "Stake is too low"; +const MSG_STAKE_IS_GREATER_THAN_BALANCE: &str = "Balance is too low to be staked"; const MSG_ONLY_MEMBERS_CAN_PROPOSE: &str = "Only members can make a proposal"; const MSG_ONLY_COUNCILORS_CAN_VOTE: &str = "Only councilors can vote on proposals"; const MSG_PROPOSAL_NOT_FOUND: &str = "This proposal does not exist"; @@ -203,14 +204,14 @@ decl_module! { let proposer = ensure_signed(origin)?; ensure!(Self::is_member(proposer.clone()), MSG_ONLY_MEMBERS_CAN_PROPOSE); - ensure!(stake >= Self::minimum_stake(), MSG_STAKE_IS_TOO_SMALL); + ensure!(stake >= Self::minimum_stake(), MSG_STAKE_IS_TOO_LOW); ensure!(name.len() > 0, MSG_EMPTY_NAME_PROVIDED); ensure!(description.len() > 0, MSG_EMPTY_DESCRIPTION_PROVIDED); ensure!(wasm_code.len() > 0, MSG_EMPTY_WASM_CODE_PROVIDED); // Lock proposer's stake: >::reserve(&proposer, stake) - .map_err(|_| "Proposer's balance is too low to be staked")?; + .map_err(|_| MSG_STAKE_IS_GREATER_THAN_BALANCE)?; let proposal_id = Self::proposal_count() + 1; >::put(proposal_id); @@ -374,9 +375,10 @@ impl Module { } } + let quorum_reached = approvals >= quorum; let new_status: Option = if all_councilors_voted { - if approvals >= quorum { + if quorum_reached { Some(Approved) } else if slashes == councilors { Some(Slashed) @@ -384,8 +386,12 @@ impl Module { Some(Rejected) } } else if is_expired { - // Proposal has been expired and quorum not reached. - Some(Expired) + if quorum_reached { + Some(Approved) + } else { + // Proposal has been expired and quorum not reached. + Some(Expired) + } } else { // Councilors still have time to vote on this proposal. None @@ -736,7 +742,23 @@ mod tests { assert_eq!(self::_create_proposal( None, Some(MIN_STAKE - 1), None, None, None), - Err(MSG_STAKE_IS_TOO_SMALL)); + Err(MSG_STAKE_IS_TOO_LOW)); + + // Check that balances remain unchanged afer a failed attempt to create a proposal: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + }); + } + + #[test] + fn cannot_create_proposal_when_stake_is_greater_than_balance() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_eq!(self::_create_proposal( + None, Some(INITIAL_BALANCE + 1), None, None, None), + Err(MSG_STAKE_IS_GREATER_THAN_BALANCE)); // Check that balances remain unchanged afer a failed attempt to create a proposal: assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); @@ -967,7 +989,8 @@ mod tests { Proposals::on_finalise(2); // Check that runtime code has been updated after proposal approved. - // TODO Uncomment next line when Gavin help w/ storate updates in test: + // TODO Uncomment next line when issue with storage updates fixed: + // https://github.com/paritytech/substrate/issues/1638 // assert_runtime_code!(wasm_code()); assert!(Proposals::pending_proposal_ids().is_empty()); @@ -1014,8 +1037,10 @@ mod tests { System::set_block_number(2); Proposals::on_finalise(2); - // Check that runtime code has NOT been updated after proposal slashed. - assert_runtime_code_empty!(); + // Check that runtime code has been updated after proposal approved. + // TODO Uncomment next line when issue with storage updates fixed: + // https://github.com/paritytech/substrate/issues/1638 + // assert_runtime_code!(wasm_code()); assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); @@ -1037,6 +1062,61 @@ mod tests { }); } + #[test] + fn approve_proposal_when_voting_period_expired_if_only_quorum_voted() { + with_externalities(&mut new_test_ext(), || { + Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); + Balances::increase_total_stake_by(INITIAL_BALANCE); + + assert_ok!(self::_create_default_proposal()); + + // Only quorum of councilors approved, other councilors didn't vote: + let approvals = Proposals::approval_quorum_seats(); + for i in 0..approvals as usize { + let vote = if (i as u32) < approvals { Approve } else { Slash }; + assert_ok!(Proposals::vote_on_proposal( + Origin::signed(ALL_COUNCILORS[i]), 1, vote)); + } + assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); + + assert_runtime_code_empty!(); + + let expiration_block = System::block_number() + Proposals::voting_period(); + System::set_block_number(2); + Proposals::on_finalise(2); + + // Check that runtime code has NOT been updated yet, + // because not all councilors voted and voting period is not expired yet. + assert_runtime_code_empty!(); + + System::set_block_number(expiration_block); + Proposals::on_finalise(expiration_block); + + // Check that runtime code has been updated after proposal approved. + // TODO Uncomment next line when issue with storage updates fixed: + // https://github.com/paritytech/substrate/issues/1638 + // assert_runtime_code!(wasm_code()); + + assert!(Proposals::pending_proposal_ids().is_empty()); + assert_eq!(Proposals::proposal(1).status, Approved); + assert_eq!(Proposals::tally_results(1), TallyResult { + proposal_id: 1, + abstentions: 0, + approvals: approvals, + rejections: 0, + slashes: 0, + status: Approved, + finalized_at: expiration_block + }); + + // Check that proposer's stake has been added back to his balance: + assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::reserved_balance(PROPOSER1), 0); + + // TODO expect event ProposalStatusUpdated(1, Approved) + }); + } + #[test] fn reject_proposal_when_all_councilors_voted_and_quorum_not_reached() { with_externalities(&mut new_test_ext(), || { @@ -1181,54 +1261,6 @@ mod tests { }); } - // In this case a proposal will be marked as 'Expired' - // and it will be processed in the same way as if it has been rejected. - #[test] - fn expire_proposal_when_not_all_councilors_voted_even_if_quorum_reached() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - - assert_ok!(self::_create_default_proposal()); - - // Only quorum of councilors approved, other councilors didn't vote: - let approvals = Proposals::approval_quorum_seats(); - for i in 0..approvals as usize { - let vote = if (i as u32) < approvals { Approve } else { Slash }; - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, vote)); - } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - - assert_runtime_code_empty!(); - - let expiration_block = System::block_number() + Proposals::voting_period(); - System::set_block_number(expiration_block); - Proposals::on_finalise(expiration_block); - - // Check that runtime code has NOT been updated after proposal slashed. - assert_runtime_code_empty!(); - - assert!(Proposals::pending_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Expired); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: approvals, - rejections: 0, - slashes: 0, - status: Expired, - finalized_at: expiration_block - }); - - // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Rejected) - }); - } - // In this case a proposal will be marked as 'Expired' // and it will be processed in the same way as if it has been rejected. #[test] From 6dea6ac03627f1729cc7281ae49e212209061d7d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 30 Jan 2019 14:22:11 +0200 Subject: [PATCH 058/350] council elected hook --- runtime/src/governance/council.rs | 9 ++- runtime/src/governance/election.rs | 102 +++++++++++++++++------------ runtime/src/governance/mod.rs | 2 + runtime/src/governance/root.rs | 46 +++++++------ runtime/src/lib.rs | 1 + 5 files changed, 97 insertions(+), 63 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index f73372899e..c8bed4d6d7 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -18,6 +18,8 @@ use {balances, system::{ensure_signed}}; use rstd::ops::Add; +use super::election; + pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; } @@ -53,6 +55,7 @@ pub type Council = Vec>; const COUNCIL_TERM: u64 = 1000; + decl_storage! { trait Store for Module as CouncilInSession { // Initial state - council is empty and resigned, which will trigger @@ -71,8 +74,8 @@ decl_event!( } ); -impl Module { - pub fn set_council(council: &BTreeMap>) { +impl election::CouncilElected>> for Module { + fn council_elected(council: &BTreeMap>) { let new_council: Vec> = council.into_iter().map(|(_, seat)| seat.clone()).collect(); >::put(new_council); @@ -80,7 +83,9 @@ impl Module { let next_term_ends = >::block_number() + T::BlockNumber::sa(COUNCIL_TERM); >::put(next_term_ends); } +} +impl Module { pub fn term_ended(n: T::BlockNumber) -> bool { n >= Self::term_ends() } diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index edb3d9e684..da66dbc36c 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,14 +1,14 @@ #![cfg_attr(not(feature = "std"), no_std)] -extern crate sr_std; -#[cfg(test)] -extern crate sr_io; -#[cfg(test)] -extern crate substrate_primitives; -extern crate sr_primitives; -#[cfg(feature = "std")] -extern crate parity_codec as codec; -extern crate srml_system as system; +// extern crate sr_std; +// #[cfg(test)] +// extern crate sr_io; +// #[cfg(test)] +// extern crate substrate_primitives; +// extern crate sr_primitives; +// #[cfg(feature = "std")] +// extern crate parity_codec as codec; +// extern crate srml_system as system; use srml_support::{StorageValue, StorageMap, dispatch::Result}; use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; @@ -23,8 +23,10 @@ use super::council; use super::sealed_vote::SealedVote; use super::root; -pub trait Trait: system::Trait + council::Trait + balances::Trait { +pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; + + type CouncilElected: CouncilElected>>; } #[derive(Clone, Copy, Encode, Decode, PartialEq, Debug)] @@ -40,6 +42,22 @@ pub enum Stage { Revealing(Period), } +// Hook for setting a new council when it is elected +pub trait CouncilElected { + fn council_elected(new_council: &Elected); +} + +impl CouncilElected for () { + fn council_elected(_new_council: &Elected) {} +} + +impl> CouncilElected for (X,) { + fn council_elected(new_council: &Elected) { + X::council_elected(new_council); + } +} + + pub const ANNOUNCING_PERIOD:u64 = 20; pub const VOTING_PERIOD:u64 = 20; pub const REVEALING_PERIOD:u64 = 20; @@ -88,25 +106,28 @@ decl_event!( } ); -impl root::TriggerElection for Module { - fn trigger_election() -> Result { +impl root::TriggerElection> for Module { + fn trigger_election(current_council: Option>) -> Result { if Self::stage().is_some() { return Err("election in progress") } - let current_block = >::block_number(); - - if >::term_ended(current_block) { - // take snapshot of council and backing stakes - Self::initialize_transferable_stakes(); - Self::move_to_announcing_stage(); - } + Self::start_election(current_council); Ok(()) } } impl Module { + fn start_election(current_council: Option>) { + //ensure!(Self::stage().is_none()); + + // take snapshot of council and backing stakes of an existing council + current_council.map(|c| Self::initialize_transferable_stakes(c)); + + Self::move_to_announcing_stage(); + } + fn new_period(length: T::BlockNumber) -> Period { let current_block = >::block_number(); Period { @@ -253,7 +274,7 @@ impl Module { Self::refund_unused_transferable_stakes(); >::kill(); - >::set_council(&new_council); + T::CouncilElected::council_elected(&new_council); Self::deposit_event(RawEvent::ElectionCompleted()); print("Election Completed"); @@ -426,28 +447,26 @@ impl Module { } /// Takes a snapshot of the stakes from the current council - fn initialize_transferable_stakes() { - if let Some(council) = >::council() { - let mut accounts_council: Vec = Vec::new(); - let mut accounts_backers: Vec = Vec::new(); - for ref seat in council.iter() { - let id = seat.member.clone(); - >::insert(&id, seat.stake); - accounts_council.push(id); - for ref backer in seat.backers.iter() { - let id = backer.member.clone(); - if !>::exists(&id) { - >::insert(&id, backer.stake); - accounts_backers.push(id); - } else { - >::mutate(&backer.member, |stake| *stake += backer.stake); - } + fn initialize_transferable_stakes(current_council: council::Council) { + let mut accounts_council: Vec = Vec::new(); + let mut accounts_backers: Vec = Vec::new(); + for ref seat in current_council.iter() { + let id = seat.member.clone(); + >::insert(&id, seat.stake); + accounts_council.push(id); + for ref backer in seat.backers.iter() { + let id = backer.member.clone(); + if !>::exists(&id) { + >::insert(&id, backer.stake); + accounts_backers.push(id); + } else { + >::mutate(&backer.member, |stake| *stake += backer.stake); } } - - >::put(accounts_council); - >::put(accounts_backers); } + + >::put(accounts_council); + >::put(accounts_backers); } fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { @@ -637,6 +656,7 @@ decl_module! { mod tests { use super::*; use ::governance::tests::*; + use governance::root::TriggerElection; #[test] fn default_paramas_should_work () { @@ -658,7 +678,7 @@ mod tests { assert!(Election::stage().is_none()); assert_eq!(Election::round(), 0); - assert!(::trigger_election().is_ok()); + assert!(::TriggerElection::trigger_election(None).is_ok()); // election round is bumped assert_eq!(Election::round(), 1); @@ -683,7 +703,7 @@ mod tests { } // Should fail to start election if already ongoing - assert!(::trigger_election().is_err()); + assert!(::TriggerElection::trigger_election(None).is_err()); }); } diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 25bd2b7dc9..32846af1e0 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -65,6 +65,8 @@ pub mod tests { } impl election::Trait for Test { type Event = (); + + type CouncilElected = (Council,); } impl proposals::Trait for Test { type Event = (); diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index c094f285b9..bfbe9c6acb 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -7,24 +7,24 @@ use governance::{council, election}; use runtime_io::print; // Hook For starting election -pub trait TriggerElection { - fn trigger_election() -> Result; +pub trait TriggerElection { + fn trigger_election(current: Option) -> Result; } -impl TriggerElection for () { - fn trigger_election() -> Result { Ok(())} +impl TriggerElection for () { + fn trigger_election(_: Option) -> Result { Ok(())} } -impl TriggerElection for (X,) { - fn trigger_election() -> Result{ - X::trigger_election() +impl> TriggerElection for (X,) { + fn trigger_election(current: Option) -> Result{ + X::trigger_election(current) } } pub trait Trait: system::Trait + council::Trait + election::Trait { type Event: From> + Into<::Event>; - type TriggerElection: TriggerElection; + type TriggerElection: TriggerElection>; } decl_storage! { @@ -41,8 +41,14 @@ decl_event!( ); impl Module { - fn private_function() -> bool { - true + fn tick (n: T::BlockNumber) { + if >::term_ended(n) && >::stage().is_none() { + let current_council = >::council(); + if T::TriggerElection::trigger_election(current_council).is_ok() { + print("Election Started"); + Self::deposit_event(RawEvent::ElectionStarted(n)); + } + } } } @@ -51,14 +57,7 @@ decl_module! { fn deposit_event() = default; fn on_finalise(n: T::BlockNumber) { - if T::TriggerElection::trigger_election().is_ok() { - print("Election Started"); - Self::deposit_event(RawEvent::ElectionStarted(n)); - } - // if >::start_election().is_ok() { - // print("Election Started"); - // Self::deposit_event(RawEvent::ElectionStarted(n)); - // } + Self::tick(n); } } } @@ -69,9 +68,16 @@ mod tests { use ::governance::tests::*; #[test] - fn can_test_private_function() { + fn auto_starting_election_should_work() { with_externalities(&mut initial_test_ext(), || { - assert!(Governance::private_function()); + System::set_block_number(1); + + assert!(Council::term_ended(1)); + assert!(Election::stage().is_none()); + + Governance::tick(1); + + assert!(Election::stage().is_some()); }); } } \ No newline at end of file diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index ade943810d..58860f3d9e 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -202,6 +202,7 @@ impl governance::proposals::Trait for Runtime { impl governance::election::Trait for Runtime { type Event = Event; + type CouncilElected = (Council,); } impl governance::council::Trait for Runtime { From 71bbf43c4112875ac4cb826b0e4ee514a1f9b1e5 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 30 Jan 2019 17:14:15 +0200 Subject: [PATCH 059/350] test: election --- runtime/src/governance/election.rs | 20 +++++--------------- runtime/src/governance/root.rs | 10 ++++++++++ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index da66dbc36c..f05e970767 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -664,24 +664,16 @@ mod tests { } #[test] - fn election_start_when_term_ends_should_work() { - - } - - #[test] - fn election_starts_only_if_not_started_should_work() { + fn start_election_should_work() { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); + + let prev_round = Election::round(); - assert!(Council::term_ended(1)); - assert!(Council::council().is_none()); - assert!(Election::stage().is_none()); - assert_eq!(Election::round(), 0); - - assert!(::TriggerElection::trigger_election(None).is_ok()); + Election::start_election(None); // election round is bumped - assert_eq!(Election::round(), 1); + assert_eq!(Election::round(), prev_round + 1); // we enter the announcing stage for a specified period let expected_period = election::Period { @@ -702,8 +694,6 @@ mod tests { assert!(false, "Election Stage was not set"); } - // Should fail to start election if already ongoing - assert!(::TriggerElection::trigger_election(None).is_err()); }); } diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index bfbe9c6acb..cab9bc62c2 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -80,4 +80,14 @@ mod tests { assert!(Election::stage().is_some()); }); } + + #[test] + fn start_election_if_election_running_should_fail() { + with_externalities(&mut initial_test_ext(), || { + assert!(::TriggerElection::trigger_election(None).is_ok()); + + // Should fail to start election if already ongoing + assert!(::TriggerElection::trigger_election(None).is_err()); + }); + } } \ No newline at end of file From a0ca9b3bbac66cbafb3c8f4e67637dd333cd66cc Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 30 Jan 2019 18:30:55 +0200 Subject: [PATCH 060/350] test: election round restarts if not enough applicants --- runtime/src/governance/election.rs | 77 ++++++++++++++++++------------ 1 file changed, 46 insertions(+), 31 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index f05e970767..79f26cf570 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -656,13 +656,27 @@ decl_module! { mod tests { use super::*; use ::governance::tests::*; - use governance::root::TriggerElection; #[test] fn default_paramas_should_work () { } + fn assert_announcing_period (expected_period: Period<::BlockNumber>) { + assert!(Election::stage().is_some(), "Election Stage was not set"); + + let election_stage = Election::stage().unwrap(); + + match election_stage { + election::Stage::Announcing(period) => { + assert_eq!(period, expected_period, "Election period not set correctly") + } + _ => { + assert!(false, "Election Stage was not correctly set to Announcing") + } + } + } + #[test] fn start_election_should_work() { with_externalities(&mut initial_test_ext(), || { @@ -676,24 +690,12 @@ mod tests { assert_eq!(Election::round(), prev_round + 1); // we enter the announcing stage for a specified period - let expected_period = election::Period { + assert_announcing_period(election::Period { starts: 1, ends: 1 + election::ANNOUNCING_PERIOD - }; - - if let Some(election_stage) = Election::stage() { - match election_stage { - election::Stage::Announcing(period) => { - assert_eq!(period, expected_period, "Election period not set correctly") - } - _ => { - assert!(false, "Election Stage was not correctly set to Announcing") - } - } - } else { - assert!(false, "Election Stage was not set"); - } + }); + // transferable stakes should have been initialized..(if council exists) }); } @@ -722,6 +724,15 @@ mod tests { } + fn create_and_add_applicant ( + id: ::AccountId, + balance: ::Balance, + stake: ::Balance + ) { + Balances::set_free_balance(&id, balance); + assert!(Election::try_add_applicant(id, stake).is_ok(), "failed to add mock account and applicant"); + } + #[test] fn moving_to_voting_without_enough_applicants_should_not_work() { with_externalities(&mut initial_test_ext(), || { @@ -729,28 +740,32 @@ mod tests { let ann_period = Election::move_to_announcing_stage(); let round = Election::round(); + // add applicants + assert_eq!(Election::applicants().len(), 0); + create_and_add_applicant(20, (election::COUNCIL_MIN_STAKE * 10) as u32, election::COUNCIL_MIN_STAKE as u32); + create_and_add_applicant(21, (election::COUNCIL_MIN_STAKE * 10) as u32, election::COUNCIL_MIN_STAKE as u32); + + let applicants = Election::applicants(); + assert_eq!(applicants.len(), 2); + + // make sure we are testing the condition that we don't have enought applicants + assert!(election::COUNCIL_SIZE > applicants.len()); + + // try to move to voting stage System::set_block_number(ann_period.ends); Election::on_announcing_ended(); // A new round should have been started assert_eq!(Election::round(), round + 1); - match Election::stage() { - Some(stage) => { - match stage { - // ensure a new announcing period was created - election::Stage::Announcing(period) => { - assert_eq!(period.ends, ann_period.ends + election::ANNOUNCING_PERIOD, "A new announcing period should have been created"); - }, - _ => { - assert!(false, "Election should have returned to announcing stage") - } - } - }, - _ => assert!(false, "Election should not have ended") - } + // A new announcing period started + assert_announcing_period(Period { + starts: ann_period.ends, + ends: ann_period.ends + election::ANNOUNCING_PERIOD, + }); - // applicants list should be the same + // applicants list should be unchanged.. + assert_eq!(Election::applicants(), applicants); }); } From a62b19504fdfad385a2d462093779c3d587d5452 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 09:48:26 +0200 Subject: [PATCH 061/350] test: initializing council and backing stakes --- runtime/src/governance/election.rs | 63 ++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 79f26cf570..0c488340fe 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -701,7 +701,70 @@ mod tests { #[test] fn init_transferable_stake_should_work () { + with_externalities(&mut initial_test_ext(), || { + let council_stakes = vec![10,11,12]; + let council_stakeholders = vec![1,2,3]; + let backing_stakeholders = vec![10,20,30,50]; + + let existing_council = vec![ + council::Seat { + member: council_stakeholders[0], + stake: council_stakes[0], + backers: vec![ + council::Backer { + member: backing_stakeholders[0], + stake: 2, + }, + council::Backer { + member: backing_stakeholders[3], + stake: 5, + }] + }, + + council::Seat { + member: council_stakeholders[1], + stake: council_stakes[1], + backers: vec![ + council::Backer { + member: backing_stakeholders[1], + stake: 4, + }, + council::Backer { + member: backing_stakeholders[3], + stake: 5, + }] + }, + + council::Seat { + member: council_stakeholders[2], + stake: council_stakes[2], + backers: vec![council::Backer { + member: backing_stakeholders[2], + stake: 6, + }] + } + ]; + + Election::initialize_transferable_stakes(existing_council); + assert_eq!(Election::council_stakeholders(), council_stakeholders); + + for (i, id) in council_stakeholders.iter().enumerate() { + assert_eq!(Election::council_stakes(id), council_stakes[i]); + } + + let computed_backers = Election::backing_stakeholders(); + assert_eq!(computed_backers.len(), backing_stakeholders.len()); + for id in backing_stakeholders { + assert!(computed_backers.iter().any(|&x| x == id)); + } + + assert_eq!(Election::backing_stakes(10), 2); + assert_eq!(Election::backing_stakes(20), 4); + assert_eq!(Election::backing_stakes(30), 6); + assert_eq!(Election::backing_stakes(50), 10); + + }); } #[test] From 7fd612aa2581e6eddf491a23c950962676e1a0d4 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 10:42:30 +0200 Subject: [PATCH 062/350] tests: election announcing --- runtime/src/governance/election.rs | 52 +++++++++++++++++++++++++----- 1 file changed, 44 insertions(+), 8 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 0c488340fe..4bffa406eb 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -498,13 +498,8 @@ impl Module { } let total_stake = applicant_stake.add(&new_stake); - - let min_stake = Stake { - refundable: T::Balance::sa(COUNCIL_MIN_STAKE), - transferred: T::Balance::zero() - }; - if min_stake > total_stake { + if T::Balance::sa(COUNCIL_MIN_STAKE) > total_stake.total() { return Err("minimum stake not met"); } @@ -769,16 +764,57 @@ mod tests { #[test] fn announcing_should_work() { + with_externalities(&mut initial_test_ext(), || { + + assert!(Election::applicants().len() == 0); + + let applicant = 20 as u64; + + // must provide stake + assert!(Election::try_add_applicant(applicant, 0).is_err()); + + // Get some balance + let starting_balance = (election::COUNCIL_MIN_STAKE * 10) as u32; + Balances::set_free_balance(&applicant, starting_balance); + + // must provide min stake + let stake = election::COUNCIL_MIN_STAKE as u32; + assert!(Election::try_add_applicant(applicant, stake - 1).is_err()); + + // with enough balance and stake, announcing should work + assert!(Election::try_add_applicant(applicant, stake).is_ok()); + assert_eq!(Election::applicants(), vec![applicant]); + + assert_eq!(Election::applicant_stakes(applicant).refundable, stake); + assert_eq!(Election::applicant_stakes(applicant).transferred, 0); + assert_eq!(Balances::free_balance(&applicant), starting_balance - stake); + }); } #[test] - fn announcing_with_transferable_council_stake_should_work() { + fn increasing_stake_when_announcing_should_work () { + with_externalities(&mut initial_test_ext(), || { + let applicant = 20 as u64; + let starting_stake = election::COUNCIL_MIN_STAKE as u32; + + >::put(vec![applicant]); + >::insert(applicant, Stake { + refundable: starting_stake, + transferred: 0, + }); + let additional_stake = 100 as u32; + Balances::set_free_balance(&applicant, additional_stake); + assert!(Election::try_add_applicant(applicant, additional_stake).is_ok()); + + assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake + additional_stake); + assert_eq!(Election::applicant_stakes(applicant).transferred, 0) + }); } #[test] - fn increasing_stake_when_announcing_should_work () { + fn announcing_with_transferable_council_stake_should_work() { } From c43c37dfe82fd567ba9b095983a3b6a4eabafcf7 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 11:53:23 +0200 Subject: [PATCH 063/350] tests: using transferable stake when announcing --- runtime/src/governance/election.rs | 37 +++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 4bffa406eb..7b9f2725d1 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -815,12 +815,42 @@ mod tests { #[test] fn announcing_with_transferable_council_stake_should_work() { + with_externalities(&mut initial_test_ext(), || { + + let applicant = 20 as u64; + + Balances::set_free_balance(&applicant, 5000); + + >::put(vec![applicant]); + >::insert(applicant, 1000); + + >::put(vec![applicant]); + let starting_stake = Stake { + refundable: election::COUNCIL_MIN_STAKE as u32, + transferred: 0, + }; + >::insert(applicant, starting_stake); + + // transferable stake covers new stake + assert!(Election::try_add_applicant(applicant, 600).is_ok()); + assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake.refundable, "refundable"); + assert_eq!(Election::applicant_stakes(applicant).transferred, 600, "trasferred"); + assert_eq!(Election::council_stakes(applicant), 400, "transferrable"); + assert_eq!(Balances::free_balance(applicant), 5000, "balance"); + + // all remaining transferable stake is consumed and free balance covers remaining stake + assert!(Election::try_add_applicant(applicant, 1000).is_ok()); + assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake.refundable + 600, "refundable"); + assert_eq!(Election::applicant_stakes(applicant).transferred, 1000, "trasferred"); + assert_eq!(Election::council_stakes(applicant), 0, "transferrable"); + assert_eq!(Balances::free_balance(applicant), 4400, "balance"); + }); } #[test] fn applicants_announcing_when_not_in_announcing_stage_should_not_work () { - + // extrinsic test } fn create_and_add_applicant ( @@ -883,6 +913,11 @@ mod tests { } + #[test] + fn votes_can_be_covered_by_transferable_stake () { + + } + #[test] fn votes_can_be_revealed_in_revealing_stage () { From 31b0c434547b16d4de9c69551f4549d6c329fb67 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 12:47:00 +0200 Subject: [PATCH 064/350] tests: setup applicants directly --- runtime/src/governance/election.rs | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 7b9f2725d1..3ea42e4cac 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -871,11 +871,15 @@ mod tests { // add applicants assert_eq!(Election::applicants().len(), 0); - create_and_add_applicant(20, (election::COUNCIL_MIN_STAKE * 10) as u32, election::COUNCIL_MIN_STAKE as u32); - create_and_add_applicant(21, (election::COUNCIL_MIN_STAKE * 10) as u32, election::COUNCIL_MIN_STAKE as u32); - - let applicants = Election::applicants(); - assert_eq!(applicants.len(), 2); + + >::put(vec![10,20,30]); + let stake = Stake { + refundable: 10, + transferred: 0, + }; + for applicant in Election::applicants() { + >::insert(applicant, stake); + } // make sure we are testing the condition that we don't have enought applicants assert!(election::COUNCIL_SIZE > applicants.len()); From caccce93f30aa3d1ab1e91aed4ec361dec46408f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 17:26:28 +0200 Subject: [PATCH 065/350] tests: picking top applicants --- runtime/src/governance/election.rs | 219 +++++++++++++++++------------ 1 file changed, 128 insertions(+), 91 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 3ea42e4cac..d4f4d2bd79 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -73,7 +73,7 @@ decl_storage! { // The election round ElectionRound get(round): u32; - // map doesn't have a clear() method so need to keep track of keys to know + // map doesn't have a clear() method so need to keep track of keys to know // what keys to delete later < if council is not modified during election // we could always re-computer the vectors BackingStakeHolders get(backing_stakeholders): Vec; @@ -86,7 +86,7 @@ decl_storage! { Commitments get(commitments): Vec; // simply a Yes vote for a candidate. Consider changing the vote payload to support - // For and Against. + // For and Against. Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; } } @@ -111,7 +111,7 @@ impl root::TriggerElection> if Self::stage().is_some() { return Err("election in progress") } - + Self::start_election(current_council); Ok(()) @@ -149,7 +149,7 @@ impl Module { let period = Self::new_period(T::BlockNumber::sa(ANNOUNCING_PERIOD)); >::put(Stage::Announcing(period)); - + let next_round = Self::bump_round(); Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); @@ -157,6 +157,22 @@ impl Module { period } + fn get_top_applicants_by_stake ( + applicants: &mut Vec, + limit: usize) -> (&[T::AccountId], &[T::AccountId]) + { + if limit >= applicants.len() { + return (&applicants[..], &[]); + } + + applicants.sort_by_key(|applicant| Self::applicant_stakes(applicant)); + + let rejected = &applicants[0 .. applicants.len() - limit]; + let top = &applicants[applicants.len() - limit..]; + + (top, rejected) + } + fn on_announcing_ended() { let mut applicants = Self::applicants(); @@ -164,36 +180,9 @@ impl Module { // Not enough candidates announced candidacy Self::move_to_announcing_stage(); } else { - // Sort Applicants by stake decending, and filter top CANDIDACY_LIMIT - // Howto ensure deterministic sorting (stable sort -> sort_by_key) - also howto deal with - // equal stake for bottom slot - order in applicants vector. - // This is highly ineffieicent (cloning ApplicationId twice) - // using functional style should help - if applicants.len() > CANDIDACY_LIMIT { - let mut sorted_applicants: Vec<(&T::AccountId, Stake)> = applicants.iter() - .map(|applicant| (applicant, Self::applicant_stakes(applicant))) - .collect(); - - sorted_applicants.sort_by_key(|&(_, stake)| stake); // ASC or DESC ? - - let bottom_applicants = &sorted_applicants[0 .. sorted_applicants.len() - CANDIDACY_LIMIT]; - let candidates = &sorted_applicants[sorted_applicants.len() - CANDIDACY_LIMIT..]; - - for (applicant, stake) in bottom_applicants.iter() { - // refund applicants - Self::return_stake_to(*applicant, *stake); - // remove applicant - >::remove(*applicant); - //applicants.remove_item(applicant); // unstable feature + let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, CANDIDACY_LIMIT); - } - - let candidates: Vec = candidates.into_iter() - .map(|(applicant,_)| (*applicant).clone()) - .collect(); - - >::put(candidates); - } + Self::drop_applicants(rejected); Self::move_to_voting_stage(); } @@ -203,7 +192,7 @@ impl Module { let period = Self::new_period(T::BlockNumber::sa(VOTING_PERIOD)); >::put(Stage::Voting(period)); - + Self::deposit_event(RawEvent::VotingStarted()); print("Voting Started"); } @@ -216,7 +205,7 @@ impl Module { let period = Self::new_period(T::BlockNumber::sa(REVEALING_PERIOD)); >::put(Stage::Revealing(period)); - + Self::deposit_event(RawEvent::RevealingStarted()); print("Revealing Started"); } @@ -260,7 +249,7 @@ impl Module { // or in future if we allow candidates to withdraw candidacy during voting or revealing stages. // Solution 1. Restart election. // Solution 2. Add to the tally candidates with zero votes. - // selection criteria: + // selection criteria: // -> priority by largest stake? // -> priority given to candidates who announced first? // -> deterministic random selection? @@ -268,14 +257,17 @@ impl Module { // unless we want to add more filtering criteria to what is considered a successful election // other than just the minimum stake for candidacy, we have a new council! - + Self::refund_voting_stakes(&votes, &new_council); - Self::refund_applicant_stakes(&new_council); + Self::drop_unelected_candidates(&new_council); + // clear applicants + Self::clear_applicants(); Self::refund_unused_transferable_stakes(); + >::kill(); T::CouncilElected::council_elected(&new_council); - + Self::deposit_event(RawEvent::ElectionCompleted()); print("Election Completed"); } @@ -303,36 +295,51 @@ impl Module { >::kill(); } - fn refund_applicant_stakes(new_council: &BTreeMap>) { - for applicant in Self::applicants().iter() { - let do_refund = match new_council.get(&applicant) { - Some(_) => false, - None => true - }; - - if do_refund { - Self::return_stake_to(&applicant, >::get(applicant)); - } - + fn clear_applicants() { + for applicant in Self::applicants() { >::remove(applicant); } - - >::kill(); + >::put(vec![]); } - fn return_stake_to(who: &T::AccountId, stake_to_return: Stake) { + fn refund_applicant(applicant: &T::AccountId) { + let stake = >::get(applicant); + // return refundable stake to account's free balance - if stake_to_return.refundable > T::Balance::zero() { - let balance = >::free_balance(who); - >::set_free_balance(who, balance + stake_to_return.refundable); + if stake.refundable > T::Balance::zero() { + let balance = >::free_balance(applicant); + >::set_free_balance(applicant, balance + stake.refundable); } // return unused transferable stake - if stake_to_return.transferred > T::Balance::zero() { - >::mutate(who, |stake| *stake += stake_to_return.transferred); + if stake.transferred > T::Balance::zero() { + >::mutate(applicant, |transferred_stake| *transferred_stake += stake.transferred); } } + fn drop_applicants (drop: &[T::AccountId]) { + let not_dropped: Vec = Self::applicants().into_iter().filter(|id| !drop.iter().any(|x| *x == *id)).collect(); + + for applicant in drop { + Self::refund_applicant(applicant); + >::remove(applicant); + } + + >::put(not_dropped.to_vec()); + } + + fn drop_unelected_candidates(new_council: &BTreeMap>) { + let applicants_to_drop: Vec = Self::applicants().into_iter() + .filter(|applicant| { + match new_council.get(&applicant) { + Some(_) => false, + None => true + } + }).collect(); + + Self::drop_applicants(&applicants_to_drop[..]); + } + fn refund_voting_stakes( sealed_votes: &Vec, T::Hash, T::AccountId>>, new_council: &BTreeMap>) @@ -351,9 +358,18 @@ impl Module { }; if do_refund { - Self::return_stake_to(&sealed_vote.voter, sealed_vote.stake); + // return refundable stake to account's free balance + if sealed_vote.stake.refundable > T::Balance::zero() { + let balance = >::free_balance(&sealed_vote.voter); + >::set_free_balance(&sealed_vote.voter, balance + sealed_vote.stake.refundable); + } + + // return unused transferable stake + if sealed_vote.stake.transferred > T::Balance::zero() { + >::mutate(&sealed_vote.voter, |stake| *stake += sealed_vote.stake.transferred); + } } - + // remove vote >::remove(sealed_vote.commitment); } @@ -402,7 +418,7 @@ impl Module { } fn filter_top_staked(tally: &mut BTreeMap>, limit: usize) { - // + // let mut seats = Vec::new(); // is iteration deterministic??? @@ -490,18 +506,18 @@ impl Module { }; new_stake.refundable = stake - new_stake.transferred; - + let balance = >::free_balance(&applicant); if new_stake.refundable > balance { return Err("not enough balance to cover stake"); } - + let total_stake = applicant_stake.add(&new_stake); if T::Balance::sa(COUNCIL_MIN_STAKE) > total_stake.total() { return Err("minimum stake not met"); - } + } if >::decrease_free_balance(&applicant, new_stake.refundable).is_err() { return Err("failed to update balance"); @@ -510,7 +526,7 @@ impl Module { if applicant_has_council_stake { >::insert(&applicant, transferable_stake - new_stake.transferred); } - + if !>::exists(&applicant) { >::mutate(|applicants| applicants.push(applicant.clone())); } @@ -541,13 +557,13 @@ impl Module { }; vote_stake.refundable = stake - vote_stake.transferred; - + let balance = >::free_balance(&voter); if vote_stake.refundable > balance { return Err("not enough balance to cover voting stake"); } - + if >::decrease_free_balance(&voter, vote_stake.refundable).is_err() { return Err("failed to update balance"); } @@ -555,7 +571,7 @@ impl Module { >::mutate(|commitments| commitments.push(commitment)); >::insert(commitment, SealedVote::new(voter.clone(), vote_stake, commitment)); - + if voter_has_backing_stake { >::insert(voter.clone(), transferable_stake - vote_stake.transferred); } @@ -571,7 +587,7 @@ impl Module { if !>::exists(&commitment) { return Err("commitment not found"); } - + let mut sealed_vote = >::get(&commitment); // only voter can reveal their own votes @@ -630,7 +646,7 @@ decl_module! { fn reveal_vote(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) -> Result { let sender = ensure_signed(origin)?; - + // Can only reveal vote during election revealing stage if let Some(stage) = Self::stage() { match stage { @@ -676,7 +692,7 @@ mod tests { fn start_election_should_work() { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); - + let prev_round = Election::round(); Election::start_election(None); @@ -765,14 +781,14 @@ mod tests { #[test] fn announcing_should_work() { with_externalities(&mut initial_test_ext(), || { - + assert!(Election::applicants().len() == 0); let applicant = 20 as u64; // must provide stake assert!(Election::try_add_applicant(applicant, 0).is_err()); - + // Get some balance let starting_balance = (election::COUNCIL_MIN_STAKE * 10) as u32; Balances::set_free_balance(&applicant, starting_balance); @@ -786,7 +802,7 @@ mod tests { assert_eq!(Election::applicants(), vec![applicant]); assert_eq!(Election::applicant_stakes(applicant).refundable, stake); - assert_eq!(Election::applicant_stakes(applicant).transferred, 0); + assert_eq!(Election::applicant_stakes(applicant).transferred, 0); assert_eq!(Balances::free_balance(&applicant), starting_balance - stake); }); @@ -797,7 +813,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { let applicant = 20 as u64; let starting_stake = election::COUNCIL_MIN_STAKE as u32; - + >::put(vec![applicant]); >::insert(applicant, Stake { refundable: starting_stake, @@ -807,7 +823,7 @@ mod tests { let additional_stake = 100 as u32; Balances::set_free_balance(&applicant, additional_stake); assert!(Election::try_add_applicant(applicant, additional_stake).is_ok()); - + assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake + additional_stake); assert_eq!(Election::applicant_stakes(applicant).transferred, 0) }); @@ -820,7 +836,7 @@ mod tests { let applicant = 20 as u64; Balances::set_free_balance(&applicant, 5000); - + >::put(vec![applicant]); >::insert(applicant, 1000); @@ -830,7 +846,7 @@ mod tests { transferred: 0, }; >::insert(applicant, starting_stake); - + // transferable stake covers new stake assert!(Election::try_add_applicant(applicant, 600).is_ok()); assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake.refundable, "refundable"); @@ -853,15 +869,6 @@ mod tests { // extrinsic test } - fn create_and_add_applicant ( - id: ::AccountId, - balance: ::Balance, - stake: ::Balance - ) { - Balances::set_free_balance(&id, balance); - assert!(Election::try_add_applicant(id, stake).is_ok(), "failed to add mock account and applicant"); - } - #[test] fn moving_to_voting_without_enough_applicants_should_not_work() { with_externalities(&mut initial_test_ext(), || { @@ -870,18 +877,19 @@ mod tests { let round = Election::round(); // add applicants - assert_eq!(Election::applicants().len(), 0); - >::put(vec![10,20,30]); let stake = Stake { refundable: 10, transferred: 0, }; - for applicant in Election::applicants() { + + let applicants = Election::applicants(); + + for applicant in applicants.iter() { >::insert(applicant, stake); } - // make sure we are testing the condition that we don't have enought applicants + // make sure we are testing the condition that we don't have enough applicants assert!(election::COUNCIL_SIZE > applicants.len()); // try to move to voting stage @@ -904,7 +912,36 @@ mod tests { #[test] fn top_applicants_become_candidates_should_work() { + with_externalities(&mut initial_test_ext(), || { + >::put(vec![10, 20, 30, 40]); + let mut applicants = Election::applicants(); + + for (i, applicant) in applicants.iter().enumerate() { + >::insert(applicant, Stake { + refundable: (i * 10) as u32, + transferred: 0, + }); + } + + let (candidates, rejected) = Election::get_top_applicants_by_stake(&mut applicants, 3); + assert_eq!(candidates.to_vec(), vec![20, 30, 40], "vec"); + assert_eq!(rejected.to_vec(), vec![10]); + >::put(vec![40, 30, 20, 10]); + let mut applicants = Election::applicants(); + + for applicant in applicants.iter() { + >::insert(applicant, Stake { + refundable: 20 as u32, + transferred: 0, + }); + } + + // stable sort is preserving order when two elements are equivalent + let (candidates, rejected) = Election::get_top_applicants_by_stake(&mut applicants, 3); + assert_eq!(candidates.to_vec(), vec![30, 20, 10]); + assert_eq!(rejected.to_vec(), vec![40]); + }); } #[test] From 1bd295c3e5b59fa0eebedb1bf2f952d24b594a30 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 17:32:14 +0200 Subject: [PATCH 066/350] candidate selection, give priority to early applicants if stakes are equal --- runtime/src/governance/election.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d4f4d2bd79..0c6b297049 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -528,7 +528,9 @@ impl Module { } if !>::exists(&applicant) { - >::mutate(|applicants| applicants.push(applicant.clone())); + // insert element at the begining, this gives priority to early applicants + // when its comes to selecting candidates if stakes are equal + >::mutate(|applicants| applicants.insert(0, applicant.clone())); } >::insert(applicant.clone(), total_stake); From 7b2aa2282aaf90fd2f6cb223b90021d6b55e1308 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 18:21:10 +0200 Subject: [PATCH 067/350] priority ordering in tally --- runtime/src/governance/election.rs | 39 +++++++++++++++++++----------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 0c6b297049..ab9b3fcf08 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -418,21 +418,21 @@ impl Module { } fn filter_top_staked(tally: &mut BTreeMap>, limit: usize) { - // - let mut seats = Vec::new(); - // is iteration deterministic??? - for (id, seat) in tally.iter() { - seats.push((id.clone(), seat.total_stake())); - } + // use ordering in the applicants vector (not ordering resulting from btreemap iteration) + let mut seats: Vec = Self::applicants().into_iter().filter(|id| tally.get(id).is_some()).collect(); - seats.sort_by_key(|&(_, stake)| stake); // ASC + seats.sort_by_key(|applicant| { + tally.get(&applicant) + .unwrap() // we filtered on existing keys, so this should not panic! + .total_stake() + }); // seats at bottom of list let filtered_out_seats = &seats[0 .. seats.len() - rstd::cmp::min(limit, seats.len())]; - for (id, _) in filtered_out_seats.iter() { - tally.remove(&id); + for id in filtered_out_seats { + tally.remove(id); } } @@ -866,11 +866,6 @@ mod tests { }); } - #[test] - fn applicants_announcing_when_not_in_announcing_stage_should_not_work () { - // extrinsic test - } - #[test] fn moving_to_voting_without_enough_applicants_should_not_work() { with_externalities(&mut initial_test_ext(), || { @@ -985,4 +980,20 @@ mod tests { fn council_is_set_after_revealing_should_work() { } + + // Tests Extrinsics - (Transactions) + #[test] + fn extrinsic_can_announce_at_correct_stage () { + // extrinsic test + } + + #[test] + fn extrinsic_can_vote_at_correct_stage () { + // extrinsic test + } + + #[test] + fn extrinsic_can_reveal_at_correct_stage () { + // extrinsic test + } } \ No newline at end of file From 5bd34404a8d8278428b70658ff67f1e9aedfe1cd Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 18:55:13 +0200 Subject: [PATCH 068/350] tests: refunding applicants --- runtime/src/governance/election.rs | 46 ++++++++++++++++++++ runtime/src/governance/transferable_stake.rs | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index ab9b3fcf08..01fd647123 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -422,6 +422,8 @@ impl Module { // use ordering in the applicants vector (not ordering resulting from btreemap iteration) let mut seats: Vec = Self::applicants().into_iter().filter(|id| tally.get(id).is_some()).collect(); + // TODO: order by number of votes, then number of backers + seats.sort_by_key(|applicant| { tally.get(&applicant) .unwrap() // we filtered on existing keys, so this should not panic! @@ -943,7 +945,51 @@ mod tests { #[test] fn refunding_applicant_stakes_should_work () { + with_externalities(&mut initial_test_ext(), || { + Balances::set_free_balance(&1, 1000); + Balances::set_free_balance(&2, 2000); + Balances::set_free_balance(&3, 3000); + + >::put(vec![1,2,3]); + + >::insert(1, 50); + >::insert(2, 0); + >::insert(3, 0); + + >::insert(1, Stake { + refundable: 100, + transferred: 200, + }); + + >::insert(2, Stake { + refundable: 300, + transferred: 400, + }); + >::insert(3, Stake { + refundable: 500, + transferred: 600, + }); + + Election::drop_applicants(&vec![2,3][..]); + + assert_eq!(Election::applicants(), vec![1]); + + assert_eq!(Election::applicant_stakes(1).refundable, 100); + assert_eq!(Election::applicant_stakes(1).transferred, 200); + assert_eq!(Election::council_stakes(1), 50); + assert_eq!(Balances::free_balance(&1), 1000); + + //assert_eq!(Election::applicant_stakes(2), Default::default()); + assert!(!>::exists(2)); + assert_eq!(Election::council_stakes(2), 400); + assert_eq!(Balances::free_balance(&2), 2300); + + //assert_eq!(Election::applicant_stakes(3), Default::default()); + assert!(!>::exists(3)); + assert_eq!(Election::council_stakes(3), 600); + assert_eq!(Balances::free_balance(&3), 3500); + }); } #[test] diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index 886ec46378..7361479eb5 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -113,7 +113,7 @@ mod tests { refundable: a2, transferred: b2, }; - + assert_eq!(s1, s3); let s4 = Stake { From 89e8e4e58af7b49984fd247c81dff5e36864f126 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 22:54:12 +0200 Subject: [PATCH 069/350] tests: voting commitments --- runtime/src/governance/election.rs | 77 +++++++++++++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 01fd647123..c1c52ae1f7 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -993,13 +993,88 @@ mod tests { } #[test] - fn votes_can_be_submitted_in_voting_stage () { + fn voting_should_work () { + with_externalities(&mut initial_test_ext(), || { + Balances::set_free_balance(&20, 1000); + let payload = vec![10u8]; + let commitment = ::Hashing::hash(&payload[..]); + + assert!(Election::try_add_vote(20, 100, commitment).is_ok()); + assert_eq!(Election::commitments(), vec![commitment]); + assert_eq!(Election::votes(commitment).voter, 20); + assert_eq!(Election::votes(commitment).commitment, commitment); + assert_eq!(Election::votes(commitment).stake, Stake { + refundable: 100, + transferred: 0, + }); + assert_eq!(Balances::free_balance(&20), 900); + }); } #[test] fn votes_can_be_covered_by_transferable_stake () { + with_externalities(&mut initial_test_ext(), || { + Balances::set_free_balance(&20, 1000); + + >::insert(20, 500); + let payload = vec![10u8]; + let commitment = ::Hashing::hash(&payload[..]); + + assert!(Election::try_add_vote(20, 100, commitment).is_ok()); + + assert_eq!(Election::commitments(), vec![commitment]); + assert_eq!(Election::votes(commitment).voter, 20); + assert_eq!(Election::votes(commitment).commitment, commitment); + assert_eq!(Election::votes(commitment).stake, Stake { + refundable: 0, + transferred: 100, + }); + assert_eq!(Balances::free_balance(&20), 1000); + }); + } + + #[test] + fn voting_without_enough_balance_should_not_work () { + with_externalities(&mut initial_test_ext(), || { + Balances::set_free_balance(&20, 100); + + >::insert(20, 500); + + let payload = vec![10u8]; + let commitment = ::Hashing::hash(&payload[..]); + + assert!(Election::try_add_vote(20, 1000, commitment).is_err()); + assert_eq!(Election::commitments(), vec![]); + assert!(!>::exists(commitment)); + assert_eq!(Balances::free_balance(&20), 100); + }); + } + + #[test] + fn voting_with_existing_commitment_should_not_work () { + with_externalities(&mut initial_test_ext(), || { + Balances::set_free_balance(&20, 1000); + + >::insert(20, 500); + + let payload = vec![10u8]; + let commitment = ::Hashing::hash(&payload[..]); + + assert!(Election::try_add_vote(20, 100, commitment).is_ok()); + + assert_eq!(Election::commitments(), vec![commitment]); + assert_eq!(Election::votes(commitment).voter, 20); + assert_eq!(Election::votes(commitment).commitment, commitment); + assert_eq!(Election::votes(commitment).stake, Stake { + refundable: 0, + transferred: 100, + }); + assert_eq!(Balances::free_balance(&20), 1000); + + assert!(Election::try_add_vote(30, 100, commitment).is_err()); + }); } #[test] From e6026b439d34109aacb74fed3aa8f412782ba751 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Jan 2019 23:56:44 +0200 Subject: [PATCH 070/350] tests: revealing votes --- runtime/src/governance/election.rs | 94 +++++++++++++++++++++++++++++- 1 file changed, 92 insertions(+), 2 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index c1c52ae1f7..17a425a79a 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -671,6 +671,7 @@ decl_module! { mod tests { use super::*; use ::governance::tests::*; + use parity_codec::Encode; #[test] fn default_paramas_should_work () { @@ -1077,14 +1078,103 @@ mod tests { }); } + fn make_commitment_for_candidate(candidate: ::AccountId, salt: &mut Vec) -> ::Hash { + let mut payload = candidate.encode(); + payload.append(salt); + ::Hashing::hash(&payload[..]) + } + + #[test] + fn revealing_vote_works () { + with_externalities(&mut initial_test_ext(), || { + let candidate = 20 as u64; + let salt = vec![128u8]; + let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let voter = 10 as u64; + + >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + + >::insert(&commitment, SealedVote::new(voter, Stake { + refundable: 100, transferred: 0 + }, commitment)); + + assert!(>::get(commitment).get_vote().is_none()); + assert!(Election::try_reveal_vote(voter, commitment, candidate, salt).is_ok()); + assert_eq!(>::get(commitment).get_vote().unwrap(), candidate); + }); + } + + #[test] + fn revealing_with_bad_salt_should_not_work () { + with_externalities(&mut initial_test_ext(), || { + let candidate = 20 as u64; + let salt = vec![128u8]; + let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let voter = 10 as u64; + + >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + + >::insert(&commitment, SealedVote::new(voter, Stake { + refundable: 100, transferred: 0 + }, commitment)); + + assert!(>::get(commitment).get_vote().is_none()); + assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); + assert!(>::get(commitment).get_vote().is_none()); + }); + } + #[test] - fn votes_can_be_revealed_in_revealing_stage () { + fn revealing_non_matching_commitment_should_not_work () { + with_externalities(&mut initial_test_ext(), || { + let candidate = 20 as u64; + let salt = vec![128u8]; + let commitment = make_commitment_for_candidate(100, &mut salt.clone()); + let voter = 10 as u64; + >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + + assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); + }); } #[test] - fn invalid_votes_should_not_work () { + fn revealing_for_non_candidate_should_not_work () { + with_externalities(&mut initial_test_ext(), || { + let candidate = 20 as u64; + let salt = vec![128u8]; + let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let voter = 10 as u64; + + >::insert(&commitment, SealedVote::new(voter, Stake { + refundable: 100, transferred: 0 + }, commitment)); + + assert!(>::get(commitment).get_vote().is_none()); + assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); + assert!(>::get(commitment).get_vote().is_none()); + }); + } + + #[test] + fn revealing_by_non_committer_should_not_work () { + with_externalities(&mut initial_test_ext(), || { + let candidate = 20 as u64; + let salt = vec![128u8]; + let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let voter = 10 as u64; + let not_voter = 100 as u64; + >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + + >::insert(&commitment, SealedVote::new(voter, Stake { + refundable: 100, transferred: 0 + }, commitment)); + + assert!(>::get(commitment).get_vote().is_none()); + assert!(Election::try_reveal_vote(not_voter, commitment, candidate, salt).is_err()); + assert!(>::get(commitment).get_vote().is_none()); + }); } #[test] From 15b63a9811d264a865de00f7a7f1078878cea664 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 10:45:11 +0200 Subject: [PATCH 071/350] tests: vote tallying --- runtime/src/governance/council.rs | 2 +- runtime/src/governance/election.rs | 134 +++++++++++++++++++++++++- runtime/src/governance/sealed_vote.rs | 13 ++- 3 files changed, 145 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index c8bed4d6d7..76ce11368e 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -32,7 +32,7 @@ pub struct Seat { pub backers: Vec>, } -impl Seat +impl Seat where Stake: Add + Copy, { pub fn total_stake(&self) -> Stake { diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 17a425a79a..e6f6494742 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -419,9 +419,20 @@ impl Module { fn filter_top_staked(tally: &mut BTreeMap>, limit: usize) { + if limit >= tally.len() { + return; + } + // use ordering in the applicants vector (not ordering resulting from btreemap iteration) let mut seats: Vec = Self::applicants().into_iter().filter(|id| tally.get(id).is_some()).collect(); + // ensure_eq!(seats.len(), tally.len()); + + if limit >= seats.len() { + // Tally is inconsistent with list of candidates! + return; + } + // TODO: order by number of votes, then number of backers seats.sort_by_key(|applicant| { @@ -431,7 +442,7 @@ impl Module { }); // seats at bottom of list - let filtered_out_seats = &seats[0 .. seats.len() - rstd::cmp::min(limit, seats.len())]; + let filtered_out_seats = &seats[0 .. seats.len() - limit]; for id in filtered_out_seats { tally.remove(id); @@ -1177,16 +1188,137 @@ mod tests { }); } + pub fn mock_votes (mock: Vec<(u64, u32, u64)>) -> Vec, primitives::H256, u64>> { + let commitment = make_commitment_for_candidate(1, &mut vec![0u8]); + + mock.into_iter().map(|(voter, stake, candidate)| SealedVote::new_unsealed(voter as u64, Stake { + refundable: stake as u32, transferred: 0 as u32 + }, commitment, candidate as u64)).collect() + } + + #[test] fn vote_tallying_should_work () { + with_externalities(&mut initial_test_ext(), || { + let votes = mock_votes(vec![ + // (voter, stake[refundable], candidate) + (10, 100, 100), + (10, 150, 100), + + (10, 500, 200), + (20, 200, 200), + + (30, 300, 300), + (30, 400, 300), + ]); + + let tally = Election::tally_votes(&votes); + + assert_eq!(tally.len(), 3); + + assert_eq!(tally.get(&100).unwrap().member, 100); + assert_eq!(tally.get(&100).unwrap().backers, vec![ + council::Backer { + member: 10 as u64, + stake: 100 as u32, + }, + council::Backer { + member: 10 as u64, + stake: 150 as u32, + }, + ]); + + assert_eq!(tally.get(&200).unwrap().member, 200); + assert_eq!(tally.get(&200).unwrap().backers, vec![ + council::Backer { + member: 10 as u64, + stake: 500 as u32, + }, + council::Backer { + member: 20 as u64, + stake: 200 as u32, + } + ]); + assert_eq!(tally.get(&300).unwrap().member, 300); + assert_eq!(tally.get(&300).unwrap().backers, vec![ + council::Backer { + member: 30 as u64, + stake: 300 as u32, + }, + council::Backer { + member: 30 as u64, + stake: 400 as u32, + } + ]); + }); + } + + #[test] + fn filter_top_staked_candidates_should_work () { + with_externalities(&mut initial_test_ext(), || { + // filter_top_staked depends on order of candidates + // and would panic if tally size was larger than applicants + >::put(vec![100, 200, 300]); + + { + let votes = mock_votes(vec![ + // (voter, stake[refundable], candidate) + (10, 100, 100), + (10, 150, 100), + + (10, 500, 200), + (20, 200, 200), + + (30, 300, 300), + (30, 400, 300), + ]); + + let mut tally = Election::tally_votes(&votes); + assert_eq!(tally.len(), 3); + Election::filter_top_staked(&mut tally, 3); + assert_eq!(tally.len(), 3); + } + + { + let votes = mock_votes(vec![ + // (voter, stake[refundable], candidate) + (10, 100, 100), + (10, 150, 100), + + (10, 500, 200), + (20, 200, 200), + + (30, 300, 300), + (30, 400, 300), + ]); + + let mut tally = Election::tally_votes(&votes); + assert_eq!(tally.len(), 3); + Election::filter_top_staked(&mut tally, 2); + assert_eq!(tally.len(), 2); + assert!(tally.get(&200).is_some()); + assert!(tally.get(&300).is_some()); + } + }); } + #[test] + fn drop_unelected_candidates_should_work () { + + } + + #[test] fn refunding_voting_stakes_should_work () { } + #[test] + fn refund_unused_transferable_stakes_should_work () { + + } + #[test] fn council_is_set_after_revealing_should_work() { diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index 6fb12cef02..32c408f8d6 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -4,7 +4,7 @@ use parity_codec::Encode; use srml_support::dispatch::Vec; #[derive(Clone, Copy, Encode, Decode, Default)] -pub struct SealedVote +pub struct SealedVote where Vote: Encode, Hash: PartialEq, AccountId: PartialEq { pub voter: AccountId, @@ -13,7 +13,7 @@ pub struct SealedVote vote: Option, // will be set when unsealing } -impl SealedVote +impl SealedVote where Vote: Encode, Hash: PartialEq, AccountId: PartialEq { pub fn new(voter: AccountId, stake: Stake, commitment: Hash) -> SealedVote { @@ -25,6 +25,15 @@ impl SealedVote } } + pub fn new_unsealed(voter: AccountId, stake: Stake, commitment: Hash, vote: Vote) -> SealedVote { + SealedVote { + voter, + commitment, + stake, + vote: Some(vote), + } + } + pub fn unseal(&mut self, vote: Vote, salt: &mut Vec, hasher: fn(&[u8]) -> Hash) -> Result { // only unseal once if self.was_revealed() { From 8614657df14e6b188664b6307d5b3f91ed7499ed Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 11:20:04 +0200 Subject: [PATCH 072/350] tests: dropping and refunding unelected candidates --- runtime/src/governance/election.rs | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index e6f6494742..9bd0f8297a 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1305,7 +1305,40 @@ mod tests { #[test] fn drop_unelected_candidates_should_work () { + with_externalities(&mut initial_test_ext(), || { + >::put(vec![100, 200, 300]); + + Balances::set_free_balance(&100, 1000); + + >::insert(100, Stake { + refundable: 20 as u32, + transferred: 50 as u32, + }); + + >::insert(100, 100); + + let votes = mock_votes(vec![ + // (voter, stake[refundable], candidate) + (10, 100, 100), + (20, 200, 200), + (30, 300, 300), + ]); + let mut tally = Election::tally_votes(&votes); + assert_eq!(tally.len(), 3); + Election::filter_top_staked(&mut tally, 2); + assert_eq!(tally.len(), 2); + + Election::drop_unelected_candidates(&tally); + + // applicant dropped + assert_eq!(Election::applicants(), vec![200, 300]); + assert!(!>::exists(100)); + + // and refunded + assert_eq!(Election::council_stakes(100), 150); + assert_eq!(Balances::free_balance(&100), 1020); + }); } From 3ef166869aa47e1d62f2c7b1cdb470cf96422d3f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 13:24:07 +0200 Subject: [PATCH 073/350] factor out clearing state --- runtime/src/governance/election.rs | 41 ++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 13 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 9bd0f8297a..63425385be 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -259,10 +259,13 @@ impl Module { // other than just the minimum stake for candidacy, we have a new council! Self::refund_voting_stakes(&votes, &new_council); + Self::clear_votes(); + Self::drop_unelected_candidates(&new_council); - // clear applicants Self::clear_applicants(); - Self::refund_unused_transferable_stakes(); + + Self::refund_transferable_stakes(); + Self::clear_transferable_stakes(); >::kill(); @@ -272,7 +275,7 @@ impl Module { print("Election Completed"); } - fn refund_unused_transferable_stakes() { + fn refund_transferable_stakes() { // move stakes back to account holder's free balance for stakeholder in Self::backing_stakeholders().iter() { let stake = Self::backing_stakes(stakeholder); @@ -280,9 +283,7 @@ impl Module { let balance = >::free_balance(stakeholder); >::set_free_balance(stakeholder, balance + stake); } - >::remove(stakeholder); } - >::kill(); for stakeholder in Self::council_stakeholders().iter() { let stake = Self::council_stakes(stakeholder); @@ -290,8 +291,19 @@ impl Module { let balance = >::free_balance(stakeholder); >::set_free_balance(stakeholder, balance + stake); } + } + } + + fn clear_transferable_stakes() { + for stakeholder in Self::backing_stakeholders() { + >::remove(stakeholder); + } + + for stakeholder in Self::council_stakeholders() { >::remove(stakeholder); } + + >::kill(); >::kill(); } @@ -369,13 +381,13 @@ impl Module { >::mutate(&sealed_vote.voter, |stake| *stake += sealed_vote.stake.transferred); } } - - // remove vote - >::remove(sealed_vote.commitment); } + } - // clear commitments - //>::put(Vec::new()); + fn clear_votes() { + for commitment in Self::commitments() { + >::remove(commitment); + } >::kill(); } @@ -1344,32 +1356,35 @@ mod tests { #[test] fn refunding_voting_stakes_should_work () { - + assert!(false, "not implemented"); } #[test] fn refund_unused_transferable_stakes_should_work () { - + assert!(false, "not implemented"); } #[test] fn council_is_set_after_revealing_should_work() { - + assert!(false, "not implemented"); } // Tests Extrinsics - (Transactions) #[test] fn extrinsic_can_announce_at_correct_stage () { // extrinsic test + assert!(false, "not implemented"); } #[test] fn extrinsic_can_vote_at_correct_stage () { // extrinsic test + assert!(false, "not implemented"); } #[test] fn extrinsic_can_reveal_at_correct_stage () { // extrinsic test + assert!(false, "not implemented"); } } \ No newline at end of file From afd0d690e3de238facc24c51c286be130ee24c62 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 14:03:06 +0200 Subject: [PATCH 074/350] tests: refunding voting stakes --- runtime/src/governance/election.rs | 107 +++++++++++++++++++---------- 1 file changed, 71 insertions(+), 36 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 63425385be..90dcd55977 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1200,11 +1200,11 @@ mod tests { }); } - pub fn mock_votes (mock: Vec<(u64, u32, u64)>) -> Vec, primitives::H256, u64>> { + pub fn mock_votes (mock: Vec<(u64, u32, u32, u64)>) -> Vec, primitives::H256, u64>> { let commitment = make_commitment_for_candidate(1, &mut vec![0u8]); - mock.into_iter().map(|(voter, stake, candidate)| SealedVote::new_unsealed(voter as u64, Stake { - refundable: stake as u32, transferred: 0 as u32 + mock.into_iter().map(|(voter, stake_ref, stake_tran, candidate)| SealedVote::new_unsealed(voter as u64, Stake { + refundable: stake_ref as u32, transferred: stake_tran as u32 }, commitment, candidate as u64)).collect() } @@ -1213,15 +1213,15 @@ mod tests { fn vote_tallying_should_work () { with_externalities(&mut initial_test_ext(), || { let votes = mock_votes(vec![ - // (voter, stake[refundable], candidate) - (10, 100, 100), - (10, 150, 100), + // (voter, stake[refundable], stake[transferred], candidate) + (10, 100, 0, 100), + (10, 150, 0, 100), - (10, 500, 200), - (20, 200, 200), + (10, 500, 0, 200), + (20, 200, 0, 200), - (30, 300, 300), - (30, 400, 300), + (30, 300, 0, 300), + (30, 400, 0, 300), ]); let tally = Election::tally_votes(&votes); @@ -1276,14 +1276,14 @@ mod tests { { let votes = mock_votes(vec![ // (voter, stake[refundable], candidate) - (10, 100, 100), - (10, 150, 100), + (10, 100, 0, 100), + (10, 150, 0, 100), - (10, 500, 200), - (20, 200, 200), + (10, 500, 0, 200), + (20, 200, 0, 200), - (30, 300, 300), - (30, 400, 300), + (30, 300, 0, 300), + (30, 400, 0, 300), ]); let mut tally = Election::tally_votes(&votes); @@ -1295,14 +1295,14 @@ mod tests { { let votes = mock_votes(vec![ // (voter, stake[refundable], candidate) - (10, 100, 100), - (10, 150, 100), + (10, 100, 0, 100), + (10, 150, 0, 100), - (10, 500, 200), - (20, 200, 200), + (10, 500, 0, 200), + (20, 200, 0, 200), - (30, 300, 300), - (30, 400, 300), + (30, 300, 0, 300), + (30, 400, 0, 300), ]); let mut tally = Election::tally_votes(&votes); @@ -1329,19 +1329,11 @@ mod tests { >::insert(100, 100); - let votes = mock_votes(vec![ - // (voter, stake[refundable], candidate) - (10, 100, 100), - (20, 200, 200), - (30, 300, 300), - ]); - - let mut tally = Election::tally_votes(&votes); - assert_eq!(tally.len(), 3); - Election::filter_top_staked(&mut tally, 2); - assert_eq!(tally.len(), 2); + let mut new_council: BTreeMap> = BTreeMap::new(); + new_council.insert(200 as u64, council::Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); + new_council.insert(300 as u64, council::Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); - Election::drop_unelected_candidates(&tally); + Election::drop_unelected_candidates(&new_council); // applicant dropped assert_eq!(Election::applicants(), vec![200, 300]); @@ -1356,33 +1348,76 @@ mod tests { #[test] fn refunding_voting_stakes_should_work () { - assert!(false, "not implemented"); + with_externalities(&mut initial_test_ext(), || { + // voters' balances + Balances::set_free_balance(&10, 1000); + Balances::set_free_balance(&20, 2000); + Balances::set_free_balance(&30, 3000); + + >::insert(10, 100); + >::insert(20, 200); + >::insert(30, 300); + + let votes = mock_votes(vec![ + // (voter, stake[refundable], stake[transferred], candidate) + (10, 100, 20, 100), + (20, 200, 40, 100), + (30, 300, 60, 100), + + (10, 500, 70, 200), + (20, 600, 80, 200), + (30, 700, 90, 200), + + (10, 800, 100, 300), + (20, 900, 120, 300), + (30, 1000, 140, 300), + ]); + + let mut new_council: BTreeMap> = BTreeMap::new(); + new_council.insert(200 as u64, council::Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); + new_council.insert(300 as u64, council::Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); + + Election::refund_voting_stakes(&votes, &new_council); + + assert_eq!(Balances::free_balance(&10), 1100); + assert_eq!(Balances::free_balance(&20), 2200); + assert_eq!(Balances::free_balance(&30), 3300); + + assert_eq!(Election::backing_stakes(10), 120); + assert_eq!(Election::backing_stakes(20), 240); + assert_eq!(Election::backing_stakes(30), 360); + }); } #[test] - fn refund_unused_transferable_stakes_should_work () { + #[ignore] + fn refund_transferable_stakes_should_work () { assert!(false, "not implemented"); } #[test] + #[ignore] fn council_is_set_after_revealing_should_work() { assert!(false, "not implemented"); } // Tests Extrinsics - (Transactions) #[test] + #[ignore] fn extrinsic_can_announce_at_correct_stage () { // extrinsic test assert!(false, "not implemented"); } #[test] + #[ignore] fn extrinsic_can_vote_at_correct_stage () { // extrinsic test assert!(false, "not implemented"); } #[test] + #[ignore] fn extrinsic_can_reveal_at_correct_stage () { // extrinsic test assert!(false, "not implemented"); From 3ad916bca8abbf588f6e213cfb3246af2ef7756f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 14:12:20 +0200 Subject: [PATCH 075/350] tests: refunding transferable stakes --- runtime/src/governance/election.rs | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 90dcd55977..0bc36254d9 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1390,9 +1390,29 @@ mod tests { } #[test] - #[ignore] fn refund_transferable_stakes_should_work () { - assert!(false, "not implemented"); + with_externalities(&mut initial_test_ext(), || { + >::put(vec![10,20,30]); + >::put(vec![10,20,30]); + + Balances::set_free_balance(&10, 1000); + >::insert(10, 100); + >::insert(10, 50); + + Balances::set_free_balance(&20, 2000); + >::insert(20, 200); + >::insert(20, 60); + + Balances::set_free_balance(&30, 3000); + >::insert(30, 300); + >::insert(30, 70); + + Election::refund_transferable_stakes(); + + assert_eq!(Balances::free_balance(&10), 1150); + assert_eq!(Balances::free_balance(&20), 2260); + assert_eq!(Balances::free_balance(&30), 3370); + }); } #[test] From fee5d512c2628a35259349818f3ac6768b25ae9c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 14:39:34 +0200 Subject: [PATCH 076/350] tests: setting council --- runtime/src/governance/election.rs | 16 +++++++++++++--- runtime/src/governance/mod.rs | 4 +++- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 0bc36254d9..82807c42e3 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1416,9 +1416,19 @@ mod tests { } #[test] - #[ignore] - fn council_is_set_after_revealing_should_work() { - assert!(false, "not implemented"); + fn council_elected_hook_should_work() { + with_externalities(&mut initial_test_ext(), || { + + let mut new_council: BTreeMap> = BTreeMap::new(); + new_council.insert(200 as u64, council::Seat{ member: 200 as u64, stake: 10 as u32, backers: vec![]}); + new_council.insert(300 as u64, council::Seat{ member: 300 as u64, stake: 20 as u32, backers: vec![]}); + + assert!(Council::council().is_none()); + + ::CouncilElected::council_elected(&new_council); + + assert!(Council::council().is_some()); + }); } // Tests Extrinsics - (Transactions) diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 32846af1e0..ff96d96278 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -25,7 +25,7 @@ pub mod tests { pub use self::sr_io::with_externalities; pub use self::substrate_primitives::{H256, Blake2Hasher}; pub use self::sr_primitives::{ - BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, + BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, testing::{Digest, DigestItem, Header, UintAuthorityId} }; @@ -95,6 +95,8 @@ pub mod tests { type TriggerElection = (Election,); } + // TODO add a Hook type to capture TriggerElection and CouncilElected hooks + // This function basically just builds a genesis storage key/value store according to // our desired mockup. pub fn initial_test_ext() -> sr_io::TestExternalities { From 8b20a2ad7a8823aa4eb5856da32b17ac755e084b Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 18:05:44 +0200 Subject: [PATCH 077/350] tests: simulation --- runtime/src/governance/election.rs | 64 ++++++++++++++++++++++-------- 1 file changed, 47 insertions(+), 17 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 82807c42e3..3d974c7b07 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1431,25 +1431,55 @@ mod tests { }); } - // Tests Extrinsics - (Transactions) #[test] - #[ignore] - fn extrinsic_can_announce_at_correct_stage () { - // extrinsic test - assert!(false, "not implemented"); - } + fn simulation() { + with_externalities(&mut initial_test_ext(), || { + assert!(Council::council().is_none()); + assert!(Election::stage().is_none()); - #[test] - #[ignore] - fn extrinsic_can_vote_at_correct_stage () { - // extrinsic test - assert!(false, "not implemented"); - } + for i in 1..20 { + Balances::set_free_balance(&(i as u64), 50000); + } - #[test] - #[ignore] - fn extrinsic_can_reveal_at_correct_stage () { - // extrinsic test - assert!(false, "not implemented"); + System::set_block_number(1); + Election::start_election(None); + + for i in 1..20 { + assert!(Election::announce_candidacy(Origin::signed(i), 150).is_ok()); + assert!(Election::announce_candidacy(Origin::signed(i + 1000), 150).is_err()); + } + + let n = 1 + ANNOUNCING_PERIOD; + System::set_block_number(n); + Election::tick(n); + + for i in 1..20 { + assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![40u8]), 100).is_ok()); + + assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![41u8]), 100).is_ok()); + + assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i + 1000, &mut vec![42u8]), 100).is_ok()); + } + + let n = n + VOTING_PERIOD; + System::set_block_number(n); + Election::tick(n); + + for i in 1..20 { + assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![40u8]), i, vec![40u8]).is_ok()); + //wrong salt + assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![41u8]), i, vec![]).is_err()); + //vote not for valid candidate + assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i + 1000, &mut vec![42u8]), i + 1000, vec![42u8]).is_err()); + } + + let n = n + REVEALING_PERIOD; + System::set_block_number(n); + Election::tick(n); + + assert!(Council::council().is_some()); + assert_eq!(Council::council().unwrap().len(), COUNCIL_SIZE); + assert!(Election::stage().is_none()); + }); } } \ No newline at end of file From 268e3ae21048bd8c8488a3f237bfe7dda6de5b3d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Feb 2019 18:10:03 +0200 Subject: [PATCH 078/350] tests: simulation assert elected council --- runtime/src/governance/election.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 3d974c7b07..fabb73ae3b 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1479,6 +1479,9 @@ mod tests { assert!(Council::council().is_some()); assert_eq!(Council::council().unwrap().len(), COUNCIL_SIZE); + for (i, seat) in Council::council().unwrap().iter().enumerate() { + assert_eq!(seat.member, (i + 1) as u64); + } assert!(Election::stage().is_none()); }); } From 16da10c0701d69488f978a2642ad4c7b0c606e45 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 2 Feb 2019 00:11:14 +0200 Subject: [PATCH 079/350] refactor election parameters --- runtime/src/governance/council.rs | 11 +-- runtime/src/governance/election.rs | 128 +++++++++++++++++++---------- runtime/src/governance/root.rs | 26 +++--- 3 files changed, 99 insertions(+), 66 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 76ce11368e..4d77d05428 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -1,19 +1,10 @@ #![cfg_attr(not(feature = "std"), no_std)] -extern crate sr_std; -#[cfg(test)] -extern crate sr_io; -#[cfg(test)] -extern crate substrate_primitives; -extern crate sr_primitives; -#[cfg(feature = "std")] -extern crate parity_codec as codec; -extern crate srml_system as system; use srml_support::dispatch::Vec; use rstd::collections::btree_map::BTreeMap; use srml_support::{StorageValue, dispatch::Result}; -use runtime_primitives::traits::{Hash, As}; +use runtime_primitives::traits::{As}; use {balances, system::{ensure_signed}}; use rstd::ops::Add; diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index fabb73ae3b..7e64153911 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,15 +1,5 @@ #![cfg_attr(not(feature = "std"), no_std)] -// extern crate sr_std; -// #[cfg(test)] -// extern crate sr_io; -// #[cfg(test)] -// extern crate substrate_primitives; -// extern crate sr_primitives; -// #[cfg(feature = "std")] -// extern crate parity_codec as codec; -// extern crate srml_system as system; - use srml_support::{StorageValue, StorageMap, dispatch::Result}; use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; use {balances, system::{ensure_signed}}; @@ -57,25 +47,38 @@ impl> CouncilElected for (X,) { } } +pub struct ElectionParameters { + pub announcing_period: BlockNumber, + pub voting_period: BlockNumber, + pub revealing_period: BlockNumber, + pub council_size: usize, + pub candidacy_limit: usize, + pub min_council_stake: Balance, +} -pub const ANNOUNCING_PERIOD:u64 = 20; -pub const VOTING_PERIOD:u64 = 20; -pub const REVEALING_PERIOD:u64 = 20; -pub const COUNCIL_SIZE: usize = 10; -pub const CANDIDACY_LIMIT: usize = 20; // should be greater than COUNCIL_SIZE -pub const COUNCIL_MIN_STAKE: u64 = 100; +impl Default for ElectionParameters + where BlockNumber: SimpleArithmetic, Balance: SimpleArithmetic +{ + fn default() -> Self { + Self { + announcing_period: BlockNumber::sa(100), + voting_period: BlockNumber::sa(100), + revealing_period: BlockNumber::sa(100), + council_size: 10, + candidacy_limit: 20, + min_council_stake: Balance::sa(100), + } + } +} decl_storage! { trait Store for Module as CouncilElection { - //Current stage if there is an election ongoing + // Current stage if there is an election ongoing ElectionStage get(stage): Option>; // The election round ElectionRound get(round): u32; - // map doesn't have a clear() method so need to keep track of keys to know - // what keys to delete later < if council is not modified during election - // we could always re-computer the vectors BackingStakeHolders get(backing_stakeholders): Vec; CouncilStakeHolders get(council_stakeholders): Vec; AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; @@ -88,6 +91,15 @@ decl_storage! { // simply a Yes vote for a candidate. Consider changing the vote payload to support // For and Against. Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; + + // Parameters for current election round + AnnouncingPeriod get(announcing_period) : T::BlockNumber = T::BlockNumber::sa(20); + VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa(20); + RevealingPeriod get(revealing_period) : T::BlockNumber = T::BlockNumber::sa(20); + CouncilSize get(council_size) : usize = 10; + // should be greater than council_size, better to derive it as a multiple of council_size? + CandidacyLimit get(candidacy_limit): usize = 20; + MinCouncilStake get(min_council_stake): T::Balance = T::Balance::sa(100); } } @@ -106,12 +118,16 @@ decl_event!( } ); -impl root::TriggerElection> for Module { - fn trigger_election(current_council: Option>) -> Result { +impl root::TriggerElection, ElectionParameters> for Module { + fn trigger_election( + current_council: Option>, + params: ElectionParameters) -> Result + { if Self::stage().is_some() { return Err("election in progress") } + Self::set_election_parameters(params); Self::start_election(current_council); Ok(()) @@ -119,6 +135,15 @@ impl root::TriggerElection> } impl Module { + fn set_election_parameters(params: ElectionParameters) { + >::put(params.announcing_period); + >::put(params.voting_period); + >::put(params.revealing_period); + >::put(params.council_size); + >::put(params.min_council_stake); + >::put(params.candidacy_limit); + } + fn start_election(current_council: Option>) { //ensure!(Self::stage().is_none()); @@ -146,7 +171,7 @@ impl Module { } fn move_to_announcing_stage() -> Period { - let period = Self::new_period(T::BlockNumber::sa(ANNOUNCING_PERIOD)); + let period = Self::new_period(Self::announcing_period()); >::put(Stage::Announcing(period)); @@ -176,11 +201,11 @@ impl Module { fn on_announcing_ended() { let mut applicants = Self::applicants(); - if applicants.len() < COUNCIL_SIZE { + if applicants.len() < Self::council_size() { // Not enough candidates announced candidacy Self::move_to_announcing_stage(); } else { - let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, CANDIDACY_LIMIT); + let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, Self::candidacy_limit()); Self::drop_applicants(rejected); @@ -189,7 +214,7 @@ impl Module { } fn move_to_voting_stage() { - let period = Self::new_period(T::BlockNumber::sa(VOTING_PERIOD)); + let period = Self::new_period(Self::voting_period()); >::put(Stage::Voting(period)); @@ -202,7 +227,7 @@ impl Module { } fn move_to_revealing_stage() { - let period = Self::new_period(T::BlockNumber::sa(REVEALING_PERIOD)); + let period = Self::new_period(Self::revealing_period()); >::put(Stage::Revealing(period)); @@ -237,12 +262,12 @@ impl Module { () }).collect(); - if new_council.len() == COUNCIL_SIZE { + if new_council.len() == Self::council_size() { // all candidates in the tally will form the new council - } else if new_council.len() > COUNCIL_SIZE { + } else if new_council.len() > Self::council_size() { // we have more than enough elected candidates to form the new council - // select top COUNCIL_SIZE prioritised by stake - Self::filter_top_staked(&mut new_council, COUNCIL_SIZE); + // select top staked prioritised by stake + Self::filter_top_staked(&mut new_council, Self::council_size()); } else { // Not enough candidates with votes to form a council. // This may happen if we didn't add candidates with zero votes to the tally, @@ -540,7 +565,7 @@ impl Module { let total_stake = applicant_stake.add(&new_stake); - if T::Balance::sa(COUNCIL_MIN_STAKE) > total_stake.total() { + if Self::min_council_stake() > total_stake.total() { return Err("minimum stake not met"); } @@ -720,7 +745,7 @@ mod tests { fn start_election_should_work() { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); - + >::put(20); let prev_round = Election::round(); Election::start_election(None); @@ -731,7 +756,7 @@ mod tests { // we enter the announcing stage for a specified period assert_announcing_period(election::Period { starts: 1, - ends: 1 + election::ANNOUNCING_PERIOD + ends: 1 + Election::announcing_period() }); // transferable stakes should have been initialized..(if council exists) @@ -814,15 +839,18 @@ mod tests { let applicant = 20 as u64; + let min_stake = 100 as u32; + >::put(min_stake); + // must provide stake assert!(Election::try_add_applicant(applicant, 0).is_err()); // Get some balance - let starting_balance = (election::COUNCIL_MIN_STAKE * 10) as u32; + let starting_balance = (min_stake * 10) as u32; Balances::set_free_balance(&applicant, starting_balance); // must provide min stake - let stake = election::COUNCIL_MIN_STAKE as u32; + let stake = min_stake as u32; assert!(Election::try_add_applicant(applicant, stake - 1).is_err()); // with enough balance and stake, announcing should work @@ -840,7 +868,8 @@ mod tests { fn increasing_stake_when_announcing_should_work () { with_externalities(&mut initial_test_ext(), || { let applicant = 20 as u64; - let starting_stake = election::COUNCIL_MIN_STAKE as u32; + >::put(100); + let starting_stake = Election::min_council_stake(); >::put(vec![applicant]); >::insert(applicant, Stake { @@ -862,7 +891,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { let applicant = 20 as u64; - + >::put(100); Balances::set_free_balance(&applicant, 5000); >::put(vec![applicant]); @@ -870,7 +899,7 @@ mod tests { >::put(vec![applicant]); let starting_stake = Stake { - refundable: election::COUNCIL_MIN_STAKE as u32, + refundable: Election::min_council_stake(), transferred: 0, }; >::insert(applicant, starting_stake); @@ -896,6 +925,8 @@ mod tests { fn moving_to_voting_without_enough_applicants_should_not_work() { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); + >::put(20); + >::put(10); let ann_period = Election::move_to_announcing_stage(); let round = Election::round(); @@ -913,7 +944,7 @@ mod tests { } // make sure we are testing the condition that we don't have enough applicants - assert!(election::COUNCIL_SIZE > applicants.len()); + assert!(Election::council_size() > applicants.len()); // try to move to voting stage System::set_block_number(ann_period.ends); @@ -925,7 +956,7 @@ mod tests { // A new announcing period started assert_announcing_period(Period { starts: ann_period.ends, - ends: ann_period.ends + election::ANNOUNCING_PERIOD, + ends: ann_period.ends + Election::announcing_period(), }); // applicants list should be unchanged.. @@ -1437,6 +1468,13 @@ mod tests { assert!(Council::council().is_none()); assert!(Election::stage().is_none()); + >::put(10); + >::put(50); + >::put(10); + >::put(10); + >::put(10); + >::put(20); + for i in 1..20 { Balances::set_free_balance(&(i as u64), 50000); } @@ -1449,7 +1487,7 @@ mod tests { assert!(Election::announce_candidacy(Origin::signed(i + 1000), 150).is_err()); } - let n = 1 + ANNOUNCING_PERIOD; + let n = 1 + Election::announcing_period(); System::set_block_number(n); Election::tick(n); @@ -1461,7 +1499,7 @@ mod tests { assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i + 1000, &mut vec![42u8]), 100).is_ok()); } - let n = n + VOTING_PERIOD; + let n = n + Election::voting_period(); System::set_block_number(n); Election::tick(n); @@ -1473,12 +1511,12 @@ mod tests { assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i + 1000, &mut vec![42u8]), i + 1000, vec![42u8]).is_err()); } - let n = n + REVEALING_PERIOD; + let n = n + Election::revealing_period(); System::set_block_number(n); Election::tick(n); assert!(Council::council().is_some()); - assert_eq!(Council::council().unwrap().len(), COUNCIL_SIZE); + assert_eq!(Council::council().unwrap().len(), Election::council_size()); for (i, seat) in Council::council().unwrap().iter().enumerate() { assert_eq!(seat.member, (i + 1) as u64); } diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index cab9bc62c2..1d6db849aa 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -7,24 +7,24 @@ use governance::{council, election}; use runtime_io::print; // Hook For starting election -pub trait TriggerElection { - fn trigger_election(current: Option) -> Result; +pub trait TriggerElection { + fn trigger_election(current: Option, params: Params) -> Result; } -impl TriggerElection for () { - fn trigger_election(_: Option) -> Result { Ok(())} +impl TriggerElection for () { + fn trigger_election(_: Option, _: Params) -> Result { Ok(())} } -impl> TriggerElection for (X,) { - fn trigger_election(current: Option) -> Result{ - X::trigger_election(current) +impl> TriggerElection for (X,) { + fn trigger_election(current: Option, params: Params) -> Result{ + X::trigger_election(current, params) } } pub trait Trait: system::Trait + council::Trait + election::Trait { type Event: From> + Into<::Event>; - type TriggerElection: TriggerElection>; + type TriggerElection: TriggerElection, election::ElectionParameters>; } decl_storage! { @@ -44,7 +44,11 @@ impl Module { fn tick (n: T::BlockNumber) { if >::term_ended(n) && >::stage().is_none() { let current_council = >::council(); - if T::TriggerElection::trigger_election(current_council).is_ok() { + + // TODO: get params from governance parameters module + let params = Default::default(); + + if T::TriggerElection::trigger_election(current_council, params).is_ok() { print("Election Started"); Self::deposit_event(RawEvent::ElectionStarted(n)); } @@ -84,10 +88,10 @@ mod tests { #[test] fn start_election_if_election_running_should_fail() { with_externalities(&mut initial_test_ext(), || { - assert!(::TriggerElection::trigger_election(None).is_ok()); + assert!(::TriggerElection::trigger_election(None, Default::default()).is_ok()); // Should fail to start election if already ongoing - assert!(::TriggerElection::trigger_election(None).is_err()); + assert!(::TriggerElection::trigger_election(None, Default::default()).is_err()); }); } } \ No newline at end of file From 7f67c557f0b9c7b52198e0f7a3fa8dab33322ddc Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 2 Feb 2019 00:28:58 +0200 Subject: [PATCH 080/350] refactor simplify period type --- runtime/src/governance/election.rs | 50 ++++++++++-------------------- 1 file changed, 17 insertions(+), 33 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 7e64153911..ae7caa1699 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -19,17 +19,11 @@ pub trait Trait: system::Trait + balances::Trait { type CouncilElected: CouncilElected>>; } -#[derive(Clone, Copy, Encode, Decode, PartialEq, Debug)] -pub struct Period { - pub starts: T, - pub ends: T -} - #[derive(Clone, Copy, Encode, Decode)] pub enum Stage { - Announcing(Period), - Voting(Period), - Revealing(Period), + Announcing(T), + Voting(T), + Revealing(T), } // Hook for setting a new council when it is elected @@ -153,12 +147,8 @@ impl Module { Self::move_to_announcing_stage(); } - fn new_period(length: T::BlockNumber) -> Period { - let current_block = >::block_number(); - Period { - starts: current_block, - ends: current_block + length - } + fn new_period(length: T::BlockNumber) -> T::BlockNumber { + >::block_number() + length } fn bump_round() -> u32 { @@ -170,7 +160,7 @@ impl Module { }) } - fn move_to_announcing_stage() -> Period { + fn move_to_announcing_stage() -> T::BlockNumber { let period = Self::new_period(Self::announcing_period()); >::put(Stage::Announcing(period)); @@ -490,20 +480,20 @@ impl Module { print("Election: tick"); if let Some(stage) = Self::stage() { match stage { - Stage::Announcing(period) => { - if period.ends == now { + Stage::Announcing(ends) => { + if ends == now { Self::deposit_event(RawEvent::AnnouncingEnded()); Self::on_announcing_ended(); } }, - Stage::Voting(period) => { - if period.ends == now { + Stage::Voting(ends) => { + if ends == now { Self::deposit_event(RawEvent::VotingEnded()); Self::on_voting_ended(); } }, - Stage::Revealing(period) => { - if period.ends == now { + Stage::Revealing(ends) => { + if ends == now { Self::deposit_event(RawEvent::RevealingEnded()); Self::on_revealing_ended(); } @@ -726,7 +716,7 @@ mod tests { } - fn assert_announcing_period (expected_period: Period<::BlockNumber>) { + fn assert_announcing_period (expected_period: ::BlockNumber) { assert!(Election::stage().is_some(), "Election Stage was not set"); let election_stage = Election::stage().unwrap(); @@ -754,10 +744,7 @@ mod tests { assert_eq!(Election::round(), prev_round + 1); // we enter the announcing stage for a specified period - assert_announcing_period(election::Period { - starts: 1, - ends: 1 + Election::announcing_period() - }); + assert_announcing_period(1 + Election::announcing_period()); // transferable stakes should have been initialized..(if council exists) }); @@ -927,7 +914,7 @@ mod tests { System::set_block_number(1); >::put(20); >::put(10); - let ann_period = Election::move_to_announcing_stage(); + let ann_ends = Election::move_to_announcing_stage(); let round = Election::round(); // add applicants @@ -947,17 +934,14 @@ mod tests { assert!(Election::council_size() > applicants.len()); // try to move to voting stage - System::set_block_number(ann_period.ends); + System::set_block_number(ann_ends); Election::on_announcing_ended(); // A new round should have been started assert_eq!(Election::round(), round + 1); // A new announcing period started - assert_announcing_period(Period { - starts: ann_period.ends, - ends: ann_period.ends + Election::announcing_period(), - }); + assert_announcing_period(ann_ends + Election::announcing_period()); // applicants list should be unchanged.. assert_eq!(Election::applicants(), applicants); From 3a10e3bfa503271d5c7cfe83eb94e24b1c213954 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 2 Feb 2019 01:10:13 +0200 Subject: [PATCH 081/350] move const to state storage --- runtime/src/governance/council.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 4d77d05428..ad7c711e2d 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -44,9 +44,6 @@ pub struct Backer { pub type Council = Vec>; -const COUNCIL_TERM: u64 = 1000; - - decl_storage! { trait Store for Module as CouncilInSession { // Initial state - council is empty and resigned, which will trigger @@ -54,6 +51,8 @@ decl_storage! { ActiveCouncil get(council) config(): Option>; TermEnds get(term_ends) config(): T::BlockNumber = T::BlockNumber::sa(0); + + CouncilTerm get(council_term): T::BlockNumber = T::BlockNumber::sa(1000); } } @@ -71,7 +70,7 @@ impl election::CouncilElected>::put(new_council); - let next_term_ends = >::block_number() + T::BlockNumber::sa(COUNCIL_TERM); + let next_term_ends = >::block_number() + Self::council_term(); >::put(next_term_ends); } } From f8987c37f3ef97c5c582933839225ff0dcd4f10a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 5 Feb 2019 08:34:34 +0200 Subject: [PATCH 082/350] use hook to announce council term ended instead of polling --- runtime/src/governance/council.rs | 33 +++++++++++++++++++-- runtime/src/governance/election.rs | 29 ++++++++++-------- runtime/src/governance/mod.rs | 2 ++ runtime/src/governance/proposals.rs | 3 +- runtime/src/governance/root.rs | 46 ++++++++++++++--------------- runtime/src/lib.rs | 1 + 6 files changed, 76 insertions(+), 38 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index ad7c711e2d..c9905d0d79 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -11,8 +11,26 @@ use rstd::ops::Add; use super::election; + +// Hook For announcing that council term has ended +pub trait CouncilTermEnded { + fn council_term_ended(); +} + +impl CouncilTermEnded for () { + fn council_term_ended() {} +} + +impl CouncilTermEnded for (X,) { + fn council_term_ended() { + X::council_term_ended(); + } +} + pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; + + type CouncilTermEnded: CouncilTermEnded; } #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] @@ -59,8 +77,8 @@ decl_storage! { /// Event for this module. decl_event!( pub enum Event where ::BlockNumber { - CouncilResigned(BlockNumber), - CouncilTermEnded(BlockNumber), + NewCouncilInSession(), + Dummy(BlockNumber), } ); @@ -72,6 +90,7 @@ impl election::CouncilElected>::block_number() + Self::council_term(); >::put(next_term_ends); + Self::deposit_event(RawEvent::NewCouncilInSession()); } } @@ -87,11 +106,21 @@ impl Module { false } } + + fn tick (now: T::BlockNumber) { + if Self::term_ended(now) { + T::CouncilTermEnded::council_term_ended(); + } + } } decl_module! { pub struct Module for enum Call where origin: T::Origin { fn deposit_event() = default; + + fn on_finalise(n: T::BlockNumber) { + Self::tick(n); + } } } diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index ae7caa1699..01ef90d487 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -86,7 +86,7 @@ decl_storage! { // For and Against. Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; - // Parameters for current election round + // Parameters election. Set when a new election is started AnnouncingPeriod get(announcing_period) : T::BlockNumber = T::BlockNumber::sa(20); VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa(20); RevealingPeriod get(revealing_period) : T::BlockNumber = T::BlockNumber::sa(20); @@ -107,7 +107,7 @@ decl_event!( VotingEnded(), RevealingStarted(), RevealingEnded(), - ElectionCompleted(), + CouncilElected(), Dummy(BlockNumber), } ); @@ -117,14 +117,10 @@ impl root::TriggerElection, current_council: Option>, params: ElectionParameters) -> Result { - if Self::stage().is_some() { - return Err("election in progress") + if Self::stage().is_none() { + Self::set_election_parameters(params); } - - Self::set_election_parameters(params); - Self::start_election(current_council); - - Ok(()) + Self::start_election(current_council) } } @@ -138,13 +134,14 @@ impl Module { >::put(params.candidacy_limit); } - fn start_election(current_council: Option>) { - //ensure!(Self::stage().is_none()); + fn start_election(current_council: Option>) -> Result { + ensure!(Self::stage().is_none(), "election already in progress"); // take snapshot of council and backing stakes of an existing council current_council.map(|c| Self::initialize_transferable_stakes(c)); Self::move_to_announcing_stage(); + Ok(()) } fn new_period(length: T::BlockNumber) -> T::BlockNumber { @@ -286,7 +283,7 @@ impl Module { T::CouncilElected::council_elected(&new_council); - Self::deposit_event(RawEvent::ElectionCompleted()); + Self::deposit_event(RawEvent::CouncilElected()); print("Election Completed"); } @@ -716,6 +713,14 @@ mod tests { } + #[test] + fn start_election_if_election_running_should_fail() { + with_externalities(&mut initial_test_ext(), || { + assert!(Election::start_election(None).is_ok()); + assert!(Election::start_election(None).is_err()); + }); + } + fn assert_announcing_period (expected_period: ::BlockNumber) { assert!(Election::stage().is_some(), "Election Stage was not set"); diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index ff96d96278..1e1ca460ad 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -62,6 +62,8 @@ pub mod tests { } impl council::Trait for Test { type Event = (); + + type CouncilTermEnded = (Governance,); } impl election::Trait for Test { type Event = (); diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 959cfc5752..09ca528ea8 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -563,8 +563,9 @@ mod tests { impl council::Trait for Test { type Event = (); + type CouncilTermEnded = (); } - + impl Trait for Test { type Event = (); } diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 1d6db849aa..36dea113b6 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -36,23 +36,15 @@ decl_storage! { /// Event for this module. decl_event!( pub enum Event where ::BlockNumber { - ElectionStarted(BlockNumber), + ElectionStarted(), + CouncilTermEnded(), + Dummy(BlockNumber), } ); impl Module { fn tick (n: T::BlockNumber) { - if >::term_ended(n) && >::stage().is_none() { - let current_council = >::council(); - - // TODO: get params from governance parameters module - let params = Default::default(); - if T::TriggerElection::trigger_election(current_council, params).is_ok() { - print("Election Started"); - Self::deposit_event(RawEvent::ElectionStarted(n)); - } - } } } @@ -66,32 +58,40 @@ decl_module! { } } +impl council::CouncilTermEnded for Module { + fn council_term_ended() { + Self::deposit_event(RawEvent::CouncilTermEnded()); + + if >::stage().is_none() { + let current_council = >::council(); + + // TODO: get params from governance parameters module + let params = Default::default(); + + if T::TriggerElection::trigger_election(current_council, params).is_ok() { + print("Election Started"); + Self::deposit_event(RawEvent::ElectionStarted()); + } + } + } +} + #[cfg(test)] mod tests { use super::*; use ::governance::tests::*; #[test] - fn auto_starting_election_should_work() { + fn election_is_triggerred_when_council_term_ends() { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); assert!(Council::term_ended(1)); assert!(Election::stage().is_none()); - Governance::tick(1); + ::council_term_ended(); assert!(Election::stage().is_some()); }); } - - #[test] - fn start_election_if_election_running_should_fail() { - with_externalities(&mut initial_test_ext(), || { - assert!(::TriggerElection::trigger_election(None, Default::default()).is_ok()); - - // Should fail to start election if already ongoing - assert!(::TriggerElection::trigger_election(None, Default::default()).is_err()); - }); - } } \ No newline at end of file diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 58860f3d9e..f6121ad1de 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -207,6 +207,7 @@ impl governance::election::Trait for Runtime { impl governance::council::Trait for Runtime { type Event = Event; + type CouncilTermEnded = (Governance,); } impl governance::root::Trait for Runtime { From 9ed32109785d935e9365b32582f8c25f975a930c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 5 Feb 2019 09:37:49 +0200 Subject: [PATCH 083/350] minor refactor --- runtime/src/governance/council.rs | 42 +---------- runtime/src/governance/election.rs | 117 ++++++++++++++++++----------- 2 files changed, 78 insertions(+), 81 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index c9905d0d79..222a7b268a 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -7,10 +7,7 @@ use srml_support::{StorageValue, dispatch::Result}; use runtime_primitives::traits::{As}; use {balances, system::{ensure_signed}}; -use rstd::ops::Add; - -use super::election; - +pub use election::{Seats as Council, Seat, CouncilElected}; // Hook For announcing that council term has ended pub trait CouncilTermEnded { @@ -33,35 +30,6 @@ pub trait Trait: system::Trait + balances::Trait { type CouncilTermEnded: CouncilTermEnded; } -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct Seat { - pub member: Id, - pub stake: Stake, - pub backers: Vec>, -} - -impl Seat - where Stake: Add + Copy, -{ - pub fn total_stake(&self) -> Stake { - let mut stake = self.stake; - for backer in self.backers.iter() { - stake = stake + backer.stake; - } - stake - } -} - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct Backer { - pub member: Id, - pub stake: Stake, -} - -pub type Council = Vec>; - decl_storage! { trait Store for Module as CouncilInSession { // Initial state - council is empty and resigned, which will trigger @@ -82,11 +50,9 @@ decl_event!( } ); -impl election::CouncilElected>> for Module { - fn council_elected(council: &BTreeMap>) { - let new_council: Vec> = council.into_iter().map(|(_, seat)| seat.clone()).collect(); - - >::put(new_council); +impl CouncilElected> for Module { + fn council_elected(council: Council) { + >::put(council); let next_term_ends = >::block_number() + Self::council_term(); >::put(next_term_ends); diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 01ef90d487..9aa9b2d1fc 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -7,16 +7,16 @@ use runtime_io::print; use srml_support::dispatch::Vec; use rstd::collections::btree_map::BTreeMap; +use rstd::ops::Add; use super::transferable_stake::Stake; -use super::council; use super::sealed_vote::SealedVote; use super::root; pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; - type CouncilElected: CouncilElected>>; + type CouncilElected: CouncilElected>; } #[derive(Clone, Copy, Encode, Decode)] @@ -26,17 +26,46 @@ pub enum Stage { Revealing(T), } +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] +pub struct Seat { + pub member: Id, + pub stake: Stake, + pub backers: Vec>, +} + +impl Seat + where Stake: Add + Copy, +{ + pub fn total_stake(&self) -> Stake { + let mut stake = self.stake; + for backer in self.backers.iter() { + stake = stake + backer.stake; + } + stake + } +} + +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] +pub struct Backer { + pub member: Id, + pub stake: Stake, +} + +pub type Seats = Vec>; + // Hook for setting a new council when it is elected pub trait CouncilElected { - fn council_elected(new_council: &Elected); + fn council_elected(new_council: Elected); } impl CouncilElected for () { - fn council_elected(_new_council: &Elected) {} + fn council_elected(_new_council: Elected) {} } impl> CouncilElected for (X,) { - fn council_elected(new_council: &Elected) { + fn council_elected(new_council: Elected) { X::council_elected(new_council); } } @@ -112,9 +141,9 @@ decl_event!( } ); -impl root::TriggerElection, ElectionParameters> for Module { +impl root::TriggerElection, ElectionParameters> for Module { fn trigger_election( - current_council: Option>, + current_council: Option>, params: ElectionParameters) -> Result { if Self::stage().is_none() { @@ -134,7 +163,7 @@ impl Module { >::put(params.candidacy_limit); } - fn start_election(current_council: Option>) -> Result { + fn start_election(current_council: Option>) -> Result { ensure!(Self::stage().is_none(), "election already in progress"); // take snapshot of council and backing stakes of an existing council @@ -241,7 +270,7 @@ impl Module { .filter(|applicant| new_council.get(applicant).is_none()).collect(); let _: Vec<()> = not_on_council.into_iter().map(|applicant| { - new_council.insert(applicant.clone(), council::Seat { + new_council.insert(applicant.clone(), Seat { member: applicant.clone(), stake: Self::applicant_stakes(applicant).total(), backers: Vec::new(), @@ -281,7 +310,8 @@ impl Module { >::kill(); - T::CouncilElected::council_elected(&new_council); + let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); + T::CouncilElected::council_elected(new_council); Self::deposit_event(RawEvent::CouncilElected()); print("Election Completed"); @@ -352,7 +382,7 @@ impl Module { >::put(not_dropped.to_vec()); } - fn drop_unelected_candidates(new_council: &BTreeMap>) { + fn drop_unelected_candidates(new_council: &BTreeMap>) { let applicants_to_drop: Vec = Self::applicants().into_iter() .filter(|applicant| { match new_council.get(&applicant) { @@ -366,7 +396,7 @@ impl Module { fn refund_voting_stakes( sealed_votes: &Vec, T::Hash, T::AccountId>>, - new_council: &BTreeMap>) + new_council: &BTreeMap>) { for sealed_vote in sealed_votes.iter() { // Do a refund if commitment was not revealed or vote was for candidate that did @@ -403,20 +433,20 @@ impl Module { >::kill(); } - fn tally_votes(sealed_votes: &Vec, T::Hash, T::AccountId>>) -> BTreeMap> { - let mut tally: BTreeMap> = BTreeMap::new(); + fn tally_votes(sealed_votes: &Vec, T::Hash, T::AccountId>>) -> BTreeMap> { + let mut tally: BTreeMap> = BTreeMap::new(); for sealed_vote in sealed_votes.iter() { if let Some(candidate) = sealed_vote.get_vote() { match tally.get(&candidate) { // Add new seat and first backer None => { - let backers = [council::Backer { + let backers = [Backer { member: sealed_vote.voter.clone(), stake: sealed_vote.stake.total() }].to_vec(); - let seat = council::Seat { + let seat = Seat { member: candidate.clone(), stake: Self::applicant_stakes(candidate).total(), backers: backers, @@ -428,7 +458,7 @@ impl Module { // Add backer to existing seat Some(_) => { if let Some(seat) = tally.get_mut(&candidate) { - seat.backers.push(council::Backer { + seat.backers.push(Backer { member: sealed_vote.voter.clone(), stake: sealed_vote.stake.total() }); @@ -441,7 +471,7 @@ impl Module { tally } - fn filter_top_staked(tally: &mut BTreeMap>, limit: usize) { + fn filter_top_staked(tally: &mut BTreeMap>, limit: usize) { if limit >= tally.len() { return; @@ -500,7 +530,7 @@ impl Module { } /// Takes a snapshot of the stakes from the current council - fn initialize_transferable_stakes(current_council: council::Council) { + fn initialize_transferable_stakes(current_council: Seats) { let mut accounts_council: Vec = Vec::new(); let mut accounts_backers: Vec = Vec::new(); for ref seat in current_council.iter() { @@ -763,38 +793,38 @@ mod tests { let backing_stakeholders = vec![10,20,30,50]; let existing_council = vec![ - council::Seat { + Seat { member: council_stakeholders[0], stake: council_stakes[0], backers: vec![ - council::Backer { + Backer { member: backing_stakeholders[0], stake: 2, }, - council::Backer { + Backer { member: backing_stakeholders[3], stake: 5, }] }, - council::Seat { + Seat { member: council_stakeholders[1], stake: council_stakes[1], backers: vec![ - council::Backer { + Backer { member: backing_stakeholders[1], stake: 4, }, - council::Backer { + Backer { member: backing_stakeholders[3], stake: 5, }] }, - council::Seat { + Seat { member: council_stakeholders[2], stake: council_stakes[2], - backers: vec![council::Backer { + backers: vec![Backer { member: backing_stakeholders[2], stake: 6, }] @@ -1250,11 +1280,11 @@ mod tests { assert_eq!(tally.get(&100).unwrap().member, 100); assert_eq!(tally.get(&100).unwrap().backers, vec![ - council::Backer { + Backer { member: 10 as u64, stake: 100 as u32, }, - council::Backer { + Backer { member: 10 as u64, stake: 150 as u32, }, @@ -1262,11 +1292,11 @@ mod tests { assert_eq!(tally.get(&200).unwrap().member, 200); assert_eq!(tally.get(&200).unwrap().backers, vec![ - council::Backer { + Backer { member: 10 as u64, stake: 500 as u32, }, - council::Backer { + Backer { member: 20 as u64, stake: 200 as u32, } @@ -1274,11 +1304,11 @@ mod tests { assert_eq!(tally.get(&300).unwrap().member, 300); assert_eq!(tally.get(&300).unwrap().backers, vec![ - council::Backer { + Backer { member: 30 as u64, stake: 300 as u32, }, - council::Backer { + Backer { member: 30 as u64, stake: 400 as u32, } @@ -1349,9 +1379,9 @@ mod tests { >::insert(100, 100); - let mut new_council: BTreeMap> = BTreeMap::new(); - new_council.insert(200 as u64, council::Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); - new_council.insert(300 as u64, council::Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); + let mut new_council: BTreeMap> = BTreeMap::new(); + new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); + new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); Election::drop_unelected_candidates(&new_council); @@ -1393,9 +1423,9 @@ mod tests { (30, 1000, 140, 300), ]); - let mut new_council: BTreeMap> = BTreeMap::new(); - new_council.insert(200 as u64, council::Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); - new_council.insert(300 as u64, council::Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); + let mut new_council: BTreeMap> = BTreeMap::new(); + new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); + new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); Election::refund_voting_stakes(&votes, &new_council); @@ -1439,13 +1469,14 @@ mod tests { fn council_elected_hook_should_work() { with_externalities(&mut initial_test_ext(), || { - let mut new_council: BTreeMap> = BTreeMap::new(); - new_council.insert(200 as u64, council::Seat{ member: 200 as u64, stake: 10 as u32, backers: vec![]}); - new_council.insert(300 as u64, council::Seat{ member: 300 as u64, stake: 20 as u32, backers: vec![]}); + let mut new_council: BTreeMap> = BTreeMap::new(); + new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 10 as u32, backers: vec![]}); + new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 20 as u32, backers: vec![]}); assert!(Council::council().is_none()); - ::CouncilElected::council_elected(&new_council); + let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); + ::CouncilElected::council_elected(new_council); assert!(Council::council().is_some()); }); From 72f8918373bbca18e058737ae8cf08ca787bb1c2 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 5 Feb 2019 09:56:21 +0200 Subject: [PATCH 084/350] new council term is an election parameter --- runtime/src/governance/council.rs | 12 +++++------- runtime/src/governance/election.rs | 23 +++++++++++++---------- 2 files changed, 18 insertions(+), 17 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 222a7b268a..8edb1aed7b 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -36,9 +36,7 @@ decl_storage! { // and election in next block ActiveCouncil get(council) config(): Option>; - TermEnds get(term_ends) config(): T::BlockNumber = T::BlockNumber::sa(0); - - CouncilTerm get(council_term): T::BlockNumber = T::BlockNumber::sa(1000); + TermEndsOn get(term_ends) config(): T::BlockNumber = T::BlockNumber::sa(0); } } @@ -50,12 +48,12 @@ decl_event!( } ); -impl CouncilElected> for Module { - fn council_elected(council: Council) { +impl CouncilElected, T::BlockNumber> for Module { + fn council_elected(council: Council, term: T::BlockNumber) { >::put(council); - let next_term_ends = >::block_number() + Self::council_term(); - >::put(next_term_ends); + let next_term_ends = >::block_number() + term; + >::put(next_term_ends); Self::deposit_event(RawEvent::NewCouncilInSession()); } } diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 9aa9b2d1fc..98783d12d5 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -16,7 +16,7 @@ use super::root; pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; - type CouncilElected: CouncilElected>; + type CouncilElected: CouncilElected, Self::BlockNumber>; } #[derive(Clone, Copy, Encode, Decode)] @@ -56,17 +56,17 @@ pub struct Backer { pub type Seats = Vec>; // Hook for setting a new council when it is elected -pub trait CouncilElected { - fn council_elected(new_council: Elected); +pub trait CouncilElected { + fn council_elected(new_council: Elected, term: Term); } -impl CouncilElected for () { - fn council_elected(_new_council: Elected) {} +impl CouncilElected for () { + fn council_elected(_new_council: Elected, term: Term) {} } -impl> CouncilElected for (X,) { - fn council_elected(new_council: Elected) { - X::council_elected(new_council); +impl> CouncilElected for (X,) { + fn council_elected(new_council: Elected, term: Term) { + X::council_elected(new_council, term); } } @@ -77,6 +77,7 @@ pub struct ElectionParameters { pub council_size: usize, pub candidacy_limit: usize, pub min_council_stake: Balance, + pub new_term_duration: BlockNumber, } impl Default for ElectionParameters @@ -90,6 +91,7 @@ impl Default for ElectionParameters council_size: 10, candidacy_limit: 20, min_council_stake: Balance::sa(100), + new_term_duration: BlockNumber::sa(1000), } } } @@ -123,6 +125,7 @@ decl_storage! { // should be greater than council_size, better to derive it as a multiple of council_size? CandidacyLimit get(candidacy_limit): usize = 20; MinCouncilStake get(min_council_stake): T::Balance = T::Balance::sa(100); + NewTermDuration get(new_term_duration): T::BlockNumber = T::BlockNumber::sa(1000); } } @@ -311,7 +314,7 @@ impl Module { >::kill(); let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); - T::CouncilElected::council_elected(new_council); + T::CouncilElected::council_elected(new_council, Self::new_term_duration()); Self::deposit_event(RawEvent::CouncilElected()); print("Election Completed"); @@ -1476,7 +1479,7 @@ mod tests { assert!(Council::council().is_none()); let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); - ::CouncilElected::council_elected(new_council); + ::CouncilElected::council_elected(new_council, 10); assert!(Council::council().is_some()); }); From 48a87fd2ef5ff8c7712a91c494fdaa48f9da01f6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 5 Feb 2019 10:11:28 +0200 Subject: [PATCH 085/350] election parameters set in governance root and configurable in genesis --- runtime/src/governance/election.rs | 2 ++ runtime/src/governance/mod.rs | 3 +-- runtime/src/governance/root.rs | 5 ++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 98783d12d5..a54a4008b6 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -70,6 +70,8 @@ impl> CouncilElected { pub announcing_period: BlockNumber, pub voting_period: BlockNumber, diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 1e1ca460ad..f5225aae82 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -105,8 +105,7 @@ pub mod tests { let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; t.extend(root::GenesisConfig:: { - dummy: 0, - _genesis_phantom_data: Default::default(), + election_parameters: Default::default(), }.build_storage().unwrap().0); runtime_io::TestExternalities::new(t) diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 36dea113b6..8a60fb27f1 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -29,7 +29,7 @@ pub trait Trait: system::Trait + council::Trait + election::Trait { decl_storage! { trait Store for Module as Root { - Dummy get(dummy) config(): u32; + ElectionParameters get(election_parameters) config(): election::ElectionParameters; } } @@ -65,8 +65,7 @@ impl council::CouncilTermEnded for Module { if >::stage().is_none() { let current_council = >::council(); - // TODO: get params from governance parameters module - let params = Default::default(); + let params = Self::election_parameters(); if T::TriggerElection::trigger_election(current_council, params).is_ok() { print("Election Started"); From e9452950bf92e64b9b37832690cf8f9d8fa32935 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 5 Feb 2019 11:53:08 +0200 Subject: [PATCH 086/350] set new term duration in set_election_parameters --- runtime/src/governance/election.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index a54a4008b6..9ba780d8a6 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -166,6 +166,7 @@ impl Module { >::put(params.council_size); >::put(params.min_council_stake); >::put(params.candidacy_limit); + >::put(params.new_term_duration); } fn start_election(current_council: Option>) -> Result { From 011d6180e2fdd7380b097238556f035a1ba2b1bc Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 5 Feb 2019 17:54:01 +0200 Subject: [PATCH 087/350] move TriggerElection trait into election module --- runtime/src/governance/election.rs | 17 ++++++++++++++++- runtime/src/governance/root.rs | 19 ++----------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 9ba780d8a6..64acf37cbb 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -70,6 +70,21 @@ impl> CouncilElected { + fn trigger_election(current: Option, params: Params) -> Result; +} + +impl TriggerElection for () { + fn trigger_election(_: Option, _: Params) -> Result { Ok(())} +} + +impl> TriggerElection for (X,) { + fn trigger_election(current: Option, params: Params) -> Result{ + X::trigger_election(current, params) + } +} + #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Clone, Copy, Encode, Decode)] pub struct ElectionParameters { @@ -146,7 +161,7 @@ decl_event!( } ); -impl root::TriggerElection, ElectionParameters> for Module { +impl TriggerElection, ElectionParameters> for Module { fn trigger_election( current_council: Option>, params: ElectionParameters) -> Result diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 8a60fb27f1..1321125d06 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -2,29 +2,14 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result}; -use governance::{council, election}; +use governance::{council, election::{self, TriggerElection}}; use runtime_io::print; -// Hook For starting election -pub trait TriggerElection { - fn trigger_election(current: Option, params: Params) -> Result; -} - -impl TriggerElection for () { - fn trigger_election(_: Option, _: Params) -> Result { Ok(())} -} - -impl> TriggerElection for (X,) { - fn trigger_election(current: Option, params: Params) -> Result{ - X::trigger_election(current, params) - } -} - pub trait Trait: system::Trait + council::Trait + election::Trait { type Event: From> + Into<::Event>; - type TriggerElection: TriggerElection, election::ElectionParameters>; + type TriggerElection: election::TriggerElection, election::ElectionParameters>; } decl_storage! { From 1b23195e9e875a4908e6c7d355c6b7691604a488 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 6 Feb 2019 01:46:02 +0200 Subject: [PATCH 088/350] Review of Council module --- runtime/src/governance/council.rs | 51 +-- runtime/src/governance/election.rs | 372 ++++++++++--------- runtime/src/governance/mod.rs | 7 +- runtime/src/governance/proposals.rs | 2 +- runtime/src/governance/root.rs | 21 +- runtime/src/governance/sealed_vote.rs | 14 +- runtime/src/governance/transferable_stake.rs | 2 +- 7 files changed, 242 insertions(+), 227 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 8edb1aed7b..87edff163f 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -1,11 +1,8 @@ #![cfg_attr(not(feature = "std"), no_std)] -use srml_support::dispatch::Vec; -use rstd::collections::btree_map::BTreeMap; - -use srml_support::{StorageValue, dispatch::Result}; +use srml_support::{StorageValue}; use runtime_primitives::traits::{As}; -use {balances, system::{ensure_signed}}; +use {balances}; pub use election::{Seats as Council, Seat, CouncilElected}; @@ -32,20 +29,26 @@ pub trait Trait: system::Trait + balances::Trait { decl_storage! { trait Store for Module as CouncilInSession { + + // TODO A good practice to keep similar names for both storage and its getter, example: + // ActiveCouncil get(active_council) ... + // TermEndsAt get(term_ends_at) + // Initial state - council is empty and resigned, which will trigger - // and election in next block - ActiveCouncil get(council) config(): Option>; + // an election in the next block + ActiveCouncil get(council) config(): Option> = None; + // TODO rename to 'TermEndsAt' because 'at block', not 'on block' TermEndsOn get(term_ends) config(): T::BlockNumber = T::BlockNumber::sa(0); } } /// Event for this module. decl_event!( - pub enum Event where ::BlockNumber { + pub enum Event where ::BlockNumber { NewCouncilInSession(), Dummy(BlockNumber), - } + } ); impl CouncilElected, T::BlockNumber> for Module { @@ -59,8 +62,9 @@ impl CouncilElected, T::BlockNumber> } impl Module { - pub fn term_ended(n: T::BlockNumber) -> bool { - n >= Self::term_ends() + + pub fn is_term_ended(block: T::BlockNumber) -> bool { + block >= Self::term_ends() } pub fn is_councilor(sender: T::AccountId) -> bool { @@ -70,33 +74,16 @@ impl Module { false } } - - fn tick (now: T::BlockNumber) { - if Self::term_ended(now) { - T::CouncilTermEnded::council_term_ended(); - } - } } decl_module! { pub struct Module for enum Call where origin: T::Origin { fn deposit_event() = default; - fn on_finalise(n: T::BlockNumber) { - Self::tick(n); + fn on_finalise(now: T::BlockNumber) { + if Self::is_term_ended(now) { + T::CouncilTermEnded::council_term_ended(); + } } } } - -#[cfg(test)] -mod tests { - use super::*; - use ::governance::tests::*; - - #[test] - fn dummy() { - with_externalities(&mut initial_test_ext(), || { - assert!(true); - }); - } -} \ No newline at end of file diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index a54a4008b6..45663ae876 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -4,7 +4,6 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result}; use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; use {balances, system::{ensure_signed}}; use runtime_io::print; -use srml_support::dispatch::Vec; use rstd::collections::btree_map::BTreeMap; use rstd::ops::Add; @@ -20,10 +19,10 @@ pub trait Trait: system::Trait + balances::Trait { } #[derive(Clone, Copy, Encode, Decode)] -pub enum Stage { - Announcing(T), - Voting(T), - Revealing(T), +pub enum Stage { + Announcing(BlockNumber), + Voting(BlockNumber), + Revealing(BlockNumber), } #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] @@ -37,12 +36,9 @@ pub struct Seat { impl Seat where Stake: Add + Copy, { + // TODO rename to 'calc_total_stake' to emphasize iteration pub fn total_stake(&self) -> Stake { - let mut stake = self.stake; - for backer in self.backers.iter() { - stake = stake + backer.stake; - } - stake + self.backers.iter().fold(self.stake, |acc, backer| acc + backer.stake) } } @@ -76,8 +72,8 @@ pub struct ElectionParameters { pub announcing_period: BlockNumber, pub voting_period: BlockNumber, pub revealing_period: BlockNumber, - pub council_size: usize, - pub candidacy_limit: usize, + pub council_size: usize, // TODO consider usize -> u32 (in Substrate code they use u32 for counts) + pub candidacy_limit: usize, // TODO consider usize -> u32 (in Substrate code they use u32 for counts) pub min_council_stake: Balance, pub new_term_duration: BlockNumber, } @@ -100,6 +96,13 @@ impl Default for ElectionParameters decl_storage! { trait Store for Module as CouncilElection { + + // TODO a good practice to keep similar names for both storage and its getter, examples: + // Stage get(stage) + // ElectionStage get(election_stage) + // BackingStakeHolders get(backing_stake_holders) ... + // AvailableBackingStakes get(available_backing_stakes) ... + // Current stage if there is an election ongoing ElectionStage get(stage): Option>; @@ -108,6 +111,9 @@ decl_storage! { BackingStakeHolders get(backing_stakeholders): Vec; CouncilStakeHolders get(council_stakeholders): Vec; + + // TODO Could these two maps can be merged into one? + // If yes, then it will simplify/generalize other code where they are used. AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; @@ -117,15 +123,21 @@ decl_storage! { Commitments get(commitments): Vec; // simply a Yes vote for a candidate. Consider changing the vote payload to support // For and Against. + // TODO value type of this map looks scary, is there any way to simplify the notation? Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; // Parameters election. Set when a new election is started - AnnouncingPeriod get(announcing_period) : T::BlockNumber = T::BlockNumber::sa(20); + AnnouncingPeriod get(announcing_period): T::BlockNumber = T::BlockNumber::sa(20); VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa(20); - RevealingPeriod get(revealing_period) : T::BlockNumber = T::BlockNumber::sa(20); - CouncilSize get(council_size) : usize = 10; + RevealingPeriod get(revealing_period): T::BlockNumber = T::BlockNumber::sa(20); + + // TODO consider usize -> u32 (in Substrate code they use u32 for counts) + CouncilSize get(council_size): usize = 10; + // should be greater than council_size, better to derive it as a multiple of council_size? + // TODO consider usize -> u32 (in Substrate code they use u32 for counts) CandidacyLimit get(candidacy_limit): usize = 20; + MinCouncilStake get(min_council_stake): T::Balance = T::Balance::sa(100); NewTermDuration get(new_term_duration): T::BlockNumber = T::BlockNumber::sa(1000); } @@ -133,8 +145,8 @@ decl_storage! { /// Event for this module. decl_event!( - pub enum Event where ::BlockNumber { - /// A new election started + pub enum Event where ::BlockNumber { + /// A new election started AnnouncingStarted(u32), AnnouncingEnded(), VotingStarted(), @@ -143,7 +155,7 @@ decl_event!( RevealingEnded(), CouncilElected(), Dummy(BlockNumber), - } + } ); impl root::TriggerElection, ElectionParameters> for Module { @@ -183,8 +195,8 @@ impl Module { } fn bump_round() -> u32 { - // bump the round number - print("Bumping Election Round"); + // bump the round number - comment is redundant because the method's name is self explanatory ;) + // print("Bumping Election Round"); >::mutate(|n| { *n += 1; *n @@ -199,11 +211,13 @@ impl Module { let next_round = Self::bump_round(); Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); - print("Announcing Started"); + // print("Announcing Started"); period } - fn get_top_applicants_by_stake ( + // TODO Consider returning only `rejected` such as `top` applicants are used only in tests, but not in the main code. + // TODO rename to 'find_applicants_with_lower_stake'? + fn get_top_applicants_by_stake( applicants: &mut Vec, limit: usize) -> (&[T::AccountId], &[T::AccountId]) { @@ -235,12 +249,13 @@ impl Module { } fn move_to_voting_stage() { + // TODO check that current stage is Announcing let period = Self::new_period(Self::voting_period()); >::put(Stage::Voting(period)); Self::deposit_event(RawEvent::VotingStarted()); - print("Voting Started"); + // print("Voting Started"); } fn on_voting_ended() { @@ -248,12 +263,13 @@ impl Module { } fn move_to_revealing_stage() { + // TODO check that current stage is Voting let period = Self::new_period(Self::revealing_period()); >::put(Stage::Revealing(period)); Self::deposit_event(RawEvent::RevealingStarted()); - print("Revealing Started"); + // print("Revealing Started"); } fn on_revealing_ended() { @@ -270,18 +286,16 @@ impl Module { // Is a candidate with some votes but less total stake than another candidate with zero votes // more qualified to be on the council? // Consider implications - if a council can be formed purely by staking are we fine with that? - let applicants = Self::applicants(); - let not_on_council: Vec<&T::AccountId> = applicants.iter() - .filter(|applicant| new_council.get(applicant).is_none()).collect(); - - let _: Vec<()> = not_on_council.into_iter().map(|applicant| { - new_council.insert(applicant.clone(), Seat { - member: applicant.clone(), - stake: Self::applicant_stakes(applicant).total(), - backers: Vec::new(), - }); - () - }).collect(); + + for applicant in Self::applicants().iter() { + if !new_council.contains_key(applicant) { + new_council.insert(applicant.clone(), Seat { + member: applicant.clone(), + stake: Self::applicant_stakes(applicant).total(), + backers: Vec::new(), + }); + } + } if new_council.len() == Self::council_size() { // all candidates in the tally will form the new council @@ -307,6 +321,7 @@ impl Module { Self::refund_voting_stakes(&votes, &new_council); Self::clear_votes(); + // TODO consider consistent naming: candidates vs applicants. Different names for the same things? Self::drop_unelected_candidates(&new_council); Self::clear_applicants(); @@ -319,14 +334,14 @@ impl Module { T::CouncilElected::council_elected(new_council, Self::new_term_duration()); Self::deposit_event(RawEvent::CouncilElected()); - print("Election Completed"); + // print("Election Completed"); } fn refund_transferable_stakes() { // move stakes back to account holder's free balance for stakeholder in Self::backing_stakeholders().iter() { let stake = Self::backing_stakes(stakeholder); - if stake > T::Balance::zero() { + if !stake.is_zero() { let balance = >::free_balance(stakeholder); >::set_free_balance(stakeholder, balance + stake); } @@ -334,7 +349,7 @@ impl Module { for stakeholder in Self::council_stakeholders().iter() { let stake = Self::council_stakes(stakeholder); - if stake > T::Balance::zero() { + if !stake.is_zero() { let balance = >::free_balance(stakeholder); >::set_free_balance(stakeholder, balance + stake); } @@ -365,36 +380,35 @@ impl Module { let stake = >::get(applicant); // return refundable stake to account's free balance - if stake.refundable > T::Balance::zero() { + if !stake.refundable.is_zero() { let balance = >::free_balance(applicant); >::set_free_balance(applicant, balance + stake.refundable); } // return unused transferable stake - if stake.transferred > T::Balance::zero() { + if !stake.transferred.is_zero() { >::mutate(applicant, |transferred_stake| *transferred_stake += stake.transferred); } } - fn drop_applicants (drop: &[T::AccountId]) { - let not_dropped: Vec = Self::applicants().into_iter().filter(|id| !drop.iter().any(|x| *x == *id)).collect(); + fn drop_applicants(drop: &[T::AccountId]) { + let not_dropped: Vec = Self::applicants().into_iter() + .filter(|id| !drop.iter().any(|x| *x == *id)) + .collect(); for applicant in drop { Self::refund_applicant(applicant); >::remove(applicant); } - >::put(not_dropped.to_vec()); + >::put(not_dropped); } + // TODO consider consistent naming: candidates vs applicants. Different names for the same things? fn drop_unelected_candidates(new_council: &BTreeMap>) { let applicants_to_drop: Vec = Self::applicants().into_iter() - .filter(|applicant| { - match new_council.get(&applicant) { - Some(_) => false, - None => true - } - }).collect(); + .filter(|applicant| !new_council.contains_key(&applicant)) + .collect(); Self::drop_applicants(&applicants_to_drop[..]); } @@ -406,26 +420,23 @@ impl Module { for sealed_vote in sealed_votes.iter() { // Do a refund if commitment was not revealed or vote was for candidate that did // not get elected to the council + // TODO critical: shouldn't we slash the stake in such a case? This is the whole idea behid staking on something: people need to decide carefully and be responsible for their bahavior because they can loose their stake let do_refund = match sealed_vote.get_vote() { - Some(candidate) => { - match new_council.get(&candidate) { - None => true, - Some(_) => false - } - }, + Some(candidate) => !new_council.contains_key(&candidate), None => true }; if do_refund { // return refundable stake to account's free balance - if sealed_vote.stake.refundable > T::Balance::zero() { - let balance = >::free_balance(&sealed_vote.voter); - >::set_free_balance(&sealed_vote.voter, balance + sealed_vote.stake.refundable); + let SealedVote { voter, stake, .. } = sealed_vote; + if !stake.refundable.is_zero() { + let balance = >::free_balance(voter); + >::set_free_balance(voter, balance + stake.refundable); } // return unused transferable stake - if sealed_vote.stake.transferred > T::Balance::zero() { - >::mutate(&sealed_vote.voter, |stake| *stake += sealed_vote.stake.transferred); + if !stake.transferred.is_zero() { + >::mutate(voter, |transferred_stake| *transferred_stake += stake.transferred); } } } @@ -443,32 +454,20 @@ impl Module { for sealed_vote in sealed_votes.iter() { if let Some(candidate) = sealed_vote.get_vote() { - match tally.get(&candidate) { - // Add new seat and first backer - None => { - let backers = [Backer { - member: sealed_vote.voter.clone(), - stake: sealed_vote.stake.total() - }].to_vec(); - - let seat = Seat { - member: candidate.clone(), - stake: Self::applicant_stakes(candidate).total(), - backers: backers, - }; - - tally.insert(candidate.clone(), seat); - }, - + if !tally.contains_key(&candidate) { + // Add new seat + tally.insert(candidate.clone(), Seat { + member: candidate.clone(), + stake: Self::applicant_stakes(candidate).total(), + backers: vec![], + }); + } + if let Some(seat) = tally.get_mut(&candidate) { // Add backer to existing seat - Some(_) => { - if let Some(seat) = tally.get_mut(&candidate) { - seat.backers.push(Backer { - member: sealed_vote.voter.clone(), - stake: sealed_vote.stake.total() - }); - } - } + seat.backers.push(Backer { + member: sealed_vote.voter.clone(), + stake: sealed_vote.stake.total() + }); } } } @@ -483,7 +482,8 @@ impl Module { } // use ordering in the applicants vector (not ordering resulting from btreemap iteration) - let mut seats: Vec = Self::applicants().into_iter().filter(|id| tally.get(id).is_some()).collect(); + let mut seats: Vec = Self::applicants().into_iter() + .filter(|id| tally.contains_key(id)).collect(); // ensure_eq!(seats.len(), tally.len()); @@ -495,9 +495,7 @@ impl Module { // TODO: order by number of votes, then number of backers seats.sort_by_key(|applicant| { - tally.get(&applicant) - .unwrap() // we filtered on existing keys, so this should not panic! - .total_stake() + tally.get(&applicant).map_or(Zero::zero(), |seat| seat.total_stake()) }); // seats at bottom of list @@ -508,27 +506,21 @@ impl Module { } } - fn tick(now: T::BlockNumber) { - print("Election: tick"); + fn check_if_stage_is_ending(now: T::BlockNumber) { + // print("Election: check_if_stage_is_ending"); if let Some(stage) = Self::stage() { match stage { - Stage::Announcing(ends) => { - if ends == now { - Self::deposit_event(RawEvent::AnnouncingEnded()); - Self::on_announcing_ended(); - } + Stage::Announcing(ends) => if ends == now { + Self::deposit_event(RawEvent::AnnouncingEnded()); + Self::on_announcing_ended(); }, - Stage::Voting(ends) => { - if ends == now { - Self::deposit_event(RawEvent::VotingEnded()); - Self::on_voting_ended(); - } + Stage::Voting(ends) => if ends == now { + Self::deposit_event(RawEvent::VotingEnded()); + Self::on_voting_ended(); }, - Stage::Revealing(ends) => { - if ends == now { - Self::deposit_event(RawEvent::RevealingEnded()); - Self::on_revealing_ended(); - } + Stage::Revealing(ends) => if ends == now { + Self::deposit_event(RawEvent::RevealingEnded()); + Self::on_revealing_ended(); }, } } @@ -536,25 +528,25 @@ impl Module { /// Takes a snapshot of the stakes from the current council fn initialize_transferable_stakes(current_council: Seats) { - let mut accounts_council: Vec = Vec::new(); - let mut accounts_backers: Vec = Vec::new(); + let mut council_accounts: Vec = Vec::new(); + let mut backer_accounts: Vec = Vec::new(); for ref seat in current_council.iter() { let id = seat.member.clone(); >::insert(&id, seat.stake); - accounts_council.push(id); + council_accounts.push(id); for ref backer in seat.backers.iter() { let id = backer.member.clone(); if !>::exists(&id) { >::insert(&id, backer.stake); - accounts_backers.push(id); + backer_accounts.push(id); } else { >::mutate(&backer.member, |stake| *stake += backer.stake); } } } - >::put(accounts_council); - >::put(accounts_backers); + >::put(council_accounts); + >::put(backer_accounts); } fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { @@ -569,28 +561,33 @@ impl Module { true => >::get(&applicant) }; + // TODO: notice: next ~20 lines look similar to what we have in `try_add_vote`. Consider refactoring let mut new_stake: Stake = Default::default(); - new_stake.transferred = if transferable_stake >= stake { - stake - } else { - transferable_stake - }; + new_stake.transferred = + if transferable_stake >= stake { + stake + } else { + transferable_stake + }; new_stake.refundable = stake - new_stake.transferred; let balance = >::free_balance(&applicant); + // TODO use `ensure!()` instead if new_stake.refundable > balance { return Err("not enough balance to cover stake"); } let total_stake = applicant_stake.add(&new_stake); + // TODO use `ensure!()` instead if Self::min_council_stake() > total_stake.total() { return Err("minimum stake not met"); } + // TODO use `ensure!()` instead if >::decrease_free_balance(&applicant, new_stake.refundable).is_err() { return Err("failed to update balance"); } @@ -611,6 +608,7 @@ impl Module { } fn try_add_vote(voter: T::AccountId, stake: T::Balance, commitment: T::Hash) -> Result { + // TODO use `ensure!()` instead if >::exists(commitment) { return Err("duplicate commitment"); } @@ -622,22 +620,26 @@ impl Module { true => >::get(&voter) }; + // TODO: notice: next ~20 lines look similar to what we have in `try_add_aaplicant`. Consider refactoring let mut vote_stake: Stake = Default::default(); - vote_stake.transferred = if transferable_stake >= stake { - stake - } else { - transferable_stake - }; + vote_stake.transferred = + if transferable_stake >= stake { + stake + } else { + transferable_stake + }; vote_stake.refundable = stake - vote_stake.transferred; let balance = >::free_balance(&voter); + // TODO use `ensure!()` instead if vote_stake.refundable > balance { return Err("not enough balance to cover voting stake"); } + // TODO use `ensure!()` instead if >::decrease_free_balance(&voter, vote_stake.refundable).is_err() { return Err("failed to update balance"); } @@ -654,10 +656,12 @@ impl Module { } fn try_reveal_vote(voter: T::AccountId, commitment: T::Hash, candidate: T::AccountId, salt: Vec) -> Result { + // TODO use `ensure!()` instead if !>::exists(&candidate) { return Err("vote for non-candidate not allowed"); } + // TODO use `ensure!()` instead if !>::exists(&commitment) { return Err("commitment not found"); } @@ -665,22 +669,26 @@ impl Module { let mut sealed_vote = >::get(&commitment); // only voter can reveal their own votes + // TODO use `ensure!()` instead if !sealed_vote.owned_by(voter) { return Err("only voter can reveal vote"); } let mut salt = salt.clone(); - let valid = sealed_vote.unseal(candidate, &mut salt, ::Hashing::hash)?; - match valid { - true => { - // update the sealed vote - >::insert(commitment, sealed_vote); - Ok(()) - }, - - false => Err("invalid salt") + let is_salt_valid = sealed_vote.unseal(candidate, &mut salt, ::Hashing::hash)?; + if is_salt_valid { + // update the sealed vote + >::insert(commitment, sealed_vote); + Ok(()) + } else { + Err("invalid salt") } } + + // TODO This method should be moved to Membership module once it's created. + fn is_member(sender: T::AccountId) -> bool { + !>::free_balance(sender).is_zero() + } } decl_module! { @@ -688,16 +696,21 @@ decl_module! { fn deposit_event() = default; // No origin so this is a priviledged call - fn on_finalise(now: T::BlockNumber){ - let _ = Self::tick(now); + fn on_finalise(now: T::BlockNumber) { + Self::check_if_stage_is_ending(now); } fn announce_candidacy(origin, stake: T::Balance) -> Result { let sender = ensure_signed(origin)?; + ensure!(Self::is_member(sender.clone()), "Only members can announce their candidacy"); + // Can only announce candidacy during election announcing stage if let Some(stage) = Self::stage() { match stage { - Stage::Announcing(_) => Self::try_add_applicant(sender, stake), + Stage::Announcing(_) => { + // TODO fail fast: ensure that stake >= min_stake + Self::try_add_applicant(sender, stake) + }, _ => Err("election not in announcing stage") } } else { @@ -707,10 +720,15 @@ decl_module! { fn vote_for_candidate(origin, commitment: T::Hash, stake: T::Balance) -> Result { let sender = ensure_signed(origin)?; + ensure!(Self::is_member(sender.clone()), "Only members can vote for a candidate"); + // Can only vote during election voting stage if let Some(stage) = Self::stage() { match stage { - Stage::Voting(_) => Self::try_add_vote(sender, stake, commitment), + Stage::Voting(_) => { + // TODO fail fast: ensure that stake >= min_stake + Self::try_add_vote(sender, stake, commitment) + }, _ => Err("election not in voting stage") } } else { @@ -739,24 +757,24 @@ decl_module! { #[cfg(test)] mod tests { - use super::*; - use ::governance::tests::*; + use super::*; + use ::governance::tests::*; use parity_codec::Encode; #[test] - fn default_paramas_should_work () { - + fn check_default_params() { + // TODO missing test implementation? } #[test] - fn start_election_if_election_running_should_fail() { + fn should_not_start_new_election_if_already_started() { with_externalities(&mut initial_test_ext(), || { - assert!(Election::start_election(None).is_ok()); - assert!(Election::start_election(None).is_err()); + assert_ok!(Election::start_election(None)); + assert_err!(Election::start_election(None), "election already in progress"); }); } - fn assert_announcing_period (expected_period: ::BlockNumber) { + fn assert_announcing_period(expected_period: ::BlockNumber) { assert!(Election::stage().is_some(), "Election Stage was not set"); let election_stage = Election::stage().unwrap(); @@ -778,7 +796,7 @@ mod tests { >::put(20); let prev_round = Election::round(); - Election::start_election(None); + assert_ok!(Election::start_election(None)); // election round is bumped assert_eq!(Election::round(), prev_round + 1); @@ -922,7 +940,7 @@ mod tests { Balances::set_free_balance(&applicant, 5000); >::put(vec![applicant]); - >::insert(applicant, 1000); + save_council_stake(applicant, 1000); >::put(vec![applicant]); let starting_stake = Stake { @@ -1031,9 +1049,9 @@ mod tests { >::put(vec![1,2,3]); - >::insert(1, 50); - >::insert(2, 0); - >::insert(3, 0); + save_council_stake(1, 50); + save_council_stake(2, 0); + save_council_stake(3, 0); >::insert(1, Stake { refundable: 100, @@ -1091,12 +1109,20 @@ mod tests { }); } + fn save_council_stake(id: u64, stake: u32) { + >::insert(id, stake); + } + + fn save_backing_stake(id: u64, stake: u32) { + >::insert(id, stake); + } + #[test] fn votes_can_be_covered_by_transferable_stake () { with_externalities(&mut initial_test_ext(), || { Balances::set_free_balance(&20, 1000); - >::insert(20, 500); + save_backing_stake(20, 500); let payload = vec![10u8]; let commitment = ::Hashing::hash(&payload[..]); @@ -1119,7 +1145,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { Balances::set_free_balance(&20, 100); - >::insert(20, 500); + save_backing_stake(20, 500); let payload = vec![10u8]; let commitment = ::Hashing::hash(&payload[..]); @@ -1136,7 +1162,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { Balances::set_free_balance(&20, 1000); - >::insert(20, 500); + save_backing_stake(20, 500); let payload = vec![10u8]; let commitment = ::Hashing::hash(&payload[..]); @@ -1176,7 +1202,7 @@ mod tests { refundable: 100, transferred: 0 }, commitment)); - assert!(>::get(commitment).get_vote().is_none()); + assert!(>::get(commitment).is_not_revealed()); assert!(Election::try_reveal_vote(voter, commitment, candidate, salt).is_ok()); assert_eq!(>::get(commitment).get_vote().unwrap(), candidate); }); @@ -1196,9 +1222,9 @@ mod tests { refundable: 100, transferred: 0 }, commitment)); - assert!(>::get(commitment).get_vote().is_none()); + assert!(>::get(commitment).is_not_revealed()); assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); - assert!(>::get(commitment).get_vote().is_none()); + assert!(>::get(commitment).is_not_revealed()); }); } @@ -1228,9 +1254,9 @@ mod tests { refundable: 100, transferred: 0 }, commitment)); - assert!(>::get(commitment).get_vote().is_none()); + assert!(>::get(commitment).is_not_revealed()); assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); - assert!(>::get(commitment).get_vote().is_none()); + assert!(>::get(commitment).is_not_revealed()); }); } @@ -1249,9 +1275,9 @@ mod tests { refundable: 100, transferred: 0 }, commitment)); - assert!(>::get(commitment).get_vote().is_none()); + assert!(>::get(commitment).is_not_revealed()); assert!(Election::try_reveal_vote(not_voter, commitment, candidate, salt).is_err()); - assert!(>::get(commitment).get_vote().is_none()); + assert!(>::get(commitment).is_not_revealed()); }); } @@ -1382,7 +1408,7 @@ mod tests { transferred: 50 as u32, }); - >::insert(100, 100); + save_council_stake(100, 100); let mut new_council: BTreeMap> = BTreeMap::new(); new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); @@ -1409,9 +1435,9 @@ mod tests { Balances::set_free_balance(&20, 2000); Balances::set_free_balance(&30, 3000); - >::insert(10, 100); - >::insert(20, 200); - >::insert(30, 300); + save_backing_stake(10, 100); + save_backing_stake(20, 200); + save_backing_stake(30, 300); let votes = mock_votes(vec![ // (voter, stake[refundable], stake[transferred], candidate) @@ -1451,16 +1477,16 @@ mod tests { >::put(vec![10,20,30]); Balances::set_free_balance(&10, 1000); - >::insert(10, 100); - >::insert(10, 50); + save_backing_stake(10, 100); + save_council_stake(10, 50); Balances::set_free_balance(&20, 2000); - >::insert(20, 200); - >::insert(20, 60); + save_backing_stake(20, 200); + save_council_stake(20, 60); Balances::set_free_balance(&30, 3000); - >::insert(30, 300); - >::insert(30, 70); + save_backing_stake(30, 300); + save_council_stake(30, 70); Election::refund_transferable_stakes(); @@ -1505,7 +1531,7 @@ mod tests { } System::set_block_number(1); - Election::start_election(None); + assert_ok!(Election::start_election(None)); for i in 1..20 { assert!(Election::announce_candidacy(Origin::signed(i), 150).is_ok()); @@ -1514,7 +1540,7 @@ mod tests { let n = 1 + Election::announcing_period(); System::set_block_number(n); - Election::tick(n); + Election::on_finalise(n); for i in 1..20 { assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![40u8]), 100).is_ok()); @@ -1526,7 +1552,7 @@ mod tests { let n = n + Election::voting_period(); System::set_block_number(n); - Election::tick(n); + Election::on_finalise(n); for i in 1..20 { assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![40u8]), i, vec![40u8]).is_ok()); @@ -1538,7 +1564,7 @@ mod tests { let n = n + Election::revealing_period(); System::set_block_number(n); - Election::tick(n); + Election::on_finalise(n); assert!(Council::council().is_some()); assert_eq!(Council::council().unwrap().len(), Election::council_size()); diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index f5225aae82..54f9bccd9a 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -25,7 +25,8 @@ pub mod tests { pub use self::sr_io::with_externalities; pub use self::substrate_primitives::{H256, Blake2Hasher}; pub use self::sr_primitives::{ - BuildStorage, traits::BlakeTwo256, traits::IdentityLookup, + BuildStorage, + traits::{BlakeTwo256, OnFinalise, IdentityLookup}, testing::{Digest, DigestItem, Header, UintAuthorityId} }; @@ -115,6 +116,6 @@ pub mod tests { pub type Election = election::Module; pub type Council = council::Module; pub type Proposals = proposals::Module; - pub type System = system::Module; - pub type Balances = balances::Module; + pub type System = system::Module; + pub type Balances = balances::Module; } \ No newline at end of file diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 09ca528ea8..090a7a7a90 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -1,6 +1,6 @@ use srml_support::{storage, StorageValue, StorageMap, dispatch::Result}; use primitives::{storage::well_known_keys}; -use runtime_primitives::traits::{As, Hash, Zero, CheckedAdd}; +use runtime_primitives::traits::{As, Hash, Zero}; use runtime_io::print; use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 8a60fb27f1..a8e425afbf 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -35,26 +35,21 @@ decl_storage! { /// Event for this module. decl_event!( - pub enum Event where ::BlockNumber { + pub enum Event where ::BlockNumber { + // TODO add more useful info to events? ElectionStarted(), CouncilTermEnded(), Dummy(BlockNumber), - } + } ); impl Module { - fn tick (n: T::BlockNumber) { - - } + // Nothing yet } decl_module! { pub struct Module for enum Call where origin: T::Origin { fn deposit_event() = default; - - fn on_finalise(n: T::BlockNumber) { - Self::tick(n); - } } } @@ -68,7 +63,7 @@ impl council::CouncilTermEnded for Module { let params = Self::election_parameters(); if T::TriggerElection::trigger_election(current_council, params).is_ok() { - print("Election Started"); + // print("Election Started"); Self::deposit_event(RawEvent::ElectionStarted()); } } @@ -77,15 +72,15 @@ impl council::CouncilTermEnded for Module { #[cfg(test)] mod tests { - use super::*; - use ::governance::tests::*; + use super::*; + use ::governance::tests::*; #[test] fn election_is_triggerred_when_council_term_ends() { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); - assert!(Council::term_ended(1)); + assert!(Council::is_term_ended(1)); assert!(Election::stage().is_none()); ::council_term_ended(); diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index 32c408f8d6..25a98d2ce7 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -45,23 +45,29 @@ impl SealedVote payload.append(salt); // hash the payload, if it matches the commitment it is a valid revealing of the vote - self.vote = match self.commitment == hasher(&payload) { - true => Some(vote), - false => None, - }; + if self.commitment == hasher(&payload) { + self.vote = Some(vote); + } Ok(self.was_revealed()) } + // TODO do we really need this method? just .vote pub fn get_vote(&self) -> &Option { &self.vote } + // TODO rename to 'is_owned_by'? pub fn owned_by(&self, someone: AccountId) -> bool { someone == self.voter } + // TODO rename to 'is_revealed'? pub fn was_revealed(&self) -> bool { self.vote.is_some() } + + pub fn is_not_revealed(&self) -> bool { + self.vote.is_none() + } } \ No newline at end of file diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/transferable_stake.rs index 7361479eb5..19e09b28ea 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/transferable_stake.rs @@ -95,7 +95,7 @@ mod tests { } #[test] - fn equality(){ + fn equality() { let a1: u128 = 3; let b1: u128 = 2; let a2: u128 = 2; let b2: u128 = 3; let a3: u128 = 10; let b3: u128 = 10; From 76e8f0b2b3c0c8fe48501f21924bf0ab68b5e167 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 6 Feb 2019 16:07:12 +0200 Subject: [PATCH 089/350] Add missing import for Vec --- runtime/src/governance/council.rs | 1 + runtime/src/governance/election.rs | 2 ++ runtime/src/governance/root.rs | 2 -- runtime/src/governance/sealed_vote.rs | 1 - 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 87edff163f..a1480fcff2 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -1,6 +1,7 @@ #![cfg_attr(not(feature = "std"), no_std)] use srml_support::{StorageValue}; +use srml_support::dispatch::Vec; use runtime_primitives::traits::{As}; use {balances}; diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 45663ae876..47d6690768 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,6 +1,7 @@ #![cfg_attr(not(feature = "std"), no_std)] use srml_support::{StorageValue, StorageMap, dispatch::Result}; +use srml_support::dispatch::Vec; use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; use {balances, system::{ensure_signed}}; use runtime_io::print; @@ -421,6 +422,7 @@ impl Module { // Do a refund if commitment was not revealed or vote was for candidate that did // not get elected to the council // TODO critical: shouldn't we slash the stake in such a case? This is the whole idea behid staking on something: people need to decide carefully and be responsible for their bahavior because they can loose their stake + // See https://github.com/Joystream/substrate-node-joystream/issues/4 let do_refund = match sealed_vote.get_vote() { Some(candidate) => !new_council.contains_key(&candidate), None => true diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index a8e425afbf..a2b0f615df 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -1,9 +1,7 @@ #![cfg_attr(not(feature = "std"), no_std)] use srml_support::{StorageValue, StorageMap, dispatch::Result}; - use governance::{council, election}; - use runtime_io::print; // Hook For starting election diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index 25a98d2ce7..c3fcba622b 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -52,7 +52,6 @@ impl SealedVote Ok(self.was_revealed()) } - // TODO do we really need this method? just .vote pub fn get_vote(&self) -> &Option { &self.vote } From 911fa0c5e48c84761f9b5b39399b83150cf979c3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 6 Feb 2019 17:46:17 +0200 Subject: [PATCH 090/350] remove commented out code --- runtime/src/governance/election.rs | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index dcc3de5cc9..d1ac57f10f 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -4,14 +4,12 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result}; use srml_support::dispatch::Vec; use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; use {balances, system::{ensure_signed}}; -use runtime_io::print; use rstd::collections::btree_map::BTreeMap; use rstd::ops::Add; use super::transferable_stake::Stake; use super::sealed_vote::SealedVote; -use super::root; pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; @@ -128,7 +126,7 @@ decl_storage! { BackingStakeHolders get(backing_stakeholders): Vec; CouncilStakeHolders get(council_stakeholders): Vec; - // TODO Could these two maps can be merged into one? + // TODO Could these two maps can be merged into one? // If yes, then it will simplify/generalize other code where they are used. AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; @@ -149,7 +147,7 @@ decl_storage! { // TODO consider usize -> u32 (in Substrate code they use u32 for counts) CouncilSize get(council_size): usize = 10; - + // should be greater than council_size, better to derive it as a multiple of council_size? // TODO consider usize -> u32 (in Substrate code they use u32 for counts) CandidacyLimit get(candidacy_limit): usize = 20; @@ -212,8 +210,6 @@ impl Module { } fn bump_round() -> u32 { - // bump the round number - comment is redundant because the method's name is self explanatory ;) - // print("Bumping Election Round"); >::mutate(|n| { *n += 1; *n @@ -228,7 +224,7 @@ impl Module { let next_round = Self::bump_round(); Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); - // print("Announcing Started"); + period } @@ -272,7 +268,6 @@ impl Module { >::put(Stage::Voting(period)); Self::deposit_event(RawEvent::VotingStarted()); - // print("Voting Started"); } fn on_voting_ended() { @@ -286,7 +281,6 @@ impl Module { >::put(Stage::Revealing(period)); Self::deposit_event(RawEvent::RevealingStarted()); - // print("Revealing Started"); } fn on_revealing_ended() { @@ -351,7 +345,6 @@ impl Module { T::CouncilElected::council_elected(new_council, Self::new_term_duration()); Self::deposit_event(RawEvent::CouncilElected()); - // print("Election Completed"); } fn refund_transferable_stakes() { @@ -525,7 +518,6 @@ impl Module { } fn check_if_stage_is_ending(now: T::BlockNumber) { - // print("Election: check_if_stage_is_ending"); if let Some(stage) = Self::stage() { match stage { Stage::Announcing(ends) => if ends == now { @@ -582,7 +574,7 @@ impl Module { // TODO: notice: next ~20 lines look similar to what we have in `try_add_vote`. Consider refactoring let mut new_stake: Stake = Default::default(); - new_stake.transferred = + new_stake.transferred = if transferable_stake >= stake { stake } else { @@ -641,7 +633,7 @@ impl Module { // TODO: notice: next ~20 lines look similar to what we have in `try_add_aaplicant`. Consider refactoring let mut vote_stake: Stake = Default::default(); - vote_stake.transferred = + vote_stake.transferred = if transferable_stake >= stake { stake } else { @@ -721,7 +713,7 @@ decl_module! { fn announce_candidacy(origin, stake: T::Balance) -> Result { let sender = ensure_signed(origin)?; ensure!(Self::is_member(sender.clone()), "Only members can announce their candidacy"); - + // Can only announce candidacy during election announcing stage if let Some(stage) = Self::stage() { match stage { From 6e54e00b556c861958882816513f3a42dcf855db Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 6 Feb 2019 17:54:23 +0200 Subject: [PATCH 091/350] rename total_stake -> calc_total_stake --- runtime/src/governance/election.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d1ac57f10f..8dbaab1071 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -35,8 +35,7 @@ pub struct Seat { impl Seat where Stake: Add + Copy, { - // TODO rename to 'calc_total_stake' to emphasize iteration - pub fn total_stake(&self) -> Stake { + pub fn calc_total_stake(&self) -> Stake { self.backers.iter().fold(self.stake, |acc, backer| acc + backer.stake) } } @@ -506,7 +505,7 @@ impl Module { // TODO: order by number of votes, then number of backers seats.sort_by_key(|applicant| { - tally.get(&applicant).map_or(Zero::zero(), |seat| seat.total_stake()) + tally.get(&applicant).map_or(Zero::zero(), |seat| seat.calc_total_stake()) }); // seats at bottom of list From 088ea02278a22eff9b1d7c6db1d1ffb28f586fc2 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 6 Feb 2019 18:37:40 +0200 Subject: [PATCH 092/350] chabge usize to u32 for state variables --- runtime/src/governance/election.rs | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 8dbaab1071..fa9c2ae937 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -85,8 +85,8 @@ pub struct ElectionParameters { pub announcing_period: BlockNumber, pub voting_period: BlockNumber, pub revealing_period: BlockNumber, - pub council_size: usize, // TODO consider usize -> u32 (in Substrate code they use u32 for counts) - pub candidacy_limit: usize, // TODO consider usize -> u32 (in Substrate code they use u32 for counts) + pub council_size: u32, + pub candidacy_limit: u32, pub min_council_stake: Balance, pub new_term_duration: BlockNumber, } @@ -145,11 +145,11 @@ decl_storage! { RevealingPeriod get(revealing_period): T::BlockNumber = T::BlockNumber::sa(20); // TODO consider usize -> u32 (in Substrate code they use u32 for counts) - CouncilSize get(council_size): usize = 10; + CouncilSize get(council_size): u32 = 10; // should be greater than council_size, better to derive it as a multiple of council_size? // TODO consider usize -> u32 (in Substrate code they use u32 for counts) - CandidacyLimit get(candidacy_limit): usize = 20; + CandidacyLimit get(candidacy_limit): u32 = 20; MinCouncilStake get(min_council_stake): T::Balance = T::Balance::sa(100); NewTermDuration get(new_term_duration): T::BlockNumber = T::BlockNumber::sa(1000); @@ -184,6 +184,14 @@ impl TriggerElection, ElectionParamete } impl Module { + fn council_size_usize() -> usize { + Self::council_size() as usize + } + + fn candidacy_limit_usize() -> usize { + Self::candidacy_limit() as usize + } + fn set_election_parameters(params: ElectionParameters) { >::put(params.announcing_period); >::put(params.voting_period); @@ -248,11 +256,11 @@ impl Module { fn on_announcing_ended() { let mut applicants = Self::applicants(); - if applicants.len() < Self::council_size() { + if applicants.len() < Self::council_size_usize() { // Not enough candidates announced candidacy Self::move_to_announcing_stage(); } else { - let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, Self::candidacy_limit()); + let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, Self::candidacy_limit_usize()); Self::drop_applicants(rejected); @@ -307,12 +315,12 @@ impl Module { } } - if new_council.len() == Self::council_size() { + if new_council.len() == Self::council_size_usize() { // all candidates in the tally will form the new council - } else if new_council.len() > Self::council_size() { + } else if new_council.len() > Self::council_size_usize() { // we have more than enough elected candidates to form the new council // select top staked prioritised by stake - Self::filter_top_staked(&mut new_council, Self::council_size()); + Self::filter_top_staked(&mut new_council, Self::council_size_usize()); } else { // Not enough candidates with votes to form a council. // This may happen if we didn't add candidates with zero votes to the tally, @@ -998,7 +1006,7 @@ mod tests { } // make sure we are testing the condition that we don't have enough applicants - assert!(Election::council_size() > applicants.len()); + assert!(Election::council_size_usize() > applicants.len()); // try to move to voting stage System::set_block_number(ann_ends); @@ -1576,7 +1584,7 @@ mod tests { Election::on_finalise(n); assert!(Council::council().is_some()); - assert_eq!(Council::council().unwrap().len(), Election::council_size()); + assert_eq!(Council::council().unwrap().len(), Election::council_size_usize()); for (i, seat) in Council::council().unwrap().iter().enumerate() { assert_eq!(seat.member, (i + 1) as u64); } From f2eafeb1d3df71e46e1abbf588f5af3eecac4c1a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 6 Feb 2019 19:16:07 +0200 Subject: [PATCH 093/350] improve naming in council module --- runtime/src/governance/council.rs | 32 +++----- runtime/src/governance/election.rs | 12 +-- runtime/src/governance/proposals.rs | 110 ++++++++++++++-------------- runtime/src/governance/root.rs | 2 +- 4 files changed, 73 insertions(+), 83 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index a1480fcff2..68d39f8b9c 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -1,11 +1,10 @@ #![cfg_attr(not(feature = "std"), no_std)] use srml_support::{StorageValue}; -use srml_support::dispatch::Vec; use runtime_primitives::traits::{As}; use {balances}; -pub use election::{Seats as Council, Seat, CouncilElected}; +pub use election::{Seats, Seat, CouncilElected}; // Hook For announcing that council term has ended pub trait CouncilTermEnded { @@ -29,18 +28,9 @@ pub trait Trait: system::Trait + balances::Trait { } decl_storage! { - trait Store for Module as CouncilInSession { - - // TODO A good practice to keep similar names for both storage and its getter, example: - // ActiveCouncil get(active_council) ... - // TermEndsAt get(term_ends_at) - - // Initial state - council is empty and resigned, which will trigger - // an election in the next block - ActiveCouncil get(council) config(): Option> = None; - - // TODO rename to 'TermEndsAt' because 'at block', not 'on block' - TermEndsOn get(term_ends) config(): T::BlockNumber = T::BlockNumber::sa(0); + trait Store for Module as Council { + ActiveCouncil get(active_council) config(): Option> = None; + TermEndsAt get(term_ends_at) config(): T::BlockNumber = T::BlockNumber::sa(0); } } @@ -52,12 +42,12 @@ decl_event!( } ); -impl CouncilElected, T::BlockNumber> for Module { - fn council_elected(council: Council, term: T::BlockNumber) { - >::put(council); +impl CouncilElected, T::BlockNumber> for Module { + fn council_elected(seats: Seats, term: T::BlockNumber) { + >::put(seats); - let next_term_ends = >::block_number() + term; - >::put(next_term_ends); + let next_term_ends_at = >::block_number() + term; + >::put(next_term_ends_at); Self::deposit_event(RawEvent::NewCouncilInSession()); } } @@ -65,11 +55,11 @@ impl CouncilElected, T::BlockNumber> impl Module { pub fn is_term_ended(block: T::BlockNumber) -> bool { - block >= Self::term_ends() + block >= Self::term_ends_at() } pub fn is_councilor(sender: T::AccountId) -> bool { - if let Some(council) = Self::council() { + if let Some(council) = Self::active_council() { council.iter().any(|c| c.member == sender) } else { false diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index fa9c2ae937..cd77ae56d4 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1521,19 +1521,19 @@ mod tests { new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 10 as u32, backers: vec![]}); new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 20 as u32, backers: vec![]}); - assert!(Council::council().is_none()); + assert!(Council::active_council().is_none()); let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); ::CouncilElected::council_elected(new_council, 10); - assert!(Council::council().is_some()); + assert!(Council::active_council().is_some()); }); } #[test] fn simulation() { with_externalities(&mut initial_test_ext(), || { - assert!(Council::council().is_none()); + assert!(Council::active_council().is_none()); assert!(Election::stage().is_none()); >::put(10); @@ -1583,9 +1583,9 @@ mod tests { System::set_block_number(n); Election::on_finalise(n); - assert!(Council::council().is_some()); - assert_eq!(Council::council().unwrap().len(), Election::council_size_usize()); - for (i, seat) in Council::council().unwrap().iter().enumerate() { + assert!(Council::active_council().is_some()); + assert_eq!(Council::active_council().unwrap().len(), Election::council_size_usize()); + for (i, seat) in Council::active_council().unwrap().iter().enumerate() { assert_eq!(seat.member, (i + 1) as u64); } assert!(Election::stage().is_none()); diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 090a7a7a90..2021ac31f1 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -40,17 +40,17 @@ pub enum ProposalStatus { Cancelled, /// Not enough votes and voting period expired. Expired, - /// To clear the quorum requirement, the percentage of council members with revealed votes + /// To clear the quorum requirement, the percentage of council members with revealed votes /// must be no less than the quorum value for the given proposal type. Approved, Rejected, - /// If all revealed votes are slashes, then the proposal is rejected, + /// If all revealed votes are slashes, then the proposal is rejected, /// and the proposal stake is slashed. Slashed, } impl Default for ProposalStatus { - fn default() -> Self { + fn default() -> Self { ProposalStatus::Pending } } @@ -62,7 +62,7 @@ use self::ProposalStatus::*; pub enum VoteKind { /// Signals presence, but unwillingness to cast judgment on substance of vote. Abstention, - /// Pass, an alternative or a ranking, for binary, multiple choice + /// Pass, an alternative or a ranking, for binary, multiple choice /// and ranked choice propositions, respectively. Approve, /// Against proposal. @@ -72,7 +72,7 @@ pub enum VoteKind { } impl Default for VoteKind { - fn default() -> Self { + fn default() -> Self { VoteKind::Abstention } } @@ -151,19 +151,19 @@ decl_storage! { ApprovalQuorum get(approval_quorum) config(): u32 = APPROVAL_QUORUM; /// Minimum balance amount to be staked in order to make a proposal. - MinimumStake get(minimum_stake) config(): T::Balance = + MinimumStake get(minimum_stake) config(): T::Balance = T::Balance::sa(MIN_STAKE); /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. - CancellationFee get(cancellation_fee) config(): T::Balance = + CancellationFee get(cancellation_fee) config(): T::Balance = T::Balance::sa(CANCELLATION_FEE); /// A fee to be slashed (burn) in case a proposal was rejected. - RejectionFee get(rejection_fee) config(): T::Balance = + RejectionFee get(rejection_fee) config(): T::Balance = T::Balance::sa(REJECTION_FEE); /// Max duration of proposal in blocks until it will be expired if not enough votes. - VotingPeriod get(voting_period) config(): T::BlockNumber = + VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::sa(VOTING_PERIOD_IN_SECS / >::block_period().as_()); // Persistent state (always relevant, changes constantly): @@ -312,7 +312,7 @@ impl Module { } fn councilors_count() -> u32 { - >::council().unwrap_or(vec![]).len() as u32 + >::active_council().unwrap_or(vec![]).len() as u32 } fn approval_quorum_seats() -> u32 { @@ -376,16 +376,16 @@ impl Module { } let quorum_reached = approvals >= quorum; - let new_status: Option = - if all_councilors_voted { + let new_status: Option = + if all_councilors_voted { if quorum_reached { Some(Approved) } else if slashes == councilors { Some(Slashed) } else { Some(Rejected) - } - } else if is_expired { + } + } else if is_expired { if quorum_reached { Some(Approved) } else { @@ -417,7 +417,7 @@ impl Module { Ok(()) } - /// Updates proposal status and removes proposal from pending ids. + /// Updates proposal status and removes proposal from pending ids. fn _update_proposal_status(proposal_id: ProposalId, new_status: ProposalStatus) -> Result { let all_pendings = Self::pending_proposal_ids(); let all_len = all_pendings.len(); @@ -425,7 +425,7 @@ impl Module { .into_iter() .filter(|&id| id != proposal_id) .collect(); - + let not_found_in_pendings = other_pendings.len() == all_len; if not_found_in_pendings { // Seems like this proposal's status has been updated and removed from pendings. @@ -475,14 +475,14 @@ impl Module { fn _approve_proposal(proposal_id: ProposalId) -> Result { let proposal = Self::proposal(proposal_id); let wasm_code = proposal.wasm_code; - + // Return staked deposit to proposer: let _ = >::unreserve(&proposal.proposer, proposal.stake); // TODO fix: this doesn't update storage in tests :( - // println!("> before storage::unhashed::get_raw\n{:?}", + // println!("> before storage::unhashed::get_raw\n{:?}", // storage::unhashed::get_raw(well_known_keys::CODE)); // println!("wasm code: {:?}", wasm_code.clone()); @@ -490,7 +490,7 @@ impl Module { // Update wasm code of node's runtime: storage::unhashed::put_raw(well_known_keys::CODE, &wasm_code.clone()); - // println!("< AFTER storage::unhashed::get_raw\n{:?}", + // println!("< AFTER storage::unhashed::get_raw\n{:?}", // storage::unhashed::get_raw(well_known_keys::CODE)); @@ -587,7 +587,7 @@ mod tests { const PROPOSER1: u64 = 11; const PROPOSER2: u64 = 12; - + const NOT_COUNCILOR: u64 = 22; const ALL_COUNCILORS: [u64; 5] = [ @@ -615,19 +615,19 @@ mod tests { // We use default for brevity, but you can configure as desired if needed. t.extend(balances::GenesisConfig::::default().build_storage().unwrap().0); - let council_mock: council::Council = + let council_mock: council::Seats = ALL_COUNCILORS.iter().map(|&c| council::Seat { member: c, stake: 0u64, backers: vec![], }).collect(); - + t.extend(council::GenesisConfig::{ - council: council_mock, - term_ends: 0 + active_council: council_mock, + term_ends_at: 0 }.build_storage().unwrap().0); - // Here we can override defaults: + // Here we can override defaults: t.extend(GenesisConfig::{ approval_quorum: APPROVAL_QUORUM, minimum_stake: MIN_STAKE, @@ -730,7 +730,7 @@ mod tests { with_externalities(&mut new_test_ext(), || { // In this test a proposer has an empty balance // thus he is not considered as a member. - assert_eq!(self::_create_default_proposal(), + assert_eq!(self::_create_default_proposal(), Err(MSG_ONLY_MEMBERS_CAN_PROPOSE)); }); } @@ -742,7 +742,7 @@ mod tests { Balances::increase_total_stake_by(INITIAL_BALANCE); assert_eq!(self::_create_proposal( - None, Some(MIN_STAKE - 1), None, None, None), + None, Some(MIN_STAKE - 1), None, None, None), Err(MSG_STAKE_IS_TOO_LOW)); // Check that balances remain unchanged afer a failed attempt to create a proposal: @@ -758,7 +758,7 @@ mod tests { Balances::increase_total_stake_by(INITIAL_BALANCE); assert_eq!(self::_create_proposal( - None, Some(INITIAL_BALANCE + 1), None, None, None), + None, Some(INITIAL_BALANCE + 1), None, None, None), Err(MSG_STAKE_IS_GREATER_THAN_BALANCE)); // Check that balances remain unchanged afer a failed attempt to create a proposal: @@ -773,7 +773,7 @@ mod tests { Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); Balances::increase_total_stake_by(INITIAL_BALANCE); assert_eq!(self::_create_proposal( - None, None, Some(vec![]), None, None), + None, None, Some(vec![]), None, None), Err(MSG_EMPTY_NAME_PROVIDED)); }); } @@ -784,7 +784,7 @@ mod tests { Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); Balances::increase_total_stake_by(INITIAL_BALANCE); assert_eq!(self::_create_proposal( - None, None, None, Some(vec![]), None), + None, None, None, Some(vec![]), None), Err(MSG_EMPTY_DESCRIPTION_PROVIDED)); }); } @@ -795,7 +795,7 @@ mod tests { Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); Balances::increase_total_stake_by(INITIAL_BALANCE); assert_eq!(self::_create_proposal( - None, None, None, None, Some(vec![])), + None, None, None, None, Some(vec![])), Err(MSG_EMPTY_WASM_CODE_PROVIDED)); }); } @@ -817,7 +817,7 @@ mod tests { // Check that proposer's balance reduced by cancellation fee and other part of his stake returned to his balance: assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - CANCELLATION_FEE); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - + // TODO expect event ProposalCancelled(AccountId, ProposalId) }); } @@ -836,7 +836,7 @@ mod tests { let updated_free_balance = Balances::free_balance(PROPOSER1); let updated_reserved_balance = Balances::reserved_balance(PROPOSER1); - assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1), + assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1), Err(MSG_PROPOSAL_FINALIZED)); // Check that proposer's balance and locked stake haven't been changed: @@ -852,7 +852,7 @@ mod tests { Balances::set_free_balance(&PROPOSER2, INITIAL_BALANCE); Balances::increase_total_stake_by(INITIAL_BALANCE * 2); assert_ok!(self::_create_default_proposal()); - assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), + assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), Err(MSG_YOU_DONT_OWN_THIS_PROPOSAL)); }); } @@ -888,7 +888,7 @@ mod tests { assert_ok!(Proposals::vote_on_proposal( Origin::signed(COUNCILOR1), 1, Approve)); assert_eq!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Approve), + Origin::signed(COUNCILOR1), 1, Approve), Err(MSG_YOU_ALREADY_VOTED)); }); } @@ -902,7 +902,7 @@ mod tests { Some(COUNCILOR1), None, None, None, None )); - // Check that a vote has been sent automatically, + // Check that a vote has been sent automatically, // such as the proposer is a councilor: assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); @@ -916,7 +916,7 @@ mod tests { Balances::increase_total_stake_by(INITIAL_BALANCE); assert_ok!(self::_create_default_proposal()); assert_eq!(Proposals::vote_on_proposal( - Origin::signed(NOT_COUNCILOR), 1, Approve), + Origin::signed(NOT_COUNCILOR), 1, Approve), Err(MSG_ONLY_COUNCILORS_CAN_VOTE)); }); } @@ -929,7 +929,7 @@ mod tests { assert_ok!(self::_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); assert_eq!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Approve), + Origin::signed(COUNCILOR1), 1, Approve), Err(MSG_PROPOSAL_FINALIZED)); }); } @@ -950,7 +950,7 @@ mod tests { assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Approve); } assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - + System::set_block_number(2); Proposals::on_finalise(2); @@ -959,7 +959,7 @@ mod tests { // Try to vote on finalized proposal: assert_eq!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Reject), + Origin::signed(COUNCILOR1), 1, Reject), Err(MSG_PROPOSAL_FINALIZED)); }); } @@ -983,7 +983,7 @@ mod tests { assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Approve); } assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - + assert_runtime_code_empty!(); System::set_block_number(2); @@ -1032,9 +1032,9 @@ mod tests { Origin::signed(ALL_COUNCILORS[i]), 1, vote)); } assert_eq!(Proposals::votes_by_proposal(1).len() as u32, councilors); - + assert_runtime_code_empty!(); - + System::set_block_number(2); Proposals::on_finalise(2); @@ -1079,17 +1079,17 @@ mod tests { Origin::signed(ALL_COUNCILORS[i]), 1, vote)); } assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - + assert_runtime_code_empty!(); let expiration_block = System::block_number() + Proposals::voting_period(); System::set_block_number(2); Proposals::on_finalise(2); - // Check that runtime code has NOT been updated yet, - // because not all councilors voted and voting period is not expired yet. + // Check that runtime code has NOT been updated yet, + // because not all councilors voted and voting period is not expired yet. assert_runtime_code_empty!(); - + System::set_block_number(expiration_block); Proposals::on_finalise(expiration_block); @@ -1136,9 +1136,9 @@ mod tests { Origin::signed(ALL_COUNCILORS[i]), 1, vote)); } assert_eq!(Proposals::votes_by_proposal(1).len() as u32, councilors); - + assert_runtime_code_empty!(); - + System::set_block_number(2); Proposals::on_finalise(2); @@ -1181,9 +1181,9 @@ mod tests { assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Reject); } assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - + assert_runtime_code_empty!(); - + System::set_block_number(2); Proposals::on_finalise(2); @@ -1226,7 +1226,7 @@ mod tests { assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Slash); } assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - + assert_runtime_code_empty!(); System::set_block_number(2); @@ -1253,7 +1253,7 @@ mod tests { // TODO expect event ProposalStatusUpdated(1, Slashed) // TODO fix: event log assertion doesn't work and return empty event in every record - // assert_eq!(*System::events().last().unwrap(), + // assert_eq!(*System::events().last().unwrap(), // EventRecord { // phase: Phase::ApplyExtrinsic(0), // event: RawEvent::ProposalStatusUpdated(1, Slashed), @@ -1280,9 +1280,9 @@ mod tests { Origin::signed(ALL_COUNCILORS[i]), 1, vote)); } assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - + assert_runtime_code_empty!(); - + let expiration_block = System::block_number() + Proposals::voting_period(); System::set_block_number(expiration_block); Proposals::on_finalise(expiration_block); diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 3bf5bf6841..8979624f1f 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -43,7 +43,7 @@ impl council::CouncilTermEnded for Module { Self::deposit_event(RawEvent::CouncilTermEnded()); if >::stage().is_none() { - let current_council = >::council(); + let current_council = >::active_council(); let params = Self::election_parameters(); From a9f80ee60370df88166b669fb8840b1e1045550d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 6 Feb 2019 21:43:09 +0200 Subject: [PATCH 094/350] mkae candidacy_limit a multiple of council size --- runtime/src/governance/election.rs | 32 ++++++++++++++---------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index cd77ae56d4..bfb1f565cc 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -86,7 +86,7 @@ pub struct ElectionParameters { pub voting_period: BlockNumber, pub revealing_period: BlockNumber, pub council_size: u32, - pub candidacy_limit: u32, + pub candidacy_limit_multiple: u32, pub min_council_stake: Balance, pub new_term_duration: BlockNumber, } @@ -100,7 +100,7 @@ impl Default for ElectionParameters voting_period: BlockNumber::sa(100), revealing_period: BlockNumber::sa(100), council_size: 10, - candidacy_limit: 20, + candidacy_limit_multiple: 2, min_council_stake: Balance::sa(100), new_term_duration: BlockNumber::sa(1000), } @@ -140,17 +140,12 @@ decl_storage! { Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; // Parameters election. Set when a new election is started - AnnouncingPeriod get(announcing_period): T::BlockNumber = T::BlockNumber::sa(20); - VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa(20); - RevealingPeriod get(revealing_period): T::BlockNumber = T::BlockNumber::sa(20); - - // TODO consider usize -> u32 (in Substrate code they use u32 for counts) - CouncilSize get(council_size): u32 = 10; - - // should be greater than council_size, better to derive it as a multiple of council_size? - // TODO consider usize -> u32 (in Substrate code they use u32 for counts) - CandidacyLimit get(candidacy_limit): u32 = 20; + AnnouncingPeriod get(announcing_period): T::BlockNumber; + VotingPeriod get(voting_period): T::BlockNumber; + RevealingPeriod get(revealing_period): T::BlockNumber; + CouncilSize get(council_size): u32; + CandidacyLimitMultiple get (candidacy_limit_multiple): u32; MinCouncilStake get(min_council_stake): T::Balance = T::Balance::sa(100); NewTermDuration get(new_term_duration): T::BlockNumber = T::BlockNumber::sa(1000); } @@ -188,8 +183,8 @@ impl Module { Self::council_size() as usize } - fn candidacy_limit_usize() -> usize { - Self::candidacy_limit() as usize + fn candidacy_limit_multiple_usize() -> usize { + Self::candidacy_limit_multiple() as usize } fn set_election_parameters(params: ElectionParameters) { @@ -198,8 +193,8 @@ impl Module { >::put(params.revealing_period); >::put(params.council_size); >::put(params.min_council_stake); - >::put(params.candidacy_limit); >::put(params.new_term_duration); + >::put(params.candidacy_limit_multiple); } fn start_election(current_council: Option>) -> Result { @@ -260,7 +255,10 @@ impl Module { // Not enough candidates announced candidacy Self::move_to_announcing_stage(); } else { - let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, Self::candidacy_limit_usize()); + // upper limit on applicants that will move to voting stage + let multiple = rstd::cmp::max(1, Self::candidacy_limit_multiple_usize()); + let max_applicants = Self::council_size_usize() * multiple; + let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, max_applicants); Self::drop_applicants(rejected); @@ -1541,7 +1539,7 @@ mod tests { >::put(10); >::put(10); >::put(10); - >::put(20); + >::put(2); for i in 1..20 { Balances::set_free_balance(&(i as u64), 50000); From 68482bb554f41acf9e02ecff803c523839a08e4d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 7 Feb 2019 00:05:46 +0200 Subject: [PATCH 095/350] rename get_top_applicants_by_stake to find_least_staked_applicants --- runtime/src/governance/election.rs | 36 +++++++++++++----------------- runtime/src/governance/root.rs | 3 --- 2 files changed, 15 insertions(+), 24 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index bfb1f565cc..103c28351c 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,12 +1,12 @@ #![cfg_attr(not(feature = "std"), no_std)] use srml_support::{StorageValue, StorageMap, dispatch::Result}; -use srml_support::dispatch::Vec; use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; use {balances, system::{ensure_signed}}; use rstd::collections::btree_map::BTreeMap; use rstd::ops::Add; +use rstd::vec::Vec; use super::transferable_stake::Stake; use super::sealed_vote::SealedVote; @@ -230,22 +230,18 @@ impl Module { period } - // TODO Consider returning only `rejected` such as `top` applicants are used only in tests, but not in the main code. - // TODO rename to 'find_applicants_with_lower_stake'? - fn get_top_applicants_by_stake( + /// Sorts applicants by stake, and returns slice of applicants with least stake. Applicants not + /// returned in the slice are the top `len` highest staked. + fn find_least_staked_applicants ( applicants: &mut Vec, - limit: usize) -> (&[T::AccountId], &[T::AccountId]) + len: usize) -> &[T::AccountId] { - if limit >= applicants.len() { - return (&applicants[..], &[]); + if len >= applicants.len() { + &[] + } else { + applicants.sort_by_key(|applicant| Self::applicant_stakes(applicant)); + &applicants[0 .. applicants.len() - len] } - - applicants.sort_by_key(|applicant| Self::applicant_stakes(applicant)); - - let rejected = &applicants[0 .. applicants.len() - limit]; - let top = &applicants[applicants.len() - limit..]; - - (top, rejected) } fn on_announcing_ended() { @@ -257,10 +253,10 @@ impl Module { } else { // upper limit on applicants that will move to voting stage let multiple = rstd::cmp::max(1, Self::candidacy_limit_multiple_usize()); - let max_applicants = Self::council_size_usize() * multiple; - let (_, rejected) = Self::get_top_applicants_by_stake(&mut applicants, max_applicants); + let candidacy_limit = Self::council_size_usize() * multiple; + let applicants_to_drop = Self::find_least_staked_applicants(&mut applicants, candidacy_limit); - Self::drop_applicants(rejected); + Self::drop_applicants(applicants_to_drop); Self::move_to_voting_stage(); } @@ -1034,8 +1030,7 @@ mod tests { }); } - let (candidates, rejected) = Election::get_top_applicants_by_stake(&mut applicants, 3); - assert_eq!(candidates.to_vec(), vec![20, 30, 40], "vec"); + let rejected = Election::find_least_staked_applicants(&mut applicants, 3); assert_eq!(rejected.to_vec(), vec![10]); >::put(vec![40, 30, 20, 10]); @@ -1049,8 +1044,7 @@ mod tests { } // stable sort is preserving order when two elements are equivalent - let (candidates, rejected) = Election::get_top_applicants_by_stake(&mut applicants, 3); - assert_eq!(candidates.to_vec(), vec![30, 20, 10]); + let rejected = Election::find_least_staked_applicants(&mut applicants, 3); assert_eq!(rejected.to_vec(), vec![40]); }); } diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 8979624f1f..39c6ae63d6 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -4,8 +4,6 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result}; use governance::{council, election::{self, TriggerElection}}; -use runtime_io::print; - pub trait Trait: system::Trait + council::Trait + election::Trait { type Event: From> + Into<::Event>; @@ -48,7 +46,6 @@ impl council::CouncilTermEnded for Module { let params = Self::election_parameters(); if T::TriggerElection::trigger_election(current_council, params).is_ok() { - // print("Election Started"); Self::deposit_event(RawEvent::ElectionStarted()); } } From f874f5fcc9db64411d28d98e15a92ebfbd9b75cf Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 7 Feb 2019 10:01:15 +0200 Subject: [PATCH 096/350] improve naming of stage and round --- runtime/src/governance/election.rs | 49 ++++++++++++++++-------------- runtime/src/governance/root.rs | 2 +- 2 files changed, 27 insertions(+), 24 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 103c28351c..105540537f 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -18,7 +18,7 @@ pub trait Trait: system::Trait + balances::Trait { } #[derive(Clone, Copy, Encode, Decode)] -pub enum Stage { +pub enum ElectionStage { Announcing(BlockNumber), Voting(BlockNumber), Revealing(BlockNumber), @@ -117,10 +117,10 @@ decl_storage! { // AvailableBackingStakes get(available_backing_stakes) ... // Current stage if there is an election ongoing - ElectionStage get(stage): Option>; + Stage get(stage): Option>; // The election round - ElectionRound get(round): u32; + Round get(round): u32; BackingStakeHolders get(backing_stakeholders): Vec; CouncilStakeHolders get(council_stakeholders): Vec; @@ -143,11 +143,10 @@ decl_storage! { AnnouncingPeriod get(announcing_period): T::BlockNumber; VotingPeriod get(voting_period): T::BlockNumber; RevealingPeriod get(revealing_period): T::BlockNumber; - CouncilSize get(council_size): u32; CandidacyLimitMultiple get (candidacy_limit_multiple): u32; - MinCouncilStake get(min_council_stake): T::Balance = T::Balance::sa(100); - NewTermDuration get(new_term_duration): T::BlockNumber = T::BlockNumber::sa(1000); + MinCouncilStake get(min_council_stake): T::Balance; + NewTermDuration get(new_term_duration): T::BlockNumber; } } @@ -171,9 +170,9 @@ impl TriggerElection, ElectionParamete current_council: Option>, params: ElectionParameters) -> Result { - if Self::stage().is_none() { - Self::set_election_parameters(params); - } + ensure!(!Self::is_election_running(), "Election already running"); + + Self::set_election_parameters(params); Self::start_election(current_council) } } @@ -197,8 +196,12 @@ impl Module { >::put(params.candidacy_limit_multiple); } + pub fn is_election_running() -> bool { + Self::stage().is_some() + } + fn start_election(current_council: Option>) -> Result { - ensure!(Self::stage().is_none(), "election already in progress"); + ensure!(!Self::is_election_running(), "election already in progress"); // take snapshot of council and backing stakes of an existing council current_council.map(|c| Self::initialize_transferable_stakes(c)); @@ -212,7 +215,7 @@ impl Module { } fn bump_round() -> u32 { - >::mutate(|n| { + >::mutate(|n| { *n += 1; *n }) @@ -221,7 +224,7 @@ impl Module { fn move_to_announcing_stage() -> T::BlockNumber { let period = Self::new_period(Self::announcing_period()); - >::put(Stage::Announcing(period)); + >::put(ElectionStage::Announcing(period)); let next_round = Self::bump_round(); @@ -266,7 +269,7 @@ impl Module { // TODO check that current stage is Announcing let period = Self::new_period(Self::voting_period()); - >::put(Stage::Voting(period)); + >::put(ElectionStage::Voting(period)); Self::deposit_event(RawEvent::VotingStarted()); } @@ -279,7 +282,7 @@ impl Module { // TODO check that current stage is Voting let period = Self::new_period(Self::revealing_period()); - >::put(Stage::Revealing(period)); + >::put(ElectionStage::Revealing(period)); Self::deposit_event(RawEvent::RevealingStarted()); } @@ -340,7 +343,7 @@ impl Module { Self::refund_transferable_stakes(); Self::clear_transferable_stakes(); - >::kill(); + >::kill(); let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); T::CouncilElected::council_elected(new_council, Self::new_term_duration()); @@ -521,15 +524,15 @@ impl Module { fn check_if_stage_is_ending(now: T::BlockNumber) { if let Some(stage) = Self::stage() { match stage { - Stage::Announcing(ends) => if ends == now { + ElectionStage::Announcing(ends) => if ends == now { Self::deposit_event(RawEvent::AnnouncingEnded()); Self::on_announcing_ended(); }, - Stage::Voting(ends) => if ends == now { + ElectionStage::Voting(ends) => if ends == now { Self::deposit_event(RawEvent::VotingEnded()); Self::on_voting_ended(); }, - Stage::Revealing(ends) => if ends == now { + ElectionStage::Revealing(ends) => if ends == now { Self::deposit_event(RawEvent::RevealingEnded()); Self::on_revealing_ended(); }, @@ -718,7 +721,7 @@ decl_module! { // Can only announce candidacy during election announcing stage if let Some(stage) = Self::stage() { match stage { - Stage::Announcing(_) => { + ElectionStage::Announcing(_) => { // TODO fail fast: ensure that stake >= min_stake Self::try_add_applicant(sender, stake) }, @@ -736,7 +739,7 @@ decl_module! { // Can only vote during election voting stage if let Some(stage) = Self::stage() { match stage { - Stage::Voting(_) => { + ElectionStage::Voting(_) => { // TODO fail fast: ensure that stake >= min_stake Self::try_add_vote(sender, stake, commitment) }, @@ -753,7 +756,7 @@ decl_module! { // Can only reveal vote during election revealing stage if let Some(stage) = Self::stage() { match stage { - Stage::Revealing(_) => Self::try_reveal_vote(sender, commitment, vote, salt), + ElectionStage::Revealing(_) => Self::try_reveal_vote(sender, commitment, vote, salt), _ => Err("election not in revealing stage") } } else { @@ -786,12 +789,12 @@ mod tests { } fn assert_announcing_period(expected_period: ::BlockNumber) { - assert!(Election::stage().is_some(), "Election Stage was not set"); + assert!(Election::is_election_running(), "Election Stage was not set"); let election_stage = Election::stage().unwrap(); match election_stage { - election::Stage::Announcing(period) => { + election::ElectionStage::Announcing(period) => { assert_eq!(period, expected_period, "Election period not set correctly") } _ => { diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 39c6ae63d6..58157c6a8b 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -40,7 +40,7 @@ impl council::CouncilTermEnded for Module { fn council_term_ended() { Self::deposit_event(RawEvent::CouncilTermEnded()); - if >::stage().is_none() { + if !>::is_election_running() { let current_council = >::active_council(); let params = Self::election_parameters(); From 48d292a4793b141a7f80ee072c0eae405fe048ed Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 7 Feb 2019 10:11:44 +0200 Subject: [PATCH 097/350] renaming stake fields for clarity --- runtime/src/governance/election.rs | 74 +++++++++---------- runtime/src/governance/mod.rs | 2 +- .../{transferable_stake.rs => stake.rs} | 32 +++----- 3 files changed, 48 insertions(+), 60 deletions(-) rename runtime/src/governance/{transferable_stake.rs => stake.rs} (73%) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 105540537f..6001b0733a 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -8,7 +8,7 @@ use rstd::collections::btree_map::BTreeMap; use rstd::ops::Add; use rstd::vec::Vec; -use super::transferable_stake::Stake; +use super::stake::Stake; use super::sealed_vote::SealedVote; pub trait Trait: system::Trait + balances::Trait { @@ -394,9 +394,9 @@ impl Module { let stake = >::get(applicant); // return refundable stake to account's free balance - if !stake.refundable.is_zero() { + if !stake.new.is_zero() { let balance = >::free_balance(applicant); - >::set_free_balance(applicant, balance + stake.refundable); + >::set_free_balance(applicant, balance + stake.new); } // return unused transferable stake @@ -444,9 +444,9 @@ impl Module { if do_refund { // return refundable stake to account's free balance let SealedVote { voter, stake, .. } = sealed_vote; - if !stake.refundable.is_zero() { + if !stake.new.is_zero() { let balance = >::free_balance(voter); - >::set_free_balance(voter, balance + stake.refundable); + >::set_free_balance(voter, balance + stake.new); } // return unused transferable stake @@ -585,12 +585,12 @@ impl Module { transferable_stake }; - new_stake.refundable = stake - new_stake.transferred; + new_stake.new = stake - new_stake.transferred; let balance = >::free_balance(&applicant); // TODO use `ensure!()` instead - if new_stake.refundable > balance { + if new_stake.new > balance { return Err("not enough balance to cover stake"); } @@ -602,7 +602,7 @@ impl Module { } // TODO use `ensure!()` instead - if >::decrease_free_balance(&applicant, new_stake.refundable).is_err() { + if >::decrease_free_balance(&applicant, new_stake.new).is_err() { return Err("failed to update balance"); } @@ -644,17 +644,17 @@ impl Module { transferable_stake }; - vote_stake.refundable = stake - vote_stake.transferred; + vote_stake.new = stake - vote_stake.transferred; let balance = >::free_balance(&voter); // TODO use `ensure!()` instead - if vote_stake.refundable > balance { + if vote_stake.new > balance { return Err("not enough balance to cover voting stake"); } // TODO use `ensure!()` instead - if >::decrease_free_balance(&voter, vote_stake.refundable).is_err() { + if >::decrease_free_balance(&voter, vote_stake.new).is_err() { return Err("failed to update balance"); } @@ -916,7 +916,7 @@ mod tests { assert!(Election::try_add_applicant(applicant, stake).is_ok()); assert_eq!(Election::applicants(), vec![applicant]); - assert_eq!(Election::applicant_stakes(applicant).refundable, stake); + assert_eq!(Election::applicant_stakes(applicant).new, stake); assert_eq!(Election::applicant_stakes(applicant).transferred, 0); assert_eq!(Balances::free_balance(&applicant), starting_balance - stake); @@ -932,7 +932,7 @@ mod tests { >::put(vec![applicant]); >::insert(applicant, Stake { - refundable: starting_stake, + new: starting_stake, transferred: 0, }); @@ -940,7 +940,7 @@ mod tests { Balances::set_free_balance(&applicant, additional_stake); assert!(Election::try_add_applicant(applicant, additional_stake).is_ok()); - assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake + additional_stake); + assert_eq!(Election::applicant_stakes(applicant).new, starting_stake + additional_stake); assert_eq!(Election::applicant_stakes(applicant).transferred, 0) }); } @@ -958,21 +958,21 @@ mod tests { >::put(vec![applicant]); let starting_stake = Stake { - refundable: Election::min_council_stake(), + new: Election::min_council_stake(), transferred: 0, }; >::insert(applicant, starting_stake); // transferable stake covers new stake assert!(Election::try_add_applicant(applicant, 600).is_ok()); - assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake.refundable, "refundable"); + assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new, "refundable"); assert_eq!(Election::applicant_stakes(applicant).transferred, 600, "trasferred"); assert_eq!(Election::council_stakes(applicant), 400, "transferrable"); assert_eq!(Balances::free_balance(applicant), 5000, "balance"); // all remaining transferable stake is consumed and free balance covers remaining stake assert!(Election::try_add_applicant(applicant, 1000).is_ok()); - assert_eq!(Election::applicant_stakes(applicant).refundable, starting_stake.refundable + 600, "refundable"); + assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new + 600, "refundable"); assert_eq!(Election::applicant_stakes(applicant).transferred, 1000, "trasferred"); assert_eq!(Election::council_stakes(applicant), 0, "transferrable"); assert_eq!(Balances::free_balance(applicant), 4400, "balance"); @@ -992,7 +992,7 @@ mod tests { // add applicants >::put(vec![10,20,30]); let stake = Stake { - refundable: 10, + new: 10, transferred: 0, }; @@ -1028,7 +1028,7 @@ mod tests { for (i, applicant) in applicants.iter().enumerate() { >::insert(applicant, Stake { - refundable: (i * 10) as u32, + new: (i * 10) as u32, transferred: 0, }); } @@ -1041,7 +1041,7 @@ mod tests { for applicant in applicants.iter() { >::insert(applicant, Stake { - refundable: 20 as u32, + new: 20 as u32, transferred: 0, }); } @@ -1066,17 +1066,17 @@ mod tests { save_council_stake(3, 0); >::insert(1, Stake { - refundable: 100, + new: 100, transferred: 200, }); >::insert(2, Stake { - refundable: 300, + new: 300, transferred: 400, }); >::insert(3, Stake { - refundable: 500, + new: 500, transferred: 600, }); @@ -1084,7 +1084,7 @@ mod tests { assert_eq!(Election::applicants(), vec![1]); - assert_eq!(Election::applicant_stakes(1).refundable, 100); + assert_eq!(Election::applicant_stakes(1).new, 100); assert_eq!(Election::applicant_stakes(1).transferred, 200); assert_eq!(Election::council_stakes(1), 50); assert_eq!(Balances::free_balance(&1), 1000); @@ -1114,7 +1114,7 @@ mod tests { assert_eq!(Election::votes(commitment).voter, 20); assert_eq!(Election::votes(commitment).commitment, commitment); assert_eq!(Election::votes(commitment).stake, Stake { - refundable: 100, + new: 100, transferred: 0, }); assert_eq!(Balances::free_balance(&20), 900); @@ -1145,7 +1145,7 @@ mod tests { assert_eq!(Election::votes(commitment).voter, 20); assert_eq!(Election::votes(commitment).commitment, commitment); assert_eq!(Election::votes(commitment).stake, Stake { - refundable: 0, + new: 0, transferred: 100, }); assert_eq!(Balances::free_balance(&20), 1000); @@ -1185,7 +1185,7 @@ mod tests { assert_eq!(Election::votes(commitment).voter, 20); assert_eq!(Election::votes(commitment).commitment, commitment); assert_eq!(Election::votes(commitment).stake, Stake { - refundable: 0, + new: 0, transferred: 100, }); assert_eq!(Balances::free_balance(&20), 1000); @@ -1208,10 +1208,10 @@ mod tests { let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); let voter = 10 as u64; - >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + >::insert(&candidate, Stake {new: 0, transferred: 0}); >::insert(&commitment, SealedVote::new(voter, Stake { - refundable: 100, transferred: 0 + new: 100, transferred: 0 }, commitment)); assert!(>::get(commitment).is_not_revealed()); @@ -1228,10 +1228,10 @@ mod tests { let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); let voter = 10 as u64; - >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + >::insert(&candidate, Stake {new: 0, transferred: 0}); >::insert(&commitment, SealedVote::new(voter, Stake { - refundable: 100, transferred: 0 + new: 100, transferred: 0 }, commitment)); assert!(>::get(commitment).is_not_revealed()); @@ -1248,7 +1248,7 @@ mod tests { let commitment = make_commitment_for_candidate(100, &mut salt.clone()); let voter = 10 as u64; - >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + >::insert(&candidate, Stake {new: 0, transferred: 0}); assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); }); @@ -1263,7 +1263,7 @@ mod tests { let voter = 10 as u64; >::insert(&commitment, SealedVote::new(voter, Stake { - refundable: 100, transferred: 0 + new: 100, transferred: 0 }, commitment)); assert!(>::get(commitment).is_not_revealed()); @@ -1281,10 +1281,10 @@ mod tests { let voter = 10 as u64; let not_voter = 100 as u64; - >::insert(&candidate, Stake {refundable: 0, transferred: 0}); + >::insert(&candidate, Stake {new: 0, transferred: 0}); >::insert(&commitment, SealedVote::new(voter, Stake { - refundable: 100, transferred: 0 + new: 100, transferred: 0 }, commitment)); assert!(>::get(commitment).is_not_revealed()); @@ -1297,7 +1297,7 @@ mod tests { let commitment = make_commitment_for_candidate(1, &mut vec![0u8]); mock.into_iter().map(|(voter, stake_ref, stake_tran, candidate)| SealedVote::new_unsealed(voter as u64, Stake { - refundable: stake_ref as u32, transferred: stake_tran as u32 + new: stake_ref as u32, transferred: stake_tran as u32 }, commitment, candidate as u64)).collect() } @@ -1416,7 +1416,7 @@ mod tests { Balances::set_free_balance(&100, 1000); >::insert(100, Stake { - refundable: 20 as u32, + new: 20 as u32, transferred: 50 as u32, }); diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 54f9bccd9a..a628f26e7d 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -15,7 +15,7 @@ pub mod council; pub mod root; pub mod proposals; -mod transferable_stake; +mod stake; mod sealed_vote; #[cfg(test)] diff --git a/runtime/src/governance/transferable_stake.rs b/runtime/src/governance/stake.rs similarity index 73% rename from runtime/src/governance/transferable_stake.rs rename to runtime/src/governance/stake.rs index 19e09b28ea..299f3e4f84 100644 --- a/runtime/src/governance/transferable_stake.rs +++ b/runtime/src/governance/stake.rs @@ -7,7 +7,7 @@ use runtime_primitives::traits::{SimpleArithmetic}; pub struct Stake where Balance: Copy + SimpleArithmetic, { - pub refundable: Balance, + pub new: Balance, pub transferred: Balance, } @@ -15,24 +15,12 @@ impl Stake where Balance: Copy + SimpleArithmetic, { pub fn total(&self) -> Balance { - self.refundable + self.transferred + self.new + self.transferred } - // pub fn checked_add(&self, v: &Self) -> Option { - // if let Some(refundable) = self.refundable.checked_add(&v.refundable) { - // if let Some(transferred) = self.transferred.checked_add(&v.transferred) { - // return Some(Self { - // refundable, - // transferred - // }) - // } - // } - // None - // } - pub fn add(&self, v: &Self) -> Self { Self { - refundable: self.refundable + v.refundable, + new: self.new + v.new, transferred: self.transferred + v.transferred } } @@ -67,7 +55,7 @@ mod tests { let a: u128 = 4; let b: u128 = 5; let s = Stake { - refundable: a, + new: a, transferred: b, }; assert_eq!(a + b, s.total()); @@ -79,18 +67,18 @@ mod tests { let a2: u128 = 5; let b2: u128 = 7; let s1 = Stake { - refundable: a1, + new: a1, transferred: b1, }; let s2 = Stake { - refundable: a2, + new: a2, transferred: b2, }; let sum = s1.add(&s2); - assert_eq!(sum.refundable, 8); + assert_eq!(sum.new, 8); assert_eq!(sum.transferred, 9); } @@ -101,7 +89,7 @@ mod tests { let a3: u128 = 10; let b3: u128 = 10; let s1 = Stake { - refundable: a1, + new: a1, transferred: b1, }; @@ -110,14 +98,14 @@ mod tests { assert_eq!(s1, s2); let s3 = Stake { - refundable: a2, + new: a2, transferred: b2, }; assert_eq!(s1, s3); let s4 = Stake { - refundable: a3, + new: a3, transferred: b3, }; From ed4cb568a05a30945d9510b05e0defa8fd9d11ac Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 7 Feb 2019 12:02:30 +0200 Subject: [PATCH 098/350] wip - refactor transferable stakes --- runtime/src/governance/election.rs | 115 ++++++++++++++++------------- 1 file changed, 63 insertions(+), 52 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 6001b0733a..48dba3c00a 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -43,7 +43,7 @@ impl Seat #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] pub struct Backer { - pub member: Id, + pub id: Id, pub stake: Stake, } @@ -107,28 +107,23 @@ impl Default for ElectionParameters } } +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Clone, Copy, Encode, Decode, Default)] +pub struct TransferableStake { + seat: Balance, + backing: Balance, +} + decl_storage! { trait Store for Module as CouncilElection { - - // TODO a good practice to keep similar names for both storage and its getter, examples: - // Stage get(stage) - // ElectionStage get(election_stage) - // BackingStakeHolders get(backing_stake_holders) ... - // AvailableBackingStakes get(available_backing_stakes) ... - // Current stage if there is an election ongoing Stage get(stage): Option>; // The election round Round get(round): u32; - BackingStakeHolders get(backing_stakeholders): Vec; - CouncilStakeHolders get(council_stakeholders): Vec; - - // TODO Could these two maps can be merged into one? - // If yes, then it will simplify/generalize other code where they are used. - AvailableBackingStakesMap get(backing_stakes): map T::AccountId => T::Balance; - AvailableCouncilStakesMap get(council_stakes): map T::AccountId => T::Balance; + ExistingStakeHolders get(existing_stake_holders): Vec; + TransferableStakes get(transferable_stakes): map T::AccountId => TransferableStake; Applicants get(applicants): Vec; ApplicantStakes get(applicant_stakes): map T::AccountId => Stake; @@ -542,72 +537,88 @@ impl Module { /// Takes a snapshot of the stakes from the current council fn initialize_transferable_stakes(current_council: Seats) { - let mut council_accounts: Vec = Vec::new(); - let mut backer_accounts: Vec = Vec::new(); + let mut stakeholder_accounts: Vec = Vec::new(); + for ref seat in current_council.iter() { - let id = seat.member.clone(); - >::insert(&id, seat.stake); - council_accounts.push(id); + let id = seat.member; + + if >::exists(&id) { + >::mutate(&id, |transferbale_stake| *transferbale_stake = TransferableStake { + seat: transferbale_stake.seat + seat.stake, + backing: transferbale_stake.backing, + }); + } else { + >::insert(&id, TransferableStake { + seat: seat.stake, + backing: T::Balance::zero(), + }); + + stakeholder_accounts.push(id.clone()); + } + for ref backer in seat.backers.iter() { - let id = backer.member.clone(); - if !>::exists(&id) { - >::insert(&id, backer.stake); - backer_accounts.push(id); + let id = backer.id.clone(); + + if >::exists(id) { + >::mutate(&id, |transferbale_stake| *transferbale_stake = TransferableStake { + seat: transferbale_stake.seat, + backing: transferbale_stake.backing + backer.stake, + }); } else { - >::mutate(&backer.member, |stake| *stake += backer.stake); + >::insert(&id, TransferableStake { + seat: T::Balance::zero(), + backing: backer.stake, + }); + + stakeholder_accounts.push(id.clone()); } } } - >::put(council_accounts); - >::put(backer_accounts); + >::put(stakeholder_accounts); + } + + fn consume_transferable_seat_stake() -> Stake { + } fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { - let applicant_stake = match >::exists(&applicant) { - false => Default::default(), //zero - true => >::get(&applicant) - }; + let applicant_stake = + if >::exists(&applicant) { + >::get(&applicant) + } else { + Default::default() //zero + }; - let applicant_has_council_stake = >::exists(&applicant); - let transferable_stake = match applicant_has_council_stake { - false => Default::default(), //zero - true => >::get(&applicant) - }; + let is_existing_stakeholder = >::exists(&applicant); + + let mut transferable_stake = >::get(&applicant); // TODO: notice: next ~20 lines look similar to what we have in `try_add_vote`. Consider refactoring let mut new_stake: Stake = Default::default(); new_stake.transferred = - if transferable_stake >= stake { + if transferable_stake.seat >= stake { stake } else { - transferable_stake + transferable_stake.seat }; new_stake.new = stake - new_stake.transferred; + transferable_stake.seat = transferable_stake.seat - new_stake.transferred; let balance = >::free_balance(&applicant); - // TODO use `ensure!()` instead - if new_stake.new > balance { - return Err("not enough balance to cover stake"); - } + ensure!(new_stake.new > balance, "not enough balance to cover stake"); let total_stake = applicant_stake.add(&new_stake); - // TODO use `ensure!()` instead - if Self::min_council_stake() > total_stake.total() { - return Err("minimum stake not met"); - } + ensure!(Self::min_council_stake() > total_stake.total(), "minimum stake not met"); - // TODO use `ensure!()` instead - if >::decrease_free_balance(&applicant, new_stake.new).is_err() { - return Err("failed to update balance"); - } + ensure!(balances::Module>::decrease_free_balance(&applicant, new_stake.new).is_ok(), "failed to update balance"); - if applicant_has_council_stake { - >::insert(&applicant, transferable_stake - new_stake.transferred); + if is_existing_stakeholder { + >::insert(&applicant, transferable_stake); } if !>::exists(&applicant) { From 50e156eebf2575a1e893825d8d7871101d4da61b Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 7 Feb 2019 14:55:06 +0200 Subject: [PATCH 099/350] Scripts build-runtime.sh and build-node.sh --- README.md | 20 ++++++++++++++++---- build-node.sh | 4 ++++ build.sh => build-runtime.sh | 0 init.sh | 5 ++--- 4 files changed, 22 insertions(+), 7 deletions(-) create mode 100755 build-node.sh rename build.sh => build-runtime.sh (100%) diff --git a/README.md b/README.md index eb5b2a13f5..775255d71d 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,18 @@ It will take some time (tens of minutes), so be patient. ./init.sh ``` -## Build runtime +## Build -Call this script every time you updated a runtime, before restarting a node. +### Build runtime (WASM) ```bash -./build.sh +./build-runtime.sh +``` + +### Build node (native) + +```bash +./build-node.sh ``` ## Start node @@ -27,7 +33,7 @@ Call this script every time you updated a runtime, before restarting a node. ## Clean chain data -It's a good practice to clean chain data after a runtime updated and you are about to restart a node. +It's a good practice to clean chain data after you rebuilt a node and about to restart a it. ```bash ./clean-chain.sh @@ -35,6 +41,12 @@ It's a good practice to clean chain data after a runtime updated and you are abo ## Test +### Run all tests + ```bash ./test-all.sh ``` + +### Test a specific module + +Check out `./test-proposals.sh` on how to run tests for a specific module. diff --git a/build-node.sh b/build-node.sh new file mode 100755 index 0000000000..4f5a9c5a80 --- /dev/null +++ b/build-node.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +echo "Building node..." +cargo build --release diff --git a/build.sh b/build-runtime.sh similarity index 100% rename from build.sh rename to build-runtime.sh diff --git a/init.sh b/init.sh index 69c17dffc8..cfc893f587 100755 --- a/init.sh +++ b/init.sh @@ -3,7 +3,6 @@ echo "Initialising webassembly build environment..." ./init-wasm.sh 2>/dev/null >/dev/null -./build.sh +./build-runtime.sh -echo "Building node..." -cargo build --release +./build-node.sh From c4ba806e58f6927d6f4bf1a5f2b8becf8d9ccae4 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 7 Feb 2019 15:47:46 +0200 Subject: [PATCH 100/350] refactored transferable stakes --- runtime/src/governance/election.rs | 318 ++++++++++++++--------------- 1 file changed, 153 insertions(+), 165 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 48dba3c00a..35b951acaf 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -43,7 +43,7 @@ impl Seat #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] pub struct Backer { - pub id: Id, + pub member: Id, pub stake: Stake, } @@ -348,34 +348,21 @@ impl Module { fn refund_transferable_stakes() { // move stakes back to account holder's free balance - for stakeholder in Self::backing_stakeholders().iter() { - let stake = Self::backing_stakes(stakeholder); - if !stake.is_zero() { + for stakeholder in Self::existing_stake_holders().iter() { + let stake = Self::transferable_stakes(stakeholder); + if !stake.seat.is_zero() || !stake.backing.is_zero() { let balance = >::free_balance(stakeholder); - >::set_free_balance(stakeholder, balance + stake); - } - } - - for stakeholder in Self::council_stakeholders().iter() { - let stake = Self::council_stakes(stakeholder); - if !stake.is_zero() { - let balance = >::free_balance(stakeholder); - >::set_free_balance(stakeholder, balance + stake); + >::set_free_balance(stakeholder, balance + stake.seat + stake.backing); } } } fn clear_transferable_stakes() { - for stakeholder in Self::backing_stakeholders() { - >::remove(stakeholder); - } - - for stakeholder in Self::council_stakeholders() { - >::remove(stakeholder); + for stakeholder in Self::existing_stake_holders() { + >::remove(stakeholder); } - >::kill(); - >::kill(); + >::kill(); } fn clear_applicants() { @@ -396,7 +383,7 @@ impl Module { // return unused transferable stake if !stake.transferred.is_zero() { - >::mutate(applicant, |transferred_stake| *transferred_stake += stake.transferred); + >::mutate(applicant, |transferable| (*transferable).seat += stake.transferred); } } @@ -446,7 +433,7 @@ impl Module { // return unused transferable stake if !stake.transferred.is_zero() { - >::mutate(voter, |transferred_stake| *transferred_stake += stake.transferred); + >::mutate(voter, |transferable| (*transferable).backing += stake.transferred); } } } @@ -539,38 +526,38 @@ impl Module { fn initialize_transferable_stakes(current_council: Seats) { let mut stakeholder_accounts: Vec = Vec::new(); - for ref seat in current_council.iter() { - let id = seat.member; + for seat in current_council.into_iter() { + let Seat { member, stake, .. } = seat; - if >::exists(&id) { - >::mutate(&id, |transferbale_stake| *transferbale_stake = TransferableStake { - seat: transferbale_stake.seat + seat.stake, + if >::exists(&member) { + >::mutate(&member, |transferbale_stake| *transferbale_stake = TransferableStake { + seat: transferbale_stake.seat + stake, backing: transferbale_stake.backing, }); } else { - >::insert(&id, TransferableStake { - seat: seat.stake, + >::insert(&member, TransferableStake { + seat: stake, backing: T::Balance::zero(), }); - stakeholder_accounts.push(id.clone()); + stakeholder_accounts.push(member); } - for ref backer in seat.backers.iter() { - let id = backer.id.clone(); + for backer in seat.backers.into_iter() { + let Backer { member, stake, ..} = backer; - if >::exists(id) { - >::mutate(&id, |transferbale_stake| *transferbale_stake = TransferableStake { + if >::exists(&member) { + >::mutate(&member, |transferbale_stake| *transferbale_stake = TransferableStake { seat: transferbale_stake.seat, - backing: transferbale_stake.backing + backer.stake, + backing: transferbale_stake.backing + stake, }); } else { - >::insert(&id, TransferableStake { + >::insert(&member, TransferableStake { seat: T::Balance::zero(), - backing: backer.stake, + backing: stake, }); - stakeholder_accounts.push(id.clone()); + stakeholder_accounts.push(member); } } } @@ -578,46 +565,39 @@ impl Module { >::put(stakeholder_accounts); } - fn consume_transferable_seat_stake() -> Stake { - - } - - fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { - let applicant_stake = - if >::exists(&applicant) { - >::get(&applicant) + fn new_stake_reusing_transferable(transferable: &mut T::Balance, new_stake: T::Balance) -> Stake { + let transferred = + if *transferable >= new_stake { + new_stake } else { - Default::default() //zero + *transferable }; - let is_existing_stakeholder = >::exists(&applicant); - - let mut transferable_stake = >::get(&applicant); + *transferable = *transferable - transferred; - // TODO: notice: next ~20 lines look similar to what we have in `try_add_vote`. Consider refactoring - let mut new_stake: Stake = Default::default(); + Stake { + new: new_stake - transferred, + transferred, + } + } - new_stake.transferred = - if transferable_stake.seat >= stake { - stake - } else { - transferable_stake.seat - }; + fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { + let mut transferable_stake = >::get(&applicant); - new_stake.new = stake - new_stake.transferred; - transferable_stake.seat = transferable_stake.seat - new_stake.transferred; + let new_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.seat, stake); let balance = >::free_balance(&applicant); - ensure!(new_stake.new > balance, "not enough balance to cover stake"); + ensure!(balance >= new_stake.new, "not enough balance to cover stake"); + let applicant_stake = >::get(&applicant); let total_stake = applicant_stake.add(&new_stake); - ensure!(Self::min_council_stake() > total_stake.total(), "minimum stake not met"); + ensure!(total_stake.total() >= Self::min_council_stake(), "minimum stake not met"); - ensure!(balances::Module>::decrease_free_balance(&applicant, new_stake.new).is_ok(), "failed to update balance"); + ensure!(>::decrease_free_balance(&applicant, new_stake.new).is_ok(), "failed to update balance"); - if is_existing_stakeholder { + if >::exists(&applicant) { >::insert(&applicant, transferable_stake); } @@ -633,48 +613,24 @@ impl Module { } fn try_add_vote(voter: T::AccountId, stake: T::Balance, commitment: T::Hash) -> Result { - // TODO use `ensure!()` instead - if >::exists(commitment) { - return Err("duplicate commitment"); - } - - let voter_has_backing_stake = >::exists(&voter); - - let transferable_stake: T::Balance = match voter_has_backing_stake { - false => Default::default(), //zero - true => >::get(&voter) - }; + ensure!(!>::exists(commitment), "duplicate commitment"); - // TODO: notice: next ~20 lines look similar to what we have in `try_add_aaplicant`. Consider refactoring - let mut vote_stake: Stake = Default::default(); - - vote_stake.transferred = - if transferable_stake >= stake { - stake - } else { - transferable_stake - }; + let mut transferable_stake = >::get(&voter); - vote_stake.new = stake - vote_stake.transferred; + let vote_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.backing, stake); let balance = >::free_balance(&voter); - // TODO use `ensure!()` instead - if vote_stake.new > balance { - return Err("not enough balance to cover voting stake"); - } + ensure!(balance >= vote_stake.new, "not enough balance to cover voting stake"); - // TODO use `ensure!()` instead - if >::decrease_free_balance(&voter, vote_stake.new).is_err() { - return Err("failed to update balance"); - } + ensure!(>::decrease_free_balance(&voter, vote_stake.new).is_ok(), "failed to update balance"); >::mutate(|commitments| commitments.push(commitment)); >::insert(commitment, SealedVote::new(voter.clone(), vote_stake, commitment)); - if voter_has_backing_stake { - >::insert(voter.clone(), transferable_stake - vote_stake.transferred); + if >::exists(&voter) { + >::insert(&voter, transferable_stake); } Ok(()) @@ -786,6 +742,35 @@ mod tests { use ::governance::tests::*; use parity_codec::Encode; + #[test] + fn new_stake_reusing_transferable_works() { + { + let mut transferable = 0; + let additional = 100; + let new_stake = Election::new_stake_reusing_transferable(&mut transferable, additional); + assert_eq!(new_stake.new, 100); + assert_eq!(new_stake.transferred, 0); + } + + { + let mut transferable = 40; + let additional = 60; + let new_stake = Election::new_stake_reusing_transferable(&mut transferable, additional); + assert_eq!(new_stake.new, 20); + assert_eq!(new_stake.transferred, 40); + assert_eq!(transferable, 0); + } + + { + let mut transferable = 1000; + let additional = 100; + let new_stake = Election::new_stake_reusing_transferable(&mut transferable, additional); + assert_eq!(new_stake.new, 0); + assert_eq!(new_stake.transferred, 100); + assert_eq!(transferable, 900); + } + } + #[test] fn check_default_params() { // TODO missing test implementation? @@ -836,67 +821,78 @@ mod tests { #[test] fn init_transferable_stake_should_work () { with_externalities(&mut initial_test_ext(), || { - let council_stakes = vec![10,11,12]; - let council_stakeholders = vec![1,2,3]; - let backing_stakeholders = vec![10,20,30,50]; let existing_council = vec![ Seat { - member: council_stakeholders[0], - stake: council_stakes[0], + member: 1, + stake: 100, backers: vec![ Backer { - member: backing_stakeholders[0], - stake: 2, + member: 2, + stake: 50, + }, + Backer { + member: 3, + stake: 40, }, Backer { - member: backing_stakeholders[3], - stake: 5, + member: 10, + stake: 10, }] }, Seat { - member: council_stakeholders[1], - stake: council_stakes[1], + member: 2, + stake: 200, backers: vec![ Backer { - member: backing_stakeholders[1], - stake: 4, + member: 1, + stake: 10, + }, + Backer { + member: 3, + stake: 60, }, Backer { - member: backing_stakeholders[3], - stake: 5, + member: 20, + stake: 20, }] }, Seat { - member: council_stakeholders[2], - stake: council_stakes[2], - backers: vec![Backer { - member: backing_stakeholders[2], - stake: 6, - }] + member: 3, + stake: 300, + backers: vec![ + Backer { + member: 1, + stake: 20, + }, + Backer { + member: 2, + stake: 40, + }] } ]; Election::initialize_transferable_stakes(existing_council); + let mut existing_stake_holders = Election::existing_stake_holders(); + existing_stake_holders.sort(); + assert_eq!(existing_stake_holders, vec![1,2,3,10,20]); - assert_eq!(Election::council_stakeholders(), council_stakeholders); + assert_eq!(Election::transferable_stakes(&1).seat, 100); + assert_eq!(Election::transferable_stakes(&1).backing, 30); - for (i, id) in council_stakeholders.iter().enumerate() { - assert_eq!(Election::council_stakes(id), council_stakes[i]); - } + assert_eq!(Election::transferable_stakes(&2).seat, 200); + assert_eq!(Election::transferable_stakes(&2).backing, 90); - let computed_backers = Election::backing_stakeholders(); - assert_eq!(computed_backers.len(), backing_stakeholders.len()); - for id in backing_stakeholders { - assert!(computed_backers.iter().any(|&x| x == id)); - } + assert_eq!(Election::transferable_stakes(&3).seat, 300); + assert_eq!(Election::transferable_stakes(&3).backing, 100); - assert_eq!(Election::backing_stakes(10), 2); - assert_eq!(Election::backing_stakes(20), 4); - assert_eq!(Election::backing_stakes(30), 6); - assert_eq!(Election::backing_stakes(50), 10); + assert_eq!(Election::transferable_stakes(&10).seat, 0); + assert_eq!(Election::transferable_stakes(&10).backing, 10); + + assert_eq!(Election::transferable_stakes(&20).seat, 0); + assert_eq!(Election::transferable_stakes(&20).backing, 20); }); } @@ -964,8 +960,8 @@ mod tests { >::put(100); Balances::set_free_balance(&applicant, 5000); - >::put(vec![applicant]); - save_council_stake(applicant, 1000); + >::put(vec![applicant]); + save_transferable_stake(applicant, TransferableStake {seat: 1000, backing: 0}); >::put(vec![applicant]); let starting_stake = Stake { @@ -978,14 +974,14 @@ mod tests { assert!(Election::try_add_applicant(applicant, 600).is_ok()); assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new, "refundable"); assert_eq!(Election::applicant_stakes(applicant).transferred, 600, "trasferred"); - assert_eq!(Election::council_stakes(applicant), 400, "transferrable"); + assert_eq!(Election::transferable_stakes(applicant).seat, 400, "transferable"); assert_eq!(Balances::free_balance(applicant), 5000, "balance"); // all remaining transferable stake is consumed and free balance covers remaining stake assert!(Election::try_add_applicant(applicant, 1000).is_ok()); assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new + 600, "refundable"); assert_eq!(Election::applicant_stakes(applicant).transferred, 1000, "trasferred"); - assert_eq!(Election::council_stakes(applicant), 0, "transferrable"); + assert_eq!(Election::transferable_stakes(applicant).seat, 0, "transferable"); assert_eq!(Balances::free_balance(applicant), 4400, "balance"); }); @@ -1072,9 +1068,9 @@ mod tests { >::put(vec![1,2,3]); - save_council_stake(1, 50); - save_council_stake(2, 0); - save_council_stake(3, 0); + save_transferable_stake(1, TransferableStake {seat: 50, backing: 0}); + save_transferable_stake(2, TransferableStake {seat: 0, backing: 0}); + save_transferable_stake(3, TransferableStake {seat: 0, backing: 0}); >::insert(1, Stake { new: 100, @@ -1097,17 +1093,17 @@ mod tests { assert_eq!(Election::applicant_stakes(1).new, 100); assert_eq!(Election::applicant_stakes(1).transferred, 200); - assert_eq!(Election::council_stakes(1), 50); + assert_eq!(Election::transferable_stakes(1).seat, 50); assert_eq!(Balances::free_balance(&1), 1000); //assert_eq!(Election::applicant_stakes(2), Default::default()); assert!(!>::exists(2)); - assert_eq!(Election::council_stakes(2), 400); + assert_eq!(Election::transferable_stakes(2).seat, 400); assert_eq!(Balances::free_balance(&2), 2300); //assert_eq!(Election::applicant_stakes(3), Default::default()); assert!(!>::exists(3)); - assert_eq!(Election::council_stakes(3), 600); + assert_eq!(Election::transferable_stakes(3).seat, 600); assert_eq!(Balances::free_balance(&3), 3500); }); } @@ -1132,12 +1128,8 @@ mod tests { }); } - fn save_council_stake(id: u64, stake: u32) { - >::insert(id, stake); - } - - fn save_backing_stake(id: u64, stake: u32) { - >::insert(id, stake); + fn save_transferable_stake(id: u64, stake: TransferableStake) { + >::insert(id, stake); } #[test] @@ -1145,7 +1137,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { Balances::set_free_balance(&20, 1000); - save_backing_stake(20, 500); + save_transferable_stake(20, TransferableStake {seat: 0, backing: 500}); let payload = vec![10u8]; let commitment = ::Hashing::hash(&payload[..]); @@ -1168,7 +1160,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { Balances::set_free_balance(&20, 100); - save_backing_stake(20, 500); + save_transferable_stake(20, TransferableStake { seat: 0, backing: 500 }); let payload = vec![10u8]; let commitment = ::Hashing::hash(&payload[..]); @@ -1185,7 +1177,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { Balances::set_free_balance(&20, 1000); - save_backing_stake(20, 500); + save_transferable_stake(20, TransferableStake { seat: 0, backing: 500}); let payload = vec![10u8]; let commitment = ::Hashing::hash(&payload[..]); @@ -1431,7 +1423,7 @@ mod tests { transferred: 50 as u32, }); - save_council_stake(100, 100); + save_transferable_stake(100, TransferableStake {seat:100, backing: 0}); let mut new_council: BTreeMap> = BTreeMap::new(); new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); @@ -1444,7 +1436,7 @@ mod tests { assert!(!>::exists(100)); // and refunded - assert_eq!(Election::council_stakes(100), 150); + assert_eq!(Election::transferable_stakes(100).seat, 150); assert_eq!(Balances::free_balance(&100), 1020); }); } @@ -1458,9 +1450,9 @@ mod tests { Balances::set_free_balance(&20, 2000); Balances::set_free_balance(&30, 3000); - save_backing_stake(10, 100); - save_backing_stake(20, 200); - save_backing_stake(30, 300); + save_transferable_stake(10, TransferableStake {seat: 0, backing: 100}); + save_transferable_stake(20, TransferableStake {seat: 0, backing: 200}); + save_transferable_stake(30, TransferableStake {seat: 0, backing: 300}); let votes = mock_votes(vec![ // (voter, stake[refundable], stake[transferred], candidate) @@ -1487,29 +1479,25 @@ mod tests { assert_eq!(Balances::free_balance(&20), 2200); assert_eq!(Balances::free_balance(&30), 3300); - assert_eq!(Election::backing_stakes(10), 120); - assert_eq!(Election::backing_stakes(20), 240); - assert_eq!(Election::backing_stakes(30), 360); + assert_eq!(Election::transferable_stakes(10).backing, 120); + assert_eq!(Election::transferable_stakes(20).backing, 240); + assert_eq!(Election::transferable_stakes(30).backing, 360); }); } #[test] fn refund_transferable_stakes_should_work () { with_externalities(&mut initial_test_ext(), || { - >::put(vec![10,20,30]); - >::put(vec![10,20,30]); + >::put(vec![10,20,30]); Balances::set_free_balance(&10, 1000); - save_backing_stake(10, 100); - save_council_stake(10, 50); + save_transferable_stake(10, TransferableStake {seat: 50, backing: 100}); Balances::set_free_balance(&20, 2000); - save_backing_stake(20, 200); - save_council_stake(20, 60); + save_transferable_stake(20, TransferableStake {seat: 60, backing: 200}); Balances::set_free_balance(&30, 3000); - save_backing_stake(30, 300); - save_council_stake(30, 70); + save_transferable_stake(30, TransferableStake {seat: 70, backing: 300}); Election::refund_transferable_stakes(); From 3b7dee717927b46f97c930337ee320f7c53ee0e0 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 7 Feb 2019 19:14:05 +0200 Subject: [PATCH 101/350] some code cleanup and commenting --- runtime/src/governance/election.rs | 120 ++++++++++++++++++----------- 1 file changed, 76 insertions(+), 44 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 35b951acaf..c011a14104 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -116,7 +116,7 @@ pub struct TransferableStake { decl_storage! { trait Store for Module as CouncilElection { - // Current stage if there is an election ongoing + // Current stage if there is an election running Stage get(stage): Option>; // The election round @@ -129,12 +129,12 @@ decl_storage! { ApplicantStakes get(applicant_stakes): map T::AccountId => Stake; Commitments get(commitments): Vec; - // simply a Yes vote for a candidate. Consider changing the vote payload to support - // For and Against. + // TODO value type of this map looks scary, is there any way to simplify the notation? Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; - // Parameters election. Set when a new election is started + // Election Parameters - default "zero" values are not meaningful. Running an election without + // settings reasonable values is a bad idea. Parameters can be set in the TriggerElection hook. AnnouncingPeriod get(announcing_period): T::BlockNumber; VotingPeriod get(voting_period): T::BlockNumber; RevealingPeriod get(revealing_period): T::BlockNumber; @@ -173,6 +173,8 @@ impl TriggerElection, ElectionParamete } impl Module { + // HELPERS - IMMUTABLES + fn council_size_usize() -> usize { Self::council_size() as usize } @@ -181,51 +183,93 @@ impl Module { Self::candidacy_limit_multiple() as usize } + fn current_block_number_plus(length: T::BlockNumber) -> T::BlockNumber { + >::block_number() + length + } + + // PUBLIC IMMUTABLES + + /// Returns true if an election is running + pub fn is_election_running() -> bool { + Self::stage().is_some() + } + + /// Returns block number at which current stage will end if an election is running. + pub fn stage_ends_at() -> Option { + if let Some(stage) = Self::stage() { + match stage { + ElectionStage::Announcing(ends) => Some(ends), + ElectionStage::Voting(ends) => Some(ends), + ElectionStage::Revealing(ends) => Some(ends), + } + } else { + None + } + } + + // PRIVATE MUTABLES + + /// Sets the election parameters. Must be called before starting an election otherwise + /// last set values will be used. fn set_election_parameters(params: ElectionParameters) { + // TODO: consider at what stage it is safe to allow these parameters to change. >::put(params.announcing_period); >::put(params.voting_period); >::put(params.revealing_period); - >::put(params.council_size); >::put(params.min_council_stake); >::put(params.new_term_duration); + >::put(params.council_size); >::put(params.candidacy_limit_multiple); } - pub fn is_election_running() -> bool { - Self::stage().is_some() - } - + /// Starts an election. Will fail if an election is already running + /// Initializes transferable stakes. Assumes election parameters have already been set. fn start_election(current_council: Option>) -> Result { ensure!(!Self::is_election_running(), "election already in progress"); + ensure!(Self::existing_stake_holders().len() == 0, "stake holders must be empty"); + ensure!(Self::applicants().len() == 0, "applicants must be empty"); + ensure!(Self::commitments().len() == 0, "commitments must be empty"); - // take snapshot of council and backing stakes of an existing council + // Take snapshot of seat and backing stakes of an existing council + // Its important to ensure the election system takes ownership of these stakes, and is responsible + // to return any unused stake to origin owners. current_council.map(|c| Self::initialize_transferable_stakes(c)); Self::move_to_announcing_stage(); Ok(()) } - fn new_period(length: T::BlockNumber) -> T::BlockNumber { - >::block_number() + length - } + /// Sets announcing stage. Can be called from any stage and assumes all preparatory work + /// for entering the stage has been performed. + /// Bumps the election round. + fn move_to_announcing_stage() { + let next_round = >::mutate(|n| { *n += 1; *n }); + + let new_stage_ends_at = Self::current_block_number_plus(Self::announcing_period()); - fn bump_round() -> u32 { - >::mutate(|n| { - *n += 1; - *n - }) + >::put(ElectionStage::Announcing(new_stage_ends_at)); + + Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); } - fn move_to_announcing_stage() -> T::BlockNumber { - let period = Self::new_period(Self::announcing_period()); + /// Sets announcing stage. Can be called from any stage and assumes all preparatory work + /// for entering the stage has been performed. + fn move_to_voting_stage() { + let new_stage_ends_at = Self::current_block_number_plus(Self::voting_period()); - >::put(ElectionStage::Announcing(period)); + >::put(ElectionStage::Voting(new_stage_ends_at)); - let next_round = Self::bump_round(); + Self::deposit_event(RawEvent::VotingStarted()); + } - Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); + /// Sets announcing stage. Can be called from any stage and assumes all preparatory work + /// for entering the stage has been performed. + fn move_to_revealing_stage() { + let new_stage_ends_at = Self::current_block_number_plus(Self::revealing_period()); + + >::put(ElectionStage::Revealing(new_stage_ends_at)); - period + Self::deposit_event(RawEvent::RevealingStarted()); } /// Sorts applicants by stake, and returns slice of applicants with least stake. Applicants not @@ -260,28 +304,10 @@ impl Module { } } - fn move_to_voting_stage() { - // TODO check that current stage is Announcing - let period = Self::new_period(Self::voting_period()); - - >::put(ElectionStage::Voting(period)); - - Self::deposit_event(RawEvent::VotingStarted()); - } - fn on_voting_ended() { Self::move_to_revealing_stage(); } - fn move_to_revealing_stage() { - // TODO check that current stage is Voting - let period = Self::new_period(Self::revealing_period()); - - >::put(ElectionStage::Revealing(period)); - - Self::deposit_event(RawEvent::RevealingStarted()); - } - fn on_revealing_ended() { // tally the revealed votes let mut votes = Vec::new(); @@ -369,7 +395,7 @@ impl Module { for applicant in Self::applicants() { >::remove(applicant); } - >::put(vec![]); + >::kill(); } fn refund_applicant(applicant: &T::AccountId) { @@ -503,6 +529,7 @@ impl Module { } } + /// Checks if the current election stage has ended and calls the stage ended handler fn check_if_stage_is_ending(now: T::BlockNumber) { if let Some(stage) = Self::stage() { match stage { @@ -993,7 +1020,7 @@ mod tests { System::set_block_number(1); >::put(20); >::put(10); - let ann_ends = Election::move_to_announcing_stage(); + Election::move_to_announcing_stage(); let round = Election::round(); // add applicants @@ -1013,6 +1040,7 @@ mod tests { assert!(Election::council_size_usize() > applicants.len()); // try to move to voting stage + let ann_ends = Election::stage_ends_at().unwrap(); System::set_block_number(ann_ends); Election::on_announcing_ended(); @@ -1536,6 +1564,7 @@ mod tests { >::put(10); >::put(10); >::put(2); + >::put(100); for i in 1..20 { Balances::set_free_balance(&(i as u64), 50000); @@ -1583,6 +1612,9 @@ mod tests { assert_eq!(seat.member, (i + 1) as u64); } assert!(Election::stage().is_none()); + + // When council term ends.. start a new election. + assert_ok!(Election::start_election(None)); }); } } \ No newline at end of file From 8a0f56b909632a80ae7fc4514d4b01e7c36b0a4c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 8 Feb 2019 08:28:03 +0200 Subject: [PATCH 102/350] consistent naming of applicants --- runtime/src/governance/election.rs | 41 ++++++++++++++---------------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index c011a14104..856f85e57b 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -290,7 +290,7 @@ impl Module { let mut applicants = Self::applicants(); if applicants.len() < Self::council_size_usize() { - // Not enough candidates announced candidacy + // Not enough applicants announced candidacy Self::move_to_announcing_stage(); } else { // upper limit on applicants that will move to voting stage @@ -318,7 +318,7 @@ impl Module { let mut new_council = Self::tally_votes(&votes); - // Note here that candidates with zero votes have been excluded from the tally. + // Note here that applicants with zero votes have been excluded from the tally. // Is a candidate with some votes but less total stake than another candidate with zero votes // more qualified to be on the council? // Consider implications - if a council can be formed purely by staking are we fine with that? @@ -334,20 +334,20 @@ impl Module { } if new_council.len() == Self::council_size_usize() { - // all candidates in the tally will form the new council + // all applicants in the tally will form the new council } else if new_council.len() > Self::council_size_usize() { - // we have more than enough elected candidates to form the new council - // select top staked prioritised by stake + // we have more than enough applicants to form the new council. + // select top staked Self::filter_top_staked(&mut new_council, Self::council_size_usize()); } else { - // Not enough candidates with votes to form a council. - // This may happen if we didn't add candidates with zero votes to the tally, - // or in future if we allow candidates to withdraw candidacy during voting or revealing stages. + // Not enough applicants with votes to form a council. + // This may happen if we didn't add applicants with zero votes to the tally, + // or in future if we allow applicants to withdraw candidacy during voting or revealing stages. // Solution 1. Restart election. - // Solution 2. Add to the tally candidates with zero votes. + // Solution 2. Add to the tally applicants with zero votes. // selection criteria: // -> priority by largest stake? - // -> priority given to candidates who announced first? + // -> priority given to applicants who announced first? // -> deterministic random selection? } @@ -357,8 +357,7 @@ impl Module { Self::refund_voting_stakes(&votes, &new_council); Self::clear_votes(); - // TODO consider consistent naming: candidates vs applicants. Different names for the same things? - Self::drop_unelected_candidates(&new_council); + Self::drop_unelected_applicants(&new_council); Self::clear_applicants(); Self::refund_transferable_stakes(); @@ -426,8 +425,7 @@ impl Module { >::put(not_dropped); } - // TODO consider consistent naming: candidates vs applicants. Different names for the same things? - fn drop_unelected_candidates(new_council: &BTreeMap>) { + fn drop_unelected_applicants(new_council: &BTreeMap>) { let applicants_to_drop: Vec = Self::applicants().into_iter() .filter(|applicant| !new_council.contains_key(&applicant)) .collect(); @@ -511,7 +509,7 @@ impl Module { // ensure_eq!(seats.len(), tally.len()); if limit >= seats.len() { - // Tally is inconsistent with list of candidates! + // Tally is inconsistent with list of applicants! return; } @@ -630,7 +628,7 @@ impl Module { if !>::exists(&applicant) { // insert element at the begining, this gives priority to early applicants - // when its comes to selecting candidates if stakes are equal + // when ordering applicants by stake if stakes are equal >::mutate(|applicants| applicants.insert(0, applicant.clone())); } @@ -1056,7 +1054,7 @@ mod tests { } #[test] - fn top_applicants_become_candidates_should_work() { + fn top_applicants_move_to_voting_stage() { with_externalities(&mut initial_test_ext(), || { >::put(vec![10, 20, 30, 40]); let mut applicants = Election::applicants(); @@ -1391,10 +1389,9 @@ mod tests { } #[test] - fn filter_top_staked_candidates_should_work () { + fn filter_top_staked_applicants_should_work () { with_externalities(&mut initial_test_ext(), || { - // filter_top_staked depends on order of candidates - // and would panic if tally size was larger than applicants + // filter_top_staked depends on order of applicants >::put(vec![100, 200, 300]); { @@ -1440,7 +1437,7 @@ mod tests { } #[test] - fn drop_unelected_candidates_should_work () { + fn drop_unelected_applicants_should_work () { with_externalities(&mut initial_test_ext(), || { >::put(vec![100, 200, 300]); @@ -1457,7 +1454,7 @@ mod tests { new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); - Election::drop_unelected_candidates(&new_council); + Election::drop_unelected_applicants(&new_council); // applicant dropped assert_eq!(Election::applicants(), vec![200, 300]); From 9be1b3c96b4e7024d31b6339b04cc9ce7953771c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 8 Feb 2019 09:05:26 +0200 Subject: [PATCH 103/350] use ensure! macro, additional cleanup --- runtime/src/governance/election.rs | 67 ++++++++++++--------------- runtime/src/governance/sealed_vote.rs | 17 +++---- 2 files changed, 36 insertions(+), 48 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 856f85e57b..0f1896c56f 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -187,6 +187,11 @@ impl Module { >::block_number() + length } + // TODO This method should be moved to Membership module once it's created. + fn is_member(sender: T::AccountId) -> bool { + !>::free_balance(sender).is_zero() + } + // PUBLIC IMMUTABLES /// Returns true if an election is running @@ -231,8 +236,8 @@ impl Module { ensure!(Self::commitments().len() == 0, "commitments must be empty"); // Take snapshot of seat and backing stakes of an existing council - // Its important to ensure the election system takes ownership of these stakes, and is responsible - // to return any unused stake to origin owners. + // Its important to note that the election system takes ownership of these stakes, and is responsible + // to return any unused stake to original owners and the end of the election. current_council.map(|c| Self::initialize_transferable_stakes(c)); Self::move_to_announcing_stage(); @@ -318,7 +323,7 @@ impl Module { let mut new_council = Self::tally_votes(&votes); - // Note here that applicants with zero votes have been excluded from the tally. + // Note here that applicants with zero votes dont appear in the tally. // Is a candidate with some votes but less total stake than another candidate with zero votes // more qualified to be on the council? // Consider implications - if a council can be formed purely by staking are we fine with that? @@ -438,7 +443,7 @@ impl Module { new_council: &BTreeMap>) { for sealed_vote in sealed_votes.iter() { - // Do a refund if commitment was not revealed or vote was for candidate that did + // Do a refund if commitment was not revealed, or the vote was for applicant that did // not get elected to the council // TODO critical: shouldn't we slash the stake in such a case? This is the whole idea behid staking on something: people need to decide carefully and be responsible for their bahavior because they can loose their stake // See https://github.com/Joystream/substrate-node-joystream/issues/4 @@ -661,39 +666,25 @@ impl Module { Ok(()) } - fn try_reveal_vote(voter: T::AccountId, commitment: T::Hash, candidate: T::AccountId, salt: Vec) -> Result { - // TODO use `ensure!()` instead - if !>::exists(&candidate) { - return Err("vote for non-candidate not allowed"); - } - - // TODO use `ensure!()` instead - if !>::exists(&commitment) { - return Err("commitment not found"); - } + fn try_reveal_vote(voter: T::AccountId, commitment: T::Hash, vote_for: T::AccountId, salt: Vec) -> Result { + ensure!(>::exists(&commitment), "commitment not found"); let mut sealed_vote = >::get(&commitment); + ensure!(sealed_vote.is_not_revealed(), "vote already revealed"); // only voter can reveal their own votes - // TODO use `ensure!()` instead - if !sealed_vote.owned_by(voter) { - return Err("only voter can reveal vote"); - } + ensure!(sealed_vote.is_owned_by(voter), "only voter can reveal vote"); + ensure!(>::exists(&vote_for), "vote for non-candidate not allowed"); let mut salt = salt.clone(); - let is_salt_valid = sealed_vote.unseal(candidate, &mut salt, ::Hashing::hash)?; - if is_salt_valid { - // update the sealed vote - >::insert(commitment, sealed_vote); - Ok(()) - } else { - Err("invalid salt") - } - } - // TODO This method should be moved to Membership module once it's created. - fn is_member(sender: T::AccountId) -> bool { - !>::free_balance(sender).is_zero() + // Tries to unseal, if salt is invalid will return error + sealed_vote.unseal(vote_for, &mut salt, ::Hashing::hash)?; + + // Update the revealed vote + >::insert(commitment, sealed_vote); + + Ok(()) } } @@ -997,17 +988,17 @@ mod tests { // transferable stake covers new stake assert!(Election::try_add_applicant(applicant, 600).is_ok()); - assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new, "refundable"); - assert_eq!(Election::applicant_stakes(applicant).transferred, 600, "trasferred"); - assert_eq!(Election::transferable_stakes(applicant).seat, 400, "transferable"); - assert_eq!(Balances::free_balance(applicant), 5000, "balance"); + assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new); + assert_eq!(Election::applicant_stakes(applicant).transferred, 600); + assert_eq!(Election::transferable_stakes(applicant).seat, 400); + assert_eq!(Balances::free_balance(applicant), 5000); // all remaining transferable stake is consumed and free balance covers remaining stake assert!(Election::try_add_applicant(applicant, 1000).is_ok()); - assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new + 600, "refundable"); - assert_eq!(Election::applicant_stakes(applicant).transferred, 1000, "trasferred"); - assert_eq!(Election::transferable_stakes(applicant).seat, 0, "transferable"); - assert_eq!(Balances::free_balance(applicant), 4400, "balance"); + assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new + 600); + assert_eq!(Election::applicant_stakes(applicant).transferred, 1000); + assert_eq!(Election::transferable_stakes(applicant).seat, 0); + assert_eq!(Balances::free_balance(applicant), 4400); }); } diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index c3fcba622b..f5be37bf90 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -34,11 +34,9 @@ impl SealedVote } } - pub fn unseal(&mut self, vote: Vote, salt: &mut Vec, hasher: fn(&[u8]) -> Hash) -> Result { + pub fn unseal(&mut self, vote: Vote, salt: &mut Vec, hasher: fn(&[u8]) -> Hash) -> Result<(), &'static str> { // only unseal once - if self.was_revealed() { - return Err("vote already unsealed"); - } + ensure!(self.is_not_revealed(), "vote already unsealed"); // seralize the vote and append the salt let mut payload = vote.encode(); @@ -47,22 +45,21 @@ impl SealedVote // hash the payload, if it matches the commitment it is a valid revealing of the vote if self.commitment == hasher(&payload) { self.vote = Some(vote); + Ok(()) + } else { + Err("invalid salt") } - - Ok(self.was_revealed()) } pub fn get_vote(&self) -> &Option { &self.vote } - // TODO rename to 'is_owned_by'? - pub fn owned_by(&self, someone: AccountId) -> bool { + pub fn is_owned_by(&self, someone: AccountId) -> bool { someone == self.voter } - // TODO rename to 'is_revealed'? - pub fn was_revealed(&self) -> bool { + pub fn is_revealed(&self) -> bool { self.vote.is_some() } From 4e5ad5f36e6878e286f18d219e39fb534684d201 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 8 Feb 2019 09:17:49 +0200 Subject: [PATCH 104/350] additional renaming candidate -> applicant --- runtime/src/governance/election.rs | 104 ++++++++++++++--------------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 0f1896c56f..4aff68ef13 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -324,7 +324,7 @@ impl Module { let mut new_council = Self::tally_votes(&votes); // Note here that applicants with zero votes dont appear in the tally. - // Is a candidate with some votes but less total stake than another candidate with zero votes + // Is an applicant with some votes but less total stake than another applicant with zero votes // more qualified to be on the council? // Consider implications - if a council can be formed purely by staking are we fine with that? @@ -448,7 +448,7 @@ impl Module { // TODO critical: shouldn't we slash the stake in such a case? This is the whole idea behid staking on something: people need to decide carefully and be responsible for their bahavior because they can loose their stake // See https://github.com/Joystream/substrate-node-joystream/issues/4 let do_refund = match sealed_vote.get_vote() { - Some(candidate) => !new_council.contains_key(&candidate), + Some(applicant) => !new_council.contains_key(&applicant), None => true }; @@ -479,16 +479,16 @@ impl Module { let mut tally: BTreeMap> = BTreeMap::new(); for sealed_vote in sealed_votes.iter() { - if let Some(candidate) = sealed_vote.get_vote() { - if !tally.contains_key(&candidate) { + if let Some(applicant) = sealed_vote.get_vote() { + if !tally.contains_key(&applicant) { // Add new seat - tally.insert(candidate.clone(), Seat { - member: candidate.clone(), - stake: Self::applicant_stakes(candidate).total(), + tally.insert(applicant.clone(), Seat { + member: applicant.clone(), + stake: Self::applicant_stakes(applicant).total(), backers: vec![], }); } - if let Some(seat) = tally.get_mut(&candidate) { + if let Some(seat) = tally.get_mut(&applicant) { // Add backer to existing seat seat.backers.push(Backer { member: sealed_vote.voter.clone(), @@ -674,7 +674,7 @@ impl Module { ensure!(sealed_vote.is_not_revealed(), "vote already revealed"); // only voter can reveal their own votes ensure!(sealed_vote.is_owned_by(voter), "only voter can reveal vote"); - ensure!(>::exists(&vote_for), "vote for non-candidate not allowed"); + ensure!(>::exists(&vote_for), "vote for non-applicant not allowed"); let mut salt = salt.clone(); @@ -697,7 +697,7 @@ decl_module! { Self::check_if_stage_is_ending(now); } - fn announce_candidacy(origin, stake: T::Balance) -> Result { + fn apply(origin, stake: T::Balance) -> Result { let sender = ensure_signed(origin)?; ensure!(Self::is_member(sender.clone()), "Only members can announce their candidacy"); @@ -715,9 +715,9 @@ decl_module! { } } - fn vote_for_candidate(origin, commitment: T::Hash, stake: T::Balance) -> Result { + fn vote(origin, commitment: T::Hash, stake: T::Balance) -> Result { let sender = ensure_signed(origin)?; - ensure!(Self::is_member(sender.clone()), "Only members can vote for a candidate"); + ensure!(Self::is_member(sender.clone()), "Only members can vote for an applicant"); // Can only vote during election voting stage if let Some(stage) = Self::stage() { @@ -733,7 +733,7 @@ decl_module! { } } - fn reveal_vote(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) -> Result { + fn reveal(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) -> Result { let sender = ensure_signed(origin)?; // Can only reveal vote during election revealing stage @@ -1214,8 +1214,8 @@ mod tests { }); } - fn make_commitment_for_candidate(candidate: ::AccountId, salt: &mut Vec) -> ::Hash { - let mut payload = candidate.encode(); + fn make_commitment_for_applicant(applicant: ::AccountId, salt: &mut Vec) -> ::Hash { + let mut payload = applicant.encode(); payload.append(salt); ::Hashing::hash(&payload[..]) } @@ -1223,39 +1223,39 @@ mod tests { #[test] fn revealing_vote_works () { with_externalities(&mut initial_test_ext(), || { - let candidate = 20 as u64; + let applicant = 20 as u64; let salt = vec![128u8]; - let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); let voter = 10 as u64; - >::insert(&candidate, Stake {new: 0, transferred: 0}); + >::insert(&applicant, Stake {new: 0, transferred: 0}); >::insert(&commitment, SealedVote::new(voter, Stake { new: 100, transferred: 0 }, commitment)); assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(voter, commitment, candidate, salt).is_ok()); - assert_eq!(>::get(commitment).get_vote().unwrap(), candidate); + assert!(Election::try_reveal_vote(voter, commitment, applicant, salt).is_ok()); + assert_eq!(>::get(commitment).get_vote().unwrap(), applicant); }); } #[test] fn revealing_with_bad_salt_should_not_work () { with_externalities(&mut initial_test_ext(), || { - let candidate = 20 as u64; + let applicant = 20 as u64; let salt = vec![128u8]; - let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); let voter = 10 as u64; - >::insert(&candidate, Stake {new: 0, transferred: 0}); + >::insert(&applicant, Stake {new: 0, transferred: 0}); >::insert(&commitment, SealedVote::new(voter, Stake { new: 100, transferred: 0 }, commitment)); assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); + assert!(Election::try_reveal_vote(voter, commitment, applicant, vec![]).is_err()); assert!(>::get(commitment).is_not_revealed()); }); } @@ -1263,23 +1263,23 @@ mod tests { #[test] fn revealing_non_matching_commitment_should_not_work () { with_externalities(&mut initial_test_ext(), || { - let candidate = 20 as u64; + let applicant = 20 as u64; let salt = vec![128u8]; - let commitment = make_commitment_for_candidate(100, &mut salt.clone()); + let commitment = make_commitment_for_applicant(100, &mut salt.clone()); let voter = 10 as u64; - >::insert(&candidate, Stake {new: 0, transferred: 0}); + >::insert(&applicant, Stake {new: 0, transferred: 0}); - assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); + assert!(Election::try_reveal_vote(voter, commitment, applicant, vec![]).is_err()); }); } #[test] - fn revealing_for_non_candidate_should_not_work () { + fn revealing_for_non_applicant_should_not_work () { with_externalities(&mut initial_test_ext(), || { - let candidate = 20 as u64; + let applicant = 20 as u64; let salt = vec![128u8]; - let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); let voter = 10 as u64; >::insert(&commitment, SealedVote::new(voter, Stake { @@ -1287,7 +1287,7 @@ mod tests { }, commitment)); assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(voter, commitment, candidate, vec![]).is_err()); + assert!(Election::try_reveal_vote(voter, commitment, applicant, vec![]).is_err()); assert!(>::get(commitment).is_not_revealed()); }); } @@ -1295,30 +1295,30 @@ mod tests { #[test] fn revealing_by_non_committer_should_not_work () { with_externalities(&mut initial_test_ext(), || { - let candidate = 20 as u64; + let applicant = 20 as u64; let salt = vec![128u8]; - let commitment = make_commitment_for_candidate(candidate, &mut salt.clone()); + let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); let voter = 10 as u64; let not_voter = 100 as u64; - >::insert(&candidate, Stake {new: 0, transferred: 0}); + >::insert(&applicant, Stake {new: 0, transferred: 0}); >::insert(&commitment, SealedVote::new(voter, Stake { new: 100, transferred: 0 }, commitment)); assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(not_voter, commitment, candidate, salt).is_err()); + assert!(Election::try_reveal_vote(not_voter, commitment, applicant, salt).is_err()); assert!(>::get(commitment).is_not_revealed()); }); } pub fn mock_votes (mock: Vec<(u64, u32, u32, u64)>) -> Vec, primitives::H256, u64>> { - let commitment = make_commitment_for_candidate(1, &mut vec![0u8]); + let commitment = make_commitment_for_applicant(1, &mut vec![0u8]); - mock.into_iter().map(|(voter, stake_ref, stake_tran, candidate)| SealedVote::new_unsealed(voter as u64, Stake { + mock.into_iter().map(|(voter, stake_ref, stake_tran, applicant)| SealedVote::new_unsealed(voter as u64, Stake { new: stake_ref as u32, transferred: stake_tran as u32 - }, commitment, candidate as u64)).collect() + }, commitment, applicant as u64)).collect() } @@ -1326,7 +1326,7 @@ mod tests { fn vote_tallying_should_work () { with_externalities(&mut initial_test_ext(), || { let votes = mock_votes(vec![ - // (voter, stake[refundable], stake[transferred], candidate) + // (voter, stake[refundable], stake[transferred], applicant) (10, 100, 0, 100), (10, 150, 0, 100), @@ -1387,7 +1387,7 @@ mod tests { { let votes = mock_votes(vec![ - // (voter, stake[refundable], candidate) + // (voter, stake[refundable], applicant) (10, 100, 0, 100), (10, 150, 0, 100), @@ -1406,7 +1406,7 @@ mod tests { { let votes = mock_votes(vec![ - // (voter, stake[refundable], candidate) + // (voter, stake[refundable], applicant) (10, 100, 0, 100), (10, 150, 0, 100), @@ -1471,7 +1471,7 @@ mod tests { save_transferable_stake(30, TransferableStake {seat: 0, backing: 300}); let votes = mock_votes(vec![ - // (voter, stake[refundable], stake[transferred], candidate) + // (voter, stake[refundable], stake[transferred], applicant) (10, 100, 20, 100), (20, 200, 40, 100), (30, 300, 60, 100), @@ -1562,8 +1562,8 @@ mod tests { assert_ok!(Election::start_election(None)); for i in 1..20 { - assert!(Election::announce_candidacy(Origin::signed(i), 150).is_ok()); - assert!(Election::announce_candidacy(Origin::signed(i + 1000), 150).is_err()); + assert!(Election::apply(Origin::signed(i), 150).is_ok()); + assert!(Election::apply(Origin::signed(i + 1000), 150).is_err()); } let n = 1 + Election::announcing_period(); @@ -1571,11 +1571,11 @@ mod tests { Election::on_finalise(n); for i in 1..20 { - assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![40u8]), 100).is_ok()); + assert!(Election::vote(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![40u8]), 100).is_ok()); - assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![41u8]), 100).is_ok()); + assert!(Election::vote(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![41u8]), 100).is_ok()); - assert!(Election::vote_for_candidate(Origin::signed(i), make_commitment_for_candidate(i + 1000, &mut vec![42u8]), 100).is_ok()); + assert!(Election::vote(Origin::signed(i), make_commitment_for_applicant(i + 1000, &mut vec![42u8]), 100).is_ok()); } let n = n + Election::voting_period(); @@ -1583,11 +1583,11 @@ mod tests { Election::on_finalise(n); for i in 1..20 { - assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![40u8]), i, vec![40u8]).is_ok()); + assert!(Election::reveal(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![40u8]), i, vec![40u8]).is_ok()); //wrong salt - assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i, &mut vec![41u8]), i, vec![]).is_err()); - //vote not for valid candidate - assert!(Election::reveal_vote(Origin::signed(i), make_commitment_for_candidate(i + 1000, &mut vec![42u8]), i + 1000, vec![42u8]).is_err()); + assert!(Election::reveal(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![41u8]), i, vec![]).is_err()); + //vote not for valid applicant + assert!(Election::reveal(Origin::signed(i), make_commitment_for_applicant(i + 1000, &mut vec![42u8]), i + 1000, vec![42u8]).is_err()); } let n = n + Election::revealing_period(); From c4fb7fdadd865c0c3eb455e62f446bc5b69bb23d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 8 Feb 2019 09:50:20 +0200 Subject: [PATCH 105/350] upper bound on size of salt in reveal --- runtime/src/governance/election.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 4aff68ef13..28c0cb64c8 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -736,6 +736,8 @@ decl_module! { fn reveal(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) -> Result { let sender = ensure_signed(origin)?; + ensure!(salt.len() <= 32, "salt too large"); // at most 256 bits salt + // Can only reveal vote during election revealing stage if let Some(stage) = Self::stage() { match stage { From d2aea438567103ea0715fab7d393ff71b7e36145 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 8 Feb 2019 10:08:48 +0200 Subject: [PATCH 106/350] fail fast in apply, test for minimum stake --- runtime/src/governance/election.rs | 52 ++++++++++++++---------------- 1 file changed, 24 insertions(+), 28 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 28c0cb64c8..d1e6c8ef0a 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -618,13 +618,11 @@ impl Module { let balance = >::free_balance(&applicant); - ensure!(balance >= new_stake.new, "not enough balance to cover stake"); + ensure!(balance >= new_stake.new, "not enough free balance to cover stake"); let applicant_stake = >::get(&applicant); let total_stake = applicant_stake.add(&new_stake); - ensure!(total_stake.total() >= Self::min_council_stake(), "minimum stake not met"); - ensure!(>::decrease_free_balance(&applicant, new_stake.new).is_ok(), "failed to update balance"); if >::exists(&applicant) { @@ -697,15 +695,21 @@ decl_module! { Self::check_if_stage_is_ending(now); } + // Member can apply during announcing stage only. On first call a minimum stake will need to be provided. + // Member can make subsequent calls during announcing stage to increase their stake. fn apply(origin, stake: T::Balance) -> Result { let sender = ensure_signed(origin)?; - ensure!(Self::is_member(sender.clone()), "Only members can announce their candidacy"); + ensure!(Self::is_member(sender.clone()), "Only members can apply to be on council"); - // Can only announce candidacy during election announcing stage + // Can only apply during announcing stage if let Some(stage) = Self::stage() { match stage { ElectionStage::Announcing(_) => { - // TODO fail fast: ensure that stake >= min_stake + // minimum stake on first attempt to apply + if !>::exists(&sender) { + ensure!(stake >= Self::min_council_stake(), "minimum stake must be provided"); + } + Self::try_add_applicant(sender, stake) }, _ => Err("election not in announcing stage") @@ -916,28 +920,18 @@ mod tests { } #[test] - fn announcing_should_work() { + fn try_add_applicant_should_work() { with_externalities(&mut initial_test_ext(), || { assert!(Election::applicants().len() == 0); let applicant = 20 as u64; - let min_stake = 100 as u32; - >::put(min_stake); - - // must provide stake - assert!(Election::try_add_applicant(applicant, 0).is_err()); - - // Get some balance - let starting_balance = (min_stake * 10) as u32; + let starting_balance = 1000 as u32; Balances::set_free_balance(&applicant, starting_balance); - // must provide min stake - let stake = min_stake as u32; - assert!(Election::try_add_applicant(applicant, stake - 1).is_err()); + let stake = 100 as u32; - // with enough balance and stake, announcing should work assert!(Election::try_add_applicant(applicant, stake).is_ok()); assert_eq!(Election::applicants(), vec![applicant]); @@ -949,11 +943,10 @@ mod tests { } #[test] - fn increasing_stake_when_announcing_should_work () { + fn increasing_stake_applicant_stake_should_work () { with_externalities(&mut initial_test_ext(), || { let applicant = 20 as u64; - >::put(100); - let starting_stake = Election::min_council_stake(); + let starting_stake = 100 as u32; >::put(vec![applicant]); >::insert(applicant, Stake { @@ -971,11 +964,10 @@ mod tests { } #[test] - fn announcing_with_transferable_council_stake_should_work() { + fn using_transferable_seat_stake_should_work() { with_externalities(&mut initial_test_ext(), || { let applicant = 20 as u64; - >::put(100); Balances::set_free_balance(&applicant, 5000); >::put(vec![applicant]); @@ -983,7 +975,7 @@ mod tests { >::put(vec![applicant]); let starting_stake = Stake { - new: Election::min_council_stake(), + new: 100, transferred: 0, }; >::insert(applicant, starting_stake); @@ -1556,7 +1548,7 @@ mod tests { >::put(2); >::put(100); - for i in 1..20 { + for i in 1..30 { Balances::set_free_balance(&(i as u64), 50000); } @@ -1564,8 +1556,12 @@ mod tests { assert_ok!(Election::start_election(None)); for i in 1..20 { - assert!(Election::apply(Origin::signed(i), 150).is_ok()); - assert!(Election::apply(Origin::signed(i + 1000), 150).is_err()); + if i < 21 { + assert!(Election::apply(Origin::signed(i), 150).is_ok()); + } else { + assert!(Election::apply(Origin::signed(i + 1000), 150).is_err()); // not enough free balance + assert!(Election::apply(Origin::signed(i), 20).is_err()); // not enough minimum stake + } } let n = 1 + Election::announcing_period(); From 1e33adfd8a4a642e9693b28cb5ed0aa876e26795 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 8 Feb 2019 10:24:15 +0200 Subject: [PATCH 107/350] minium voting stake --- runtime/src/governance/election.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d1e6c8ef0a..14313570dc 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -89,6 +89,7 @@ pub struct ElectionParameters { pub candidacy_limit_multiple: u32, pub min_council_stake: Balance, pub new_term_duration: BlockNumber, + pub min_voting_stake: Balance } impl Default for ElectionParameters @@ -103,6 +104,7 @@ impl Default for ElectionParameters candidacy_limit_multiple: 2, min_council_stake: Balance::sa(100), new_term_duration: BlockNumber::sa(1000), + min_voting_stake: Balance::sa(10), } } } @@ -142,6 +144,7 @@ decl_storage! { CandidacyLimitMultiple get (candidacy_limit_multiple): u32; MinCouncilStake get(min_council_stake): T::Balance; NewTermDuration get(new_term_duration): T::BlockNumber; + MinVotingStake get(min_voting_stake): T::Balance; } } @@ -225,6 +228,7 @@ impl Module { >::put(params.new_term_duration); >::put(params.council_size); >::put(params.candidacy_limit_multiple); + >::put(params.min_voting_stake); } /// Starts an election. Will fail if an election is already running @@ -727,7 +731,7 @@ decl_module! { if let Some(stage) = Self::stage() { match stage { ElectionStage::Voting(_) => { - // TODO fail fast: ensure that stake >= min_stake + ensure!(stake >= Self::min_voting_stake(), "voting stake too low"); Self::try_add_vote(sender, stake, commitment) }, _ => Err("election not in voting stage") @@ -753,8 +757,6 @@ decl_module! { } } - // fn withdraw_candidacy() - // fn withdraw_vote() } } @@ -1547,6 +1549,7 @@ mod tests { >::put(10); >::put(2); >::put(100); + >::put(10); for i in 1..30 { Balances::set_free_balance(&(i as u64), 50000); From b96c3f21b5637a652643e5fe2efe792a44ad731f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 8 Feb 2019 13:09:29 +0200 Subject: [PATCH 108/350] use reserve balances feature --- runtime/src/governance/election.rs | 70 +++++++++++++----------------- 1 file changed, 31 insertions(+), 39 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 14313570dc..0c9314f210 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -369,7 +369,7 @@ impl Module { Self::drop_unelected_applicants(&new_council); Self::clear_applicants(); - Self::refund_transferable_stakes(); + Self::unlock_transferable_stakes(); Self::clear_transferable_stakes(); >::kill(); @@ -380,13 +380,12 @@ impl Module { Self::deposit_event(RawEvent::CouncilElected()); } - fn refund_transferable_stakes() { + fn unlock_transferable_stakes() { // move stakes back to account holder's free balance for stakeholder in Self::existing_stake_holders().iter() { let stake = Self::transferable_stakes(stakeholder); if !stake.seat.is_zero() || !stake.backing.is_zero() { - let balance = >::free_balance(stakeholder); - >::set_free_balance(stakeholder, balance + stake.seat + stake.backing); + >::unreserve(stakeholder, stake.seat + stake.backing); } } } @@ -409,10 +408,9 @@ impl Module { fn refund_applicant(applicant: &T::AccountId) { let stake = >::get(applicant); - // return refundable stake to account's free balance + // return new stake to account's free balance if !stake.new.is_zero() { - let balance = >::free_balance(applicant); - >::set_free_balance(applicant, balance + stake.new); + >::unreserve(applicant, stake.new); } // return unused transferable stake @@ -457,11 +455,10 @@ impl Module { }; if do_refund { - // return refundable stake to account's free balance + // return new stake to account's free balance let SealedVote { voter, stake, .. } = sealed_vote; if !stake.new.is_zero() { - let balance = >::free_balance(voter); - >::set_free_balance(voter, balance + stake.new); + >::unreserve(voter, stake.new); } // return unused transferable stake @@ -620,15 +617,13 @@ impl Module { let new_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.seat, stake); - let balance = >::free_balance(&applicant); + ensure!(>::can_reserve(&applicant, new_stake.new), "not enough free balance to reserve"); - ensure!(balance >= new_stake.new, "not enough free balance to cover stake"); + ensure!(>::reserve(&applicant, new_stake.new).is_ok(), "failed to reserve applicant stake!"); let applicant_stake = >::get(&applicant); let total_stake = applicant_stake.add(&new_stake); - ensure!(>::decrease_free_balance(&applicant, new_stake.new).is_ok(), "failed to update balance"); - if >::exists(&applicant) { >::insert(&applicant, transferable_stake); } @@ -651,11 +646,9 @@ impl Module { let vote_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.backing, stake); - let balance = >::free_balance(&voter); - - ensure!(balance >= vote_stake.new, "not enough balance to cover voting stake"); + ensure!(>::can_reserve(&voter, vote_stake.new), "not enough free balance to reserve"); - ensure!(>::decrease_free_balance(&voter, vote_stake.new).is_ok(), "failed to update balance"); + ensure!(>::reserve(&voter, vote_stake.new).is_ok(), "failed to reserve voting stake!"); >::mutate(|commitments| commitments.push(commitment)); @@ -837,8 +830,6 @@ mod tests { // we enter the announcing stage for a specified period assert_announcing_period(1 + Election::announcing_period()); - - // transferable stakes should have been initialized..(if council exists) }); } @@ -945,7 +936,7 @@ mod tests { } #[test] - fn increasing_stake_applicant_stake_should_work () { + fn increasing_applicant_stake_should_work () { with_externalities(&mut initial_test_ext(), || { let applicant = 20 as u64; let starting_stake = 100 as u32; @@ -1076,8 +1067,8 @@ mod tests { fn refunding_applicant_stakes_should_work () { with_externalities(&mut initial_test_ext(), || { Balances::set_free_balance(&1, 1000); - Balances::set_free_balance(&2, 2000); - Balances::set_free_balance(&3, 3000); + Balances::set_free_balance(&2, 2000); Balances::set_reserved_balance(&2, 5000); + Balances::set_free_balance(&3, 3000); Balances::set_reserved_balance(&3, 5000); >::put(vec![1,2,3]); @@ -1322,7 +1313,7 @@ mod tests { fn vote_tallying_should_work () { with_externalities(&mut initial_test_ext(), || { let votes = mock_votes(vec![ - // (voter, stake[refundable], stake[transferred], applicant) + // (voter, stake[new], stake[transferred], applicant) (10, 100, 0, 100), (10, 150, 0, 100), @@ -1383,7 +1374,7 @@ mod tests { { let votes = mock_votes(vec![ - // (voter, stake[refundable], applicant) + // (voter, stake[new], stake[transferred], applicant) (10, 100, 0, 100), (10, 150, 0, 100), @@ -1402,7 +1393,7 @@ mod tests { { let votes = mock_votes(vec![ - // (voter, stake[refundable], applicant) + // (voter, stake[new], stake[transferred], applicant) (10, 100, 0, 100), (10, 150, 0, 100), @@ -1428,7 +1419,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { >::put(vec![100, 200, 300]); - Balances::set_free_balance(&100, 1000); + Balances::set_free_balance(&100, 1000); Balances::set_reserved_balance(&100, 1000); >::insert(100, Stake { new: 20 as u32, @@ -1450,6 +1441,7 @@ mod tests { // and refunded assert_eq!(Election::transferable_stakes(100).seat, 150); assert_eq!(Balances::free_balance(&100), 1020); + assert_eq!(Balances::reserved_balance(&100), 980); }); } @@ -1458,16 +1450,16 @@ mod tests { fn refunding_voting_stakes_should_work () { with_externalities(&mut initial_test_ext(), || { // voters' balances - Balances::set_free_balance(&10, 1000); - Balances::set_free_balance(&20, 2000); - Balances::set_free_balance(&30, 3000); + Balances::set_free_balance(&10, 1000); Balances::set_reserved_balance(&10, 5000); + Balances::set_free_balance(&20, 2000); Balances::set_reserved_balance(&20, 5000); + Balances::set_free_balance(&30, 3000); Balances::set_reserved_balance(&30, 5000); save_transferable_stake(10, TransferableStake {seat: 0, backing: 100}); save_transferable_stake(20, TransferableStake {seat: 0, backing: 200}); save_transferable_stake(30, TransferableStake {seat: 0, backing: 300}); let votes = mock_votes(vec![ - // (voter, stake[refundable], stake[transferred], applicant) + // (voter, stake[new], stake[transferred], applicant) (10, 100, 20, 100), (20, 200, 40, 100), (30, 300, 60, 100), @@ -1487,9 +1479,9 @@ mod tests { Election::refund_voting_stakes(&votes, &new_council); - assert_eq!(Balances::free_balance(&10), 1100); - assert_eq!(Balances::free_balance(&20), 2200); - assert_eq!(Balances::free_balance(&30), 3300); + assert_eq!(Balances::free_balance(&10), 1100); assert_eq!(Balances::reserved_balance(&10), 4900); + assert_eq!(Balances::free_balance(&20), 2200); assert_eq!(Balances::reserved_balance(&20), 4800); + assert_eq!(Balances::free_balance(&30), 3300); assert_eq!(Balances::reserved_balance(&30), 4700); assert_eq!(Election::transferable_stakes(10).backing, 120); assert_eq!(Election::transferable_stakes(20).backing, 240); @@ -1498,20 +1490,20 @@ mod tests { } #[test] - fn refund_transferable_stakes_should_work () { + fn unlock_transferable_stakes_should_work () { with_externalities(&mut initial_test_ext(), || { >::put(vec![10,20,30]); - Balances::set_free_balance(&10, 1000); + Balances::set_free_balance(&10, 1000); Balances::set_reserved_balance(&10, 5000); save_transferable_stake(10, TransferableStake {seat: 50, backing: 100}); - Balances::set_free_balance(&20, 2000); + Balances::set_free_balance(&20, 2000); Balances::set_reserved_balance(&20, 5000); save_transferable_stake(20, TransferableStake {seat: 60, backing: 200}); - Balances::set_free_balance(&30, 3000); + Balances::set_free_balance(&30, 3000); Balances::set_reserved_balance(&30, 5000); save_transferable_stake(30, TransferableStake {seat: 70, backing: 300}); - Election::refund_transferable_stakes(); + Election::unlock_transferable_stakes(); assert_eq!(Balances::free_balance(&10), 1150); assert_eq!(Balances::free_balance(&20), 2260); From afc54c25401ac4d15ccf0d8b5c71586041b67fcf Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Wed, 6 Feb 2019 19:33:04 +0200 Subject: [PATCH 109/350] Check maximum length of name, description and wasm code in create_proposal\nPrefix default constant values with DEFAULT_ --- runtime/src/governance/proposals.rs | 323 ++++++++++++++++------------ 1 file changed, 190 insertions(+), 133 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 2021ac31f1..351e0e04ee 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -7,13 +7,17 @@ use rstd::prelude::*; use council; -const APPROVAL_QUORUM: u32 = 60; -const MIN_STAKE: u64 = 100; -const CANCELLATION_FEE: u64 = 5; -const REJECTION_FEE: u64 = 10; +const DEFAULT_APPROVAL_QUORUM: u32 = 60; +const DEFAULT_MIN_STAKE: u64 = 100; +const DEFAULT_CANCELLATION_FEE: u64 = 5; +const DEFAULT_REJECTION_FEE: u64 = 10; -const VOTING_PERIOD_IN_DAYS: u64 = 10; -const VOTING_PERIOD_IN_SECS: u64 = VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; +const DEFAULT_VOTING_PERIOD_IN_DAYS: u64 = 10; +const DEFAULT_VOTING_PERIOD_IN_SECS: u64 = DEFAULT_VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; + +const DEFAULT_NAME_MAX_LEN: u32 = 100; +const DEFAULT_DESCRIPTION_MAX_LEN: u32 = 10_000; +const DEFAULT_WASM_CODE_MAX_LEN: u32 = 2_000_000; const MSG_STAKE_IS_TOO_LOW: &str = "Stake is too low"; const MSG_STAKE_IS_GREATER_THAN_BALANCE: &str = "Balance is too low to be staked"; @@ -28,6 +32,9 @@ const MSG_PROPOSAL_STATUS_ALREADY_UPDATED: &str = "Proposal status has been upda const MSG_EMPTY_NAME_PROVIDED: &str = "Proposal cannot have an empty name"; const MSG_EMPTY_DESCRIPTION_PROVIDED: &str = "Proposal cannot have an empty description"; const MSG_EMPTY_WASM_CODE_PROVIDED: &str = "Proposal cannot have an empty WASM code"; +const MSG_TOO_LONG_NAME: &str = "Name is too long"; +const MSG_TOO_LONG_DESCRIPTION: &str = "Description is too long"; +const MSG_TOO_LONG_WASM_CODE: &str = "WASM code is too big"; pub type ProposalId = u32; @@ -35,7 +42,7 @@ pub type ProposalId = u32; #[derive(Encode, Decode, Clone, PartialEq, Eq)] pub enum ProposalStatus { /// A new proposal that is available for voting. - Pending, // TODO Rename to 'New' | 'Open' + Pending, // TODO Rename to 'Active' /// If cancelled by a proposer. Cancelled, /// Not enough votes and voting period expired. @@ -148,23 +155,28 @@ decl_storage! { // TODO rename? 'approval_quorum' -> 'approval_quorum_per' /// The percentage (up to 100) of the council participants /// which must vote affirmatively in order for it to pass. - ApprovalQuorum get(approval_quorum) config(): u32 = APPROVAL_QUORUM; + ApprovalQuorum get(approval_quorum) config(): u32 = DEFAULT_APPROVAL_QUORUM; /// Minimum balance amount to be staked in order to make a proposal. - MinimumStake get(minimum_stake) config(): T::Balance = - T::Balance::sa(MIN_STAKE); + MinimumStake get(minimum_stake) config(): T::Balance = + T::Balance::sa(DEFAULT_MIN_STAKE); /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. - CancellationFee get(cancellation_fee) config(): T::Balance = - T::Balance::sa(CANCELLATION_FEE); + CancellationFee get(cancellation_fee) config(): T::Balance = + T::Balance::sa(DEFAULT_CANCELLATION_FEE); /// A fee to be slashed (burn) in case a proposal was rejected. - RejectionFee get(rejection_fee) config(): T::Balance = - T::Balance::sa(REJECTION_FEE); + RejectionFee get(rejection_fee) config(): T::Balance = + T::Balance::sa(DEFAULT_REJECTION_FEE); /// Max duration of proposal in blocks until it will be expired if not enough votes. - VotingPeriod get(voting_period) config(): T::BlockNumber = - T::BlockNumber::sa(VOTING_PERIOD_IN_SECS / >::block_period().as_()); + VotingPeriod get(voting_period) config(): T::BlockNumber = + T::BlockNumber::sa(DEFAULT_VOTING_PERIOD_IN_SECS / + >::block_period().as_()); + + NameMaxLen get(name_max_len) config(): u32 = DEFAULT_NAME_MAX_LEN; + DescriptionMaxLen get(description_max_len) config(): u32 = DEFAULT_DESCRIPTION_MAX_LEN; + WasmCodeMaxLen get(wasm_code_max_len) config(): u32 = DEFAULT_WASM_CODE_MAX_LEN; // Persistent state (always relevant, changes constantly): @@ -173,6 +185,7 @@ decl_storage! { // TODO rename 'proposal' -> 'proposals' Proposals get(proposal): map ProposalId => Proposal; + // TODO rename to `ActiveProposalIds` PendingProposalIds get(pending_proposal_ids): Vec = vec![]; VotesByProposal get(votes_by_proposal): map ProposalId => Vec<(T::AccountId, VoteKind)>; @@ -205,9 +218,15 @@ decl_module! { let proposer = ensure_signed(origin)?; ensure!(Self::is_member(proposer.clone()), MSG_ONLY_MEMBERS_CAN_PROPOSE); ensure!(stake >= Self::minimum_stake(), MSG_STAKE_IS_TOO_LOW); - ensure!(name.len() > 0, MSG_EMPTY_NAME_PROVIDED); - ensure!(description.len() > 0, MSG_EMPTY_DESCRIPTION_PROVIDED); - ensure!(wasm_code.len() > 0, MSG_EMPTY_WASM_CODE_PROVIDED); + + ensure!(!name.is_empty(), MSG_EMPTY_NAME_PROVIDED); + ensure!(name.len() as u32 <= Self::name_max_len(), MSG_TOO_LONG_NAME); + + ensure!(!description.is_empty(), MSG_EMPTY_DESCRIPTION_PROVIDED); + ensure!(description.len() as u32 <= Self::description_max_len(), MSG_TOO_LONG_DESCRIPTION); + + ensure!(!wasm_code.is_empty(), MSG_EMPTY_WASM_CODE_PROVIDED); + ensure!(wasm_code.len() as u32 <= Self::wasm_code_max_len(), MSG_TOO_LONG_WASM_CODE); // Lock proposer's stake: >::reserve(&proposer, stake) @@ -574,11 +593,6 @@ mod tests { type Balances = balances::Module; type Proposals = Module; - const VOTING_PERIOD_MOCK: u64 = 10; - - // Initial balance of proposer 1. - const INITIAL_BALANCE: u64 = (MIN_STAKE as f64 * 2.5) as u64; - const COUNCILOR1: u64 = 1; const COUNCILOR2: u64 = 2; const COUNCILOR3: u64 = 3; @@ -627,18 +641,33 @@ mod tests { term_ends_at: 0 }.build_storage().unwrap().0); - // Here we can override defaults: - t.extend(GenesisConfig::{ - approval_quorum: APPROVAL_QUORUM, - minimum_stake: MIN_STAKE, - cancellation_fee: CANCELLATION_FEE, - rejection_fee: REJECTION_FEE, - voting_period: VOTING_PERIOD_MOCK - }.build_storage().unwrap().0); + // t.extend(GenesisConfig::{ + // // Here we can override defaults. + // }.build_storage().unwrap().0); t.into() } + /// A shortcut to get minimum stake in tests. + fn minimum_stake() -> u64 { + Proposals::minimum_stake() + } + + /// A shortcut to get cancellation fee in tests. + fn cancellation_fee() -> u64 { + Proposals::cancellation_fee() + } + + /// A shortcut to get rejection fee in tests. + fn rejection_fee() -> u64 { + Proposals::rejection_fee() + } + + /// Initial balance of Proposer 1. + fn initial_balance() -> u64 { + (minimum_stake() as f64 * 2.5) as u64 + } + fn name() -> Vec { b"Proposal Name".to_vec() } @@ -652,7 +681,7 @@ mod tests { } fn _create_default_proposal() -> Result { - self::_create_proposal(None, None, None, None, None) + _create_proposal(None, None, None, None, None) } fn _create_proposal( @@ -664,7 +693,7 @@ mod tests { ) -> Result { Proposals::create_proposal( Origin::signed(origin.unwrap_or(PROPOSER1)), - stake.unwrap_or(MIN_STAKE), + stake.unwrap_or(minimum_stake()), name.unwrap_or(self::name()), description.unwrap_or(self::description()), wasm_code.unwrap_or(self::wasm_code()) @@ -686,10 +715,13 @@ mod tests { #[test] fn check_default_values() { with_externalities(&mut new_test_ext(), || { - assert_eq!(Proposals::approval_quorum(), APPROVAL_QUORUM); - assert_eq!(Proposals::minimum_stake(), MIN_STAKE); - assert_eq!(Proposals::cancellation_fee(), CANCELLATION_FEE); - assert_eq!(Proposals::rejection_fee(), REJECTION_FEE); + assert_eq!(Proposals::approval_quorum(), DEFAULT_APPROVAL_QUORUM); + assert_eq!(Proposals::minimum_stake(), DEFAULT_MIN_STAKE); + assert_eq!(Proposals::cancellation_fee(), DEFAULT_CANCELLATION_FEE); + assert_eq!(Proposals::rejection_fee(), DEFAULT_REJECTION_FEE); + assert_eq!(Proposals::name_max_len(), DEFAULT_NAME_MAX_LEN); + assert_eq!(Proposals::description_max_len(), DEFAULT_DESCRIPTION_MAX_LEN); + assert_eq!(Proposals::wasm_code_max_len(), DEFAULT_WASM_CODE_MAX_LEN); assert_eq!(Proposals::proposal_count(), 0); assert!(Proposals::pending_proposal_ids().is_empty()); }); @@ -698,17 +730,17 @@ mod tests { #[test] fn member_create_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); assert_eq!(Proposals::pending_proposal_ids().len(), 1); assert_eq!(Proposals::pending_proposal_ids()[0], 1); let expected_proposal = Proposal { id: 1, proposer: PROPOSER1, - stake: MIN_STAKE, + stake: minimum_stake(), name: name(), description: description(), wasm_code: wasm_code(), @@ -718,8 +750,8 @@ mod tests { assert_eq!(Proposals::proposal(1), expected_proposal); // Check that stake amount has been locked on proposer's balance: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); - assert_eq!(Balances::reserved_balance(PROPOSER1), MIN_STAKE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - minimum_stake()); + assert_eq!(Balances::reserved_balance(PROPOSER1), minimum_stake()); // TODO expect event ProposalCreated(AccountId, ProposalId) }); @@ -730,7 +762,7 @@ mod tests { with_externalities(&mut new_test_ext(), || { // In this test a proposer has an empty balance // thus he is not considered as a member. - assert_eq!(self::_create_default_proposal(), + assert_eq!(_create_default_proposal(), Err(MSG_ONLY_MEMBERS_CAN_PROPOSE)); }); } @@ -738,15 +770,15 @@ mod tests { #[test] fn cannot_create_proposal_with_small_stake() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_eq!(self::_create_proposal( - None, Some(MIN_STAKE - 1), None, None, None), + assert_eq!(_create_proposal( + None, Some(minimum_stake() - 1), None, None, None), Err(MSG_STAKE_IS_TOO_LOW)); // Check that balances remain unchanged afer a failed attempt to create a proposal: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); }); } @@ -754,68 +786,93 @@ mod tests { #[test] fn cannot_create_proposal_when_stake_is_greater_than_balance() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_eq!(self::_create_proposal( - None, Some(INITIAL_BALANCE + 1), None, None, None), + assert_eq!(_create_proposal( + None, Some(initial_balance() + 1), None, None, None), Err(MSG_STAKE_IS_GREATER_THAN_BALANCE)); // Check that balances remain unchanged afer a failed attempt to create a proposal: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); }); } #[test] - fn cannot_create_proposal_with_empty_name() { + fn cannot_create_proposal_with_empty_values() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_eq!(self::_create_proposal( - None, None, Some(vec![]), None, None), + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); + + // Empty name: + assert_eq!(_create_proposal( + None, None, Some(vec![]), None, None), Err(MSG_EMPTY_NAME_PROVIDED)); - }); - } - #[test] - fn cannot_create_proposal_with_empty_description() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_eq!(self::_create_proposal( - None, None, None, Some(vec![]), None), + // Empty description: + assert_eq!(_create_proposal( + None, None, None, Some(vec![]), None), Err(MSG_EMPTY_DESCRIPTION_PROVIDED)); + + // Empty WASM code: + assert_eq!(_create_proposal( + None, None, None, None, Some(vec![])), + Err(MSG_EMPTY_WASM_CODE_PROVIDED)); }); } #[test] - fn cannot_create_proposal_with_empty_wasm_code() { + fn cannot_create_proposal_with_too_long_values() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_eq!(self::_create_proposal( - None, None, None, None, Some(vec![])), - Err(MSG_EMPTY_WASM_CODE_PROVIDED)); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); + + // Too long name: + assert_eq!(_create_proposal( + None, None, Some(too_long_name()), None, None), + Err(MSG_TOO_LONG_NAME)); + + // Too long description: + assert_eq!(_create_proposal( + None, None, None, Some(too_long_description()), None), + Err(MSG_TOO_LONG_DESCRIPTION)); + + // Too long WASM code: + assert_eq!(_create_proposal( + None, None, None, None, Some(too_long_wasm_code())), + Err(MSG_TOO_LONG_WASM_CODE)); }); } + fn too_long_name() -> Vec { + vec![65; Proposals::name_max_len() as usize + 1] + } + + fn too_long_description() -> Vec { + vec![65; Proposals::description_max_len() as usize + 1] + } + + fn too_long_wasm_code() -> Vec { + vec![65; Proposals::wasm_code_max_len() as usize + 1] + } + // ------------------------------------------------------------------- // Cancellation #[test] fn owner_cancel_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); assert_eq!(Proposals::proposal(1).status, Cancelled); assert!(Proposals::pending_proposal_ids().is_empty()); // Check that proposer's balance reduced by cancellation fee and other part of his stake returned to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - CANCELLATION_FEE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - cancellation_fee()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalCancelled(AccountId, ProposalId) @@ -825,10 +882,10 @@ mod tests { #[test] fn owner_cannot_cancel_proposal_if_its_finalized() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); assert_eq!(Proposals::proposal(1).status, Cancelled); @@ -848,11 +905,11 @@ mod tests { #[test] fn not_owner_cannot_cancel_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::set_free_balance(&PROPOSER2, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE * 2); - assert_ok!(self::_create_default_proposal()); - assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::set_free_balance(&PROPOSER2, initial_balance()); + Balances::increase_total_stake_by(initial_balance() * 2); + assert_ok!(_create_default_proposal()); + assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), Err(MSG_YOU_DONT_OWN_THIS_PROPOSAL)); }); } @@ -863,9 +920,9 @@ mod tests { #[test] fn councilor_vote_on_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_ok!(self::_create_default_proposal()); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); + assert_ok!(_create_default_proposal()); assert_ok!(Proposals::vote_on_proposal( Origin::signed(COUNCILOR1), 1, Approve)); @@ -881,9 +938,9 @@ mod tests { #[test] fn councilor_cannot_vote_on_proposal_twice() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_ok!(self::_create_default_proposal()); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); + assert_ok!(_create_default_proposal()); assert_ok!(Proposals::vote_on_proposal( Origin::signed(COUNCILOR1), 1, Approve)); @@ -896,9 +953,9 @@ mod tests { #[test] fn autovote_with_approve_when_councilor_creates_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&COUNCILOR1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_ok!(self::_create_proposal( + Balances::set_free_balance(&COUNCILOR1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); + assert_ok!(_create_proposal( Some(COUNCILOR1), None, None, None, None )); @@ -912,9 +969,9 @@ mod tests { #[test] fn not_councilor_cannot_vote_on_proposal() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_ok!(self::_create_default_proposal()); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); + assert_ok!(_create_default_proposal()); assert_eq!(Proposals::vote_on_proposal( Origin::signed(NOT_COUNCILOR), 1, Approve), Err(MSG_ONLY_COUNCILORS_CAN_VOTE)); @@ -924,9 +981,9 @@ mod tests { #[test] fn councilor_cannot_vote_on_proposal_if_it_has_been_cancelled() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); - assert_ok!(self::_create_default_proposal()); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); + assert_ok!(_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); assert_eq!(Proposals::vote_on_proposal( Origin::signed(COUNCILOR1), 1, Approve), @@ -937,10 +994,10 @@ mod tests { #[test] fn councilor_cannot_vote_on_proposal_if_tally_has_been_finalized() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // All councilors vote with 'Approve' on proposal: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; @@ -970,10 +1027,10 @@ mod tests { #[test] fn approve_proposal_when_all_councilors_approved_it() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // All councilors approved: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; @@ -1007,7 +1064,7 @@ mod tests { }); // Check that proposer's stake has been added back to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Approved) @@ -1017,10 +1074,10 @@ mod tests { #[test] fn approve_proposal_when_all_councilors_voted_and_only_quorum_approved() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // Only a quorum of councilors approved, others rejected: let councilors = Proposals::councilors_count(); @@ -1056,7 +1113,7 @@ mod tests { }); // Check that proposer's stake has been added back to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Approved) @@ -1066,10 +1123,10 @@ mod tests { #[test] fn approve_proposal_when_voting_period_expired_if_only_quorum_voted() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // Only quorum of councilors approved, other councilors didn't vote: let approvals = Proposals::approval_quorum_seats(); @@ -1111,7 +1168,7 @@ mod tests { }); // Check that proposer's stake has been added back to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Approved) @@ -1121,10 +1178,10 @@ mod tests { #[test] fn reject_proposal_when_all_councilors_voted_and_quorum_not_reached() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // Less than a quorum of councilors approved, while others abstentioned: let councilors = Proposals::councilors_count(); @@ -1158,7 +1215,7 @@ mod tests { }); // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - rejection_fee()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Rejected) @@ -1168,10 +1225,10 @@ mod tests { #[test] fn reject_proposal_when_all_councilors_rejected_it() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // All councilors rejected: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; @@ -1203,7 +1260,7 @@ mod tests { }); // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - rejection_fee()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Rejected) @@ -1213,10 +1270,10 @@ mod tests { #[test] fn slash_proposal_when_all_councilors_slashed_it() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // All councilors slashed: let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; @@ -1248,7 +1305,7 @@ mod tests { }); // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - MIN_STAKE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - minimum_stake()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Slashed) @@ -1267,10 +1324,10 @@ mod tests { #[test] fn expire_proposal_when_not_all_councilors_voted_and_quorum_not_reached() { with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, INITIAL_BALANCE); - Balances::increase_total_stake_by(INITIAL_BALANCE); + Balances::set_free_balance(&PROPOSER1, initial_balance()); + Balances::increase_total_stake_by(initial_balance()); - assert_ok!(self::_create_default_proposal()); + assert_ok!(_create_default_proposal()); // Less than a quorum of councilors approved: let approvals = Proposals::approval_quorum_seats() - 1; @@ -1303,7 +1360,7 @@ mod tests { }); // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), INITIAL_BALANCE - REJECTION_FEE); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - rejection_fee()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Rejected) From 827b3be6e407e019264cfed659f6e15e37f67a86 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 12 Feb 2019 14:13:00 +0200 Subject: [PATCH 110/350] One script to build node + clean chain + start node --- build-clean-start.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 build-clean-start.sh diff --git a/build-clean-start.sh b/build-clean-start.sh new file mode 100755 index 0000000000..1b249492e5 --- /dev/null +++ b/build-clean-start.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +./build-runtime.sh +./build-node.sh +./clean-chain.sh +./start-node.sh From 9dd6c4072a0a153349d1a327e3daa6bbe810bab4 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 12 Feb 2019 14:15:47 +0200 Subject: [PATCH 111/350] Delete outdated script: delete-chain-folder --- delete-chain-folder.sh | 3 --- 1 file changed, 3 deletions(-) delete mode 100755 delete-chain-folder.sh diff --git a/delete-chain-folder.sh b/delete-chain-folder.sh deleted file mode 100755 index 504c5d5991..0000000000 --- a/delete-chain-folder.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -rm -rf ~/Library/Application\ Support/Substrate/chains/dev/ From 86db2a8e8b526c5ae3cf81ec41427b5d99053dd9 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 11 Feb 2019 14:06:16 +0200 Subject: [PATCH 112/350] import from new node-template --- Cargo.toml | 123 +++++++++++++++++--------- build.rs | 27 +----- runtime/Cargo.toml | 188 +++++++++++++++++++++++++++++----------- runtime/src/lib.rs | 35 ++------ runtime/wasm/Cargo.toml | 68 ++++----------- runtime/wasm/build.sh | 2 +- src/chain_spec.rs | 3 +- src/cli.rs | 73 +++++----------- src/main.rs | 17 +--- src/service.rs | 17 ++-- 10 files changed, 279 insertions(+), 274 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b54c705f5a..4782235218 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,48 +1,87 @@ -[package] -name = "joystream-node" -version = "0.9.0" -authors = ["Jsgenesis "] -build = "build.rs" +[dependencies] +error-chain = '0.12' +exit-future = '0.1' +futures = '0.1' +hex-literal = '0.1' +log = '0.4' +parity-codec = '3.0' +parking_lot = '0.7.1' +slog = '^2' +tokio = '0.1' +trie-root = '0.11.0' -[[bin]] -name = "joystream-node" -path = "src/main.rs" +[dependencies.basic-authorship] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-basic-authorship' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' -[dependencies] -error-chain = "0.12" -futures = "0.1" -ctrlc = { version = "3.0", features = ["termination"] } -log = "0.4" -tokio = "0.1.7" -exit-future = "0.1" -parking_lot = "0.4" -hex-literal = "0.1" -slog = "^2" -parity-codec = { version = "2.2" } -trie-root = { git = "https://github.com/paritytech/trie", rev = "2616db2a" } -sr-io = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-cli = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-executor = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-service = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-inherents = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-transaction-pool = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-network = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-consensus-aura = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-client = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-basic-authorship = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -joystream-node-runtime = { path = "runtime" } -node-executor = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -structopt = "0.2.13" +[dependencies.consensus] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-consensus-aura' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' -[build-dependencies] -vergen = "2" +[dependencies.ctrlc] +features = ['termination'] +version = '3.0' + +[dependencies.inherents] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-inherents' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.node-executor] +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.node-template-runtime] +path = 'runtime' + +[dependencies.primitives] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-primitives' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.sr-io] +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' -[workspace] -members = [ "runtime" ] -exclude = [ "runtime/wasm" ] +[dependencies.substrate-cli] +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +[dependencies.substrate-client] +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.substrate-executor] +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.substrate-network] +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.substrate-service] +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.transaction-pool] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-transaction-pool' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[package] +authors = ['Joystream'] +build = 'build.rs' +edition = '2018' +name = 'joystream-node' +version = '0.9.1' + +[[bin]] +name = 'joystream-node' +path = 'src/main.rs' + +[build-dependencies] +vergen = '3' [profile.release] -# Substrate runtime requires unwinding. -panic = "unwind" +panic = 'unwind' diff --git a/build.rs b/build.rs index ef920cc6d2..d30f13c0c9 100644 --- a/build.rs +++ b/build.rs @@ -1,31 +1,8 @@ -// Copyright 2015-2018 Parity Technologies (UK) Ltd. -// This file is part of Substrate. - -// Substrate 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. - -// Substrate 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 Substrate. If not, see . - -extern crate vergen; - -use vergen::{ConstantsFlags, Vergen}; +use vergen::{ConstantsFlags, generate_cargo_keys}; const ERROR_MSG: &'static str = "Failed to generate metadata files"; fn main() { - let vergen = Vergen::new(ConstantsFlags::all()).expect(ERROR_MSG); - - for (k, v) in vergen.build_info() { - println!("cargo:rustc-env={}={}", k.name(), v); - } - + generate_cargo_keys(ConstantsFlags::all()).expect(ERROR_MSG); println!("cargo:rerun-if-changed=.git/HEAD"); } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 4460080c52..cd8701b465 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,55 +1,143 @@ [package] -name = "joystream-node-runtime" -version = "0.9.0" -authors = ["Jsgenesis "] - -[dependencies] -rustc-hex = "1.0" -hex-literal = "0.1.0" -serde = { version = "1.0", default-features = false } -serde_derive = { version = "1.0", optional = true } -safe-mix = { version = "1.0", default-features = false } -parity-codec = "2.2" -parity-codec-derive = "2.1" -sr-std = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -sr-io = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-support = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-keyring = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-balances = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-consensus = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-aura = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-executive = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-indices = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -sr-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-system = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-timestamp = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -srml-sudo = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-client = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", optional = true } -sr-version = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } -substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5" } +authors = ['Joystream'] +edition = '2018' +name = 'joystream-node-runtime' +version = '0.9.1' [features] -default = ["std"] +default = ['std'] std = [ - "parity-codec/std", - "substrate-primitives/std", - "substrate-client/std", - "sr-std/std", - "sr-io/std", - "srml-support/std", - "srml-balances/std", - "srml-executive/std", - "srml-aura/std", - "srml-indices/std", - "sr-primitives/std", - "srml-system/std", - "srml-timestamp/std", - "srml-sudo/std", - "sr-version/std", - "serde_derive", - "serde/std", - "safe-mix/std", - "substrate-client", - "substrate-consensus-aura-primitives/std", + 'parity-codec/std', + 'parity-codec-derive/std', + 'primitives/std', + 'substrate-client/std', + 'rstd/std', + 'runtime-io/std', + 'srml-support/std', + 'balances/std', + 'executive/std', + 'aura/std', + 'indices/std', + 'primitives/std', + 'system/std', + 'timestamp/std', + 'sudo/std', + 'version/std', + 'serde_derive', + 'serde/std', + 'safe-mix/std', + 'consensus-aura/std', ] +[dependencies.aura] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-aura' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.balances] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-balances' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.consensus] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-consensus' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.consensus-aura] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-consensus-aura-primitives' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.executive] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-executive' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.indices] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-indices' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.parity-codec] +default-features = false +version = '3.0' + +[dependencies.parity-codec-derive] +default-features = false +version = '3.0' + +[dependencies.primitives] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-primitives' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.rstd] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'sr-std' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.runtime-io] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'sr-io' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.runtime-primitives] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'sr-primitives' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.safe-mix] +default-features = false +version = '1.0' + +[dependencies.serde] +default-features = false +version = '1.0' + +[dependencies.serde_derive] +optional = true +version = '1.0' + +[dependencies.srml-support] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.substrate-client] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.sudo] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-sudo' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.system] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-system' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.timestamp] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-timestamp' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.version] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'sr-version' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index f6121ad1de..3e9885ba34 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -5,34 +5,14 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit="256"] -#[cfg_attr(not(feature = "std"), macro_use)] -extern crate sr_std as rstd; -extern crate sr_io as runtime_io; -#[macro_use] -extern crate substrate_client as client; -#[macro_use] -extern crate srml_support; -#[macro_use] -extern crate sr_primitives as runtime_primitives; #[cfg(feature = "std")] #[macro_use] extern crate serde_derive; -extern crate substrate_primitives as primitives; -extern crate parity_codec; + +use substrate_client as client; + #[macro_use] extern crate parity_codec_derive; -#[macro_use] -extern crate sr_version as version; -extern crate srml_system as system; -extern crate srml_executive as executive; -extern crate srml_consensus as consensus; -extern crate srml_timestamp as timestamp; -extern crate srml_balances as balances; -extern crate srml_sudo as sudo; -extern crate srml_aura as aura; -extern crate srml_indices as indices; -extern crate substrate_consensus_aura_primitives as consensus_aura; - pub mod governance; use governance::{election, council, root, proposals}; @@ -42,16 +22,15 @@ use primitives::bytes; use primitives::{Ed25519AuthorityId, OpaqueMetadata}; use runtime_primitives::{ ApplyResult, transaction_validity::TransactionValidity, Ed25519Signature, generic, - traits::{self, BlakeTwo256, Block as BlockT, StaticLookup, Extrinsic}, + traits::{self, BlakeTwo256, Block as BlockT, StaticLookup}, create_runtime_str }; use client::{ block_builder::api::{CheckInherentsResult, InherentData, self as block_builder_api}, - runtime_api + runtime_api, impl_runtime_apis }; use version::RuntimeVersion; #[cfg(feature = "std")] use version::NativeVersion; -use consensus_aura::api as aura_api; // A few exports that help ease life for downstream crates. #[cfg(any(feature = "std", test))] @@ -61,7 +40,7 @@ pub use timestamp::Call as TimestampCall; pub use balances::Call as BalancesCall; pub use runtime_primitives::{Permill, Perbill}; pub use timestamp::BlockPeriod; -pub use srml_support::{StorageValue, RuntimeMetadata}; +pub use srml_support::{StorageValue, construct_runtime}; /// Alias to Ed25519 pubkey that identifies an account on the chain. pub type AccountId = primitives::H256; @@ -307,7 +286,7 @@ impl_runtime_apis! { } } - impl aura_api::AuraApi for Runtime { + impl consensus_aura::AuraApi for Runtime { fn slot_duration() -> u64 { Aura::slot_duration() } diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index ced5f8593c..89ba0cd724 100644 --- a/runtime/wasm/Cargo.toml +++ b/runtime/wasm/Cargo.toml @@ -1,58 +1,22 @@ -[package] -name = "joystream-node-runtime" -version = "0.9.0" -authors = ["Jsgenesis "] +[profile.release] +lto = true +panic = 'abort' -[lib] -crate-type = ["cdylib"] +[workspace] +members = [] -[dependencies] -integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git" } -safe-mix = { version = "1.0", default-features = false} -parity-codec-derive = { version = "^2.1" } -parity-codec = { version = "^2.2", default-features = false } -substrate-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -substrate-client = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -sr-std = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -sr-io = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-support = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-balances = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-consensus = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-executive = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-aura = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -sr-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-system = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-indices = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-timestamp = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -srml-sudo = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -sr-version = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } -substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", rev = "53bf81e5", default-features = false } +[lib] +crate-type = ['cdylib'] [features] default = [] -std = [ - "safe-mix/std", - "parity-codec/std", - "substrate-primitives/std", - "substrate-client/std", - "sr-std/std", - "sr-io/std", - "srml-support/std", - "srml-balances/std", - "srml-consensus/std", - "srml-executive/std", - "srml-aura/std", - "sr-primitives/std", - "srml-indices/std", - "srml-system/std", - "srml-timestamp/std", - "srml-sudo/std", - "sr-version/std", -] +std = ['joystream-node-runtime/std'] +[dependencies.joystream-node-runtime] +default-features = false +path = '..' -[profile.release] -panic = "abort" -lto = true - -[workspace] -members = [] +[package] +authors = ['Joystream'] +edition = '2018' +name = 'joystream-node-runtime-wasm' +version = '0.9.1' diff --git a/runtime/wasm/build.sh b/runtime/wasm/build.sh index c8d051512d..bf5d1b99e6 100755 --- a/runtime/wasm/build.sh +++ b/runtime/wasm/build.sh @@ -7,7 +7,7 @@ else CARGO_CMD="cargo +nightly" fi $CARGO_CMD build --target=wasm32-unknown-unknown --release -for i in joystream_node_runtime +for i in joystream_node_runtime_wasm do wasm-gc target/wasm32-unknown-unknown/release/$i.wasm target/wasm32-unknown-unknown/release/$i.compact.wasm done diff --git a/src/chain_spec.rs b/src/chain_spec.rs index e3602da5db..2df61c31b4 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -79,7 +79,7 @@ impl Alternative { fn testnet_genesis(initial_authorities: Vec, endowed_accounts: Vec, root_key: AccountId) -> GenesisConfig { GenesisConfig { consensus: Some(ConsensusConfig { - code: include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime.compact.wasm").to_vec(), + code: include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), authorities: initial_authorities.clone(), }), system: None, @@ -96,6 +96,7 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account transfer_fee: 0, creation_fee: 0, balances: endowed_accounts.iter().map(|&k|(k, (1 << 60))).collect(), + vesting: vec![], }), sudo: Some(SudoConfig { key: root_key, diff --git a/src/cli.rs b/src/cli.rs index cdbdd02071..41215a927e 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,28 +1,12 @@ -use service; +use crate::service; use futures::{future, Future, sync::oneshot}; use std::cell::RefCell; use tokio::runtime::Runtime; pub use substrate_cli::{VersionInfo, IntoExit, error}; -use substrate_cli::{Action, informant, parse_matches, execute_default, CoreParams}; +use substrate_cli::{informant, parse_and_execute, NoCustom}; use substrate_service::{ServiceFactory, Roles as ServiceRoles}; -use chain_spec; +use crate::chain_spec; use std::ops::Deref; -use structopt::StructOpt; - -/// Extend params for Node -#[derive(Debug, StructOpt)] -pub struct NodeParams { - /// Should run as a GRANDPA authority node - #[structopt(long = "grandpa-authority", help = "Run Node as a GRANDPA authority, implies --validator")] - grandpa_authority: bool, - - /// Should run as a GRANDPA authority node only - #[structopt(long = "grandpa-authority-only", help = "Run Node as a GRANDPA authority only, don't as a usual validator, implies --grandpa-authority")] - grandpa_authority_only: bool, - - #[structopt(flatten)] - core: CoreParams -} /// Parse command line arguments into service configuration. pub fn run(args: I, exit: E, version: VersionInfo) -> error::Result<()> where @@ -30,44 +14,31 @@ pub fn run(args: I, exit: E, version: VersionInfo) -> error::Result<()> T: Into + Clone, E: IntoExit, { - let full_version = substrate_service::config::full_version_from_strs( - version.version, - version.commit - ); - - let matches = match NodeParams::clap() - .name(version.executable_name) - .author(version.author) - .about(version.description) - .version(&(full_version + "\n")[..]) - .get_matches_from_safe(args) { - Ok(m) => m, - Err(e) => e.exit(), - }; - - let (spec, config) = parse_matches::( - load_spec, &version, "substrate-node", &matches - )?; - - match execute_default::(spec, exit, &matches, &config)? { - Action::ExecutedInternally => (), - Action::RunService(exit) => { + parse_and_execute::( + load_spec, &version, "joystream-node", args, exit, + |exit, _custom_args, config| { info!("{}", version.name); info!(" version {}", config.full_version()); - info!(" by {}, 2018, 2019", version.author); + info!(" by {}, 2019", version.author); info!("Chain specification: {}", config.chain_spec.name()); info!("Node name: {}", config.name); info!("Roles: {:?}", config.roles); - let mut runtime = Runtime::new()?; + let runtime = Runtime::new().map_err(|e| format!("{:?}", e))?; let executor = runtime.executor(); - match config.roles == ServiceRoles::LIGHT { - true => run_until_exit(&mut runtime, service::Factory::new_light(config, executor)?, exit)?, - false => run_until_exit(&mut runtime, service::Factory::new_full(config, executor)?, exit)?, - } + match config.roles { + ServiceRoles::LIGHT => run_until_exit( + runtime, + service::Factory::new_light(config, executor).map_err(|e| format!("{:?}", e))?, + exit + ), + _ => run_until_exit( + runtime, + service::Factory::new_full(config, executor).map_err(|e| format!("{:?}", e))?, + exit + ), + }.map_err(|e| format!("{:?}", e)) } - } - - Ok(()) + ).map_err(Into::into).map(|_| ()) } fn load_spec(id: &str) -> Result, String> { @@ -78,7 +49,7 @@ fn load_spec(id: &str) -> Result, String> { } fn run_until_exit( - runtime: &mut Runtime, + mut runtime: Runtime, service: T, e: E, ) -> error::Result<()> diff --git a/src/main.rs b/src/main.rs index 93ed7f7401..caf481719a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,28 +3,16 @@ #![warn(missing_docs)] #![warn(unused_extern_crates)] -extern crate futures; #[macro_use] extern crate error_chain; -extern crate tokio; #[macro_use] extern crate log; -extern crate substrate_cli; -extern crate substrate_primitives as primitives; -extern crate substrate_consensus_aura as consensus; -extern crate substrate_client as client; #[macro_use] extern crate substrate_network as network; #[macro_use] extern crate substrate_executor; -extern crate substrate_transaction_pool as transaction_pool; -extern crate substrate_basic_authorship as basic_authorship; #[macro_use] extern crate substrate_service; -extern crate joystream_node_runtime; -extern crate structopt; -extern crate node_executor; -extern crate substrate_inherents as inherents; mod chain_spec; mod service; @@ -38,8 +26,9 @@ fn run() -> cli::error::Result<()> { commit: env!("VERGEN_SHA_SHORT"), version: env!("CARGO_PKG_VERSION"), executable_name: "joystream-node", - author: "Jsgenesis.com", - description: "Joystream node built on top of Substrate", + author: "Joystream", + description: "Joystream substrate node", + support_url: "https://www.joystream.org/", }; cli::run(::std::env::args(), cli::Exit, version) } diff --git a/src/service.rs b/src/service.rs index d9c2fece61..c48d568e15 100644 --- a/src/service.rs +++ b/src/service.rs @@ -13,7 +13,7 @@ use substrate_service::{ use basic_authorship::ProposerFactory; use node_executor; use consensus::{import_queue, start_aura, AuraImportQueue, SlotDuration, NothingExtra}; -use client; +use substrate_client as client; use primitives::ed25519::Pair; use inherents::InherentDataProviders; @@ -23,21 +23,14 @@ native_executor_instance!( pub Executor, joystream_node_runtime::api::dispatch, joystream_node_runtime::native_version, - include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime.compact.wasm") + include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm") ); +#[derive(Default)] pub struct NodeConfig { inherent_data_providers: InherentDataProviders, } -impl Default for NodeConfig { - fn default() -> Self { - NodeConfig { - inherent_data_providers: InherentDataProviders::new(), - } - } -} - construct_simple_protocol! { /// Demo protocol attachment for substrate. pub struct NodeProtocol where Block = Block { } @@ -93,6 +86,8 @@ construct_service_factory! { { |config: &mut FactoryFullConfiguration , client: Arc>| import_queue( SlotDuration::get_or_compute(&*client)?, + client.clone(), + None, client, NothingExtra, config.custom.inherent_data_providers.clone(), @@ -106,6 +101,8 @@ construct_service_factory! { { |config: &mut FactoryFullConfiguration, client: Arc>| import_queue( SlotDuration::get_or_compute(&*client)?, + client.clone(), + None, client, NothingExtra, config.custom.inherent_data_providers.clone(), From d320214efccccafab4cc0fb01df0b6e40fe495dd Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 11 Feb 2019 18:29:01 +0200 Subject: [PATCH 113/350] refactor code to work with changes in node-template --- Cargo.toml | 2 +- runtime/src/governance/council.rs | 5 +- runtime/src/governance/election.rs | 76 +++++++++++++++------------ runtime/src/governance/mod.rs | 14 ++--- runtime/src/governance/proposals.rs | 71 +++++++++++++------------ runtime/src/governance/root.rs | 5 +- runtime/src/governance/sealed_vote.rs | 3 +- runtime/src/lib.rs | 2 + 8 files changed, 96 insertions(+), 82 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4782235218..6477e9237b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' git = 'https://github.com/paritytech/substrate.git' rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' -[dependencies.node-template-runtime] +[dependencies.joystream-node-runtime] path = 'runtime' [dependencies.primitives] diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 68d39f8b9c..a5a513833a 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -1,10 +1,11 @@ #![cfg_attr(not(feature = "std"), no_std)] -use srml_support::{StorageValue}; +use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; +use system::{self, ensure_signed}; use runtime_primitives::traits::{As}; use {balances}; -pub use election::{Seats, Seat, CouncilElected}; +pub use super::election::{Seats, Seat, CouncilElected}; // Hook For announcing that council term has ended pub trait CouncilTermEnded { diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 0c9314f210..a1865afe37 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,8 +1,12 @@ #![cfg_attr(not(feature = "std"), no_std)] -use srml_support::{StorageValue, StorageMap, dispatch::Result}; +//use rstd::prelude::*; +use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; +use srml_support::traits::{Currency}; +use system::{self, ensure_signed}; + use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; -use {balances, system::{ensure_signed}}; +use {balances}; use rstd::collections::btree_map::BTreeMap; use rstd::ops::Add; @@ -11,10 +15,14 @@ use rstd::vec::Vec; use super::stake::Stake; use super::sealed_vote::SealedVote; +type BalanceOf = <::Currency as Currency<::AccountId>>::Balance; + pub trait Trait: system::Trait + balances::Trait { type Event: From> + Into<::Event>; type CouncilElected: CouncilElected, Self::BlockNumber>; + + type Currency: Currency<::AccountId>; } #[derive(Clone, Copy, Encode, Decode)] @@ -125,15 +133,15 @@ decl_storage! { Round get(round): u32; ExistingStakeHolders get(existing_stake_holders): Vec; - TransferableStakes get(transferable_stakes): map T::AccountId => TransferableStake; + TransferableStakes get(transferable_stakes): map T::AccountId => TransferableStake>; Applicants get(applicants): Vec; - ApplicantStakes get(applicant_stakes): map T::AccountId => Stake; + ApplicantStakes get(applicant_stakes): map T::AccountId => Stake>; Commitments get(commitments): Vec; // TODO value type of this map looks scary, is there any way to simplify the notation? - Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; + Votes get(votes): map T::Hash => SealedVote>, T::Hash, T::AccountId>; // Election Parameters - default "zero" values are not meaningful. Running an election without // settings reasonable values is a bad idea. Parameters can be set in the TriggerElection hook. @@ -142,9 +150,9 @@ decl_storage! { RevealingPeriod get(revealing_period): T::BlockNumber; CouncilSize get(council_size): u32; CandidacyLimitMultiple get (candidacy_limit_multiple): u32; - MinCouncilStake get(min_council_stake): T::Balance; + MinCouncilStake get(min_council_stake): BalanceOf; NewTermDuration get(new_term_duration): T::BlockNumber; - MinVotingStake get(min_voting_stake): T::Balance; + MinVotingStake get(min_voting_stake): BalanceOf; } } @@ -163,10 +171,10 @@ decl_event!( } ); -impl TriggerElection, ElectionParameters> for Module { +impl TriggerElection>, ElectionParameters>> for Module { fn trigger_election( - current_council: Option>, - params: ElectionParameters) -> Result + current_council: Option>>, + params: ElectionParameters>) -> Result { ensure!(!Self::is_election_running(), "Election already running"); @@ -192,7 +200,7 @@ impl Module { // TODO This method should be moved to Membership module once it's created. fn is_member(sender: T::AccountId) -> bool { - !>::free_balance(sender).is_zero() + !T::Currency::free_balance(&sender).is_zero() } // PUBLIC IMMUTABLES @@ -219,7 +227,7 @@ impl Module { /// Sets the election parameters. Must be called before starting an election otherwise /// last set values will be used. - fn set_election_parameters(params: ElectionParameters) { + fn set_election_parameters(params: ElectionParameters>) { // TODO: consider at what stage it is safe to allow these parameters to change. >::put(params.announcing_period); >::put(params.voting_period); @@ -233,7 +241,7 @@ impl Module { /// Starts an election. Will fail if an election is already running /// Initializes transferable stakes. Assumes election parameters have already been set. - fn start_election(current_council: Option>) -> Result { + fn start_election(current_council: Option>>) -> Result { ensure!(!Self::is_election_running(), "election already in progress"); ensure!(Self::existing_stake_holders().len() == 0, "stake holders must be empty"); ensure!(Self::applicants().len() == 0, "applicants must be empty"); @@ -385,7 +393,7 @@ impl Module { for stakeholder in Self::existing_stake_holders().iter() { let stake = Self::transferable_stakes(stakeholder); if !stake.seat.is_zero() || !stake.backing.is_zero() { - >::unreserve(stakeholder, stake.seat + stake.backing); + T::Currency::unreserve(stakeholder, stake.seat + stake.backing); } } } @@ -410,7 +418,7 @@ impl Module { // return new stake to account's free balance if !stake.new.is_zero() { - >::unreserve(applicant, stake.new); + T::Currency::unreserve(applicant, stake.new); } // return unused transferable stake @@ -432,7 +440,7 @@ impl Module { >::put(not_dropped); } - fn drop_unelected_applicants(new_council: &BTreeMap>) { + fn drop_unelected_applicants(new_council: &BTreeMap>>) { let applicants_to_drop: Vec = Self::applicants().into_iter() .filter(|applicant| !new_council.contains_key(&applicant)) .collect(); @@ -441,8 +449,8 @@ impl Module { } fn refund_voting_stakes( - sealed_votes: &Vec, T::Hash, T::AccountId>>, - new_council: &BTreeMap>) + sealed_votes: &Vec>, T::Hash, T::AccountId>>, + new_council: &BTreeMap>>) { for sealed_vote in sealed_votes.iter() { // Do a refund if commitment was not revealed, or the vote was for applicant that did @@ -458,7 +466,7 @@ impl Module { // return new stake to account's free balance let SealedVote { voter, stake, .. } = sealed_vote; if !stake.new.is_zero() { - >::unreserve(voter, stake.new); + T::Currency::unreserve(voter, stake.new); } // return unused transferable stake @@ -476,8 +484,8 @@ impl Module { >::kill(); } - fn tally_votes(sealed_votes: &Vec, T::Hash, T::AccountId>>) -> BTreeMap> { - let mut tally: BTreeMap> = BTreeMap::new(); + fn tally_votes(sealed_votes: &Vec>, T::Hash, T::AccountId>>) -> BTreeMap>> { + let mut tally: BTreeMap>> = BTreeMap::new(); for sealed_vote in sealed_votes.iter() { if let Some(applicant) = sealed_vote.get_vote() { @@ -502,7 +510,7 @@ impl Module { tally } - fn filter_top_staked(tally: &mut BTreeMap>, limit: usize) { + fn filter_top_staked(tally: &mut BTreeMap>>, limit: usize) { if limit >= tally.len() { return; @@ -554,7 +562,7 @@ impl Module { } /// Takes a snapshot of the stakes from the current council - fn initialize_transferable_stakes(current_council: Seats) { + fn initialize_transferable_stakes(current_council: Seats>) { let mut stakeholder_accounts: Vec = Vec::new(); for seat in current_council.into_iter() { @@ -568,7 +576,7 @@ impl Module { } else { >::insert(&member, TransferableStake { seat: stake, - backing: T::Balance::zero(), + backing: BalanceOf::::zero(), }); stakeholder_accounts.push(member); @@ -584,7 +592,7 @@ impl Module { }); } else { >::insert(&member, TransferableStake { - seat: T::Balance::zero(), + seat: BalanceOf::::zero(), backing: stake, }); @@ -596,7 +604,7 @@ impl Module { >::put(stakeholder_accounts); } - fn new_stake_reusing_transferable(transferable: &mut T::Balance, new_stake: T::Balance) -> Stake { + fn new_stake_reusing_transferable(transferable: &mut BalanceOf, new_stake: BalanceOf) -> Stake> { let transferred = if *transferable >= new_stake { new_stake @@ -612,14 +620,14 @@ impl Module { } } - fn try_add_applicant(applicant: T::AccountId, stake: T::Balance) -> Result { + fn try_add_applicant(applicant: T::AccountId, stake: BalanceOf) -> Result { let mut transferable_stake = >::get(&applicant); let new_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.seat, stake); - ensure!(>::can_reserve(&applicant, new_stake.new), "not enough free balance to reserve"); + ensure!(T::Currency::can_reserve(&applicant, new_stake.new), "not enough free balance to reserve"); - ensure!(>::reserve(&applicant, new_stake.new).is_ok(), "failed to reserve applicant stake!"); + ensure!(T::Currency::reserve(&applicant, new_stake.new).is_ok(), "failed to reserve applicant stake!"); let applicant_stake = >::get(&applicant); let total_stake = applicant_stake.add(&new_stake); @@ -639,16 +647,16 @@ impl Module { Ok(()) } - fn try_add_vote(voter: T::AccountId, stake: T::Balance, commitment: T::Hash) -> Result { + fn try_add_vote(voter: T::AccountId, stake: BalanceOf, commitment: T::Hash) -> Result { ensure!(!>::exists(commitment), "duplicate commitment"); let mut transferable_stake = >::get(&voter); let vote_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.backing, stake); - ensure!(>::can_reserve(&voter, vote_stake.new), "not enough free balance to reserve"); + ensure!(T::Currency::can_reserve(&voter, vote_stake.new), "not enough free balance to reserve"); - ensure!(>::reserve(&voter, vote_stake.new).is_ok(), "failed to reserve voting stake!"); + ensure!(T::Currency::reserve(&voter, vote_stake.new).is_ok(), "failed to reserve voting stake!"); >::mutate(|commitments| commitments.push(commitment)); @@ -694,7 +702,7 @@ decl_module! { // Member can apply during announcing stage only. On first call a minimum stake will need to be provided. // Member can make subsequent calls during announcing stage to increase their stake. - fn apply(origin, stake: T::Balance) -> Result { + fn apply(origin, stake: BalanceOf) -> Result { let sender = ensure_signed(origin)?; ensure!(Self::is_member(sender.clone()), "Only members can apply to be on council"); @@ -716,7 +724,7 @@ decl_module! { } } - fn vote(origin, commitment: T::Hash, stake: T::Balance) -> Result { + fn vote(origin, commitment: T::Hash, stake: BalanceOf) -> Result { let sender = ensure_signed(origin)?; ensure!(Self::is_member(sender.clone()), "Only members can vote for an applicant"); diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index a628f26e7d..53342876fc 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -1,14 +1,10 @@ #![cfg_attr(not(feature = "std"), no_std)] -extern crate sr_std; -#[cfg(test)] -extern crate sr_io; -#[cfg(test)] -extern crate substrate_primitives; -extern crate sr_primitives; -#[cfg(feature = "std")] -extern crate parity_codec as codec; -extern crate srml_system as system; +use rstd::prelude::*; +// use rstd::result; +// use srml_support::dispatch::{Dispatchable, Parameter}; +// use srml_support::{StorageValue, StorageMap, decl_module, decl_event, decl_storage, ensure}; +// use system::{self, ensure_signed}; pub mod election; pub mod council; diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 351e0e04ee..85f8aeb269 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -1,11 +1,12 @@ -use srml_support::{storage, StorageValue, StorageMap, dispatch::Result}; +use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; +use srml_support::traits::{Currency}; use primitives::{storage::well_known_keys}; use runtime_primitives::traits::{As, Hash, Zero}; use runtime_io::print; use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; -use council; +use super::council; const DEFAULT_APPROVAL_QUORUM: u32 = 60; const DEFAULT_MIN_STAKE: u64 = 100; @@ -113,9 +114,13 @@ pub struct TallyResult { finalized_at: BlockNumber, } +type BalanceOf = <::Currency as Currency<::AccountId>>::Balance; + pub trait Trait: balances::Trait + timestamp::Trait + council::Trait { /// The overarching event type. type Event: From> + Into<::Event>; + + type Currency: Currency<::AccountId>; } decl_event!( @@ -158,20 +163,20 @@ decl_storage! { ApprovalQuorum get(approval_quorum) config(): u32 = DEFAULT_APPROVAL_QUORUM; /// Minimum balance amount to be staked in order to make a proposal. - MinimumStake get(minimum_stake) config(): T::Balance = - T::Balance::sa(DEFAULT_MIN_STAKE); + MinimumStake get(minimum_stake) config(): BalanceOf = + BalanceOf::::sa(DEFAULT_MIN_STAKE); /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. - CancellationFee get(cancellation_fee) config(): T::Balance = - T::Balance::sa(DEFAULT_CANCELLATION_FEE); + CancellationFee get(cancellation_fee) config(): BalanceOf = + BalanceOf::::sa(DEFAULT_CANCELLATION_FEE); /// A fee to be slashed (burn) in case a proposal was rejected. - RejectionFee get(rejection_fee) config(): T::Balance = - T::Balance::sa(DEFAULT_REJECTION_FEE); + RejectionFee get(rejection_fee) config(): BalanceOf = + BalanceOf::::sa(DEFAULT_REJECTION_FEE); /// Max duration of proposal in blocks until it will be expired if not enough votes. - VotingPeriod get(voting_period) config(): T::BlockNumber = - T::BlockNumber::sa(DEFAULT_VOTING_PERIOD_IN_SECS / + VotingPeriod get(voting_period) config(): T::BlockNumber = + T::BlockNumber::sa(DEFAULT_VOTING_PERIOD_IN_SECS / >::block_period().as_()); NameMaxLen get(name_max_len) config(): u32 = DEFAULT_NAME_MAX_LEN; @@ -183,7 +188,7 @@ decl_storage! { ProposalCount get(proposal_count): ProposalId; // TODO rename 'proposal' -> 'proposals' - Proposals get(proposal): map ProposalId => Proposal; + Proposals get(proposal): map ProposalId => Proposal, T::BlockNumber>; // TODO rename to `ActiveProposalIds` PendingProposalIds get(pending_proposal_ids): Vec = vec![]; @@ -208,7 +213,7 @@ decl_module! { /// ``` fn create_proposal( origin, - stake: T::Balance, + stake: BalanceOf, name: Vec, description: Vec, // wasm_hash: T::Hash, @@ -229,7 +234,7 @@ decl_module! { ensure!(wasm_code.len() as u32 <= Self::wasm_code_max_len(), MSG_TOO_LONG_WASM_CODE); // Lock proposer's stake: - >::reserve(&proposer, stake) + T::Currency::reserve(&proposer, stake) .map_err(|_| MSG_STAKE_IS_GREATER_THAN_BALANCE)?; let proposal_id = Self::proposal_count() + 1; @@ -294,11 +299,11 @@ decl_module! { // Spend some minimum fee on proposer's balance for canceling a proposal let fee = Self::cancellation_fee(); - let _ = >::slash_reserved(&proposer, fee); + let _ = T::Currency::slash_reserved(&proposer, fee); // Return unspent part of remaining staked deposit (after taking some fee) let left_stake = proposal.stake - fee; - let _ = >::unreserve(&proposer, left_stake); + let _ = T::Currency::unreserve(&proposer, left_stake); Self::_update_proposal_status(proposal_id, Cancelled)?; Self::deposit_event(RawEvent::ProposalCanceled(proposer, proposal_id)); @@ -323,7 +328,7 @@ impl Module { // TODO This method should be moved to Membership module once it's created. fn is_member(sender: T::AccountId) -> bool { - !>::free_balance(sender).is_zero() + !T::Currency::free_balance(&sender).is_zero() } fn is_councilor(sender: T::AccountId) -> bool { @@ -469,7 +474,7 @@ impl Module { let proposal = Self::proposal(proposal_id); // Slash proposer's stake: - let _ = >::slash_reserved(&proposal.proposer, proposal.stake); + let _ = T::Currency::slash_reserved(&proposal.proposer, proposal.stake); Ok(()) } @@ -481,11 +486,11 @@ impl Module { // Spend some minimum fee on proposer's balance to prevent spamming attacks: let fee = Self::rejection_fee(); - let _ = >::slash_reserved(&proposer, fee); + let _ = T::Currency::slash_reserved(&proposer, fee); // Return unspent part of remaining staked deposit (after taking some fee): let left_stake = proposal.stake - fee; - let _ = >::unreserve(&proposer, left_stake); + let _ = T::Currency::unreserve(&proposer, left_stake); Ok(()) } @@ -496,7 +501,7 @@ impl Module { let wasm_code = proposal.wasm_code; // Return staked deposit to proposer: - let _ = >::unreserve(&proposal.proposer, proposal.stake); + let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); @@ -762,7 +767,7 @@ mod tests { with_externalities(&mut new_test_ext(), || { // In this test a proposer has an empty balance // thus he is not considered as a member. - assert_eq!(_create_default_proposal(), + assert_eq!(_create_default_proposal(), Err(MSG_ONLY_MEMBERS_CAN_PROPOSE)); }); } @@ -774,7 +779,7 @@ mod tests { Balances::increase_total_stake_by(initial_balance()); assert_eq!(_create_proposal( - None, Some(minimum_stake() - 1), None, None, None), + None, Some(minimum_stake() - 1), None, None, None), Err(MSG_STAKE_IS_TOO_LOW)); // Check that balances remain unchanged afer a failed attempt to create a proposal: @@ -790,7 +795,7 @@ mod tests { Balances::increase_total_stake_by(initial_balance()); assert_eq!(_create_proposal( - None, Some(initial_balance() + 1), None, None, None), + None, Some(initial_balance() + 1), None, None, None), Err(MSG_STAKE_IS_GREATER_THAN_BALANCE)); // Check that balances remain unchanged afer a failed attempt to create a proposal: @@ -804,20 +809,20 @@ mod tests { with_externalities(&mut new_test_ext(), || { Balances::set_free_balance(&PROPOSER1, initial_balance()); Balances::increase_total_stake_by(initial_balance()); - + // Empty name: assert_eq!(_create_proposal( - None, None, Some(vec![]), None, None), + None, None, Some(vec![]), None, None), Err(MSG_EMPTY_NAME_PROVIDED)); // Empty description: assert_eq!(_create_proposal( - None, None, None, Some(vec![]), None), + None, None, None, Some(vec![]), None), Err(MSG_EMPTY_DESCRIPTION_PROVIDED)); // Empty WASM code: assert_eq!(_create_proposal( - None, None, None, None, Some(vec![])), + None, None, None, None, Some(vec![])), Err(MSG_EMPTY_WASM_CODE_PROVIDED)); }); } @@ -827,20 +832,20 @@ mod tests { with_externalities(&mut new_test_ext(), || { Balances::set_free_balance(&PROPOSER1, initial_balance()); Balances::increase_total_stake_by(initial_balance()); - + // Too long name: assert_eq!(_create_proposal( - None, None, Some(too_long_name()), None, None), + None, None, Some(too_long_name()), None, None), Err(MSG_TOO_LONG_NAME)); // Too long description: assert_eq!(_create_proposal( - None, None, None, Some(too_long_description()), None), + None, None, None, Some(too_long_description()), None), Err(MSG_TOO_LONG_DESCRIPTION)); // Too long WASM code: assert_eq!(_create_proposal( - None, None, None, None, Some(too_long_wasm_code())), + None, None, None, None, Some(too_long_wasm_code())), Err(MSG_TOO_LONG_WASM_CODE)); }); } @@ -909,7 +914,7 @@ mod tests { Balances::set_free_balance(&PROPOSER2, initial_balance()); Balances::increase_total_stake_by(initial_balance() * 2); assert_ok!(_create_default_proposal()); - assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), + assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), Err(MSG_YOU_DONT_OWN_THIS_PROPOSAL)); }); } @@ -1366,4 +1371,4 @@ mod tests { // TODO expect event ProposalStatusUpdated(1, Rejected) }); } -} \ No newline at end of file +} diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 58157c6a8b..1f1e91819f 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -1,8 +1,9 @@ #![cfg_attr(not(feature = "std"), no_std)] -use srml_support::{StorageValue, StorageMap, dispatch::Result}; +use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; +use system::{self, ensure_signed}; -use governance::{council, election::{self, TriggerElection}}; +use super::{council, election::{self, TriggerElection}}; pub trait Trait: system::Trait + council::Trait + election::Trait { type Event: From> + Into<::Event>; diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs index f5be37bf90..324e0a50ba 100644 --- a/runtime/src/governance/sealed_vote.rs +++ b/runtime/src/governance/sealed_vote.rs @@ -1,7 +1,8 @@ #![cfg_attr(not(feature = "std"), no_std)] +use srml_support::{ensure}; use parity_codec::Encode; -use srml_support::dispatch::Vec; +use rstd::vec::Vec; #[derive(Clone, Copy, Encode, Decode, Default)] pub struct SealedVote diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 3e9885ba34..7e95209a71 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -177,11 +177,13 @@ impl sudo::Trait for Runtime { impl governance::proposals::Trait for Runtime { type Event = Event; + type Currency = balances::Module; } impl governance::election::Trait for Runtime { type Event = Event; type CouncilElected = (Council,); + type Currency = balances::Module; } impl governance::council::Trait for Runtime { From 8e7b44d47e1e12ea4ffb14581ec7b0ac8cf90a8c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 11 Feb 2019 18:58:18 +0200 Subject: [PATCH 114/350] GovernanceCurrency trait --- runtime/src/governance/council.rs | 12 +++++++----- runtime/src/governance/election.rs | 8 +++----- runtime/src/governance/mod.rs | 12 ++++++++---- runtime/src/governance/proposals.rs | 7 ++----- runtime/src/governance/root.rs | 7 ++++--- runtime/src/lib.rs | 6 ++++-- 6 files changed, 28 insertions(+), 24 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index a5a513833a..c2879f891d 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -1,11 +1,13 @@ #![cfg_attr(not(feature = "std"), no_std)] use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; +use srml_support::traits::{Currency}; use system::{self, ensure_signed}; use runtime_primitives::traits::{As}; use {balances}; -pub use super::election::{Seats, Seat, CouncilElected}; +pub use super::election::{self, Seats, Seat, CouncilElected}; +pub use super::{ GovernanceCurrency, BalanceOf }; // Hook For announcing that council term has ended pub trait CouncilTermEnded { @@ -22,7 +24,7 @@ impl CouncilTermEnded for (X,) { } } -pub trait Trait: system::Trait + balances::Trait { +pub trait Trait: system::Trait + balances::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; type CouncilTermEnded: CouncilTermEnded; @@ -30,7 +32,7 @@ pub trait Trait: system::Trait + balances::Trait { decl_storage! { trait Store for Module as Council { - ActiveCouncil get(active_council) config(): Option> = None; + ActiveCouncil get(active_council) config(): Option>> = None; TermEndsAt get(term_ends_at) config(): T::BlockNumber = T::BlockNumber::sa(0); } } @@ -43,8 +45,8 @@ decl_event!( } ); -impl CouncilElected, T::BlockNumber> for Module { - fn council_elected(seats: Seats, term: T::BlockNumber) { +impl CouncilElected>, T::BlockNumber> for Module { + fn council_elected(seats: Seats>, term: T::BlockNumber) { >::put(seats); let next_term_ends_at = >::block_number() + term; diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index a1865afe37..b30a65e0d9 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -15,14 +15,12 @@ use rstd::vec::Vec; use super::stake::Stake; use super::sealed_vote::SealedVote; -type BalanceOf = <::Currency as Currency<::AccountId>>::Balance; +pub use super::{ GovernanceCurrency, BalanceOf }; -pub trait Trait: system::Trait + balances::Trait { +pub trait Trait: system::Trait + balances::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; - type CouncilElected: CouncilElected, Self::BlockNumber>; - - type Currency: Currency<::AccountId>; + type CouncilElected: CouncilElected>, Self::BlockNumber>; } #[derive(Clone, Copy, Encode, Decode)] diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 53342876fc..e871773603 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -1,10 +1,8 @@ #![cfg_attr(not(feature = "std"), no_std)] use rstd::prelude::*; -// use rstd::result; -// use srml_support::dispatch::{Dispatchable, Parameter}; -// use srml_support::{StorageValue, StorageMap, decl_module, decl_event, decl_storage, ensure}; -// use system::{self, ensure_signed}; +use srml_support::traits::{Currency}; +use system; pub mod election; pub mod council; @@ -14,6 +12,12 @@ pub mod proposals; mod stake; mod sealed_vote; +pub trait GovernanceCurrency: system::Trait { + type Currency: Currency<::AccountId>; +} + +pub type BalanceOf = <::Currency as Currency<::AccountId>>::Balance; + #[cfg(test)] pub mod tests { pub use super::*; diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 85f8aeb269..c22b4ceb98 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -7,6 +7,7 @@ use {balances, system::{self, ensure_signed}}; use rstd::prelude::*; use super::council; +pub use super::{ GovernanceCurrency, BalanceOf }; const DEFAULT_APPROVAL_QUORUM: u32 = 60; const DEFAULT_MIN_STAKE: u64 = 100; @@ -114,13 +115,9 @@ pub struct TallyResult { finalized_at: BlockNumber, } -type BalanceOf = <::Currency as Currency<::AccountId>>::Balance; - -pub trait Trait: balances::Trait + timestamp::Trait + council::Trait { +pub trait Trait: balances::Trait + timestamp::Trait + council::Trait + GovernanceCurrency { /// The overarching event type. type Event: From> + Into<::Event>; - - type Currency: Currency<::AccountId>; } decl_event!( diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 1f1e91819f..04cf8057dc 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -2,18 +2,19 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; use system::{self, ensure_signed}; +pub use super::{ GovernanceCurrency, BalanceOf }; use super::{council, election::{self, TriggerElection}}; -pub trait Trait: system::Trait + council::Trait + election::Trait { +pub trait Trait: system::Trait + council::Trait + election::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; - type TriggerElection: election::TriggerElection, election::ElectionParameters>; + type TriggerElection: election::TriggerElection>, election::ElectionParameters>>; } decl_storage! { trait Store for Module as Root { - ElectionParameters get(election_parameters) config(): election::ElectionParameters; + ElectionParameters get(election_parameters) config(): election::ElectionParameters>; } } diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 7e95209a71..5ce078945e 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -175,15 +175,17 @@ impl sudo::Trait for Runtime { type Proposal = Call; } +impl governance::GovernanceCurrency for Runtime { + type Currency = balances::Module; +} + impl governance::proposals::Trait for Runtime { type Event = Event; - type Currency = balances::Module; } impl governance::election::Trait for Runtime { type Event = Event; type CouncilElected = (Council,); - type Currency = balances::Module; } impl governance::council::Trait for Runtime { From d2ee8517836b81103a50916864c3564d5f578a2a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 12 Feb 2019 08:40:13 +0200 Subject: [PATCH 115/350] final refactor to build node and runtime --- runtime/src/governance/election.rs | 3 +-- runtime/src/governance/proposals.rs | 10 ++++------ runtime/src/lib.rs | 1 + runtime/wasm/src | 1 - runtime/wasm/src/lib.rs | 3 +++ 5 files changed, 9 insertions(+), 9 deletions(-) delete mode 120000 runtime/wasm/src create mode 100644 runtime/wasm/src/lib.rs diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index b30a65e0d9..d34a69cb7a 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -1,6 +1,6 @@ #![cfg_attr(not(feature = "std"), no_std)] -//use rstd::prelude::*; +use rstd::prelude::*; use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; use srml_support::traits::{Currency}; use system::{self, ensure_signed}; @@ -10,7 +10,6 @@ use {balances}; use rstd::collections::btree_map::BTreeMap; use rstd::ops::Add; -use rstd::vec::Vec; use super::stake::Stake; use super::sealed_vote::SealedVote; diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index c22b4ceb98..6253b1ddf9 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -500,7 +500,8 @@ impl Module { // Return staked deposit to proposer: let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); - + // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 + let wasm_hash = T::Hashing::hash(&wasm_code); // TODO fix: this doesn't update storage in tests :( // println!("> before storage::unhashed::get_raw\n{:?}", @@ -509,15 +510,12 @@ impl Module { // println!("wasm code: {:?}", wasm_code.clone()); // Update wasm code of node's runtime: - storage::unhashed::put_raw(well_known_keys::CODE, &wasm_code.clone()); + //storage::unhashed::put_raw(well_known_keys::CODE, &wasm_code.clone()); + >::set_code(wasm_code)?; // println!("< AFTER storage::unhashed::get_raw\n{:?}", // storage::unhashed::get_raw(well_known_keys::CODE)); - - - // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 - let wasm_hash = T::Hashing::hash(&wasm_code); Self::deposit_event(RawEvent::RuntimeUpdated(proposal_id, wasm_hash)); Ok(()) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 5ce078945e..a9f01cb491 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -13,6 +13,7 @@ use substrate_client as client; #[macro_use] extern crate parity_codec_derive; + pub mod governance; use governance::{election, council, root, proposals}; diff --git a/runtime/wasm/src b/runtime/wasm/src deleted file mode 120000 index 5cd551cf26..0000000000 --- a/runtime/wasm/src +++ /dev/null @@ -1 +0,0 @@ -../src \ No newline at end of file diff --git a/runtime/wasm/src/lib.rs b/runtime/wasm/src/lib.rs new file mode 100644 index 0000000000..65d525ebb3 --- /dev/null +++ b/runtime/wasm/src/lib.rs @@ -0,0 +1,3 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +pub use joystream_node_runtime::*; From b9a4441cfe1404208cd006c42075ab41f7e6ed62 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 12 Feb 2019 10:29:40 +0200 Subject: [PATCH 116/350] fixed tests --- runtime/src/governance/election.rs | 4 +- runtime/src/governance/mock.rs | 106 ++++++++++++++++++++++++++++ runtime/src/governance/mod.rs | 102 +------------------------- runtime/src/governance/proposals.rs | 7 +- runtime/src/governance/root.rs | 6 +- 5 files changed, 120 insertions(+), 105 deletions(-) create mode 100644 runtime/src/governance/mock.rs diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d34a69cb7a..d2addf30ed 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -761,8 +761,10 @@ decl_module! { #[cfg(test)] mod tests { use super::*; - use ::governance::tests::*; + use crate::governance::mock::*; use parity_codec::Encode; + use runtime_io::with_externalities; + use srml_support::*; #[test] fn new_stake_reusing_transferable_works() { diff --git a/runtime/src/governance/mock.rs b/runtime/src/governance/mock.rs new file mode 100644 index 0000000000..7b9cd92838 --- /dev/null +++ b/runtime/src/governance/mock.rs @@ -0,0 +1,106 @@ +#![cfg(test)] + +use rstd::prelude::*; +pub use super::{election, council, root, proposals, GovernanceCurrency}; +pub use system; + +pub use primitives::{H256, Blake2Hasher}; +pub use runtime_primitives::{ + BuildStorage, + traits::{BlakeTwo256, OnFinalise, IdentityLookup}, + testing::{Digest, DigestItem, Header, UintAuthorityId} +}; + +use srml_support::impl_outer_origin; + +impl_outer_origin! { + pub enum Origin for Test {} +} + +// For testing the module, we construct most of a mock runtime. This means +// first constructing a configuration type (`Test`) which `impl`s each of the +// configuration traits of modules we want to use. +#[derive(Clone, Eq, PartialEq)] +pub struct Test; +impl system::Trait for Test { + type Origin = Origin; + type Index = u64; + type BlockNumber = u64; + type Hash = H256; + type Hashing = BlakeTwo256; + type Digest = Digest; + type AccountId = u64; + type Header = Header; + type Event = (); + type Log = DigestItem; + type Lookup = IdentityLookup; +} +impl timestamp::Trait for Test { + type Moment = u64; + type OnTimestampSet = (); +} +impl consensus::Trait for Test { + type SessionKey = UintAuthorityId; + type InherentOfflineReport = (); + type Log = DigestItem; +} +impl council::Trait for Test { + type Event = (); + + type CouncilTermEnded = (Governance,); +} +impl election::Trait for Test { + type Event = (); + + type CouncilElected = (Council,); +} +impl proposals::Trait for Test { + type Event = (); +} +impl balances::Trait for Test { + type Event = (); + + /// The balance of an account. + type Balance = u32; + + /// A function which is invoked when the free-balance has fallen below the existential deposit and + /// has been reduced to zero. + /// + /// Gives a chance to clean up resources associated with the given account. + type OnFreeBalanceZero = (); + + /// Handler for when a new account is created. + type OnNewAccount = (); + + /// A function that returns true iff a given account can transfer its funds to another account. + type EnsureAccountLiquid = (); +} +impl root::Trait for Test { + type Event = (); + + type TriggerElection = (Election,); +} +impl GovernanceCurrency for Test { + type Currency = balances::Module; +} + +// TODO add a Hook type to capture TriggerElection and CouncilElected hooks + +// This function basically just builds a genesis storage key/value store according to +// our desired mockup. +pub fn initial_test_ext() -> runtime_io::TestExternalities { + let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; + + t.extend(root::GenesisConfig:: { + election_parameters: Default::default(), + }.build_storage().unwrap().0); + + runtime_io::TestExternalities::new(t) +} + +pub type Governance = root::Module; +pub type Election = election::Module; +pub type Council = council::Module; +pub type Proposals = proposals::Module; +pub type System = system::Module; +pub type Balances = balances::Module; diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index e871773603..ed29d02457 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -18,104 +18,4 @@ pub trait GovernanceCurrency: system::Trait { pub type BalanceOf = <::Currency as Currency<::AccountId>>::Balance; -#[cfg(test)] -pub mod tests { - pub use super::*; - - pub use self::sr_io::with_externalities; - pub use self::substrate_primitives::{H256, Blake2Hasher}; - pub use self::sr_primitives::{ - BuildStorage, - traits::{BlakeTwo256, OnFinalise, IdentityLookup}, - testing::{Digest, DigestItem, Header, UintAuthorityId} - }; - - impl_outer_origin! { - pub enum Origin for Test {} - } - - // For testing the module, we construct most of a mock runtime. This means - // first constructing a configuration type (`Test`) which `impl`s each of the - // configuration traits of modules we want to use. - #[derive(Clone, Eq, PartialEq)] - pub struct Test; - impl system::Trait for Test { - type Origin = Origin; - type Index = u64; - type BlockNumber = u64; - type Hash = H256; - type Hashing = BlakeTwo256; - type Digest = Digest; - type AccountId = u64; - type Header = Header; - type Event = (); - type Log = DigestItem; - type Lookup = IdentityLookup; - } - impl timestamp::Trait for Test { - type Moment = u64; - type OnTimestampSet = (); - } - impl consensus::Trait for Test { - type SessionKey = UintAuthorityId; - type InherentOfflineReport = (); - type Log = DigestItem; - } - impl council::Trait for Test { - type Event = (); - - type CouncilTermEnded = (Governance,); - } - impl election::Trait for Test { - type Event = (); - - type CouncilElected = (Council,); - } - impl proposals::Trait for Test { - type Event = (); - } - impl balances::Trait for Test { - type Event = (); - - /// The balance of an account. - type Balance = u32; - - /// A function which is invoked when the free-balance has fallen below the existential deposit and - /// has been reduced to zero. - /// - /// Gives a chance to clean up resources associated with the given account. - type OnFreeBalanceZero = (); - - /// Handler for when a new account is created. - type OnNewAccount = (); - - /// A function that returns true iff a given account can transfer its funds to another account. - type EnsureAccountLiquid = (); - } - impl root::Trait for Test { - type Event = (); - - type TriggerElection = (Election,); - } - - // TODO add a Hook type to capture TriggerElection and CouncilElected hooks - - // This function basically just builds a genesis storage key/value store according to - // our desired mockup. - pub fn initial_test_ext() -> sr_io::TestExternalities { - let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; - - t.extend(root::GenesisConfig:: { - election_parameters: Default::default(), - }.build_storage().unwrap().0); - - runtime_io::TestExternalities::new(t) - } - - pub type Governance = root::Module; - pub type Election = election::Module; - pub type Council = council::Module; - pub type Proposals = proposals::Module; - pub type System = system::Module; - pub type Balances = balances::Module; -} \ No newline at end of file +mod mock; \ No newline at end of file diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 6253b1ddf9..aa4c7a0b67 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -536,6 +536,7 @@ mod tests { testing::{Digest, DigestItem, Header, UintAuthorityId} }; use system::{EventRecord, Phase}; + use srml_support::*; impl_outer_origin! { pub enum Origin for Test {} @@ -585,6 +586,10 @@ mod tests { type CouncilTermEnded = (); } + impl GovernanceCurrency for Test { + type Currency = balances::Module; + } + impl Trait for Test { type Event = (); } @@ -705,7 +710,7 @@ mod tests { } macro_rules! assert_runtime_code_empty { - () => { assert_eq!(get_runtime_code(), Some(vec![])) } + () => { assert_eq!(get_runtime_code(), None) } } macro_rules! assert_runtime_code { diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 04cf8057dc..910c1febed 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -1,5 +1,5 @@ #![cfg_attr(not(feature = "std"), no_std)] - +use rstd::prelude::*; use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; use system::{self, ensure_signed}; pub use super::{ GovernanceCurrency, BalanceOf }; @@ -57,7 +57,9 @@ impl council::CouncilTermEnded for Module { #[cfg(test)] mod tests { use super::*; - use ::governance::tests::*; + use crate::governance::mock::*; + use runtime_io::with_externalities; + use srml_support::*; #[test] fn election_is_triggerred_when_council_term_ends() { From 01408e8dfb54217423e94bce4d0e871583f98f61 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 15 Feb 2019 18:24:19 +0200 Subject: [PATCH 117/350] sudo methods for council --- runtime/src/governance/council.rs | 44 +++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index c2879f891d..4f905e7631 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -3,8 +3,9 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; use srml_support::traits::{Currency}; use system::{self, ensure_signed}; -use runtime_primitives::traits::{As}; +use runtime_primitives::traits::{As, Zero}; use {balances}; +use rstd::prelude::*; pub use super::election::{self, Seats, Seat, CouncilElected}; pub use super::{ GovernanceCurrency, BalanceOf }; @@ -33,7 +34,7 @@ pub trait Trait: system::Trait + balances::Trait + GovernanceCurrency { decl_storage! { trait Store for Module as Council { ActiveCouncil get(active_council) config(): Option>> = None; - TermEndsAt get(term_ends_at) config(): T::BlockNumber = T::BlockNumber::sa(0); + TermEndsAt get(term_ends_at) : T::BlockNumber = T::BlockNumber::sa(0); } } @@ -79,5 +80,44 @@ decl_module! { T::CouncilTermEnded::council_term_ended(); } } + + // Sudo methods... + + /// Force set a zero staked council. Stakes in existing council will vanish into thin air! + fn set_council(accounts: Vec) { + let new_council: Seats> = accounts.iter().map(|account| { + Seat { + member: account.clone(), + stake: BalanceOf::::zero(), + backers: vec![] + } + }).collect(); + >::put(new_council); + } + + /// Adds a zero staked council member + fn add_council_seat(account: T::AccountId) { + let seat = Seat { + member: account.clone(), + stake: BalanceOf::::zero(), + backers: vec![] + }; + + // add seat to existing council + if let Some(mut active) = Self::active_council() { + active.push(seat); + >::put(active); + } else { + // add as first seat into a new council + >::put(vec![seat]); + } + } + + /// Set blocknumber when council term will end + fn set_term_ends_at(ends_at: T::BlockNumber) -> Result { + ensure!(ends_at > >::block_number(), "must set future block number"); + >::put(ends_at); + Ok(()) + } } } From e1aa225856b79802588a38c50a54ce3fe1a05550 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Feb 2019 10:42:05 +0200 Subject: [PATCH 118/350] rename ElectionParameters NextElectionParameters --- runtime/src/governance/election.rs | 2 +- runtime/src/governance/mock.rs | 2 +- runtime/src/governance/proposals.rs | 1 - runtime/src/governance/root.rs | 9 +++++++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d2addf30ed..416d6c5479 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -140,7 +140,7 @@ decl_storage! { // TODO value type of this map looks scary, is there any way to simplify the notation? Votes get(votes): map T::Hash => SealedVote>, T::Hash, T::AccountId>; - // Election Parameters - default "zero" values are not meaningful. Running an election without + // Current Election Parameters - default "zero" values are not meaningful. Running an election without // settings reasonable values is a bad idea. Parameters can be set in the TriggerElection hook. AnnouncingPeriod get(announcing_period): T::BlockNumber; VotingPeriod get(voting_period): T::BlockNumber; diff --git a/runtime/src/governance/mock.rs b/runtime/src/governance/mock.rs index 7b9cd92838..7f9d191eb3 100644 --- a/runtime/src/governance/mock.rs +++ b/runtime/src/governance/mock.rs @@ -92,7 +92,7 @@ pub fn initial_test_ext() -> runtime_io::TestExternalities { let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; t.extend(root::GenesisConfig:: { - election_parameters: Default::default(), + next_election_parameters: Default::default(), }.build_storage().unwrap().0); runtime_io::TestExternalities::new(t) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index aa4c7a0b67..39a7fd8dae 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -643,7 +643,6 @@ mod tests { t.extend(council::GenesisConfig::{ active_council: council_mock, - term_ends_at: 0 }.build_storage().unwrap().0); // t.extend(GenesisConfig::{ diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 910c1febed..8f716f3107 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -14,7 +14,8 @@ pub trait Trait: system::Trait + council::Trait + election::Trait + GovernanceCu decl_storage! { trait Store for Module as Root { - ElectionParameters get(election_parameters) config(): election::ElectionParameters>; + // Electin Parameters to be used on the next election + NextElectionParameters get(next_election_parameters) config(): election::ElectionParameters>; } } @@ -35,6 +36,10 @@ impl Module { decl_module! { pub struct Module for enum Call where origin: T::Origin { fn deposit_event() = default; + + fn set_next_election_parameters (params: election::ElectionParameters>) { + >::put(params); + } } } @@ -45,7 +50,7 @@ impl council::CouncilTermEnded for Module { if !>::is_election_running() { let current_council = >::active_council(); - let params = Self::election_parameters(); + let params = Self::next_election_parameters(); if T::TriggerElection::trigger_election(current_council, params).is_ok() { Self::deposit_event(RawEvent::ElectionStarted()); From ff996308fa7e80a82a77d77e9052b8d7c3ceb523 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Feb 2019 12:07:17 +0200 Subject: [PATCH 119/350] add auto start election flag --- runtime/src/governance/election.rs | 2 +- runtime/src/governance/root.rs | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 416d6c5479..29059ac570 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -85,7 +85,7 @@ impl> Trigger } #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Clone, Copy, Encode, Decode)] +#[derive(Clone, Copy, Encode, Decode, PartialEq)] pub struct ElectionParameters { pub announcing_period: BlockNumber, pub voting_period: BlockNumber, diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 8f716f3107..ef55fd9216 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -16,6 +16,9 @@ decl_storage! { trait Store for Module as Root { // Electin Parameters to be used on the next election NextElectionParameters get(next_election_parameters) config(): election::ElectionParameters>; + + // Flag for wether to automatically start an election after a council term ends + AutoStartElections get(auto_start_elections) : bool = true; } } @@ -40,6 +43,10 @@ decl_module! { fn set_next_election_parameters (params: election::ElectionParameters>) { >::put(params); } + + fn set_auto_start_elections (flag: bool) { + >::put(flag); + } } } @@ -47,7 +54,7 @@ impl council::CouncilTermEnded for Module { fn council_term_ended() { Self::deposit_event(RawEvent::CouncilTermEnded()); - if !>::is_election_running() { + if Self::auto_start_elections() && !>::is_election_running() { let current_council = >::active_council(); let params = Self::next_election_parameters(); From ac26ab307a4e831a763514b4c3ecaab7d9a7912f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Feb 2019 12:27:59 +0200 Subject: [PATCH 120/350] election: make sudo set_election_parameters --- runtime/src/governance/election.rs | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 29059ac570..4da31a1795 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -222,20 +222,6 @@ impl Module { // PRIVATE MUTABLES - /// Sets the election parameters. Must be called before starting an election otherwise - /// last set values will be used. - fn set_election_parameters(params: ElectionParameters>) { - // TODO: consider at what stage it is safe to allow these parameters to change. - >::put(params.announcing_period); - >::put(params.voting_period); - >::put(params.revealing_period); - >::put(params.min_council_stake); - >::put(params.new_term_duration); - >::put(params.council_size); - >::put(params.candidacy_limit_multiple); - >::put(params.min_voting_stake); - } - /// Starts an election. Will fail if an election is already running /// Initializes transferable stakes. Assumes election parameters have already been set. fn start_election(current_council: Option>>) -> Result { @@ -755,6 +741,22 @@ decl_module! { } } + /// Change elections parameters inflight + fn set_election_parameters(params: ElectionParameters>) -> Result { + // No point changing parameters if no election is running. Change the NextElectionParameters in root + // instead. + ensure!(Self::is_election_running(), "ineffective to change params if no election is running"); + >::put(params.announcing_period); + >::put(params.voting_period); + >::put(params.revealing_period); + >::put(params.min_council_stake); + >::put(params.new_term_duration); + >::put(params.council_size); + >::put(params.candidacy_limit_multiple); + >::put(params.min_voting_stake); + Ok(()) + } + } } From ff4850ac5d4f0ecdb2b4e219b7d7996e8fc38a95 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Feb 2019 12:36:14 +0200 Subject: [PATCH 121/350] revert, keep term_ends_at configurable in genesis --- runtime/src/governance/council.rs | 2 +- runtime/src/governance/proposals.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 4f905e7631..5fbe06f443 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -34,7 +34,7 @@ pub trait Trait: system::Trait + balances::Trait + GovernanceCurrency { decl_storage! { trait Store for Module as Council { ActiveCouncil get(active_council) config(): Option>> = None; - TermEndsAt get(term_ends_at) : T::BlockNumber = T::BlockNumber::sa(0); + TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::sa(0); } } diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 39a7fd8dae..18c8ecfb9a 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -643,6 +643,7 @@ mod tests { t.extend(council::GenesisConfig::{ active_council: council_mock, + term_ends_at: 0, }.build_storage().unwrap().0); // t.extend(GenesisConfig::{ From 258bcd197328f2715980fd3d4e8d59e0aa236f58 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Feb 2019 12:50:12 +0200 Subject: [PATCH 122/350] rename add_council_seat, change is_councilor to take a ref to accountid --- runtime/src/governance/council.rs | 16 +++++++++------- runtime/src/governance/proposals.rs | 6 +++--- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 5fbe06f443..e38cecaaec 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -62,9 +62,9 @@ impl Module { block >= Self::term_ends_at() } - pub fn is_councilor(sender: T::AccountId) -> bool { + pub fn is_councilor(sender: &T::AccountId) -> bool { if let Some(council) = Self::active_council() { - council.iter().any(|c| c.member == sender) + council.iter().any(|c| c.member == *sender) } else { false } @@ -85,9 +85,9 @@ decl_module! { /// Force set a zero staked council. Stakes in existing council will vanish into thin air! fn set_council(accounts: Vec) { - let new_council: Seats> = accounts.iter().map(|account| { + let new_council: Seats> = accounts.into_iter().map(|account| { Seat { - member: account.clone(), + member: account, stake: BalanceOf::::zero(), backers: vec![] } @@ -96,14 +96,15 @@ decl_module! { } /// Adds a zero staked council member - fn add_council_seat(account: T::AccountId) { + fn add_council_member(account: T::AccountId) -> Result { + ensure!(!Self::is_councilor(&account), "cannot add same account multiple times"); let seat = Seat { - member: account.clone(), + member: account, stake: BalanceOf::::zero(), backers: vec![] }; - // add seat to existing council + // add member to existing council if let Some(mut active) = Self::active_council() { active.push(seat); >::put(active); @@ -111,6 +112,7 @@ decl_module! { // add as first seat into a new council >::put(vec![seat]); } + Ok(()) } /// Set blocknumber when council term will end diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 18c8ecfb9a..b394be5dbe 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -253,7 +253,7 @@ decl_module! { Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), proposal_id)); // Auto-vote with Approve if proposer is a councilor: - if Self::is_councilor(proposer.clone()) { + if Self::is_councilor(&proposer) { Self::_process_vote(proposer, proposal_id, Approve)?; } @@ -266,7 +266,7 @@ decl_module! { /// ``` fn vote_on_proposal(origin, proposal_id: ProposalId, vote: VoteKind) -> Result { let voter = ensure_signed(origin)?; - ensure!(Self::is_councilor(voter.clone()), MSG_ONLY_COUNCILORS_CAN_VOTE); + ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); @@ -328,7 +328,7 @@ impl Module { !T::Currency::free_balance(&sender).is_zero() } - fn is_councilor(sender: T::AccountId) -> bool { + fn is_councilor(sender: &T::AccountId) -> bool { >::is_councilor(sender) } From 1116ff3d6b504b717fd20a6571247c59c8f07282 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Feb 2019 13:07:01 +0200 Subject: [PATCH 123/350] sudo start election --- runtime/src/governance/election.rs | 4 ++++ runtime/src/governance/root.rs | 18 +++++++++++------- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 4da31a1795..e3bf197117 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -757,6 +757,10 @@ decl_module! { Ok(()) } + fn force_stop_election() { + + } + } } diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index ef55fd9216..78affffbd9 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -47,14 +47,8 @@ decl_module! { fn set_auto_start_elections (flag: bool) { >::put(flag); } - } -} - -impl council::CouncilTermEnded for Module { - fn council_term_ended() { - Self::deposit_event(RawEvent::CouncilTermEnded()); - if Self::auto_start_elections() && !>::is_election_running() { + fn start_election() { let current_council = >::active_council(); let params = Self::next_election_parameters(); @@ -66,6 +60,16 @@ impl council::CouncilTermEnded for Module { } } +impl council::CouncilTermEnded for Module { + fn council_term_ended() { + Self::deposit_event(RawEvent::CouncilTermEnded()); + + if Self::auto_start_elections() && !>::is_election_running() { + Self::start_election(); + } + } +} + #[cfg(test)] mod tests { use super::*; From 731e2efcea84beb8ed6c5a2db2011b6b24890939 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Feb 2019 20:17:17 +0200 Subject: [PATCH 124/350] sudo stop election --- runtime/src/governance/election.rs | 45 +++++++++++++++++++++++++----- 1 file changed, 38 insertions(+), 7 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index e3bf197117..488730f601 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -354,21 +354,36 @@ impl Module { // unless we want to add more filtering criteria to what is considered a successful election // other than just the minimum stake for candidacy, we have a new council! + Self::teardown_election ( + &votes, + &new_council, + true /* unlock transferable stakes */ + ); + + let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); + T::CouncilElected::council_elected(new_council, Self::new_term_duration()); + + Self::deposit_event(RawEvent::CouncilElected()); + } + + fn teardown_election ( + votes: &Vec>, + T::Hash, T::AccountId>>, new_council: &BTreeMap>>, + unlock_ts: bool) + { Self::refund_voting_stakes(&votes, &new_council); Self::clear_votes(); Self::drop_unelected_applicants(&new_council); Self::clear_applicants(); - Self::unlock_transferable_stakes(); + if unlock_ts { + Self::unlock_transferable_stakes(); + } + Self::clear_transferable_stakes(); >::kill(); - - let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); - T::CouncilElected::council_elected(new_council, Self::new_term_duration()); - - Self::deposit_event(RawEvent::CouncilElected()); } fn unlock_transferable_stakes() { @@ -757,8 +772,24 @@ decl_module! { Ok(()) } - fn force_stop_election() { + fn abort_election() -> Result { + ensure!(Self::is_election_running(), "only running election can be stopped"); + let mut votes = Vec::new(); + for commitment in Self::commitments() { + votes.push(Self::votes(commitment)); + } + + // no council gets elected + let empty_council = BTreeMap::new(); + + Self::teardown_election ( + &votes, + &empty_council, + false /* do not unlock transferable stakes */ + ); + + Ok(()) } } From c4d4e00bbe0f94e49f4af277bbc7b6d8f60b2954 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 17 Feb 2019 23:45:08 +0200 Subject: [PATCH 125/350] simply store election paramas in election module --- runtime/src/governance/election.rs | 102 +++++++++++------------------ runtime/src/governance/mock.rs | 4 -- runtime/src/governance/root.rs | 21 +----- 3 files changed, 43 insertions(+), 84 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 488730f601..bfe50c2383 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -70,47 +70,17 @@ impl> CouncilElected { - fn trigger_election(current: Option, params: Params) -> Result; +pub trait TriggerElection { + fn trigger_election(current: Option) -> Result; } -impl TriggerElection for () { - fn trigger_election(_: Option, _: Params) -> Result { Ok(())} +impl TriggerElection for () { + fn trigger_election(_: Option) -> Result { Ok(())} } -impl> TriggerElection for (X,) { - fn trigger_election(current: Option, params: Params) -> Result{ - X::trigger_election(current, params) - } -} - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Clone, Copy, Encode, Decode, PartialEq)] -pub struct ElectionParameters { - pub announcing_period: BlockNumber, - pub voting_period: BlockNumber, - pub revealing_period: BlockNumber, - pub council_size: u32, - pub candidacy_limit_multiple: u32, - pub min_council_stake: Balance, - pub new_term_duration: BlockNumber, - pub min_voting_stake: Balance -} - -impl Default for ElectionParameters - where BlockNumber: SimpleArithmetic, Balance: SimpleArithmetic -{ - fn default() -> Self { - Self { - announcing_period: BlockNumber::sa(100), - voting_period: BlockNumber::sa(100), - revealing_period: BlockNumber::sa(100), - council_size: 10, - candidacy_limit_multiple: 2, - min_council_stake: Balance::sa(100), - new_term_duration: BlockNumber::sa(1000), - min_voting_stake: Balance::sa(10), - } +impl> TriggerElection for (X,) { + fn trigger_election(current: Option) -> Result{ + X::trigger_election(current) } } @@ -142,14 +112,14 @@ decl_storage! { // Current Election Parameters - default "zero" values are not meaningful. Running an election without // settings reasonable values is a bad idea. Parameters can be set in the TriggerElection hook. - AnnouncingPeriod get(announcing_period): T::BlockNumber; - VotingPeriod get(voting_period): T::BlockNumber; - RevealingPeriod get(revealing_period): T::BlockNumber; - CouncilSize get(council_size): u32; - CandidacyLimitMultiple get (candidacy_limit_multiple): u32; - MinCouncilStake get(min_council_stake): BalanceOf; - NewTermDuration get(new_term_duration): T::BlockNumber; - MinVotingStake get(min_voting_stake): BalanceOf; + AnnouncingPeriod get(announcing_period): T::BlockNumber = T::BlockNumber::sa(100); + VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa(100); + RevealingPeriod get(revealing_period): T::BlockNumber = T::BlockNumber::sa(100); + CouncilSize get(council_size): u32 = 10; + CandidacyLimitMultiple get (candidacy_limit_multiple): u32 = 2; + MinCouncilStake get(min_council_stake): BalanceOf = BalanceOf::::sa(100); + NewTermDuration get(new_term_duration): T::BlockNumber = T::BlockNumber::sa(1000); + MinVotingStake get(min_voting_stake): BalanceOf = BalanceOf::::sa(10); } } @@ -168,14 +138,12 @@ decl_event!( } ); -impl TriggerElection>, ElectionParameters>> for Module { +impl TriggerElection>> for Module { fn trigger_election( - current_council: Option>>, - params: ElectionParameters>) -> Result + current_council: Option>>) -> Result { ensure!(!Self::is_election_running(), "Election already running"); - Self::set_election_parameters(params); Self::start_election(current_council) } } @@ -757,19 +725,29 @@ decl_module! { } /// Change elections parameters inflight - fn set_election_parameters(params: ElectionParameters>) -> Result { - // No point changing parameters if no election is running. Change the NextElectionParameters in root - // instead. - ensure!(Self::is_election_running(), "ineffective to change params if no election is running"); - >::put(params.announcing_period); - >::put(params.voting_period); - >::put(params.revealing_period); - >::put(params.min_council_stake); - >::put(params.new_term_duration); - >::put(params.council_size); - >::put(params.candidacy_limit_multiple); - >::put(params.min_voting_stake); - Ok(()) + fn set_param_announcing_period(period: T::BlockNumber) { + >::put(period) + } + fn set_param_voting_period(period: T::BlockNumber) { + >::put(period); + } + fn set_param_revealing_period(period: T::BlockNumber) { + >::put(period); + } + fn set_param_min_council_stake(amount: BalanceOf) { + >::put(amount); + } + fn set_param_new_term_duration(duration: T::BlockNumber) { + >::put(duration); + } + fn set_param_council_size(council_size: u32) { + >::put(council_size); + } + fn set_param_candidacy_limit(multiple: u32) { + >::put(multiple); + } + fn set_param_min_voting_stake(amount: BalanceOf) { + >::put(amount); } fn abort_election() -> Result { diff --git a/runtime/src/governance/mock.rs b/runtime/src/governance/mock.rs index 7f9d191eb3..44704a9a1c 100644 --- a/runtime/src/governance/mock.rs +++ b/runtime/src/governance/mock.rs @@ -91,10 +91,6 @@ impl GovernanceCurrency for Test { pub fn initial_test_ext() -> runtime_io::TestExternalities { let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; - t.extend(root::GenesisConfig:: { - next_election_parameters: Default::default(), - }.build_storage().unwrap().0); - runtime_io::TestExternalities::new(t) } diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 78affffbd9..02a917dbae 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -9,14 +9,11 @@ use super::{council, election::{self, TriggerElection}}; pub trait Trait: system::Trait + council::Trait + election::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; - type TriggerElection: election::TriggerElection>, election::ElectionParameters>>; + type TriggerElection: election::TriggerElection>>; } decl_storage! { trait Store for Module as Root { - // Electin Parameters to be used on the next election - NextElectionParameters get(next_election_parameters) config(): election::ElectionParameters>; - // Flag for wether to automatically start an election after a council term ends AutoStartElections get(auto_start_elections) : bool = true; } @@ -40,30 +37,18 @@ decl_module! { pub struct Module for enum Call where origin: T::Origin { fn deposit_event() = default; - fn set_next_election_parameters (params: election::ElectionParameters>) { - >::put(params); - } - fn set_auto_start_elections (flag: bool) { >::put(flag); } - fn start_election() { - let current_council = >::active_council(); - - let params = Self::next_election_parameters(); - - if T::TriggerElection::trigger_election(current_council, params).is_ok() { - Self::deposit_event(RawEvent::ElectionStarted()); - } + fn start_election() -> Result { + T::TriggerElection::trigger_election(>::active_council()) } } } impl council::CouncilTermEnded for Module { fn council_term_ended() { - Self::deposit_event(RawEvent::CouncilTermEnded()); - if Self::auto_start_elections() && !>::is_election_running() { Self::start_election(); } From a61c70acc7a2fa0e8aa914cd77aeb8e0d61be46f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 17 Feb 2019 23:46:59 +0200 Subject: [PATCH 126/350] emit event from appropriate module --- runtime/src/governance/council.rs | 4 ++-- runtime/src/governance/election.rs | 3 +++ runtime/src/governance/root.rs | 1 - 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index e38cecaaec..b12f4a7ba5 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -41,7 +41,7 @@ decl_storage! { /// Event for this module. decl_event!( pub enum Event where ::BlockNumber { - NewCouncilInSession(), + CouncilTermEnded(), Dummy(BlockNumber), } ); @@ -52,7 +52,6 @@ impl CouncilElected>, T::BlockNumber> let next_term_ends_at = >::block_number() + term; >::put(next_term_ends_at); - Self::deposit_event(RawEvent::NewCouncilInSession()); } } @@ -77,6 +76,7 @@ decl_module! { fn on_finalise(now: T::BlockNumber) { if Self::is_term_ended(now) { + Self::deposit_event(RawEvent::CouncilTermEnded()); T::CouncilTermEnded::council_term_ended(); } } diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index bfe50c2383..c17b323c78 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -127,6 +127,7 @@ decl_storage! { decl_event!( pub enum Event where ::BlockNumber { /// A new election started + ElectionStarted(), AnnouncingStarted(u32), AnnouncingEnded(), VotingStarted(), @@ -203,6 +204,8 @@ impl Module { // to return any unused stake to original owners and the end of the election. current_council.map(|c| Self::initialize_transferable_stakes(c)); + Self::deposit_event(RawEvent::ElectionStarted()); + Self::move_to_announcing_stage(); Ok(()) } diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 02a917dbae..4327a2522c 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -24,7 +24,6 @@ decl_event!( pub enum Event where ::BlockNumber { // TODO add more useful info to events? ElectionStarted(), - CouncilTermEnded(), Dummy(BlockNumber), } ); From 710c7d6d2316f1145d21e65cc5f8a6746a468e06 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Feb 2019 00:02:33 +0200 Subject: [PATCH 127/350] election parameters configurable in genesis --- runtime/src/governance/election.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index c17b323c78..df76557861 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -112,14 +112,14 @@ decl_storage! { // Current Election Parameters - default "zero" values are not meaningful. Running an election without // settings reasonable values is a bad idea. Parameters can be set in the TriggerElection hook. - AnnouncingPeriod get(announcing_period): T::BlockNumber = T::BlockNumber::sa(100); - VotingPeriod get(voting_period): T::BlockNumber = T::BlockNumber::sa(100); - RevealingPeriod get(revealing_period): T::BlockNumber = T::BlockNumber::sa(100); - CouncilSize get(council_size): u32 = 10; - CandidacyLimitMultiple get (candidacy_limit_multiple): u32 = 2; - MinCouncilStake get(min_council_stake): BalanceOf = BalanceOf::::sa(100); - NewTermDuration get(new_term_duration): T::BlockNumber = T::BlockNumber::sa(1000); - MinVotingStake get(min_voting_stake): BalanceOf = BalanceOf::::sa(10); + AnnouncingPeriod get(announcing_period) config(): T::BlockNumber = T::BlockNumber::sa(100); + VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::sa(100); + RevealingPeriod get(revealing_period) config(): T::BlockNumber = T::BlockNumber::sa(100); + CouncilSize get(council_size) config(): u32 = 10; + CandidacyLimitMultiple get (candidacy_limit_multiple) config(): u32 = 2; + MinCouncilStake get(min_council_stake) config(): BalanceOf = BalanceOf::::sa(100); + NewTermDuration get(new_term_duration) config(): T::BlockNumber = T::BlockNumber::sa(1000); + MinVotingStake get(min_voting_stake) config(): BalanceOf = BalanceOf::::sa(10); } } From fa6dd0d00cee0cb37ecba3eeb617fa0383aa32c3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Feb 2019 01:27:10 +0200 Subject: [PATCH 128/350] guard election param changes --- runtime/src/governance/election.rs | 64 +++++++++++++++++++----------- 1 file changed, 40 insertions(+), 24 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index df76557861..a2e194fbaa 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -116,7 +116,7 @@ decl_storage! { VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::sa(100); RevealingPeriod get(revealing_period) config(): T::BlockNumber = T::BlockNumber::sa(100); CouncilSize get(council_size) config(): u32 = 10; - CandidacyLimitMultiple get (candidacy_limit_multiple) config(): u32 = 2; + CandidacyLimit get (candidacy_limit) config(): u32 = 20; MinCouncilStake get(min_council_stake) config(): BalanceOf = BalanceOf::::sa(100); NewTermDuration get(new_term_duration) config(): T::BlockNumber = T::BlockNumber::sa(1000); MinVotingStake get(min_voting_stake) config(): BalanceOf = BalanceOf::::sa(10); @@ -156,8 +156,8 @@ impl Module { Self::council_size() as usize } - fn candidacy_limit_multiple_usize() -> usize { - Self::candidacy_limit_multiple() as usize + fn candidacy_limit_usize() -> usize { + Self::candidacy_limit() as usize } fn current_block_number_plus(length: T::BlockNumber) -> T::BlockNumber { @@ -265,9 +265,8 @@ impl Module { Self::move_to_announcing_stage(); } else { // upper limit on applicants that will move to voting stage - let multiple = rstd::cmp::max(1, Self::candidacy_limit_multiple_usize()); - let candidacy_limit = Self::council_size_usize() * multiple; - let applicants_to_drop = Self::find_least_staked_applicants(&mut applicants, candidacy_limit); + let limit = rstd::cmp::max(Self::council_size_usize(), Self::candidacy_limit_usize()); + let applicants_to_drop = Self::find_least_staked_applicants(&mut applicants, limit); Self::drop_applicants(applicants_to_drop); @@ -314,12 +313,7 @@ impl Module { // Not enough applicants with votes to form a council. // This may happen if we didn't add applicants with zero votes to the tally, // or in future if we allow applicants to withdraw candidacy during voting or revealing stages. - // Solution 1. Restart election. - // Solution 2. Add to the tally applicants with zero votes. - // selection criteria: - // -> priority by largest stake? - // -> priority given to applicants who announced first? - // -> deterministic random selection? + // or council size was increased during voting, revealing stages. } // unless we want to add more filtering criteria to what is considered a successful election @@ -727,30 +721,52 @@ decl_module! { } } - /// Change elections parameters inflight - fn set_param_announcing_period(period: T::BlockNumber) { - >::put(period) + fn set_param_announcing_period(period: T::BlockNumber) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); + ensure!(!period.is_zero(), "period cannot be zero"); + >::put(period); + Ok(()) } - fn set_param_voting_period(period: T::BlockNumber) { + fn set_param_voting_period(period: T::BlockNumber) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); + ensure!(!period.is_zero(), "period cannot be zero"); >::put(period); + Ok(()) } - fn set_param_revealing_period(period: T::BlockNumber) { + fn set_param_revealing_period(period: T::BlockNumber) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); + ensure!(!period.is_zero(), "period cannot be zero"); >::put(period); + Ok(()) } - fn set_param_min_council_stake(amount: BalanceOf) { + fn set_param_min_council_stake(amount: BalanceOf) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); >::put(amount); + Ok(()) } - fn set_param_new_term_duration(duration: T::BlockNumber) { + fn set_param_new_term_duration(duration: T::BlockNumber) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); + ensure!(!duration.is_zero(), "new term duration cannot be zero"); >::put(duration); + Ok(()) } - fn set_param_council_size(council_size: u32) { + fn set_param_council_size(council_size: u32) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); + ensure!(council_size > 0, "council size cannot be zero"); + ensure!(council_size <= Self::candidacy_limit(), "council size cannot greater than candidacy limit"); >::put(council_size); + Ok(()) } - fn set_param_candidacy_limit(multiple: u32) { - >::put(multiple); + fn set_param_candidacy_limit(limit: u32) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); + ensure!(limit >= Self::council_size(), "candidacy limit cannot be less than council size"); + >::put(limit); + Ok(()) } - fn set_param_min_voting_stake(amount: BalanceOf) { + fn set_param_min_voting_stake(amount: BalanceOf) -> Result { + ensure!(!Self::is_election_running(), "cannot change params during election"); >::put(amount); + Ok(()) } fn abort_election() -> Result { @@ -1564,7 +1580,7 @@ mod tests { >::put(10); >::put(10); >::put(10); - >::put(2); + >::put(20); >::put(100); >::put(10); From bdb5f0bf22fbd2001fb368e0bae7c8a6aea1184a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Feb 2019 08:21:05 +0200 Subject: [PATCH 129/350] fix no need to clone --- runtime/src/governance/election.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index a2e194fbaa..744a12ac20 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -325,7 +325,7 @@ impl Module { true /* unlock transferable stakes */ ); - let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); + let new_council = new_council.into_iter().map(|(_, seat)| seat).collect(); T::CouncilElected::council_elected(new_council, Self::new_term_duration()); Self::deposit_event(RawEvent::CouncilElected()); From 2177daedadb2be7e30defa6428e45dc559515ea7 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Feb 2019 08:22:59 +0200 Subject: [PATCH 130/350] add remove_council_member sudo method --- runtime/src/governance/council.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index b12f4a7ba5..16e8ad2667 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -115,6 +115,18 @@ decl_module! { Ok(()) } + fn remove_council_member(account_to_remove: T::AccountId) -> Result { + if let Some(council) = Self::active_council() { + ensure!(Self::is_councilor(&account_to_remove), "account is not a councilor"); + let filtered_council: Seats> = council + .into_iter() + .filter(|c| c.member != account_to_remove) + .collect(); + >::put(filtered_council); + } + Ok(()) + } + /// Set blocknumber when council term will end fn set_term_ends_at(ends_at: T::BlockNumber) -> Result { ensure!(ends_at > >::block_number(), "must set future block number"); From baed7b74c83546f5fc07dd1cb28bb1af6dc38efd Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Feb 2019 11:05:33 +0200 Subject: [PATCH 131/350] remove balances trait bound, GovernanceCurrency is sufficient --- runtime/src/governance/council.rs | 2 +- runtime/src/governance/election.rs | 2 +- runtime/src/governance/proposals.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 16e8ad2667..0ae876efdc 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -25,7 +25,7 @@ impl CouncilTermEnded for (X,) { } } -pub trait Trait: system::Trait + balances::Trait + GovernanceCurrency { +pub trait Trait: system::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; type CouncilTermEnded: CouncilTermEnded; diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 744a12ac20..d74d6a7379 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -16,7 +16,7 @@ use super::sealed_vote::SealedVote; pub use super::{ GovernanceCurrency, BalanceOf }; -pub trait Trait: system::Trait + balances::Trait + GovernanceCurrency { +pub trait Trait: system::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; type CouncilElected: CouncilElected>, Self::BlockNumber>; diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index b394be5dbe..3732b57617 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -115,7 +115,7 @@ pub struct TallyResult { finalized_at: BlockNumber, } -pub trait Trait: balances::Trait + timestamp::Trait + council::Trait + GovernanceCurrency { +pub trait Trait: timestamp::Trait + council::Trait + GovernanceCurrency { /// The overarching event type. type Event: From> + Into<::Event>; } From a8774f4556e23b72df26ff6f5c387aca6d0079dc Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Feb 2019 15:31:33 +0200 Subject: [PATCH 132/350] rename Proposal to RuntimeUpgradeProposal --- runtime/src/governance/proposals.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index aa4c7a0b67..3686dc8fff 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -91,7 +91,7 @@ use self::VoteKind::*; #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] /// Proposal for node runtime update. -pub struct Proposal { +pub struct RuntimeUpgradeProposal { id: ProposalId, proposer: AccountId, stake: Balance, @@ -185,7 +185,7 @@ decl_storage! { ProposalCount get(proposal_count): ProposalId; // TODO rename 'proposal' -> 'proposals' - Proposals get(proposal): map ProposalId => Proposal, T::BlockNumber>; + Proposals get(proposal): map ProposalId => RuntimeUpgradeProposal, T::BlockNumber>; // TODO rename to `ActiveProposalIds` PendingProposalIds get(pending_proposal_ids): Vec = vec![]; @@ -237,7 +237,7 @@ decl_module! { let proposal_id = Self::proposal_count() + 1; >::put(proposal_id); - let new_proposal = Proposal { + let new_proposal = RuntimeUpgradeProposal { id: proposal_id, proposer: proposer.clone(), stake, @@ -742,7 +742,7 @@ mod tests { assert_eq!(Proposals::pending_proposal_ids().len(), 1); assert_eq!(Proposals::pending_proposal_ids()[0], 1); - let expected_proposal = Proposal { + let expected_proposal = RuntimeUpgradeProposal { id: 1, proposer: PROPOSER1, stake: minimum_stake(), From af759ff16d160feb979c21a3d673668c24d65ad9 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Sat, 16 Feb 2019 00:36:44 +0200 Subject: [PATCH 133/350] Fix test-all.sh script --- test-all.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test-all.sh b/test-all.sh index bb39687d3b..ae7a6c9982 100755 --- a/test-all.sh +++ b/test-all.sh @@ -1,3 +1,11 @@ #!/usr/bin/env bash +# Save current directory. +pushd . >/dev/null + +echo "Run all runtime tests..." +cd ./runtime cargo test --all + +# Restore initial directory. +popd >/dev/null From aad9576937c50f072d4a8d6c90be55f07ca446d1 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Sat, 16 Feb 2019 00:39:07 +0200 Subject: [PATCH 134/350] Rename VoteKind::{Abstention -> Abstain} --- runtime/src/governance/proposals.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 3686dc8fff..5cd46bca89 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -70,7 +70,7 @@ use self::ProposalStatus::*; #[derive(Encode, Decode, Clone, PartialEq, Eq)] pub enum VoteKind { /// Signals presence, but unwillingness to cast judgment on substance of vote. - Abstention, + Abstain, /// Pass, an alternative or a ranking, for binary, multiple choice /// and ranked choice propositions, respectively. Approve, @@ -82,7 +82,7 @@ pub enum VoteKind { impl Default for VoteKind { fn default() -> Self { - VoteKind::Abstention + VoteKind::Abstain } } @@ -389,7 +389,7 @@ impl Module { for (_, vote) in votes.iter() { match vote { - Abstention => abstentions += 1, + Abstain => abstentions += 1, Approve => approvals += 1, Reject => rejections += 1, Slash => slashes += 1, @@ -1188,12 +1188,12 @@ mod tests { assert_ok!(_create_default_proposal()); - // Less than a quorum of councilors approved, while others abstentioned: + // Less than a quorum of councilors approved, while others abstained: let councilors = Proposals::councilors_count(); let approvals = Proposals::approval_quorum_seats() - 1; let abstentions = councilors - approvals; for i in 0..councilors as usize { - let vote = if (i as u32) < approvals { Approve } else { Abstention }; + let vote = if (i as u32) < approvals { Approve } else { Abstain }; assert_ok!(Proposals::vote_on_proposal( Origin::signed(ALL_COUNCILORS[i]), 1, vote)); } From d476fe79f207e8cced28541621b08cbc6fe3e52a Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 19 Feb 2019 09:54:53 +0200 Subject: [PATCH 135/350] Check that wasm code gets updated in propsal tests --- runtime/src/governance/proposals.rs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 5cd46bca89..710519a88e 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -1052,9 +1052,7 @@ mod tests { Proposals::on_finalise(2); // Check that runtime code has been updated after proposal approved. - // TODO Uncomment next line when issue with storage updates fixed: - // https://github.com/paritytech/substrate/issues/1638 - // assert_runtime_code!(wasm_code()); + assert_runtime_code!(wasm_code()); assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); @@ -1101,9 +1099,7 @@ mod tests { Proposals::on_finalise(2); // Check that runtime code has been updated after proposal approved. - // TODO Uncomment next line when issue with storage updates fixed: - // https://github.com/paritytech/substrate/issues/1638 - // assert_runtime_code!(wasm_code()); + assert_runtime_code!(wasm_code()); assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); @@ -1156,9 +1152,7 @@ mod tests { Proposals::on_finalise(expiration_block); // Check that runtime code has been updated after proposal approved. - // TODO Uncomment next line when issue with storage updates fixed: - // https://github.com/paritytech/substrate/issues/1638 - // assert_runtime_code!(wasm_code()); + assert_runtime_code!(wasm_code()); assert!(Proposals::pending_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); From e0612fd5d7d166c30c87a617aeea7dcb16aa2fa1 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Feb 2019 09:49:28 +0200 Subject: [PATCH 136/350] add Staking --- runtime/Cargo.toml | 14 ++++++++++++++ runtime/src/lib.rs | 30 ++++++++++++++++++++++++++---- src/chain_spec.rs | 22 ++++++++++++++++++++-- 3 files changed, 60 insertions(+), 6 deletions(-) diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index cd8701b465..cdb2853622 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -27,6 +27,8 @@ std = [ 'serde/std', 'safe-mix/std', 'consensus-aura/std', + 'staking/std', + 'session/std', ] [dependencies.aura] default_features = false @@ -141,3 +143,15 @@ default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'sr-version' rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.staking] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-staking' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' + +[dependencies.session] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-session' +rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index a9f01cb491..67ac10cebc 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -23,7 +23,7 @@ use primitives::bytes; use primitives::{Ed25519AuthorityId, OpaqueMetadata}; use runtime_primitives::{ ApplyResult, transaction_validity::TransactionValidity, Ed25519Signature, generic, - traits::{self, BlakeTwo256, Block as BlockT, StaticLookup}, create_runtime_str + traits::{self, Convert, BlakeTwo256, Block as BlockT, StaticLookup}, create_runtime_str }; use client::{ block_builder::api::{CheckInherentsResult, InherentData, self as block_builder_api}, @@ -126,7 +126,7 @@ impl system::Trait for Runtime { } impl aura::Trait for Runtime { - type HandleReport = (); + type HandleReport = aura::StakingSlasher; } impl consensus::Trait for Runtime { @@ -139,6 +139,20 @@ impl consensus::Trait for Runtime { type Log = Log; } +/// Session key conversion. +pub struct SessionKeyConversion; +impl Convert for SessionKeyConversion { + fn convert(a: AccountId) -> Ed25519AuthorityId { + a.to_fixed_bytes().into() + } +} + +impl session::Trait for Runtime { + type ConvertAccountIdToSessionKey = SessionKeyConversion; + type OnSessionChange = (Staking, ); + type Event = Event; +} + impl indices::Trait for Runtime { /// The type for recording indexing into the account enumeration. If this ever overflows, there /// will be problems! @@ -161,11 +175,11 @@ impl balances::Trait for Runtime { /// The type for recording an account's balance. type Balance = u128; /// What to do if an account's free balance gets zeroed. - type OnFreeBalanceZero = (); + type OnFreeBalanceZero = (); // add Staking /// What to do if a new account is created. type OnNewAccount = Indices; /// Restrict whether an account can transfer funds. We don't place any further restrictions. - type EnsureAccountLiquid = (); + type EnsureAccountLiquid = (); // add Staking /// The uniquitous event type. type Event = Event; } @@ -176,6 +190,12 @@ impl sudo::Trait for Runtime { type Proposal = Call; } +impl staking::Trait for Runtime { + type Currency = balances::Module; + type OnRewardMinted = (); + type Event = Event; +} + impl governance::GovernanceCurrency for Runtime { type Currency = balances::Module; } @@ -212,6 +232,8 @@ construct_runtime!( Aura: aura::{Module}, Indices: indices, Balances: balances, + Session: session::{Config, Event}, + Staking: staking::{default, OfflineWorker, Config}, Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event}, Governance: root::{Module, Call, Storage, Event}, diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 2df61c31b4..6b35e14cf6 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -1,7 +1,7 @@ use primitives::{Ed25519AuthorityId, ed25519}; use joystream_node_runtime::{ AccountId, GenesisConfig, ConsensusConfig, TimestampConfig, BalancesConfig, - SudoConfig, IndicesConfig + SudoConfig, IndicesConfig, SessionConfig, StakingConfig, Permill, Perbill, }; use substrate_service; @@ -84,7 +84,7 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account }), system: None, timestamp: Some(TimestampConfig { - period: 5, // 5 second block time. + period: 3, // 3*2=6 second block time. }), indices: Some(IndicesConfig { ids: endowed_accounts.clone(), @@ -101,5 +101,23 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account sudo: Some(SudoConfig { key: root_key, }), + session: Some(SessionConfig { + validators: initial_authorities.iter().cloned().map(Into::into).collect(), + session_length: 10, + }), + staking: Some(StakingConfig { + current_era: 0, + intentions: initial_authorities.iter().cloned().map(Into::into).collect(), + minimum_validator_count: 1, + validator_count: 2, + sessions_per_era: 5, + bonding_duration: 2 * 60 * 12, + offline_slash: Perbill::zero(), + session_reward: Perbill::zero(), + current_offline_slash: 0, + current_session_reward: 0, + offline_slash_grace: 0, + invulnerables: initial_authorities.iter().cloned().map(Into::into).collect(), + }), } } From 56bd01fe00bf59a44354b499800afe0f34021a42 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Feb 2019 10:23:25 +0200 Subject: [PATCH 137/350] staking: hookup OnFreeBalanceZero and EnsureAccountLiquid --- runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 67ac10cebc..f72ee7ca99 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -175,11 +175,11 @@ impl balances::Trait for Runtime { /// The type for recording an account's balance. type Balance = u128; /// What to do if an account's free balance gets zeroed. - type OnFreeBalanceZero = (); // add Staking + type OnFreeBalanceZero = Staking; /// What to do if a new account is created. type OnNewAccount = Indices; /// Restrict whether an account can transfer funds. We don't place any further restrictions. - type EnsureAccountLiquid = (); // add Staking + type EnsureAccountLiquid = Staking; /// The uniquitous event type. type Event = Event; } From aa6e28e02d55c20eb81fe9e08fa9aaa120d0b864 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 19 Feb 2019 10:48:11 +0200 Subject: [PATCH 138/350] Fix clean-chain.sh --- clean-chain.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clean-chain.sh b/clean-chain.sh index 7af2df038e..1cccef5385 100755 --- a/clean-chain.sh +++ b/clean-chain.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -cargo run -- --dev purge-chain +cargo run -- purge-chain --dev From 8b05db0c35f4e2b0174c556ca296163def1f2b33 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Feb 2019 15:40:47 +0200 Subject: [PATCH 139/350] remove duplicate event names, causing bug in polkadot-js-apps UI --- runtime/src/governance/root.rs | 17 ++--------------- runtime/src/lib.rs | 4 +--- 2 files changed, 3 insertions(+), 18 deletions(-) diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 4327a2522c..9dfda1c531 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -1,14 +1,12 @@ #![cfg_attr(not(feature = "std"), no_std)] use rstd::prelude::*; -use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; -use system::{self, ensure_signed}; +use srml_support::{StorageValue, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; +use system; pub use super::{ GovernanceCurrency, BalanceOf }; use super::{council, election::{self, TriggerElection}}; pub trait Trait: system::Trait + council::Trait + election::Trait + GovernanceCurrency { - type Event: From> + Into<::Event>; - type TriggerElection: election::TriggerElection>>; } @@ -19,23 +17,12 @@ decl_storage! { } } -/// Event for this module. -decl_event!( - pub enum Event where ::BlockNumber { - // TODO add more useful info to events? - ElectionStarted(), - Dummy(BlockNumber), - } -); - impl Module { // Nothing yet } decl_module! { pub struct Module for enum Call where origin: T::Origin { - fn deposit_event() = default; - fn set_auto_start_elections (flag: bool) { >::put(flag); } diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index f72ee7ca99..e9008338d7 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -215,8 +215,6 @@ impl governance::council::Trait for Runtime { } impl governance::root::Trait for Runtime { - type Event = Event; - type TriggerElection = (CouncilElection,); } @@ -236,7 +234,7 @@ construct_runtime!( Staking: staking::{default, OfflineWorker, Config}, Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event}, - Governance: root::{Module, Call, Storage, Event}, + Governance: root::{Module, Call, Storage}, CouncilElection: election::{Module, Call, Storage, Event}, Council: council::{Module, Call, Storage, Event}, } From c591620437b2a157982c689ed64c3ffab0b93907 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Feb 2019 15:59:47 +0200 Subject: [PATCH 140/350] remove Dummy event from election module --- runtime/src/governance/election.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d74d6a7379..ea8c05017f 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -134,8 +134,7 @@ decl_event!( VotingEnded(), RevealingStarted(), RevealingEnded(), - CouncilElected(), - Dummy(BlockNumber), + CouncilElected(BlockNumber), } ); @@ -328,7 +327,7 @@ impl Module { let new_council = new_council.into_iter().map(|(_, seat)| seat).collect(); T::CouncilElected::council_elected(new_council, Self::new_term_duration()); - Self::deposit_event(RawEvent::CouncilElected()); + Self::deposit_event(RawEvent::CouncilElected(>::block_number())); } fn teardown_election ( From 1ce903237847617dcbd22f321830da793a39d111 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Feb 2019 16:16:11 +0200 Subject: [PATCH 141/350] remove Dummy event from council module --- runtime/src/governance/council.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 0ae876efdc..0ef685e0a2 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -41,8 +41,7 @@ decl_storage! { /// Event for this module. decl_event!( pub enum Event where ::BlockNumber { - CouncilTermEnded(), - Dummy(BlockNumber), + CouncilTermEnded(BlockNumber), } ); @@ -76,7 +75,7 @@ decl_module! { fn on_finalise(now: T::BlockNumber) { if Self::is_term_ended(now) { - Self::deposit_event(RawEvent::CouncilTermEnded()); + Self::deposit_event(RawEvent::CouncilTermEnded(now)); T::CouncilTermEnded::council_term_ended(); } } From 0dc97ce94a47a6d238458ec46c507ea37eee918c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Feb 2019 16:38:48 +0200 Subject: [PATCH 142/350] emit CouncilTermEnded events once only --- runtime/src/governance/council.rs | 6 +++--- runtime/src/governance/mock.rs | 2 -- runtime/src/governance/root.rs | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 0ef685e0a2..9d34e77e8a 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -56,8 +56,8 @@ impl CouncilElected>, T::BlockNumber> impl Module { - pub fn is_term_ended(block: T::BlockNumber) -> bool { - block >= Self::term_ends_at() + pub fn is_term_ended() -> bool { + >::block_number() >= Self::term_ends_at() } pub fn is_councilor(sender: &T::AccountId) -> bool { @@ -74,7 +74,7 @@ decl_module! { fn deposit_event() = default; fn on_finalise(now: T::BlockNumber) { - if Self::is_term_ended(now) { + if now == Self::term_ends_at() { Self::deposit_event(RawEvent::CouncilTermEnded(now)); T::CouncilTermEnded::council_term_ended(); } diff --git a/runtime/src/governance/mock.rs b/runtime/src/governance/mock.rs index 44704a9a1c..21509a34fb 100644 --- a/runtime/src/governance/mock.rs +++ b/runtime/src/governance/mock.rs @@ -76,8 +76,6 @@ impl balances::Trait for Test { type EnsureAccountLiquid = (); } impl root::Trait for Test { - type Event = (); - type TriggerElection = (Election,); } impl GovernanceCurrency for Test { diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs index 9dfda1c531..2faeefeece 100644 --- a/runtime/src/governance/root.rs +++ b/runtime/src/governance/root.rs @@ -53,7 +53,7 @@ mod tests { with_externalities(&mut initial_test_ext(), || { System::set_block_number(1); - assert!(Council::is_term_ended(1)); + assert!(Council::is_term_ended()); assert!(Election::stage().is_none()); ::council_term_ended(); From 2ff7ce4039b39d472a087ef36e6748c533c320e3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Feb 2019 17:36:04 +0200 Subject: [PATCH 143/350] fix on_finalize not called for block 0, set default council term ends at block 1 --- runtime/src/governance/council.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 9d34e77e8a..1261215199 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -34,7 +34,7 @@ pub trait Trait: system::Trait + GovernanceCurrency { decl_storage! { trait Store for Module as Council { ActiveCouncil get(active_council) config(): Option>> = None; - TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::sa(0); + TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::sa(1); } } From 2b31eda0d24c1bc6c1eaeacd1362ccea577fb3b2 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 20 Feb 2019 09:09:45 +0200 Subject: [PATCH 144/350] fix session setting in construct_runtime! session event NewSession was not appearing in metadata which indicated misconfigured runtime --- runtime/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index e9008338d7..71a9f7a88c 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -227,11 +227,11 @@ construct_runtime!( System: system::{default, Log(ChangesTrieRoot)}, Timestamp: timestamp::{Module, Call, Storage, Config, Inherent}, Consensus: consensus::{Module, Call, Storage, Config, Log(AuthoritiesChange), Inherent}, - Aura: aura::{Module}, + Aura: aura::{Module, Inherent(Timestamp)}, Indices: indices, Balances: balances, - Session: session::{Config, Event}, - Staking: staking::{default, OfflineWorker, Config}, + Session: session, + Staking: staking::{default, OfflineWorker}, Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event}, Governance: root::{Module, Call, Storage}, From 5af065440944570afa31d5e8f331368fd1ce11db Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 20 Feb 2019 10:40:26 +0200 Subject: [PATCH 145/350] code cleanup - remove root module --- runtime/src/governance/council.rs | 1 - runtime/src/governance/election.rs | 63 +++++++++++++++-------------- runtime/src/governance/mock.rs | 9 ++--- runtime/src/governance/mod.rs | 2 - runtime/src/governance/root.rs | 64 ------------------------------ runtime/src/lib.rs | 9 +---- 6 files changed, 39 insertions(+), 109 deletions(-) delete mode 100644 runtime/src/governance/root.rs diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 1261215199..21a306b10f 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -4,7 +4,6 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl use srml_support::traits::{Currency}; use system::{self, ensure_signed}; use runtime_primitives::traits::{As, Zero}; -use {balances}; use rstd::prelude::*; pub use super::election::{self, Seats, Seat, CouncilElected}; diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index ea8c05017f..3c4788342a 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -5,8 +5,8 @@ use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl use srml_support::traits::{Currency}; use system::{self, ensure_signed}; -use runtime_primitives::traits::{Hash, As, Zero, SimpleArithmetic}; -use {balances}; +use runtime_primitives::traits::{Hash, As, Zero, /*SimpleArithmetic*/}; +//use {balances}; use rstd::collections::btree_map::BTreeMap; use rstd::ops::Add; @@ -15,8 +15,9 @@ use super::stake::Stake; use super::sealed_vote::SealedVote; pub use super::{ GovernanceCurrency, BalanceOf }; +use super::council; -pub trait Trait: system::Trait + GovernanceCurrency { +pub trait Trait: system::Trait + council::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; type CouncilElected: CouncilElected>, Self::BlockNumber>; @@ -69,21 +70,6 @@ impl> CouncilElected { - fn trigger_election(current: Option) -> Result; -} - -impl TriggerElection for () { - fn trigger_election(_: Option) -> Result { Ok(())} -} - -impl> TriggerElection for (X,) { - fn trigger_election(current: Option) -> Result{ - X::trigger_election(current) - } -} - #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Clone, Copy, Encode, Decode, Default)] pub struct TransferableStake { @@ -93,6 +79,9 @@ pub struct TransferableStake { decl_storage! { trait Store for Module as CouncilElection { + // Flag for wether to automatically start an election after a council term ends + AutoStart get(auto_start) : bool = true; + // Current stage if there is an election running Stage get(stage): Option>; @@ -138,16 +127,6 @@ decl_event!( } ); -impl TriggerElection>> for Module { - fn trigger_election( - current_council: Option>>) -> Result - { - ensure!(!Self::is_election_running(), "Election already running"); - - Self::start_election(current_council) - } -} - impl Module { // HELPERS - IMMUTABLES @@ -768,7 +747,7 @@ decl_module! { Ok(()) } - fn abort_election() -> Result { + fn stop_election() -> Result { ensure!(Self::is_election_running(), "only running election can be stopped"); let mut votes = Vec::new(); @@ -788,6 +767,18 @@ decl_module! { Ok(()) } + fn set_auto_start (flag: bool) { + >::put(flag); + } + + } +} + +impl council::CouncilTermEnded for Module { + fn council_term_ended() { + if Self::auto_start() && !Self::is_election_running() { + Self::start_election(>::active_council()); + } } } @@ -799,6 +790,20 @@ mod tests { use runtime_io::with_externalities; use srml_support::*; + #[test] + fn election_starts_when_council_term_ends() { + with_externalities(&mut initial_test_ext(), || { + System::set_block_number(1); + + assert!(Council::is_term_ended()); + assert!(Election::stage().is_none()); + + ::council_term_ended(); + + assert!(Election::stage().is_some()); + }); + } + #[test] fn new_stake_reusing_transferable_works() { { diff --git a/runtime/src/governance/mock.rs b/runtime/src/governance/mock.rs index 21509a34fb..5cb193eddc 100644 --- a/runtime/src/governance/mock.rs +++ b/runtime/src/governance/mock.rs @@ -1,7 +1,7 @@ #![cfg(test)] use rstd::prelude::*; -pub use super::{election, council, root, proposals, GovernanceCurrency}; +pub use super::{election, council, proposals, GovernanceCurrency}; pub use system; pub use primitives::{H256, Blake2Hasher}; @@ -47,7 +47,7 @@ impl consensus::Trait for Test { impl council::Trait for Test { type Event = (); - type CouncilTermEnded = (Governance,); + type CouncilTermEnded = (Election,); } impl election::Trait for Test { type Event = (); @@ -75,9 +75,7 @@ impl balances::Trait for Test { /// A function that returns true iff a given account can transfer its funds to another account. type EnsureAccountLiquid = (); } -impl root::Trait for Test { - type TriggerElection = (Election,); -} + impl GovernanceCurrency for Test { type Currency = balances::Module; } @@ -92,7 +90,6 @@ pub fn initial_test_ext() -> runtime_io::TestExternalities { runtime_io::TestExternalities::new(t) } -pub type Governance = root::Module; pub type Election = election::Module; pub type Council = council::Module; pub type Proposals = proposals::Module; diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index ed29d02457..1ba7d117ae 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -1,12 +1,10 @@ #![cfg_attr(not(feature = "std"), no_std)] -use rstd::prelude::*; use srml_support::traits::{Currency}; use system; pub mod election; pub mod council; -pub mod root; pub mod proposals; mod stake; diff --git a/runtime/src/governance/root.rs b/runtime/src/governance/root.rs deleted file mode 100644 index 2faeefeece..0000000000 --- a/runtime/src/governance/root.rs +++ /dev/null @@ -1,64 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] -use rstd::prelude::*; -use srml_support::{StorageValue, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; -use system; -pub use super::{ GovernanceCurrency, BalanceOf }; - -use super::{council, election::{self, TriggerElection}}; - -pub trait Trait: system::Trait + council::Trait + election::Trait + GovernanceCurrency { - type TriggerElection: election::TriggerElection>>; -} - -decl_storage! { - trait Store for Module as Root { - // Flag for wether to automatically start an election after a council term ends - AutoStartElections get(auto_start_elections) : bool = true; - } -} - -impl Module { - // Nothing yet -} - -decl_module! { - pub struct Module for enum Call where origin: T::Origin { - fn set_auto_start_elections (flag: bool) { - >::put(flag); - } - - fn start_election() -> Result { - T::TriggerElection::trigger_election(>::active_council()) - } - } -} - -impl council::CouncilTermEnded for Module { - fn council_term_ended() { - if Self::auto_start_elections() && !>::is_election_running() { - Self::start_election(); - } - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::governance::mock::*; - use runtime_io::with_externalities; - use srml_support::*; - - #[test] - fn election_is_triggerred_when_council_term_ends() { - with_externalities(&mut initial_test_ext(), || { - System::set_block_number(1); - - assert!(Council::is_term_ended()); - assert!(Election::stage().is_none()); - - ::council_term_ended(); - - assert!(Election::stage().is_some()); - }); - } -} \ No newline at end of file diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index e9008338d7..a99f9c72d3 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -15,7 +15,7 @@ use substrate_client as client; extern crate parity_codec_derive; pub mod governance; -use governance::{election, council, root, proposals}; +use governance::{election, council, proposals}; use rstd::prelude::*; #[cfg(feature = "std")] @@ -211,11 +211,7 @@ impl governance::election::Trait for Runtime { impl governance::council::Trait for Runtime { type Event = Event; - type CouncilTermEnded = (Governance,); -} - -impl governance::root::Trait for Runtime { - type TriggerElection = (CouncilElection,); + type CouncilTermEnded = (CouncilElection,); } construct_runtime!( @@ -234,7 +230,6 @@ construct_runtime!( Staking: staking::{default, OfflineWorker, Config}, Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event}, - Governance: root::{Module, Call, Storage}, CouncilElection: election::{Module, Call, Storage, Event}, Council: council::{Module, Call, Storage, Event}, } From e2f5efd247087bc948bc8885be611b6c888648b0 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 20 Feb 2019 11:27:50 +0200 Subject: [PATCH 146/350] start/stop election methods --- runtime/src/governance/election.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 3c4788342a..9ed280885e 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -747,7 +747,7 @@ decl_module! { Ok(()) } - fn stop_election() -> Result { + fn force_stop_election() -> Result { ensure!(Self::is_election_running(), "only running election can be stopped"); let mut votes = Vec::new(); @@ -767,6 +767,10 @@ decl_module! { Ok(()) } + fn force_start_election() -> Result { + Self::start_election(>::active_council()) + } + fn set_auto_start (flag: bool) { >::put(flag); } @@ -776,7 +780,7 @@ decl_module! { impl council::CouncilTermEnded for Module { fn council_term_ended() { - if Self::auto_start() && !Self::is_election_running() { + if Self::auto_start() { Self::start_election(>::active_council()); } } From 7ad6e1e3c708057a3bdf148e2d039bf8987f7c43 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 20 Feb 2019 11:56:05 +0200 Subject: [PATCH 147/350] sudo methods to set election stage for testing/development --- runtime/src/governance/election.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index ea8c05017f..cae2e90fe6 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -720,6 +720,24 @@ decl_module! { } } + fn set_stage_announcing(ends_at: T::BlockNumber) -> Result { + ensure!(ends_at > >::block_number(), "must end at future block number"); + >::put(ElectionStage::Announcing(ends_at)); + Ok(()) + } + + fn set_stage_revealing(ends_at: T::BlockNumber) -> Result { + ensure!(ends_at > >::block_number(), "must end at future block number"); + >::put(ElectionStage::Revealing(ends_at)); + Ok(()) + } + + fn set_stage_voting(ends_at: T::BlockNumber) -> Result { + ensure!(ends_at > >::block_number(), "must end at future block number"); + >::put(ElectionStage::Voting(ends_at)); + Ok(()) + } + fn set_param_announcing_period(period: T::BlockNumber) -> Result { ensure!(!Self::is_election_running(), "cannot change params during election"); ensure!(!period.is_zero(), "period cannot be zero"); From 9d4c437cb0667b971f33683f5fb5bf293427665f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 20 Feb 2019 17:56:16 +0200 Subject: [PATCH 148/350] change storage type for council from Option> -> Vec --- runtime/src/governance/council.rs | 78 +++++++++++++++++++++-------- runtime/src/governance/election.rs | 25 +++++---- runtime/src/governance/proposals.rs | 2 +- 3 files changed, 70 insertions(+), 35 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 21a306b10f..29afcafcda 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -32,7 +32,7 @@ pub trait Trait: system::Trait + GovernanceCurrency { decl_storage! { trait Store for Module as Council { - ActiveCouncil get(active_council) config(): Option>> = None; + ActiveCouncil get(active_council) config(): Seats>; TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::sa(1); } } @@ -60,11 +60,7 @@ impl Module { } pub fn is_councilor(sender: &T::AccountId) -> bool { - if let Some(council) = Self::active_council() { - council.iter().any(|c| c.member == *sender) - } else { - false - } + Self::active_council().iter().any(|c| c.member == *sender) } } @@ -103,25 +99,17 @@ decl_module! { }; // add member to existing council - if let Some(mut active) = Self::active_council() { - active.push(seat); - >::put(active); - } else { - // add as first seat into a new council - >::put(vec![seat]); - } + >::mutate(|council| council.push(seat)); Ok(()) } fn remove_council_member(account_to_remove: T::AccountId) -> Result { - if let Some(council) = Self::active_council() { - ensure!(Self::is_councilor(&account_to_remove), "account is not a councilor"); - let filtered_council: Seats> = council - .into_iter() - .filter(|c| c.member != account_to_remove) - .collect(); - >::put(filtered_council); - } + ensure!(Self::is_councilor(&account_to_remove), "account is not a councilor"); + let filtered_council: Seats> = Self::active_council() + .into_iter() + .filter(|c| c.member != account_to_remove) + .collect(); + >::put(filtered_council); Ok(()) } @@ -133,3 +121,51 @@ decl_module! { } } } + +#[cfg(test)] +mod tests { + use super::*; + use crate::governance::mock::*; + use parity_codec::Encode; + use runtime_io::with_externalities; + use srml_support::*; + + #[test] + fn add_council_member_test() { + with_externalities(&mut initial_test_ext(), || { + assert!(!Council::is_councilor(&1)); + + assert_ok!(Council::add_council_member(1)); + assert!(Council::is_councilor(&1)); + + assert_ok!(Council::add_council_member(2)); + assert!(Council::is_councilor(&1)); + assert!(Council::is_councilor(&2)); + }); + } + + #[test] + fn remove_council_member_test() { + with_externalities(&mut initial_test_ext(), || { + assert_ok!(Council::add_council_member(1)); + assert_ok!(Council::add_council_member(2)); + assert_ok!(Council::add_council_member(3)); + + assert_ok!(Council::remove_council_member(2)); + + assert!(!Council::is_councilor(&2)); + assert!(Council::is_councilor(&1)); + assert!(Council::is_councilor(&3)); + }); + } + + #[test] + fn set_council_test() { + with_externalities(&mut initial_test_ext(), || { + assert_ok!(Council::set_council(vec![4,5,6])); + assert!(Council::is_councilor(&4)); + assert!(Council::is_councilor(&5)); + assert!(Council::is_councilor(&6)); + }); + } +} diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index f394d57bbc..4c3bb1b05d 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -171,7 +171,7 @@ impl Module { /// Starts an election. Will fail if an election is already running /// Initializes transferable stakes. Assumes election parameters have already been set. - fn start_election(current_council: Option>>) -> Result { + fn start_election(current_council: Seats>) -> Result { ensure!(!Self::is_election_running(), "election already in progress"); ensure!(Self::existing_stake_holders().len() == 0, "stake holders must be empty"); ensure!(Self::applicants().len() == 0, "applicants must be empty"); @@ -180,7 +180,7 @@ impl Module { // Take snapshot of seat and backing stakes of an existing council // Its important to note that the election system takes ownership of these stakes, and is responsible // to return any unused stake to original owners and the end of the election. - current_council.map(|c| Self::initialize_transferable_stakes(c)); + Self::initialize_transferable_stakes(current_council); Self::deposit_event(RawEvent::ElectionStarted()); @@ -863,8 +863,8 @@ mod tests { #[test] fn should_not_start_new_election_if_already_started() { with_externalities(&mut initial_test_ext(), || { - assert_ok!(Election::start_election(None)); - assert_err!(Election::start_election(None), "election already in progress"); + assert_ok!(Election::start_election(vec![])); + assert_err!(Election::start_election(vec![]), "election already in progress"); }); } @@ -890,7 +890,7 @@ mod tests { >::put(20); let prev_round = Election::round(); - assert_ok!(Election::start_election(None)); + assert_ok!(Election::start_election(vec![])); // election round is bumped assert_eq!(Election::round(), prev_round + 1); @@ -1586,19 +1586,19 @@ mod tests { new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 10 as u32, backers: vec![]}); new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 20 as u32, backers: vec![]}); - assert!(Council::active_council().is_none()); + assert_eq!(Council::active_council().len(), 0); let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); ::CouncilElected::council_elected(new_council, 10); - assert!(Council::active_council().is_some()); + assert_eq!(Council::active_council().len(), 2); }); } #[test] fn simulation() { with_externalities(&mut initial_test_ext(), || { - assert!(Council::active_council().is_none()); + assert_eq!(Council::active_council().len(), 0); assert!(Election::stage().is_none()); >::put(10); @@ -1615,7 +1615,7 @@ mod tests { } System::set_block_number(1); - assert_ok!(Election::start_election(None)); + assert_ok!(Election::start_election(vec![])); for i in 1..20 { if i < 21 { @@ -1654,15 +1654,14 @@ mod tests { System::set_block_number(n); Election::on_finalise(n); - assert!(Council::active_council().is_some()); - assert_eq!(Council::active_council().unwrap().len(), Election::council_size_usize()); - for (i, seat) in Council::active_council().unwrap().iter().enumerate() { + assert_eq!(Council::active_council().len(), Election::council_size_usize()); + for (i, seat) in Council::active_council().iter().enumerate() { assert_eq!(seat.member, (i + 1) as u64); } assert!(Election::stage().is_none()); // When council term ends.. start a new election. - assert_ok!(Election::start_election(None)); + assert_ok!(Election::start_election(vec![])); }); } } \ No newline at end of file diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 123e14db4c..b3b3d823ef 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -333,7 +333,7 @@ impl Module { } fn councilors_count() -> u32 { - >::active_council().unwrap_or(vec![]).len() as u32 + >::active_council().len() as u32 } fn approval_quorum_seats() -> u32 { From 60aeaf8e013ac1f938346eab622199b5bb11c0ff Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 20 Feb 2019 18:09:05 +0200 Subject: [PATCH 149/350] rename seat and backer template parameter names for clarity --- runtime/src/governance/election.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index f394d57bbc..08d23ce1fb 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -32,25 +32,25 @@ pub enum ElectionStage { #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct Seat { - pub member: Id, - pub stake: Stake, - pub backers: Vec>, +pub struct Seat { + pub member: AccountId, + pub stake: Balance, + pub backers: Vec>, } -impl Seat - where Stake: Add + Copy, +impl Seat + where Balance: Add + Copy, { - pub fn calc_total_stake(&self) -> Stake { + pub fn calc_total_stake(&self) -> Balance { self.backers.iter().fold(self.stake, |acc, backer| acc + backer.stake) } } #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct Backer { - pub member: Id, - pub stake: Stake, +pub struct Backer { + pub member: AccountId, + pub stake: Balance, } pub type Seats = Vec>; From 00317ee886d9995ef55700adf486d3727925cbe8 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 21 Feb 2019 19:45:26 +0200 Subject: [PATCH 150/350] Don't ignore Cargo.lock in root --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ab95a58e9f..d9c097446d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,10 +3,10 @@ **/target/ # Cargo lock in subs -**/Cargo.lock +runtime/**/Cargo.lock # These are backup files generated by rustfmt **/*.rs.bk # JetBrains IDEs -.idea \ No newline at end of file +.idea From c4b2e29df6411025c12edde6cc0cfd3eacb159d6 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Thu, 21 Feb 2019 19:46:06 +0200 Subject: [PATCH 151/350] Add Cargo.lock to git --- Cargo.lock | 4856 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 4856 insertions(+) create mode 100644 Cargo.lock diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000000..31f0cfd818 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,4856 @@ +[[package]] +name = "MacTypes-sys" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "aes-ctr" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "aes-soft" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "aesni" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "aho-corasick" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "aio-limited" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ansi_term" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "app_dirs" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "arrayref" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "arrayvec" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "asn1_der" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "asn1_der_derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "atty" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "autocfg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "backtrace" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "base-x" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "base58" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "base64" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bigint" +version = "4.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bindgen" +version = "0.43.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cexpr 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "which 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bitflags" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "blake2" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "blake2-rfc" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-buffer" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-buffer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-buffer" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-cipher-trait" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-padding" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bs58" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "byte-tools" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "byte-tools" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "byteorder" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "byteorder" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "byteorder" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bytes" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cc" +version = "1.0.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cexpr" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nom 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cfg-if" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "chrono" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clang-sys" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clap" +version = "2.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clear_on_drop" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "constant_time_eq" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "core-foundation" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "core-foundation-sys" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-channel" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-deque" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-deque" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crunchy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crunchy" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crypto-mac" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crypto-mac" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crypto-mac" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ctr" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ctrlc" +version = "3.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cuckoofilter" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "curve25519-dalek" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "curve25519-dalek" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "data-encoding" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "digest" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "digest" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "digest" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "discard" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "dns-parser" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ed25519-dalek" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "either" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "elastic-array" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "env_logger" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "environmental" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "error-chain" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "exit-future" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fake-simd" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fdlimit" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fixed-hash" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fnv" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fs-swap" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-cpupool" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "gcc" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "generic-array" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "generic-array" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "generic-array" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "glob" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "globset" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "h2" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hash-db" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "hash256-std-hasher" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "heapsize" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "heck" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hex" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "hex-literal" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hex-literal-impl 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hex-literal-impl" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hmac" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hmac" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hmac-drbg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "http" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "httparse" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "humantime" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hyper" +version = "0.10.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hyper" +version = "0.12.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "idna" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "impl-codec" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "impl-serde" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "indexmap" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "integer-sqrt" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "interleaved-ordered" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "iovec" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itoa" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "joystream-node" +version = "0.9.1" +dependencies = [ + "ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "joystream-node-runtime 0.9.1", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "joystream-node-runtime" +version = "0.9.1" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "jsonrpc-core" +version = "10.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jsonrpc-derive" +version = "10.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jsonrpc-http-server" +version = "10.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hyper 0.12.24 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jsonrpc-pubsub" +version = "10.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jsonrpc-server-utils" +version = "10.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jsonrpc-ws-server" +version = "10.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "kvdb" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" +dependencies = [ + "elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", +] + +[[package]] +name = "kvdb-rocksdb" +version = "0.1.4" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" +dependencies = [ + "elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "language-tags" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazycell" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "libc" +version = "0.2.48" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "libloading" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core-derive 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-dns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-floodsub 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-kad 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mdns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mplex 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-noise 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-plaintext 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ratelimit 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-secio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-tcp 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-uds 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-websocket 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-yamux 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-core" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "multistream-select 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-core-derive" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-dns" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-floodsub" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-identify" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-kad" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-mdns" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-mplex" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-noise" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "curve25519-dalek 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "snow 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-ping" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-plaintext" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-ratelimit" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-secio" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-tcp" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-uds" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-websocket" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "websocket 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libp2p-yamux" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "yamux 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "librocksdb-sys" +version = "5.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bindgen 0.43.2 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "make-cmd 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libsecp256k1" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "linked-hash-map" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "linked-hash-map" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lock_api" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "lru-cache" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "make-cmd" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "matches" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memchr" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memoffset" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memory-db" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memory_units" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "mime" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mio" +version = "0.6.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mio-extras" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mio-uds" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "miow" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "multistream-select" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "names" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "native-tls" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", + "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "net2" +version = "0.2.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nix" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "node-executor" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "node-primitives" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "node-runtime" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "nodrop" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "nohash-hasher" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "nom" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-integer" +version = "0.1.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-traits" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "num_cpus" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ole32-sys" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "once_cell" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "opaque-debug" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "openssl" +version = "0.10.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "openssl-probe" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "openssl-sys" +version = "0.9.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-bytes" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" + +[[package]] +name = "parity-codec" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-codec-derive" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-crypto" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-multiaddr" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-multihash" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-wasm" +version = "0.31.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-ws" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "paste" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "paste-impl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "paste-impl" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "peeking_take_while" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "percent-encoding" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "pkg-config" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "primitive-types" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fixed-hash 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uint 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro-hack" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-hack-impl 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro-hack-impl" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "proc-macro2" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro2" +version = "0.4.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "protobuf" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "pwasm-utils" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quick-error" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quick-error" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quote" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quote" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_chacha" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rand_hc" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_isaac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_jitter" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_os" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_pcg" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_xorshift" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rayon" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rayon-core" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rdrand" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "redox_syscall" +version = "0.1.51" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "redox_termios" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "remove_dir_all" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ring" +version = "0.14.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rocksdb" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "librocksdb-sys 5.14.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rust-crypto" +version = "0.2.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc-hex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc-serialize" +version = "0.3.24" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rw-stream-sink" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ryu" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "safe-mix" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "safemem" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "schannel" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scoped-tls" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scopeguard" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "secp256k1" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "security-framework" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "security-framework-sys" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.87" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_derive" +version = "1.0.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_json" +version = "1.0.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sha1" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "sha2" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sha2" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sha2" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "shell32-sys" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "slab" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "slog" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "slog-async" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "slog-json" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "slog-scope" +version = "4.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "smallvec" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "snow" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "spin" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "sr-api-macros" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sr-io" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "environmental 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sr-primitives" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "sr-sandbox" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sr-std" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sr-version" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-aura" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-balances" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-consensus" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-contract" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", + "pwasm-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-council" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-democracy" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-executive" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-grandpa" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-indices" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-metadata" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-session" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-staking" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-sudo" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-support" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-support-procedural" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-support-procedural-tools" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-support-procedural-tools-derive" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-system" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-timestamp" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-treasury" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "srml-upgrade-key" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "stable_deref_trait" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "static_assertions" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "static_slice" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "stdweb" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb-internal-macros 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stdweb-derive" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stdweb-internal-macros" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stdweb-internal-runtime" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "stream-cipher" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "string" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "strsim" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "structopt" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "structopt-derive" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-basic-authorship" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-cli" +version = "0.3.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sysinfo 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-client" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-client-db" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-consensus-aura" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-consensus-aura-primitives" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-consensus-aura-slots" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-consensus-common" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-executor" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-finality-grandpa-primitives" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-inherents" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-keyring" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-keystore" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-network" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-network-libp2p" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-panic-handler" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-primitives" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-rpc" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-rpc-servers" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-serializer" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-service" +version = "0.3.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-state-db" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-state-machine" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-telemetry" +version = "0.3.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-transaction-graph" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-transaction-pool" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", +] + +[[package]] +name = "substrate-trie" +version = "0.4.0" +source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +dependencies = [ + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "subtle" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "subtle" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "syn" +version = "0.15.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "synstructure" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sysinfo" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "take_mut" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "target_info" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "tempfile" +version = "3.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termcolor" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termion" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "textwrap" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread_local" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "time" +version = "0.1.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tiny-keccak" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tk-listen" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-codec" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-core" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-current-thread" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-dns-unofficial" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-executor" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-fs" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-io" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-reactor" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-sync" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-tcp" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-threadpool" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-timer" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-tls" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-udp" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-uds" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "traitobject" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "trie-db" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "trie-root" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "try-lock" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "twofish" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "twox-hash" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "typeable" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "typenum" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "ucd-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "uint" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicase" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicase" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicode-normalization" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicode-segmentation" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicode-width" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicode-xid" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unreachable" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unsigned-varint" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "untrusted" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "url" +version = "1.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf8-ranges" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "vcpkg" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "vec_map" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "vergen" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "version_check" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "want" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasmi" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "websocket" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "which" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wincolor" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ws" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "xdg" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "yamux" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eaf9f0d0b1cc33a4d2aee14fb4b2eac03462ef4db29c8ac4057327d8a71ad86f" +"checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" +"checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" +"checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" +"checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e" +"checksum aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f10b352bc3fc08ae24dc5d2d3ddcac153678533986122dc283d747b12071000" +"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +"checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" +"checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" +"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" +"checksum asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9893d63fc3b1c44231e667da6836a33f27d8b6b3bdc82f83da5dfd579d1b6528" +"checksum asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7f92edafad155aff997fa5b727c6429b91e996b5a5d62a2b0adbae1306b5fe" +"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" +"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" +"checksum backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b5b493b66e03090ebc4343eb02f94ff944e0cbc9ac6571491d170ba026741eb5" +"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" +"checksum base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d55aa264e822dbafa12db4d54767aff17c6ba55ea2d8559b3e17392c7d000e5d" +"checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" +"checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" +"checksum bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ebecac13b3c745150d7b6c3ea7572d372f09d627c2077e893bf26c5c7f70d282" +"checksum bindgen 0.43.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d52d263eacd15d26cbcf215d254b410bd58212aaa2d3c453a04b2d3b3adcf41" +"checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" +"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" +"checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e" +"checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" +"checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" +"checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" +"checksum block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49665c62e0e700857531fa5d3763e91b539ff1abeebd56808d378b495870d60d" +"checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" +"checksum block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d75255892aeb580d3c566f213a2b6fdc1c66667839f45719ee1d30ebf2aea591" +"checksum bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0de79cfb98e7aa9988188784d8664b4b5dad6eaaa0863b91d9a4ed871d4f7a42" +"checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" +"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" +"checksum byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96c8b41881888cc08af32d47ac4edd52bc7fa27fef774be47a92443756451304" +"checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" +"checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" +"checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa" +"checksum cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "389803e36973d242e7fecb092b2de44a3d35ac62524b3b9339e51d577d668e02" +"checksum cexpr 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "644d693ecfa91955ed32dcc7eda4914e1be97a641fb6f0645a37348e20b230da" +"checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4" +"checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" +"checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" +"checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" +"checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +"checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" +"checksum core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "286e0b41c3a20da26536c6000a280585d519fd07b3956b43aed8a79e9edce980" +"checksum core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "716c271e8613ace48344f723b60b900a93150271e5be206212d052bbc0883efa" +"checksum crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad4c7ea749d9fb09e23c5cb17e3b70650860553a0e2744e38446b1803bf7db94" +"checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b" +"checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3" +"checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" +"checksum crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150" +"checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4" +"checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9" +"checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c" +"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" +"checksum crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c240f247c278fa08a6d4820a6a222bfc6e0d999e51ba67be94f44c905b2161f2" +"checksum crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "779015233ac67d65098614aec748ac1c756ab6677fa2e14cf8b37c08dfed1198" +"checksum crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7afa06d05a046c7a47c3a849907ec303504608c927f4e85f7bfff22b7180d971" +"checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" +"checksum ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "044f882973b245404e90c90e7e42e8ee8d7a64edfd7adf83d684fb97e8e2c1b6" +"checksum ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "630391922b1b893692c6334369ff528dcc3a9d8061ccf4c803aa8f83cb13db5e" +"checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" +"checksum curve25519-dalek 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3eacf6ff1b911e3170a8c400b402e10c86dc3cb166bd69034ebbc2b785fea4c2" +"checksum curve25519-dalek 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8c5d3c9657f9fdf86485861a57c2f0b275b8db7ca0ae77ff2469b9b83f6076e8" +"checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97" +"checksum digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e5b29bf156f3f4b3c4f610a25ff69370616ae6e0657d416de22645483e72af0a" +"checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" +"checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c" +"checksum discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" +"checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" +"checksum ed25519-dalek 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cd66d8a16ef71c23cf5eeb2140d8d3cd293457c6c7fd6804b593397a933fcf1e" +"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" +"checksum elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "88d4851b005ef16de812ea9acdb7bece2f0a40dd86c07b85631d7dafa54537bb" +"checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e" +"checksum environmental 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db746025e3ea695bfa0ae744dbacd5fcfc8db51b9760cf8bd0ab69708bb93c49" +"checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" +"checksum exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "87559b08e99a81a92bbb867d237543e43495857749f688e0773390a20d56c61c" +"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" +"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" +"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" +"checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" +"checksum fixed-hash 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a557e80084b05c32b455963ff565a9de6f2866da023d6671705c6aff6f65e01c" +"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" +"checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +"checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" +"checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" +"checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" +"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" +"checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592" +"checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" +"checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" +"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" +"checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" +"checksum h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ddb2b25a33e231484694267af28fec74ac63b5ccf51ee2065a5e313b834d836e" +"checksum hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1b03501f6e1a2a97f1618879aba3156f14ca2847faa530c4e28859638bd11483" +"checksum hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f5c13dbac3cc50684760f54af18545c9e80fb75e93a3e586d71ebdc13138f6a4" +"checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" +"checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" +"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" +"checksum hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae0e5c30fb65e661a0e39860e37100dfbe4d39aff865e9357a6a4ed0b5bbf303" +"checksum hex-literal-impl 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1d340b6514f232f6db1bd16db65302a5278a04fef9ce867cb932e7e5fa21130a" +"checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" +"checksum hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "733e1b3ac906631ca01ebb577e9bb0f5e37a454032b9036b5eaea4013ed6f99a" +"checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" +"checksum http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "1a10e5b573b9a0146545010f50772b9e8b1dd0a256564cc4307694c68832a2f5" +"checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" +"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" +"checksum hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "df0caae6b71d266b91b4a83111a61d2b94ed2e2bea024c532b933dcff867e58c" +"checksum hyper 0.12.24 (registry+https://github.com/rust-lang/crates.io-index)" = "fdfa9b401ef6c4229745bb6e9b2529192d07b920eed624cdee2a82348cd550af" +"checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" +"checksum impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2050d823639fbeae26b2b5ba09aca8907793117324858070ade0673c49f793b" +"checksum impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5158079de9d4158e0ce1de3ae0bd7be03904efc40b3d7dd8b8c301cbf6b52b56" +"checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" +"checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" +"checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" +"checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" +"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" +"checksum jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc15eef5f8b6bef5ac5f7440a957ff95d036e2f98706947741bfc93d1976db4c" +"checksum jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c2dae61ca8a3b047fb11309b00661bc56837085bd07e46f907b9c562c0b03e68" +"checksum jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11d2a00824306155b8ef57fe957f31b8cd8ad24262f15cf911d84dcf9a3f206d" +"checksum jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37fce55133ee264d0ab42bd862efcd45ae1d062cda599f4cc12ccc4be3195f2a" +"checksum jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9527f01ef25f251d64082cbefc0c6d6f367349afe6848ef908a674e06b2bdd3" +"checksum jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3889012aa638a2f18eb1a879f46fc8b34e7e1423cbff3247cd1531de0d51084b" +"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +"checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" +"checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" +"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" +"checksum libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "e962c7641008ac010fa60a7dfdc1712449f29c44ef2d4702394aea943ee75047" +"checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" +"checksum libp2p 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1cd53656209acc649a3aa4d9ce3580dd75d016317126fbdc6f8a8956f15f74de" +"checksum libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfdf7ab20e901f643cb0913e8e8feffd8439d3ee83d6cfea607f43fa3d14f6d" +"checksum libp2p-core-derive 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "21d637c8aa4d8540d160d747755ac5bd75073de70bd3c0c238d8b1685a66a6be" +"checksum libp2p-dns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a822c32da15ab0c4451792a4b000c37fbf8e3bc5ac471632f0b1f13e8e555524" +"checksum libp2p-floodsub 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4380fbc42ec03251c9e9a4656744e8e88bbe59cbf4e084fa66370ed0b868d085" +"checksum libp2p-identify 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "48923a9b3792aaf9af793a689c78bd0f42e70cc6cf86cc00d678d8f39ea720b6" +"checksum libp2p-kad 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e93be405af87e5911549ee4c5ffc3ef926bb88c5c416f29f3122fc9cd8545d29" +"checksum libp2p-mdns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4388af57ce8144eb0f6719926139df4f728042931eee5a32daf783a2fc9e05" +"checksum libp2p-mplex 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "58e4dcf1b8ee62d872ff38134969b0a2d63d014c200748eead158c58512a0c1b" +"checksum libp2p-noise 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9beca4939eb183708b8f172170044d977f1264394998e183efbf4972e09c163f" +"checksum libp2p-ping 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60d3acc575adbf6723b0965eca131e2525bed2c85ec88ddc4bff0462dbc0c2c3" +"checksum libp2p-plaintext 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b7cae333f78b782907d9940cb8dca37ddfa353fcaa812172654969fa65ef280c" +"checksum libp2p-ratelimit 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e298aa8036653ab9d4c37376066cb2fc69f63115522a9a3d402fcdc1654612ea" +"checksum libp2p-secio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3495935a389a6f4b26e71f9d6eac3fc33a9481f5f5d79ad886d5bc7efe0195c3" +"checksum libp2p-tcp 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ae301dcdd52087d40a106971575144c4f6220b37e0d1d98474085445327e2708" +"checksum libp2p-uds 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3b5524df7a63d97a8bbe2064d6bc85a84594ad71a8fad4b82ae958fbe37770ce" +"checksum libp2p-websocket 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e80602e23cf58b92d47142a32560c19417f8e9113017eb105f5e580f3bbeb8bc" +"checksum libp2p-yamux 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de9a2ed873051c7a85ec7dece746d425564c366b87752e83056c33d8ae758dcf" +"checksum librocksdb-sys 5.14.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b9024327233e7fac7982440f73301c00046d438c5b1011e8f4e394226ce19007" +"checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" +"checksum linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7860ec297f7008ff7a1e3382d7f7e1dcd69efc94751a2284bafc3d013c2aa939" +"checksum linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "70fb39025bc7cdd76305867c4eccf2f2dcf6e9a57f5b21a93e1c2d86cd03ec9e" +"checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" +"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" +"checksum lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4d06ff7ff06f729ce5f4e227876cb88d10bc59cd4ae1e09fbb2bde15c850dc21" +"checksum make-cmd 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a8ca8afbe8af1785e09636acb5a41e08a765f5f0340568716c18a8700ba3c0d3" +"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" +"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" +"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" +"checksum memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94da53143d45f6bad3753f532e56ad57a6a26c0ca6881794583310c7cb4c885f" +"checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" +"checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" +"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" +"checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" +"checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" +"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" +"checksum multistream-select 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ed84364f0e921a32204896952ee80c7befc14a7a39f2c56cd955d71e8dae6" +"checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" +"checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" +"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" +"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" +"checksum node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" +"checksum nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d138afcce92d219ccb6eb53d9b1e8a96ac0d633cfd3c53cd9856d96d1741bb8" +"checksum nom 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b30adc557058ce00c9d0d7cb3c6e0b5bc6f36e2e2eabe74b0ba726d194abd588" +"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" +"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" +"checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba" +"checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" +"checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" +"checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409" +"checksum openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9" +"checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" +"checksum openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)" = "1bb974e77de925ef426b6bc82fce15fd45bdcbeb5728bffcfc7cdeeb7ce1c2d6" +"checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" +"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" +"checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "88f69984317b736dceac3baa86600fc089856f69b44b07231f39b5648b02bcd4" +"checksum parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a58ba33211595f92cc2163ac583961d3dc767e656934146636b05256cc9acd7f" +"checksum parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b9db194dfbcfe3b398d63d765437a5c7232d59906e203055f0e993f6458ff1" +"checksum parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9a8e5d637787fe097ec1bfca2aa3eb687396518003df991c6c7216d86682d5ff" +"checksum parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e8eab0287ccde7821e337a124dc5a4f1d6e4c25d10cc91e3f9361615dd95076" +"checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" +"checksum parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2fec5048fba72a2e01baeb0d08089db79aead4b57e2443df172fb1840075a233" +"checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" +"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" +"checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" +"checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa" +"checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" +"checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" +"checksum paste 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f50392d1265092fbee9273414cc40eb6d47d307bd66222c477bb8450c8504f9d" +"checksum paste-impl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a3cd512fe3a55e8933b2dcad913e365639db86d512e4004c3084b86864d9467a" +"checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" +"checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" +"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" +"checksum primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edb92f1ebfc177432c03287b15d48c202e6e2c95993a7af3ba039abb43b1492e" +"checksum proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2c725b36c99df7af7bf9324e9c999b9e37d92c8f8caf106d82e1d7953218d2d8" +"checksum proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e90aa19cd73dedc2d0e1e8407473f073d735fef0ab521438de6da8ee449ab66" +"checksum proc-macro-hack-impl 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2b753ad9ed99dd8efeaa7d2fb8453c8f6bc3e54b97966d35f1bc77ca6865254a" +"checksum proc-macro2 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "77997c53ae6edd6d187fec07ec41b207063b5ee6f33680e9fa86d405cdd313d4" +"checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" +"checksum protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d82d117bc7565ce6be0150159251c9b1eeec7b129f5a2aa86e10acb5970de1cb" +"checksum pwasm-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "efb0dcbddbb600f47a7098d33762a00552c671992171637f5bb310b37fe1f0e4" +"checksum quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5fb6ccf8db7bbcb9c2eae558db5ab4f3da1c2a87e4e597ed394726bc8ea6ca1d" +"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8" +"checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" +"checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" +"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" +"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" +"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" +"checksum rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b7c690732391ae0abafced5015ffb53656abfaec61b342290e5eb56b286a679d" +"checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05" +"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +"checksum rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473" +"checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356" +"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +"checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" +"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" +"checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f" +"checksum regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8c2f35eedad5295fdf00a63d7d4b238135723f92b434ec06774dad15c7ab0861" +"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" +"checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" +"checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" +"checksum rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a" +"checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619" +"checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" +"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" +"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +"checksum rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "108ad7c3d65ba866ec50a224b7b3b0cb6c682c3d805015cea859d491232346a5" +"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" +"checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" +"checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" +"checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56" +"checksum scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28" +"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" +"checksum secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaccd3a23619349e0878d9a241f34b1982343cdf67367058cd7d078d326b63e" +"checksum security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfab8dda0e7a327c696d893df9ffa19cadc4bd195797997f5223cf5831beaf05" +"checksum security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc" +"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +"checksum serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "2e20fde37801e83c891a2dc4ebd3b81f0da4d1fb67a9e0a2a3b921e2536a58ee" +"checksum serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "633e97856567e518b59ffb2ad7c7a4fd4c5d91d9c7f32dd38a27b2bf7e8114ea" +"checksum serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)" = "27dce848e7467aa0e2fcaf0a413641499c0b745452aaca1194d24dedde9e13c9" +"checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" +"checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" +"checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" +"checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" +"checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" +"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" +"checksum slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e1a2eec401952cd7b12a84ea120e2d57281329940c3f93c2bf04f462539508e" +"checksum slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e544d16c6b230d84c866662fe55e31aacfca6ae71e6fc49ae9a311cb379bfc2f" +"checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" +"checksum slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "60c04b4726fa04595ccf2c2dad7bcd15474242c4c5e109a8a376e8a2c9b1539a" +"checksum smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "88aea073965ab29f6edb5493faf96ad662fb18aa9eeb186a3b7057951605ed15" +"checksum snow 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7251f8920e9043106cfe466c04ed3eb257b8315a7699259c4fd0af6dffb6aef6" +"checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" +"checksum sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" +"checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" +"checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" +"checksum stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)" = "5eafd45550bc406cfa179ea263ba0935da87adf220dab40e2c25c4675edc49d8" +"checksum stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0e21ebd9179de08f2300a65454268a17ea3de204627458588c84319c4def3930" +"checksum stdweb-internal-macros 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1635afd059cbfac7d5b1274f0c44cec110c1e013c48e8bbc22e07e52696cf887" +"checksum stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a2a2f4a2eb556337b2d1a302630bbddf989ae383c70393e89b48152b9896cbda" +"checksum stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8861bc80f649f5b4c9bd38b696ae9af74499d479dbfb327f0607de6b326a36bc" +"checksum string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b639411d0b9c738748b5397d5ceba08e648f4f1992231aa859af1a017f31f60b" +"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" +"checksum structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "670ad348dc73012fcf78c71f06f9d942232cdd4c859d4b6975e27836c3efc0c3" +"checksum structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ef98172b1a00b0bec738508d3726540edcbd186d50dfd326f2b1febbb3559f04" +"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" +"checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" +"checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9" +"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" +"checksum sysinfo 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4da1ccc493b46042d6f5352910a7f18ed8fe81307dd7db3f2e2d8a7db6f6284" +"checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" +"checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" +"checksum tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "37daa55a7240c4931c84559f03b3cad7d19535840d1c4a0cc4e9b2fb0dcf70ff" +"checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f" +"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" +"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" +"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" +"checksum tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e9175261fbdb60781fcd388a4d6cc7e14764a2b629a7ad94abb439aed223a44f" +"checksum tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5462b0f968c0457efe38fcd2df7e487096b992419e4f5337b06775a614bbda4b" +"checksum tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "e0500b88064f08bebddd0c0bed39e19f5c567a5f30975bee52b0c0d3e2eeb38c" +"checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" +"checksum tokio-core 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "aeeffbbb94209023feaef3c196a41cbcdafa06b4a6f893f68779bb5e53796f71" +"checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6" +"checksum tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975" +"checksum tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30c6dbf2d1ad1de300b393910e8a3aa272b724a400b6531da03eed99e329fbf0" +"checksum tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e9cbbc8a3698b7ab652340f46633364f9eaa928ddaaee79d8b8f356dd79a09d" +"checksum tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b53aeb9d3f5ccf2ebb29e19788f96987fa1355f8fe45ea193928eaaaf3ae820f" +"checksum tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "afbcdb0f0d2a1e4c440af82d7bbf0bf91a8a8c0575bcd20c05d15be7e9d3a02f" +"checksum tokio-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3742b64166c1ee9121f1921aea5a726098458926a6b732d906ef23b1f3ef6f4f" +"checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" +"checksum tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c3fd86cb15547d02daa2b21aadaf4e37dee3368df38a526178a5afa3c034d2fb" +"checksum tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2910970404ba6fa78c5539126a9ae2045d62e3713041e447f695f41405a120c6" +"checksum tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" +"checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" +"checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" +"checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" +"checksum trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7319e28ca295f27359d944a682f7f65b419158bf1590c92cadc0000258d788" +"checksum trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3c6fef2705af3258ec46a7e22286090394a44216201a1cf7d04b78db825e543" +"checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" +"checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" +"checksum twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "555cd4909480122bbbf21e34faac4cb08a171f324775670447ed116726c474af" +"checksum typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" +"checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" +"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" +"checksum uint 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e7780bb27fd8a22295e0d9d53ae3be253f715a0dccb1808527f478f1c2603708" +"checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" +"checksum unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d3218ea14b4edcaccfa0df0a64a3792a2c32cc706f1b336e48867f9d3147f90" +"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" +"checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" +"checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" +"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" +"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +"checksum unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2c64cdf40b4a9645534a943668681bcb219faf51874d4b65d2e0abda1b10a2ab" +"checksum untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" +"checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" +"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" +"checksum vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d" +"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" +"checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba" +"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +"checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" +"checksum wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "21ef487a11df1ed468cf613c78798c26282da5c30e9d49f824872d4c77b47d1d" +"checksum websocket 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c9faed2bff8af2ea6b9f8b917d3d00b467583f6781fe3def174a9e33c879703" +"checksum which 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e84a603e7e0b1ce1aa1ee2b109c7be00155ce52df5081590d1ffb93f4f515cb2" +"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" +"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" +"checksum ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)" = "329d3e6dd450a9c5c73024e1047f0be7e24121a68484eb0b5368977bee3cf8c3" +"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" +"checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" +"checksum yamux 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e25561b512df3c287cf52404cab0b07ea43d095cb96230e9e2cb635db72d75f0" From 55dd8f9e802f7ad0883056dd4f754bc43599e352 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 22 Feb 2019 00:54:02 +0200 Subject: [PATCH 152/350] Rename Pending -> Active, ProposalId -> u32 --- runtime/src/governance/proposals.rs | 151 +++++++++++++--------------- 1 file changed, 69 insertions(+), 82 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index b3b3d823ef..6b69f664a3 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -38,13 +38,11 @@ const MSG_TOO_LONG_NAME: &str = "Name is too long"; const MSG_TOO_LONG_DESCRIPTION: &str = "Description is too long"; const MSG_TOO_LONG_WASM_CODE: &str = "WASM code is too big"; -pub type ProposalId = u32; - #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Clone, PartialEq, Eq)] pub enum ProposalStatus { /// A new proposal that is available for voting. - Pending, // TODO Rename to 'Active' + Active, /// If cancelled by a proposer. Cancelled, /// Not enough votes and voting period expired. @@ -60,7 +58,7 @@ pub enum ProposalStatus { impl Default for ProposalStatus { fn default() -> Self { - ProposalStatus::Pending + ProposalStatus::Active } } @@ -92,7 +90,7 @@ use self::VoteKind::*; #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] /// Proposal for node runtime update. pub struct RuntimeUpgradeProposal { - id: ProposalId, + id: u32, proposer: AccountId, stake: Balance, name: Vec, @@ -106,7 +104,7 @@ pub struct RuntimeUpgradeProposal { #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] pub struct TallyResult { - proposal_id: ProposalId, + proposal_id: u32, abstentions: u32, approvals: u32, rejections: u32, @@ -132,20 +130,20 @@ decl_event!( /// Params: /// * Account id of a member who proposed. /// * Id of a newly created proposal after it was saved in storage. - ProposalCreated(AccountId, ProposalId), - ProposalCanceled(AccountId, ProposalId), - ProposalStatusUpdated(ProposalId, ProposalStatus), + ProposalCreated(AccountId, u32), + ProposalCanceled(AccountId, u32), + ProposalStatusUpdated(u32, ProposalStatus), /// Params: /// * Voter - an account id of a councilor. /// * Id of a proposal. /// * Kind of vote. - Voted(AccountId, ProposalId, VoteKind), + Voted(AccountId, u32, VoteKind), TallyFinalized(TallyResult), /// * Hash - hash of wasm code of runtime update. - RuntimeUpdated(ProposalId, Hash), + RuntimeUpdated(u32, Hash), } ); @@ -154,13 +152,13 @@ decl_storage! { // Parameters (defaut values could be exported to config): - // TODO rename? 'approval_quorum' -> 'approval_quorum_per' - /// The percentage (up to 100) of the council participants - /// which must vote affirmatively in order for it to pass. + // TODO rename 'approval_quorum' -> 'quorum_percent' ?! + /// A percent (up to 100) of the council participants + /// that must vote affirmatively in order to pass. ApprovalQuorum get(approval_quorum) config(): u32 = DEFAULT_APPROVAL_QUORUM; - /// Minimum balance amount to be staked in order to make a proposal. - MinimumStake get(minimum_stake) config(): BalanceOf = + /// Minimum amount of a balance to be staked in order to make a proposal. + MinStake get(min_stake) config(): BalanceOf = BalanceOf::::sa(DEFAULT_MIN_STAKE); /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. @@ -182,20 +180,19 @@ decl_storage! { // Persistent state (always relevant, changes constantly): - ProposalCount get(proposal_count): ProposalId; + ProposalCount get(proposal_count): u32; // TODO rename 'proposal' -> 'proposals' - Proposals get(proposal): map ProposalId => RuntimeUpgradeProposal, T::BlockNumber>; + Proposals get(proposal): map u32 => RuntimeUpgradeProposal, T::BlockNumber>; - // TODO rename to `ActiveProposalIds` - PendingProposalIds get(pending_proposal_ids): Vec = vec![]; + ActiveProposalIds get(active_proposal_ids): Vec = vec![]; - VotesByProposal get(votes_by_proposal): map ProposalId => Vec<(T::AccountId, VoteKind)>; + VotesByProposal get(votes_by_proposal): map u32 => Vec<(T::AccountId, VoteKind)>; // TODO Rethink: this can be replaced with: votes_by_proposal.find(|vote| vote.0 == proposer) - VoteByAccountAndProposal get(vote_by_account_and_proposal): map (T::AccountId, ProposalId) => VoteKind; + VoteByAccountAndProposal get(vote_by_account_and_proposal): map (T::AccountId, u32) => VoteKind; - TallyResults get(tally_results): map ProposalId => TallyResult; + TallyResults get(tally_results): map u32 => TallyResult; } } @@ -219,7 +216,7 @@ decl_module! { let proposer = ensure_signed(origin)?; ensure!(Self::is_member(proposer.clone()), MSG_ONLY_MEMBERS_CAN_PROPOSE); - ensure!(stake >= Self::minimum_stake(), MSG_STAKE_IS_TOO_LOW); + ensure!(stake >= Self::min_stake(), MSG_STAKE_IS_TOO_LOW); ensure!(!name.is_empty(), MSG_EMPTY_NAME_PROVIDED); ensure!(name.len() as u32 <= Self::name_max_len(), MSG_TOO_LONG_NAME); @@ -245,11 +242,11 @@ decl_module! { description, wasm_code, proposed_at: Self::current_block(), - status: Pending + status: Active }; >::insert(proposal_id, new_proposal); - >::mutate(|ids| ids.push(proposal_id)); + >::mutate(|ids| ids.push(proposal_id)); Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), proposal_id)); // Auto-vote with Approve if proposer is a councilor: @@ -264,14 +261,14 @@ decl_module! { /// ```js /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.voteOnProposal(1, { option: "Approve", _type: "VoteKind" }) }).tie(console.log) /// ``` - fn vote_on_proposal(origin, proposal_id: ProposalId, vote: VoteKind) -> Result { + fn vote_on_proposal(origin, proposal_id: u32, vote: VoteKind) -> Result { let voter = ensure_signed(origin)?; - ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); + // ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); - ensure!(proposal.status == Pending, MSG_PROPOSAL_FINALIZED); + ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); let not_expired = !Self::is_voting_period_expired(proposal.proposed_at); ensure!(not_expired, MSG_PROPOSAL_EXPIRED); @@ -285,14 +282,14 @@ decl_module! { // TODO add 'reason' why a proposer wants to cancel (UX + feedback)? /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. - fn cancel_proposal(origin, proposal_id: ProposalId) -> Result { + fn cancel_proposal(origin, proposal_id: u32) -> Result { let proposer = ensure_signed(origin)?; ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); ensure!(proposer == proposal.proposer, MSG_YOU_DONT_OWN_THIS_PROPOSAL); - ensure!(proposal.status == Pending, MSG_PROPOSAL_FINALIZED); + ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); // Spend some minimum fee on proposer's balance for canceling a proposal let fee = Self::cancellation_fee(); @@ -344,7 +341,7 @@ impl Module { Self::current_block() >= proposed_at + Self::voting_period() } - fn _process_vote(voter: T::AccountId, proposal_id: ProposalId, vote: VoteKind) -> Result { + fn _process_vote(voter: T::AccountId, proposal_id: u32, vote: VoteKind) -> Result { let new_vote = (voter.clone(), vote.clone()); if >::exists(proposal_id) { // Append a new vote to other votes on this proposal: @@ -371,12 +368,12 @@ impl Module { } /// Get the voters for the current proposal. - pub fn tally(/* proposal_id: ProposalId */) -> Result { + pub fn tally(/* proposal_id: u32 */) -> Result { let councilors: u32 = Self::councilors_count(); let quorum: u32 = Self::approval_quorum_seats(); - for &proposal_id in Self::pending_proposal_ids().iter() { + for &proposal_id in Self::active_proposal_ids().iter() { let proposal = Self::proposal(proposal_id); let is_expired = Self::is_voting_period_expired(proposal.proposed_at); let votes = Self::votes_by_proposal(proposal_id); @@ -438,18 +435,18 @@ impl Module { Ok(()) } - /// Updates proposal status and removes proposal from pending ids. - fn _update_proposal_status(proposal_id: ProposalId, new_status: ProposalStatus) -> Result { - let all_pendings = Self::pending_proposal_ids(); - let all_len = all_pendings.len(); - let other_pendings: Vec = all_pendings + /// Updates proposal status and removes proposal from active ids. + fn _update_proposal_status(proposal_id: u32, new_status: ProposalStatus) -> Result { + let all_active_ids = Self::active_proposal_ids(); + let all_len = all_active_ids.len(); + let other_active_ids: Vec = all_active_ids .into_iter() .filter(|&id| id != proposal_id) .collect(); - let not_found_in_pendings = other_pendings.len() == all_len; - if not_found_in_pendings { - // Seems like this proposal's status has been updated and removed from pendings. + let not_found_in_active = other_active_ids.len() == all_len; + if not_found_in_active { + // Seems like this proposal's status has been updated and removed from active. Err(MSG_PROPOSAL_STATUS_ALREADY_UPDATED) } else { let pid = proposal_id.clone(); @@ -457,9 +454,9 @@ impl Module { Slashed => Self::_slash_proposal(pid)?, Rejected | Expired => Self::_reject_proposal(pid)?, Approved => Self::_approve_proposal(pid)?, - Pending | Cancelled => { /* nothing */ }, + Active | Cancelled => { /* nothing */ }, } - >::put(other_pendings); + >::put(other_active_ids); >::mutate(proposal_id, |p| p.status = new_status.clone()); Self::deposit_event(RawEvent::ProposalStatusUpdated(proposal_id, new_status)); Ok(()) @@ -467,7 +464,7 @@ impl Module { } /// Slash a proposal. The staked deposit will be slashed. - fn _slash_proposal(proposal_id: ProposalId) -> Result { + fn _slash_proposal(proposal_id: u32) -> Result { let proposal = Self::proposal(proposal_id); // Slash proposer's stake: @@ -477,7 +474,7 @@ impl Module { } /// Reject a proposal. The staked deposit will be returned to a proposer. - fn _reject_proposal(proposal_id: ProposalId) -> Result { + fn _reject_proposal(proposal_id: u32) -> Result { let proposal = Self::proposal(proposal_id); let proposer = proposal.proposer; @@ -493,7 +490,7 @@ impl Module { } /// Approve a proposal. The staked deposit will be returned. - fn _approve_proposal(proposal_id: ProposalId) -> Result { + fn _approve_proposal(proposal_id: u32) -> Result { let proposal = Self::proposal(proposal_id); let wasm_code = proposal.wasm_code; @@ -503,19 +500,9 @@ impl Module { // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 let wasm_hash = T::Hashing::hash(&wasm_code); - // TODO fix: this doesn't update storage in tests :( - // println!("> before storage::unhashed::get_raw\n{:?}", - // storage::unhashed::get_raw(well_known_keys::CODE)); - - // println!("wasm code: {:?}", wasm_code.clone()); - // Update wasm code of node's runtime: - //storage::unhashed::put_raw(well_known_keys::CODE, &wasm_code.clone()); >::set_code(wasm_code)?; - // println!("< AFTER storage::unhashed::get_raw\n{:?}", - // storage::unhashed::get_raw(well_known_keys::CODE)); - Self::deposit_event(RawEvent::RuntimeUpdated(proposal_id, wasm_hash)); Ok(()) @@ -654,8 +641,8 @@ mod tests { } /// A shortcut to get minimum stake in tests. - fn minimum_stake() -> u64 { - Proposals::minimum_stake() + fn min_stake() -> u64 { + Proposals::min_stake() } /// A shortcut to get cancellation fee in tests. @@ -670,7 +657,7 @@ mod tests { /// Initial balance of Proposer 1. fn initial_balance() -> u64 { - (minimum_stake() as f64 * 2.5) as u64 + (min_stake() as f64 * 2.5) as u64 } fn name() -> Vec { @@ -698,7 +685,7 @@ mod tests { ) -> Result { Proposals::create_proposal( Origin::signed(origin.unwrap_or(PROPOSER1)), - stake.unwrap_or(minimum_stake()), + stake.unwrap_or(min_stake()), name.unwrap_or(self::name()), description.unwrap_or(self::description()), wasm_code.unwrap_or(self::wasm_code()) @@ -721,14 +708,14 @@ mod tests { fn check_default_values() { with_externalities(&mut new_test_ext(), || { assert_eq!(Proposals::approval_quorum(), DEFAULT_APPROVAL_QUORUM); - assert_eq!(Proposals::minimum_stake(), DEFAULT_MIN_STAKE); + assert_eq!(Proposals::min_stake(), DEFAULT_MIN_STAKE); assert_eq!(Proposals::cancellation_fee(), DEFAULT_CANCELLATION_FEE); assert_eq!(Proposals::rejection_fee(), DEFAULT_REJECTION_FEE); assert_eq!(Proposals::name_max_len(), DEFAULT_NAME_MAX_LEN); assert_eq!(Proposals::description_max_len(), DEFAULT_DESCRIPTION_MAX_LEN); assert_eq!(Proposals::wasm_code_max_len(), DEFAULT_WASM_CODE_MAX_LEN); assert_eq!(Proposals::proposal_count(), 0); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); }); } @@ -739,26 +726,26 @@ mod tests { Balances::increase_total_stake_by(initial_balance()); assert_ok!(_create_default_proposal()); - assert_eq!(Proposals::pending_proposal_ids().len(), 1); - assert_eq!(Proposals::pending_proposal_ids()[0], 1); + assert_eq!(Proposals::active_proposal_ids().len(), 1); + assert_eq!(Proposals::active_proposal_ids()[0], 1); let expected_proposal = RuntimeUpgradeProposal { id: 1, proposer: PROPOSER1, - stake: minimum_stake(), + stake: min_stake(), name: name(), description: description(), wasm_code: wasm_code(), proposed_at: 1, - status: Pending + status: Active }; assert_eq!(Proposals::proposal(1), expected_proposal); // Check that stake amount has been locked on proposer's balance: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - minimum_stake()); - assert_eq!(Balances::reserved_balance(PROPOSER1), minimum_stake()); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - min_stake()); + assert_eq!(Balances::reserved_balance(PROPOSER1), min_stake()); - // TODO expect event ProposalCreated(AccountId, ProposalId) + // TODO expect event ProposalCreated(AccountId, u32) }); } @@ -779,7 +766,7 @@ mod tests { Balances::increase_total_stake_by(initial_balance()); assert_eq!(_create_proposal( - None, Some(minimum_stake() - 1), None, None, None), + None, Some(min_stake() - 1), None, None, None), Err(MSG_STAKE_IS_TOO_LOW)); // Check that balances remain unchanged afer a failed attempt to create a proposal: @@ -874,13 +861,13 @@ mod tests { assert_ok!(_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); assert_eq!(Proposals::proposal(1).status, Cancelled); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); // Check that proposer's balance reduced by cancellation fee and other part of his stake returned to his balance: assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - cancellation_fee()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - // TODO expect event ProposalCancelled(AccountId, ProposalId) + // TODO expect event ProposalCancelled(AccountId, u32) }); } @@ -1016,7 +1003,7 @@ mod tests { System::set_block_number(2); Proposals::on_finalise(2); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); // Try to vote on finalized proposal: @@ -1054,7 +1041,7 @@ mod tests { // Check that runtime code has been updated after proposal approved. assert_runtime_code!(wasm_code()); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1101,7 +1088,7 @@ mod tests { // Check that runtime code has been updated after proposal approved. assert_runtime_code!(wasm_code()); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1154,7 +1141,7 @@ mod tests { // Check that runtime code has been updated after proposal approved. assert_runtime_code!(wasm_code()); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1201,7 +1188,7 @@ mod tests { // Check that runtime code has NOT been updated after proposal slashed. assert_runtime_code_empty!(); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Rejected); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1246,7 +1233,7 @@ mod tests { // Check that runtime code has NOT been updated after proposal rejected. assert_runtime_code_empty!(); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Rejected); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1291,7 +1278,7 @@ mod tests { // Check that runtime code has NOT been updated after proposal slashed. assert_runtime_code_empty!(); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Slashed); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, @@ -1304,7 +1291,7 @@ mod tests { }); // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - minimum_stake()); + assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - min_stake()); assert_eq!(Balances::reserved_balance(PROPOSER1), 0); // TODO expect event ProposalStatusUpdated(1, Slashed) @@ -1346,7 +1333,7 @@ mod tests { // Check that runtime code has NOT been updated after proposal slashed. assert_runtime_code_empty!(); - assert!(Proposals::pending_proposal_ids().is_empty()); + assert!(Proposals::active_proposal_ids().is_empty()); assert_eq!(Proposals::proposal(1).status, Expired); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, From 900da7ce61158c3682be73db4fc145ace014df14 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 22 Feb 2019 00:55:46 +0200 Subject: [PATCH 153/350] Uncomment check that only councilors can vote on proposals --- runtime/src/governance/proposals.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 6b69f664a3..5909a3677b 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -263,7 +263,7 @@ decl_module! { /// ``` fn vote_on_proposal(origin, proposal_id: u32, vote: VoteKind) -> Result { let voter = ensure_signed(origin)?; - // ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); + ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposal(proposal_id); From f5a68d77e0f847aa4740f26b0b85b21e1c1f678b Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 22 Feb 2019 01:12:33 +0200 Subject: [PATCH 154/350] Rename storage map: proposal -> proposals --- runtime/src/governance/proposals.rs | 37 ++++++++++++++--------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 5909a3677b..f1ef50d9db 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -182,8 +182,7 @@ decl_storage! { ProposalCount get(proposal_count): u32; - // TODO rename 'proposal' -> 'proposals' - Proposals get(proposal): map u32 => RuntimeUpgradeProposal, T::BlockNumber>; + Proposals get(proposals): map u32 => RuntimeUpgradeProposal, T::BlockNumber>; ActiveProposalIds get(active_proposal_ids): Vec = vec![]; @@ -266,7 +265,7 @@ decl_module! { ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); - let proposal = Self::proposal(proposal_id); + let proposal = Self::proposals(proposal_id); ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); @@ -286,7 +285,7 @@ decl_module! { let proposer = ensure_signed(origin)?; ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); - let proposal = Self::proposal(proposal_id); + let proposal = Self::proposals(proposal_id); ensure!(proposer == proposal.proposer, MSG_YOU_DONT_OWN_THIS_PROPOSAL); ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); @@ -374,7 +373,7 @@ impl Module { let quorum: u32 = Self::approval_quorum_seats(); for &proposal_id in Self::active_proposal_ids().iter() { - let proposal = Self::proposal(proposal_id); + let proposal = Self::proposals(proposal_id); let is_expired = Self::is_voting_period_expired(proposal.proposed_at); let votes = Self::votes_by_proposal(proposal_id); let all_councilors_voted = votes.len() as u32 == councilors; @@ -465,7 +464,7 @@ impl Module { /// Slash a proposal. The staked deposit will be slashed. fn _slash_proposal(proposal_id: u32) -> Result { - let proposal = Self::proposal(proposal_id); + let proposal = Self::proposals(proposal_id); // Slash proposer's stake: let _ = T::Currency::slash_reserved(&proposal.proposer, proposal.stake); @@ -475,7 +474,7 @@ impl Module { /// Reject a proposal. The staked deposit will be returned to a proposer. fn _reject_proposal(proposal_id: u32) -> Result { - let proposal = Self::proposal(proposal_id); + let proposal = Self::proposals(proposal_id); let proposer = proposal.proposer; // Spend some minimum fee on proposer's balance to prevent spamming attacks: @@ -491,7 +490,7 @@ impl Module { /// Approve a proposal. The staked deposit will be returned. fn _approve_proposal(proposal_id: u32) -> Result { - let proposal = Self::proposal(proposal_id); + let proposal = Self::proposals(proposal_id); let wasm_code = proposal.wasm_code; // Return staked deposit to proposer: @@ -739,7 +738,7 @@ mod tests { proposed_at: 1, status: Active }; - assert_eq!(Proposals::proposal(1), expected_proposal); + assert_eq!(Proposals::proposals(1), expected_proposal); // Check that stake amount has been locked on proposer's balance: assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - min_stake()); @@ -860,7 +859,7 @@ mod tests { assert_ok!(_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); - assert_eq!(Proposals::proposal(1).status, Cancelled); + assert_eq!(Proposals::proposals(1).status, Cancelled); assert!(Proposals::active_proposal_ids().is_empty()); // Check that proposer's balance reduced by cancellation fee and other part of his stake returned to his balance: @@ -879,7 +878,7 @@ mod tests { assert_ok!(_create_default_proposal()); assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); - assert_eq!(Proposals::proposal(1).status, Cancelled); + assert_eq!(Proposals::proposals(1).status, Cancelled); // Get balances updated after cancelling a proposal: let updated_free_balance = Balances::free_balance(PROPOSER1); @@ -1004,7 +1003,7 @@ mod tests { Proposals::on_finalise(2); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Approved); + assert_eq!(Proposals::proposals(1).status, Approved); // Try to vote on finalized proposal: assert_eq!(Proposals::vote_on_proposal( @@ -1042,7 +1041,7 @@ mod tests { assert_runtime_code!(wasm_code()); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Approved); + assert_eq!(Proposals::proposals(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, @@ -1089,7 +1088,7 @@ mod tests { assert_runtime_code!(wasm_code()); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Approved); + assert_eq!(Proposals::proposals(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, @@ -1142,7 +1141,7 @@ mod tests { assert_runtime_code!(wasm_code()); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Approved); + assert_eq!(Proposals::proposals(1).status, Approved); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, @@ -1189,7 +1188,7 @@ mod tests { assert_runtime_code_empty!(); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Rejected); + assert_eq!(Proposals::proposals(1).status, Rejected); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: abstentions, @@ -1234,7 +1233,7 @@ mod tests { assert_runtime_code_empty!(); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Rejected); + assert_eq!(Proposals::proposals(1).status, Rejected); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, @@ -1279,7 +1278,7 @@ mod tests { assert_runtime_code_empty!(); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Slashed); + assert_eq!(Proposals::proposals(1).status, Slashed); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, @@ -1334,7 +1333,7 @@ mod tests { assert_runtime_code_empty!(); assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposal(1).status, Expired); + assert_eq!(Proposals::proposals(1).status, Expired); assert_eq!(Proposals::tally_results(1), TallyResult { proposal_id: 1, abstentions: 0, From 41bf05acd352cd51c8da664d933c23e05012c115 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 22 Feb 2019 18:49:37 +0200 Subject: [PATCH 155/350] Store WASM code of proposal separately --- runtime/src/governance/proposals.rs | 32 ++++++++++++++++++----------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index f1ef50d9db..612b59126e 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -89,14 +89,13 @@ use self::VoteKind::*; #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] #[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] /// Proposal for node runtime update. -pub struct RuntimeUpgradeProposal { +pub struct RuntimeUpgradeProposal { id: u32, proposer: AccountId, stake: Balance, name: Vec, description: Vec, - wasm_code: Vec, - // wasm_hash: Hash, + wasm_hash: Hash, proposed_at: BlockNumber, status: ProposalStatus, } @@ -180,12 +179,18 @@ decl_storage! { // Persistent state (always relevant, changes constantly): + /// Count of all proposals that have been created. ProposalCount get(proposal_count): u32; - Proposals get(proposals): map u32 => RuntimeUpgradeProposal, T::BlockNumber>; + /// Get proposal details by its id. + Proposals get(proposals): map u32 => RuntimeUpgradeProposal, T::BlockNumber, T::Hash>; + /// Ids of proposals that are open for voting (have not been finalized yet). ActiveProposalIds get(active_proposal_ids): Vec = vec![]; + /// Get WASM code of runtime upgrade by hash of its content. + WasmCodeByHash get(wasm_code_by_hash): map T::Hash => Vec; + VotesByProposal get(votes_by_proposal): map u32 => Vec<(T::AccountId, VoteKind)>; // TODO Rethink: this can be replaced with: votes_by_proposal.find(|vote| vote.0 == proposer) @@ -209,7 +214,6 @@ decl_module! { stake: BalanceOf, name: Vec, description: Vec, - // wasm_hash: T::Hash, wasm_code: Vec ) -> Result { @@ -233,17 +237,23 @@ decl_module! { let proposal_id = Self::proposal_count() + 1; >::put(proposal_id); + // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 + let wasm_hash = T::Hashing::hash(&wasm_code); + let new_proposal = RuntimeUpgradeProposal { id: proposal_id, proposer: proposer.clone(), stake, name, description, - wasm_code, + wasm_hash, proposed_at: Self::current_block(), status: Active }; + if !>::exists(wasm_hash) { + >::insert(wasm_hash, wasm_code); + } >::insert(proposal_id, new_proposal); >::mutate(|ids| ids.push(proposal_id)); Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), proposal_id)); @@ -491,18 +501,15 @@ impl Module { /// Approve a proposal. The staked deposit will be returned. fn _approve_proposal(proposal_id: u32) -> Result { let proposal = Self::proposals(proposal_id); - let wasm_code = proposal.wasm_code; + let wasm_code = Self::wasm_code_by_hash(proposal.wasm_hash); // Return staked deposit to proposer: let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); - // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 - let wasm_hash = T::Hashing::hash(&wasm_code); - // Update wasm code of node's runtime: >::set_code(wasm_code)?; - Self::deposit_event(RawEvent::RuntimeUpdated(proposal_id, wasm_hash)); + Self::deposit_event(RawEvent::RuntimeUpdated(proposal_id, proposal.wasm_hash)); Ok(()) } @@ -728,13 +735,14 @@ mod tests { assert_eq!(Proposals::active_proposal_ids().len(), 1); assert_eq!(Proposals::active_proposal_ids()[0], 1); + let wasm_hash = BlakeTwo256::hash(&wasm_code()); let expected_proposal = RuntimeUpgradeProposal { id: 1, proposer: PROPOSER1, stake: min_stake(), name: name(), description: description(), - wasm_code: wasm_code(), + wasm_hash, proposed_at: 1, status: Active }; From f0f184929c5779cfa84f5ddbc08c1a285efd0960 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Fri, 22 Feb 2019 21:19:44 +0200 Subject: [PATCH 156/350] Don't approve a proposal if council is empty and no votes --- runtime/src/governance/proposals.rs | 32 ++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 612b59126e..4112c5e203 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -370,8 +370,8 @@ impl Module { // TODO iterate over not expired proposals and tally - Self::tally()?; - // TODO approve or reject a proposal + Self::tally()?; + // TODO approve or reject a proposal Ok(()) } @@ -383,11 +383,7 @@ impl Module { let quorum: u32 = Self::approval_quorum_seats(); for &proposal_id in Self::active_proposal_ids().iter() { - let proposal = Self::proposals(proposal_id); - let is_expired = Self::is_voting_period_expired(proposal.proposed_at); let votes = Self::votes_by_proposal(proposal_id); - let all_councilors_voted = votes.len() as u32 == councilors; - let mut abstentions: u32 = 0; let mut approvals: u32 = 0; let mut rejections: u32 = 0; @@ -402,13 +398,29 @@ impl Module { } } - let quorum_reached = approvals >= quorum; + let proposal = Self::proposals(proposal_id); + let is_expired = Self::is_voting_period_expired(proposal.proposed_at); + + // We need to check that the council is not empty because otherwise, + // if there is no votes on a proposal it will be counted as if + // all 100% (zero) councilors voted on the proposal and should be approved. + + let non_empty_council = councilors > 0; + let all_councilors_voted = non_empty_council && votes.len() as u32 == councilors; + let all_councilors_slashed = non_empty_council && slashes == councilors; + let quorum_reached = quorum > 0 && approvals >= quorum; + + // Don't approve a proposal right after quorum reached + // if not all councilors casted their votes. + // Instead let other councilors cast their vote + // up until the proposal's expired. + let new_status: Option = - if all_councilors_voted { + if all_councilors_slashed { + Some(Slashed) + } else if all_councilors_voted { if quorum_reached { Some(Approved) - } else if slashes == councilors { - Some(Slashed) } else { Some(Rejected) } From bbe4a13cf2e4290b4bfb2a3b5b021c26b5882d29 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 21 Feb 2019 10:23:28 +0200 Subject: [PATCH 157/350] staging testnet config --- runtime/src/governance/election.rs | 2 +- runtime/src/lib.rs | 6 +- src/chain_spec.rs | 138 +++++++++++++++++++++++++++++ 3 files changed, 142 insertions(+), 4 deletions(-) diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d3b0aa2da1..0b093fac91 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -80,7 +80,7 @@ pub struct TransferableStake { decl_storage! { trait Store for Module as CouncilElection { // Flag for wether to automatically start an election after a council term ends - AutoStart get(auto_start) : bool = true; + AutoStart get(auto_start) config() : bool = true; // Current stage if there is an election running Stage get(stage): Option>; diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 39c98d2922..2f4e859786 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -229,9 +229,9 @@ construct_runtime!( Session: session, Staking: staking::{default, OfflineWorker}, Sudo: sudo, - Proposals: proposals::{Module, Call, Storage, Event}, - CouncilElection: election::{Module, Call, Storage, Event}, - Council: council::{Module, Call, Storage, Event}, + Proposals: proposals::{Module, Call, Storage, Event, Config}, + CouncilElection: election::{Module, Call, Storage, Event, Config}, + Council: council::{Module, Call, Storage, Event, Config}, } ); diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 6b35e14cf6..6586406337 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -2,8 +2,10 @@ use primitives::{Ed25519AuthorityId, ed25519}; use joystream_node_runtime::{ AccountId, GenesisConfig, ConsensusConfig, TimestampConfig, BalancesConfig, SudoConfig, IndicesConfig, SessionConfig, StakingConfig, Permill, Perbill, + CouncilConfig, CouncilElectionConfig, ProposalsConfig, }; use substrate_service; +use hex_literal::{hex, hex_impl}; // Note this is the URL for the telemetry server //const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; @@ -20,8 +22,12 @@ pub enum Alternative { Development, /// Whatever the current runtime is, with simple Alice/Bob auths. LocalTestnet, + /// Staging testnet + StagingTestnet } +const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; + impl Alternative { /// Get an actual chain config from one of the alternatives. pub(crate) fn load(self) -> Result { @@ -64,6 +70,7 @@ impl Alternative { None, None ), + Alternative::StagingTestnet => staging_testnet_config(), }) } @@ -71,11 +78,117 @@ impl Alternative { match s { "dev" => Some(Alternative::Development), "" | "local" => Some(Alternative::LocalTestnet), + "staging" => Some(Alternative::StagingTestnet), _ => None, } } } +/// Staging testnet config. +pub fn staging_testnet_config() -> ChainSpec { + let boot_nodes = vec![ + String::from("/ip4/testnet-boot.joystream.org/tcp/30333/p2p/QmeuMS9ifbSbV3Sd9tEWyaVVDe85mPfcPWcTpp3LEcEQ53") + ]; + ChainSpec::from_genesis( + "Joystream staging testnet", + "joystream_staging_testnet", + staging_testnet_config_genesis, + boot_nodes, + Some(STAGING_TELEMETRY_URL.into()), + None, + None, + None, + ) +} + +fn staging_testnet_config_genesis () -> GenesisConfig { + let initial_authorities = vec![ + hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].into(), + //hex!["80c696c19b597e7cfba9135600a15735f789ae81f251826ecd6799d06164c15b"].into(), + ]; + let endowed_accounts = vec![ + hex!["2102ee83045058ba0f5e18bbc906437776c05771a2fc5915ff21c6ab76f41c31"].into(), + ]; + const MILLICENTS: u128 = 1_000_000_000; + const CENTS: u128 = 1_000 * MILLICENTS; // assume this is worth about a cent. + const DOLLARS: u128 = 100 * CENTS; + + const SECS_PER_BLOCK: u64 = 6; + const MINUTES: u64 = 60 / SECS_PER_BLOCK; + const HOURS: u64 = MINUTES * 60; + const DAYS: u64 = HOURS * 24; + + GenesisConfig { + consensus: Some(ConsensusConfig { + code: include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), + authorities: initial_authorities.clone(), + }), + system: None, + timestamp: Some(TimestampConfig { + period: SECS_PER_BLOCK / 2, // due to the nature of aura the slots are 2*period + }), + indices: Some(IndicesConfig { + ids: endowed_accounts.clone(), + }), + balances: Some(BalancesConfig { + balances: endowed_accounts.iter().map(|&k| (k, 10_000_000 * DOLLARS)).collect(), + transaction_base_fee: 1 * CENTS, + transaction_byte_fee: 10 * MILLICENTS, + existential_deposit: 1 * MILLICENTS, + transfer_fee: 1 * MILLICENTS, + creation_fee: 1 * MILLICENTS, + vesting: vec![], + }), + sudo: Some(SudoConfig { + key: endowed_accounts[0].clone(), + }), + session: Some(SessionConfig { + validators: initial_authorities.iter().cloned().map(Into::into).collect(), + session_length: 5 * MINUTES, + }), + staking: Some(StakingConfig { + current_era: 0, + intentions: initial_authorities.iter().cloned().map(Into::into).collect(), + offline_slash: Perbill::from_millionths(1000), + session_reward: Perbill::from_billionths(2_065), + current_offline_slash: 0, + current_session_reward: 0, + validator_count: 10, + sessions_per_era: 12, + bonding_duration: 60 * MINUTES, + offline_slash_grace: 4, + minimum_validator_count: 1, + invulnerables: initial_authorities.iter().cloned().map(Into::into).collect(), + }), + council: Some(CouncilConfig { + active_council: vec![], + term_ends_at: 1, + }), + election: Some(CouncilElectionConfig { + auto_start: false, + announcing_period: 3 * DAYS, + voting_period: 1 * DAYS, + revealing_period: 1 * DAYS, + council_size: 6, + candidacy_limit: 25, + min_council_stake: 1000, + new_term_duration: 14 * DAYS, + min_voting_stake: 10, + }), + proposals: Some(ProposalsConfig { + approval_quorum: 60, + minimum_stake: 100, + cancellation_fee: 5, + rejection_fee: 10, + voting_period: 2 * DAYS, + name_max_len: 32, + description_max_len: 10_000, + wasm_code_max_len: 2_000_000, + }), + + } +} + fn testnet_genesis(initial_authorities: Vec, endowed_accounts: Vec, root_key: AccountId) -> GenesisConfig { GenesisConfig { consensus: Some(ConsensusConfig { @@ -119,5 +232,30 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account offline_slash_grace: 0, invulnerables: initial_authorities.iter().cloned().map(Into::into).collect(), }), + council: Some(CouncilConfig { + active_council: vec![], + term_ends_at: 1, + }), + election: Some(CouncilElectionConfig { + auto_start: false, + announcing_period: 50, + voting_period: 50, + revealing_period: 50, + council_size: 2, + candidacy_limit: 25, + min_council_stake: 100, + new_term_duration: 1000, + min_voting_stake: 10, + }), + proposals: Some(ProposalsConfig { + approval_quorum: 60, + minimum_stake: 100, + cancellation_fee: 5, + rejection_fee: 10, + voting_period: 100, + name_max_len: 100, + description_max_len: 10_000, + wasm_code_max_len: 2_000_000, + }), } } From 8c707d0a51144f34b95a3619a1f9b49db548b084 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 21 Feb 2019 10:40:06 +0200 Subject: [PATCH 158/350] update boot-nodes --- src/chain_spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 6586406337..2990d5b836 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -87,7 +87,7 @@ impl Alternative { /// Staging testnet config. pub fn staging_testnet_config() -> ChainSpec { let boot_nodes = vec![ - String::from("/ip4/testnet-boot.joystream.org/tcp/30333/p2p/QmeuMS9ifbSbV3Sd9tEWyaVVDe85mPfcPWcTpp3LEcEQ53") + String::from("/ip4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi") ]; ChainSpec::from_genesis( "Joystream staging testnet", From a3088e848dba395d92358bccd1311c97a24dc836 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 21 Feb 2019 11:36:06 +0200 Subject: [PATCH 159/350] update endowed account --- src/chain_spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 2990d5b836..c7032a578f 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -107,7 +107,7 @@ fn staging_testnet_config_genesis () -> GenesisConfig { //hex!["80c696c19b597e7cfba9135600a15735f789ae81f251826ecd6799d06164c15b"].into(), ]; let endowed_accounts = vec![ - hex!["2102ee83045058ba0f5e18bbc906437776c05771a2fc5915ff21c6ab76f41c31"].into(), + hex!["6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f"].into(), ]; const MILLICENTS: u128 = 1_000_000_000; const CENTS: u128 = 1_000 * MILLICENTS; // assume this is worth about a cent. From 2e47d5a51373a95ac9f1e35728cfc57771563765 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 21 Feb 2019 13:57:26 +0200 Subject: [PATCH 160/350] tweaking use smaller units, 0 tx fees and existential deposit fix testnet boot node url cleanup --- src/chain_spec.rs | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index c7032a578f..2b8e1c0092 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -87,7 +87,7 @@ impl Alternative { /// Staging testnet config. pub fn staging_testnet_config() -> ChainSpec { let boot_nodes = vec![ - String::from("/ip4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi") + String::from("/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi") ]; ChainSpec::from_genesis( "Joystream staging testnet", @@ -104,13 +104,12 @@ pub fn staging_testnet_config() -> ChainSpec { fn staging_testnet_config_genesis () -> GenesisConfig { let initial_authorities = vec![ hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].into(), - //hex!["80c696c19b597e7cfba9135600a15735f789ae81f251826ecd6799d06164c15b"].into(), ]; let endowed_accounts = vec![ hex!["6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f"].into(), ]; - const MILLICENTS: u128 = 1_000_000_000; - const CENTS: u128 = 1_000 * MILLICENTS; // assume this is worth about a cent. + + const CENTS: u128 = 1; const DOLLARS: u128 = 100 * CENTS; const SECS_PER_BLOCK: u64 = 6; @@ -132,11 +131,11 @@ fn staging_testnet_config_genesis () -> GenesisConfig { }), balances: Some(BalancesConfig { balances: endowed_accounts.iter().map(|&k| (k, 10_000_000 * DOLLARS)).collect(), - transaction_base_fee: 1 * CENTS, - transaction_byte_fee: 10 * MILLICENTS, - existential_deposit: 1 * MILLICENTS, - transfer_fee: 1 * MILLICENTS, - creation_fee: 1 * MILLICENTS, + transaction_base_fee: 0, + transaction_byte_fee: 0, + existential_deposit: 0, + transfer_fee: 0, + creation_fee: 0, vesting: vec![], }), sudo: Some(SudoConfig { @@ -149,7 +148,7 @@ fn staging_testnet_config_genesis () -> GenesisConfig { staking: Some(StakingConfig { current_era: 0, intentions: initial_authorities.iter().cloned().map(Into::into).collect(), - offline_slash: Perbill::from_millionths(1000), + offline_slash: Perbill::from_billionths(1_000_000), session_reward: Perbill::from_billionths(2_065), current_offline_slash: 0, current_session_reward: 0, @@ -171,15 +170,15 @@ fn staging_testnet_config_genesis () -> GenesisConfig { revealing_period: 1 * DAYS, council_size: 6, candidacy_limit: 25, - min_council_stake: 1000, + min_council_stake: 10 * DOLLARS, new_term_duration: 14 * DAYS, - min_voting_stake: 10, + min_voting_stake: 1 * DOLLARS, }), proposals: Some(ProposalsConfig { approval_quorum: 60, - minimum_stake: 100, - cancellation_fee: 5, - rejection_fee: 10, + minimum_stake: 2 * DOLLARS, + cancellation_fee: 50 * CENTS, + rejection_fee: 1 * DOLLARS, voting_period: 2 * DAYS, name_max_len: 32, description_max_len: 10_000, From 18eda720aa102ebcb5dd6b21e141da57cf759876 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 23 Feb 2019 01:18:44 +0200 Subject: [PATCH 161/350] upgrade node template --- Cargo.toml | 24 +++++++++---------- runtime/Cargo.toml | 43 ++++++++++++++++++++--------------- runtime/src/governance/mod.rs | 8 +++---- runtime/src/lib.rs | 8 ++++++- src/chain_spec.rs | 18 ++++++++------- src/cli.rs | 1 + src/main.rs | 13 +---------- src/service.rs | 8 +++---- 8 files changed, 64 insertions(+), 59 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6477e9237b..75f718e652 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,12 +13,12 @@ trie-root = '0.11.0' [dependencies.basic-authorship] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-basic-authorship' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.consensus] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-aura' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.ctrlc] features = ['termination'] @@ -27,11 +27,11 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-inherents' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.node-executor] git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.joystream-node-runtime] path = 'runtime' @@ -39,36 +39,36 @@ path = 'runtime' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.sr-io] git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.substrate-cli] git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.substrate-client] git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.substrate-executor] git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.substrate-network] git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.substrate-service] git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.transaction-pool] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-transaction-pool' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [package] authors = ['Joystream'] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index cdb2853622..a88bef7789 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -15,6 +15,7 @@ std = [ 'runtime-io/std', 'srml-support/std', 'balances/std', + 'fees/std', 'executive/std', 'aura/std', 'indices/std', @@ -34,37 +35,43 @@ std = [ default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-aura' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.balances] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-balances' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.consensus] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-consensus' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.consensus-aura] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-aura-primitives' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.executive] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-executive' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' + +[dependencies.fees] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-fees' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.indices] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-indices' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.parity-codec] default-features = false @@ -78,25 +85,25 @@ version = '3.0' default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.rstd] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'sr-std' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.runtime-io] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'sr-io' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.runtime-primitives] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'sr-primitives' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.safe-mix] default-features = false @@ -113,45 +120,45 @@ version = '1.0' [dependencies.srml-support] default_features = false git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.substrate-client] default_features = false git = 'https://github.com/paritytech/substrate.git' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.sudo] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-sudo' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.system] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-system' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.timestamp] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-timestamp' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.version] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'sr-version' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.staking] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-staking' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' [dependencies.session] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-session' -rev = 'e8b558c05ba13a0ee63c7c90e8e4156be38237fd' +rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs index 1ba7d117ae..544fa97a15 100644 --- a/runtime/src/governance/mod.rs +++ b/runtime/src/governance/mod.rs @@ -1,6 +1,6 @@ #![cfg_attr(not(feature = "std"), no_std)] -use srml_support::traits::{Currency}; +use srml_support::traits::{Currency, ArithmeticType}; use system; pub mod election; @@ -10,10 +10,10 @@ pub mod proposals; mod stake; mod sealed_vote; -pub trait GovernanceCurrency: system::Trait { - type Currency: Currency<::AccountId>; +pub trait GovernanceCurrency: system::Trait + Sized { + type Currency: ArithmeticType + Currency<::AccountId, Balance=BalanceOf>; } -pub type BalanceOf = <::Currency as Currency<::AccountId>>::Balance; +pub type BalanceOf = <::Currency as ArithmeticType>::Type; mod mock; \ No newline at end of file diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 2f4e859786..9ee53424a2 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -184,6 +184,11 @@ impl balances::Trait for Runtime { type Event = Event; } +impl fees::Trait for Runtime { + type TransferAsset = Balances; + type Event = Event; +} + impl sudo::Trait for Runtime { /// The uniquitous event type. type Event = Event; @@ -228,6 +233,7 @@ construct_runtime!( Balances: balances, Session: session, Staking: staking::{default, OfflineWorker}, + Fees: fees::{Module, Storage, Config, Event}, Sudo: sudo, Proposals: proposals::{Module, Call, Storage, Event, Config}, CouncilElection: election::{Module, Call, Storage, Event, Config}, @@ -250,7 +256,7 @@ pub type UncheckedExtrinsic = generic::UncheckedMortalCompactExtrinsic; /// Executive: handles dispatch to the various modules. -pub type Executive = executive::Executive; +pub type Executive = executive::Executive; // Implement our runtime API endpoints. This is just a bunch of proxying. impl_runtime_apis! { diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 2b8e1c0092..67e27f822c 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -2,13 +2,13 @@ use primitives::{Ed25519AuthorityId, ed25519}; use joystream_node_runtime::{ AccountId, GenesisConfig, ConsensusConfig, TimestampConfig, BalancesConfig, SudoConfig, IndicesConfig, SessionConfig, StakingConfig, Permill, Perbill, - CouncilConfig, CouncilElectionConfig, ProposalsConfig, + CouncilConfig, CouncilElectionConfig, ProposalsConfig, FeesConfig, }; use substrate_service; use hex_literal::{hex, hex_impl}; // Note this is the URL for the telemetry server -//const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; +const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; /// Specialised `ChainSpec`. This is a specialisation of the general Substrate ChainSpec type. pub type ChainSpec = substrate_service::ChainSpec; @@ -26,8 +26,6 @@ pub enum Alternative { StagingTestnet } -const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; - impl Alternative { /// Get an actual chain config from one of the alternatives. pub(crate) fn load(self) -> Result { @@ -131,13 +129,15 @@ fn staging_testnet_config_genesis () -> GenesisConfig { }), balances: Some(BalancesConfig { balances: endowed_accounts.iter().map(|&k| (k, 10_000_000 * DOLLARS)).collect(), - transaction_base_fee: 0, - transaction_byte_fee: 0, existential_deposit: 0, transfer_fee: 0, creation_fee: 0, vesting: vec![], }), + fees: Some(FeesConfig { + transaction_base_fee: 0, + transaction_byte_fee: 0, + }), sudo: Some(SudoConfig { key: endowed_accounts[0].clone(), }), @@ -202,14 +202,16 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account ids: endowed_accounts.clone(), }), balances: Some(BalancesConfig { - transaction_base_fee: 1, - transaction_byte_fee: 0, existential_deposit: 500, transfer_fee: 0, creation_fee: 0, balances: endowed_accounts.iter().map(|&k|(k, (1 << 60))).collect(), vesting: vec![], }), + fees: Some(FeesConfig { + transaction_base_fee: 0, + transaction_byte_fee: 0, + }), sudo: Some(SudoConfig { key: root_key, }), diff --git a/src/cli.rs b/src/cli.rs index 41215a927e..1b8a7c0a48 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -7,6 +7,7 @@ use substrate_cli::{informant, parse_and_execute, NoCustom}; use substrate_service::{ServiceFactory, Roles as ServiceRoles}; use crate::chain_spec; use std::ops::Deref; +use log::info; /// Parse command line arguments into service configuration. pub fn run(args: I, exit: E, version: VersionInfo) -> error::Result<()> where diff --git a/src/main.rs b/src/main.rs index caf481719a..36909bb958 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,17 +3,6 @@ #![warn(missing_docs)] #![warn(unused_extern_crates)] -#[macro_use] -extern crate error_chain; -#[macro_use] -extern crate log; -#[macro_use] -extern crate substrate_network as network; -#[macro_use] -extern crate substrate_executor; -#[macro_use] -extern crate substrate_service; - mod chain_spec; mod service; mod cli; @@ -33,4 +22,4 @@ fn run() -> cli::error::Result<()> { cli::run(::std::env::args(), cli::Exit, version) } -quick_main!(run); +error_chain::quick_main!(run); diff --git a/src/service.rs b/src/service.rs index c48d568e15..f4553f5e1c 100644 --- a/src/service.rs +++ b/src/service.rs @@ -4,6 +4,7 @@ use std::sync::Arc; use transaction_pool::{self, txpool::{Pool as TransactionPool}}; +use log::info; use joystream_node_runtime::{self, GenesisConfig, opaque::Block, RuntimeApi}; use substrate_service::{ FactoryFullConfiguration, LightComponents, FullComponents, FullBackend, @@ -16,6 +17,9 @@ use consensus::{import_queue, start_aura, AuraImportQueue, SlotDuration, Nothing use substrate_client as client; use primitives::ed25519::Pair; use inherents::InherentDataProviders; +use network::construct_simple_protocol; +use substrate_executor::native_executor_instance; +use substrate_service::construct_service_factory; pub use substrate_executor::NativeExecutor; // Our native executor instance. @@ -80,8 +84,6 @@ construct_service_factory! { { |config, executor| >::new(config, executor) }, FullImportQueue = AuraImportQueue< Self::Block, - FullClient, - NothingExtra, > { |config: &mut FactoryFullConfiguration , client: Arc>| import_queue( @@ -95,8 +97,6 @@ construct_service_factory! { }, LightImportQueue = AuraImportQueue< Self::Block, - LightClient, - NothingExtra, > { |config: &mut FactoryFullConfiguration, client: Arc>| import_queue( From 7730391a617d2b8c097677507073c9cb8b7a7e56 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 23 Feb 2019 01:31:09 +0200 Subject: [PATCH 162/350] fix package name --- src/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service.rs b/src/service.rs index f4553f5e1c..d0f505a58e 100644 --- a/src/service.rs +++ b/src/service.rs @@ -17,7 +17,7 @@ use consensus::{import_queue, start_aura, AuraImportQueue, SlotDuration, Nothing use substrate_client as client; use primitives::ed25519::Pair; use inherents::InherentDataProviders; -use network::construct_simple_protocol; +use substrate_network::construct_simple_protocol; use substrate_executor::native_executor_instance; use substrate_service::construct_service_factory; From c5626dbd30908539fd270c7174285b24f6098e0f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 23 Feb 2019 01:31:24 +0200 Subject: [PATCH 163/350] change chain id for new staging network --- src/chain_spec.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 67e27f822c..99f039dcce 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -88,8 +88,8 @@ pub fn staging_testnet_config() -> ChainSpec { String::from("/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi") ]; ChainSpec::from_genesis( - "Joystream staging testnet", - "joystream_staging_testnet", + "Joystream Testnet", + "joystream_testnet_2", staging_testnet_config_genesis, boot_nodes, Some(STAGING_TELEMETRY_URL.into()), From 70da5668273dc548f56b1c4903e20740ad16734e Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 23 Feb 2019 01:34:59 +0200 Subject: [PATCH 164/350] bump to version 0.10.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 75f718e652..521da0010e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '0.9.1' +version = '0.10.0' [[bin]] name = 'joystream-node' From fbcc07b17d8fb978f4990d61c7367cf8376a7e99 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 23 Feb 2019 02:11:17 +0200 Subject: [PATCH 165/350] fix renamed minimum_stake --- src/chain_spec.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 99f039dcce..f160eb2ad4 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -176,7 +176,7 @@ fn staging_testnet_config_genesis () -> GenesisConfig { }), proposals: Some(ProposalsConfig { approval_quorum: 60, - minimum_stake: 2 * DOLLARS, + min_stake: 2 * DOLLARS, cancellation_fee: 50 * CENTS, rejection_fee: 1 * DOLLARS, voting_period: 2 * DAYS, @@ -250,7 +250,7 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account }), proposals: Some(ProposalsConfig { approval_quorum: 60, - minimum_stake: 100, + min_stake: 100, cancellation_fee: 5, rejection_fee: 10, voting_period: 100, From 56073ef74e187a32a6a2c6f6df043f98df86a757 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 23 Feb 2019 18:08:11 +0200 Subject: [PATCH 166/350] embed chainspec preparing for sparta --- Cargo.lock | 1637 ++++++++++++++++++++++----------------------- res/sparta.json | 98 +++ src/chain_spec.rs | 13 +- 3 files changed, 926 insertions(+), 822 deletions(-) create mode 100644 res/sparta.json diff --git a/Cargo.lock b/Cargo.lock index 31f0cfd818..ce42d2cc09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,7 +3,7 @@ name = "MacTypes-sys" version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "0.6.9" +version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -112,7 +112,7 @@ name = "atty" version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -124,13 +124,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "backtrace" -version = "0.3.13" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -141,7 +141,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -163,6 +163,14 @@ dependencies = [ "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "base64" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "bigint" version = "4.4.1" @@ -192,11 +200,6 @@ dependencies = [ "which 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "bitflags" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "bitflags" version = "1.0.4" @@ -231,15 +234,6 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "block-buffer" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "block-buffer" version = "0.7.0" @@ -282,11 +276,6 @@ name = "byte-tools" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "byteorder" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "byteorder" version = "0.5.3" @@ -343,7 +332,7 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -388,7 +377,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -396,7 +385,7 @@ name = "core-foundation-sys" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -420,7 +409,7 @@ version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -504,15 +493,6 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "crypto-mac" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "crypto-mac" version = "0.7.0" @@ -551,20 +531,7 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "curve25519-dalek" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -587,14 +554,6 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "digest" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "digest" version = "0.8.0" @@ -619,20 +578,19 @@ dependencies = [ [[package]] name = "ed25519-dalek" -version = "0.8.1" +version = "1.0.0-pre.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "either" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -665,7 +623,7 @@ name = "error-chain" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -682,7 +640,7 @@ name = "failure" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -707,7 +665,7 @@ name = "fdlimit" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -717,7 +675,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -741,13 +699,22 @@ name = "foreign-types-shared" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "fork-tree" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +dependencies = [ + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "fs-swap" version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -799,14 +766,6 @@ dependencies = [ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "generic-array" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "generic-array" version = "0.12.0" @@ -825,7 +784,7 @@ name = "globset" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -841,7 +800,7 @@ dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -885,7 +844,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hex-literal" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hex-literal-impl 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -912,11 +871,11 @@ dependencies = [ [[package]] name = "hmac" -version = "0.6.3" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -931,7 +890,7 @@ dependencies = [ [[package]] name = "http" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -979,7 +938,7 @@ dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1020,7 +979,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1043,7 +1002,7 @@ name = "iovec" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1054,30 +1013,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "joystream-node" -version = "0.9.1" +version = "0.10.0" dependencies = [ "ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "joystream-node-runtime 0.9.1", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1090,26 +1049,27 @@ dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] @@ -1119,8 +1079,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1155,7 +1115,7 @@ dependencies = [ "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1188,6 +1148,11 @@ dependencies = [ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "keccak" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "kernel32-sys" version = "0.2.2" @@ -1239,7 +1204,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.48" +version = "0.2.49" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1253,30 +1218,33 @@ dependencies = [ [[package]] name = "libp2p" -version = "0.3.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core-derive 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-dns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-floodsub 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-kad 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mdns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mplex 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-noise 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-plaintext 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ratelimit 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-secio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-tcp 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-uds 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-websocket 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-yamux 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-dns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-floodsub 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-kad 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mdns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mplex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-noise 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-plaintext 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ratelimit 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-secio 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-tcp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-uds 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-websocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-yamux 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1285,22 +1253,24 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.3.4" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "multistream-select 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1310,7 +1280,7 @@ dependencies = [ [[package]] name = "libp2p-core-derive" -version = "0.3.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1319,20 +1289,20 @@ dependencies = [ [[package]] name = "libp2p-dns" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-floodsub" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1340,10 +1310,10 @@ dependencies = [ "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1351,18 +1321,18 @@ dependencies = [ [[package]] name = "libp2p-identify" -version = "0.3.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1372,7 +1342,7 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.3.3" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1381,16 +1351,16 @@ dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1400,18 +1370,18 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1421,13 +1391,13 @@ dependencies = [ [[package]] name = "libp2p-mplex" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1437,13 +1407,13 @@ dependencies = [ [[package]] name = "libp2p-noise" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "curve25519-dalek 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "snow 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1452,15 +1422,15 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1471,22 +1441,22 @@ dependencies = [ [[package]] name = "libp2p-plaintext" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ratelimit" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1494,25 +1464,25 @@ dependencies = [ [[package]] name = "libp2p-secio" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1521,13 +1491,13 @@ dependencies = [ [[package]] name = "libp2p-tcp" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1535,41 +1505,41 @@ dependencies = [ [[package]] name = "libp2p-uds" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-websocket" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "websocket 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)", + "websocket 0.22.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-yamux" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "yamux 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "yamux 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1580,7 +1550,7 @@ dependencies = [ "bindgen 0.43.2 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "make-cmd 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1607,6 +1577,14 @@ name = "linked-hash-map" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "linked_hash_set" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "lock_api" version = "0.1.5" @@ -1674,6 +1652,17 @@ name = "memory_units" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "merlin" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "mime" version = "0.2.6" @@ -1692,7 +1681,7 @@ dependencies = [ "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1717,7 +1706,7 @@ version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1740,7 +1729,7 @@ dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1760,15 +1749,15 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.18 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.41 (registry+https://github.com/rust-lang/crates.io-index)", "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1777,7 +1766,7 @@ version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1789,78 +1778,78 @@ dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "node-executor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "node-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "node-runtime" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] @@ -1900,7 +1889,7 @@ name = "num_cpus" version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1924,15 +1913,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl" -version = "0.10.16" +version = "0.10.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.41 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1942,11 +1931,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl-sys" -version = "0.9.40" +version = "0.9.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1978,7 +1967,7 @@ version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2004,15 +1993,15 @@ dependencies = [ [[package]] name = "parity-multiaddr" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2086,9 +2075,9 @@ name = "parking_lot_core" version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2097,10 +2086,10 @@ name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2109,10 +2098,10 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2162,6 +2151,14 @@ dependencies = [ "uint 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "proc-macro-crate" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "proc-macro-hack" version = "0.4.1" @@ -2247,7 +2244,7 @@ name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2257,7 +2254,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2270,7 +2267,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2281,14 +2278,14 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2336,7 +2333,7 @@ name = "rand_jitter" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2348,7 +2345,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2356,11 +2353,11 @@ dependencies = [ [[package]] name = "rand_pcg" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2377,7 +2374,7 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2388,7 +2385,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2418,7 +2415,7 @@ name = "regex" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2448,7 +2445,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2459,7 +2456,7 @@ name = "rocksdb" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "librocksdb-sys 5.14.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2469,7 +2466,7 @@ version = "0.2.36" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2536,9 +2533,20 @@ dependencies = [ ] [[package]] -name = "scoped-tls" -version = "0.1.2" +name = "schnorrkel" +version = "0.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "merlin 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "scopeguard" @@ -2561,7 +2569,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2572,7 +2580,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2590,12 +2598,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.87" +version = "1.0.88" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde_derive" -version = "1.0.87" +version = "1.0.88" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2610,7 +2618,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2632,23 +2640,24 @@ dependencies = [ [[package]] name = "sha2" -version = "0.7.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "sha2" -version = "0.8.0" +name = "sha3" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2687,7 +2696,7 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2704,11 +2713,8 @@ dependencies = [ [[package]] name = "smallvec" -version = "0.6.8" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "snow" @@ -2722,7 +2728,7 @@ dependencies = [ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2734,9 +2740,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2745,53 +2752,53 @@ dependencies = [ [[package]] name = "sr-io" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "environmental 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "sr-sandbox" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-std" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2799,307 +2806,311 @@ dependencies = [ [[package]] name = "sr-version" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-balances" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-consensus" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-contract" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", "pwasm-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-council" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-democracy" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-executive" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", +] + +[[package]] +name = "srml-fees" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +dependencies = [ + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-grandpa" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-indices" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-metadata" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-session" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-staking" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-sudo" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-support" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-support-procedural" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ + "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3109,68 +3120,67 @@ dependencies = [ [[package]] name = "srml-system" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-timestamp" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-treasury" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "srml-upgrade-key" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] @@ -3207,8 +3217,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3220,8 +3230,8 @@ dependencies = [ "base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3273,23 +3283,23 @@ dependencies = [ [[package]] name = "substrate-basic-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-cli" version = "0.3.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3304,14 +3314,15 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "sysinfo 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3320,37 +3331,37 @@ dependencies = [ [[package]] name = "substrate-client" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-client-db" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -3360,89 +3371,89 @@ dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-consensus-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-aura-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-consensus-aura-slots" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-common" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3451,15 +3462,15 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3467,64 +3478,66 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-inherents" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-keyring" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-keystore" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3532,32 +3545,32 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network-libp2p" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3568,32 +3581,35 @@ dependencies = [ [[package]] name = "substrate-panic-handler" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "schnorrkel 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3602,7 +3618,7 @@ dependencies = [ [[package]] name = "substrate-rpc" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3611,46 +3627,47 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc-servers" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-serializer" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-service" version = "0.3.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3659,22 +3676,22 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3682,29 +3699,29 @@ dependencies = [ [[package]] name = "substrate-state-db" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-state-machine" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3712,7 +3729,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "0.3.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3727,37 +3744,37 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-transaction-pool" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", - "substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)", + "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", ] [[package]] name = "substrate-trie" version = "0.4.0" -source = "git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd#e8b558c05ba13a0ee63c7c90e8e4156be38237fd" +source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3803,7 +3820,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3820,11 +3837,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "tempfile" -version = "3.0.6" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3844,7 +3861,7 @@ name = "termion" version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3870,7 +3887,7 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3909,7 +3926,7 @@ dependencies = [ "tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3927,24 +3944,6 @@ dependencies = [ "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "tokio-core" -version = "0.1.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", - "scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "tokio-current-thread" version = "0.1.4" @@ -4013,7 +4012,7 @@ dependencies = [ [[package]] name = "tokio-sync" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4092,7 +4091,7 @@ dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4101,6 +4100,14 @@ dependencies = [ "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "toml" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "traitobject" version = "0.1.0" @@ -4203,7 +4210,7 @@ name = "unicode-normalization" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4221,14 +4228,6 @@ name = "unicode-xid" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "unreachable" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "unsigned-varint" version = "0.2.2" @@ -4310,20 +4309,19 @@ dependencies = [ [[package]] name = "websocket" -version = "0.21.1" +version = "0.22.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4334,7 +4332,7 @@ name = "which" version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4394,7 +4392,7 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.18 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4417,7 +4415,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "yamux" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4436,7 +4434,7 @@ dependencies = [ "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" -"checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e" +"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" "checksum aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f10b352bc3fc08ae24dc5d2d3ddcac153678533986122dc283d747b12071000" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" @@ -4446,26 +4444,24 @@ dependencies = [ "checksum asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7f92edafad155aff997fa5b727c6429b91e996b5a5d62a2b0adbae1306b5fe" "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" "checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" -"checksum backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b5b493b66e03090ebc4343eb02f94ff944e0cbc9ac6571491d170ba026741eb5" +"checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4" "checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" "checksum base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d55aa264e822dbafa12db4d54767aff17c6ba55ea2d8559b3e17392c7d000e5d" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" +"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" "checksum bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ebecac13b3c745150d7b6c3ea7572d372f09d627c2077e893bf26c5c7f70d282" "checksum bindgen 0.43.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d52d263eacd15d26cbcf215d254b410bd58212aaa2d3c453a04b2d3b3adcf41" -"checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" "checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" "checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" -"checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" "checksum block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49665c62e0e700857531fa5d3763e91b539ff1abeebd56808d378b495870d60d" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" "checksum block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d75255892aeb580d3c566f213a2b6fdc1c66667839f45719ee1d30ebf2aea591" "checksum bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0de79cfb98e7aa9988188784d8664b4b5dad6eaaa0863b91d9a4ed871d4f7a42" "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" -"checksum byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96c8b41881888cc08af32d47ac4edd52bc7fa27fef774be47a92443756451304" "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" "checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" "checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa" @@ -4491,21 +4487,18 @@ dependencies = [ "checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" "checksum crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c240f247c278fa08a6d4820a6a222bfc6e0d999e51ba67be94f44c905b2161f2" "checksum crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "779015233ac67d65098614aec748ac1c756ab6677fa2e14cf8b37c08dfed1198" -"checksum crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7afa06d05a046c7a47c3a849907ec303504608c927f4e85f7bfff22b7180d971" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" "checksum ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "044f882973b245404e90c90e7e42e8ee8d7a64edfd7adf83d684fb97e8e2c1b6" "checksum ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "630391922b1b893692c6334369ff528dcc3a9d8061ccf4c803aa8f83cb13db5e" "checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" -"checksum curve25519-dalek 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3eacf6ff1b911e3170a8c400b402e10c86dc3cb166bd69034ebbc2b785fea4c2" -"checksum curve25519-dalek 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8c5d3c9657f9fdf86485861a57c2f0b275b8db7ca0ae77ff2469b9b83f6076e8" +"checksum curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e1f8a6fc0376eb52dc18af94915cc04dfdf8353746c0e8c550ae683a0815e5c1" "checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97" "checksum digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e5b29bf156f3f4b3c4f610a25ff69370616ae6e0657d416de22645483e72af0a" -"checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" "checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c" "checksum discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" -"checksum ed25519-dalek 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cd66d8a16ef71c23cf5eeb2140d8d3cd293457c6c7fd6804b593397a933fcf1e" -"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" +"checksum ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81956bcf7ef761fb4e1d88de3fa181358a0d26cbcb9755b587a08f9119824b86" +"checksum either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c67353c641dc847124ea1902d69bd753dee9bb3beff9aa3662ecf86c971d1fac" "checksum elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "88d4851b005ef16de812ea9acdb7bece2f0a40dd86c07b85631d7dafa54537bb" "checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e" "checksum environmental 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db746025e3ea695bfa0ae744dbacd5fcfc8db51b9760cf8bd0ab69708bb93c49" @@ -4519,6 +4512,7 @@ dependencies = [ "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" +"checksum fork-tree 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -4528,7 +4522,6 @@ dependencies = [ "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592" "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" -"checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" "checksum h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ddb2b25a33e231484694267af28fec74ac63b5ccf51ee2065a5e313b834d836e" @@ -4537,12 +4530,12 @@ dependencies = [ "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" -"checksum hex-literal 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae0e5c30fb65e661a0e39860e37100dfbe4d39aff865e9357a6a4ed0b5bbf303" +"checksum hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "27455ce8b4a6666c87220e4b59c9a83995476bdadc10197905e61dbe906e36fa" "checksum hex-literal-impl 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1d340b6514f232f6db1bd16db65302a5278a04fef9ce867cb932e7e5fa21130a" "checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" -"checksum hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "733e1b3ac906631ca01ebb577e9bb0f5e37a454032b9036b5eaea4013ed6f99a" +"checksum hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f127a908633569f208325f86f71255d3363c79721d7f9fe31cd5569908819771" "checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" -"checksum http 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "1a10e5b573b9a0146545010f50772b9e8b1dd0a256564cc4307694c68832a2f5" +"checksum http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fe67e3678f2827030e89cc4b9e7ecd16d52f132c0b940ab5005f88e821500f6a" "checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" "checksum hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "df0caae6b71d266b91b4a83111a61d2b94ed2e2bea024c532b933dcff867e58c" @@ -4561,36 +4554,38 @@ dependencies = [ "checksum jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37fce55133ee264d0ab42bd862efcd45ae1d062cda599f4cc12ccc4be3195f2a" "checksum jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9527f01ef25f251d64082cbefc0c6d6f367349afe6848ef908a674e06b2bdd3" "checksum jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3889012aa638a2f18eb1a879f46fc8b34e7e1423cbff3247cd1531de0d51084b" +"checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" "checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "e962c7641008ac010fa60a7dfdc1712449f29c44ef2d4702394aea943ee75047" +"checksum libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)" = "413f3dfc802c5dc91dc570b05125b6cda9855edfaa9825c9849807876376e70e" "checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" -"checksum libp2p 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1cd53656209acc649a3aa4d9ce3580dd75d016317126fbdc6f8a8956f15f74de" -"checksum libp2p-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfdf7ab20e901f643cb0913e8e8feffd8439d3ee83d6cfea607f43fa3d14f6d" -"checksum libp2p-core-derive 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "21d637c8aa4d8540d160d747755ac5bd75073de70bd3c0c238d8b1685a66a6be" -"checksum libp2p-dns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a822c32da15ab0c4451792a4b000c37fbf8e3bc5ac471632f0b1f13e8e555524" -"checksum libp2p-floodsub 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4380fbc42ec03251c9e9a4656744e8e88bbe59cbf4e084fa66370ed0b868d085" -"checksum libp2p-identify 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "48923a9b3792aaf9af793a689c78bd0f42e70cc6cf86cc00d678d8f39ea720b6" -"checksum libp2p-kad 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e93be405af87e5911549ee4c5ffc3ef926bb88c5c416f29f3122fc9cd8545d29" -"checksum libp2p-mdns 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4388af57ce8144eb0f6719926139df4f728042931eee5a32daf783a2fc9e05" -"checksum libp2p-mplex 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "58e4dcf1b8ee62d872ff38134969b0a2d63d014c200748eead158c58512a0c1b" -"checksum libp2p-noise 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9beca4939eb183708b8f172170044d977f1264394998e183efbf4972e09c163f" -"checksum libp2p-ping 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60d3acc575adbf6723b0965eca131e2525bed2c85ec88ddc4bff0462dbc0c2c3" -"checksum libp2p-plaintext 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b7cae333f78b782907d9940cb8dca37ddfa353fcaa812172654969fa65ef280c" -"checksum libp2p-ratelimit 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e298aa8036653ab9d4c37376066cb2fc69f63115522a9a3d402fcdc1654612ea" -"checksum libp2p-secio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3495935a389a6f4b26e71f9d6eac3fc33a9481f5f5d79ad886d5bc7efe0195c3" -"checksum libp2p-tcp 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ae301dcdd52087d40a106971575144c4f6220b37e0d1d98474085445327e2708" -"checksum libp2p-uds 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3b5524df7a63d97a8bbe2064d6bc85a84594ad71a8fad4b82ae958fbe37770ce" -"checksum libp2p-websocket 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e80602e23cf58b92d47142a32560c19417f8e9113017eb105f5e580f3bbeb8bc" -"checksum libp2p-yamux 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de9a2ed873051c7a85ec7dece746d425564c366b87752e83056c33d8ae758dcf" +"checksum libp2p 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a018a1334df0db75852ebbb227f0235a998fb51446bf33fbd46c967d6ba21d9e" +"checksum libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c8dc95c7fda9de223bc195b637290918e8decb18e63fd3d03005f84b8ce380b" +"checksum libp2p-core-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e9ff3bb639d0be41e1aff9d0d28715e54474e4d15e43aa4865bdec44867d8d3" +"checksum libp2p-dns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "63d310aa56671539a2bce6124cf4326482278b0d0b841c3ba1514e44d8597096" +"checksum libp2p-floodsub 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8256d778f0dc087be409d8cbd081a11bc41ea27ddcd4862814e50e8cfa9c6df0" +"checksum libp2p-identify 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8883b6c80b113925360c2c7e1cb987fc14f5c01efc36db1f04d50cf569486be2" +"checksum libp2p-kad 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0691fcca7648369798c6466c61139d31dbb7e2afad311e44fcc4e220ce1e4d78" +"checksum libp2p-mdns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "63289f296e39752180d8a45e024cc38d1028a6db41deab3943ff2ccb9d1224cd" +"checksum libp2p-mplex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "791e375a6a230568f0d8f56f6236403de8e4bf4bd870c3c5f605fd1778da70b2" +"checksum libp2p-noise 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "70d28b0ca9eb9818d45e037b4a8a0915553c5c1f8d878d8d6170f60451ad37d2" +"checksum libp2p-ping 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "81d40e54b11bfbdb7eb2b19a9c7bfe90af8abae0a2b0b3840b26b50151476f45" +"checksum libp2p-plaintext 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4383404cba7e4483e0b7d78b3ac5e66f8b024233a5095df9da65d5a1e975d692" +"checksum libp2p-ratelimit 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bad4fe925d50cc886608ab3b3a7a962b5064ecc49db8b66fd063a950d469c757" +"checksum libp2p-secio 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f9a7641a314d54ad7797f0445685818edb4d3c2f21690cea900f12ea73501b" +"checksum libp2p-tcp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4625bedbb083d676903a8ede4c5c42f9bf7bd5dee788f3cba29d8e01b785d253" +"checksum libp2p-uds 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac5f5d900e381b02ebea2f0621555a2f25a7735772355291aeb70fd9e0da3692" +"checksum libp2p-websocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96b6dfdd776a248d7494aeaf22f149b4d5f6784146546bc34f7b094c7162e141" +"checksum libp2p-yamux 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d5a6197ae647c963f5a711c6fb00ba07b9a2812df26f6284870221f654fe9313" "checksum librocksdb-sys 5.14.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b9024327233e7fac7982440f73301c00046d438c5b1011e8f4e394226ce19007" "checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" "checksum linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7860ec297f7008ff7a1e3382d7f7e1dcd69efc94751a2284bafc3d013c2aa939" "checksum linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "70fb39025bc7cdd76305867c4eccf2f2dcf6e9a57f5b21a93e1c2d86cd03ec9e" +"checksum linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" @@ -4601,6 +4596,7 @@ dependencies = [ "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" "checksum memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94da53143d45f6bad3753f532e56ad57a6a26c0ca6881794583310c7cb4c885f" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" +"checksum merlin 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "83c2dda19c01176e8e7148f7bdb88bbdf215a8db0641f89fc40e4b81736aeda5" "checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" "checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" @@ -4611,9 +4607,9 @@ dependencies = [ "checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" -"checksum node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" "checksum nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d138afcce92d219ccb6eb53d9b1e8a96ac0d633cfd3c53cd9856d96d1741bb8" "checksum nom 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b30adc557058ce00c9d0d7cb3c6e0b5bc6f36e2e2eabe74b0ba726d194abd588" @@ -4623,16 +4619,16 @@ dependencies = [ "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409" -"checksum openssl 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ec7bd7ca4cce6dbdc77e7c1230682740d307d1218a87fb0349a571272be749f9" +"checksum openssl 0.10.18 (registry+https://github.com/rust-lang/crates.io-index)" = "b90119d71b0a3596588da04bf7c2c42f2978cfa1217a94119d8ec9e963c7729c" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.40 (registry+https://github.com/rust-lang/crates.io-index)" = "1bb974e77de925ef426b6bc82fce15fd45bdcbeb5728bffcfc7cdeeb7ce1c2d6" +"checksum openssl-sys 0.9.41 (registry+https://github.com/rust-lang/crates.io-index)" = "e4c77cdd67d31759b22aa72cfda3c65c12348f9e6c5420946b403c022fd0311a" "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "88f69984317b736dceac3baa86600fc089856f69b44b07231f39b5648b02bcd4" "checksum parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a58ba33211595f92cc2163ac583961d3dc767e656934146636b05256cc9acd7f" "checksum parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b9db194dfbcfe3b398d63d765437a5c7232d59906e203055f0e993f6458ff1" -"checksum parity-multiaddr 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9a8e5d637787fe097ec1bfca2aa3eb687396518003df991c6c7216d86682d5ff" +"checksum parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "61ae6944d4435d41f4d0f12108c5cbb9207cbb14bc8f2b4984c6e930dc9c8e41" "checksum parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e8eab0287ccde7821e337a124dc5a4f1d6e4c25d10cc91e3f9361615dd95076" "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" "checksum parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2fec5048fba72a2e01baeb0d08089db79aead4b57e2443df172fb1840075a233" @@ -4648,6 +4644,7 @@ dependencies = [ "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" "checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" "checksum primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edb92f1ebfc177432c03287b15d48c202e6e2c95993a7af3ba039abb43b1492e" +"checksum proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4c6cf4e5b00300d151dfffae39f529dfa5188f42eeb14201229aa420d6aad10c" "checksum proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2c725b36c99df7af7bf9324e9c999b9e37d92c8f8caf106d82e1d7953218d2d8" "checksum proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e90aa19cd73dedc2d0e1e8407473f073d735fef0ab521438de6da8ee449ab66" "checksum proc-macro-hack-impl 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2b753ad9ed99dd8efeaa7d2fb8453c8f6bc3e54b97966d35f1bc77ca6865254a" @@ -4670,7 +4667,7 @@ dependencies = [ "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" "checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" "checksum rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b7c690732391ae0abafced5015ffb53656abfaec61b342290e5eb56b286a679d" -"checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05" +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" "checksum rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473" "checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356" @@ -4692,56 +4689,57 @@ dependencies = [ "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" "checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56" -"checksum scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28" +"checksum schnorrkel 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fe554f318830b48e5da8ab1ccb1ffd02b79228364dac7766b7cd1ec461ca5116" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaccd3a23619349e0878d9a241f34b1982343cdf67367058cd7d078d326b63e" "checksum security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfab8dda0e7a327c696d893df9ffa19cadc4bd195797997f5223cf5831beaf05" "checksum security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum serde 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "2e20fde37801e83c891a2dc4ebd3b81f0da4d1fb67a9e0a2a3b921e2536a58ee" -"checksum serde_derive 1.0.87 (registry+https://github.com/rust-lang/crates.io-index)" = "633e97856567e518b59ffb2ad7c7a4fd4c5d91d9c7f32dd38a27b2bf7e8114ea" +"checksum serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)" = "9f301d728f2b94c9a7691c90f07b0b4e8a4517181d9461be94c04bddeb4bd850" +"checksum serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)" = "beed18e6f5175aef3ba670e57c60ef3b1b74d250d962a26604bff4c80e970dd4" "checksum serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)" = "27dce848e7467aa0e2fcaf0a413641499c0b745452aaca1194d24dedde9e13c9" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" "checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" -"checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" "checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" +"checksum sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34a5e54083ce2b934bf059fdf38e7330a154177e029ab6c4e18638f2f624053a" "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "checksum slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e1a2eec401952cd7b12a84ea120e2d57281329940c3f93c2bf04f462539508e" "checksum slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e544d16c6b230d84c866662fe55e31aacfca6ae71e6fc49ae9a311cb379bfc2f" "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" "checksum slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "60c04b4726fa04595ccf2c2dad7bcd15474242c4c5e109a8a376e8a2c9b1539a" -"checksum smallvec 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "88aea073965ab29f6edb5493faf96ad662fb18aa9eeb186a3b7057951605ed15" +"checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" "checksum snow 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7251f8920e9043106cfe466c04ed3eb257b8315a7699259c4fd0af6dffb6aef6" "checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" -"checksum sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" @@ -4754,33 +4752,33 @@ dependencies = [ "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" "checksum structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "670ad348dc73012fcf78c71f06f9d942232cdd4c859d4b6975e27836c3efc0c3" "checksum structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ef98172b1a00b0bec738508d3726540edcbd186d50dfd326f2b1febbb3559f04" -"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" -"checksum substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=e8b558c05ba13a0ee63c7c90e8e4156be38237fd)" = "" +"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" "checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9" @@ -4788,7 +4786,7 @@ dependencies = [ "checksum sysinfo 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4da1ccc493b46042d6f5352910a7f18ed8fe81307dd7db3f2e2d8a7db6f6284" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" -"checksum tempfile 3.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "37daa55a7240c4931c84559f03b3cad7d19535840d1c4a0cc4e9b2fb0dcf70ff" +"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" "checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f" "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" @@ -4798,20 +4796,20 @@ dependencies = [ "checksum tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5462b0f968c0457efe38fcd2df7e487096b992419e4f5337b06775a614bbda4b" "checksum tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "e0500b88064f08bebddd0c0bed39e19f5c567a5f30975bee52b0c0d3e2eeb38c" "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" -"checksum tokio-core 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "aeeffbbb94209023feaef3c196a41cbcdafa06b4a6f893f68779bb5e53796f71" "checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6" "checksum tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975" "checksum tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30c6dbf2d1ad1de300b393910e8a3aa272b724a400b6531da03eed99e329fbf0" "checksum tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e9cbbc8a3698b7ab652340f46633364f9eaa928ddaaee79d8b8f356dd79a09d" "checksum tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b53aeb9d3f5ccf2ebb29e19788f96987fa1355f8fe45ea193928eaaaf3ae820f" "checksum tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "afbcdb0f0d2a1e4c440af82d7bbf0bf91a8a8c0575bcd20c05d15be7e9d3a02f" -"checksum tokio-sync 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3742b64166c1ee9121f1921aea5a726098458926a6b732d906ef23b1f3ef6f4f" +"checksum tokio-sync 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c73850a5ad497d73ccfcfc0ffb494a4502d93f35cb475cfeef4fcf2916d26040" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" "checksum tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c3fd86cb15547d02daa2b21aadaf4e37dee3368df38a526178a5afa3c034d2fb" "checksum tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2910970404ba6fa78c5539126a9ae2045d62e3713041e447f695f41405a120c6" "checksum tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" +"checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" "checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" "checksum trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7319e28ca295f27359d944a682f7f65b419158bf1590c92cadc0000258d788" "checksum trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3c6fef2705af3258ec46a7e22286090394a44216201a1cf7d04b78db825e543" @@ -4829,7 +4827,6 @@ dependencies = [ "checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" -"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" "checksum unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2c64cdf40b4a9645534a943668681bcb219faf51874d4b65d2e0abda1b10a2ab" "checksum untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" @@ -4841,7 +4838,7 @@ dependencies = [ "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" "checksum wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "21ef487a11df1ed468cf613c78798c26282da5c30e9d49f824872d4c77b47d1d" -"checksum websocket 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c9faed2bff8af2ea6b9f8b917d3d00b467583f6781fe3def174a9e33c879703" +"checksum websocket 0.22.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d2c67346c042adbd4f5b2a49700e340befc5b772094fec8d36df6b825523d933" "checksum which 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e84a603e7e0b1ce1aa1ee2b109c7be00155ce52df5081590d1ffb93f4f515cb2" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" "checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" @@ -4853,4 +4850,4 @@ dependencies = [ "checksum ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)" = "329d3e6dd450a9c5c73024e1047f0be7e24121a68484eb0b5368977bee3cf8c3" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" "checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" -"checksum yamux 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e25561b512df3c287cf52404cab0b07ea43d095cb96230e9e2cb635db72d75f0" +"checksum yamux 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "56626765982b12c2f4b59529e1d2ce0a7c25499865e6edf8b502dceb51b65fe2" diff --git a/res/sparta.json b/res/sparta.json new file mode 100644 index 0000000000..3cf7d63dfa --- /dev/null +++ b/res/sparta.json @@ -0,0 +1,98 @@ +{ + "name": "Joystream Testnet", + "id": "joystream_testnet_2", + "bootNodes": [ + "/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi" + ], + "telemetryUrl": "wss://telemetry.polkadot.io/submit/", + "protocolId": null, + "consensusEngine": null, + "properties": null, + "genesis": { + "runtime": { + "system": null, + "timestamp": { + "period": 3 + }, + "consensus": { + "authorities": [ + "5DBGuDoTJu8tvqrCJzHiaYUJf89V1AREe3fjYwt8CFFqKuiT" + ], + "code": "0x0061736d01000000018b011660027f7f017f60037f7f7f017f60017f0060027f7f0060037f7f7f0060057f7f7f7f7f017f60047f7f7f7f0060047f7f7e7f017f60047f7f7f7f017f60017e0060017f017f60000060027f7e0060037e7f7f0060017f017e60037f7e7e017f60047f7f7e7e0060037f7e7e0060027f7f017e60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e760c6578745f74776f785f313238000403656e76146578745f6765745f73746f726167655f696e746f000503656e760f6578745f7365745f73746f72616765000603656e76116578745f636c6561725f73746f72616765000303656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000703656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e76126578745f6578697374735f73746f72616765000003656e760e6578745f626c616b65325f323536000403656e76126578745f656432353531395f766572696679000803656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000603656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000203f001ee010b0b0c0a010203030d020e02030303020b020203020304040301060000030403020302020202060300040303030303030303030209090303030300030903020202020202030202020202020202020202020202030f0a0310111011110f11030403040a03030303040004030302030303030a03030302030303030b0203030303030302030402030303060403020202020303030303030302030303030303030303030202000302020302020203020202000005000a02060001060403121212030406001212030403030312121203031212120312020302020304020a02010a0e00000001000101010113131414150405017001575705030100110619037f01418080c0000b7f0041c0cbc2000b7f0041c0cbc2000b07f4020f066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00cb0110436f72655f617574686f72697469657300cc0112436f72655f657865637574655f626c6f636b00cd0115436f72655f696e697469616c6973655f626c6f636b00d201114d657461646174615f6d6574616461746100d3011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d9011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636b00da0120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300db011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300de0118426c6f636b4275696c6465725f72616e646f6d5f7365656400df012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00e00115417572614170695f736c6f745f6475726174696f6e00e201099401010041010b562b2ac001d101c201c601ef01f001bf01f101f30121229f01a101bb01a001531e2054515250323331554e4f4d565758595abd01be01bc015b9d019e019c015cb501b6015db901ba01b8015eb101a601b2015f91018a019b0160e501e301e60161b70190018f018e018d018c018b01af01a301ad01a501b001a401a201ae01ac01ab01aa01a901a801a701e401ee010a83b713ee0105001010000b0a004190bcc2001018000bf60201037f230041306b2202240002400240411010122203450d00200341086a41002900878240370000200341002900ff814037000020034110412010132203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1000200241086a200429030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010012204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031014200241306a24000f0b41b185c00041331015000b411041011016000b412041011016000b0700200010ea010b0b0020002001200210ec010b0700200010eb010b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410136022c20024201370214200241a8cbc2003602102002200241086a3602282002200241286a360220200241106a41b0cbc200102c000b0d0041fb9fc1004122100600000bd51701267f230041900d6b220324002003410036021041a282c0004110200341106a41041002200320003703f00c200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41081002200442003703002003420037030041b282c0004111200310002005200429030037030020032003290300370310200341106a411020014120100202400240411010122204450d00200441086a41002900878240370000200441002900ff814037000020044110412010132205450d0120052000427f7c370010200341086a22044200370300200342003703002005411820031000200341106a41086a2206200429030037030020032003290300370310200341106a411020014120100220051014200442003703002003420037030041ea81c0004115200310002006200429030037030020032003290300370310200341106a4110200241201002200442003703002003420037030041dd81c000410d2003100020062004290300370300200320032903003703100240200341106a41104184a1c100410041001001417f460d00200342003703f00c02400240200341106a4110200341f00c6a41084100100141016a41084d0d0020032903f00c4200510d02200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a20042903003703002003200329030037031041002107427f21000240200341106a41104184a1c100410041001001417f460d00200342003703f00c200341106a4110200341f00c6a41084100100141016a41084d0d0220032903f00c427f7c21000b200341106a410041e00c10f4011a41002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200341f00c6a42002000427f7c2000501b22001011200341106a202722014103704105746a220441186a200341f00c6a41186a290200370000200441106a200341f00c6a41106a290200370000200441086a200341f00c6a41086a290200370000200420032902f00c370000200141016a21274100210541002102024003402001200141036e2206417d6c6a4102470d01200341106a20056a220441df006a2d000022262004411f6a2d000022287120262028722004413f6a2d00007172211c200441de006a2d000022262004411e6a2d000022287120262028722004413e6a2d00007172211b200441dd006a2d000022262004411d6a2d000022287120262028722004413d6a2d00007172211a200441dc006a2d000022262004411c6a2d000022287120262028722004413c6a2d000071722119200441db006a2d000022262004411b6a2d000022287120262028722004413b6a2d000071722118200441da006a2d000022262004411a6a2d000022287120262028722004413a6a2d000071722117200441d9006a2d00002226200441196a2d00002228712026202872200441396a2d000071722116200441d8006a2d00002226200441186a2d00002228712026202872200441386a2d000071722115200441d7006a2d00002226200441176a2d00002228712026202872200441376a2d000071722114200441d6006a2d00002226200441166a2d00002228712026202872200441366a2d000071722113200441d5006a2d00002226200441156a2d00002228712026202872200441356a2d000071722112200441d4006a2d00002226200441146a2d00002228712026202872200441346a2d000071722111200441d3006a2d00002226200441136a2d00002228712026202872200441336a2d000071722110200441d2006a2d00002226200441126a2d00002228712026202872200441326a2d00007172210f200441d1006a2d00002226200441116a2d00002228712026202872200441316a2d00007172210e200441d0006a2d00002226200441106a2d00002228712026202872200441306a2d00007172210d200441cf006a2d000022262004410f6a2d000022287120262028722004412f6a2d00007172210c200441ce006a2d000022262004410e6a2d000022287120262028722004412e6a2d00007172210b200441cd006a2d000022262004410d6a2d000022287120262028722004412d6a2d00007172210a200441cc006a2d000022262004410c6a2d000022287120262028722004412c6a2d000071722109200441cb006a2d000022262004410b6a2d000022287120262028722004412b6a2d000071722108200441ca006a2d000022262004410a6a2d000022287120262028722004412a6a2d000071722107200441c9006a2d00002226200441096a2d00002228712026202872200441296a2d00007172211d200441c8006a2d00002226200441086a2d00002228712026202872200441286a2d00007172211e200441c7006a2d00002226200441076a2d00002228712026202872200441276a2d00007172211f200441c6006a2d00002226200441066a2d00002228712026202872200441266a2d000071722120200441c5006a2d00002226200441056a2d00002228712026202872200441256a2d000071722121200441c4006a2d00002226200441046a2d00002228712026202872200441246a2d000071722122200441c3006a2d00002226200441036a2d00002228712026202872200441236a2d000071722123200441c2006a2d00002226200441026a2d00002228712026202872200441226a2d000071722124200441c1006a2d00002226200441016a2d00002228712026202872200441216a2d000071722125200441c0006a2d0000222620042d00002228712026202872200441206a2d000071722126200541800c460d01200341106a20052006410574200141096e41e0006c6b6a6a220441ff006a201c3a0000200441fe006a201b3a0000200441fd006a201a3a0000200441fc006a20193a0000200441fb006a20183a0000200441fa006a20173a0000200441f9006a20163a0000200441f8006a20153a0000200441f7006a20143a0000200441f6006a20133a0000200441f5006a20123a0000200441f4006a20113a0000200441f3006a20103a0000200441f2006a200f3a0000200441f1006a200e3a0000200441f0006a200d3a0000200441ef006a200c3a0000200441ee006a200b3a0000200441ed006a200a3a0000200441ec006a20093a0000200441eb006a20083a0000200441ea006a20073a0000200441e9006a201d3a0000200441e8006a201e3a0000200441e7006a201f3a0000200441e6006a20203a0000200441e5006a20213a0000200441e4006a20223a0000200441e3006a20233a0000200441e2006a20243a0000200441e1006a20253a0000200441e0006a20263a0000200541e0006a210520062101200241016a22024111490d000b0b202741d100470d000b2003201c3a008f0d2003201b3a008e0d2003201a3a008d0d200320193a008c0d200320183a008b0d200320173a008a0d200320163a00890d200320153a00880d200320143a00870d200320133a00860d200320123a00850d200320113a00840d200320103a00830d2003200f3a00820d2003200e3a00810d2003200d3a00800d2003200c3a00ff0c2003200b3a00fe0c2003200a3a00fd0c200320093a00fc0c200320083a00fb0c200320073a00fa0c2003201d3a00f90c2003201e3a00f80c2003201f3a00f70c200320203a00f60c200320213a00f50c200320223a00f40c200320233a00f30c200320243a00f20c200320253a00f10c200320263a00f00c200341086a220442003703002003420037030041cc81c000411120031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41201002200442003703002003420037030041c382c000410d200310002005200429030037030020032003290300370310200341106a41101003200341900d6a24000f0b41b185c00041331015000b41b185c00041331015000b4190bcc1001018000b411041011016000b412041011016000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a41003602002001200437031820014184a1c100360210200142013702042001200141186a36020020012003370328200120023703202001200141206a102c000bb00202027f017e230041206b2201240002400240411310122202450d002002410f6a410028009e8240360000200241086a410029009782403700002002410029008f824037000020024113413310132202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1000200141086a20002903003703002001200129031037030002400240200141104184a1c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021030b20021014200141206a240020030f0b41b185c00041331015000b411341011016000b413341011016000b975f17047f017e187f017e087f027e017f027e097f017e017f017e047f027e037f027e047f0a7e057f027e017f017e027f230041c0036b220124000240024002400240024002400240024002400240024002400240024002400240024041a282c00041104184a1c100410041001001417f460d002001410036021041a282c0004110200141106a41044100100141016a41044d0d0220012802102102410021030c010b410121030b4108210442002105200141a0016a41086a22064200370300200142003703a00141c382c000410d200141a0016a100020014180016a41086a2006290300370300200120012903a0013703800102400240024020014180016a41104184a1c100410041001001417f460d002001421037029401200120014180016a36029001200141086a20014190016a101b2001280208450d0a200128020c2207ad42f8007e2205422088a70d042005a72206417f4c0d042006450d01200610122204450d05200421082007450d020c060b4100210641082108410021220c070b410821044108210820070d040b420021052008450d070c040b41b185c00041331015000b100f000b200641081016000b200141106a4104722109200141a0026a41096a210a200141a0026a41046a210b200141106a411b6a210c200141f0026a411b6a210d200141fd016a210e200141d0026a411b6a210f200141a0036a4104722110200141bc026a41046a2111200141e8016a41086a211241c0002113200141106a41186a2114200141106a41176a2115200141106a411e6a2116200141106a410f6a2117200141bc026a41076a2118200141fb016a2119200141d0026a410c6a211a200141f9016a211b200141e8016a41146a211c2001418c036a211d4200211e4100211f41002120200721210340200141003a0010200128029001200128029401200141106a410120014190016a41086a22062802001001212220062006280200202241016a222341014b6a222236020020234102490d030240024020012d00102223450d004101215a20234101460d010c050b2001410036021020064100200128029001200128029401200141106a41042022100122222022417f461b2223410420234104491b20062802006a2222360200202341034d0d042001280210215b4100215a0b200141003a0010200128029001200128029401200141106a410120221001212220062006280200202241016a222241014b6a22233602000240024020224102490d00410a213020012d0010222241094b0d010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020220e0a31050203000607040801310b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d3220012d0084022222450d0d20224101460d0c20224102470d3220144200370300200141106a41106a4200370300200141106a41086a222442003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22233602002022411f4d0d1720014184026a41026a2222200c41026a2d00003a00002001200c2f00003b0184022015280000212520162f01002126201729000021272001290017212820012d001021292001350011212a2001330015212b200141c8026a41026a20222d00003a0000200120012f0184023b01c8022027422088a7212c202a202b42208684421088a7212d202aa7212e2027a7212f410121220c180b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a22233602002022450d3120012d00100d312001420037031020064100200128029001200128029401200141106a41082023100122222022417f461b2222410820224108491b20062802006a360200202241074d0d312001290310210520122001290310370300201241086a200141106a41086a290300370300200120053703e801200120012f0184023b01e401200120012d0086023a00e60120012001280094023602dc01200120014194026a41036a2800003600df01410921300c230b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a22233602002022450d064103212220012d001022314102460d0d20314101460d0c20310d2920144200370300200141106a41106a4200370300200141106a41086a222442003703002001420037031020064100200128029001200128029401200141106a41202023100122232023417f461b2223412020234120491b20062802006a22313602002023411f4d0d1920014194026a41026a2223200c41026a2d00003a00002001200c2f00003b019402201729000021272015280000213220162f010021332001290017212a20012d001021342001350011212b20013300152135200141cc026a41026a223620232d00003a0000200120012f0194023b01cc02200141106a41026a20362d000022233a00002001419c026a41026a223620233a0000200120012f01cc0222233b019c02200120233b0110200142003703182001420037031020064100200128029001200128029401200141106a41102031100122232023417f461b2223411020234110491b20062802006a3602002023410f4d0d29202b20354220868421372024290300212b2001290310213520014190026a41026a20362d00003a0000200120012f019c023b019002200120012d0096023a008e02200120012f0194023b018c0220012001280010360284022001200141106a41036a280000360087024100212220342138203321392032213a0c2b0b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a22233602002022450d2f20012d00100d2f2001420037031020064100200128029001200128029401200141106a41082023100122222022417f461b2222410820224108491b20062802006a360200202241074d0d2f2001290310210520122001290310370300201241086a200141106a41086a290300370300200120053703e801200120012f0184023b01e401200120012d0086023a00e60120012001280094023602dc0141032130200120014194026a41036a2800003600df010c210b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2e20012d008402222241054b0d2e024020220e06000f0e100d11000b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22313602002022411f4d0d2320014184026a41026a2236200c41026a2d00003a00002001200c2f00003b018402201528000021222017290000212a20162f010021242001290017212720012d001021232001350011212b2001330015213520014194026a41026a223220362d00003a0000200120012f0184023b019402200141cc026a41026a20322d000022363a0000200120243b00b303200120012f01940222323b01b003200120323b01cc02200120363a00b2032001410036021020064100200128029001200128029401200141106a41042031100122312031417f461b2231410420314104491b20062802006a360200203141034d0d2e202a422088a72132202b203542208684421088a72136202ba7213b202aa7213120244180fe037141087621332001280210212420012802b0032134410021300c110b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2d20012d0084020d2d20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b22224120202241204922221b20062802006a222336020020220d2d200141cc026a41026a2222200c41026a2d00003a00002001200c2f00003b01cc022015280000212520162f01002126201729000021272001290017212820012d001021292001350011212a2001330015212b200141c8026a41026a223120222d00003a0000200120012f01cc023b01c8022001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a3602002027422088a7212c202a202b42208684421088a7212d202aa7212e2027a7212f202241034d0d2d20013502102105201820263b0000201120012f01c8023b0000201141026a20312d00003a0000200120253602bc0220012900bd02213c200141e8016a41176a20253a00002019202c360000200141e8016a410f6a202f360000200120283700ef012001202d3600eb012001202e3b00e901200120293a00e801200120012f01bc023b01e401200120012d00be023a00e601200120012800103602dc012001200141106a41036a2800003600df0141012130203d42ff01832005420886842205213d0c200b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2c20012d0084020d2c2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b22224104202241044922221b20062802006a222336020020220d2c20012802102131200142003703182001420037031020064100200128029001200128029401200141106a41102023100122222022417f461b2222411020224110491b20062802006a3602002022410f4d0d2c200141106a41086a290300210520012903102127200141e8016a41106a2031360200200120053703f001200120273703e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc012001200141106a41036a2800003600df01410521300c1e0b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d0420012d0084022222450d0220224101470d0420144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a3602002022411f4d0d04200141cc026a41026a2206200c41026a2d00003a00002001200c2f00003b01cc022015280000212520162f01002126201729000021272001290017212820012d0010213e2001350011212a20013300152105200141c8026a41026a222220062d00003a0000200120012f01cc023b01c80220014194026a41026a20222d00003a0000200120012f01c8023b01940220054220862205422888a721062027422088a7212c202a2005842205421088a7212d202aa7212e2027a7212f4101213f203e21290c030b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2a20012d008402223141074b0d2a41002122024020310e081c001718161a1b191c0b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a360200202241034d0d2a20012802102140410121220c1b0b410321220c220b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a3602002022450d0120012d0010213e20014194026a41026a200141106a41026a2d00003a0000200120012f00103b019402410021064100213f0b200141106a41026a20014194026a41026a22222d000022233a000020014190026a41026a223120233a0000200120012f01940222233b019002200120233b0110200141e8016a41096a2027370000201b2025360000200e20012f0190023b0000200e41026a20312d00003a0000200120283700e901200120063a00e801200120012f0194023b01e401200120222d00003a00e601200120012800103602dc012001200141106a41036a2800003600df012026ad42ffff0383213c410621300c270b200141106a41026a20014194026a41026a2d00003a0000200120012f0194023b01100c260b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22233602002022411f4d0d0920014184026a41026a2231200c41026a2d00003a00002001200c2f00003b018402201528000021322017290000212a20162f010021242001290017212720012d001021222001350011212b200133001521352001419c036a41026a223620312d00003a0000200120012f0184023b019c03200141cc026a41026a20362d000022313a0000200120243b009703200120012f019c0322243b019403200120243b01cc02200120313a0096032001410036021020064100200128029001200128029401200141106a41042023100122232023417f461b2223410420234104491b20062802006a360200202341034d0d2520012802102106200141f0026a41176a22312032360000200d200128029403360000200d41046a20014194036a41046a2d00003a0000200141f0026a410f6a202a422088a7ad422086202aa7ad84222a370000200120273700f702200120223a00f0022001202b203542208684421088a72223411076ad3d00f50220012023ad421086202ba7ad42ffff03838422053e00f102200141a0016a41086a2903002150200141f0026a411f6a2d000021232031290000213c20012903a001214f410121310c0c0b200142003703182001420037031020064100200128029001200128029401200141106a41102023100122222022417f461b2222411020224110491b20062802006a3602002022410f4d0d24200141106a41086a290300212a20012903102127200141d0026a41186a2903002150200141d0026a41106a290300214f201a2802002106200141d0026a41086a2802002123410021310c0b0b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122232023417f461b2223412020234120491b20062802006a3602002023411f4d0d0b20014194026a41026a2206200c41026a2d00003a00002001200c2f00003b019402201729000021272015280000213a20162f010021392001290017212a20012d001021382001350011212b20013300152137200141cc026a41026a222220062d00003a0000200120012f0194023b01cc02200141106a41026a20222d000022063a000020014190026a41026a20063a0000200120012f01cc0222063b019002200120063b01102001200b2f01003b018c022001200b41026a2d00003a008e022001200a280000360284022001200a41036a28000036008702202b2037422086842137200141a0026a41076a2f0000214420012802a0022146410121220c1d0b20144200370300200141106a41106a22244200370300200141106a41086a223142003703002001420037031020064100200128029001200128029401200141106a41202023100122232023417f461b2223412020234120491b20062802006a22363602002023411f4d0d0c20014194026a41026a2232200c41026a22512d00003a00002001200c2f00003b019402201729000021272015280000215220162f010021532001290017212a20012d00102154200135001121482001330015214a200141cc026a41026a222320322d00003a0000200120012f0194023b01cc02200141106a41026a223320232d000022343a0000200141b4026a41026a20343a0000200120012f01cc0222343b01b402200120343b01102014420037030020244200370300203142003703002001420037031020064100200128029001200128029401200141106a41202036100122242024417f461b2224412020244120491b20062802006a22363602002024411f4d0d1a203220512d00003a00002001200c2f00003b0194022017290000212b2015280000213420162f010021512001290017213520012d001021552001350011215620013300152157202320322d00003a0000200120012f0194023b01cc02203320232d000022233a0000200141b8026a41026a20233a0000200120012f01cc0222233b01b802200120233b0110200142003703182001420037031020064100200128029001200128029401200141106a41102036100122232023417f461b2223411020234110491b20062802006a22243602002023410f4d0d1b2031290300214e2001290310214c200142003703182001420037031020064100200128029001200128029401200141106a41102024100122232023417f461b2223411020234110491b20062802006a3602002023410f4d0d1b2048204a4220868421372031290300214a200129031021484102212220014190026a41026a200141b4026a41026a2d00003a0000200120012f01b4023b019002200120012f01b8023b018c022001200141b8026a41026a2d00003a008e022001200141106a41036a28000036008702200120012800103602840220562057422086844208862055ad42ff01838421412054213820532139205121442052213a203421460c1d0b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d21200128021021312001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d21200128021021322001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d21200128021021222001410036021020064100200128029001200128029401200141106a41042023100122232023417f461b2223410420234104491b20062802006a2224360200202341034d0d21200128021021342001410036021020064100200128029001200128029401200141106a41042024100122232023417f461b2223410420234104491b20062802006a2224360200202341034d0d2120012802102133200141003a00840220012802900120012802940120014184026a410120241001212320062006280200202341016a41014b22236a22363602002023450d2120012d008402222441054b0d212001420037031020064100200128029001200128029401200141106a41082036100122232023417f461b2223410820234108491b20062802006a360200202341074d0d21203341107621582033410876210620012903102127410421300c040b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d2020012802102136200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a41014b22226a3602002022450d2020012d008402222341064f0d20200141f0026a41186a2802002233411076215820334108762106201d2802002124200141f0026a41146a2802002134200141f0026a41106a2802002122200141f0026a410c6a2802002132200141f0026a41086a2802002131410221300c030b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22313602002022411f4d0d1520014184026a41026a2236200c41026a2d00003a00002001200c2f00003b01840220162f010021242015280000212220012d00102123200129001721272001350011212a2001330015212b200141d0026a410f6a20172900002235370000200141d0026a41176a2022360000200141d0026a411e6a20243b0100200f20012f0184023b0000200f41026a223220362d00003a00002001202b3d00d5022001202a3e00d102200120273700d702200120233a00d002200141cc026a41026a20322d000022363a0000200120243b00bb032001200f2f000022323b01b803200120323b01cc02200120363a00ba032001410036021020064100200128029001200128029401200141106a41042031100122312031417f461b2231410420314104491b20062802006a360200203141034d0d1f202a202b42208684421088a721362035422088a72132202aa7213b2035a7213120244180fe037141087621332001280210212420012802b8032134410121300c020b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22313602002022411f4d0d1520014184026a41026a2224200c41026a2d00003a00002001200c2f00003b0184022017290000212a20162f01002133201528000021222001290017212720012d001021232001350011212b20013300152135201020012f0184023b0000201041026a223620242d00003a0000200120223602a003200120333b00a703200141cc026a41026a20362d000022243a00002001419c036a41026a223420243a0000200120102f000022243b019c03200120243b01cc022001410036021020064100200128029001200128029401200141106a41042031100122312031417f461b2231410420314104491b20062802006a2236360200203141034d0d1e20012802102124200141003a00840220012802900120012802940120014184026a410120361001213120062006280200203141016a41014b22316a3602002031450d1e20012d008402220641044f0d1e202a422088a72132202b203542208684421088a72136202ba7213b202aa72131200120012f019c033b019403200120342d00003a009603200120333b00970320334180fe037141087621332001280294032134410321300c010b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d1d2001280210212420144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a3602002022411f4d0d1a20014184026a41026a2206200c41026a2d00003a00002001200c2f00003b018402201729000021052015280000212220162f010021262001290017212720012d001021232001350011212a2001330015212b200141c8026a41026a223120062d00003a0000200120012f0184023b01c802201820263b0000200141cc026a41026a20312d000022063a0000201120012f01c80222313b0000201141026a20063a0000200120223602bc02200120313b01cc0220264108762133201128020021344105213020232129202721282005a72231212f2005422088a72232212c202a202b42208684421088a72236212d202aa7222e213b202221250b201c2032360200200141e8016a41106a203136020020122027370300200120363602ec012001203b3b01ea01200120233a00e901200120303a00e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc012001200141106a41036a2800003600df012058ad42ffff03834210862006ad42ff0183420886842033ad42ff0183842024ad4220868421422034ad4220862022ad84213c410721300c100b200141cc026a41026a2001419c036a41026a2d00003a0000200120012f019c033b01cc020c1b0b410021220b200141cc026a41026a2231200141c8026a41026a2d00003a0000200120012f01c8023b01cc022022450d19201120012f01cc023b0000201820263b0000201141026a20312d00003a0000200120253602bc02200142003703182001420037031020064100200128029001200128029401200141106a41102023100122222022417f461b2222411020224110491b20062802006a3602002022410f4d0d19202429030021502001290310214f200141a0036a41086a2206200141bc026a41086a2d00003a0000200120012902bc023703a003202dad421086202ead42ffff0383842105202cad422086202fad84212a20062d0000212320012903a003213c4102213120282127202921220b200141e8016a41106a202a37030020122027370300200120223a00e901200120313a00e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc01200120053e01ea01200120054220883d01ee012001200141106a41036a2800003600df012006ad4220862023ad842142410421300c140b200141106a41026a200141cc026a41026a2d00003a0000200120012f00cc023b01100c100b200141106a41026a200141cc026a41026a2d00003a0000200120012f00cc023b01100c0f0b200141106a41026a200141cc026a41026a2d00003a0000200120012f00cc023b01100c0e0b410421220c050b410221220c040b410321220c030b2001420037031020064100200128029001200128029401200141106a41082023100122222022417f461b2222410820224108491b20062802006a360200202241074d0d1120012903102159410721220c020b410521220c010b410621220b41082130200141e8016a41086a2059370300200120403602ec01200120223602e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc012001200141106a41036a2800003600df010b0b0b0c070b200141cc026a41026a20014194026a41026a2d00003a0000200120012f0094023b01cc020c0a0b200141cc026a41026a200f41026a2d00003a00002001200f2f00003b01cc020c090b200141cc026a41026a201041026a2d00003a0000200120102f00003b01cc020c080b203320232d00003a0000200120012f00cc023b01100b0b0b200920012f0190023b0000200941026a20014190026a41026a2d00003a0000200141cc026a41026a20012d008e023a00002001203a360210200120393b0017200120012f018c023b01cc0220012001280284023602940220012001280087023600970220224103460d04200120012f01cc023b01e40120012001280294023602dc0120012001280097023600df01410221302001200141cc026a41026a2d00003a00e6012001290310213c200141e8016a41106a20273703002012202a370300200120383a00e901200120223a00e801200120373e01ea01200120374220883d01ee01204142088620394180fe0371410876ad842142204421432046214520482147204a2149204c214b204e214d2035214f202b21500b0c030b200141cc026a41026a200141c8026a41026a2d00003a0000200120012f00c8023b01cc020c020b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a222241014b6a36020020224102490d0141002106024020012d00102222450d0020224101470d02410121060b200141e8016a41106a200141106a41106a2901003703002012200141106a41086a290100370300200120012901103703e801200120012f0184023b01e40120012001280094023602dc01200120014184026a41026a2d00003a00e601200120014194026a41036a2800003600df012006213f410021300c010b410a21300b200141106a41106a2222200141e8016a41106a290300370300200141106a41086a2223201229030037030020014184026a41026a220620012d00e6013a0000200120012903e801370310200120012f01e4013b018402200120012802dc0136029402200120012800df01360097022030410a460d03202041016a2131200141c0016a41106a22242022290300370300200141c0016a41086a22362023290300370300200141bc016a41026a223220062d00003a0000200120012903103703c001200120012f0184023b01bc0120012001280294023602b40120012001280097023600b701202220242903003703002023203629030037030020014194026a41026a222420322d00003a0000200120012903c001370310200120012f01bc013b019402200120012802b4013602e801200120012800b7013600eb01024020202021470d00201f20312031201f491b2221ad42f8007e2227422088a70d092027a722064100480d09024002402020450d002004201341406a2006101322040d010c080b200610122204450d070b200421080b200820136a220641476a20054220883c0000200641436a20053e0000200641426a203e3a0000200641416a203f3a0000200641406a20303a0000202329030021272022290300212a2001290310212b20062045360000200641066a20242d00003a0000200641046a20012f0194023b0000200641076a20433b0000200641786a2050370000200641706a204f370000200641686a2042370000200641606a203c3700002006410c6a20012800eb01360000200641096a20012802e801360000200641586a202a370000200641506a2027370000200641486a202b370000200641346a205b360200200641306a205a360200200641286a2049370000200641206a2047370000200641186a204d370000200641106a204b370000201e4280808080107c211e201f41026a211f201341f8006a21132031212020312007490d000b201e2021ad8421050b2005422088a721222005a721060b200141106a200041f00010f5011a20222006470d042005a72005422088a72206470d04200641016a22082006490d0520064101742222200820082022491bad221e42f8007e2227422088a70d052027a722084100480d05024002402006450d002004200641f8006c200810132204450d010c050b2008101222040d040b200841081016000b2021450d00200410140b41b185c00041331015000b200641081016000b200542808080807083201e842105200421080b20082005422088a741f8006c6a200141106a41f00010f501220641f4006a2002360200200620033602702001410036021820014201370310200120054280808080107c2205422088a722063602e801200141e8016a200141106a101c02402006450d00200641f8006c2123200141186a210603400240024002400240024002400240024002400240200841f0006a2802004101470d00200141013a008402200128021420062802002222470d01202241016a22312022490d0c20224101742220203120312020491b22204100480d0c2022450d03200128021020222020101322310d040c0e0b200141003a008402200128021420062802002222470d01202241016a22312022490d0b20224101742220203120312020491b22204100480d0b2022450d05200128021020222020101322310d060c0e0b41012120200128021021310c030b41002120200128021021310c050b202010122231450d0a0b20012020360214200120313602102006280200212220012d00840221200b2006202241016a360200203120226a20203a00000c030b202010122231450d080b20012020360214200120313602102006280200212220012d00840221200b2006202241016a360200203120226a20203a0000200841f4006a2802002120024002400240024020012802142231200628020022226b41044f0d00202241046a22132022490d0720314101742222201320132022491b22224100480d072031450d01200128021020312022101322310d020c080b200128021021310c020b202210122231450d060b2001202236021420012031360210200628020021220b2006202241046a360200203120226a20203600000b2008200141106a101d200841f8006a2108202341887f6a22230d000b0b200141106a41086a28020021082001280214212220012802102106200141a0016a41086a22234200370300200142003703a00141c382c000410d200141a0016a1000200141a0026a41086a2023290300370300200120012903a0013703a002200141a0026a411020062008100202402022450d00200610140b02402005a7450d00200410140b200141c0036a24000f0b1010000b202241011016000b202041011016000b202041011016000bca0301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081001210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f22064103712204450d0020044101460d0120044102470d0220024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100122012001417f461b22014103200141034922011b20042802006a36020020010d04200228020841027621040c050b20064102762104410121030c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510012104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641044f0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100122012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410132203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010132203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101322030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101322030d0a0c0e0b2004101222030d110b200441011016000b200128020021030c050b200128020021030c070b2000101222030d0b0b200041011016000b200010122203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101322020d020c070b200128020021020c020b200010122202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011016000b200441011016000b200041011016000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000bc07103057f027e017f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220241084b0d000240024020020e09000603040107080509000b200141046a280200200141086a2802002202470d0e200241016a22032002490d4c20024101742204200320032004491b22044100480d4c2002450d1d20012802002002200410132203450d1e0c4a0b200141046a280200200141086a2802002202470d08200241016a22032002490d4b20024101742204200320032004491b22044100480d4b2002450d1220012802002002200410132203450d130c470b200141046a280200200141086a2802002202470d08200241016a22032002490d4a20024101742204200320032004491b22044100480d4a2002450d1320012802002002200410132203450d140c440b200141046a280200200141086a2802002202470d08200241016a22032002490d4920024101742204200320032004491b22044100480d492002450d1420012802002002200410132203450d150c410b200141046a280200200141086a2802002202470d08200241016a22032002490d4820024101742204200320032004491b22044100480d482002450d1520012802002002200410132203450d160c3e0b200141046a280200200141086a2802002202470d08200241016a22032002490d4720024101742204200320032004491b22044100480d472002450d1620012802002002200410132203450d170c2a0b200141046a280200200141086a2802002202470d09200241016a22032002490d4620024101742204200320032004491b22044100480d462002450d1920012802002002200410132203450d1a0c270b200141046a280200200141086a2802002202470d09200241016a22032002490d4520024101742204200320032004491b22044100480d452002450d1a20012802002002200410132203450d1b0c240b200141046a2204280200200141086a22022802002203470d09200341016a22052003490d4420034101742206200520052006491b22064100480d442003450d1b20012802002003200610132205450d1c0c210b200141046a280200200141086a2802002202470d09200241016a22032002490d2820024101742204200320032004491b22044100480d282002450d1c20012802002002200410132203450d1d0c1e0b200128020021030c3f0b200128020021030c3c0b200128020021030c390b200128020021030c360b200128020021030c220b200128020021030c3c0b200128020021030c1e0b200128020021030c1b0b200128020021050c180b200128020021030c150b2004101222030d340b200441011016000b2004101222030d300b200441011016000b2004101222030d2c0b200441011016000b2004101222030d280b200441011016000b2004101222030d130b200441011016000b2004101222030d2c0b200441011016000b2004101222030d0d0b200441011016000b2004101222030d090b200441011016000b2006101222050d050b200641011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0d20024101742204200320032004491b22044100480d0d2002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0d20024101742200200320032000491b22004100480d0d2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41073a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341044b0d000240024002400240024020030e050004020301000b200428020020022802002203470d08200341016a22052003490d4420034101742206200520052006491b22064100480d442003450d1120012802002003200610132205450d120c210b200428020020022802002203470d04200341016a22052003490d4320034101742206200520052006491b22064100480d432003450d0a20012802002003200610132205450d0b0c1e0b200428020020022802002203470d04200341016a22052003490d4220034101742206200520052006491b22064100480d422003450d0b20012802002003200610132205450d0c0c1b0b200428020020022802002203470d04200341016a22052003490d4120034101742206200520052006491b22064100480d412003450d0c20012802002003200610132205450d0d0c180b200428020020022802002203470d05200341016a22052003490d4020034101742206200520052006491b22064100480d402003450d0f20012802002003200610132205450d100c150b200428020020022802002203470d05200341016a22052003490d3f20034101742206200520052006491b22064100480d3f2003450d1020012802002003200610132205450d110c120b200128020021050c1a0b200128020021050c170b200128020021050c140b200128020021050c190b200128020021050c100b200128020021050c0d0b2006101222050d130b200641011016000b2006101222050d0f0b200641011016000b2006101222050d0b0b200641011016000b2006101222050d0f0b200641011016000b2006101222050d050b200641011016000b2006101222050d010b200641011016000b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41003a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d3020054101742203200620062003491b22034100480d302005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d3020034101742200200420042000491b22004100480d302003450d0120012802002003200010132203450d020c030b200128020021030c030b2000101222030d010b200041011016000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41023a00002000410c6a28020021050240024002400240024020042802002203200228020022026b41044f0d00200241046a22042002490d2e20034101742202200420042002491b22024100480d2e2003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a2005360000200041096a2d00002001104a0f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41043a0000200041186a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600002000411c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041206a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041246a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041286a28020021050240024002400240024020042802002204200228020022036b41044f0d00200341046a22062003490d2c20044101742203200620062003491b22034100480d2c2004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a20053600002000412c6a2d00002001104a200041106a290300210702400240024002400240200141046a2802002203200628020022006b41084f0d00200041086a22042000490d2c20034101742200200420042000491b22004100480d2c2003450d0120012802002003200010132203450d020c030b200128020021030c030b2000101222030d010b200041011016000b20012003360200200141046a2000360200200141086a28020021000b2002200041086a360200200320006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41033a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2a20054101742203200620062003491b22034100480d2a2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2a20054101742203200920092003491b22034100480d2a2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022004101460d00024020004102460d0020004103470d02200428020020022802002200470d05200041016a22032000490d3c20004101742204200320032004491b22044100480d3c2000450d0b20012802002000200410132203450d0c0c150b200428020020022802002200470d02200041016a22032000490d3b20004101742204200320032004491b22044100480d3b2000450d0620012802002000200410132203450d070c120b200428020020022802002200470d02200041016a22032000490d3a20004101742204200320032004491b22044100480d3a2000450d0720012802002000200410132203450d080c0f0b200428020020022802002200470d03200041016a22032000490d3920004101742204200320032004491b22044100480d392000450d0a20012802002000200410132203450d0b0c0c0b200128020021030c100b200128020021030c0d0b200128020021030c100b200128020021030c090b2004101222030d0b0b200441011016000b2004101222030d070b200441011016000b2004101222030d090b200441011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41013a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41033a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41053a00002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2820054101742203200920092003491b22034100480d282005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024020042802002204200228020022036b41204f0d00200341206a22052003490d2820044101742203200520052003491b22034100480d282004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b2002200341206a360200200420036a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41013a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2620054101742203200620062003491b22034100480d262005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2620034101742200200420042000491b22004100480d262003450d0120012802002003200010132203450d020c030b200128020021030c030b2000101222030d010b200041011016000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41063a0000200041026a2103200141046a2802002105200428020021020240024002400240024002400240024002400240024020002d00014101470d0020052002470d01200241016a22002002490d2a20024101742204200020002004491b22044100480d2a2002450d0320012802002002200410132200450d040c090b20052002470d01200241016a22002002490d2920024101742204200020002004491b22044100480d292002450d0420012802002002200410132200450d050c060b200128020021000c080b200128020021000c050b2004101222000d050b200441011016000b2004101222000d010b200441011016000b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41003a000002400240024002400240200141046a28020020042802002200470d00200041016a22022000490d2620004101742204200220022004491b22044100480d262000450d0120012802002000200410132202450d020c030b200128020021020c030b2004101222020d010b200441011016000b20012002360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200220006a20032d00003a00000f0b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41013a000002400240024002400240200141046a2802002202200428020022006b41204f0d00200041206a22042000490d2420024101742200200420042000491b22004100480d242002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041206a360200200220006a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200120032900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d2e20024101742204200320032004491b22044100480d2e2002450d0720012802002002200410132203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d2d20024101742204200320032004491b22044100480d2d2002450d0420012802002002200410132203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d2c20024101742204200320032004491b22044100480d2c2002450d0720012802002002200410132203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011016000b2004101222030d070b200441011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2620034101742202200420042002491b22024100480d262003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d2620024101742200200320032000491b22004100480d262002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2420034101742202200420042002491b22024100480d242003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2220034101742202200420042002491b22024100480d222003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2220034101742202200420042002491b22024100480d222003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041d8006a2903002107200041d0006a290300210802400240024002400240200141046a2802002203200428020022026b41104f0d00200241106a22042002490d2220034101742202200420042002491b22024100480d222003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241106a360200200320026a2202200737000820022008370000200041e8006a2903002107200041e0006a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d2220024101742200200320032000491b22004100480d222002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a280200417f6a220241064b0d00024002400240024020020e0700050203010607000b200141046a280200200141086a2802002202470d0b200241016a22032002490d3c20024101742204200320032004491b22044100480d3c2002450d1720012802002002200410132203450d180c300b200141046a280200200141086a2802002200470d06200041016a22022000490d3b20004101742203200220022003491b22034100480d3b2000450d0e20012802002000200310132202450d0f0c2d0b200141046a280200200141086a2802002200470d06200041016a22022000490d3a20004101742203200220022003491b22034100480d3a2000450d0f20012802002000200310132202450d100c2a0b200141046a280200200141086a2802002200470d06200041016a22022000490d3920004101742203200220022003491b22034100480d392000450d1020012802002000200310132202450d110c270b200141046a28020020042802002200470d06200041016a22022000490d3820004101742203200220022003491b22034100480d382000450d1120012802002000200310132202450d120c240b200141046a280200200141086a2802002200470d07200041016a22022000490d3720004101742203200220022003491b22034100480d372000450d1420012802002000200310132202450d150c210b200141046a280200200141086a2802002200470d07200041016a22022000490d3620004101742203200220022003491b22034100480d362000450d1520012802002000200310132202450d160c1e0b200141046a280200200141086a2802002202470d07200241016a22032002490d3520024101742204200320032004491b22044100480d352002450d1620012802002002200410132203450d170c180b200128020021020c270b200128020021020c240b200128020021020c210b200128020021020c1e0b200128020021030c250b200128020021020c1a0b200128020021020c170b200128020021030c110b2003101222020d1e0b200341011016000b2003101222020d1a0b200341011016000b2003101222020d160b200341011016000b2003101222020d120b200341011016000b2004101222030d180b200441011016000b2003101222020d0c0b200341011016000b2003101222020d080b200341011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41073a0000200041106a2903002107024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0320024101742200200320032000491b22004100480d032002450d0120012802002002200010132202450d020c040b200128020021020c040b2000101222020d020b200041011016000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41063a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a00002000410c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0f20024101742200200420042000491b22004100480d0f2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d1920024101742204200320032004491b22044100480d192002450d0720012802002002200410132203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1820024101742204200320032004491b22044100480d182002450d0420012802002002200410132203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0720012802002002200410132203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011016000b2004101222030d070b200441011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a2903002107200041106a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1120024101742200200320032000491b22004100480d112002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a290000370000200220032900003700002000412c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0f20024101742200200420042000491b22004100480d0f2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0d20034101742202200420042002491b22024100480d0d2003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0d20024101742200200320032000491b22004100480d0d2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0b20024101742204200320032004491b22044100480d0b2002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0b20024101742200200320032000491b22004100480d0b2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041016a2d00004101470d0020032002470d01200241016a22002002490d0f20024101742203200020002003491b22034100480d0f2002450d0320012802002002200310132200450d040c090b20032002470d01200241016a22002002490d0e20024101742203200020002003491b22034100480d0e2002450d0420012802002002200310132200450d050c060b200128020021000c080b200128020021000c050b2003101222000d050b200341011016000b2003101222000d010b200341011016000b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41003a00000f0b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41013a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41053a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0720024101742204200320032004491b22044100480d072002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a280200210502400240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241046a360200200320026a2005360000200041106a2903002107200041086a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0720024101742200200320032000491b22004100480d072002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0520034101742202200420042002491b22024100480d052003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041086a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041046a2802002103024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0320024101742200200420042000491b22004100480d032002450d0120012802002002200010132202450d020c040b200128020021020c040b2000101222020d020b200041011016000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000b130020004106360204200041ca83c0003602000bd40101037f230041306b2200240002400240024041a282c00041104184a1c100410041001001417f460d00200041003602204101210141a282c0004110200041206a41044100100141016a41044d0d022000280220210241a282c000411010030c010b410021010b20002002410020011b36020c200041206a41086a2201420037030020004200370320418080c0004115200041206a1000200041106a41086a200129030037030020002000290320370310200041106a41102000410c6a41041002200041306a24000f0b41b185c00041331015000b13002000410b360204200041a8bcc1003602000b02000b3101017f0240410110122202450d00200042818080801037020420002002360200200241003a00000f0b410141011016000bed1608017f017e027f017e037f017e057f017e230041c0016b2201240042002102200141a0016a41086a22034200370300200142003703a00141cc81c0004111200141a0016a100020014180016a41086a22042003290300370300200120012903a0013703800120014180016a4110100320034200370300200142003703a001418080c0004115200141a0016a100020042003290300370300200120012903a0013703800120014180016a4110100320034200370300200142003703a001419580c0004117200141a0016a100020042003290300370300200120012903a0013703800120014180016a4110100320034200370300200142003703a00141dd81c000410d200141a0016a1000200141206a41086a2003290300370300200120012903a0013703200240024002400240024002400240024002400240200141206a41104184a1c100410041001001417f460d00200142003703a001200141206a4110200141a0016a41084100100141016a41084d0d0220012903a0012105200141a0016a41086a22034200370300200142003703a00141dd81c000410d200141a0016a100020014180016a41086a2003290300370300200120012903a0013703800120014180016a41101003420121020c010b0b200141a0016a41086a22034200370300200142003703a00141b282c0004111200141a0016a1000200141206a41086a2003290300370300200120012903a00137032002400240200141206a41104184a1c100410041001001417f460d00200141b8016a4200370300200141a0016a41106a420037030020034200370300200142003703a001200141206a4110200141a0016a4120410010012203417f460d032003411f4d0d0320014180016a41186a2206200141a0016a41186a29030037030020014180016a41106a2207200141a0016a41106a29030037030020014180016a41086a2203200141a0016a41086a2204290300370300200120012903a00137038001200141e0006a41186a22082006290300370300200141e0006a41106a22062007290300370300200141e0006a41086a22072003290300370300200120012903800137036020044200370300200142003703a00141b282c0004111200141a0016a100020032004290300370300200120012903a0013703800120014180016a41101003200141c0006a41186a22032008290300370300200141c0006a41106a22042006290300370300200141c0006a41086a2206200729030037030020012001290360370340200141186a2003290300370300200141106a2004290300370300200141086a2006290300370300200120012903403703000c010b200141c0006a41186a200141e0006a41186a290300370300200141c0006a41106a200141e0006a41106a290300370300200141c0006a41086a200141e0006a41086a29030037030020012001290360370340200141186a4200370300200141106a4200370300200141086a4200370300200142003703000b42002109200141a0016a41086a22034200370300200142003703a00141bf81c000410d200141a0016a1000200141206a41086a2003290300370300200120012903a00137032002400240200141206a41104184a1c100410041001001417f460d0020014210370284012001200141206a36028001200141a0016a20014180016a102420012802a0012207450d0620012902a4012109200141a0016a41086a22034200370300200142003703a00141bf81c000410d200141a0016a100020014180016a41086a2003290300370300200120012903a0013703800120014180016a411010030c010b410421070b200141a0016a41086a22034200370300200142003703a00141ea81c0004115200141a0016a1000200141206a41086a22042003290300370300200120012903a00137032002400240200141206a41104184a1c100410041001001417f460d00200141b8016a4200370300200141a0016a41106a420037030020034200370300200142003703a001200141206a4110200141a0016a4120410010012203417f460d042003411f4d0d0420014180016a41186a2206200141a0016a41186a29030037030020014180016a41106a2208200141a0016a41106a29030037030020014180016a41086a2203200141a0016a41086a2204290300370300200120012903a00137038001200141e0006a41186a220a2006290300370300200141e0006a41106a22062008290300370300200141e0006a41086a22082003290300370300200120012903800137036020044200370300200142003703a00141ea81c0004115200141a0016a100020032004290300370300200120012903a0013703800120014180016a41101003200141c0006a41186a2203200a290300370300200141c0006a41106a22042006290300370300200141c0006a41086a2206200829030037030020012001290360370340200141206a41186a2003290300370300200141206a41106a2004290300370300200141206a41086a2006290300370300200120012903403703200c010b200141c0006a41186a200141e0006a41186a290300370300200141c0006a41106a200141e0006a41106a290300370300200141c0006a41086a200141e0006a41086a29030037030020012001290360370340200141206a41186a4200370300200141206a41106a420037030020044200370300200142003703200b200141e0006a41186a22034200370300200141e0006a41106a22044200370300200141e0006a41086a2206420037030020014200370360200141e0006a1004200141c0006a41186a2003290300370300200141c0006a41106a2004290300370300200141c0006a41086a200629030037030020012001290360370340200141a0016a41186a2208200141186a290300370300200141a0016a41106a220a200141106a290300370300200141a0016a41086a220b200141086a290300370300200120012903003703a00120034200370300200442003703002006420037030020014200370360200141a0016a4120200542002002a71b2202427f7c200141e0006a1005450d0720014180016a41186a220c200329030037030020014180016a41106a220d200429030037030020014180016a41086a220e200629030037030020012001290360370380012003200c2903003703002004200d2903003703002006200e290300370300200120012903800137036020082003290300370300200a2004290300370300200b2006290300370300200120012903603703a00102400240024020094220882205a722032009a7470d00200341016a22042003490d062005a74101742206200420042006491bad220f42247e2205422088a70d062005a722044100480d062003450d012007200341246c200410132207450d020c080b2009210f0c080b2004101222070d060b200441041016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b1010000b41b185c00041331015000b20094220882205a721030b2007200341246c6a220341003a0000200341196a200141b8016a290300370000200341116a200141b0016a290300370000200341096a200141a8016a290300370000200320012903a001370001200341216a20012f0080013b0000200341236a20014182016a2d00003a0000200f42ffffffff0f8320054220864280808080107c8421090b2000200129030037001420002002370300200020012903403700342000412c6a200141186a290300370000200041246a200141106a2903003700002000411c6a200141086a2903003700002000413c6a200141c0006a41086a290300370000200041c4006a200141c0006a41106a290300370000200041cc006a200141c0006a41186a290300370000200041ec006a200141206a41186a290300370000200041e4006a200141206a41106a290300370000200041dc006a200141206a41086a290300370000200020012903203700542000410c6a200937020020002007360208200141c0016a24000b9c1605027f017e137f017e0b7f23004190026b22022400200241086a2001101b02400240024002400240024002400240024002400240024002402002280208450d00200228020c2203ad42247e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510122206450d032003450d020c040b2000410036020020024190026a24000f0b4104210620030d020b41002115410021130c020b200541041016000b200241b8016a41106a2105200241b8016a4101722107200241f8006a41116a2108200241c7016a2109200241106a410172210a200141046a210b200141086a210c2002418c026a41026a210d20024180026a210e200241f0016a210f410021104100211141002112200321130340200241003a00b8012001280200200b280200200241b8016a4101200c28020010012114200c200c280200201441016a41014b22146a22153602002014450d0320022d00b801221441034b0d030240024002400240024002400240024020140e0400030102000b20022001101b2002280200450d0a20022802042214417f4c0d0d2014450d0320141080012215450d0f200c201441002001280200200b28020020152014200c280200100122162016417f461b2216201620144b1b2216200c2802006a36020020162014460d040c090b200241b8016a41186a2216420037030020054200370300200241b8016a41086a22174200370300200242003703b801200c41002001280200200b280200200241b8016a41202015100122142014417f461b2214412020144120491b200c2802006a3602002014411f4d0d09200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf0121182008411f6a200241b8016a411f6a290000370000200841186a2016290000370000200841106a2005290000370000200841086a2017290000370000200820022900b801370000410121170c040b200242003703b801200c41002001280200200b280200200241b8016a41082015100122142014417f461b2214410820144108491b200c2802006a2215360200201441074d0d0820022903b8012104200f4200370300200241b8016a41306a4200370300200241b8016a41286a4200370300200241b8016a41206a4200370300200241b8016a41186a420037030020054200370300200241b8016a41086a4200370300200242003703b801200c41002001280200200b280200200241b8016a41c0002015100122142014417f461b221441c000201441c000491b200c2802006a3602002014413f4d0d08200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a290000370300200241f8006a41186a200941186a290000370300200241f8006a41206a200941206a290000370300200241f8006a41286a200941286a290000370300200241f8006a41306a200941306a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf012118410221170c040b200241b8016a2001103020022802b8012215450d0720022902bc012118200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a2903003703002002200d2d00003a00b201200220022f008c023b01b001200220022903b801370378410021170c020b410121152001280200200b28020041014100200c28020010011a41002014470d050b200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a290300370300200220022f008c023b01b001200220022903b8013703782002200d2d00003a00b2012014ad22044220862004842118410321170b0b200d20022d00b2013a0000200241b8016a41086a2214200241f8006a41086a22192903003703002005200241f8006a41106a221a290300370300200241b8016a41186a2216200241f8006a41186a221b290300370300200241b8016a41206a221c200241f8006a41206a290300370300200241b8016a41286a221d200241f8006a41286a290300370300200241b8016a41306a221e200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241f4006a41026a221f200d2d00003a0000200241386a41086a22202014290300370300200241386a41106a22212005290300370300200241386a41186a22222016290300370300200241386a41206a2223201c290300370300200241386a41286a221c201d290300370300200241386a41306a221d201e290300370300200220022f018c023b0174200220022903b80137033820142018370300200720022f01743b0000200741026a201f2d00003a000020052002290338370000200541086a2020290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201c290300370000200541306a201d290300370000200220173a00b801200220153602bc01200e2004370300200241106a200241b8016a10860120022d00102117200241b8016a411f6a221c200a411f6a2800003600002016200a41186a2900003703002005200a41106a2900003703002014200a41086a2900003703002002200a2900003703b80120174102460d04201241016a2115200241f8006a411f6a221d201c280000360000201b2016290300370300201a200529030037030020192014290300370300200220022903b801370378024020122013470d002010201520152010491b2213ad42247e2204422088a70d062004a722144100480d0602402012450d00200620112014101322060d010c090b201410122206450d080b200620116a221420173a0000201441206a201d280000360000201441196a201b290300370000201441116a201a290300370000201441096a2019290300370000201441016a2002290378370000201041026a2110201141246a21112015211220152003490d000b0b2000201336020420002006360200200041086a201536020020024190026a24000f0b2014450d00201510140b2002418c026a41026a20022d00b2013a0000200241b8016a41086a2205200241f8006a41086a290300370300200241b8016a41106a2214200241f8006a41106a290300370300200241b8016a41186a220c200241f8006a41186a290300370300200241b8016a41206a200241f8006a41206a290300370300200241b8016a41286a200241f8006a41286a290300370300200241b8016a41306a200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241023a0010200241b8016a411f6a200a411f6a280000360000200c200a41186a2900003703002014200a41106a2900003703002005200a41086a2900003703002002200a2900003703b8010b2000410036020002402012450d00200621050340024020052d0000450d00200541086a280200450d00200541046a28020010140b200541246a21052011415c6a22110d000b0b02402013450d00200610140b20024190026a24000f0b1010000b100f000b201441041016000b201441011016000b9f0204017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1000200341086a20052903003703002003200329031037030002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012201417f460d012001410f4d0d01200341186a290300210420032903102106200342003703182003420037031020034110200341106a4110411010012201417f460d012001410f4d0d0120032903102107200041206a200341186a290300370300200041186a2007370300200041106a200437030020002006370308420121040b20002004370300200341206a24000f0b41b185c00041331015000b9d0705017f017e047f017e027f230041d0006b2203240042002104200341c0006a41086a220542003703002003420037034020012002200341c0006a1000200341206a41086a20052903003703002003200329034037032002400240200341206a41104184a1c100410041001001417f460d00200342103702342003200341206a360230200341186a200341306a101b2003280218450d01200328021c2106200341003a0040200341386a2201200128020022012003280230220720032802342208200341c0006a41012001100141016a41014b22026a22013602002002450d01024002400240024020032d0040220541037122024102460d0020024101460d0120020d022005410276ad2104420021090c030b20034100360240200320053a0040200341386a2202410020072008200341c0006a41017241032001100122012001417f461b22014103200141034922011b20022802006a36020020010d042003280240410276ad2104420021090c020b200341003b0140200320053a0040200341386a200120072008200341c0006a41017241012001100141016a220241014b6a36020020024102490d0320032f0140410276ad2104420021090c010b024002400240024020054102762202450d0020024104460d012002410c470d032003420037034820034200370340200341306a41086a410020072008200341c0006a41102001100122022002417f461b22024110200241104922021b20016a36020020020d06200341c0006a41086a29030021090c020b20034100360240200341386a410020072008200341c0006a41042001100122022002417f461b22024104200241044922021b20016a36020020020d0520033502402104420021090c030b4200210920034200370340200341306a41086a410020072008200341c0006a41082001100122022002417f461b22024108200241084922021b20016a36020020020d040b200329034021040c010b200241046a220a41104b0d02200341306a41086a210b4200210442002109410021020340200341003a0040200b200120072008200341c0006a41012001100141016a41014b22056a22013602002005450d03200341086a20033100404200200241037441f8007110fa01200341086a41086a290300200984210920032903082004842104200241016a220241ff0171200a490d000b0b20002004370308200041106a2009370300200041186a2006360200420121040b20002004370300200341d0006a24000f0b41b185c00041331015000b930c03057f017e027f230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020022034101460d00024020034102460d0020034103470d0220012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41003a00002001280200210620022001280208220136020c2002410c6a2002101c20022802042205200428020022036b20014f0d05200320016a22042003490d1520054101742203200420042003491b22034100480d152005450d0a20022802002005200310132204450d0b0c180b200141086a280200210320012802042105410110122201450d0d20024101360204200241086a22042004280200220641016a36020020022001360200200120066a41033a00002005290300210720022802042205200428020022016b41084f0d02200141086a22042001490d1420054101742201200420042001491b22014100480d142005450d0520022802002005200110132204450d060c120b20012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d02200341206a22042003490d1320054101742203200420042003491b22034100480d132005450d0620022802002005200310132204450d070c0f0b200141086a280200210320012802042101410110122204450d0d200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a2002101c2003450d1720034105742108200241086a220928020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d1720054101742204200320032004491b22044100480d172005450d01200228020020052004101322060d020c0e0b20022802002106200421030c020b200410122206450d0c0b200220043602042002200636020020092802002103200421050b2009200341206a2204360200200620036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200841606a22080d000c180b0b200228020021040c100b200228020021040c0d0b200228020021040c130b2001101222040d0c0b200141011016000b2003101222040d080b200341011016000b2003101222040d0d0b200341011016000b200441011016000b410141011016000b410141011016000b410141011016000b410141011016000b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a200737000002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110132204450d020c040b200228020021040c040b2001101222040d020b200141011016000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c020b2002200336020420022004360200200241086a28020021030b200241086a200320016a360200200420036a2006200110f5011a0b20002002290300370200200041086a200241086a280200360200200241106a24000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d0220042002412010f701450d02200441206a22062002460d0220062002412010f701450d02200441c0006a22062002460d0220062002412010f701450d02200441e0006a22062002460d0220044180016a210420062002412010f7010d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d0220042002412010f701450d022006200441206a2204470d000b0b41000f0b20050b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41023602002004412c6a4102360200200441013602342004420237021c200441b4c4c1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a41c4c4c100102c000bff1002177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b200021090c010b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d020b410221000240024002400240024002400240024002400240200d41776a220f411e4b0d0041f400210e0240200f0e1f09000303040303030303030303030303030303030303030303020303030302090b41ee00210e0c080b200d41dc00470d010b0c050b200d10c3010d03200d41ffff034b0d01200d4180fe0371410876211141d8a4c100211241002113410021000c020b41f200210e0c040b0240200d41ffff074b0d00200d4180fe037141087621164193aac100211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d05201341a8a5c1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d012010211320142112201441a8a5c100470d030c010b2010211320142112201441a8a5c100470d010b200d41ffff0371210e41d7a7c10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b024020104193aac100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41e0bdc2001018000b200f410173210f20004193aac100470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021039000b20132010103a000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841d5aac1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441d5aac100470d030c010b2010211820142117201441d5aac100470d010b200d41ffff0371210e41f3abc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041f0aec100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41e0bdc2001018000b200f410173210f200041f0aec100470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011039000b20182010103a000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c0240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b024020072802002004200a6a200b200a6b200828020028020c1101000d0002400340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d092019422088a741ff0171417f6a220041044b0d09024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c0008421190c030b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f832019428080808070838421190c010b201942ffffffff8f60834280808080108421190b410321000b2007280200200a2008280200280210110000450d000c020b0b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d030c040b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a10c401000b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a200310c501000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b110020012000280200200028020410c7010b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241b8bcc20036020420024184a1c100360200200210e901000bdc0701067f230041106b220324002003200136020c2003410c6a2002101c02400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101322060d020c070b200228020021060c020b200710122206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101322060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101322060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101322060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101322060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810122206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810122206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810122206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810122206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011016000b200841011016000b200841011016000b200841011016000b200841011016000bac0201027f230041206b2202240002400240410610122203450d00200341046a41002f00b689403b0000200341002800b2894036000020034106410c10132203450d01200320013600060240024002402003410a4184a1c100410041001001417f460d00200241186a4200370300200241106a4200370300200241086a4200370300200242003703002003410a20024120410010012201417f460d022001411f4d0d0220002002290300370000200041186a200241186a290300370000200041106a200241106a290300370000200041086a200241086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031014200241206a24000f0b41b185c00041331015000b410641011016000b410c41011016000b8f0803037f017e067f230041c0006b22012400200141306a41086a220242003703002001420037033041bb89c000411d200141306a1000200141106a41086a200229030037030020012001290330370310024002400240024002400240024002400240200141106a41104184a1c100410041001001417f460d00200142103702042001200141106a360200200141306a2001103020012802302202450d0402402001280234450d00200210140b20002802002202450d01200041046a280200450d0120021014200141c0006a24000f0b0240024020002802002203450d00200029020421040c010b410610122200450d06200041046a41002f00b689403b0000200041002800b2894036000020004106410c10132200450d07200041086a41002d00ba89403a0000200041002f00b889403b000602400240200041094184a1c100410041001001417f460d00200141003602104101210320004109200141106a41044100100141016a41044d0d0720012802102105200010142005450d012005ad4205862204422088a70d042004a722004100480d04200010122203450d0a41002102200321000340200141106a2002102e200041186a200141106a41186a290000370000200041106a200141106a41106a290000370000200041086a200141106a41086a29000037000020002001290010370000200041206a21002005200241016a2202470d000c020b0b2000101441012103410021050b2005ad220442208620048421040b200141003602182001420137031020012004422088a72200360230200141306a200141106a101c024002402000450d00200041057421064100200141106a41086a28020022026b210720012802102108200128021421092003210003400240200920076a411f4b0d00200241206a22052002490d052009410174220a20052005200a491b22054100480d05024002402009450d00200820092005101322080d010c080b200510122208450d070b200521090b200820026a22052000290000370000200541186a200041186a290000370000200541106a200041106a290000370000200541086a200041086a290000370000200741606a2107200241206a2102200041206a2100200641606a22060d000b200141186a200236020020012009360214200120083602100c010b200141186a280200210220012802142109200128021021080b200141306a41086a220042003703002001420037033041bb89c000411d200141306a1000200141106a41086a200029030037030020012001290330370310200141106a411020082002100202402009450d00200810140b2004a7450d00200310140b200141c0006a24000f0b1010000b200541011016000b41b185c00041331015000b41b185c00041331015000b410641011016000b410c41011016000b200041011016000bdb0403027f017e0d7f230041d0006b22022400200241086a2001101b02400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011016000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a360200200f0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101322060d010c060b200e10122206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d00200610140b200241d0006a24000f0b1010000b200e41011016000b130020004106360204200041ecc4c1003602000b130020004109360204200041968ec0003602000b130020004101360204200041b4c8c1003602000bd80101027f024002400240024002402000280200220141064b0d0020010e0704040104020403040b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d00200128020010140b0240200141106a280200450d002001410c6a28020010140b200141186a2101200241686a22020d000b0b200041086a280200450d03200041046a28020010140f0b200041086a280200450d02200028020410140f0b200041086a280200450d01200028020410140f0b200041086a280200450d00200028020410140f0b0b8b2f09247f047e0f7f017e087f027e107f027e1a7f230041d0026b2204240002400240024020014115490d0041012105410221064103210741322108413021094108210a4158210b4150210c417f210d4138210e410b210f4128211041202111411821124110211341afe000211441807f2115410021164160211741682118417021194178211a41c000211b41c800211c41d000211d41d800211e4101211f41012120410021210c010b410021230c010b410121230b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024020230e020001010b20014102490d0c41a07f2158200041a07f6a21594101215a4100215b4130215c4108215d4158215e4150215f417f21604128216141182162412021634110216441a87f2165418801216641d8002167418001216841d000216941f800216a41c800216b41f000216c41c000216d41e800216e4138216f41e000217041012171410121210c010b02400240024020210e03000d01010b201f20207121220c010b2049204c20096c6a212302400340204b204c200d6a224c4f0d012023290300212a2023200a6a21252023200c6a22242123202a2045542025290300222a204454202a2044511b0d000c100b0b2000204537030020002044370308203d2046290300370300203f204729030037030020412048290300370300200020042903003703102001204b20056a2223490d082000202320096c6a2100200120236b22014115490d020b2003450d090240201f2005710d002000200110362003200d6a21030b2001200676222320076c21242023200574212541002126024020012008490d00200620052000202320096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b222c1b202c20282029202c1b2228202720096a290300222954202a202b202c1b222a2027200e6a290300222b54202a202b511b222d1b200020232023200d6a222e202c1b222f20096c6a222729030020292028202d1b542027200a6a2903002228202b202a202d1b222a542028202a511b22306a2000202520096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22316a2028202920311b222820002025200572223220096c6a2227290300222954202a202b20311b222a2027200a6a290300222b54202a202b511b22336a200020252025200d6a223420311b223520096c6a22272903002029202820331b542027200a6a2903002228202b202a20331b222a542028202a511b22366a2000202420096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22376a2028202920371b2228202720096a290300222954202a202b20371b222a2027200e6a290300222b54202a202b511b22276a200020242024200d6a223820371b223920096c6a22262903002029202820271b542026200a6a2903002228202b202a20271b222a542028202a511b223a6a21262039202420056a2038202420371b20271b203a1b2124203520322034202520311b20331b20361b2125202f202320056a202e2023202c1b202d1b20301b21230b20262000202320096c6a222729030022282000202520096c6a222c2903002229542027200a6a290300222a202c200a6a290300222b54202a202b511b22276a2028202920271b22282000202420096c6a222c290300222954202a202b20271b222a202c200a6a290300222b54202a202b511b222c6a212602400240024020002025202320271b223920096c6a223129030020292028202c1b5a2031200a6a2903002228202b202a202c1b222a5a2028202a511b0d00202620056a2226200f4b0d0120264521230c020b20242023202520271b202c1b213920264521230c010b024020012005762224450d002000200120096c6a200c6a2123200021250340200441a0026a20106a2227202520106a222c290300370300200441a0026a20116a2226202520116a2231290300370300200441a0026a20126a2237202520126a222d290300370300200441a0026a20136a2233202520136a222e290300370300200441a0026a200a6a222f2025200a6a2230290300370300200420252903003703a0022023200a6a2232290300212a202320136a2234290300212b202320126a22352903002128202320116a223629030021292023290300213b202c202320106a223829030037030020312029370300202d2028370300202e202b3703002030202a3703002025203b370300203820272903003703002036202629030037030020352037290300370300203420332903003703002032202f290300370300202320042903a002370300202520096a21252023200c6a21232024200d6a22240d000b0b20012039200d736a2139410121230b02402022200d73202345722005710d002000200110370d0c0b024002402002450d00203920014f0d0a2000203920096c6a22232903002002290300542023200a6a2225290300222a2002200a6a290300222b54202a202b511b0d01200441a0026a20106a223c200020106a223d290300370300200441a0026a20116a223e200020116a223f290300370300200441a0026a20126a2240200020126a2241290300370300200441a0026a20136a2242200020136a2224290300370300200441a0026a200a6a22432000200a6a2227290300370300200420002903003703a0022025290300212a202320136a222c2903002144202320126a2226290300212b202320116a2231290300212820232903002145203d202320106a2237290300370300203f20283703002041202b370300202420443703002027202a370300200020453703002037203c2903003703002031203e29030037030020262040290300370300202c204229030037030020252043290300370300202320042903a0023703002027290300214420002903002145200420126a2246203d290300370300200420136a2247203f2903003703002004200a6a22482041290300370300200420242903003703002000200c6a2149200020096a214a4100214b41002001224c200d6a22254f0d040c100b2001450d070b203920014f0d05200441a0026a20106a2234200020106a224d290300370300200441a0026a20116a2235200020116a224e290300370300200441a0026a20126a2236200020126a224f290300370300200441a0026a20136a2238200020136a2250290300370300200441a0026a200a6a221f2000200a6a2251290300370300200420002903003703a0022000203920096c6a2223290300212a2023200a6a2225290300212b202320136a22242903002128202320126a22272903002129202320116a222c290300213b204d202320106a2226290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a37030020262034290300370300202c203529030037030020272036290300370300202420382903003703002025201f290300370300202320042903a0023703002051290300212a2000290300212b200420126a2252204d290300370300200420136a2253204e2903003703002004200a6a2254204f29030037030020042050290300370300200020096a21314100212002402001200d6a2224450d00203121230340202b20232903005a202a2023200a6a29030022285a202a2028511b0d01202320096a2123202020056a22202024490d000b0b2000200120096c6a21232024212502400340202321272025223a20204d0d01203a200d6a2125202b2027200c6a222329030054202a2027200b6a290300222854202a2028511b450d000b0b203a2020490d042024203a490d034180012130410021264100212e4100212c4100213341800121322031202020096c6a225521310340202720316b222320096e21250240024002400240024002400240202320144b22390d00202520156a2025202e2026492033202c4922247222371b21232037450d012032202320241b21322023203020241b21300b2033202c470d020c010b2023202320057622326b21302033202c470d010b2032450d0141002125200441206a2233212c203121230340202c20253a0000202c202b20232903005a202a2023200a6a29030022285a202a2028511b6a212c202320096a21232032202520056a2225470d000b0b202e2026470d020c010b200441206a222c2133202e2026470d010b02402030450d002027200c6a212341002125200441a0016a222e21260340202620253a00002026202b202329030054202a2023200a6a290300222854202a2028511b6a21262023200c6a21232030202520056a2225470d000c020b0b200441a0016a2226212e0b02402026202e6b2223202c20336b2225202520234b1b222f450d002034203120332d000020096c6a222320106a2903003703002035202320116a2903003703002036202320126a2903003703002038202320136a290300370300201f2023200a6a290300370300200420232903003703a002203120332d000020096c6a22232027202e2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703000240202f2005460d004100212403402027202e20246a22372d0000200d7320096c6a22232031203320246a20056a222d2d000020096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703002031202d2d000020096c6a22232027203720056a2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a290300370300202420066a2123202420056a222521242023202f490d000b202e20256a212e203320256a21330b2027202e2d0000200d7320096c6a222320042903a002370300202320106a2034290300370300202320116a2035290300370300202320126a2036290300370300202320136a20382903003703002023200a6a201f290300370300202e20056a212e203320056a21330b2031203220096c6a20312033202c461b21312027201620306b20096c6a2027202e2026461b212720390d000b024002402033202c4f0d00034020342031202c200d6a222c2d000020096c6a222520106a22242903003703002035202520116a22262903003703002036202520126a22372903003703002038202520136a222d290300370300201f2025200a6a222e290300370300200420252903003703a0022027200c6a222329030021282027200b6a222f2903002129202720176a2230290300213b202720186a22322903002156202720196a2239290300215720242027201a6a22272903003703002026205737030020372056370300202d203b370300202e20293703002025202837030020272034290300370300203920352903003703002032203629030037030020302038290300370300202f201f290300370300202320042903a002370300202321272033202c490d000c020b0b20312123202e20264f0d0003402026200d6a22262d000021252034202320106a22242903003703002035202320116a222c2903003703002036202320126a22312903003703002038202320136a2237290300370300201f2023200a6a222d290300370300200420232903003703a00220272025200d7320096c6a222529030021282025200a6a22332903002129202520136a222f290300213b202520126a22302903002156202520116a223229030021572024202520106a2239290300370300202c2057370300203120563703002037203b370300202d202937030020232028370300203920342903003703002032203529030037030020302036290300370300202f20382903003703002033201f290300370300202520042903a002370300202320096a2123202e2026490d000b0b2000202a3703082000202b370300204d2052290300370300204e2053290300370300204f2054290300370300200020042903003703100240024002402001202320556b20096e20206a22254d0d002034204d2903003703002035204e2903003703002036204f29030037030020382050290300370300201f2051290300370300200420002903003703a0022000202520096c6a2223290300212a2023200a6a2224290300212b202320136a22272903002128202320126a222c2903002129202320116a2226290300213b204d202320106a2231290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a3703002031203429030037030020262035290300370300202c2036290300370300202720382903003703002024201f290300370300202320042903a002370300200120256b2224450d0120242025202520244b1b21272001200776212c202320096a21260240024020252024200d6a22014f0d002000202520022003103520232102202621000c010b20262001202320031035202521010b2027202c4f211f203a20204d2120200141154f0d02410021230c160b41b8c9c100202520011038000b41c8c9c1001018000b41002121410121230c130b410121230c120b410021230c110b41022121410121230c100b203a20241039000b2020203a103a000b41b8c9c100203920011038000b41a8c9c100410041001038000b20232001103a000b41e0c9c100203920011038000b20002001103b200441d0026a24000f0b2071205a6a2127024020002071205c6c6a2224205f6a2223290300202429030022285a2024205e6a290300222b2024205d6a2225290300222a5a202b202a511b0d00200420626a2231202420616a222c290300370300200420646a2237202420636a22262903003703002004205d6a222d202420626a2233290300370300200420242903103703002024202329030037030020252023205d6a290300370300202420646a202320646a2903003703002033202320626a2903003703002026202320636a290300370300202c202320616a2903003703002000207120606a222c205c6c6a21260240024002400240202c450d00205b212520592123202420586a29030020285a202420656a290300222b202a5a202b202a511b0d030340202320666a202320676a290300370300202320686a202320696a2903003703002023206a6a2023206b6a2903003703002023206c6a2023206d6a2903003703002023206e6a2023206f6a290300370300202320706a2023205c6a2903003703002025205a460d022023290300212b2023205d6a2124202520606a21252023205f6a2123202b2028542024290300222b202a54202b202a511b0d000c030b0b4100212c0c020b410021250b20002025205c6c6a21262025212c0b202620283703002026202a3703082000202c205c6c6a222320616a2031290300370300202320636a2037290300370300202320626a202d290300370300202320042903003703100b205b205a6a215b2059205c6a21592027217120272001470d010b200441d0026a24000f0b41012121410121230c060b203c204a204b20096c6a222320106a2225290300370300203e202320116a22272903003703002040202320126a222c2903003703002042202320136a222629030037030020432023200a6a2231290300370300200420232903003703a002202420096a2237290300212a2024200e6a222d290300212b2024201b6a223329030021282024201c6a222e29030021292024201d6a222f290300213b20252024201e6a22242903003703002027203b370300202c2029370300202620283703002031202b3703002023202a3703002024203c290300370300202f203e290300370300202e204029030037030020332042290300370300202d2043290300370300203720042903a002370300204b20056a224b204c200d6a22254f0d010b204a204b20096c6a212302400340202329030020455a2023200a6a290300222a20445a202a2044511b450d01202320096a2123204b20056a224b2025490d000b410221210c020b410221210c020b410221210c020b410121230c020b410121230c010b410121230c000b0b86090b107f017e017f017e017f017e017f017e017f017e017f230041306b22022400024002400240024020014108490d00200141017641feffffff07712203417f6a220420014f0d032001410d74200173220541117620057322054105742005732206417f2001417f6a677622077122054100200120052001491b6b220520014f0d01200241286a22082000200441306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e2903003703002013201029030037030020052002290300370300200320014f0d022006410d7420067322044111762004732204410574200473220620077122044100200120042001491b6b220520014f0d01200241286a22082000200341306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e29030037030020132010290300370300200520022903003703002003410172220420014f0d032006410d742006732205411176200573220541057420057320077122054100200120052001491b6b220520014f0d01200241286a22032000200441306c6a220141286a2204290300370300200241206a2206200141206a2207290300370300200241186a2208200141186a2209290300370300200241106a220a200141106a220b290300370300200241086a220c200141086a220d290300370300200220012903003703002000200541306c6a22002903002112200041086a22052903002114200041106a220e2903002116200041186a220f2903002118200041206a2210290300211a2004200041286a22112903003703002007201a37030020092018370300200b2016370300200d2014370300200120123703002011200329030037030020102006290300370300200f2008290300370300200e200a2903003703002005200c290300370300200020022903003703000b200241306a24000f0b41b8c9c100200520011038000b200321040b41a8c9c100200420011038000bf30b05087f027e107f017e017f230041306b22022400200041c07e6a2103200041506a21044100210520014132492106410121070240024002400340024002400240200720014f0d002004200741306c6a210803402008290300200841306a220929030054200841086a290300220a200841386a290300220b54200a200b511b0d0220092108200741016a22072001490d000b0b410021082007200146210920060d030c010b410121082007200146210920060d020b20072001460d012007417f6a220920014f0d022008450d032000200941306c6a2208290300210a20082000200741306c220c6a2209290300370300200241286a220d200841286a220e290300370300200241206a220f200841206a2210290300370300200241186a2211200841186a2212290300370300200241106a2213200841106a2214290300370300200241086a2215200841086a22162903003703002016200941086a22172903003703002014200941106a22182903003703002012200941186a22192903003703002010200941206a221a290300370300200e200941286a221b2903003703002002200a370300201b200d290300370300201a200f29030037030020192011290300370300201820132903003703002017201529030037030020092002290300370300024020074102490d0020002007417e6a220f41306c6a220d2903002008290300221c5a200d41086a221d290300220b2016290300220a5a200b200a511b0d002008200d2903003703002016201d2903003703002008290310210b2014200d41106a2903003703002011200e29030037030020132010290300370300201520122903003703002012200d41186a2903003703002010200d41206a290300370300200e200d41286a2903003703002002200b3703000240024002400240200f450d0020002007417d6a221641306c6a2208290300201c5a200841086a290300220b200a5a200b200a511b0d032003200c6a2108034020084188016a200841d8006a29030037030020084180016a200841d0006a290300370300200841f8006a200841c8006a290300370300200841f0006a200841c0006a290300370300200841e8006a200841386a290300370300200841e0006a200841306a2903003703002016450d022008290300210b200841086a210d200841506a21082016417f6a2116200b201c54200d290300220b200a54200b200a511b0d000b201641016a210f0c020b4100210f0c020b4100210f0b2000200f41306c6a210d0b200d201c370300200d200a3703082000200f41306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b200541016a21050240200120076b220e4102490d002009290300221c20092903305a2017290300220a200941386a290300220b5a200a200b511b0d002009200941306a22162903003703002017201641086a2903003703002009290310210b2018201641106a2903003703002011201b2903003703002013201a290300370300201520192903003703002019201641186a290300370300201a201641206a290300370300201b201641286a2903003703002002200b370300410121100240200e4103490d00201c20092903605a200a200941e8006a290300220b5a200a200b511b0d00200941e0006a21084103210d41022117034020092017221041306c6a221641786a200841286a290300370300201641706a200841206a290300370300201641686a200841186a290300370300201641606a200841106a290300370300201641586a200841086a290300370300201641506a2008290300370300200d200e4f0d01200d41306c2108200d2117200d41016a210d201c200920086a220829030054200a200841086a290300220b54200a200b511b0d000b0b2016201c3703002016200a3703082009201041306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b20054105490d000b410021090b200241306a240020090f0b41a8c9c100200920011038000b41b8c9c100200720011038000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41033602002003411c6a4102360200200341033602242003420237020c200341a8bcc200360208200320033602282003200341046a3602202003200341206a360218200341086a2000102c000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41033602002002411c6a4102360200200241033602242002420237020c200241c8bcc2003602082002200241046a360228200220023602202002200241206a360218200241086a41d8bcc200102c000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41033602002002411c6a4102360200200241033602242002420237020c200241e8bcc2003602082002200241046a360228200220023602202002200241206a360218200241086a41f8bcc200102c000bdd0b09167f017e037f017e017f017e017f027e0c7f230041306b2202240002400240024020014101762203450d00417f210441022105413021064108210741282108412021094118210a4110210b4100210c0c010b4100210d0c010b4101210d0b03400240024002400240024002400240024002400240024002400240200d0e020001010b4102212420014102490d01417f2125412821264120212741182128411021294108212a4130212b4101212c2001212d4101210c0c0b0b02400240200c0e020001010b200320046a2203210d0340200d410174221a41017221230240201a20056a221a20014f0d00202320014f0d06201a20232000201a20066c6a22172903002000202320066c6a221929030054201720076a2903002218201920076a290300221c542018201c511b1b21230b0240202320014f0d00200d20014f0d042000202320066c6a221a2903002000200d20066c6a220d2903005a201a20076a22192903002218200d20076a2217290300221c5a2018201c511b0d00200220086a220e200d20086a220f290300370300200220096a2210200d20096a22112903003703002002200a6a2212200d200a6a22132903003703002002200b6a2214200d200b6a2215290300370300200220076a221620172903003703002002200d29030037030020192903002118201a200b6a221b290300211c201a200a6a221d290300211e201a20096a221f2903002120201a2903002121200f201a20086a2222290300370300201120203703002013201e3703002015201c37030020172018370300200d20213703002022200e290300370300201f2010290300370300201d2012290300370300201b201429030037030020192016290300370300201a20022903003703002023210d0c010b0b20030d074100210d0c0c0b202d20256a222d20014f0d05200220266a220e200020266a221a290300370300200220276a220f200020276a2223290300370300200220286a2210200020286a2217290300370300200220296a2211200020296a22192903003703002002202a6a22122000202a6a2213290300370300200220002903003703002000202d202b6c6a220d2903002118200d202a6a2214290300211c200d20296a2215290300211e200d20286a22162903002120200d20276a221b2903002121201a200d20266a221d29030037030020232021370300201720203703002019201e3703002013201c37030020002018370300201d200e290300370300201b200f290300370300201620102903003703002015201129030037030020142012290300370300200d20022903003703004100210d0340200d202c74221a202c7221230240201a20246a221a202d4f0d002023202d4f0d06201a20232000201a202b6c6a221729030020002023202b6c6a2219290300542017202a6a29030022182019202a6a290300221c542018201c511b1b21230b02402023202d4f0d00200d202d4f0d0420002023202b6c6a221a2903002000200d202b6c6a220d2903005a201a202a6a22192903002218200d202a6a2217290300221c5a2018201c511b0d00200e200d20266a2213290300370300200f200d20276a22142903003703002010200d20286a22152903003703002011200d20296a2216290300370300201220172903003703002002200d29030037030020192903002118201a20296a221b290300211c201a20286a221d290300211e201a20276a221f2903002120201a29030021212013201a20266a2222290300370300201420203703002015201e3703002016201c37030020172018370300200d20213703002022200e290300370300201f200f290300370300201d2010290300370300201b201129030037030020192012290300370300201a20022903003703002023210d0c010b0b202d202c4b0d070b200241306a24000f0b4180cac100200d20011038000b4180cac100200d202d1038000b41f0c9c100202320011038000b41f0c9c1002023202d1038000b41b8c9c100202d20011038000b4100210c0c010b4101210c0c010b4101210d0c020b4101210d0c010b4101210d0c000b0bf80303027f027e027f230041206b220224000240024002400240412010122203450d0020032000290020370000200341186a200041386a290000370000200341106a200041306a290000370000200341086a200041286a2900003700002003412041c00010132203450d0120032000290040370020200341386a200041d8006a290000370000200341306a200041d0006a290000370000200341286a200041c8006a290000370000200041086a290300210420002903002105200341c00041800110132203450d0220032005370040200341c8006a200437000020032000290310370050200341d8006a200041186a2903003700000240024020002d00604101470d00200341e0006a41013a0000200341800141800210132203450d05200341f9006a200041f9006a290000370000200341f1006a200041f1006a290000370000200341e9006a200041e9006a2900003700002003200041e1006a29000037006141810121000c010b200341e0006a41003a000041e10021000b2001280204210620012802002101200241106a41086a220742003703002002420037031020012006200241106a1000200241086a2007290300370300200220022903103703002002411020032000100220031014200241206a24000f0b412041011016000b41c00041011016000b41800141011016000b41800241011016000b890201027f230041306b22022400024002400240410f10122203450d00200341076a41002900ce9140370000200341002900c791403700002003410f411e10132203450d012003200136000f200241206a41086a220142003703002002420037032020034113200241206a1000200241086a20012903003703002002200229032037030002400240200241104184a1c100410041001001417f460d002002421037021420022002360210200241206a200241106a103020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b20031014200241306a24000f0b410f41011016000b411e41011016000b41b185c00041331015000bc30609047f017e017f017e037f017e047f017e017f23004180066b22022400200241c8026a2001103f200241d8026a280200210320022802d402210420022802d002210520022903c802210620024190056a200241dc026a41e40010f5011a024002400240024002400240024002400240024002402005450d00200241086a20024190056a41e40010f5011a2002200110402002280200450d0820022802042207ad42e0017e2208422088a70d032008a72209417f4c0d032009450d0120091012220a450d042007450d020c050b2000410036020820024180066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081016000b200241c8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241c8026a2001104120024190056a200241c8026a41f00010f5011a200241c8026a41f0006a2903002108200241a8046a200b41e80010f5011a20084203510d02200e41016a2110200241d8016a20024190056a41f00010f5011a200241f0006a200241a8046a41e80010f5011a0240200e200f470d00200d20102010200d491b220fad42e0017e2211422088a70d052011a722124100480d050240200e450d00200a200920121013220a0d010c070b20121012220a450d060b200a20096a200241d8016a41f00010f501220e41f0006a2008370300200e41f8006a200241f0006a41e80010f5011a200c4280808080107c210c200d41026a210d200941e0016a21092010210e20102007490d000b200a450d020b200241c8026a200241086a41e40010f5011a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241c8026a41e40010f5011a200041fc006a200c200fad84370200200041f8006a200a36020020024180066a24000f0b0240200e450d00200a4188016a2110034020101042201041e0016a2110200941a07e6a22090d000b0b200f450d00200a10140b2000410036020802402003450d00200341246c2110200521090340024020092d0000450d00200941086a280200450d00200941046a28020010140b200941246a21092010415c6a22100d000b0b02402004450d00200510140b20024180066a24000f0b1010000b201241081016000b9d2107077f017e037f017e0a7f027e0b7f23004180036b22022400200241a8026a41186a22034200370300200241a8026a41106a22044200370300200241a8026a41086a22054200370300200242003703a802200241a8026a2001280200220620012802042207412020074120491b220810f5011a2001200720086b3602042001200620086a360200024002402007411f4d0d00200241e8016a41186a22072003290300370300200241e8016a41106a22082004290300370300200241e8016a41086a22062005290300370300200220022903a8023703e801200241a8016a41186a2007290300370300200241a8016a41106a2008290300370300200241a8016a41086a2006290300370300200220022903e8013703a801410121070c010b410021070b200241a8026a41186a2208200241a8016a41186a290300370300200241a8026a41106a2206200241a8016a41106a290300370300200241a8026a41086a2203200241a8016a41086a290300370300200220022903a8013703a80202400240024002400240024002400240024002400240024002400240024002400240024002402007450d00200241206a41186a2008290300370300200241206a41106a2006290300370300200241206a41086a2003290300370300200220022903a802370320200241106a20011081012002290310a7450d0120022903182109200241a8026a41186a22054200370300200241a8026a41106a220a4200370300200241a8026a41086a220b4200370300200242003703a802200241a8026a20012802002204200141046a22032802002207412020074120491b220610f5011a2003200720066b22083602002001200420066a22063602002007411f4d0d02200241e8016a41186a22072005290300370300200241e8016a41106a2204200a290300370300200241e8016a41086a2205200b290300370300200220022903a8023703e801200241c0006a41186a2007290300370300200241c0006a41106a2004290300370300200241c0006a41086a2005290300370300200220022903e801370340200241a8026a2008412020084120491b22076a41004100412020076b2007411f4b1b10f4011a200241a8026a2006200710f5011a2003200820076b3602002001200620076a3602002008411f4d0d03200241e8016a41186a2207200241a8026a41186a290300370300200241e8016a41106a2208200241a8026a41106a290300370300200241e8016a41086a2206200241a8026a41086a290300370300200220022903a8023703e801200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2006290300370300200220022903e801370360200241086a200110402002280208450d0c200228020c220cad42247e220d422088a70d0f200da72207417f4c0d0f2007450d0420071012220e450d06200c450d050c070b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b4104210e200c0d020b410021164200210d0c020b200741041016000b200241a8026a41106a2107200241a8026a410172210f200241e8016a41116a2110200241b7026a211120024180016a4101722103200141046a210b200241fc026a41026a2112200241f0026a2113200241a8026a41076a21144200210d41002115410021084100210a200c21160340200b2802002106200241003a00a802200241a8026a200128020022172006410047220410f5011a20062004490d06200b200620046b22053602002001201720046a22043602002006450d0320022d00a802220641034b0d030240024002400240024002400240024020060e0400030102000b2002200110402002280200450d0a20022802042206417f4c0d0f2006450d0320061080012205450d1120052001280200200b2802002204200620042006491b220410f5011a200b28020022172004490d12200b201720046b3602002001200128020020046a36020020042006460d040c090b200241a8026a2005412020054120491b22066a41004100412020066b2006411f4b1b10f4011a200241a8026a2004200610f5011a200b200520066b3602002001200420066a3602002005411f4d0d09200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a2d00003a0000200220022f00a8023b01a002200220112900003703e8012002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021182010411f6a200241a8026a411f6a290000370000201041186a200241a8026a41186a290000370000201041106a2007290000370000201041086a200241a8026a41086a290000370000201020022900a802370000410121170c040b200242003703a802200241a8026a20042005410820054108491b220610f5011a200b200520066b22173602002001200420066a2204360200200541074d0d0820022903a8022119200241a8026a201741c000201741c000491b22066a4100410041c00020066b2006413f4b1b10f4011a200241a8026a2004200610f5011a200b201720066b3602002001200420066a3602002017413f4d0d08200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a290000370300200241e8016a41186a201141186a290000370300200241e8016a41206a201141206a290000370300200241e8016a41286a201141286a290000370300200241e8016a41306a201141306a2d00003a0000200220022f00a8023b01a002200220112900003703e801410221172002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021180c040b200241a8026a2001107d20022802a8022205450d0720022902ac022118200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220122d00003a00a202200220022f00fc023b01a002200220022903a8023703e801410021170c020b4101210541002006470d050b200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220022f00fc023b01a002200220022903a8023703e801200220122d00003a00a2022006ad22194220862019842118410321170b0b201220022d00a2023a0000200241a8026a41086a2206200241e8016a41086a221a2903003703002007200241e8016a41106a221b290300370300200241a8026a41186a2204200241e8016a41186a221c290300370300200241a8026a41206a221d200241e8016a41206a290300370300200241a8026a41286a221e200241e8016a41286a290300370300200241a8026a41306a221f200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241e4016a41026a222020122d00003a0000200241a8016a41086a22212006290300370300200241a8016a41106a22222007290300370300200241a8016a41186a22232004290300370300200241a8016a41206a2224201d290300370300200241a8016a41286a221d201e290300370300200241a8016a41306a221e201f290300370300200220022f01fc023b01e401200220022903a8023703a80120062018370300200f20022f01e4013b0000200f41026a20202d00003a0000200720022903a801370000200741086a2021290300370000200741106a2022290300370000200741186a2023290300370000200741206a2024290300370000200741286a201d290300370000200741306a201e290300370000200220173a00a802200220053602ac022013201937030020024180016a200241a8026a10860120022d0080012117200241a8026a411f6a221d2003411f6a2800003600002004200341186a2900003703002007200341106a2900003703002006200341086a290000370300200220032900003703a80220174102460d04200a41016a2105200241e8016a411f6a221e201d280000360000201c2004290300370300201b2007290300370300201a2006290300370300200220022903a8023703e8010240200a2016470d002015200520052015491b2216ad42247e2219422088a70d082019a722064100480d080240200a450d00200e200820061013220e0d010c0b0b20061012220e450d0a0b200e20086a220620173a0000200641206a201e280000360000200641196a201c290300370000200641116a201b290300370000200641096a201a290300370000200641016a20022903e801370000200d4280808080107c210d201541026a2115200841246a21082005210a2005200c490d000b0b200e450d03200241a8026a41186a2201200241206a41186a290300370300200241a8026a41106a2207200241206a41106a290300370300200241a8026a41086a2208200241206a41086a290300370300200241e8016a41086a2206200241c0006a41086a290300370300200241e8016a41106a2203200241c0006a41106a290300370300200241e8016a41186a2204200241c0006a41186a290300370300200241a8016a41086a2205200241e0006a41086a290300370300200241a8016a41106a220a200241e0006a41106a290300370300200241a8016a41186a220b200241e0006a41186a290300370300200220022903203703a802200220022903403703e801200220022903603703a8012000200d2016ad8437020c2000200e36020820002009370300200041146a20022903a8023702002000411c6a2008290300370200200041246a20072903003702002000412c6a2001290300370200200041346a20022903e8013702002000413c6a2006290300370200200041c4006a2003290300370200200041cc006a2004290300370200200041ec006a200b290300370200200041e4006a200a290300370200200041dc006a2005290300370200200041d4006a20022903a80137020020024180036a24000f0b2006450d00200510140b200241fc026a41026a20022d00a2023a0000200241a8026a41086a2201200241e8016a41086a290300370300200241a8026a41106a2207200241e8016a41106a290300370300200241a8026a41186a2206200241e8016a41186a290300370300200241a8026a41206a200241e8016a41206a290300370300200241a8026a41286a200241e8016a41286a290300370300200241a8026a41306a200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241023a008001200241a8026a411f6a2003411f6a2800003600002006200341186a2900003703002007200341106a2900003703002001200341086a290000370300200220032900003703a8020b0240200a450d00200e21010340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012008415c6a22080d000b0b2016450d00200e10140b2000410036020820024180036a24000f0b20042006103a000b1010000b100f000b200641041016000b200641011016000b20042017103a000bcb0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510f5011a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000322034103712204450d00024020044101460d0020044102470d0241002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810f5011a200141046a200620086b3602002001200520086a36020020070d0520022f010c20022d000e411074724108742003724102762101410121040c050b200241003a000b2002410b6a20052006410047220410f5011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b20034102762101410121040c030b200341044f0d004100210420024100360204200241046a200520064104200641044922081b220310f5011a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004103a000b20042006103a000bdd1204047f017e087f037e230041a0046b22022400200241186a200110400240024002400240024002400240024002402002280218450d00200241003a00880220024188026a2001280200220320012802042204410047220510f5011a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d008802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b200241b0016a2001107e02400240024020022d00b0014102460d00200241e0026a41206a200241b0016a41206a280200360200200241e0026a41186a200241b0016a41186a290300370300200241e0026a41106a200241b0016a41106a290300370300200241e0026a41086a200241b0016a41086a290300370300200220022903b0013703e00220024188026a41386a2207420037030020024188026a41306a2208420037030020024188026a41286a2209420037030020024188026a41206a220a420037030020024188026a41186a220b420037030020024188026a41106a220c420037030020024188026a41086a220d4200370300200242003703880220024188026a20012802002203200141046a220e280200220441c000200441c000491b220510f5011a200e200420056b3602002001200320056a3602002004413f4d0d0020024188036a41386a200729030037030020024188036a41306a200829030037030020024188036a41286a200929030037030020024188036a41206a200a29030037030020024188036a41186a200b29030037030020024188036a41106a200c29030037030020024188036a41086a200d290300370300200220022903880237038803200241086a20011081012002280208450d002002290310210f200141046a220e2802002104200241003a00880220024188026a200128020022072004410047220510f5011a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310088022210500d01200241003a00880220024188026a20052003410047220410f5011a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310088024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024188016a41206a200241e0026a41206a28020036020020024188016a41186a200241e0026a41186a29030037030020024188016a41106a200241e0026a41106a29030037030020024188016a41086a200241e0026a41086a290300370300200241c8036a41086a20024188036a41086a290300370300200241c8036a41106a20024188036a41106a290300370300200241c8036a41186a20024188036a41186a290300370300200241c8036a41206a20024188036a41206a290300370300200241c8036a41286a20024188036a41286a290300370300200241c8036a41306a20024188036a41306a290300370300200241c8036a41386a20024188036a41386a290300370300200220022903e0023703880120022002290388033703c8030c030b20052004103a000b20052004103a000b20042003103a000b200241b0016a41206a220420024188016a41206a280200360200200241b0016a41186a220520024188016a41186a290300370300200241b0016a41106a220320024188016a41106a290300370300200241b0016a41086a220e20024188016a41086a29030037030020024188026a41086a2207200241c8036a41086a29030037030020024188026a41106a2208200241c8036a41106a29030037030020024188026a41186a2209200241c8036a41186a29030037030020024188026a41206a220a200241c8036a41206a29030037030020024188026a41286a220b200241c8036a41286a29030037030020024188026a41306a220c200241c8036a41306a29030037030020024188026a41386a220d200241c8036a41386a29030037030020022002290388013703b001200220022903c80337038802024020064202520d0020004203370370200241a0046a24000f0b200241e0006a41206a2004280200360200200241e0006a41186a2005290300370300200241e0006a41106a2003290300370300200241e0006a41086a200e290300370300200241206a41086a2007290300370300200241206a41106a2008290300370300200241206a41186a2009290300370300200241206a41206a200a290300370300200241206a41286a200b290300370300200241206a41306a200c290300370300200241206a41386a200d290300370300200220022903b00137036020022002290388023703200b20024188026a2001107c20022d0088022101200241c8036a20024188026a41017241d70010f5011a02402001410a470d0020004203370370200241a0046a24000f0b200241b0016a200241c8036a41d70010f5011a200241c8036a41206a2204200241e0006a41206a280200360200200241c8036a41186a2205200241e0006a41186a290300370300200241c8036a41106a2203200241e0006a41106a290300370300200241c8036a41086a220e200241e0006a41086a29030037030020024188026a41086a2207200241206a41086a29030037030020024188026a41106a2208200241206a41106a29030037030020024188026a41186a2209200241206a41186a29030037030020024188026a41206a220a200241206a41206a29030037030020024188026a41286a220b200241206a41286a29030037030020024188026a41306a220c200241206a41306a29030037030020024188026a41386a220d200241206a41386a290300370300200220022903603703c80320022002290320370388022000200f370300200020022903c803370308200041106a200e290300370300200041186a2003290300370300200041206a2005290300370300200041286a2004280200360200200020022903880237022c200041346a20072903003702002000413c6a2008290300370200200041c4006a2009290300370200200041cc006a200a290300370200200041d4006a200b290300370200200041dc006a200c290300370200200041e4006a200d29030037020020004188016a20013a000020004180016a2010370300200020113703782000200637037020004189016a200241b0016a41d70010f5011a200241a0046a24000bf20301027f024002400240024002400240024002400240024020002d0000220141084b0d0020010e09090109090902030405090b200041086a2d00004102470d08200041106a280200450d082000410c6a28020010140f0b200041086a280200220141064b0d04024020010e0708080008060807080b200041106a280200450d072000410c6a28020010140f0b200041086a2d0000410c490d06200041106a280200450d062000410c6a28020010140f0b200041046a2802004102470d05200041086a22002802001042200028020010140f0b200041086a2d00004102470d040240200041106a280200450d002000410c6a28020010140b02402000411c6a280200450d00200041186a28020010140b200041286a280200450d04200041246a28020010140f0b200041086a2d00004104470d03200041d0006a280200450d03200041cc006a28020010140f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d00200128020010140b0240200141106a280200450d002001410c6a28020010140b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a28020010140f0b200041106a280200450d012000410c6a28020010140f0b200041106a280200450d002000410c6a28020010140f0b0bb12e07047f017e037f017e067f017e117f230041a0026b22012400200141b0016a41086a22024200370300200142003703b001418890c0004113200141b0016a1000200141386a41086a2002290300370300200120012903b0013703380240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141386a41104184a1c100410041001001417f460d00200141003a00b001200141386a4110200141b0016a41014100100141016a41014d0d0220012d00b0012102200141b0016a41086a22034200370300200142003703b001418890c0004113200141b0016a1000200141086a41086a2003290300370300200120012903b001370308200141086a411010032002450d00200141186a41086a220242003703002001420037031841bb89c000411d200141186a1000200141386a41086a200229030037030020012001290318370338200141386a41104184a1c100410041001001417f460d0d2001421037021c2001200141386a360218200141b0016a200141186a103020012802b0012204450d0320012902b4012105200141186a41086a220242003703002001420037031841bb89c000411d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41101003410610122202450d04200241046a41002f00b689403b0000200241002800b2894036000020024106410c10132202450d05200241086a41002d00ba89403a0000200241002f00b889403b000602400240200241094184a1c100410041001001417f460d00200141003602384101210620024109200141386a41044100100141016a41044d0d03200128023821072002101420074521082007450d012007ad4205862209422088a70d102009a722024100480d10200210122206450d0941002103200621020340200141386a2003102e200241186a200141386a41186a290000370000200241106a200141386a41106a290000370000200241086a200141386a41086a29000037000020022001290038370000200241206a21022007200341016a2203470d000c020b0b200210144101210841002107410121060b024020072005422088a7220a470d000240200a450d0020042006460d004100210b2006210220042103034020022003412010f7010d02200241206a2102200341206a2103200b41016a220b200a490d000b0b20080d0c200610142005a70d0d0c0e0b42002109200141186a41086a220242003703002001420037031841bf81c000410d200141186a1000200141b0016a41086a2002290300370300200120012903183703b0014100210202400240200141b0016a41104184a1c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a10242001280238220c450d08200129023c2209422088a7210d2009a721020c010b4104210c4100210d0b200141186a41026a2203200141286a41026a2d00003a0000200141386a41086a220b200141b0016a41086a290200370300200141386a41106a220a200141b0016a41106a280200360200200120012f00283b0118200120012902b001370338024002400240200d2002470d0020022009a7220e470d0c200241016a22082002490d112002410174220f20082008200f491b220ead42247e2210422088a70d112010a722084100480d112002450d01200c200241246c20081013220c450d020c0b0b2002210e0c0c0b20081012220c0d090b200841041016000b4190cac1001018000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b410641011016000b410c41011016000b41b185c00041331015000b200241011016000b20094280808080708321090b2009422088a7210d0b200c200d41246c22086a220241013a00002002410c6a2007360200200241086a2007360200200241046a2006360200200241036a20032d00003a0000200220012f01183b0001200241206a200a280200360200200241186a200b290300370200200241106a200129033837020020014100360210200142013703082001200d41016a2211360238200141386a200141086a101c024002402011450d00200841246a2108200c210203400240024020022d00004101470d002002410c6a2802002103200241046a28020021074100210b0c010b4101210b200241016a21070b200141386a41086a20033602002001200736023c2001200b360238200141186a200141386a10272001280218210a0240024002400240200128020c220b200141086a41086a220f28020022036b200141186a41086a28020022074f0d00200320076a22062003490d0a200b4101742212200620062012491b22124100480d0a200b450d012001280208200b2012101322060d020c1a0b200128020821060c020b201210122206450d180b2001201236020c200120063602082012210b0b200f200320076a2212360200200620036a200a200710f5011a0240200128021c450d00200a10140b200241246a21022008415c6a22080d000c020b0b200141106a2802002112200128020c210b200128020821060b200141186a41086a220242003703002001420037031841bf81c000410d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41102006201210020240200b450d00200610140b02402011450d00200d41246c41246a2103200c21020340024020022d0000450d00200241086a280200450d00200241046a28020010140b200241246a21022003415c6a22030d000b0b200e450d00200c10140b2005a7450d010b200410140b20001044200141186a41086a2202420037030020014200370318418080c0004115200141186a1000200141386a41086a2002290300370300200120012903183703380240200141386a41104184a1c100410041001001417f460d00200141003602b001200141386a4110200141b0016a41044100100141016a41044d0d1020012802b001220a450d0041002107034020072103411a10122202450d14200241186a41002f00effb403b0000200241106a41002900e7fb40370000200241086a41002900dffb40370000200241002900d7fb403700002002411a413410132202450d132002200336001a200141b0016a41086a22074200370300200142003703b0012002411e200141b0016a1000200141086a41086a2007290300370300200120012903b00137030802400240200141086a41104184a1c100410041001001417f460d002001420037034020014200370338200141086a4110200141386a411041001001220b417f460d17200b410f4d0d17200141386a41086a29030021052001290338210920074200370300200142003703b0012002411e200141b0016a1000200141186a41086a2007290300370300200120012903b001370318200141186a41101003420121100c010b420021100b200341016a21072002101402402009200584500d002010a7450d00200141386a41106a2005370300200141386a41086a2009370300200141386a41186a2003360200200141053a0038200141386a101a0b200a2007470d000b0b4108210742002105200141086a41086a220242003703002001420037030841d596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a104520012802382207450d0e200129023c21050b02402005422088a72213450d0020134106742103200741106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200341406a22030d000b0b02402005a7450d00200710140b200141086a41086a220242003703002001420037030841aef6c0004118200141086a1000200141186a41086a20022903003703002001200129030837031802400240200141186a41104184a1c100410041001001417f460d0020014100360238200141186a4110200141386a41044100100141016a41044d0d102001280238210a0c010b413c210a0b4108210742002105200141086a41086a220242003703002001420037030841d596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a104520012802382207450d0d200129023c21050b02402005422088a7220b450d00200b4106742103200741106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200341406a22030d000b0b02402005a7450d00200710140b200141086a41086a220242003703002001420037030841a4f1c000411b200141086a1000200141186a41086a20022903003703002001200129030837031841002102200a200b6c220341e4006e2114024002400240024002400240200141186a41104184a1c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a104620012802382215450d11200128023c2116200141c0006a28020022020d010c020b41042115410021164100450d010b201520024102746a2117200141dd016a2118200141286a41086a2119200341e3004b211a200141386a41206a211b200141386a412c6a211c200141386a41286a211d200141386a411c6a211e200141d4016a211f200141c8016a2120201521120340200141286a2012280200220f10472001280228210e4100210a410021064100210b4100210802402019280200220c450d00200c41216c2107200e41206a2102410021084100210b410021064100210a03400240024020022d000022034101460d00024020034102460d0020034103470d02200a41016a210a200241216a21022007415f6a22070d030c040b200641016a2106200241216a21022007415f6a22070d020c030b200b41016a210b200241216a21022007415f6a22070d010c020b200841016a2108200241216a21022007415f6a22070d000b0b200141386a200f1048200141386a41106a290300210942002105200141086a41086a220242003703002001420037030841dd81c000410d200141086a1000200141186a41086a220320022903003703002001200129030837031802400240024002400240024002400240024002400240200141186a41104184a1c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0120012903b00121050b200242003703002001420037030841fcf3c0004116200141086a100020032002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0220012903b00121102013450d050c060b200242003703002001420037030841b291c0004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a41104184a1c100410041001001417f460d0020014200370318200141b0016a4110200141186a41084100100141016a41084d0d0320012903182210500d044280de34201080211020130d060c050b4280de34420580211020130d050c040b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b4194a1c2001018000b201a200b20144f7121070c010b4105210d200a2013460d02201a200b20144f712107200c2013470d004104210d20070d010c020b2005201020097c540d024102210d2007450d010b4103210d0b200f200d104922070d0342002105200242003703002001420037030841dd81c000410d200141086a100020032002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0620012903b00121050b411610122203450d072003410e6a41002900d4f640370000200341086a41002900cef640370000200341002900c6f64037000020034116412c1013220c450d08200c200f360016200141b0016a41086a22034100360200200142013703b001410410122207450d0920014284808080c0003702b401200120073602b0012007200f36000020074104410810132207450d0a2001428880808080013702b40120072008360004200120073602b00120074108411010132207450d0b20014290808080c0013702b4012007200b3600082007200636000c20034110360200200120073602b00120074110412010132207450d0c2007200a360010200142a0808080c0023702b401200120073602b001200d200141b0016a104a024002400240024020012802b4012211200328020022046b41084f0d00200441086a22072004490d0a20114101742221200720072021491b22214100480d0a2011450d0120012802b00120112021101322070d020c120b20012802b00121070c020b202110122207450d100b200120213602b401200120073602b001202121110b200720046a20053700002002420037030020014200370308200c411a200141086a100020032002290300370300200120012903083703b001200141b0016a41102007200441086a100202402011450d00200710140b200c1014200141b0016a412c6a200d3a0000200141b0016a41286a200a360200201f2006360200200141b0016a41206a200b360200200141b0016a411c6a20083602002020200f360200200141b0016a41106a2005370300200341043a0000201820012f00183b0000201841026a200141186a41026a2d00003a0000200141073a00b001200141b0016a101a0b0240201b280200450d00201e28020010140b0240201c280200450d00201d28020010140b201241046a21120240200128022c450d00200e10140b20122017470d000b0b2016450d01201510140c010b0240200141d8006a280200450d00200141d4006a28020010140b0240200141e4006a280200450d00200141e0006a28020010140b0240200128022c450d00200e10140b02402016450d00201510140b2007412810060b2000104b200141086a41086a220242003703002001420037030841ea96c1004112200141086a1000200141186a41086a200229030037030020012001290308370318024002400240200141186a41104184a1c100410041001001417f460d0020014200370338200141186a4110200141386a41084100100141016a41084d0d0b20012903382000510d010c020b42012000520d010b200141386a41086a2000370300200141093a0038200141386a101a200141086a41086a2202420037030020014200370308419bafc0004119200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a41104184a1c100410041001001417f460d00200141003a0038200141b0016a4110200141386a41014100100141016a41014d0d0c20012d0038450d010b200141086a41086a220242003703002001420037030841d596c1004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b00102400240200141b0016a41104184a1c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a104520012802382202450d0e2001200129023c37023c200120023602380c010b20014100360240200142083703380b2001200141386a104c0b200141a0026a24000f0b41b185c00041331015000b1010000b411641011016000b412c41011016000b410441011016000b410841011016000b411041011016000b412041011016000b41b185c00041331015000b202141011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b201241011016000b413441011016000b411a41011016000b41b185c00041331015000b8d540b037f027e017f017e027f037e0d7f027e037f047e127f230041b0036b2201240020014180026a41086a22024200370300200142003703800241c880c100411820014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021040240024002400240024002400240024002400240024002400240024002400240024002400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0120012903c00221040b20024200370300200142003703800241b0fbc000411520014180026a10002003200229030037030020012001290380023703a00202400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0320012903c00222054200520d0141e0a6c2001018000b42e80721050b20014180026a41086a2202420037030020014200370380024183fbc000411920014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200020047d20058221050240200141a0026a41104184a1c100410041001001417f460d00200141003a00c002200141a0026a4110200141c0026a41014100100141016a41014d0d0320012d00c002210220014180026a41086a2203420037030020014200370380024183fbc000411920014180026a1000200141a0026a41086a200329030037030020012001290380023703a002200141a0026a41101003200241004721060c040b20054200520d04410121060c030b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b4200210720014180026a41086a22024200370300200142003703800241a591c000410d20014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00242002100024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0120012903c00221000b20024200370300200142003703800241e080c100411420014180026a10002003200229030037030020012001290380023703a0020240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0220012903c00221070b20014180026a41086a220242003703002001420037038002419cfbc000411420014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00202400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0420012903c00242017c21040c010b420121040b200141c0026a41086a22082004370300200141033a00c002200141c0026a101a200120043703c002200242003703002001420037038002419cfbc000411420014180026a10002003200229030037030020012001290380023703a002200141a0026a4110200141c0026a41081002200120003703c00220024200370300200142003703800241e080c100411420014180026a10002003200229030037030020012001290380023703a002200141a0026a4110200141c0026a4108100220034200370300200142003703a00241f480c1004119200141a0026a100020082003290300370300200120012903a0023703c00202400240200141c0026a41104184a1c100410041001001417f460d00200142003703a002200141c0026a4110200141a0026a41084100100141016a41084d0d0520012903a0022104200141a0026a41086a22024200370300200142003703a00241f480c1004119200141a0026a100020014180026a41086a2002290300370300200120012903a0023703800220014180026a411010034201a74101470d010c060b4200a74101460d050b2005500d060c050b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200120043703c00220014180026a41086a22024200370300200142003703800241b0fbc000411520014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200141a0026a4110200141c0026a410810020b20014180026a41086a22024200370300200142003703800241dd81c000410d20014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021040240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0220012903c00221040b200120043703c00220024200370300200142003703800241c880c100411820014180026a10002003200229030037030020012001290380023703a002200141a0026a4110200141c0026a410810020b0240024002402006450d0020014180026a41086a22024200370300200142003703800241b291c000411520014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200141a0026a41104184a1c100410041001001417f460d01200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0420012903c00221040c020b200141a0026a21090c060b420521040b20014180026a41086a22024200370300200142003703800241b0fbc000411520014180026a1000200141c0026a41086a200229030037030020012001290380023703c00202400240200141c0026a41104184a1c100410041001001417f460d00200142003703a002200141c0026a4110200141a0026a41084100100141016a41084d0d044200210a20012903a00220047e22044200510d010c070b4200210a42e80720047e22044200520d060b20014180026a41086a2202200a3703002001200a3703800241abdec000411c20014180026a1000200141a0026a41086a200229030037030020012001290380023703a0020240200141a0026a41104184a1c100410041001001417f460d00200142003703c802200142003703c002200141a0026a4110200141c0026a4110410010012202417f460d042002410f4d0d04200141c8026a290300210b20012903c002210a0c070b4200210b0c060b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b410121020c070b200020077d2200200420042000541b2200200a510d0220014180026a41086a22024200370300200142003703800241abdec000411c20014180026a1000200141a0026a41086a200229030037030020012001290380023703a0022004421086200080210402400240200141a0026a41104184a1c100410041001001417f460d00200142003703c802200142003703c002200141a0026a4110200141c0026a4110410010012202417f460d032002410f4d0d03200141c8026a290300210020012903c00221050c010b42002105420021000b200141d0016a200520002004420010f90120012903d001421088200141d0016a41086a290300220442308684210a2004421088210b0b4200210c20014180026a41086a22024200370300200142003703800241c5fbc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200141a0026a41104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c002220d450d0420012902c402210c0c010b4101210d0b4105210e200c422088a74105742202450d03200d20026a210f41202110411c211141182112410021134110211441082115413c211641342117412c2118412421194201211a4200211b4160211c200d211d4100211e0c040b41b185c00041331015000b41c091c2001018000b41b185c00041331015000b410021020c010b410221020b0240024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024020020e03000102020b200141d8026a200b370300200141d0026a200a370300200141c8026a41003a0000200141043a00c002200141c0026a101a200141c0026a41c7dec00041121025200141a0026a2109200ca7450d0c200d1014410121020c100b20014180026a41086a220242003703002001420037038002419cfbc000411420014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021040240024002400240024002400240024002400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0120012903c00221040b20024200370300200142003703800241a6cfc000411520014180026a10002003200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d0020014180026a41086a22024200370300200142003703800241a6cfc000411520014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200141a0026a411010030c010b20014180026a41086a22024200370300200142003703800241d9dec000411b20014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021000240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0620012903c00221000b20024200370300200142003703800241f4dec000411620014180026a10002003200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0820012903c00222054200520d0141d891c2001018000b42e80721050b200420007d2005824200520d210b20014180026a41086a220242003703002001420037038002418adfc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0320012903c00242017c21040c010b420121040b200120043703c00220014180026a41086a220242003703002001420037038002418adfc000411220014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00220094110200141c0026a41081002200242003703002001420037038002419cdfc000411a20014180026a10002003200229030037030020012001290380023703a0020240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d03200120012903c00222043703e00120014180026a41086a22024200370300200142003703800241f4dec000411620014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d06200420012903c002520d010c020b200442e807510d010b200120043703c00220014180026a41086a22024200370300200142003703800241f4dec000411620014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00220094110200141c0026a41081002200242003703002001420037038002419cfbc000411420014180026a10002003200229030037030020012001290380023703a002420021040240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0820012903c00221040b200120043703c00220024200370300200142003703800241d9dec000411b20014180026a10002003200229030037030020012001290380023703a00220094110200141c0026a410810020b20014180026a41086a22024200370300200142003703800241dccdc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a0020240024002400240200941104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c0022223450d0b20012802c40221244105210341002125200141c8026a2802004105742202450d020c010b4101212341002124410521034100212541004105742202450d010b20022003752226ad42307e2204422088a70d1c2004a722034100480d1c200310122227450d0a202320026a22282023470d010c0c0b4108212741002126202320026a22282023460d0b0b41002125411821294110212a4108212b4120212c4128212d4101212e4130212f410521304160213120272132202321334101211e0c160b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200341081016000b02400240201e0e020001010b201d450d0a201110122202450d02200220126a20132800a3ce40360000200220146a201329009bce40370000200220156a2013290093ce403700002002201329008bce4037000020022011201610132202450d032002201d29000037001c200220176a201d20126a290000370000200220186a201d20146a290000370000200220196a201d20156a290000370000200141c0026a200220161026200141c0026a20156a22032903002100200141c0026a20146a290300210520012903c002210720021014420021040240024002400240200a200042002007201a5122021b2200200a2000200a542005420020021b2200200b542000200b511b22021b221f7d2205200b2000200b20021b22207d200a201f54ad7d220784500d00200141c0026a201d107a2003280200210220012802c0022108200141c0016a201d1062200141c0016a20156a290300210420012903c00121002002450d012002200e7422032106200821020340200141b0016a20021062200141b0016a20156a29030020047c20012903b001220420007c2200200454ad7c2104200220106a21022006201c6a22060d000b2004201b2000201a562004201b522004501b22021b21042000201a20021b2100200821020340200141a0016a2002106220014190016a20012903a001200141a0016a20156a2903002005200710f90120014180016a20012903900120014190016a20156a2903002000200410f801200220012903800120014180016a20156a290300106a200220106a21022003201c6a22030d000b200141f0006a201d10622000200484201b510d09200141f0006a20156a2903002121200129037021220c020b420021000c020b200141e0006a201d10622004201b2000201a562004201b522004501b22021b21042000201a20021b2100200141e0006a20156a2903002121200129036021220b200141d0006a202220212005200710f901200141c0006a2001290350200141d0006a20156a2903002000200410f801200141c0006a20156a29030021002001290340210420012802c402450d00200810140b201d2004201f7c2205200020207c2005200454ad7c106a201d20106a2202211d2002200f470d08410021020c0f0b200141c0026a20296a221e203320296a290000370300200141c0026a202a6a22082033202a6a290000370300200141c0026a202b6a22342033202b6a290000370300200120332900003703c00220014180026a200141c0026a107220014180026a202b6a28020021022001280280022106200141306a200141c0026a1062200141306a202b6a29030021042001290330210002402002450d0020022030742103200621020340200141206a20021062200141206a202b6a29030020047c2001290320220420007c2200200454ad7c21042002202c6a2102200320316a22030d000b0b2033202c6a21330240200128028402450d00200610140b200141a0026a20296a2202201e290300370300200141a0026a202a6a22032008290300370300200141a0026a202b6a22062034290300370300200120012903c0023703a00220322004370308203220003703002032202d6a20022903003703002032202c6a2003290300370300203220296a2006290300370300203220012903a0023703102025202e6a21252032202f6a213220332028470d080b02402024450d00202310140b20014180026a41086a22024200370300200142003703800241eecdc000411d20014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d04202520012802c0024f0d010c160b20254104490d150b4100212b20272025410041202025676b103520014180026a41086a22024200370300200142003703800241b6dfc000411620014180026a1000200141a0026a41086a200229030037030020012001290380023703a0020240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d0520012802c002212b0b024002402025450d0020252025202b202b20254b1b417f6a22024d0d07202741086a29030021042027200241306c6a22022903002105200241086a29030021002027290300210741102115411010122202450d010c100b42002107420021044200210542002100411021154110101222020d0f0b201541011016000b411c41011016000b413c41011016000b41b185c00041331015000b41c091c2001018000b41b185c00041331015000b41f091c200200220251038000b4100211e0c030b4101211e0c040b410021020c040b410121020c030b410221020c020b410221020c010b410221020c000b0b200220073700002002200437000820022015412010132202450d0120022005370010200241186a200037000020014180026a41086a22154200370300200142003703800241c7dec000411220014180026a1000200141a0026a41086a201529030037030020012001290380023703a002200941102002412010022002101402400240202b450d0041002132202b2027202541306c6a221520276b41306d22022002202b4b1b2223450d012023ad4205862204422088a70d022004a722024100480d02200210122233450d04202b450d060c050b4100212341012133410021320c050b4101213341002123202b0d030c040b1010000b412041011016000b200241011016000b20152027460d00202541306c2131200141c0026a41106a21034101211020332115202721020340200141c0026a41286a200241286a290300370300200141c0026a41206a200241206a290300370300200141c0026a41186a200241186a2903003703002003200241106a290300370300200141c0026a41086a200241086a29030037030020022903002104200141a0026a41086a221c200341086a290300370300200141a0026a41106a2206200341106a290300370300200141a0026a41186a222c200341186a290300370300200120043703c002200120032903003703a002201541186a202c290300370000201541106a2006290300370000201541086a201c290300370000201520012903a002370000202b20102232460d01200241306a2102203241016a2110201541206a2115203141506a22310d000b0b02402026450d00202710140b4200210720014180026a41086a22024200370300200142003703800241c5fbc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a002024002400240200941104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c0022225450d0220012902c40221070c010b410121250b024002400240024002402007422088a7410574222c450d0020252115034002400240024002400240411c10122202450d00200241186a41002800f7cf40360000200241106a41002900efcf40370000200241086a41002900e7cf40370000200241002900dfcf403700002002411c413c10132202450d012002201529000037001c200241346a201541186a22102900003700002002412c6a201541106a221c290000370000200241246a201541086a220629000037000020014180026a41086a222b420037030020014200370380022002413c20014180026a1000200141a0026a41086a2203202b29030037030020012001290380023703a002200141a0026a4110100320021014411210122202450d02200241106a41002f00fccc4022313b0000200241086a41002900f4cc402204370000200241002900eccc40220037000020024112413210132202450d03200220152900003700122002412a6a2010290000370000200241226a201c2900003700002002411a6a200629000037000020034200370300200142003703a00220024132200141a0026a1000200141c0026a41086a2003290300370300200120012903a0023703c002024002400240200141c0026a41104184a1c100410041001001417f460d00200141003602a002200141c0026a4110200141a0026a41044100100141016a41044d0d0220012802a002211d20034200370300200142003703a00220024132200141a0026a1000202b2003290300370300200120012903a0023703800220014180026a4110100320021014201d410041011b221d4102490d010c070b200210144100410041001b221d41024f0d060b201541206a2115202c41606a222c0d060c070b41b185c00041331015000b411c41011016000b413c41011016000b411241011016000b413241011016000b411210122202450d02200241106a20313b0000200241086a20043700002002200037000020024112413210132202450d03200220152900003700122002412a6a2010290000370000200241226a201c2900003700002002411a6a20062900003700002001201d417f6a3602c002202b420037030020014200370380022002413220014180026a10002003202b29030037030020012001290380023703a00220094110200141c0026a4104100220021014201541206a2115202c41606a222c0d000b0b02402007a7450d00202510140b02400240024002402032450d0020324105742103203321020340200141c0026a20021072411c10122215450d03201541186a41002800f7cf40360000201541106a41002900efcf40370000201541086a41002900e7cf40370000201541002900dfcf403700002015411c413c10132215450d042015200229000037001c201541346a200241186a2900003700002015412c6a200241106a290000370000201541246a200241086a2900003700002001413c3602a402200120153602a002200141c0026a200141a0026a107320151014024020012802c402450d0020012802c00210140b200241206a2102200341606a22030d000b2033203210b4010c010b2033410010b4010b20014180026a41086a22024200370300200142003703800241ccdfc000411420014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d0620013502c00221040c010b42c0843d21040b200141106a200542002004420010f901200142003703c80220014289f48bdcc4002001290310428094ebdc038020012903184200521b3703c00220014180026a41086a22024200370300200142003703800241c1cdc000411b20014180026a1000200141a0026a41086a2215200229030037030020012001290380023703a00220094110200141c0026a4110100220024200370300200142003703800241e0dfc000411520014180026a10002015200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d0720013502c00221040c010b423c21040b2001200542002004420010f901200142003703c80220014289f48bdcc4002001290300428094ebdc038020012903084200521b3703c00220014180026a41086a22024200370300200142003703800241abdec000411c20014180026a1000200141a0026a41086a200229030037030020012001290380023703a00220094110200141c0026a411010022023450d08203310140c080b411c41011016000b413c41011016000b411241011016000b413241011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b2026450d00202710140b20014180026a41086a22024200370300200142003703800241c5fbc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a002024002400240200141a0026a41104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c0022229450d1020012802c4022127200141c8026a280200410574221c0d010c020b41012129410021274100410574221c450d010b202921154100212b0340411210122202450d05200241106a41002f009d81413b0000200241086a410029009581413700002002410029008d814137000020024112413210132202450d06200220152900003700122002412a6a201541186a290000370000200241226a201541106a2900003700002002411a6a201541086a29000037000020014180026a41086a2203420037030020014200370380022002413220014180026a1000200141a0026a41086a2210200329030037030020012001290380023703a002024002400240200141a0026a41104184a1c100410041001001417f460d00200141c0026a41186a22064200370300200141c0026a41106a222c4200370300200141c0026a41086a22094200370300200142003703c002200141a0026a4110200141c0026a4120410010012231417f460d062031411f4d0d06200141e0016a41186a22312006290300370300200141e0016a41106a221d202c290300370300200141e0016a41086a22322009290300370300200120012903c0023703e0012003420037030020014200370380022002413220014180026a10002010200329030037030020012001290380023703a002200141a0026a411010032002101420014180026a41186a2223203129030037030020014180026a41106a221e201d29030037030020032032290300370300200120012903e00137038002410610122202450d0b200241046a41002f00b6894022313b0000200241002800b28940221d36000020024106410c10132202450d0c2002202b3600062002410a4184a1c100410041001001417f460d01200141a0026a41186a22324200370300200141a0026a41106a2233420037030020104200370300200142003703a0022002410a200141a0026a4120410010012225417f460d0a2025411f4d0d0a20062032290300370300202c203329030037030020092010290300370300200120012903a0023703c0020c020b20021014201541206a2115202b41016a212b201c41606a221c0d020c030b20064200370300202c420037030020094200370300200142003703c0020b2002101402400240200141c0026a20014180026a412010f701450d00200141003602a002200141a0026a102f410610122202450d0c200241046a20313b00002002201d36000020024106410c10132202450d0d200241086a41002d00ba89403a0000200241002f00b889403b0006200241094184a1c100410041001001417f460d01200141003602a00220024109200141a0026a41044100100141016a41044d0d0620012802a0022110200210142010202b4d0d00410610122202450d0e200241046a20313b00002002201d36000020024106410c10132210450d0f2010202b360006412010122202450d102002200129038002370000200241186a2023290300370000200241106a201e290300370000200241086a20032903003700002010410a20024120100220021014201010140b201541206a2115202b41016a212b201c41606a221c0d010c020b20021014201541206a2115202b41016a212b201c41606a221c0d000b0b2027450d00202910140b200141b0036a24000f0b41b185c00041331015000b41b185c00041331015000b411241011016000b413241011016000b41b185c00041331015000b410641011016000b410c41011016000b410641011016000b410c41011016000b410641011016000b410c41011016000b412041011016000b41b185c00041331015000bb00b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001101b02400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510122206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081016000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001001220e200e417f461b220e4120200e412049220e1b20052802006a220f360200200e0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1001220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d29030021132002290350211420022001101b2002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10122216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081016000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a221a360200200f0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1001220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101322160d010c090b201a10122216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101322060d010c080b200510122206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d00201610140b200041003602000240200b450d00200641106a210503400240200541046a280200450d00200528020010140b200541c0006a2105200a41406a220a0d000b0b0240200c450d00200610140b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081016000b200541081016000b100f000bc40303027f017e097f230041106b2202240020022001101b02400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041016000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100122052005417f461b22054104200541044922051b20072802006a36020020050d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101322060d010c060b200d10122206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d00200610140b200241106a24000f0b1010000b200d41041016000bbb0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910122203450d00200341186a41002d00adf6403a0000200341106a41002900a5f640370000200341086a410029009df64037000020034100290095f64037000020034119413210132204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1000200241106a41086a2003290300370300200220022903503703100240024002400240200241106a41104184a1c100410041001001417f460d00200242103702242002200241106a360220200241086a200241206a101b2002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310122207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011016000b413241011016000b200341011016000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100122112011417f461b2211412020114120491b20096a22093602002011411f4d0d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082009200b200a200241d0006a41012009100141016a41014b22116a22093602002011450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101322070d010c080b201210122207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b20041014200241f0006a24000f0b200f450d00200710140b41b185c00041331015000b1010000b201241011016000b8e1105087f027e067f017e017f230041b0016b220224000240024002400240411310122203450d002003410f6a41002800a0f140360000200341086a4100290099f14037000020034100290091f14037000020034113412610132204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1000200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a41104184a1c100410041001001417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100122032003417f461b22034104200341044922031b20022802286a220136022820030d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22094100200241106a411020024190016a41202001100122032003417f461b2203412020034120491b20092802006a22013602002003411f4d0d01200241f0006a41186a22032006290300370300200241f0006a41106a22092007290300370300200241f0006a41086a220620082903003703002002200229039001370370200241d0006a41186a2003290300370300200241d0006a41106a2009290300370300200241d0006a41086a200629030037030020022002290370370350410121030c020b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b410021030b20024190016a41186a2209200241d0006a41186a29030037030020024190016a41106a2206200241d0006a41106a29030037030020024190016a41086a2207200241d0006a41086a29030037030020022002290350370390012003450d03200241306a41186a2009290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903900137033020024200370398012002420037039001200241206a41086a22094100200241106a411020024190016a41102001100122032003417f461b2203411020034110491b20092802006a3602002003410f4d0d0320024198016a290300210a200229039001210b200241086a200241206a101b2002280208450d03200228020c2203417f4c0d04024002402003450d002003108001220c450d09200241286a22012003410020022802202002280224200c20032001280200100122092009417f461b2209200920034b1b220920012802006a36020020092003460d010c040b4101210c2002280220200228022441014100200241286a28020010011a41002003470d030b2002200241206a101b2002280200450d0220022802042201417f4c0d04024002402001450d002001108001220d450d0a200241286a220920092802002207200141002002280220220920022802242206200d20012007100122072007417f461b2207200720014b1b22086a220736020020082001460d010c030b4101210d200228022022092002280224220641014100200241286a280200220710011a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002009200620024190016a41202007100122082008417f461b2208412020084120491b20076a22073602002008411f4d0d01200241f0006a41186a2208200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2008290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002009200620024190016a41082007100122082008417f461b2208410820084108491b20076a2207360200200841074d0d012002290390012112200241003a009001200241286a20072009200620024190016a41012007100141016a41014b22096a3602002009450d0120022d009001220641064f0d0120024190016a41186a2207200241306a41186a29030037030020024190016a41106a2208200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22092d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2008290300370200200041cc006a200729030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200920132d00003a0000200220022f01303b0150200020063a0074200020022f01503b0075200041f7006a20092d00003a00000b20041014200241b0016a24000f0b2001450d00200d10140b2003450d00200c10140b41b185c00041331015000b100f000b411341011016000b412641011016000b200341011016000b200141011016000be210020b7f037e230041d0026b22022400200241b0026a41086a22034200370300200242003703b00241a4f1c000411b200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a00241002104024002400240024002400240200241a0026a41104184a1c100410041001001417f460d002002421037023c2002200241a0026a360238200241a8016a200241386a104620022802a8012205450d02200241b0016a280200210420022802ac0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041012220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d01200510144100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031013220b0d010c020b20031012220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041016000b02402006450d00200510140b200a2004470d050c040b4100210c41002004460d030c040b1010000b41b185c00041331015000b410441041016000b0240200c450d00200b10140b200241d0026a240041edf5c0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241a8016a20001048200241d0006a200241f4016a290200370300200241386a41106a200241ec016a290200370300200241386a41086a200241e4016a290200370300200220022902dc013703384200210d200241b0026a41086a22034200370300200242003703b00241d7f5c0004116200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a002200241a0026a41104184a1c100410041001001417f460d02200242003703c802200242003703c002200241a0026a4110200241c0026a4110410010012203417f460d082003410f4d0d08200241c8026a290300210d20022903c002210e0c030b200241a8016a20001048200241386a41186a20024194026a290200370300200241386a41106a2002418c026a290200370300200241386a41086a20024184026a290200370300200220022902fc01370338411810122203450d0841002107200341106a4100290089f140370000200341086a4100290081f140370000200341002900f9f04037000020034118413810132203450d0920032002290338370018200341306a200241d0006a290300370000200341286a200241386a41106a290300370000200341206a200241386a41086a290300370000200241b0026a41086a22094200370300200242003703b00220034138200241b0026a1000200241c0026a41086a2009290300370300200220022903b0023703c002200241c0026a41104184a1c100410041001001417f460d03200242103702b4022002200241c0026a3602b002200241186a200241b0026a101b2002280218450d0c200228021c2208417f4c0d0a2008450d0420081080012207450d0d200241b8026a2209200928020022092008410020022802b00220022802b402200720082009100122092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241a8016a20001048200241206a200241dc016a20022903a801200241b0016a29030010660240200241c8016a280200450d0020022802c40110140b200241d4016a280200450d0520022802d00110140c050b420a210e0b2002200241386a200e200d1066200241386a20022903a801220f200e7d200241b0016a290300200d7d200f200e54ad7d106c0240200241c8016a280200450d0020022802c40110140b200241d4016a280200450d0320022802d00110140c030b0c010b4101210720022802b00220022802b40241014100200241b8026a28020010011a41002008470d060b200241fc016a210920031014200241dc016a20022903a801200241a8016a41086a290300106c41d889c00041052007410120071b22042008410020071b2203100202402003450d00200410140b200241386a41086a41053a0000200241c1006a2009290000370000200241386a412c6a2000360200200241c9006a200941086a290000370000200241d1006a200941106a290000370000200241d9006a200941186a290000370000200241073a0038200241386a101a0240200241c8016a280200450d0020022802c40110140b200241a8016a412c6a280200450d0020022802d00110140b2002200a3602b0012002200c3602ac012002200b3602a8012002411b36023c200241a4f1c000360238200241a8016a200241386a10750240200c450d00200b10140b200241a8016a20001048200220013a009c0202400240411310122203450d002003410f6a41002800a0f140360000200341086a4100290099f14037000020034100290091f14037000020034113412610132203450d01200320003600132002411736023c20022003360238200241a8016a200241386a1074200310140240200241c8016a280200450d0020022802c40110140b0240200241d4016a280200450d0020022802d00110140b200241b4016a2000360200200241b1016a20013a0000200241b0016a41023a0000200241073a00a801200241a8016a101a200241d0026a240041000f0b411341011016000b412641011016000b41b185c00041331015000b411841011016000b413841011016000b100f000b2008450d00200710140b41b185c00041331015000b200841011016000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310132202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310132202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310132202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310132202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310132202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310132202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101222020d140b200341011016000b2003101222020d100b200341011016000b2003101222020d0c0b200341011016000b2003101222020d100b200341011016000b2003101222020d060b200341011016000b2003101222020d020b200341011016000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000be1c00125027f027e097f017e187f027e077f027e0c7f027e087f017e107f037e177f027e0e7f017e0d7f097e287f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e0e7f23004190036b22012400200141e0026a41086a22024200370300200142003703e00241ddb0c0004115200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a41104184a1c100410041001001417f460d00200142103702d4012001200141286a3602d001200141086a200141d0016a108801024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200129030822034203510d0020012903102104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a0028200141286a41086a22054106360200200141286a101a2001420837031820014100360220200141e0026a41086a22024200370300200142003703e0024198b2c000411b200141e0026a100020052002290300370300200120012903e002370328200141286a41104184a1c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a103020012802d0012206450d0f20012802d401210741082108200141d8016a2802004105742209450d050c140b20042000520d1f200141083a0028200141286a41086a22444104360200200141286a101a200141e0026a41086a22054200370300200142003703e00241a5bdc000411f200141e0026a100020442005290300370300200120012903e002370328200141286a41104184a1c100410041001001417f460d01200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0820012903d001210e0c020b20042000520d1e200141083a0028200141286a41086a22024102360200200141286a101a200141e0026a41086a220a4200370300200142003703e00241feb1c000411a200141e0026a10002002200a290300370300200120012903e00237032841002145200141286a41104184a1c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a103020012802d0012246450d0e200141d8016a280200214720012802d40121450c050b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a41104184a1c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0720012903d00121480b20012048200e7c37033020014202370328200141153602d401200141ddb0c0003602d001200141286a200141d0016a108701200141083a002820054105360200200141286a101a20014190036a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012146410021470b200141e0026a41086a22024200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d05204720012802d0014f0d010c0d0b2047410a490d0c0b200141e0026a41086a22024200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0720012802d00121020c010b410a21020b200141e0026a41086a220a4200370300200142003703e00241e3bdc000411e200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0820012802d001210a0c010b4114210a0b4184a1c1002165410021664100210b4184a1c100216720472002200a200a2002491b22684d0d160240204741144b0d00204741014d0d162047417e6a2144204620474105746a41406a210541022102034020472044490d0620052002109701200541606a2105200241016a21022044417f6a2244417f470d000c170b0b2047410176226aad2248421b88a70d132048420586a72202417f4c0d134101216b4101216c02402002450d0020021012226c450d0a0b4160216d204641606a216e204641a07f6a216f4100217041042171417f217242032173422021744103217541022176417d217741052178411f21794117217a4110217b41082167413f217c4137217d4118217e412f217f41272180014120218101200141286a41206a218201420021484201218301417e218401417421850141642186014138218701413021880141282189014109218a01410a218b014104218c014100218d014100218e012047218f01410221360c0a0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b20442047103a000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200241011016000b410121020c070b10890120450d0b0c0c0b4100210a41002105410021022006210b0340200141286a200b109201024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101322080d010c060b200c10122208450d050b200d21050b200b41206a210b2008200a6a200141286a41880110f5011a200a4188016a210a200241016a2102200941606a22090d000b200141206a2002360200200120083602182001200536021c2007450d010b200610140b4200210e200142003702c401200141a090c1003602c0012002450d01418801210f200820024188016c6a2110200141c4006a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a4119211b4111211c4109211d411f211e4117211f41002120413f212141372122412f21234127212441202125200141e0026a41206a2126420821274201212841142129200141d0016a41146a212a4106212b41e802212c4138212d4130212e4128212f4230213042202131410421324160213341987d213420082135410021360c020b200c41081016000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141b0016a41086a200141c0016a41086a280200360200200120012903c0013703b001200141e0026a41086a2202200e3703002001200e3703e00241feb1c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a41104184a1c100410041001001417f460d00200142103702e4022001200141286a3602e002200141d0016a200141e0026a103020012802d0012241450d0220012802d401214241052143200141d8016a28020041057422020d010c230b41012141410021424105214341004105742202450d220b204120026a2149200141c4006a214a4120214b4108214c417f214d4102214e41a808214f4118215041102151411f21524117215341002154413f215541372156412f215741272158420821594201215a4200215b200141e4016a215c4106215d41987d215e4160215f4101216020412161410121360c020b41b185c00041331015000b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020360e09000102030405060708080b20352d0060450d41203520126a223720136a213820012802c0012239213a20012802c401223b213c0c1c0b20612262204b6a2161200141b0016a216320012802b40121640c1c0b02400240024002400240024002400240208f0122900120726a228f01450d00207910122202450d162002207a6a20702900cbaf4022003700002002207b6a20702900c4af402203370000200220676a20702900bcaf402204370000200220702900b4af40223e37000020022079207c10132202450d1720022046208f012078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c1025208201290300219101200141286a207e6a220b290300213f200141286a207b6a2209290300219201200141286a20676a220c290300219301200129032821940120021014207910122202450d182002207a6a20003700002002207b6a2003370000200220676a20043700002002203e37000020022079207c10132202450d19200220462090012084016a22062078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c10252082012903002195012009290300219601200b290300219701200c290300219801200129032821990120021014203f2093017c229301204820940120485222021b2097012098017c229401204820990120830151220a1b542091012092017c209301203f54ad7c204820021b223f2095012096017c20940120970154ad7c2048200a1b22970154203f209701511b450d01206f20900120787422066a21020340208f01206b460d0320791012220a450d10200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d14200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c1025208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101420791012220a450d15200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d16200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c10252082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a10142002206d6a2102208f0120726a218f01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b542091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b22970154203f209701511b0d000c040b0b4101210d4100218f01208d01208e01470d060c050b206f2090012078746a21024100218f014100219a01024003402006209a01460d0120791012220a450d0e200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d10200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c1025208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101420791012220a450d11200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d12200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c10252082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a10142002206d6a2102209a01206b6a219a01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b5a2091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b2297015a203f209701511b0d000b209a01206b6a210d209001209a016b20726a228f01450d040c030b209001210d208d01208e01460d040c050b4100218f010b209001208f01490d1720900120474b0d1a0240209001208f016b220d206b76229a01450d00206e20066a21022046208f012078746a210a0340200b200a207e6a22062900003703002009200a207b6a2207290000370300200c200a20676a22402900003703002001200a290000370328200220676a229b0129000021002002207b6a229c0129000021032002290000210420062002207e6a229d012900003700002007200337000020402000370000200a200437000020022001290328370000209b01200c290300370000209c012009290300370000209d01200b2903003700002002206d6a2102200a2081016a210a209a0120726a229a010d000b0b208f01450d010b200d208a014b0d0020900120474b0d17209001208f016b210d208f0120726a2102206e208f012078746a210a03402090012002490d19200a200d206b6a220d109701200220726a210b02402002450d00200a206d6a210a200b2102200d208b01490d010b0b200b206b6a218f01208d01208e01470d020c010b208d01208e01470d010b208d01206b6a2202208d01490d43208d01206b74220a20022002200a491b2202ad2073862200207488a70d432000a7220a2070480d4302400240208d01450d00208c01208d01207574200a1013228c010d010c150b200a1012228c01450d140b2002218d010b208c01208e012075746a2202200d3602042002208f01360200208e01206b6a229a01218e01209a012076490d334103213d0c290b200141286a20a8016a20b30120a8016a290000370300200141286a20a9016a20b30120a9016a290000370300200141286a20aa016a20b30120aa016a290000370300200120b30129000037032820b30120ab016a21b30120a60121b40120a70121b5010c1b0b200128029002220228020021c801200228020421c9014105213d0c290b024020f00122f10120d6016a2202450d0020f10120e8016a21f20120b601200220dc01746a21f30120012802e002280200280200220228020022f40121f501200228020422f60121f7010c1b0b410121fa01410021f00120ee0120ef01460d200c210b209f0220dd016a210a209f022f0106220c20dc017421024100210b024002400240024003402002450d01209d02200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a102450d0120a10220d6016a21a102209f02200c20da01746a20de016a280200219f02410621360c170b209f0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20990220d2016a220b209d02209e0220a40220035420a30220005420a3022000511b220a1b220229000037000020990220e0016a200220df016a29000037000020990220e2016a200220e1016a29000037000020990220e3016a200220dd016a290000370000209a02209e02200a1b219a02209602209d02209c02200a1b229c024f0d1a200b21990220d10121a50220d101209a02490d210c1c0b20a70220dd016a210a20a7022f0106220c20dc017421024100210b024002400240024003402002450d0120a502200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a902450d0120a90220d6016a21a90220a702200c20da01746a20de016a28020021a702410721360c170b20a70220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b209c0220980220a50220ac0220035420ab0220005420ab022000511b220a1b2202290000370000209c0220df016a200220df016a290000370000209c0220e1016a200220e1016a290000370000209c0220dd016a200220dd016a29000037000020a50220a50220446a200a1b21a502209c0220446a219c0220980220446a209802200a1b2298022099024f0d1c209a0220a5024b0d210c1a0b20cf0222d00220af026a21cf0220012802900222d10228020421d20220d10221d3020c1c0b411f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b200a41041016000b208f01209001103a000b209001208f01417f6a22024f0d010b2002209001103a000b20900120471039000b410121020c280b410121020c270b410121020c260b4100213d0c0c0b4102213d0c0c0b4104213d0c0d0b4106213d0c0e0b410d213d0c0e0b410e213d0c0e0b410e213d0c0e0b410e213d0c0e0b410f213d0c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b02400240024002400240024002400340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20ee0120d0016a220220ee01490d860120ee0120d00174220a20022002200a491b2202ad20d70186220020d80188a70d86012000a7220a20d401480d86010240024020ee01450d0020ed0120ee0120d90174200a101322ed010d010c050b200a101222ed01450d040b200221ee01410121020c6f0b20ed0120ef0120d901746a220220fa01360204200220f00136020020ef0120d0016a228e0221ef01208e0220da01490d04410a213d0c550b209c0220d2016a219d02209a0220d2016a219e02209b022802002802002202280200229f0221a002200228020422a10221a2020c430b20a602280200280200220228020022a70221a802200228020422a90221aa020c430b200a41041016000b024002400240024002400240024002400240024002400240024002400240024002400240024002400240203d0e110001020304050708090a0d0e1013141819190b203a20146a210a203a2f0106220c20157421024100210b02400240024003402002450d012038200a202510f7012209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203c450d01203c20166a213c203a200c2017746a20186a280200213a4100213d0c5a0b203a200b202b746a2034470d500b20014190026a20196a203820196a220a29000037030020014190026a201a6a2038201a6a220b29000037030020014190026a20146a203820146a22092900003703002001203829000037039002200141b8026a20196a220c2037201b6a290000370300200141b8026a201a6a223d2037201c6a290000370300200141b8026a20146a220d2037201d6a290000370300200120372900013703b802201e10122202450d2a2002201f6a20202900cbaf403700002002201a6a20202900c4af40370000200220146a20202900bcaf40370000200220202900b4af403700002002201e202110132202450d2b2002203829000037001f200220226a200a290000370000200220236a200b290000370000200220246a2009290000370000200141e0026a20022021102520262903002103200141e0026a201a6a2903002104200141e0026a20196a2903002100200141e0026a20146a290300213e20012903e002213f20021014200141286a20196a2020360200200141286a201a6a2027370300201120196a200c2903003700002011201a6a203d290300370000201120146a200d290300370000201120012903b80237000020012000203e7c223e200e203f20285122021b3703282001200320047c203e200054ad7c200e20021b370330200141d0016a200141c0016a20014190026a200141286a1098010240200141d0016a201a6a2802002202450d00202a280200450d00200210140b20012802c001213920012802c401213b0c4e0b203920146a210a20392f0106220c20157421024100210b0240024003402002450d012038200a202510f7012209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203b450d9201203b20166a213b2039200c2017746a20186a28020021394101213d0c590b2039202c6a200b202b746a2202450d9101200141286a20196a220c2035202d6a290000370300200141286a201a6a220d2035202e6a290000370300200141286a20146a22062035202f6a29000037030020012035290020370328203520146a2903002103203520196a29030021042035290300213e20352903102100200220196a210b2002201a6a210902400240024002402002280218220a200220296a280200470d00200a20136a2202200a490d9801200a2013742207200220022007491b2207ad20307e223f203188a70d9801203fa722402020480d9801200a450d012009280200200a202e6c2040101322020d020c2f0b200928020021020c020b204010122202450d2d0b20092002360200200920326a2007360200200b280200210a0b2002200a202e6c6a220220012903283703102002200420037c2000203e7c2203200054ad7c370308200220033703002002202f6a200c290300370300200220256a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c91010b2063280200220c204c6a210a200c2f0106220d20437421024100210b024002400240024003402002450d012062200a204b10f7012209450d022002205f6a2102200b20606a210b200a204b6a210a2009204d4a0d000b200b204d6a210d0b2064450d012064204d6a2164200c200d204e746a204f6a21634102213d0c5d0b200c200b205d746a205e470d010b20014190026a20506a206220506a220a29000037030020014190026a20516a206220516a220b29000037030020014190026a204c6a2062204c6a22092900003703002001206229000037039002200141b8026a20506a220c200a290000370300200141b8026a20516a220d200b290000370300200141b8026a204c6a22362009290000370300200120622900003703b802205210122202450d27200220536a20542900cbaf40370000200220516a20542900c4af403700002002204c6a20542900bcaf40370000200220542900b4af4037000020022052205510132202450d282002206229000037001f200220566a200a290000370000200220576a200b290000370000200220586a2009290000370000200141e0026a200220551025200141e0026a204b6a2903002103200141e0026a20516a2903002104200141e0026a20506a2903002100200141e0026a204c6a290300213e20012903e002213f20021014200141286a20506a2054360200200141286a20516a2059370300204a20506a200c290300370000204a20516a200d290300370000204a204c6a2036290300370000204a20012903b80237000020012000203e7c223e205b203f205a5122021b3703282001200320047c203e200054ad7c205b20021b370330200141d0016a200141b0016a20014190026a200141286a109801200141d0016a20516a2802002202450d00205c280200450d00200210140b20612049470d330c87010b02400240024002400240208c01209a01229c0120726a229a012075746a2202280200450d00208c01209c012075746a220c2085016a28020022092002280204220a4d0d004102218e01209c0141024d0d8801208c01209c0120776a22022075746a280204220b200a20096a4d0d014103218e01209c0141034d0d8801200c2086016a280200200b20096a4d0d010c040b209c012075490d012002280204210a208c01209c0120776a22022075746a280204210b0b200b200a490d010b209c012084016a21020b209c012002206b6a229e014d0d24209c0120024d0d25208c0120022075746a229001280204229f012090012802006a2202208c01209e012075746a22a00128020022a101490d22200220474b0d23204620a1012078746a229b0120a001280204229d01207874220a6a210b2002207874210902400240024002400240200220a1016b220c209d016b2202209d014f0d00206c200b2002207874220a10f5012206200a6a210d209d01206b480d012002206b480d01206e20096a2109200b210a0340207910122202450d202002207a6a20702900cbaf4022033700002002207b6a20702900c4af402204370000200220676a20702900bcaf40223e370000200220702900b4af40223f37000020022079207c10132202450d212002200d206d6a220b29000037001f2002207d6a200b207e6a2900003700002002207f6a200b207b6a29000037000020022080016a200b20676a290000370000200141286a2002207c1025208201290300219701200141286a207e6a228e012903002100200141286a207b6a2207290300219101200141286a20676a2240290300219201200129032821930120021014207910122202450d222002207a6a20033700002002207b6a2004370000200220676a203e3700002002203f37000020022079207c10132202450d232002200a206d6a220c29000037001f2002207d6a200c207e6a2900003700002002207f6a200c207b6a29000037000020022080016a200c20676a290000370000200141286a2002207c102520820129030021042007290300213e208e0129030021032040290300213f2001290328219401200210142009200c200b20002092017c229201204820930120485222021b2003203f7c223f204820940120830151228e011b542097012091017c209201200054ad7c204820021b22002004203e7c203f200354ad7c2048208e011b22035420002003511b228e011b22022900003700002009207e6a2002207e6a2900003700002009207b6a2002207b6a290000370000200920676a200220676a290000370000200d200b208e011b210d209b01200c200a208e011b220a4f0d042009206d6a2109200621022006200d490d000c050b0b206c209b01200a10f5012202200a6a210d209d01206b480d01200c209d014c0d01204620096a210720022102209b01210a0340207910122209450d232009207a6a20702900cbaf4022033700002009207b6a20702900c4af402204370000200920676a20702900bcaf40223e370000200920702900b4af40223f37000020092079207c10132209450d242009200b29000037001f2009207d6a200b207e6a2900003700002009207f6a200b207b6a29000037000020092080016a200b20676a290000370000200141286a2009207c1025208201290300219701200141286a207e6a220c2903002100200141286a207b6a228e01290300219101200141286a20676a2206290300219201200129032821930120091014207910122209450d252009207a6a20033700002009207b6a2004370000200920676a203e3700002009203f37000020092079207c10132209450d262009200229000037001f2009207d6a2002207e6a2900003700002009207f6a2002207b6a29000037000020092080016a200220676a290000370000200141286a2009207c10252082012903002104208e01290300213e200c29030021032006290300213f200129032821940120091014200a200b200220002092017c229201204820930120485222091b2003203f7c223f204820940120830151220c1b542097012091017c209201200054ad7c204820091b22002004203e7c203f200354ad7c2048200c1b22035420002003511b220c1b2209290000370000200a207e6a2009207e6a290000370000200a207b6a2009207b6a290000370000200a20676a200920676a290000370000200220022081016a200c1b2102200a2081016a210a200b2081016a200b200c1b220b20074f0d04200d20024b0d000c040b0b200b210a0c010b209b01210a0b206c21020b200a2002200d20026b206d7110f5011a20900120716a209f01209d016a36020020900120a10136020020a00120a00120676a209e01207273209c016a20757410f6011a209a01218e01209a01206b4b0d4e0c84010b209c01218e01208f010d330c84010b20b40120aa016a210a20b4012f0106220c20a4017421024100210b024002400240024003402002450d01200141286a200a20ab0110f7012209450d02200220b1016a2102200b20b2016a210b200a20ab016a210a200920ac014a0d000b200b20ac016a210c0b20b501450d0120b50120ac016a21b50120b401200c20ad01746a20ae016a28020021b4014104213d0c5d0b20b401200b20af01746a20b001470d010b20b30120a501470d340c87010b200141e0026a41186a2202200141286a41186a290300370300200141e0026a41106a220a200141286a41106a290300370300200141e0026a41086a220b200141286a41086a290300370300200120012903283703e0024120101222b601450d2e20b60120012903e00237000020b60141186a200229030037000020b60141106a200a29030037000020b60141086a200b29030037000020b30120a501460d01410121b701411821b801411021b901410821ba01412021bb01410521bc01417f21bd01410221be0141a80821bf01410621c00141987d21c101420521c201422021c301410021c401416021c501410121c601410121c701410421360c400b200141286a20b8016a22ca0120b30120b8016a290000370300200141286a20b9016a22cb0120b30120b9016a290000370300200141286a20ba016a22cc0120b30120ba016a290000370300200120b30129000037032820b30120bb016a21b30120c80121cd0120c90121ce010c6b0b410121c601410121c7010c790b20f50120dd016a210a20f5012f0106220c20dc017421024100210b024002400240024003402002450d0120f301200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20f701450d0120f70120d6016a21f70120f501200c20da01746a20de016a28020021f5014106213d0c5b0b20f50120e5016a200b20e401746a2202450d00200220dd016a29030021f801200229030021f9012002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020f8017c2002290300220020f9017c22f901200054ad7c21f801200220e6016a2102200a20e7016a220a0d000c020b0b420021f901420021f8010b20b60120f20120dc01746a21fb0120f40121fc0120f60121fd010c4a0b20fc0120dd016a210a20fc012f0106220c20dc017421024100210b024002400240024003402002450d0120fb01200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20fd01450d0120fd0120d6016a21fd0120fc01200c20da01746a20de016a28020021fc014107213d0c5c0b20fc0120e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20f90120035420f80120005420f8012000511b450d4a4108213d0c5a0b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21fe0120f40121ff0120f6012180020c680b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21860220f40121870220f6012188020c680b410021f0010c690b410021f00120f10121fa010c6a0b024002400240024020ed01208e02228f0220d6016a228e0220d901746a2202280200450d0020ed01208f0220d901746a220c20e9016a28020022092002280204220a4d0d00410221ef01208f0241024d0d0b20ed01208f0220db016a220220d901746a280204220b200a20096a4d0d01410321ef01208f0241034d0d0b200c20ea016a280200200b20096a4d0d010c0c0b208f0220d901490d012002280204210a20ed01208f0220db016a220220d901746a280204210b0b200b200a490d010b208f0220e8016a21020b208f02200220d0016a2290024d0d20208f0220024d0d2120ed01200220d901746a2291022802042292022091022802006a220220ed0120900220d901746a229302280200229402490d22200220c6014b0d2320910220d5016a21950220b60120940220dc01746a22960220930228020422970220dc0174220a6a21980220b601200220dc01746a21990220022094026b220b2097026b22022097024f0d0120d101209802200220dc0174220a10f501200a6a219a0220970220d001480d03200220d001480d0320012802e002219b02209802219c02410221020c710b20a00220dd016a210a20a0022f0106220c20dc017421024100210b02400240024003402002450d01209e02200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a202450d0120a20220d6016a21a20220a002200c20da01746a20de016a28020021a002410b213d0c5b0b20a00220e5016a200b20e401746a2202450d00200220dd016a29030021a302200229030021a4022002280218220a450d2d20022802102102200a20e6016c210a0340200220dd016a29030020a3027c2002290300220020a4027c22a402200054ad7c21a302200220e6016a2102200a20e7016a220a0d000c300b0b420021a402420021a3020c2d0b20d101209602200a10f5012202200a6a219a0220970220d001480d02200b2097024c0d0220012802e00221a602200221a502209602219c02410321020c6f0b20a80220dd016a210a20a8022f0106220c20dc017421024100210b02400240024003402002450d01209802200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20aa02450d0120aa0220d6016a21aa0220a802200c20da01746a20de016a28020021a802410c213d0c5b0b20a80220e5016a200b20e401746a2202450d00200220dd016a29030021ab02200229030021ac022002280218220a450d2e20022802102102200a20e6016c210a0340200220dd016a29030020ab027c2002290300220020ac027c22ac02200054ad7c21ab02200220e6016a2102200a20e7016a220a0d000c310b0b420021ac02420021ab020c2e0b209802219c020c450b209602219c02410d213d0c590b20d10121a502410e213d0c590b209c0220a502209a0220a5026b20d2017110f5011a2095022092022097026a36020020910220940236020020930220930220dd016a20900220d60173208f026a20d9017410f6011a208e0221ef01208e0220d0014b0d3f0b20f0010d230c010b208f0221ef0120f0010d230b024020ee01450d0020ed0110140b20cf01450d6920d10110140c690b20d30228020022d4022f0106220c20ad027421024100210b20d40220b0026a220d210a0240024003402002450d0120d002200a20af0210f7012209450d02200220cc026a2102200b20b4026a210b200a20af026a210a200920b1024a0d000b200b20b1026a210c0b20d202450d0420d20220b1026a21d20220d402200c20b202746a20b3026a21d302410f213d0c560b20d10220d10228020820b1026a3602080240024020d202450d0020d40220b6026a200b20b502746a210920d402200b20ad02746a20b0026a210c20d402200b20b202746a20c1026a2802002102024020d20220b402460d0020b40220d2026b210a034020022802a8082102200a20b4026a220a0d000b0b200220c20220022f01061b22d402290008210020d40220ba026a290000210320d40220bb026a290000210420d40220af026a290000213e20d40220b0026a20d40220bc026a20d4022f0106220220ad027420cc026a10f6011a20d40220c8026a290300213f20d4022903880321970120d40220c5026a29030021910120d40220c4026a29030021920120d40220c3026a29030021930120d4022903e80221940120d40220c9026a29030021950120d40220c7026a29030021960120d40220b6026a20d40220ca026a200220b5027420cd026a10f6011a20d402200220b1026a3b0106200c20bb026a203e370000200c2004370010200c2003370008200c2000370000200920bb026a209601370300200920b0026a2095013703002009209401370300200920be026a209301370200200920bd026a209201370200200920bc026a2091013702002009209701370220200920ba026a220229030021002002203f3703002000a721d502200020ce0288a721d60220d4022f010620b8024d0d010c030b200d200b20ad02746a200d200b20b4026a220a20ad02746a200b20b10273220920d4022f01066a20ad027410f6011a20d40220b6026a220c200b20b502746a220220b7026a28020021d602200228021021d5022002200c200a20b502746a200920d4022f01066a20b5027410f6011a20d40220d4022f010620b1026a3b010620d4022f010620b8024b0d020b410021d7024110213d0c560b20d4022802002209450d000240024020d4022f01042202450d00200220b1026a210b410121070c010b4100210b4100210720092f0106450d190b024002400240024002400240024002400240200920b3026a229001200b20b4026a220c20b2027422a1016a22a001280200220a2f0106220d209001200b20b2027422d8026a220228020022062f010622406a20b9024f0d0020d70220b4026a21d70220a001280200229b012f010621072002280200220d2f01062140200141286a20b0026a2206200920b0026a220a200b20ad02746a220220b0026a290000370300200141286a20ba026a229c01200220ba026a290000370300200141286a20bb026a229d01200220bb026a290000370300200120022900003703282002200a200c20ad02746a200b20b10273229e0120092f01066a20ad027410f6011a200d20b0026a220a204020ad02746a220220bb026a209d01290300370000200220ba026a209c01290300370000200220b0026a200629030037000020022001290328370000200a204020b4026a220220ad02746a209b0120b0026a200720ad027410f5011a2006200920b6026a229f01200b20b502746a220a20b0026a290300370300209c01200a20ba026a290300370300209d01200a20bb026a290300370300200141286a20af026a22d902200a20af026a290300370300200141286a20bc026a22da02200a20bc026a290300370300200141286a20bd026a22db02200a20bd026a290300370300200141286a20be026a22dc02200a20be026a2903003703002001200a290300370328200a209f01200c20b502746a209e0120092f01066a20b5027410f6011a200d20b6026a229e01204020b502746a220a20be026a20dc02290300370300200a20bd026a20db02290300370300200a20bc026a20da02290300370300200a20af026a20d902290300370300200a20bb026a209d01290300370300200a20ba026a209c01290300370300200a20b0026a2006290300370300200a2001290328370300209e01200220b502746a209b0120b6026a200720b5027410f5011a20a001209001200b20b2026a220a20b202746a20bf0220a1016b10f601210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920d8026a20c0026a210b0340200b280200220c200a3b0104200c2009360200200b20b8026a210b2006200a20b4026a220a470d000b0b200920092f010620b1026a3b0106200d2007200d2f01066a20b4026a3b0106024020d70220b202490d00200d200220b202746a20b3026a209b0120b3026a200720b2027420b8026a10f5011a2002204020076a20b2026a4f0d00200720b4026a210b200d204020b202746a20c1026a210a0340200a280200220c20023b0104200c200d360200200a20b8026a210a200220b4026a2102200b20b1026a220b0d000b0b209b01101420092f01062202450d01200921d402200220ad02490d470c090b2007450d012006204020b1026a220a20b502746a220220c3026a2903002100200220c4026a2903002103200220c5026a2903002104200220c6026a290300213e200220c7026a290300213f200220c8026a290300219701200220c9026a290300219101200220b6026a2903002192012006200a20ad02746a220220af026a290000219301200220bb026a290000219401200220ba026a290000219501200220b0026a29000021960120d702450d022006204020b202746a20b3026a280200220a20c2023602000c030b20d10220d10228020022022802a808220a36020020d10220d10228020420b1026a360204200a20c2023602002002101420d5020d080c090b200a20af026a2900002100200a20bb026a2900002103200a20ba026a2900002104200a290008213e200a20b0026a200a20bc026a200d20ad027420cc026a10f6011a200a20c3026a290300213f200a20c4026a290300219701200a20c5026a290300219101200a20c7026a290300219201200a20c8026a290300219301200a20c9026a290300219401200a29038803219501200a2903e802219601200a20b6026a200a20ca026a200a2f010620b5027420cd026a10f6011a20d702450d02200a2802a8082107200a20b3026a220c200a20c1026a200d20b2027410f6011a200720c202360200200d450d03410021360340200c280200220620363b01042006200a360200200c20b8026a210c200d203620b4026a2236470d000c040b0b4100210a0b200620062f010620b1026a3b01062009200b20ad02746a220220af026a220c290000219801200c209301370000200220bb026a220c290000219301200c209401370000200220ba026a220c290000219401200c209501370000200220b0026a220229000021950120022096013700002009200b20b502746a220220c7026a220b290300219601200b203f370300200220c8026a220b290300213f200b209701370300200220c9026a220b290300219701200b209101370300200220b6026a220b290300219101200b209201370300200220c3026a220b290200219201200b2000370200200220c4026a220b2902002100200b2003370200200220c5026a220b2902002103200b2004370200200220c6026a220229020021042002203e37020020a001280200210b20d702450d02200a450d1e200b20bc026a200b20b0026a200b2f0106220220ad027410f6011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200220b5027410f6011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b20c6026a2004370300200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b20c1026a200b20b3026a2202200b2f010620b2027420b8026a10f6011a200b200a3602a808200b200b2f010620b4026a220a3b0106200a20cb027120b4026a210c4100210a034020022802002209200a3b01042009200b360200200220b8026a2102200c200a20b4026a220a470d000c050b0b410021070b200a20b5026a220a200a2f010020b1026a3b01002009200b20ad02746a220a20af026a220c290000219801200c2000370000200a20bb026a220c2900002100200c2003370000200a20ba026a220c2900002103200c2004370000200a20b0026a220a2900002104200a203e3700002009200b20b502746a220a20c7026a220b290300213e200b209201370300200a20c8026a220b290300219201200b209301370300200a20c9026a220b290300219301200b209401370300200a20b6026a220b290300219401200b209601370300200a20c3026a220b290200219601200b203f370200200a20c4026a220b290200213f200b209701370200200a20c5026a220b290200219701200b209101370200200a20c6026a220a290200219101200a2095013702002002280200210220d702450d012007450d1d200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c7026a203e370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a2094013703002002200b20b4026a220a20b202746a20b3026a220b2007360200200220022f010620b4026a3b0106200b280200220b200a3b0104200b200236020020d5020d030c040b200b20bc026a200b20b0026a200b2f010620ad027410f6011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200b2f010620b5027410f6011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b200437038803200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b200b2f010620b4026a3b010620d5020d020c030b200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a209401370300200a20c7026a203e370300200220022f010620b4026a3b01060b20d502450d010b20d602450d0020d50210140b20cf0220ae02470d240c650b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b20a1012002103a000b200220471039000b41fcb5c200209e01209c011038000b41fcb5c2002002209c011038000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b204041081016000b41fcb5c200209002208f021038000b41fcb5c2002002208f021038000b2094022002103a000b200220c6011039000b41e8b6c2001018000b412041011016000b41e0bdc2001018000b41e0bdc2001018000b410121360c0b0b410221360c0b0b410321360c0b0b410521360c0c0b410521360c0c0b410621360c0c0b410621360c0c0b410621360c0c0b410721360c0c0b410721360c0c0b410721360c0c0b410821360c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b4101213d0c0b0b4101213d0c0b0b4103213d0c0c0b4107213d0c0e0b4109213d0c100b410a213d0c100b410b213d0c110b410c213d0c120b410d213d0c130b4110213d0c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20cd0120ba016a210a20cd012f0106220c20bc017421024100210b024002400240024003402002450d01200141286a200a20bb0110f7012209450d02200220c5016a2102200b20b7016a210b200a20bb016a210a200920bd014a0d000b200b20bd016a210c0b20ce01450d0120ce0120bd016a21ce0120cd01200c20be01746a20bf016a28020021cd01410021020c110b20cd01200b20c001746a20c101470d010b20b30120a501470d070c1b0b200141e0026a20b8016a220220ca01290300370300200141e0026a20b9016a220a20cb01290300370300200141e0026a20ba016a220b20cc01290300370300200120012903283703e00220ca01200229030037030020cb01200a29030037030020cc01200b290300370300200120012903e002370328024020c70120c601470d0020c60120b7016a220220c601490d3120c60120b70174220a20022002200a491b22c701ad20c20186220020c30188a70d312000a7220220c401480d31024020c601450d0020b60120c60120bc01742002101322b6010d010c060b2002101222b601450d050b20b60120c60120bc01746a22022001290328370000200220b8016a20ca01290300370000200220b9016a20cb01290300370000200220ba016a20cc0129030037000020c60120b7016a21c60120b30120a501470d050c1a0b20ff0120dd016a210a20ff012f0106220c20dc017421024100210b024002400240024003402002450d0120fe01200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208002450d0120800220d6016a21800220ff01200c20da01746a20de016a28020021ff01410121020c100b20ff0120e5016a200b20e401746a2202450d00200220dd016a29030021810220022903002182022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002081027c200229030022002082027c228202200054ad7c218102200220e6016a2102200a20e7016a220a0d000c020b0b420021820242002181020b20b60120f20120dc01746a21830220f40121840220f6012185020c0b0b20840220dd016a210a2084022f0106220c20dc017421024100210b024002400240024003402002450d01208302200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208502450d0120850220d6016a218502208402200c20da01746a20de016a280200218402410221020c0f0b20840220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b2082022003542081022000542081022000511b0d050c0d0b20870220dd016a210a2087022f0106220c20dc017421024100210b024002400240024003402002450d01208602200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208802450d0120880220d6016a218802208702200c20da01746a20de016a280200218702410321020c0e0b20870220e5016a200b20e401746a2202450d00200220dd016a2903002189022002290300218a022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002089027c20022903002200208a027c228a02200054ad7c218902200220e6016a2102200a20e7016a220a0d000c020b0b4200218a0242002189020b20b60120f20120dc01746a218b0220f401218c0220f601218d020c0a0b208c0220dd016a210a208c022f0106220c20dc017421024100210b024002400240024003402002450d01208b02200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208d02450d01208d0220d6016a218d02208c02200c20da01746a20de016a280200218c02410421020c0d0b208c0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b208a0220035a20890220005a2089022000511b0d0420f10120f0016b21fa0120f0010d0c0c0d0b200241011016000b41042136410121020c280b4105213d0c020b4108213d0c020b4109213d0c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20f10120f001490d0220f10120c6014b0d05024020f10120f0016b22fa0120d00176220a450d0020b60120f00120dc01746a21020340200141286a20df016a220b200220df016a2209290000370300200141286a20e1016a220c200220e1016a220d290000370300200141286a20dd016a2206200220dd016a22072900003703002001200229000037032820f30120dd016a2240290000210020f30120e1016a229b01290000210320f3012900002104200920f30120df016a229c01290000370000200d2003370000200720003700002002200437000020f301200129032837000020402006290300370000209b01200c290300370000209c01200b29030037000020f30120d2016a21f301200220446a2102200a20d6016a220a0d000b0b20f001450d010b20fa0120eb014b0d0020f10120c6014b0d0220f10120f0016b21fa0120f00120d6016a210220d30120f00120dc01746a210a034020f1012002490d04200a20fa0120d0016a22fa01200141e0026a109901200220d6016a210b02402002450d00200a20d2016a210a200b210220fa0120ec01490d010b0b200b20d0016a21f00120ee0120ef01460d060c070b20ee0120ef01470d04410021020c070b20f00120f101103a000b20f10120f001417f6a22024f0d010b200220f101103a000b20f10120c6011039000b410121020c020b410021020c010b410121020c000b0b024020a201450d0020a30110140b20c60120694d0d01200120014190026a3602b8022001200141b8026a3602e002024020c60141144b0d0020c60141014d0d0120c601417e6a210220b60120c6014105746a41406a210a4102210b034020c6012002490d04200a200b200141e0026a109901200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20c60141017622cf01ad2200421b88a70d142000420586a72244417f4c0d14410121d001410121d10102402044450d002044101222d101450d040b416021d20120b60141606a21d301410021d401410421d501417f21d601420321d701422021d801410321d901410221da01417d21db01410521dc01410821dd0141a80821de01411821df01417821e001411021e101417021e201416821e30141202144410621e40141e80221e501413021e601415021e701417e21e801417421e901416421ea01410921eb01410a21ec01410421ed01410021ee01410021ef0120c60121f001410521360c040b20c60120696b2202450d00410521ad0220b60120024105746a21ae02412021af02410821b002417f21b102410221b20241a80821b302410121b402410621b50241e80221b602411421b702410421b802410b21b902411021ba02411821bb02412821bc02413021bd02413821be02412c21bf0241b00821c00241ac0821c102410021c20241a00321c30241980321c40241900321c50241880321c60241800321c70241f80221c80241f00221c90241a80321ca0241ffff0321cb02416021cc02414021cd02422021ce0220b60121cf02410821360c040b20c701450d0920b60110140c090b200220c601103a000b204441011016000b410121020c0e0b410121020c0d0b208f010d010b0240208d01450d00208c0110140b206a450d0e206c10140c0e0b41022136410121020c0a0b02402042450d00204110140b20012802b8012102200141e0026a41086a220a4200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d04200220012802e002470d010c030b2002410a460d020b200141b0016a41086a2802002102200141e0026a41086a220a4200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d05200220012802e0024b0d010c030b2002410a4d0d020b200141e0026a41086a22024200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d0620012802e00221690c010b410a21690b200141b0016a41086a28020021022001200141b0016a36029002200220694d0d01200141e0026a41086a22024200370300200142003703e00241feb1c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328410021a20102400240200141286a41104184a1c100410041001001417f460d00200142103702bc022001200141286a3602b802200141e0026a200141b8026a103020012802e00222a301450d0820012802e40221a201410521a401200141e8026a28020041057422020d010c020b410121a301410521a40141004105742202450d010b20a30120026a21a501200128029002220228020021a601200228020421a701411821a801411021a901410821aa01412021ab01417f21ac01410221ad0141a80821ae01410621af0141987d21b001416021b101410121b20120a30121b301410321360c070b20a201450d0020a30110140b200141186a200141b0016a4101109301200141b8016a280200210b20012802b00121440240024020012802b40122d001450d0020d001210a20442102034020022802a8082102200a417f6a220a0d000b0340204420442f01064102746a41a8086a280200214420d001417f6a22d0010d000c020b0b204421020b200141ac026a20442f0106360200410021d00120014190026a41186a4100360200200141a4026a20443602002001200b3602b002200141003602a002200142003703980220012002360294022001410036029002200141286a20014190026a109a010240024002400240024002400240024020012802582202450d00200141e0026a41086a2244200141e4006a290200370300200141e0026a41106a22d001200141ec006a290200370300200141e0026a41186a220a200141f4006a290200370300200141e0026a41206a220b200141fc006a290200370300200141e0026a41286a22d20120014184016a2802003602002001200129025c3703e002200141286a41286a22d601290300210e200129034821830120d60120d201280200360200200141286a41206a200b290300370300200141286a41186a200a290300370300200141286a41106a20d001290300370300200141286a41086a2044290300370300200120012903e002370328417f20014190026a41206a280200224441016a22d00120d0012044491b220cad2248421a88a70d102048420686a72244417f4c0d102044450d0120441012223d450d0b203d21670c020b20014190026a1094014108213d4100210c410821670c020b4108213d410821670b2067208301370300206720023602102067200e370308206741146a20012903283702002067411c6a200141286a41086a290300370200206741246a200141286a41106a227b2903003702002067412c6a200141286a41186a2209290300370200206741346a200141286a41206a220b2903003702002067413c6a200141286a41286a22d201280200360200200141b8026a41206a22e70120014190026a41206a280200360200200141b8026a41186a20014190026a41186a290300370300200141b8026a41106a20014190026a41106a290300370300200141b8026a41086a20014190026a41086a29030037030020012001290390023703b802200141286a200141b8026a109a01024002402001280258227c450d00200141286a41346a2102200141d8006a21e601410221d60141c000210a410121d0010340200141e0026a41086a2244200241086a290200370300200141e0026a41106a2279200241106a290200370300200141e0026a41186a227e200241186a290200370300200141e0026a41206a22dd01200241206a290200370300200141e0026a41286a22ee01200241286a280200360200200120022902003703e00220d2012903002148200b290300210e20d20120ee01280200360200200b20dd012903003703002009207e290300370300207b2079290300370300200141286a41086a22792044290300370300200120012903e002370328024020d001200c470d0020d001417f20e701280200224441016a226720672044491b6a224420d001490d1220d6012044204420d601491b220cad420686228301422088a70d12208301a722444100480d120240024020d001450d00203d200a20441013223d0d010c070b20441012223d450d060b203d21670b2067200a6a224420483703082044200e370300204441106a207c3602002044413c6a20d201280200360200204441346a200b2903003702002044412c6a2009290300370200204441246a207b2903003702002044411c6a2079290300370200204441146a200129032837020020d60141026a21d601200a41c0006a210a20d00141016a21d001200141286a200141b8026a109a0120e601280200227c0d000c020b0b410121d0010b200141b8026a1094010b200141e0026a41086a22444200370300200142003703e00241c4bdc000411f200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e0022183010c010b42e8072183010b2001410036023020014201370328206720d001200141286a1078200128022c21022001280230210a20012802282144200141e0026a41086a220b4200370300200142003703e00241d596c1004115200141e0026a1000200141286a41086a200b290300370300200120012903e002370328200141286a41102044200a100202402002450d00204410140b024020d001450d0020d0014106742102206741106a214403400240204441046a280200450d00204428020010140b204441c0006a2144200241406a22020d000b0b0240200c450d00203d10140b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22022044290300370300200120012903e0023703284200210e0240200141286a41104184a1c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e002210e0b2001200e2083017c3703b80220444200370300200142003703e00241ea96c1004112200141e0026a100020022044290300370300200120012903e002370328200141286a4110200141b8026a4108100220444200370300200142003703e00241dd81c000410d200141e0026a100020022044290300370300200120012903e0023703280240200141286a41104184a1c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0420012903e00221480b200141386a2048370300200141083a0028200141286a41086a4107360200200141286a101a2005450d11200810140c110b204441081016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b204441081016000b41b185c00041331015000b410121020c010b02402035200f6a22352010470d00410021020c010b41002136410121020c000b0b100f000b1010000b204720686b210b204621670b2067200b109501200141e0026a41086a22444200370300200142003703e0024189bdc000411c200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41102065206620661001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d001210e0c010b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a41104184a1c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d00121480b20012048200e7c37033020014201370328200141153602d401200141ddb0c0003602d001200141286a200141d0016a108701200141083a002820054103360200200141286a101a2045450d010b2046101420014190036a24000f0b20014190036a24000f0b41b185c00041331015000b41b185c00041331015000bc92007107f017e027f027e017f097e027f230041f0016b22022400200241e0016a41086a22034200370300200242003703e00141ddb0c0004115200241e0016a1000200241f0006a41086a22042003290300370300200220022903e0013703700240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241f0006a41104184a1c100410041001001417f460d00200242103702542002200241f0006a3602502002200241d0006a10880120022903004203510d014196b1c0002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703e00141f2b0c0004124200241e0016a100020042003290300370300200220022903e0013703700240200241f0006a41104184a1c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a103020022802502204450d0c200241d8006a280200210302402002280254450d00200410142003450d010c130b20030d120b200241e0016a41086a22034200370300200242003703e00141feb1c000411a200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a41104184a1c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a103020022802502204450d0e200241d8006a280200210302402002280254450d00200410142003450d010c120b20030d110b200241e0016a41086a22034200370300200242003703e0014198b2c000411b200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a41104184a1c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a103020022802502204450d0f200241d8006a280200210302402002280254450d00200410142003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b02400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210122203450d12200341206a41002f00d3b24022173b0000200341186a41002900cbb2402218370000200341106a41002900c3b2402219370000200341086a41002900bbb240221a370000200341002900b3b240221b3700002003412241c40010132203450d13200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241e0016a41086a22014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a411010082106200310144122101221030240024002402006450d002003450d18200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010132203450d19200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0006a200341c2001025200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f2002290370212020031014412210122203450d1a200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010132203450d1b200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122204450d1c2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010132204450d1d2004201e4200202042015122071b370010200441186a201f420020071b37000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a411020044120100220041014200310142012422088a741306c22030d010c020b2003450d1d200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010132203450d1e200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122206450d1f200620163700002006201537000820064110412010132206450d2020064200370010200641186a420037000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102006412010022006101420031014200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d0f200e4101742204200320032004491b220fad4205862215422088a70d0f2015a722034100480d0f0240200e450d002010200e4105742003101322100d010c240b200310122210450d230b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210122204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100821222004101441221012210402402022450d002004450d09200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d0a200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000200241f0006a200441c2001025200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f2002290370212020041014412210122204450d0b200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d0c200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122207450d0d2007201e4200202042015122051b3700002007201f420020051b37000820074110412010132207450d0e2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c37000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102007412010022007101420041014200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122222450d11202242003700082022420037000020224110412010132222450d1220222016370010202241186a201537000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102022412010022022101420041014200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d0f200e4101742207200420042007491b220fad4205862215422088a70d0f2015a722044100480d0f0240200e450d002010200e4105742004101322100d010c150b200410122210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d00201310140b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d00200410140b2003211420012003470d000b0b0240200b450d00200810140b2002200e3602782002200f3602742002201036027020024124360254200241f2b0c000360250200241f0006a200241d0006a10730240200f450d00201010140b200241083a007041002105200241f0006a41086a4100360200200241f0006a101a1089010c240b412241011016000b41c40041011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b1010000b412241011016000b41c40041011016000b411041011016000b412041011016000b200441011016000b412241011016000b41c40041011016000b41b185c00041331015000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b41b185c00041331015000b200341011016000b41b185c00041331015000b41b185c00041331015000b41e5b1c00021054119210620012802002107200128020822030d020c030b41cdb1c00021054118210620012802002107200128020822030d010c020b41b2b1c0002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d00200328020010140b200341c0006a2103200441406a22040d000b0b200141046a280200450d00200710140b2000200636020420002005360200200241f0016a24000b13002000410036020420004184a1c1003602000b130020004107360204200041b195c0003602000b13002000410236020420004194ccc1003602000b130020004101360204200041dccdc1003602000b130020004109360204200041d999c0003602000b130020004103360204200041e0cec1003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242053700000f0b410841011016000b130020004102360204200041f8bac2003602000b13002000410036020420004184a1c1003602000b130020004101360204200041d8cac1003602000b13002000410836020420004197abc0003602000b130020004107360204200041d0dbc1003602000b130020004102360204200041f0d9c1003602000b130020004103360204200041b4d8c1003602000b130020004101360204200041f4a5c2003602000b130020004103360204200041a4f9c1003602000b130020004101360204200041b8a4c2003602000b130020004102360204200041fca4c2003602000b130020004106360204200041b092c2003602000b13002000410836020420004194e2c1003602000b1300200041013602042000419cb6c2003602000bb20504027f017e017f037e230041206b22022400024002400240411410122203450d00200341106a41002800ba9b40360000200341086a41002900b29b40370000200341002900aa9b4037000020034114413410132203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1000200241086a200529030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012205417f460d022005410f4d0d02200241186a29030021062002290310210420031014411810122203450d010c050b42002106200310144118101222030d040b411841011016000b41b185c00041331015000b411441011016000b413441011016000b200341106a41002900ce9b40370000200341086a41002900c69b40370000200341002900be9b40370000024020034118413810132203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1000200241086a200129030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b200310142000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41b185c00041331015000b413841011016000bf20202027f027e230041206b22032400024020001064450d00200341206a240041000f0b02400240411410122204450d00200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b4037000020044114413410132204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1000200341086a200029030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b20041014200341206a2400200520015a200620025a20062002511b0f0b41b185c00041331015000b411441011016000b413441011016000baf0304027f017e017f017e230041206b2201240002400240410f10122202450d00200241076a41002900e9c140370000200241002900e2c1403700002002410f412f10132202450d012002200029000037000f200241276a200041186a2900003700002002411f6a200041106a290000370000200241176a200041086a29000037000042002103200141106a41086a22004200370300200142003703102002412f200141106a1000200141086a220420002903003703002001200129031037030042002105024002400240200141104184a1c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021050b20021014200042003703002001420037031041dd81c000410d200141106a100020042000290300370300200120012903103703000240200141104184a1c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d02200129031021030b200141206a240041c4c1c000410020052003561b0f0b41b185c00041331015000b41b185c00041331015000b410f41011016000b412f41011016000bdc0202027f027e230041206b2202240002400240411410122203450d00200341106a41002800ba9b40360000200341086a41002900b29b40370000200341002900aa9b4037000020034114413410132203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1000200241086a200129030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b200310142000200537030820002004370300200241206a24000f0b41b185c00041331015000b411441011016000b413441011016000bf10504027f017e017f067e230041306b2204240002400240411810122205450d00200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054138200441206a1000200441106a41086a2007290300370300200420042903203703100240024002400240200441106a41104184a1c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012207417f460d022007410f4d0d02200441286a2903002108200429032021090c010b42002109420021080b20051014200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d1067200441206a41086a220142003703002004420037032041949bc0004116200441206a1000200441106a41086a20012903003703002004200429032037031002400240200441106a41104184a1c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012201417f460d032001410f4d0d03200441286a290300210c200429032021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37030020042006370308200441206a41086a220142003703002004420037032041949bc0004116200441206a1000200441106a41086a200129030037030020042004290320370310200441106a41102004411010020b20002002200a7d370308200041106a2003200b7d2002200a54ad7d37030020002009200254200820035420051bad370300200441306a24000f0b41b185c00041331015000b41b185c00041331015000b411841011016000b413841011016000bcc0f07017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141ecabc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441182107411810122205450d010c030b42002106411821074118101222050d020b200741011016000b41b185c00041331015000b200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b40370000024002400240024002400240024002400240024002400240024020052007413810132205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a4110200341101002200510142004200158200620025820062002511b0d0b411810122205450d04200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0520052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101420034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010020b411810122205450d06200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0720052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341086a2007290300370300200320032903800137030020034110100320051014411410122205450d08200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d09200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a29030021022003290300210141002107200510142001200284504101710d0d0c0b0b41012107200510144100410171450d0a0c0c0b413841011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411841011016000b413841011016000b411841011016000b413841011016000b411441011016000b413441011016000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a410028009e8240360000200541086a410029009782403700002005410029008f824037000020054113413310132205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b290300370300200320032903800137030020034110100320051014200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003101a20034190016a24000f0b411341011016000b413341011016000bb40604027f017e017f067e230041d0006b2204240002400240411410122205450d00200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441c0006a41086a220742003703002004420037034020054134200441c0006a1000200441206a41086a2007290300370300200420042903403703200240024002400240200441206a41104184a1c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d022007410f4d0d02200441c8006a2903002108200429034021090c010b42002109420021080b20051014200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d1069200441c0006a41086a220742003703002004420037034041949bc0004116200441c0006a1000200441206a41086a20072903003703002004200429034037032002400240200441206a41104184a1c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d032007410f4d0d03200441c8006a290300210c200429034021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37033020042006370338200441c0006a41086a220742003703002004420037034041949bc0004116200441c0006a1000200441206a41086a200729030037030020042004290340370320200441206a4110200441306a411010020b02400240200920025a200820035a20051b0d00200441086a20012002200a7d2003200b7d2002200a54ad7d1066200441186a290300210820042903102109200429030821030c010b420021030b2000200937030820002003370300200041106a2008370300200441d0006a24000f0b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b911107017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141ecabc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441142107411410122205450d010c030b42002106411421074114101222050d020b200741011016000b41b185c00041331015000b200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000002400240024002400240024002400240024002400240024002400240024020052007413410132205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a4110200341101002200510142004200158200620025820062002511b0d0d411410122205450d04200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101420034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010020b411410122205450d06200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d07200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341086a2007290300370300200320032903800137030020034110100320051014410f10122205450d08200541076a41002900e9c140370000200541002900e2c1403700002005410f412f10132205450d092005200029000037000f200541276a200041186a2900003700002005411f6a200041106a290000370000200541176a200041086a29000037000020034180016a41086a2207420037030020034200370380012005412f20034180016a1000200341086a2007290300370300200320032903800137030020034110100320051014411810122205450d0a200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0b20052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a29030021022003290300210141002107200510142001200284504101710d0f0c0d0b41012107200510144100410171450d0c0c0e0b413441011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b411441011016000b413441011016000b410f41011016000b412f41011016000b411841011016000b413841011016000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a410028009e8240360000200541086a410029009782403700002005410029008f824037000020054113413310132205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b290300370300200320032903800137030020034110100320051014200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003101a20034190016a24000f0b411341011016000b413341011016000bbd0504027f017e017f037e230041c0006b22032400200320001062024002400240024002402003290300200341086a29030084500d00411410122204450d03200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b4037000020044114413410132204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341306a41086a220642003703002003420037033020044134200341306a1000200341206a41086a20062903003703002003200329033037032002400240200341206a41104184a1c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012206417f460d032006410f4d0d03200341386a2903002107200329033021080c010b42002108420021070b200410142000200820017c2209200720027c2009200854ad7c1069200341306a41086a220042003703002003420037033041949bc0004116200341306a1000200341206a41086a20002903003703002003200329033037032002400240200341206a41104184a1c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012200417f460d042000410f4d0d04200341386a2903002108200329033021050c010b420021080b200520017c22012005542200200820027c2000ad7c220520085420052008511b0d002003200137031020032005370318200341306a41086a220042003703002003420037033041949bc0004116200341306a1000200341206a41086a200029030037030020032003290330370320200341206a4110200341106a411010020b200341c0006a24000f0b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000bec0506027f017e017f027e017f027e230041206b2203240002400240024002400240411410122204450d00200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b4037000020044114413410132204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044134200341106a1000200341086a200629030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021050c010b420021070b200410144187acc00021040240024020052001542206200720025420072002511b0d00200010642204450d010b200341206a240020040f0b411810122204450d04200441106a41002900ce9b40370000200441086a41002900c69b40370000200441002900be9b4037000020044118413810132204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341106a41086a220942003703002003420037031020044138200341106a1000200341086a20092903003703002003200329031037030002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012209417f460d052009410f4d0d05200341186a290300210a200329031021080c010b4200210a0b200410142000200820017c220b200a20027c200b200854ad7c10672000200520017d200720027d2006ad7d1069200341206a240041000f0b41b185c00041331015000b411441011016000b413441011016000b41b185c00041331015000b411841011016000b413841011016000be70504027f017e017f047e230041206b22032400024002400240411810122204450d00200441106a41002900ce9b40370000200441086a41002900c69b40370000200441002900be9b4037000020044118413810132204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1000200341086a200629030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021052004101441142106411410122204450d010c050b4200210720041014411421064114101222040d040b200641011016000b41b185c00041331015000b411841011016000b413841011016000b200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b40370000024020042006413410132204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1000200341086a200629030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101420002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c10692000200520017d200720027d2005200154ad7d1067200341206a24000f0b41b185c00041331015000b413441011016000bf60201057f230041206b220224000240024020002d0000220320012d0000470d00024020034101470d002000410c6a28020022042001410c6a280200470d012004450d02200041046a2802002203200141046a2802002205460d0241002106034020032005412010f7010d02200341206a2103200541206a2105200641016a22062004490d000c030b0b20002001460d01200041016a200141016a412010f701450d010b419cacc00041141006200041046a280200210520002d00002103200241186a22062000410c6a2802003602002002200341014736021020022005200041016a20034101461b3602142002200241106a1027200228020022002002280208100702402002280204450d00200010140b200141046a280200210320012d0000210020062001410c6a2802003602002002200041014736021020022003200141016a20004101461b3602142002200241106a102720022802002200200228020810072002280204450d00200010140b200241206a24000b81c9020d027f017e067f017e027f017e037f017e017f027e0a7f0d7e697f230041d0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441084b0d00024002400240024002400240024020040e09008f0104030108050602000b20034198046a41086a200141106a2903003703002003200141086a2903002205370398042005a7417e6a220441054b0d9001200241086a2800002106200241046a280000210720022d00002102024020040e0600211b1e1a23000b41012108200341a0046a2802002109200328029c04210a200241ff017122024101470d3d02402009450d00200a10140b4100210b41012107410121090c430b200341d8026a41086a2001412c6a2802003602002003200141246a2902003703d802200141186a290300210c200141206a280200210d2001410c6a2802002108200141096a2d0000210e200141106a2903002105200141086a2d00002107200341c8026a41086a200241206a2d00003a00002003200241186a2900003703c8022007417e6a2206410a4b0d900120022f0001200241036a2d00004110747221042005a7210b200241146a28000021092002410c6a290000210f200241086a280000210a200241046a280000211020022d00002102024020060e0b003431322f353633383037000b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d5120034198046a41086a220220062d00003a0000200320032903f8023703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a0000200320093600a3052003200f37009b052003200a36009705200320103600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a20034190056a106f20032d0098044101470d5d4186e2c00021044123210620074104470de7010cec010b200341fa026a2001410b6a2d00003a0000200341d8026a41086a200141206a290300370300200341d8026a41106a200141286a2903003703002003200141096a2f00003b01f8022003200141186a2903003703d802200141086a2d00002211417e6a220441034b0d90012001410c6a2802002112200141106a2903002213a7211420022d00002102024020040e0400110f10000b4100210941ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d234128210620140d94020c95020b200341b8036a41046a22082001410e6a2f01003b010020034190056a41086a220b200141206a29030037030020034190056a41106a2209200141286a29030037030020032001410a6a2801003602b8032003200141186a29030037039005200141096a2d00002107200141106a2903002105200141086a2d00002106200341d8026a41086a220a200241206a2d00003a00002003200241186a2900003703d80220022d0000210420064102460d0920064103460d0720064104470d90014128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040d8502200320073a00980420034188036a41086a2202420037030020034200370388034183fbc000411920034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a410110020c080b200141c8006a2903002115200141c0006a2903002116200141386a290300210f200141306a290300210c200141086a2802002106200341f8026a41086a22092001412c6a2d00003a00002003200141246a2902003703f802200141206a280200210b200141186a2902002105200141146a280200210e200141106a280200210d2001410c6a2d000021172001410d6a2f000021042001410f6a2d00002107200341c8026a41026a220a200241036a2d00003a0000200341f8036a41086a2210200241146a290000370300200341f8036a410d6a2218200241196a290000370000200320022f00013b01c80220032002410c6a2900003703f8032004200741107472210820022d0000210720064102460d0420064103470d9001200341a0066a41086a2206200341f8026a41086a2d00003a0000200320032903f8023703a00641ac80c00041ac80c0004100200741ff017122021b20024103461b2204450d14412821060c84020b200141386a290300210f200141306a290300210c2001412c6a2802002119200141286a280200210a200141246a2802002118200141206a280200211a2001411c6a2802002110200141186a2802002117200141146a280200211b200141106a280200210d2001410c6a2802002107200141096a2d0000211c200141086a2d00002106200341d8026a41086a220e200241206a2d00003a00002003200241186a2900003703d80220022f0001200241036a2d0000411074722104200241146a28000021082002410c6a2900002105200241086a280000210b200241046a280000210920022d0000210220064102460d0a20064103460d0920064104470d9001200341f8026a41086a2206200341d8026a41086a2d00003a0000200320032903d8023703f802200241ff01714101470d1620034198046a41086a220220062d00003a0000200320032903f8023703980420034180066a41086a220620022d00003a0000200320032903980437038006200341bf066a20062d00003a0000200320083600b306200320053700ab062003200b3600a706200320093600a30620032003290380063700b706200320043b01a006200320044110763a00a206411310122202450d99012002410f6a41002800a0f140360000200241086a4100290099f14037000020024100290091f14037000020024113412610132202450d9a012002200736001320034198036a41086a2206420037030020034200370398032002411720034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a411010082106200210142006450d2520034198046a20071048200341a0066a200341cc046a412010f701450d5041a2f5c0002104411c21060c750b20034198046a200141086a41d00010f5011a20034190056a41206a200241206a2d00003a000020034190056a41186a200241186a29000037030020034190056a41106a200241106a29000037030020034190056a41086a200241086a2900003703002003200229000037039005200341c0026a20034198046a20034190056a107020032802c402210620032802c002210441002108410121074101210b410121094101210a0c97020b200141086a2903004202520d8f01412d21064101210741fe80c000410041fe80c00020022d000041ff017122024102461b20024103461b22040d9202200141106a2903002105200341f8026a41086a22024200370300200342003703f802418890c0004113200341f8026a100020034198046a41086a22072002290300370300200320032903f8023703980420034198046a411010080d940120024200370300200342003703f80241a591c000410d200341f8026a100020072002290300370300200320032903f8023703980420034198046a41104184a1c100410041001001417f460d8702200342003703900520034198046a411020034190056a41084100100141016a41084d0d8801200329039005500d8702200341f8026a41086a22024200370300200342003703f80241a591c000410d200341f8026a100020034198046a41086a22072002290300370300200320032903f802370398044200210f024020034198046a41104184a1c100410041001001417f460d00200342003703900520034198046a411020034190056a41084100100141016a41084d0d9201200329039005210f0b20024200370300200342003703f80241b291c0004115200341f8026a100020072002290300370300200320032903f8023703980420034198046a41104184a1c100410041001001417f460d3e200342003703900520034198046a411020034190056a41084100100141016a41084d0d9201200329039005200f7c2005560d3f0c87020b200341c8026a41086a200141286a2d00003a00002003200141206a2902003703c8022001411c6a2802002110200141146a2902002105200141106a28020021062001410c6a2802002104200141086a2802002108200141046a2802002107200341d8026a41086a220b200241096a290000370300200341d8026a41106a2209200241116a290000370300200341d8026a41186a220a200241196a290000370300200320022900013703d80220022d0000210220074102460d0120074103470d8f01200341a0066a41086a200341c8026a41086a2d00003a0000200320032903c8023703a006200341f8036a41186a200341d8026a41186a290300370300200341f8036a41106a200341d8026a41106a290300370300200341f8036a41086a200341d8026a41086a290300370300200320032903d8023703f803200241ff01714101470d0c20034198046a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703980420032900fb03210f200329008304210c200328008b04210720032f01f803210b20032d00fa032109200341d8036a41086a220a20022d00003a000020032003290398043703d80320034190056a411f6a200a2d00003a0000200320093a0092052003200b3b019005200320073600a3052003200c37009b052003200f37009305200320032903d8033700a70520034188036a41086a22024200370300200342003703880341af8cc100410820034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a41104184a1c100410041001001417f460d2020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f80320034198036a4110200341f8036a4120410010012202417f460d94012002411f4d0d940120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2207200341f8036a41106a29030037030020034180066a41086a220b200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200729030037030020034198046a41086a200b2903003703002003200329038006370398040c210b200241086a2800002106200241046a2800002104200341d8026a41086a20092d00003a0000200320032903f8023703d802200341d8036a41026a200a2d00003a000020034180066a41086a201029030037030020034180066a410d6a2018290000370000200320032f01c8023b01d803200320032903f8033703800641012102200741ff01714101470d0c200341b8036a41026a200341d8036a41026a2d00003a000020034198046a41086a20034180066a41086a29030037030020034198046a410d6a20034180066a410d6a290000370000200320032f01d8033b01b803200320032903800637039804410021020c0d0b200341f8036a41186a200a290300370300200341f8036a41106a2009290300370300200341f8036a41086a200b290300370300200320032903d8023703f803200241ff01714101470d0d20034198046a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703980420032900fb032105200329008304210f200328008b04210620032f01f803210420032d00fa03210720034180066a41086a220b20022d00003a0000200320032903980437038006200341a0066a411f6a200b2d00003a0000200320073a00a206200320043b01a006200320063600b3062003200f3700ab06200320053700a30620032003290380063700b70620034188036a41086a22064200370300200342003703880341af8cc100410820034188036a100020034198036a41086a200629030037030020032003290388033703980320034198036a41104184a1c100410041001001417f460d2120034190046a4200370300200341f8036a41106a4200370300200341f8036a41086a4200370300200342003703f80320034198036a4110200341f8036a4120410010012202417f460d93012002411f4d0d930120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2206200341f8036a41106a29030037030020034180066a41086a2204200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200629030037030020034198046a41086a20042903003703002003200329038006370398040c220b4128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040dfd01200320053703980420034188036a41086a22024200370300200342003703880341f480c100411920034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a410810020b0c010b200241036a2d0000211020022f0001210d200241146a280000210e2002410c6a290000210f200241086a2800002106200241046a280000211820034197066a200b2903003700002003419f066a20092d00003a0000200320073a0080062003200537008706200320032802b80336008106200320032903900537008f06200320082f01003b008506200341f8026a41086a200a2d00003a0000200320032903d8023703f802200441ff01714101470d0f20034198046a41086a2202200341f8026a41086a2d00003a0000200320032903f80237039804200341d8036a41086a220420022d00003a000020032003290398043703d803200341f8036a41086a220720042d00003a0000200320032903d8033703f803200341a0066a41086a20072d00003a0000200320032903f8033703a00620034198046a41186a20034180066a41186a29030037030020034198046a41106a20034180066a41106a290300370300200220034180066a41086a290300370300200320032903800637039804411210122202450d9301200241106a41002f009d81413b0000200241086a410029009581413700002002410029008d814137000020024112413210132202450d94012002200d20104110747222043b00122002200e3600252002200f37001d2002200636001920022018360015200220032903a006370029200241146a20044110763a0000200241316a200341a0066a41086a2d00003a0000412010122204450d95012004200329039804370000200441186a20034198046a41186a290300370000200441106a20034198046a41106a290300370000200441086a20034198046a41086a29030037000020034188036a41086a2207420037030020034200370388032002413220034188036a100020034198036a41086a200729030037030020032003290388033703980320034198036a411020044120100220041014200210140b410021040cfa010b200341f8026a41086a2206200341d8026a41086a2d00003a0000200320032903d8023703f802200241ff01714101470d0f200341d8036a41086a220220062d00003a0000200320032903f8023703d80320034180066a41086a220620022d00003a0000200320032903d80337038006200341bf066a20062d00003a0000200320083600b306200320053700ab062003200b3600a706200320093600a30620032003290380063700b706200320043b01a006200320044110763a00a206200341a0066a1071450d2d411310122202450d99012002410f6a41002800a0f140360000200241086a4100290099f14037000020024100290091f14037000020024113412610132202450d9a012002200736001320034198036a41086a2206420037030020034200370398032002411720034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a411010082106200210142006450d1b20034198046a2007104820032d008c05450d504192f4c0002104411d2106200341b8046a280200450dfd010cfc010b200341f8026a41086a200e2d00003a0000200320032903d8023703f802200241ff01714101470d1120034198046a41086a2202200341f8026a41086a220e2d00003a0000200320032903f8023703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a0000200320083600a3052003200537009b052003200b36009705200320093600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a290300370300200220034190056a41086a29030037030020032003290390053703980420034198026a20034198046a106520032903980220034198026a41086a29030084500d304200210520034198036a41086a2202420037030020034200370398034189f0c000411220034198036a1000200e200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d46200342003703a0042003420037039804200341f8026a411020034198046a4110410010012202417f460d94012002410f4d0d9401200341a0046a290300210520032903980421150c470b200341b8036a41086a220b200341d8026a41086a290300370300200341b8036a41106a220d200341d8026a41106a2d00003a00002003200341fa026a2d00003a00d203200320032f01f8023b01d003200320032903d8023703b80341ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034197066a200b2903003700002003419f066a200d2d00003a000020032013370087062003201236008306200320032d00d2033a008206200320032f01d0033b018006200320032903b80337008f0641d599c100210420034180066a1071450d83024108211d20034188036a41086a22024200370300200342003703880341d596c100411520034188036a100020034198036a41086a20022903003703002003200329038803370398034100211e20034198036a41104184a1c100410041001001417f460d502003421037029405200320034198036a3602900520034198046a20034190056a1045200328029804221d450d9f01200341a0046a280200211f200328029c04211e0c510b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d014200210520034188036a41086a22024200370300200342003703880341dd81c000410d20034188036a100020034198036a41086a2002290300370300200320032903880337039803024020034198036a41104184a1c100410041001001417f460d00200342003703980420034198036a411020034198046a41084100100141016a41084d0d890120032903980421050b411c2106200520135a0d3c200320133703980420034188036a41086a22024200370300200342003703880341ea96c100411220034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a41081002410021024100210420114102460d83020c85020b200341a7056a200341d8026a41086a290300370000200341af056a200341d8026a41106a2d00003a000020032013370097052003201236009305200320032f01f8023b019005200320032903d80237009f052003200341fa026a2d00003a00920541ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d130b412821060c83020b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040cdf010b41d480c0002104412a21060b20034198036a41026a2207200341b8036a41026a2d00003a000020034190056a41086a220920034198046a41086a29030037030020034190056a41106a20034198046a41106a290300370300200320032f01b8033b01980320032003290398043703900520020df101200341b3066a2009290300370000200341b8066a2003419d056a290000370000200320032f0198033b01a006200320063600a706200320043600a30620032003290390053700ab06200320072d00003a00a206200341d8036a41086a200341d8026a41086a2d00003a0000200320032903d8023703d803201741ff01714101470d0d20034198046a200d410676103d20032802a004200d413f7122024d0d28200341c0036a20032802980420024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221082002280013210b200229000b21052002280007210e2002280003210d41012102200328029c04450de7010ce6010b20034180066a41086a20034198046a41086a2d00003a0000200320032903980437038006412a210641d480c00021040c150b200341d8036a41086a20062d00003a0000200320032903a0063703d803201741ff01714101470d0e20034190056a200d410676103d200328029805200d413f7122024d0d33200341c0036a20032802900520024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221082002280013210b200229000b21052002280007210e2002280003210d41012102200328029405450de1010ce0010b41002107200341a0046a2802002106200328029c04210941ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d244101210b2006450d09200910140c090b41012108200341a0046a280200210b200328029c04210a200241ff017122024101470d1f0240200b450d00200a10140b41002109410121074101210b0c280b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c030b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040ceb010b4101210b4101210741ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0520034198046a41086a2903002105410810122202450d8c012002200537000041c48ec000410a20024108100220021014410021044101210841012107410121094101210b0c260b20034180066a41086a200341d8036a41086a2d00003a0000200320032902d803370380060b412a210641d480c00021040ced010b41fe80c000410041fe80c000200241ff017122024102461b20024103461b2104412d21064101210841012107410121090c1a0b20034180066a41086a20034198046a41086a2d00003a0000200320032902980437038006412a210641d480c0002104200a450dd6010cd5010b200341a4046a2802002107200341a0046a2802002109200328029c04210841ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1e02402007450d00200741186c21062008210203400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200641686a22060d000b0b410121074100210b2009450d00200810140b41282106200328029804417e6a220241054b0d23024020020e06002825242627000b200341a0046a280200450d27200328029c0410140c270b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030cda010b2013422088a72202450d32200241057422064105752209ad4206862205422088a70dea012005a722044100480dea0120041012220a450d8501201220066a211020024105742104410020126b210d200a210220122106034020034180066a41186a2207200641186a29000037030020034180066a41106a2208200641106a29000037030020034180066a41086a220b200641086a2900003703002003200629000037038006200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003702002002412c6a2008290300370200200241246a200b2903003702002002411c6a200329038006370200200241c0006a2102200641206a2106200441606a22040d000b2010200d6a41606a41057641016a21022014450dd0010ccf010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980441af99c100210420034198046a10710da80141082107200341d8036a41086a220820034198046a41176a290000370300200341d8036a41106a220b20034198046a411f6a2d00003a0000200320032d009a043a00f203200320032f0198043b01f003200320032900a7043703d803200328009b042102200329009f04210520034188036a41086a22064200370300200342003703880341d596c100411520034188036a100020034198036a41086a20062903003703002003200329038803370398034100210420034198036a41104184a1c100410041001001417f460d3c2003421037028406200320034198036a36028006200341a0066a20034180066a104520032802a0062207450d8a01200341a0066a41086a280200210820032802a40621042003418f046a200341d8036a41086a29030037000020034197046a200341e8036a2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a210620082004460d3d0ca7010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030cd3010b200341b0046a4200370300200341a8046a4200370300200341a0046a420037030020034200370398040b024020034190056a20034198046a412010f701450d0041d98cc1002104413121060ccb010b200341d8036a41086a2202200341a0066a41086a2d00003a0000200320032903a0063703d803200841ff01714101470d2320034198046a2004410676103d20032802a0042004413f7122024d0d31200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132110200429000b2105200428000721062004280003210441012107200328029c04450dc7010cc6010b41e0f3c0002104411c21060ce2010b200341b0046a420037030020034198046a41106a42003703002002420037030020034200370398040b200341a0066a20034198046a412010f701450d0141b78cc1002104412221060b20081042200810140cc6010b20034198046a200841d80010f5011a41002104200341003a00900520034190026a20034198046a20034190056a106e2003200328029002453a009a04200341063b01980420034198046a101a200810140cc5010b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1f20034198046a41086a220220062d00003a0000200320032903f8023703980420034180066a41086a220720022d00003a0000200320032903980437038006200341af056a20072d00003a0000200320093600a3052003200f37009b052003200a36009705200320103600930520032003290380063700a705200320043b019005200320044110763a00920520034198036a41086a22024200370300200342003703980341dccdc000411220034198036a10002006200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460dbc01200342103702a4062003200341f8026a3602a00620034198046a200341a0066a10302003280298042202450d8201200328029c042106200220084105746a2204450d38200341a0046a28020020084d0d3820034190056a2004460d4c200420034190056a412010f7014521042006450dbb010cba010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d08200320083602980420034198036a41086a22024200370300200342003703980341feccc000411920034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41041002410021040cbc010b200341f8036a41086a2206200341d8026a41086a280200360200200320032903d8023703f803200341f8026a41086a220e200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1e20034180066a41086a2218200e2d00003a0000200320032903f80237038006200341d8036a41086a220220182d00003a000020032003290380063703d803200341bf066a20022d00003a0000200320093600b3062003200f3700ab062003200a3600a706200320103600a306200320032903d8033700b706200320043b01a006200320044110763a00a206200220062d00003a0000200320032903f8033703d803200841ff01714101470d2a20034198046a200b410676103d20032802a004200b413f7122024d0d3b200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d00004110747221022004280013210d200429000b210c200428000721062004280003210441012109200328029c04450da6010ca5010b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1e200341d8036a41086a220220062d00003a0000200320032903f8023703d80320034198046a41086a220620022d00003a0000200320032903d80337039804200341a0066a411f6a20062d00003a0000200320093600b3062003200f3700ab062003200a3600a706200320103600a30620032003290398043700b706200320043b01a006200320044110763a00a20620034198046a200341a0066a106f20032d0098044101470d2a20034180066a41086a2202200341b8046a2d00003a00002003200341b0046a29030037038006200341a4046a2902002105200341ac046a2802002106200329029c04210f20032f009904210420032d009b042107200341d8036a41086a220b20022d00003a000020032003290380063703d80320034190056a411f6a200b2d00003a0000200320073a009205200320043b019005200320063600a3052003200537009b052003200f37009305200320032903d8033700a70520034180066a20034190056a107220032802800621020240200328028806220420084d0d00200341a0066a200220084105746a2206460d442006200341a0066a412010f701450d440b0240200328028406450d00200210140b41bce3c0002104411421060cba010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d05200320083602980420034198036a41086a22024200370300200342003703980341b6dfc000411620034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41041002410021040cb9010b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1e20034190056a41086a220220062d00003a0000200320032903f8023703900520034180066a41086a220720022d00003a0000200320032903900537038006200341b7046a20072d00003a0000200320093600ab042003200f3700a3042003200a36009f042003201036009b0420032003290380063700af04200320043b019804200320044110763a009a0420034198036a41086a22024200370300200342003703980341dccdc000411220034198036a10002006200229030037030020032003290398033703f80241002102200341f8026a41104184a1c100410041001001417f460d30200342103702a4062003200341f8026a3602a00620034190056a200341a0066a10302003280290052207450d7e20034198056a280200210220032802940521060c310b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d032003200542808080807083200542ffffffff0f83843703980420034198036a41086a220242003703002003420037039803419cdfc000411a20034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41081002410021040cb7010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d022003200542808080807083200542ffffffff0f83843703980420034198036a41086a22024200370300200342003703980341bbcfc000411720034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41081002410021040cb6010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2141282106200b0db1010cb5010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d210b412821060cb3010b200741d480c00020024101461b2104412a2106410021090240200b450d00200a10140b410121070b4101210b0c080b41bbf3c0002104412521060cd0010b200741d480c00020024101461b2104412a21064100210b02402009450d00200a10140b41012107410121090c060b41d889c00041052009200341a4046a28020010024101210802402006450d00200910140b410021070c030b41002102200328029c040dbd010cbe010b41bff1c000210441202106200a0db6010cb7010b0240200741186c2202450d00200820026a21062008210203402002280200200241086a2802002002410c6a280200200241146a2802001002200241186a22022006470d000b0b02402007450d00200741186c21062008210203400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200641686a22060d000b0b4101210702402009450d00200810140b410021080b410121094101210b0b410021040b0240024002400240200328029804417e6a220241054b0d00024020020e06000b02010304000b200b450d0a200341a0046a280200450d0a200328029c0410140c0a0b20034198046a10340c090b2009450d08200341a0046a280200450d08200328029c0410140c080b2007450d07200341a0046a280200450d07200328029c0410140c070b2008450d06024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200741686a22070d000b0b200341a0046a280200450d06200328029c0410140c060b4205200f7c2005580dc8010b41c0cac1001018000b20034198046a10340c030b200341a0046a280200450d02200328029c0410140c020b2007450d01200341a0046a280200450d01200328029c0410140c010b200b450d00024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200741686a22070d000b0b200341a0046a280200450d00200328029c0410140b4101210b410021070cce010b410021022003280294050dac010cad010b200341b8036a41086a20022d00003a0000200320032903d8033703b803200841087621020ca4010b419399c10021044100210220114102460dc6010cc8010b20034180066a41086a20034198046a41086a2d00003a00002003200329039804370380060c040b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803412a210641d480c000210420074104470d97010c9c010b20034198046a41086a200341d8036a41086a2d00003a0000200320032903d803370398040c020b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c010b20034180066a41086a20034190056a41086a2d00003a00002003200329029005370380060b412a210641d480c00021040c98010b20032d008c05450d114192f4c0002104411d21060c240b42e40021150b02402015200c562005200f562005200f511b450d0041dff1c000210441102106200a0da0010ca1010b201b450d0820034198036a41086a220242003703002003420037039803419bf0c000411420034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d112003410036029804200341f8026a411020034198046a41044100100141016a41044d0d4f201b2003280298044d0d120c7e0b4108210a4100210220140d9c010c9d010b20032005422088a73602a0042003200b36029c0420032008360298042003411436029405200341d8ccc0003602900520034198046a20034190056a10730240200b450d00200810140b410021040c93010b20034198036a41086a22024200370300200342003703980341a6cfc000411520034198036a1000200341f8026a41086a2206200229030037030020032003290398033703f802200341f8026a41104184a1c100410010022003200e3a0098042002420037030020034200370398034183fbc000411920034198036a10002006200229030037030020032003290398033703f802200341f8026a411020034198046a41011002410021040c92010b41002107200328029c040d94010c95010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b803200841087621022005422088a72106200b21040c7c0b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803411a210641a2e3c00021040c8f010b20034198036a41086a22024200370300200342003703980341dccdc000411220034198036a1000200341f8026a41086a200229030037030020032003290398033703f8024100210a200341f8026a41104184a1c100410041001001417f460d14200342103702a4062003200341f8026a3602a00620034198046a200341a0066a10302003280298042209450d56200341a0046a280200210a200328029c0421100c150b20032903a804210f20034198036a41086a22024200370300200342003703980341dd81c000410d20034198036a1000200341f8026a41086a2206200229030037030020032003290398033703f802420021050240200341f8026a41104184a1c100410041001001417f460d002003420037039005200341f8026a411020034190056a41084100100141016a41084d0d4620032903900521050b20024200370300200342003703980341fcf3c000411620034198036a10002006200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d152003420037039005200341f8026a411020034190056a41084100100141016a41084d0d462005200329039005200f7c5a0d240c700b41eff1c000210441222106200a0d96010c97010b4100211f0b201d201f410674220b6a2281012102200b450d0c20034198046a411c6a21820120034198046a41146a210b4100210d20034198046a41186a21830120034198046a41206a21840120034198046a41286a218501034020034198046a41086a228601201d200d6a2202411c6a29020037030020034198046a41106a220e200241246a2902003703002083012002412c6a290200370300208401200241346a2902003703002085012002413c6a2802003602002003200241146a29020037039804200241106a2802002217450d0c20022903002113200241086a290300212520034190056a41286a22870120850128020036020020034190056a41206a22880120840129030037030020034190056a41186a22890120830129030037030020034190056a41106a228a01200e29030037030020034190056a41086a228b01208601290300370300200320032903980437039005200e2017360200200b200329039005370200200b41086a208b01290300370200200b41106a208a01290300370200200b41186a208901290300370200200b41206a208801290300370200200b41286a208701280200360200200320253703a004200320133703980420820120034180066a412010f7010d100240200b280200450d00201710140b200d41c0006a210d200241c0006a208101470d000b2081012202208101470d0d0c0e0b200341f8036a41176a2008290300370000200341f8036a411f6a200b2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a21060b200441016a22022004490dab0120044101742208200220022008491b2202ad4206862205422088a70dab012005a722084100480dab012004450d0620072004410674200810132207450d070c680b41012107410021060b20034198036a41086a22044200370300200342003703980341eecdc000411d20034198036a1000200341f8026a41086a200429030037030020032003290398033703f8020240200341f8026a41104184a1c100410041001001417f460d002003410036029005200341f8026a411020034190056a41044100100141016a41044d0d3d20032802900521042006450d660c650b4104210420060d640c650b4200210f20034198036a41086a22024200370300200342003703980341bef5c000411920034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d1020034200370398052003420037039005200341f8026a411020034190056a4110410010012202417f460d4c2002410f4d0d4c20034198056a290300210f20032903900521050c110b2006450d8301200210140c83010b201b41e4004b0d6c0b201a450d0c20034198036a41086a22024200370300200342003703980341aff0c000411b20034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d122003410036029804200341f8026a411020034198046a41044100100141016a41044d0d44201a2003280298044d0d130c5f0b2008101222070d610b200841081016000b41002109200328029c040d690c6a0b200241c0006a21020b2002208101460d010b201d201f4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d00200410140b2006210220072006470d000b0b4100218c010240201e450d00201d10140b4108218d01410821024100218e010ca1010b200341a0066a41286a220e200b41286a280200360200200341a0066a41206a228301200b41206a290200370300200341a0066a41186a228401200b41186a290200370300200341a0066a41106a228501200b41106a290200370300200341a0066a41086a228601200b41086a2902003703002003200b2902003703a00620034198046a41286a220b200e28020036020020034198046a41206a220e20830129030037030020034198046a41186a22830120840129030037030020034198046a41106a22840120850129030037030020034198046a41086a228501208601290300370300200320032903a0063703980441c0001012228d01450d44208d012013370300208d012017360210208d01200329039804370214208d012025370308411c218201208d01411c6a2085012903003702004124218b01208d0141246a208401290300370200412c218a01208d01412c6a2083012903003702004134218901208d0141346a200e290300370200413c218801208d01413c6a200b280200360200201f41067441406a200d460d0c200241c0006a218f014106219001201d201f4106746a41406a21910120034198046a411c6a219201411421930120034198046a41146a210b41012194014110210e4108210d412821870120034198046a41286a2185014120211720034198046a41206a218401411821860120034198046a41186a21830141c000219501420621254220211341002196014101218e014101218c01410121020c9c010b41012109410021100b2009200a4105746a2104200921020340200420026b41ff004d0d0c20034190056a2002460d0d200220034190056a412010f701450d0d200241206a220620034190056a460d0d200620034190056a412010f701450d0d200241c0006a220620034190056a460d0d200620034190056a412010f701450d0d200241e0006a220620034190056a460d0d20024180016a2102200620034190056a412010f7010d000c0d0b0b20034198036a41086a22024200370300200342003703980341b291c000411520034198036a100020034188036a41086a200229030037030020032003290398033703880320034188036a41104184a1c100410041001001417f460d0c200342003703900520034188036a411020034190056a41084100100141016a41084d0d36200329039005220c50450d0d4194a1c2001018000b20034180066a41086a22072004417f6a2204360200200220044105746a220229000021052002290008210f2002290010210c200641186a200241186a2900003700002006200c3700102006200f3700082006200537000020034198046a41086a2007280200360200200320032903800637039804411510122202450d412002410d6a41002900fec140370000200241086a41002900f9c140370000200241002900f1c14037000020024115413510132202450d4220022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602fc03200320023602f80320034198046a200341f8036a1073200210140240200328029c04450d0020032802980410140b411210122202450d43200241106a41002f00a0e3403b0000200241086a4100290098e34037000020024100290090e34037000020024112413210132202450d44200220032903a0063700122002412a6a200341a0066a41186a2204290300370000200241226a200341a0066a41106a22072903003700002002411a6a200341a0066a41086a220829030037000020034198036a41086a2206420037030020034200370398032002413220034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a411010032002101420034198046a41186a200429030037030020034198046a41106a200729030037030020034198046a41086a2008290300370300200320032903a0063703980420064200370300200342003703980341dd81c000410d20034198036a1000200341f8026a41086a200629030037030020032003290398033703f802420021050240200341f8026a41104184a1c100410041001001417f460d00200342003703f803200341f8026a4110200341f8036a41084100100141016a41084d0d3720032903f80321050b20034198036a41086a22024200370300200342003703980341bbcfc000411720034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d0e200342003703f803200341f8026a4110200341f8036a41084100100141016a41084d0d3720032903f803210f410f2106410f10122202450d0f0c520b41a1f2c000210441292106200a0d7f0c80010b420521050b200341a8026a200341a0066a2005200f1066200341a0066a200329039804220c20057d20034198046a41086a290300200f7d200c200554ad7d106c412821062007410110492204450d010b024020034198046a41206a280200450d0020032802b40410140b200341c4046a280200450d920120032802c00410140c92010b20034190056a41086a41013a000020034199056a20032903a00637000020034190056a412c6a2007360200200341a1056a200341a0066a41086a290300370000200341a9056a200341b0066a290300370000200341b1056a200341b8066a290300370000200341073a00900520034190056a101a0240200341b8046a280200450d0020032802b40410140b20034198046a412c6a280200450d5520032802c00410140c550b4101210420060d6d0c6e0b201a4190ce004b0d4c0b2019450d0820034198036a41086a22024200370300200342003703980341caf0c000411820034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d092003410036029804200341f8026a411020034198046a41044100100141016a41044d0d3720192003280298044d0d0a0c490b4101218e014101218c012081012202208101470d91010c92010b024020022004460d00034020034190056a2002460d02200220034190056a412010f701450d022004200241206a2202470d000b0b410f10122202450d3d200241076a41002900e9c140370000200241002900e2c1403700002002410f412f10132202450d3e200220032903900537000f200241276a20034190056a41186a22062903003700002002411f6a20034190056a41106a2204290300370000200241176a20034190056a41086a220d2903003700002003427f3703980420034198036a41086a220e420037030020034200370398032002412f20034198036a1000200341f8026a41086a200e29030037030020032003290398033703f802200341f8026a411020034198046a410810022002101420034180066a41186a220e200629030037030020034180066a41106a2206200429030037030020034180066a41086a2204200d2903003703002003200329039005370380062010200a470d46200a41016a2202200a490d8f01200a4101742210200220022010491b2210ad4205862205422088a70d8f012005a722024100480d8f01200a450d092009200a410574200210132209450d0a0c460b41a9e2c0002104411f21062010450d592009101420074104470d660c6b0b4205210c0b20054280de34200c80200f7c540d4c0b41aff4c0002104412a2106200341b8046a2802000d86010c87010b42e807210f410f2106410f101222020d430b200641011016000b41e1f2c000210441272106200a0d6f0c700b2019418089fa004b0d3f0b024020034190056a200c200f106b450d00419cf3c0002104411f2106200a0d6e0c6f0b20034198036a41086a22024200370300200342003703980341e2f0c000411720034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d022003410036029804200341f8026a411020034198046a41044100100141016a41044d0d3320032802980441016a21060c030b2002101222090d3c0b200241011016000b410121060b20032006360298044200211520034198036a41086a22024200370300200342003703980341e2f0c000411720034198036a1000200341f8026a41086a220e200229030037030020032003290398033703f802200341f8026a411020034198046a4104100220034180066a41186a420037030020034180066a41106a420037030020034180066a41086a420037030020034200370380062018201920034180066a1009200341c8026a41026a220820032d0082063a0000200341a0066a41086a220b20034180066a41176a290000370300200341a0066a41106a220920034180066a411f6a2d00003a0000200320032f0180063b01c8022003200329008f063703a00620032800830621042003290087062105200341d8036a41086a20034190056a41176a290000370300200341d8036a41106a20034190056a411f6a2d00003a0000200341b8036a41086a200b290300370300200341b8036a41106a20092d00003a0000200320032d0092053a00f203200320032f0190053b01f0032003200329009f053703d803200320032f01c8023b01d003200320082d00003a00d203200320032903a0063703b803200328009305211c200329009705211620024200370300200342003703980341dd81c000410d20034198036a1000200e200229030037030020032003290398033703f8020240200341f8026a41104184a1c100410041001001417f460d002003420037039804200341f8026a411020034198046a41084100100141016a41084d0d2f20032903980421150b20034180066a41026a20082d00003a000020034198046a41086a200b29030037030020034198046a41106a20092d00003a0000200320032f01c8023b018006200320032903a00637039804411810122202450d32200241106a4100290089f140370000200241086a4100290081f140370000200241002900f9f04037000020024118413810132202450d33200220032f0180063b00182002200537001f2002200436001b20022003290398043700272002411a6a20034180066a41026a2d00003a00002002412f6a20034198046a41086a290300370000200241376a20034198046a41106a2d00003a000020034198036a41086a2208420037030020034200370398032002413820034198036a100020034188036a41086a200829030037030020032003290398033703880320034188036a41101008210b2002101441012108200b0d3820034188036a41026a200341c8026a41026a2d00003a000020034198046a41086a200341a0066a41086a29030037030020034198046a41106a200341a0066a41106a2d00003a0000200320032f01c8023b018803200320032903a00637039804411810122202450d34200241106a4100290089f140370000200241086a4100290081f140370000200241002900f9f04037000020024118413810132202450d35200220032f0188033b00182002200537001f2002200436001b20022003290398043700272002411a6a2003418a036a2d00003a00002002412f6a200341a0046a290300370000200241376a200341a8046a2d00003a000020034100360288062003420137038006200320193602f803200341f8036a20034180066a101c0240024002402003280284062209200328028806220b6b20194f0d00200b20196a2208200b490d85012009410174220e20082008200e491b220e4100480d85012009450d012003280280062009200e10132208450d020c390b20032802800621080c390b200e101222080d370b200e41011016000b41e4cbc1001018000b41b185c00041331015000b4190c9c1001018000b419892c2001018000b41b8b8c2001018000b41ecb2c2001018000b41e4e1c1001018000b41aca1c2001018000b41fccbc1001018000b41d4b2c2001018000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41a8cac1001018000b41b185c00041331015000b41b185c00041331015000b411341011016000b412641011016000b411241011016000b413241011016000b412041011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411341011016000b412641011016000b410841011016000b200441081016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41c00041081016000b411541011016000b413541011016000b411241011016000b413241011016000b41b185c00041331015000b41b185c00041331015000b410f41011016000b412f41011016000b411841011016000b413841011016000b411841011016000b413841011016000b2003200e360284062003200836028006200e21090b2008200b6a2018201910f5011a20034198036a41086a220e420037030020034200370398032002413820034198036a1000200341f8026a41086a200e29030037030020032003290398033703f802200341f8026a41102008200b20196a100202402009450d00200810140b200210140240200a450d00201810140b410021080b200341c8046a201a360200200341c4046a2010360200200341bc046a201b360200200341b8046a200d360200200341ce046a20032d00f2033a0000200341d3046a201637000020034198046a41376a201c360000200341db046a20032903d803370000200341e3046a200341d8036a41086a290300370000200341eb046a200341d8036a41106a2d00003a00002003200c37039804200320173602c004200320073602b404200320063602b004200320153703a8042003200f3703a004200320032f01f0033b01cc04200341ef046a2004360000200341f3046a2005370000200341ee046a20032d00d2033a0000200341fb046a20032903b80337000020034183056a200341b8036a41086a2903003700002003418b056a200341b8036a41106a2d00003a0000200341003a008c05200320032f01d0033b01ec0402400240024002400240411310122202450d002002410f6a41002800a0f140360000200241086a4100290099f14037000020024100290091f14037000020024113412610132202450d01200220063600132003411736028406200320023602800620034198046a20034180066a1074200210140240200341b8046a280200450d00200341b4046a28020010140b0240200341c4046a280200450d00200341c0046a28020010140b20034198036a41086a22024200370300200342003703980341a4f1c000411b20034198036a1000200341f8026a41086a200229030037030020032003290398033703f8024100210202400240200341f8026a41104184a1c100410041001001417f460d0020034210370284062003200341f8026a3602800620034198046a20034180066a10462003280298042204450d042003200329029c04220537029c0420032004360298042005a72005422088a72202460d010c060b200341003602a0042003420437039804410421040b200241016a22072002490d4e2002410174220b20072007200b491b2207ad4202862205422088a70d4e2005a7220b4100480d4e024002402002450d0020042002410274200b10132204450d010c050b200b101222040d040b200b41041016000b411341011016000b412641011016000b41b185c00041331015000b2003200736029c042003200436029804200341a0046a28020021020b20034198046a41086a2207200241016a360200200420024102746a20063602002003411b36028406200341a4f1c0003602800620034198046a20034180066a10750240200328029c04450d00200410140b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2204290300370300200341f8036a41086a20034190056a41086a220b29030037030020032003290390053703f803200741003a0000200341c4046a2006360200200341a1046a200329039005370000200341a9046a200b290300370000200341b1046a2004290300370000200341b9046a2002290300370000200341073a00980420034198046a101a024020034190056a1071450d0020034198046a41186a200229030037030020034198046a41106a200429030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034198046a2006410110760b41002104200a450d0b2008450d0b201810140c0b0b2009200a4105746a2202200329038006370000200241186a200e290300370000200241106a2006290300370000200241086a20042903003700002003200a41016a3602a0042003201036029c042003200936029804200341123602a406200341dccdc0003602a00620034198046a200341a0066a107302402010450d00200910140b410021040c130b4188f3c000210441142106200a0d2e0c2f0b41002104200241076a41002900e9c140370000200241002900e2c140370000024020022006412f10132202450d00200220032903980437000f200241276a200341b0046a2903003700002002411f6a20034198046a41106a290300370000200241176a20034198046a41086a2903003700002003200f20057c3703f80320034198036a41086a2206420037030020034200370398032002412f20034198036a1000200341f8026a41086a200629030037030020032003290398033703f802200341f8026a4110200341f8036a41081002200210140c240b412f41011016000b41caf2c000210441172106200a0d2c0c2d0b200710140b0240200220044d0d0020034198046a200810772104410d21060c210b41d0e3c0002104413921060c200b20042108200221040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c200341003602a806200342013703a0062007200841016a2206200341a0066a107820032802a406210b20032802a806210920032802a006210220034188036a41086a220a4200370300200342003703880341d596c100411520034188036a100020034198036a41086a200a29030037030020032003290388033703980320034198036a41102002200910020240200b450d00200210140b02402006450d00200741106a2102200841067441c0006a210603400240200241046a280200450d00200228020010140b200241c0006a2102200641406a22060d000b0b02402004450d00200710140b410021040b412621064100210220114102460d450c470b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a00637039005412210122202450d02200241206a41002f00a0f5403b0000200241186a4100290098f540370000200241106a4100290090f540370000200241086a4100290088f54037000020024100290080f5403700002002412241c40010132202450d0320022003290390053700222002413a6a200341a8056a290300370000200241326a20034190056a41106a2903003700002002412a6a20034190056a41086a290300370000200241c40041880110132202450d042002200736004220034198036a41086a220642003703002003420037039803200241c60020034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a4110100821062002101402402006450d0041d9f4c000210441272106200341b8046a2802000d3b0c3c0b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a0063703900520034190056a2007201c10760240200341b8046a280200450d0020032802b40410140b200341c4046a280200450d0020032802c00410140b410021040b0c3a0b412241011016000b41c40041011016000b41880141011016000b4191f2c000210441102106200a0d200c210b20032802980410140b20090d004101210941152106419f95c10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021090b20034180066a41086a220a20034198046a41086a2d00003a000020032003290398043703800620090d00200341af056a200a2d00003a00002003200d3600a3052003200c37009b052003200636009705200320043600930520032003290380063700a705200320023b019005200320024110763a00920520034198046a200341a0066a106f024020032d0098044101470d0041c8e2c00021044126210620074104470d0e0c130b20034198036a41086a22024200370300200342003703980341dccdc000411220034198036a1000200341f8026a41086a200229030037030020032003290398033703f8024100210202400240200341f8026a41104184a1c100410041001001417f460d0020034210370284062003200341f8026a3602800620034198046a20034180066a10302003280298042209450d0c200341a0046a2802002102200328029c04210a0c010b410121094100210a0b200920024105746a2104200921020340200420026b41ff004d0d02200341a0066a2002460d092002200341a0066a412010f701450d09200241206a2206200341a0066a460d032006200341a0066a412010f701450d04200241c0006a2206200341a0066a460d052006200341a0066a412010f701450d06200241e0006a2206200341a0066a460d0720024180016a21022006200341a0066a412010f7010d000c080b0b20074104460d110c0c0b024020022004460d000340200341a0066a2002460d092002200341a0066a412010f701450d082004200241206a2202470d000b0b41002102200a0d090c0a0b200341a0066a21060b20062102200a0d070c080b200341a0066a21060b20062102200a0d050c060b200341a0066a21060b200621020b200a450d030c020b200341a0066a2102200a0d010c020b41b185c00041331015000b200910140b02402002450d0041eee2c00021044122210620074104470d010c060b20034180066a20034190056a107220034198046a41186a200341a0066a41186a29030037030020034198046a41106a200341a0066a41106a29030037030020034198046a41086a200341a0066a41086a290300370300200320032903a00637039804024002400240024002402003280284062003280288062202470d00200241016a22062002490d2d20024101742204200620062004491b2204ad4205862205422088a70d2d2005a722094100480d2d2002450d012003280280062002410574200910132206450d020c030b20032802800621060c030b2009101222060d010b200941011016000b200320043602840620032006360280060b20034180066a41086a2204200241016a360200200620024105746a2202200329039804370000200241186a20034198046a41186a290300370000200241106a20034198046a41106a290300370000200241086a20034198046a41086a220229030037000020022004280200360200200320032903800637039804024002400240024002400240411510122202450d002002410d6a41002900fec140370000200241086a41002900f9c140370000200241002900f1c14037000020024115413510132202450d0120022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602dc03200320023602d80320034198046a200341d8036a1073200210140240200328029c04450d0020032802980410140b411210122202450d02200241106a41002f00a0e3403b0000200241086a4100290098e34037000020024100290090e34037000020024112413210132202450d03200220032903a0063700122002412a6a200341b8066a290300370000200241226a200341a0066a41106a2903003700002002411a6a200341a0066a41086a29030037000020034198036a41086a2206420037030020034200370398032002413220034198036a1000200341f8026a41086a200629030037030020032003290398033703f802200341f8026a411020034190056a4120100220021014410f10122202450d0441002104200241076a41002900e9c140370000200241002900e2c1403700002002410f412f10132202450d05200220032903a00637000f200241276a200341b8066a2903003700002002411f6a200341a0066a41106a290300370000200241176a200341a0066a41086a2903003700002003427f3703980420034198036a41086a2206420037030020034200370398032002412f20034198036a1000200341f8026a41086a200629030037030020032003290398033703f802200341f8026a411020034198046a410810022002101420074104470d060c0b0b411541011016000b413541011016000b411241011016000b413241011016000b410f41011016000b412f41011016000b20074106460d04024002402007410c470d004100450d010c060b2007410c490d050b200b450d040b200810140c030b200210140b2004450d0020034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a2903003703002003200329039005370398042003200c3703a8062003200542808080807083200542ffffffff0f83843703a0062003200d3602b006411c10122202450d02200241186a41002800a3ce40360000200241106a410029009bce40370000200241086a4100290093ce403700002002410029008bce403700002002411c413c10132202450d03200220032903980437001c200241346a200341b0046a2903003700002002412c6a20034198046a41106a290300370000200241246a20034198046a41086a29030037000020034100360288062003420137038006200341a0066a41106a20034180066a101c2003200341a0066a3602f803200341f8036a20034180066a107920032802840621042003280288062107200328028006210620034198036a41086a2208420037030020034200370398032002413c20034198036a1000200341f8026a41086a200829030037030020032003290398033703f802200341f8026a411020062007100202402004450d00200610140b20021014410021040c010b41d2cfc0002104410d21060b4100210b410121070c2c0b411c41011016000b413c41011016000b20032802980410140b20070d004101210741152106419f95c10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021070b20034180066a41086a220820034198046a41086a2d00003a000020032003290398043703800620070d00200341f8026a41086a20082d00003a000020032003290380063703f8024200210f20034188036a41086a22074200370300200342003703880341af8cc100410820034188036a100020034198036a41086a20072903003703002003200329038803370398034100210702400240024020034198036a41104184a1c100410041001001417f460d0020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f80320034198036a4110200341f8036a4120410010012207417f460d022007411f4d0d0220034180066a41186a200341f8036a41186a29030037030020034180066a41106a200341f8036a41106a29030037030020034180066a41086a200341f8036a41086a290300370300200320032903f80337038006200341d8036a41086a20034197066a290000370300200341d8036a41106a20034180066a411f6a2d00003a0000200320032d0082063a00f203200320032f0180063b01f0032003200329008f063703d8032003280083062107200329008706210f0c010b200341d8036a41106a41003a0000200341e0036a4200370300200341003a00f203200341003b01f003200342003703d8030b200341b8036a41086a2208200341d8036a41086a290300370300200341b8036a41106a220b200341d8036a41106a2d00003a0000200320032d00f2033a00d203200320032f01f0033b01d003200320032903d8033703b803200341a1046a200f370000200341a9046a20032903b803370000200341b1046a2008290300370000200341b9046a200b2d00003a000020034186023b0198042003200736009d04200320032f01d0033b019a04200320032d00d2033a009c0420034198046a101a200341b7046a200341f8026a41086a2d00003a0000200320103600ab04200320053700a3042003200636009f042003200436009b04200320032903f8023700af04200320023b019804200320024110763a009a0420034188036a41086a22024200370300200342003703880341af8cc100410820034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a41201002410021040c010b41b185c00041331015000b41002109410121074101210b0c260b201210140b200341003602a0042003420137039804200a200220034198046a1078200328029c04210420032802a0042107200328029804210620034188036a41086a22084200370300200342003703880341d596c100411520034188036a100020034198036a41086a200829030037030020032003290388033703980320034198036a411020062007100202402004450d00200610140b02402002450d0020024106742106200a41106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200641406a22060d000b0b410021044101210202402009450d00200a10140b20114102460d1e0c200b201810140b02402010450d00201710140b200d450d14200710140c140b20032802900510140b20020d0041012102419f95c100210d4115210e0c010b20034190056a41086a200341b8036a41086a2d00003a0000200320032903b80337039005410021020b20034180066a41086a220620034190056a41086a2d00003a000020032003290390053703800620020d04200341b7046a20062d00003a00002003200b3600ab04200320053700a3042003200e36009f042003200d36009b0420032003290380063700af04200320083b019804200320084110763a009a0420034198046a200c200f106920034198046a2016201510670c0d0b20032802980410140b20020d0041012102419f95c100210d4115210e0c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021020b20034180066a41086a220620034198046a41086a2d00003a000020032003290398043703800620020d00200341af056a20062d00003a00002003200b3600a3052003200537009b052003200e360097052003200d3600930520032003290380063700a705200320083b019005200320084110763a009205411410122202450d04200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b4037000020024114413410132202450d05200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200210520034188036a41086a2206420037030020034200370388032002413420034188036a100020034180066a41086a200629030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d01200342003703a004200342003703980420034180066a411020034198046a4110410010012206417f460d032006410f4d0d03200341a0046a290300211520032903980421052002101441142106411410122202450d020c060b410121074101210b410121094101210a4101210841012110200e2106200d210420012d0000220241084d0d1c0c1d0b4200211520021014411421064114101222020d040b200641011016000b41b185c00041331015000b411441011016000b413441011016000b200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b40370000024002400240024002400240024002400240024020022006413410132202450d0020022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a29030037000020034188036a41086a2206420037030020034200370388032002413420034188036a100020034180066a41086a200629030037030020032003290388033703800602400240024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012206417f460d022006410f4d0d02200341a0046a290300212120032903980421220c010b42002122420021210b2002101420034188036a41086a2202420037030020034200370388030240024002400240202220218422234200510d0041c4acc000411420034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d02200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d062002410f4d0d06200341a0046a29030021130c010b41b0acc000411420034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d01200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d082002410f4d0d08200341a0046a29030021130b20032903980421240c010b42002124420021130b0240200c20247c2225200c542202200f20137c2002ad7c2216200f542016200f511b450d004128210641f7adc00021040c0c0b411010122202450d03200241086a41002900e0ac40370000200241002900d8ac4037000020024110413010132202450d04200220032903a006370010200241286a200341a0066a41186a290300370000200241206a200341a0066a41106a290300370000200241186a200341a0066a41086a29030037000020034198046a20024130102520034198046a41206a290300212620034198046a41186a290300212720034198046a41106a290300212820032903a0042129200329039804212a200210144200212b4200212c02400240202a4201520d00411410122202450d09200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b4037000020024114413410132202450d0a200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200212c20034188036a41086a2206420037030020034200370388032002413420034188036a100020034180066a41086a20062903003703002003200329038803370380060240024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012206417f460d0a2006410f4d0d0a200341a0046a290300212a200329039804212d0c010b4200212d4200212a0b2002101420034188036a41086a22024200370300200342003703880341dd81c000410d20034188036a100020034180066a41086a2002290300370300200320032903880337038006024020034180066a41104184a1c100410041001001417f460d00200342003703980420034180066a411020034198046a41084100100141016a41084d0d02200329039804212c0b4200212b200341f0016a20264200202c420010f90120034180026a202c42002027420010f901200341e0016a420042002027420010f9014200212c024020032903e80120032903f8018442005220034180026a41086a290300222620032903e00120032903f0017c7c2227202654720d0020282027200329038002222b202954202720285420272028511b22021b20277d2029202b20021b2227202b54ad7d212c2027202b7d212b0b202c202a202d202b56202a202c56202a202c511b22021b212c202b202d20021b212b0b0240200520257d2227200556201520167d2005202554ad7d220520155620052015511b450d00411d2106418eadc00021040c0d0b02402027202b542005202c542005202c511b450d004126210641e8acc00021040c0d0b202350450d0b20034188036a41086a22024200370300200342003703880341ecabc000411b20034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d0b200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d0a2002410f4d0d0a200329039804200c56200341a0046a2903002215200f562015200f511b450d0b411f210641d8adc00021040c0c0b41b185c00041331015000b41b185c00041331015000b413441011016000b41b185c00041331015000b411041011016000b413041011016000b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b41b185c00041331015000b411e2106200341a0066a106422040d002022200c7c221620225422022021200f7c2002ad7c221520215420152021511b450d01412d210641abadc00021040b410121070c100b200341a0066a20034190056a412010f701450d00200341a0066a2027200510694200210520034188036a41086a22024200370300200342003703880341949bc000411620034188036a100020034180066a41086a200229030037030020032003290388033703800602400240024002400240024002400240024002400240024002400240024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d022002410f4d0d02200341a0046a290300212120032903980421050c010b420021210b0240200520247d2222200556202120137d2005202454ad7d220520215620052021511b0d002003202237039804200320053703a00420034188036a41086a22024200370300200342003703880341949bc000411620034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a411020034198046a411010020b20034188036a41086a22024200370300200342003703880341ecabc000411b20034188036a100020034180066a41086a2002290300370300200320032903880337038006024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d022002410f4d0d02200329039804201658200341a0046a290300220520155820052015511b0d0020034190056a2016201510690c0b0b411410122202450d03200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b4037000020024114413410132202450d0420022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a29030037000020034188036a41086a2206420037030020034200370388032002413420034188036a100020034198036a41086a200629030037030020032003290388033703980320034198036a4110100821062002101420060d0920034188036a41086a220242003703002003420037038803419e95c000411320034188036a100020034198036a41086a200229030037030020032003290388033703980341002102024020034198036a41104184a1c100410041001001417f460d00200341003602980420034198036a411020034198046a41044100100141016a41044d0d0320032802980421020b20034180066a200841067641ff07712204103d02400240024002402003280288062008413f7122064d0d00200341d0016a20032802800620064105746a2206106220032903d001200341d0016a41086a290300844200510d010b0240200328028406450d0020032802800610140b20034198046a2002103d024020032802a0042206413f4d0d00200341a0046a21040340200241016a21020240200328029c04450d0020032802980410140b20034198046a2002103d2004280200220641c0004f0d000b0b2003280298042107200328029c04210420034198046a41186a220920034190056a41186a29030037030020034198046a41106a220a20034190056a41106a29030037030020034198046a41086a221020034190056a41086a290300370300200320032903900537039804200641016a210820042006470d0a20064101742204200820082004491b2204ad4205862205422088a70d162005a7220b4100480d162006450d0120072006410574200b10132207450d020c0a0b2006200329039005370000200641186a20034190056a41186a290300370000200641106a20034190056a41106a290300370000200641086a20034190056a41086a29030037000020034198046a41086a20034180066a41086a280200360200200320032903800637039804410f10122202450d07200241076a41002900ce9140370000200241002900c791403700002002410f411e10132202450d082002200436000f200341133602dc03200320023602d80320034198046a200341d8036a107320021014200328029c04450d0a20032802980410140c0a0b200b101222070d080b200b41011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b410f41011016000b411e41011016000b200720064105746a220b200329039804370000200b41186a2009290300370000200b41106a200a290300370000200b41086a20102903003700000240200841c000470d002003200241016a3602980420034188036a41086a220b42003703002003420037038803419e95c000411320034188036a100020034198036a41086a200b29030037030020032003290388033703980320034198036a411020034198046a410410020b200320083602a0042003200436029c042003200736029804410f10122208450d03200841076a41002900ce9140370000200841002900c791403700002008410f411e10132208450d04200241067420066a21062008200236000f2003411336028406200320083602800620034198046a20034180066a10732008101402402004450d00200710140b20034180066a41186a20034190056a41186a220229030037030020034180066a41106a20034190056a41106a220429030037030020034180066a41086a20034190056a41086a220729030037030020032003290390053703800620034198046a41086a20032903900537030020034198046a41106a200729030037030020034198046a41186a2004290300370300200341b8046a20022903003703002003200636029c04200341013a00980420034198046a101a0b200341d0046a2015370300200341c8046a201637030020034198046a41086a41003a0000200341a1046a200329039005370000200341a9046a20034190056a41086a290300370000200341b1046a200341a0056a290300370000200341b9046a200341a8056a290300370000200341023a00980420034198046a101a0b20034190056a2016201510690b20034198046a41086a41023a0000200341a1046a20032903a006370000200341c1046a200329039005370000200341a9046a200341a0066a41086a290300370000200341b1046a200341a0066a41106a290300370000200341b9046a200341a0066a41186a290300370000200341c9046a20034190056a41086a290300370000200341d1046a20034190056a41106a290300370000200341d9046a20034190056a41186a290300370000200341023a00980420034180056a2013370300200341f8046a2024370300200341f0046a200f370300200341e8046a200c37030020034198046a101a0c020b410f41011016000b411e41011016000b41002104410121074101210b410121094101210a410121084101211020012d0000220241084d0d130c140b20032802b40410140b200341c4046a280200450d0020032802c00410140b4100210a410121074101210b410121090c0e0b2003200537039005200341f8026a41086a22024200370300200342003703f80241a591c000410d200341f8026a100020034198046a41086a22072002290300370300200320032903f8023703980420034198046a411020034190056a41081002200341013a00900520024200370300200342003703f802418890c0004113200341f8026a100020072002290300370300200320032903f8023703980420034198046a411020034190056a4101100220074200370300200342003703980441b291c000411520034198046a100020034188036a41086a2007290300370300200320032903980437038803024002400240024002400240024020034188036a41104184a1c100410041001001417f460d00200342003703980420034188036a411020034198046a41084100100141016a41084d0d02200329039804210f0c010b4205210f0b20034198046a41086a22024200370300200342003703980441e485c000411220034198046a100020034198036a41086a22082002290300370300200320032903980437039803410121070240024020034198036a41104184a1c100410041001001417f460d00200342003703980420034198036a411020034198046a41084100100141016a41084d0d03200329039804210c410021090c010b410121090b200320053703900520024200370300200342003703980441e485c000411220034198046a10002008200229030037030020032003290398043703980320034198036a411020034190056a41081002200c500d0f20090d0f427f200f200f7c22152015200f541b220f4200510d022005200f802205200c200f80220f580d032005200f42017c220c510d0f4200211520034198046a41086a22024200370300200342003703980441c5fbc000411220034198046a100020034198036a41086a20022903003703002003200329039804370398030240024020034198036a41104184a1c100410041001001417f460d002003421037029405200320034198036a3602900520034198046a20034190056a10302003280298042220450d06200329029c0421150c010b410121200b2005200f427f857ca7222e450d0e2015422088a7222f202e4d0d0e200ca72130200341a1046a2131410f213220034190056a410f6a2133200341f8036a410f6a2134200341a0066a410f6a2135410021094105213641082108411021104118211b420021054114213741d8ccc00021384184a1c1002139417f213a410121184112213b4132213c412a213d4122213e411a213f4104211a4119214041feccc0002141410d214241dd81c0002143411721444197cdc00021454120210a4130214641502147420121214220210f411b214841c1cdc000214941ff00214a4160214b41dccdc000214c411d214d41eecdc000214e423f2124411c214f413c215041342151412c215241242153410321544115215541a6cfc00021564183fbc000215742102116200341d0046a2158415821594154211c412821194174215a416c215b4164215c415c215d417c215e4230210c410b215f410a216041272161411f216242ffffffff0f2122410721634102216441002165410021020c050b41b185c00041331015000b41b185c00041331015000b41d4c3c1001018000b41ecc3c1001018000b41b185c00041331015000b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b2020206520306a202f702036746a2202290000212c200220086a2900002123200220106a2900002127200341a0066a201b6a22662002201b6a290000370300200341a0066a20106a22672027370300200341a0066a20086a226820233703002003202c3703a00620034188036a20086a2269200537030020032005370388032038203720034188036a1000200341f8026a20086a226a206929030037030020032003290388033703f802024002400240200341f8026a20102039200920091001203a460d0020032016370294052003200341f8026a3602900520034198046a20034190056a10302003280298042202450d0e200328029c04216b200220034198046a20086a280200200341a0066a1028216c0240206b450d00200210140b206c450d020c010b20182009200341a0066a1028450d010b206520186a2265202e470d1f0c2b0b203b10122202450d0d200220106a20092f00fccc40226d3b0000200220086a20092900f4cc402226370000200220092900eccc4022293700002002203b203c10132202450d0e200220032903a0063700122002203d6a20662903003700002002203e6a20672903003700002002203f6a20682903003700002069200537030020032005370388032002203c20034188036a1000206a206929030037030020032003290388033703f80202400240200341f8026a20102039200920091001203a460d002003200936029804200341f8026a201020034198046a201a2009100120186a201a4d0d0a200328029804216e20021014203b101222020d010c110b4100216e20021014203b10122202450d100b200220106a206d3b0000200220086a2026370000200220293700002002203b203c10132202450d10200220032903a0063700122002203d6a20662903003700002002203e6a20672903003700002002203f6a20682903003700002003206e20186a226f360298042069200537030020032005370388032002203c20034188036a1000206a206929030037030020032003290388033703f802200341f8026a201020034198046a201a1002200210142069200537030020032005370388032041204020034188036a1000206a206929030037030020032003290388033703f80202400240200341f8026a20102039200920091001203a460d002003200936029804200341f8026a201020034198046a201a2009100120186a201a4d0d0b20032802980421700c010b410021700b20034198036a20086a2202203520086a29000037030020034198036a20106a226b203520106a2d00003a0000200320032d00a2063a00b203200320032f01a0063b01b003200320352900003703980320032800a306217120032900a706212b4200212a2069420037030020034200370388032043204220034188036a1000206a206929030037030020032003290388033703f8020240200341f8026a20102039200920091001203a460d002003200537039804200341f8026a201020034198046a20082009100120186a20084d0d08200329039804212a0b200341d8026a20086a22722002290300370300200341d8026a20106a2273206b2d00003a0000200320032d00b2033a00ca02200320032f01b0033b01c80220032003290398033703d8022069200537030020032005370388032045204420034188036a1000206a206929030037030020032003290388033703f802024002400240024002400240200341f8026a20102039200920091001203a460d002003201637029c042003200341f8026a36029804200341c8016a20034198046a101b20032802c801450d0820032802cc012274ad200c7e222c200f88a70d12202ca72202203a4c0d122002450d01200210122275450d1b2074450d030c020b4100217c4108217542002123410021020c040b410821752074450d010b20034198046a20086a2276280200217741002178200328029c042179200328029804217a4100216c410021022074217b034020034180066a201b6a227c200537030020034180066a20106a227d200537030020034180066a20086a227e2005370300200320053703800620762009207a207920034180066a200a20771001226b206b203a461b226b200a206b200a491b20776a2277360200206b20624d0d05200341f8036a201b6a207c290300370300200341f8036a20106a207d290300370300200341f8036a20086a207e29030037030020032003290380063703f803200320053703900520762009207a207920034190056a200820771001226b206b203a461b226b2008206b2008491b20776a2277360200206b20634d0d05200329039005212c200320093602900520762009207a207920034190056a201a20771001226b206b203a461b226b201a206b201a491b20776a2277360200206b20544d0d05200220186a216b200328029005217c200341d8036a20086a227d203420086a290000370300200341d8036a20106a227e203420106a2d00003a0000200320032d00fa033a00f203200320032f01f8033b01f003200320342900003703d80320032800fb03217f20032900ff03212302402002207b470d002078206b206b2078491b227bad200c7e2227200f88a70d272027a72280012009480d2702402002450d002075206c208001101322750d010c0c0b20800110122275450d0b0b2075206c6a2202202c370300200220086a20032f01f0033b010020032d00f203218001200220326a20233700002002205f6a207f360000200220606a2080013a0000200220616a207e2d00003a0000200220626a207d290300370000200220446a20032903d803370000200220196a207c360200207820646a2178206c20466a216c206b2102206b2074490d000c020b0b4100216b4100217b0b2075450d03206bad200f86207bad842223200f88a7217c2023a721020b20034198046a20086a2279207229030037030020034198046a20106a227e20732d00003a0000200320032d00ca023a008206200320032f01c8023b018006200320032903d802370398040240024002400240024002400240207c200a490d00207c20466c226b2046460d01207520466a2102206b20476a217a410021774101216c207521782075216b03402002206b206b29030020022903005622761b216b206c207720761b21772002207820761b2178206c20186a216c200220466a2102207a20476a227a0d000b206b450d182078450d182033200329039804370000203320086a2079290300370000203320106a207e2d00003a00002003202b370097052003207136009305200320032d0082063a009205200320032f0180063b019005207c20774b0d020c1f0b200341b8036a20086a226b2079290300370300200341b8036a20106a226c207e2d00003a0000200320032d0082063a00d203200320032f0180063b01d00320032003290398043703b80302402002207c470d00207c2018742202207c20186a227620762002491bad222c200c7e2227200f88a70d292027a722022009480d29207c450d032075207c20466c2002101322750d040c200b2023212c0c040b2033200329039804370000203320086a2079290300370000203320106a207e2d00003a00002003202b370097052003207136009305200320032d0082063a009205200320032f0180063b019005410021770b2075207720466c6a2202202a3703002002200a6a20034190056a201b6a2903003703002002201b6a20034190056a20106a290300370300200220106a20034190056a20086a2903003703002002200329039005370308200220183602280c030b200210122275450d1c0b2023200f88a7217c0b2075207c20466c6a2202202a37030020032d00d203217620032f01d0032177200220326a202b3700002002205f6a2071360000200220773b0108200220606a20763a0000200220616a206c2d00003a0000200220626a206b290300370000200220446a20032903b80337000020022018360228202c202283207c20186aad200f868421230b20792009360200200320213703980420032023200f88a722023602900520034190056a20034198046a101c024002402002450d00200220466c217a2059207928020022026b2177200220526a2102200328029c04216c2075216b03400240024002400240206c20776a20196a200a4f0d002002201c6a2278200a6a22762078490d29206c2018742278207620762078491b22782009480d29206c450d01200328029804206c2078101322760d020c0b0b20032802980421760c020b207810122276450d090b2003207836029c0420032076360298042078216c0b20792002205a6a227c360200207620026a2278205b6a206b200a6a2900003700002078205c6a206b201b6a2900003700002078205d6a206b20106a2900003700002078201c6a206b20086a290000370000206b290300212c0240024002400240206c20776a227820086a20784f0d00207c20086a2278207c490d29206c201874227c20782078207c491b22782009480d29206c450d012076206c2078101322760d020c0c0b206c21780c020b207810122276450d0a0b2003207836029c0420032076360298040b20792002205e6a226c360200207620026a205a6a202c370000206b20196a280200217c0240024002400240207820776a20544b0d00206c201a6a227d206c490d292078201874226c207d207d206c491b226c2009480d292078450d0120762078206c101322760d020c0a0b2078216c0c020b206c10122276450d080b2003206c36029c0420032076360298040b206b20466a216b20792002360200207620026a205e6a207c3600002077201c6a2177200220526a2102207a20476a227a0d000c020b0b200328029c04216c20032802980421760b207928020021022069200537030020032005370388032045204420034188036a10002079206929030037030020032003290388033703980420034198046a20102076200210020240206c450d00207610140b02402023a7450d00207510140b0240024002400240206f20704d0d00420021232069420037030020034200370388032049204820034188036a1000206a206929030037030020032003290388033703f802200341f8026a20102039200920091001203a460d01200320053703a0042003200537039804200341f8026a201020034198046a2010200910012202203a460d16200220324d0d162079290300212b20032903980421280c020b20034190056a201b6a206629030037030020034190056a20106a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410121020c020b420021284200212b0b206e20187420706b216b206e20706b220220186a217a4200212c02400340206b216c2002207a4f0d0102402002204a4b0d00200341b8016a2028202b2002204a7110fa01202c200341b8016a20086a2903007c202320032903b8017c222a2023542276ad7c2227202c5121772027202c542178206c20186a216b200220186a2102202a21232027212c2076207820771b450d010b0b20034198046a201b6a226b2066290300370300207e206729030037030020792068290300370300200320032903a00637039804203b10122202450d18200220106a206d3b0000200220086a2026370000200220293700002002203b203c10132202450d1920022003290398043700122002203d6a206b2903003700002002203e6a207e2903003700002002203f6a20792903003700002003206c360290052069200537030020032005370388032002203c20034188036a1000206a206929030037030020032003290388033703f802200341f8026a201020034190056a201a10022002101420034198046a200341a0066a107220792802002102200328029804216c200341a8016a200341a0066a1062200341a8016a20086a290300212c20032903a801212302402002450d002002203674216b206c2102034020034198016a2002106220034198016a20086a290300202c7c200329039801222c20237c2223202c54ad7c212c2002200a6a2102206b204b6a226b0d000b0b200328029c04450d00206c10140b206920053703002003200537038803204c203b20034188036a1000206a206929030037030020032003290388033703f80202400240200341f8026a20102039200920091001203a460d0020032016370294052003200341f8026a3602900520034198046a20034190056a10302003280298042276450d1d20792802002102200328029c04216b0c010b4100216b41012176410021020b206920053703002003200537038803204e204d20034188036a1000206a206929030037030020032003290388033703f802024002400240200341f8026a20102039200920091001203a460d002003200936029804200341f8026a201020034198046a201a2009100120186a201a4d0d0e200328029804216c206b450d020c010b4104216c206b450d010b207610140b02402002206c4d0d0020034180016a200341a0066a2023202c1068200329038001a72018470d0020034180016a20106a290300212b200329038801212820034198046a200341a0066a107a2003280298042176024020792802002202450d00420021272002203674226c216b4200212a207621020340200341f0006a20021062200341f0006a20086a290300202a7c2003290370222a20277c2227202a54ad7c212a2002200a6a2102206b204b6a226b0d000b2027202a84500d00207621020340200341e0006a20021062200341386a2003290360200341e0006a20086a2903002028202b10f901200341286a2003290338200341386a20086a2903002027202a10f801200341c8006a20022003290328200341286a20086a29030010682002200a6a2102206c204b6a226c0d000b0b200328029c04450d00207610140b204f10122202450d142002201b6a20092800a3ce40360000200220106a200929009bce40370000200220086a2009290093ce403700002002200929008bce403700002002204f205010132202450d15200220032903a00637001c200220516a2066290300370000200220526a2067290300370000200220536a206829030037000020034198046a20022050102620034198046a201b6a2277280200216b20032903980421272002101402400240206f20706b206b205420272021511b4b0d002023202488212b202c202186212820034198046a200341a0066a107220792802002102200328029804216c200341186a200341a0066a1062200341186a20086a29030021272003290318212a02402002450d002002203674216b206c21020340200341086a20021062200341086a20086a29030020277c20032903082227202a7c222a202754ad7c21272002200a6a2102206b204b6a226b0d000b0b2028202b84212b202320218621280240200328029c04450d00206c10140b2028202358202b202c58202b202c511b0d00202a20285a2027202b5a2027202b511b0d010b206920053703002003200537038803204c203b20034188036a1000206a206929030037030020032003290388033703f8020240200341f8026a20102039200920091001203a460d0020032016370294052003200341f8026a3602900520034198046a20034190056a10302003280298042278450d1e200328029c04217a024020792802002202450d00200220367421764100216b207821020240034020772002201b6a290000370300207e200220106a2900003703002079200220086a2900003703002003200229000037039804206b20034198046a200341a0066a200a10f701226c2009476a216b206c450d012002200a6a21022076204b6a22760d000c020b0b200341a0066a206b107722020d200b207a450d00207810140b2069200537030020032005370388032056205520034188036a1000206a206929030037030020032003290388033703f802200341f8026a2010203920091002200320093a0098042069200537030020032005370388032057204020034188036a1000206a206929030037030020032003290388033703f802200341f8026a201020034198046a201810020b20034190056a201b6a206629030037030020034190056a20106a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410221020b2058202c37030020034198046a20466a2023370300207920023a0000203120032903900537000020034198046a20526a206e360200203120086a20034190056a20086a290300370000203120106a20034190056a20106a2903003700002031201b6a20034190056a201b6a2903003700002003201a3a00980420034198046a101a206520186a2265202e470d1f0c2a0b208f0121020240024003402002200e6a280200216b2002200d6a290300212c2002290300212320850120022088016a28020036020020840120022089016a2902003703002083012002208a016a29020037030020034198046a200e6a226c2002208b016a29020037030020034198046a200d6a227620022082016a290200370300200320022093016a29020037039804206b450d0220034190056a2087016a228f0120850128020036020020034190056a20176a227720840129030037030020034190056a2086016a227820830129030037030020034190056a200e6a2279206c29030037030020034190056a200d6a227a2076290300370300200320032903980437039005206c206b360200200b200329039005370200200b200d6a227c207a290300370200200b200e6a227a2079290300370200200b2086016a22792078290300370200200b20176a22782077290300370200200b2087016a2277208f012802003602002003202c3703a0042003202337039804024020920120034180066a201710f7010d000240200b280200450d00206b10140b20022095016a2202208101470d010c020b0b200341a0066a2087016a228f012077280200360200200341a0066a20176a22772078290200370300200341a0066a2086016a22782079290200370300200341a0066a200e6a2279207a290200370300200341a0066a200d6a227a207c2902003703002003200b2902003703a006208501208f0128020036020020840120772903003703002083012078290300370300206c20792903003703002076207a290300370300200320032903a006370398040240208c01208e01470d00208e012094016a228c01208e01490d24208e0120940174228f01208c01208c01208f01491b228c01ad2025862227201388a70d242027a7228f01209601480d240240208e01450d00208d01208e0120900174208f011013228d010d010c200b208f011012228d01450d1f0b20022095016a218f01208d01208e01209001746a2277202c370308207720233703002077206b36021020772088016a20850128020036020020772089016a2084012903003702002077208a016a2083012903003702002077208b016a206c29030037020020772082016a207629030037020020772093016a200329039804370200208e012094016a218e012091012002470d210b2081012202208101470d230c240b200241c0006a2202208101460d230c220b207b450d00207510140b41b185c00041331015000b206c41011016000b207841011016000b207841011016000b20800141081016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b100f000b411241011016000b413241011016000b411241011016000b413241011016000b41aecdc00041131015000b41b185c00041331015000b411c41011016000b413c41011016000b200241081016000b411241011016000b413241011016000b41fc80c2002077207c1038000b200241081016000b41b185c00041331015000b41b185c00041331015000b41a7cec00041ff002002410d1029000b208f0141081016000b410021020c020b410021020c010b410121020c000b0b1010000b201d201f4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d00200410140b2006210220072006470d000b0b0240201e450d00201d10140b208d0121020b200341003602a00420034201370398042002208e0120034198046a1078200328029c04210420032802a0042107200328029804210620034188036a41086a22084200370300200342003703880341d596c100411520034188036a100020034198036a41086a200829030037030020032003290388033703980320034198036a411020062007100202402004450d00200610140b0240208e01450d00208e014106742106200241106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200641406a22060d000b0b41002104208c01450d00208d0110140b411a21064100210220114102470d020b20020d012014450d010b201210140b41002110410121074101210b410121094101210a4101210820012d0000220241084d0d060c070b2015a7450d00202010140b4101210b0b410121090b4101210a0b410121080b4101211020012d0000220241084b0d010b0240024002400240024020020e09060406060601020003060b200a450d05200141086a2d00004102470d050240200141106a280200450d002001410c6a28020010140b02402001411c6a280200450d00200141186a28020010140b200141286a280200450d05200141246a28020010140c050b200b450d04200141086a2d0000410c490d04200141106a280200450d042001410c6a28020010140c040b2009450d03200141046a107b0c030b2008450d02200141086a2d00004104470d02200141d0006a280200450d02200141cc006a28020010140c020b2007450d01200141086a10340c010b2010450d00200141086a2d00004102470d00200141106a280200450d002001410c6a28020010140b2000200636020420002004360200200341d0066a24000be30301047f230041d0006b2202240002400240411210122203450d00200341106a41002f00a0e3403b0000200341086a4100290098e34037000020034100290090e34037000020034112413210132203450d01200320012900003700122003412a6a200141186a290000370000200341226a200141106a2900003700002003411a6a200141086a290000370000200241306a41086a220142003703002002420037033020034132200241306a1000200241206a41086a200129030037030020022002290330370320024002400240200241206a41104184a1c100410041001001417f460d00200241306a41186a4200370300200241306a41106a4200370300200241386a420037030020024200370330200241206a4110200241306a4120410010012201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b20031014200241d0006a24000f0b41b185c00041331015000b411241011016000b413241011016000ba77a04037f027e087f0b7e230041a0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417e6a220541104b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210920022d00002105200341d8026a41026a2204200241036a2d00003a0000200341e0056a41086a220a200241146a290000370300200341e0056a410d6a220b200241196a290000370000200320022f00013b01d80220032002410c6a2900003703e0054101210220054101470d1420034190036a41026a20042d00003a0000200341d8046a41086a200a290300370300200341d8046a410d6a200b290000370000200320032f01d8023b019003200320032903e0053703d804410021020c150b4100210941ac80c00041ac80c000410020022d000022021b20024103461b22050d10200320012d00013a00d80420034180066a41086a220242003703002003420037038006419bafc000411920034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410110020c83010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0f20034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1d200342103702dc042003200341d8026a3602d804200341d8016a200341d8046a10880120032903d8014203510d53200342083703b8044100210c200341003602c00420034180066a41086a2202420037030020034200370380064198b2c000411b20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d2b200342103702b4032003200341d8026a3602b003200341d8046a200341b0036a103020032802d804220d450d5920032802dc04210c200341e0046a2802002202450d2c0c89010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0e200141046a280200210520034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1d200342103702dc042003200341d8026a3602d804200341a8016a200341d8046a10880120032903a8014203520d1641b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0d200141086a29030021074200210620034180066a41086a22024200370300200342003703800641dd81c000410d20034180066a1000200341d8026a41086a200229030037030020032003290380063703d8020240200341d8026a41104184a1c100410041001001417f460d00200342003703d804200341d8026a4110200341d8046a41084100100141016a41084d0d4d20032903d80421060b41adbac0002109411f2108200620075a0d16200320073703e004200342023703d804200341153602b403200341ddb0c0003602b003200341d8046a200341b0036a1087010c080b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0c200141046a280200210520034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a2208200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1c200342103702dc042003200341d8026a3602d804200341b8016a200341d8046a10880120032903b8014203520d1441b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0b200141106a2903002106200141086a290300210720034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1c200342103702dc042003200341d8026a3602d80420034188016a200341d8046a1088012003290388014203520d1341b185c00041331015000b200341f0016a41186a200141196a290000370300200341f0016a41106a200141116a290000370300200341f0016a41086a200141096a290000370300200320012900013703f00120034190026a41186a200141396a29000037030020034190026a41106a200141316a29000037030020034190026a41086a200141296a2900003703002003200141216a29000037039002200141c4006a280200210a200141c8006a2802002104200141cc006a280200210b200241086a2800002108200241046a280000210520022d00002109200341d8026a41026a220f200241036a2d00003a0000200341e0056a41086a220e200241146a290000370300200341e0056a410d6a220c200241196a290000370000200320022f00013b01d80220032002410c6a2900003703e0054101210120094101470d0b200341b8046a41026a200f2d00003a0000200341d8046a41086a200e290300370300200341d8046a410d6a200c290000370000200320032f01d8023b01b804200320032903e0053703d804410021010c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0920034180066a41086a22024200370300200342003703800641d596c100411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1b200342103702b4032003200341d8026a3602b003200341d8046a200341b0036a104520032802d8042202450d4e200320032902dc043702dc04200320023602d8040c1c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d08200141086a29030021074200210620034180066a41086a22024200370300200342003703800641dd81c000410d20034180066a1000200341d8026a41086a200229030037030020032003290380063703d8020240200341d8026a41104184a1c100410041001001417f460d00200342003703d804200341d8026a4110200341d8046a41084100100141016a41084d0d4920032903d80421060b41adbac0002109411f2108200620075a0d11200320073703e004200342003703d804200341153602b403200341ddb0c0003602b003200341d8046a200341b0036a1087010c030b41ac80c00041ac80c000410020022d000022021b20024103461b22050d07200141086a290300210620034180066a41086a2202420037030020034200370380064115210841ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1b200342103702dc042003200341d8026a3602d804200341e8006a200341d8046a10880120032903684203520d0f41b185c00041331015000b200141306a2903002106200141286a2903002107200341a8036a200141196a29000037030020034190036a41106a200141116a29000037030020034190036a41086a200141096a2900003703002003200129000137039003200241086a2800002108200241046a280000210920022d00002105200341d8026a41026a2204200241036a2d00003a0000200341e0056a41086a220a200241146a290000370300200341e0056a410d6a220b200241196a290000370000200320022f00013b01d80220032002410c6a2900003703e0054101210220054101470d0b200341b8046a41026a20042d00003a0000200341d8046a41086a200a290300370300200341d8046a410d6a200b290000370000200320032f01d8023b01b804200320032903e0053703d804410021020c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d05200141086a29030021074200210620034180066a41086a22024200370300200342003703800641dd81c000410d20034180066a1000200341d8026a41086a200229030037030020032003290380063703d8020240200341d8026a41104184a1c100410041001001417f460d00200342003703d804200341d8026a4110200341d8046a41084100100141016a41084d0d4720032903d80421060b41adbac0002109411f2108200620075a0d0e200320073703e004200342013703d804200341153602b403200341ddb0c0003602b003200341d8046a200341b0036a1087010b4100210920012d00004104460d85010c86010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d03200141106a2903002106200141086a290300210720034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d18200342103702dc042003200341d8026a3602d804200341c8016a200341d8046a10880120032903c8014203520d0b41b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d02200141086a290300210620034180066a41086a2202420037030020034200370380064115210841ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d18200342103702dc042003200341d8026a3602d804200341d8006a200341d8046a10880120032903584203520d0a41b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d01200141086a290300210620034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d18200342103702dc042003200341d8026a3602d80420034198016a200341d8046a1088012003290398014203520d0941b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b2205450d070b4128210820044104470d8201200141c8006a280200450d8201200141c4006a28020010140c82010b412a210841d480c00021050b20034190036a41026a200341b8046a41026a2d00003a0000200341b0036a41086a200341d8046a41086a290300370300200341b0036a41106a200341d8046a41106a290300370300200320032f01b8043b019003200320032903d8043703b00320010d75200341d4026a41026a20034190036a41026a2d00003a0000200341b8026a41086a200341b0036a41086a290300370300200341b8026a410d6a200341b0036a410d6a290000370000200320032f0190033b01d402200320032903b0033703b802200b41204d0d07419bb9c0002105410e21080c750b41d480c0002109412a21080b200341b4026a41026a20034190036a41026a2d00003a0000200341b0036a41086a200341d8046a41086a290300370300200341b0036a41106a200341d8046a41106a290300370300200320032f0190033b01b402200320032903d8043703b00320020d04200341f0026a41026a2202200341b4026a41026a2d00003a0000200341b8046a41086a2205200341b0036a41086a290300370300200341b8046a410d6a2204200341b0036a410d6a290000370000200320032f01b4023b01f002200320032903b0033703b804200341eb046a2005290300370000200341f0046a2004290000370000200320083600df04200320093600db04200320022d00003a00da04200320032f01f0023b01d804200320032903b8043700e304200341186a200341d8046a10652003290318200341186a41086a29030084500d0720034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d06200342103702dc042003200341d8026a3602d804200341086a200341d8046a108801200329030822104203510d422010a7450d1a41abb7c00021090c1f0b412a210841d480c00021090b200341b4026a41026a200341b8046a41026a2d00003a0000200341b0036a41086a200341d8046a41086a290300370300200341b0036a41106a200341d8046a41106a290300370300200320032f01b8043b01b402200320032903d8043703b00320020d02200341f0016a41026a2202200341b4026a41026a2d00003a0000200341f0026a41086a2205200341b0036a41086a290300370300200341f0026a410d6a2204200341b0036a410d6a290000370000200320032f01b4023b01f001200320032903b0033703f002200341eb046a2005290300370000200341f0046a2004290000370000200320083600df04200320093600db04200320022d00003a00da04200320032f01f0013b01d804200320032903f0023700e304200341386a200341d8046a10652003290338200341386a41086a29030084500d0620034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d04200342103702dc042003200341d8026a3602d804200341286a200341d8046a108801200329032822104203510d412010a74101470d134200211020034180066a41086a22024200370300200342003703800641dfb7c000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1e200342003703e004200342003703d804200341d8026a4110200341d8046a4110410010012202417f460d442002410f4d0d44200341e0046a290300211020032903d80421110c1f0b200141086a290300210620034180066a41086a2202420037030020034200370380064115210841ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d10200342103702dc042003200341d8026a3602d804200341f8006a200341d8046a10880120032903784203510d3e0b41ccbac0002109412421080b20012d00004104470d780c770b20034180066a41086a22014200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200129030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d10200342103702dc042003200341d8026a3602d804200341c8006a200341d8046a108801200329034822064203510d3e2006a74102470d13200341b4026a41026a200341d4026a41026a2d00003a0000200341d8026a41086a200341b8026a41086a290300370300200341d8026a410d6a200341b8026a410d6a290000370000200320032f01d4023b01b402200320032903b8023703d802200341f0026a41186a200341f0016a41186a290300370300200341f0026a41106a200341f0016a41106a290300370300200341f0026a41086a200341f0016a41086a290300370300200320032903f0013703f00220034190036a41186a20034190026a41186a29030037030020034190036a41106a20034190026a41106a29030037030020034190036a41086a20034190026a41086a290300370300200320032903900237039003411510122201450d412001410d6a410029008ab840370000200141086a4100290085b840370000200141002900fdb74037000020014115413510132201450d42200120032903f0023700152001412d6a20034188036a290300370000200141256a200341f0026a41106a2903003700002001411d6a200341f0026a41086a29030037000020034180066a41086a2202420037030020034200370380062001413520034180066a100020034190066a41086a200229030037030020032003290380063703900620034190066a411010082102200110142002450d1e200341b0036a200341f0026a10920120032d0090044101470d1f41bdb9c00021054115210820040d6e0c780b41cbb7c00021090c6b0b41a0bcc00021094127210820012d00004104460d740c750b41e1b8c00021094126210820012d00004104460d730c740b41e5bcc00021090c6f0b2005450d1020034180066a41086a22024200370300200342003703800641e3bdc000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d17200341003602d804200341d8026a4110200341d8046a41044100100141016a41044d0d3320032802d80420054f0d180c650b2002420037030020034200370380064181bec000411b20034180066a10002008200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d10200341003602d804200341d8026a4110200341d8046a41044100100141016a41044d0d3120032802d80420054d0d110c630b200320063703e004200320073703d80420034180066a41086a22024200370300200342003703800641c8b6c000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a411010020c6b0b200341003602e004200342083703d8040b200341e8016a200341d8046a104c20032802ec01210820032802e801210920012d00004104460d6d0c6e0b2006500d04200320063703d80420034180066a41086a2202420037030020034200370380064189bdc000411c20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c5d0b200320063703e004200320073703d80420034180066a41086a22024200370300200342003703800641dfb7c000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a411010020c670b2006500d02200320063703d80420034180066a41086a22024200370300200342003703800641eab2c000412020034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c5b0b2006500d0b200320063703d80420034180066a41086a22024200370300200342003703800641c4bdc000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c5a0b2006500d00200320063703d80420034180066a41086a22024200370300200342003703800641a5bdc000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c590b41f0bac000210920012d00004104460d670c680b41c5b8c0002109411c210820012d00004104460d660c670b4114210841cbb7c000210520040d5d0c670b4101210d4100210241000d5d0b410021054108210e200c0d5d0c5e0b411f2108418ebac000210520040d5a0c640b411f10122202450d2e200241176a41002900cbaf40370000200241106a41002900c4af40370000200241086a41002900bcaf40370000200241002900b4af403700002002411f413f10132202450d2f200220032f01f0023b001f2002200836002620022009360022200220032903b80437002a200241216a200341f2026a22042d00003a0000200241326a200341b8046a41086a290300370000200241376a200341c5046a220a29000037000020034180066a41086a2205420037030020034200370380062002413f20034180066a100020034190066a41086a200529030037030020032003290380063703900620034190066a4110100821052002101420050d0e20034180066a41086a22024200370300200342003703800641c8b6c000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d0c200342003703e004200342003703d804200341d8026a4110200341d8046a4110410010012202417f460d342002410f4d0d34200341e0046a290300211020032903d80421110c0d0b41a5bbc0002109411b210820012d00004104460d600c610b410a20054b0d520b200320053602d80420034180066a41086a22024200370300200342003703800641e3bdc000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410410020c4f0b4185bbc00021090b4120210820012d00004104460d5c0c5d0b420a21110b02402011200758201020065820102006511b0d004187b9c00021090c510b200341cb046a200341f0026a41086a290300370000200341b8046a41186a200341f0026a410d6a290000370000200320083600bf04200320093600bb04200320032f01f0013b01b804200320032903f0023700c3042003200341f2016a2d00003a00ba04200341e0056a41186a20034190036a41186a2202290300370300200341e0056a41106a20034190036a41106a2205290300370300200341e0056a41086a20034190036a41086a220829030037030020032003290390033703e005200341d8046a41186a2002290300370300200341d8046a41106a2005290300370300200341d8046a41086a200829030037030020032003290390033703d804411510122202450d2b2002410d6a410029008ab840370000200241086a4100290085b840370000200241002900fdb74037000020024115413510132202450d2c200220032903d8043700152002412d6a200341f0046a290300370000200241256a200341d8046a41106a2903003700002002411d6a200341d8046a41086a29030037000020034180066a41086a2205420037030020034200370380062002413520034180066a100020034190066a41086a200529030037030020032003290380063703900620034190066a411010082105200210142005450d044192b8c00021090c500b41142005490d4d0b200320053602d80420034180066a41086a2202420037030020034200370380064181bec000411b20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410410020c490b41a9b9c00021054114210820040d4f0c590b200341eb046a200341e0026a290300370000200341f0046a200341e5026a290000370000200320083600df04200320053600db04200320032f01b4023b01d804200320032903d8023700e3042003200341b6026a2d00003a00da04200341d8046a200341b0036a41206a412010f701450d0441d2b9c0002105411a210820040d4e0c580b412210122202450d29200241206a41002f00d3b2403b0000200241186a41002900cbb240370000200241106a41002900c3b240370000200241086a41002900bbb240370000200241002900b3b2403700002002412241c40010132202450d2a200220032903b8043700222002413a6a200341b8046a41186a290300370000200241326a200341b8046a41106a2903003700002002412a6a200341b8046a41086a290300370000200341d8046a200241c2001025200341d8046a41106a2903002112200341d8046a41186a2903002110200341d8046a41206a290300211120032903e004211320032903d804211420021014200341b8046a200720104200201442015122021b2214200720142007542011420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d22061063450d04200341b8046a20152006106b450d0641a6b8c0002109411f210820012d00004104460d550c560b4200211042e40021110b2011200758201020065820102006511b0d0041c7bcc0002109411e210820012d00004104460d530c540b200341c3036a200341b8046a41086a290300370000200341b0036a41186a200a290000370000200320083600b703200320093600b303200320032f01f0023b01b003200320032903b8043700bb03200320042d00003a00b203412210122202450d21200241206a41002f00d3b2403b0000200241186a41002900cbb240370000200241106a41002900c3b240370000200241086a41002900bbb240370000200241002900b3b2403700002002412241c40010132202450d22200220032903b0033700222002413a6a200341b0036a41186a290300370000200241326a200341b0036a41106a2903003700002002412a6a200341b8036a290300370000200341d8046a200241c2001025200341d8046a41186a2903002112200341d8046a41206a2903002113200341d8046a41106a290300211020032903e004211120032903d80421142002101441e7b6c0002109200341b0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d22061063450d3e4189b7c0002109200341b0036a20152006106b0d3e411f10122205450d28200541176a41002900cbaf40370000200541106a41002900c4af40370000200541086a41002900bcaf40370000200541002900b4af403700002005411f413f10132205450d29200520032903b00337001f200541376a200341b0036a41186a2903003700002005412f6a200341b0036a41106a290300370000200541276a200341b0036a41086a290300370000200341d8046a2005413f1025200341d8046a41106a2903002107200341d8046a41206a2903002117200341d8046a41186a290300211820032903e004211920032903d804211a20051014412210122205450d2a200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d2b200520032903b0033700222005413a6a200341c8036a290300370000200541326a200341b0036a41106a2903003700002005412a6a200341b0036a41086a29030037000020034180066a41086a220842003703002003420037038006200541c20020034180066a100020034190066a41086a200829030037030020032003290380063703900620034190066a4110100821082005101402402008450d00412210122205450d31200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d32200520032903b0033700222005413a6a200341b0036a41186a290300370000200541326a200341b0036a41106a2903003700002005412a6a200341b0036a41086a290300370000411010122208450d332008201420117d3700002008201020167d2014201154ad7d37000820084110412010132208450d3420082012420020021b370010200841186a2013420020021b37000020034180066a41086a220242003703002003420037038006200541c20020034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a411020084120100220081014200510140b411f10122202450d2c200241176a41002900cbaf40370000200241106a41002900c4af40370000200241086a41002900bcaf40370000200241002900b4af403700002002411f413f10132202450d2d200220032903b00337001f200241376a200341b0036a41186a22082903003700002002412f6a200341b0036a41106a290300370000200241276a200341b0036a41086a29030037000020034180066a41086a2205420037030020034200370380062002413f20034180066a100020034190066a41086a200529030037030020032003290380063703900620034190066a4110100821052002101420050d3d20034180066a41086a22024200370300200342003703800641feb1c000411a20034180066a1000200341d8026a41086a200229030037030020032003290380063703d80241002105200341d8026a41104184a1c100410041001001417f460d06200342103702e4052003200341d8026a3602e005200341d8046a200341e0056a103020032802d8042202450d35200320032902dc0422103702e405200320023602e0052010422088a721042010a721050c070b411f10122201450d2d200141176a41002900cbaf40370000200141106a41002900c4af40370000200141086a41002900bcaf40370000200141002900b4af403700002001411f413f10132201450d2e200120032903900337001f200141376a200341a8036a2903003700002001412f6a20034190036a41106a290300370000200141276a20034190036a41086a29030037000020034180066a41086a2202420037030020034200370380062001413f20034180066a100020034190066a41086a200229030037030020032003290380063703900620034190066a411010082102200110142002450d01200b450d03200b101222010d04200b41011016000b41e7b6c00021090c3c0b41ecb9c00021054122210820040d470c510b20034180066a41086a2205420037030020034200370380064198b2c000411b20034180066a1000200341d8026a41086a200529030037030020032003290380063703d80241002108200341d8026a41104184a1c100410041001001417f460d04200342103702b4032003200341d8026a3602b003200341d8046a200341b0036a103020032802d8042204450d32200320032902dc0422073702b403200320043602b0032007422088a721052007a721080c050b410121010b2001200a200b10f5012109200341b8046a41186a220220034190036a41186a290300370300200341b8046a41106a220520034190036a41106a290300370300200341b8046a41086a220820034190036a41086a29030037030020032003290390033703b804412010122201450d2e200120032903b804370000200141186a2002290300370000200141106a2005290300370000200141086a200829030037000002400240200b450d00200b41206a2202200b490d4c200241c000200241c0004b1b22084100480d4c200141202008101322010d01200841011016000b41202108200b41206a21020b200141206a2009200b10f5011a200341d8046a41186a22054200370300200341d8046a41106a220f4200370300200341d8046a41086a220e4200370300200342003703d80420012002200341d8046a1009200341e0056a41186a2005290300370300200341e0056a41106a200f290300370300200341e0056a41086a200e290300370300200320032903d8043703e005419295c00021050240200341f0036a200341e0056a412010f7010d0020034191046a20032903b80437000020034190046a41013a000020034199046a200341b8046a41086a290300370000200341a1046a200341b8046a41106a290300370000200341a9046a200341b8046a41186a290300370000410021050b02402008450d00200110140b02402005450d00410c2108200b450d442009101420040d450c4f0b200341e0056a41186a200341f0026a41186a290300370300200341e0056a41106a200341f0026a41106a290300370300200341e0056a41086a200341f0026a41086a290300370300200320032903f0023703e005200341d8046a200341b0036a41880110f5011a411510122201450d312001410d6a410029008ab840370000200141086a4100290085b840370000200141002900fdb74037000020014115413510132201450d32200120032903e0053700152001412d6a200341f8056a290300370000200141256a200341f0056a2903003700002001411d6a200341e8056a290300370000200341353602bc04200320013602b804200341d8046a200341b8046a103c200110140240200b450d00200910140b410021052004450d04200a10140c4e0b200341003602e805200342013703e00541012102410021040b200341d8046a41186a220a200341b0036a41186a290300370300200341d8046a41106a220b200341b0036a41106a290300370300200341d8046a41086a220f200341b0036a41086a290300370300200320032903b0033703d804024020042005470d00200541016a22092005490d492005410174220e20092009200e491b2209ad4205862210422088a70d492010a7220e4100480d492005450d0420022005410574200e10132202450d050c340b200521090c340b200341003602b803200342013703b00341012104410021050b200341d8046a41186a220a200341e0056a41186a290300370300200341d8046a41106a220b200341e0056a41106a290300370300200341d8046a41086a220f200341e0056a41086a290300370300200320032903e0053703d80420082005470d30200541016a22082005490d4620054101742209200820082009491b2208ad4205862207422088a70d462007a722094100480d462005450d0320042005410574200910132204450d040c2f0b0c490b200e101222020d2f0b200e41011016000b2009101222040d2b0b200941011016000b41e8f0c1001018000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411541011016000b413541011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b411541011016000b413541011016000b41b185c00041331015000b412241011016000b41c40041011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b412041011016000b41b185c00041331015000b41b185c00041331015000b411541011016000b413541011016000b200320083602b403200320043602b0030b200420054105746a220920032903d804370000200941186a200a290300370000200941106a200b290300370000200941086a200f290300370000200341b0036a41086a200541016a3602002003411b3602dc0420034198b2c0003602d804200341b0036a200341d8046a107302402008450d00200410140b200341b0036a41186a200341e0056a41186a2205290300370300200341b0036a41106a200341e0056a41106a2208290300370300200341b0036a41086a200341e0056a41086a2204290300370300200320032903e0053703b003200341d8046a41186a201637030020034190056a200341b8046a41186a29030037030020034188056a200341b8046a41106a29030037030020034180056a200341b8046a41086a290300370300200341a0056a2004290300370300200341a8056a2008290300370300200341b0056a2005290300370300200320113703e804200320063703e004200320153703d804200341003a00b805200320032903b8043703f804200320032903e0053703980502400240024002400240024002400240411510122205450d002005410d6a410029008ab840370000200541086a4100290085b840370000200541002900fdb74037000020054115413510132205450d01200520032903b0033700152005412d6a200341b0036a41186a290300370000200541256a200341b0036a41106a2903003700002005411d6a200341b0036a41086a29030037000020034135360294022003200536029002200341d8046a20034190026a103c20051014412210122205450d0241002109200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d03200520032903b8043700222005413a6a200341d0046a290300370000200541326a200341b8046a41106a2903003700002005412a6a200341b8046a41086a29030037000020034180066a41086a220842003703002003420037038006200541c20020034180066a100020034190066a41086a200829030037030020032003290380063703900620034190066a411010082108200510142008450d11412210122205450d04200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d05200520032903b8043700222005413a6a200341b8046a41186a290300370000200541326a200341b8046a41106a2903003700002005412a6a200341b8046a41086a290300370000411010122208450d0620082013420020021b37000020082012420020021b37000820084110412010132202450d072002201420117d370010200241186a201020167d2014201154ad7d37000020034180066a41086a220842003703002003420037038006200541c20020034180066a1000200341d8026a41086a200829030037030020032003290380063703d802200341d8026a411020024120100220021014200510140c100b411541011016000b413541011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b200320093602e405200320023602e0050b200241206a2002200441057410f6011a200220032903d804370000200241186a200a290300370000200241106a200b290300370000200241086a200f290300370000200341e0056a41086a200441016a3602002003411a3602dc04200341feb1c0003602d804200341e0056a200341d8046a10732009450d00200210140b200341d8046a41186a2008290300370300200341d8046a41106a200341b0036a41106a290300370300200341d8046a41086a200341b0036a41086a290300370300200320032903b0033703d804411f10122202450d01200241176a41002900cbaf40370000200241106a41002900c4af40370000200241086a41002900bcaf40370000200241002900b4af403700002002411f413f10132202450d02200220032903d80437001f200241376a200341f0046a2903003700002002412f6a200341d8046a41106a290300370000200241276a200341e0046a290300370000411010122205450d03200520194200201a42015122081b221020157c221437000020052007420020081b20067c2014201054ad7c37000820054110412010132205450d0420052018420020081b220620117c2207370010200541186a2017420020081b20167c2007200654ad7c37000020034180066a41086a2208420037030020034200370380062002413f20034180066a1000200341d8026a41086a200829030037030020032003290380063703d802200341d8026a41102005412010022005101420021014410021090b4122210820012d00004104460d130c140b411f41011016000b413f41011016000b411041011016000b412041011016000b410021090b20012d00004104460d0d0c0e0b41f0bbc00021090c010b41c0bbc00021090b4130210820012d00004104460d0a0c0b0b4114210820012d00004104460d090c0a0b2004450d0a0b200a10140c090b20024105742109410021044108210e4100210541002108200d21020340200341e0056a41186a200241186a220a290000370300200341e0056a41106a200241106a220b290000370300200341e0056a41086a200241086a220f290000370300200320022900003703e005200341b0036a41186a200a290000370300200341b0036a41106a200b290000370300200341b0036a41086a200f290000370300200320022900003703b003200341d8046a200341b0036a109201024020082005470d00200541016a220a2005490d062005410174220b200a200a200b491b220aad4288017e2206422088a70d062006a7220b4100480d06024002402005450d00200e20054188016c200b1013220e0d010c090b200b1012220e450d080b200a21050b200241206a2102200e20046a200341d8046a41880110f5011a20044188016a2104200841016a2108200941606a22090d000b200341c0046a20083602002003200e3602b804200320053602bc04200c450d010b200d10140b200342003702b403200341a090c1003602b003200341b8046a200341b0036a410010930120032802b803210a20032802b00321020240024020032802b4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341f4046a20022f0106360200200341f0046a4100360200200341ec046a20023602002003200a3602f804200341003602e804200342003703e004200320083602dc04200341003602d804200341d8046a1094012005450d00200e10140b410021090b4124210820012d00004104460d020c030b1010000b200b41081016000b200141c8006a280200450d00200141c4006a28020010140b200921050b2000200836020420002005360200200341a0066a24000bd20301087f230041306b2201240041082102200141206a41086a220342003703002001420037032041d596c1004115200141206a1000200141086a20032903003703002001200129032037030041002104024002400240200141104184a1c100410041001001417f460d002001421037021420012001360210200141206a200141106a104520012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d0220082000412010f701450d02200341dc006a22082000460d0220082000412010f701450d022003419c016a22082000460d0220082000412010f701450d02200341dc016a22082000460d0220034180026a210320082000412010f7010d000c020b0b024020032006460d000340410121072003411c6a22032000460d0220032000412010f701450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d00200028020010140b200041c0006a2100200341406a22030d000b0b02402005450d00200210140b200141306a240020070f0b41b185c00041331015000bcb0201027f230041306b22022400024002400240411510122203450d002003410d6a41002900fec140370000200341086a41002900f9c140370000200341002900f1c14037000020034115413510132203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241206a41086a220142003703002002420037032020034135200241206a1000200241086a20012903003703002002200229032037030002400240200241104184a1c100410041001001417f460d002002421037021420022002360210200241206a200241106a103020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b20031014200241306a24000f0b411541011016000b413541011016000b41b185c00041331015000bc10301077f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101c02400240024002402000450d0020004105742104200241106a41086a2802002100200228021021052002280214210603400240024002400240200620006b41204f0d00200041206a22072000490d0720064101742208200720072008491b22084100480d072006450d01200520062008101322050d020c080b200041206a21070c020b200810122205450d060b200821060b200520006a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020072100200341206a2103200441606a22040d000b200241186a200736020020022006360214200220053602100c010b200241186a280200210720022802142106200228021021050b2001280204210320012802002100200241106a41086a220442003703002002420037031020002003200241106a1000200241086a2004290300370300200220022903103703002002411020052007100202402006450d00200510140b200241206a24000f0b1010000b200841011016000bed0803037f027e057f230041206b2202240020024100360218200242013703102000280218210302400240024002400240024002400240410410122204450d0020024284808080c000370214200220043602102004200336000020044104412410132204450d01200242a4808080c004370214200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436021041000d05200041086a2903002105200029030021062004412441c80010132204450d02200420063700242004412c6a2005370000200241186a22034134360200200241c80036021420022004360210200028021c21072002200041246a28020022043602002002200241106a101c02400240024020022802142208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802102008200910132208450d020c060b200228021021080c060b2009101222080d040b200941011016000b410441011016000b412441011016000b41c80041011016000b20022009360214200220083602100b200241186a2209200320046a360200200820036a2007200410f5011a2000280228210a2002200041306a28020022073602002002200241106a101c0240024002400240024020022802142203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802102003200810132204450d020c030b200228021021040c030b2008101222040d010b200841011016000b2002200836021420022004360210200821030b200241106a41086a220b200920076a2208360200200420096a200a200710f5011a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710132204450d020c030b200321070c030b2007101222040d010b200741011016000b20022007360214200220043602100b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22092003490d0320074101742208200920092008491b22084100480d032007450d0120042007200810132204450d020c040b200841286a21090c040b2008101222040d020b200841011016000b1010000b20022008360214200220043602100b200241106a41086a22082009360200200420036a200537000020002d0074200241106a104a2008280200210420022802142103200228021021002001280204210720012802002109200842003703002002420037031020092007200241106a1000200241086a2008290300370300200220022903103703002002411020002004100202402003450d00200010140b200241206a24000b920301097f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101c02400240024002402000450d0020004102742104200241186a22052802002100200228021421060340200328020021070240024002400240200620006b41044f0d00200041046a22082000490d0720064101742209200820082009491b220a4100480d072006450d0120022802102006200a101322090d020c080b200041046a2108200228021021090c020b200a10122209450d060b2002200a36021420022009360210200a21060b200341046a210320052008360200200920006a2007360000200821002004417c6a22040d000c020b0b200241186a280200210820022802142106200228021021090b2001280204210020012802002103200241106a41086a220442003703002002420037031020032000200241106a1000200241086a2004290300370300200220022903103703002002411020092008100202402006450d00200910140b200241206a24000f0b1010000b200a41011016000ba70e03057f017e037f230041b0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910122204450d00200441186a41002d00adf6403a0000200441106a41002900a5f640370000200441086a410029009df64037000020044100290095f64037000020044119413210132204450d0120042001360019200341a0016a41086a22054200370300200342003703a0012004411d200341a0016a100020034190016a41086a2005290300370300200320032903a0013703900120034190016a4110100821052004101402400240024002402005450d0020034190016a20011047200341206a41186a200341186a290300370300200341206a41106a200341106a290300370300200341206a41086a200341086a2903003703002003200329030037032020032802940122062003280298012204470d01200441016a22072004490d0620044101742205200720072005491b2206ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910132205450d030c0a0b412110122204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910122205450d07200541186a41002d00adf6403a0000200541106a41002900a5f640370000200541086a410029009df64037000020054100290095f64037000020054119413210132205450d0820052001360019200341003602282003420137032020044101200341206a102d200328022421062003280228210920032802202107200341a0016a41086a220a4200370300200342003703a0012005411d200341a0016a1000200341206a41086a200a290300370300200320032903a001370320200341206a411020072009100202402006450d00200710140b20051014200410140c0b0b200441016a210720032802900121050c090b2009101222050d070b200941011016000b411941011016000b413241011016000b1010000b412141011016000b411941011016000b413241011016000b200320063602940120032005360290010b20034190016a41086a20073602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910122204450d01200441186a41002d00adf6403a0000200441106a41002900a5f640370000200441086a410029009df64037000020044100290095f64037000020044119413210132204450d0220042001360019200341003602282003420137032020052007200341206a102d200328022421092003280228210a20032802202107200341a0016a41086a220b4200370300200342003703a0012004411d200341a0016a1000200341206a41086a200b290300370300200320032903a001370320200341206a41102007200a100202402009450d00200710140b200410142006450d00200510140b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210122204450d00200441206a41002f00a0f5403b0000200441186a4100290098f540370000200441106a4100290090f540370000200441086a4100290088f54037000020044100290080f5403700002004412241c40010132204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341286a290300370000200441c40041880110132204450d0220042001360042024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110122205450d09200541033a00000c030b410110122205450d09200541023a00000c020b410110122205450d09200541013a00000c010b410110122205450d09200541003a00000b200341a0016a41086a22074200370300200342003703a001200441c600200341a0016a100020034190016a41086a2007290300370300200320032903a0013703900120034190016a41102005410110022005101420041014200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a101a200341b0016a24000f0b412241011016000b41c40041011016000b41880141011016000b411941011016000b413241011016000b410141011016000b410141011016000b410141011016000b410141011016000bcd0a02057f037e230041306b22022400200241106a41086a220342003703002002420037031041dccdc0004112200241106a1000200241206a41086a20032903003703002002200229031037032002400240024002400240024002400240200241206a41104184a1c100410041001001417f460d00200242103702042002200241206a360200200241106a2002103020022802102203450d02200228021421040240200320014105746a2205450d00200241186a280200220620014d0d0020002005460d0220052000412010f701450d020b02402004450d00200310140b200241306a240041d2cfc0000f0b200241306a240041d2cfc0000f0b20032006417f6a22064105746a220529000021072005290008210820052900102109200320014105746a220141186a200541186a29000037000020012009370010200120083700082001200737000020022006360228200220043602242002200336022020024112360214200241dccdc000360210200241206a200241106a107302402004450d00200310140b411c10122201450d01200141186a41002800a3ce40360000200141106a410029009bce40370000200141086a4100290093ce403700002001410029008bce403700002001411c413c10132201450d022001200029000037001c200141346a200041186a2900003700002001412c6a200041106a290000370000200141246a200041086a290000370000200241106a41086a22034200370300200242003703102001413c200241106a1000200241206a41086a200329030037030020022002290310370320200241206a4110100320011014411210122201450d03200141106a41002f00fccc403b0000200141086a41002900f4cc40370000200141002900eccc4037000020014112413210132201450d04200120002900003700122001412a6a200041186a290000370000200141226a200041106a2900003700002001411a6a200041086a290000370000200241106a41086a220342003703002002420037031020014132200241106a1000200241206a41086a2204200329030037030020022002290310370320200241206a4110100320011014200342003703002002420037031041dd81c000410d200241106a1000200420032903003703002002200229031037032042002107024002400240200241206a41104184a1c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d01200229031021070b200241106a41086a220142003703002002420037031041bbcfc0004117200241106a1000200241206a41086a20012903003703002002200229031037032002400240200241206a41104184a1c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d0320022903102108410f2103410f10122201450d010c090b42e8072108410f2103410f101222010d080b200341011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411c41011016000b413c41011016000b411241011016000b413241011016000b200141076a41002900e9c140370000200141002900e2c140370000024020012003412f10132201450d002001200029000037000f200141276a200041186a2900003700002001411f6a200041106a290000370000200141176a200041086a2900003700002002200820077c370300200241106a41086a22004200370300200242003703102001412f200241106a1000200241206a41086a200029030037030020022002290310370320200241206a411020024108100220011014200241306a240041000f0b412f41011016000bb20703067f027e027f230041106b2203240020032001360208200341086a2002101c0240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101322070d020c090b200228020021070c020b200110122207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101322070d020c0a0b200228020021070c020b200110122207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101c02402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101322080d020c090b200228020021080c020b200710122208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101322080d020c0a0b200228020021080c020b200710122208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011016000b200741011016000b200141011016000b200141011016000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610132205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010132205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101322050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101322080d0a0c110b2006101222050d130b200641011016000b200128020021050c050b200128020021080c070b2000101222050d0d0b200041011016000b200010122205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510122208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101322060d020c060b200128020021060c020b200910122206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011016000b41fcb3c2001018000b20022002360240200241a091c100360244200241c8006a41146a4100360200200241286a41146a4104360200200241346a4105360200200241106a41146a410336020020024184a1c1003602582002420137024c200241e4b3c2003602482002410536022c20024203370214200241f8bbc2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a4194b4c200102c000b200041011016000b200541011016000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000bda0201027f230041306b22022400024002400240411c10122203450d00200341186a41002800f7cf40360000200341106a41002900efcf40370000200341086a41002900e7cf40370000200341002900dfcf403700002003411c413c10132203450d012003200129000037001c200341346a200141186a2900003700002003412c6a200141106a290000370000200341246a200141086a290000370000200241206a41086a22014200370300200242003703202003413c200241206a1000200241086a20012903003703002002200229032037030002400240200241104184a1c100410041001001417f460d002002421037021420022002360210200241206a200241106a103020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b20031014200241306a24000f0b411c41011016000b413c41011016000b41b185c00041331015000ba10201027f024020002802004102470d000240024002400240024002400240200028020422012d0000220241084b0d0020020e09060106060602030405060b200141086a2d00004102470d05200141106a280200450d052001410c6a28020010140c050b200141086a10340c040b200141086a2d0000410c490d03200141106a280200450d032001410c6a28020010140c030b200141046a107b0c020b200141086a2d00004102470d010240200141106a280200450d002001410c6a28020010140b02402001411c6a280200450d00200141186a28020010140b200141286a280200450d01200141246a28020010140c010b200141086a2d00004104470d00200141d0006a280200450d00200141cc006a28020010140b200041046a28020010140b0bf05907057f027e067f027e027f017e017f230041c0056b22022400200241003a00900420024190046a2001280200220320012802042204410047220510f5011a02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d009004220441094b0d09024020040e0a00070405020809060b03000b200241003a00900420024190046a20052006410047220410f5011a20062004490d6a200141046a200620046b3602002001200520046a3602002006450d9e0120022d009004450d0d0c9e010b2000410a3a0000200241c0056a24000f0b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22053602002006450d094105210420022d0090042206450d1120064101460d1020064102470d12200241003a00900420024190046a20052003410047220610f5011a20032006490d73200141046a200320066b3602002001200520066a3602002003450d1220022d00900421014200210742002108410421040c150b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22053602002006450d094106210420022d009004220641034b0d9601024020060e04001a1819000b20024190046a2001107d2002280290042201450d96012002290294042107410221040c98010b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b3602002001200520046a3602002000410a3a0000200241c0056a24000f0b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b3602002001200520046a3602002006450d0a20022d00900422044101460d0920040d0a20024190046a2001107e200241e8046a41086a220420024199046a290000370300200241e8046a41106a2206200241a1046a290000370300200241e8046a41186a2203200241a9046a290000370300200241e8046a411f6a2209200241b0046a28000036000020022002290091043703e80420022d00900422054102460d0a200241b8036a411f6a2009280000360000200241b8036a41186a2003290300370300200241b8036a41106a2006290300370300200241b8036a41086a2004290300370300200220022903e8043703b803200241c8006a2001107f2002290348a7450d34200241c8006a41106a290300210720022903502108200241d0026a411f6a200241b8036a411f6a280000360000200241d0026a41186a200241b8036a41186a290300370300200241d0026a41106a200241b8036a41106a290300370300200241d0026a41086a200241b8036a41086a290300370300200220022903b8033703d002410221040c350b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22043602002006450d5720022d0090042205450d1320054101460d1220054102470d5720024100360290044104210920024190046a200420034104200341044922061b220510f5011a200141046a200320056b3602002001200420056a36020020060d572002280290042103200220022f01e8043b0190040c91010b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22043602002006450d5f20022d009004220641054b0d5f41032109024020060e060097011b1c1a1d000b200241186a200110402002280218450d5f200228021c2204417f4c0d88012004450d5020041080012205450d7720052001280200200141046a22032802002206200420062004491b220610f5011a200328020022092006490d782003200920066b3602002001200128020020066a36020020062004470d510c95010b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b220a3602002001200520046a220b3602002006450d2b20022d009004220c410a4b0d2b410221040240200c0e0b31002425222728262b2329310b200241a0016a2001104020022802a001450d2b20022802a40122054108762103410321040c2d0b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b3602002001200520046a3602002006450d0820022d0090042204450d0720044101470d0820024190046a2001107e200241e8046a41086a2206200241b0046a2802003602002002200241a8046a2903003703e80420022d00900422014102460d0820022f00910420022d0093044110747221042002419c046a2902002107200241a4046a28020021052002290294042108200241b8036a41086a22032006280200360200200220022903e8043703b803200241d0026a41086a2003280200360200200220022903b8033703d002410321060c160b2000410a3a0000200241c0056a24000f0b200241003a00900420024190046a20052006410047220410f5011a20062004490d68200141046a200620046b22033602002001200520046a220d3602002006450d444110210420022d009004220e41104b0d440240200e0e1100383a353c3f3b43374134363d3381013932000b2002420037039804200242003703900420024190046a200d2003411020034110491b220410f5011a200141046a200320046b3602002001200d20046a3602002003410f4d0d4420024198046a290300210f2002290390042110410221040c410b42002107410521040c090b410621040c8c010b200241086a20011081012002290308a7450d900120022903102107200041003a0000200041106a2007370300200041086a4202370300200241c0056a24000f0b20024190046a2001107e200241e8046a41086a220420024199046a290000370300200241e8046a41106a2206200241a1046a290000370300200241e8046a41186a2203200241a9046a290000370300200241e8046a411f6a2209200241b0046a28000036000020022002290091043703e80420022d00900422054102470d0e0b20024190046a411f6a200241d0026a411f6a28000036000020024190046a41186a200241d0026a41186a29030037030020024190046a41106a200241d0026a41106a29030037030020024190046a41086a200241d0026a41086a290300370300200220022903d002370390040c88010b20024190046a2001107c20022d0090042104200241e8046a20024190046a41017241d70010f5011a2004410a470d0d0b20024190046a41086a200241d0026a41086a280200360200200220022903d002370390042000410a3a0000200241c0056a24000f0b20024190016a2001108101410341052002280290011b210442002107200229039801210f420021080c030b20024190046a20034120200341204922091b22066a41004100412020066b2006411f4b1b10f4011a20024190046a2005200610f5011a200141046a200320066b3602002001200520066a36020020090d00200241a4036a41046a220420024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d00900421012002280093042105200229009704210f20022800a7042106200229009f0421082002419c036a41046a220320042d00003a0000200220022f01aa0322043b01a203200220022802a40336029c03200241e8046a41046a20032d00003a0000200220043b01d0022002200228029c033602e80442002107410221040c030b420021070b420021080b0b20024190046a41086a2203200241e8046a41086a280200360200200220022f01d0023b01ac03200220022902e80437039004024020044105470d002000410a3a0000200241c0056a24000f0b200241b8036a41086a22092003280200360200200220022f01ac033b01a80220022002290390043703b803200041186a2008370000200041106a2007200f84370000200041096a20013a0000200041086a20043a0000200041043a0000200041206a20063600002000410c6a20053600002000410a6a20022f01a8023b0000200041246a20022903b8033700002000412c6a2009280200360000200241c0056a24000f0b200241003602900420024190046a200420034104200341044922091b220510f5011a200141046a200320056b22063602002001200420056a220436020020090d442002280290042103200241003a00900420024190046a20042006410047220510f5011a20062005490d63200141046a200620056b3602002001200420056a3602002006450d4420022d009004220141044f0d44410321090c7d0b2002420037039804200242003703900420024190046a20042003411020034110491b220510f5011a200141046a200320056b3602002001200420056a3602002003410f4d0d4320024198046a2903002108200229039004210720024198026a20011040200228029802450d43200228029c022204417f4c0d752004450d4120041080012203450d6b20032001280200200141046a22062802002205200420052004491b220510f5011a200628020022092005490d6c2006200920056b3602002001200128020020056a36020020052004470d420c740b4100210920024190046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f4011a20024190046a2005200610f5011a200141046a200320066b3602002001200520066a3602002003411f4d0d0a200241a4036a41046a220320024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d009004210520022800930421012002290097042107200229009f04210820022800a7042106200241d0026a41046a20032d00003a0000200220022f01aa033b01b603200220022802a4033602d002410121090c0b0b200242003703900420024190046a20052003410820034108491b220610f5011a200141046a200320066b3602002001200520066a360200200341074d0d7d2002290390042107410521040c7e0b4100210920024190046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f4011a20024190046a2005200610f5011a200141046a200320066b3602002001200520066a3602002003411f4d0d0a200241a4036a41046a220320024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d009004210520022800930421012002290097042107200229009f04210820022800a7042106200241d0026a41046a20032d00003a0000200220022f01aa033b01a802200220022802a4033602d002410121090c0b0b200241b8036a411f6a2009280000360000200241b8036a41186a2003290300370300200241b8036a41106a2006290300370300200241b8036a41086a2004290300370300200220022903e8043703b803200241f8006a2001107f410421042002290378a7450d06200241f8006a41106a29030021072002290380012108200241e0006a2001107f2002290360a7450d06200241e0006a41106a290300210f20022903682110200241d0026a411f6a200241b8036a411f6a280000360000200241d0026a41186a200241b8036a41186a290300370300200241d0026a41106a200241b8036a41106a290300370300200241d0026a41086a200241b8036a41086a290300370300200220022903b8033703d002410321040c1d0b200241b8036a200241e8046a41d70010f5011a41d80010122201450d5c200120043a0000200141016a200241b8036a41d70010f5011a20014108762104410221060b20024190046a41086a200241d0026a41086a2802002203360200200241a8026a41086a22092003360200200220022903d002220f3703a8022002200f37039004200041146a20073700002000410c6a20083700002000411c6a2005360000200041086a2004410874200141ff017172360000200041046a2006360000200041063a0000200041206a20022903a802370000200041286a2009280200360000200241c0056a24000f0b200241286a200110402002280228450d45200228022c2204417f4c0d6e2004450d3220041080012205450d5f20052001280200200141046a22032802002206200420062004491b220610f5011a200328020022092006490d602003200920066b3602002001200128020020066a36020020062004470d330c6c0b200241206a200110402002280220450d4420022802242204417f4c0d6d2004450d3320041080012205450d6020052001280200200141046a22032802002206200420062004491b220610f5011a200328020022092006490d612003200920066b3602002001200128020020066a36020020062004470d340c6a0b200242003703900420024190046a20042003410820034108491b220510f5011a200141046a200320056b3602002001200420056a360200200341074d0d432002290390042107410521090c7a0b200241c0006a200110402002280240450d4220022802442211ad42187e2207422088a70d6b2007a72204417f4c0d6b2004450d352004101222050d36200441041016000b0c160b0b2002419c036a41046a2203200241d0026a41046a2d00003a0000200220022f01b6033b01a203200220022802d00236029c032009450d72200241a8026a41046a220420032d00003a0000200220022f01a20322033b01b4032002200228029c033602a802200241e8046a41046a20042d00003a0000200220033b019403200220022802a8023602e804410421040c740b0b2002419c036a41046a2203200241d0026a41046a2d00003a0000200220022f01a8023b01a203200220022802d00236029c032009450d70200241ac036a41046a220420032d00003a0000200220022f01a20322033b01b2032002200228029c033602ac03200241e8046a41046a20042d00003a0000200220033b019403200220022802ac033602e804410321040c720b200241d0016a20011040410d210420022802d001450d0a20022802d4012105200241c8016a2001104020022802c801450d0a20022802cc012106200241b0016a2001107f20022903b001a7450d0a200241c0016a290300210720022903b801210820054108762103410621040c0d0b20024180026a20011040200228028002450d0820022802840222054108762103410b21040c0a0b20024190046a2001107e200241e8046a41086a2201200241b0046a2802003602002002200241a8046a2903003703e80420022d00900422054102460d0720022f00910420022d0093044110747221032002419c046a2902002107200241a4046a28020021062002290294042108200241b8036a41086a22042001280200360200200220022903e8043703b803200241d0026a41086a2004280200360200200220022903b8033703d002410421040c0b0b200241a8016a2001104020022802a801450d0620022802ac0122054108762103410521040c080b200241f8016a2001104020022802f801450d0520022802fc0122054108762103410921040c070b200241d8016a20011081014107410d20022802d8011b210420022903e00121080c020b200241e8016a20011081014108410d20022802e8011b210420022903f00121080c010b20024190046a2001107d2002280290042205450d02200541087621032002290294042108410c21040b0c040b200241003a00900420024190046a200b200a410047220410f5011a200a2004490d4a200141046a200a20046b3602002001200b20046a360200200a450d0020022d0090042109410a21040c050b410d21040b0b0b0b0b20024190046a41086a2201200241d0026a41086a280200360200200220022f01a4033b01ac03200220022903d0023703900402402004410d470d002000410a3a0000200241c0056a24000f0b200241a8026a41086a220a2001280200360200200220022f01ac033b019c0320022002290390043703a802200041186a2007370000200041106a2008370000200041096a20093a0000200041086a20043a0000200041053a0000200041206a20063600002000410c6a2003410874200541ff0171723600002000410a6a20022f019c033b0000200041246a20022903a8023700002000412c6a200a280200360000200241c0056a24000f0b410421040b0b20024190046a411f6a2201200241d0026a411f6a28000036000020024190046a41186a2206200241d0026a41186a29030037030020024190046a41106a2203200241d0026a41106a29030037030020024190046a41086a2209200241d0026a41086a290300370300200220022903d0023703900420044104460d5c200241a8026a411f6a220a2001280000360000200241a8026a41186a22012006290300370300200241a8026a41106a22062003290300370300200241a8026a41086a2203200929030037030020022002290390043703a802200041c8006a200f370000200041c0006a2010370000200041386a2007370000200041306a20083700002000410c6a20053a0000200041086a2004360000200041033a00002000410d6a20022903a802370000200041156a20032903003700002000411d6a2006290300370000200041256a20012903003700002000412c6a200a280000360000200241c0056a24000f0b200241003a00900420024190046a200d2003410047220410f5011a20032004490d47200141046a200320046b3602002001200d20046a3602002003450d1220022d0090042112411221040c4e0b2002420037039804200242003703900420024190046a200d2003411020034110491b220410f5011a200141046a200320046b3602002001200d20046a360200410f21042003410f4d0d1120024198046a290300210f20022903900421100c0e0b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d102002290390042110410c21040c0f0b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d0f2002290390042110410521040c0e0b200241003602900420024190046a200d20034104200341044922051b220410f5011a200141046a200320046b3602002001200d20046a36020020050d0e200228029004210b410d21040c070b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d0d2002290390042110410a21040c0c0b4100210920024190046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f4011a20024190046a200d200410f5011a200141046a200320046b22053602002001200d20046a22043602002003411f4d0d1b200241a4036a41046a220320024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d0090042112200228009304210b2002290097042110200229009f04210f20022800a7042106200241e8046a41046a20032d00003a0000200220022f01aa033b01d002200220022802a4033602e804410121090c1c0b411121040c0c0b4100210920024190046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f4011a20024190046a200d200410f5011a200141046a200320046b22053602002001200d20046a220a3602002003411f4d0d1b200241a4036a41046a220420024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d0090042112200228009304210b2002290097042110200229009f04210f20022800a7042106200241d0026a41046a20042d00003a0000200220022f01aa033b01a802200220022802a4033602d002410121090c1c0b20024200370390044108210420024190046a200d2003410820034108491b220510f5011a200141046a200320056b3602002001200d20056a360200200341074b0d040c090b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d082002290390042110410621040c070b200241003602900420024190046a200d20034104200341044922051b220410f5011a200141046a200320046b3602002001200d20046a36020020050d07200228029004210b410e21040b0c090b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a36020041072104200341074d0d050b20022903900421100c030b2002420037039804200242003703900420024190046a200d2003411020034110491b220410f5011a200141046a200320046b3602002001200d20046a3602002003410f4d0d0320024198046a290300210f2002290390042110410b21040b0c040b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d012002290390042110410921040b0c020b411321040b0b0b0c380b4101210541002004460d390b20040d100c110b4101210541002004460d360b20040d0e0c0f0b4101210541002004460d440b20040d0c0c0d0b410421050b024002402011450d00420021074100210c41002104410021092011210d0340200241386a200110402002280238450d0c200228023c2203417f4c0d37024002402003450d002003108001220b450d23200b2001280200200141046a220a2802002206200320062003491b220610f5011a200a28020022122006490d24200a201220066b3602002001200128020020066a36020020062003460d010c0d0b4101210b41002003470d0c0b200241306a200110402002280230450d0b20022802342206417f4c0d37024002402006450d0020061080012212450d2120122001280200200141046a220e280200220a2006200a2006491b220a10f5011a200e2802002214200a490d22200e2014200a6b36020020012001280200200a6a360200200a2006460d010c0c0b4101211241002006470d0b0b200941016a210a02402009200d470d00200c200a200a200c491b220dad42187e2208422088a70d1d2008a7220e4100480d1d02402009450d0020052004200e101322050d010c200b200e10122205450d1f0b200520046a2209200b360200200941146a2006360200200941106a20063602002009410c6a2012360200200941046a2003ad220842208620088437020020074280808080107c2107200c41026a210c200441186a2104200a2109200a2011490d000c020b0b4100210d420021070b2005450d0b2007200dad842107410721090c420b4101210341002004460d320b2004450d00200310140b200220022f01e8043b0190040c370b420021104200210f0b2002419c036a41046a2203200241e8046a41046a2d00003a0000200220022f01d0023b01a203200220022802e80436029c03024002402009450d00200241b8036a41046a20032d00003a0000200220022f01a2033b01a8022002200228029c033602b8032002420037039804200242003703900420024190046a20042005411020054110491b220310f5011a200141046a200520036b3602002001200420036a3602002005410f4d0d0020024198046a2903002108200229039004210720024194036a41046a200241b8036a41046a2d00003a0000200220022f01a8023b019a03200220022802b80336029403410321040c010b411321040b0c2b0b420021104200210f0b2002419c036a41046a2204200241d0026a41046a2d00003a0000200220022f01a8023b01a203200220022802d00236029c0302402009450d00200241ac036a41046a20042d00003a0000200220022f01a2033b01b2032002200228029c033602ac0320024190046a2005412020054120491b22046a41004100412020046b2004411f4b1b10f4011a20024190046a200a200410f5011a200141046a200520046b3602002001200a20046a3602002005411f4d0d00200241a4036a41046a220420024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d009004210a200228009304210c2002290097042107200229009f04210820022800a7042109200241d0026a41046a220520042d00003a0000200220022f01aa0322043b01b603200220022802a4033602d002200241a8026a41046a20052d00003a0000200220043b01b403200220022802d0023602a802200241a0026a200110404113210420022802a002450d2820022802a4022203417f4c0d2e2003450d0620031080012205450d2620052001280200200141046a220e280200220d2003200d2003491b220d10f5011a200e2802002211200d490d27200e2011200d6b36020020012001280200200d6a360200200d2003470d070c290b411321040c270b2006450d00201210140b2003450d00200b10140b02402009450d002005210103400240200141046a280200450d00200128020010140b0240200141106a280200450d002001410c6a28020010140b200141186a2101200441686a22040d000b0b200d450d010b200510140b2000410a3a0000200241c0056a24000f0b4101210541002003460d220b2003450d20200510140c200b20052004103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b1010000b20062003103a000b200e41041016000b200641011016000b200a2014103a000b200341011016000b20062012103a000b41d80041081016000b20052006103a000b2004200a103a000b200441011016000b20062009103a000b200441011016000b20062009103a000b200441011016000b20062009103a000b20042003103a000b200441011016000b20052009103a000b200341011016000b200d2011103a000b0c010b4104210420024194036a41046a200241ac036a41046a2d00003a00002002418c036a41046a200241a8026a41046a2d00003a0000200220022f01b2033b019a03200220022802ac0336029403200220022f01b4033b019203200220022802a80236028c032003ad221342208620138421130b20024190046a41046a220120024194036a41046a2d00003a0000200241e8046a41046a22032002418c036a41046a2d00003a0000200241b8036a41026a220d20024189036a41026a2d00003a0000200220022f019a033b01d002200220022802940336029004200220022f0192033b01a8022002200228028c033602e804200220022f0089033b01b803024020044113470d002000410a3a0000200241c0056a24000f0b20024180036a41046a220e20012d00003a0000200241f8026a41046a220120032d00003a0000200241f4026a41026a2203200d2d00003a0000200220022f01d0023b018603200220022802900436028003200220022f01a8023b01fe02200220022802e8043602f802200220022f01b8033b01f402200041186a200f370000200041106a2010370000200041386a2008370000200041306a2007370000200041096a20123a0000200041086a20043a0000200041083a0000200041206a20063600002000410c6a200b360000200041296a200a3a0000200041c0006a20093600002000412c6a200c3600002000410a6a20022f0186033b0000200041246a200228028003360000200041286a200e2d00003a00002000412a6a20022f01fe023b0000200041d0006a2013370000200041cc006a2005360000200041c8006a20012d00003a0000200041c4006a20022802f802360000200041c9006a20022f01f4023b0000200041cb006a20032d00003a0000200241c0056a24000f0b2004ad22074220862007842107410421090c100b2004ad22074220862007842107410621090c0f0b20024190026a200110400240200228029002450d002002280294022205417f4c0d010240024002402005450d0020051080012206450d0520062001280200200141046a220a2802002209200520092005491b220910f5011a200a280200220c2009490d06200a200c20096b3602002001200128020020096a36020020092005460d010c020b4101210641002005470d010b20024188026a20011040200228028802450d00200228028c022209417f4c0d02024002402009450d002009108001220a450d07200a2001280200200141046a220b280200220c2009200c2009491b220c10f5011a200b2802002212200c490d08200b2012200c6b36020020012001280200200c6a360200200c2009470d010c090b4101210a41002009460d080b2009450d00200a10140b2005450d00200610140b02402004450d00200310140b200220022f01e8043b0190040c060b100f000b200541011016000b2009200c103a000b200941011016000b200c2012103a000b2009ad220f422086200f84210f410221090c010b2000410a3a0000200241c0056a24000f0b200220022f01e8043b0190040b200220022f0190043b01b803200041386a2008370000200041306a2007370000200041096a20013a0000200041086a20093a0000200041073a0000200041286a200f370000200041246a200a360000200041206a20053600002000411c6a2005360000200041186a2006360000200041146a2004360000200041106a20043600002000410c6a20033600002000410a6a20022f01b8033b0000200241c0056a24000f0b2000410a3a0000200241c0056a24000f0b0b0b20024190046a41086a2203200241e8046a41086a280200360200200220022f0194033b01ac03200220022902e80437039004024020044106470d002000410a3a0000200241c0056a24000f0b200241b8036a41086a22092003280200360200200220022f01ac033b018c0320022002290390043703b803200041186a2008370000200041106a2007370000200041096a20053a0000200041086a20043a0000200041093a0000200041206a20063600002000410c6a20013600002000410a6a20022f018c033b0000200041246a20022903b8033700002000412c6a2009280200360000200241c0056a24000f0b2004ad22074220862007842107410221090b200041013a0000200041106a20073700002000410c6a2005360000200041086a2009360000200241c0056a24000f0b2000410a3a0000200241c0056a24000bd60403027f017e0e7f230041d0006b22022400200241086a2001104002400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011016000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110f5011a200a200520116b3602002001200f20116a36020020100d02200d41016a2105200241106a41186a22112007290300370300200241106a41106a220f2008290300370300200241106a41086a22102009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101322060d010c060b201210122206450d050b2006200c6a220d2002290310370000200d41186a2011290300370000200d41106a200f290300370000200d41086a2010290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d00200610140b200241d0006a24000f0b1010000b201241011016000b8f0801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510f5011a0240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441f0014f0d01410121010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410f5011a200141046a200620046b3602002001200520046a36020041012101200641014d0d0441ef01210420022f015041ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410f5011a200141046a200620046b3602002001200520046a360200200641034d0d0441ffff03210441012101200228025041ffff034b0d08200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10f4011a200241d0006a2005200410f5011a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c020b200041023a0000200241f0006a24000f0b20052004103a000b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bce0603067f037e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510f5011a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d002022034103712204450d00024020044101460d0020044102470d02200241003a001e200241003b011c2002411c6a200520064103200641034922071b220410f5011a200141046a200620046b3602002001200520046a36020020070d0320022f011c20022d001e41107472410874200372410276ad21080c080b200241003a0020200241206a20052006410047220410f5011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21080c070b2003410276ad21080c060b0240024020034102762204450d00024020044104460d002004410c470d024200210a2002420037032820024200370320200241206a200520064110200641104922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d04200241286a2903002109200229032021084201210a0c090b4200210a20024200370320200241206a200520064108200641084922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d03200229032021080c070b20024100360220200241206a200520064104200641044922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d01200235022021080c060b200441046a220b41104b0d00200141046a210c200241106a210d4200210842002109410021030340200241003a0020200241206a20052006410047220410f5011a20062004490d04200c200620046b22073602002001200520046a22053602002006450d01200241086a20023100204200200341037441f8007110fa01200d2903002009842109200229030820088421084201210a20072106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004103a000b20042006103a000b20042006103a000b420021094201210a0b200020083703082000200a370300200041106a2009370300200241306a24000b0700200010ed010bc00503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510f5011a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000822044103712203450d002004ad2107024020034101460d0020034102470d02200241003a0006200241003b0104200241046a200520064103200641034922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d0320023301042002310006421086844208862007844202882107420121080c050b200241003a0008200241086a20052006410047220410f5011a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b2004410276ad2107420121080c030b0240024020044102762204450d0020044104470d014200210820024200370308200241086a200520064108200641084922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d0320022903082107420121080c040b20024100360208200241086a200520064104200641044922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d0120023502082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410f5011a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004103a000b20042006103a000b20042006103a000bc29a0104047f017e067f017e230041106b220224000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022030d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00000240200041086a29030022064202520d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041106a2001108301200041086a29030021060b2006a722034101460d012003450d0220002d000021030b200341ff01714101470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41cccbc1001018000b41cccbc1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41003a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41023a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a28020021030b024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41043a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a200041086a28020021030b024020034107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22044100480d232003450d0120012802002003200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101c02402005450d002003200541186c6a2109200141046a210803402003280200210a2002200341086a280200220536020c2002410c6a2001101c02400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071013220b0d020c080b2001280200210b0c020b20071012220b450d060b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510f5011a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101c02400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071013220b0d020c090b2001280200210b0c020b20071012220b450d070b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510f5011a200341186a22032009470d000b0b200041086a28020021030b20034101460d032003450d0420002d000021030b0240200341ff017122044103460d0020044102470d07200110840141b4cbc1001018000b024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1f20034101742205200420042005491b22054100480d1f2003450d0120012802002003200510132204450d020c070b200128020021040c070b2005101222040d050b200541011016000b200741011016000b200741011016000b41d4c4c1001018000b41d4c4c1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a20011085012002200041306a36020c2002410c6a20011079200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a20011085012002200041306a36020c2002410c6a200110792002200041c0006a36020c2002410c6a20011079200041086a28020021030b2003450d0120034101460d0220002d000021030b200341ff01714104470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41fce1c1001018000b41fce1c1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041106a2001108301200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b200341ff017122034101460d012003450d0220002d000021030b200341ff01714105470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41c8a6c2001018000b41c8a6c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a2001101c200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002000410c6a2001108501200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00002000410c6a2001101c200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41043a00002000410c6a2001101c200041206a2001101c2002200041106a36020c2002410c6a20011079200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200041106a2001108301200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200041106a2001108301200041086a2d000021030b0240200341ff01714109470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00002000410c6a2001101c200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41093a00002000410c6a2001101c200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101c02402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1320074101742204200a200a2004491b22044100480d132007450d01200128020020072004101322070d020c080b200128020021070c020b200410122207450d060b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff017122034101460d022003450d0320002d000021030b200341ff01714106470d05024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0e20034101742205200420042005491b22054100480d0e2003450d0120012802002003200510132204450d020c060b200128020021040c060b2005101222040d040b200541011016000b200441011016000b418092c2001018000b418092c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240200041046a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2802002001108201200041046a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a2001108501200041046a28020021030b20034101460d012003450d0220002d000021030b200341ff01714107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41b0a6c2001018000b41b0a6c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00000240200041086a2d0000220341077141044b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024020030e050c0d0001020c0b200141046a280200200141086a2802002203470d04200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0920012802002003200510132204450d0a0c110b200141046a280200200141086a2802002203470d01200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d0420012802002003200510132204450d050c0e0b200141046a280200200141086a2802002203470d01200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0520012802002003200510132204450d060c0b0b200128020021040c0d0b200128020021040c0a0b200128020021040c0d0b2005101222040d090b200541011016000b2005101222040d050b200541011016000b2005101222040d070b200541011016000b41c895c2001018000b41c895c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c040b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a20073600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0b20012802002003200510132204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0620012802002003200510132204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0720012802002003200510132204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0a20012802002003200510132204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101222040d0b0b200541011016000b2005101222040d070b200541011016000b2005101222040d090b200541011016000b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00000c080b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00000c060b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00000c040b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00000c020b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002106200041306a290300210d02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a220320063700082003200d3700002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310f5011a200041186a28020021082002200041206a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310f5011a200041246a280200210820022000412c6a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a0b20002d000021030b200341ff01714108470d0402400240024002400240200141046a2205280200200141086a22032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a00000240200041086a2d000022044102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041386a2903002106200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714104470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41023a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a290000370000200420072900003700000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b200141086a220b200441206a360200200720046a220441186a200041296a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210a2002200041d4006a280200220436020c2002410c6a2001101c02400240024002400240200141046a2802002208200b28020022076b20044f0d00200720046a220b2007490d0620084101742207200b200b2007491b22074100480d062008450d0120012802002008200710132208450d020c030b200128020021080c030b2007101222080d010b200741011016000b20012008360200200141046a2007360200200141086a28020021070b2003200720046a360200200820076a200a200410f5011a200041086a2d000021040b200441ff01714105470d0302400240024002400240200528020020032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a290300210602400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0320074101742204200820082004491b22044100480d032007450d0120012802002007200410132207450d020c040b200128020021070c040b2004101222070d020b200441011016000b1010000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d0b20074101742204200b200b2004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d0b20074101742204200b200b2004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410e3a0000200041086a2d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410f3a0000200041086a2d000021040b0240200441ff01714112470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d0b20044101742207200520052007491b22074100480d0b2004450d0120012802002004200710132205450d020c030b200128020021050c030b2007101222050d010b200741011016000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200041096a2d00003a0000200041086a2d000021040b200441ff017122034101460d012003450d0220002d000021030b200341ff01714109470d08024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41d0f0c1001018000b41d0f0c1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0a20034101742205200420042005491b22054100480d0a2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101c02402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d0b20074101742204200a200a2004491b22044100480d0b2007450d01200128020020072004101322070d020c070b200128020021070c020b200410122207450d050b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff01714103470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510132204450d020c040b200128020021040c040b2005101222040d020b200541011016000b200441011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0620044101742203200520052003491b22034100480d062004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0620034101742205200420042005491b22054100480d062003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0620044101742203200520052003491b22034100480d062004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b200341ff01714105470d0302400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a2903002106024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310132204450d020c040b200128020021040c040b2003101222040d020b200341011016000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a2d000021030b200341077122014101460d012001450d020b200241106a24000f0b41d0b6c2001018000b41d0b6c2001018000bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510132204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010132204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101322040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101322070d0a0c110b2005101222040d130b200541011016000b200128020021040c050b200128020021070c070b2000101222040d0d0b200041011016000b200010122204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410122207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101322050d020c060b200128020021050c020b200810122205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011016000b41ccb3c2001018000b2002200241086a360240200241a090c100360244200241c8006a41146a4100360200200241286a41146a4104360200200241346a4106360200200241106a41146a410336020020024184a1c1003602582002420137024c200241e4b3c2003602482002410636022c20024203370214200241f8bbc2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41ecb3c200102c000b200041011016000b200441011016000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000bb10101037f024002400240024002400240200041046a280200200041086a2802002201470d00200141016a22022001490d0320014101742203200220022003491b22034100480d032001450d0120002802002001200310132202450d020c040b200028020021020c040b2003101222020d020b200341011016000b1010000b20002002360200200041046a2003360200200041086a28020021010b200041086a200141016a360200200220016a41023a00000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410132203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410132203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101322030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101322030d0a0c0d0b2004101222030d0e0b200441011016000b200128020021030c050b200128020021030c070b2004101222030d0c0b200441011016000b200410122203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410122203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101322030d020c060b200128020021030c020b200010122203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011016000b200441011016000b200041011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010132203450d020c040b200128020021030c040b2000101222030d020b200041011016000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b900a02067f017e230041e0006b2202240002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0e0c0d0b200241cb006a2001410c6a280000360000200041013a00002002200141046a29000037004320002002290040370001200041086a200241c7006a2900003700002003450d020b20034101460d0c20030d09200141086a280200450d0c200141046a2802001014200241e0006a24000f0b20034103470d0920022001410c6a280200220336021c2002200141046a2802002204360218200241003a0040200241c0006a20042003410047220510f5011a20032005490d022002200320056b220636021c2002200420056a22053602182003450d09024020022d004022034101460d0020030d0a200241003a0040200241c0006a20052006410047220310f5011a20062003490d042002200620036b220436021c2002200520036a220336021802402006450d0020022d0040450d030b410021060c060b200241003a0040200241c0006a20052006410047220310f5011a20062003490d042002200620036b36021c2002200520036a3602182006450d0920022d00400d09200241c0006a200241186a107d20022802402203450d0920022902442108200241146a41026a200241206a41026a2d00003a0000200241086a200241c0006a41086a290200370300200241106a200241c0006a41106a280200360200200220022f00203b011420022002290240370300410121060c070b41000d090c0a0b41002106200241c0006a20044120200441204922071b22056a41004100412020056b2005411f4b1b10f4011a200241c0006a2003200510f5011a2002200420056b36021c2002200320056a36021820070d03200241386a41026a200241c0006a41026a2d00003a0000200241286a200241d7006a290000370300200241306a200241c0006a411f6a2d00003a0000200220022f00403b01382002200229004f3703202002280043210320022900472108410121060c040b20052003103a000b20032006103a000b20032006103a000b0b2002413c6a41026a2205200241386a41026a2d00003a0000200241c0006a41086a2204200241206a41086a290300370300200241c0006a41106a2207200241206a41106a2d00003a0000200220022f01383b013c200220022903203703402006450d02200241146a41026a20052d00003a0000200241086a2004290300370300200241106a20072d00003a0000200220022f013c3b011420022002290340370300200241136a200241c0006a41026a2d00003a0000200220022f00403b0011410021060b200241206a41026a2205200241146a41026a2d00003a0000200241c0006a41086a2204200241086a290300370300200241c0006a41106a2207200241106a280200360200200220022f01143b012020022002290300370340200020063a0000200041086a2008370000200041046a2003360000200020022f01203b0001200041036a20052d00003a0000200041106a2002290340370000200041186a2004290300370000200041206a20072802003600000b200141086a280200450d02200141046a28020010140c020b41fdaec000411e1015000b200141086a280200450d00200141046a2802001014200241e0006a24000f0b200241e0006a24000bca0203027f017e017f230041206b22022400024002400240024002400240024002400240200028020022034101460d0020034102470d01410110122203450d03200341023a00002000290308210420034101410910132200450d04200020043700010c020b410110122203450d04200341013a00002000290308210420034101410910132200450d05200020043700010c010b410110122203450d05200341003a00002000290308210420034101410910132200450d06200020043700010b2001280204210320012802002101200241106a41086a220542003703002002420037031020012003200241106a1000200241086a2005290300370300200220022903103703002002411020004109100220001014200241206a24000f0b410141011016000b410941011016000b410141011016000b410941011016000b410141011016000b410941011016000b970302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081001210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d00082203450d0120034101460d0220034102470d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420221050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420021050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000bfe0402047f027e23004190016b22002400200041086a41086a220142003703002000420037030841d5b2c0004115200041086a1000200041f8006a41086a200129030037030020002000290308370378024002400240200041f8006a41104184a1c100410041001001417f460d0020004100360208200041f8006a4110200041086a41044100100141016a41044d0d02200028020841016a21020c010b410121020b2000200236028c01200041086a41086a220142003703002000420037030841d5b2c0004115200041086a1000200041f8006a41086a2203200129030037030020002000290308370378200041f8006a41102000418c016a41041002200142003703002000420037030841eab2c0004120200041086a100020032001290300370300200020002903083703780240024002400240200041f8006a41104184a1c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821040c010b42e40021040b200041086a41086a220142003703002000420037030841dd81c000410d200041086a1000200041f8006a41086a200129030037030020002000290308370378420021050240200041f8006a41104184a1c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821050b2000200520047c370310200042003703082000411536027c200041ddb0c000360278200041086a200041f8006a108701200041146a2002360200200041083a000820014101360200200041086a101a20004190016a24000f0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b13002000411136020420004184e5c1003602000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241143600000f0b410441011016000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011016000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011016000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010122206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010132206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110132206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011016000b41c00041011016000b41800141011016000b6101017f02400240411010122202450d00200242003700082002420037000020024110412010132202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011016000b412041011016000b3101017f0240410110122202450d00200042818080801037020420002002360200200241013a00000f0b410141011016000b13002000410f360204200041f0b5c0003602000b821103077f047e0a7f230041c0026b2202240002400240411510122203450d002003410d6a410029008ab840370000200341086a4100290085b840370000200341002900fdb74037000020034115413510132203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1000200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a41104184a1c100410041001001417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22044200370300200242003703284100210502404100200241b0016a4110200241286a41204100100122012001417f461b2201411f4d0d00200241186a2205200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200429030037030020022002290328370300200241a0026a41186a2005290300370300200241a0026a41106a2006290300370300200241a0026a41086a2007290300370300200220022903003703a002410121050b200241186a2204200241a0026a41186a290300370300200241106a2206200241a0026a41106a290300370300200241086a2207200241a0026a41086a290300370300200220022903a0023703002005450d02200241e0016a41186a2004290300370300200241e0016a41106a2006290300370300200241e0016a41086a2007290300370300200220022903003703e001200241286a41186a4200370300200241286a41106a4200370300200241286a41086a4200370300200242003703284100200241b0016a4110200241286a41202001412020014120491b2205100122012001417f461b2201411f4d0d02200241186a2204200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200241286a41086a22082903003703002002200229032837030020024180026a41186a200429030037030020024180026a41106a200629030037030020024180026a41086a2007290300370300200220022903003703800220024200370330200242003703284100200241b0016a4110200241286a41102001412020014120491b20056a2205100122012001417f461b2201410f4d0d02200829030021092002290328210a20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20056a2205100122012001417f461b2201410f4d0d02200241306a290300210b2002290328210c200241003a0028200241b0016a4110200241286a41012001411020014110491b20056a2201100141016a22054102490d024100210d024020022d00282204450d0020044101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a41202001200541014b6a10012201417f460d0320014120490d03200241a0026a41186a200241286a41186a290300370300200241a0026a41106a200241286a41106a290300370300200241a0026a41086a200241286a41086a290300370300200220022903283703a0024101210d0b200241286a41186a220e200241a0026a41186a220f290300370300200241286a41106a2210200241a0026a41106a2211290300370300200241286a41086a2212200241a0026a41086a2213290300370300200220022903a002370328200f200241e0016a41186a22012903003703002011200241e0016a41106a22052903003703002013200241e0016a41086a2204290300370300200241c0016a41086a221420024180026a41086a2206290300370300200241c0016a41106a221520024180026a41106a2207290300370300200241c0016a41186a221620024180026a41186a2208290300370300200220022903e0013703a00220022002290380023703c001200241cb006a200241036a280000360000200220022800003602482008200f2903003703002007201129030037030020062013290300370300200420142903003703002005201529030037030020012016290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200e2903003703002002411f6a2210200241286a411f6a290000370000200220022903a00237038002200220022903c0013703e00120022002290328370300200e200b370300200241286a41286a2006290300370300200241286a41306a2007290300370300200241286a41386a2008290300370300200241286a41c8006a2004290300370300200241286a41d0006a2005290300370300200241286a41d8006a20012903003703002002200c370338200220093703302002200a3703282002200229038002370348200220022903e001370368200041186a200b3703002000200c370310200020093703082000200a370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a20102900003700002000200229038002370320200041286a2006290300370300200041306a2007290300370300200041386a20082903003703002002200d3a0088012000200d3a0060200041d8006a2001290300370300200041d0006a2005290300370300200041c8006a2004290300370300200020022903e00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010f4011a0b20031014200241c0026a24000f0b41b185c00041331015000b411541011016000b413541011016000b85260b1a7f027e087f067e017f027e017f037e1e7f027e0b7f230041e0006b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b41c200211c4201211d4200211e4100211f0c010b410021000c010b410121000b034002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341306a41086a22004200370300200342003703304198b2c000411b200341306a1000200341086a41086a20002903003703002003200329033037030802400240024002400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a103020032802402234450d03200328024421350240200341c0006a41086a22362802002200450d0020004105742137203421040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411510122200450d032000410d6a410029008ab840370000200041086a4100290085b840370000200041002900fdb74037000020004115413510132200450d04200441206a2104200020032903083700152000412d6a2025290300370000200041256a20262903003700002000411d6a2038290300370000200341306a41086a222542003703002003420037033020004135200341306a10002036202529030037030020032003290330370340200341c0006a4110100320001014203741606a22370d000b0b2035450d00203410140b200341306a41086a22004200370300200342003703304198b2c000411b200341306a1000200341c0006a41086a200029030037030020032003290330370340200341c0006a41101003200042003703002003420037033041feb1c000411a200341306a1000200341086a41086a20002903003703002003200329033037030802400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a103020032802402239450d052003280244213a4105213b200341c8006a28020041057422000d010c0c0b410121394100213a4105213b41004105742200450d0b0b203920006a213c2001280200213d2001280204213e4118213f411021404108214141202137417f21384102214241a80821434106214441987d21454160213441012136203921354101211f0c050b411541011016000b413541011016000b41b185c00041331015000b41b185c00041331015000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a203f6a2035203f6a290000370300200341086a20406a203520406a290000370300200341086a20416a203520416a29000037030020032035290000370308203520376a2135203d2146203e21470c030b200341086a204a6a225a2035204a6a290000370300200341086a204b6a225b2035204b6a290000370300200341086a204c6a225c2035204c6a290000370300200320352900003703082035204d6a2135203d215d203e215e0c030b410121000c0f0b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d0120202004201010f7012226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204620416a210420462f01062224203b7421004100212502400240024003402000450d01200341086a2004203710f7012226450d02200020346a2100202520366a2125200420376a2104202620384a0d000b202520386a21240b2047450d01204720386a2147204620242042746a20436a2802002146410121000c030b204620252044746a2045460d002035203c470d090c100b200341c0006a41186a2200200341086a41186a290300370300200341c0006a41106a2204200341086a41106a290300370300200341c0006a41086a2225200341086a41086a29030037030020032003290308370340412010122248450d0720482003290340370000204841186a2000290300370000204841106a2004290300370000204841086a20252903003700002035203c460d03410121494118214a4110214b4108214c4120214d4105214e417f214f4102215041a80821514205215242202153410021544106215541987d21564160215741012158410121594102211f0c0e0b205d204c6a2104205d2f01062224204e742100410021250240024003402000450d01200341086a2004204d10f7012226450d02200020576a2100202520496a21252004204d6a21042026204f4a0d000b2025204f6a21240b205e450d02205e204f6a215e205d20242050746a20516a280200215d410221000c010b0b205d20252055746a2056460d002035203c470d070c020b200341c0006a204a6a2200205a290300370300200341c0006a204b6a2204205b290300370300200341c0006a204c6a2225205c29030037030020032003290308370340205a2000290300370300205b2004290300370300205c202529030037030020032003290340370308024020592058470d00205820496a22002058490d0320582049742204200020002004491b2259ad2052862227205388a70d032027a722002054480d0302402058450d0020482058204e742000101322480d010c050b200010122248450d040b20482058204e746a220020032903083700002000204a6a205a2903003700002000204b6a205b2903003700002000204c6a205c290300370000205820496a21582035203c470d070c010b41012158410121590b0240203a450d00203910140b204820581095012059450d0b204810140c0b0b1010000b200041011016000b412041011016000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c0e0b410121000c0d0b410121000c0c0b410121000c0b0b0240203a450d00203910140b410141001095010b200341306a41086a220042003703002003420037033041feb1c000411a200341306a1000200341086a41086a2000290300370300200320032903303703080240024002400240024002400240024002400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10302003280240224d450d07200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411f10122200450d04200041176a41002900cbaf40370000200041106a41002900c4af40370000200041086a41002900bcaf40370000200041002900b4af403700002000411f413f10132200450d03200441206a21042000200329030837001f200041376a20252903003700002000412f6a2026290300370000200041276a2038290300370000200341306a41086a22254200370300200342003703302000413f200341306a10002010202529030037030020032003290330370340200341c0006a4110100320001014203741606a22370d000b0b2036450d00204d10140b200341306a41086a222542003703002003420037033041feb1c000411a200341306a1000200341c0006a41086a202529030037030020032003290330370340200341c0006a4110100302402002450d00202542003703002003420037033041f2b0c0004124200341306a1000200341086a41086a20252903003703002003200329033037030841002126024002400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a103020032802402238450d0c20032802442126200341c8006a28020041057422370d010c020b4101213841004105742237450d010b203821040340412210122200450d07200041206a41002f00d3b2403b0000200041186a41002900cbb240370000200041106a41002900c3b240370000200041086a41002900bbb240370000200041002900b3b2403700002000412241c40010132200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341086a200041c2001025200341086a41186a290300211e200341086a41086a290300211d200341086a41206a2903002127200341086a41106a290300212820032903082153200010140240201e4200205342015122001b221e201d420020001b221d842027420020001b22272028420020001b22288484500d002004201e201d7c221d202720287c201d201e54ad7c106c0b200441206a2104203741606a22370d000b0b2026450d00203810140b202542003703002003420037033041f2b0c0004124200341306a1000200341086a41086a2025290300370300200320032903303703080240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10302003280240224d450d08200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308412210122200450d05200041206a41002f00d3b2403b0000200041186a41002900cbb240370000200041106a41002900c3b240370000200041086a41002900bbb240370000200041002900b3b2403700002000412241c40010132200450d06200441206a2104200020032903083700222000413a6a2025290300370000200041326a20262903003700002000412a6a2038290300370000200341306a41086a2225420037030020034200370330200041c200200341306a10002010202529030037030020032003290330370340200341c0006a4110100320001014203741606a22370d000b0b2036450d00204d10140b200341306a41086a220042003703002003420037033041f2b0c0004124200341306a1000200341c0006a41086a2204200029030037030020032003290330370340200341c0006a41101003200042003703002003420037033041ddb0c0004115200341306a10002004200029030037030020032003290330370340200341c0006a41101003200341e0006a24000f0b413f41011016000b411f41011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200620106a21000240200629030022272006200b6a290300222884500d00200020272028106c0b2006290310200620146a222529030084500d00201510122204450d01200420106a20162f00d3b24022263b0000200420146a20162900cbb2402229370000200420176a20162900c3b240222a3700002004200b6a20162900bbb240222b370000200420162900b3b240222c37000020042015201810132204450d0220042000290000370022200420196a200020146a22242900003700002004201a6a200020176a22232900003700002004201b6a2000200b6a222d290000370000200341086a2004201c1025200341086a20106a290300212e200341086a20146a290300212f200341086a200b6a22302903002131200341086a20176a2903002132200329030821272004101420252903002133200620176a2903002128201510122204450d03200420106a20263b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810132204450d0420042000290000370022200420196a20242900003700002004201a6a20232900003700002004201b6a202d290000370000201710122200450d0520002031201e2027201d5122251b37000020002032201e20251b37000820002017201010132200450d0620002028202f201e2027201e5222251b7c2227370010200020146a2033202e201e20251b7c2027202854ad7c370000200341306a200b6a2225201e3703002003201e3703302004201c200341306a10002030202529030037030020032003290330370308200341086a201720002010100220001014200410140b200620056a22062007470d06410021000c070b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b4100211f410121000c000b0bb30101047f230041e0006b2201240020012000109a010240200141306a22022802002203450d00200141346a2104034002402004280200450d00200310140b20012000109a01200228020022030d000b0b02402000280204220341a090c100460d0020032802002102200310142002450d0020022802002100200210142000450d00024020002802002203450d000340200010142003210020032802002202210320020d000b0b200010140b200141e0006a24000bd5100a097f017e017f067e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041feb1c000411a200241e0006a1000200241206a41086a20002903003703002002200229036037032041002101024002400240024002400240024002400240024002400240024002400240024002400240200241206a41104184a1c100410041001001417f460d002002421037024c2002200241206a360248200241e0006a200241c8006a103020022802602200450d02200241e8006a2802002101200228026421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a109601024002400240024020022d00204101470d00412010122204450d0520042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a10960120022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d042005200120012005491b2207ad420586220b422088a70d04200ba722014100480d0402402006450d00200420032001101322040d010c060b200110122204450d050b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a10960120022d00200d000b2002280250220020022802542201460d070c060b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d00200228020810140b4100210720022802042201450d080c070b41012106410121072002280250220020022802542201470d040c050b1010000b200141011016000b41b185c00041331015000b412041011016000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d00200228024810140b20022802042201450d010b200228020021002001410574210c0340411f10122201450d02200141176a41002900cbaf40220d370000200141106a41002900c4af40220e370000200141086a41002900bcaf40220f370000200141002900b4af4022103700002001411f413f10132201450d032001200029000037001f200141376a200041186a22032900003700002001412f6a200041106a2205290000370000200141276a200041086a2208290000370000200241206a2001413f1025200241206a41106a220a2903002111200241206a41086a22092903002112200241206a41186a22132903002114200241206a41206a221529030021162002290320210b2001101420164200200b42015122011b21162014420020011b211402402012201184500d00200b500d00200020122011106c0b02402014201684500d00412210122201450d07200141206a41002f00d3b24022173b0000200141186a41002900cbb2402211370000200141106a41002900c3b2402212370000200141086a41002900bbb2402218370000200141002900b3b24022193700002001412241c40010132201450d08200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a2008290000370000200241206a200141c2001025200a290300211a2009290300211b2013290300211c2015290300211d2002290320210b20011014412210122201450d09200141206a20173b0000200141186a2011370000200141106a2012370000200141086a2018370000200120193700002001412241c40010132201450d0a200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a200829000037000041101012220a450d0b200a201b4200200b42005222131b221120147c2214370000200a201a420020131b20167c2014201154ad7c370008200a411041201013220a450d0c200a201c4200200b42015122131b370010200a41186a201d420020131b370000200241e0006a41086a2213420037030020024200370360200141c200200241e0006a10002009201329030037030020022002290360370320200241206a4110200a41201002200a1014200110140b411f10122201450d04200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10132201450d052001200029000037001f200141376a20032900003700002001412f6a2005290000370000200141276a2008290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a10002009200329030037030020022002290360370320200241206a4110100320011014200041206a2100200c41606a220c0d000b0b2002200636022820022007360224200220043602202002411a360264200241feb1c000360260200241206a200241e0006a107302402007450d00200410140b20024180016a24000f0b411f41011016000b413f41011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000ba30303067f037e027f230041206b220224000240024020012802082203200128020c2204460d002001280210220541046a21060340200141086a2003220741206a2203360200200741086a2900002108200741106a29000021092007290000210a200241186a200741186a290000370300200241106a2009370300200241086a20083703002002200a3703002005280200220720062802004105746a210b024002400340200b20076b41ff004d0d0120022007460d0220072002412010f701450d02200741206a220c2002460d02200c2002412010f701450d02200741c0006a220c2002460d02200c2002412010f701450d02200741e0006a220c2002460d0220074180016a2107200c2002412010f7010d000c020b0b2007200b460d03034020022007460d0120072002412010f701450d01200b200741206a2207470d000c040b0b20032004470d000b0b200041003a0000200241206a24000f0b20002002290300370001200041013a0000200041196a200241186a290300370000200041116a200241106a290300370000200041096a200241086a290300370000200241206a24000b9c0f05027f057e017f057e087f230041d0006b220224000240024002400240024002400240024002400240024002400240024020014102490d00411f10122203450d06200341176a41002900cbaf40370000200341106a41002900c4af40370000200341086a41002900bcaf40370000200341002900b4af403700002003411f413f10132203450d072003200029002037001f200341376a200041386a2900003700002003412f6a200041306a290000370000200341276a200041286a290000370000200241286a2003413f1025200241286a41206a2903002104200241c0006a2903002105200241286a41106a2903002106200229033021072002290328210820031014411f10122203450d08200341176a41002900cbaf40370000200341106a41002900c4af40370000200341086a41002900bcaf40370000200341002900b4af403700002003411f413f10132203450d092003200029000037001f200341376a200041186a22092900003700002003412f6a200041106a290000370000200341276a200041086a290000370000200241286a2003413f1025200241286a41206a290300210a200241286a41106a290300210b200241286a41186a290300210c2002290330210d2002290328210e20031014200520077c22074200200842005222031b200c200d7c22084200200e420151220f1b5a200420067c2007200554ad7c420020031b2205200a200b7c2008200c54ad7c4200200f1b220c5a2005200c511b0d00200029000021052000200041206a2203290000370000200241086a41186a2009290000370300200241086a41106a2210200041106a220f290000370300200241086a41086a2211200041086a22122900003703002012200341086a290000370000200f200341106a2900003700002009200341186a29000037000020022005370308200041206a2103024020014103490d00411f10122209450d0b200941176a41002900cbaf40370000200941106a41002900c4af40370000200941086a41002900bcaf40370000200941002900b4af403700002009411f413f10132209450d0c2009200029004037001f200941376a200041d8006a2900003700002009412f6a200041d0006a290000370000200941276a200041c8006a290000370000200241286a2009413f1025200241c8006a2903002104200241c0006a2903002105200241286a41106a2903002106200229033021072002290328210820091014411f10122209450d0d200941176a41002900cbaf40370000200941106a41002900c4af40370000200941086a41002900bcaf40370000200941002900b4af403700002009411f413f10132209450d0e2009200229030837001f200941376a200241086a41186a22132903003700002009412f6a200241086a41106a290300370000200941276a200241086a41086a290300370000200241286a2009413f1025200241286a41206a220f290300210a200241286a41106a290300210b200241286a41186a2212290300210c2002290330210d2002290328210e20091014200520077c22074200200842005222091b200c200d7c22084200200e42015122141b5a200420067c2007200554ad7c420020091b2205200a200b7c2008200c54ad7c420020141b220c5a2005200c511b0d00200041c0006a211441012109034020142103200920014f0d03200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200941026a20014f0d01411f10122200450d04200041176a41002900cbaf40220c370000200041106a41002900c4af402204370000200041086a41002900bcaf402206370000200041002900b4af4022073700002000411f413f10132200450d05200041376a200341386a2900003700002000412f6a200341306a290000370000200041276a200341286a2900003700002000200341206a221429000037001f200241286a2000413f1025200f290300210820122903002105200241286a41106a2215290300210a200241286a41086a2216290300210b2002290328210d20001014411f10122200450d06200041176a200c370000200041106a2004370000200041086a2006370000200020073700002000411f413f10132200450d072000200229030837001f200041376a20132903003700002000412f6a200241086a41106a290300370000200041276a200241086a41086a290300370000200241286a2000413f1025200f2903002104201529030021062012290300210c201629030021072002290328210e20001014200941016a21092005200b7c220b4200200d42005222001b200c20077c22074200200e42015122151b542008200a7c200b200554ad7c420020001b2205200420067c2007200c54ad7c420020151b220c542005200c511b0d000b0b20032002290308370000200341186a200241086a41186a290300370000200341106a2010290300370000200341086a20112903003700000b200241d0006a24000f0b418cb6c200200920011038000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541a090c100460d00200128020421060c010b41a80810122205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810f5011a20014100360204200120053602000b0c010b41a80841081016000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a2008412010f701220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410f6011a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410f6011a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081012221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810f5012108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410f5012108201d41e8026a200541a8066a200241067410f5012111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410f6011a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410f6011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410f6011a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410f6011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401012220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210f50121082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410f501216e200a20536a200d20526a200220107410f501216f200a20556a200d20546a200920566a220e200f7410f5012170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410f6011a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410f6011a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410f6011a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410f6011a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410f6011a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410f6011a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810122202450d03200241003b010620024100360200200241086a200441b0036a41d00810f50121092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410f6011a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410f6011a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410f6011a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081016000b41a80841081016000b41d80841081016000b410121020c000b0b20004100360210200441800c6a24000bae0c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b412010f701220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b201510f701220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a2900003700002003201837030041202120200041206a212120014103490d02410221224101212341052124417f212541a80821264178212741702128416821294160212a4106212b41e802212c4130212d4150212e4102212f410221050c080b202f20236a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b202010f701220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352022746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b202010f701220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2022746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000203121212030212f20302001490d020b202120032903003700002021201a6a201b2903003700002021201c6a201d2903003700002021201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f5011a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b200610142011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b200310142011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f5011a200241c0016a24000b13002000411136020420004180f1c1003602000b13002000410b360204200041e0fac1003602000b130020004107360204200041d1ccc0003602000b1300200041173602042000418c81c2003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a2002101c200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241003600000f0b410441011016000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242003700000f0b410841011016000b7001017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a101c2002200241086a36022c2002412c6a200241206a1079200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011016000b3401017f0240410410122202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011016000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241043600000f0b410441011016000b13002000410f360204200041e095c2003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410122203450d0020024284808080c000370204200220033602002003410036000020034104410810132203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610132203450d020c050b200421060c050b2006101222030d030b200641011016000b410441011016000b410841011016000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410132203450d020c030b200621040c030b2004101222030d010b200441011016000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710132203450d010c020b2007101222030d010b200741011016000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002104a02400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410132206450d020c040b200341086a2105200228020021060c040b2004101222060d020b200441011016000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410122203450d0020024284808080c000370244200220033602402003410036000020034104412410132203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010132203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a101c2002410036024c200241cc006a200241c0006a101c2002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710132203450d020c060b200521070c060b2007101222030d040b200741011016000b410441011016000b412441011016000b41c80041011016000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410132203450d020c040b200641286a21060c040b2004101222030d020b200441011016000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a104a200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410122202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011016000b3401017f0240410410122202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011016000b3301017f0240410410122202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011016000bf50103027f017e017f230041206b22022400200241106a41086a220342003703002002420037031041b291c0004115200241106a1000200241086a20032903003703002002200229031037030002400240024002400240200241104184a1c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d0220022903102204500d0341082105410810122203450d010c040b42052104410821054108101222030d030b200541011016000b41b185c00041331015000b4194a1c2001018000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010122202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011016000b3901017f0240411010122202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011016000b3a01017f0240411010122202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011016000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011016000b130020004109360204200041c2e8c0003602000b130020004103360204200041c4a1c2003602000bcb0e04027f047e017f037e230041e0006b22022400200241306a41086a220342003703002002420037033041d3ffc0004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240024002400240024002400240024002400240024002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d022003410f4d0d02200241d8006a2903002104200229035021050c010b42002105420021040b200241106a200442002001ad2206420010f901200241206a200542002006420010f9012002420042002005420010f901418180c100210102402002290318200229030884420052200241206a41086a2903002205200229031020022903007c7c2206200554720d002002290320210742002104200241306a41086a220342003703002002420037033041eaffc0004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d052003410f4d0d05200241d8006a2903002105200229035021040c010b420021050b200420077c22072004542203200520067c2003ad7c220420055420042005511b4101460d0002400240024041a282c00041104184a1c100410041001001417f460d002002410036025041a282c0004110200241d0006a41044100100141016a41044d0d0520022802502103411a10122201450d08200141186a41002f00effb403b0000200141106a41002900e7fb40370000200141086a41002900dffb40370000200141002900d7fb403700002001411a413410132201450d092001200336001a42002106200241306a41086a22084200370300200242003703302001411e200241306a1000200241c0006a41086a200829030037030020022002290330370340200241c0006a41104184a1c100410041001001417f460d012002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d072008410f4d0d07200241d8006a2903002105200229035021060c020b200241e0006a2400419380c1000f0b420021050b2001101441ab80c1002101200620077c22092006542208200520047c2008ad7c220620055420062005511b0d002000106422010d00411410122201450d08200141106a41002800ba9b40360000200141086a41002900b29b40370000200141002900aa9b4037000020014114413410132201450d09200120002900003700142001412c6a200041186a290000370000200141246a200041106a2900003700002001411c6a200041086a2900003700004200210a200241306a41086a220842003703002002420037033020014134200241306a1000200241c0006a41086a20082903003703002002200229033037034002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d092008410f4d0d09200241d8006a29030021052002290350210a0c010b420021050b2001101441fb9ac0002101200a2007542208200520045420052004511b0d002000200a20077d200520047d2008ad7d106942002105200241306a41086a220142003703002002420037033041949bc0004116200241306a1000200241c0006a41086a20012903003703002002200229033037034002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012201417f460d0c2001410f4d0d0c200241d8006a290300210a200229035021050c010b4200210a0b0240200520077d220b200556200a20047d2005200754ad7d2205200a562005200a511b0d002002200b37035020022005370358200241306a41086a220142003703002002420037033041949bc0004116200241306a1000200241c0006a41086a200129030037030020022002290330370340200241c0006a4110200241d0006a411010020b411a10122200450d0b41002101200041186a41002f00effb403b0000200041106a41002900e7fb40370000200041086a41002900dffb40370000200041002900d7fb403700002000411a413410132200450d0c2000200336001a2002200637035820022009370350200241306a41086a22034200370300200242003703302000411e200241306a1000200241c0006a41086a200329030037030020022002290330370340200241c0006a4110200241d0006a41101002200010140b200241e0006a240020010f0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411a41011016000b413441011016000b41b185c00041331015000b411441011016000b413441011016000b41b185c00041331015000b411a41011016000b413441011016000b9e0d03017f017e077f230041306b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002402001ad2203421b88a70d002003420586a72204417f4c0d00024002402004450d002004101222050d01200441011016000b410121050b200520002001410574220610f50121042002200136021820022001360214200220043602102002411236020c200241c5fbc000360208200241106a200241086a1073024002402001450d002004101420064100480d05200610122207450d03200641606a4105762108410021040340200720046a2205200020046a2209290000370000200541186a200941186a290000370000200541106a200941106a290000370000200541086a200941086a2900003700002006200441206a2204470d000b200841016a210041062105410610122204450d010c040b4100210041012107410621054106101222040d030b200541011016000b100f000b200641011016000b200441046a41002f00b689403b0000200441002800b2894036000020042005410c10132204450d01200441086a41002d00ba89403a0000200441002f00b889403b000602400240200441094184a1c100410041001001417f460d00200241003602104101210820044109200241106a41044100100141016a41044d0d012002280210210920041014200945210a02402009450d002009ad4205862203422088a70d032003a722044100480d03200410122208450d0541002105200821040340200241106a2005102e200441186a200241106a41186a290000370000200441106a200241106a41106a290000370000200441086a200241106a41086a29000037000020042002290010370000200441206a21042009200541016a2205470d000b0b20092000470d060c050b200410144101210a410021094101210841002000460d040c050b41b185c00041331015000b1010000b410c41011016000b200441011016000b024020082007460d002000450d00410021062008210420072105034020042005412010f7010d02200441206a2104200541206a2105200641016a22062000490d000b0b200a0d012008101420010d020c030b200241106a41086a20093602002002200936021420022008360210200241106a102f0240024002400240024002402000450d002000410574210041002106200721050340410610122204450d03200441046a41002f00b689403b0000200441002800b2894036000020044106410c10132209450d0420092006360006412010122204450d0520042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a2900003700002009410a2004412010022004101420091014200641016a2106200541206a2105200041606a22000d000b41062105410610122204450d010c050b41002106410621054106101222040d040b200541011016000b410641011016000b410c41011016000b412041011016000b200441046a41002f00b689403b0000200441002800b2894036000020042005410c10132204450d09200441086a41002d00ba89403a0000200441002f00b889403b000602400240200441094184a1c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d082002280210210a20041014200a20064d0d01200621050340410610122204450d07200441046a41002f00b6894022093b0000200441002800b28940220036000020044106410c10132204450d08200441086a41002d00ba89403a0000200441002f00b889403b00060240200441094184a1c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d0720022802102108200410140240200820054d0d00410610122204450d0c200441046a20093b00002004200036000020044106410c10132204450d0d200420053600062004410a1003200410140b200a200541016a2205470d010c030b20041014200a200541016a2205470d000c020b0b200410140b410610122204450d0a200441046a41002f00b689403b0000200441002800b2894036000020044106410c10132204450d0b200441086a41002d00ba89403a0000200441002f00b889403b00062002200636021020044109200241106a41041002200410140b2001450d010b200710140b200241306a24000f0b41b185c00041331015000b410641011016000b410c41011016000b41b185c00041331015000b410641011016000b410c41011016000b410c41011016000b410641011016000b410c41011016000b130020004104360204200041a882c1003602000b130020004103360204200041f8a6c2003602000b3901017f0240411010122202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011016000b1300200041023602042000419ca9c2003602000b130020004104360204200041dd85c1003602000b130020004101360204200041a4aac2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010122206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011016000b13002000410336020420004180abc2003602000b1300200041073602042000418588c1003602000b130020004108360204200041ecacc2003602000bc10201037f23004180016b22022400200028020021000240024002400240200128020022034110710d0020034120710d012000200110c001210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441d7006a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441376a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b2003418001103a000b2003418001103a000be00201067f230041306b2202240041272103024002400240024002400240200028020022004190ce00490d00412721030340200241096a20036a2204417c6a200020004190ce006e220541f0b17f6c6a220641e4006e220741017441b6a1c1006a2f00003b00002004417e6a20062007419c7f6c6a41017441b6a1c1006a2f00003b00002003417c6a2103200041ffc1d72f4b21042005210020040d000b41e4002104200541e400480d010c020b41e40021042000220541e4004e0d010b2005220441094a0d010c020b200241096a2003417e6a22036a200541ffff037120046e2204419c7f6c20056a41ffff037141017441b6a1c1006a2f00003b0000200441094c0d010b200241096a2003417e6a22006a200441017441b6a1c1006a2f00003b00000c010b200241096a2003417f6a22006a200441306a3a00000b20014184a1c1004100200241096a20006a412720006b10c1012100200241306a240020000bab0b01097f230041106b2205240020002802002206410171220720046a2108024020064104712209450d004100210a02402002450d002002210b2001210c0340200a200c2d000041c00171418001466a210a200c41016a210c200b417f6a220b0d000b0b200820026a200a6b21080b412b418080c40020071b210d2009410276210902400240024002400240024002400240024002400240024002400240024002400240024020002802084101470d002000410c6a280200220a20084d0d0120064108710d02200a20086b210b410120002d0030220c200c4103461b410371220c450d03200c4102460d04410021080c050b02402007450d004101210c2000280218200d2000411c6a2802002802101100000d100b02402009450d004101210c2000280218200120022000411c6a28020028020c1101000d100b2000280218200320042000411c6a28020028020c110100210c200541106a2400200c0f0b02402007450d004101210c2000280218200d2000411c6a2802002802101100000d0f0b02402009450d004101210c2000280218200120022000411c6a28020028020c1101000d0f0b2000280218200320042000411c6a28020028020c110100210c200541106a2400200c0f0b4101210c200041013a00302000413036020402402007450d002000280218200d2000411c6a2802002802101100000d0e0b02402009450d002000280218200120022000411c6a28020028020c1101000d0e0b200a20086b210b4101200041306a2d0000220c200c4103461b410371220c450d04200c4102460d03410021070c050b200b21084100210b0c010b200b41016a4101762108200b410176210b0b2005410036020c02402000280204220c41ff004b0d002005200c3a000c4101210a0c050b0240200c41ff0f4b0d002005200c413f71418001723a000d2005200c410676411f7141c001723a000c4102210a0c050b200c41ffff034b0d032005200c413f71418001723a000e2005200c410676413f71418001723a000d2005200c410c76410f7141e001723a000c4103210a0c040b200b41016a4101762107200b410176210b0c010b200b21074100210b0b200541003602080240200041046a280200220c41ff004b0d002005200c3a00084101210a0c060b200c41ff0f4b0d022005200c413f71418001723a00092005200c410676411f7141c001723a00084102210a0c050b2005200c413f71418001723a000f2005200c41127641f001723a000c2005200c410676413f71418001723a000e2005200c410c76413f71418001723a000d4104210a0b417f210c02400340200c41016a220c200b4f0d01200041186a2802002005410c6a200a2000411c6a28020028020c110100450d000c060b0b02402007450d00200041186a280200200d2000411c6a2802002802101100000d050b02402009450d00200041186a280200200120022000411c6a28020028020c1101000d050b200041186a220b280200200320042000411c6a220028020028020c1101000d04417f210c0340200c41016a220c20084f0d02200b2802002005410c6a200a200028020028020c110100450d000c050b0b200c41ffff034b0d012005200c413f71418001723a000a2005200c410676413f71418001723a00092005200c410c76410f7141e001723a00084103210a0c020b200541106a240041000f0b2005200c413f71418001723a000b2005200c41127641f001723a00082005200c410676413f71418001723a000a2005200c410c76413f71418001723a00094104210a0b417f210c02400340200c41016a220c200b4f0d01200041186a280200200541086a200a2000411c6a28020028020c110100450d000c020b0b200041186a220b280200200320042000411c6a220028020028020c1101000d00417f210c0340200c41016a220c20074f0d03200b280200200541086a200a200028020028020c110100450d000b0b4101210c0b200541106a2400200c0f0b200541106a240041000b8f0605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce00420010f8012002200229031022072006290300220842f0b17f427f10f901200241206a20006a2203417c6a200520022903007ca7220941e4006e220a41017441b6a1c1006a2f00003b00002003417e6a200a419c7f6c20096a41017441b6a1c1006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b41e40021092007a7220341e4004e0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d03200141e2a3c1004102200241206a20006a41800120006b10c1012100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d03200141e2a3c1004102200241206a20006a41800120006b10c1012100200241a0016a240020000f0b4127210041e40021092005a7220341e400480d030b200241206a2000417e6a22006a2003200341ffff037120096e2209419c7f6c6a41ffff037141017441b6a1c1006a2f00003b0000200941094a0d030c040b2000418001103a000b2000418001103a000b2003220941094c0d010b200241206a2000417e6a22006a200941017441b6a1c1006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b20014184a1c1004100200241206a20006a412720006b10c1012100200241a0016a240020000b960201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141e0bec2006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141f8c0c2006a2d0000220141c9004b0d0320014103744190afc1006a21010c010b2000410c7641706a22014180024f0d03200141d8c8c2006a2d00004106742000410676413f7172220141ff034b0d04200141e0b3c1006a2d0000220141364b0d05200141037441e0b7c1006a21010b200129030042012000413f71ad86834200520f0b41d8cac200200141e0071038000b41e8cac200200141ca001038000b41f8cac20020014180021038000b4188cbc20020014180041038000b4198cbc200200141371038000b2701017f2000280200220128020020012802042000280204280200200028020828020010c501000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c20044184a1c10041e4a3c10020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4101360200200441e4006a4101360200200441c8006a41146a4107360200200441d4006a4108360200200441306a41146a4105360200200420023602582004410336024c20044205370234200441f8bdc2003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a41a0bec200102c000b20042002200320081b360228200441c8006a41146a4101360200200441d4006a4101360200200441306a41146a41033602002004410336024c2004420337023420044188bdc2003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a41a0bdc200102c000b200441e4006a4101360200200441c8006a41146a4101360200200441d4006a4103360200200441306a41146a41043602002004410336024c20044204370234200441b0bdc2003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41d0bdc200102c000b41e0bdc2001018000bf50403027f027e027f23004180016b22022400200028020021000240024002400240024002400240200128020022034110710d002000290300210420034120710d014127210020044290ce00540d02412721000340200220006a2203417c6a200420044290ce0080220542f0b17f7e7ca7220641e4006e220741017441b6a1c1006a2f00003b00002003417e6a2007419c7f6c20066a41017441b6a1c1006a2f00003b00002000417c6a2100200442ffc1d72f5621032005210420030d000b41e40021062005a7220341e400480d060c050b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d02200141e2a3c1004102200220006a41800120006b10c101210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d02200141e2a3c1004102200220006a41800120006b10c101210020024180016a240020000f0b41e400210620042205a7220341e4004e0d020c030b2000418001103a000b2000418001103a000b20022000417e6a22006a2005a7220741ffff037120066e2203419c7f6c20076a41ffff037141017441b6a1c1006a2f00003b00000b02400240200341094a0d0020022000417f6a22006a200341306a3a00000c010b20022000417e6a22006a200341017441b6a1c1006a2f00003b00000b20014184a1c1004100200220006a412720006b10c101210020024180016a240020000bfb09010c7f230041106b2203240020002802102104024002400240024002400240024002400240200028020822054101470d0020040d010c020b2004450d070b02402002450d00200120026a2106200041146a280200417f732107410021082001210420012109024002400340200441016a210a0240024020042c0000220b4100480d00200b41ff0171210b200a2104200741016a22070d010c030b024002400240200a2006460d00200a2d0000413f71210c200441026a2204210a200b411f71210d200b41ff0171220b41e001490d010c020b4100210c20062104200b411f71210d200b41ff0171220b41e0014f0d010b200c200d41067472210b200a2104200741016a22070d010c030b02400240024020042006460d00200441016a220a210e20042d0000413f71200c41067472210c200b41f001490d010c020b2006210e4100200c41067472210c200b41f0014f0d010b200c200d410c7472210b200a2104200741016a22070d010c030b02400240200e2006460d00200e41016a2104200e2d0000413f71210b0c010b4100210b200a21040b200c410674200d411274418080f0007172200b72220b418080c400460d03200741016a2207450d020b200820096b20046a21082004210920062004470d000c020b0b200b418080c400460d00024002402008450d0020082002460d0041002104200820024f0d01200120086a2c00004140480d010b200121040b2008200220041b21022004200120041b21010b2005450d020c010b410021022005450d010b4100210a02402002450d002002210b200121040340200a20042d000041c00171418001466a210a200441016a2104200b417f6a220b0d000b0b2002200a6b2000410c6a28020022074f0d014100210a02402002450d004100210a2002210b200121040340200a20042d000041c00171418001466a210a200441016a2104200b417f6a220b0d000b0b200a20026b20076a210b410020002d0030220420044103461b4103712204450d0220044102460d03410021070c040b2000280218200120022000411c6a28020028020c1101002104200341106a240020040f0b2000280218200120022000411c6a28020028020c1101002104200341106a240020040f0b200b21074100210b0c010b200b41016a4101762107200b410176210b0b2003410036020c024002402000280204220441ff004b0d00200320043a000c4101210a0c010b0240200441ff0f4b0d0020032004413f71418001723a000d20032004410676411f7141c001723a000c4102210a0c010b0240200441ffff034b0d0020032004413f71418001723a000e20032004410676413f71418001723a000d20032004410c76410f7141e001723a000c4103210a0c010b20032004413f71418001723a000f2003200441127641f001723a000c20032004410676413f71418001723a000e20032004410c76413f71418001723a000d4104210a0b417f21040240024002400340200441016a2204200b4f0d01200041186a2802002003410c6a200a2000411c6a28020028020c110100450d000c020b0b200041186a220b280200200120022000411c6a220028020028020c110100450d010b200341106a240041010f0b417f210402400340200441016a220420074f0d01200b2802002003410c6a200a200028020028020c110100450d000b200341106a240041010f0b200341106a240041000f0b2000280218200120022000411c6a28020028020c1101002104200341106a240020040bcc0403037f017e047f23004180026b220424000240024020012d000d450d0041b78dc1002102413121050c010b2001280200200141046a2205280200200141086a220628020010c90120054200370200200141a090c100360200200420022900002207370310024002400240024041e40110122208450d00200841003b010620084100360200200841086a200441206a41dc0110f5011a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a410810f701220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101c02402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1013220b450d030c060b2004280210210b0c060b418a8dc1002102412d21050c060b200a1012220b0d030b200a41011016000b41e40141041016000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210f5011a200441086a200a28020036020020042004290310370300200441206a200410ca0120014180023b010c410021020b200020053602042000200236020020044180026a24000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b200010142005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b200110142005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d00200410140b20020d000b0b0240200041a090c100460d0020002802002101200010142001450d0020012802002104200110142004450d00024020042802002201450d000340200410142001210420012802002200210120000d000b0b200410140b0bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410f6011a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10f6011a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011012220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110f5012107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410f5012107200a41e0006a200041b4016a2001410c6c10f501210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410f6011a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10f6011a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410f6011a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10f6011a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210122207450d03200741003b010620074100360200200741086a200241d0006a418c0210f5012103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410f5012116200741e0006a200941b4016a2000410c6c10f5012117200741e4016a20094180026a2001417a6a220e41027410f5012118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410f6011a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10f6011a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410f6011a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410f6011a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10f6011a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410f6011a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210122200450d03200041003b010620004100360200200041086a200241d0006a418c0210f50121012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410f6011a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10f6011a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410f6011a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041016000b41e40141041016000b41940241041016000b200241e0026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a2002101c0240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610132203450d020c030b2004410e6a2105200228020021030c030b2006101222030d010b200641011016000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a41002900a5ab403700002004410029009fab403700002002410e36020c2002410c6a2002101c0240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610132204450d020c030b200228020021040c030b2006101222040d010b200641011016000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a41002900a5ab403700002007410029009fab4037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710132204450d020c030b200341126a21030c030b2007101222040d010b200741011016000b20022007360204200220043602000b200241086a22052003360200200420066a4103360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710132204450d010c020b2007101222040d010b200741011016000b20022007360204200220043602000b2005200341046a360200200420036a41033600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610132205450d020c030b200228020021050c030b2006101222050d010b200641011016000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410536020c2002410c6a2002101c2008280200210641b0abc00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101322030d020c060b200641086a2104200228020021030c020b200910122203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101322030d010c060b200610122203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a220741ecabc000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011016000b200641011016000bde0503057f017e067f230041306b22022400024002400240410610122203450d00200341046a41002f00b689403b0000200341002800b2894036000020034106410c10132203450d01200341086a41002d00ba89403a0000200341002f00b889403b000602400240024002400240200341094184a1c100410041001001417f460d00200241003602104101210420034109200241106a41044100100141016a41044d0d04200228021021052003101420054521062005450d012005ad4205862207422088a70d022007a722034100480d02200310122204450d0741002108200421030340200241106a2008102e200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a29000037000020032002290010370000200341206a21032005200841016a2208470d000c020b0b200310144101210641002105410121040b20024100360218200242013703102002200536020c2002410c6a200241106a101c024002402006450d00200241186a2802002103200228021021090c010b2005410574210a4100200241106a41086a280200220b6b210c200228021021092002280214210d4100210303400240200d200c6a411f4b0d00200b20036a220541206a22082005490d03200d4101742205200820082005491b22084100480d0302400240200d450d002009200d2008101322090d010c060b200810122209450d050b2008210d0b2009200b6a20036a2208200420036a2205290000370000200841186a200541186a290000370000200841106a200541106a290000370000200841086a200541086a290000370000200c41606a210c200a200341206a2203470d000b200241186a200b20036a22033602002002200d3602142002200936021020060d00200410140b200241306a24002003ad4220862009ad840f0b1010000b200841011016000b41b185c00041331015000b410641011016000b410c41011016000b200341011016000bd31203027f017e087f230041d0086b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b20022001360204200241f0066a2002103e024002400240024002400240024020022802f806450d00200241086a200241f0066a41880110f5011a20024190016a200241086a41880110f5011a200229039001200241a4016a2201200241e4016a2203101702400240024002402002290390012204500d00200241f0066a2004427f7c1011200241f0066a2001412010f7010d0041002105200228028802210002400240024020024190026a280200220141e0016c41e001490d002001410c6c220610122207450d0b2001210820010d010c020b41042107410021082001450d010b200141e0016c2106200141057441606a21092007210103402002200036028004200241f0066a20024180046a10ce01200141086a200241f0066a41086a280200360200200120022903f0063702002001410c6a2101200041e0016a2100200641a07e6a22060d000b200941057641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001012220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241f0066a200a200610cf010240200b450d00200a10140b02402005450d002005410c6c21002007210103400240200141046a280200450d00200128020010140b2001410c6a2101200041746a22000d000b0b02402008450d00200710140b02402003200241f0066a412010f701450d0041d99ec100410e1006200341201007200241f0066a412010070b2003200241f0066a412010f7010d052002418c026a280200210520024190016a41f8006a280200210720024190026a280200210620024198026a20024190016a41f80010f5011a2007200641e0016c6a210020072101024002400240024002402006450d0020024180046a41f8006a2109200241f0066a41086a210c20072101034020024190036a200141f00010f5011a200141f0006a290300210420024188066a200141f8006a41e80010f5011a20044203510d0220024180046a20024190036a41f00010f5011a20024180046a41f0006a2004370300200920024188066a41e80010f5011a200220024180046a3602e005200241f0066a200241e0056a10ce01200c2802002106024020022802f406450d0020022802f00610140b200241f0066a20024180046a41e00110f5011a200241003602f005200241e0056a200241f0066a2006200241f0056a10d00120022802e0054101460d05024020022802e4052206450d002006200241e0056a41086a28020010060b200141e0016a22012000470d000b200021010b20012000470d010c020b200141e0016a22012000460d010b200241f8076a2106200241f0066a41f8006a21090340200241f0066a200141f00010f5011a200141f0006a290300210420024190036a200141f8006a41e80010f5011a20044203510d0120024180046a200241f0066a41f00010f5011a20024188066a20024190036a41e80010f5011a200241f0066a20024180046a41f00010f5011a200241f0066a41f0006a2004370300200920024188066a41e80010f5011a20061042200141e0016a22012000470d000b0b02402005450d00200710140b101f2002290398021043200241f0066a1023200220024198026a41106a28020022053602800620022802a002210c2002200241f0066a41106a28020022013602840620052001470d0720022802f806210a024002402005450d000240200c200a460d00410021070340200c200741246c22006a2201200a20006a2200106d20012d0000220620002d0000470d030240024020064101470d002001410c6a28020022092000410c6a280200470d052009450d01200141046a2802002201200041046a2802002200460d0141002106034020012000412010f7010d06200141206a2101200041206a2100200641016a22062009490d000c020b0b200141016a200041016a412010f7010d040b200741016a22072005490d000c020b0b200521010340200c200c106d200c41246a210c2001417f6a22010d000b0b20024180046a41186a2201420037030020024180046a41106a2200420037030020024180046a41086a22064200370300200242003703800420024180046a100420024190036a41186a200129030037030020024190036a41106a200029030037030020024190036a41086a20062903003703002002200229038004370390030240200241cc026a220120024190036a412010f701450d0041d99ec100410e100620014120100720024190036a412010070b200120024190036a412010f7010d0902402005450d00200541246c2100200a21010340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012000415c6a22000d000b0b0240200241fc066a280200450d00200a10140b0240200241a8026a2802002200450d0020024198026a41086a2802002101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012000415c6a22000d000b0b0240200241a4026a280200450d00200241a0026a28020010140b200241d0086a240042010f0b41ccb5c2001018000b20022802e4052202450d0120024103460d0220024104460d0341d4b4c2001018000b41a4b4c2001018000b4184b5c2001018000b41ecb4c2001018000b419cb5c2001018000b20024194046a4101360200200241013602940120024184b3c2003602900120024201370284042002418cb3c20036028004200220024190016a3602900420024180046a4194b3c200102c000b41bcb4c2001018000b200220024180066a3602f005200220024184066a3602e00520024180046a41146a410036020020024190036a41146a41043602002002419c036a410936020020024188066a41146a410336020020024184a1c100360290042002420137028404200241b4b5c2003602800420024109360294032002420337028c06200241f8bbc20036028806200220024180046a3602a0032002200241e0056a360298032002200241f0056a36029003200220024190036a3602980620024188066a41bcb5c200102c000b41e4b5c2001018000b200641041016000b1010000b200041041016000b8a1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041e20110122203450d00200242e20137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410132201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410132201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a200210850102400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110132204450d020c060b200228020021040c060b2001101222040d040b200141011016000b41e20141011016000b410441011016000b410441011016000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c3700002003200210830102400240024002400240024002400240024002400240200341f0006a2903004201520d0020032903782206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110132204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510132204450d030c070b200228020021040c070b200228020021040c080b2005101222040d040b200541011016000b2001101222040d040b200141011016000b4184c4c1001018000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a2002108201200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a101c024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101322010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410132203450d020c110b4100210b2005450d120c110b2004101222030d0f0b200441011016000b200228020021010c020b200c10122201450d070b2002200c360204200220013602000b200120056a200141026a200a10f6011a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031012220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b418cf9c1001018000b200341011016000b200c41011016000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101322030d020c060b200228020021030c020b200110122203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10f6011a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c10140b200a450d060c050b1010000b200141011016000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10f6011a0b20012003200a6a3602000b02402009450d00200810140b20002002290300370200200041086a200241086a280200360200200241206a24000bcb03010b7f230041206b22032400024002402002450d0020024102742204101222050d01200441041016000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1013220a0d020c080b200820046a21070c020b200d1012220a450d060b200d210b0b200a20046a200c200810f5011a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a10140b02402002450d00200510140b200341206a24000f0b1010000b200d41011016000bca1305017f017e037f017e067f230041e0056b22042400200441a0036a200141e00110f5011a20044190026a200441a0036a10e1010240024002402004280290024101470d00200041086a2004290294023702002000420137020020032802002200450d020c010b20044190026a41086a290300210520044190016a20044190026a41106a41800110f5011a20042005370308200441086a41086a20044190016a41800110f501210620044190016a41086a220142003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200129030037030020042004290390013703a00341002101024002400240024002400240024002400240024002400240200441a0036a41104184a1c100410041001001417f460d002004410036029002200441a0036a411020044190026a41044100100141016a41044d0d0120042802900221010b41042107200120026a41808080024b0d0a410021080240024002400240024002400240200441106a410020042903084201511b2201450d002001450d0020011019220520012903202209520d01410321072001200210b3010d11200110192105411310122207450d0f2007410f6a410028009e8240360000200741086a410029009782403700002007410029008f824037000020074113413310132207450d10200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a2900003700002004200542017c3703900220044190016a41086a2201420037030020044200370390012007413320044190016a1000200441a0036a41086a200129030037030020042004290390013703a003200441a0036a411020044190026a41081002200710140b20032802002207450d05200341086a28020021012003280204210a4100210b024041a282c00041104184a1c100410041001001417f460d00200441003602a00341a282c0004110200441a0036a41044100100141016a41044d0d0a20042802a003210b0b411410122208450d0a200841106a41002800bb8140360000200841086a41002900b38140370000200841002900ab81403700002008411441281013220c450d0b200c200b360014200441003602a803200442013703a003200420013602900220044190026a200441a0036a101c20042802a403220d20042802a803220b6b20014f0d01200b20016a2208200b490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0220042802a003200d200e101322080d030c0d0b4101410220092005541b21070c0f0b20042802a00321080c020b200e10122208450d0a0b2004200e3602a403200420083602a003200e210d0b2008200b6a2007200110f5011a20044190016a41086a220e42003703002004420037039001200c411820044190016a1000200441a0036a41086a200e29030037030020042004290390013703a003200441a0036a41102008200b20016a10020240200d450d00200810140b200c101441012108200a450d00200710140b20042903082105200441a0036a200441306a41e00010f5011a20044190026a200441a0036a41086a41d80010f5011a20044190016a41186a220c200641186a29030037030020044190016a41106a220b200641106a29030037030020044190016a41086a220d200641086a290300370300200420062903003703900141002101024020054201520d00200441a0056a41186a200c290300370300200441a0056a41106a200b290300370300200441a0056a41086a200d29030037030020042004290390013703a005410121010b20044190016a20044190026a41d80010f5011a200441c0056a41186a2206200441a0056a41186a220c290300370300200441c0056a41106a220b200441a0056a41106a220d290300370300200441c0056a41086a220a200441a0056a41086a220e290300370300200420042903a0053703c00520044190026a20044190016a41d80010f5011a20044180056a41186a220f200629030037030020044180056a41106a2206200b29030037030020044180056a41086a220b200a290300370300200420042903c00537038005200441a0036a20044190026a41d80010f5011a200c200f290300370300200d2006290300370300200e200b29030037030020042004290380053703a0054102210602402001450d00200441c0056a41186a200441a0056a41186a290300370300200441c0056a41106a200441a0056a41106a290300370300200441c0056a41086a200441a0056a41086a290300370300200420042903a0053703c005410121060b20044199016a200441c0056a41086a290300370000200441a1016a200441c0056a41106a290300370000200441a9016a200441d8056a290300370000200420063a009001200420042903c005370091012004200441a0036a20044190016a106e2004280204210620042802002101200441003a00a003200420014100473a00a103200441a0036a101a0240024041a282c00041104184a1c100410041001001417f460d00200441003602a00341a282c0004110200441a0036a41044100100141016a41044d0d0320042802a00341016a210c0c010b4101210c0b20044190016a41086a220b42003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200b29030037030020042004290390013703a00302400240200441a0036a41104184a1c100410041001001417f460d002004410036029001200441a0036a411020044190016a41044100100141016a41044d0d04200428029001210b0c010b4100210b0b2004200c3602a00341a282c0004110200441a0036a410410022004417f2002200b6a220c200c2002491b3602c00520044190016a41086a220242003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200229030037030020042004290390013703a003200441a0036a4110200441c0056a410410020240024002402001450d0002402006411b470d00200141c494c100460d02200141c494c100411b10f701450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c0f0b20004100360204200041086a200636020020004100360200200745200872450d010c0e0b200041046a4104360200200041013602002007452008720d0d0b200341046a280200450d0c200710140c0c0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411441011016000b412841011016000b1010000b200e41011016000b411341011016000b413341011016000b2000410136020020002007360204200441386a104220032802002200450d010b200341046a280200450d0020001014200441e0056a24000f0b200441e0056a24000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10f2012100200241206a240020000ba70201017f23004180026b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b2002200136020420024180016a2002103f0240200228028801450d00200241086a20024180016a41f80010f5011a20022903082002411c6a200241dc006a10170240200241186a2802002200450d0020022802102101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012000415c6a22000d000b0b0240200241146a280200450d00200241106a28020010140b20024180026a240042010f0b2002411c6a4101360200200241013602fc01200241a4b3c2003602f8012002420137020c2002418cb3c2003602082002200241f8016a360218200241086a4194b3c200102c000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410122203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410132205450d020c040b200228021021050c040b2004101222050d020b200441011016000b410441011016000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41013a0000410d200241106a10d401410021030240034020034190d1c1006a28020020034194d1c1006a280200200241106a10d5010240024002400240024002400240024002400240024002400240024002400240024020034198d1c1006a2802004101470d002003419cd1c1006a280200200341a0d1c1006a280200200241106a10d501200341a4d1c1006a22062802004102460d010c020b20022003419cd1c1006a28020011020020022802002002280204200241106a10d501200341a4d1c1006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101322060d020c040b200228021021060c020b200710122206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341b4d1c1006a22062802004102470d020c030b200741011016000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101322070d020c0d0b200228021021070c020b200810122207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d601200341b4d1c1006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101322070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101322060d050c0a0b200228021021060c050b200810122207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d701200341c4d1c1006a22062802004102460d030c080b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c4d1c1006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101322060d020c070b200228021021060c020b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341a807470d050c060b200841011016000b200841011016000b200741011016000b200741011016000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101322070d020c070b200228021021070c020b200810122207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d801200341c8006a220341a807470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101c02400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810132205450d020c050b2002280210220520046a2006200310f5011a200420036a21032007450d060c050b2008101222050d030b200841011016000b1010000b200841011016000b2002200836021420022005360210200520046a2006200310f5011a200420036a21032007450d010b200610140b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410132203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210132203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101322030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101322030d0a0c0e0b2004101222030d110b200441011016000b200128020021030c050b200128020021030c070b2002101222030d0b0b200241011016000b200210122203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101322030d020c070b200128020021030c020b200210122203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011016000b200441011016000b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510132204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310132204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101322040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101322040d0a0c0d0b2005101222040d100b200541011016000b200228020021040c050b200228020021040c070b2003101222040d0a0b200341011016000b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510122204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101322040d020c060b200228020021040c020b200310122204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011016000b200541011016000b200341011016000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310132204450d020c040b200228020021040c040b2003101222040d020b200341011016000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110f5011a0bfb0f01097f230041206b2202240002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d01200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101322070d040c0a0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101322070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101322070d040c0c0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101322070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011016000b200a41011016000b200a41011016000b200a41011016000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d00200910140b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110e8012004200541cc006a2205470d010c030b2009200041c0006a280200200110e8012004200541cc006a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d00200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101322070d040c0a0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101322070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101322070d040c0c0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101322070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011016000b200a41011016000b200a41011016000b200a41011016000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d00200910140b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110e8012004200541cc006a2205470d010c020b2009200041c0006a280200200110e8012004200541cc006a2205470d000b0b200241206a24000f0b1010000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110e701200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c030b2006200041246a280200200110e80120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110e701200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c020b2006200041246a280200200110e80120042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e8010c010b2006200041146a280200200110e8010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c030b2006200041246a280200200110e80120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e8010c010b2006200041146a280200200110e8010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c020b2006200041246a280200200110e80120042005412c6a2205470d000b0b200241106a24000be20301017f230041e0056b22022400024002402001450d00200220003602080c010b20024184a1c1003602080b2002200136020c200241f0036a200241086a104102400240024002400240024020022903e0044203510d00200241106a200241f0036a41e00110f5011a200241f0016a200241106a41e00110f5011a2002200241f0016a3602f003200241d0036a200241f0036a10ce0120022802d8032101200241f0036a200241f0016a41e00110f5011a200241d8056a20022802d803360200200220022903d0033703d005200241e0036a200241f0036a2001200241d0056a10d0010240024020022802e0034101470d004280828898f01f20022802e403410374ad88a7210041011012210141010d010c050b20022802e40341004721004101101221014100450d040b2001450d01200141013a000020014101410210132201450d020c040b20024184026a410136020020024101360214200241acb3c200360210200242013702f4012002418cb3c2003602f0012002200241106a36028002200241f0016a4194b3c200102c000b410141011016000b410241011016000b2001450d01200141003a0000200141014102101322010d00410241011016000b200120003a0001200241e0056a24002001ad428080808020840f0b410141011016000bf51203037f017e097f230041c0016b22022400101f20024180016a41086a22034200370300200242003703800141dd81c000410d20024180016a1000200241086a41086a220420032903003703002002200229038001370308420021050240024002400240024002400240024002400240024002400240200241086a41104184a1c100410041001001417f460d002002420037038001200241086a411020024180016a41084100100141016a41084d0d0120022903800121050b20051043200241b0016a41086a22034200370300200242003703b001418080c0004115200241b0016a100020042003290300370300200220022903b0013703080240024002400240024002400240200241086a41104184a1c100410041001001417f460d004100210620024100360280014104210741012108200241086a411020024180016a41044100100141016a41044d0d092002280280012209450d012009ad420c7e2205422088a70d0f2005a722034100480d0f200310122207450d0c2007210a4100210b0340411410122203450d03200341106a41002800bb8140360000200341086a41002900b38140370000200341002900ab814037000020034114412810132203450d042003200b36001420024180016a41086a2204420037030020024200370380012003411820024180016a1000200241086a41086a200429030037030020022002290380013703080240024002400240200241086a41104184a1c100410041001001417f460d0020024210370284012002200241086a36028001200220024180016a101b2002280200450d0b2002280204220c417f4c0d09200c450d01200c1080012206450d0d20042004280200220d200c41002002280280012002280284012006200c200d1001220d200d417f461b220d200d200c4b1b220d6a360200200d200c460d020c0a0b42002105410121060c020b4101210620022802800120022802840141014100200428020010011a4100200c470d080b2004420037030020024200370380012003411820024180016a1000200241b0016a41086a200429030037030020022002290380013703b001200241b0016a41101003200cad220542208620058421050b20031014200a41046a2005370200200a2006360200200a410c6a210a2009200b41016a220b470d000b41002108200921060c010b4100210641012108410421070b410421094100210c4100210d02402006410c6c2203410c490d002003410c6e220d41037422044100480d0e200410122209450d0a0b0240200720036a220b2007460d004100210c200921032007210403402004280200210a200341046a200441086a2802003602002003200a360200200341086a2103200c41016a210c2004410c6a2204200b470d000b0b20024180016a2009200c10cf010240200d450d00200910140b02402006450d002006410c6c21042007210303400240200341046a280200450d00200328020010140b2003410c6a2103200441746a22040d000b0b024020080d00200710140b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a22034200370300200242003703b00141ea81c0004115200241b0016a1000200241a0016a41086a220c2003290300370300200220022903b0013703a001200241a0016a4110200241086a41201002200241086a1023200241003602a801200242013703a001412010122203450d08200242a080808080043702a401200220033602a0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241a0016a10830102400240024020022802a4012204200c280200220a6b41204f0d00200a41206a2203200a490d102004410174220c20032003200c491b220b4100480d102004450d0120022802a0012004200b1013220c450d020c0e0b200a41206a210320022802a001210c0c0e0b200b1012220c0d0c0b200b41011016000b411441011016000b412841011016000b100f000b200c450d00200610140b41b185c00041331015000b41b185c00041331015000b200c41011016000b41b185c00041331015000b412041011016000b200441041016000b200341041016000b2002200b3602a4012002200c3602a001200b21040b200241a0016a41086a220b2003360200200c200a6a220a41086a200241c4006a290200370000200a41106a200241cc006a290200370000200a41186a200241d4006a290200370000200a200229023c3700000240200420036b411f4b0d00200341206a220a2003490d0120044101742206200a200a2006491b220a4100480d010240024002402004450d00200c2004200a1013220c450d010c020b200a1012220c0d010b200a41011016000b2002200a3602a4012002200c3602a0010b200b200341206a360200200c20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a28020022083602800120024180016a200241a0016a101c02402008450d00200841246c2106200e210303400240024020032d00004101470d002003410c6a2802002104200341046a280200210c4100210a0c010b4101210a200341016a210c0b20024180016a41086a20043602002002200c360284012002200a36028001200241b0016a20024180016a102720022802b001210a024002400240024020022802a401220b200241a0016a41086a220928020022046b200241b0016a41086a280200220c4f0d002004200c6a220d2004490d06200b4101742207200d200d2007491b220d4100480d06200b450d0120022802a001200b200d1013220b0d020c070b20022802a001210b0c020b200d1012220b450d050b2002200d3602a4012002200b3602a0010b20092004200c6a220d360200200b20046a200a200c10f5011a024020022802b401450d00200a10140b200341246a21032006415c6a22060d000b02402008450d00200841246c2104200e21030340024020032d0000450d00200341086a280200450d00200341046a28020010140b200341246a21032004415c6a22040d000b0b200241146a280200450d040c030b200241a8016a280200210d20022802a001210b200241146a2802000d020c030b1010000b200d41011016000b200e10140b200241c0016a2400200dad422086200bad840ba90a03017f037e087f230041f0016b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b20022001360204200241286a200210dc010240024002402002280228450d00200241086a41086a2201200241286a41086a220028020036020020022002290328370308200241186a41086a20012802003602002002200229030837031820024180016a200241186a10dd012002280280014101460d0120024180016a41086a2201290300210320014200370300200242003703800141a591c000410d20024180016a100020002001290300370300200220022903800137032842002104024002400240200241286a41104184a1c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d0120022903800121040b20024180016a41086a22014200370300200242003703800141b291c000411520024180016a1000200241286a41086a2001290300370300200220022903800137032802400240200241286a41104184a1c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d03200229038001210541e001210041e00110122201450d010c060b4205210541e001210041e001101222010d050b200041081016000b41b185c00041331015000b41b185c00041331015000b20024194016a410136020020024101360274200241b4b3c20036027020024201370284012002418cb3c200360280012002200241f0006a3602900120024180016a4194b3c200102c000b41ea94c000412820022802840120024180016a41086a2802001029000b200120024180016a41f00010f50122064202370370200641003a00880120064202370390012006200229037037037820064180016a200241f0006a41086a29030037030020062002280069360089012006418c016a200241e9006a41036a28000036000020062003200520047c220420042003541b37039801200620022903283703a001200641a8016a200241286a41086a290300370300200641b0016a200241386a290300370300200641b8016a200241c0006a290300370300200641c0016a200241c8006a290300370300200641c8016a200241d0006a290300370300200641d0016a200241d8006a290300370300200641d8016a200241e0006a290300370300200228021822072108200228021c2209210a0340200841086a210020082f0106220c4103742101417f210b02400240024003402001450d0141bc8ac0002000410810f701220d450d03200141786a2101200b41016a210b200041086a2100200d417f4a0d000b200a0d010c020b200c210b200a450d010b200a417f6a210a2008200b4102746a41e4016a28020021080c010b0b20072009200228022010c9012002410036023020024201370328200241013602800120024180016a200241286a101c200228022c210b200228023021012002200636027020024180016a200241f0006a10ce012002280280012108024002400240024002400240200b20016b200228028801220d4f0d002001200d6a22002001490d03200b410174220a20002000200a491b220a4100480d03200b450d012002280228200b200a1013220b450d020c040b2001200d6a21002002280228210b0c040b200a1012220b0d020b200a41011016000b1010000b2002200a36022c2002200b3602280b200241306a2000360200200b20016a2008200d10f5011a0240200228028401450d00200810140b20064188016a104220061014200241f0016a24002000ad422086200bad840bed0d06027f017e0a7f017e067f017e230041a0026b22022400200241186a200110400240024002400240024002400240024002400240024002402002280218450d00200228021c2203ad2204421d88a70d0a2004420386a72205417f4c0d0a024002400240024002400240024002400240024002400240024002402005450d00200510122206450d022003450d010c030b4101210620030d020b410021054100210b2006450d0c0c020b200541011016000b200141046a210741002108410021094100210a2003210b034020024200370340200241c0006a2001280200220c2007280200220541082005410849220d1b220e10f5011a20072005200e6b3602002001200c200e6a360200200d0d02200a41016a2105200229034021040240200a200b470d002008200520052008491b220bad420386220f422088a70d13200fa7220e4100480d130240200a450d0020062009200e101322060d010c070b200e10122206450d060b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0a0b2005ad422086200bad84210f200241106a200110402002280210450d0720022802142203ad420c7e2204422088a70d132004a72205417f4c0d132005450d0120051012220c450d042003450d020c050b200b0d070c080b4104210c20030d030b410021094100210b200c450d040c030b200e41011016000b200541041016000b410021084100210a4100210e2003210b0340200241086a2001104002400240024002402002280208450d00200228020c2205417f4c0d12024002402005450d0020051080012207450d0320072001280200200141046a220d2802002209200520092005491b220910f5011a200d28020022102009490d04200d201020096b3602002001200128020020096a36020020092005470d010c050b4101210741002005460d040b2005450d00200710140b0240200e450d00200c210503400240200541046a280200450d00200528020010140b2005410c6a2105200a41746a220a0d000b0b200b450d05200c10140c050b200541011016000b20092010103a000b200e41016a21090240200e200b470d002008200920092008491b220bad420c7e2204422088a70d0c2004a7220d4100480d0c0240200e450d00200c200a200d1013220c0d010c0e0b200d1012220c450d0d0b200c200a6a220e2007360200200e41046a2005ad2204422086200484370200200841026a2108200a410c6a210a2009210e20092003490d000b200c450d010b2009200f422088a7470d0320024200370224200241a090c100360220200c2009410c6c6a211020094103742205450d04200620056a2111200241206a41086a2112200241d4006a2113200241d0006a2114200c2108200621030340200822052010460d062005410c6a210820052802002215450d0720052902042104200220032900002216370330024002402002280220220e41a090c100460d00200228022421070c010b41e4011012220e450d0d41002107200e41003b0106200e4100360200200e41086a200241c0006a41dc0110f5011a200241003602242002200e3602200b200341086a210302400340200e41086a210a200e2f0106220d410374210541002109024003402005450d01200241306a200a410810f7012201450d03200541786a2105200941016a2109200a41086a210a2001417f4a0d000b2009417f6a210d0b02402007450d002007417f6a2107200e200d4102746a41e4016a280200210e0c010b0b2013201637020020142012360200200241c0006a410c6a200d360200200241c0006a41086a200241206a3602002002200e360244200241003602402002200437023420022015360230200241c0006a200241306a10ca0120032011470d010c080b200e2009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d00200510140b20032011470d000c070b0b200fa7450d010b200610140b200041003602000c0a0b2000410036020002402009450d002009410c6c210a200c210503400240200541046a280200450d00200528020010140b2005410c6a2105200a41746a220a0d000b0b0240200b450d00200c10140b200fa7450d0920061014200241a0026a24000f0b200c2108200fa70d020c030b201021080b200fa7450d010b200610140b024020082010460d00034020082802002205450d010240200841046a280200450d00200510140b2008410c6a22082010470d000b0b0240200b450d00200c10140b200241c0006a41086a2205200241206a41086a28020036020020022002290320370340200041086a200528020036020020002002290340370200200241a0026a24000f0b1010000b200d41041016000b41e40141041016000b100f000b200241a0026a24000bad0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141899dc1002006410810f7012208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2201450d00200128020821062001280200210120024200370308200241086a200120064108200641084922071b10f5011a20070d01200041086a2002290308370300410021010c030b200041919dc100360204200041086a41283602000c010b200041b99dc100360204200041086a41293602000b410121010b20002001360200200241106a24000bac3a190c7f017e037f017e097f027e017f017e077f037e027f017e057f027e027f037e067f027e037f017e0c7f027e0e7f027e107f230041d0026b22022400024002402001450d00200220003602100c010b20024184a1c1003602100b20022001360214200241f0006a200241106a103e0240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10dc012002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241a090c100360250200241d0006a41086a210a2004450d0241e001210b2008200441e0016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f2120410221214178212241a591c00021234184a1c10021244115212541b291c0002126423c2127428080808070212842252129418801212a41ff01212b427f212c41bc9cc100212d41e000212e4107212f20082130410021310c030b2002412c6a410136020020024101360254200241bcb3c2003602502002420137021c2002418cb3c2003602182002200241d0006a360228200241186a4194b3c200102c000b20024184016a410136020020024101360254200241bcb3c200360250200242013702742002418cb3c2003602702002200241d0006a36028001200241f0006a4194b3c200102c000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b412f411e2072205c410c6c6a41a07f4622451b214641c48ac00041e29dc10020451b21450c010b02400240024002400240024020310e06000501020304040b2030200d6a290300200e520d13024020302d0088012201450d002001202b712201450d230c540b203029039001200e520d212030290398012132200241f0006a200241c0006a10dd010240024020022802704101470d00200f3502002133200228027421344101213520112d0000450d010c0d0b200f290300213642002133200f42003703002002420037037020232010200241f0006a10002009200f290300370300200220022903703703180240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0a200229037021330b200f42003703002002420037037020262025200241f0006a10002009200f29030037030020022002290370370318024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0d200229037021372032203620277c580d020c010b420521372032203620277c580d010b203820288320298421334101213541c594c000213420112d0000450d010c0d0b410021352032203720337c22335a0d2120112d00000d0c0b024002402035450d0020022802502002280254200a28020010c90120024200370254200241a090c100360250200220123703180c010b2002280250213920022012370318203941a090c100460d002002280254213a0c200b201310122239450d0a4100213a203941003b010620394100360200203941086a200241f0006a201410f5011a20024100360254200220393602500c1e0b20482050204e204f6a22012001204e491b6a22012048490d4e2048204f742200200120012000491b2249ad2051862232205288a70d4e2032a722012053480d4e02402048450d00204a204820547420011013224a0d0f0c060b20011012224a450d05410321310c170b204a20482054746a204d3602002048204f6a2148204e450d270240204c20462f01064f0d002046204c2055746a20566a214d204c204f6a214c204e20506a214e20492048460d0c0c0d0b41012101024020462f01042200204628020022462f0106490d004101210103402001204f6a210120462f01042200204628020022462f01064f0d000b0b204620002055746a20566a214d204620002054746a20576a28020021464100214c2001204f460d25204f20016b2101034020462802e40121462001204f6a22010d000c260b0b20592060205f20586a22012001205f491b6a22012059490d4c20592058742200200120012000491b225aad2061862232206288a70d4c2032a722012063480d4c02402059450d00205b205920647420011013225b0d100c050b20011012225b450d04410521310c190b205b20592064746a205e360200205920586a21590240205f450d000240205d20452f01064f0d002045205d20656c6a20666a215e205d20586a215d205f20606a215f205a2059460d0e0c0f0b41012101024020452f01042200204528020022452f0106490d00410121010340200120586a210120452f01042200204528020022452f01064f0d000b0b2045200020656c6a20666a215e204520002064746a20676a28020021454100215d20012058460d23205820016b2101034020452802e4012145200120586a22010d000c240b0b205b215c2048413f4b0d370c280b2069280200227220686a210020722f0106223e206b7421014100215c024003402001450d01206f2000206810f701223d450d11200120706a2101205c20716a215c200020686a2100203d206c4a0d000b205c206c6a213e0b0240206a450d00206a206c6a216a2072203e206d746a206e6a2169410121310c110b412f214641c48ac00021450b2002204636026420022045360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c801200228020022460d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c220b200141041016000b200141041016000b41b185c00041331015000b41b185c00041331015000b41e40141041016000b41e88dc100412241b78dc10041311029000b41e88dc1004122204620022802041029000b410221310c080b410321310c080b410321310c090b410421310c090b410521310c090b410521310c0a0b410021010c460b410121010c450b410221010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b4100213c0c040b4100213c0c040b410021010c040b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b2030202a6a2d0000202b7122010d34410121010c060b203029039001200e520d34203029039801213f200f42003703002002420037037020262025200241f0006a10002009200f290300370300200220022903703703180240024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d02200229037021320c010b420521320b202c203220327c224020402032541b2240500d01200241c0006a2141200228024421420c030b41b185c00041331015000b419cc4c1001018000b0240024002400240024002400240024002400240024002400240203c0e020001010b203941086a210020392f0106223b20157421014100213d024003402001450d01200241186a2000410810f701223e450d08200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a213b0b0240203a450d00203a20206a213a2039203b2021746a20136a28020021394100213c0c0e0b201620123702002018200a360200201a203b360200200f200241d0006a360200200220393602742002201b3602702009201b3602002002201c3703184101101221010240024002400240024002402035450d002001450d0d200141013a00002002201d37021c2002200136021820022033a72201360260200241e0006a200241186a101c200228021c223d200928020022006b20014f0d01200020016a223e2000490d40203d410174223b203e203e203b491b223e201b480d40203d450d022002280218203d203e1013223d0d030c0e0b2001450d0e2001201b3a00002002201d37021c2002200136021820014101201e10132201450d0f200120333700012002201f37021c200220013602180c040b2002280218213d0c020b203e1012223d450d0b0b2002203e36021c2002203d3602180b2009200020016a360200203d20006a2034200110f5011a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10ca01201120353a0000200241d0006a20196a201b3a00002033213820350d01410021010c100b2041280200223b41086a2100203b2f0106224320157421014100213d02400240024003402001450d01202d2000410810f701223e450d02200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a21430b2042450d01204220206a2142203b20432021746a20136a21414101213c0c100b203b202e6a203d20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10f5011a2001202f4d0d02203f20408020022903702244520d040c3f0b204442808080807083421c84213241ed9cc10021460c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b204442808080807083422984213241c49cc10021460b2032a721450c010b4131214541ea88c00021460b2002204536026420022046360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c801200228020822460d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41e88dc1004122418a8dc100412d1029000b410141011016000b203e41011016000b410141011016000b410941011016000b41e88dc10041222046200228020c1029000b4101213c0c010b410221010c020b410221010c010b410221010c000b0b205f20606a215f024002400240205a2059470d00410421310c010b410521310c010b410221010c340b410221010c330b204e20506a214e02400240024020492048470d00410221310c010b410321310c010b410221010c330b410221010c320b20022802402002280244200228024810c90102402006450d00200641246c2145200321460340024020462d0000450d00204641086a280200450d00204641046a28020010140b204641246a21462045415c6a22450d000b0b02402007450d00200310140b02402004450d00200441e0016c214520084188016a2146034020461042204641e0016a2146204541a07e6a22450d000b0b02402005450d00200810140b410110122246450d05204620022d007c3a000020464101410210132247450d06204720022d007d3a0001200228027022452146024020022802742200450d002045214620002101034020462802e40121462001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782231450d002031417f6a214820462f0106450d01204641086a213d410121000c020b410021494104214a4104214b4100214820000d030c040b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a213d204620004102746a41e8016a28020021464100210020014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b417f204841016a220120012048491b2249ad2232421e88a70d042032420286a72201417f4c0d04024002400240024002402001450d0020011012224a450d0d204a203d3602002048450d020c010b4104214a4104203d3602002048450d010b200020462f01064f0d01200041016a214c204620004103746a41086a214d0c020b410121480c020b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a214d204620004102746a41e8016a28020021464100214c20014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b2031417e6a214e4101214f417f215042022151422021524100215341022154410321554108215641e80121574101214820494101470d0b0c0a0b204a214b2002280270214520022802742200450d010b20002101034020452802e40121452001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002258450d002058417f6a215920452f0106450d01204541e0006a2131410121000c020b4100215a4104215b4104215c410021592048413f4d0d020c110b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a2131204520004102746a41e8016a28020021454100210020014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b417f205941016a220120012059491b225aad2232421e88a70d012032420286a72201417f4c0d01024002400240024002402001450d0020011012225b450d0b205b20313602002059450d020c010b4104215b410420313602002059450d010b200020452f01064f0d01200041016a215d20452000410c6c6a41e0006a215e0c020b41012159205b215c2048413f4b0d110c020b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a215e204520004102746a41e8016a28020021454100215d20014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b2058417e6a215f41012158417f216042022161422021624100216341022164410c216541e000216641e801216741012159205a4101470d0a0c090b41012104410110122258450d03205820484102743a000020484102742245450d140c0f0b100f000b410141011016000b410241011016000b410141011016000b200141041016000b200141041016000b410221310c030b410321310c030b410421310c030b410521310c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402048418080014f0d0041022104410210122258450d02205820484102744101723b0000204841027422450d010c060b024020484180808080044f0d0041042104410410122258450d0320582048410274410272360000204841027422450d010c060b410110122246450d03204641033a00004105210420464101410510132258450d042058204836000120484102742245450d050b410020046b21462004214802400340204b28020021010240200420466a41074b0d00204841086a22002048490d152004410174224f20002000204f491b22004100480d15024002402004450d00205820042000101322580d010c040b200010122258450d030b200021040b204b41046a214b205820486a2001290000370000204641786a2146204841086a21482045417c6a22450d000b2059413f4b0d070c060b200041011016000b410241011016000b410441011016000b410141011016000b410541011016000b200421482059413f4b0d010b4101214541011012224b450d08204b20594102743a00004101210120590d010c020b02402059418080014f0d004102214541021012224b450d07204b20594102744101723b00000c010b024020594180808080044f0d004104214541041012224b450d06204b20594102744102723600000c010b410110122246450d04204641033a0000410521452046410141051013224b450d03204b20593600010b2059410274214f204521010340205c28020022462802002159024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020462802082246413f4b0d0020452001470d01204541016a22012045490d2120454101742200200120012000491b22004100480d212045450d05204b204520001013224b0d060c0f0b2046418080014f0d01204520016b41014b0d02200141026a22002001490d2020454101742268200020002068491b22004100480d202045450d0b204b204520001013224b0d0c0c0f0b204521000c050b20464180808080044f0d01204520016b41034b0d05200141046a22002001490d1e20454101742268200020002068491b22004100480d1e024020450d0020001012224b450d100c070b204b204520001013224b0d060c0f0b204521000c090b20452001470d05204541016a22012045490d1c20454101742200200120012000491b22004100480d1c0240024020450d0020001012224b450d100c010b204b204520001013224b450d0f0b204521010c060b20001012224b450d090b204521010b204b20016a20464102743a00002000200141016a22016b20464f0d060c0c0b204521000b204b20016a20464102744102723600002000200141046a22016b2046490d0a0c040b204521000b204b20016a41033a000002402000200141016a22456b41034b0d00204541046a22682045490d1620004101742231206820682031491b22684100480d16024002402000450d00204b200020681013224b0d010c080b20681012224b450d070b206821000b204b20456a20463600002000200141056a22016b2046490d080c020b20001012224b450d030b204b20016a20464102744101723b00002000200141026a22016b2046490d060b200021450c060b200041011016000b200041011016000b206841011016000b200041011016000b200041011016000b200120466a22452001490d0c20004101742268204520452068491b22454100480d0c02402000450d00204b200020451013224b0d010c040b20451012224b450d030b205c41046a215c204b20016a2059204610f5011a200120466a2101204f417c6a224f0d000b0b024002400240200420486b20014f0d00204820016a22462048490d0c20044101742200204620462000491b22004100480d0c2004450d0120582004200010132258450d020c090b204820016a2146205820486a204b200110f5011a2045450d0a0c090b2000101222580d070b200041011016000b204541011016000b410541011016000b410141011016000b410441011016000b410241011016000b410141011016000b20002104205820486a204b200110f5011a2045450d010b204b10140b0240205a450d00205b10140b02402049450d00204a10140b02402046450d00204641026a22452046490d0120454104204541044b1b22014100480d0120474102200110132247450d02204741026a2058204610f5011a2004450d040c030b204641026a2145204741026a2058204610f5011a20040d020c030b1010000b200141011016000b205810140b20022802702002280274200241f8006a28020010c901200241d0026a24002045ad4220862047ad840f0b20014101470d002030280290012015460d010b2030200b6a2230200c470d01410021010c050b200241c0006a21692002280244216a410821684103216b417f216c4102216d41e401216e41bc8ac000216f41782170410121710c010b410021310c010b410121310c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a220342003703002002420037033041cc81c0004111200241306a1000200241206a41086a2003290300370300200220022903303703200240024002400240200241206a41104184a1c100410041001001417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010012203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010122203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101222030d020b200441011016000b41b185c00041331015000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bfc1404047f017e087f017e230041c0076b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b20022001360204200241e0056a20021041024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903d0064203510d00200241086a200241e0056a41e00110f5011a200241e8016a200241086a41e00110f5011a2002200241e8016a3602d004200241e0056a200241d0046a10ce0120022802e8052103024020022802e405450d0020022802e00510140b200241e0056a200241e8016a41e00110f5011a200241d0046a200241e0056a10e101024002400240024002400240024020022802d0044101470d0020022802d404210120022802d8042200411a460d0120004115470d024102210441f60121002001419f95c100460d0f2001419f95c100411510f7010d020c0f0b200241c8036a200241d0046a41086a41880110f5011a410021040240200241c8036a41086a410020022903c8034201511b2201450d002001450d00410321002001200310b301450d03410021040c0e0b4176416c20011b21000c0d0b410021002001418798c100460d02410021042001418798c100411a10f701450d0d0b4100210441810121000c0c0b200141206a410020011b210c2001101921064101210041002104200c290300220f2006540d0a4102210041022104200f20064280027c560d0a2006200f5a0d014100210b41002105410021074100210e410421090340412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010132200450d062000200637002002402007200e470d00200741016a220a2007490d20200b200a200a200b491b220ead420c7e220f422088a70d20200fa7220a4100480d2002402007450d0020092005200a101322090d010c090b200a10122209450d080b200920056a220a2000360200200a41046a42c08080808005370200200b41026a210b2005410c6a2105200741016a2107200642017c2206200c290300220f540d000c030b0b410021040c0a0b41042109410021074100210e0b410c1012220d450d04412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010132201450d062003ad21062001200f370020200d42c08080808005370204200d2001360200200241f8036a1042200241003602e805200242013703e00541012104410121014101101222000d090c140b200241fc016a41013602002002410136020c200241c4b3c200360208200242013702ec012002418cb3c2003602e8012002200241086a3602f801200241e8016a4194b3c200102c000b412041011016000b41c00041011016000b200a41041016000b410c41041016000b412041011016000b41c00041011016000b200241f8036a10420b200241003602e805200242013703e005024020044101460d0020044102470d02410110122201450d0d200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41023a000020022802e40520032802002201470d04200141016a22032001490d1320014101742205200320032005491b22054100480d132001450d0820022802e0052001200510132203450d090c160b41012101410110122200450d0b0b200241e0056a41086a22032003280200220520016a360200200220013602e405200220003602e005200020056a20013a000020022802e4052200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802e0052000200110132200450d050c0f0b410110122201450d0b200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41003a000020022802e40520032802002201470d02200141016a22032001490d1020014101742205200320032005491b22054100480d102001450d0720022802e0052001200510132203450d080c0c0b20022802e00521000c0e0b20022802e00521030c120b20022802e00521030c0a0b2001101222000d0a0b200141011016000b2005101222030d0d0b200541011016000b2005101222030d040b200541011016000b200120011016000b410141011016000b410141011016000b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000c070b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2205200141086a360200200020016a2006370000200220073602e801200241e8016a200241e0056a101c02400240024002402007450d0020092007410c6c6a21082009210303402003280200210a2002200341086a28020022013602e801200241e8016a200241e0056a101c024002400240024020022802e405220b200528020022006b20014f0d00200020016a220c2000490d09200b4101742200200c200c2000491b22004100480d09200b450d0120022802e005200b20001013220b0d020c060b20022802e005210b0c020b20001012220b450d040b200220003602e4052002200b3602e005200528020021000b2005200020016a360200200b20006a200a200110f5011a2003410c6a22032008470d000b0b200241013602e801200241e8016a200241e0056a101c200d280200210b2002200d28020822013602e801200241e8016a200241e0056a101c02400240024020022802e4052203200528020022006b20014f0d00200020016a22052000490d0620034101742200200520052000491b22004100480d062003450d0120022802e0052003200010132203450d020c040b20022802e00521030c040b2000101222030d020b200041011016000b200041011016000b200220003602e405200220033602e005200241e8056a28020021000b200241e0056a41086a2205200020016a360200200320006a200b200110f5011a02400240024020022802e4052200200528020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802e0052000200110132200450d020c040b20022802e00521000c040b2001101222000d020b200141011016000b1010000b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2203200141086a360200200020016a427f3700002003280200210320022802e005210520044101470d0302402007450d002007410c6c21002009210103400240200141046a280200450d00200128020010140b2001410c6a2101200041746a22000d000b0b0240200e450d00200910140b0240200d41046a280200450d00200d28020010140b200d10140c030b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000b200241e8056a280200210320022802e00521050b200241c0076a24002003ad4220862005ad840ba61607017f027e037f017e017f037e047f230041f0036b2202240002400240200129037022034202520d00200241086a20014188016a41d80010f5011a420021030c010b200241fe006a2001410b6a2d00003a0000200241e0006a41086a2001411c6a290200370300200241e0006a410d6a200141216a290000370000200220012f00093b017c200220012902143703602001410c6a280200210520012d0008210620012802102107200241b8016a200141e4006a290000370300200241b0016a200141dc006a290000370300200241a8016a200141d4006a290000370300200241a0016a200141cc006a29000037030020024198016a200141c4006a29000037030020024180016a41106a2001413c6a29000037030020024180016a41086a200141346a2900003703002002200129002c3703800120012903002108200241c0016a41106a200141f0006a220941106a290300370300200241c0016a41086a200941086a290300370300200220092903003703c00120014180016a290300210a2001290378210b4200210c200241a0026a41086a22094200370300200242003703a00241dd81c000410d200241a0026a1000200241086a41086a2009290300370300200220022903a00237030842002104024002400240024002400240024002400240200241086a41104184a1c100410041001001417f460d00200242003703a002200241086a4110200241a0026a41084100100141016a41084d0d0120022903a00221040b024020034201520d00200b500d032004200a200a2004541b22032003200a7d200b827d210c0b200241a0026a200c1011200241f4016a41026a20022d00a2023a0000200241086a41086a2209200241b3026a290000370300200241086a410d6a220d200241b8026a290000370000200220022f01a0023b01f401200220022900ab0237030820022800a302210e20022800a702210f200241d8016a410d6a200d290000370000200241d8016a41086a2009290300370300200220022903083703d801200241dc036a41026a2209200241fc006a41026a2d00003a0000200241a0026a41086a220d200241e0006a41086a290300370300200241a0026a410d6a2210200241e0006a410d6a290000370000200220022f017c3b01dc03200220022903603703a0020240024002400240024002400240200641ff01714101470d00200241e0036a2005410676103d20022802e8032005413f7122054d0d01200241d8036a41026a20022802e00320054105746a220541026a2d00003a0000200241c0036a200541136a290000370300200241c5036a200541186a290000370000200220052f00003b01d8032002200529000b3703b80320052800072107200528000321054101210920022802e4030d020c030b200241d8036a41026a20092d00003a0000200241b8036a41086a200d290300370300200241b8036a410d6a2010290000370000200220022f01dc033b01d803200220022903a0023703b8030c030b4100210920022802e403450d010b20022802e00310140b2009450d010b200241e0036a41026a200241d8036a41026a2d00003a0000200241a0026a41086a200241b8036a41086a290300370300200241a0026a410d6a200241b8036a410d6a290000370000200220022f01d8033b01e003200220022903b8033703a002410021090c010b4101210941152107419f95c10021050b2002419c026a41026a2206200241e0036a41026a2d00003a0000200241086a41086a220d200241a0026a41086a2210290300370300200241086a41106a200241a0026a41106a290300370300200220022f01e0033b019c02200220022903a00237030802402009450d002000200536020420004101360200200041086a200736020020014188016a1042200241f0036a24000f0b2002418b026a200d29030037000020024190026a200241086a410d6a290000370000200220022f019c023b01f801200220073600ff01200220053600fb012002200229030837008302200220062d00003a00fa01200220083703a002201020014188016a41d80010f501210d2002419f036a200f3600002002419b036a200e36000020024190036a200241c0016a41106a29030037030020024188036a2201200241c0016a41086a2903003703002002419a036a200241f4016a41026a2d00003a0000200241a3036a20022903d801370000200241ab036a200241d8016a41086a290300370000200241b0036a200241d8016a410d6a290000370000200220022903c00137038003200220022f01f4013b0198032002410036021020024201370308200241a0026a200241086a108301200d200241086a1082010240024002400240024002400240024002402002290380034201520d0020012903002203420c882204420120044201561b22044200510d0c20024190036a2903002004802104200228020c2205200241106a28020022016b41024f0d01200141026a22092001490d0a20054101742201200920092001491b22014100480d0a2005450d05200228020820052001101322050d060c0e0b0240200228020c200241106a2802002201470d00200141016a22052001490d0a20014101742209200520052009491b22094100480d0a2001450d02200228020820012009101322050d030c0d0b200228020821050c030b200228020821050c050b200910122205450d0a0b2002200936020c20022005360208200241106a28020021010b200241106a200141016a360200200520016a41003a00000c030b200110122205450d080b2002200136020c20022005360208200241106a28020021010b200241106a200141026a360200200520016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b024002400240200228020c2206200241106a28020022016b41204f0d00200141206a22052001490d0420064101742201200520052001491b22094100480d042006450d0120022802082006200910132205450d020c090b200228020821050c090b2009101222050d070b200941011016000b41b185c00041331015000b1010000b41e0bbc2001018000b4184c4c1001018000b200941011016000b200141011016000b2002200936020c20022005360208200241106a2802002101200921060b200520016a220920024198036a2207290000370000200941186a200741186a290000370000200941106a200741106a290000370000200941086a200741086a290000370000024002400240200141206a2201418102490d00200241086a41186a22094200370300200241086a41106a22074200370300200241086a41086a220e42003703002002420037030820052001200241086a1009200241b8036a41186a2009290300370300200241b8036a41106a2007290300370300200241b8036a41086a200e290300370300200220022903083703b803200241b8036a412020024180016a200241f8016a100a210120060d010c020b2005200120024180016a200241f8016a100a21012006450d010b200510140b02402001450d002000418798c10036020420004101360200200041086a411a360200200d1042200241f0036a24000f0b200241b8036a41186a200241f8016a41186a290300370300200241b8036a41106a200241f8016a41106a290300370300200241b8036a41086a200241f8016a41086a290300370300200220022903f8013703b80320022903a0022104200241086a200d41d80010f5011a420121030b200041086a2003370300200041306a2004370300200041106a20022903b803370300200041186a200241b8036a41086a290300370300200041206a200241b8036a41106a290300370300200041286a200241b8036a41186a290300370300200041386a200241086a41d80010f5011a20004100360200200241f0036a24000be90104027f017e017f017e230041206b22022400200241106a41086a220342003703002002420037031041b291c0004115200241106a1000200241086a2003290300370300200220022903103703000240024002400240200241104184a1c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d022002290310210441082105410810122203450d010c030b42052104410821054108101222030d020b200541011016000b41b185c00041331015000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840b13002000410236020420004180b7c2003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242013700000f0b410841011016000b1300200041073602042000418c99c1003602000b130020004104360204200041d0b8c2003602000bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d4012000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d4012000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000b0b0be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510132204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310132204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101322040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101322040d0a0c0e0b2005101222040d110b200541011016000b200228020021040c050b200228020021040c070b2003101222040d0b0b200341011016000b200310122204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510122204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101322040d020c070b200228020021040c020b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011016000b200541011016000b200341011016000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d501200041086a22002001470d000b0b0b2700200028020c200041106a2802001006200041146a350200100c200041186a350200100c00000b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10f5011a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010f4011a0b20010b0d0042cecdbec7a4a882e3f0000b7c01017f230041306b22022400200241146a410a3602002002410a36020c200220003602082002200041046a3602102001411c6a2802002100200128021821012002412c6a41023602002002420237021c200241b0bec2003602182002200241086a36022820012000200241186a10f2012101200241306a240020010b9e0c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b200310c301450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641d8a4c1002107410021084102210941b002210a41a8a5c100210b41a8a5c100210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe037141087621134193aac10021144100211541022116419f01211741d5aac100211841d5aac1002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041d7a7c10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e4193aac100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f20024193aac100470d000b0b41012102200f410171450d0c0c0e0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff0371210041f3abc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41f0aec100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241f0aec100470d000b0b41012102200f410171450d0b0c0d0b20082011103a000b201141af021039000b20152011103a000b2011419e011039000b41e0bdc2001018000b41e0bdc2001018000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e0340024002400240024002400240024020024101460d00024020024102460d0020024103470d062005422088a741ff0171417f6a220241044b0d06024020020e050006040503000b200542ffffffff8f6083210541fd002100410321020c070b41dc002100410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c00084210541dc002100410321020c040b200542ffffffff8f608342808080802084210541fb002100410321020c030b200542ffffffff8f608342808080803084210541f5002100410321020c020b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f83200542808080807083842105410321020c020b200542ffffffff8f6083428080808010842105410321020c010b200141186a28020041272001411c6a28020028021011000021020c020b200f2802002000200e280200280210110000450d000b41010f0b20020bba0201037f23004180016b220224000240024002400240200128020022034110710d0020034120710d012000200110c001210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441d7006a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441376a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b2003418001103a000b2003418001103a000b9709010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a3602002003428080808080043703082003200036022041002106200341003602182003410036021020032005360230200320053602280240024002400240024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2100200341346a2101200341306a210b4101210603402000200741206a2d00003a00002003200741086a28020036020c20032007410c6a280200360208410021020240024002400240200741186a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b2007411c6a280200220c200128020022044f0d0a200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b2007411c6a28020021040b410121020b200341086a410c6a2004360200200341086a41086a2002360200410021020240024002400240200741106a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b200741146a280200220c200128020022044f0d0b200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b200741146a28020021040b410121020b200341086a41146a2004360200200341086a41106a20023602000240024020072802004101470d00200741046a2802002202200128020022044f0d07200b28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d072004200241086a3602000b2002280200200341086a200241046a2802001100000d032006200a4f0d02200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d000c030b0b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000f0b41d0bec200200220041038000b41e0bdc2001018000b41c0bec200200c20041038000b41c0bec200200c20041038000b09002000200110c0010b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b2205240020052001200220032004410010fc01200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa710fb01200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff007110fa01200641106a20012002200741ff007110fb01200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bd5cb020200418080c0000b90bc0153797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e53797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63653a65787472696e7369635f696e64657853797374656d20506172656e744861736853797374656d204576656e7473426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d4163636f756e744e6f6e6365543a3a496e64657845787472696e736963436f756e74416c6c45787472696e736963734c656e426c6f636b4861736845787472696e7369634461746152616e646f6d536565644e756d626572506172656e744861736845787472696e73696373526f6f74446967657374543a3a4469676573744576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c6964207479706541757261204c61737454696d657374616d704175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e72734f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f6f70732f61726974682e727300000000000000002f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c7372632f6c6962636f72652f726573756c742e72733a203a617574683a6c656e436f6e73656e737573204f726967696e616c417574686f7269746965733a636f64652f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f636f6e73656e7375732f7372632f6c69622e72736f66666c726570304e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e742064617461217265706f72745f6d69736265686176696f726e6f74655f6f66666c696e6572656d61726b7365745f686561705f70616765737365745f636f64657365745f73746f726167652053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f7465207468652070726576696f757320626c6f636b27732076616c696461746f72206d6973736564207468656972206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f75722e5f7265706f7274436f6e73656e7375734f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a68656170706167657300002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f736f72742e7273617373657274696f6e206661696c65643a206d6964203c3d206c656e00000000000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f6d6f642e727354696d657374616d702044696455706461746554696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f74696d657374616d702f7372632f6c69622e727354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f64496e646963657320456e756d53657454696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c426c6f636b506572696f643e206265747765656e2073657175656e7469616c20626c6f636b734e65774163636f756e74496e6465782041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465782f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f696e64696365732f7372632f6c69622e727354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e742064617461696e76616c69642073616c74496e6469636573204e657874456e756d536574496e64696365734e657874456e756d536574543a3a4163636f756e74496e646578456e756d5365742054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e73657420536574207468652063757272656e742074696d652e2045787472696e736963207769746820746869732063616c6c2073686f756c6420626520706c616365642061742074686520737065636966696320706f736974696f6e20696e20746865206561636820626c6f636b2028737065636966696564206279207468652054726169743a3a54494d455354414d505f5345545f504f534954494f4e29207479706963616c6c7920617420746865207374617274206f6620746865206561636820626c6f636b2e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e74207370656369666965642062792060626c6f636b5f706572696f64602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d704e6f77426c6f636b506572696f6444696455706461746520446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d2028616e6420616476697365642920706572696f64206265747765656e20626c6f636b732e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e6163636f756e742068617320746f6f206665772066756e647342616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e636573797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e676665657370726f706f73616c73656c656374696f6e636f756e63696c4e65774163636f756e745265617065644163636f756e745472616e73666572205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e20416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e7472616e736665727365745f62616c616e636520536574207468652062616c616e636573206f66206120676976656e206163636f756e742e77686f66726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572207374616b65722e6465737476616c7565546f74616c49737375616e6365543a3a42616c616e63654578697374656e7469616c4465706f7369745472616e736665724665654372656174696f6e46656556657374696e6756657374696e675363686564756c653c543a3a42616c616e63653e4672656542616c616e6365526573657276656442616c616e63652054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e20285468697320697320646966666572656e7420616e642077686f6c6c7920756e72656c6174656420746f207468652060426f6e64616765602073797374656d207573656420696e20746865207374616b696e67206d6f64756c652e29205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420697320616c6f6e65207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865726d6f72652c20604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e75702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e204174206c6561737420617320626967206173205265636c61696d5265626174652e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420616c6c6f77656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20616d6f756e74206f66207374616b65206f6e207468652073797374656d2e42616c616e6365736a6f7973747265616d2d6e6f6465000000df6acb689907609b0100000037e397fc7c91f5e40100000040fe3ad401f8959a02000000d2bc9897eed08f1501000000dd718d5cc53262d40100000042616c616e636573204578697374656e7469616c4465706f7369746e6f7420656e6f75676820667265652066756e64734469676573744974656d206e6f7420657175616c42616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656542616c616e6365732056657374696e6776657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c756562616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e74676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c75652f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f62616c616e6365732f7372632f6c69622e72736e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d65436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573456c656374696f6e53746172746564416e6e6f756e63696e6753746172746564416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465642041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f644175746f53746172745374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e526f756e644578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e436f6d6d69746d656e74735665633c543a3a486173683e566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e416e6e6f756e63696e67506572696f6452657665616c696e67506572696f64436f756e63696c53697a6543616e6469646163794c696d69744d696e436f756e63696c5374616b654e65775465726d4475726174696f6e4d696e566f74696e675374616b65436f756e63696c456c656374696f6e2f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e7273436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b6521656c656374696f6e206e6f7420696e20616e6e6f756e63696e67207374616765656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736475706c696361746520636f6d6d69746d656e746661696c656420746f207265736572766520766f74696e67207374616b6521656c656374696f6e206e6f7420696e20766f74696e672073746167654f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74766f74696e67207374616b6520746f6f206c6f7773616c7420746f6f206c61726765636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e672073746167656d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a654f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c6d696e696d756d207374616b65206d7573742062652070726f76696465646f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f70706564436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a656170706c7972657665616c7365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f647365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b657365745f706172616d5f6e65775f7465726d5f6475726174696f6e7365745f706172616d5f636f756e63696c5f73697a657365745f706172616d5f63616e6469646163795f6c696d69747365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f7374617274666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747372632f6c6962616c6c6f632f7665632e7273617373657274696f6e206661696c65643a20656e64203c3d206c656e63616e6e6f74207472616e7366657220696c6c69717569642066756e64735374616b696e6720426f6e646167655374616b696e67204e6f6d696e61746f7273466f725265776172644f66666c696e655761726e696e674f66666c696e65536c617368204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e42616c616e6365204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e756e7374616b656e6f6d696e617465756e6e6f6d696e61746572656769737465725f707265666572656e6365737365745f73657373696f6e735f7065725f6572617365745f626f6e64696e675f6475726174696f6e7365745f76616c696461746f725f636f756e74666f7263655f6e65775f6572617365745f6f66666c696e655f736c6173685f67726163657365745f696e76756c6e657261626c657320536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e205365742074686520676976656e206163636f756e74277320707265666572656e636520666f7220736c617368696e67206265686176696f75722073686f756c64207468657920626520612076616c696461746f722e20416e206572726f7220286e6f2d6f7029206966206053656c663a3a696e74656e74696f6e7328295b696e74656e74696f6e735f696e6465785d20213d206f726967696e602e696e74656e74696f6e735f696e646578707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2057696c6c2070616e69632069662063616c6c6564207768656e20736f757263652069736e27742063757272656e746c79206e6f6d696e6174696e67207461726765742e2055706461746573204e6f6d696e6174696e672c204e6f6d696e61746f7273466f7220616e64204e6f6d696e6174696f6e42616c616e63652e7461726765745f696e6465787461726765742052657472616374207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e204465636c617265207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e5374616b696e675374616b696e6720496e76756c657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b207165645374616b696e672043757272656e744f66666c696e65536c6173685374616b696e6720496e74656e74696f6e735374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672056616c696461746f72507265666572656e636573706f73206465726976656420636f72726563746c792066726f6d2053656c663a3a696e74656e74696f6e7328293b206170706c795f756e7374616b652063616e206f6e6c79206661696c20696620706f732077726f6e673b2053656c663a3a696e74656e74696f6e73282920646f65736e2774206368616e67653b207165645374616b696e6720466f7263696e674e65774572615374616b696e6720426f6e64696e674475726174696f6e496e76616c696420696e6465785374616b696e672043757272656e744e6f6d696e61746f7273466f7200000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f6d6f642e727356616c696461746f72436f756e744d696e696d756d56616c696461746f72436f756e7453657373696f6e7350657245726153657373696f6e52657761726450657262696c6c4f66666c696e65536c6173684772616365426f6e64696e674475726174696f6e496e76756c657261626c657343757272656e7445726156616c696461746f72507265666572656e636573496e74656e74696f6e734e6f6d696e6174696e674e6f6d696e61746f7273466f7243757272656e744e6f6d696e61746f7273466f7243757272656e7453657373696f6e52657761726443757272656e744f66666c696e65536c6173684e65787453657373696f6e735065724572614c6173744572614c656e6774684368616e67655374616b6552616e6765506169724f663c42616c616e63654f663c543e3e426f6e64616765536c617368436f756e74466f7263696e674e65774572612829526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520626c6f636b20617420776869636820746865206077686f6027732066756e6473206265636f6d6520656e746972656c79206c69717569642e20546865206869676865737420616e64206c6f77657374207374616b65642076616c696461746f7220736c61736861626c652062616c616e6365732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e742e20416c6c206e6f6d696e61746f72202d3e206e6f6d696e65652072656c6174696f6e73686970732e20416c6c20746865206163636f756e7473207769746820612064657369726520746f207374616b652e20507265666572656e636573207468617420612076616c696461746f72206861732e205468652063757272656e742065726120696e6465782e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c65206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c69736520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e5265776172645374616b696e67205374616b6552616e67655374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e735065724572615374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204f66666c696e65536c6173685374616b696e672053657373696f6e5265776172640000000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7374616b696e672f7372632f6c69622e727343616e6e6f74207374616b6520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74207374616b6520696620616c7265616479207374616b65642e43616e6e6f74206e6f6d696e61746520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74206e6f6d696e61746520696620616c7265616479207374616b65642e5374616b696e67204e6f6d696e6174696e674163636f756e74206d757374206265206e6f6d696e6174696e67496e76616c69642074617267657420696e64657863616e6e6f7420756e7374616b65207768656e2074686572652061726520746f6f20666577207374616b6564207061727469636970616e747350726f706f73616c4372656174656450726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564566f74656454616c6c7946696e616c697a656452756e74696d6555706461746564202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e4861736854616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e2f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e7273417070726f76616c51756f72756d4d696e5374616b6542616c616e63654f663c543e43616e63656c6c6174696f6e46656552656a656374696f6e466565566f74696e67506572696f644e616d654d61784c656e4465736372697074696f6e4d61784c656e5761736d436f64654d61784c656e50726f706f73616c436f756e7450726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e41637469766550726f706f73616c4964735665633c7533323e5761736d436f6465427948617368543a3a486173685665633c75383e566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c207533322954616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e20476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e0000000000617474656d707420746f20646976696465206279207a65726f000000000000002f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e46656550726f706f73616c732052656a656374696f6e46656550726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732054616c6c79526573756c74736372656174655f70726f706f73616c766f74655f6f6e5f70726f706f73616c63616e63656c5f70726f706f73616c2043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f672920606060766f746520706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67297374616b656e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f7273466565732043757272656e745472616e73616374696f6e46656543686172676564204665652063686172676564202865787472696e7369635f696e6465782c206665655f616d6f756e7429753332416d6f756e7453756469644b65794368616e67656420546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e4163636f756e7449642041207375646f206a75737420746f6f6b20706c6163652e626f6f6c4e657753657373696f6e204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7375646f2f7372632f6c69622e72732f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73657373696f6e2f7372632f6c69622e727346656573205472616e73616374696f6e4279746546656546656573205472616e73616374696f6e42617365466565627974657320666565206f766572666c6f776e6f2065787472696e73696320696e64657820666f756e6466656520676f74206f766572666c6f772061667465722063686172676553657373696f6e204c6173744c656e6774684368616e676553657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e67746853657373696f6e204e6578744b6579466f7200617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f6f70732f61726974682e7273466565735472616e73616374696f6e4261736546656541737365744f663c543e5472616e73616374696f6e4279746546656543757272656e745472616e73616374696f6e46656520546865206065787472696e7369635f696e646578203d3e20616363756d756c617465645f6665657360206d61702c20636f6e7461696e696e67207265636f72647320746f20747261636b20746865206f766572616c6c2063686172676564206665657320666f722065616368207472616e73616374696f6e2e20416c6c207265636f7264732073686f756c642062652072656d6f7665642061742066696e616c6973652073746167652e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e7375646f7365745f6b65796e65773c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636570726f706f73616c426f783c543a3a50726f706f73616c3e5375646f4b65797365745f6c656e677468666f7263655f6e65775f73657373696f6e20466f726365732061206e65772073657373696f6e2e6170706c795f72657761726473205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e436f6d706163743c543a3a426c6f636b4e756d6265723e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e56616c696461746f727353657373696f6e4c656e67746843757272656e74496e64657843757272656e745374617274543a3a4d6f6d656e74466f7263696e674e657753657373696f6e4c6173744c656e6774684368616e67654e6578744b6579466f724e65787453657373696f6e4c656e67746820546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206973207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b6579496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165642f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b696e697469616c6973655f626c6f636b6170706c795f65787472696e736963696e686572656e745f65787472696e73696373636865636b5f696e686572656e747376616c69646174655f7472616e73616374696f6e2f686f6d652f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e302e302f7372632f636f6465632e72730000000000000000000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000000000000000000053746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e45787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e6365626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e6465780000000000000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962616c6c6f632f736c6963652e7273436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e64734174436f756e63696c5465726d456e646564426c6f636b4e756d626572696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64652f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e7273626164207369676e617475726520696e2065787472696e7369637372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e7273416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e5465726d456e64734174543a3a426c6f636b4e756d626572436f756e63696c6d757374207365742066757475726520626c6f636b206e756d62657263616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f725f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e7365745f636f756e63696c6164645f636f756e63696c5f6d656d62657272656d6f76655f636f756e63696c5f6d656d6265727365745f7465726d5f656e64735f61742053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f7665543a3a4163636f756e74496420416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e74735665633c543a3a4163636f756e7449643e61757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e4578706c69636974207265706f7274696e67206e6f7420616c6c6f77656445787472696e7369635375636365737345787472696e7369634661696c656420416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e48617368206e6f7420657175616c000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e727352756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e67617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a206361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e7273000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839397372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d7372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f66206000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e85927372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f662060004190bcc1000bb08f01500110001e0000006e0110005c0000004e0100000300000000000000d00110000c0000000100000000000000974d10000c00000000000000dc0110000800000000000000845010008c61100000000000000000008450100000000000000000000100000000000000e40110000e0000000000000000000000223e10000300000000000000000000000000000000000000845010006c61100000000000000000008450100000000000000000000000000000000000f2011000100000000000000000000000223e10000300000000000000000000000000000000000000845010006c61100000000000000000008450100000000000000000000000000000000000020210000900000001000000000000007e4c10000e00000000000000bd341000070000000000000084501000a4611000000000000000000084501000000000000000000001000000000000000b0210000d0000000100000000000000223e10000300000000000000c43410000700000000000000845010007c61100000000000000000008450100000000000000000000100000000000000180210000a0000000000000000000000bd341000070000000000000000000000000000000000000084501000a461100000000000000000008450100000000000000000000100000000000000220210000600000000000000000000007e4c10000e00000000000000000000000000000000000000845010008c61100000000000000000009c61100001000000000000000100000000000000280210000a0000000000000000000000bd341000070000000000000000000000000000000000000084501000a461100000000000000000008450100000000000000000000100000000000000320210000e0000000000000000000000bd341000070000000000000000000000000000000000000084501000a4611000000000000000000084501000000000000000000001000000000000004002100006000000000000000000000046021000090000000000000000000000000000000000000084501000b4611000000000000000000084501000000000000000000001000000000000004f021000060000000000000000000000550210001a0000000000000000000000000000000000000084501000c46110000000000000000000845010000000000000000000010000000c00000000000000010000000d0000000c00000000000000010000000e0000000c00000000000000010000000f0000006f021000420000000c0000000000000001000000100000000c00000000000000010000000e0000000c00000000000000010000000e000000f602100022000000180310005a000000b5000000030000007203100028000000180310005a000000bb00000003000000a003100019000000c003100048000000bb0100002d000000a003100019000000100410005a000000ef0000001e0000008450100000000000b0041000020000009b04100015000000e503000005000000974b100028000000dd0410005f000000b80000000100000000000000730510001200000000000000746310000100000000000000000000008c631000010000000000000000000000850510000c0000000000000094631000010000000000000000000000ac631000010000000000000000000000910510000600000000000000b4631000010000000000000000000000cc631000010000000000000000000000970510000e00000000000000d4631000010000000000000000000000ec631000010000000000000000000000a50510000800000000000000f46310000100000000000000000000000c641000010000000000000000000000ad0510000b00000000000000146410000100000000000000000000002c6410000100000000000000000000000f0710000700000000000000c434100007000000f50610001a00000000000000b10610000700000000000000b80610003d000000600610005100000000000000590610000700000000000000c4341000070000003e0610001b000000000000003606100005000000000000003b06100003000000f70510003f000000000000009f4210000300000000000000c434100007000000e50510001200000000000000d30510000500000000000000d80510000d000000b80510001b000000000000001f07100013000000000000000000000032071000120000000000000000000000000000000000000084501000806410000000000000000000845010000000000000000000000000000c00000000000000010000000d000000ef4c100023000000dd0410005f000000b800000001000000c007100048000000b001000023000000c007100048000000b101000023000000990710001c0000007e51100018000000e40300000d0000005007100049000000870200001d00000050071000490000009d0000003a0000005007100049000000a4000000300000001b0810002b000000460810005f000000b400000004000000d608100030000000460810005f000000a800000004000000060910004c000000460810005f000000a90000000400000000000000520910000f0000000000000084651000020000000000000000000000946510000400000000000000763e100009000000dc0910000c000000610910002200000084501000000000008309100041000000c409100018000000974b100028000000e80910005d0000004800000001000000974b100028000000460810005f0000009c00000001000000ef4c100023000000e80910005d0000004800000001000000ef4c100023000000460810005f0000009c0000000100000000000000b80a10000b0000000000000000000000c30a10000f0000000000000000000000000000000000000084501000ac6610000000000000000000bc66100001000000000000000100000000000000d20a1000070000000100000000000000c30a10000f000000000000002b4e1000110000000000000084501000c46610000000000000000000d46610000100000000000000010000000c000000000000000100000011000000ef0a10001f0000000c00000000000000010000000e000000d90a100016000000000000000e0b100003000000000000000867100001000000000000000000000020671000080000000000000000000000c40c10000300000000000000c70c100012000000110b1000160000008450100000000000270b1000550000007c0b10005b000000d70b10005d000000340c10002f0000008450100000000000630c10006100000000000000e20c10000300000000000000000000003b4410000900000000000000000000000000000000000000845010004468100000000000000000005468100001000000000000000100000000000000e50c10000b00000000000000000000003b4410000900000000000000000000000000000000000000845010005c68100000000000000000006c68100001000000000000000100000000000000f00c1000090000000000000000000000973e1000040000000000000000000000000000000000000084501000746810000000000000000000846810000100000000000000010000000c00000000000000010000000f000000570d1000240000000c000000000000000100000012000000260d1000310000000c00000000000000010000000d000000f90c10002d00000000000000d60d10000600000000000000130000000000000000000000140000000000000000000000020000000000000000000000000000000000000015000000000000000000000000000000dc0d10000900000000000000160000000000000000000000170000000000000000000000000000001800000000000000000000000200000000000000000000000000000000000000e50d100009000000000000001900000000000000000000001a0000000000000000000000000000001b00000000000000000000000200000000000000000000000000000000000000ee0d100004000000000000001c0000000000000002000000000000000000000000000000020000000000000000000000000000000200000000000000000000000000000000000000f20d100007000000000000001d00000000000000000000001e0000000000000000000000000000001f00000000000000000000000000000020000000000000000000000000000000f90d10000800000000000000210000000000000000000000220000000000000000000000000000002300000000000000000000000000000024000000000000000000000000000000010e10000700000000000000250000000000000000000000260000000000000000000000000000002700000000000000000000000000000028000000000000000000000000000000080e100007000000000000002900000000000000000000002a0000000000000000000000000000002b0000000000000000000000000000002c0000000000000000000000000000000f0e100004000000000000002d00000000000000000000002e000000000000000000000002000000000000000000000000000000000000002f000000000000000000000000000000944210000400000000000000300000000000000000000000310000000000000000000000000000003200000000000000000000000000000033000000000000000000000000000000130e100009000000000000003400000000000000000000003500000000000000000000000000000036000000000000000000000000000000370000000000000000000000000000001c0e10000800000000000000380000000000000000000000390000000000000000000000000000003a0000000000000000000000000000003b000000000000000000000000000000240e100007000000000000003c00000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003f0000000000000000000000000000002b0e10000a00000000000000487d1000020000000000000000000000b86c1000010000000000000000000000350e10000d00000000000000e4921000010000000000000000000000c06c1000010000000000000000000000420e10000800000000000000c86c1000040000000000000000000000e86c100001000000000000008d0e10001b000000760e100017000000763e100009000000763e100009000000712110000700000071211000070000004a0e10002c00000000000000a80e10000800000000000000486d1000020000000000000000000000786d1000010000000000000000000000b00e10000b00000000000000806d1000030000000000000000000000c86d1000010000000000000000000000370f10000400000000000000a242100023000000000000003b0f10000500000000000000e70e100013000000020f10003500000000000000e00e10000300000000000000a24210002300000000000000e30e10000400000000000000e70e10001300000000000000fa0e10000800000000000000e70e100013000000bb0e10002500000000000000400f10000d00000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000e46f100001000000000000000100000000000000570f10001200000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000ec6f100001000000000000000100000000000000690f10000b00000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000f46f100001000000000000000100000000000000740f10000b00000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000fc6f1000010000000000000001000000000000007f0f1000070000000100000000000000974d10000c00000000000000860f10001b00000000000000845010000470100000000000000000001470100001000000000000000000000000000000a10f10000b0000000100000000000000974d10000c000000000000004d0f10000a00000000000000845010007470100000000000000000001c7010000b000000000000000100000000000000ac0f10000f0000000100000000000000974d10000c000000000000004d0f10000a0000000000000084501000747010000000000000000000847010000c00000000000000010000006e151000290000003a151000340000001515100025000000cc141000490000000c00000000000000010000000d0000009614100036000000621210002700000084501000000000008912100053000000dc1210005a00000036131000550000008b1310004f000000da131000500000002a1410001500000084501000000000003f141000570000001d121000450000000c000000000000000100000040000000bb0f10005d000000181010002700000084501000000000003f1010005b0000009a1010005c000000f61010004a0000008450100000000000401110005d0000009d1110002d0000008450100000000000ca111000530000001d12100045000000ef4c1000230000001f1710005e000000a800000001000000974b1000280000001f1710005e000000a80000000100000000000000d31710000f000000000000008450100000000000000000000000000074721000010000000000000000000000e217100011000000000000007c72100001000000000000000000000084501000000000000000000000000000f31710000f000000000000008450100000000000000000000000000084501000000000000000000000000000021810000d0000000000000084501000000000000000000000000000845010000000000000000000000000000f1810000b0000000000000084501000000000000000000000000000845010000000000000000000000000001a181000100000000000000084501000000000000000000000000000845010000000000000000000000000002a1810000e000000000000008450100000000000000000000000000084501000000000000000000000000000381810000e00000000000000489b10000100000000000000000000008450100000000000000000004618100017000000223e100003000000000000008a191000090000000000000000000000973e1000040000000000000000000000000000000000000084501000907710000000000000000000845010000000000000000000010000000000000093191000050000000000000000000000981910001d0000000000000000000000000000000000000084501000a077100000000000000000008450100000000000000000000000000000000000b5191000050000000000000000000000223e1000030000000000000000000000000000000000000084501000b077100000000000000000008450100000000000000000000100000000000000ba1910001400000000000000000000002b4e1000110000000000000000000000000000000000000084501000d077100000000000000000008450100000000000000000000100000000000000ce191000120000000100000000000000974d10000c00000000000000e01910001f0000000000000084501000c077100000000000000000008450100000000000000000000100000000000000ff1910000a00000000000000000000002b4e1000110000000000000000000000000000000000000084501000d077100000000000000000008450100000000000000000000100000000000000091a10000f0000000100000000000000974d10000c00000000000000181a1000130000000000000084501000c0771000000000000000000084501000000000000000000001000000000000002b1a10000b0000000000000000000000361a10000c0000000000000000000000000000000000000084501000d077100000000000000000008450100000000000000000000100000000000000421a1000050000000100000000000000bd3410000700000000000000471a1000450000000000000084501000e0771000000000000000000084501000000000000000000001000000000000008c1a10001000000000000000000000007e4c10000e0000000000000000000000000000000000000084501000f077100000000000000000008450100000000000000000000100000000000000003410000c00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000f0771000000000000000000084501000000000000000000001000000000000009c1a10000f00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000f077100000000000000000008450100000000000000000000100000000000000ab1a10000b0000000000000000000000223e10000300000000000000000000000000000000000000845010000078100000000000000000008450100000000000000000000100000000000000b61a10000e0000000000000000000000223e10000300000000000000000000000000000000000000845010001078100000000000000000008450100000000000000000000100000000000000c41a10000f0000000000000000000000d93310000c00000000000000000000000000000000000000845010002078100000000000000000008450100000000000000000000100000000000000d31a10000f00000000000000000000007e4c10000e00000000000000000000000000000000000000845010003078100000000000000000008450100000000000000000000100000000000000e21a10000e0000000000000000000000d93310000c0000000000000000000000000000000000000084501000407810000000000000000000845010000000000000000000010000000c0000000000000001000000410000000c00000000000000010000000d0000000c0000000000000001000000110000000c0000000000000001000000420000000c00000000000000010000000e0000000c0000000000000001000000430000000c0000000000000001000000440000000c0000000000000001000000450000000c0000000000000001000000460000000c0000000000000001000000470000000c0000000000000001000000480000000c000000000000000100000049000000974b100028000000ff1a1000490000007b02000001000000ef4c100023000000ff1a1000490000007b02000001000000000000001c1f100005000000000000006c7b100001000000000000000000000084501000000000000000000000000000d53c10000400000000000000847b100002000000000000000000000084501000000000000000000000000000211f10000600000000000000b47b100003000000000000000000000084501000000000000000000000000000271f10001400000000000000589d1000010000000000000000000000845010000000000000000000000000003b1f10001300000000000000589d1000010000000000000000000000845010000000000000000000000000004e1f10001000000000000000589d1000010000000000000000000000845010000000000000000000000000005e1f10001b00000000000000fc7b100001000000000000000000000084501000000000000000000000000000791f10001700000000000000fc7b100001000000000000000000000084501000000000000000000000000000901f10001a00000000000000fc7b100001000000000000000000000084501000000000000000000000000000aa1f10001b00000000000000147c100001000000000000000000000084501000000000000000000000000000c51f10001b000000000000002c7c100001000000000000000000000084501000000000000000000000000000e01f10001600000000000000447c100001000000000000000000000084501000000000000000000000000000f61f100019000000000000005c7c1000010000000000000000000000845010000000000000000000000000000f2010001a00000000000000147c10000100000000000000000000008450100000000000000000000000000029201000130000000000000084501000000000000000000000000000845010000000000000000000000000003c20100014000000000000008450100000000000000000000000000084501000000000000000000000000000502010000e00000000000000747c100001000000000000000000000084501000000000000000000000000000663d10000500000000000000d93310000c00000000000000872010000a00000000000000bd3410000700000000000000663d10000500000000000000d93310000c00000000000000872010000a00000000000000bd3410000700000000000000d53c10000400000000000000974d10000c00000000000000912010000400000000000000c434100007000000000000008120100006000000000000007e4c10000e000000000000007b2010000600000000000000d93310000c000000000000007320100008000000000000007e4c10000e00000000000000672010000c00000000000000223e10000300000000000000622010000500000000000000223e100003000000000000005e2010000400000000000000973e100004000000a82010001c0000009520100013000000770400000900000000000000062110000600000000000000287d1000010000000000000000000000307d10000100000000000000000000000c2110000e00000000000000388a1000020000000000000000000000387d10000200000000000000000000001a2110000c00000000000000487d1000020000000000000000000000587d10000100000000000000712110000700000012221000380000007821100055000000cd21100045000000763e1000090000007121100007000000262110004b00000000000000663d1000050000000000000084501000000000000000000000000000447f10000300000000000000000000004a22100007000000000000005c7f1000010000000000000000000000747f10000300000000000000000000005122100008000000000000008c7f100001000000000000000000000084501000000000000000000000000000592210000a00000000000000a47f1000010000000000000000000000bc7f1000020000000000000000000000632210001400000000000000cc7f1000020000000000000000000000fc7f10000300000000000000000000007722100014000000000000002c961000010000000000000000000000148010000100000000000000000000008b22100014000000000000002c9610000100000000000000000000001c8010000100000000000000000000009f2210001300000000000000248010000100000000000000000000003c801000010000000000000000000000b22210000d000000000000004c96100001000000000000000000000044801000020000000000000000000000bf22100017000000000000002480100001000000000000000000000054801000010000000000000000000000d622100011000000000000005c80100001000000000000000000000074801000010000000000000021261000300000008450100000000000ea2510003700000000000000fa2410001000000000000000002410000c000000ba251000300000008450100000000000ea2510003700000000000000b42510000600000000000000a24210002300000000000000a82510000c00000000000000002410000c0000002b251000440000006f2510003900000000000000fa2410001000000000000000002410000c000000000000000a25100005000000000000000f2510001c0000005e241000560000008450100000000000b42410004600000038241000260000000c2410002c000000000000009f4210000300000000000000002410000c000000e023100020000000482310004f00000097231000490000002423100024000000000000001a2310000a000000000000002b4e100011000000e7221000330000000028100048000000ed0900000e00000000000000482810000e0000000000000000000000223e1000030000000000000000000000000000000000000084501000788810000000000000000000608710000100000000000000010000000000000056281000150000000000000000000000223e100003000000000000000000000000000000000000008450100068871000000000000000000078871000010000000000000001000000000000006b2810000e00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000c087100000000000000000008087100001000000000000000100000000000000792810000d00000000000000000000008628100007000000000000000000000000000000000000008450100088871000000000000000000098871000010000000000000001000000000000001a2110000c000000000000000000000086281000070000000000000000000000000000000000000084501000a08710000000000000000000b0871000010000000000000001000000000000008d281000110000000000000000000000223e1000030000000000000000000000000000000000000084501000788810000000000000000000b8871000010000000000000001000000000000009e2810000f00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000c08710000000000000000000d087100001000000000000000100000000000000ad2810000c00000000000000000000002b4e1000110000000000000000000000000000000000000084501000a88810000000000000000000d887100002000000000000000100000000000000b92810000a00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000608810000000000000000000e887100001000000000000000100000000000000c3281000140000000100000000000000974d10000c000000000000000f2510001c0000000000000084501000f087100000000000000000000088100001000000000000000100000000000000d72810000a00000000000000000000002b4e1000110000000000000000000000000000000000000084501000a888100000000000000000000888100001000000000000000100000000000000e12810000a0000000100000000000000974d10000c00000000000000974d10000c00000000000000845010009088100000000000000000001088100001000000000000000000000000000000eb2810000d0000000100000000000000974d10000c000000000000002b4e1000110000000000000084501000a888100000000000000000001888100001000000000000000100000000000000f8281000140000000100000000000000974d10000c000000000000002b4e1000110000000000000084501000a8881000000000000000000020881000010000000000000001000000000000000c291000140000000000000000000000d93310000c0000000000000000000000000000000000000084501000288810000000000000000000988710000100000000000000010000000000000020291000130000000000000000000000d93310000c0000000000000000000000000000000000000084501000288810000000000000000000b087100001000000000000000100000000000000332910001200000000000000000000007e4c10000e00000000000000000000000000000000000000845010009088100000000000000000003888100001000000000000000000000000000000452910001300000000000000000000007e4c10000e00000000000000000000000000000000000000845010006088100000000000000000004088100001000000000000000100000000000000582910000a000000000000000000000062291000140000000000000000000000000000000000000084501000488810000000000000000000588810000100000000000000010000000000000076291000070000000100000000000000974d10000c000000000000007e4c10000e000000000000008450100060881000000000000000000070881000010000000000000001000000000000007d2910000a0000000100000000000000974d10000c00000000000000223e10000300000000000000845010007888100000000000000000008888100001000000000000000100000000000000872910000d000000000000000000000094291000020000000000000000000000000000000000000084501000908810000000000000000000a088100001000000000000000000000000000000962910000f0000000000000000000000a5291000280000000000000000000000000000000000000084501000a88810000000000000000000b8881000010000000000000001000000012f10002a0000000c00000000000000010000004a000000b12e100050000000882e1000290000000c00000000000000010000004b000000402e1000480000000c00000000000000010000004c000000ec2d1000540000009e2d10004e0000000c000000000000000100000048000000702d10002e0000009c2c100069000000052d10006b000000852c1000170000000c00000000000000010000004d000000632c1000220000003a2c100029000000122c100028000000ed2b100025000000ac2b1000410000000c000000000000000100000040000000882b100024000000502b1000380000000c000000000000000100000042000000142b10003c0000000c00000000000000010000000f000000d72a10003d0000000c000000000000000100000011000000632a1000740000000c00000000000000010000000d000000492a10001a0000000c00000000000000010000000e000000cd2910007c00000090301000190000004030100048000000bb0100002d00000000301000390000004030100048000000100200002d0000000028100048000000e70900000a000000974b100028000000a93010005d0000005300000001000000ef4c100023000000a93010005d000000530000000100000000000000093210000f00000000000000388a1000020000000000000000000000488a1000030000000000000000000000183210001000000000000000388a100002000000000000000000000084501000000000000000000000000000283210001500000000000000608a1000020000000000000000000000845010000000000000000000000000003d3210000500000000000000708a1000030000000000000000000000888a1000040000000000000000000000423210000e00000000000000a88a100001000000000000000000000084501000000000000000000000000000503210000e00000000000000b08a1000020000000000000000000000c08a10000100000000000000763e100009000000223e100003000000a83210000800000012331000270000003933100040000000223e100003000000043310000e000000763e100009000000223e100003000000fc32100008000000a832100008000000b032100028000000d832100014000000ec321000100000009032100018000000223e1000030000008c321000040000005e3210002e000000974b100028000000793310004a000000cb0000000100000000000000c33310000e0000000000000000000000223e1000030000000000000000000000000000000000000084501000548f10000000000000000000648f100002000000000000000100000000000000d1331000080000000000000000000000d93310000c0000000000000000000000000000000000000084501000748f10000000000000000000848f100001000000000000000100000000000000e53310000f0000000000000000000000d93310000c00000000000000000000000000000000000000845010008c8f100000000000000000009c8f100001000000000000000100000000000000f43310000c0000000000000000000000d93310000c0000000000000000000000000000000000000084501000a48f10000000000000000000b48f100001000000000000000100000000000000003410000c00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000bc8f10000000000000000000cc8f1000010000000000000001000000000000000c3410000a0000000000000000000000223e1000030000000000000000000000000000000000000084501000d48f10000000000000000000845010000000000000000000010000000000000016341000110000000000000000000000223e1000030000000000000000000000000000000000000084501000e48f100000000000000000008450100000000000000000000100000000000000273410000e0000000000000000000000223e1000030000000000000000000000000000000000000084501000f48f100000000000000000008450100000000000000000000100000000000000353410000d0000000000000000000000223e1000030000000000000000000000000000000000000084501000049010000000000000000000149010000100000000000000010000000000000042341000090000000100000000000000223e100003000000000000004b3410004b00000000000000845010001c90100000000000000000002c9010000100000000000000010000000000000096341000110000000000000000000000a73410000800000000000000000000000000000000000000845010003490100000000000000000004490100001000000000000000100000000000000af3410000e0000000100000000000000bd3410000700000000000000c43410000700000000000000845010004c90100000000000000000005c90100001000000000000000100000000000000cb3410000f0000000100000000000000223e10000300000000000000da3410001d00000000000000845010006490100000000000000000008450100000000000000000000100000000000000f73410001800000001000000000000000f3510001300000000000000fc3210000800000000000000845010007490100000000000000000008450100000000000000000000100000000000000223510000c0000000100000000000000223e100003000000000000002e3510001b0000000000000084501000849010000000000000000000845010000000000000000000010000000c00000000000000010000004b000000a837100032000000da3710002f0000000c00000000000000010000004700000062371000460000000c00000000000000010000004e000000163710004c0000000c000000000000000100000049000000da3610003c0000000c00000000000000010000004f0000001a361000510000000c0000000000000001000000500000000c0000000000000001000000510000000c0000000000000001000000520000000c000000000000000100000011000000eb3510002f0000000c000000000000000100000053000000cb351000200000000c00000000000000010000000e00000082351000490000000c00000000000000010000000e00000049351000390000000c00000000000000010000000e0000000c00000000000000010000000d0000000c0000000000000001000000540000007036100019000000903610004a000000ad00000020000000ef4c100023000000793310004a000000cb00000001000000000000005c3b10000f0000000000000048911000040000000000000000000000a89110000400000000000000000000006b3b10001000000000000000c8911000020000000000000000000000f89110000400000000000000000000007b3b10000f000000000000001892100001000000000000000000000030921000010000000000000000000000663d10000500000000000000d93310000c000000000000006b3d10000400000000000000c434100007000000000000006f3d10000b00000000000000c434100007000000000000007a3d10000900000000000000c434100007000000ee3b100044000000323c100006000000d93c10008d000000d13c10000400000000000000e33b10000b00000000000000223e10000300000000000000d53c10000400000000000000fc32100008000000ee3b100044000000323c100006000000383c100099000000d13c10000400000000000000e33b10000b00000000000000223e1000030000008a3b10005900000000000000f13d1000070000000000000064921000020000000000000000000000749210000100000000000000223e100003000000253e100006000000f83d10002a000000000000002b3e10000500000000000000d4921000010000000000000000000000dc921000010000000000000000000000303e10000a00000000000000e4921000010000000000000000000000ec9210000100000000000000973e1000040000007f3e100018000000763e1000090000003a3e10003c000000000000009b3e10000a00000000000000489b1000010000000000000000000000209310000200000000000000a53e100055000000fa3e100022000000974b1000280000001c3f10005a0000002300000001000000974b100028000000763f10005d0000003b00000001000000a040100039000000e040100048000000100200002d000000000000002c4110001200000000000000000000003e4110000a00000000000000000000000000000000000000845010006c94100000000000000000005c94100001000000000000000100000000000000484110001200000000000000000000003e4110000a00000000000000000000000000000000000000845010006c941000000000000000000064941000010000000000000001000000000000005a411000150000000100000000000000223e100003000000000000003e4110000a00000000000000845010006c94100000000000000000007c9410000400000000000000010000005d421000370000001a421000430000000c0000000000000001000000400000006f41100045000000b4411000350000008450100000000000e94110003100000000000000944210000400000000000000f4941000010000000000000000000000845010000000000000000000000000009842100007000000000000000c95100001000000000000000000000084501000000000000000000000000000c54210000800000000000000cd42100010000000000000009f4210000300000000000000a24210002300000000000000e1421000030000000000000000000000974d10000c0000000000000000000000000000000000000084501000709510000000000000000000845010000000000000000000010000000c00000000000000010000001000000000000000984210000700000000000000049610000100000000000000000000001c961000020000000000000000000000e44210000a000000000000002c96100001000000000000000000000044961000010000000000000000000000ee42100011000000000000004c96100001000000000000000000000064961000010000000000000000000000f54310000300000000000000f84310000d0000009443100058000000ec43100009000000000000009f42100003000000000000007d43100017000000224310005b00000000000000154310000d00000000000000973e100004000000ff42100016000000000000000c4410000a00000000000000000000002b4e1000110000000000000000000000000000000000000084501000cc9810000000000000000000dc98100001000000000000000100000000000000164410000d00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000e49810000000000000000000f498100001000000000000000100000000000000234410000c00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000049910000000000000000000fc981000010000000000000001000000000000002f4410000c00000000000000000000003b441000090000000000000000000000000000000000000084501000049910000000000000000000149910000100000000000000010000000000000044441000110000000000000000000000973e10000400000000000000000000000000000000000000845010003c99100000000000000000001c99100002000000000000000000000000000000554410001000000000000000000000007e4c10000e00000000000000000000000000000000000000845010003c99100000000000000000002c99100001000000000000000000000000000000654410000a0000000100000000000000974d10000c00000000000000f84310000d00000000000000845010003c991000000000000000000034991000010000000000000000000000000000006f4410001100000000000000000000007e4c10000e00000000000000000000000000000000000000845010003c99100000000000000000004c9910000100000000000000000000000c00000000000000010000000e000000104610001f0000000c000000000000000100000048000000f14510001f000000d34510001e0000000c00000000000000010000000f000000ab45100028000000ed4410005e0000004b45100060000000bd4410003000000099441000240000000c00000000000000010000000d0000008044100019000000ef4c1000230000001c3f10005a0000002300000001000000ef4c100023000000763f10005d0000003b000000010000005e4710000d000000434710001b0000000a4710003900000006010000010000006b471000100000007b4710000f0000008a471000130000009d4710000f000000ac471000140000006548100036000000c04710005d0000004e01000005000000284810003d000000c04710005d00000055010000050000006548100036000000c04710005d0000006901000005000000c04710005d0000007001000005000000834a10001c000000d84810005f00000051000000030000005f4a100024000000d84810005f0000005900000003000000184a10002c000000d84810005f000000930000004c000000e049100038000000d84810005f000000910000002a000000b849100028000000d84810005f00000092000000320000009049100028000000d84810005f000000940000002c0000005e49100032000000d84810005f000000c8000000030000003749100027000000d84810005f000000d000000004000000b048100028000000d84810005f000000d600000003000000c04a100048000000e70900000a000000104b100045000000c402000036000000000000007c4b10001000000000000000489b10000100000000000000000000008450100000000000000000008c4b10000b000000974b100028000000bf4b1000480000004300000001000000974b100028000000214c100025000000c30900002300000000000000464c10000d0000000000000000000000534c1000210000000000000000000000000000000000000084501000189c100000000000000000008450100000000000000000000100000000000000744c10000a00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000289c10000000000000000000845010000000000000000000010000000c00000000000000010000000e0000000c000000000000000100000055000000ef4c100023000000bf4b100048000000430000000100000000000000124d10000b00000000000000009d1000010000000000000000000000189d10000100000000000000000000001d4d10001200000000000000209d1000010000000000000000000000389d10000100000000000000000000002f4d10001500000000000000409d100001000000000000000000000084501000000000000000000000000000444d10001000000000000000589d1000010000000000000000000000709d1000010000000000000000000000234e100008000000000000002b4e100011000000cc4d10005700000000000000c54d10000700000000000000974d10000c000000a34d10002200000000000000864d10001100000000000000974d10000c000000000000007f4d100007000000000000007e4c10000e000000544d10002b00000000000000004f1000100000000000000084501000000000000000000000000000d09d1000010000000000000000000000104f10000f0000000000000084501000000000000000000000000000d89d10000100000000000000344f1000250000001f4f100015000000704f100019000000904f10006b00000055000000220000001d5010002d0000004a5010000c000000565010000300000059501000110000006a50100017000000ea020000050000008450100020000000a4501000120000000c00000000000000010000005600000096511000060000009c511000220000007e511000180000006909000005000000be51100016000000d45110000d0000007e511000180000006f09000005000000ff5110000b000000fa5d100016000000e151100001000000e951100016000000da07000009000000d85d10000e000000e65d100004000000ea5d100010000000e151100001000000e951100016000000de07000005000000985d10002b000000c35d1000150000005901000015000000ff5110000b0000000a5210002600000030521000080000003852100006000000e151100001000000e951100016000000eb070000050000008450100000000000565210000200000040521000160000003f0400001100000040521000160000003304000028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20905710004a000000e059100000020000e05b10003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202705710002000000027000000190000007057100020000000280000002000000070571000200000002a0000001900000070571000200000002b0000001800000070571000200000002c000000200000008450100000000000c35d1000150000000e040000050000000087a401046e616d6501fea301fd01000c6578745f74776f785f31323801146578745f6765745f73746f726167655f696e746f020f6578745f7365745f73746f7261676503116578745f636c6561725f73746f7261676504106578745f73746f726167655f726f6f7405186578745f73746f726167655f6368616e6765735f726f6f74060e6578745f7072696e745f75746638070d6578745f7072696e745f68657808126578745f6578697374735f73746f72616765090e6578745f626c616b65325f3235360a126578745f656432353531395f7665726966790b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f4b3c616c6c6f633a3a7261775f7665633a3a5261775665633c542c20413e3e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68306335383537336233666339313863361034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a683736313165636638326261323263386411373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a626c6f636b5f686173683a3a6836656462636435313038386265663164120c5f5f727573745f616c6c6f63130e5f5f727573745f7265616c6c6f63140e5f5f727573745f6465616c6c6f63152e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68333064336263666532633938336538331608727573745f6f6f6d17373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a696e697469616c6973653a3a68363132386536666434323037376332651829636f72653a3a70616e69636b696e673a3a70616e69633a3a6863326636313633356662333339303763193a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6163636f756e745f6e6f6e63653a3a68383933643733643262643330633736371a3a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6465706f7369745f6576656e743a3a68393163636136363435643066633733321b5d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68303365323032366234343738626265611c673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68343233343363336664316337643133351d92016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68343034636664616463313833373033621e403c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68356630653061353162393763353036391f453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a686466376462623434663632323731303220453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68333232633333366136356564366437382130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a683030633938313632396363656364383222703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683661333237303537393464376162663123353c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a66696e616c6973653a3a6839656236643739333534663236623563244e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834323861656637666136353432613161256c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a6831303836376261346632633232323065266c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68386536316564633261613539316562662780013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c27612c20486173682c20417574686f7269747949643e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a68373639306563383738323734663864622834636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a6837323832633139396636383465663439292e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a68303966366336353362313130656464302a303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a68623164396433616535303232653135332b323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68373163353338653536396262326365652c2d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a68313561343035366134636336316131332d423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68366339663938396565626564653030612e4473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a68333862303837356266366235613663342f493c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6839346636663534663730373039663863304e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832643237383561313234366538626362313e3c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683234336361363461386438636534353532433c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a686433316539333839373335323364313333483c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68396563636261313861313531616133663430636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6836343366373435363239336232356532352d636f72653a3a736c6963653a3a736f72743a3a726563757273653a3a68313666623565303766663534626164303634636f72653a3a736c6963653a3a736f72743a3a627265616b5f7061747465726e733a3a6830666232336265373966653138396632373c636f72653a3a736c6963653a3a736f72743a3a7061727469616c5f696e73657274696f6e5f736f72743a3a68396366643631323462363966356635353836636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68383563363065383762626564343936663934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68316231353265316536316338613734393a36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68313464346263633239346337353430373b2e636f72653a3a736c6963653a3a736f72743a3a68656170736f72743a3a68666463373536306130323337326662643c3d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343938376465363332323033313132643d363c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a656e756d5f7365743a3a68666465363866383038643363663533383eb00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c2045787472696e7369633e3e3a3a6465636f64653a3a68346434343733333134636336373938353f7c3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c20486173682c204469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838323038663738393864313532613564405d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686437373230363438333436663235386441b8013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68323732303366656333393639356230324230636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a686266376261376262363161333263613043733c284f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a68626430343732616431633233626364624486013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861346536663636303132656461653166454e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863343538656361303236663139363038464e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68353436386334383731613439316433344782023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c20616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a683432343862663331623030323936323648b9033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970652c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a683530303339323062636330656639316649663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68316562353765373066343736656233314ad2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a68396538646134346233353735373434314ba6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a68346630383636356163363835663439624c5c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746172745f656c656374696f6e3a3a68383163363530646534373133613563304d3c3c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68623731336466386638356239336433664e413c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633662623334613734303236363239344f463c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839333338386265353835333761636538503e3c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683964613836646338623266323732323151433c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a686261646334363936663433646462356652483c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6832396164343363323735326564653561536e3c73726d6c5f74696d657374616d703a3a5f5f47657442797465537472756374426c6f636b506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864636164343232323538346639623462544a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68353934346632386563393466383261385539636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a6866343135636637313332346463613636564b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a683331613339646433326463303037363957423c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a686561343639613064623535363331386258473c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6838636238383365383530643232643061593d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68343639373231636537366630663238615a4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68633861373863326635323733343064645b4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a68306566616139366164616231616430365c4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a68663631343438336565636639363230315d486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666565733a3a68643864643734646231353836353230325e486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a68616263376662633637356464653130335f4d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6864353365323336373737386563373063604c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6864313036326438383032333531303234614b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a68613037363063373461353639313836656284013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68666661343766306439346130633433646382013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a68373663386139383364353730353666366496013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a456e737572654163636f756e744c69717569643c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f6163636f756e745f6c69717569643a3a68663738646237633633306565646635326583013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68323737333031643362616665373831636685013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a683931366134336562663336653436363767433c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f72657365727665645f62616c616e63653a3a6832363533616636363761623434616361687c3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a6839313336343637623638313737623537693f3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f667265655f62616c616e63653a3a68653832343332353666623266393662376a7d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7265776172643a3a68363139346437353934663739373662346b7e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a68666337356630373630393163333363346c80013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a68633966383332663834646132633230376d483c492061732073725f7072696d6974697665733a3a7472616974733a3a436865636b457175616c3e3a3a636865636b5f657175616c3a3a68666230623739613434636230366462646e633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68383863333831626337663436363630376fb1013c73726d6c5f7374616b696e673a3a4e6f6d696e6174696e673c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a6835333966386361393666633332356238707c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a683062356630343631636237336332383871593c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a69735f636f756e63696c6f723a3a6838623535626364336534363736316364723c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6e6f6d696e61746f72735f666f723a3a6831353339633237343761353861363965733d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6866303762376336636131326665306432743d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862346363303337363535353737663638753d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6837393234313530663238616335663330765c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f70726f636573735f766f74653a3a6862333031393038373236663731666234773b3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6170706c795f756e7374616b653a3a683161363962383639616330616338623378423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a683738643662343638636661363930346579683c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c20753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68313833376336633337316463373363327a443c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63757272656e745f6e6f6d696e61746f72735f666f723a3a68613463623039353430643036646564327b30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68363432313561366332313066353364327c583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313034396661303833666539636236317d4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68316331396430626666656537303663397e733c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68623636643132633339333533646132357f5e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68363535366237633130373765663235358001135f5f727573745f616c6c6f635f7a65726f656481015d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683334303830326338316365316134376282015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68313731353562326531333436363662378301673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68613732343566616437383139346137308401397061726974795f636f6465633a3a636f6465633a3a4f75747075743a3a707573685f627974653a3a68363366303037613635383464653334328501763c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68376164613530386130623364653035348601c8013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c207375627374726174655f7072696d6974697665733a3a617574686f726974795f69643a3a45643235353139417574686f7269747949643e3e3e3a3a66726f6d3a3a686436636634373134306236373837653687013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68663563363734383234666462656265378801d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68366133313864303766373230306636648901663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a68303434333264356238356232613066368a01663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68376464616334323565303535643362658b018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636437353834353264393834353637368c018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636333633436616632386639646464648d018d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68356366356439336266326164346432368e0186013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68643335653836306664373662356465618f0190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686337343363336662393363303064336290018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68366538333530356535363536623164309101613c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633736386235336336373366346532669201f6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970653e2c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a683637373335366235353637383431393693015f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a74656172646f776e5f656c656374696f6e3a3a68353963366562346238653738346333369401623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a686634363363353938306434663338616395015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a64726f705f6170706c6963616e74733a3a68323561646637623966326164383532669601673c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c20503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a686661373032363863336538303861646397012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a686339663161633666323565303865353798014b3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e3e3a3a696e736572743a3a686235383461633164653866303463393999012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a68643532353637663964376132643062329a01733c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68386361356439306366656239376434659b015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68636664303764626536303563323461389c013c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68666163393531613439383835343433339d01413c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68356138326535666262663162353935639e01463c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68353337393430326235376236656635329f01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861653530613534326163643863336630a001723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836383062396639363838666531393566a101743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861386465323664313737323265343062a201753c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72507265666572656e6365733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861333062363566646339336435353733a301703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836666664316363363664636166353737a4016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865353365626538663237646530356465a501763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865363434626238663330663562613962a601673c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837386633353931666565393463316461a7018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836336438653862366339623435623032a8018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830613266373733303834343863613430a90190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834376464343462393361326266643761aa0193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865323530636337383362316166653764ab018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865306365336164356338323164383439ac018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832633161313663373665353332613539ad018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834633163333762383137333232303239ae0191013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863333835323138303363633737396162af018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838623437373837663334383134643532b00190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839636564343437343739653562313033b101623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6838373961623763663136333961393136b2015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6839663666636631336530366433636463b3018f013c73726d6c5f666565733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a43686172676542797465734665653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6368617267655f626173655f62797465735f6665653a3a6837313636363237393862643537316265b4013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a7365745f76616c696461746f72733a3a6863366135333863613764653930376362b5013e3c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862383263303566373533613364343362b601433c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6838333333393834636239393737343566b701703c73726d6c5f666565733a3a5f5f476574427974655374727563745472616e73616374696f6e426173654665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832366463366263396637346563313436b801393c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866653037373161633537643930346261b9013e3c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862373237653266383365343738396263ba01433c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6832346663653462646561663266396134bb01613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839363135616234376338356537633465bc013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6838316638626431383662326365663039bd01413c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6834626536363065353635343637633032be01463c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6835336336663832663632326134313431bf01303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6833383863396463313337316335633734c00149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6833663366306565633538306132636466c10135636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a6866616430656266653761663133383264c201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6838613831383761386465613762653861c3013d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a6865346639386630306138326336636161c4018001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a6831366166346432353266386531336561c5012e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a6839383835393262633961303666666639c601303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6864393166393237396264656337333933c7012c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6864373232353135613866363031646362c801477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6835383333643861393638393331663961c901623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6833616530326663623633323863353330ca01523c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c27612c204b2c20563e3e3a3a696e736572743a3a6833396661383661616362353233363235cb010c436f72655f76657273696f6ecc0110436f72655f617574686f726974696573cd0112436f72655f657865637574655f626c6f636bce014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6862396630343164663637376562383166cf016c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6835366462353531393836376332663636d001753c73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c20426c6f636b2c20436f6e746578742c205061796d656e742c20416c6c4d6f64756c65733e3e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6862336639326138616139666533616163d101483c636f72653a3a666d743a3a417267756d656e74733c275f3e20617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6861303534656238346561376365353037d20115436f72655f696e697469616c6973655f626c6f636bd301114d657461646174615f6d65746164617461d401603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6833373631663237373135396232663561d501433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862363165366638376564316432633434d601633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862366332386139643335626330666534d701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834306133346562656235363738373562d801633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839363266336536363035313535613262d9011c426c6f636b4275696c6465725f6170706c795f65787472696e736963da011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636bdb0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373dc015d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6866353130643937346462643934323864dd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6861343134363738613430336532326137de011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473df0118426c6f636b4275696c6465725f72616e646f6d5f73656564e0012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ee101c5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a6865636438396662336636313662343566e20115417572614170695f736c6f745f6475726174696f6ee301653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6836616466363034323261343638613162e4018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831346463633265333134663865663035e501603c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6832626134363130623231663336393232e6015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6839633461396331396139636433353836e701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6838663164656438363231616234303261e801423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865313036353439663466663137396235e90111727573745f626567696e5f756e77696e64ea010a5f5f72675f616c6c6f63eb010c5f5f72675f6465616c6c6f63ec010c5f5f72675f7265616c6c6f63ed01115f5f72675f616c6c6f635f7a65726f6564ee01313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6864386539623836393433356634353335ef014a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839613861313363333436653665613164f001323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6864323935306462613062303964643132f10149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6864333432376335346434656539383865f20123636f72653a3a666d743a3a77726974653a3a6831626538336266333463393837633365f30134636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6836363738306365363339383362303937f401066d656d736574f501066d656d637079f601076d656d6d6f7665f701066d656d636d70f801095f5f75646976746933f901085f5f6d756c746933fa013f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a6833313639313463633232636361303038fb013f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a6830663661613130316134636634623566fc010c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33342e302d6e696768746c79202865353434393437323720323031392d30322d313329" + }, + "indices": { + "ids": [ + "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f" + ] + }, + "balances": { + "existentialDeposit": 0, + "transferFee": 0, + "creationFee": 0, + "balances": [ + [ + "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", + 1000000000 + ] + ], + "vesting": [] + }, + "session": { + "validators": [ + "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4" + ], + "sessionLength": 50 + }, + "staking": { + "validatorCount": 10, + "minimumValidatorCount": 1, + "sessionsPerEra": 12, + "sessionReward": 2065, + "offlineSlash": 1000000, + "offlineSlashGrace": 4, + "bondingDuration": 600, + "invulnerables": [ + "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4" + ], + "currentEra": 0, + "intentions": [ + "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4" + ], + "currentSessionReward": 0, + "currentOfflineSlash": 0 + }, + "fees": { + "transactionBaseFee": 0, + "transactionByteFee": 0 + }, + "sudo": { + "key": "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f" + }, + "proposals": { + "approvalQuorum": 60, + "minStake": 200, + "cancellationFee": 50, + "rejectionFee": 100, + "votingPeriod": 28800, + "nameMaxLen": 32, + "descriptionMaxLen": 10000, + "wasmCodeMaxLen": 2000000 + }, + "election": { + "autoStart": false, + "announcingPeriod": 43200, + "votingPeriod": 14400, + "revealingPeriod": 14400, + "councilSize": 6, + "candidacyLimit": 25, + "minCouncilStake": 1000, + "newTermDuration": 201600, + "minVotingStake": 100 + }, + "council": { + "activeCouncil": [], + "termEndsAt": 1 + } + } + } +} \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs index f160eb2ad4..afea1d58cf 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -23,7 +23,9 @@ pub enum Alternative { /// Whatever the current runtime is, with simple Alice/Bob auths. LocalTestnet, /// Staging testnet - StagingTestnet + StagingTestnet, + /// Sparta testnet + Sparta, } impl Alternative { @@ -69,19 +71,26 @@ impl Alternative { None ), Alternative::StagingTestnet => staging_testnet_config(), + Alternative::Sparta => sparta_config()?, }) } pub(crate) fn from(s: &str) -> Option { match s { "dev" => Some(Alternative::Development), - "" | "local" => Some(Alternative::LocalTestnet), + "local" => Some(Alternative::LocalTestnet), "staging" => Some(Alternative::StagingTestnet), + "" | "sparta" => Some(Alternative::Sparta), _ => None, } } } +/// Sparta testnet generator +pub fn sparta_config() -> Result { + ChainSpec::from_embedded(include_bytes!("../res/sparta.json")) +} + /// Staging testnet config. pub fn staging_testnet_config() -> ChainSpec { let boot_nodes = vec![ From 7ae165748c777c36dbe3fd95d4c8e4e190bd4b49 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Feb 2019 01:06:01 +0200 Subject: [PATCH 167/350] correctly reject invalid extrinsics --- runtime/src/governance/council.rs | 2 + runtime/src/governance/election.rs | 95 ++++++++++++++++------------- runtime/src/governance/proposals.rs | 11 +--- 3 files changed, 59 insertions(+), 49 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index 29afcafcda..b7a0329f7a 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -41,6 +41,7 @@ decl_storage! { decl_event!( pub enum Event where ::BlockNumber { CouncilTermEnded(BlockNumber), + NewCouncilTermStarted(BlockNumber), } ); @@ -50,6 +51,7 @@ impl CouncilElected>, T::BlockNumber> let next_term_ends_at = >::block_number() + term; >::put(next_term_ends_at); + Self::deposit_event(RawEvent::NewCouncilTermStarted(next_term_ends_at)); } } diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index d3b0aa2da1..ba88d58aab 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -114,7 +114,10 @@ decl_storage! { /// Event for this module. decl_event!( - pub enum Event where ::BlockNumber { + pub enum Event where + ::BlockNumber, + ::AccountId, + ::Hash { /// A new election started ElectionStarted(), AnnouncingStarted(u32), @@ -124,6 +127,9 @@ decl_event!( RevealingStarted(), RevealingEnded(), CouncilElected(BlockNumber), + Applied(AccountId), + Voted(AccountId, Hash), + Revealed(AccountId, Hash, AccountId), } ); @@ -643,60 +649,63 @@ decl_module! { // Member can apply during announcing stage only. On first call a minimum stake will need to be provided. // Member can make subsequent calls during announcing stage to increase their stake. - fn apply(origin, stake: BalanceOf) -> Result { + fn apply(origin, stake: BalanceOf) { let sender = ensure_signed(origin)?; ensure!(Self::is_member(sender.clone()), "Only members can apply to be on council"); - // Can only apply during announcing stage - if let Some(stage) = Self::stage() { - match stage { - ElectionStage::Announcing(_) => { - // minimum stake on first attempt to apply - if !>::exists(&sender) { - ensure!(stake >= Self::min_council_stake(), "minimum stake must be provided"); - } - - Self::try_add_applicant(sender, stake) - }, - _ => Err("election not in announcing stage") - } - } else { - Err("election not running") + let stage = Self::stage(); + ensure!(Self::stage().is_some(), "election not running"); + + let is_announcing = match stage.unwrap() { + ElectionStage::Announcing(_) => true, + _ => false + }; + ensure!(is_announcing, "election not in announcing stage"); + + // minimum stake on first attempt to apply + if !>::exists(&sender) { + ensure!(stake >= Self::min_council_stake(), "minimum stake must be provided"); } + + Self::try_add_applicant(sender.clone(), stake)?; + + Self::deposit_event(RawEvent::Applied(sender)); } - fn vote(origin, commitment: T::Hash, stake: BalanceOf) -> Result { + fn vote(origin, commitment: T::Hash, stake: BalanceOf) { let sender = ensure_signed(origin)?; ensure!(Self::is_member(sender.clone()), "Only members can vote for an applicant"); - // Can only vote during election voting stage - if let Some(stage) = Self::stage() { - match stage { - ElectionStage::Voting(_) => { - ensure!(stake >= Self::min_voting_stake(), "voting stake too low"); - Self::try_add_vote(sender, stake, commitment) - }, - _ => Err("election not in voting stage") - } - } else { - Err("election not running") - } + let stage = Self::stage(); + ensure!(Self::stage().is_some(), "election not running"); + + let is_voting = match stage.unwrap() { + ElectionStage::Voting(_) => true, + _ => false + }; + ensure!(is_voting, "election not in voting stage"); + + ensure!(stake >= Self::min_voting_stake(), "voting stake too low"); + Self::try_add_vote(sender.clone(), stake, commitment)?; + Self::deposit_event(RawEvent::Voted(sender, commitment)); } - fn reveal(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) -> Result { + fn reveal(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) { let sender = ensure_signed(origin)?; ensure!(salt.len() <= 32, "salt too large"); // at most 256 bits salt - // Can only reveal vote during election revealing stage - if let Some(stage) = Self::stage() { - match stage { - ElectionStage::Revealing(_) => Self::try_reveal_vote(sender, commitment, vote, salt), - _ => Err("election not in revealing stage") - } - } else { - Err("election not running") - } + let stage = Self::stage(); + ensure!(Self::stage().is_some(), "election not running"); + + let is_revealing = match stage.unwrap() { + ElectionStage::Revealing(_) => true, + _ => false + }; + ensure!(is_revealing, "election not in revealing stage"); + + Self::try_reveal_vote(sender.clone(), commitment, vote.clone(), salt)?; + Self::deposit_event(RawEvent::Revealed(sender, commitment, vote)); } fn set_stage_announcing(ends_at: T::BlockNumber) -> Result { @@ -799,7 +808,11 @@ decl_module! { impl council::CouncilTermEnded for Module { fn council_term_ended() { if Self::auto_start() { - Self::start_election(>::active_council()); + if Self::start_election(>::active_council()).is_ok() { + // emit ElectionStarted + } else { + // emit ElectionFailedStart + } } } } diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 4112c5e203..06ed567721 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -215,7 +215,7 @@ decl_module! { name: Vec, description: Vec, wasm_code: Vec - ) -> Result { + ) { let proposer = ensure_signed(origin)?; ensure!(Self::is_member(proposer.clone()), MSG_ONLY_MEMBERS_CAN_PROPOSE); @@ -262,15 +262,13 @@ decl_module! { if Self::is_councilor(&proposer) { Self::_process_vote(proposer, proposal_id, Approve)?; } - - Ok(()) } /// Use next code to create a proposal from Substrate UI's web console: /// ```js /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.voteOnProposal(1, { option: "Approve", _type: "VoteKind" }) }).tie(console.log) /// ``` - fn vote_on_proposal(origin, proposal_id: u32, vote: VoteKind) -> Result { + fn vote_on_proposal(origin, proposal_id: u32, vote: VoteKind) { let voter = ensure_signed(origin)?; ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); @@ -286,12 +284,11 @@ decl_module! { ensure!(did_not_vote_before, MSG_YOU_ALREADY_VOTED); Self::_process_vote(voter, proposal_id, vote)?; - Ok(()) } // TODO add 'reason' why a proposer wants to cancel (UX + feedback)? /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. - fn cancel_proposal(origin, proposal_id: u32) -> Result { + fn cancel_proposal(origin, proposal_id: u32) { let proposer = ensure_signed(origin)?; ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); @@ -310,8 +307,6 @@ decl_module! { Self::_update_proposal_status(proposal_id, Cancelled)?; Self::deposit_event(RawEvent::ProposalCanceled(proposer, proposal_id)); - - Ok(()) } // Called on every block From 01d1e3df91a78cf07d0359710460a2f104c7303f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Feb 2019 13:37:37 +0200 Subject: [PATCH 168/350] proposal veto --- runtime/src/governance/proposals.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 06ed567721..b5b4d32a18 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -143,6 +143,9 @@ decl_event!( /// * Hash - hash of wasm code of runtime update. RuntimeUpdated(u32, Hash), + + /// Root cancelled proposal + ProposalVeto(u32), } ); @@ -315,6 +318,20 @@ decl_module! { print(e); } } + + /// Cancel a proposal and return stake without slashing + fn veto(proposal_id: u32) -> Result { + ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); + let proposal = Self::proposals(proposal_id); + ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); + + let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); + + Self::_update_proposal_status(proposal_id, Cancelled)?; + + Self::deposit_event(RawEvent::ProposalVeto(proposal_id)); + Ok(()) + } } } From 6bded5e0cae7b518ad5287198d69c117e5bb705a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Feb 2019 21:03:20 +0200 Subject: [PATCH 169/350] rename veto event and method --- runtime/src/governance/proposals.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index b5b4d32a18..c10c77d432 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -145,7 +145,7 @@ decl_event!( RuntimeUpdated(u32, Hash), /// Root cancelled proposal - ProposalVeto(u32), + ProposalVetoed(u32), } ); @@ -320,7 +320,7 @@ decl_module! { } /// Cancel a proposal and return stake without slashing - fn veto(proposal_id: u32) -> Result { + fn veto_proposal(proposal_id: u32) -> Result { ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposals(proposal_id); ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); @@ -329,7 +329,7 @@ decl_module! { Self::_update_proposal_status(proposal_id, Cancelled)?; - Self::deposit_event(RawEvent::ProposalVeto(proposal_id)); + Self::deposit_event(RawEvent::ProposalVetoed(proposal_id)); Ok(()) } } From 38bd75b6ad544283c1264d430e711a4dcc28af91 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Feb 2019 21:18:41 +0200 Subject: [PATCH 170/350] fix dispatchable veto_proposal() signature --- runtime/src/governance/proposals.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index c10c77d432..22562058fd 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -320,7 +320,7 @@ decl_module! { } /// Cancel a proposal and return stake without slashing - fn veto_proposal(proposal_id: u32) -> Result { + fn veto_proposal(proposal_id: u32) { ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); let proposal = Self::proposals(proposal_id); ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); @@ -330,7 +330,6 @@ decl_module! { Self::_update_proposal_status(proposal_id, Cancelled)?; Self::deposit_event(RawEvent::ProposalVetoed(proposal_id)); - Ok(()) } } } From 6f49bf9d481fc0c8f17ae5763dd309cca63c41da Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Feb 2019 21:27:22 +0200 Subject: [PATCH 171/350] fix dispatchable call signatures in decl_module --- runtime/src/governance/council.rs | 9 +++---- runtime/src/governance/election.rs | 41 ++++++++++-------------------- 2 files changed, 17 insertions(+), 33 deletions(-) diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs index b7a0329f7a..f30d7c9b37 100644 --- a/runtime/src/governance/council.rs +++ b/runtime/src/governance/council.rs @@ -92,7 +92,7 @@ decl_module! { } /// Adds a zero staked council member - fn add_council_member(account: T::AccountId) -> Result { + fn add_council_member(account: T::AccountId) { ensure!(!Self::is_councilor(&account), "cannot add same account multiple times"); let seat = Seat { member: account, @@ -102,24 +102,21 @@ decl_module! { // add member to existing council >::mutate(|council| council.push(seat)); - Ok(()) } - fn remove_council_member(account_to_remove: T::AccountId) -> Result { + fn remove_council_member(account_to_remove: T::AccountId) { ensure!(Self::is_councilor(&account_to_remove), "account is not a councilor"); let filtered_council: Seats> = Self::active_council() .into_iter() .filter(|c| c.member != account_to_remove) .collect(); >::put(filtered_council); - Ok(()) } /// Set blocknumber when council term will end - fn set_term_ends_at(ends_at: T::BlockNumber) -> Result { + fn set_term_ends_at(ends_at: T::BlockNumber) { ensure!(ends_at > >::block_number(), "must set future block number"); >::put(ends_at); - Ok(()) } } } diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs index 622cb5c51c..282247e59f 100644 --- a/runtime/src/governance/election.rs +++ b/runtime/src/governance/election.rs @@ -708,73 +708,62 @@ decl_module! { Self::deposit_event(RawEvent::Revealed(sender, commitment, vote)); } - fn set_stage_announcing(ends_at: T::BlockNumber) -> Result { + fn set_stage_announcing(ends_at: T::BlockNumber) { ensure!(ends_at > >::block_number(), "must end at future block number"); >::put(ElectionStage::Announcing(ends_at)); - Ok(()) } - fn set_stage_revealing(ends_at: T::BlockNumber) -> Result { + fn set_stage_revealing(ends_at: T::BlockNumber) { ensure!(ends_at > >::block_number(), "must end at future block number"); >::put(ElectionStage::Revealing(ends_at)); - Ok(()) } - fn set_stage_voting(ends_at: T::BlockNumber) -> Result { + fn set_stage_voting(ends_at: T::BlockNumber) { ensure!(ends_at > >::block_number(), "must end at future block number"); >::put(ElectionStage::Voting(ends_at)); - Ok(()) } - fn set_param_announcing_period(period: T::BlockNumber) -> Result { + fn set_param_announcing_period(period: T::BlockNumber) { ensure!(!Self::is_election_running(), "cannot change params during election"); ensure!(!period.is_zero(), "period cannot be zero"); >::put(period); - Ok(()) } - fn set_param_voting_period(period: T::BlockNumber) -> Result { + fn set_param_voting_period(period: T::BlockNumber) { ensure!(!Self::is_election_running(), "cannot change params during election"); ensure!(!period.is_zero(), "period cannot be zero"); >::put(period); - Ok(()) } - fn set_param_revealing_period(period: T::BlockNumber) -> Result { + fn set_param_revealing_period(period: T::BlockNumber) { ensure!(!Self::is_election_running(), "cannot change params during election"); ensure!(!period.is_zero(), "period cannot be zero"); >::put(period); - Ok(()) } - fn set_param_min_council_stake(amount: BalanceOf) -> Result { + fn set_param_min_council_stake(amount: BalanceOf) { ensure!(!Self::is_election_running(), "cannot change params during election"); >::put(amount); - Ok(()) } - fn set_param_new_term_duration(duration: T::BlockNumber) -> Result { + fn set_param_new_term_duration(duration: T::BlockNumber) { ensure!(!Self::is_election_running(), "cannot change params during election"); ensure!(!duration.is_zero(), "new term duration cannot be zero"); >::put(duration); - Ok(()) } - fn set_param_council_size(council_size: u32) -> Result { + fn set_param_council_size(council_size: u32) { ensure!(!Self::is_election_running(), "cannot change params during election"); ensure!(council_size > 0, "council size cannot be zero"); ensure!(council_size <= Self::candidacy_limit(), "council size cannot greater than candidacy limit"); >::put(council_size); - Ok(()) } - fn set_param_candidacy_limit(limit: u32) -> Result { + fn set_param_candidacy_limit(limit: u32) { ensure!(!Self::is_election_running(), "cannot change params during election"); ensure!(limit >= Self::council_size(), "candidacy limit cannot be less than council size"); >::put(limit); - Ok(()) } - fn set_param_min_voting_stake(amount: BalanceOf) -> Result { + fn set_param_min_voting_stake(amount: BalanceOf) { ensure!(!Self::is_election_running(), "cannot change params during election"); >::put(amount); - Ok(()) } - fn force_stop_election() -> Result { + fn force_stop_election() { ensure!(Self::is_election_running(), "only running election can be stopped"); let mut votes = Vec::new(); @@ -790,12 +779,10 @@ decl_module! { &empty_council, false /* do not unlock transferable stakes */ ); - - Ok(()) } - fn force_start_election() -> Result { - Self::start_election(>::active_council()) + fn force_start_election() { + Self::start_election(>::active_council())?; } fn set_auto_start (flag: bool) { From e791bdf4ac25a4ae67d6ef3706c986a452649d6c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Feb 2019 00:04:48 +0200 Subject: [PATCH 172/350] memo module --- runtime/src/lib.rs | 4 ++++ runtime/src/memo.rs | 29 +++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 runtime/src/memo.rs diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 9ee53424a2..35b28f0359 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -16,6 +16,7 @@ extern crate parity_codec_derive; pub mod governance; use governance::{election, council, proposals}; +mod memo; use rstd::prelude::*; #[cfg(feature = "std")] @@ -219,6 +220,8 @@ impl governance::council::Trait for Runtime { type CouncilTermEnded = (CouncilElection,); } +impl memo::Trait for Runtime {} + construct_runtime!( pub enum Runtime with Log(InternalLog: DigestItem) where Block = Block, @@ -238,6 +241,7 @@ construct_runtime!( Proposals: proposals::{Module, Call, Storage, Event, Config}, CouncilElection: election::{Module, Call, Storage, Event, Config}, Council: council::{Module, Call, Storage, Event, Config}, + Memo: memo::{Module, Call, Storage}, } ); diff --git a/runtime/src/memo.rs b/runtime/src/memo.rs new file mode 100644 index 0000000000..0d124fce86 --- /dev/null +++ b/runtime/src/memo.rs @@ -0,0 +1,29 @@ +#![cfg_attr(not(feature = "std"), no_std)] + +use srml_support::{StorageMap, dispatch::Result, decl_module, decl_storage, ensure}; +use srml_support::traits::{Currency}; +use runtime_primitives::traits::{Zero}; +use system::{self, ensure_signed}; +use rstd::prelude::*; +use crate::governance::GovernanceCurrency; + +pub trait Trait: system::Trait + GovernanceCurrency {} + +decl_storage! { + trait Store for Module as Memo { + Memo get(memo) : map T::AccountId => Vec; + } +} + +decl_module! { + pub struct Module for enum Call where origin: T::Origin { + fn set_memo(origin, memo: Vec) { + let sender = ensure_signed(origin)?; + + ensure!(!T::Currency::total_balance(&sender).is_zero(), "account must have a balance"); + ensure!(memo.len() as u32 <= 4096, "memo too long"); + + >::insert(sender, memo); + } + } +} From f07348b760943bb09b0fa3a2a634644bb73b1272 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Feb 2019 22:02:45 +0200 Subject: [PATCH 173/350] add event and max length to memo --- runtime/src/lib.rs | 6 ++++-- runtime/src/memo.rs | 22 +++++++++++++++++----- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 35b28f0359..5975ea98d4 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -220,7 +220,9 @@ impl governance::council::Trait for Runtime { type CouncilTermEnded = (CouncilElection,); } -impl memo::Trait for Runtime {} +impl memo::Trait for Runtime { + type Event = Event; +} construct_runtime!( pub enum Runtime with Log(InternalLog: DigestItem) where @@ -241,7 +243,7 @@ construct_runtime!( Proposals: proposals::{Module, Call, Storage, Event, Config}, CouncilElection: election::{Module, Call, Storage, Event, Config}, Council: council::{Module, Call, Storage, Event, Config}, - Memo: memo::{Module, Call, Storage}, + Memo: memo::{Module, Call, Storage, Event}, } ); diff --git a/runtime/src/memo.rs b/runtime/src/memo.rs index 0d124fce86..43892a725e 100644 --- a/runtime/src/memo.rs +++ b/runtime/src/memo.rs @@ -1,29 +1,41 @@ #![cfg_attr(not(feature = "std"), no_std)] -use srml_support::{StorageMap, dispatch::Result, decl_module, decl_storage, ensure}; +use srml_support::{StorageMap, dispatch::Result, decl_module, decl_storage, decl_event, ensure}; use srml_support::traits::{Currency}; use runtime_primitives::traits::{Zero}; use system::{self, ensure_signed}; use rstd::prelude::*; use crate::governance::GovernanceCurrency; -pub trait Trait: system::Trait + GovernanceCurrency {} +pub trait Trait: system::Trait + GovernanceCurrency { + type Event: From> + Into<::Event>; +} decl_storage! { trait Store for Module as Memo { Memo get(memo) : map T::AccountId => Vec; + MaxMemoLength get(max_memo_length) : u32 = 4096; + } +} + +decl_event! { + pub enum Event where ::AccountId { + MemoUpdated(AccountId), } } decl_module! { pub struct Module for enum Call where origin: T::Origin { - fn set_memo(origin, memo: Vec) { + fn deposit_event() = default; + + fn update_memo(origin, memo: Vec) { let sender = ensure_signed(origin)?; ensure!(!T::Currency::total_balance(&sender).is_zero(), "account must have a balance"); - ensure!(memo.len() as u32 <= 4096, "memo too long"); + ensure!(memo.len() as u32 <= Self::max_memo_length(), "memo too long"); - >::insert(sender, memo); + >::insert(sender.clone(), memo); + Self::deposit_event(RawEvent::MemoUpdated(sender)); } } } From ccdf6f17a1c75daafd569cf04eabb687c98eb91f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 26 Feb 2019 18:33:10 +0200 Subject: [PATCH 174/350] live testnet 1 --- Cargo.lock | 6 +-- Cargo.toml | 2 +- res/joy_testnet_1.json | 69 +++++++++++++++++++++++++++++ res/sparta.json | 98 ----------------------------------------- runtime/Cargo.toml | 2 +- runtime/wasm/Cargo.toml | 2 +- src/chain_spec.rs | 36 +++++++-------- 7 files changed, 93 insertions(+), 122 deletions(-) create mode 100644 res/joy_testnet_1.json delete mode 100644 res/sparta.json diff --git a/Cargo.lock b/Cargo.lock index ce42d2cc09..534b6fe8e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1013,14 +1013,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "joystream-node" -version = "0.10.0" +version = "0.10.1" dependencies = [ "ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 0.9.1", + "joystream-node-runtime 1.0.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1044,7 +1044,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "0.9.1" +version = "1.0.0" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 521da0010e..f3282e5cc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '0.10.0' +version = '0.10.1' [[bin]] name = 'joystream-node' diff --git a/res/joy_testnet_1.json b/res/joy_testnet_1.json new file mode 100644 index 0000000000..df232c2952 --- /dev/null +++ b/res/joy_testnet_1.json @@ -0,0 +1,69 @@ +{ + "name": "Joystream Testnet v1", + "id": "joy_testnet_1", + "bootNodes": [ + "/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi" + ], + "telemetryUrl": "wss://telemetry.polkadot.io/submit/", + "protocolId": null, + "consensusEngine": null, + "properties": { + "tokenDecimals": 0, + "tokenSymbol": "JOY" + }, + "genesis": { + "raw": { + "0xdfaac108e0d4bc78fc9419a7fcfa84dc": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", + "0x8b54f94e652e79e757faa813e395199d": "0x19000000", + "0x3a617574683a6c656e": "0x01000000", + "0xb7b6ec0f25eb1ed8b91d05f697d7a874": "0x0600000000000000", + "0x3fb2474c4125721e4f9b6d33231cc646": "0x64000000000000000000000000000000", + "0x50a63a871aced22e88ee6466fe5aa5d9": "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", + "0x0b21b3456b23e90d061941ab416f5ea2": "0x00000000000000000000000000000000", + "0x7c1f36e9b2a83a7f2b42d97ec0f18d9c": "0x046b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", + "0x78f4ad73d6b7279f8d06f359e363c829": "0xe8e70b54020000000000000000000000", + "0x51dc7d6b960dbce5de1de96c88afc3d8": "0x0100000000000000", + "0xcc2719d196dc6b2ef83fd3399f9a8c7b": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", + "0x579ab55d37b1220812be3c3df29d4858": "0x0000000000000000", + "0x6ca8e0c58adf9d1f3105b0888d39bf2d": "0x00000000000000000000000000000000", + "0x9624db8f7f825714be29f5be7ef5a76f": "0x06000000", + "0xe9d19aa1c8f2c8eba1a85e4db92740c8": "0xe8030000000000000000000000000000", + "0x30503a949860f4244ab6e457807234c6": "0x8070000000000000", + "0xb8f48a8c01f629d6dc877f64892bed49": "0x0000000000000000", + "0x30f81b445b20a0cacb485475146b9c2e": "0x00020000", + "0x8b00d7280647603efa998c64c5a3d9aa": "0x80841e00", + "0xd9c94b41dc87728ebf0a966d2e9ad9c0": "0x6400000000000000", + "0xb9b861cab4bbce870c811515bd5f33d7": "0x00", + "0xd437fe93b0bd0a5d67d30d85d010edc2": "0x80969800", + "0x24b2518f9a9ee24ab0b62346d83d90b0": "0x40420f00", + "0x92b3170bbdf31d1483495c9b06ba7d70": "0x10270000", + "0x7be03dc7a23a09ed0b3f2b21c864cc98": "0x00e40b54020000000000000000000000", + "0x9a20141d973fa6385716ae951301f106": "0x00", + "0x45411b6c68791e09f4851417f7482619": "0xe8030000000000000000000000000000", + "0x052864eeea9f485c498882d7367582d3": "0xc8000000000000000000000000000000", + "0x3a636f6465": "0x0061736d010000000191011760027f7f017f60037f7f7f017f60017f0060027f7f0060037f7f7f0060057f7f7f7f7f017f60047f7f7f7f017f60047f7f7f7f0060047f7f7e7f017f60017e0060017f017f60000060027f7e0060037e7f7f0060017f017e60037f7e7e0060047f7f7e7e0060037f7e7e017f60027f7f017e60027e7f017f60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e760c6578745f74776f785f313238000403656e76146578745f6765745f73746f726167655f696e746f000503656e760e6578745f626c616b65325f323536000403656e76126578745f656432353531395f766572696679000603656e760f6578745f7365745f73746f72616765000703656e76116578745f636c6561725f73746f72616765000303656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000803656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e76126578745f6578697374735f73746f72616765000003656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000703656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000203f901f7010b0b030a030103030303030303030c030202030303020d0e020303020b02020302040302030202010700000304040403020302020202070300040303020202020202020202020202030304030403030a030303030f001011030303040004030f0f0a10030203030a020303110f03030209090309030202020202020202020303030b020303030303030203030402030303070403020202020303030303030302030303030303030303030202000302020302020203020202070403121212030407000012120304030303121212030312121212000005130a0207020302020403020a02010a000e0601000000010001010101141415151604050170015c5c05030100110619037f01418080c0000b7f0041b0d4c2000b7f0041b0d4c2000b07f4020f066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00ca0110436f72655f617574686f72697469657300cb0112436f72655f657865637574655f626c6f636b00cc0115436f72655f696e697469616c6973655f626c6f636b00d201114d657461646174615f6d6574616461746100d3011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d9011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636b00da0120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300db011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300de0118426c6f636b4275696c6465725f72616e646f6d5f7365656400df012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00e00115417572614170695f736c6f745f6475726174696f6e00e10109a301010041010b5bf401d001e2013938e301d101f801f901fa01fc012d2ea901c301a701332a2c4b8b018c018a014243414c8501860184014d8801890187014ec501c601c4014fa501a601a40150bd01be0151c101c201c00152b901ae01ba015398019101a30154eb01e901ec015534323556a801bf018d01970196019501940193019201b701ab01b501ad01b801ac01aa01b601b401b301b201b101b001af01ea01f5010abff513f70105001010000b0a004180c5c2001024000b930c03057f017e027f230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020022034101460d00024020034102460d0020034103470d0220012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41003a00002001280200210620022001280208220136020c2002410c6a2002101320022802042205200428020022036b20014f0d05200320016a22042003490d1520054101742203200420042003491b22034100480d152005450d0a20022802002005200310142204450d0b0c180b200141086a280200210320012802042105410110122201450d0d20024101360204200241086a22042004280200220641016a36020020022001360200200120066a41033a00002005290300210720022802042205200428020022016b41084f0d02200141086a22042001490d1420054101742201200420042001491b22014100480d142005450d0520022802002005200110142204450d060c120b20012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d02200341206a22042003490d1320054101742203200420042003491b22034100480d132005450d0620022802002005200310142204450d070c0f0b200141086a280200210320012802042101410110122204450d0d200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a200210132003450d1720034105742108200241086a220928020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d1720054101742204200320032004491b22044100480d172005450d01200228020020052004101422060d020c0e0b20022802002106200421030c020b200410122206450d0c0b200220043602042002200636020020092802002103200421050b2009200341206a2204360200200620036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200841606a22080d000c180b0b200228020021040c100b200228020021040c0d0b200228020021040c130b2001101222040d0c0b200141011015000b2003101222040d080b200341011015000b2003101222040d0d0b200341011015000b200441011015000b410141011015000b410141011015000b410141011015000b410141011015000b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a200737000002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110142204450d020c040b200228020021040c040b2001101222040d020b200141011015000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c020b2002200336020420022004360200200241086a28020021030b200241086a200320016a360200200420036a2006200110fe011a0b20002002290300370200200041086a200241086a280200360200200241106a24000b0700200010f0010b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410142203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010142203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2000101222030d0b0b200041011015000b200010122203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101422020d020c070b200128020021020c020b200010122202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011015000b200441011015000b200041011015000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000b0b0020002001200210f2010b0d0041d8a3c1004122100800000bef1004047f017e087f037e230041a0046b22022400200241186a200110170240024002400240024002400240024002402002280218450d00200241003a00880220024188026a2001280200220320012802042204410047220510fe011a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d008802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b200241b0016a2001101802400240024020022d00b0014102460d00200241b8036a41206a200241b0016a41206a280200360200200241b8036a41186a200241b0016a41186a290300370300200241b8036a41106a200241b0016a41106a290300370300200241b8036a41086a200241b0016a41086a290300370300200220022903b0013703b80320024188026a41386a2207420037030020024188026a41306a2208420037030020024188026a41286a2209420037030020024188026a41206a220a420037030020024188026a41186a220b420037030020024188026a41106a220c420037030020024188026a41086a220d4200370300200242003703880220024188026a20012802002203200141046a220e280200220441c000200441c000491b220510fe011a200e200420056b3602002001200320056a3602002004413f4d0d00200241e0036a41386a2007290300370300200241e0036a41306a2008290300370300200241e0036a41286a2009290300370300200241e0036a41206a200a290300370300200241e0036a41186a200b290300370300200241e0036a41106a200c290300370300200241e0036a41086a200d29030037030020022002290388023703e003200241086a200110192002280208450d002002290310210f200141046a220e2802002104200241003a00880220024188026a200128020022072004410047220510fe011a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310088022210500d01200241003a00880220024188026a20052003410047220410fe011a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310088024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024188016a41206a200241b8036a41206a28020036020020024188016a41186a200241b8036a41186a29030037030020024188016a41106a200241b8036a41106a29030037030020024188016a41086a200241b8036a41086a290300370300200241e0026a41086a200241e0036a41086a290300370300200241e0026a41106a200241e0036a41106a290300370300200241e0026a41186a200241e0036a41186a290300370300200241e0026a41206a200241e0036a41206a290300370300200241e0026a41286a200241e0036a41286a290300370300200241e0026a41306a200241e0036a41306a290300370300200241e0026a41386a200241e0036a41386a290300370300200220022903b80337038801200220022903e0033703e0020c030b20052004101a000b20052004101a000b20042003101a000b200241b0016a41206a220420024188016a41206a280200360200200241b0016a41186a220520024188016a41186a290300370300200241b0016a41106a220320024188016a41106a290300370300200241b0016a41086a220e20024188016a41086a29030037030020024188026a41086a2207200241e0026a41086a29030037030020024188026a41106a2208200241e0026a41106a29030037030020024188026a41186a2209200241e0026a41186a29030037030020024188026a41206a220a200241e0026a41206a29030037030020024188026a41286a220b200241e0026a41286a29030037030020024188026a41306a220c200241e0026a41306a29030037030020024188026a41386a220d200241e0026a41386a29030037030020022002290388013703b001200220022903e00237038802024020064202520d0020004203370370200241a0046a24000f0b200241e0006a41206a2004280200360200200241e0006a41186a2005290300370300200241e0006a41106a2003290300370300200241e0006a41086a200e290300370300200241206a41086a2007290300370300200241206a41106a2008290300370300200241206a41186a2009290300370300200241206a41206a200a290300370300200241206a41286a200b290300370300200241206a41306a200c290300370300200241206a41386a200d290300370300200220022903b00137036020022002290388023703200b20024188026a2001101b20022d0088022101200241e0026a20024188026a41017241d70010fe011a02402001410b470d0020004203370370200241a0046a24000f0b200241b0016a200241e0026a41d70010fe011a2000200f37030020002002290360370308200041106a200241e0006a41086a290300370300200041186a200241e0006a41106a290300370300200041206a200241e0006a41186a290300370300200041286a200241e0006a41206a2802003602002000200229032037022c200041346a200241206a41086a2903003702002000413c6a200241206a41106a290300370200200041c4006a200241206a41186a290300370200200041cc006a200241206a41206a290300370200200041d4006a200241206a41286a290300370200200041dc006a200241d0006a290300370200200041e4006a200241d8006a29030037020020004188016a20013a000020004180016a2010370300200020113703782000200637037020004189016a200241b0016a41d70010fe011a200241a0046a24000bcb0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000322034103712204450d00024020044101460d0020044102470d0241002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810fe011a200141046a200620086b3602002001200520086a36020020070d0520022f010c20022d000e411074724108742003724102762101410121040c050b200241003a000b2002410b6a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b20034102762101410121040c030b200341044f0d004100210420024100360204200241046a200520064104200641044922081b220310fe011a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004101a000b20042006101a000b8f0801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441f0014f0d01410121010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410fe011a200141046a200620046b3602002001200520046a36020041012101200641014d0d0441ef01210420022f015041ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410fe011a200141046a200620046b3602002001200520046a360200200641034d0d0441ffff03210441012101200228025041ffff034b0d08200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10fd011a200241d0006a2005200410fe011a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c020b200041023a0000200241f0006a24000f0b20052004101a000b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bc00503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510fe011a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000822044103712203450d002004ad2107024020034101460d0020034102470d02200241003a0006200241003b0104200241046a200520064103200641034922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320023301042002310006421086844208862007844202882107420121080c050b200241003a0008200241086a20052006410047220410fe011a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b2004410276ad2107420121080c030b0240024020044102762204450d0020044104470d014200210820024200370308200241086a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320022903082107420121080c040b20024100360208200241086a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0120023502082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410fe011a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004101a000b20042006101a000b20042006101a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241d8c5c2003602082002200241046a360228200220023602202002200241206a360218200241086a41e8c5c200103a000bc65905057f027e017f047e087f230041c0056b22022400200241003a00f003200241f0036a2001280200220320012802042204410047220510fe011a0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a220536020002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d00f0032204410a4b0d0b024020040e0b00070405020809060b030a000b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450daa0120022d00f003450d0e0caa010b2000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22053602002006450d0a4105210420022d00f0032206450d1320064101460d1220064102470d14200241003a00f003200241f0036a20052003410047220610fe011a20032006490d7b200141046a200320066b3602002001200520066a3602002003450d1420022d00f00321014200210742002108410421040c170b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22053602002006450d0a4106210420022d00f003220641034b0d9701024020060e04001a1819000b200241f0036a2001107420022802f0032201450d970120022902f4032107410221040c99010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002006450d0c20022d00f0032204450d0b20044101470d0c200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0c20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241f8006a20011075410421042002290378a7450d23200241f8006a41106a29030021072002290380012108200241e0006a200110752002290360a7450d23200241f0006a290300210c2002290368210d200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410321040c240b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22043602002006450d6220022d00f003220541034b0d62024020050e04001b1819000b200242003703f803200242003703f003200241f0036a20042003411020034110491b220510fe011a200141046a200320056b3602002001200420056a3602002003410f4d0d62200241f8036a290300210720022903f003210820024198026a20011017200228029802450d62200228029c022204417f4c0d9b012004450d60200410762206450d890120062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d8a012003200920056b3602002001200128020020056a36020020052004470d610c9a010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22043602002006450d6620022d00f003220641054b0d6641032109024020060e060099011f201e21000b200241186a200110172002280218450d66200228021c2204417f4c0d9a012004450d57200410762205450d810120052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d82012003200920066b3602002001200128020020066a36020020062004470d580c97010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b220e3602002001200520046a22103602002006450d3220022d00f003220f410a4b0d32410221040240200f0e0b38002b2c292e2f2d322a30380b200241a0016a2001101720022802a001450d3220022802a40122054108762103410321040c340b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002006450d0a20022d00f0032204450d0920044101470d0a200241f0036a20011018200241c8046a41086a2205200241fc036a290200370300200241c8046a41106a220620024184046a290200370300200241c8046a41186a22032002418c046a290200370300200220022902f4033703c80420022d00f00322014102460d0a20022f00f10320022d00f303411074722104200241d0026a41186a2003290300370300200241d0026a41106a2006290300370300200241d0026a41086a2005290300370300200220022903c8043703d002410321050c1a0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002006450d930120022d00f003450d050c93010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22113602002006450d4b4110210420022d00f003221241104b0d4b024020120e11003f413c4346424a3e483b3d443a8b014039000b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d4b200241f8036a290300210c20022903f003210a410221040c480b2000410b3a0000200241c0056a24000f0b42002107410521040c0a0b410621040c8c010b200241086a200110192002290308a7450d9b0120022903102107200041003a0000200041106a2007370300200041086a4202370300200241c0056a24000f0b200241a8026a2001101720022802a802450d8d0120022802ac022204417f4c0d91012004450d1e200410762206450d7420062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d752003200920056b3602002001200128020020056a36020020052004470d1f0c89010b200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102470d100b200241f0036a41086a200241d0026a41086a280200360200200220022903d0023703f0030c86010b200241f0036a2001101b20022d00f0032104200241c8046a200241f0036a41017241d70010fe011a2004410b470d0f0b2000410b3a0000200241c0056a24000f0b20024190016a20011019410341052002280290011b210442002107200229039801210a420021080c030b200241f0036a20034120200341204922091b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a36020020090d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210120022800f303210520022900f703210a200228008704210620022900ff032108200241a4056a41046a220320042d00003a0000200220022f01b20522043b01aa05200220022802ac053602a405200241c8046a41046a20032d00003a0000200220043b01d002200220022802a4053602c80442002107410221040c030b420021070b420021080b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f01d0023b01b405200220022902c8043703f003024020044105470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b01b002200220022903f00337039803200041186a2008370000200041106a2007200a84370000200041096a20013a0000200041086a20043a0000200041043a0000200041206a20063600002000410c6a20053600002000410a6a20022f01b0023b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d0f200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01be05200220022802ac053602d002410121090c100b200242003703f003200241f0036a20052003410820034108491b220610fe011a200141046a200320066b3602002001200520066a360200200341074d0d7e20022903f0032107410521040c7f0b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d0f200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01b002200220022802ac053602d002410121090c100b200241003602f00341042109200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4a20022802f00321060c010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4920022802f0032106410521090b200220022f01c8043b01f0030c89010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b22033602002001200420056a220436020020060d4720022802f0032106200241003a00f003200241f0036a20042003410047220510fe011a20032005490d65200141046a200320056b3602002001200420056a3602002003450d4720022d00f003220141044f0d47410321090c87010b20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241c8006a200110752002290348a7450d1e200241c8006a41106a290300210720022903502108200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410221040c1f0b20024198036a200241c8046a41d70010fe011a41d80010122201450d60200120043a0000200141016a20024198036a41d70010fe011a20014108762104410221050b200241b0026a41186a2206200241d0026a41186a290300370300200241b0026a41106a2203200241d0026a41106a290300370300200241b0026a41086a2209200241d0026a41086a290300370300200220022903d0023703b002200041086a2004410874200141ff017172360000200041046a2005360000200041063a00002000410c6a20022903b002370000200041146a20092903003700002000411c6a2003290300370000200041246a2006290300370000200241c0056a24000f0b200241286a200110172002280228450d48200228022c2204417f4c0d7c2004450d35200410762205450d6520052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d662003200920066b3602002001200128020020066a36020020062004470d360c720b200241206a200110172002280220450d4720022802242204417f4c0d7b2004450d36200410762205450d6620052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d672003200920066b3602002001200128020020066a36020020062004470d370c700b200242003703f003200241f0036a20042003410820034108491b220510fe011a200141046a200320056b3602002001200420056a360200200341074d0d4620022903f0032107410521090c780b200241c0006a200110172002280240450d4520022802442213ad42187e2207422088a70d792007a72204417f4c0d792004450d382004101222050d39200441041015000b0b200920037221010c180b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01be053b01aa05200220022802d0023602a4052009450d6e200241b0026a41046a220420032d00003a0000200220022f01aa0522033b01bc05200220022802a4053602b002200241c8046a41046a20042d00003a0000200220033b019003200220022802b0023602c804410421040c700b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4052009450d6c200241b4056a41046a220420032d00003a0000200220022f01aa0522033b01ba05200220022802a4053602b405200241c8046a41046a20042d00003a0000200220033b019003200220022802b4053602c804410321040c6e0b4101210641002004460d6a0b2004450d6d2006101f0c6d0b200241d0016a20011017410d210420022802d001450d0a20022802d4012105200241c8016a2001101720022802c801450d0a20022802cc012106200241b0016a2001107520022903b001a7450d0a200241c0016a290300210720022903b801210820054108762103410621040c0d0b20024180026a20011017200228028002450d0820022802840222054108762103410b21040c0a0b200241f0036a20011018200241c8046a41086a220120024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0720022f00f10320022d00f303411074722103200241fc036a290200210720024184046a280200210620022902f403210820024198036a41086a22042001280200360200200220022903c80437039803200241d0026a41086a200428020036020020022002290398033703d002410421040c0b0b200241a8016a2001101720022802a801450d0620022802ac0122054108762103410521040c080b200241f8016a2001101720022802f801450d0520022802fc0122054108762103410921040c070b200241d8016a200110194107410d20022802d8011b210420022903e00121080c020b200241e8016a200110194108410d20022802e8011b210420022903f00121080c010b200241f0036a2001107420022802f0032205450d022005410876210320022902f4032108410c21040b0c040b200241003a00f003200241f0036a2010200e410047220410fe011a200e2004490d4d200141046a200e20046b3602002001201020046a360200200e450d0020022d00f0032109410a21040c050b410d21040b0b0b0b0b200241f0036a41086a2201200241d0026a41086a280200360200200220022f01ac053b01b405200220022903d0023703f00302402004410d470d002000410b3a0000200241c0056a24000f0b200241b0026a41086a220e2001280200360200200220022f01b4053b01a405200220022903f0033703b002200041186a2007370000200041106a2008370000200041096a20093a0000200041086a20043a0000200041053a0000200041206a20063600002000410c6a2003410874200541ff0171723600002000410a6a20022f01a4053b0000200041246a20022903b0023700002000412c6a200e280200360000200241c0056a24000f0b410421040b200920037221010b200241f0036a41086a2203200241d0026a41086a280200360200200220022903d0023703f00320044104460d55200241b0026a41086a22092003280200360200200220022903f0033703b0022000410f6a20014110763a00002000410d6a20013b0000200041186a200a370000200041106a200b370000200041c8006a200c370000200041c0006a200d370000200041386a2007370000200041306a2008370000200041206a20063600002000410c6a20053a0000200041086a2004360000200041033a0000200041246a20022903b0023700002000412c6a2009280200360000200241c0056a24000f0b200241003a00f003200241f0036a20112003410047220410fe011a20032004490d4a200141046a200320046b3602002001201120046a3602002003450d1220022d00f0032114411221040c510b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a360200410f21042003410f4d0d11200241f8036a290300210c20022903f003210a0c0e0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d1020022903f003210a410c21040c0f0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0f20022903f003210a410521040c0e0b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0e20022802f0032109410d21040c070b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0d20022903f003210a410a21040c0c0b4100210e200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a22043602002003411f4d0d18200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003211420022800f303210920022900f703210a20022900ff03210c2002280087042106200241c8046a41046a20032d00003a0000200220022f01b2053b01d002200220022802ac053602c8044101210e0c190b411121040c0c0b4100210e200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a220f3602002003411f4d0d18200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003211420022800f303210920022900f703210a20022900ff03210c2002280087042106200241d0026a41046a20042d00003a0000200220022f01b2053b01b002200220022802ac053602d0024101210e0c190b200242003703f00341082104200241f0036a20112003410820034108491b220510fe011a200141046a200320056b3602002001201120056a360200200341074b0d040c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0820022903f003210a410621040c070b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0720022802f0032109410e21040b0c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a36020041072104200341074d0d050b20022903f003210a0c030b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d03200241f8036a290300210c20022903f003210a410b21040b0c040b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0120022903f003210a410921040b0c020b411321040b0b0b0c3b0b4101210541002004460d3c0b20040d100c110b4101210541002004460d390b20040d0e0c0f0b4101210541002004460d3f0b20040d0c0c0d0b410421050b024002402013450d00420021074100210f4100210441002109201321110340200241386a200110172002280238450d0c200228023c2203417f4c0d42024002402003450d00200310762210450d2420102001280200200141046a220e2802002206200320062003491b220610fe011a200e28020022142006490d25200e201420066b3602002001200128020020066a36020020062003460d010c0d0b4101211041002003470d0c0b200241306a200110172002280230450d0b20022802342206417f4c0d42024002402006450d00200610762214450d2220142001280200200141046a2212280200220e2006200e2006491b220e10fe011a20122802002215200e490d2320122015200e6b36020020012001280200200e6a360200200e2006460d010c0c0b4101211441002006470d0b0b200941016a210e024020092011470d00200f200e200e200f491b2211ad42187e2208422088a70d1e2008a722124100480d1e02402009450d00200520042012101422050d010c210b201210122205450d200b200520046a22092010360200200941146a2006360200200941106a20063602002009410c6a2014360200200941046a2003ad220842208620088437020020074280808080107c2107200f41026a210f200441186a2104200e2109200e2013490d000c020b0b41002111420021070b2005450d0b20072011ad842107410721090c3d0b4200210a4200210c0b200241a4056a41046a2203200241c8046a41046a2d00003a0000200220022f01d0023b01aa05200220022802c8043602a40502400240200e450d0020024198036a41046a20032d00003a0000200220022f01aa053b01b002200220022802a40536029803200242003703f803200242003703f003200241f0036a20042005411020054110491b220310fe011a200141046a200520036b3602002001200420036a3602002005410f4d0d00200241f8036a290300210820022903f003210720024190036a41046a20024198036a41046a2d00003a0000200220022f01b0023b019603200220022802980336029003410321040c010b411321040b0c310b4200210a4200210c0b200241a4056a41046a2204200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4050240200e450d00200241b4056a41046a20042d00003a0000200220022f01aa053b01ba05200220022802a4053602b405200241f0036a2005412020054120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a200f200410fe011a200141046a200520046b3602002001200f20046a3602002005411f4d0d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210f20022800f303211020022900f703210720022900ff032108200228008704210e200241d0026a41046a220520042d00003a0000200220022f01b20522043b01be05200220022802ac053602d002200241b0026a41046a20052d00003a0000200220043b01bc05200220022802d0023602b002200241a0026a200110174113210420022802a002450d2e20022802a4022203417f4c0d3c2003450d09200310762205450d2c20052001280200200141046a22122802002211200320112003491b221110fe011a201228020022132011490d2d2012201320116b3602002001200128020020116a36020020112003470d0a0c2f0b411321040c2d0b4101210641002004460d390b2004450d002006101f0b200220022f01c8043b01f0030c3e0b2006450d002014101f0b2003450d002010101f0b02402009450d002005210103400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200441686a22040d000b0b2011450d010b2005101f0b2000410b3a0000200241c0056a24000f0b4101210541002003460d250b2003450d232005101f0c230b20052004101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b1010000b20062003101a000b201241041015000b200641011015000b200e2015101a000b200341011015000b20062014101a000b41d80041081015000b200441011015000b20052009101a000b20052003101a000b2004200e101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b20042003101a000b200441011015000b20052009101a000b200341011015000b20112013101a000b0c010b4104210420024190036a41046a200241b4056a41046a2d00003a000020024188036a41046a200241b0026a41046a2d00003a0000200220022f01ba053b019603200220022802b40536029003200220022f01bc053b018e03200220022802b002360288032003ad220b422086200b84210b0b200241f0036a41046a220120024190036a41046a2d00003a0000200241c8046a41046a220320024188036a41046a2d00003a000020024198036a41026a221120024185036a41026a2d00003a0000200220022f0196033b01d00220022002280290033602f003200220022f018e033b01b00220022002280288033602c804200220022f0085033b019803024020044113470d002000410b3a0000200241c0056a24000f0b200241fc026a41046a221220012d00003a0000200241f4026a41046a220120032d00003a0000200241f0026a41026a220320112d00003a0000200220022f01d0023b018203200220022802f0033602fc02200220022f01b0023b01fa02200220022802c8043602f402200220022f0198033b01f002200041186a200c370000200041106a200a370000200041386a2008370000200041306a2007370000200041096a20143a0000200041086a20043a0000200041083a0000200041206a20063600002000410c6a2009360000200041296a200f3a0000200041c0006a200e3600002000412c6a20103600002000410a6a20022f0182033b0000200041246a20022802fc02360000200041286a20122d00003a00002000412a6a20022f01fa023b0000200041d0006a200b370000200041cc006a2005360000200041c8006a20012d00003a0000200041c4006a20022802f402360000200041c9006a20022f01f0023b0000200041cb006a20032d00003a0000200241c0056a24000f0b2004ad22074220862007842107410421090c080b2004ad22074220862007842107410621090c070b2000410b3a0000200241c0056a24000f0b2000410a3a0000200041086a2006360000200041046a41023600002000410c6a2004ad2207422086200784370000200241c0056a24000f0b0b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f0190033b01b405200220022902c8043703f003024020044106470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b018803200220022903f00337039803200041186a2008370000200041106a2007370000200041096a20053a0000200041086a20043a0000200041093a0000200041206a20063600002000410c6a20013600002000410a6a20022f0188033b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b2000410b3a0000200241c0056a24000f0b2004ad22074220862007842107410221090b200041013a0000200041106a20073700002000410c6a2005360000200041086a2009360000200241c0056a24000f0b20024190026a200110170240200228029002450d002002280294022205417f4c0d010240024002402005450d00200510762203450d0520032001280200200141046a220e2802002209200520092005491b220910fe011a200e280200220f2009490d06200e200f20096b3602002001200128020020096a36020020092005460d010c020b4101210341002005470d010b20024188026a20011017200228028802450d00200228028c022209417f4c0d02024002402009450d0020091076220e450d07200e2001280200200141046a2210280200220f2009200f2009491b220f10fe011a20102802002214200f490d0820102014200f6b36020020012001280200200f6a360200200f2009470d010c090b4101210e41002009460d080b2009450d00200e101f0b2005450d002003101f0b02402004450d002006101f0b200220022f01c8043b01f0030c060b100f000b200541011015000b2009200f101a000b200941011015000b200f2014101a000b2009ad220a422086200a84210a410221090c010b2000410b3a0000200241c0056a24000f0b200220022f01c8043b01f0030b200220022f01f0033b019803200041386a2007370000200041306a2008370000200041096a20013a0000200041086a20093a0000200041073a0000200041286a200a370000200041246a200e360000200041206a20053600002000411c6a2005360000200041186a2003360000200041146a2004360000200041106a20043600002000410c6a20063600002000410a6a20022f0198033b0000200241c0056a24000f0b2000410b3a0000200241c0056a24000bc51505017f037e017f037e077f230041d0036b2202240002400240200129037022034202520d00200241086a20014188016a41d80010fe011a420021030c010b20024198016a200141e4006a29000037030020024190016a200141dc006a29000037030020024188016a200141d4006a29000037030020024180016a200141cc006a290000370300200241f8006a200141c4006a290000370300200241e0006a41106a2001413c6a290000370300200241e0006a41086a200141346a2900003703002002200129002c37036020012903002105200241a0016a41106a200141f0006a220641106a290300370300200241a0016a41086a200641086a290300370300200220062903003703a00120014180016a2903002107200129037821084200210920024180026a41086a22064200370300200242003703800241dd81c000410d20024180026a1000200241086a41086a2006290300370300200220022903800237030842002104024002400240024002400240024002400240200241086a411041a4a4c100410041001001417f460d002002420037038002200241086a411020024180026a41084100100141016a41084d0d0120022903800221040b024020034201520d002008500d032004200720072004541b2203200320077d2008827d21090b20024180026a2009101d200241d4016a41026a20022d0082023a0000200241086a41086a220620024193026a290000370300200241086a410d6a220a20024198026a290000370000200220022f0180023b01d4012002200229008b02370308200228008302210b200228008702210c200241b8016a410d6a200a290000370000200241b8016a41086a2006290300370300200220022903083703b8012001410c6a2802002106200141086a2d0000210d2001280210210a200241bc036a41026a220e2001410b6a2d00003a000020024180026a41086a220f2001411c6a29020037030020024180026a410d6a2210200141216a290000370000200220012f00093b01bc0320022001290214370380020240024002400240024002400240200d4101470d00200241c0036a2006410676101e20022802c8032006413f7122064d0d01200241b8036a41026a20022802c00320064105746a220641026a2d00003a0000200241a0036a200641136a290000370300200241a5036a200641186a290000370000200220062f00003b01b8032002200629000b370398032006280007210a200628000321064101210d20022802c4030d020c030b200241b8036a41026a200e2d00003a000020024198036a41086a200f29030037030020024198036a410d6a2010290000370000200220022f01bc033b01b8032002200229038002370398030c030b4100210d20022802c403450d010b20022802c003101f0b200d450d010b200241c0036a41026a200241b8036a41026a2d00003a000020024180026a41086a20024198036a41086a29030037030020024180026a410d6a20024198036a410d6a290000370000200220022f01b8033b01c0032002200229039803370380024100210d0c010b4101210d4115210a41949bc10021060b200241fc016a41026a220e200241c0036a41026a2d00003a0000200241086a41086a220f20024180026a41086a2210290300370300200241086a41106a20024180026a41106a290300370300200220022f01c0033b01fc0120022002290380023703080240200d450d002000200636020420004101360200200041086a200a36020020014188016a1020200241d0036a24000f0b200241eb016a200f290300370000200241f0016a200241086a410d6a290000370000200220022f01fc013b01d8012002200a3600df01200220063600db01200220022903083700e3012002200e2d00003a00da012002200537038002201020014188016a41d80010fe01210e200241ff026a200c360000200241fb026a200b360000200241f0026a200241a0016a41106a290300370300200241e8026a2201200241a0016a41086a290300370300200241fa026a200241d4016a41026a2d00003a000020024183036a20022903b8013700002002418b036a200241b8016a41086a29030037000020024190036a200241b8016a410d6a290000370000200220022903a0013703e002200220022f01d4013b01f802200241003602102002420137030820024180026a200241086a1021200e200241086a102202400240024002400240024002400240024020022903e0024201520d0020012903002203420c882204420120044201561b22044200510d0c200241f0026a2903002004802104200228020c2206200241106a28020022016b41024f0d01200141026a220a2001490d0a20064101742201200a200a2001491b22014100480d0a2006450d05200228020820062001101422060d060c0e0b0240200228020c200241106a2802002201470d00200141016a22062001490d0a2001410174220a20062006200a491b220a4100480d0a2001450d0220022802082001200a101422060d030c0d0b200228020821060c030b200228020821060c050b200a10122206450d0a0b2002200a36020c20022006360208200241106a28020021010b200241106a200141016a360200200620016a41003a00000c030b200110122206450d080b2002200136020c20022006360208200241106a28020021010b200241106a200141026a360200200620016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b024002400240200228020c220b200241106a28020022016b41204f0d00200141206a22062001490d04200b4101742201200620062001491b220a4100480d04200b450d012002280208200b200a10142206450d020c090b200228020821060c090b200a101222060d070b200a41011015000b41de86c00041331023000b1010000b41d0c4c2001024000b41bcc9c1001024000b200a41011015000b200141011015000b2002200a36020c20022006360208200241106a2802002101200a210b0b200620016a220a200241f8026a220d290000370000200a41186a200d41186a290000370000200a41106a200d41106a290000370000200a41086a200d41086a290000370000024002400240200141206a2201418102490d00200241086a41186a220a4200370300200241086a41106a220d4200370300200241086a41086a220c42003703002002420037030820062001200241086a100220024198036a41186a200a29030037030020024198036a41106a200d29030037030020024198036a41086a200c290300370300200220022903083703980320024198036a4120200241e0006a200241d8016a10032101200b0d010c020b20062001200241e0006a200241d8016a10032101200b450d010b2006101f0b02402001450d00200041a99bc10036020420004101360200200041086a411a360200200e1020200241d0036a24000f0b20024198036a41186a200241d8016a41186a29030037030020024198036a41106a200241d8016a41106a29030037030020024198036a41086a200241d8016a41086a290300370300200220022903d801370398032002290380022104200241086a200e41d80010fe011a420121030b200041086a2003370300200041306a2004370300200041106a200229039803370300200041186a20024198036a41086a290300370300200041206a20024198036a41106a290300370300200041286a20024198036a41186a290300370300200041386a200241086a41d80010fe011a20004100360200200241d0036a24000bf60201037f230041306b2202240002400240411010122203450d00200341086a410029009482403700002003410029008c824037000020034110412010142203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1000200241086a2004290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010012204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241306a24000f0b41de86c00041331023000b411041011015000b412041011015000b890201027f230041306b22022400024002400240410f10122203450d00200341076a41002900e09540370000200341002900d995403700002003410f411e10142203450d012003200136000f200241206a41086a220142003703002002420037032020034113200241206a1000200241086a200129030037030020022002290320370300024002402002411041a4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b410f41011015000b411e41011015000b41de86c00041331023000b0700200010f1010b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a220028020010202000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510142204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010142204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101422040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101422070d0a0c110b2005101222040d130b200541011015000b200128020021040c050b200128020021070c070b2000101222040d0d0b200041011015000b200010122204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410122207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101422050d020c060b200128020021050c020b200810122205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011015000b4190bcc2001024000b2002200241086a360240200241a893c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4103360200200241106a41146a4103360200200241a4a4c1003602582002420137024c200241a8bcc2003602482002410336022c20024203370214200241e8c4c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41b0bcc200103a000b200041011015000b200441011015000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000b9da20104047f017e067f017e230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022030d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3920034101742205200420042005491b22054100480d392003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00000240200041086a29030022064202520d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d3a20034101742205200420042005491b22054100480d3a2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041106a20011021200041086a29030021060b2006a722034101460d012003450d0220002d000021030b200341ff01714101470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3620034101742205200420042005491b22054100480d362003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41f8dac1001024000b41f8dac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41003a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d3520054101742204200720072004491b22044100480d352005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41023a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d3520054101742204200720072004491b22044100480d352005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d3520044101742203200520052003491b22034100480d352004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a28020021030b024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41043a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d3520054101742204200720072004491b22044100480d352005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22044100480d352003450d0120012802002003200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101302402005450d002003200541186c6a2109200141046a210803402003280200210a2002200341086a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d36200b4101742207200c200c2007491b22074100480d36200b450d012001280200200b20071014220b0d020c080b2001280200210b0c020b20071012220b450d060b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d36200b4101742207200c200c2007491b22074100480d36200b450d012001280200200b20071014220b0d020c090b2001280200210b0c020b20071012220b450d070b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a200341186a22032009470d000b0b200041086a28020021030b20034101460d032003450d0420002d000021030b0240200341ff017122044103460d0020044102470d072001107741c8dac1001024000b024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3120034101742205200420042005491b22054100480d312003450d0120012802002003200510142204450d020c070b200128020021040c070b2005101222040d050b200541011015000b200741011015000b200741011015000b41a4cac1001024000b41a4cac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2e20034101742205200420042005491b22054100480d2e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110782002200041306a36020c2002410c6a2001106d200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2e20034101742205200420042005491b22054100480d2e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a200110782002200041306a36020c2002410c6a2001106d2002200041c0006a36020c2002410c6a2001106d200041086a28020021030b20034101460d012003450d0220002d000021030b200341ff01714104470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2a20034101742205200420042005491b22054100480d2a2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41e0dac1001024000b41e0dac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2920044101742203200520052003491b22034100480d292004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041106a20011021200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b200341ff017122034101460d012003450d0220002d000021030b200341ff01714105470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2520034101742205200420042005491b22054100480d252003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b418cafc2001024000b418cafc2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a20011013200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002000410c6a20011078200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00002000410c6a20011013200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41043a00002000410c6a20011013200041206a200110132002200041106a36020c2002410c6a2001106d200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200041106a20011021200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200041106a20011021200041086a2d000021030b0240200341ff01714109470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41093a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d2520074101742204200a200a2004491b22044100480d252007450d01200128020020072004101422070d020c080b200128020021070c020b200410122207450d060b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff017122034101460d022003450d0320002d000021030b200341ff01714106470d05024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2020034101742205200420042005491b22054100480d202003450d0120012802002003200510142204450d020c060b200128020021040c060b2005101222040d040b200541011015000b200441011015000b41d499c2001024000b41d499c2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240200041046a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1e20034101742205200420042005491b22054100480d1e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a28020020011022200041046a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1e20034101742205200420042005491b22054100480d1e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a20011078200041046a28020021030b20034101460d012003450d0220002d000021030b200341ff01714107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41f4aec2001024000b41f4aec2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034107714104460d00024020034103460d0020034102470d02200141046a280200200141086a2802002203470d05200341016a22042003490d4120034101742205200420042005491b22054100480d412003450d0e200128020020032005101422040d0f0c320b200141046a280200200141086a2802002203470d02200341016a22042003490d4020034101742205200420042005491b22054100480d402003450d07200128020020032005101422040d080c2f0b200141046a28020020052802002203470d02200341016a22042003490d3f20034101742205200420042005491b22054100480d3f2003450d09200128020020032005101422040d0a0c2f0b20034105470d03200141046a280200200141086a2802002203470d04200341016a22042003490d3e20034101742205200420042005491b22054100480d3e2003450d1b200128020020032005101422040d1c0c360b200128020021040c060b200128020021040c080b200128020021040c0a0b200341077122034101460d2820030d2641d89dc2001024000b200128020021040c180b200510122204450d270b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a28020021070240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d3720044101742203200520052003491b22034100480d372004450d07200128020020042003101422040d080c290b200128020021040c080b200510122204450d250b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a28020021070240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d3420044101742203200520052003491b22034100480d342004450d07200128020020042003101422040d080c270b200128020021040c080b200510122204450d230b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002106200041306a290300210d0240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d3120044101742203200520052003491b22034100480d312004450d07200128020020042003101422040d080c250b200128020021040c080b200310122204450d210b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a200736000002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d0b200341016a22042003490d3020034101742205200420042005491b22054100480d302003450d16200128020020032005101422040d170c2c0b200141046a280200200141086a2802002203470d08200341016a22042003490d2f20034101742205200420042005491b22054100480d2f2003450d0f200128020020032005101422040d100c290b200141046a28020020052802002203470d08200341016a22042003490d2e20034101742205200420042005491b22054100480d2e2003450d11200128020020032005101422040d120c290b200141046a280200200141086a2802002203470d09200341016a22042003490d2d20034101742205200420042005491b22054100480d2d2003450d16200128020020032005101422040d170c2a0b200310122204450d1f0b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c160b200310122204450d1d0b20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a220320063700082003200d3700002000410c6a28020021082002200041146a280200220336020c2002410c6a200110130240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2b20054101742204200720072004491b22044100480d2b2005450d01200128020020052004101422050d020c200b200128020021050c020b200410122205450d1e0b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041186a28020021082002200041206a280200220336020c2002410c6a200110130240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2b20054101742204200720072004491b22044100480d2b2005450d01200128020020052004101422050d020c210b200128020021050c020b200410122205450d1f0b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041246a280200210820022000412c6a280200220336020c2002410c6a200110130240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2b20054101742204200720072004491b22044100480d2b2005450d01200128020020052004101422050d020c220b200128020021050c020b200410122205450d200b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a0c130b200128020021040c080b200128020021040c0a0b200128020021040c0c0b200128020021040c0e0b200510122204450d1a0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00002000410c6a28020021070240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d2420044101742203200520052003491b22034100480d242004450d01200128020020042003101422040d020c1d0b200128020021040c020b200310122204450d1b0b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c0c0b200510122204450d190b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00000c090b200510122204450d170b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00000c060b200510122204450d150b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00000c030b200510122204450d130b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00000b20002d000021030b200341ff01714108470d16024002400240200141046a2205280200200141086a22032802002204470d00200441016a22072004490d1520044101742208200720072008491b22084100480d152004450d0120012802002004200810142207450d020c130b200128020021070c130b2008101222070d110b200841011015000b41d89dc2001024000b200541011015000b200541011015000b200541011015000b200341011015000b200341011015000b200341011015000b200441011015000b200441011015000b200441011015000b200541011015000b200341011015000b200541011015000b200541011015000b200541011015000b200541011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a00000240200041086a2d000022044102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041386a2903002106200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b200441ff01714104470d0302400240024002400240200528020020032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41023a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0520074101742204200820082004491b22044100480d052007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a290000370000200420072900003700000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0520074101742204200820082004491b22044100480d052007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b200141086a220b200441206a360200200720046a220441186a200041296a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210a2002200041d4006a280200220436020c2002410c6a20011013024002400240200141046a2802002208200b28020022076b20044f0d00200720046a220b2007490d0320084101742207200b200b2007491b22074100480d032008450d0120012802002008200710142208450d020c040b200128020021080c040b2007101222080d020b200741011015000b1010000b20012008360200200141046a2007360200200141086a28020021070b2003200720046a360200200820076a200a200410fe011a200041086a2d000021040b0240200441ff01714105470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410e3a0000200041086a2d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410f3a0000200041086a2d000021040b0240200441ff01714112470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d1620044101742207200520052007491b22074100480d162004450d0120012802002004200710142205450d020c030b200128020021050c030b2007101222050d010b200741011015000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200041096a2d00003a0000200041086a2d000021040b200441ff017122034101460d012003450d0220002d000021030b200341ff01714109470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41a4f8c1001024000b41a4f8c1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1620074101742204200a200a2004491b22044100480d162007450d01200128020020072004101422070d020c070b200128020021070c020b200410122207450d050b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff01714103470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c040b200128020021040c040b2005101222040d020b200541011015000b200441011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a2d000021030b200341077122034101460d012003450d0220002d000021030b200341ff0171410a470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41e8bdc2001024000b41e8bdc2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a0000200041046a28020022034102460d012003450d0220034101460d030b200241106a24000f0b024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41dcbfc1001024000b41dcbfc1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a28020021072002200041106a280200220036020c2002410c6a20011013024002400240200141046a2802002204200528020022036b20004f0d00200320006a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310142204450d020c040b200128020021040c040b2003101222040d020b200341011015000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200320006a360200200420036a2007200010fe011a200241106a24000b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410436022c2002420137021420024198d4c2003602102002200241086a3602282002200241286a360220200241106a41a0d4c200103a000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a410036020020012004370318200141a4a4c100360210200142013702042001200141186a36020020012003370328200120023703202001200141206a103a000bd51701267f230041900d6b220324002003410036021041af82c0004110200341106a41041004200320003703f00c200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a410810042004420037030020034200370300418c83c0004111200310002005200429030037030020032003290300370310200341106a411020014120100402400240411010122204450d00200441086a410029009482403700002004410029008c824037000020044110412010142205450d0120052000427f7c370010200341086a22044200370300200342003703002005411820031000200341106a41086a2206200429030037030020032003290300370310200341106a41102001412010042005101f200442003703002003420037030041ea81c0004115200310002006200429030037030020032003290300370310200341106a4110200241201004200442003703002003420037030041dd81c000410d2003100020062004290300370300200320032903003703100240200341106a411041a4a4c100410041001001417f460d00200342003703f00c02400240200341106a4110200341f00c6a41084100100141016a41084d0d0020032903f00c4200510d02200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a20042903003703002003200329030037031041002107427f21000240200341106a411041a4a4c100410041001001417f460d00200342003703f00c200341106a4110200341f00c6a41084100100141016a41084d0d0220032903f00c427f7c21000b200341106a410041e00c10fd011a41002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200341f00c6a42002000427f7c2000501b2200101d200341106a202722014103704105746a220441186a200341f00c6a41186a290200370000200441106a200341f00c6a41106a290200370000200441086a200341f00c6a41086a290200370000200420032902f00c370000200141016a21274100210541002102024003402001200141036e2206417d6c6a4102470d01200341106a20056a220441df006a2d000022262004411f6a2d000022287120262028722004413f6a2d00007172211c200441de006a2d000022262004411e6a2d000022287120262028722004413e6a2d00007172211b200441dd006a2d000022262004411d6a2d000022287120262028722004413d6a2d00007172211a200441dc006a2d000022262004411c6a2d000022287120262028722004413c6a2d000071722119200441db006a2d000022262004411b6a2d000022287120262028722004413b6a2d000071722118200441da006a2d000022262004411a6a2d000022287120262028722004413a6a2d000071722117200441d9006a2d00002226200441196a2d00002228712026202872200441396a2d000071722116200441d8006a2d00002226200441186a2d00002228712026202872200441386a2d000071722115200441d7006a2d00002226200441176a2d00002228712026202872200441376a2d000071722114200441d6006a2d00002226200441166a2d00002228712026202872200441366a2d000071722113200441d5006a2d00002226200441156a2d00002228712026202872200441356a2d000071722112200441d4006a2d00002226200441146a2d00002228712026202872200441346a2d000071722111200441d3006a2d00002226200441136a2d00002228712026202872200441336a2d000071722110200441d2006a2d00002226200441126a2d00002228712026202872200441326a2d00007172210f200441d1006a2d00002226200441116a2d00002228712026202872200441316a2d00007172210e200441d0006a2d00002226200441106a2d00002228712026202872200441306a2d00007172210d200441cf006a2d000022262004410f6a2d000022287120262028722004412f6a2d00007172210c200441ce006a2d000022262004410e6a2d000022287120262028722004412e6a2d00007172210b200441cd006a2d000022262004410d6a2d000022287120262028722004412d6a2d00007172210a200441cc006a2d000022262004410c6a2d000022287120262028722004412c6a2d000071722109200441cb006a2d000022262004410b6a2d000022287120262028722004412b6a2d000071722108200441ca006a2d000022262004410a6a2d000022287120262028722004412a6a2d000071722107200441c9006a2d00002226200441096a2d00002228712026202872200441296a2d00007172211d200441c8006a2d00002226200441086a2d00002228712026202872200441286a2d00007172211e200441c7006a2d00002226200441076a2d00002228712026202872200441276a2d00007172211f200441c6006a2d00002226200441066a2d00002228712026202872200441266a2d000071722120200441c5006a2d00002226200441056a2d00002228712026202872200441256a2d000071722121200441c4006a2d00002226200441046a2d00002228712026202872200441246a2d000071722122200441c3006a2d00002226200441036a2d00002228712026202872200441236a2d000071722123200441c2006a2d00002226200441026a2d00002228712026202872200441226a2d000071722124200441c1006a2d00002226200441016a2d00002228712026202872200441216a2d000071722125200441c0006a2d0000222620042d00002228712026202872200441206a2d000071722126200541800c460d01200341106a20052006410574200141096e41e0006c6b6a6a220441ff006a201c3a0000200441fe006a201b3a0000200441fd006a201a3a0000200441fc006a20193a0000200441fb006a20183a0000200441fa006a20173a0000200441f9006a20163a0000200441f8006a20153a0000200441f7006a20143a0000200441f6006a20133a0000200441f5006a20123a0000200441f4006a20113a0000200441f3006a20103a0000200441f2006a200f3a0000200441f1006a200e3a0000200441f0006a200d3a0000200441ef006a200c3a0000200441ee006a200b3a0000200441ed006a200a3a0000200441ec006a20093a0000200441eb006a20083a0000200441ea006a20073a0000200441e9006a201d3a0000200441e8006a201e3a0000200441e7006a201f3a0000200441e6006a20203a0000200441e5006a20213a0000200441e4006a20223a0000200441e3006a20233a0000200441e2006a20243a0000200441e1006a20253a0000200441e0006a20263a0000200541e0006a210520062101200241016a22024111490d000b0b202741d100470d000b2003201c3a008f0d2003201b3a008e0d2003201a3a008d0d200320193a008c0d200320183a008b0d200320173a008a0d200320163a00890d200320153a00880d200320143a00870d200320133a00860d200320123a00850d200320113a00840d200320103a00830d2003200f3a00820d2003200e3a00810d2003200d3a00800d2003200c3a00ff0c2003200b3a00fe0c2003200a3a00fd0c200320093a00fc0c200320083a00fb0c200320073a00fa0c2003201d3a00f90c2003201e3a00f80c2003201f3a00f70c200320203a00f60c200320213a00f50c200320223a00f40c200320233a00f30c200320243a00f20c200320253a00f10c200320263a00f00c200341086a220442003703002003420037030041cc81c000411120031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41201004200442003703002003420037030041ff81c000410d200310002005200429030037030020032003290300370310200341106a41101005200341900d6a24000f0b41de86c00041331023000b41de86c00041331023000b41f4bfc1001024000b411041011015000b412041011015000bb00202027f017e230041206b2201240002400240411310122202450d002002410f6a41002800ab8240360000200241086a41002900a482403700002002410029009c824037000020024113413310142202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1000200141086a200029030037030020012001290310370300024002402001411041a4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021030b2002101f200141206a240020030f0b41de86c00041331023000b411341011015000b413341011015000b9f6a17067f017e127f017e047f037e037f017e017f017e027f017e027f077e097f017e017f017e047f027e017f047e047f230041b0046b2201240002400240024002400240024002400240024002400240024002400240024041af82c000411041a4a4c100410041001001417f460d002001410036020841af82c0004110200141086a41044100100141016a41044d0d0220012802082102410021030c010b410121030b4108210420014198016a41086a22054200370300200142003703980141ff81c000410d20014198016a1000200141f8006a41086a20052903003703002001200129039801370378024002400240200141f8006a411041a4a4c100410041001001417f460d002001421037028c012001200141f8006a36028801200120014188016a10282001280200450d0920012802042206ad42f8007e2207422088a70d042007a72205417f4c0d042005450d01200510122204450d052006450d020c060b41002117410021160c060b4108210420060d040b41002116410021172004450d060c040b41de86c00041331023000b100f000b200541081015000b200141f0036a41176a2108200141f0026a41176a210920014190036a41176a210a41c000210b20014188016a41086a210c200141086a41186a210d200141086a41106a210e20014180026a411b6a210f20014180026a41136a2110200141f0026a410c6a2111200141e6016a2112200141ee016a2113200141f2016a21144100211541002105200621160340200141003a0008200128028801200128028c01200141086a4101200c28020010012117200c200c280200201741016a41014b22186a22173602002018450d024101214d0240024020012d000822184101460d0020180d0420014100360208200c4100200128028801200128028c01200141086a41042017100122172017417f461b2218410420184104491b200c2802006a2217360200201841034d0d042001280208214e4100214d0c010b0b200141003a0008200128028801200128028c01200141086a4101201710012117200c200c280200201741016a221741014b6a221836020002400240024020174102490d00410b213420012d00082217410a4b0d010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020170e0b2b050203000607040901082b0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2c20012d00ff012217450d0f20174101460d0e20174102470d2c200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2c2019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d8012001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d2c2019290300211f20012903082120200141d0036a41146a201c360200200141d0036a41106a201b360200200141d0036a41186a201d360200200141d0036a411c6a201e3602002001201a3703d803200120073703d003201e4118762117200141d0036a410f6a2900002221422088a72122200141d0036a411b6a2800002123200141d0036a41176a280000212420012900d70321252021a7212641022119200721270c100b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2b20012d00ff0122174101460d0820170d2b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2b20012903082125410021190c090b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d1220012d00ff012217450d1020174101460d0f20174102470d12200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300211a200e280200211b200141086a41146a221e280200211c200d280200211d20012903082107200141d0036a411c6a200141086a411c6a22282802002229360200200141d0036a41186a201d360200200141d0036a41146a201c360200200141d0036a41106a201b3602002001201a3703d803200120073703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300212a20282802002128200d280200212b201e280200211e200e280200212c2001290308212d2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a22183602002017410f4d0d122019290300212e2001290308212f2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d12201929030021302001290308213120014190036a411c6a202836020020014190036a41186a202b36020020014190036a41146a201e360200200141b0036a411c6a2029360200200141b0036a41186a201d360200200141b0036a41146a201c360200200141b0036a41106a201b36020020014190036a41106a202c360200200141c8016a41086a200a41086a2d00003a00002001202d370390032001202a370398032001200a2900003703c801202d4208862029411876ad842132200120073703b0032001201a3703b8032007423888201a4208868421252007421888a72117200141b0036a411b6a2800002123200141b0036a41176a2800002124200141b0036a41136a2800002122200141b0036a410f6a280000212620014190036a410f6a290000211f20012900970321202007a7211841022119202f2121202e21330c110b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2920012d00080d2920014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2920012903082107200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b801200742088821272007a72119410321340c2a0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2820012d00ff01221741064b0d28024020170e0700141315121617000b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2820192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a20014180026a411c6a200141086a411c6a280200221c36020020014180026a41186a201b36020020014180026a41146a201936020020014180026a41106a201736020020014190046a411c6a201c36020020014190046a41186a221c201b36020020014190046a41146a201936020020014190046a41106a2219201736020020012007370388022001201a3703800220012007370398042001201a3703900420014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2820012802082118200141f0036a41186a201c290300370300200141f0036a41106a2019290300370300200141f0036a41086a20014190046a41086a29030037030020012001290390043703f003200141f0036a411f6a2d00002117200141f0036a411b6a280000212320082800002124200141f0036a41136a2800002122200141f0036a410f6a280000212620012900f703212520012800f303211b20012f00f103213520012d00f003211c410021190c180b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2720012d00ff010d27200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b22174120201741204922171b200c2802006a221836020020170d272019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d80120014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2720012802082136200141b8016a41086a20192d00003a0000200120012903083703b801200742088821272007a7211941012134201c2122201e2123201d2124201a2125201b21260c280b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2620012d00ff010d2620014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221836020020170d262001280208211b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d26200141086a41086a2217290300212520012903082107200141b8016a41086a20172d00003a0000200120012902083703b801200742088821272007a7211941052134201b21260c270b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2520012d00ff012217450d0420174101470d25200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d2520192903002107200141086a411c6a2802002117200d280200211820012903082120200141d8016a41106a200e290300370300200141d8016a41186a2018360200200141d8016a411c6a2017360200200120073703e001200120203703d801201741107621172020421088a721362020420888a7213720122901002125201328010021262014280100212220012901de0121072020a72138410121390c050b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2420012d00080d24200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d24200141086a410f6a2900002125200141086a411f6a2d00002124200141086a411b6a2800002122200141086a41176a2800002126200128000b213620012d000a213720012d0009213820012d00082139200129000f2107200141b8016a41086a20192d00003a0000200120012900083703b801200742088821272007a72119410a21340c050b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2020012d00ff012217410a4b0d2041002119024020170e0b20001819161b1c1a1d171f200b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d202001280208213a200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410121190c1f0b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2220012903082125410121190b200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b80141092134420021270c220b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d2020012d0008213841002139420021250b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801201741ffff03712124200742088821272007a72119410621340b0c1f0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1d20192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a22192017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a36020020170d1d2001280208211820014190036a41186a201c29030037030020014190036a41106a201929030037030020014190036a41086a200141b0036a41086a290300370300200120012903b003370390032001350290032001330194032001310096034210868442208684212720014190036a410f6a2900002207422088a7212220014198016a41086a290300211f20014190036a411f6a2d0000211720014190036a411b6a2800002123200a2800002124200129039801212020012900970321252007a72126410121190c010b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d1c200141086a41086a2903002207422088a7212220012903082125200141f0026a41186a290300211f200141f0026a41106a290300212020112802002118200141f0026a41086a280200211720012802f40221232007a7212641002119420021270b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b8012018ad4220862017ad842132410421340c0c0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0220192903002120200e2802002117200141086a41146a2802002118200d280200213420012903082107200141f0026a411c6a200141086a411c6a2802002219360200200141f0026a41186a2034360200200141f0026a41146a2018360200200141f0026a41106a2017360200200141d0026a411c6a2019360200200141d0026a41186a2034360200200141d0026a41146a2018360200200141d0026a41106a2017360200200120203703f802200120073703f002200120203703d802200120073703d002200141c8016a41086a200141c7026a41086a2d00003a0000200120012900c7023703c801200742388820204208868421252007421888a721172019411876ad2132200141d0026a411b6a2800002123200141d0026a41176a2800002124200141d0026a41136a2800002122200141d0026a410f6a28000021262007a72118410121190c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a280200360200200141a0026a41186a221d201c360200200141a0026a41146a201b360200200141a0026a41106a221b2017360200200120073703a8022001201a3703a0022001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d012019290300211f2001290308212020014180026a41186a201d29030037030020014180026a41106a201b29030037030020014180026a41086a200141a0026a41086a290300370300200120012903a00237038002200141c8016a41086a20192d00003a0000200120012903083703c80120013502800222072001330184022001310086024210868442208684421888a7211720014180026a411f6a3100002132200f280000212320014180026a41176a28000021242010280000212220014180026a410f6a280000212620012900870221252007a72118410021190b200141086a41086a200141c8016a41086a2d000022343a0000200141b8016a41086a20343a0000200120012903c80122073703b801200120073703082017ad4218862018ad42ffffff0783842127410221344100213b0c190b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c170b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211c20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211e20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208212820014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d1620012802082117200141003a00ff01200128028801200128028c01200141ff016a4101201810012118200c200c280200201841016a41014b22186a22193602002018450d1620012d00ff01221841054b0d1620014200370308200c4100200128028801200128028c01200141086a41082019100122192019417f461b2219410820194108491b200c2802006a360200201941074d0d162017411076213c2017410876211d200129030821254104211920282123201e2124201c2122201b21260c050b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d152001280208211b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a3602002017450d1520012d00ff01221c41064f0d15200141f0026a41186a2802002217411076213c2017410876211d200141f0026a411c6a2802002118200141f0026a41146a2802002123200141f0026a41106a280200212420112802002122200141f0026a41086a2802002126410221190c050b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d142019290300211a200e2802002117200141086a41146a2802002119200d280200211b20012903082107200141d0026a411c6a200141086a411c6a280200221c360200200141d0026a41186a201b360200200141d0026a41146a2019360200200141d0026a41106a20173602002001201a3703d802200120073703d00220014100360208200c4100200128028801200128028c01200141086a41042018100122182018417f461b22184104201841044922181b200c2802006a36020020180d1420012802082118200141a0026a411c6a201c360200200141a0026a41186a201b360200200141a0026a41146a2019360200200141a0026a41106a2017360200200120073703a0022001201a3703a8022007423888201a420886842125201c41187621172007421888a7211b2007420888a72135200141a0026a411b6a2800002123200141a0026a41176a2800002124200141a0026a41136a2800002122200141a0026a410f6a28000021262007a7211c410121190c040b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1320192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221936020020170d1320012802082118200141003a00ff01200128028801200128028c01200141ff016a4101201910012117200c200c280200201741016a41014b22176a3602002017450d1320012d00ff01221d41044f0d1320014190036a41186a201c29030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200120012903b0033703900320014190036a411f6a2d0000211720014190036a411b6a2800002123200a280000212420014190036a41136a280000212220014190036a410f6a28000021262001290097032125200128009303211b20012f009103213520012d009003211c410321190c030b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2219360200201741034d0d1220012802082118200d4200370300200e4200370300200141086a41086a221b420037030020014200370308200c4100200128028801200128028c01200141086a41202019100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d12201b2903002120200e2802002117200141086a41146a2802002134200d280200211920012903082107200141d0036a411c6a200141086a411c6a280200223b360200200141d0036a41186a2019360200200141d0036a41146a2034360200200141d0036a41106a2017360200200120203703d803200120073703d00320074238882020420886842125203b41187621172007421888a7211b2007420888a72135200141d0036a411b6a2800002123200141d0036a41176a2800002124200141d0036a41136a2800002122200141d0036a410f6a28000021262007a7211c410521190c020b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d112001280208211b200141d8016a41186a2802002217411076213c2017410876211d200141d8016a411c6a2802002118200141d8016a41146a2802002123200141d8016a41106a2802002124200141d8016a410c6a2802002122200141d8016a41086a2802002126410621190b0b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b801201bad4218862035ad42ffff038342088684201cad42ff0183842127203cad42ffff0383421086201dad42ff0183420886842017ad42ff0183842018ad422086842132410721340b0c0f0b410421190c090b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0920192903002107200e2802002117200141086a41146a221e280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a2228280200221d360200200141a0026a41186a201c360200200141a0026a41146a201b360200200141a0026a41106a201736020020014180026a411c6a201d36020020014180026a41186a221d201c36020020014180026a41146a201b36020020014180026a41106a221b2017360200200120073703a8022001201a3703a00220012007370388022001201a37038002200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0920192903002120200e2802002117201e2802002118200d280200213420012903082107200141f0036a411c6a2028280200360200200141f0036a41186a2034360200200141f0036a41146a2018360200200141f0036a41106a201736020020014190046a41086a20014180026a41086a29030037030020014190046a41106a201b29030037030020014190046a41186a201d290300370300200120203703f803200120073703f003200120012903800237039004200141c8016a41086a200841086a2d00003a0000200120082900003703c801200742088620014190046a411f6a31000084213d20012f01900420012d00920441107472213e200141f0036a410f6a290000213f20014190046a411b6a280000214020014190046a41176a280000214120014190046a41136a280000214220014190046a410f6a280000214320012900f70321442001290097042145200128009304213a410921190c060b410221190c070b410321190c060b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d0620012903082145200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410721190c050b410521190c040b410621190c030b200d4200370300200e4200370300200141086a41086a420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0341082119200141086a41086a2903002120200e2802002117200141086a41146a22182802002134200d280200213b20012903082107200141086a411c6a224620462802002246360200200d203b36020020182034360200200e2017360200200141c8016a41086a200141c7026a41086a2d00003a00002001202037031020012007370308200120012900c7023703c801200742388820204208868421452007421888a7213a2046411876ad213d200141086a411b6a2800002140200141086a41176a2800002141200141086a41136a2800002142200141086a410f6a28000021432007a7213e0b0c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a221d280200211b200d280200211c2001290308211a200141b0036a411c6a200141086a411c6a221e280200360200200141b0036a41186a2228201c360200200141b0036a41146a201b360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117201d280200211c200d280200211d2001290308211a200141d0036a411c6a201e280200360200200141d0036a41186a221e201d360200200141d0036a41146a201c360200200141d0036a41106a221c2017360200200120073703d8032001201a3703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d01200d2903002107200e29030021202001290308211f200141d8016a41086a20192903002221370300200141d8016a41106a2020370300200141d8016a41186a2007370300200141d0026a41086a2021370300200141d0026a41186a2007370300200141d0026a41106a20203703002001201f3703d8012001201f3703d00220014190036a41186a202829030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200141f0026a41086a200141d0036a41086a290300370300200141f0026a41106a201c290300370300200141f0026a41186a201e290300370300200120012903b00337039003200120012903d0033703f002200141c8016a41086a200941086a2d00003a0000200120092900003703c80120012f01d00220012d00d20241107472214b20012f01900320012d00920341107472213e20013502f00220013301f40220013100f602421086844220868442088620014190036a411f6a31000084213d200141f0026a410f6a290000213f200141d0026a410f6a2900002148200141d0026a411f6a310000214a200141d0026a41176a290000214920014190036a411b6a2800002140200a280000214120014190036a41136a280000214220014190036a410f6a280000214320012900f702214420012900d70221472001290097032145200128009303213a20012800d302214c410a21190b41082134200141086a41086a200141c8016a41086a2d000022173a0000200141b8016a41086a20173a0000200120012903c80122073703b80120012007370308203aad421886203ead42ffffff078384212720442120203f211f204721212048213320492131204a2130203d2132204221222040212320412124204b213b20452125204321260c040b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c020b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d0141002117024020012d00082218450d0020184101470d02410121170b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801420021274200212520172139410021340c020b410b21340b204621190b200141086a41086a2218200141b8016a41086a2d00003a0000200120012903b8013703082034410b460d02200541016a2117200141a8016a41086a224620182d00003a0000200120012903083703a801201820462d00003a0000200120012903a801370308024020052016470d002015201720172015491b2216ad42f8007e2207422088a70d072007a722464100480d0702402005450d002004200b41406a2046101422040d010c060b204610122204450d050b2004200b6a220541686a2032370000200541646a2023360000200541606a20243600002005415c6a2022360000200541586a2026360000200541446a2036360000200541436a20373a0000200541426a20383a0000200541416a20393a0000200541406a20343a0000200541506a2025370000200541486a20274208862019ad42ff018384370000200541786a201f370000200541706a2020370000200541286a2030370000200541206a2031370000200541186a2033370000200541106a202137000020182d00002118200129030821072005410b6a203b4110763a0000200541096a203b3b0000200541346a204e360200200541306a204d3602002005410c6a204c360000200541086a20183a000020052007370000201541026a2115200b41f8006a210b201921462017210520172006490d000b0b200141086a200041f00010fe011a20162017470d03201741016a22052017490d042017410174220c20052005200c491b2216ad42f8007e2207422088a70d042007a722054100480d04024002402017450d002004201741f8006c200510142204450d010c050b2005101222040d040b200541081015000b2016450d002004101f0b41de86c00041331023000b204641081015000b2004201741f8006c220c6a200141086a41f00010fe01220541f4006a20023602002005200336027020014100360210200142013703082001201741016a2205360278200141f8006a200141086a101302402005450d00200c41f8006a2118200141106a210c2004210503400240024002400240024002400240024002400240200541f0006a2802004101470d00200141013a00ff01200128020c200c2802002217470d01201741016a220b2017490d0c20174101742234200b200b2034491b22344100480d0c2017450d032001280208201720341014220b0d040c0d0b200141003a00ff01200128020c200c2802002217470d01201741016a220b2017490d0b20174101742234200b200b2034491b22344100480d0b2017450d052001280208201720341014220b0d060c0d0b410121342001280208210b0c030b410021342001280208210b0c050b20341012220b450d090b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a00000c030b20341012220b450d070b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a0000200541f4006a28020021340240024002400240200128020c220b200c28020022176b41044f0d00201741046a22152017490d07200b4101742217201520152017491b22174100480d07200b450d012001280208200b20171014220b0d020c0a0b2001280208210b0c020b20171012220b450d080b2001201736020c2001200b360208200c28020021170b200c201741046a360200200b20176a20343600000b2005200141086a1029200541f8006a2105201841887f6a22180d000b0b200141086a41086a220c2802002117200128020c21182001280208210520014198016a41086a220b4200370300200142003703980141ff81c000410d20014198016a1000200c200b2903003703002001200129039801370308200141086a411020052017100402402018450d002005101f0b02402016450d002004101f0b200141b0046a24000f0b1010000b203441011015000b203441011015000b201741011015000bca0301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081001210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f22064103712204450d0020044101460d0120044102470d0220024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100122012001417f461b22014103200141034922011b20042802006a36020020010d04200228020841027621040c050b20064102762104410121030c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510012104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641044f0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100122012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b8a8a0103057f027e017f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4420024101742204200320032004491b22044100480d442002450d1f20012802002002200410142203450d200c420b200141046a280200200141086a2802002202470d09200241016a22032002490d4320024101742204200320032004491b22044100480d432002450d1420012802002002200410142203450d150c3f0b200141046a280200200141086a2802002202470d09200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002202470d09200241016a22032002490d4120024101742204200320032004491b22044100480d412002450d1620012802002002200410142203450d170c360b200141046a280200200141086a2802002202470d09200241016a22032002490d4020024101742204200320032004491b22044100480d402002450d1720012802002002200410142203450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002202470d0a200241016a22032002490d3e20024101742204200320032004491b22044100480d3e2002450d1b20012802002002200410142203450d1c0c2d0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1c20012802002002200410142203450d1d0c2a0b200141046a2204280200200141086a22022802002203470d0a200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1d20012802002003200610142205450d1e0c270b200141046a280200200141086a2802002202470d0a200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1e20012802002002200410142203450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3320024101742204200320032004491b22044100480d332002450d1f20012802002002200410142203450d200c210b200128020021030c360b200128020021030c300b200128020021030c2d0b200128020021030c2a0b200128020021030c270b200128020021030c330b200128020021030c230b200128020021030c200b200128020021050c1d0b200128020021030c1a0b200128020021030c170b2004101222030d2a0b200441011015000b2004101222030d230b200441011015000b2004101222030d1f0b200441011015000b2004101222030d1b0b200441011015000b2004101222030d170b200441011015000b2004101222030d220b200441011015000b2004101222030d110b200441011015000b2004101222030d0d0b200441011015000b2006101222050d090b200641011015000b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041086a2903004201520d0020032002470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0320012802002002200410142203450d040c090b20032002470d01200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0420012802002002200410142203450d050c060b200128020021030c080b200128020021030c050b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1720024101742200200320032000491b22004100480d172002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1520024101742200200320032000491b22004100480d152002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041016a2d00004101470d0020032002470d01200241016a22002002490d2020024101742203200020002003491b22034100480d202002450d0320012802002002200310142200450d040c090b20032002470d01200241016a22002002490d1f20024101742203200020002003491b22034100480d1f2002450d0420012802002002200310142200450d050c060b200128020021000c080b200128020021000c050b2003101222000d050b200341011015000b2003101222000d010b200341011015000b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41003a00000f0b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41013a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341054b0d0002400240024002400240024020030e06000402030105000b200428020020022802002203470d09200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1320012802002003200610142205450d140c270b200428020020022802002203470d05200341016a22052003490d3b20034101742206200520052006491b22064100480d3b2003450d0c20012802002003200610142205450d0d0c240b200428020020022802002203470d05200341016a22052003490d3a20034101742206200520052006491b22064100480d3a2003450d0d20012802002003200610142205450d0e0c210b200428020020022802002203470d05200341016a22052003490d3920034101742206200520052006491b22064100480d392003450d0e20012802002003200610142205450d0f0c1e0b200428020020022802002203470d06200341016a22052003490d3820034101742206200520052006491b22064100480d382003450d1120012802002003200610142205450d120c1b0b200428020020022802002203470d06200341016a22052003490d3720034101742206200520052006491b22064100480d372003450d1220012802002003200610142205450d130c180b200428020020022802002203470d06200341016a22052003490d3620034101742206200520052006491b22064100480d362003450d1320012802002003200610142205450d140c150b200128020021050c1f0b200128020021050c1c0b200128020021050c190b200128020021050c1e0b200128020021050c150b200128020021050c120b200128020021050c0f0b2006101222050d170b200641011015000b2006101222050d130b200641011015000b2006101222050d0f0b200641011015000b2006101222050d130b200641011015000b2006101222050d090b200641011015000b2006101222050d050b200641011015000b2006101222050d010b200641011015000b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41003a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2420054101742203200620062003491b22034100480d242005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2420034101742200200420042000491b22004100480d242003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41063a00002000410c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2220034101742200200420042000491b22004100480d222003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41023a00002000410c6a28020021050240024002400240024020042802002203200228020022026b41044f0d00200241046a22042002490d2020034101742202200420042002491b22024100480d202003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a2005360000200041096a2d0000200110580f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41043a0000200041186a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600002000411c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041206a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041246a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041286a28020021050240024002400240024020042802002204200228020022036b41044f0d00200341046a22062003490d1e20044101742203200620062003491b22034100480d1e2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a20053600002000412c6a2d000020011058200041106a290300210702400240024002400240200141046a2802002203200628020022006b41084f0d00200041086a22042000490d1e20034101742200200420042000491b22004100480d1e2003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041086a360200200320006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41033a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1c20054101742203200620062003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1c20054101742203200920092003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022004101460d00024020004102460d0020004103470d02200428020020022802002200470d05200041016a22032000490d2e20004101742204200320032004491b22044100480d2e2000450d0b20012802002000200410142203450d0c0c150b200428020020022802002200470d02200041016a22032000490d2d20004101742204200320032004491b22044100480d2d2000450d0620012802002000200410142203450d070c120b200428020020022802002200470d02200041016a22032000490d2c20004101742204200320032004491b22044100480d2c2000450d0720012802002000200410142203450d080c0f0b200428020020022802002200470d03200041016a22032000490d2b20004101742204200320032004491b22044100480d2b2000450d0a20012802002000200410142203450d0b0c0c0b200128020021030c100b200128020021030c0d0b200128020021030c100b200128020021030c090b2004101222030d0b0b200441011015000b2004101222030d070b200441011015000b2004101222030d090b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41013a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41033a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41053a00002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1a20054101742203200920092003491b22034100480d1a2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024020042802002204200228020022036b41204f0d00200341206a22052003490d1a20044101742203200520052003491b22034100480d1a2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b2002200341206a360200200420036a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41013a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1820054101742203200620062003491b22034100480d182005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d1820034101742200200420042000491b22004100480d182003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41063a0000200041026a2103200141046a2802002105200428020021020240024002400240024002400240024002400240024020002d00014101470d0020052002470d01200241016a22002002490d1c20024101742204200020002004491b22044100480d1c2002450d0320012802002002200410142200450d040c090b20052002470d01200241016a22002002490d1b20024101742204200020002004491b22044100480d1b2002450d0420012802002002200410142200450d050c060b200128020021000c080b200128020021000c050b2004101222000d050b200441011015000b2004101222000d010b200441011015000b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41003a000002400240024002400240200141046a28020020042802002200470d00200041016a22022000490d1820004101742204200220022004491b22044100480d182000450d0120012802002000200410142202450d020c030b200128020021020c030b2004101222020d010b200441011015000b20012002360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200220006a20032d00003a00000f0b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41013a000002400240024002400240200141046a2802002202200428020022006b41204f0d00200041206a22042000490d1620024101742200200420042000491b22004100480d162002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041206a360200200220006a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200120032900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d2020024101742204200320032004491b22044100480d202002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1f20024101742204200320032004491b22044100480d1f2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1e20024101742204200320032004491b22044100480d1e2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1820034101742202200420042002491b22024100480d182003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1820024101742200200320032000491b22004100480d182002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1620034101742202200420042002491b22024100480d162003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041d8006a2903002107200041d0006a290300210802400240024002400240200141046a2802002203200428020022026b41104f0d00200241106a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241106a360200200320026a2202200737000820022008370000200041e8006a2903002107200041e0006a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4e20024101742204200320032004491b22044100480d4e2002450d1f20012802002002200410142203450d200c3f0b200141046a280200200141086a2802002200470d09200041016a22022000490d4d20004101742203200220022003491b22034100480d4d2000450d1420012802002000200310142202450d150c3c0b200141046a280200200141086a2802002202470d09200241016a22032002490d4520024101742204200320032004491b22044100480d452002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002200470d09200041016a22022000490d4b20004101742203200220022003491b22034100480d4b2000450d1620012802002000200310142202450d170c360b200141046a280200200141086a2802002200470d09200041016a22022000490d4a20004101742203200220022003491b22034100480d4a2000450d1720012802002000200310142202450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d4220024101742204200320032004491b22044100480d422002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002200470d0a200041016a22022000490d4820004101742203200220022003491b22034100480d482000450d1b20012802002000200310142202450d1c0c2d0b200141046a280200200141086a2802002200470d0a200041016a22022000490d4720004101742203200220022003491b22034100480d472000450d1c20012802002000200310142202450d1d0c2a0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1d20012802002002200410142203450d1e0c270b200141046a28020020042802002200470d0a200041016a22022000490d4520004101742203200220022003491b22034100480d452000450d1e20012802002000200310142202450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1f20012802002002200410142203450d200c210b200128020021020c330b200128020021030c300b200128020021020c2d0b200128020021020c2a0b200128020021030c270b200128020021030c300b200128020021020c230b200128020021020c200b200128020021030c1d0b200128020021020c1a0b200128020021030c170b2003101222020d270b200341011015000b2004101222030d230b200441011015000b2003101222020d1f0b200341011015000b2003101222020d1b0b200341011015000b2004101222030d170b200441011015000b2004101222030d1f0b200441011015000b2003101222020d110b200341011015000b2003101222020d0d0b200341011015000b2004101222030d090b200441011015000b2003101222020d050b200341011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041296a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41073a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1b20024101742200200320032000491b22004100480d1b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41063a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1520034101742202200420042002491b22024100480d152003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041c9006a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a00002000410c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0b20024101742200200420042000491b22004100480d0b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d1c20024101742204200320032004491b22044100480d1c2002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a2903002107200041106a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1220034101742202200420042002491b22024100480d122003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a290000370000200220032900003700002000412c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d1220024101742200200420042000491b22004100480d122002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1020034101742202200420042002491b22024100480d102003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1020024101742200200320032000491b22004100480d102002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0e20024101742204200320032004491b22044100480d0e2002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0e20024101742200200320032000491b22004100480d0e2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0320034101742202200420042002491b22024100480d032003450d0120012802002003200210142203450d020c040b200128020021030c040b2002101222030d020b200241011015000b1010000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41053a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0720024101742204200320032004491b22044100480d072002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a280200210502400240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241046a360200200320026a2005360000200041106a2903002107200041086a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0720024101742200200320032000491b22004100480d072002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0520034101742202200420042002491b22024100480d052003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041086a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041046a2802002103024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0320024101742200200420042000491b22004100480d032002450d0120012802002002200010142202450d020c040b200128020021020c040b2000101222020d020b200041011015000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000b1300200041063602042000419884c0003602000bd40101037f230041306b2200240002400240024041af82c000411041a4a4c100410041001001417f460d00200041003602204101210141af82c0004110200041206a41044100100141016a41044d0d022000280220210241af82c000411010050c010b410021010b20002002410020011b36020c200041206a41086a2201420037030020004200370320418080c0004115200041206a1000200041106a41086a200129030037030020002000290320370310200041106a41102000410c6a41041004200041306a24000f0b41de86c00041331023000b13002000410b3602042000418cc0c1003602000b02000b3101017f0240410110122202450d00200042818080801037020420002002360200200241003a00000f0b410141011015000bf21305037f017e057f017e057f230041d0016b22012400200141b0016a41086a22024200370300200142003703b00141cc81c0004111200141b0016a1000200141f0006a41086a22032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001418080c0004115200141b0016a100020032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001419580c0004117200141b0016a100020032002290300370300200120012903b001370370200141f0006a41101005200141dd81c000410d1030200129030821042001280200210520024200370300200142003703b001418c83c0004111200141b0016a100020032002290300370300200120012903b00137037002400240024002400240024002400240200141f0006a411041a4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010012202417f460d022002411f4d0d0220014190016a41186a2206200141b0016a41186a220329030037030020014190016a41106a2207200141b0016a41106a220829030037030020014190016a41086a2209200141b0016a41086a2202290300370300200120012903b0013703900120024200370300200142003703b001418c83c0004111200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a4110100520032006290300370300200820072903003703002002200929030037030020012001290390013703b001200141106a41186a2003290300370300200141106a41106a2008290300370300200141106a41086a2002290300370300200120012903b0013703100c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200220014190016a41086a29030037030020012001290390013703b001200141106a41186a4200370300200141106a41106a4200370300200141106a41086a4200370300200142003703100b200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b0013703704100210202400240200141f0006a411041a4a4c100410041001001417f460d0020014210370294012001200141f0006a36029001200141b0016a20014190016a103120012802b0012207450d0520012902b401210a200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a41101005200a422088a72102200aa721090c010b41042107410021090b200141b0016a41086a22034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b00137037002400240200141f0006a411041a4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020034200370300200142003703b001200141f0006a4110200141b0016a4120410010012203417f460d032003411f4d0d0320014190016a41186a220b200141b0016a41186a220829030037030020014190016a41106a220c200141b0016a41106a220629030037030020014190016a41086a220d200141b0016a41086a2203290300370300200120012903b0013703900120034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b001370370200141f0006a411010052008200b2903003703002006200c2903003703002003200d29030037030020012001290390013703b001200141306a41186a2008290300370300200141306a41106a2006290300370300200141306a41086a2003290300370300200120012903b0013703300c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200320014190016a41086a29030037030020012001290390013703b001200141306a41186a4200370300200141306a41106a4200370300200141306a41086a4200370300200142003703300b200141f0006a41186a22034200370300200141f0006a41106a22084200370300200141f0006a41086a2206420037030020014200370370200141f0006a1006200141d0006a41186a2003290300370300200141d0006a41106a2008290300370300200141d0006a41086a200629030037030020012001290370370350200141b0016a41186a220b200141106a41186a290300370300200141b0016a41106a220c200141106a41106a290300370300200141b0016a41086a220d200141106a41086a290300370300200120012903103703b00120034200370300200842003703002006420037030020014200370370200141b0016a41202004420020051b2204427f7c200141f0006a1007450d0520014190016a41186a2205200329030037030020014190016a41106a220e200829030037030020014190016a41086a220f20062903003703002001200129037037039001200320052903003703002008200e2903003703002006200f2903003703002001200129039001370370200b2003290300370300200c2008290300370300200d2006290300370300200120012903703703b00120092002470d04200241016a22032002490d0220024101742208200320032008491b2209ad42247e220a422088a70d02200aa722034100480d02024002402002450d002007200241246c200310142207450d010c060b2003101222070d050b200341041015000b41de86c00041331023000b41de86c00041331023000b1010000b41de86c00041331023000b2007200241246c6a220341003a0000200341196a200141c8016a290300370000200341116a200141c0016a290300370000200341096a200141b8016a290300370000200320012903b001370001200341216a20012f0090013b0000200341236a20014192016a2d00003a0000200241016a21020b2000200129031037001420002004370300200020012903503700342000412c6a200141106a41186a290300370000200041246a200141106a41106a2903003700002000411c6a200141106a41086a2903003700002000413c6a200141d0006a41086a290300370000200041c4006a200141d0006a41106a290300370000200041cc006a200141d0006a41186a290300370000200041ec006a200141306a41186a290300370000200041e4006a200141306a41106a290300370000200041dc006a200141306a41086a29030037000020002001290330370054200041106a20023602002000410c6a200936020020002007360208200141d0016a24000bf50104017f017e017f017e230041206b2203240042002104200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310024002400240200341106a411041a4a4c100410041001001417f460d0020034200370300200341106a4110200341084100100141016a41084d0d0220032903002106200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310200341106a41101005420121040c010b0b2000200437030020002006370308200341206a24000f0b41de86c00041331023000b9a1605027f017e137f017e0b7f23004190026b22022400200241086a2001102802400240024002400240024002400240024002400240024002402002280208450d00200228020c2203ad42247e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510122206450d032003450d020c040b2000410036020020024190026a24000f0b4104210620030d020b41002115410021130c020b200541041015000b200241b8016a41106a2105200241b8016a4101722107200241f8006a41116a2108200241c7016a2109200241106a410172210a200141046a210b200141086a210c2002418c026a41026a210d20024180026a210e200241f0016a210f410021104100211141002112200321130340200241003a00b8012001280200200b280200200241b8016a4101200c28020010012114200c200c280200201441016a41014b22146a22153602002014450d0320022d00b801221441034b0d030240024002400240024002400240024020140e0400030102000b2002200110282002280200450d0a20022802042214417f4c0d0d2014450d03201410762215450d0f200c201441002001280200200b28020020152014200c280200100122162016417f461b2216201620144b1b2216200c2802006a36020020162014460d040c090b200241b8016a41186a2216420037030020054200370300200241b8016a41086a22174200370300200242003703b801200c41002001280200200b280200200241b8016a41202015100122142014417f461b2214412020144120491b200c2802006a3602002014411f4d0d09200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf0121182008411f6a200241b8016a411f6a290000370000200841186a2016290000370000200841106a2005290000370000200841086a2017290000370000200820022900b801370000410121170c040b200242003703b801200c41002001280200200b280200200241b8016a41082015100122142014417f461b2214410820144108491b200c2802006a2215360200201441074d0d0820022903b8012104200f4200370300200241b8016a41306a4200370300200241b8016a41286a4200370300200241b8016a41206a4200370300200241b8016a41186a420037030020054200370300200241b8016a41086a4200370300200242003703b801200c41002001280200200b280200200241b8016a41c0002015100122142014417f461b221441c000201441c000491b200c2802006a3602002014413f4d0d08200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a290000370300200241f8006a41186a200941186a290000370300200241f8006a41206a200941206a290000370300200241f8006a41286a200941286a290000370300200241f8006a41306a200941306a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf012118410221170c040b200241b8016a2001104020022802b8012215450d0720022902bc012118200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a2903003703002002200d2d00003a00b201200220022f008c023b01b001200220022903b801370378410021170c020b410121152001280200200b28020041014100200c28020010011a41002014470d050b200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a290300370300200220022f008c023b01b001200220022903b8013703782002200d2d00003a00b2012014ad22044220862004842118410321170b0b200d20022d00b2013a0000200241b8016a41086a2214200241f8006a41086a22192903003703002005200241f8006a41106a221a290300370300200241b8016a41186a2216200241f8006a41186a221b290300370300200241b8016a41206a221c200241f8006a41206a290300370300200241b8016a41286a221d200241f8006a41286a290300370300200241b8016a41306a221e200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241f4006a41026a221f200d2d00003a0000200241386a41086a22202014290300370300200241386a41106a22212005290300370300200241386a41186a22222016290300370300200241386a41206a2223201c290300370300200241386a41286a221c201d290300370300200241386a41306a221d201e290300370300200220022f018c023b0174200220022903b80137033820142018370300200720022f01743b0000200741026a201f2d00003a000020052002290338370000200541086a2020290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201c290300370000200541306a201d290300370000200220173a00b801200220153602bc01200e2004370300200241106a200241b8016a107920022d00102117200241b8016a411f6a221c200a411f6a2800003600002016200a41186a2900003703002005200a41106a2900003703002014200a41086a2900003703002002200a2900003703b80120174102460d04201241016a2115200241f8006a411f6a221d201c280000360000201b2016290300370300201a200529030037030020192014290300370300200220022903b801370378024020122013470d002010201520152010491b2213ad42247e2204422088a70d062004a722144100480d0602402012450d00200620112014101422060d010c090b201410122206450d080b200620116a221420173a0000201441206a201d280000360000201441196a201b290300370000201441116a201a290300370000201441096a2019290300370000201441016a2002290378370000201041026a2110201141246a21112015211220152003490d000b0b2000201336020420002006360200200041086a201536020020024190026a24000f0b2014450d002015101f0b2002418c026a41026a20022d00b2013a0000200241b8016a41086a2205200241f8006a41086a290300370300200241b8016a41106a2214200241f8006a41106a290300370300200241b8016a41186a220c200241f8006a41186a290300370300200241b8016a41206a200241f8006a41206a290300370300200241b8016a41286a200241f8006a41286a290300370300200241b8016a41306a200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241023a0010200241b8016a411f6a200a411f6a280000360000200c200a41186a2900003703002014200a41106a2900003703002005200a41086a2900003703002002200a2900003703b8010b2000410036020002402012450d00200621050340024020052d0000450d00200541086a280200450d00200541046a280200101f0b200541246a21052011415c6a22110d000b0b02402013450d002006101f0b20024190026a24000f0b1010000b100f000b201441041015000b201441011015000b130020004102360204200041a8c7c1003602000b3301017f0240410410122202450d0020004284808080c0003702042000200236020020024180203600000f0b410441011015000b130020004104360204200041ff85c0003602000b130020004101360204200041f8c8c1003602000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d02200420024120108002450d02200441206a22062002460d02200620024120108002450d02200441c0006a22062002460d02200620024120108002450d02200441e0006a22062002460d0220044180016a21042006200241201080020d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d02200420024120108002450d022006200441206a2204470d000b0b41000f0b20050b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41053602002004412c6a4102360200200441043602342004420237021c200441d4c9c1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a41e4c9c100103a000bff1002177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b200021090c010b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d020b410221000240024002400240024002400240024002400240200d41776a220f411e4b0d0041f400210e0240200f0e1f09000303040303030303030303030303030303030303030303020303030302090b41ee00210e0c080b200d41dc00470d010b0c050b200d10e6010d03200d41ffff034b0d01200d4180fe0371410876211141f8a7c100211241002113410021000c020b41f200210e0c040b0240200d41ffff074b0d00200d4180fe0371410876211641b3adc100211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d05201341c8a8c1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d012010211320142112201441c8a8c100470d030c010b2010211320142112201441c8a8c100470d010b200d41ffff0371210e41f7aac10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041b3adc100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d0c6c2001024000b200f410173210f200041b3adc100470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021049000b20132010101a000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841f5adc1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441f5adc100470d030c010b2010211820142117201441f5adc100470d010b200d41ffff0371210e4193afc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b024020104190b2c100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d0c6c2001024000b200f410173210f20004190b2c100470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011049000b20182010101a000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c0240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b024020072802002004200a6a200b200a6b200828020028020c1101000d0002400340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d092019422088a741ff0171417f6a220041044b0d09024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c0008421190c030b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f832019428080808070838421190c010b201942ffffffff8f60834280808080108421190b410321000b2007280200200a2008280200280210110000450d000c020b0b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d030c040b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a10e701000b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a200310e801000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b110020012000280200200028020410f7010b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241a8c5c200360204200241a4a4c100360200200210ef01000bdc0701067f230041106b220324002003200136020c2003410c6a2002101302400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101422060d020c070b200228020021060c020b200710122206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101422060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101422060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101422060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101422060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810122206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810122206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810122206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810122206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200841011015000b200841011015000b200841011015000b200841011015000b9f0204017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1000200341086a200529030037030020032003290310370300024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012201417f460d012001410f4d0d01200341186a290300210420032903102106200342003703182003420037031020034110200341106a4110411010012201417f460d012001410f4d0d0120032903102107200041206a200341186a290300370300200041186a2007370300200041106a200437030020002006370308420121040b20002004370300200341206a24000f0b41de86c00041331023000b9d0705017f017e047f017e027f230041d0006b2203240042002104200341c0006a41086a220542003703002003420037034020012002200341c0006a1000200341206a41086a20052903003703002003200329034037032002400240200341206a411041a4a4c100410041001001417f460d00200342103702342003200341206a360230200341186a200341306a10282003280218450d01200328021c2106200341003a0040200341386a2201200128020022012003280230220720032802342208200341c0006a41012001100141016a41014b22026a22013602002002450d01024002400240024020032d0040220541037122024102460d0020024101460d0120020d022005410276ad2104420021090c030b20034100360240200320053a0040200341386a2202410020072008200341c0006a41017241032001100122012001417f461b22014103200141034922011b20022802006a36020020010d042003280240410276ad2104420021090c020b200341003b0140200320053a0040200341386a200120072008200341c0006a41017241012001100141016a220241014b6a36020020024102490d0320032f0140410276ad2104420021090c010b024002400240024020054102762202450d0020024104460d012002410c470d032003420037034820034200370340200341306a41086a410020072008200341c0006a41102001100122022002417f461b22024110200241104922021b20016a36020020020d06200341c0006a41086a29030021090c020b20034100360240200341386a410020072008200341c0006a41042001100122022002417f461b22024104200241044922021b20016a36020020020d0520033502402104420021090c030b4200210920034200370340200341306a41086a410020072008200341c0006a41082001100122022002417f461b22024108200241084922021b20016a36020020020d040b200329034021040c010b200241046a220a41104b0d02200341306a41086a210b4200210442002109410021020340200341003a0040200b200120072008200341c0006a41012001100141016a41014b22056a22013602002005450d03200341086a20033100404200200241037441f80071108302200341086a41086a290300200984210920032903082004842104200241016a220241ff0171200a490d000b0b20002004370308200041106a2009370300200041186a2006360200420121040b20002004370300200341d0006a24000f0b41de86c00041331023000bac0201027f230041206b2202240002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200320013600060240024002402003410a41a4a4c100410041001001417f460d00200241186a4200370300200241106a4200370300200241086a4200370300200242003703002003410a20024120410010012201417f460d022001411f4d0d0220002002290300370000200041186a200241186a290300370000200041106a200241106a290300370000200041086a200241086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241206a24000f0b41de86c00041331023000b410641011015000b410c41011015000b8f0803037f017e067f230041c0006b22012400200141306a41086a220242003703002001420037033041ba88c000411d200141306a1000200141106a41086a200229030037030020012001290330370310024002400240024002400240024002400240200141106a411041a4a4c100410041001001417f460d00200142103702042001200141106a360200200141306a2001104020012802302202450d0402402001280234450d002002101f0b20002802002202450d01200041046a280200450d012002101f200141c0006a24000f0b0240024020002802002203450d00200029020421040c010b410610122200450d06200041046a41002f00a388403b00002000410028009f884036000020004106410c10142200450d07200041086a41002d00a788403a0000200041002f00a588403b0006024002402000410941a4a4c100410041001001417f460d00200141003602104101210320004109200141106a41044100100141016a41044d0d07200128021021052000101f2005450d012005ad4205862204422088a70d042004a722004100480d04200010122203450d0a41002102200321000340200141106a2002103e200041186a200141106a41186a290000370000200041106a200141106a41106a290000370000200041086a200141106a41086a29000037000020002001290010370000200041206a21002005200241016a2202470d000c020b0b2000101f41012103410021050b2005ad220442208620048421040b200141003602182001420137031020012004422088a72200360230200141306a200141106a1013024002402000450d00200041057421064100200141106a41086a28020022026b210720012802102108200128021421092003210003400240200920076a411f4b0d00200241206a22052002490d052009410174220a20052005200a491b22054100480d05024002402009450d00200820092005101422080d010c080b200510122208450d070b200521090b200820026a22052000290000370000200541186a200041186a290000370000200541106a200041106a290000370000200541086a200041086a290000370000200741606a2107200241206a2102200041206a2100200641606a22060d000b200141186a200236020020012009360214200120083602100c010b200141186a280200210220012802142109200128021021080b200141306a41086a220042003703002001420037033041ba88c000411d200141306a1000200141106a41086a200029030037030020012001290330370310200141106a411020082002100402402009450d002008101f0b2004a7450d002003101f0b200141c0006a24000f0b1010000b200541011015000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200041011015000bdc0403027f017e0d7f230041d0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001001220f200f417f461b220f4120200f4120491b20052802006a360200200f411f4d0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101422060d010c060b200e10122206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d002006101f0b200241d0006a24000f0b1010000b200e41011015000b130020004106360204200041d4cac1003602000b130020004109360204200041f68fc0003602000b1300200041013602042000419ccec1003602000bd80101027f024002400240024002402000280200220141064b0d0020010e0704040104020403040b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041086a280200450d03200041046a280200101f0f0b200041086a280200450d022000280204101f0f0b200041086a280200450d012000280204101f0f0b200041086a280200450d002000280204101f0f0b0b8b2f09247f047e0f7f017e087f027e107f027e1a7f230041d0026b2204240002400240024020014115490d0041012105410221064103210741322108413021094108210a4158210b4150210c417f210d4138210e410b210f4128211041202111411821124110211341afe000211441807f2115410021164160211741682118417021194178211a41c000211b41c800211c41d000211d41d800211e4101211f41012120410021210c010b410021230c010b410121230b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024020230e020001010b20014102490d0c41a07f2158200041a07f6a21594101215a4100215b4130215c4108215d4158215e4150215f417f21604128216141182162412021634110216441a87f2165418801216641d8002167418001216841d000216941f800216a41c800216b41f000216c41c000216d41e800216e4138216f41e000217041012171410121210c010b02400240024020210e03000d01010b201f20207121220c010b2049204c20096c6a212302400340204b204c200d6a224c4f0d012023290300212a2023200a6a21252023200c6a22242123202a2045542025290300222a204454202a2044511b0d000c100b0b2000204537030020002044370308203d2046290300370300203f204729030037030020412048290300370300200020042903003703102001204b20056a2223490d082000202320096c6a2100200120236b22014115490d020b2003450d090240201f2005710d002000200110462003200d6a21030b2001200676222320076c21242023200574212541002126024020012008490d00200620052000202320096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b222c1b202c20282029202c1b2228202720096a290300222954202a202b202c1b222a2027200e6a290300222b54202a202b511b222d1b200020232023200d6a222e202c1b222f20096c6a222729030020292028202d1b542027200a6a2903002228202b202a202d1b222a542028202a511b22306a2000202520096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22316a2028202920311b222820002025200572223220096c6a2227290300222954202a202b20311b222a2027200a6a290300222b54202a202b511b22336a200020252025200d6a223420311b223520096c6a22272903002029202820331b542027200a6a2903002228202b202a20331b222a542028202a511b22366a2000202420096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22376a2028202920371b2228202720096a290300222954202a202b20371b222a2027200e6a290300222b54202a202b511b22276a200020242024200d6a223820371b223920096c6a22262903002029202820271b542026200a6a2903002228202b202a20271b222a542028202a511b223a6a21262039202420056a2038202420371b20271b203a1b2124203520322034202520311b20331b20361b2125202f202320056a202e2023202c1b202d1b20301b21230b20262000202320096c6a222729030022282000202520096c6a222c2903002229542027200a6a290300222a202c200a6a290300222b54202a202b511b22276a2028202920271b22282000202420096c6a222c290300222954202a202b20271b222a202c200a6a290300222b54202a202b511b222c6a212602400240024020002025202320271b223920096c6a223129030020292028202c1b5a2031200a6a2903002228202b202a202c1b222a5a2028202a511b0d00202620056a2226200f4b0d0120264521230c020b20242023202520271b202c1b213920264521230c010b024020012005762224450d002000200120096c6a200c6a2123200021250340200441a0026a20106a2227202520106a222c290300370300200441a0026a20116a2226202520116a2231290300370300200441a0026a20126a2237202520126a222d290300370300200441a0026a20136a2233202520136a222e290300370300200441a0026a200a6a222f2025200a6a2230290300370300200420252903003703a0022023200a6a2232290300212a202320136a2234290300212b202320126a22352903002128202320116a223629030021292023290300213b202c202320106a223829030037030020312029370300202d2028370300202e202b3703002030202a3703002025203b370300203820272903003703002036202629030037030020352037290300370300203420332903003703002032202f290300370300202320042903a002370300202520096a21252023200c6a21232024200d6a22240d000b0b20012039200d736a2139410121230b02402022200d73202345722005710d002000200110470d0c0b024002402002450d00203920014f0d0a2000203920096c6a22232903002002290300542023200a6a2225290300222a2002200a6a290300222b54202a202b511b0d01200441a0026a20106a223c200020106a223d290300370300200441a0026a20116a223e200020116a223f290300370300200441a0026a20126a2240200020126a2241290300370300200441a0026a20136a2242200020136a2224290300370300200441a0026a200a6a22432000200a6a2227290300370300200420002903003703a0022025290300212a202320136a222c2903002144202320126a2226290300212b202320116a2231290300212820232903002145203d202320106a2237290300370300203f20283703002041202b370300202420443703002027202a370300200020453703002037203c2903003703002031203e29030037030020262040290300370300202c204229030037030020252043290300370300202320042903a0023703002027290300214420002903002145200420126a2246203d290300370300200420136a2247203f2903003703002004200a6a22482041290300370300200420242903003703002000200c6a2149200020096a214a4100214b41002001224c200d6a22254f0d040c100b2001450d070b203920014f0d05200441a0026a20106a2234200020106a224d290300370300200441a0026a20116a2235200020116a224e290300370300200441a0026a20126a2236200020126a224f290300370300200441a0026a20136a2238200020136a2250290300370300200441a0026a200a6a221f2000200a6a2251290300370300200420002903003703a0022000203920096c6a2223290300212a2023200a6a2225290300212b202320136a22242903002128202320126a22272903002129202320116a222c290300213b204d202320106a2226290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a37030020262034290300370300202c203529030037030020272036290300370300202420382903003703002025201f290300370300202320042903a0023703002051290300212a2000290300212b200420126a2252204d290300370300200420136a2253204e2903003703002004200a6a2254204f29030037030020042050290300370300200020096a21314100212002402001200d6a2224450d00203121230340202b20232903005a202a2023200a6a29030022285a202a2028511b0d01202320096a2123202020056a22202024490d000b0b2000200120096c6a21232024212502400340202321272025223a20204d0d01203a200d6a2125202b2027200c6a222329030054202a2027200b6a290300222854202a2028511b450d000b0b203a2020490d042024203a490d034180012130410021264100212e4100212c4100213341800121322031202020096c6a225521310340202720316b222320096e21250240024002400240024002400240202320144b22390d00202520156a2025202e2026492033202c4922247222371b21232037450d012032202320241b21322023203020241b21300b2033202c470d020c010b2023202320057622326b21302033202c470d010b2032450d0141002125200441206a2233212c203121230340202c20253a0000202c202b20232903005a202a2023200a6a29030022285a202a2028511b6a212c202320096a21232032202520056a2225470d000b0b202e2026470d020c010b200441206a222c2133202e2026470d010b02402030450d002027200c6a212341002125200441a0016a222e21260340202620253a00002026202b202329030054202a2023200a6a290300222854202a2028511b6a21262023200c6a21232030202520056a2225470d000c020b0b200441a0016a2226212e0b02402026202e6b2223202c20336b2225202520234b1b222f450d002034203120332d000020096c6a222320106a2903003703002035202320116a2903003703002036202320126a2903003703002038202320136a290300370300201f2023200a6a290300370300200420232903003703a002203120332d000020096c6a22232027202e2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703000240202f2005460d004100212403402027202e20246a22372d0000200d7320096c6a22232031203320246a20056a222d2d000020096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703002031202d2d000020096c6a22232027203720056a2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a290300370300202420066a2123202420056a222521242023202f490d000b202e20256a212e203320256a21330b2027202e2d0000200d7320096c6a222320042903a002370300202320106a2034290300370300202320116a2035290300370300202320126a2036290300370300202320136a20382903003703002023200a6a201f290300370300202e20056a212e203320056a21330b2031203220096c6a20312033202c461b21312027201620306b20096c6a2027202e2026461b212720390d000b024002402033202c4f0d00034020342031202c200d6a222c2d000020096c6a222520106a22242903003703002035202520116a22262903003703002036202520126a22372903003703002038202520136a222d290300370300201f2025200a6a222e290300370300200420252903003703a0022027200c6a222329030021282027200b6a222f2903002129202720176a2230290300213b202720186a22322903002156202720196a2239290300215720242027201a6a22272903003703002026205737030020372056370300202d203b370300202e20293703002025202837030020272034290300370300203920352903003703002032203629030037030020302038290300370300202f201f290300370300202320042903a002370300202321272033202c490d000c020b0b20312123202e20264f0d0003402026200d6a22262d000021252034202320106a22242903003703002035202320116a222c2903003703002036202320126a22312903003703002038202320136a2237290300370300201f2023200a6a222d290300370300200420232903003703a00220272025200d7320096c6a222529030021282025200a6a22332903002129202520136a222f290300213b202520126a22302903002156202520116a223229030021572024202520106a2239290300370300202c2057370300203120563703002037203b370300202d202937030020232028370300203920342903003703002032203529030037030020302036290300370300202f20382903003703002033201f290300370300202520042903a002370300202320096a2123202e2026490d000b0b2000202a3703082000202b370300204d2052290300370300204e2053290300370300204f2054290300370300200020042903003703100240024002402001202320556b20096e20206a22254d0d002034204d2903003703002035204e2903003703002036204f29030037030020382050290300370300201f2051290300370300200420002903003703a0022000202520096c6a2223290300212a2023200a6a2224290300212b202320136a22272903002128202320126a222c2903002129202320116a2226290300213b204d202320106a2231290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a3703002031203429030037030020262035290300370300202c2036290300370300202720382903003703002024201f290300370300202320042903a002370300200120256b2224450d0120242025202520244b1b21272001200776212c202320096a21260240024020252024200d6a22014f0d002000202520022003104520232102202621000c010b20262001202320031045202521010b2027202c4f211f203a20204d2120200141154f0d02410021230c160b41a0cfc100202520011048000b41b0cfc1001024000b41002121410121230c130b410121230c120b410021230c110b41022121410121230c100b203a20241049000b2020203a101a000b41a0cfc100203920011048000b4190cfc100410041001048000b20232001101a000b41c8cfc100203920011048000b20002001104a200441d0026a24000f0b2071205a6a2127024020002071205c6c6a2224205f6a2223290300202429030022285a2024205e6a290300222b2024205d6a2225290300222a5a202b202a511b0d00200420626a2231202420616a222c290300370300200420646a2237202420636a22262903003703002004205d6a222d202420626a2233290300370300200420242903103703002024202329030037030020252023205d6a290300370300202420646a202320646a2903003703002033202320626a2903003703002026202320636a290300370300202c202320616a2903003703002000207120606a222c205c6c6a21260240024002400240202c450d00205b212520592123202420586a29030020285a202420656a290300222b202a5a202b202a511b0d030340202320666a202320676a290300370300202320686a202320696a2903003703002023206a6a2023206b6a2903003703002023206c6a2023206d6a2903003703002023206e6a2023206f6a290300370300202320706a2023205c6a2903003703002025205a460d022023290300212b2023205d6a2124202520606a21252023205f6a2123202b2028542024290300222b202a54202b202a511b0d000c030b0b4100212c0c020b410021250b20002025205c6c6a21262025212c0b202620283703002026202a3703082000202c205c6c6a222320616a2031290300370300202320636a2037290300370300202320626a202d290300370300202320042903003703100b205b205a6a215b2059205c6a21592027217120272001470d010b200441d0026a24000f0b41012121410121230c060b203c204a204b20096c6a222320106a2225290300370300203e202320116a22272903003703002040202320126a222c2903003703002042202320136a222629030037030020432023200a6a2231290300370300200420232903003703a002202420096a2237290300212a2024200e6a222d290300212b2024201b6a223329030021282024201c6a222e29030021292024201d6a222f290300213b20252024201e6a22242903003703002027203b370300202c2029370300202620283703002031202b3703002023202a3703002024203c290300370300202f203e290300370300202e204029030037030020332042290300370300202d2043290300370300203720042903a002370300204b20056a224b204c200d6a22254f0d010b204a204b20096c6a212302400340202329030020455a2023200a6a290300222a20445a202a2044511b450d01202320096a2123204b20056a224b2025490d000b410221210c020b410221210c020b410221210c020b410121230c020b410121230c010b410121230c000b0b86090b107f017e017f017e017f017e017f017e017f017e017f230041306b22022400024002400240024020014108490d00200141017641feffffff07712203417f6a220420014f0d032001410d74200173220541117620057322054105742005732206417f2001417f6a677622077122054100200120052001491b6b220520014f0d01200241286a22082000200441306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e2903003703002013201029030037030020052002290300370300200320014f0d022006410d7420067322044111762004732204410574200473220620077122044100200120042001491b6b220520014f0d01200241286a22082000200341306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e29030037030020132010290300370300200520022903003703002003410172220420014f0d032006410d742006732205411176200573220541057420057320077122054100200120052001491b6b220520014f0d01200241286a22032000200441306c6a220141286a2204290300370300200241206a2206200141206a2207290300370300200241186a2208200141186a2209290300370300200241106a220a200141106a220b290300370300200241086a220c200141086a220d290300370300200220012903003703002000200541306c6a22002903002112200041086a22052903002114200041106a220e2903002116200041186a220f2903002118200041206a2210290300211a2004200041286a22112903003703002007201a37030020092018370300200b2016370300200d2014370300200120123703002011200329030037030020102006290300370300200f2008290300370300200e200a2903003703002005200c290300370300200020022903003703000b200241306a24000f0b41a0cfc100200520011048000b200321040b4190cfc100200420011048000bf30b05087f027e107f017e017f230041306b22022400200041c07e6a2103200041506a21044100210520014132492106410121070240024002400340024002400240200720014f0d002004200741306c6a210803402008290300200841306a220929030054200841086a290300220a200841386a290300220b54200a200b511b0d0220092108200741016a22072001490d000b0b410021082007200146210920060d030c010b410121082007200146210920060d020b20072001460d012007417f6a220920014f0d022008450d032000200941306c6a2208290300210a20082000200741306c220c6a2209290300370300200241286a220d200841286a220e290300370300200241206a220f200841206a2210290300370300200241186a2211200841186a2212290300370300200241106a2213200841106a2214290300370300200241086a2215200841086a22162903003703002016200941086a22172903003703002014200941106a22182903003703002012200941186a22192903003703002010200941206a221a290300370300200e200941286a221b2903003703002002200a370300201b200d290300370300201a200f29030037030020192011290300370300201820132903003703002017201529030037030020092002290300370300024020074102490d0020002007417e6a220f41306c6a220d2903002008290300221c5a200d41086a221d290300220b2016290300220a5a200b200a511b0d002008200d2903003703002016201d2903003703002008290310210b2014200d41106a2903003703002011200e29030037030020132010290300370300201520122903003703002012200d41186a2903003703002010200d41206a290300370300200e200d41286a2903003703002002200b3703000240024002400240200f450d0020002007417d6a221641306c6a2208290300201c5a200841086a290300220b200a5a200b200a511b0d032003200c6a2108034020084188016a200841d8006a29030037030020084180016a200841d0006a290300370300200841f8006a200841c8006a290300370300200841f0006a200841c0006a290300370300200841e8006a200841386a290300370300200841e0006a200841306a2903003703002016450d022008290300210b200841086a210d200841506a21082016417f6a2116200b201c54200d290300220b200a54200b200a511b0d000b201641016a210f0c020b4100210f0c020b4100210f0b2000200f41306c6a210d0b200d201c370300200d200a3703082000200f41306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b200541016a21050240200120076b220e4102490d002009290300221c20092903305a2017290300220a200941386a290300220b5a200a200b511b0d002009200941306a22162903003703002017201641086a2903003703002009290310210b2018201641106a2903003703002011201b2903003703002013201a290300370300201520192903003703002019201641186a290300370300201a201641206a290300370300201b201641286a2903003703002002200b370300410121100240200e4103490d00201c20092903605a200a200941e8006a290300220b5a200a200b511b0d00200941e0006a21084103210d41022117034020092017221041306c6a221641786a200841286a290300370300201641706a200841206a290300370300201641686a200841186a290300370300201641606a200841106a290300370300201641586a200841086a290300370300201641506a2008290300370300200d200e4f0d01200d41306c2108200d2117200d41016a210d201c200920086a220829030054200a200841086a290300220b54200a200b511b0d000b0b2016201c3703002016200a3703082009201041306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b20054105490d000b410021090b200241306a240020090f0b4190cfc100200920011048000b41a0cfc100200720011048000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41013602002003411c6a4102360200200341013602242003420237020c20034198c5c200360208200320033602282003200341046a3602202003200341206a360218200341086a2000103a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241b8c5c2003602082002200241046a360228200220023602202002200241206a360218200241086a41c8c5c200103a000bdd0b09167f017e037f017e017f017e017f027e0c7f230041306b2202240002400240024020014101762203450d00417f210441022105413021064108210741282108412021094118210a4110210b4100210c0c010b4100210d0c010b4101210d0b03400240024002400240024002400240024002400240024002400240200d0e020001010b4102212420014102490d01417f2125412821264120212741182128411021294108212a4130212b4101212c2001212d4101210c0c0b0b02400240200c0e020001010b200320046a2203210d0340200d410174221a41017221230240201a20056a221a20014f0d00202320014f0d06201a20232000201a20066c6a22172903002000202320066c6a221929030054201720076a2903002218201920076a290300221c542018201c511b1b21230b0240202320014f0d00200d20014f0d042000202320066c6a221a2903002000200d20066c6a220d2903005a201a20076a22192903002218200d20076a2217290300221c5a2018201c511b0d00200220086a220e200d20086a220f290300370300200220096a2210200d20096a22112903003703002002200a6a2212200d200a6a22132903003703002002200b6a2214200d200b6a2215290300370300200220076a221620172903003703002002200d29030037030020192903002118201a200b6a221b290300211c201a200a6a221d290300211e201a20096a221f2903002120201a2903002121200f201a20086a2222290300370300201120203703002013201e3703002015201c37030020172018370300200d20213703002022200e290300370300201f2010290300370300201d2012290300370300201b201429030037030020192016290300370300201a20022903003703002023210d0c010b0b20030d074100210d0c0c0b202d20256a222d20014f0d05200220266a220e200020266a221a290300370300200220276a220f200020276a2223290300370300200220286a2210200020286a2217290300370300200220296a2211200020296a22192903003703002002202a6a22122000202a6a2213290300370300200220002903003703002000202d202b6c6a220d2903002118200d202a6a2214290300211c200d20296a2215290300211e200d20286a22162903002120200d20276a221b2903002121201a200d20266a221d29030037030020232021370300201720203703002019201e3703002013201c37030020002018370300201d200e290300370300201b200f290300370300201620102903003703002015201129030037030020142012290300370300200d20022903003703004100210d0340200d202c74221a202c7221230240201a20246a221a202d4f0d002023202d4f0d06201a20232000201a202b6c6a221729030020002023202b6c6a2219290300542017202a6a29030022182019202a6a290300221c542018201c511b1b21230b02402023202d4f0d00200d202d4f0d0420002023202b6c6a221a2903002000200d202b6c6a220d2903005a201a202a6a22192903002218200d202a6a2217290300221c5a2018201c511b0d00200e200d20266a2213290300370300200f200d20276a22142903003703002010200d20286a22152903003703002011200d20296a2216290300370300201220172903003703002002200d29030037030020192903002118201a20296a221b290300211c201a20286a221d290300211e201a20276a221f2903002120201a29030021212013201a20266a2222290300370300201420203703002015201e3703002016201c37030020172018370300200d20213703002022200e290300370300201f200f290300370300201d2010290300370300201b201129030037030020192012290300370300201a20022903003703002023210d0c010b0b202d202c4b0d070b200241306a24000f0b41e8cfc100200d20011048000b41e8cfc100200d202d1048000b41d8cfc100202320011048000b41d8cfc1002023202d1048000b41a0cfc100202d20011048000b4100210c0c010b4101210c0c010b4101210d0c020b4101210d0c010b4101210d0c000b0b130020004102360204200041e8c3c2003602000b130020004100360204200041a4a4c1003602000b130020004101360204200041ecd9c1003602000b130020004103360204200041b0d8c1003602000b130020004101360204200041b8aec2003602000b130020004103360204200041f880c2003602000b130020004101360204200041fcacc2003602000b130020004102360204200041c0adc2003602000b130020004107360204200041849ac2003602000b13002000410b360204200041c4e8c1003602000b13002000410236020420004188bdc2003602000b130020004101360204200041b0bfc1003602000bf60201057f230041206b220224000240024020002d0000220320012d0000470d00024020034101470d002000410c6a28020022042001410c6a280200470d012004450d02200041046a2802002203200141046a2802002205460d024100210603402003200541201080020d02200341206a2103200541206a2105200641016a22062004490d000c030b0b20002001460d01200041016a200141016a4120108002450d010b418c93c00041141008200041046a280200210520002d00002103200241186a22062000410c6a2802003602002002200341014736021020022005200041016a20034101461b3602142002200241106a1011200228020022002002280208100902402002280204450d002000101f0b200141046a280200210320012d0000210020062001410c6a2802003602002002200041014736021020022003200141016a20004101461b3602142002200241106a101120022802002200200228020810092002280204450d002000101f0b200241206a24000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310142202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310142202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310142202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310142202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310142202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310142202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101222020d140b200341011015000b2003101222020d100b200341011015000b2003101222020d0c0b200341011015000b2003101222020d100b200341011015000b2003101222020d060b200341011015000b2003101222020d020b200341011015000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000be4d6020b027f017e057f017e037f017e017f037e0c7f0d7e6a7f230041d0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441094b0d00024020040e0a009a010402090805060307000b20034198046a41086a200141106a2903003703002003200141086a2903002205370398042005a7417e6a220441054b0d9b01200241086a2800002106200241046a280000210720022d00002102024020040e0600201e1f1c21000b41012108200341a0046a2802002109200328029c04210a200241ff017122024101470d4002402009450d00200a101f0b41002107410121094101210a0c470b200141086a2903004202520d9b01412d21064101210741fe80c000410041fe80c00020022d000041ff017122024102461b20024103461b22040daf02200141106a290300210520034190036a41086a22024200370300200342003703900341be93c000411320034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a4110100a0da70120024200370300200342003703900341f594c000410d20034190036a10002007200229030037030020032003290390033703980420034198046a411041a4a4c100410041001001417f460da302200342003703900520034198046a411020034190056a41084100100141016a41084d0d9901200329039005500da30220034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a220720022903003703002003200329039003370398044200210b024020034198046a411041a4a4c100410041001001417f460d00200342003703900520034198046a411020034190056a41084100100141016a41084d0da501200329039005210b0b200242003703002003420037039003418295c000411520034190036a10002007200229030037030020032003290390033703980420034198046a411041a4a4c100410041001001417f460d48200342003703900520034198046a411020034190056a41084100100141016a41084d0da501200329039005200b7c2005560d490ca3020b200341b8036a41046a22082001410e6a2f01003b010020034190056a41086a2209200141206a29030037030020034190056a41106a220a200141286a29030037030020032001410a6a2801003602b8032003200141186a29030037039005200141096a2d00002107200141106a2903002105200141086a2d00002106200341d8036a41086a220c200241206a2d00003a00002003200241186a2900003703d80320022d0000210420064102460d0c20064103460d0a20064104470d9b014128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040da102200320073a009804200341f8036a41086a22024200370300200342003703f80341ecfdc0004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410110040c0b0b20034192036a2001410b6a2d00003a0000200341f0026a41086a200141206a290300370300200341f0026a41106a200141286a2903003703002003200141096a2f00003b0190032003200141186a2903003703f002200141086a2d0000220d417e6a220441034b0d9b012001410c6a280200210e200141106a290300220fa7211020022d00002102024020040e04000f0d0e000b4100210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d284128210620100daa020cab020b200341d0026a41086a220c2001412c6a2d00003a00002003200141246a2902003703d002200141386a290300210b200141306a2903002111200141c8006a2903002112200141c0006a2903002113200141206a280200210a200141186a2902002105200141146a2802002106200141106a28020021142001410c6a2d00002115200141086a28020021042001410d6a2f000021072001410f6a2d00002108200341e0026a41086a2216200241206a2d00003a00002003200241186a2900003703e0022007200841107472210920022d0000210820044102460d0520044103470d9b01200341a0066a41086a2207200341d0026a41086a2d00003a0000200320032903d0023703a00641ac80c00041ac80c0004100200841ff017122021b20024103461b2204450d150c9e020b200141386a290300210b200141306a29030021112001412c6a2802002117200141286a280200210c200141246a2802002114200141206a28020021182001411c6a2802002116200141186a2802002119200141146a280200211a200141106a28020021152001410c6a2802002107200141096a2d0000211b200141086a2d00002106200341f0026a41086a200241206a2d00003a00002003200241186a2900003703f0022006417e6a220641034b0d9b0120022f0001200241036a2d0000411074722104200241146a28000021082002410c6a2900002105200241086a2800002109200241046a280000210a20022d00002102024020060e0400130f12000b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d1f200341d8036a41086a220220062d00003a000020032003290390033703d80320034180066a41086a220620022d00003a0000200320032903d80337038006200341af056a20062d00003a0000200320083600a3052003200537009b0520032009360097052003200a3600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034190026a20034198046a105a20032903900220034190026a41086a29030084500d4c42002105200341a0036a41086a22024200370300200342003703a00341b1f2c0004112200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d58200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460dae012002410f4d0dae01200341a0046a290300210520032903980421120c590b20034198046a200141086a41d00010fe011a20034190056a41206a200241206a2d00003a000020034190056a41186a200241186a29000037030020034190056a41106a200241106a29000037030020034190056a41086a200241086a2900003703002003200229000037039005200341b8026a20034198046a20034190056a105b20032802bc02210620032802b80221044100210941012107410121084101210a4101210c0cae020b200141106a28020021062001410c6a2802002107200141086a2802002109200141046a280200210420034180066a41086a2208200241206a2d00003a00002003200241186a2900003703800620044102470d9a01200241036a2d0000210420022f0001210a200241146a280000210c2002410c6a2900002105200241086a2800002116200241046a280000211520022d0000210220034190036a41086a20082d00003a0000200320032903800637039003200241ff01714101470d03200341a0036a41086a220220034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220820022d00003a0000200320032903a00337039804200341af056a20082d00003a00002003200c3600a3052003200537009b052003201636009705200320153600930520032003290398043700a7052003200a20044110747222043b019005200320044110763a009205200341c0026a20034190056a105c20032903c002200341c0026a41086a29030084500d13200341f8036a41086a22044200370300200342003703f803419086c0004112200341f8036a100020022004290300370300200320032903f8033703a003200341a0036a411041a4a4c100410041001001417f460d202003410036029804200341a0036a411020034198046a41044100100141016a41044d0d9d0120062003280298044d0d210c98020b200341e0026a41086a200141286a2d00003a00002003200141206a2902003703e0022001411c6a2802002116200141146a2902002105200141106a28020021062001410c6a2802002104200141086a2802002108200141046a2802002107200341f0026a41086a2209200241096a290000370300200341f0026a41106a220a200241116a290000370300200341f0026a41186a220c200241196a290000370300200320022900013703f00220022d0000210220074102460d0320074103470d9a01200341a0066a41086a200341e0026a41086a2d00003a0000200320032903e0023703a006200341f8036a41186a200341f0026a41186a290300370300200341f8036a41106a200341f0026a41106a290300370300200341f8036a41086a2207200341f0026a41086a290300370300200320032903f0023703f803200241ff01714101470d0d200341a0036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703a00320032900fb03210b2003290083042111200328008b04210920032f01f803210a20032d00fa03210c20034198046a41086a221520022d00003a0000200320032903a0033703980420034190056a411f6a20152d00003a00002003200c3a0092052003200a3b019005200320093600a3052003201137009b052003200b3700930520032003290398043700a70520074200370300200342003703f80341af8fc1004108200341f8036a100020022007290300370300200320032903f8033703a003200341a0036a411041a4a4c100410041001001417f460d2520034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460da1012002411f4d0da10120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2207200341f8036a41106a29030037030020034180066a41086a2209200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200729030037030020034198046a41086a20092903003703002003200329038006370398040c260b200341f0026a41086a2001412c6a2802003602002003200141246a2902003703f002200141186a2903002111200141206a28020021152001410c6a2802002108200141096a2d00002114200141106a2903002105200141086a2d00002107200341e0026a41086a200241206a2d00003a00002003200241186a2900003703e0022007417e6a2206410a4b0d9a0120022f0001200241036a2d00004110747221042005a72109200241146a280000210a2002410c6a290000210b200241086a280000210c200241046a280000211620022d00002102024020060e0b00302d2e2b31322f342c33000b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d4e20034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a00002003200a3600a3052003200b37009b052003200c36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a20034190056a105d20032d0098044101470d5c41f7e3c00021044123210620074104470df0010cf5010b200241036a2d0000210420022f0001211a200241146a28000021182002410c6a2900002112200241086a2800002117200241046a2800002119200341f0026a41086a200c2d00003a0000200320032903d0023703f00220034190036a41086a20162d00003a0000200320032903e0023703900341012107200841ff01714101470d0a20034198046a41086a220720034190036a41086a2d00003a0000200320032903900337039804200341d8036a41086a220220072d00003a000020032003290398043703d803200341bf066a20022d00003a0000200320183600b306200320123700ab06200320173600a706200320193600a306200320032903d8033700b7062003201a20044110747222043b01a006200320044110763a00a2062002200341f0026a41086a2d00003a0000200320032903f0023703d803201541ff01714101470d1920034198046a2014410676101e20032802a0042014413f7122024d0d39200341c0036a20032802980420024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029c04450d8b020c8a020b20034198046a41086a200341a0036a41086a2d00003a0000200320032902a00337039804412a210641d480c000210420070d95020c96020b200341f8036a41186a200c290300370300200341f8036a41106a200a290300370300200341f8036a41086a2009290300370300200320032903f0023703f803200241ff01714101470d0c200341d8036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703d80320032900fb032105200329008304210b200328008b04210620032f01f803210420032d00fa03210720034180066a41086a220920022d00003a0000200320032903d80337038006200341a0066a411f6a20092d00003a0000200320073a00a206200320043b01a006200320063600b3062003200b3700ab06200320053700a30620032003290380063700b706200341f8036a41086a22024200370300200342003703f80341af8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411041a4a4c100410041001001417f460d2320034190046a4200370300200341f8036a41106a420037030020024200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460d9e012002411f4d0d9e0120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2206200341f8036a41106a29030037030020034180066a41086a2204200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200629030037030020034198046a41086a20042903003703002003200329038006370398040c240b4128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040d96022003200537039804200341f8036a41086a22024200370300200342003703f80341eb83c1004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810040b0c82020b200241036a2d0000211620022f00012115200241146a28000021142002410c6a290000210b200241086a2800002106200241046a280000211920034197066a20092903003700002003419f066a200a2d00003a0000200320073a0080062003200537008706200320032802b80336008106200320032903900537008f06200320082f01003b00850620034190036a41086a200c2d00003a0000200320032903d80337039003200441ff01714101470d0d200341a0036a41086a220420034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220220042d00003a0000200320032903a00337039804200341f0026a41086a220420022d00003a000020032003290398043703f002200341a0066a41086a20042d00003a0000200320032903f0023703a00620034198046a41186a20034180066a41186a29030037030020034198046a41106a20034180066a41106a290300370300200220034180066a41086a290300370300200320032903800637039804411210122202450d9c01200241106a41002f009484413b0000200241086a410029008c844137000020024100290084844137000020024112413210142202450d9d012002201520164110747222043b0012200220143600252002200b37001d2002200636001920022019360015200220032903a006370029200241146a20044110763a0000200241316a200341a0066a41086a2d00003a0000412010122204450d9e012004200329039804370000200441186a20034198046a41186a290300370000200441106a20034198046a41106a290300370000200441086a20034198046a41086a290300370000200341f8036a41086a22074200370300200342003703f80320024132200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a003200341a0036a41102004412010042004101f2002101f0c81020b200341b8036a41086a2209200341f0026a41086a290300370300200341b8036a41106a2215200341f0026a41106a2d00003a0000200320034192036a2d00003a00d203200320032f0190033b01d003200320032903f0023703b80341ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034197066a20092903003700002003419f066a20152d00003a00002003200f370087062003200e36008306200320032d00d2033a008206200320032f01d0033b018006200320032903b80337008f0641f79cc100210420034180066a105e450d9b024108211c200341f8036a41086a22024200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0034100211d200341a0036a411041a4a4c100410041001001417f460d5920034210370294052003200341a0036a3602900520034198046a20034190056a105f200328029804221c450db001200341a0046a280200211e200328029c04211d0c5a0b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0142002105200341f8036a41086a22024200370300200342003703f80341dd81c000410d200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0030240200341a0036a411041a4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d970120032903980421050b411c21062005200f5a0d422003200f37039804200341f8036a41086a22024200370300200342003703f80341ea95c1004112200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810044100210241002104200d4102460d9b020c9d020b200341a7056a200341f0026a41086a290300370000200341af056a200341f0026a41106a2d00003a00002003200f370097052003200e36009305200320032f0190033b019005200320032903f00237009f05200320034192036a2d00003a00920541ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1a0b412821060c9b020b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0e200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220620022d00003a0000200320032903a00337038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206411310122202450d9d012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d9e0120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d1520034198046a20071060200341a0066a200341cc046a4120108002450d4b41caf7c0002104411c21060c720b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040c9b020b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040cef010b4128210641ac80c00041ac80c0004100200241ff017122021b20024103461b22040dfc01411310122202450d9d012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d9e0120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d1220034198046a2007106020032d008c05450d4f41baf6c0002104411d2106200341b8046a2802000d500c510b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0d20034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206200341a0066a105e450d2c411310122202450da1012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450da20120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d1120034198046a2007106020032d008c05450d5841baf6c0002104411d2106200341b8046a280200450dfa010cf9010b20034180066a41086a200341d8036a41086a2d00003a0000200320032903d80337038006412a210641d480c00021040c180b200341d8036a41086a20072d00003a0000200320032903a0063703d803201541ff01714101470d1020034190056a2014410676101e2003280298052014413f7122024d0d36200341c0036a20032802900520024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029405450df3010cf2010b41a286c0002104411b21062007450d86020c85020b41002107200341a0046a2802002106200328029c04210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d26410121092006450d05200a101f0c050b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040c86020b41012108200341a0046a2802002109200328029c04210c200241ff017122024101470d2002402009450d00200c101f0b4100210a41012109410121070c290b410121094101210741ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034198046a41086a2903002105410810122202450d9c012002200537000041a490c000410a2002410810042002101f4100210441012108410121094101210a410121070c290b41fe80c000410041fe80c000200241ff017122024102461b20024103461b2104412d210641012108410121094101210a0c1f0b200341a4046a2802002107200341a0046a280200210a200328029c04210841ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2402402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b4101210741002109200a450d002008101f0b41282106200328029804417e6a220241054b0d29024020020e06002e2b2a2c2d000b200341a0046a280200450d2d200328029c04101f0c2d0b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c030b200341b8036a41086a20022d00003a0000200320032903d8033703b8030cf2010b20034180066a41086a200341d8036a41086a2d00003a0000200320032902d80337038006412a210641d480c0002104200c450de6010ce5010b20034180066a41086a20034198046a41086a2d00003a00002003200329039804370380060b412a210641d480c00021040cec010b20064180204b0df7010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a290300370300200320032903900537039804410910122202450d8501200241086a41002d00d286403a0000200241002900ca864037000020024109412910142202450d86012002200329039804370009200241216a200341b0046a290300370000200241196a200341a8046a290300370000200241116a200341a0046a290300370000200341003602a806200342013703a006200320063602f803200341f8036a200341a0066a101320032802a406220a20032802a80622086b20064f0d18200820066a22042008490dfd01200a410174220c20042004200c491b220c4100480dfd01200a450d3720032802a006200a200c10142204450d380cdf010b4188f6c0002104411c21060ce9010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030ce3010b200f422088a72202450d2e20024105742206410575220aad4206862205422088a70dfb012005a722044100480dfb0120041012220c450d9001200e20066a2116200241057421044100200e6b2115200c2102200e2106034020034180066a41186a2207200641186a29000037030020034180066a41106a2208200641106a29000037030020034180066a41086a2209200641086a2900003703002003200629000037038006200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003702002002412c6a2008290300370200200241246a20092903003702002002411c6a200329038006370200200241c0006a2102200641206a2106200441606a22040d000b201620156a41606a41057641016a21022010450ddb010cda010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980441d19cc100210420034198046a105e0db90141082107200341d8036a41086a220820034198046a41176a290000370300200341d8036a41106a220920034198046a411f6a2d00003a0000200320032d009a043a00f203200320032f0198043b01f003200320032900a7043703d803200328009b042102200329009f042105200341f8036a41086a22064200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2006290300370300200320032903f8033703a00341002104200341a0036a411041a4a4c100410041001001417f460d3e20034210370284062003200341a0036a36028006200341a0066a20034180066a105f20032802a0062207450d9401200341a0066a41086a280200210820032802a40621042003418f046a200341d8036a41086a29030037000020034197046a200341e8036a2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a210620082004460d3f0cb8010b200341b0046a4200370300200341a8046a4200370300200341a0046a420037030020034200370398040b024020034190056a20034198046a4120108002450d0041d98fc1002104413121060cd7010b200341d8036a41086a2202200341a0066a41086a2d00003a0000200320032903a0063703d803200841ff01714101470d2320034198046a2004410676101e20032802a0042004413f7122024d0d33200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132116200429000b2105200428000721062004280003210441012107200328029c04450dd3010cd2010b200341b0046a420037030020034198046a41106a420037030020034198046a41086a420037030020034200370398040b200341a0066a20034198046a4120108002450d0141b78fc1002104412221060b200810202008101f0cd3010b20034198046a200841d80010fe011a41002104200341003a00900520034188026a20034198046a20034190056a10592003200328028802453a009a04200341063b01980420034198046a10272008101f0cd2010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d20200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220720022d00003a0000200320032903a00337038006200341af056a20072d00003a00002003200a3600a3052003200b37009b052003200c36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460dc901200342103702a406200320034190036a3602a00620034198046a200341a0066a10402003280298042202450d8e01200328029c042106200220084105746a2204450d3d200341a0046a28020020084d0d3d20034190056a2004460d4e200420034190056a41201080024521042006450dc8010cc7010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d082003200836029804200341a0036a41086a22024200370300200342003703a00341eecec0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cc9010b200341f8036a41086a2206200341f0026a41086a280200360200200320032903f0023703f80320034190036a41086a2214200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d1f20034180066a41086a221920142d00003a0000200320032903900337038006200341d8036a41086a220220192d00003a000020032003290380063703d803200341bf066a20022d00003a00002003200a3600b3062003200b3700ab062003200c3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a206200220062d00003a0000200320032903f8033703d803200841ff01714101470d2d20034198046a2009410676101e20032802a0042009413f7122024d0d3e200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132115200429000b211120042800072106200428000321044101210a200328029c04450db3010cb2010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d1f20034198046a41086a220220062d00003a0000200320032903900337039804200341d8036a41086a220620022d00003a000020032003290398043703d803200341a0066a411f6a20062d00003a00002003200a3600b3062003200b3700ab062003200c3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a20620034198046a200341a0066a105d20032d0098044101470d2d20034180066a41086a2202200341b8046a2d00003a00002003200341b0046a29030037038006200341a4046a2902002105200341ac046a2802002106200329029c04210b20032f009904210420032d009b042107200341d8036a41086a220920022d00003a000020032003290380063703d80320034190056a411f6a20092d00003a0000200320073a009205200320043b019005200320063600a3052003200537009b052003200b37009305200320032903d8033700a70520034180066a20034190056a106120032802800621020240200328028806220420084d0d00200341a0066a200220084105746a2206460d4a2006200341a0066a4120108002450d4a0b0240200328028406450d002002101f0b41ade5c0002104411421060cc7010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d052003200836029804200341a0036a41086a22024200370300200342003703a00341a6e1c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cc6010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d1f20034190056a41086a220220062d00003a000020032003290390033703900520034180066a41086a220720022d00003a0000200320032903900537038006200341b7046a20072d00003a00002003200a3600ab042003200b3700a3042003200c36009f042003201636009b0420032003290380063700af04200320043b019804200320044110763a009a04200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a003370390034100210220034190036a411041a4a4c100410041001001417f460d34200342103702a406200320034190036a3602a00620034190056a200341a0066a10402003280290052207450d8a0120034198056a280200210220032802940521060c350b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d032003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a003418ce1c000411a200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc4010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d022003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc3010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1f4128210620090dbe010cc2010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1f0b412821060cc0010b200741d480c00020024101461b2104412a21064100210a02402009450d00200c101f0b410121090b410121070c080b200741d480c00020024101461b2104412a21064100210702402009450d00200a101f0b410121094101210a0c070b20032802a00621040cc7010b41fc89c0004105200a200341a4046a28020010044101210802402006450d00200a101f0b410021090c030b41002102200328029c040dd0010cd1010b41e3f5c0002104412521060cce010b0240200741186c2202450d00200820026a21062008210203402002280200200241086a2802002002410c6a280200200241146a2802001004200241186a22022006470d000b0b02402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b410121090240200a450d002008101f0b410021080b4101210a410121070b410021040b0240024002400240200328029804417e6a220241054b0d00024020020e06000b02010304000b2007450d0a200341a0046a280200450d0a200328029c04101f0c0a0b20034198046a10440c090b200a450d08200341a0046a280200450d08200328029c04101f0c080b2009450d07200341a0046a280200450d07200328029c04101f0c070b2008450d06024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d06200328029c04101f0c060b4205200b7c2005580dda010b4198d8c1001024000b20034198046a10440c030b200341a0046a280200450d02200328029c04101f0c020b2007450d01200341a0046a280200450d01200328029c04101f0c010b2009450d00024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d00200328029c04101f0b41012108410021070ce1010b410021022003280294050dbb010cbc010b41e7f3c000210441202106200c0db8010cb9010b200341b8036a41086a20022d00003a0000200320032903d8033703b803200841087621020cb0010b41b59cc100210441002102200d4102460dd8010cda010b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c040b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803412a210641d480c000210420074104470da3010ca8010b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d8030c020b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c010b20034180066a41086a20034190056a41086a2d00003a00002003200329029005370380060b412a210641d480c00021040ca4010b4108210c4100210220100dab010cac010b20032005422088a73602a0042003200936029c0420032008360298042003411436029405200341c8cec0003602900520034198046a20034190056a106202402009450d002008101f0b410021040ca2010b200341a0036a41086a22024200370300200342003703a0034196d1c0004115200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900320034190036a411041a4a4c10041001004200320143a00980420024200370300200342003703a00341ecfdc0004119200341a0036a100020062002290300370300200320032903a0033703900320034190036a411020034198046a41011004410021040ca1010b42e40021120b024020122011562005200b562005200b511b450d004187f4c000210441102106200c0dac010cad010b201a450d10200341a0036a41086a22024200370300200342003703a00341c3f2c0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d1c200341003602980420034190036a411020034198046a41044100100141016a41044d0d59201a2003280298044d0d1d0c88010b20032d008c05450d1541baf6c0002104411d21060c260b200c101222040da7010b200c41011015000b41002107200328029c040d9e010c9f010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b803200841087621022005422088a72106200921040c86010b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803411a21064193e5c00021040c99010b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a003370390034100210c20034190036a411041a4a4c100410041001001417f460d17200342103702a406200320034190036a3602a00620034198046a200341a0066a1040200328029804220a450d5f200341a0046a280200210c200328029c0421160c180b200341cc046a20032903980420034198046a41086a2903001063412821062007410110642204450d18200341b8046a280200450d010b20032802b404101f0b200341c4046a280200450daa0120032802c004101f0caa010b4100211e0b201c201e41067422096a22810121022009450d0c20034198046a411c6a21820120034198046a41146a21094100211520034198046a41186a21830120034198046a41206a21840120034198046a41286a218501034020034198046a41086a228601201c20156a2202411c6a29020037030020034198046a41106a2214200241246a2902003703002083012002412c6a290200370300208401200241346a2902003703002085012002413c6a2802003602002003200241146a29020037039804200241106a280200221a450d0c2002290300210f200241086a290300212420034190056a41286a22870120850128020036020020034190056a41206a22880120840129030037030020034190056a41186a22890120830129030037030020034190056a41106a228a01201429030037030020034190056a41086a228b012086012903003703002003200329039804370390052014201a3602002009200329039005370200200941086a208b01290300370200200941106a208a01290300370200200941186a208901290300370200200941206a208801290300370200200941286a208701280200360200200320243703a0042003200f3703980420820120034180066a41201080020d1002402009280200450d00201a101f0b201541c0006a2115200241c0006a208101470d000b2081012202208101470d0d0c0e0b200341f8036a41176a2008290300370000200341f8036a411f6a20092d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a21060b200441016a22022004490dba0120044101742208200220022008491b2209ad4206862205422088a70dba012005a722024100480dba012004450d0520072004410674200210142207450d060c770b41012107410021060b200341a0036a41086a22044200370300200342003703a00341decfc000411d200341a0036a100020034190036a41086a2004290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200341003602900520034190036a411020034190056a41044100100141016a41044d0d4220032802900521042006450d750c740b4104210420060d730c740b4197f4c000210441222106200c0d9a010c9b010b20032903a804210b200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900342002105024020034190036a411041a4a4c100410041001001417f460d00200342003703900520034190036a411020034190056a41084100100141016a41084d0d4620032903900521050b20024200370300200342003703a00341a4f6c0004116200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d10200342003703900520034190036a411020034190056a41084100100141016a41084d0d462005200329039005200b7c5a0d200c6b0b2006450d8b012002101f0c8b010b2002101222070d710b200241081015000b4100210a200328029c040d730c740b4200210b200341a0036a41086a22024200370300200342003703a00341e6f7c0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0e2003420037039805200342003703900520034190036a411020034190056a4110410010012202417f460d502002410f4d0d5020034198056a290300210b20032903900521050c0f0b200241c0006a21020b2002208101460d010b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b4100218c010240201d450d00201c101f0b4108218d01410821024100218e010cb0010b200341a0066a41286a2214200941286a280200360200200341a0066a41206a228301200941206a290200370300200341a0066a41186a228401200941186a290200370300200341a0066a41106a228501200941106a290200370300200341a0066a41086a228601200941086a290200370300200320092902003703a00620034198046a41286a2209201428020036020020034198046a41206a221420830129030037030020034198046a41186a22830120840129030037030020034198046a41106a22840120850129030037030020034198046a41086a228501208601290300370300200320032903a0063703980441c0001012228d01450d4c208d01200f370300208d01201a360210208d01200329039804370214208d012024370308411c218201208d01411c6a2085012903003702004124218b01208d0141246a208401290300370200412c218a01208d01412c6a2083012903003702004134218901208d0141346a2014290300370200413c218801208d01413c6a2009280200360200201e41067441406a2015460d0d200241c0006a218f01411421900120034198046a41146a21094106219101201c201e4106746a41406a21920120034198046a411c6a21930141012194014110211441082115412821870120034198046a41286a2185014120211a20034198046a41206a218401411821860120034198046a41186a21830141c000219501420621244220210f41002196014101218e014101218c01410121020caa010b201a41e4004b0d6b0b2018450d06200341a0036a41086a22024200370300200342003703a00341d7f2c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0c200341003602980420034190036a411020034198046a41044100100141016a41044d0d4720182003280298044d0d0d0c5e0b4101210a410021160b200a200c4105746a2104200a21020340200420026b41ff004d0d0d20034190056a2002460d0e200220034190056a4120108002450d0e200241206a220620034190056a460d0e200620034190056a4120108002450d0e200241c0006a220620034190056a460d0e200620034190056a4120108002450d0e200241e0006a220620034190056a460d0e20024180016a2102200620034190056a41201080020d000c0e0b0b2003419c056a200736020020034190056a41086a41063a0000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d5d20032802c004101f0c5d0b20034180066a41086a22072004417f6a2204360200200220044105746a220229000021052002290008210b20022900102111200641186a200241186a290000370000200620113700102006200b3700082006200537000020034198046a41086a2007280200360200200320032903800637039804411510122202450d482002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d4920022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602fc03200320023602f80320034198046a200341f8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d4a200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d4b200220032903a0063700122002412a6a200341a0066a41186a2204290300370000200241226a200341a0066a41106a22072903003700002002411a6a200341a0066a41086a2208290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a411010052002101f20034198046a41186a200429030037030020034198046a41106a200729030037030020034198046a41086a2008290300370300200320032903a0063703980420064200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900342002105024020034190036a411041a4a4c100410041001001417f460d00200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3d20032903f80321050b200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0c200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3d20032903f803210b410f2106410f10122202450d0d0c590b200341a0036a41086a22024200370300200342003703a003418295c0004115200341a0036a1000200341f8036a41086a2002290300370300200320032903a0033703f803200341f8036a411041a4a4c100410041001001417f460d0d2003420037039005200341f8036a411020034190056a41084100100141016a41084d0d3d200329039005221150450d0e41a4a9c2001024000b4101210420060d780c790b41c9f4c000210441292106200c0d86010c87010b420521050b200341a0026a200341a0066a2005200b1065200341a0066a200329039804221120057d20034198046a41086a290300200b7d2011200554ad7d1063412821062007410110642204450d010b024020034198046a41206a280200450d0020032802b404101f0b200341c4046a280200450d8c0120032802c004101f0c8c010b20034190056a41086a41013a000020034199056a20032903a00637000020034190056a412c6a2007360200200341a1056a200341a0066a41086a290300370000200341a9056a200341b0066a290300370000200341b1056a200341b8066a290300370000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b20034198046a412c6a280200450d5520032802c004101f0c550b4101218e014101218c012081012202208101470d9f010ca0010b20184190ce004b0d510b2017450d07200341a0036a41086a22024200370300200342003703a00341f2f2c0004118200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d08200341003602980420034190036a411020034198046a41044100100141016a41044d0d3d20172003280298044d0d090c4e0b024020022004460d00034020034190056a2002460d02200220034190056a4120108002450d022004200241206a2202470d000b0b410f10122202450d42200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d43200220032903900537000f200241276a20034190056a41186a22062903003700002002411f6a20034190056a41106a2204290300370000200241176a20034190056a41086a22152903003700002003427f37039804200341a0036a41086a22144200370300200342003703a0032002412f200341a0036a100020034190036a41086a2014290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20034180066a41186a2214200629030037030020034180066a41106a2206200429030037030020034180066a41086a220420152903003703002003200329039005370380062016200c470d4c200c41016a2202200c490d9b01200c4101742216200220022016491b2216ad4205862205422088a70d9b012005a722024100480d9b01200c450d09200a200c41057420021014220a450d0a0c4c0b419ae4c0002104411f21062016450d5f200a101f20074104470d6c0c710b42e807210b410f2106410f101222020d4c0b200641011015000b420521110b20054280de34201180200b7c540d4b0b41d7f6c0002104412a2106200341b8046a2802000d7f0c80010b4189f5c000210441272106200c0d770c780b2017418089fa004b0d450b024020034190056a2011200b1066450d0041c4f5c0002104411f2106200c0d760c770b200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d02200341003602980420034190036a411020034198046a41044100100141016a41044d0d3b20032802980441016a21060c030b20021012220a0d420b200241011015000b410121060b200320063602980442002112200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a221b2002290300370300200320032903a0033703900320034190036a411020034198046a4104100420034180066a41186a420037030020034180066a41106a420037030020034180066a41086a420037030020034200370380062014201720034180066a1002200341d0026a41026a220820032d0082063a0000200341a0066a41086a220920034180066a41176a290000370300200341a0066a41106a220a20034180066a411f6a2d00003a0000200320032f0180063b01d0022003200329008f063703a00620032800830621042003290087062105200341d8036a41086a20034190056a41176a290000370300200341d8036a41106a20034190056a411f6a2d00003a0000200341b8036a41086a2009290300370300200341b8036a41106a200a2d00003a0000200320032d0092053a00f203200320032f0190053b01f0032003200329009f053703d803200320032f01d0023b01d003200320082d00003a00d203200320032903a0063703b8032003280093052159200329009705211320024200370300200342003703a00341dd81c000410d200341a0036a1000201b2002290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d3520032903980421120b20034180066a41026a20082d00003a000020034198046a41086a200929030037030020034198046a41106a200a2d00003a0000200320032f01d0023b018006200320032903a00637039804411810122202450d38200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d39200220032f0180063b00182002200537001f2002200436001b20022003290398043700272002411a6a20034180066a41026a2d00003a00002002412f6a20034198046a41086a290300370000200241376a20034198046a41106a2d00003a0000200341a0036a41086a22084200370300200342003703a00320024138200341a0036a1000200341f8036a41086a2008290300370300200320032903a0033703f803200341f8036a4110100a21092002101f4101210820090d3e200341e0026a41026a200341d0026a41026a2d00003a000020034198046a41086a200341a0066a41086a29030037030020034198046a41106a200341a0066a41106a2d00003a0000200320032f01d0023b01e002200320032903a00637039804411810122202450d3a200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d3b200220032f01e0023b00182002200537001f2002200436001b20022003290398043700272002411a6a200341e2026a2d00003a00002002412f6a200341a0046a290300370000200241376a200341a8046a2d00003a000020034100360288062003420137038006200320173602f803200341f8036a20034180066a1013024002400240200328028406220a20032802880622096b20174f0d00200920176a22082009490d9101200a410174221b20082008201b491b221b4100480d9101200a450d01200328028006200a201b10142208450d020c3f0b20032802800621080c3f0b201b101222080d3d0b201b41011015000b4190dbc1001024000b41de86c00041331023000b41f8cec1001024000b41a8dbc1001024000b41b0bbc2001024000b41a8c1c2001024000b41ace8c1001024000b41bca9c2001024000b41e0c8c1001024000b4198bbc2001024000b41ec99c2001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b4180d8c1001024000b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b412041011015000b410941011015000b412941011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411341011015000b412641011015000b410841011015000b200441081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41c00041081015000b41de86c00041331023000b411541011015000b413541011015000b411241011015000b413241011015000b41de86c00041331023000b410f41011015000b412f41011015000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b2003201b360284062003200836028006201b210a0b200820096a2014201710fe011a200341a0036a41086a221b4200370300200342003703a00320024138200341a0036a100020034190036a41086a201b290300370300200320032903a0033703900320034190036a41102008200920176a10040240200a450d002008101f0b2002101f0240200c450d002014101f0b410021080b200341c8046a2018360200200341c4046a2016360200200341bc046a201a360200200341b8046a2015360200200341ce046a20032d00f2033a0000200341d3046a201337000020034198046a41376a2059360000200341db046a20032903d803370000200341e3046a200341d8036a41086a290300370000200341eb046a200341d8036a41106a2d00003a00002003201137039804200320193602c004200320073602b404200320063602b004200320123703a8042003200b3703a004200320032f01f0033b01cc04200341ef046a2004360000200341f3046a2005370000200341ee046a20032d00d2033a0000200341fb046a20032903b80337000020034183056a200341b8036a41086a2903003700002003418b056a200341b8036a41106a2d00003a0000200341003a008c05200320032f01d0033b01ec0402400240024002400240411310122202450d002002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d01200220063600132003411736028406200320023602800620034198046a20034180066a10672002101f0240200341b8046a280200450d00200341b4046a280200101f0b0240200341c4046a280200450d00200341c0046a280200101f0b200341a0036a41086a22024200370300200342003703a00341ccf3c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041a4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a10682003280298042204450d042003200329029c04220537029c0420032004360298042005a72005422088a72202460d010c060b200341003602a0042003420437039804410421040b200241016a22072002490d5420024101742209200720072009491b2207ad4202862205422088a70d542005a722094100480d54024002402002450d0020042002410274200910142204450d010c050b2009101222040d040b200941041015000b411341011015000b412641011015000b41de86c00041331023000b2003200736029c042003200436029804200341a0046a28020021020b20034198046a41086a2207200241016a360200200420024102746a20063602002003411b36028406200341ccf3c0003602800620034198046a20034180066a10690240200328029c04450d002004101f0b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2204290300370300200341f8036a41086a20034190056a41086a220929030037030020032003290390053703f803200741003a0000200341c4046a2006360200200341a1046a200329039005370000200341a9046a2009290300370000200341b1046a2004290300370000200341b9046a2002290300370000200341073a00980420034198046a1027024020034190056a105e450d0020034198046a41186a200229030037030020034198046a41106a200429030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034198046a20064101106a0b41002104200c450d062008450d062014101f0c060b200a200c4105746a2202200329038006370000200241186a2014290300370000200241106a2006290300370000200241086a20042903003700002003200c41016a3602a0042003201636029c042003200a36029804200341123602a406200341cccfc0003602a00620034198046a200341a0066a106202402016450d00200a101f0b410021040c130b41b0f5c000210441142106200c0d300c310b41002104200241076a41002900d9c340370000200241002900d2c340370000024020022006412f10142202450d00200220032903980437000f200241276a200341b0046a2903003700002002411f6a20034198046a41106a290300370000200241176a20034198046a41086a2903003700002003200b20057c3703f803200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a4110200341f8036a410810042002101f0c240b412f41011015000b41f2f4c000210441172106200c0d2e0c2f0b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a00637039005412210122202450d02200241206a41002f00c8f7403b0000200241186a41002900c0f740370000200241106a41002900b8f740370000200241086a41002900b0f740370000200241002900a8f7403700002002412241c40010142202450d0320022003290390053700222002413a6a200341a8056a290300370000200241326a20034190056a41106a2903003700002002412a6a20034190056a41086a290300370000200241c40041880110142202450d0420022007360042200341a0036a41086a22064200370300200342003703a003200241c600200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f02402006450d004181f7c000210441272106200341b8046a2802000d350c360b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a0063703900520034190056a2007201b106a0240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d0020032802c004101f0b410021040b0c340b412241011015000b41c40041011015000b41880141011015000b2007101f0b0240200220044d0d0020034198046a2008106b2104410d21060c1b0b41c1e5c0002104413921060c1a0b20042108200921040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c200341003602a806200342013703a0062007200841016a2206200341a0066a106c20032802a406210920032802a806210a20032802a0062102200341f8036a41086a220c4200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a200c290300370300200320032903f8033703a003200341a0036a41102002200a100402402009450d002002101f0b02402006450d00200741106a2102200841067441c0006a210603400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b02402004450d002007101f0b410021040b4126210641002102200d4102460d450c470b41b9f4c000210441102106200c0d220c230b200328029804101f0b200a0d004101210a4115210641949bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b803370398044100210a0b20034180066a41086a220c20034198046a41086a2d00003a0000200320032903980437038006200a0d00200341af056a200c2d00003a0000200320153600a3052003201137009b052003200636009705200320043600930520032003290380063700a705200320023b019005200320024110763a00920520034198046a200341a0066a105d024020032d0098044101470d0041b9e4c00021044126210620074104470d0e0c130b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041a4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a1040200328029804220a450d0c200341a0046a2802002102200328029c04210c0c010b4101210a4100210c0b200a20024105746a2104200a21020340200420026b41ff004d0d02200341a0066a2002460d092002200341a0066a4120108002450d09200241206a2206200341a0066a460d032006200341a0066a4120108002450d04200241c0006a2206200341a0066a460d052006200341a0066a4120108002450d06200241e0006a2206200341a0066a460d0720024180016a21022006200341a0066a41201080020d000c080b0b20074104460d110c0c0b024020022004460d000340200341a0066a2002460d092002200341a0066a4120108002450d082004200241206a2202470d000b0b41002102200c0d090c0a0b200341a0066a21060b20062102200c0d070c080b200341a0066a21060b20062102200c0d050c060b200341a0066a21060b200621020b200c450d030c020b200341a0066a2102200c0d010c020b41de86c00041331023000b200a101f0b02402002450d0041dfe4c00021044122210620074104470d010c060b20034180066a20034190056a106120034198046a41186a200341a0066a41186a29030037030020034198046a41106a200341a0066a41106a29030037030020034198046a41086a200341a0066a41086a290300370300200320032903a00637039804024002400240024002402003280284062003280288062202470d00200241016a22062002490d3320024101742204200620062004491b2204ad4205862205422088a70d332005a7220a4100480d332002450d012003280280062002410574200a10142206450d020c030b20032802800621060c030b200a101222060d010b200a41011015000b200320043602840620032006360280060b20034180066a41086a2204200241016a360200200620024105746a2202200329039804370000200241186a20034198046a41186a290300370000200241106a20034198046a41106a290300370000200241086a20034198046a41086a220229030037000020022004280200360200200320032903800637039804024002400240024002400240411510122202450d002002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d0120022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602dc03200320023602d80320034198046a200341d8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d02200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d03200220032903a0063700122002412a6a200341b8066a290300370000200241226a200341a0066a41106a2903003700002002411a6a200341a0066a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034190056a412010042002101f410f10122202450d0441002104200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d05200220032903a00637000f200241276a200341b8066a2903003700002002411f6a200341a0066a41106a290300370000200241176a200341a0066a41086a2903003700002003427f37039804200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20074104470d060c0b0b411541011015000b413541011015000b411241011015000b413241011015000b410f41011015000b412f41011015000b20074106460d04024002402007410c470d004100450d010c060b2007410c490d050b2009450d040b2008101f0c030b2002101f0b2004450d0020034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a290300370300200320032903900537039804200320113703a8062003200542808080807083200542ffffffff0f83843703a006200320153602b006411c10122202450d02200241186a4100280093d040360000200241106a410029008bd040370000200241086a4100290083d040370000200241002900fbcf403700002002411c413c10142202450d03200220032903980437001c200241346a200341b0046a2903003700002002412c6a20034198046a41106a290300370000200241246a20034198046a41086a29030037000020034100360288062003420137038006200341a0066a41106a20034180066a10132003200341a0066a3602f803200341f8036a20034180066a106d200328028406210420032802880621072003280280062106200341a0036a41086a22084200370300200342003703a0032002413c200341a0036a100020034190036a41086a2008290300370300200320032903a0033703900320034190036a411020062007100402402004450d002006101f0b2002101f410021040c010b41c2d1c0002104410d21060b41002108410121070c320b411c41011015000b413c41011015000b200328029804101f0b20070d00410121074115210641949bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021070b20034180066a41086a220820034198046a41086a2d00003a000020032003290398043703800620070d0020034190036a41086a20082d00003a00002003200329038006370390034200210b200341f8036a41086a22074200370300200342003703f80341af8fc1004108200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a00341002107024002400240200341a0036a411041a4a4c100410041001001417f460d0020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012207417f460d022007411f4d0d0220034180066a41186a200341f8036a41186a29030037030020034180066a41106a200341f8036a41106a29030037030020034180066a41086a200341f8036a41086a290300370300200320032903f80337038006200341d8036a41086a20034197066a290000370300200341d8036a41106a20034180066a411f6a2d00003a0000200320032d0082063a00f203200320032f0180063b01f0032003200329008f063703d8032003280083062107200329008706210b0c010b200341d8036a41106a41003a0000200341e0036a4200370300200341003a00f203200341003b01f003200342003703d8030b200341b8036a41086a2208200341d8036a41086a290300370300200341b8036a41106a2209200341d8036a41106a2d00003a0000200320032d00f2033a00d203200320032f01f0033b01d003200320032903d8033703b803200341a1046a200b370000200341a9046a20032903b803370000200341b1046a2008290300370000200341b9046a20092d00003a000020034186023b0198042003200736009d04200320032f01d0033b019a04200320032d00d2033a009c0420034198046a1027200341b7046a20034190036a41086a2d00003a0000200320163600ab04200320053700a3042003200636009f042003200436009b0420032003290390033700af04200320023b019804200320024110763a009a04200341f8036a41086a22024200370300200342003703f80341af8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a41201004410021040c010b41de86c00041331023000b4100210a41012107410121080c2c0b200e101f0b200341003602a0042003420137039804200c200220034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b02402002450d0020024106742106200c41106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104410121020240200a450d00200c101f0b200d4102460d240c260b2003200c3602a406200320043602a006200c210a0b200420086a2009200610fe011a200341f8036a41086a220c4200370300200342003703f80320024129200341f8036a1000200341a0036a41086a200c290300370300200320032903f8033703a003200341a0036a41102004200820066a10040240200a450d002004101f0b2002101f02402007450d002009101f0b200341a1046a20034198056a290300370000200341a9046a200341a0056a290300370000200341b1046a200341a8056a2903003700002003410a3a00980420032003290390053700990420034198046a1027410021040c170b2014101f0b02402016450d002019101f0b2015450d072007101f0c070b200328029005101f0b20020d004101210241949bc1002114411521060c010b20034190056a41086a200341b8036a41086a2d00003a0000200320032903b80337039005410021020b200341a0036a41086a220420034190056a41086a2d00003a000020032003290390053703a00320020d08200341b7046a20042d00003a00002003200a3600ab04200320053700a3042003200636009f042003201436009b04200320032903a0033700af04200320093b019804200320094110763a009a0420034198046a2011200b106e20034198046a20132012106f0b410021040c120b20032802b404101f0b200341c4046a280200450d0020032802c004101f0b4100210c41012107410121084101210a0c1f0b200328029804101f0b20020d004101210241949bc1002114411521060c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021020b200341a0036a41086a220420034198046a41086a2d00003a000020032003290398043703a00320020d00200341af056a20042d00003a00002003200a3600a3052003200537009b0520032006360097052003201436009305200320032903a0033700a705200320093b019005200320094110763a009205411410122202450d04200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d05200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a29030037000042002105200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d032006410f4d0d03200341a0046a290300211220032903980421052002101f41142106411410122202450d020c060b41012107410121084101210a4101210c4101210941012116410121152014210420012d0000220241094d0d1d0c1e0b420021122002101f411421064114101222020d040b200641011015000b41de86c00041331023000b411441011015000b413441011015000b200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad9540370000024002400240024002400240024002400240024020022006413410142202450d0020022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900302400240024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d022006410f4d0d02200341a0046a290300212020032903980421210c010b42002121420021200b2002101f200341a0036a41086a22024200370300200342003703a0030240024002400240202120208422224200510d004186afc0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d02200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d062002410f4d0d06200341a0046a290300210f0c010b41f2aec0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d082002410f4d0d08200341a0046a290300210f0b20032903980421230c010b420021234200210f0b0240201120237c22242011542202200b200f7c2002ad7c2213200b542013200b511b450d0041ccb0c00021040c0f0b411010122202450d03200241086a41002900a2af403700002002410029009aaf4037000020024110413010142202450d04200220032903a006370010200241286a200341a0066a41186a290300370000200241206a200341a0066a41106a290300370000200241186a200341a0066a41086a29030037000020034198046a20024130103c20034198046a41206a290300212520034198046a41186a290300212620034198046a41106a290300212720032903a004212820032903980421292002101f4200212a4200212b0240024020294201520d00411410122202450d09200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0a200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200212b200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a003370390030240024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d0a2006410f4d0d0a200341a0046a2903002129200329039804212c0c010b4200212c420021290b2002101f200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d02200329039804212b0b4200212a200341e8016a20254200202b4200108202200341f8016a202b420020264200108202200341d8016a42004200202642001082024200212b024020032903e00120032903f00184420052200341f8016a41086a290300222520032903d80120032903e8017c7c2226202554720d002027202620032903f801222a202854202620275420262027511b22021b20267d2028202a20021b2226202a54ad7d212b2026202a7d212a0b202b2029202c202a562029202b562029202b511b22021b212b202a202c20021b212a0b0240200520247d2226200556201220137d2005202454ad7d220520125620052012511b450d0041e3afc0002104411d21060c110b02402026202a542005202b542005202b511b450d0041bdafc0002104412621060c110b202250450d0b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0b200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d0a2002410f4d0d0a200329039804201156200341a0046a2903002212200b562012200b511b450d0b41adb0c0002104411f21060c100b41de86c00041331023000b41de86c00041331023000b413441011015000b41de86c00041331023000b411041011015000b413041011015000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411e2106200341a0066a107022040d040240202120117c221320215422022020200b7c2002ad7c221220205420122020511b450d004180b0c0002104412d21060c050b024002400240200341a0066a20034190056a4120108002450d00200341a0066a20262005106e42002105200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024002400240024002400240024002400240024002400240024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200341a0046a290300212020032903980421050c010b420021200b0240200520237d22212005562020200f7d2005202354ad7d220520205620052020511b0d002003202137039804200320053703a004200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a411010040b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200329039804201358200341a0046a290300220520125820052012511b0d0020034190056a20132012106e0c0b0b411410122202450d03200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0420022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f20060d09200341a0036a41086a22024200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900341002102024020034190036a411041a4a4c100410041001001417f460d00200341003602980420034190036a411020034198046a41044100100141016a41044d0d0320032802980421020b20034180066a200941067641ff07712204101e02400240024002402003280288062009413f7122064d0d00200341c8016a20032802800620064105746a2206105c20032903c801200341c8016a41086a290300844200510d010b0240200328028406450d00200328028006101f0b20034198046a2002101e024020032802a0042206413f4d0d00200341a0046a21040340200241016a21020240200328029c04450d00200328029804101f0b20034198046a2002101e2004280200220641c0004f0d000b0b2003280298042107200328029c04210420034198046a41186a220a20034190056a41186a29030037030020034198046a41106a220c20034190056a41106a29030037030020034198046a41086a221620034190056a41086a290300370300200320032903900537039804200641016a210820042006470d0a20064101742204200820082004491b2204ad4205862205422088a70d192005a722094100480d192006450d0120072006410574200910142207450d020c0a0b2006200329039005370000200641186a20034190056a41186a290300370000200641106a20034190056a41106a290300370000200641086a20034190056a41086a29030037000020034198046a41086a20034180066a41086a280200360200200320032903800637039804410f10122202450d07200241076a41002900e09540370000200241002900d995403700002002410f411e10142202450d082002200436000f200341133602fc03200320023602f80320034198046a200341f8036a10622002101f200328029c04450d0a200328029804101f0c0a0b2009101222070d080b200941011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b410f41011015000b411e41011015000b200720064105746a2209200329039804370000200941186a200a290300370000200941106a200c290300370000200941086a20162903003700000240200841c000470d002003200241016a36029804200341a0036a41086a22094200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2009290300370300200320032903a0033703900320034190036a411020034198046a410410040b200320083602a0042003200436029c042003200736029804410f10122208450d04200841076a41002900e09540370000200841002900d995403700002008410f411e10142208450d05200241067420066a21062008200236000f2003411336028406200320083602800620034198046a20034180066a10622008101f02402004450d002007101f0b20034180066a41186a20034190056a41186a220229030037030020034180066a41106a20034190056a41106a220429030037030020034180066a41086a20034190056a41086a220729030037030020032003290390053703800620034198046a41086a20032903900537030020034198046a41106a200729030037030020034198046a41186a2004290300370300200341b8046a20022903003703002003200636029c04200341013a00980420034198046a10270b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2206290300370300200341f8036a41086a20034190056a41086a220429030037030020032003290390053703f803200341d0046a2012370300200341c8046a201337030020034198046a41086a41003a0000200341a1046a200329039005370000200341a9046a2004290300370000200341b1046a2006290300370000200341b9046a2002290300370000200341023a00980420034198046a10270b20034190056a20132012106e0b200329009705210520032900a7062112200341a0046a41023a0000200341a8046a2012370300200341a4046a2019360200200341a1046a20032f01a0063b0000200341a3046a20032d00a2063a0000200341b0046a20032900af06370300200341b8046a200341a0066a41176a290000370300200341c0046a200341a0066a411f6a2d00003a0000200341c1046a20032f0190053b0000200341c3046a20032d0092053a0000200341023a009804200341c8046a2005370300200341c4046a201436020020034180056a200f370300200341f8046a2023370300200341f0046a200b370300200341e8046a2011370300200341d0046a200329009f05370300200341d8046a20034190056a41176a290000370300200341e0046a20034190056a411f6a2d00003a000020034198046a10270b4100210441012107410121084101210a4101210c41012109410121164101211520012d0000220241094d0d190c1a0b410f41011015000b411e41011015000b41bd86c0002104410d21062007450d010b2009101f0b4100211541012107410121084101210a4101210c410121094101211620012d0000220241094d0d140c150b412821060b410121070c0c0b200320053703900520034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a411020034190056a41081004200341013a00900520024200370300200342003703900341be93c000411320034190036a10002007200229030037030020032003290390033703980420034198046a411020034190056a41011004200742003703002003420037039804418295c000411520034198046a1000200341f8036a41086a200729030037030020032003290398043703f8030240024002400240024002400240200341f8036a411041a4a4c100410041001001417f460d002003420037039804200341f8036a411020034198046a41084100100141016a41084d0d02200329039804210b0c010b4205210b0b20034198046a41086a22024200370300200342003703980441a888c000411220034198046a1000200341a0036a41086a2208200229030037030020032003290398043703a0034101210702400240200341a0036a411041a4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d0320032903980421114100210a0c010b4101210a0b200320053703900520024200370300200342003703980441a888c000411220034198046a10002008200229030037030020032003290398043703a003200341a0036a411020034190056a410810042011500d10200a0d10427f200b200b7c22122012200b541b220b4200510d022005200b8022052011200b80220b580d032005200b42017c2211510d104200211220034198046a41086a22024200370300200342003703980441aefec000411220034198046a1000200341a0036a41086a200229030037030020032003290398043703a00302400240200341a0036a411041a4a4c100410041001001417f460d0020034210370294052003200341a0036a3602900520034198046a20034190056a1040200328029804221f450d06200329029c0421120c010b4101211f0b2005200b427f857ca7222d450d0f2012422088a7222e202d4d0d0f2011a7212f200341a1046a2130410f213120034190056a410f6a2132200341f8036a410f6a2133200341a0066a410f6a21344100210a41052135410821084110211641182118420021054114213641c8cec000213741a4a4c1002138417f2139410121194112213a4132213b412a213c4122213d411a213e410421174119213f41eecec0002140410d214141dd81c0002142411721434187cfc00021444120210c4130214541502146420121204220210b411b214741b1cfc000214841ff0021494160214a41cccfc000214b411d214c41decfc000214d423f2123411c214e413c214f41342150412c21514124215241032153411521544196d1c000215541ecfdc000215642102113200341d0046a215741582158415421594128211b4174215a416c215b4164215c415c215d417c215e42302111410b215f410a216041272161411f216242ffffffff0f2121410721634102216441002165410021020c050b41de86c00041331023000b41de86c00041331023000b41f4c9c1001024000b418ccac1001024000b41de86c00041331023000b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b201f2065202f6a202e702035746a2202290000212b200220086a2900002122200220166a2900002126200341a0066a20186a2266200220186a290000370300200341a0066a20166a22672026370300200341a0066a20086a226820223703002003202b3703a006200341f8036a20086a22692005370300200320053703f80320372036200341f8036a100020034190036a20086a226a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042202450d0e200328029c04216b200220034198046a20086a280200200341a0066a1036216c0240206b450d002002101f0b206c450d020c010b2019200a200341a0066a1036450d010b206520196a2265202d470d1f0c2c0b203a10122202450d0d200220166a200a2f00ecce40226d3b0000200220086a200a2900e4ce4022253700002002200a2900dcce4022283700002002203a203b10142202450d0e200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a206829030037000020692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0a200328029804216e2002101f203a101222020d010c110b4100216e2002101f203a10122202450d100b200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d10200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a20682903003700002003206e20196a226f3602980420692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201710042002101f20692005370300200320053703f8032040203f200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0b20032802980421700c010b410021700b200341a0036a20086a2202203420086a290000370300200341a0036a20166a226b203420166a2d00003a0000200320032d00a2063a00d202200320032f01a0063b01d002200320342900003703a00320032800a306217120032900a706212a4200212920694200370300200342003703f80320422041200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d00200320053703980420034190036a201620034198046a2008200a100120196a20084d0d0820032903980421290b200341f0026a20086a22722002290300370300200341f0026a20166a2273206b2d00003a0000200320032d00d2023a00e202200320032f01d0023b01e002200320032903a0033703f00220692005370300200320053703f80320442043200341f8036a1000206a2069290300370300200320032903f8033703900302400240024002400240024020034190036a20162038200a200a10012039460d002003201337029c04200320034190036a36029804200341c0016a20034198046a102820032802c001450d0820032802c4012274ad20117e222b200b88a70d12202ba7220220394c0d122002450d01200210122275450d1b2074450d030c020b4100217c4108217542002122410021020c040b410821752074450d010b20034198046a20086a2276280200217741002178200328029c042179200328029804217a4100216c410021022074217b034020034180066a20186a227c200537030020034180066a20166a227d200537030020034180066a20086a227e200537030020032005370380062076200a207a207920034180066a200c20771001226b206b2039461b226b200c206b200c491b20776a2277360200206b20624d0d05200341f8036a20186a207c290300370300200341f8036a20166a207d2903003703002069207e29030037030020032003290380063703f80320032005370390052076200a207a207920034190056a200820771001226b206b2039461b226b2008206b2008491b20776a2277360200206b20634d0d05200329039005212b2003200a360290052076200a207a207920034190056a201720771001226b206b2039461b226b2017206b2017491b20776a2277360200206b20534d0d05200220196a216b200328029005217c200341d8036a20086a227d203320086a290000370300200341d8036a20166a227e203320166a2d00003a0000200320032d00fa033a00f203200320032f01f8033b01f003200320332900003703d80320032800fb03217f20032900ff03212202402002207b470d002078206b206b2078491b227bad20117e2226200b88a70d282026a7228001200a480d2802402002450d002075206c208001101422750d010c0c0b20800110122275450d0b0b2075206c6a2202202b370300200220086a20032f01f0033b010020032d00f203218001200220316a20223700002002205f6a207f360000200220606a2080013a0000200220616a207e2d00003a0000200220626a207d290300370000200220436a20032903d8033700002002201b6a207c360200207820646a2178206c20456a216c206b2102206b2074490d000c020b0b4100216b4100217b0b2075450d03206bad200b86207bad842222200b88a7217c2022a721020b20034198046a20086a2279207229030037030020034198046a20166a227e20732d00003a0000200320032d00e2023a008206200320032f01e0023b018006200320032903f002370398040240024002400240024002400240207c200c490d00207c20456c226b2045460d01207520456a2102206b20466a217a410021774101216c207521782075216b03402002206b206b29030020022903005622761b216b206c207720761b21772002207820761b2178206c20196a216c200220456a2102207a20466a227a0d000b206b450d182078450d182032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005207c20774b0d020c1f0b200341b8036a20086a226b2079290300370300200341b8036a20166a226c207e2d00003a0000200320032d0082063a00d203200320032f0180063b01d00320032003290398043703b80302402002207c470d00207c2019742202207c20196a227620762002491bad222b20117e2226200b88a70d2a2026a72202200a480d2a207c450d032075207c20456c2002101422750d040c200b2022212b0c040b2032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005410021770b2075207720456c6a220220293703002002200c6a20034190056a20186a290300370300200220186a20034190056a20166a290300370300200220166a20034190056a20086a2903003703002002200329039005370308200220193602280c030b200210122275450d1c0b2022200b88a7217c0b2075207c20456c6a2202202937030020032d00d203217620032f01d0032177200220316a202a3700002002205f6a2071360000200220773b0108200220606a20763a0000200220616a206c2d00003a0000200220626a206b290300370000200220436a20032903b80337000020022019360228202b202183207c20196aad200b868421220b2079200a360200200320203703980420032022200b88a722023602900520034190056a20034198046a1013024002402002450d00200220456c217a2058207928020022026b2177200220516a2102200328029c04216c2075216b03400240024002400240206c20776a201b6a200c4f0d00200220596a2278200c6a22762078490d2a206c2019742278207620762078491b2278200a480d2a206c450d01200328029804206c2078101422760d020c0a0b20032802980421760c020b207810122276450d080b2003207836029c0420032076360298042078216c0b20792002205a6a227c360200207620026a2278205b6a206b200c6a2900003700002078205c6a206b20186a2900003700002078205d6a206b20166a290000370000207820596a206b20086a290000370000206b290300212b0240024002400240206c20776a227820086a20784f0d00207c20086a2278207c490d2a206c201974227c20782078207c491b2278200a480d2a206c450d012076206c2078101422760d020c0b0b206c21780c020b207810122276450d090b2003207836029c0420032076360298040b20792002205e6a226c360200207620026a205a6a202b370000206b201b6a280200217c0240024002400240207820776a20534b0d00206c20176a227d206c490d2a2078201974226c207d207d206c491b226c200a480d2a2078450d0120762078206c101422760d020c0c0b2078216c0c020b206c10122276450d0a0b2003206c36029c0420032076360298040b206b20456a216b20792002360200207620026a205e6a207c360000207720596a2177200220516a2102207a20466a227a0d000c020b0b200328029c04216c20032802980421760b2079280200210220692005370300200320053703f80320442043200341f8036a100020792069290300370300200320032903f8033703980420034198046a20162076200210040240206c450d002076101f0b02402022a7450d002075101f0b0240024002400240206f20704d0d004200212220694200370300200342003703f80320482047200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a200a10012039460d01200320053703a004200320053703980420034190036a201620034198046a2016200a100122022039460d16200220314d0d162079290300212a20032903980421270c020b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410121020c020b420021274200212a0b206e20197420706b216b206e20706b220220196a217a4200212b02400340206b216c2002207a4f0d010240200220494b0d00200341b0016a2027202a2002204971108302202b200341b0016a20086a2903007c202220032903b0017c22292022542276ad7c2226202b5121772026202b542178206c20196a216b200220196a2102202921222026212b2076207820771b450d010b0b20034198046a20186a226b2066290300370300207e206729030037030020792068290300370300200320032903a00637039804203a10122202450d18200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d1920022003290398043700122002203c6a206b2903003700002002203d6a207e2903003700002002203e6a20792903003700002003206c3602900520692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034190056a201710042002101f20034198046a200341a0066a106120792802002102200328029804216c200341a0016a200341a0066a105c200341a0016a20086a290300212b20032903a001212202402002450d002002203574216b206c2102034020034190016a2002105c20034190016a20086a290300202b7c200329039001222b20227c2222202b54ad7c212b2002200c6a2102206b204a6a226b0d000b0b200328029c04450d00206c101f0b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042276450d1d20792802002102200328029c04216b0c010b4100216b41012176410021020b20692005370300200320053703f803204d204c200341f8036a1000206a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0e200328029804216c206b450d020c010b4104216c206b450d010b2076101f0b02402002206c4d0d00200341f8006a200341a0066a2022202b10712003290378a72019470d00200341f8006a20166a290300212a200329038001212720034198046a200341a0066a10722003280298042176024020792802002202450d00420021262002203574226c216b42002129207621020340200341e8006a2002105c200341e8006a20086a29030020297c2003290368222920267c2226202954ad7c21292002200c6a2102206b204a6a226b0d000b2026202984500d00207621020340200341d8006a2002105c200341306a2003290358200341d8006a20086a2903002027202a108202200341206a2003290330200341306a20086a29030020262029108102200341c0006a20022003290320200341206a20086a29030010712002200c6a2102206c204a6a226c0d000b0b200328029c04450d002076101f0b204e10122202450d14200220186a200a280093d040360000200220166a200a29008bd040370000200220086a200a290083d0403700002002200a2900fbcf403700002002204e204f10142202450d15200220032903a00637001c200220506a2066290300370000200220516a2067290300370000200220526a206829030037000020034198046a2002204f103d20034198046a20186a2277280200216b20032903980421262002101f02400240206f20706b206b205320262020511b4b0d002022202388212a202b202086212720034198046a200341a0066a106120792802002102200328029804216c200341106a200341a0066a105c200341106a20086a29030021262003290310212902402002450d002002203574216b206c2102034020032002105c200320086a29030020267c2003290300222620297c2229202654ad7c21262002200c6a2102206b204a6a226b0d000b0b2027202a84212a202220208621270240200328029c04450d00206c101f0b2027202258202a202b58202a202b511b0d00202920275a2026202a5a2026202a511b0d010b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042278450d1e200328029c04217a024020792802002202450d00200220357421764100216b20782102024003402077200220186a290000370300207e200220166a2900003703002079200220086a2900003703002003200229000037039804206b20034198046a200341a0066a200c108002226c200a476a216b206c450d012002200c6a21022076204a6a22760d000c020b0b200341a0066a206b106b22020d200b207a450d002078101f0b20692005370300200320053703f80320552054200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a10042003200a3a00980420692005370300200320053703f8032056203f200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201910040b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410221020b2057202b37030020034198046a20456a2022370300207920023a0000203020032903900537000020034198046a20516a206e360200203020086a20034190056a20086a290300370000203020166a20034190056a20166a290300370000203020186a20034190056a20186a290300370000200320173a00980420034198046a1027206520196a2265202d470d1f0c2b0b208f012102024002400340200220146a280200216b200220156a290300212b2002290300212220850120022088016a28020036020020840120022089016a2902003703002083012002208a016a29020037030020034198046a20146a226c2002208b016a29020037030020034198046a20156a227620022082016a290200370300200320022090016a29020037039804206b450d0220034190056a2087016a228f0120850128020036020020034190056a201a6a227720840129030037030020034190056a2086016a227820830129030037030020034190056a20146a2279206c29030037030020034190056a20156a227a2076290300370300200320032903980437039005206c206b3602002009200329039005370200200920156a227c207a290300370200200920146a227a207929030037020020092086016a227920782903003702002009201a6a2278207729030037020020092087016a2277208f012802003602002003202b3703a0042003202237039804024020930120034180066a201a1080020d0002402009280200450d00206b101f0b20022095016a2202208101470d010c020b0b200341a0066a2087016a228f012077280200360200200341a0066a201a6a22772078290200370300200341a0066a2086016a22782079290200370300200341a0066a20146a2279207a290200370300200341a0066a20156a227a207c290200370300200320092902003703a006208501208f0128020036020020840120772903003703002083012078290300370300206c20792903003703002076207a290300370300200320032903a006370398040240208c01208e01470d00208e012094016a228c01208e01490d24208e0120940174228f01208c01208c01208f01491b228c01ad2024862226200f88a70d242026a7228f01209601480d240240208e01450d00208d01208e0120910174208f011014228d010d010c200b208f011012228d01450d1f0b20022095016a218f01208d01208e01209101746a2277202b370308207720223703002077206b36021020772088016a20850128020036020020772089016a2084012903003702002077208a016a2083012903003702002077208b016a206c29030037020020772082016a207629030037020020772090016a200329039804370200208e012094016a218e012092012002470d210b2081012202208101470d240c250b200241c0006a2202208101460d240c230b207b450d002075101f0b41de86c00041331023000b207841011015000b207841011015000b206c41011015000b20800141081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b100f000b411241011015000b413241011015000b411241011015000b413241011015000b419ecfc00041131023000b41de86c00041331023000b411c41011015000b413c41011015000b200241081015000b411241011015000b413241011015000b41d088c2002077207c1048000b200241081015000b41de86c00041331023000b41de86c00041331023000b4197d0c00041ff002002410d1037000b208f0141081015000b410021020c020b410021020c010b410121020c000b0b1010000b1010000b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b0240201d450d00201c101f0b208d0121020b200341003602a00420034201370398042002208e0120034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b0240208e01450d00208e014106742106200241106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104208c01450d00208d01101f0b411a210641002102200d4102470d020b20020d012010450d010b200e101f0b4100211641012107410121084101210a4101210c410121090c060b2012a7450d00201f101f0b410121080b4101210a0b4101210c0b410121090b410121160b4101211520012d0000220241094b0d010b02400240024002400240024020020e0a07020707070004030501070b2008450d06200141086a2d0000410c490d06200141106a280200450d062001410c6a280200101f0c060b2016450d05200141086a2d00004102470d05200141106a280200450d052001410c6a280200101f0c050b2007450d04200141086a10440c040b200c450d03200141086a2d00004102470d030240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d03200141246a280200101f0c030b200a450d02200141046a10730c020b2009450d01200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b2015450d00200141046a2802004102490d002001410c6a280200450d00200141086a280200101f0b2000200636020420002004360200200341d0066a24000bdc0202027f027e230041206b2202240002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b2003101f2000200537030820002004370300200241206a24000f0b41de86c00041331023000b411441011015000b413441011015000b9d840104037f027e087f0b7e230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417e6a220541104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210520022d0000210420034180036a41026a2209200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220044101470d14200341c0036a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01c003200320032903900637038805410021020c150b4100210941ac80c00041ac80c000410020022d000022021b20024103461b22050d10200320012d00013a008805200341b0066a41086a22024200370300200342003703b00641f4b0c0004119200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410110040c88010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0f200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1d2003421037028c05200320034180036a3602880520034188026a20034188056a108f012003290388024203510d5a200342083703e8044100210c200341003602f004200341b0066a41086a22024200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d31200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220d450d63200328028c05210c20034190056a2802002202450d320c95010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0e200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1d2003421037028c05200320034180036a36028805200341d8016a20034188056a108f0120032903d8014203520d1741de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0d200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5420032903880521060b41e2bcc0002109411f2108200620075a0d1720032007370390052003420237038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c080b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0c200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a22082002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341e8016a20034188056a108f0120032903e8014203520d1541de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0b200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341b8016a20034188056a108f0120032903b8014203520d1441de86c00041331023000b200341a0026a41186a200141196a290000370300200341a0026a41106a200141116a290000370300200341a0026a41086a200141096a290000370300200320012900013703a002200341c0026a41186a200141396a290000370300200341c0026a41106a200141316a290000370300200341c0026a41086a200141296a2900003703002003200141216a2900003703c002200141c4006a280200210a200141c8006a2802002109200141cc006a280200210b200241086a2800002108200241046a280000210520022d0000210420034180036a41026a220f200241036a2d00003a000020034190066a41086a220e200241146a29000037030020034190066a410d6a220c200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210120044101470d0b200341e8046a41026a200f2d00003a000020034188056a41086a200e29030037030020034188056a410d6a200c290000370000200320032f0180033b01e804200320032903900637038805410021010c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d09200341b0066a41086a22024200370300200342003703b00641d595c1004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1b200342103702e403200320034180036a3602e00320034188056a200341e0036a105f2003280288052202450d552003200329028c0537028c0520032002360288050c1c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d08200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5020032903880521060b41e2bcc0002109411f2108200620075a0d1220032007370390052003420037038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c030b41ac80c00041ac80c000410020022d000022021b20024103461b22050d07200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1b2003421037028c05200320034180036a3602880520034198016a20034188056a108f012003290398014203520d1041de86c00041331023000b200141306a2903002106200141286a2903002107200341d8036a200141196a290000370300200341c0036a41106a200141116a290000370300200341c0036a41086a200141096a290000370300200320012900013703c003200241086a2800002108200241046a280000210920022d0000210520034180036a41026a2204200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220054101470d0b200341e8046a41026a20042d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01e804200320032903900637038805410021020c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d05200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d4e20032903880521060b41e2bcc0002109411f2108200620075a0d0f20032007370390052003420137038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010b4100210920012d00004104460d91010c92010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d03200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341f8016a20034188056a108f0120032903f8014203520d0c41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d02200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d182003421037028c05200320034180036a3602880520034188016a20034188056a108f012003290388014203520d0b41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d01200141086a2903002106200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341c8016a20034188056a108f0120032903c8014203520d0a41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b2205450d080b4128210820044104470d8e01200141c8006a280200450d8e01200141c4006a280200101f0c8e010b412a210841d480c00021050b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00302402001450d0020090d230c8d010b200341fc026a41026a200341c0066a41026a2d00003a0000200341e0026a41086a200341e0036a41086a290300370300200341e0026a410d6a200341e0036a410d6a290000370000200320032f01c0063b01fc02200320032903e0033703e002200b41204d0d0841d4bcc0002105410e210820090d220c8c010b41d480c0002105412a21080b200341c0066a41026a200341c0036a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01c0033b01c00620032003290388053703e0032002450d022005210920012d00004104460d88010c89010b412a210841d480c00021090b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00320020d03200341a0026a41026a2202200341c0066a41026a2d00003a0000200341a0036a41086a2205200341e0036a41086a290300370300200341a0036a410d6a2204200341e0036a410d6a290000370000200320032f01c0063b01a002200320032903e0033703a0032003419b056a2005290300370000200341a0056a20042900003700002003200836008f052003200936008b05200320022d00003a008a05200320032f01a0023b018805200320032903a00337009305200341d8006a20034188056a105a2003290358200341d8006a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d132003421037028c05200320034180036a36028805200341c8006a20034188056a108f01200329034822104203520d1441de86c00041331023000b200341a0036a41026a2202200341c0066a41026a2d00003a0000200341e8046a41086a2204200341e0036a41086a290300370300200341e8046a410d6a2209200341e0036a410d6a290000370000200320032f01c0063b01a003200320032903e0033703e8042003419b056a2004290300370000200341a0056a20092900003700002003200836008f052003200536008b05200320022d00003a008a05200320032f01a0033b018805200320032903e80437009305200341286a20034188056a105a2003290328200341286a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341186a20034188056a108f01200329031822104203520d1541de86c00041331023000b200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d0f2003421037028c05200320034180036a36028805200341a8016a20034188056a108f0120032903a8014203510d440b4181bdc0002109412421080b20012d00004104470d83010c82010b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341f8006a20034188056a108f01200329037822064203520d1541de86c00041331023000b4194bac00021094126210820012d00004104460d80010c81010b41b8b8c00021094127210820012d00004104460d7f0c80010b41d5bec00021090c7b0b2005450d17200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1e200341003602880520034180036a411020034188056a41044100100141016a41044d0d3a20032802880520054f0d1f0c740b20024200370300200342003703b00641f1bfc000411b200341b0066a100020082002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d17200341003602880520034180036a411020034188056a41044100100141016a41044d0d3820032802880520054d0d180c720b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c770b200341003602900520034208370388050b20034198026a20034188056a108301200328029c022108200328029802210920012d00004104460d790c7a0b2006500d042003200637038805200341b0066a41086a22024200370300200342003703b00641f9bec000411c200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c620b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c730b2006500d022003200637038805200341b0066a41086a22024200370300200342003703b00641d2b4c0004120200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c600b2006500d122003200637038805200341b0066a41086a22024200370300200342003703b00641b4bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5f0b2006500d002003200637038805200341b0066a41086a22024200370300200342003703b0064195bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5e0b41a5bdc000210920012d00004104460d730c740b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d022003421037028c05200320034180036a36028805200341386a20034188056a108f0120032903384203510d3220104203510d332010a74101470d0342002110200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d102003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d392002410f4d0d3920034190056a290300211020032903880521110c110b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341086a20034188056a108f0120032903084203510d3220104203510d332010a7450d0841dfb8c00021090c0d0b419db9c00021090c630b41babac0002109411c210820012d00004104460d6d0c6e0b420321060b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341e8006a20034188056a108f0120032903684203510d3120064203510d322006a74102470d032003419c036a41026a200341fc026a41026a2d00003a000020034180036a41086a200341e0026a41086a29030037030020034180036a410d6a200341e0026a410d6a290000370000200320032f01fc023b019c03200320032903e00237038003200341a0036a41186a200341a0026a41186a290300370300200341a0036a41106a200341a0026a41106a290300370300200341a0036a41086a200341a0026a41086a290300370300200320032903a0023703a003200341c0036a41186a200341c0026a41186a290300370300200341c0036a41106a200341c0026a41106a290300370300200341c0036a41086a200341c0026a41086a290300370300200320032903c0023703c003411510122201450d352001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d36200120032903a0033700152001412d6a200341b8036a290300370000200141256a200341a0036a41106a2903003700002001411d6a200341a0036a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d0f200341e0036a200341a0036a10990120032d00c0044101470d1041e4bbc00021014115210220090d5d0c5e0b419db9c00021054114210820090d030c6d0b4101210d4100210241000d630b410021054108210e200c0d630c640b41b5bcc0002105411f21082009450d6a0b200a101f0c690b411f10122202450d31200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d32200220032f01a0033b001f2002200836002620022005360022200220032903e80437002a200241216a200341a2036a22092d00003a0000200241326a200341e8046a41086a290300370000200241376a200341f5046a220a290000370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d0e200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d0c2003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d372002410f4d0d3720034190056a290300211020032903880521110c0d0b41dabdc0002109411b210820012d00004104460d650c660b410a20054b0d5a0b2003200536028805200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c4d0b41babdc00021090b4120210820012d00004104460d610c620b420a21110b02402011200756201020065620102006511b450d0041d6bac00021090c550b200341fb046a200341a0036a41086a290300370000200341e8046a41186a200341a0036a410d6a290000370000200320083600ef04200320093600eb04200320032f01a0023b01e804200320032903a0033700f3042003200341a2026a2d00003a00ea0420034190066a41186a200341c0036a41186a220229030037030020034190066a41106a200341c0036a41106a220529030037030020034190066a41086a200341c0036a41086a2204290300370300200320032903c0033703900620034188056a41186a200229030037030020034188056a41106a200529030037030020034188056a41086a2004290300370300200320032903c00337038805411510122202450d2e2002410d6a4100290095bb40370000200241086a4100290090bb4037000020024100290088bb4037000020024115413510142202450d2f20022003290388053700152002412d6a200341a0056a290300370000200241256a20034188056a41106a2903003700002002411d6a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1000200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a4110100a21052002101f2005450d0441bcbbc00021090c540b41142005490d550b2003200536028805200341b0066a41086a22024200370300200342003703b00641f1bfc000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c470b41d0bbc00021014114210220090d4d0c4e0b2003419b056a20034188036a290300370000200341a0056a2003418d036a2900003700002003200836008f052003200536008b05200320032f019c033b01880520032003290380033700930520032003419e036a2d00003a008a0520034188056a200341e0036a41206a4120108002450d0441f9bbc0002101411a21020c4b0b412210122202450d2c200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d2d200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a29030037000020034188056a200241c200103c20034188056a41106a290300211220034188056a41186a290300211020034188056a41206a2903002111200329039005211320032903880521142002101f200341e8046a200720104200201442015122021b2214200720142007542011420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d2206107a450d04200341e8046a201520061066450d07419dbbc0002109411f210820012d00004104460d5a0c5b0b4200211042e40021110b2011200756201020065620102006511b450d0041ffb8c0002109411e210820012d00004104460d580c590b200341f3036a200341e8046a41086a290300370000200341e0036a41186a200a290000370000200320083600e703200320053600e303200320032f01a0033b01e003200320032903e8043700eb03200320092d00003a00e203412210122202450d24200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d25200220032903e0033700222002413a6a200341e0036a41186a290300370000200241326a200341e0036a41106a2903003700002002412a6a200341e8036a29030037000020034188056a200241c200103c20034188056a41186a290300211220034188056a41206a290300211320034188056a41106a2903002110200329039005211120032903880521142002101f41d0b9c0002109200341e0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22041b22117d221520062010200620041b22167d2007201154ad7d2206107a450d0241f2b9c0002109200341e0036a2015200610660d02411f10122204450d2b200441176a41002900a4b140370000200441106a410029009db140370000200441086a4100290095b1403700002004410029008db1403700002004411f413f10142204450d2c200420032903e00337001f200441376a200341e0036a41186a2903003700002004412f6a200341e0036a41106a290300370000200441276a200341e0036a41086a29030037000020034188056a2004413f103c20034188056a41106a290300210720034188056a41206a290300211720034188056a41186a29030021182003290390052119200329038805211a2004101f412210122204450d2d200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d2e200420032903e0033700222004413a6a200341f8036a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000200341b0066a41086a22094200370300200342003703b006200441c200200341b0066a1000200341c0066a41086a2009290300370300200320032903b0063703c006200341c0066a4110100a21092004101f02402009450d00412210122204450d34200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d35200420032903e0033700222004413a6a200341e0036a41186a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000411010122209450d362009201420117d3700002009201020167d2014201154ad7d37000820094110412010142209450d3720092012420020021b370010200941186a2013420020021b370000200341b0066a41086a22024200370300200342003703b006200441c200200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a41102009412010042009101f2004101f0b411f10122202450d2f200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d30200220032903e00337001f200241376a200341e0036a41186a22092903003700002002412f6a200341e0036a41106a290300370000200241276a200341e0036a41086a290300370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d40200341b0066a41086a22024200370300200342003703b00641e6b3c000411a200341b0066a100020034180036a41086a2002290300370300200320032903b006370380034100210420034180036a411041a4a4c100410041001001417f460d072003421037029406200320034180036a3602900620034188056a20034190066a10402003280288052202450d382003200329028c0522103702940620032002360290062010422088a7210a2010a721040c080b411f10122201450d30200141176a41002900a4b140370000200141106a410029009db140370000200141086a4100290095b1403700002001410029008db1403700002001411f413f10142201450d31200120032903c00337001f200141376a200341d8036a2903003700002001412f6a200341c0036a41106a290300370000200141276a200341c0036a41086a290300370000200341b0066a41086a22024200370300200342003703b0062001413f200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d02200b450d04200b101222010d05200b41011015000b41d0b9c00021090b4122210820012d00004104460d540c550b4193bcc00021014122210220090d440c450b200341b0066a41086a22054200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2005290300370300200320032903b006370380034100210420034180036a411041a4a4c100410041001001417f460d04200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220a450d342003200329028c0522073702e4032003200a3602e0032007422088a721052007a721040c050b410121010b2001200a200b10fe01210f200341e8046a41186a2201200341c0036a41186a290300370300200341e8046a41106a2204200341c0036a41106a290300370300200341e8046a41086a220e200341c0036a41086a290300370300200320032903c0033703e804412010122202450d30200220032903e804370000200241186a2001290300370000200241106a2004290300370000200241086a200e29030037000002400240200b450d00200b41206a2201200b490d50200141c000200141c0004b1b22044100480d50200241202004101422020d01200441011015000b41202104200b41206a21010b200241206a200f200b10fe011a20034188056a41186a220e420037030020034188056a41106a220c420037030020034188056a41086a220d420037030020034200370388052002200120034188056a100220034190066a41186a200e29030037030020034190066a41106a200c29030037030020034190066a41086a200d29030037030020032003290388053703900641be82c10021010240200341a0046a20034190066a41201080020d00200341c1046a20032903e804370000200341c0046a41013a0000200341c9046a200341e8046a41086a290300370000200341d1046a200341e8046a41106a290300370000200341d9046a200341e8046a41186a290300370000410021010b02402004450d002002101f0b02402001450d00410c2102200b450d41200f101f20090d420c430b20034190066a41186a200341a0036a41186a29030037030020034190066a41106a200341a0036a41106a29030037030020034190066a41086a200341a0036a41086a290300370300200320032903a0033703900620034188056a200341e0036a41880110fe011a411510122201450d332001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d3420012003290390063700152001412d6a200341a8066a290300370000200141256a200341a0066a2903003700002001411d6a20034198066a290300370000200341353602ec04200320013602e80420034188056a200341e8046a109a012001101f0240200b450d00200f101f0b4100210102402009450d00200a101f0b41000d430c440b20034100360298062003420137039006410121024100210a0b20034188056a41186a220f200341e0036a41186a29030037030020034188056a41106a220e200341e0036a41106a29030037030020034188056a41086a220c200341e0036a41086a290300370300200320032903e003370388050240200a2004470d00200441016a220b2004490d4d2004410174220d200b200b200d491b220bad4205862210422088a70d4d2010a7220d4100480d4d2004450d0320022004410574200d10142202450d040c360b2004210b0c360b200341003602e803200342013703e0034101210a410021050b20034188056a41186a220f20034190066a41186a29030037030020034188056a41106a220e20034190066a41106a29030037030020034188056a41086a220c20034190066a41086a29030037030020032003290390063703880520042005470d32200541016a22042005490d4a2005410174220b20042004200b491b2204ad4205862207422088a70d4a2007a7220b4100480d4a2005450d02200a2005410574200b1014220a450d030c310b200d101222020d320b200d41011015000b200b1012220a0d2e0b200b41011015000b41bcf8c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41d0c6c2001024000b41de86c00041331023000b41d0c6c2001024000b41de86c00041331023000b41d0c6c2001024000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411541011015000b413541011015000b41de86c00041331023000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412041011015000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b200320043602e4032003200a3602e0030b200a20054105746a220b200329038805370000200b41186a200f290300370000200b41106a200e290300370000200b41086a200c290300370000200341e0036a41086a200541016a3602002003411b36028c0520034180b4c00036028805200341e0036a20034188056a106202402004450d00200a101f0b200341e0036a41186a20034190066a41186a2205290300370300200341e0036a41106a20034190066a41106a2204290300370300200341e0036a41086a20034190066a41086a220a29030037030020032003290390063703e00320034188056a41186a2016370300200341c0056a200341e8046a41186a290300370300200341b8056a200341e8046a41106a290300370300200341b0056a200341e8046a41086a290300370300200341d0056a200a290300370300200341d8056a2004290300370300200341e0056a2005290300370300200320113703980520032006370390052003201537038805200341003a00e805200320032903e8043703a80520032003290390063703c80502400240024002400240024002400240411510122205450d002005410d6a4100290095bb40370000200541086a4100290090bb4037000020054100290088bb4037000020054115413510142205450d01200520032903e0033700152005412d6a200341e0036a41186a290300370000200541256a200341e0036a41106a2903003700002005411d6a200341e0036a41086a290300370000200341353602c402200320053602c00220034188056a200341c0026a109a012005101f412210122205450d02200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d03200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042005101f02402004450d00412210122205450d05200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d06200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000411010122204450d0720042013420020021b37000020042012420020021b37000820044110412010142202450d082002201420117d370010200241186a201020167d2014201154ad7d370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a100020034180036a41086a2004290300370300200320032903b0063703800320034180036a41102002412010042002101f2005101f0b20034188056a41106a200836020020034194056a200936020020034188056a41096a20032f01a0023b000020034193056a200341a2026a2d00003a00002003419c056a20032903a003370200200341a9056a200341ad036a290000370000200341b1056a20032903c003370000200341c1056a200341c0036a41106a290300370000200341c9056a200341c0036a41186a290300370000200341083a00880520034188056a41086a41093a0000200341a4056a200341a0036a41086a290300370200200341b9056a200341c0036a41086a29030037000020034188056a10270c0b0b411541011015000b413541011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b2003200b3602940620032002360290060b200241206a2002200a41057410ff011a2002200329038805370000200241186a200f290300370000200241106a200e290300370000200241086a200c29030037000020034190066a41086a200a41016a3602002003411a36028c05200341e6b3c0003602880520034190066a20034188056a1062200b450d002002101f0b20034188056a41186a200929030037030020034188056a41106a200341e0036a41106a29030037030020034188056a41086a200341e0036a41086a290300370300200320032903e00337038805411f10122202450d02200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d03200220032903880537001f200241376a200341a0056a2903003700002002412f6a20034188056a41106a290300370000200241276a20034190056a290300370000411010122204450d04200420194200201a42015122091b221020157c221437000020042007420020091b20067c2014201054ad7c37000820044110412010142204450d0520042018420020091b220620117c2207370010200441186a2017420020091b20167c2007200654ad7c370000200341b0066a41086a22094200370300200342003703b0062002413f200341b0066a100020034180036a41086a2009290300370300200320032903b0063703800320034180036a41102004412010042004101f2002101f20034188056a41086a41083a000020034188056a41106a200836020020034194056a200536020020034191056a20032f01a0033b000020034193056a200341a2036a2d00003a00002003419c056a20032903e804370200200341a4056a200341e8046a41086a290300370200200341a9056a200341f5046a290000370000200341083a00880520034188056a10270b410021090b20012d00004104460d140c150b411f41011015000b413f41011015000b411041011015000b412041011015000b2009450d010b200a101f0b2001450d010b20022108200121050c0e0b20034191056a20032f01fc023b000020034188056a41106a200836020020034194056a20053602002003419c056a20032903e002370200200341b1056a20032903a002370000200341083a00880520034188056a41086a410a3a000020034193056a200341fe026a2d00003a0000200341a9056a200341ed026a290000370000200341c1056a200341a0026a41106a290300370000200341c9056a200341a0026a41186a290300370000200341a4056a200341e0026a41086a290300370200200341b9056a200341a0026a41086a290300370000200341e9056a200341c0026a41186a290300370000200341e1056a200341c0026a41106a290300370000200341d9056a200341c0026a41086a290300370000200341d1056a20032903c00237000020034188056a1027410021050c0d0b4114210820012d00004104460d0a0c0b0b41a5bec00021090c010b41f5bdc00021090b4130210820012d00004104460d070c080b20024105742109410021044108210e4100210541002108200d2102034020034190066a41186a200241186a220a29000037030020034190066a41106a200241106a220b29000037030020034190066a41086a200241086a220f2900003703002003200229000037039006200341e0036a41186a200a290000370300200341e0036a41106a200b290000370300200341e0036a41086a200f290000370300200320022900003703e00320034188056a200341e0036a109901024020082005470d00200541016a220a2005490d062005410174220b200a200a200b491b220aad4288017e2206422088a70d062006a7220b4100480d06024002402005450d00200e20054188016c200b1014220e0d010c090b200b1012220e450d080b200a21050b200241206a2102200e20046a20034188056a41880110fe011a20044188016a2104200841016a2108200941606a22090d000b200341f0046a20083602002003200e3602e804200320053602ec04200c450d010b200d101f0b200342003702e403200341a893c1003602e003200341e8046a200341e0036a4100109b0120032802e803210a20032802e00321020240024020032802e4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341a4056a20022f0106360200200341a0056a41003602002003419c056a20023602002003200a3602a805200341003602980520034200370390052003200836028c05200341003602880520034188056a109c012005450d00200e101f0b410021090b4124210820012d00004104460d020c030b1010000b200b41081015000b200141c8006a280200450d00200141c4006a280200101f0b200921050b2000200836020420002005360200200341d0066a24000bb20504027f017e017f037e230041206b22022400024002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1000200241086a2005290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012205417f460d022005410f4d0d02200241186a2903002106200229031021042003101f411810122203450d010c050b420021062003101f4118101222030d040b411841011015000b41de86c00041331023000b411441011015000b413441011015000b200341106a41002900d19540370000200341086a41002900c99540370000200341002900c19540370000024020034118413810142203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b2003101f2000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41de86c00041331023000b413841011015000be30301047f230041d0006b2202240002400240411210122203450d00200341106a41002f0091e5403b0000200341086a4100290089e54037000020034100290081e54037000020034112413210142203450d01200320012900003700122003412a6a200141186a290000370000200341226a200141106a2900003700002003411a6a200141086a290000370000200241306a41086a220142003703002002420037033020034132200241306a1000200241206a41086a200129030037030020022002290330370320024002400240200241206a411041a4a4c100410041001001417f460d00200241306a41186a4200370300200241306a41106a4200370300200241386a420037030020024200370330200241206a4110200241306a4120410010012201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b2003101f200241d0006a24000f0b41de86c00041331023000b411241011015000b413241011015000bd20301087f230041306b2201240041082102200141206a41086a220342003703002001420037032041d595c1004115200141206a1000200141086a200329030037030020012001290320370300410021040240024002402001411041a4a4c100410041001001417f460d002001421037021420012001360210200141206a200141106a105f20012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d02200820004120108002450d02200341dc006a22082000460d02200820004120108002450d022003419c016a22082000460d02200820004120108002450d02200341dc016a22082000460d0220034180026a21032008200041201080020d000c020b0b024020032006460d000340410121072003411c6a22032000460d02200320004120108002450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d002000280200101f0b200041c0006a2100200341406a22030d000b0b02402005450d002002101f0b200141306a240020070f0b41de86c00041331023000bb00b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510122206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081015000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001001220e200e417f461b220e4120200e412049220e1b20052802006a220f360200200e0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1001220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d2903002113200229035021142002200110282002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10122216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081015000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a221a360200200f0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1001220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101422160d010c090b201a10122216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101422060d010c080b200510122206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d002016101f0b200041003602000240200b450d00200641106a210503400240200541046a280200450d002005280200101f0b200541c0006a2105200a41406a220a0d000b0b0240200c450d002006101f0b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081015000b200541081015000b100f000b8c1105087f027e067f017e017f230041b0016b220224000240024002400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1000200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a411041a4a4c100410041001001417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100122032003417f461b22034104200341044922031b20022802286a220136022820030d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22094100200241106a411020024190016a41202001100122032003417f461b2203412020034120491b20092802006a22013602002003411f4d0d01200241f0006a41186a22032006290300370300200241f0006a41106a22092007290300370300200241f0006a41086a220620082903003703002002200229039001370370200241d0006a41186a2003290300370300200241d0006a41106a2009290300370300200241d0006a41086a200629030037030020022002290370370350410121030c020b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b410021030b20024190016a41186a2209200241d0006a41186a29030037030020024190016a41106a2206200241d0006a41106a29030037030020024190016a41086a2207200241d0006a41086a29030037030020022002290350370390012003450d03200241306a41186a2009290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903900137033020024200370398012002420037039001200241206a41086a22094100200241106a411020024190016a41102001100122032003417f461b2203411020034110491b20092802006a3602002003410f4d0d0320024198016a290300210a200229039001210b200241086a200241206a10282002280208450d03200228020c2203417f4c0d04024002402003450d0020031076220c450d09200241286a22012003410020022802202002280224200c20032001280200100122092009417f461b2209200920034b1b220920012802006a36020020092003460d010c040b4101210c2002280220200228022441014100200241286a28020010011a41002003470d030b2002200241206a10282002280200450d0220022802042201417f4c0d04024002402001450d0020011076220d450d0a200241286a220920092802002207200141002002280220220920022802242206200d20012007100122072007417f461b2207200720014b1b22086a220736020020082001460d010c030b4101210d200228022022092002280224220641014100200241286a280200220710011a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002009200620024190016a41202007100122082008417f461b2208412020084120491b20076a22073602002008411f4d0d01200241f0006a41186a2208200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2008290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002009200620024190016a41082007100122082008417f461b2208410820084108491b20076a2207360200200841074d0d012002290390012112200241003a009001200241286a20072009200620024190016a41012007100141016a41014b22096a3602002009450d0120022d009001220641064f0d0120024190016a41186a2207200241306a41186a29030037030020024190016a41106a2208200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22092d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2008290300370200200041cc006a200729030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200920132d00003a0000200220022f01303b0150200020063a0074200020022f01503b0075200041f7006a20092d00003a00000b2004101f200241b0016a24000f0b2001450d00200d101f0b2003450d00200c101f0b41de86c00041331023000b100f000b411341011015000b412641011015000b200341011015000b200141011015000bcb0201027f230041306b22022400024002400240411510122203450d002003410d6a41002900eec340370000200341086a41002900e9c340370000200341002900e1c34037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241206a41086a220142003703002002420037032020034135200241206a1000200241086a200129030037030020022002290320370300024002402002411041a4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411541011015000b413541011015000b41de86c00041331023000bc10301077f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004105742104200241106a41086a2802002100200228021021052002280214210603400240024002400240200620006b41204f0d00200041206a22072000490d0720064101742208200720072008491b22084100480d072006450d01200520062008101422050d020c080b200041206a21070c020b200810122205450d060b200821060b200520006a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020072100200341206a2103200441606a22040d000b200241186a200736020020022006360214200220053602100c010b200241186a280200210720022802142106200228021021050b2001280204210320012802002100200241106a41086a220442003703002002420037031020002003200241106a1000200241086a2004290300370300200220022903103703002002411020052007100402402006450d002005101f0b200241206a24000f0b1010000b200841011015000be70504027f017e017f047e230041206b22032400024002400240411810122204450d00200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021052004101f41142106411410122204450d010c050b420021072004101f411421064114101222040d040b200641011015000b41de86c00041331023000b411841011015000b413841011015000b200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad9540370000024020042006413410142204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101f20002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c106e2000200520017d200720027d2005200154ad7d106f200341206a24000f0b41de86c00041331023000b413441011015000be110020b7f037e230041d0026b22022400200241b0026a41086a22034200370300200242003703b00241ccf3c000411b200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a00241002104024002400240024002400240200241a0026a411041a4a4c100410041001001417f460d002002421037023c2002200241a0026a360238200241a8016a200241386a106820022802a8012205450d02200241b0016a280200210420022802ac0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041012220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d012005101f4100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031014220b0d010c020b20031012220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041015000b02402006450d002005101f0b200a2004470d050c040b4100210c41002004460d030c040b1010000b41de86c00041331023000b410441041015000b0240200c450d00200b101f0b200241d0026a24004195f8c0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241a8016a20001060200241d0006a200241f4016a290200370300200241386a41106a200241ec016a290200370300200241386a41086a200241e4016a290200370300200220022902dc013703384200210d200241b0026a41086a22034200370300200242003703b00241fff7c0004116200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a002200241a0026a411041a4a4c100410041001001417f460d02200242003703c802200242003703c002200241a0026a4110200241c0026a4110410010012203417f460d082003410f4d0d08200241c8026a290300210d20022903c002210e0c030b200241a8016a20001060200241386a41186a20024194026a290200370300200241386a41106a2002418c026a290200370300200241386a41086a20024184026a290200370300200220022902fc01370338411810122203450d0841002107200341106a41002900b1f340370000200341086a41002900a9f340370000200341002900a1f34037000020034118413810142203450d0920032002290338370018200341306a200241d0006a290300370000200341286a200241386a41106a290300370000200341206a200241386a41086a290300370000200241b0026a41086a22094200370300200242003703b00220034138200241b0026a1000200241c0026a41086a2009290300370300200220022903b0023703c002200241c0026a411041a4a4c100410041001001417f460d03200242103702b4022002200241c0026a3602b002200241186a200241b0026a10282002280218450d0c200228021c2208417f4c0d0a2008450d04200810762207450d0d200241b8026a2209200928020022092008410020022802b00220022802b402200720082009100122092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241a8016a20001060200241206a200241dc016a20022903a801200241b0016a29030010650240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0520022802d001101f0c050b420a210e0b2002200241386a200e200d1065200241386a20022903a801220f200e7d200241b0016a290300200d7d200f200e54ad7d10630240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0320022802d001101f0c030b0c010b4101210720022802b00220022802b40241014100200241b8026a28020010011a41002008470d060b200241fc016a21092003101f200241dc016a20022903a801200241a8016a41086a290300106341fc89c00041052007410120071b22042008410020071b2203100402402003450d002004101f0b200241386a41086a41053a0000200241c1006a2009290000370000200241386a412c6a2000360200200241c9006a200941086a290000370000200241d1006a200941106a290000370000200241d9006a200941186a290000370000200241073a0038200241386a10270240200241c8016a280200450d0020022802c401101f0b200241a8016a412c6a280200450d0020022802d001101f0b2002200a3602b0012002200c3602ac012002200b3602a8012002411b36023c200241ccf3c000360238200241a8016a200241386a10690240200c450d00200b101f0b200241a8016a20001060200220013a009c0202400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142203450d01200320003600132002411736023c20022003360238200241a8016a200241386a10672003101f0240200241c8016a280200450d0020022802c401101f0b0240200241d4016a280200450d0020022802d001101f0b200241b4016a2000360200200241b1016a20013a0000200241b0016a41023a0000200241073a00a801200241a8016a1027200241d0026a240041000f0b411341011015000b412641011015000b41de86c00041331023000b411841011015000b413841011015000b100f000b2008450d002007101f0b41de86c00041331023000b200841011015000bf10504027f017e017f067e230041306b2204240002400240411810122205450d00200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054138200441206a1000200441106a41086a2007290300370300200420042903203703100240024002400240200441106a411041a4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012207417f460d022007410f4d0d02200441286a2903002108200429032021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106f200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a20012903003703002004200429032037031002400240200441106a411041a4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012201417f460d032001410f4d0d03200441286a290300210c200429032021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37030020042006370308200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a200129030037030020042004290320370310200441106a41102004411010040b20002002200a7d370308200041106a2003200b7d2002200a54ad7d37030020002009200254200820035420051bad370300200441306a24000f0b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000bec0506027f017e017f027e017f027e230041206b2203240002400240024002400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021050c010b420021070b2004101f419c9bc00021040240024020052001542206200720025420072002511b0d00200010702204450d010b200341206a240020040f0b411810122204450d04200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341106a41086a220942003703002003420037031020044138200341106a1000200341086a200929030037030020032003290310370300024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012209417f460d052009410f4d0d05200341186a290300210a200329031021080c010b4200210a0b2004101f2000200820017c220b200a20027c200b200854ad7c106f2000200520017d200720027d2006ad7d106e200341206a240041000f0b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411841011015000b413841011015000bed0803037f027e057f230041206b2202240020024100360218200242013703102000280218210302400240024002400240024002400240410410122204450d0020024284808080c000370214200220043602102004200336000020044104412410142204450d01200242a4808080c004370214200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436021041000d05200041086a2903002105200029030021062004412441c80010142204450d02200420063700242004412c6a2005370000200241186a22034134360200200241c80036021420022004360210200028021c21072002200041246a28020022043602002002200241106a101302400240024020022802142208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802102008200910142208450d020c060b200228021021080c060b2009101222080d040b200941011015000b410441011015000b412441011015000b41c80041011015000b20022009360214200220083602100b200241186a2209200320046a360200200820036a2007200410fe011a2000280228210a2002200041306a28020022073602002002200241106a10130240024002400240024020022802142203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802102003200810142204450d020c030b200228021021040c030b2008101222040d010b200841011015000b2002200836021420022004360210200821030b200241106a41086a220b200920076a2208360200200420096a200a200710fe011a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710142204450d020c030b200321070c030b2007101222040d010b200741011015000b20022007360214200220043602100b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22092003490d0320074101742208200920092008491b22084100480d032007450d0120042007200810142204450d020c040b200841286a21090c040b2008101222040d020b200841011015000b1010000b20022008360214200220043602100b200241106a41086a22082009360200200420036a200537000020002d0074200241106a10582008280200210420022802142103200228021021002001280204210720012802002109200842003703002002420037031020092007200241106a1000200241086a2008290300370300200220022903103703002002411020002004100402402003450d002000101f0b200241206a24000bc40303027f017e097f230041106b2202240020022001102802400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041015000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100122052005417f461b22054104200541044922051b20072802006a36020020050d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101422060d010c060b200d10122206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d002006101f0b200241106a24000f0b1010000b200d41041015000b920301097f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004102742104200241186a22052802002100200228021421060340200328020021070240024002400240200620006b41044f0d00200041046a22082000490d0720064101742209200820082009491b220a4100480d072006450d0120022802102006200a101422090d020c080b200041046a2108200228021021090c020b200a10122209450d060b2002200a36021420022009360210200a21060b200341046a210320052008360200200920006a2007360000200821002004417c6a22040d000c020b0b200241186a280200210820022802142106200228021021090b2001280204210020012802002103200241106a41086a220442003703002002420037031020032000200241106a1000200241086a2004290300370300200220022903103703002002411020092008100402402006450d002009101f0b200241206a24000f0b1010000b200a41011015000ba80e03057f017e037f230041b0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910122204450d00200441186a41002d00d5f8403a0000200441106a41002900cdf840370000200441086a41002900c5f840370000200441002900bdf84037000020044119413210142204450d0120042001360019200341a0016a41086a22054200370300200342003703a0012004411d200341a0016a100020034190016a41086a2005290300370300200320032903a0013703900120034190016a4110100a21052004101f02400240024002402005450d0020034190016a2001108101200341206a41186a200341186a290300370300200341206a41106a200341106a290300370300200341206a41086a200341086a2903003703002003200329030037032020032802940122062003280298012204470d01200441016a22072004490d0620044101742205200720072005491b2206ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910142205450d030c0a0b412110122204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910122205450d07200541186a41002d00d5f8403a0000200541106a41002900cdf840370000200541086a41002900c5f840370000200541002900bdf84037000020054119413210142205450d0820052001360019200341003602282003420137032020044101200341206a103b200328022421062003280228210920032802202107200341a0016a41086a220a4200370300200342003703a0012005411d200341a0016a1000200341206a41086a200a290300370300200320032903a001370320200341206a411020072009100402402006450d002007101f0b2005101f2004101f0c0b0b200441016a210720032802900121050c090b2009101222050d070b200941011015000b411941011015000b413241011015000b1010000b412141011015000b411941011015000b413241011015000b200320063602940120032005360290010b20034190016a41086a20073602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910122204450d01200441186a41002d00d5f8403a0000200441106a41002900cdf840370000200441086a41002900c5f840370000200441002900bdf84037000020044119413210142204450d0220042001360019200341003602282003420137032020052007200341206a103b200328022421092003280228210a20032802202107200341a0016a41086a220b4200370300200342003703a0012004411d200341a0016a1000200341206a41086a200b290300370300200320032903a001370320200341206a41102007200a100402402009450d002007101f0b2004101f2006450d002005101f0b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210122204450d00200441206a41002f00c8f7403b0000200441186a41002900c0f740370000200441106a41002900b8f740370000200441086a41002900b0f740370000200441002900a8f7403700002004412241c40010142204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341286a290300370000200441c40041880110142204450d0220042001360042024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110122205450d09200541033a00000c030b410110122205450d09200541023a00000c020b410110122205450d09200541013a00000c010b410110122205450d09200541003a00000b200341a0016a41086a22074200370300200342003703a001200441c600200341a0016a100020034190016a41086a2007290300370300200320032903a0013703900120034190016a41102005410110042005101f2004101f200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a1027200341b0016a24000f0b412241011015000b41c40041011015000b41880141011015000b411941011015000b413241011015000b410141011015000b410141011015000b410141011015000b410141011015000bcd0a02057f037e230041306b22022400200241106a41086a220342003703002002420037031041cccfc0004112200241106a1000200241206a41086a20032903003703002002200229031037032002400240024002400240024002400240200241206a411041a4a4c100410041001001417f460d00200242103702042002200241206a360200200241106a2002104020022802102203450d02200228021421040240200320014105746a2205450d00200241186a280200220620014d0d0020002005460d02200520004120108002450d020b02402004450d002003101f0b200241306a240041c2d1c0000f0b200241306a240041c2d1c0000f0b20032006417f6a22064105746a220529000021072005290008210820052900102109200320014105746a220141186a200541186a29000037000020012009370010200120083700082001200737000020022006360228200220043602242002200336022020024112360214200241cccfc000360210200241206a200241106a106202402004450d002003101f0b411c10122201450d01200141186a4100280093d040360000200141106a410029008bd040370000200141086a4100290083d040370000200141002900fbcf403700002001411c413c10142201450d022001200029000037001c200141346a200041186a2900003700002001412c6a200041106a290000370000200141246a200041086a290000370000200241106a41086a22034200370300200242003703102001413c200241106a1000200241206a41086a200329030037030020022002290310370320200241206a411010052001101f411210122201450d03200141106a41002f00ecce403b0000200141086a41002900e4ce40370000200141002900dcce4037000020014112413210142201450d04200120002900003700122001412a6a200041186a290000370000200141226a200041106a2900003700002001411a6a200041086a290000370000200241106a41086a220342003703002002420037031020014132200241106a1000200241206a41086a2204200329030037030020022002290310370320200241206a411010052001101f200342003703002002420037031041dd81c000410d200241106a1000200420032903003703002002200229031037032042002107024002400240200241206a411041a4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d01200229031021070b200241106a41086a220142003703002002420037031041abd1c0004117200241106a1000200241206a41086a20012903003703002002200229031037032002400240200241206a411041a4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d0320022903102108410f2103410f10122201450d010c090b42e8072108410f2103410f101222010d080b200341011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b200141076a41002900d9c340370000200141002900d2c340370000024020012003412f10142201450d002001200029000037000f200141276a200041186a2900003700002001411f6a200041106a290000370000200141176a200041086a2900003700002002200820077c370300200241106a41086a22004200370300200242003703102001412f200241106a1000200241206a41086a200029030037030020022002290310370320200241206a41102002410810042001101f200241306a240041000f0b412f41011015000bb20703067f027e027f230041106b2203240020032001360208200341086a200210130240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c090b200228020021070c020b200110122207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c0a0b200228020021070c020b200110122207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101302402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c090b200228020021080c020b200710122208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c0a0b200228020021080c020b200710122208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200741011015000b200141011015000b200141011015000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610142205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010142205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101422050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101422080d0a0c110b2006101222050d130b200641011015000b200128020021050c050b200128020021080c070b2000101222050d0d0b200041011015000b200010122205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510122208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101422060d020c060b200128020021060c020b200910122206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011015000b41c0bcc2001024000b20022002360240200241a894c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4106360200200241106a41146a4103360200200241a4a4c1003602582002420137024c200241a8bcc2003602482002410636022c20024203370214200241e8c4c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41d8bcc200103a000b200041011015000b200541011015000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000b911107017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441142107411410122205450d010c030b42002106411421074114101222050d020b200741011015000b41de86c00041331023000b200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000002400240024002400240024002400240024002400240024002400240024020052007413410142205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0d411410122205450d04200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411410122205450d06200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d07200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f410f10122205450d08200541076a41002900d9c340370000200541002900d2c3403700002005410f412f10142205450d092005200029000037000f200541276a200041186a2900003700002005411f6a200041106a290000370000200541176a200041086a29000037000020034180016a41086a2207420037030020034200370380012005412f20034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411810122205450d0a200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0b20052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0f0c0d0b410121072005101f4100410171450d0c0c0e0b413441011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b411441011015000b413441011015000b410f41011015000b412f41011015000b411841011015000b413841011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000bcc0f07017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441182107411810122205450d010c030b42002106411821074118101222050d020b200741011015000b41de86c00041331023000b200541106a41002900d19540370000200541086a41002900c99540370000200541002900c19540370000024002400240024002400240024002400240024002400240024020052007413810142205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0b411810122205450d04200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0520052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411810122205450d06200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0720052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411410122205450d08200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d09200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0d0c0b0b410121072005101f4100410171450d0a0c0c0b413841011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b411441011015000b413441011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000baf0304027f017e017f017e230041206b2201240002400240410f10122202450d00200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d012002200029000037000f200241276a200041186a2900003700002002411f6a200041106a290000370000200241176a200041086a29000037000042002103200141106a41086a22004200370300200142003703102002412f200141106a1000200141086a2204200029030037030020012001290310370300420021050240024002402001411041a4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021050b2002101f200042003703002001420037031041dd81c000410d200141106a1000200420002903003703002001200129031037030002402001411041a4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d02200129031021030b200141206a240041b4c3c000410020052003561b0f0b41de86c00041331023000b41de86c00041331023000b410f41011015000b412f41011015000bb40604027f017e017f067e230041d0006b2204240002400240411410122205450d00200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441c0006a41086a220742003703002004420037034020054134200441c0006a1000200441206a41086a2007290300370300200420042903403703200240024002400240200441206a411041a4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d022007410f4d0d02200441c8006a2903002108200429034021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106e200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a20072903003703002004200429034037032002400240200441206a411041a4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d032007410f4d0d03200441c8006a290300210c200429034021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37033020042006370338200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a200729030037030020042004290340370320200441206a4110200441306a411010040b02400240200920025a200820035a20051b0d00200441086a20012002200a7d2003200b7d2002200a54ad7d1065200441186a290300210820042903102109200429030821030c010b420021030b2000200937030820002003370300200041106a2008370300200441d0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bda0201027f230041306b22022400024002400240411c10122203450d00200341186a41002800e7d140360000200341106a41002900dfd140370000200341086a41002900d7d140370000200341002900cfd1403700002003411c413c10142203450d012003200129000037001c200341346a200141186a2900003700002003412c6a200141106a290000370000200341246a200141086a290000370000200241206a41086a22014200370300200242003703202003413c200241206a1000200241086a200129030037030020022002290320370300024002402002411041a4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411c41011015000b413c41011015000b41de86c00041331023000bc90201027f024020002802004102470d0002400240024002400240024002400240200028020422012d0000220241094b0d0020020e0a07010707070203040506070b200141046a2802004102490d062001410c6a280200450d06200141086a280200101f0c060b200141086a10440c050b200141086a2d0000410c490d04200141106a280200450d042001410c6a280200101f0c040b200141046a10730c030b200141086a2d00004102470d020240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d02200141246a280200101f0c020b200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b200141086a2d00004102470d00200141106a280200450d002001410c6a280200101f0b200041046a280200101f0b0bd60403027f017e0e7f230041d0006b22022400200241086a2001101702400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110fe011a200a200520116b3602002001200f20116a36020020100d02200d41016a2105200241106a41186a22112007290300370300200241106a41106a220f2008290300370300200241106a41086a22102009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101422060d010c060b201210122206450d050b2006200c6a220d2002290310370000200d41186a2011290300370000200d41106a200f290300370000200d41086a2010290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d002006101f0b200241d0006a24000f0b1010000b201241011015000bce0603067f037e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510fe011a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d002022034103712204450d00024020044101460d0020044102470d02200241003a001e200241003b011c2002411c6a200520064103200641034922071b220410fe011a200141046a200620046b3602002001200520046a36020020070d0320022f011c20022d001e41107472410874200372410276ad21080c080b200241003a0020200241206a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21080c070b2003410276ad21080c060b0240024020034102762204450d00024020044104460d002004410c470d024200210a2002420037032820024200370320200241206a200520064110200641104922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d04200241286a2903002109200229032021084201210a0c090b4200210a20024200370320200241206a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d03200229032021080c070b20024100360220200241206a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d01200235022021080c060b200441046a220b41104b0d00200141046a210c200241106a210d4200210842002109410021030340200241003a0020200241206a20052006410047220410fe011a20062004490d04200c200620046b22073602002001200520046a22053602002006450d01200241086a20023100204200200341037441f80071108302200d2903002009842109200229030820088421084201210a20072106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004101a000b20042006101a000b20042006101a000b420021094201210a0b200020083703082000200a370300200041106a2009370300200241306a24000b0700200010f3010bb10101037f024002400240024002400240200041046a280200200041086a2802002201470d00200141016a22022001490d0320014101742203200220022003491b22034100480d032001450d0120002802002001200310142202450d020c040b200028020021020c040b2003101222020d020b200341011015000b1010000b20002002360200200041046a2003360200200041086a28020021010b200041086a200141016a360200200220016a41023a00000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410142203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410142203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101422030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101422030d0a0c0d0b2004101222030d0e0b200441011015000b200128020021030c050b200128020021030c070b2004101222030d0c0b200441011015000b200410122203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410122203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101422030d020c060b200128020021030c020b200010122203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011015000b200441011015000b200041011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010142203450d020c040b200128020021030c040b2000101222030d020b200041011015000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b900a02067f017e230041e0006b2202240002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0e0c0d0b200241cb006a2001410c6a280000360000200041013a00002002200141046a29000037004320002002290040370001200041086a200241c7006a2900003700002003450d020b20034101460d0c20030d09200141086a280200450d0c200141046a280200101f200241e0006a24000f0b20034103470d0920022001410c6a280200220336021c2002200141046a2802002204360218200241003a0040200241c0006a20042003410047220510fe011a20032005490d022002200320056b220636021c2002200420056a22053602182003450d09024020022d004022034101460d0020030d0a200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b220436021c2002200520036a220336021802402006450d0020022d0040450d030b410021060c060b200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b36021c2002200520036a3602182006450d0920022d00400d09200241c0006a200241186a107420022802402203450d0920022902442108200241146a41026a200241206a41026a2d00003a0000200241086a200241c0006a41086a290200370300200241106a200241c0006a41106a280200360200200220022f00203b011420022002290240370300410121060c070b41000d090c0a0b41002106200241c0006a20044120200441204922071b22056a41004100412020056b2005411f4b1b10fd011a200241c0006a2003200510fe011a2002200420056b36021c2002200320056a36021820070d03200241386a41026a200241c0006a41026a2d00003a0000200241286a200241d7006a290000370300200241306a200241c0006a411f6a2d00003a0000200220022f00403b01382002200229004f3703202002280043210320022900472108410121060c040b20052003101a000b20032006101a000b20032006101a000b0b2002413c6a41026a2205200241386a41026a2d00003a0000200241c0006a41086a2204200241206a41086a290300370300200241c0006a41106a2207200241206a41106a2d00003a0000200220022f01383b013c200220022903203703402006450d02200241146a41026a20052d00003a0000200241086a2004290300370300200241106a20072d00003a0000200220022f013c3b011420022002290340370300200241136a200241c0006a41026a2d00003a0000200220022f00403b0011410021060b200241206a41026a2205200241146a41026a2d00003a0000200241c0006a41086a2204200241086a290300370300200241c0006a41106a2207200241106a280200360200200220022f01143b012020022002290300370340200020063a0000200041086a2008370000200041046a2003360000200020022f01203b0001200041036a20052d00003a0000200041106a2002290340370000200041186a2004290300370000200041206a20072802003600000b200141086a280200450d02200141046a280200101f0c020b41a093c000411e1023000b200141086a280200450d00200141046a280200101f200241e0006a24000f0b200241e0006a24000bf20202027f027e230041206b22032400024020001070450d00200341206a240041000f0b02400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1000200341086a2000290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b2004101f200341206a2400200520015a200620025a20062002511b0f0b41de86c00041331023000b411441011015000b413441011015000bbd0504027f017e017f037e230041c0006b2203240020032000105c024002400240024002402003290300200341086a29030084500d00411410122204450d03200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341306a41086a220642003703002003420037033020044134200341306a1000200341206a41086a20062903003703002003200329033037032002400240200341206a411041a4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012206417f460d032006410f4d0d03200341386a2903002107200329033021080c010b42002108420021070b2004101f2000200820017c2209200720027c2009200854ad7c106e200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a20002903003703002003200329033037032002400240200341206a411041a4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012200417f460d042000410f4d0d04200341386a2903002108200329033021050c010b420021080b200520017c22012005542200200820027c2000ad7c220520085420052008511b0d002003200137031020032005370318200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a200029030037030020032003290330370320200341206a4110200341106a411010040b200341c0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bc30609047f017e017f017e037f017e047f017e017f23004180066b22022400200241c8026a2001107d200241d8026a280200210320022802d402210420022802d002210520022903c802210620024190056a200241dc026a41e40010fe011a024002400240024002400240024002400240024002402005450d00200241086a20024190056a41e40010fe011a2002200110172002280200450d0820022802042207ad42e0017e2208422088a70d032008a72209417f4c0d032009450d0120091012220a450d042007450d020c050b2000410036020820024180066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081015000b200241c8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241c8026a2001101620024190056a200241c8026a41f00010fe011a200241c8026a41f0006a2903002108200241a8046a200b41e80010fe011a20084203510d02200e41016a2110200241d8016a20024190056a41f00010fe011a200241f0006a200241a8046a41e80010fe011a0240200e200f470d00200d20102010200d491b220fad42e0017e2211422088a70d052011a722124100480d050240200e450d00200a200920121014220a0d010c070b20121012220a450d060b200a20096a200241d8016a41f00010fe01220e41f0006a2008370300200e41f8006a200241f0006a41e80010fe011a200c4280808080107c210c200d41026a210d200941e0016a21092010210e20102007490d000b200a450d020b200241c8026a200241086a41e40010fe011a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241c8026a41e40010fe011a200041fc006a200c200fad84370200200041f8006a200a36020020024180066a24000f0b0240200e450d00200a4188016a211003402010107e201041e0016a2110200941a07e6a22090d000b0b200f450d00200a101f0b2000410036020802402003450d00200341246c2110200521090340024020092d0000450d00200941086a280200450d00200941046a280200101f0b200941246a21092010415c6a22100d000b0b02402004450d002005101f0b20024180066a24000f0b1010000b201241081015000b9a2107077f017e037f017e0a7f027e0b7f23004180036b22022400200241a8026a41186a22034200370300200241a8026a41106a22044200370300200241a8026a41086a22054200370300200242003703a802200241a8026a2001280200220620012802042207412020074120491b220810fe011a2001200720086b3602042001200620086a360200024002402007411f4d0d00200241e8016a41186a22072003290300370300200241e8016a41106a22082004290300370300200241e8016a41086a22062005290300370300200220022903a8023703e801200241a8016a41186a2007290300370300200241a8016a41106a2008290300370300200241a8016a41086a2006290300370300200220022903e8013703a801410121070c010b410021070b200241a8026a41186a2208200241a8016a41186a290300370300200241a8026a41106a2206200241a8016a41106a290300370300200241a8026a41086a2203200241a8016a41086a290300370300200220022903a8013703a80202400240024002400240024002400240024002400240024002400240024002400240024002402007450d00200241206a41186a2008290300370300200241206a41106a2006290300370300200241206a41086a2003290300370300200220022903a802370320200241106a200110192002290310a7450d0120022903182109200241a8026a41186a22054200370300200241a8026a41106a220a4200370300200241a8026a41086a220b4200370300200242003703a802200241a8026a20012802002204200141046a22032802002207412020074120491b220610fe011a2003200720066b22083602002001200420066a22063602002007411f4d0d02200241e8016a41186a22072005290300370300200241e8016a41106a2204200a290300370300200241e8016a41086a2205200b290300370300200220022903a8023703e801200241c0006a41186a2007290300370300200241c0006a41106a2004290300370300200241c0006a41086a2005290300370300200220022903e801370340200241a8026a2008412020084120491b22076a41004100412020076b2007411f4b1b10fd011a200241a8026a2006200710fe011a2003200820076b3602002001200620076a3602002008411f4d0d03200241e8016a41186a2207200241a8026a41186a290300370300200241e8016a41106a2208200241a8026a41106a290300370300200241e8016a41086a2206200241a8026a41086a290300370300200220022903a8023703e801200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2006290300370300200220022903e801370360200241086a200110172002280208450d0c200228020c220cad42247e220d422088a70d0f200da72207417f4c0d0f2007450d0420071012220e450d06200c450d050c070b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b4104210e200c0d020b410021164200210d0c020b200741041015000b200241a8026a41106a2107200241a8026a410172210f200241e8016a41116a2110200241b7026a211120024180016a4101722103200141046a210b200241fc026a41026a2112200241f0026a2113200241a8026a41076a21144200210d41002115410021084100210a200c21160340200b2802002106200241003a00a802200241a8026a200128020022172006410047220410fe011a20062004490d06200b200620046b22053602002001201720046a22043602002006450d0320022d00a802220641034b0d030240024002400240024002400240024020060e0400030102000b2002200110172002280200450d0a20022802042206417f4c0d0f2006450d03200610762205450d1120052001280200200b2802002204200620042006491b220410fe011a200b28020022172004490d12200b201720046b3602002001200128020020046a36020020042006460d040c090b200241a8026a2005412020054120491b22066a41004100412020066b2006411f4b1b10fd011a200241a8026a2004200610fe011a200b200520066b3602002001200420066a3602002005411f4d0d09200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a2d00003a0000200220022f00a8023b01a002200220112900003703e8012002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021182010411f6a200241a8026a411f6a290000370000201041186a200241a8026a41186a290000370000201041106a2007290000370000201041086a200241a8026a41086a290000370000201020022900a802370000410121170c040b200242003703a802200241a8026a20042005410820054108491b220610fe011a200b200520066b22173602002001200420066a2204360200200541074d0d0820022903a8022119200241a8026a201741c000201741c000491b22066a4100410041c00020066b2006413f4b1b10fd011a200241a8026a2004200610fe011a200b201720066b3602002001200420066a3602002017413f4d0d08200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a290000370300200241e8016a41186a201141186a290000370300200241e8016a41206a201141206a290000370300200241e8016a41286a201141286a290000370300200241e8016a41306a201141306a2d00003a0000200220022f00a8023b01a002200220112900003703e801410221172002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021180c040b200241a8026a2001107420022802a8022205450d0720022902ac022118200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220122d00003a00a202200220022f00fc023b01a002200220022903a8023703e801410021170c020b4101210541002006470d050b200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220022f00fc023b01a002200220022903a8023703e801200220122d00003a00a2022006ad22194220862019842118410321170b0b201220022d00a2023a0000200241a8026a41086a2206200241e8016a41086a221a2903003703002007200241e8016a41106a221b290300370300200241a8026a41186a2204200241e8016a41186a221c290300370300200241a8026a41206a221d200241e8016a41206a290300370300200241a8026a41286a221e200241e8016a41286a290300370300200241a8026a41306a221f200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241e4016a41026a222020122d00003a0000200241a8016a41086a22212006290300370300200241a8016a41106a22222007290300370300200241a8016a41186a22232004290300370300200241a8016a41206a2224201d290300370300200241a8016a41286a221d201e290300370300200241a8016a41306a221e201f290300370300200220022f01fc023b01e401200220022903a8023703a80120062018370300200f20022f01e4013b0000200f41026a20202d00003a0000200720022903a801370000200741086a2021290300370000200741106a2022290300370000200741186a2023290300370000200741206a2024290300370000200741286a201d290300370000200741306a201e290300370000200220173a00a802200220053602ac022013201937030020024180016a200241a8026a107920022d0080012117200241a8026a411f6a221d2003411f6a2800003600002004200341186a2900003703002007200341106a2900003703002006200341086a290000370300200220032900003703a80220174102460d04200a41016a2105200241e8016a411f6a221e201d280000360000201c2004290300370300201b2007290300370300201a2006290300370300200220022903a8023703e8010240200a2016470d002015200520052015491b2216ad42247e2219422088a70d082019a722064100480d080240200a450d00200e200820061014220e0d010c0b0b20061012220e450d0a0b200e20086a220620173a0000200641206a201e280000360000200641196a201c290300370000200641116a201b290300370000200641096a201a290300370000200641016a20022903e801370000200d4280808080107c210d201541026a2115200841246a21082005210a2005200c490d000b0b200e450d03200241a8026a41186a2201200241206a41186a290300370300200241a8026a41106a2207200241206a41106a290300370300200241a8026a41086a2208200241206a41086a290300370300200241e8016a41086a2206200241c0006a41086a290300370300200241e8016a41106a2203200241c0006a41106a290300370300200241e8016a41186a2204200241c0006a41186a290300370300200241a8016a41086a2205200241e0006a41086a290300370300200241a8016a41106a220a200241e0006a41106a290300370300200241a8016a41186a220b200241e0006a41186a290300370300200220022903203703a802200220022903403703e801200220022903603703a8012000200d2016ad8437020c2000200e36020820002009370300200041146a20022903a8023702002000411c6a2008290300370200200041246a20072903003702002000412c6a2001290300370200200041346a20022903e8013702002000413c6a2006290300370200200041c4006a2003290300370200200041cc006a2004290300370200200041ec006a200b290300370200200041e4006a200a290300370200200041dc006a2005290300370200200041d4006a20022903a80137020020024180036a24000f0b2006450d002005101f0b200241fc026a41026a20022d00a2023a0000200241a8026a41086a2201200241e8016a41086a290300370300200241a8026a41106a2207200241e8016a41106a290300370300200241a8026a41186a2206200241e8016a41186a290300370300200241a8026a41206a200241e8016a41206a290300370300200241a8026a41286a200241e8016a41286a290300370300200241a8026a41306a200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241023a008001200241a8026a411f6a2003411f6a2800003600002006200341186a2900003703002007200341106a2900003703002001200341086a290000370300200220032900003703a8020b0240200a450d00200e21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012008415c6a22080d000b0b2016450d00200e101f0b2000410036020820024180036a24000f0b20042006101a000b1010000b100f000b200641041015000b200641011015000b20042017101a000b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a2200280200107e2000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0b9b2f07047f017e037f017e087f017e0f7f230041a0026b22012400200141b0016a41086a22024200370300200142003703b00141be93c0004113200141b0016a1000200141386a41086a2002290300370300200120012903b001370338024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141386a411041a4a4c100410041001001417f460d00200141003a00b001200141386a4110200141b0016a41014100100141016a41014d0d0220012d00b0012102200141b0016a41086a22034200370300200142003703b00141be93c0004113200141b0016a1000200141086a41086a2003290300370300200120012903b001370308200141086a411010052002450d00200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141386a41086a200229030037030020012001290318370338200141386a411041a4a4c100410041001001417f460d0c2001421037021c2001200141386a360218200141b0016a200141186a104020012802b0012204450d0320012902b4012105200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41101005410610122202450d04200241046a41002f00a388403b00002002410028009f884036000020024106410c10142202450d05200241086a41002d00a788403a0000200241002f00a588403b0006024002402002410941a4a4c100410041001001417f460d00200141003602384101210620024109200141386a41044100100141016a41044d0d03200128023821072002101f20074521082007450d012007ad4205862209422088a70d0f2009a722024100480d0f200210122206450d0841002103200621020340200141386a2003103e200241186a200141386a41186a290000370000200241106a200141386a41106a290000370000200241086a200141386a41086a29000037000020022001290038370000200241206a21022007200341016a2203470d000c020b0b2002101f4101210841002107410121060b024020072005422088a7220a470d000240200a450d0020042006460d004100210b200621022004210303402002200341201080020d02200241206a2102200341206a2103200b41016a220b200a490d000b0b20080d0b2006101f2005a70d0c0c0d0b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141b0016a41086a22032002290300370300200120012903083703b0014100210c02400240200141b0016a411041a4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a10312001280238220d450d09200129023c2109200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a200141b0016a41086a290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b200141386a21022009422088a7220e2009a7220c460d010c0b0b200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a2003290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b4104210d200141386a21020b200c41016a2203200c490d0d200c4101742207200320032007491b2207ad42247e2209422088a70d0d2009a722034100480d0d02400240200c450d00200d200c41246c20031014220d450d010c0a0b20031012220d0d090b200341041015000b41e8d7c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200241011015000b41de86c00041331023000b200c210e2007210c0b200d200e41246c22076a22032002290200370200200341206a200241206a280200360200200341186a200241186a290200370200200341106a200241106a290200370200200341086a200241086a29020037020020014100360210200142013703082001200e41016a220f360238200141386a200141086a101302400240200f450d00200741246a2108200d210203400240024020022d00004101470d002002410c6a2802002103200241046a28020021074100210b0c010b4101210b200241016a21070b200141386a41086a20033602002001200736023c2001200b360238200141186a200141386a10112001280218210a0240024002400240200128020c220b200141086a41086a221028020022036b200141186a41086a28020022074f0d00200320076a22062003490d0a200b4101742211200620062011491b22114100480d0a200b450d012001280208200b2011101422060d020c1a0b200128020821060c020b201110122206450d180b2001201136020c200120063602082011210b0b2010200320076a2211360200200620036a200a200710fe011a0240200128021c450d00200a101f0b200241246a21022008415c6a22080d000c020b0b200141086a41086a2802002111200128020c210b200128020821060b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141186a41086a200229030037030020012001290308370318200141186a41102006201110040240200b450d002006101f0b0240200f450d00200e41246c41246a2103200d21020340024020022d0000450d00200241086a280200450d00200241046a280200101f0b200241246a21022003415c6a22030d000b0b200c450d00200d101f0b2005a7450d010b2004101f0b2000108001200141186a41086a2202420037030020014200370318418080c0004115200141186a1000200141386a41086a2002290300370300200120012903183703380240200141386a411041a4a4c100410041001001417f460d00200141003602b001200141386a4110200141b0016a41044100100141016a41044d0d1020012802b001220a450d0041002107034020072103411a10122202450d14200241186a41002f00d8fe403b0000200241106a41002900d0fe40370000200241086a41002900c8fe40370000200241002900c0fe403700002002411a413410142202450d132002200336001a200141b0016a41086a22074200370300200142003703b0012002411e200141b0016a1000200141086a41086a2007290300370300200120012903b00137030802400240200141086a411041a4a4c100410041001001417f460d002001420037034020014200370338200141086a4110200141386a411041001001220b417f460d17200b410f4d0d17200141386a41086a29030021052001290338210920074200370300200142003703b0012002411e200141b0016a1000200141186a41086a2007290300370300200120012903b001370318200141186a41101005420121120c010b420021120b200341016a21072002101f02402009200584500d002012a7450d00200141386a41106a2005370300200141386a41086a2009370300200141386a41186a2003360200200141053a0038200141386a10270b200a2007470d000b0b4108210742002105200141086a41086a220242003703002001420037030841d595c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0e200129023c21050b02402005422088a72213450d0020134106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841d6f8c0004118200141086a1000200141186a41086a20022903003703002001200129030837031802400240200141186a411041a4a4c100410041001001417f460d0020014100360238200141186a4110200141386a41044100100141016a41044d0d102001280238210a0c010b413c210a0b4108210742002105200141086a41086a220242003703002001420037030841d595c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0d200129023c21050b02402005422088a7220b450d00200b4106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841ccf3c000411b200141086a1000200141186a41086a20022903003703002001200129030837031841002102200a200b6c220341e4006e2114024002400240024002400240200141186a411041a4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a106820012802382215450d11200128023c2116200141c0006a28020022020d010c020b41042115410021164100450d010b201520024102746a2117200141dd016a2118200141286a41086a2119200341e3004b211a200141386a41206a211b200141386a412c6a211c200141386a41286a211d200141386a411c6a211e200141d4016a211f200141c8016a2120201521110340200141286a201128020022101081012001280228210f4100210a410021064100210b4100210802402019280200220d450d00200d41216c2107200f41206a2102410021084100210b410021064100210a03400240024020022d000022034101460d00024020034102460d0020034103470d02200a41016a210a200241216a21022007415f6a22070d030c040b200641016a2106200241216a21022007415f6a22070d020c030b200b41016a210b200241216a21022007415f6a22070d010c020b200841016a2108200241216a21022007415f6a22070d000b0b200141386a20101060200141386a41106a290300210942002105200141086a41086a220242003703002001420037030841dd81c000410d200141086a1000200141186a41086a220320022903003703002001200129030837031802400240024002400240024002400240024002400240200141186a411041a4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0120012903b00121050b200242003703002001420037030841a4f6c0004116200141086a100020032002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0220012903b00121122013450d050c060b2002420037030020014200370308418295c0004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041a4a4c100410041001001417f460d0020014200370318200141b0016a4110200141186a41084100100141016a41084d0d0320012903182212500d044280de34201280211220130d060c050b4280de34420580211220130d050c040b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41a4a9c2001024000b201a200b20144f7121070c010b4105210c200a2013460d02201a200b20144f712107200d2013470d004104210c20070d010c020b2005201220097c540d024102210c2007450d010b4103210c0b2010200c106422070d0342002105200242003703002001420037030841dd81c000410d200141086a100020032002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0620012903b00121050b411610122203450d072003410e6a41002900fcf840370000200341086a41002900f6f840370000200341002900eef84037000020034116412c1014220d450d08200d2010360016200141b0016a41086a22034100360200200142013703b001410410122207450d0920014284808080c0003702b401200120073602b0012007201036000020074104410810142207450d0a2001428880808080013702b40120072008360004200120073602b00120074108411010142207450d0b20014290808080c0013702b4012007200b3600082007200636000c20034110360200200120073602b00120074110412010142207450d0c2007200a360010200142a0808080c0023702b401200120073602b001200c200141b0016a1058024002400240024020012802b40122042003280200220e6b41084f0d00200e41086a2207200e490d0a20044101742221200720072021491b22214100480d0a2004450d0120012802b00120042021101422070d020c120b20012802b00121070c020b202110122207450d100b200120213602b401200120073602b001202121040b2007200e6a20053700002002420037030020014200370308200d411a200141086a100020032002290300370300200120012903083703b001200141b0016a41102007200e41086a100402402004450d002007101f0b200d101f200141b0016a412c6a200c3a0000200141b0016a41286a200a360200201f2006360200200141b0016a41206a200b360200200141b0016a411c6a200836020020202010360200200141b0016a41106a2005370300200341043a0000201820012f00183b0000201841026a200141186a41026a2d00003a0000200141073a00b001200141b0016a10270b0240201b280200450d00201e280200101f0b0240201c280200450d00201d280200101f0b201141046a21110240200128022c450d00200f101f0b20112017470d000b0b2016450d012015101f0c010b0240200141d8006a280200450d00200141d4006a280200101f0b0240200141e4006a280200450d00200141e0006a280200101f0b0240200128022c450d00200f101f0b02402016450d002015101f0b2007412810080b2000108201200141086a41086a220242003703002001420037030841ea95c1004112200141086a1000200141186a41086a200229030037030020012001290308370318024002400240200141186a411041a4a4c100410041001001417f460d0020014200370338200141186a4110200141386a41084100100141016a41084d0d0b20012903382000510d010c020b42012000520d010b200141386a41106a2000370300200141386a41086a4200370300200141093a0038200141386a1027200141086a41086a220242003703002001420037030841f4b0c0004119200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041a4a4c100410041001001417f460d00200141003a0038200141b0016a4110200141386a41014100100141016a41014d0d0c20012d0038450d010b200141086a41086a220242003703002001420037030841d595c1004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b00102400240200141b0016a411041a4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a105f20012802382202450d0e2001200129023c37023c200120023602380c010b20014100360240200142083703380b2001200141386a1083010b200141a0026a24000f0b41de86c00041331023000b1010000b411641011015000b412c41011015000b410441011015000b410841011015000b411041011015000b412041011015000b41de86c00041331023000b202141011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b201141011015000b413441011015000b411a41011015000b41de86c00041331023000bc3520d037f027e017f017e017f037e0d7f027e037f027e017f027e127f230041c0036b2201240020014190026a41086a22024200370300200142003703900241bf83c100411820014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240024002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b2002420037030020014200370390024199fec000411520014190026a10002003200229030037030020012001290390023703b00202400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00222054200520d0141a4afc2001024000b42e80721050b20014190026a41086a22024200370300200142003703900241ecfdc000411920014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200020047d20058221050240200141b0026a411041a4a4c100410041001001417f460d00200141003a00d002200141b0026a4110200141d0026a41014100100141016a41014d0d0320012d00d002210220014190026a41086a22034200370300200142003703900241ecfdc000411920014190026a1000200141b0026a41086a200329030037030020012001290390023703b002200141b0026a41101005200241004721060c040b20054200520d04410121060c030b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b4200210720014190026a41086a22024200370300200142003703900241f594c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221000b20024200370300200142003703900241d783c100411420014190026a10002003200229030037030020012001290390023703b0020240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0220012903d00221070b20014190026a41086a2202420037030020014200370390024185fec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00202400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0420012903d00242017c21040c010b420121040b200141d0026a41086a2004370300200141033a00d002200141d0026a1027200120043703d0022002420037030020014200370390024185fec000411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200120003703d00220024200370300200142003703900241d783c100411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200141e0016a41eb83c1004119103002400240024020012903e001a74101470d00200120012903e8013703d00220014190026a41086a2202420037030020014200370390024199fec000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040c010b2005500d010b20014190026a41086a22024200370300200142003703900241dd81c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0520012903d00221040b200120043703d00220024200370300200142003703900241bf83c100411820014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040b0240024002402006450d0020014190026a41086a220242003703002001420037039002418295c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411041a4a4c100410041001001417f460d01200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0720012903d00221040c020b200141b0026a21080c090b420521040b20014190026a41086a2202420037030020014200370390024199fec000411520014190026a1000200141d0026a41086a200229030037030020012001290390023703d00202400240200141d0026a411041a4a4c100410041001001417f460d00200142003703b002200141d0026a4110200141b0026a41084100100141016a41084d0d074200210920012903b00220047e22044200510d010c0a0b4200210942e80720047e22044200520d090b20014190026a41086a220220093703002001200937039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240200141b0026a411041a4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d072002410f4d0d07200141d8026a290300210a20012903d00221090c0a0b4200210a0c090b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410121020c070b200020077d2200200420042000541b22002009510d0220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0022004421086200080210402400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d032002410f4d0d03200141d8026a290300210020012903d00221050c010b42002105420021000b200141d0016a200520002004420010820220012903d001421088200141d0016a41086a29030022044230868421092004421088210a0b4200210b20014190026a41086a22024200370300200142003703900241aefec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240200141b0026a411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d002220c450d0420012902d402210b0c010b4101210c0b4105210d200b422088a74105742202450d03200c20026a210e4120210f411c211041182111410021124110211341082114413c211541342116412c211741242118420121194200211a4160211b200c211c4100211d0c040b41de86c00041331023000b419499c2001024000b41de86c00041331023000b410021020c010b410221020b0240024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024020020e03000102020b200141e8026a200a370300200141e0026a2009370300200141d8026a41003a0000200141043a00d002200141d0026a1027200141d0026a41b7e0c0004112103c200141b0026a2108200ba7450d0c200c101f410121020c100b20014190026a41086a2202420037030020014200370390024185fec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210402400240024002400240024002400240024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b2002420037030020014200370390024196d1c000411520014190026a10002003200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d0020014190026a41086a2202420037030020014200370390024196d1c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411010050c010b20014190026a41086a22024200370300200142003703900241c9e0c000411b20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0620012903d00221000b20024200370300200142003703900241e4e0c000411620014190026a10002003200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00222054200520d0141ac99c2001024000b42e80721050b200420007d2005824200520d210b20014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00242017c21040c010b420121040b200120043703d00220014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a41081004200242003703002001420037039002418ce1c000411a20014190026a10002003200229030037030020012001290390023703b00202402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d03200120012903d00222043703f00120014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d06200420012903d002520d010c020b200442e807510d010b200120043703d00220014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a410810042002420037030020014200370390024185fec000411420014190026a10002003200229030037030020012001290390023703b0024200210402402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00221040b200120043703d00220024200370300200142003703900241c9e0c000411b20014190026a10002003200229030037030020012001290390023703b00220084110200141d0026a410810040b20014190026a41086a22024200370300200142003703900241cccfc000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240024002402008411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022223450d0b20012802d40221244105210341002125200141d8026a2802004105742202450d020c010b4101212341002124410521034100212541004105742202450d010b20022003752226ad42307e2204422088a70d1c2004a722034100480d1c200310122227450d0a202320026a22282023470d010c0c0b4108212741002126202320026a22282023460d0b0b41002125411821294110212a4108212b4120212c4128212d4101212e4130212f410521304160213120272132202321334101211d0c160b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200341081015000b02400240201d0e020001010b201c450d0a201010122202450d02200220116a2012280093d040360000200220136a201229008bd040370000200220146a2012290083d040370000200220122900fbcf4037000020022010201510142202450d032002201c29000037001c200220166a201c20116a290000370000200220176a201c20136a290000370000200220186a201c20146a290000370000200141d0026a20022015103d200141d0026a20146a22032903002100200141d0026a20136a290300210520012903d00221072002101f420021040240024002400240200920004200200720195122021b2200200920002009542005420020021b2200200a542000200a511b22021b221e7d2205200a2000200a20021b221f7d2009201e54ad7d220784500d00200141d0026a201c10722003280200210220012802d0022120200141c0016a201c105c200141c0016a20146a290300210420012903c00121002002450d012002200d7422032106202021020340200141b0016a2002105c200141b0016a20146a29030020047c20012903b001220420007c2200200454ad7c21042002200f6a21022006201b6a22060d000b2004201a20002019562004201a522004501b22021b21042000201920021b2100202021020340200141a0016a2002105c20014190016a20012903a001200141a0016a20146a2903002005200710820220014180016a20012903900120014190016a20146a29030020002004108102200220012903800120014180016a20146a290300107b2002200f6a21022003201b6a22030d000b200141f0006a201c105c2000200484201a510d09200141f0006a20146a2903002121200129037021220c020b420021000c020b200141e0006a201c105c2004201a20002019562004201a522004501b22021b21042000201920021b2100200141e0006a20146a2903002121200129036021220b200141d0006a2022202120052007108202200141c0006a2001290350200141d0006a20146a29030020002004108102200141c0006a20146a29030021002001290340210420012802d402450d002020101f0b201c2004201e7c22052000201f7c2005200454ad7c107b201c200f6a2202211c2002200e470d08410021020c0f0b200141d0026a20296a221d203320296a290000370300200141d0026a202a6a22202033202a6a290000370300200141d0026a202b6a22342033202b6a290000370300200120332900003703d00220014190026a200141d0026a106120014190026a202b6a28020021022001280290022106200141306a200141d0026a105c200141306a202b6a29030021042001290330210002402002450d0020022030742103200621020340200141206a2002105c200141206a202b6a29030020047c2001290320220420007c2200200454ad7c21042002202c6a2102200320316a22030d000b0b2033202c6a21330240200128029402450d002006101f0b200141b0026a20296a2202201d290300370300200141b0026a202a6a22032020290300370300200141b0026a202b6a22062034290300370300200120012903d0023703b00220322004370308203220003703002032202d6a20022903003703002032202c6a2003290300370300203220296a2006290300370300203220012903b0023703102025202e6a21252032202f6a213220332028470d080b02402024450d002023101f0b20014190026a41086a22024200370300200142003703900241decfc000411d20014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d04202520012802d0024f0d010c160b20254104490d150b4100212b20272025410041202025676b104520014190026a41086a22024200370300200142003703900241a6e1c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0520012802d002212b0b024002402025450d0020252025202b202b20254b1b417f6a22024d0d07202741086a29030021042027200241306c6a22022903002105200241086a29030021002027290300210741102114411010122202450d010c100b42002107420021044200210542002100411021144110101222020d0f0b201441011015000b411c41011015000b413c41011015000b41de86c00041331023000b419499c2001024000b41de86c00041331023000b41c499c200200220251048000b4100211d0c030b4101211d0c040b410021020c040b410121020c030b410221020c020b410221020c010b410221020c000b0b200220073700002002200437000820022014412010142202450d0120022005370010200241186a200037000020014190026a41086a22144200370300200142003703900241b7e0c000411220014190026a1000200141b0026a41086a201429030037030020012001290390023703b002200841102002412010042002101f02400240202b450d0041002132202b2027202541306c6a221420276b41306d22022002202b4b1b2223450d012023ad4205862204422088a70d022004a722024100480d02200210122233450d04202b450d060c050b4100212341012133410021320c050b4101213341002123202b0d030c040b1010000b412041011015000b200241011015000b20142027460d00202541306c2131200141d0026a41106a21034101210f20332114202721020340200141d0026a41286a200241286a290300370300200141d0026a41206a200241206a290300370300200141d0026a41186a200241186a2903003703002003200241106a290300370300200141d0026a41086a200241086a29030037030020022903002104200141b0026a41086a221b200341086a290300370300200141b0026a41106a2206200341106a290300370300200141b0026a41186a222c200341186a290300370300200120043703d002200120032903003703b002201441186a202c290300370000201441106a2006290300370000201441086a201b290300370000201420012903b002370000202b200f2232460d01200241306a2102203241016a210f201441206a2114203141506a22310d000b0b02402026450d002027101f0b4200210720014190026a41086a22024200370300200142003703900241aefec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240024002402008411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022225450d0220012902d40221070c010b410121250b024002400240024002402007422088a7410574222c450d0020252114034002400240024002400240411c10122202450d00200241186a41002800e7d140360000200241106a41002900dfd140370000200241086a41002900d7d140370000200241002900cfd1403700002002411c413c10142202450d012002201429000037001c200241346a201441186a220f2900003700002002412c6a201441106a221b290000370000200241246a201441086a220629000037000020014190026a41086a222b420037030020014200370390022002413c20014190026a1000200141b0026a41086a2203202b29030037030020012001290390023703b002200141b0026a411010052002101f411210122202450d02200241106a41002f00ecce4022313b0000200241086a41002900e4ce402204370000200241002900dcce40220037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a200629000037000020034200370300200142003703b00220024132200141b0026a1000200141d0026a41086a2003290300370300200120012903b0023703d002024002400240200141d0026a411041a4a4c100410041001001417f460d00200141003602b002200141d0026a4110200141b0026a41044100100141016a41044d0d0220012802b002211c20034200370300200142003703b00220024132200141b0026a1000202b2003290300370300200120012903b0023703900220014190026a411010052002101f201c410041011b221c4102490d010c070b2002101f4100410041001b221c41024f0d060b201441206a2114202c41606a222c0d060c070b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b411210122202450d02200241106a20313b0000200241086a20043700002002200037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a20062900003700002001201c417f6a3602d002202b420037030020014200370390022002413220014190026a10002003202b29030037030020012001290390023703b00220084110200141d0026a410410042002101f201441206a2114202c41606a222c0d000b0b02402007a7450d002025101f0b02400240024002402032450d0020324105742103203321020340200141d0026a20021061411c10122214450d03201441186a41002800e7d140360000201441106a41002900dfd140370000201441086a41002900d7d140370000201441002900cfd1403700002014411c413c10142214450d042014200229000037001c201441346a200241186a2900003700002014412c6a200241106a290000370000201441246a200241086a2900003700002001413c3602b402200120143602b002200141d0026a200141b0026a10622014101f024020012802d402450d0020012802d002101f0b200241206a2102200341606a22030d000b2033203210bc010c010b2033410010bc010b20014190026a41086a22024200370300200142003703900241bce1c000411420014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0620013502d00221040c010b42c0843d21040b200141106a2005420020044200108202200142003703d80220014289f48bdcc4002001290310428094ebdc038020012903184200521b3703d00220014190026a41086a22024200370300200142003703900241b1cfc000411b20014190026a1000200141b0026a41086a2214200229030037030020012001290390023703b00220084110200141d0026a4110100420024200370300200142003703900241d0e1c000411520014190026a10002014200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0720013502d00221040c010b423c21040b20012005420020044200108202200142003703d80220014289f48bdcc4002001290300428094ebdc038020012903084200521b3703d00220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b00220084110200141d0026a411010042023450d082033101f0c080b411c41011015000b413c41011015000b411241011015000b413241011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b2026450d002027101f0b20014190026a41086a22024200370300200142003703900241aefec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002400240200141b0026a411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022229450d1020012802d4022127200141d8026a280200410574221b0d010c020b41012129410021274100410574221b450d010b202921144100212b0340411210122202450d05200241106a41002f009484413b0000200241086a410029008c844137000020024100290084844137000020024112413210142202450d06200220142900003700122002412a6a201441186a290000370000200241226a201441106a2900003700002002411a6a201441086a29000037000020014190026a41086a2203420037030020014200370390022002413220014190026a1000200141b0026a41086a220f200329030037030020012001290390023703b002024002400240200141b0026a411041a4a4c100410041001001417f460d00200141d0026a41186a22064200370300200141d0026a41106a222c4200370300200141d0026a41086a22084200370300200142003703d002200141b0026a4110200141d0026a4120410010012231417f460d062031411f4d0d06200141f0016a41186a22312006290300370300200141f0016a41106a221c202c290300370300200141f0016a41086a22322008290300370300200120012903d0023703f0012003420037030020014200370390022002413220014190026a1000200f200329030037030020012001290390023703b002200141b0026a411010052002101f20014190026a41186a2223203129030037030020014190026a41106a221d201c29030037030020032032290300370300200120012903f00137039002410610122202450d0b200241046a41002f00a3884022313b00002002410028009f8840221c36000020024106410c10142202450d0c2002202b3600062002410a41a4a4c100410041001001417f460d01200141b0026a41186a22324200370300200141b0026a41106a22334200370300200f4200370300200142003703b0022002410a200141b0026a4120410010012225417f460d0a2025411f4d0d0a20062032290300370300202c20332903003703002008200f290300370300200120012903b0023703d0020c020b2002101f201441206a2114202b41016a212b201b41606a221b0d020c030b20064200370300202c420037030020084200370300200142003703d0020b2002101f02400240200141d0026a20014190026a4120108002450d00200141003602b002200141b0026a103f410610122202450d0c200241046a20313b00002002201c36000020024106410c10142202450d0d200241086a41002d00a788403a0000200241002f00a588403b00062002410941a4a4c100410041001001417f460d01200141003602b00220024109200141b0026a41044100100141016a41044d0d0620012802b002210f2002101f200f202b4d0d00410610122202450d0e200241046a20313b00002002201c36000020024106410c1014220f450d0f200f202b360006412010122202450d102002200129039002370000200241186a2023290300370000200241106a201d290300370000200241086a2003290300370000200f410a2002412010042002101f200f101f0b201441206a2114202b41016a212b201b41606a221b0d010c020b2002101f201441206a2114202b41016a212b201b41606a221b0d000b0b2027450d002029101f0b200141c0036a24000f0b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b41de86c00041331023000b410641011015000b410c41011015000b410641011015000b410c41011015000b410641011015000b410c41011015000b412041011015000b41de86c00041331023000bbb0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910122203450d00200341186a41002d00d5f8403a0000200341106a41002900cdf840370000200341086a41002900c5f840370000200341002900bdf84037000020034119413210142204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1000200241106a41086a2003290300370300200220022903503703100240024002400240200241106a411041a4a4c100410041001001417f460d00200242103702242002200241106a360220200241086a200241206a10282002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310122207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011015000b413241011015000b200341011015000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100122112011417f461b2211412020114120491b20096a22093602002011411f4d0d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082009200b200a200241d0006a41012009100141016a41014b22116a22093602002011450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101422070d010c080b201210122207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b2004101f200241f0006a24000f0b200f450d002007101f0b41de86c00041331023000b1010000b201241011015000b85c10125027f027e097f017e187f027e077f027e0c7f027e087f017e107f037e177f027e0e7f017e0d7f097e287f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e0e7f23004190036b22012400200141e0026a41086a22024200370300200142003703e00241c5b2c0004115200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041a4a4c100410041001001417f460d00200142103702d4012001200141286a3602d001200141086a200141d0016a108f01024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200129030822034203510d0020012903102104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a0028200141286a41086a220541063a0000200141286a10272001420837031820014100360220200141e0026a41086a22024200370300200142003703e0024180b4c000411b200141e0026a100020052002290300370300200120012903e002370328200141286a411041a4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012206450d0f20012802d401210741082108200141d8016a2802004105742209450d050c140b20042000520d1f200141083a0028200141286a41086a224441043a0000200141286a1027200141e0026a41086a22054200370300200142003703e0024195bfc000411f200141e0026a100020442005290300370300200120012903e002370328200141286a411041a4a4c100410041001001417f460d01200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0820012903d001210e0c020b20042000520d1e200141083a0028200141286a41086a220241023a0000200141286a1027200141e0026a41086a220a4200370300200142003703e00241e6b3c000411a200141e0026a10002002200a290300370300200120012903e00237032841002145200141286a411041a4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012246450d0e200141d8016a280200214720012802d40121450c050b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041a4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0720012903d00121480b20012048200e7c37033020014202370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541053a0000200141286a102720014190036a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012146410021470b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d05204720012802d0014f0d010c0d0b2047410a490d0c0b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0720012802d00121020c010b410a21020b200141e0026a41086a220a4200370300200142003703e00241d3bfc000411e200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0820012802d001210a0c010b4114210a0b41a4a4c1002165410021664100210b41a4a4c100216720472002200a200a2002491b22684d0d160240204741144b0d00204741014d0d162047417e6a2144204620474105746a41406a210541022102034020472044490d0620052002109f01200541606a2105200241016a21022044417f6a2244417f470d000c170b0b2047410176226aad2248421b88a70d132048420586a72202417f4c0d134101216b4101216c02402002450d0020021012226c450d0a0b4160216d204641606a216e204641a07f6a216f4100217041042171417f217242032173422021744103217541022176417d217741052178411f21794117217a4110217b41082167413f217c4137217d4118217e412f217f41272180014120218101200141286a41206a218201420021484201218301417e218401417421850141642186014138218701413021880141282189014109218a01410a218b014104218c014100218d014100218e012047218f01410221360c0a0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b20442047101a000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200241011015000b410121020c070b10900120450d0b0c0c0b4100210a41002105410021022006210b0340200141286a200b109901024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101422080d010c060b200c10122208450d050b200d21050b200b41206a210b2008200a6a200141286a41880110fe011a200a4188016a210a200241016a2102200941606a22090d000b200141206a2002360200200120083602182001200536021c2007450d010b2006101f0b4200210e200142003702c401200141a893c1003602c0012002450d01418801210f200820024188016c6a2110200141c4006a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a4119211b4111211c4109211d411f211e4117211f41002120413f212141372122412f21234127212441202125200141e0026a41206a2126420821274201212841142129200141d0016a41146a212a4106212b41e802212c4138212d4130212e4128212f4230213042202131410421324160213341987d213420082135410021360c020b200c41081015000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141b0016a41086a200141c0016a41086a280200360200200120012903c0013703b001200141e0026a41086a2202200e3703002001200e3703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041a4a4c100410041001001417f460d00200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012241450d0220012802d401214241052143200141d8016a28020041057422020d010c230b41012141410021424105214341004105742202450d220b204120026a2149200141c4006a214a4120214b4108214c417f214d4102214e41a808214f4118215041102151411f21524117215341002154413f215541372156412f215741272158420821594201215a4200215b200141e4016a215c4106215d41987d215e4160215f4101216020412161410121360c020b41de86c00041331023000b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020360e09000102030405060708080b20352d0060450d41203520126a223720136a213820012802c0012239213a20012802c401223b213c0c1c0b20612262204b6a2161200141b0016a216320012802b40121640c1c0b02400240024002400240024002400240208f0122900120726a228f01450d00207910122202450d162002207a6a20702900a4b14022003700002002207b6a207029009db1402203370000200220676a2070290095b14022043700002002207029008db140223e37000020022079207c10142202450d1720022046208f012078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c208201290300219101200141286a207e6a220b290300213f200141286a207b6a2209290300219201200141286a20676a220c29030021930120012903282194012002101f207910122202450d182002207a6a20003700002002207b6a2003370000200220676a20043700002002203e37000020022079207c10142202450d19200220462090012084016a22062078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c2082012903002195012009290300219601200b290300219701200c29030021980120012903282199012002101f203f2093017c229301204820940120485222021b2097012098017c229401204820990120830151220a1b542091012092017c209301203f54ad7c204820021b223f2095012096017c20940120970154ad7c2048200a1b22970154203f209701511b450d01206f20900120787422066a21020340208f01206b460d0320791012220a450d10200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d14200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d15200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d16200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102208f0120726a218f01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b542091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b22970154203f209701511b0d000c040b0b4101210d4100218f01208d01208e01470d060c050b206f2090012078746a21024100218f014100219a01024003402006209a01460d0120791012220a450d0e200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d10200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d11200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d12200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102209a01206b6a219a01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b5a2091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b2297015a203f209701511b0d000b209a01206b6a210d209001209a016b20726a228f01450d040c030b209001210d208d01208e01460d040c050b4100218f010b209001208f01490d1720900120474b0d1a0240209001208f016b220d206b76229a01450d00206e20066a21022046208f012078746a210a0340200b200a207e6a22062900003703002009200a207b6a2207290000370300200c200a20676a22402900003703002001200a290000370328200220676a229b0129000021002002207b6a229c0129000021032002290000210420062002207e6a229d012900003700002007200337000020402000370000200a200437000020022001290328370000209b01200c290300370000209c012009290300370000209d01200b2903003700002002206d6a2102200a2081016a210a209a0120726a229a010d000b0b208f01450d010b200d208a014b0d0020900120474b0d17209001208f016b210d208f0120726a2102206e208f012078746a210a03402090012002490d19200a200d206b6a220d109f01200220726a210b02402002450d00200a206d6a210a200b2102200d208b01490d010b0b200b206b6a218f01208d01208e01470d020c010b208d01208e01470d010b208d01206b6a2202208d01490d43208d01206b74220a20022002200a491b2202ad2073862200207488a70d432000a7220a2070480d4302400240208d01450d00208c01208d01207574200a1014228c010d010c150b200a1012228c01450d140b2002218d010b208c01208e012075746a2202200d3602042002208f01360200208e01206b6a229a01218e01209a012076490d334103213d0c290b200141286a20a8016a20b30120a8016a290000370300200141286a20a9016a20b30120a9016a290000370300200141286a20aa016a20b30120aa016a290000370300200120b30129000037032820b30120ab016a21b30120a60121b40120a70121b5010c1b0b200128029002220228020021c801200228020421c9014105213d0c290b024020f00122f10120d6016a2202450d0020f10120e8016a21f20120b601200220dc01746a21f30120012802e002280200280200220228020022f40121f501200228020422f60121f7010c1b0b410121fa01410021f00120ee0120ef01460d200c210b209f0220dd016a210a209f022f0106220c20dc017421024100210b024002400240024003402002450d01209d02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a102450d0120a10220d6016a21a102209f02200c20da01746a20de016a280200219f02410621360c170b209f0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20990220d2016a220b209d02209e0220a40220035420a30220005420a3022000511b220a1b220229000037000020990220e0016a200220df016a29000037000020990220e2016a200220e1016a29000037000020990220e3016a200220dd016a290000370000209a02209e02200a1b219a02209602209d02209c02200a1b229c024f0d1a200b21990220d10121a50220d101209a02490d210c1c0b20a70220dd016a210a20a7022f0106220c20dc017421024100210b024002400240024003402002450d0120a502200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a902450d0120a90220d6016a21a90220a702200c20da01746a20de016a28020021a702410721360c170b20a70220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b209c0220980220a50220ac0220035420ab0220005420ab022000511b220a1b2202290000370000209c0220df016a200220df016a290000370000209c0220e1016a200220e1016a290000370000209c0220dd016a200220dd016a29000037000020a50220a50220446a200a1b21a502209c0220446a219c0220980220446a209802200a1b2298022099024f0d1c209a0220a5024b0d210c1a0b20cf0222d00220af026a21cf0220012802900222d10228020421d20220d10221d3020c1c0b411f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b200a41041015000b208f01209001101a000b209001208f01417f6a22024f0d010b2002209001101a000b20900120471049000b410121020c280b410121020c270b410121020c260b4100213d0c0c0b4102213d0c0c0b4104213d0c0d0b4106213d0c0e0b410d213d0c0e0b410e213d0c0e0b410e213d0c0e0b410e213d0c0e0b410f213d0c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b02400240024002400240024002400340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20ee0120d0016a220220ee01490d860120ee0120d00174220a20022002200a491b2202ad20d70186220020d80188a70d86012000a7220a20d401480d86010240024020ee01450d0020ed0120ee0120d90174200a101422ed010d010c050b200a101222ed01450d040b200221ee01410121020c6f0b20ed0120ef0120d901746a220220fa01360204200220f00136020020ef0120d0016a228e0221ef01208e0220da01490d04410a213d0c550b209c0220d2016a219d02209a0220d2016a219e02209b022802002802002202280200229f0221a002200228020422a10221a2020c430b20a602280200280200220228020022a70221a802200228020422a90221aa020c430b200a41041015000b024002400240024002400240024002400240024002400240024002400240024002400240024002400240203d0e110001020304050708090a0d0e1013141819190b203a20146a210a203a2f0106220c20157421024100210b02400240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203c450d01203c20166a213c203a200c2017746a20186a280200213a4100213d0c5a0b203a200b202b746a2034470d500b20014190026a20196a203820196a220a29000037030020014190026a201a6a2038201a6a220b29000037030020014190026a20146a203820146a22092900003703002001203829000037039002200141b8026a20196a220c2037201b6a290000370300200141b8026a201a6a223d2037201c6a290000370300200141b8026a20146a220d2037201d6a290000370300200120372900013703b802201e10122202450d2a2002201f6a20202900a4b1403700002002201a6a202029009db140370000200220146a2020290095b1403700002002202029008db1403700002002201e202110142202450d2b2002203829000037001f200220226a200a290000370000200220236a200b290000370000200220246a2009290000370000200141e0026a20022021103c20262903002103200141e0026a201a6a2903002104200141e0026a20196a2903002100200141e0026a20146a290300213e20012903e002213f2002101f200141286a20196a2020360200200141286a201a6a2027370300201120196a200c2903003700002011201a6a203d290300370000201120146a200d290300370000201120012903b80237000020012000203e7c223e200e203f20285122021b3703282001200320047c203e200054ad7c200e20021b370330200141d0016a200141c0016a20014190026a200141286a10a0010240200141d0016a201a6a2802002202450d00202a280200450d002002101f0b20012802c001213920012802c401213b0c4e0b203920146a210a20392f0106220c20157421024100210b0240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203b450d9201203b20166a213b2039200c2017746a20186a28020021394101213d0c590b2039202c6a200b202b746a2202450d9101200141286a20196a220c2035202d6a290000370300200141286a201a6a220d2035202e6a290000370300200141286a20146a22062035202f6a29000037030020012035290020370328203520146a2903002103203520196a29030021042035290300213e20352903102100200220196a210b2002201a6a210902400240024002402002280218220a200220296a280200470d00200a20136a2202200a490d9801200a2013742207200220022007491b2207ad20307e223f203188a70d9801203fa722402020480d9801200a450d012009280200200a202e6c2040101422020d020c2f0b200928020021020c020b204010122202450d2d0b20092002360200200920326a2007360200200b280200210a0b2002200a202e6c6a220220012903283703102002200420037c2000203e7c2203200054ad7c370308200220033703002002202f6a200c290300370300200220256a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c91010b2063280200220c204c6a210a200c2f0106220d20437421024100210b024002400240024003402002450d012062200a204b1080022209450d022002205f6a2102200b20606a210b200a204b6a210a2009204d4a0d000b200b204d6a210d0b2064450d012064204d6a2164200c200d204e746a204f6a21634102213d0c5d0b200c200b205d746a205e470d010b20014190026a20506a206220506a220a29000037030020014190026a20516a206220516a220b29000037030020014190026a204c6a2062204c6a22092900003703002001206229000037039002200141b8026a20506a220c200a290000370300200141b8026a20516a220d200b290000370300200141b8026a204c6a22362009290000370300200120622900003703b802205210122202450d27200220536a20542900a4b140370000200220516a205429009db1403700002002204c6a2054290095b1403700002002205429008db14037000020022052205510142202450d282002206229000037001f200220566a200a290000370000200220576a200b290000370000200220586a2009290000370000200141e0026a20022055103c200141e0026a204b6a2903002103200141e0026a20516a2903002104200141e0026a20506a2903002100200141e0026a204c6a290300213e20012903e002213f2002101f200141286a20506a2054360200200141286a20516a2059370300204a20506a200c290300370000204a20516a200d290300370000204a204c6a2036290300370000204a20012903b80237000020012000203e7c223e205b203f205a5122021b3703282001200320047c203e200054ad7c205b20021b370330200141d0016a200141b0016a20014190026a200141286a10a001200141d0016a20516a2802002202450d00205c280200450d002002101f0b20612049470d330c87010b02400240024002400240208c01209a01229c0120726a229a012075746a2202280200450d00208c01209c012075746a220c2085016a28020022092002280204220a4d0d004102218e01209c0141024d0d8801208c01209c0120776a22022075746a280204220b200a20096a4d0d014103218e01209c0141034d0d8801200c2086016a280200200b20096a4d0d010c040b209c012075490d012002280204210a208c01209c0120776a22022075746a280204210b0b200b200a490d010b209c012084016a21020b209c012002206b6a229e014d0d24209c0120024d0d25208c0120022075746a229001280204229f012090012802006a2202208c01209e012075746a22a00128020022a101490d22200220474b0d23204620a1012078746a229b0120a001280204229d01207874220a6a210b2002207874210902400240024002400240200220a1016b220c209d016b2202209d014f0d00206c200b2002207874220a10fe012206200a6a210d209d01206b480d012002206b480d01206e20096a2109200b210a0340207910122202450d202002207a6a20702900a4b14022033700002002207b6a207029009db1402204370000200220676a2070290095b140223e3700002002207029008db140223f37000020022079207c10142202450d212002200d206d6a220b29000037001f2002207d6a200b207e6a2900003700002002207f6a200b207b6a29000037000020022080016a200b20676a290000370000200141286a2002207c103c208201290300219701200141286a207e6a228e012903002100200141286a207b6a2207290300219101200141286a20676a224029030021920120012903282193012002101f207910122202450d222002207a6a20033700002002207b6a2004370000200220676a203e3700002002203f37000020022079207c10142202450d232002200a206d6a220c29000037001f2002207d6a200c207e6a2900003700002002207f6a200c207b6a29000037000020022080016a200c20676a290000370000200141286a2002207c103c20820129030021042007290300213e208e0129030021032040290300213f20012903282194012002101f2009200c200b20002092017c229201204820930120485222021b2003203f7c223f204820940120830151228e011b542097012091017c209201200054ad7c204820021b22002004203e7c203f200354ad7c2048208e011b22035420002003511b228e011b22022900003700002009207e6a2002207e6a2900003700002009207b6a2002207b6a290000370000200920676a200220676a290000370000200d200b208e011b210d209b01200c200a208e011b220a4f0d042009206d6a2109200621022006200d490d000c050b0b206c209b01200a10fe012202200a6a210d209d01206b480d01200c209d014c0d01204620096a210720022102209b01210a0340207910122209450d232009207a6a20702900a4b14022033700002009207b6a207029009db1402204370000200920676a2070290095b140223e3700002009207029008db140223f37000020092079207c10142209450d242009200b29000037001f2009207d6a200b207e6a2900003700002009207f6a200b207b6a29000037000020092080016a200b20676a290000370000200141286a2009207c103c208201290300219701200141286a207e6a220c2903002100200141286a207b6a228e01290300219101200141286a20676a220629030021920120012903282193012009101f207910122209450d252009207a6a20033700002009207b6a2004370000200920676a203e3700002009203f37000020092079207c10142209450d262009200229000037001f2009207d6a2002207e6a2900003700002009207f6a2002207b6a29000037000020092080016a200220676a290000370000200141286a2009207c103c2082012903002104208e01290300213e200c29030021032006290300213f20012903282194012009101f200a200b200220002092017c229201204820930120485222091b2003203f7c223f204820940120830151220c1b542097012091017c209201200054ad7c204820091b22002004203e7c203f200354ad7c2048200c1b22035420002003511b220c1b2209290000370000200a207e6a2009207e6a290000370000200a207b6a2009207b6a290000370000200a20676a200920676a290000370000200220022081016a200c1b2102200a2081016a210a200b2081016a200b200c1b220b20074f0d04200d20024b0d000c040b0b200b210a0c010b209b01210a0b206c21020b200a2002200d20026b206d7110fe011a20900120716a209f01209d016a36020020900120a10136020020a00120a00120676a209e01207273209c016a20757410ff011a209a01218e01209a01206b4b0d4e0c84010b209c01218e01208f010d330c84010b20b40120aa016a210a20b4012f0106220c20a4017421024100210b024002400240024003402002450d01200141286a200a20ab011080022209450d02200220b1016a2102200b20b2016a210b200a20ab016a210a200920ac014a0d000b200b20ac016a210c0b20b501450d0120b50120ac016a21b50120b401200c20ad01746a20ae016a28020021b4014104213d0c5d0b20b401200b20af01746a20b001470d010b20b30120a501470d340c87010b200141e0026a41186a2202200141286a41186a290300370300200141e0026a41106a220a200141286a41106a290300370300200141e0026a41086a220b200141286a41086a290300370300200120012903283703e0024120101222b601450d2e20b60120012903e00237000020b60141186a200229030037000020b60141106a200a29030037000020b60141086a200b29030037000020b30120a501460d01410121b701411821b801411021b901410821ba01412021bb01410521bc01417f21bd01410221be0141a80821bf01410621c00141987d21c101420521c201422021c301410021c401416021c501410121c601410121c701410421360c400b200141286a20b8016a22ca0120b30120b8016a290000370300200141286a20b9016a22cb0120b30120b9016a290000370300200141286a20ba016a22cc0120b30120ba016a290000370300200120b30129000037032820b30120bb016a21b30120c80121cd0120c90121ce010c6b0b410121c601410121c7010c790b20f50120dd016a210a20f5012f0106220c20dc017421024100210b024002400240024003402002450d0120f301200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20f701450d0120f70120d6016a21f70120f501200c20da01746a20de016a28020021f5014106213d0c5b0b20f50120e5016a200b20e401746a2202450d00200220dd016a29030021f801200229030021f9012002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020f8017c2002290300220020f9017c22f901200054ad7c21f801200220e6016a2102200a20e7016a220a0d000c020b0b420021f901420021f8010b20b60120f20120dc01746a21fb0120f40121fc0120f60121fd010c4a0b20fc0120dd016a210a20fc012f0106220c20dc017421024100210b024002400240024003402002450d0120fb01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20fd01450d0120fd0120d6016a21fd0120fc01200c20da01746a20de016a28020021fc014107213d0c5c0b20fc0120e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20f90120035420f80120005420f8012000511b450d4a4108213d0c5a0b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21fe0120f40121ff0120f6012180020c680b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21860220f40121870220f6012188020c680b410021f0010c690b410021f00120f10121fa010c6a0b024002400240024020ed01208e02228f0220d6016a228e0220d901746a2202280200450d0020ed01208f0220d901746a220c20e9016a28020022092002280204220a4d0d00410221ef01208f0241024d0d0b20ed01208f0220db016a220220d901746a280204220b200a20096a4d0d01410321ef01208f0241034d0d0b200c20ea016a280200200b20096a4d0d010c0c0b208f0220d901490d012002280204210a20ed01208f0220db016a220220d901746a280204210b0b200b200a490d010b208f0220e8016a21020b208f02200220d0016a2290024d0d20208f0220024d0d2120ed01200220d901746a2291022802042292022091022802006a220220ed0120900220d901746a229302280200229402490d22200220c6014b0d2320910220d5016a21950220b60120940220dc01746a22960220930228020422970220dc0174220a6a21980220b601200220dc01746a21990220022094026b220b2097026b22022097024f0d0120d101209802200220dc0174220a10fe01200a6a219a0220970220d001480d03200220d001480d0320012802e002219b02209802219c02410221020c710b20a00220dd016a210a20a0022f0106220c20dc017421024100210b02400240024003402002450d01209e02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a202450d0120a20220d6016a21a20220a002200c20da01746a20de016a28020021a002410b213d0c5b0b20a00220e5016a200b20e401746a2202450d00200220dd016a29030021a302200229030021a4022002280218220a450d2d20022802102102200a20e6016c210a0340200220dd016a29030020a3027c2002290300220020a4027c22a402200054ad7c21a302200220e6016a2102200a20e7016a220a0d000c300b0b420021a402420021a3020c2d0b20d101209602200a10fe012202200a6a219a0220970220d001480d02200b2097024c0d0220012802e00221a602200221a502209602219c02410321020c6f0b20a80220dd016a210a20a8022f0106220c20dc017421024100210b02400240024003402002450d01209802200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20aa02450d0120aa0220d6016a21aa0220a802200c20da01746a20de016a28020021a802410c213d0c5b0b20a80220e5016a200b20e401746a2202450d00200220dd016a29030021ab02200229030021ac022002280218220a450d2e20022802102102200a20e6016c210a0340200220dd016a29030020ab027c2002290300220020ac027c22ac02200054ad7c21ab02200220e6016a2102200a20e7016a220a0d000c310b0b420021ac02420021ab020c2e0b209802219c020c450b209602219c02410d213d0c590b20d10121a502410e213d0c590b209c0220a502209a0220a5026b20d2017110fe011a2095022092022097026a36020020910220940236020020930220930220dd016a20900220d60173208f026a20d9017410ff011a208e0221ef01208e0220d0014b0d3f0b20f0010d230c010b208f0221ef0120f0010d230b024020ee01450d0020ed01101f0b20cf01450d6920d101101f0c690b20d30228020022d4022f0106220c20ad027421024100210b20d40220b0026a220d210a0240024003402002450d0120d002200a20af021080022209450d02200220cc026a2102200b20b4026a210b200a20af026a210a200920b1024a0d000b200b20b1026a210c0b20d202450d0420d20220b1026a21d20220d402200c20b202746a20b3026a21d302410f213d0c560b20d10220d10228020820b1026a3602080240024020d202450d0020d40220b6026a200b20b502746a210920d402200b20ad02746a20b0026a210c20d402200b20b202746a20c1026a2802002102024020d20220b402460d0020b40220d2026b210a034020022802a8082102200a20b4026a220a0d000b0b200220c20220022f01061b22d402290008210020d40220ba026a290000210320d40220bb026a290000210420d40220af026a290000213e20d40220b0026a20d40220bc026a20d4022f0106220220ad027420cc026a10ff011a20d40220c8026a290300213f20d4022903880321970120d40220c5026a29030021910120d40220c4026a29030021920120d40220c3026a29030021930120d4022903e80221940120d40220c9026a29030021950120d40220c7026a29030021960120d40220b6026a20d40220ca026a200220b5027420cd026a10ff011a20d402200220b1026a3b0106200c20bb026a203e370000200c2004370010200c2003370008200c2000370000200920bb026a209601370300200920b0026a2095013703002009209401370300200920be026a209301370200200920bd026a209201370200200920bc026a2091013702002009209701370220200920ba026a220229030021002002203f3703002000a721d502200020ce0288a721d60220d4022f010620b8024d0d010c030b200d200b20ad02746a200d200b20b4026a220a20ad02746a200b20b10273220920d4022f01066a20ad027410ff011a20d40220b6026a220c200b20b502746a220220b7026a28020021d602200228021021d5022002200c200a20b502746a200920d4022f01066a20b5027410ff011a20d40220d4022f010620b1026a3b010620d4022f010620b8024b0d020b410021d7024110213d0c560b20d4022802002209450d000240024020d4022f01042202450d00200220b1026a210b410121070c010b4100210b4100210720092f0106450d190b024002400240024002400240024002400240200920b3026a229001200b20b4026a220c20b2027422a1016a22a001280200220a2f0106220d209001200b20b2027422d8026a220228020022062f010622406a20b9024f0d0020d70220b4026a21d70220a001280200229b012f010621072002280200220d2f01062140200141286a20b0026a2206200920b0026a220a200b20ad02746a220220b0026a290000370300200141286a20ba026a229c01200220ba026a290000370300200141286a20bb026a229d01200220bb026a290000370300200120022900003703282002200a200c20ad02746a200b20b10273229e0120092f01066a20ad027410ff011a200d20b0026a220a204020ad02746a220220bb026a209d01290300370000200220ba026a209c01290300370000200220b0026a200629030037000020022001290328370000200a204020b4026a220220ad02746a209b0120b0026a200720ad027410fe011a2006200920b6026a229f01200b20b502746a220a20b0026a290300370300209c01200a20ba026a290300370300209d01200a20bb026a290300370300200141286a20af026a22d902200a20af026a290300370300200141286a20bc026a22da02200a20bc026a290300370300200141286a20bd026a22db02200a20bd026a290300370300200141286a20be026a22dc02200a20be026a2903003703002001200a290300370328200a209f01200c20b502746a209e0120092f01066a20b5027410ff011a200d20b6026a229e01204020b502746a220a20be026a20dc02290300370300200a20bd026a20db02290300370300200a20bc026a20da02290300370300200a20af026a20d902290300370300200a20bb026a209d01290300370300200a20ba026a209c01290300370300200a20b0026a2006290300370300200a2001290328370300209e01200220b502746a209b0120b6026a200720b5027410fe011a20a001209001200b20b2026a220a20b202746a20bf0220a1016b10ff01210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920d8026a20c0026a210b0340200b280200220c200a3b0104200c2009360200200b20b8026a210b2006200a20b4026a220a470d000b0b200920092f010620b1026a3b0106200d2007200d2f01066a20b4026a3b0106024020d70220b202490d00200d200220b202746a20b3026a209b0120b3026a200720b2027420b8026a10fe011a2002204020076a20b2026a4f0d00200720b4026a210b200d204020b202746a20c1026a210a0340200a280200220c20023b0104200c200d360200200a20b8026a210a200220b4026a2102200b20b1026a220b0d000b0b209b01101f20092f01062202450d01200921d402200220ad02490d470c090b2007450d012006204020b1026a220a20b502746a220220c3026a2903002100200220c4026a2903002103200220c5026a2903002104200220c6026a290300213e200220c7026a290300213f200220c8026a290300219701200220c9026a290300219101200220b6026a2903002192012006200a20ad02746a220220af026a290000219301200220bb026a290000219401200220ba026a290000219501200220b0026a29000021960120d702450d022006204020b202746a20b3026a280200220a20c2023602000c030b20d10220d10228020022022802a808220a36020020d10220d10228020420b1026a360204200a20c2023602002002101f20d5020d080c090b200a20af026a2900002100200a20bb026a2900002103200a20ba026a2900002104200a290008213e200a20b0026a200a20bc026a200d20ad027420cc026a10ff011a200a20c3026a290300213f200a20c4026a290300219701200a20c5026a290300219101200a20c7026a290300219201200a20c8026a290300219301200a20c9026a290300219401200a29038803219501200a2903e802219601200a20b6026a200a20ca026a200a2f010620b5027420cd026a10ff011a20d702450d02200a2802a8082107200a20b3026a220c200a20c1026a200d20b2027410ff011a200720c202360200200d450d03410021360340200c280200220620363b01042006200a360200200c20b8026a210c200d203620b4026a2236470d000c040b0b4100210a0b200620062f010620b1026a3b01062009200b20ad02746a220220af026a220c290000219801200c209301370000200220bb026a220c290000219301200c209401370000200220ba026a220c290000219401200c209501370000200220b0026a220229000021950120022096013700002009200b20b502746a220220c7026a220b290300219601200b203f370300200220c8026a220b290300213f200b209701370300200220c9026a220b290300219701200b209101370300200220b6026a220b290300219101200b209201370300200220c3026a220b290200219201200b2000370200200220c4026a220b2902002100200b2003370200200220c5026a220b2902002103200b2004370200200220c6026a220229020021042002203e37020020a001280200210b20d702450d02200a450d1e200b20bc026a200b20b0026a200b2f0106220220ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200220b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b20c6026a2004370300200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b20c1026a200b20b3026a2202200b2f010620b2027420b8026a10ff011a200b200a3602a808200b200b2f010620b4026a220a3b0106200a20cb027120b4026a210c4100210a034020022802002209200a3b01042009200b360200200220b8026a2102200c200a20b4026a220a470d000c050b0b410021070b200a20b5026a220a200a2f010020b1026a3b01002009200b20ad02746a220a20af026a220c290000219801200c2000370000200a20bb026a220c2900002100200c2003370000200a20ba026a220c2900002103200c2004370000200a20b0026a220a2900002104200a203e3700002009200b20b502746a220a20c7026a220b290300213e200b209201370300200a20c8026a220b290300219201200b209301370300200a20c9026a220b290300219301200b209401370300200a20b6026a220b290300219401200b209601370300200a20c3026a220b290200219601200b203f370200200a20c4026a220b290200213f200b209701370200200a20c5026a220b290200219701200b209101370200200a20c6026a220a290200219101200a2095013702002002280200210220d702450d012007450d1d200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c7026a203e370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a2094013703002002200b20b4026a220a20b202746a20b3026a220b2007360200200220022f010620b4026a3b0106200b280200220b200a3b0104200b200236020020d5020d030c040b200b20bc026a200b20b0026a200b2f010620ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200b2f010620b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b200437038803200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b200b2f010620b4026a3b010620d5020d020c030b200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a209401370300200a20c7026a203e370300200220022f010620b4026a3b01060b20d502450d010b20d602450d0020d502101f0b20cf0220ae02470d240c650b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b20a1012002101a000b200220471049000b41e8bcc200209e01209c011048000b41e8bcc2002002209c011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b204041081015000b41e8bcc200209002208f021048000b41e8bcc2002002208f021048000b2094022002101a000b200220c6011049000b41d8bfc2001024000b412041011015000b41d0c6c2001024000b41d0c6c2001024000b410121360c0b0b410221360c0b0b410321360c0b0b410521360c0c0b410521360c0c0b410621360c0c0b410621360c0c0b410621360c0c0b410721360c0c0b410721360c0c0b410721360c0c0b410821360c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b4101213d0c0b0b4101213d0c0b0b4103213d0c0c0b4107213d0c0e0b4109213d0c100b410a213d0c100b410b213d0c110b410c213d0c120b410d213d0c130b4110213d0c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20cd0120ba016a210a20cd012f0106220c20bc017421024100210b024002400240024003402002450d01200141286a200a20bb011080022209450d02200220c5016a2102200b20b7016a210b200a20bb016a210a200920bd014a0d000b200b20bd016a210c0b20ce01450d0120ce0120bd016a21ce0120cd01200c20be01746a20bf016a28020021cd01410021020c110b20cd01200b20c001746a20c101470d010b20b30120a501470d070c1b0b200141e0026a20b8016a220220ca01290300370300200141e0026a20b9016a220a20cb01290300370300200141e0026a20ba016a220b20cc01290300370300200120012903283703e00220ca01200229030037030020cb01200a29030037030020cc01200b290300370300200120012903e002370328024020c70120c601470d0020c60120b7016a220220c601490d3120c60120b70174220a20022002200a491b22c701ad20c20186220020c30188a70d312000a7220220c401480d31024020c601450d0020b60120c60120bc01742002101422b6010d010c060b2002101222b601450d050b20b60120c60120bc01746a22022001290328370000200220b8016a20ca01290300370000200220b9016a20cb01290300370000200220ba016a20cc0129030037000020c60120b7016a21c60120b30120a501470d050c1a0b20ff0120dd016a210a20ff012f0106220c20dc017421024100210b024002400240024003402002450d0120fe01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208002450d0120800220d6016a21800220ff01200c20da01746a20de016a28020021ff01410121020c100b20ff0120e5016a200b20e401746a2202450d00200220dd016a29030021810220022903002182022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002081027c200229030022002082027c228202200054ad7c218102200220e6016a2102200a20e7016a220a0d000c020b0b420021820242002181020b20b60120f20120dc01746a21830220f40121840220f6012185020c0b0b20840220dd016a210a2084022f0106220c20dc017421024100210b024002400240024003402002450d01208302200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208502450d0120850220d6016a218502208402200c20da01746a20de016a280200218402410221020c0f0b20840220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b2082022003542081022000542081022000511b0d050c0d0b20870220dd016a210a2087022f0106220c20dc017421024100210b024002400240024003402002450d01208602200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208802450d0120880220d6016a218802208702200c20da01746a20de016a280200218702410321020c0e0b20870220e5016a200b20e401746a2202450d00200220dd016a2903002189022002290300218a022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002089027c20022903002200208a027c228a02200054ad7c218902200220e6016a2102200a20e7016a220a0d000c020b0b4200218a0242002189020b20b60120f20120dc01746a218b0220f401218c0220f601218d020c0a0b208c0220dd016a210a208c022f0106220c20dc017421024100210b024002400240024003402002450d01208b02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208d02450d01208d0220d6016a218d02208c02200c20da01746a20de016a280200218c02410421020c0d0b208c0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b208a0220035a20890220005a2089022000511b0d0420f10120f0016b21fa0120f0010d0c0c0d0b200241011015000b41042136410121020c280b4105213d0c020b4108213d0c020b4109213d0c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20f10120f001490d0220f10120c6014b0d05024020f10120f0016b22fa0120d00176220a450d0020b60120f00120dc01746a21020340200141286a20df016a220b200220df016a2209290000370300200141286a20e1016a220c200220e1016a220d290000370300200141286a20dd016a2206200220dd016a22072900003703002001200229000037032820f30120dd016a2240290000210020f30120e1016a229b01290000210320f3012900002104200920f30120df016a229c01290000370000200d2003370000200720003700002002200437000020f301200129032837000020402006290300370000209b01200c290300370000209c01200b29030037000020f30120d2016a21f301200220446a2102200a20d6016a220a0d000b0b20f001450d010b20fa0120eb014b0d0020f10120c6014b0d0220f10120f0016b21fa0120f00120d6016a210220d30120f00120dc01746a210a034020f1012002490d04200a20fa0120d0016a22fa01200141e0026a10a101200220d6016a210b02402002450d00200a20d2016a210a200b210220fa0120ec01490d010b0b200b20d0016a21f00120ee0120ef01460d060c070b20ee0120ef01470d04410021020c070b20f00120f101101a000b20f10120f001417f6a22024f0d010b200220f101101a000b20f10120c6011049000b410121020c020b410021020c010b410121020c000b0b024020a201450d0020a301101f0b20c60120694d0d01200120014190026a3602b8022001200141b8026a3602e002024020c60141144b0d0020c60141014d0d0120c601417e6a210220b60120c6014105746a41406a210a4102210b034020c6012002490d04200a200b200141e0026a10a101200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20c60141017622cf01ad2200421b88a70d142000420586a72244417f4c0d14410121d001410121d10102402044450d002044101222d101450d040b416021d20120b60141606a21d301410021d401410421d501417f21d601420321d701422021d801410321d901410221da01417d21db01410521dc01410821dd0141a80821de01411821df01417821e001411021e101417021e201416821e30141202144410621e40141e80221e501413021e601415021e701417e21e801417421e901416421ea01410921eb01410a21ec01410421ed01410021ee01410021ef0120c60121f001410521360c040b20c60120696b2202450d00410521ad0220b60120024105746a21ae02412021af02410821b002417f21b102410221b20241a80821b302410121b402410621b50241e80221b602411421b702410421b802410b21b902411021ba02411821bb02412821bc02413021bd02413821be02412c21bf0241b00821c00241ac0821c102410021c20241a00321c30241980321c40241900321c50241880321c60241800321c70241f80221c80241f00221c90241a80321ca0241ffff0321cb02416021cc02414021cd02422021ce0220b60121cf02410821360c040b20c701450d0920b601101f0c090b200220c601101a000b204441011015000b410121020c0e0b410121020c0d0b208f010d010b0240208d01450d00208c01101f0b206a450d0e206c101f0c0e0b41022136410121020c0a0b02402042450d002041101f0b20012802b8012102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d04200220012802e002470d010c030b2002410a460d020b200141b0016a41086a2802002102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d05200220012802e0024b0d010c030b2002410a4d0d020b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d0620012802e00221690c010b410a21690b200141b0016a41086a28020021022001200141b0016a36029002200220694d0d01200141e0026a41086a22024200370300200142003703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328410021a20102400240200141286a411041a4a4c100410041001001417f460d00200142103702bc022001200141286a3602b802200141e0026a200141b8026a104020012802e00222a301450d0820012802e40221a201410521a401200141e8026a28020041057422020d010c020b410121a301410521a40141004105742202450d010b20a30120026a21a501200128029002220228020021a601200228020421a701411821a801411021a901410821aa01412021ab01417f21ac01410221ad0141a80821ae01410621af0141987d21b001416021b101410121b20120a30121b301410321360c070b20a201450d0020a301101f0b200141186a200141b0016a4101109b01200141b8016a280200210b20012802b00121440240024020012802b40122d001450d0020d001210a20442102034020022802a8082102200a417f6a220a0d000b0340204420442f01064102746a41a8086a280200214420d001417f6a22d0010d000c020b0b204421020b200141ac026a20442f0106360200410021d00120014190026a41186a4100360200200141a4026a20443602002001200b3602b002200141003602a002200142003703980220012002360294022001410036029002200141286a20014190026a10a2010240024002400240024002400240024020012802582202450d00200141e0026a41086a2244200141e4006a290200370300200141e0026a41106a22d001200141ec006a290200370300200141e0026a41186a220a200141f4006a290200370300200141e0026a41206a220b200141fc006a290200370300200141e0026a41286a22d20120014184016a2802003602002001200129025c3703e002200141286a41286a22d601290300210e200129034821830120d60120d201280200360200200141286a41206a200b290300370300200141286a41186a200a290300370300200141286a41106a20d001290300370300200141286a41086a2044290300370300200120012903e002370328417f20014190026a41206a280200224441016a22d00120d0012044491b220cad2248421a88a70d102048420686a72244417f4c0d102044450d0120441012223d450d0b203d21670c020b20014190026a109c014108213d4100210c410821670c020b4108213d410821670b2067208301370300206720023602102067200e370308206741146a20012903283702002067411c6a200141286a41086a290300370200206741246a200141286a41106a227b2903003702002067412c6a200141286a41186a2209290300370200206741346a200141286a41206a220b2903003702002067413c6a200141286a41286a22d201280200360200200141b8026a41206a22e70120014190026a41206a280200360200200141b8026a41186a20014190026a41186a290300370300200141b8026a41106a20014190026a41106a290300370300200141b8026a41086a20014190026a41086a29030037030020012001290390023703b802200141286a200141b8026a10a201024002402001280258227c450d00200141286a41346a2102200141d8006a21e601410221d60141c000210a410121d0010340200141e0026a41086a2244200241086a290200370300200141e0026a41106a2279200241106a290200370300200141e0026a41186a227e200241186a290200370300200141e0026a41206a22dd01200241206a290200370300200141e0026a41286a22ee01200241286a280200360200200120022902003703e00220d2012903002148200b290300210e20d20120ee01280200360200200b20dd012903003703002009207e290300370300207b2079290300370300200141286a41086a22792044290300370300200120012903e002370328024020d001200c470d0020d001417f20e701280200224441016a226720672044491b6a224420d001490d1220d6012044204420d601491b220cad420686228301422088a70d12208301a722444100480d120240024020d001450d00203d200a20441014223d0d010c070b20441012223d450d060b203d21670b2067200a6a224420483703082044200e370300204441106a207c3602002044413c6a20d201280200360200204441346a200b2903003702002044412c6a2009290300370200204441246a207b2903003702002044411c6a2079290300370200204441146a200129032837020020d60141026a21d601200a41c0006a210a20d00141016a21d001200141286a200141b8026a10a20120e601280200227c0d000c020b0b410121d0010b200141b8026a109c010b200141e0026a41086a22444200370300200142003703e00241b4bfc000411f200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e0022183010c010b42e8072183010b2001410036023020014201370328206720d001200141286a106c200128022c21022001280230210a20012802282144200141e0026a41086a220b4200370300200142003703e00241d595c1004115200141e0026a1000200141286a41086a200b290300370300200120012903e002370328200141286a41102044200a100402402002450d002044101f0b024020d001450d0020d0014106742102206741106a214403400240204441046a280200450d002044280200101f0b204441c0006a2144200241406a22020d000b0b0240200c450d00203d101f0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22022044290300370300200120012903e0023703284200210e0240200141286a411041a4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e002210e0b2001200e2083017c220e3703b80220444200370300200142003703e00241ea95c1004112200141e0026a100020022044290300370300200120012903e002370328200141286a4110200141b8026a41081004200141286a41106a200e37030020024201370300200141093a0028200141286a102720444200370300200142003703e00241dd81c000410d200141e0026a100020022044290300370300200120012903e0023703280240200141286a411041a4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0420012903e00221480b200141386a2048370300200141083a0028200141286a41086a41073a0000200141286a10272005450d112008101f0c110b204441081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b204441081015000b41de86c00041331023000b410121020c010b02402035200f6a22352010470d00410021020c010b41002136410121020c000b0b100f000b1010000b204720686b210b204621670b2067200b109d01200141e0026a41086a22444200370300200142003703e00241f9bec000411c200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41102065206620661001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d001210e0c010b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041a4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d00121480b20012048200e7c37033020014201370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541033a0000200141286a10272045450d010b2046101f20014190036a24000f0b20014190036a24000f0b41de86c00041331023000b41de86c00041331023000bc92007107f017e027f027e017f097e027f230041f0016b22022400200241e0016a41086a22034200370300200242003703e00141c5b2c0004115200241e0016a1000200241f0006a41086a22042003290300370300200220022903e0013703700240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241f0006a411041a4a4c100410041001001417f460d00200242103702542002200241f0006a3602502002200241d0006a108f0120022903004203510d0141feb2c0002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703e00141dab2c0004124200241e0016a100020042003290300370300200220022903e0013703700240200241f0006a411041a4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0c200241d8006a280200210302402002280254450d002004101f2003450d010c130b20030d120b200241e0016a41086a22034200370300200242003703e00141e6b3c000411a200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041a4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0e200241d8006a280200210302402002280254450d002004101f2003450d010c120b20030d110b200241e0016a41086a22034200370300200242003703e0014180b4c000411b200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041a4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0f200241d8006a280200210302402002280254450d002004101f2003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b02400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210122203450d12200341206a41002f00bbb44022173b0000200341186a41002900b3b4402218370000200341106a41002900abb4402219370000200341086a41002900a3b440221a3700002003410029009bb440221b3700002003412241c40010142203450d13200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241e0016a41086a22014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21062003101f4122101221030240024002402006450d002003450d18200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d19200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0006a200341c200103c200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f200229037021202003101f412210122203450d1a200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1b200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122204450d1c2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010142204450d1d2004201e4200202042015122071b370010200441186a201f420020071b37000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102004412010042004101f2003101f2012422088a741306c22030d010c020b2003450d1d200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1e200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122206450d1f200620163700002006201537000820064110412010142206450d2020064200370010200641186a420037000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102006412010042006101f2003101f200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d0f200e4101742204200320032004491b220fad4205862215422088a70d0f2015a722034100480d0f0240200e450d002010200e4105742003101422100d010c240b200310122210450d230b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210122204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21222004101f41221012210402402022450d002004450d09200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0a200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000200241f0006a200441c200103c200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f200229037021202004101f412210122204450d0b200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0c200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122207450d0d2007201e4200202042015122051b3700002007201f420020051b37000820074110412010142207450d0e2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c37000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102007412010042007101f2004101f200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122222450d11202242003700082022420037000020224110412010142222450d1220222016370010202241186a201537000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102022412010042022101f2004101f200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d0f200e4101742207200420042007491b220fad4205862215422088a70d0f2015a722044100480d0f0240200e450d002010200e4105742004101422100d010c150b200410122210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d002013101f0b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d002004101f0b2003211420012003470d000b0b0240200b450d002008101f0b2002200e3602782002200f3602742002201036027020024124360254200241dab2c000360250200241f0006a200241d0006a10620240200f450d002010101f0b200241083a007041002105200241f0006a41086a41003a0000200241f0006a10271090010c240b412241011015000b41c40041011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b1010000b412241011015000b41c40041011015000b411041011015000b412041011015000b200441011015000b412241011015000b41c40041011015000b41de86c00041331023000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b41de86c00041331023000b200341011015000b41de86c00041331023000b41de86c00041331023000b41cdb3c00021054119210620012802002107200128020822030d020c030b41b5b3c00021054118210620012802002107200128020822030d010c020b419ab3c0002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d002003280200101f0b200341c0006a2103200441406a22040d000b0b200141046a280200450d002007101f0b2000200636020420002005360200200241f0016a24000b130020004100360204200041a4a4c1003602000b130020004107360204200041b19bc0003602000b130020004102360204200041c0dbc1003602000b13002000410236020420004188ddc1003602000b130020004108360204200041a69dc0003602000b130020004107360204200041e8dec1003602000b130020004101360204200041fce4c1003602000b130020004109360204200041d0adc0003602000b13002000410336020420004180e6c1003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242053700000f0b410841011015000bca0203027f017e017f230041206b22022400024002400240024002400240024002400240200028020022034101460d0020034102470d01410110122203450d03200341023a00002000290308210420034101410910142200450d04200020043700010c020b410110122203450d04200341013a00002000290308210420034101410910142200450d05200020043700010c010b410110122203450d05200341003a00002000290308210420034101410910142200450d06200020043700010b2001280204210320012802002101200241106a41086a220542003703002002420037031020012003200241106a1000200241086a200529030037030020022002290310370300200241102000410910042000101f200241206a24000f0b410141011015000b410941011015000b410141011015000b410941011015000b410141011015000b410941011015000b970302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081001210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d00082203450d0120034101460d0220034102470d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420221050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420021050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000bfe0402047f027e23004190016b22002400200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a200129030037030020002000290308370378024002400240200041f8006a411041a4a4c100410041001001417f460d0020004100360208200041f8006a4110200041086a41044100100141016a41044d0d02200028020841016a21020c010b410121020b2000200236028c01200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a2203200129030037030020002000290308370378200041f8006a41102000418c016a41041004200142003703002000420037030841d2b4c0004120200041086a100020032001290300370300200020002903083703780240024002400240200041f8006a411041a4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821040c010b42e40021040b200041086a41086a220142003703002000420037030841dd81c000410d200041086a1000200041f8006a41086a200129030037030020002000290308370378420021050240200041f8006a411041a4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821050b2000200520047c370310200042003703082000411536027c200041c5b2c000360278200041086a200041f8006a108e01200041146a2002360200200041083a0008200141013a0000200041086a102720004190016a24000f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b130020004111360204200041d8ecc1003602000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241143600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011015000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011015000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010122206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010142206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110142206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011015000b41c00041011015000b41800141011015000b6101017f02400240411010122202450d00200242003700082002420037000020024110412010142202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011015000b412041011015000b3101017f0240410110122202450d00200042818080801037020420002002360200200241013a00000f0b410141011015000b13002000410f360204200041d8b7c0003602000b821103077f047e0a7f230041c0026b2202240002400240411510122203450d002003410d6a4100290095bb40370000200341086a4100290090bb4037000020034100290088bb4037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1000200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a411041a4a4c100410041001001417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22044200370300200242003703284100210502404100200241b0016a4110200241286a41204100100122012001417f461b2201411f4d0d00200241186a2205200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200429030037030020022002290328370300200241a0026a41186a2005290300370300200241a0026a41106a2006290300370300200241a0026a41086a2007290300370300200220022903003703a002410121050b200241186a2204200241a0026a41186a290300370300200241106a2206200241a0026a41106a290300370300200241086a2207200241a0026a41086a290300370300200220022903a0023703002005450d02200241e0016a41186a2004290300370300200241e0016a41106a2006290300370300200241e0016a41086a2007290300370300200220022903003703e001200241286a41186a4200370300200241286a41106a4200370300200241286a41086a4200370300200242003703284100200241b0016a4110200241286a41202001412020014120491b2205100122012001417f461b2201411f4d0d02200241186a2204200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200241286a41086a22082903003703002002200229032837030020024180026a41186a200429030037030020024180026a41106a200629030037030020024180026a41086a2007290300370300200220022903003703800220024200370330200242003703284100200241b0016a4110200241286a41102001412020014120491b20056a2205100122012001417f461b2201410f4d0d02200829030021092002290328210a20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20056a2205100122012001417f461b2201410f4d0d02200241306a290300210b2002290328210c200241003a0028200241b0016a4110200241286a41012001411020014110491b20056a2201100141016a22054102490d024100210d024020022d00282204450d0020044101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a41202001200541014b6a10012201417f460d0320014120490d03200241a0026a41186a200241286a41186a290300370300200241a0026a41106a200241286a41106a290300370300200241a0026a41086a200241286a41086a290300370300200220022903283703a0024101210d0b200241286a41186a220e200241a0026a41186a220f290300370300200241286a41106a2210200241a0026a41106a2211290300370300200241286a41086a2212200241a0026a41086a2213290300370300200220022903a002370328200f200241e0016a41186a22012903003703002011200241e0016a41106a22052903003703002013200241e0016a41086a2204290300370300200241c0016a41086a221420024180026a41086a2206290300370300200241c0016a41106a221520024180026a41106a2207290300370300200241c0016a41186a221620024180026a41186a2208290300370300200220022903e0013703a00220022002290380023703c001200241cb006a200241036a280000360000200220022800003602482008200f2903003703002007201129030037030020062013290300370300200420142903003703002005201529030037030020012016290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200e2903003703002002411f6a2210200241286a411f6a290000370000200220022903a00237038002200220022903c0013703e00120022002290328370300200e200b370300200241286a41286a2006290300370300200241286a41306a2007290300370300200241286a41386a2008290300370300200241286a41c8006a2004290300370300200241286a41d0006a2005290300370300200241286a41d8006a20012903003703002002200c370338200220093703302002200a3703282002200229038002370348200220022903e001370368200041186a200b3703002000200c370310200020093703082000200a370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a20102900003700002000200229038002370320200041286a2006290300370300200041306a2007290300370300200041386a20082903003703002002200d3a0088012000200d3a0060200041d8006a2001290300370300200041d0006a2005290300370300200041c8006a2004290300370300200020022903e00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010fd011a0b2003101f200241c0026a24000f0b41de86c00041331023000b411541011015000b413541011015000bf80303027f027e027f230041206b220224000240024002400240412010122203450d0020032000290020370000200341186a200041386a290000370000200341106a200041306a290000370000200341086a200041286a2900003700002003412041c00010142203450d0120032000290040370020200341386a200041d8006a290000370000200341306a200041d0006a290000370000200341286a200041c8006a290000370000200041086a290300210420002903002105200341c00041800110142203450d0220032005370040200341c8006a200437000020032000290310370050200341d8006a200041186a2903003700000240024020002d00604101470d00200341e0006a41013a0000200341800141800210142203450d05200341f9006a200041f9006a290000370000200341f1006a200041f1006a290000370000200341e9006a200041e9006a2900003700002003200041e1006a29000037006141810121000c010b200341e0006a41003a000041e10021000b2001280204210620012802002101200241106a41086a220742003703002002420037031020012006200241106a1000200241086a200729030037030020022002290310370300200241102003200010042003101f200241206a24000f0b412041011015000b41c00041011015000b41800141011015000b41800241011015000b85260b1a7f027e087f067e017f027e017f037e1e7f027e0b7f230041e0006b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b41c200211c4201211d4200211e4100211f0c010b410021000c010b410121000b034002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341086a41086a20002903003703002003200329033037030802400240024002400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402234450d03200328024421350240200341c0006a41086a22362802002200450d0020004105742137203421040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411510122200450d032000410d6a4100290095bb40370000200041086a4100290090bb4037000020004100290088bb4037000020004115413510142200450d04200441206a2104200020032903083700152000412d6a2025290300370000200041256a20262903003700002000411d6a2038290300370000200341306a41086a222542003703002003420037033020004135200341306a10002036202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2035450d002034101f0b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341c0006a41086a200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a20002903003703002003200329033037030802400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402239450d052003280244213a4105213b200341c8006a28020041057422000d010c0c0b410121394100213a4105213b41004105742200450d0b0b203920006a213c2001280200213d2001280204213e4118213f411021404108214141202137417f21384102214241a80821434106214441987d21454160213441012136203921354101211f0c050b411541011015000b413541011015000b41de86c00041331023000b41de86c00041331023000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a203f6a2035203f6a290000370300200341086a20406a203520406a290000370300200341086a20416a203520416a29000037030020032035290000370308203520376a2135203d2146203e21470c030b200341086a204a6a225a2035204a6a290000370300200341086a204b6a225b2035204b6a290000370300200341086a204c6a225c2035204c6a290000370300200320352900003703082035204d6a2135203d215d203e215e0c030b410121000c0f0b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d012020200420101080022226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204620416a210420462f01062224203b7421004100212502400240024003402000450d01200341086a200420371080022226450d02200020346a2100202520366a2125200420376a2104202620384a0d000b202520386a21240b2047450d01204720386a2147204620242042746a20436a2802002146410121000c030b204620252044746a2045460d002035203c470d090c100b200341c0006a41186a2200200341086a41186a290300370300200341c0006a41106a2204200341086a41106a290300370300200341c0006a41086a2225200341086a41086a29030037030020032003290308370340412010122248450d0720482003290340370000204841186a2000290300370000204841106a2004290300370000204841086a20252903003700002035203c460d03410121494118214a4110214b4108214c4120214d4105214e417f214f4102215041a80821514205215242202153410021544106215541987d21564160215741012158410121594102211f0c0e0b205d204c6a2104205d2f01062224204e742100410021250240024003402000450d01200341086a2004204d1080022226450d02200020576a2100202520496a21252004204d6a21042026204f4a0d000b2025204f6a21240b205e450d02205e204f6a215e205d20242050746a20516a280200215d410221000c010b0b205d20252055746a2056460d002035203c470d070c020b200341c0006a204a6a2200205a290300370300200341c0006a204b6a2204205b290300370300200341c0006a204c6a2225205c29030037030020032003290308370340205a2000290300370300205b2004290300370300205c202529030037030020032003290340370308024020592058470d00205820496a22002058490d0320582049742204200020002004491b2259ad2052862227205388a70d032027a722002054480d0302402058450d0020482058204e742000101422480d010c050b200010122248450d040b20482058204e746a220020032903083700002000204a6a205a2903003700002000204b6a205b2903003700002000204c6a205c290300370000205820496a21582035203c470d070c010b41012158410121590b0240203a450d002039101f0b20482058109d012059450d0b2048101f0c0b0b1010000b200041011015000b412041011015000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c0e0b410121000c0d0b410121000c0c0b410121000c0b0b0240203a450d002039101f0b41014100109d010b200341306a41086a220042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a2000290300370300200320032903303703080240024002400240024002400240024002400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d07200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411f10122200450d04200041176a41002900a4b140370000200041106a410029009db140370000200041086a4100290095b1403700002000410029008db1403700002000411f413f10142200450d03200441206a21042000200329030837001f200041376a20252903003700002000412f6a2026290300370000200041276a2038290300370000200341306a41086a22254200370300200342003703302000413f200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a222542003703002003420037033041e6b3c000411a200341306a1000200341c0006a41086a202529030037030020032003290330370340200341c0006a4110100502402002450d00202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a20252903003703002003200329033037030841002126024002400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402238450d0c20032802442126200341c8006a28020041057422370d010c020b4101213841004105742237450d010b203821040340412210122200450d07200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341086a200041c200103c200341086a41186a290300211e200341086a41086a290300211d200341086a41206a2903002127200341086a41106a2903002128200329030821532000101f0240201e4200205342015122001b221e201d420020001b221d842027420020001b22272028420020001b22288484500d002004201e201d7c221d202720287c201d201e54ad7c10630b200441206a2104203741606a22370d000b0b2026450d002038101f0b202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a2025290300370300200320032903303703080240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d08200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308412210122200450d05200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d06200441206a2104200020032903083700222000413a6a2025290300370000200041326a20262903003700002000412a6a2038290300370000200341306a41086a2225420037030020034200370330200041c200200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a220042003703002003420037033041dab2c0004124200341306a1000200341c0006a41086a2204200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041c5b2c0004115200341306a10002004200029030037030020032003290330370340200341c0006a41101005200341e0006a24000f0b413f41011015000b411f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200620106a21000240200629030022272006200b6a290300222884500d0020002027202810630b2006290310200620146a222529030084500d00201510122204450d01200420106a20162f00bbb44022263b0000200420146a20162900b3b4402229370000200420176a20162900abb440222a3700002004200b6a20162900a3b440222b3700002004201629009bb440222c37000020042015201810142204450d0220042000290000370022200420196a200020146a22242900003700002004201a6a200020176a22232900003700002004201b6a2000200b6a222d290000370000200341086a2004201c103c200341086a20106a290300212e200341086a20146a290300212f200341086a200b6a22302903002131200341086a20176a2903002132200329030821272004101f20252903002133200620176a2903002128201510122204450d03200420106a20263b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810142204450d0420042000290000370022200420196a20242900003700002004201a6a20232900003700002004201b6a202d290000370000201710122200450d0520002031201e2027201d5122251b37000020002032201e20251b37000820002017201010142200450d0620002028202f201e2027201e5222251b7c2227370010200020146a2033202e201e20251b7c2027202854ad7c370000200341306a200b6a2225201e3703002003201e3703302004201c200341306a10002030202529030037030020032003290330370308200341086a20172000201010042000101f2004101f0b200620056a22062007470d06410021000c070b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b4100211f410121000c000b0bb30101047f230041e0006b220124002001200010a2010240200141306a22022802002203450d00200141346a2104034002402004280200450d002003101f0b2001200010a201200228020022030d000b0b02402000280204220341a893c100460d00200328020021022003101f2002450d00200228020021002002101f2000450d00024020002802002203450d0003402000101f2003210020032802002202210320020d000b0b2000101f0b200141e0006a24000bd5100a097f017e017f067e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041e6b3c000411a200241e0006a1000200241206a41086a20002903003703002002200229036037032041002101024002400240024002400240024002400240024002400240024002400240024002400240200241206a411041a4a4c100410041001001417f460d002002421037024c2002200241206a360248200241e0006a200241c8006a104020022802602200450d02200241e8006a2802002101200228026421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a109e01024002400240024020022d00204101470d00412010122204450d0520042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a109e0120022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d042005200120012005491b2207ad420586220b422088a70d04200ba722014100480d0402402006450d00200420032001101422040d010c060b200110122204450d050b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a109e0120022d00200d000b2002280250220020022802542201460d070c060b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d002002280208101f0b4100210720022802042201450d080c070b41012106410121072002280250220020022802542201470d040c050b1010000b200141011015000b41de86c00041331023000b412041011015000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d002002280248101f0b20022802042201450d010b200228020021002001410574210c0340411f10122201450d02200141176a41002900a4b140220d370000200141106a410029009db140220e370000200141086a4100290095b140220f3700002001410029008db14022103700002001411f413f10142201450d032001200029000037001f200141376a200041186a22032900003700002001412f6a200041106a2205290000370000200141276a200041086a2208290000370000200241206a2001413f103c200241206a41106a220a2903002111200241206a41086a22092903002112200241206a41186a22132903002114200241206a41206a221529030021162002290320210b2001101f20164200200b42015122011b21162014420020011b211402402012201184500d00200b500d0020002012201110630b02402014201684500d00412210122201450d07200141206a41002f00bbb44022173b0000200141186a41002900b3b4402211370000200141106a41002900abb4402212370000200141086a41002900a3b44022183700002001410029009bb44022193700002001412241c40010142201450d08200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a2008290000370000200241206a200141c200103c200a290300211a2009290300211b2013290300211c2015290300211d2002290320210b2001101f412210122201450d09200141206a20173b0000200141186a2011370000200141106a2012370000200141086a2018370000200120193700002001412241c40010142201450d0a200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a200829000037000041101012220a450d0b200a201b4200200b42005222131b221120147c2214370000200a201a420020131b20167c2014201154ad7c370008200a411041201014220a450d0c200a201c4200200b42015122131b370010200a41186a201d420020131b370000200241e0006a41086a2213420037030020024200370360200141c200200241e0006a10002009201329030037030020022002290360370320200241206a4110200a41201004200a101f2001101f0b411f10122201450d04200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10142201450d052001200029000037001f200141376a20032900003700002001412f6a2005290000370000200141276a2008290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a10002009200329030037030020022002290360370320200241206a411010052001101f200041206a2100200c41606a220c0d000b0b2002200636022820022007360224200220043602202002411a360264200241e6b3c000360260200241206a200241e0006a106202402007450d002004101f0b20024180016a24000f0b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000ba30303067f037e027f230041206b220224000240024020012802082203200128020c2204460d002001280210220541046a21060340200141086a2003220741206a2203360200200741086a2900002108200741106a29000021092007290000210a200241186a200741186a290000370300200241106a2009370300200241086a20083703002002200a3703002005280200220720062802004105746a210b024002400340200b20076b41ff004d0d0120022007460d02200720024120108002450d02200741206a220c2002460d02200c20024120108002450d02200741c0006a220c2002460d02200c20024120108002450d02200741e0006a220c2002460d0220074180016a2107200c200241201080020d000c020b0b2007200b460d03034020022007460d01200720024120108002450d01200b200741206a2207470d000c040b0b20032004470d000b0b200041003a0000200241206a24000f0b20002002290300370001200041013a0000200041196a200241186a290300370000200041116a200241106a290300370000200041096a200241086a290300370000200241206a24000b9c0f05027f057e017f057e087f230041d0006b220224000240024002400240024002400240024002400240024002400240024020014102490d00411f10122203450d06200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d072003200029002037001f200341376a200041386a2900003700002003412f6a200041306a290000370000200341276a200041286a290000370000200241286a2003413f103c200241286a41206a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082003101f411f10122203450d08200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d092003200029000037001f200341376a200041186a22092900003700002003412f6a200041106a290000370000200341276a200041086a290000370000200241286a2003413f103c200241286a41206a290300210a200241286a41106a290300210b200241286a41186a290300210c2002290330210d2002290328210e2003101f200520077c22074200200842005222031b200c200d7c22084200200e420151220f1b5a200420067c2007200554ad7c420020031b2205200a200b7c2008200c54ad7c4200200f1b220c5a2005200c511b0d00200029000021052000200041206a2203290000370000200241086a41186a2009290000370300200241086a41106a2210200041106a220f290000370300200241086a41086a2211200041086a22122900003703002012200341086a290000370000200f200341106a2900003700002009200341186a29000037000020022005370308200041206a2103024020014103490d00411f10122209450d0b200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0c2009200029004037001f200941376a200041d8006a2900003700002009412f6a200041d0006a290000370000200941276a200041c8006a290000370000200241286a2009413f103c200241c8006a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082009101f411f10122209450d0d200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0e2009200229030837001f200941376a200241086a41186a22132903003700002009412f6a200241086a41106a290300370000200941276a200241086a41086a290300370000200241286a2009413f103c200241286a41206a220f290300210a200241286a41106a290300210b200241286a41186a2212290300210c2002290330210d2002290328210e2009101f200520077c22074200200842005222091b200c200d7c22084200200e42015122141b5a200420067c2007200554ad7c420020091b2205200a200b7c2008200c54ad7c420020141b220c5a2005200c511b0d00200041c0006a211441012109034020142103200920014f0d03200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200941026a20014f0d01411f10122200450d04200041176a41002900a4b140220c370000200041106a410029009db1402204370000200041086a4100290095b14022063700002000410029008db14022073700002000411f413f10142200450d05200041376a200341386a2900003700002000412f6a200341306a290000370000200041276a200341286a2900003700002000200341206a221429000037001f200241286a2000413f103c200f290300210820122903002105200241286a41106a2215290300210a200241286a41086a2216290300210b2002290328210d2000101f411f10122200450d06200041176a200c370000200041106a2004370000200041086a2006370000200020073700002000411f413f10142200450d072000200229030837001f200041376a20132903003700002000412f6a200241086a41106a290300370000200041276a200241086a41086a290300370000200241286a2000413f103c200f2903002104201529030021062012290300210c201629030021072002290328210e2000101f200941016a21092005200b7c220b4200200d42005222001b200c20077c22074200200e42015122151b542008200a7c200b200554ad7c420020001b2205200420067c2007200c54ad7c420020151b220c542005200c511b0d000b0b20032002290308370000200341186a200241086a41186a290300370000200341106a2010290300370000200341086a20112903003700000b200241d0006a24000f0b41f8bcc200200920011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541a893c100460d00200128020421060c010b41a80810122205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810fe011a20014100360204200120053602000b0c010b41a80841081015000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a20084120108002220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410ff011a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410ff011a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081012221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810fe012108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410fe012108201d41e8026a200541a8066a200241067410fe012111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410ff011a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410ff011a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401012220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210fe0121082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410fe01216e200a20536a200d20526a200220107410fe01216f200a20556a200d20546a200920566a220e200f7410fe012170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410ff011a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410ff011a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410ff011a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410ff011a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410ff011a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410ff011a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810122202450d03200241003b010620024100360200200241086a200441b0036a41d00810fe0121092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410ff011a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410ff011a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410ff011a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081015000b41a80841081015000b41d80841081015000b410121020c000b0b20004100360210200441800c6a24000bae0c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b4120108002220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b2015108002220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a2900003700002003201837030041202120200041206a212120014103490d02410221224101212341052124417f212541a80821264178212741702128416821294160212a4106212b41e802212c4130212d4150212e4102212f410221050c080b202f20236a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352022746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2022746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000203121212030212f20302001490d020b202120032903003700002021201a6a201b2903003700002021201c6a201d2903003700002021201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b2006101f2011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b2003101f2011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000b130020004111360204200041d4f8c1003602000b13002000410b360204200041b482c2003602000b130020004107360204200041c1cec0003602000b130020004117360204200041e088c2003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021013200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241003600000f0b410441011015000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242003700000f0b410841011015000b7001017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a10132002200241086a36022c2002412c6a200241206a106d200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011015000b3401017f0240410410122202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241043600000f0b410441011015000b13002000410f360204200041f09dc2003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410122203450d0020024284808080c000370204200220033602002003410036000020034104410810142203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610142203450d020c050b200421060c050b2006101222030d030b200641011015000b410441011015000b410841011015000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410142203450d020c030b200621040c030b2004101222030d010b200441011015000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710142203450d010c020b2007101222030d010b200741011015000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002105802400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410142206450d020c040b200341086a2105200228020021060c040b2004101222060d020b200441011015000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410122203450d0020024284808080c000370244200220033602402003410036000020034104412410142203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010142203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a10132002410036024c200241cc006a200241c0006a10132002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710142203450d020c060b200521070c060b2007101222030d040b200741011015000b410441011015000b412441011015000b41c80041011015000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410142203450d020c040b200641286a21060c040b2004101222030d020b200441011015000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a1058200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410122202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011015000b3401017f0240410410122202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011015000b3301017f0240410410122202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011015000bf50103027f017e017f230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a200329030037030020022002290310370300024002400240024002402002411041a4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d0220022903102204500d0341082105410810122203450d010c040b42052104410821054108101222030d030b200541011015000b41de86c00041331023000b41a4a9c2001024000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010122202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011015000b3901017f0240411010122202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011015000b3a01017f0240411010122202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011015000b130020004109360204200041e1eac0003602000b130020004104360204200041d4a9c2003602000bcb0e04027f047e017f037e230041e0006b22022400200241306a41086a220342003703002002420037033041ca82c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240024002400240024002400240024002400240024002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d022003410f4d0d02200241d8006a2903002104200229035021050c010b42002105420021040b200241106a200442002001ad22064200108202200241206a20054200200642001082022002420042002005420010820241f882c100210102402002290318200229030884420052200241206a41086a2903002205200229031020022903007c7c2206200554720d002002290320210742002104200241306a41086a220342003703002002420037033041e182c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d052003410f4d0d05200241d8006a2903002105200229035021040c010b420021050b200420077c22072004542203200520067c2003ad7c220420055420042005511b4101460d0002400240024041af82c000411041a4a4c100410041001001417f460d002002410036025041af82c0004110200241d0006a41044100100141016a41044d0d0520022802502103411a10122201450d08200141186a41002f00d8fe403b0000200141106a41002900d0fe40370000200141086a41002900c8fe40370000200141002900c0fe403700002001411a413410142201450d092001200336001a42002106200241306a41086a22084200370300200242003703302001411e200241306a1000200241c0006a41086a200829030037030020022002290330370340200241c0006a411041a4a4c100410041001001417f460d012002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d072008410f4d0d07200241d8006a2903002105200229035021060c020b200241e0006a2400418a83c1000f0b420021050b2001101f41a283c1002101200620077c22092006542208200520047c2008ad7c220620055420062005511b0d002000107022010d00411410122201450d08200141106a41002800bd9540360000200141086a41002900b59540370000200141002900ad954037000020014114413410142201450d09200120002900003700142001412c6a200041186a290000370000200141246a200041106a2900003700002001411c6a200041086a2900003700004200210a200241306a41086a220842003703002002420037033020014134200241306a1000200241c0006a41086a20082903003703002002200229033037034002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d092008410f4d0d09200241d8006a29030021052002290350210a0c010b420021050b2001101f41d193c0002101200a2007542208200520045420052004511b0d002000200a20077d200520047d2008ad7d106e42002105200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a20012903003703002002200229033037034002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012201417f460d0c2001410f4d0d0c200241d8006a290300210a200229035021050c010b4200210a0b0240200520077d220b200556200a20047d2005200754ad7d2205200a562005200a511b0d002002200b37035020022005370358200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a200129030037030020022002290330370340200241c0006a4110200241d0006a411010040b411a10122200450d0b41002101200041186a41002f00d8fe403b0000200041106a41002900d0fe40370000200041086a41002900c8fe40370000200041002900c0fe403700002000411a413410142200450d0c2000200336001a2002200637035820022009370350200241306a41086a22034200370300200242003703302000411e200241306a1000200241c0006a41086a200329030037030020022002290330370340200241c0006a4110200241d0006a411010042000101f0b200241e0006a240020010f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411a41011015000b413441011015000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411a41011015000b413441011015000b9e0d03017f017e077f230041306b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002402001ad2203421b88a70d002003420586a72204417f4c0d00024002402004450d002004101222050d01200441011015000b410121050b200520002001410574220610fe0121042002200136021820022001360214200220043602102002411236020c200241aefec000360208200241106a200241086a1062024002402001450d002004101f20064100480d05200610122207450d03200641606a4105762108410021040340200720046a2205200020046a2209290000370000200541186a200941186a290000370000200541106a200941106a290000370000200541086a200941086a2900003700002006200441206a2204470d000b200841016a210041062105410610122204450d010c040b4100210041012107410621054106101222040d030b200541011015000b100f000b200641011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d01200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941a4a4c100410041001001417f460d00200241003602104101210820044109200241106a41044100100141016a41044d0d01200228021021092004101f200945210a02402009450d002009ad4205862203422088a70d032003a722044100480d03200410122208450d0541002105200821040340200241106a2005103e200441186a200241106a41186a290000370000200441106a200241106a41106a290000370000200441086a200241106a41086a29000037000020042002290010370000200441206a21042009200541016a2205470d000b0b20092000470d060c050b2004101f4101210a410021094101210841002000460d040c050b41de86c00041331023000b1010000b410c41011015000b200441011015000b024020082007460d002000450d0041002106200821042007210503402004200541201080020d02200441206a2104200541206a2105200641016a22062000490d000b0b200a0d012008101f20010d020c030b200241106a41086a20093602002002200936021420022008360210200241106a103f0240024002400240024002402000450d002000410574210041002106200721050340410610122204450d03200441046a41002f00a388403b00002004410028009f884036000020044106410c10142209450d0420092006360006412010122204450d0520042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a2900003700002009410a2004412010042004101f2009101f200641016a2106200541206a2105200041606a22000d000b41062105410610122204450d010c050b41002106410621054106101222040d040b200541011015000b410641011015000b410c41011015000b412041011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d09200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941a4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d082002280210210a2004101f200a20064d0d01200621050340410610122204450d07200441046a41002f00a3884022093b00002004410028009f8840220036000020044106410c10142204450d08200441086a41002d00a788403a0000200441002f00a588403b000602402004410941a4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d07200228021021082004101f0240200820054d0d00410610122204450d0c200441046a20093b00002004200036000020044106410c10142204450d0d200420053600062004410a10052004101f0b200a200541016a2205470d010c030b2004101f200a200541016a2205470d000c020b0b2004101f0b410610122204450d0a200441046a41002f00a388403b00002004410028009f884036000020044106410c10142204450d0b200441086a41002d00a788403a0000200441002f00a588403b00062002200636021020044109200241106a410410042004101f0b2001450d010b2007101f0b200241306a24000f0b41de86c00041331023000b410641011015000b410c41011015000b41de86c00041331023000b410641011015000b410c41011015000b410c41011015000b410641011015000b410c41011015000b130020004104360204200041a885c1003602000b130020004103360204200041bcafc2003602000b3901017f0240411010122202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011015000b130020004102360204200041e0b1c2003602000b130020004104360204200041dd88c1003602000b130020004101360204200041e8b2c2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010122206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011015000b130020004103360204200041c4b3c2003602000b130020004107360204200041858bc1003602000b130020004108360204200041b0b5c2003602000bcc0403037f017e047f23004180026b220424000240024020012d000d450d0041b790c1002102413121050c010b2001280200200141046a2205280200200141086a220628020010c80120054200370200200141a893c100360200200420022900002207370310024002400240024041e40110122208450d00200841003b010620084100360200200841086a200441206a41dc0110fe011a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a4108108002220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101302402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1014220b450d030c060b2004280210210b0c060b418a90c1002102412d21050c060b200a1012220b0d030b200a41011015000b41e40141041015000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210fe011a200441086a200a28020036020020042004290310370300200441206a200410c90120014180023b010c410021020b200020053602042000200236020020044180026a24000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b2000101f2005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b2001101f2005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d002004101f0b20020d000b0b0240200041a893c100460d00200028020021012000101f2001450d00200128020021042001101f2004450d00024020042802002201450d0003402004101f2001210420012802002200210120000d000b0b2004101f0b0bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410ff011a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10ff011a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011012220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110fe012107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410fe012107200a41e0006a200041b4016a2001410c6c10fe01210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410ff011a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10ff011a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410ff011a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10ff011a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210122207450d03200741003b010620074100360200200741086a200241d0006a418c0210fe012103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410fe012116200741e0006a200941b4016a2000410c6c10fe012117200741e4016a20094180026a2001417a6a220e41027410fe012118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410ff011a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10ff011a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410ff011a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410ff011a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10ff011a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410ff011a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210122200450d03200041003b010620004100360200200041086a200241d0006a418c0210fe0121012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410ff011a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10ff011a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410ff011a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041015000b41e40141041015000b41940241041015000b200241e0026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210130240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142203450d020c030b2004410e6a2105200228020021030c030b2006101222030d010b200641011015000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a41002900c79240370000200441002900c192403700002002410e36020c2002410c6a200210130240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610142204450d020c030b200228020021040c030b2006101222040d010b200641011015000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a41002900c79240370000200741002900c1924037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710142204450d020c030b200341126a21030c030b2007101222040d010b200741011015000b20022007360204200220043602000b200241086a22052003360200200420066a4103360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710142204450d010c020b2007101222040d010b200741011015000b20022007360204200220043602000b2005200341046a360200200420036a41033600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142205450d020c030b200228020021050c030b2006101222050d010b200641011015000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410536020c2002410c6a200210132008280200210641d092c00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101422030d020c060b200641086a2104200228020021030c020b200910122203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101422030d010c060b200610122203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a2207418c93c000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011015000b200641011015000bde0503057f017e067f230041306b22022400024002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200341086a41002d00a788403a0000200341002f00a588403b0006024002400240024002402003410941a4a4c100410041001001417f460d00200241003602104101210420034109200241106a41044100100141016a41044d0d04200228021021052003101f20054521062005450d012005ad4205862207422088a70d022007a722034100480d02200310122204450d0741002108200421030340200241106a2008103e200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a29000037000020032002290010370000200341206a21032005200841016a2208470d000c020b0b2003101f4101210641002105410121040b20024100360218200242013703102002200536020c2002410c6a200241106a1013024002402006450d00200241186a2802002103200228021021090c010b2005410574210a4100200241106a41086a280200220b6b210c200228021021092002280214210d4100210303400240200d200c6a411f4b0d00200b20036a220541206a22082005490d03200d4101742205200820082005491b22084100480d0302400240200d450d002009200d2008101422090d010c060b200810122209450d050b2008210d0b2009200b6a20036a2208200420036a2205290000370000200841186a200541186a290000370000200841106a200541106a290000370000200841086a200541086a290000370000200c41606a210c200a200341206a2203470d000b200241186a200b20036a22033602002002200d3602142002200936021020060d002004101f0b200241306a24002003ad4220862009ad840f0b1010000b200841011015000b41de86c00041331023000b410641011015000b410c41011015000b200341011015000bd31203027f017e087f230041d0086b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b20022001360204200241f0066a2002107c024002400240024002400240024020022802f806450d00200241086a200241f0066a41880110fe011a20024190016a200241086a41880110fe011a200229039001200241a4016a2201200241e4016a2203102502400240024002402002290390012204500d00200241f0066a2004427f7c101d200241f0066a200141201080020d0041002105200228028802210002400240024020024190026a280200220141e0016c41e001490d002001410c6c220610122207450d0b2001210820010d010c020b41042107410021082001450d010b200141e0016c2106200141057441606a21092007210103402002200036028004200241f0066a20024180046a10cd01200141086a200241f0066a41086a280200360200200120022903f0063702002001410c6a2101200041e0016a2100200641a07e6a22060d000b200941057641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001012220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241f0066a200a200610ce010240200b450d00200a101f0b02402005450d002005410c6c21002007210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b02402008450d002007101f0b02402003200241f0066a4120108002450d0041fba1c100410e1008200341201009200241f0066a412010090b2003200241f0066a41201080020d052002418c026a280200210520024190016a41f8006a280200210720024190026a280200210620024198026a20024190016a41f80010fe011a2007200641e0016c6a210020072101024002400240024002402006450d0020024180046a41f8006a2109200241f0066a41086a210c20072101034020024190036a200141f00010fe011a200141f0006a290300210420024188066a200141f8006a41e80010fe011a20044203510d0220024180046a20024190036a41f00010fe011a20024180046a41f0006a2004370300200920024188066a41e80010fe011a200220024180046a3602e005200241f0066a200241e0056a10cd01200c2802002106024020022802f406450d0020022802f006101f0b200241f0066a20024180046a41e00110fe011a200241003602f005200241e0056a200241f0066a2006200241f0056a10cf0120022802e0054101460d05024020022802e4052206450d002006200241e0056a41086a28020010080b200141e0016a22012000470d000b200021010b20012000470d010c020b200141e0016a22012000460d010b200241f8076a2106200241f0066a41f8006a21090340200241f0066a200141f00010fe011a200141f0006a290300210420024190036a200141f8006a41e80010fe011a20044203510d0120024180046a200241f0066a41f00010fe011a20024188066a20024190036a41e80010fe011a200241f0066a20024180046a41f00010fe011a200241f0066a41f0006a2004370300200920024188066a41e80010fe011a2006107e200141e0016a22012000470d000b0b02402005450d002007101f0b102b200229039802107f200241f0066a102f200220024198026a41106a28020022053602800620022802a002210c2002200241f0066a41106a28020022013602840620052001470d0720022802f806210a024002402005450d000240200c200a460d00410021070340200c200741246c22006a2201200a20006a2200105720012d0000220620002d0000470d030240024020064101470d002001410c6a28020022092000410c6a280200470d052009450d01200141046a2802002201200041046a2802002200460d014100210603402001200041201080020d06200141206a2101200041206a2100200641016a22062009490d000c020b0b200141016a200041016a41201080020d040b200741016a22072005490d000c020b0b200521010340200c200c1057200c41246a210c2001417f6a22010d000b0b20024180046a41186a2201420037030020024180046a41106a2200420037030020024180046a41086a22064200370300200242003703800420024180046a100620024190036a41186a200129030037030020024190036a41106a200029030037030020024190036a41086a20062903003703002002200229038004370390030240200241cc026a220120024190036a4120108002450d0041fba1c100410e100820014120100920024190036a412010090b200120024190036a41201080020d0902402005450d00200541246c2100200a21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241fc066a280200450d00200a101f0b0240200241a8026a2802002200450d0020024198026a41086a2802002101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241a4026a280200450d00200241a0026a280200101f0b200241d0086a240042010f0b41a8bfc2001024000b20022802e4052202450d0120024103460d0220024104460d0341b0bec2001024000b4180bec2001024000b41e0bec2001024000b41c8bec2001024000b41f8bec2001024000b20024194046a41013602002002410436029401200241c8bbc200360290012002420137028404200241d0bbc20036028004200220024190016a3602900420024180046a41d8bbc200103a000b4198bec2001024000b200220024180066a3602f005200220024184066a3602e00520024180046a41146a410036020020024190036a41146a41023602002002419c036a410736020020024188066a41146a4103360200200241a4a4c10036029004200242013702840420024190bfc2003602800420024107360294032002420337028c06200241e8c4c20036028806200220024180046a3602a0032002200241e0056a360298032002200241f0056a36029003200220024190036a3602980620024188066a4198bfc200103a000b41c0bfc2001024000b200641041015000b1010000b200041041015000b8b1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041e20110122203450d00200242e20137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410142201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410142201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a2002107802400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110142204450d020c060b200228020021040c060b2001101222040d040b200141011015000b41e20141011015000b410441011015000b410441011015000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c37000020032002102102400240024002400240024002400240024002400240200341f0006a2903004201520d00200341f8006a2903002206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110142204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510142204450d030c070b200228020021040c070b200228020021040c080b2005101222040d040b200541011015000b2001101222040d040b200141011015000b41bcc9c1001024000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a20021022200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a1013024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101422010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410142203450d020c110b4100210b2005450d120c110b2004101222030d0f0b200441011015000b200228020021010c020b200c10122201450d070b2002200c360204200220013602000b200120056a200141026a200a10ff011a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031012220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b41e080c2001024000b200341011015000b200c41011015000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101422030d020c060b200228020021030c020b200110122203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10ff011a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c101f0b200a450d060c050b1010000b200141011015000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10ff011a0b20012003200a6a3602000b02402009450d002008101f0b20002002290300370200200041086a200241086a280200360200200241206a24000bcb03010b7f230041206b22032400024002402002450d0020024102742204101222050d01200441041015000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1014220a0d020c080b200820046a21070c020b200d1012220a450d060b200d210b0b200a20046a200c200810fe011a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a101f0b02402002450d002005101f0b200341206a24000f0b1010000b200d41011015000b871605017f017e037f017e067f230041e0056b22042400200441a0036a200141e00110fe011a20044190026a200441a0036a101c0240024002402004280290024101470d00200041086a2004290294023702002000420137020020032802002200450d020c010b20044190026a41086a290300210520044190016a20044190026a41106a41800110fe011a20042005370308200441086a41086a20044190016a41800110fe01210620044190016a41086a220142003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200129030037030020042004290390013703a00341002101024002400240024002400240024002400240024002400240024002400240200441a0036a411041a4a4c100410041001001417f460d002004410036029002200441a0036a411020044190026a41044100100141016a41044d0d0120042802900221010b41042107200120026a41808080024b0d0d410021080240200441106a410020042903084201511b2201450d002001450d0002400240024020011026220520012903202209520d00410321072001200210bb010d11411310122207450d0d2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c824037000020074113413310142207450d0e200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a29000037000020044190016a41086a220a420037030020044200370390012007413320044190016a1000200441a0036a41086a200a29030037030020042004290390013703a003200441a0036a411041a4a4c100410041001001417f460d012004420037039002200441a0036a411020044190026a41084100100141016a41084d0d0820042903900242017c21052007101f4113210a4113101222070d020c0f0b4101410220092005541b21070c100b420121052007101f4113210a411310122207450d0d0b2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c82403700002007200a413310142207450d0d200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200420053703900220044190016a41086a2201420037030020044200370390012007413320044190016a1000200441a0036a41086a200129030037030020042004290390013703a003200441a0036a411020044190026a410810042007101f0b024020032802002207450d00200341086a28020021012003280204210b4100210c024041af82c000411041a4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0520042802a003210c0b411410122208450d06200841106a41002800bb8140360000200841086a41002900b38140370000200841002900ab81403700002008411441281014220a450d07200a200c360014200441003602a803200442013703a003200420013602900220044190026a200441a0036a1013024002400240024020042802a403220d20042802a803220c6b20014f0d00200c20016a2208200c490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0120042802a003200d200e101422080d020c0d0b20042802a00321080c020b200e10122208450d0b0b2004200e3602a403200420083602a003200e210d0b2008200c6a2007200110fe011a20044190016a41086a220e42003703002004420037039001200a411820044190016a1000200441a0036a41086a200e29030037030020042004290390013703a003200441a0036a41102008200c20016a10040240200d450d002008101f0b200a101f41012108200b450d002007101f0b20042903082105200441a0036a200441306a41e00010fe011a20044190026a200441a0036a41086a41d80010fe011a20044190016a41186a220a200641186a29030037030020044190016a41106a220c200641106a29030037030020044190016a41086a220d200641086a290300370300200420062903003703900141002101024020054201520d00200441a0056a41186a200a290300370300200441a0056a41106a200c290300370300200441a0056a41086a200d29030037030020042004290390013703a005410121010b20044190016a20044190026a41d80010fe011a200441c0056a41186a2206200441a0056a41186a220a290300370300200441c0056a41106a220c200441a0056a41106a220d290300370300200441c0056a41086a220b200441a0056a41086a220e290300370300200420042903a0053703c00520044190026a20044190016a41d80010fe011a20044180056a41186a220f200629030037030020044180056a41106a2206200c29030037030020044180056a41086a220c200b290300370300200420042903c00537038005200441a0036a20044190026a41d80010fe011a200a200f290300370300200d2006290300370300200e200c29030037030020042004290380053703a0054102210602402001450d00200441c0056a41186a200441a0056a41186a290300370300200441c0056a41106a200441a0056a41106a290300370300200441c0056a41086a200441a0056a41086a290300370300200420042903a0053703c005410121060b20044199016a200441c0056a41086a290300370000200441a1016a200441c0056a41106a290300370000200441a9016a200441d8056a290300370000200420063a009001200420042903c005370091012004200441a0036a20044190016a10592004280204210620042802002101200441003a00a003200420014100473a00a103200441a0036a10270240024041af82c000411041a4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0320042802a00341016a210a0c010b4101210a0b20044190016a41086a220c42003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200c29030037030020042004290390013703a00302400240200441a0036a411041a4a4c100410041001001417f460d002004410036029001200441a0036a411020044190016a41044100100141016a41044d0d04200428029001210c0c010b4100210c0b2004200a3602a00341af82c0004110200441a0036a410410042004417f2002200c6a220a200a2002491b3602c00520044190016a41086a220242003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200229030037030020042004290390013703a003200441a0036a4110200441c0056a410410040240024002402001450d0002402006411b470d00200141b99ac100460d02200141b99ac100411b108002450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c120b20004100360204200041086a200636020020004100360200200745200872450d010c110b200041046a4104360200200041013602002007452008720d100b200341046a280200450d0f2007101f0c0f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b412841011015000b1010000b200e41011015000b411341011015000b413341011015000b200a41011015000b413341011015000b2000410136020020002007360204200441386a102020032802002200450d010b200341046a280200450d002000101f200441e0056a24000f0b200441e0056a24000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10fb012100200241206a240020000bc20201037f23004180016b22022400200028020021000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000ba70201017f23004180026b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b2002200136020420024180016a2002107d0240200228028801450d00200241086a20024180016a41f80010fe011a20022903082002411c6a200241dc006a10250240200241186a2802002200450d0020022802102101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241146a280200450d00200241106a280200101f0b20024180026a240042010f0b2002411c6a4101360200200241043602fc01200241e8bbc2003602f8012002420137020c200241d0bbc2003602082002200241f8016a360218200241086a41d8bbc200103a000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410122203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410142205450d020c040b200228021021050c040b2004101222050d020b200441011015000b410441011015000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41013a0000410e200241106a10d4014100210302400340200341fccfc1006a28020020034180d0c1006a280200200241106a10d5010240024002400240024002400240024002400240024002400240024002400240024020034184d0c1006a2802004101470d0020034188d0c1006a2802002003418cd0c1006a280200200241106a10d50120034190d0c1006a22062802004102460d010c020b200220034188d0c1006a28020011020020022802002002280204200241106a10d50120034190d0c1006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101422060d020c040b200228021021060c020b200710122206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341a0d0c1006a22062802004102470d020c030b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101422070d020c0d0b200228021021070c020b200810122207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d601200341a0d0c1006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101422070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101422060d050c0a0b200228021021060c050b200810122207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d701200341b0d0c1006a22062802004102460d030c080b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341b0d0c1006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101422060d020c070b200228021021060c020b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341f007470d050c060b200841011015000b200841011015000b200741011015000b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101422070d020c070b200228021021070c020b200810122207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d801200341c8006a220341f007470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101302400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810142205450d020c050b2002280210220520046a2006200310fe011a200420036a21032007450d060c050b2008101222050d030b200841011015000b1010000b200841011015000b2002200836021420022005360210200520046a2006200310fe011a200420036a21032007450d010b2006101f0b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410142203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210142203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2002101222030d0b0b200241011015000b200210122203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101422030d020c070b200128020021030c020b200210122203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011015000b200441011015000b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510142204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310142204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101422040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101422040d0a0c0d0b2005101222040d100b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0a0b200341011015000b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510122204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101422040d020c060b200228020021040c020b200310122204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310142204450d020c040b200228020021040c040b2003101222040d020b200341011015000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110fe011a0bfb0f01097f230041206b2202240002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d01200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c030b2009200041c0006a280200200110ed012004200541cc006a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d00200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c020b2009200041c0006a280200200110ed012004200541cc006a2205470d000b0b200241206a24000f0b1010000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000be20301017f230041e0056b22022400024002402001450d00200220003602080c010b200241a4a4c1003602080b2002200136020c200241f0036a200241086a101602400240024002400240024020022903e0044203510d00200241106a200241f0036a41e00110fe011a200241f0016a200241106a41e00110fe011a2002200241f0016a3602f003200241d0036a200241f0036a10cd0120022802d8032101200241f0036a200241f0016a41e00110fe011a200241d8056a20022802d803360200200220022903d0033703d005200241e0036a200241f0036a2001200241d0056a10cf010240024020022802e0034101470d004280828898f01f20022802e403410374ad88a7210041011012210141010d010c050b20022802e40341004721004101101221014100450d040b2001450d01200141013a000020014101410210142201450d020c040b20024184026a410136020020024104360214200241f0bbc200360210200242013702f401200241d0bbc2003602f0012002200241106a36028002200241f0016a41d8bbc200103a000b410141011015000b410241011015000b2001450d01200141003a0000200141014102101422010d00410241011015000b200120003a0001200241e0056a24002001ad428080808020840f0b410141011015000bf71203027f017e0a7f230041c0016b22022400102b20024180016a41086a22034200370300200242003703800141dd81c000410d20024180016a1000200241086a41086a20032903003703002002200229038001370308420021040240024002400240024002400240024002400240024002400240200241086a411041a4a4c100410041001001417f460d002002420037038001200241086a411020024180016a41084100100141016a41084d0d0120022903800121040b2004107f200241b0016a41086a22034200370300200242003703b001418080c0004115200241b0016a1000200241a0016a41086a2003290300370300200220022903b0013703a0010240024002400240024002400240200241a0016a411041a4a4c100410041001001417f460d0041002105200241003602084104210641012107200241a0016a4110200241086a41044100100141016a41044d0d0920022802082208450d012008ad420c7e2204422088a70d0f2004a722034100480d0f200310122206450d0c20062109410021050340411410122203450d03200341106a41002800bb8140360000200341086a41002900b38140370000200341002900ab81403700002003411441281014220a450d04200a200536001420024180016a41086a220b42003703002002420037038001200a411820024180016a1000200241086a41086a200b290300370300200220022903800137030802400240200241086a411041a4a4c100410041001001417f460d0020024210370284012002200241086a36028001200220024180016a10282002280200450d0920022802042203417f4c0d07024002402003450d0020031076220c450d0d200b200b280200220d20034100200228028001200228028401200c2003200d1001220d200d417f461b220d200d20034b1b220d6a360200200d2003460d010c0a0b4101210c20022802800120022802840141014100200b28020010011a41002003470d090b200b42003703002002420037038001200a411820024180016a1000200241b0016a41086a200b29030037030020022002290380013703b001200241b0016a41101005200c0d010b4101210c410021030b200a101f200941086a2003360200200941046a20033602002009200c3602002009410c6a21092008200541016a2205470d000b41002107200821050c010b4100210541012107410421060b410421084100210a4100210d02402005410c6c2203410c490d002003410c6e220d41037422094100480d0e200910122208450d0a0b0240200620036a220c2006460d004100210a200821032006210903402009280200210b200341046a200941086a2802003602002003200b360200200341086a2103200a41016a210a2009410c6a2209200c470d000b0b20024180016a2008200a10ce010240200d450d002008101f0b02402005450d002005410c6c21092006210303400240200341046a280200450d002003280200101f0b2003410c6a2103200941746a22090d000b0b024020070d002006101f0b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a22034200370300200242003703b00141ea81c0004115200241b0016a1000200241a0016a41086a220a2003290300370300200220022903b0013703a001200241a0016a4110200241086a41201004200241086a102f200241003602a801200242013703a001412010122203450d08200242a080808080043702a401200220033602a0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241a0016a102102400240024020022802a4012209200a280200220b6b41204f0d00200b41206a2203200b490d102009410174220a20032003200a491b220c4100480d102009450d0120022802a0012009200c1014220a450d020c0e0b200b41206a210320022802a001210a0c0e0b200c1012220a0d0c0b200c41011015000b411441011015000b412841011015000b100f000b2003450d00200c101f0b41de86c00041331023000b41de86c00041331023000b200341011015000b41de86c00041331023000b412041011015000b200941041015000b200341041015000b2002200c3602a4012002200a3602a001200c21090b200241a0016a41086a220c2003360200200a200b6a220b41086a200241c4006a290200370000200b41106a200241cc006a290200370000200b41186a200241d4006a290200370000200b200229023c3700000240200920036b411f4b0d00200341206a220b2003490d0120094101742205200b200b2005491b220b4100480d010240024002402009450d00200a2009200b1014220a450d010c020b200b1012220a0d010b200b41011015000b2002200b3602a4012002200a3602a0010b200c200341206a360200200a20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a28020022073602800120024180016a200241a0016a101302402007450d00200741246c2105200e210303400240024020032d00004101470d002003410c6a2802002109200341046a280200210a4100210b0c010b4101210b200341016a210a0b20024180016a41086a20093602002002200a360284012002200b36028001200241b0016a20024180016a101120022802b001210b024002400240024020022802a401220c200241a0016a41086a220828020022096b200241b0016a41086a280200220a4f0d002009200a6a220d2009490d06200c4101742206200d200d2006491b220d4100480d06200c450d0120022802a001200c200d1014220c0d020c070b20022802a001210c0c020b200d1012220c450d050b2002200d3602a4012002200c3602a0010b20082009200a6a220d360200200c20096a200b200a10fe011a024020022802b401450d00200b101f0b200341246a21032005415c6a22050d000b02402007450d00200741246c2109200e21030340024020032d0000450d00200341086a280200450d00200341046a280200101f0b200341246a21032009415c6a22090d000b0b200241146a280200450d040c030b200241a8016a280200210d20022802a001210c200241146a2802000d020c030b1010000b200d41011015000b200e101f0b200241c0016a2400200dad422086200cad840ba90a03017f037e087f230041f0016b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b20022001360204200241286a200210dc010240024002402002280228450d00200241086a41086a2201200241286a41086a220028020036020020022002290328370308200241186a41086a20012802003602002002200229030837031820024180016a200241186a10dd012002280280014101460d0120024180016a41086a2201290300210320014200370300200242003703800141f594c000410d20024180016a100020002001290300370300200220022903800137032842002104024002400240200241286a411041a4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d0120022903800121040b20024180016a41086a220142003703002002420037038001418295c000411520024180016a1000200241286a41086a2001290300370300200220022903800137032802400240200241286a411041a4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d03200229038001210541e001210041e00110122201450d010c060b4205210541e001210041e001101222010d050b200041081015000b41de86c00041331023000b41de86c00041331023000b20024194016a410136020020024104360274200241f8bbc2003602702002420137028401200241d0bbc200360280012002200241f0006a3602900120024180016a41d8bbc200103a000b41d99ac000412820022802840120024180016a41086a2802001037000b200120024180016a41f00010fe0122064202370370200641003a00880120064202370390012006200229037037037820064180016a200241f0006a41086a29030037030020062002280069360089012006418c016a200241e9006a41036a28000036000020062003200520047c220420042003541b37039801200620022903283703a001200641a8016a200241286a41086a290300370300200641b0016a200241386a290300370300200641b8016a200241c0006a290300370300200641c0016a200241c8006a290300370300200641c8016a200241d0006a290300370300200641d0016a200241d8006a290300370300200641d8016a200241e0006a290300370300200228021822072108200228021c2209210a0340200841086a210020082f0106220c4103742101417f210b02400240024003402001450d01419c8cc00020004108108002220d450d03200141786a2101200b41016a210b200041086a2100200d417f4a0d000b200a0d010c020b200c210b200a450d010b200a417f6a210a2008200b4102746a41e4016a28020021080c010b0b20072009200228022010c8012002410036023020024201370328200241013602800120024180016a200241286a1013200228022c210b200228023021012002200636027020024180016a200241f0006a10cd012002280280012108024002400240024002400240200b20016b200228028801220d4f0d002001200d6a22002001490d03200b410174220a20002000200a491b220a4100480d03200b450d012002280228200b200a1014220b450d020c040b2001200d6a21002002280228210b0c040b200a1012220b0d020b200a41011015000b1010000b2002200a36022c2002200b3602280b200241306a2000360200200b20016a2008200d10fe011a0240200228028401450d002008101f0b20064188016a107e2006101f200241f0016a24002000ad422086200bad840bec0d06027f017e0a7f017e067f017e230041a0026b22022400200241186a200110170240024002400240024002400240024002400240024002402002280218450d00200228021c2203ad2204421d88a70d0a2004420386a72205417f4c0d0a024002400240024002400240024002400240024002400240024002402005450d00200510122206450d022003450d010c030b4101210620030d020b410021054100210b2006450d0c0c020b200541011015000b200141046a210741002108410021094100210a2003210b034020024200370340200241c0006a2001280200220c2007280200220541082005410849220d1b220e10fe011a20072005200e6b3602002001200c200e6a360200200d0d02200a41016a2105200229034021040240200a200b470d002008200520052008491b220bad420386220f422088a70d13200fa7220e4100480d130240200a450d0020062009200e101422060d010c070b200e10122206450d060b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0a0b2005ad422086200bad84210f200241106a200110172002280210450d0720022802142203ad420c7e2204422088a70d132004a72205417f4c0d132005450d0120051012220c450d042003450d020c050b200b0d070c080b4104210c20030d030b410021094100210b200c450d040c030b200e41011015000b200541041015000b410021084100210a4100210e2003210b0340200241086a2001101702400240024002402002280208450d00200228020c2205417f4c0d12024002402005450d00200510762207450d0320072001280200200141046a220d2802002209200520092005491b220910fe011a200d28020022102009490d04200d201020096b3602002001200128020020096a36020020092005470d010c050b4101210741002005460d040b2005450d002007101f0b0240200e450d00200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b200b450d05200c101f0c050b200541011015000b20092010101a000b200e41016a21090240200e200b470d002008200920092008491b220bad420c7e2204422088a70d0c2004a7220d4100480d0c0240200e450d00200c200a200d1014220c0d010c0e0b200d1012220c450d0d0b200c200a6a220e2007360200200e41046a2005ad2204422086200484370200200841026a2108200a410c6a210a2009210e20092003490d000b200c450d010b2009200f422088a7470d0320024200370224200241a893c100360220200c2009410c6c6a211020094103742205450d04200620056a2111200241206a41086a2112200241d4006a2113200241d0006a2114200c2108200621030340200822052010460d062005410c6a210820052802002215450d0720052902042104200220032900002216370330024002402002280220220e41a893c100460d00200228022421070c010b41e4011012220e450d0d41002107200e41003b0106200e4100360200200e41086a200241c0006a41dc0110fe011a200241003602242002200e3602200b200341086a210302400340200e41086a210a200e2f0106220d410374210541002109024003402005450d01200241306a200a41081080022201450d03200541786a2105200941016a2109200a41086a210a2001417f4a0d000b2009417f6a210d0b02402007450d002007417f6a2107200e200d4102746a41e4016a280200210e0c010b0b2013201637020020142012360200200241c0006a410c6a200d360200200241c0006a41086a200241206a3602002002200e360244200241003602402002200437023420022015360230200241c0006a200241306a10c90120032011470d010c080b200e2009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d002005101f0b20032011470d000c070b0b200fa7450d010b2006101f0b200041003602000c0a0b2000410036020002402009450d002009410c6c210a200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b0240200b450d00200c101f0b200fa7450d092006101f200241a0026a24000f0b200c2108200fa70d020c030b201021080b200fa7450d010b2006101f0b024020082010460d00034020082802002205450d010240200841046a280200450d002005101f0b2008410c6a22082010470d000b0b0240200b450d00200c101f0b200241c0006a41086a2205200241206a41086a28020036020020022002290320370340200041086a200528020036020020002002290340370200200241a0026a24000f0b1010000b200d41041015000b41e40141041015000b100f000b200241a0026a24000bad0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141aba0c100200641081080022208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2201450d00200128020821062001280200210120024200370308200241086a200120064108200641084922071b10fe011a20070d01200041086a2002290308370300410021010c030b200041b3a0c100360204200041086a41283602000c010b200041dba0c100360204200041086a41293602000b410121010b20002001360200200241106a24000bac3a190c7f017e037f017e097f027e017f017e077f037e027f017e057f027e027f037e067f027e037f017e0c7f027e0e7f027e107f230041d0026b22022400024002402001450d00200220003602100c010b200241a4a4c1003602100b20022001360214200241f0006a200241106a107c0240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10dc012002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241a893c100360250200241d0006a41086a210a2004450d0241e001210b2008200441e0016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f2120410221214178212241f594c000212341a4a4c100212441152125418295c0002126423c2127428080808070212842252129418801212a41ff01212b427f212c41de9fc100212d41e000212e4107212f20082130410021310c030b2002412c6a41013602002002410436025420024180bcc2003602502002420137021c200241d0bbc2003602182002200241d0006a360228200241186a41d8bbc200103a000b20024184016a41013602002002410436025420024180bcc20036025020024201370274200241d0bbc2003602702002200241d0006a36028001200241f0006a41d8bbc200103a000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b412f411e2072205c410c6c6a41a07f4622451b214641a48cc0004184a1c10020451b21450c010b02400240024002400240024020310e06000501020304040b2030200d6a290300200e520d13024020302d0088012201450d002001202b712201450d230c540b203029039001200e520d212030290398012132200241f0006a200241c0006a10dd010240024020022802704101470d00200f3502002133200228027421344101213520112d0000450d010c0d0b200f290300213642002133200f42003703002002420037037020232010200241f0006a10002009200f290300370300200220022903703703180240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0a200229037021330b200f42003703002002420037037020262025200241f0006a10002009200f29030037030020022002290370370318024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0d200229037021372032203620277c580d020c010b420521372032203620277c580d010b203820288320298421334101213541b49ac000213420112d0000450d010c0d0b410021352032203720337c22335a0d2120112d00000d0c0b024002402035450d0020022802502002280254200a28020010c80120024200370254200241a893c100360250200220123703180c010b2002280250213920022012370318203941a893c100460d002002280254213a0c200b201310122239450d0a4100213a203941003b010620394100360200203941086a200241f0006a201410fe011a20024100360254200220393602500c1e0b20482050204e204f6a22012001204e491b6a22012048490d4e2048204f742200200120012000491b2249ad2051862232205288a70d4e2032a722012053480d4e02402048450d00204a204820547420011014224a0d0f0c060b20011012224a450d05410321310c170b204a20482054746a204d3602002048204f6a2148204e450d270240204c20462f01064f0d002046204c2055746a20566a214d204c204f6a214c204e20506a214e20492048460d0c0c0d0b41012101024020462f01042200204628020022462f0106490d004101210103402001204f6a210120462f01042200204628020022462f01064f0d000b0b204620002055746a20566a214d204620002054746a20576a28020021464100214c2001204f460d25204f20016b2101034020462802e40121462001204f6a22010d000c260b0b20592060205f20586a22012001205f491b6a22012059490d4c20592058742200200120012000491b225aad2061862232206288a70d4c2032a722012063480d4c02402059450d00205b205920647420011014225b0d100c050b20011012225b450d04410521310c190b205b20592064746a205e360200205920586a21590240205f450d000240205d20452f01064f0d002045205d20656c6a20666a215e205d20586a215d205f20606a215f205a2059460d0e0c0f0b41012101024020452f01042200204528020022452f0106490d00410121010340200120586a210120452f01042200204528020022452f01064f0d000b0b2045200020656c6a20666a215e204520002064746a20676a28020021454100215d20012058460d23205820016b2101034020452802e4012145200120586a22010d000c240b0b205b215c2048413f4b0d370c280b2069280200227220686a210020722f0106223e206b7421014100215c024003402001450d01206f20002068108002223d450d11200120706a2101205c20716a215c200020686a2100203d206c4a0d000b205c206c6a213e0b0240206a450d00206a206c6a216a2072203e206d746a206e6a2169410121310c110b412f214641a48cc00021450b2002204636026420022045360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c701200228020022460d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c220b200141041015000b200141041015000b41de86c00041331023000b41de86c00041331023000b41e40141041015000b41e890c100412241b790c10041311037000b41e890c1004122204620022802041037000b410221310c080b410321310c080b410321310c090b410421310c090b410521310c090b410521310c0a0b410021010c460b410121010c450b410221010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b4100213c0c040b4100213c0c040b410021010c040b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b2030202a6a2d0000202b7122010d34410121010c060b203029039001200e520d34203029039801213f200f42003703002002420037037020262025200241f0006a10002009200f290300370300200220022903703703180240024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d02200229037021320c010b420521320b202c203220327c224020402032541b2240500d01200241c0006a2141200228024421420c030b41de86c00041331023000b41bccac1001024000b0240024002400240024002400240024002400240024002400240203c0e020001010b203941086a210020392f0106223b20157421014100213d024003402001450d01200241186a20004108108002223e450d08200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a213b0b0240203a450d00203a20206a213a2039203b2021746a20136a28020021394100213c0c0e0b201620123702002018200a360200201a203b360200200f200241d0006a360200200220393602742002201b3602702009201b3602002002201c3703184101101221010240024002400240024002402035450d002001450d0d200141013a00002002201d37021c2002200136021820022033a72201360260200241e0006a200241186a1013200228021c223d200928020022006b20014f0d01200020016a223e2000490d40203d410174223b203e203e203b491b223e201b480d40203d450d022002280218203d203e1014223d0d030c0e0b2001450d0e2001201b3a00002002201d37021c2002200136021820014101201e10142201450d0f200120333700012002201f37021c200220013602180c040b2002280218213d0c020b203e1012223d450d0b0b2002203e36021c2002203d3602180b2009200020016a360200203d20006a2034200110fe011a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10c901201120353a0000200241d0006a20196a201b3a00002033213820350d01410021010c100b2041280200223b41086a2100203b2f0106224320157421014100213d02400240024003402001450d01202d20004108108002223e450d02200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a21430b2042450d01204220206a2142203b20432021746a20136a21414101213c0c100b203b202e6a203d20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10fe011a2001202f4d0d02203f20408020022903702244520d040c3f0b204442808080807083421c842132418fa0c10021460c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b204442808080807083422984213241e69fc10021460b2032a721450c010b4131214541eb8bc00021460b2002204536026420022046360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c701200228020822460d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41e890c1004122418a90c100412d1037000b410141011015000b203e41011015000b410141011015000b410941011015000b41e890c10041222046200228020c1037000b4101213c0c010b410221010c020b410221010c010b410221010c000b0b205f20606a215f024002400240205a2059470d00410421310c010b410521310c010b410221010c340b410221010c330b204e20506a214e02400240024020492048470d00410221310c010b410321310c010b410221010c330b410221010c320b20022802402002280244200228024810c80102402006450d00200641246c2145200321460340024020462d0000450d00204641086a280200450d00204641046a280200101f0b204641246a21462045415c6a22450d000b0b02402007450d002003101f0b02402004450d00200441e0016c214520084188016a214603402046107e204641e0016a2146204541a07e6a22450d000b0b02402005450d002008101f0b410110122246450d05204620022d007c3a000020464101410210142247450d06204720022d007d3a0001200228027022452146024020022802742200450d002045214620002101034020462802e40121462001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782231450d002031417f6a214820462f0106450d01204641086a213d410121000c020b410021494104214a4104214b4100214820000d030c040b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a213d204620004102746a41e8016a28020021464100210020014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b417f204841016a220120012048491b2249ad2232421e88a70d042032420286a72201417f4c0d04024002400240024002402001450d0020011012224a450d0d204a203d3602002048450d020c010b4104214a4104203d3602002048450d010b200020462f01064f0d01200041016a214c204620004103746a41086a214d0c020b410121480c020b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a214d204620004102746a41e8016a28020021464100214c20014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b2031417e6a214e4101214f417f215042022151422021524100215341022154410321554108215641e80121574101214820494101470d0b0c0a0b204a214b2002280270214520022802742200450d010b20002101034020452802e40121452001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002258450d002058417f6a215920452f0106450d01204541e0006a2131410121000c020b4100215a4104215b4104215c410021592048413f4d0d020c110b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a2131204520004102746a41e8016a28020021454100210020014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b417f205941016a220120012059491b225aad2232421e88a70d012032420286a72201417f4c0d01024002400240024002402001450d0020011012225b450d0b205b20313602002059450d020c010b4104215b410420313602002059450d010b200020452f01064f0d01200041016a215d20452000410c6c6a41e0006a215e0c020b41012159205b215c2048413f4b0d110c020b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a215e204520004102746a41e8016a28020021454100215d20014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b2058417e6a215f41012158417f216042022161422021624100216341022164410c216541e000216641e801216741012159205a4101470d0a0c090b41012104410110122258450d03205820484102743a000020484102742245450d140c0f0b100f000b410141011015000b410241011015000b410141011015000b200141041015000b200141041015000b410221310c030b410321310c030b410421310c030b410521310c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402048418080014f0d0041022104410210122258450d02205820484102744101723b0000204841027422450d010c060b024020484180808080044f0d0041042104410410122258450d0320582048410274410272360000204841027422450d010c060b410110122246450d03204641033a00004105210420464101410510142258450d042058204836000120484102742245450d050b410020046b21462004214802400340204b28020021010240200420466a41074b0d00204841086a22002048490d152004410174224f20002000204f491b22004100480d15024002402004450d00205820042000101422580d010c040b200010122258450d030b200021040b204b41046a214b205820486a2001290000370000204641786a2146204841086a21482045417c6a22450d000b2059413f4b0d070c060b200041011015000b410241011015000b410441011015000b410141011015000b410541011015000b200421482059413f4b0d010b4101214541011012224b450d08204b20594102743a00004101210120590d010c020b02402059418080014f0d004102214541021012224b450d07204b20594102744101723b00000c010b024020594180808080044f0d004104214541041012224b450d06204b20594102744102723600000c010b410110122246450d04204641033a0000410521452046410141051014224b450d03204b20593600010b2059410274214f204521010340205c28020022462802002159024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020462802082246413f4b0d0020452001470d01204541016a22012045490d2120454101742200200120012000491b22004100480d212045450d05204b204520001014224b0d060c0f0b2046418080014f0d01204520016b41014b0d02200141026a22002001490d2020454101742268200020002068491b22004100480d202045450d0b204b204520001014224b0d0c0c0f0b204521000c050b20464180808080044f0d01204520016b41034b0d05200141046a22002001490d1e20454101742268200020002068491b22004100480d1e024020450d0020001012224b450d100c070b204b204520001014224b0d060c0f0b204521000c090b20452001470d05204541016a22012045490d1c20454101742200200120012000491b22004100480d1c0240024020450d0020001012224b450d100c010b204b204520001014224b450d0f0b204521010c060b20001012224b450d090b204521010b204b20016a20464102743a00002000200141016a22016b20464f0d060c0c0b204521000b204b20016a20464102744102723600002000200141046a22016b2046490d0a0c040b204521000b204b20016a41033a000002402000200141016a22456b41034b0d00204541046a22682045490d1620004101742231206820682031491b22684100480d16024002402000450d00204b200020681014224b0d010c080b20681012224b450d070b206821000b204b20456a20463600002000200141056a22016b2046490d080c020b20001012224b450d030b204b20016a20464102744101723b00002000200141026a22016b2046490d060b200021450c060b200041011015000b200041011015000b206841011015000b200041011015000b200041011015000b200120466a22452001490d0c20004101742268204520452068491b22454100480d0c02402000450d00204b200020451014224b0d010c040b20451012224b450d030b205c41046a215c204b20016a2059204610fe011a200120466a2101204f417c6a224f0d000b0b024002400240200420486b20014f0d00204820016a22462048490d0c20044101742200204620462000491b22004100480d0c2004450d0120582004200010142258450d020c090b204820016a2146205820486a204b200110fe011a2045450d0a0c090b2000101222580d070b200041011015000b204541011015000b410541011015000b410141011015000b410441011015000b410241011015000b410141011015000b20002104205820486a204b200110fe011a2045450d010b204b101f0b0240205a450d00205b101f0b02402049450d00204a101f0b02402046450d00204641026a22452046490d0120454104204541044b1b22014100480d0120474102200110142247450d02204741026a2058204610fe011a2004450d040c030b204641026a2145204741026a2058204610fe011a20040d020c030b1010000b200141011015000b2058101f0b20022802702002280274200241f8006a28020010c801200241d0026a24002045ad4220862047ad840f0b20014101470d002030280290012015460d010b2030200b6a2230200c470d01410021010c050b200241c0006a21692002280244216a410821684103216b417f216c4102216d41e401216e419c8cc000216f41782170410121710c010b410021310c010b410121310c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a220342003703002002420037033041cc81c0004111200241306a1000200241206a41086a2003290300370300200220022903303703200240024002400240200241206a411041a4a4c100410041001001417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010012203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010122203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101222030d020b200441011015000b41de86c00041331023000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bfb1404047f017e087f017e230041c0076b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b20022001360204200241e0056a20021016024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903d0064203510d00200241086a200241e0056a41e00110fe011a200241e8016a200241086a41e00110fe011a2002200241e8016a3602d004200241e0056a200241d0046a10cd0120022802e8052103024020022802e405450d0020022802e005101f0b200241e0056a200241e8016a41e00110fe011a200241d0046a200241e0056a101c024002400240024002400240024020022802d0044101470d0020022802d404210120022802d8042200411a460d0120004115470d024102210441f6012100200141949bc100460d0f200141949bc10041151080020d020c0f0b200241c8036a200241d0046a41086a41880110fe011a410021040240200241c8036a41086a410020022903c8034201511b2201450d002001450d00410321002001200310bb01450d03410021040c0e0b4176416c20011b21000c0d0b41002100200141a99bc100460d0241002104200141a99bc100411a108002450d0d0b4100210441810121000c0c0b200141206a410020011b210c2001102621064101210041002104200c290300220f2006540d0a4102210041022104200f20064280027c560d0a2006200f5a0d014100210b41002105410021074100210e410421090340412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142200450d062000200637002002402007200e470d00200741016a220a2007490d20200b200a200a200b491b220ead420c7e220f422088a70d20200fa7220a4100480d2002402007450d0020092005200a101422090d010c090b200a10122209450d080b200920056a220a2000360200200a41046a42c08080808005370200200b41026a210b2005410c6a2105200741016a2107200642017c2206200c290300220f540d000c030b0b410021040c0a0b41042109410021074100210e0b410c1012220d450d04412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142201450d062003ad21062001200f370020200d42c08080808005370204200d2001360200200241f8036a1020200241003602e805200242013703e00541012104410121014101101222000d090c140b200241fc016a41013602002002410436020c20024188bcc200360208200242013702ec01200241d0bbc2003602e8012002200241086a3602f801200241e8016a41d8bbc200103a000b412041011015000b41c00041011015000b200a41041015000b410c41041015000b412041011015000b41c00041011015000b200241f8036a10200b200241003602e805200242013703e005024020044101460d0020044102470d02410110122201450d0d200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41023a000020022802e40520032802002201470d04200141016a22032001490d1320014101742205200320032005491b22054100480d132001450d0820022802e0052001200510142203450d090c160b41012101410110122200450d0b0b200241e0056a41086a22032003280200220520016a360200200220013602e405200220003602e005200020056a20013a000020022802e4052200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802e0052000200110142200450d050c0f0b410110122201450d0b200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41003a000020022802e40520032802002201470d02200141016a22032001490d1020014101742205200320032005491b22054100480d102001450d0720022802e0052001200510142203450d080c0c0b20022802e00521000c0e0b20022802e00521030c120b20022802e00521030c0a0b2001101222000d0a0b200141011015000b2005101222030d0d0b200541011015000b2005101222030d040b200541011015000b200120011015000b410141011015000b410141011015000b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000c070b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2205200141086a360200200020016a2006370000200220073602e801200241e8016a200241e0056a101302400240024002402007450d0020092007410c6c6a21082009210303402003280200210a2002200341086a28020022013602e801200241e8016a200241e0056a1013024002400240024020022802e405220b200528020022006b20014f0d00200020016a220c2000490d09200b4101742200200c200c2000491b22004100480d09200b450d0120022802e005200b20001014220b0d020c060b20022802e005210b0c020b20001012220b450d040b200220003602e4052002200b3602e005200528020021000b2005200020016a360200200b20006a200a200110fe011a2003410c6a22032008470d000b0b200241013602e801200241e8016a200241e0056a1013200d280200210b2002200d28020822013602e801200241e8016a200241e0056a101302400240024020022802e4052203200528020022006b20014f0d00200020016a22052000490d0620034101742200200520052000491b22004100480d062003450d0120022802e0052003200010142203450d020c040b20022802e00521030c040b2000101222030d020b200041011015000b200041011015000b200220003602e405200220033602e005200241e8056a28020021000b200241e0056a41086a2205200020016a360200200320006a200b200110fe011a02400240024020022802e4052200200528020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802e0052000200110142200450d020c040b20022802e00521000c040b2001101222000d020b200141011015000b1010000b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2203200141086a360200200020016a427f3700002003280200210320022802e005210520044101470d0302402007450d002007410c6c21002009210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b0240200e450d002009101f0b0240200d41046a280200450d00200d280200101f0b200d101f0c030b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000b200241e8056a280200210320022802e00521050b200241c0076a24002003ad4220862005ad840be90104027f017e017f017e230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a20032903003703002002200229031037030002400240024002402002411041a4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d022002290310210441082105410810122203450d010c030b42052104410821054108101222030d020b200541011015000b41de86c00041331023000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840bc90202027f017e23004180016b22022400200028020021000240024002400240200128020022034110710d002000290300210420034120710d012004200110e501210020024180016a240020000f0b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d0120014182a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d0120014182a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b2000418001101a000b2000418001101a000b860605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce0042001081022002200229031022072006290300220842f0b17f427f108202200241206a20006a2203417c6a200520022903007ca7220941e4006e220a41017441d6a4c1006a2f00003b00002003417e6a200a419c7f6c20096a41017441d6a4c1006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b2007a7220341e3004a0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d0320014182a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d0320014182a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b412721002005a7220341e3004c0d030b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff037141017441d6a4c1006a2f00003b0000200941094a0d030c040b2000418001101a000b2000418001101a000b2003220941094c0d010b200241206a2000417e6a22006a200941017441d6a4c1006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141a4a4c1004100200241206a20006a412720006b10e4012100200241a0016a240020000bc80601077f20002802002205410171220620046a2107024002400240024020054104710d0041002101412b418080c40020061b210620002802084101460d010c020b4100210902402002450d002002210a200121080340200920082d000041c00171418001466a2109200841016a2108200a417f6a220a0d000b0b200720026a20096b2107412b418080c40020061b210620002802084101470d010b02400240024002400240024002400240024002402000410c6a280200220920074d0d0020054108710d01200920076b2108410120002d0030220920094103461b2209410371450d0220094102460d034100210b200821090c040b41012108200020062001200210f6010d0a2000280218200320042000411c6a28020028020c1101000f0b41012108200041013a003020004130360204200020062001200210f6010d09200920076b21084101200041306a2d0000220920094103461b2209410371450d0320094102460d0441002107200821090c050b410021092008210b0c010b20084101762109200841016a410176210b0b417f2108200041046a210a200041186a21072000411c6a210502400340200841016a220820094f0d012007280200200a2802002005280200280210110000450d000b41010f0b200041046a280200210a41012108200020062001200210f6010d06200041186a2209280200200320042000411c6a220228020028020c1101000d0620092802002100417f2109200228020041106a21020340200941016a2209200b4f0d04410121082000200a2002280200110000450d000c070b0b41002109200821070c010b20084101762109200841016a41017621070b417f2108200041046a210a200041186a21022000411c6a210102400340200841016a220820094f0d012002280200200a2802002001280200280210110000450d000b41010f0b200041046a280200210a41012108200041186a2209280200200320042000411c6a220228020028020c1101000d0320092802002100417f2109200228020041106a21020340200941016a220920074f0d02410121082000200a2002280200110000450d000c040b0b41000f0b41000f0b41012108200020062001200210f6010d002000280218200320042000411c6a28020028020c1101000f0b20080bd20203037f017e027f230041306b220224004127210302400240024020004290ce00540d00412721030340200241096a20036a2204417c6a200020004290ce0080220542f0b17f7e7ca7220641e4006e220741017441d6a4c1006a2f00003b00002004417e6a2007419c7f6c20066a41017441d6a4c1006a2f00003b00002003417c6a2103200042ffc1d72f5621042005210020040d000b2005a7220441e3004c0d020c010b20002205a7220441e3004c0d010b200241096a2003417e6a22036a2005a7220641ffff037141e4006e2204419c7f6c20066a41ffff037141017441d6a4c1006a2f00003b00000b02400240200441094a0d00200241096a2003417f6a22036a200441306a3a00000c010b200241096a2003417e6a22036a200441017441d6a4c1006a2f00003b00000b200141a4a4c1004100200241096a20036a412720036b10e4012103200241306a240020030b960201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141d0c7c2006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141e8c9c2006a2d0000220141c9004b0d03200141037441b0b2c1006a21010c010b2000410c7641706a22014180024f0d03200141c8d1c2006a2d00004106742000410676413f7172220141ff034b0d0420014180b7c1006a2d0000220141364b0d0520014103744180bbc1006a21010b200129030042012000413f71ad86834200520f0b41c8d3c200200141e0071048000b41d8d3c200200141ca001048000b41e8d3c20020014180021048000b41f8d3c20020014180041048000b4188d4c200200141371048000b2701017f2000280200220128020020012802042000280204280200200028020828020010e801000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c200441a4a4c1004184a7c10020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4104360200200441e4006a4104360200200441c8006a41146a4108360200200441d4006a4109360200200441306a41146a4105360200200420023602582004410136024c20044205370234200441e8c6c2003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a4190c7c200103a000b20042002200320081b360228200441c8006a41146a4104360200200441d4006a4104360200200441306a41146a41033602002004410136024c20044203370234200441f8c5c2003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a4190c6c200103a000b200441e4006a4104360200200441c8006a41146a4104360200200441d4006a4101360200200441306a41146a41043602002004410136024c20044204370234200441a0c6c2003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41c0c6c200103a000b41d0c6c2001024000b130020004102360204200041f0bfc2003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242013700000f0b410841011015000b130020004107360204200041ae9cc1003602000b130020004104360204200041c0c1c2003602000be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510142204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310142204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101422040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101422040d0a0c0e0b2005101222040d110b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0b0b200341011015000b200310122204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510122204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101422040d020c070b200228020021040c020b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d501200041086a22002001470d000b0b0bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d4012000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d4012000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000b0b0b2700200028020c200041106a2802001008200041146a350200100c200041186a350200100c00000b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10fe011a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010fd011a0b20010b0c002000350200200110e5010b0d0042f18afdd3f88ff29bfb000b5501017f024002402001418080c400460d0041012104200028021820012000411c6a2802002802101100000d010b02402002450d002000280218200220032000411c6a28020028020c1101000f0b410021040b20040b8008010b7f200028021021030240024002400240024002400240024002400240200028020822044101470d0020030d010c020b2003450d070b02402002450d00200120026a2105200041146a280200417f732106410021072001210320012108024002400340200341016a21090240024020032c0000220a4100480d00200a41ff0171210a20092103200641016a22060d010c030b02400240024020092005460d0020092d0000413f71210b200341026a22032109200a411f71210c200a41ff0171220a41e001490d010c020b4100210b20052103200a411f71210c200a41ff0171220a41e0014f0d010b200b200c41067472210a20092103200641016a22060d010c030b02400240024020032005460d00200341016a2209210d20032d0000413f71200b41067472210b200a41f001490d010c020b2005210d4100200b41067472210b200a41f0014f0d010b200b200c410c7472210a20092103200641016a22060d010c030b02400240200d2005460d00200d41016a2103200d2d0000413f71210a0c010b4100210a200921030b200b410674200c411274418080f0007172200a72220a418080c400460d03200641016a2206450d020b200720086b20036a21072003210820052003470d000c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b2004450d020c010b410021022004450d010b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200220096b2000410c6a28020022064f0d014100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2109410020002d0030220320034103461b2203410371450d0220034102460d03410021080c040b2000280218200120022000411c6a28020028020c1101000f0b2000280218200120022000411c6a28020028020c1101000f0b20092108410021090c010b200941016a4101762108200941017621090b417f2103200041046a210a200041186a21062000411c6a210702400340200341016a220320094f0d012006280200200a2802002007280200280210110000450d000b41010f0b200041046a280200210941012103200041186a220a280200200120022000411c6a220628020028020c1101000d01200a280200210a417f2103200628020041106a210602400340200341016a220320084f0d01200a20092006280200110000450d000b41010f0b41000f0b2000280218200120022000411c6a28020028020c11010021030b20030b7c01017f230041306b22022400200241146a410a3602002002410a36020c200220003602082002200041046a3602102001411c6a2802002100200128021821012002412c6a41023602002002420237021c200241a0c7c2003602182002200241086a36022820012000200241186a10fb012101200241306a240020010b9e0c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b200310e601450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641f8a7c1002107410021084102210941b002210a41c8a8c100210b41c8a8c100210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe0371410876211341b3adc10021144100211541022116419f01211741f5adc100211841f5adc1002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041f7aac10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41b3adc100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241b3adc100470d000b0b41012102200f410171450d0c0c0e0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff037121004193afc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e4190b2c100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f20024190b2c100470d000b0b41012102200f410171450d0b0c0d0b20082011101a000b201141af021049000b20152011101a000b2011419e011049000b41d0c6c2001024000b41d0c6c2001024000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e0340024002400240024002400240024020024101460d00024020024102460d0020024103470d062005422088a741ff0171417f6a220241044b0d06024020020e050006040503000b200542ffffffff8f6083210541fd002100410321020c070b41dc002100410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c00084210541dc002100410321020c040b200542ffffffff8f608342808080802084210541fb002100410321020c030b200542ffffffff8f608342808080803084210541f5002100410321020c020b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f83200542808080807083842105410321020c020b200542ffffffff8f6083428080808010842105410321020c010b200141186a28020041272001411c6a28020028021011000021020c020b200f2802002000200e280200280210110000450d000b41010f0b20020bbb0201037f23004180016b220224000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000b9709010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a3602002003428080808080043703082003200036022041002106200341003602182003410036021020032005360230200320053602280240024002400240024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2100200341346a2101200341306a210b4101210603402000200741206a2d00003a00002003200741086a28020036020c20032007410c6a280200360208410021020240024002400240200741186a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b2007411c6a280200220c200128020022044f0d0a200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b2007411c6a28020021040b410121020b200341086a410c6a2004360200200341086a41086a2002360200410021020240024002400240200741106a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b200741146a280200220c200128020022044f0d0b200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b200741146a28020021040b410121020b200341086a41146a2004360200200341086a41106a20023602000240024020072802004101470d00200741046a2802002202200128020022044f0d07200b28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d072004200241086a3602000b2002280200200341086a200241046a2802001100000d032006200a4f0d02200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d000c030b0b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000f0b41c0c7c200200220041048000b41d0c6c2001024000b41b0c7c200200c20041048000b41b0c7c200200c20041048000b0c002000350200200110e5010b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b22052400200520012002200320044100108502200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa7108402200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff0071108302200641106a20012002200741ff0071108402200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bc5d4020200418080c0000bb0bf0153797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e53797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d204576656e747353797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63653a65787472696e7369635f696e6465784d656d6f557064617465642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6d656d6f2e727353797374656d20506172656e7448617368426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d4163636f756e744e6f6e6365543a3a496e64657845787472696e736963436f756e74416c6c45787472696e736963734c656e426c6f636b4861736845787472696e7369634461746152616e646f6d536565644e756d626572506172656e744861736845787472696e73696373526f6f74446967657374543a3a4469676573744576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e4d656d6f4d61784d656d6f4c656e6774684d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f7570646174655f6d656d6f73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c69642074797065000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72737372632f6c6962636f72652f726573756c742e72733a203a617574683a6c656e41757261204c61737454696d657374616d70436f6e73656e737573204f726967696e616c417574686f7269746965734175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e72734f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e3a636f64652f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f636f6e73656e7375732f7372632f6c69622e7273000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c6f66666c726570304e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e742064617461217265706f72745f6d69736265686176696f726e6f74655f6f66666c696e6572656d61726b7365745f686561705f70616765737365745f636f64657365745f73746f726167652053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f7465207468652070726576696f757320626c6f636b27732076616c696461746f72206d6973736564207468656972206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f75722e5f7265706f7274436f6e73656e7375734f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a68656170706167657300002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f736f72742e7273617373657274696f6e206661696c65643a206d6964203c3d206c656e00000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727373797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e676665657370726f706f73616c73656c656374696f6e636f756e63696c6d656d6f6a6f7973747265616d2d6e6f646500df6acb689907609b0100000037e397fc7c91f5e40100000040fe3ad401f8959a02000000d2bc9897eed08f1501000000dd718d5cc53262d4010000004469676573744974656d206e6f7420657175616c6e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d6554696d657374616d70204469645570646174656163636f756e742068617320746f6f206665772066756e647354696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f74696d657374616d702f7372632f6c69622e727354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f6442616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e6365496e646963657320456e756d53657454696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c426c6f636b506572696f643e206265747765656e2073657175656e7469616c20626c6f636b734e65774163636f756e745265617065644163636f756e745472616e73666572205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e20416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e4e65774163636f756e74496e6465782041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465782f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f696e64696365732f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f62616c616e6365732f7372632f6c69622e727354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e74206461746142616c616e636573204578697374656e7469616c4465706f7369746e6f7420656e6f75676820667265652066756e6473496e64696365734e657874456e756d536574543a3a4163636f756e74496e646578456e756d5365742054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e7472616e736665727365745f62616c616e636520536574207468652062616c616e636573206f66206120676976656e206163636f756e742e77686f66726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572207374616b65722e6465737476616c756542616c616e636573546f74616c49737375616e6365543a3a42616c616e63654578697374656e7469616c4465706f7369745472616e736665724665654372656174696f6e46656556657374696e6756657374696e675363686564756c653c543a3a42616c616e63653e4672656542616c616e6365526573657276656442616c616e63652054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e20285468697320697320646966666572656e7420616e642077686f6c6c7920756e72656c6174656420746f207468652060426f6e64616765602073797374656d207573656420696e20746865207374616b696e67206d6f64756c652e29205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420697320616c6f6e65207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865726d6f72652c20604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e75702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e204174206c6561737420617320626967206173205265636c61696d5265626174652e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420616c6c6f77656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20616d6f756e74206f66207374616b65206f6e207468652073797374656d2e73657420536574207468652063757272656e742074696d652e2045787472696e736963207769746820746869732063616c6c2073686f756c6420626520706c616365642061742074686520737065636966696320706f736974696f6e20696e20746865206561636820626c6f636b2028737065636966696564206279207468652054726169743a3a54494d455354414d505f5345545f504f534954494f4e29207479706963616c6c7920617420746865207374617274206f6620746865206561636820626c6f636b2e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e74207370656369666965642062792060626c6f636b5f706572696f64602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d704e6f77426c6f636b506572696f6444696455706461746520446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d2028616e6420616476697365642920706572696f64206265747765656e20626c6f636b732e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e42616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656542616c616e6365732056657374696e67496e6469636573204e657874456e756d53657476657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c756562616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e74676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c7565436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573456c656374696f6e53746172746564416e6e6f756e63696e6753746172746564416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465644170706c69656452657665616c65642041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f644175746f53746172745374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e526f756e644578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e436f6d6d69746d656e74735665633c543a3a486173683e566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e416e6e6f756e63696e67506572696f6452657665616c696e67506572696f64436f756e63696c53697a6543616e6469646163794c696d69744d696e436f756e63696c5374616b654e65775465726d4475726174696f6e4d696e566f74696e675374616b65436f756e63696c456c656374696f6e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e72734f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167656d696e696d756d207374616b65206d7573742062652070726f7669646564656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b65214f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e67207374616765766f74696e67207374616b6520746f6f206c6f77436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e6720737461676573616c7420746f6f206c617267656d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f70706564436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a656170706c7972657665616c7365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f647365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b657365745f706172616d5f6e65775f7465726d5f6475726174696f6e7365745f706172616d5f636f756e63696c5f73697a657365745f706172616d5f63616e6469646163795f6c696d69747365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f7374617274666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747372632f6c6962616c6c6f632f7665632e7273617373657274696f6e206661696c65643a20656e64203c3d206c656e63616e6e6f74207472616e7366657220696c6c69717569642066756e64735374616b696e6720426f6e646167655374616b696e67204e6f6d696e61746f7273466f725265776172644f66666c696e655761726e696e674f66666c696e65536c617368204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e42616c616e6365204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e756e7374616b656e6f6d696e617465756e6e6f6d696e61746572656769737465725f707265666572656e6365737365745f73657373696f6e735f7065725f6572617365745f626f6e64696e675f6475726174696f6e7365745f76616c696461746f725f636f756e74666f7263655f6e65775f6572617365745f6f66666c696e655f736c6173685f67726163657365745f696e76756c6e657261626c657320536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e205365742074686520676976656e206163636f756e74277320707265666572656e636520666f7220736c617368696e67206265686176696f75722073686f756c64207468657920626520612076616c696461746f722e20416e206572726f7220286e6f2d6f7029206966206053656c663a3a696e74656e74696f6e7328295b696e74656e74696f6e735f696e6465785d20213d206f726967696e602e696e74656e74696f6e735f696e646578707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2057696c6c2070616e69632069662063616c6c6564207768656e20736f757263652069736e27742063757272656e746c79206e6f6d696e6174696e67207461726765742e2055706461746573204e6f6d696e6174696e672c204e6f6d696e61746f7273466f7220616e64204e6f6d696e6174696f6e42616c616e63652e7461726765745f696e6465787461726765742052657472616374207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e204465636c617265207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e5374616b696e675374616b696e6720496e76756c657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b207165645374616b696e672043757272656e744f66666c696e65536c6173685374616b696e6720496e74656e74696f6e735374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672056616c696461746f72507265666572656e636573706f73206465726976656420636f72726563746c792066726f6d2053656c663a3a696e74656e74696f6e7328293b206170706c795f756e7374616b652063616e206f6e6c79206661696c20696620706f732077726f6e673b2053656c663a3a696e74656e74696f6e73282920646f65736e2774206368616e67653b207165645374616b696e6720466f7263696e674e65774572615374616b696e6720426f6e64696e674475726174696f6e496e76616c696420696e6465785374616b696e672043757272656e744e6f6d696e61746f7273466f7200000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727356616c696461746f72436f756e744d696e696d756d56616c696461746f72436f756e7453657373696f6e7350657245726153657373696f6e52657761726450657262696c6c4f66666c696e65536c6173684772616365426f6e64696e674475726174696f6e496e76756c657261626c657343757272656e7445726156616c696461746f72507265666572656e636573496e74656e74696f6e734e6f6d696e6174696e674e6f6d696e61746f7273466f7243757272656e744e6f6d696e61746f7273466f7243757272656e7453657373696f6e52657761726443757272656e744f66666c696e65536c6173684e65787453657373696f6e735065724572614c6173744572614c656e6774684368616e67655374616b6552616e6765506169724f663c42616c616e63654f663c543e3e426f6e64616765536c617368436f756e74466f7263696e674e65774572612829526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520626c6f636b20617420776869636820746865206077686f6027732066756e6473206265636f6d6520656e746972656c79206c69717569642e20546865206869676865737420616e64206c6f77657374207374616b65642076616c696461746f7220736c61736861626c652062616c616e6365732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e742e20416c6c206e6f6d696e61746f72202d3e206e6f6d696e65652072656c6174696f6e73686970732e20416c6c20746865206163636f756e7473207769746820612064657369726520746f207374616b652e20507265666572656e636573207468617420612076616c696461746f72206861732e205468652063757272656e742065726120696e6465782e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c65206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c69736520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e5265776172645374616b696e67205374616b6552616e67655374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e735065724572615374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204f66666c696e65536c6173685374616b696e672053657373696f6e5265776172640000000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7374616b696e672f7372632f6c69622e727343616e6e6f74207374616b6520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74207374616b6520696620616c7265616479207374616b65642e43616e6e6f74206e6f6d696e61746520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74206e6f6d696e61746520696620616c7265616479207374616b65642e5374616b696e67204e6f6d696e6174696e674163636f756e74206d757374206265206e6f6d696e6174696e67496e76616c69642074617267657420696e64657863616e6e6f7420756e7374616b65207768656e2074686572652061726520746f6f20666577207374616b6564207061727469636970616e747350726f706f73616c4372656174656450726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564566f74656454616c6c7946696e616c697a656452756e74696d655570646174656450726f706f73616c5665746f656420526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e4861736854616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e7273417070726f76616c51756f72756d4d696e5374616b6542616c616e63654f663c543e43616e63656c6c6174696f6e46656552656a656374696f6e466565566f74696e67506572696f644e616d654d61784c656e4465736372697074696f6e4d61784c656e5761736d436f64654d61784c656e50726f706f73616c436f756e7450726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e41637469766550726f706f73616c4964735665633c7533323e5761736d436f6465427948617368543a3a486173685665633c75383e566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c207533322954616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e20476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e46656550726f706f73616c732052656a656374696f6e46656550726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732054616c6c79526573756c74736372656174655f70726f706f73616c766f74655f6f6e5f70726f706f73616c63616e63656c5f70726f706f73616c7665746f5f70726f706f73616c2043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f672920606060766f746520706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67297374616b656e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f7273466565732043757272656e745472616e73616374696f6e46656543686172676564204665652063686172676564202865787472696e7369635f696e6465782c206665655f616d6f756e7429753332416d6f756e7453756469644b65794368616e67656420546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e4163636f756e7449642041207375646f206a75737420746f6f6b20706c6163652e626f6f6c4e657753657373696f6e204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7375646f2f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73657373696f6e2f7372632f6c69622e7273696e76616c69642073616c7446656573205472616e73616374696f6e4279746546656546656573205472616e73616374696f6e42617365466565627974657320666565206f766572666c6f776e6f2065787472696e73696320696e64657820666f756e6466656520676f74206f766572666c6f772061667465722063686172676553657373696f6e204c6173744c656e6774684368616e676553657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e67746853657373696f6e204e6578744b6579466f7200000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e7273466565735472616e73616374696f6e4261736546656541737365744f663c543e5472616e73616374696f6e4279746546656543757272656e745472616e73616374696f6e46656520546865206065787472696e7369635f696e646578203d3e20616363756d756c617465645f6665657360206d61702c20636f6e7461696e696e67207265636f72647320746f20747261636b20746865206f766572616c6c2063686172676564206665657320666f722065616368207472616e73616374696f6e2e20416c6c207265636f7264732073686f756c642062652072656d6f7665642061742066696e616c6973652073746167652e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e7375646f7365745f6b65796e65773c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636570726f706f73616c426f783c543a3a50726f706f73616c3e5375646f4b65797365745f6c656e677468666f7263655f6e65775f73657373696f6e20466f726365732061206e65772073657373696f6e2e6170706c795f72657761726473205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e436f6d706163743c543a3a426c6f636b4e756d6265723e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e56616c696461746f727353657373696f6e4c656e67746843757272656e74496e64657843757272656e745374617274543a3a4d6f6d656e74466f7263696e674e657753657373696f6e4c6173744c656e6774684368616e67654e6578744b6579466f724e65787453657373696f6e4c656e67746820546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206973207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b6579496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b696e697469616c6973655f626c6f636b6170706c795f65787472696e736963696e686572656e745f65787472696e73696373636865636b5f696e686572656e747376616c69646174655f7472616e73616374696f6e2f55736572732f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e302e302f7372632f636f6465632e727300000000000000000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000000000000000000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962616c6c6f632f736c6963652e7273436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e64734174436f756e63696c5465726d456e6465644e6577436f756e63696c5465726d53746172746564426c6f636b4e756d626572696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64652f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e727353746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e45787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e6365626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e646578626164207369676e617475726520696e2065787472696e7369637372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e7273416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e5465726d456e64734174543a3a426c6f636b4e756d626572436f756e63696c6d757374207365742066757475726520626c6f636b206e756d62657263616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f725f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e7365745f636f756e63696c6164645f636f756e63696c5f6d656d62657272656d6f76655f636f756e63696c5f6d656d6265727365745f7465726d5f656e64735f61742053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f7665543a3a4163636f756e74496420416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e74735665633c543a3a4163636f756e7449643e61757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e4578706c69636974207265706f7274696e67206e6f7420616c6c6f77656445787472696e7369635375636365737345787472696e7369634661696c656420416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e48617368206e6f7420657175616c00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e7273617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a2052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e676361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e72730000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839397372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d7372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f66206000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e85927372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f6620600041b0bfc1000b809501000000003f0110000b00000000000000289710000100000000000000000000002452100000000000000000002c4b1000280000004a011000420000001b000000010000009d0110001e000000bb0110005d0000004e01000003000000000000001e0210000c0000000100000000000000394f10000c000000000000002a0210000800000000000000245210006063100000000000000000002452100000000000000000000100000000000000320210000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210005063100000000000000000002452100000000000000000000000000000000000400210001000000000000000000000008b3f1000030000000000000000000000000000000000000024521000506310000000000000000000245210000000000000000000000000000000000050021000090000000100000000000000204e10000e00000000000000dc3510000700000000000000245210007863100000000000000000002452100000000000000000000100000000000000590210000d00000001000000000000008b3f10000300000000000000e33510000700000000000000245210004064100000000000000000002452100000000000000000000100000000000000660210000a0000000000000000000000dc351000070000000000000000000000000000000000000024521000786310000000000000000000245210000000000000000000010000000000000070021000060000000000000000000000204e10000e00000000000000000000000000000000000000245210006063100000000000000000007063100001000000000000000100000000000000760210000a0000000000000000000000dc3510000700000000000000000000000000000000000000245210007863100000000000000000002452100000000000000000000100000000000000800210000e0000000000000000000000dc35100007000000000000000000000000000000000000002452100078631000000000000000000024521000000000000000000001000000000000008e0210000600000000000000000000009402100009000000000000000000000000000000000000002452100088631000000000000000000024521000000000000000000001000000000000009d021000060000000000000000000000a30210001a0000000000000000000000000000000000000024521000986310000000000000000000245210000000000000000000010000000c00000000000000010000000d0000000c00000000000000010000000e000000bd021000420000000c00000000000000010000000f0000000c0000000000000001000000100000000c00000000000000010000001000000000000000ff021000040000000100000000000000394f10000c00000000000000e33510000700000000000000245210004064100000000000000000002452100000000000000000000100000000000000030310000d00000000000000000000008b3f1000030000000000000000000000000000000000000024521000506410000000000000000000245210000000000000000000010000000c0000000000000001000000100000000c000000000000000100000011000000914e1000230000004a011000420000001b0000000100000000000000530310000b00000000000000a4641000010000000000000000000000245210000000000000000000000000003d0910000400000000000000e335100007000000a003100019000000c003100048000000bb0100002d00000024521000000000001d041000020000000804100015000000e5030000050000005704100022000000790410005b000000b500000003000000d404100028000000790410005b000000bb000000030000002c4b1000280000000105100060000000b8000000010000007005100019000000900510005b000000ef0000001e000000000000005306100012000000000000005c66100001000000000000000000000074661000010000000000000000000000650610000c000000000000007c661000010000000000000000000000946610000100000000000000000000007106100006000000000000009c661000010000000000000000000000b4661000010000000000000000000000770610000e00000000000000bc661000010000000000000000000000d4661000010000000000000000000000850610000800000000000000dc661000010000000000000000000000f46610000100000000000000000000008d0610000b00000000000000fc66100001000000000000000000000014671000010000000000000000000000ef0710000700000000000000e335100007000000d50710001a00000000000000910710000700000000000000980710003d000000400710005100000000000000390710000700000000000000e3351000070000001e0710001b000000000000001607100005000000000000001b07100003000000d70610003f000000000000001f4410000300000000000000e335100007000000c50610001200000000000000b30610000500000000000000b80610000d000000980610001b00000000000000ff07100013000000000000000000000012081000120000000000000000000000000000000000000024521000686710000000000000000000245210000000000000000000000000000c00000000000000010000000d000000914e1000230000000105100060000000b800000001000000a008100048000000b001000023000000a008100048000000b101000023000000790810001c0000001e53100018000000e40300000d0000003008100049000000870200001d00000030081000490000009d0000003a0000003008100049000000a40000003000000000000000e80810000600000000000000120000000000000000000000130000000000000000000000020000000000000000000000000000000000000014000000000000000000000000000000ee0810000900000000000000150000000000000000000000160000000000000000000000000000001700000000000000000000000200000000000000000000000000000000000000f70810000900000000000000180000000000000000000000190000000000000000000000000000001a000000000000000000000002000000000000000000000000000000000000000009100004000000000000001b00000000000000020000000000000000000000000000000200000000000000000000000000000002000000000000000000000000000000000000000409100007000000000000001c00000000000000000000001d0000000000000000000000000000001e0000000000000000000000000000001f0000000000000000000000000000000b09100008000000000000002000000000000000000000002100000000000000000000000000000022000000000000000000000000000000230000000000000000000000000000001309100007000000000000002400000000000000000000002500000000000000000000000000000026000000000000000000000000000000270000000000000000000000000000001a0910000700000000000000280000000000000000000000290000000000000000000000000000002a0000000000000000000000000000002b0000000000000000000000000000002109100004000000000000002c00000000000000000000002d000000000000000000000002000000000000000000000000000000000000002e0000000000000000000000000000001444100004000000000000002f00000000000000000000003000000000000000000000000000000031000000000000000000000000000000320000000000000000000000000000002509100009000000000000003300000000000000000000003400000000000000000000000000000035000000000000000000000000000000360000000000000000000000000000002e091000080000000000000037000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a0000000000000000000000000000003609100007000000000000003b00000000000000000000003c0000000000000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003d09100004000000000000003f00000000000000000000004000000000000000000000000000000041000000000000000000000000000000420000000000000000000000ea0910002b000000150a100060000000b400000004000000e80a100030000000150a100060000000a800000004000000180b10004c000000150a100060000000a90000000400000000000000640b10000a000000000000001c811000020000000000000000000000b46c10000100000000000000000000006e0b10000d0000000000000028971000010000000000000000000000bc6c10000100000000000000000000007b0b10000800000000000000c46c1000040000000000000000000000e46c10000100000000000000c60b10001b000000af0b100017000000df3f100009000000df3f10000900000061221000070000006122100007000000830b10002c00000000000000e10b10000f00000000000000186d1000020000000000000000000000286d10000400000000000000df3f1000090000006b0c10000c000000f00b1000220000002452100000000000120c100041000000530c1000180000002c4b100028000000770c10005e00000048000000010000002c4b100028000000d50c10005f000000a8000000010000002c4b100028000000150a1000600000009c00000001000000914e100023000000770c10005e0000004800000001000000914e100023000000150a1000600000009c0000000100000000000000b80d10000b0000000000000000000000c30d10000f0000000000000000000000000000000000000024521000586e10000000000000000000686e100001000000000000000100000000000000d20d1000070000000100000000000000c30d10000f00000000000000cd4f1000110000000000000024521000706e10000000000000000000806e10000100000000000000010000000c000000000000000100000043000000ef0d10001f0000000c000000000000000100000010000000d90d100016000000000000000e0e10000800000000000000e06e1000020000000000000000000000106f1000010000000000000000000000160e10000b00000000000000186f1000030000000000000000000000606f10000100000000000000000000009d0e10000400000000000000224410002300000000000000a10e100005000000000000004d0e100013000000680e10003500000000000000460e10000300000000000000224410002300000000000000490e100004000000000000004d0e10001300000000000000600e100008000000000000004d0e100013000000210e10002500000000000000ae0e10000d0000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000007c71100001000000000000000100000000000000c50e1000120000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000008471100001000000000000000100000000000000d70e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000008c71100001000000000000000100000000000000e20e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000009471100001000000000000000100000000000000ed0e1000070000000100000000000000394f10000c00000000000000f40e10001b00000000000000245210009c7110000000000000000000ac711000010000000000000000000000000000000f0f10000b0000000100000000000000394f10000c00000000000000bb0e10000a00000000000000245210000c7210000000000000000000b47110000b0000000000000001000000000000001a0f10000f0000000100000000000000394f10000c00000000000000bb0e10000a00000000000000245210000c72100000000000000000001c7210000c0000000000000001000000dc14100029000000a81410003400000083141000250000003a141000490000000c00000000000000010000000d0000000414100036000000d0111000270000002452100000000000f7111000530000004a1210005a000000a412100055000000f91210004f000000481310005000000098131000150000002452100000000000ad131000570000008b111000450000000c000000000000000100000044000000290f10005d000000860f1000270000002452100000000000ad0f10005b000000081010005c000000641010004a0000002452100000000000ae1010005d0000000b1110002d000000245210000000000038111000530000008b1110004500000000000000051510000300000000000000a8721000010000000000000000000000c0721000080000000000000000000000bb1610000300000000000000be16100012000000081510001600000024521000000000001e15100055000000731510005b000000ce1510005d0000002b1610002f00000024521000000000005a1610006100000000000000d9161000030000000000000000000000bb451000090000000000000000000000000000000000000024521000e47310000000000000000000f473100001000000000000000100000000000000dc1610000b0000000000000000000000bb451000090000000000000000000000000000000000000024521000fc73100000000000000000000c74100001000000000000000100000000000000e716100009000000000000000000000000401000040000000000000000000000000000000000000024521000147410000000000000000000247410000100000000000000010000000c00000000000000010000000e0000004e171000240000000c0000000000000001000000450000001d171000310000000c00000000000000010000000d000000f01610002d000000914e100023000000d50c10005f000000a80000000100000000000000ac1810000f000000000000002452100000000000000000000000000028761000010000000000000000000000bb1810001100000000000000c88e100001000000000000000000000024521000000000000000000000000000cc1810000f000000000000002452100000000000000000000000000024521000000000000000000000000000db1810000d000000000000002452100000000000000000000000000024521000000000000000000000000000e81810000b000000000000002452100000000000000000000000000024521000000000000000000000000000f318100010000000000000002452100000000000000000000000000024521000000000000000000000000000031910000e000000000000002452100000000000000000000000000024521000000000000000000000000000111910000e00000000000000e09e1000010000000000000000000000245210000000000000000000000000001f191000070000000000000028971000010000000000000000000000245210000000000000000000000000002e33100005000000000000003076100002000000000000000000000024521000000000000000000000000000261910000800000000000000407610000300000000000000000000002452100000000000000000002e19100017000000df3f100009000000a333100004000000df3f100009000000a333100004000000df3f10000900000000000000721a100009000000000000000000000000401000040000000000000000000000000000000000000024521000647b1000000000000000000024521000000000000000000001000000000000007b1a1000050000000000000000000000801a10001d0000000000000000000000000000000000000024521000747b1000000000000000000024521000000000000000000000000000000000009d1a10000500000000000000000000008b3f1000030000000000000000000000000000000000000024521000847b100000000000000000002452100000000000000000000100000000000000a21a1000140000000000000000000000cd4f1000110000000000000000000000000000000000000024521000a47b100000000000000000002452100000000000000000000100000000000000b61a1000120000000100000000000000394f10000c00000000000000c81a10001f0000000000000024521000947b100000000000000000002452100000000000000000000100000000000000e71a10000a0000000000000000000000cd4f1000110000000000000000000000000000000000000024521000a47b100000000000000000002452100000000000000000000100000000000000f11a10000f0000000100000000000000394f10000c00000000000000001b1000130000000000000024521000947b100000000000000000002452100000000000000000000100000000000000131b10000b00000000000000000000001e1b10000c0000000000000000000000000000000000000024521000a47b1000000000000000000024521000000000000000000001000000000000002a1b1000050000000100000000000000dc35100007000000000000002f1b1000450000000000000024521000b47b100000000000000000002452100000000000000000000100000000000000741b1000100000000000000000000000204e10000e0000000000000000000000000000000000000024521000c47b1000000000000000000024521000000000000000000001000000000000001f3510000c0000000000000000000000204e10000e0000000000000000000000000000000000000024521000c47b100000000000000000002452100000000000000000000100000000000000841b10000f0000000000000000000000204e10000e0000000000000000000000000000000000000024521000c47b100000000000000000002452100000000000000000000100000000000000931b10000b00000000000000000000008b3f1000030000000000000000000000000000000000000024521000d47b1000000000000000000024521000000000000000000001000000000000009e1b10000e00000000000000000000008b3f1000030000000000000000000000000000000000000024521000e47b100000000000000000002452100000000000000000000100000000000000ac1b10000f0000000000000000000000f83410000c0000000000000000000000000000000000000024521000f47b100000000000000000002452100000000000000000000100000000000000bb1b10000f0000000000000000000000204e10000e0000000000000000000000000000000000000024521000047c100000000000000000002452100000000000000000000100000000000000ca1b10000e0000000000000000000000f83410000c0000000000000000000000000000000000000024521000147c10000000000000000000245210000000000000000000010000000c0000000000000001000000460000000c00000000000000010000000d0000000c0000000000000001000000430000000c0000000000000001000000470000000c0000000000000001000000100000000c0000000000000001000000480000000c0000000000000001000000490000000c00000000000000010000004a0000000c00000000000000010000004b0000000c00000000000000010000004c0000000c00000000000000010000004d0000000c00000000000000010000004e0000002c4b100028000000e71b1000510000008102000001000000914e100023000000e71b1000510000008102000001000000000000000c2010000500000000000000407f1000010000000000000000000000245210000000000000000000000000003e3e10000400000000000000587f100002000000000000000000000024521000000000000000000000000000112010000600000000000000887f100003000000000000000000000024521000000000000000000000000000172010001400000000000000c8a11000010000000000000000000000245210000000000000000000000000002b2010001300000000000000c8a11000010000000000000000000000245210000000000000000000000000003e2010001000000000000000c8a11000010000000000000000000000245210000000000000000000000000004e2010001b00000000000000d07f100001000000000000000000000024521000000000000000000000000000692010001700000000000000d07f100001000000000000000000000024521000000000000000000000000000802010001a00000000000000d07f1000010000000000000000000000245210000000000000000000000000009a2010001b00000000000000e87f100001000000000000000000000024521000000000000000000000000000b52010001b000000000000000080100001000000000000000000000024521000000000000000000000000000d020100016000000000000001880100001000000000000000000000024521000000000000000000000000000e620100019000000000000003080100001000000000000000000000024521000000000000000000000000000ff2010001a00000000000000e87f10000100000000000000000000002452100000000000000000000000000019211000130000000000000024521000000000000000000000000000245210000000000000000000000000002c21100014000000000000002452100000000000000000000000000024521000000000000000000000000000402110000e000000000000004880100001000000000000000000000024521000000000000000000000000000cf3e10000500000000000000f83410000c00000000000000772110000a00000000000000dc3510000700000000000000cf3e10000500000000000000f83410000c00000000000000772110000a00000000000000dc35100007000000000000003e3e10000400000000000000394f10000c00000000000000812110000400000000000000e33510000700000000000000712110000600000000000000204e10000e000000000000006b2110000600000000000000f83410000c00000000000000632110000800000000000000204e10000e00000000000000572110000c000000000000008b3f100003000000000000005221100005000000000000008b3f100003000000000000004e21100004000000000000000040100004000000982110001c0000008521100013000000770400000900000000000000f62110000600000000000000fc80100001000000000000000000000004811000010000000000000000000000fc2110000e00000000000000388e10000200000000000000000000000c8110000200000000000000000000000a2210000c000000000000001c8110000200000000000000000000002c8110000100000000000000612210000700000002231000380000006822100055000000bd22100045000000df3f1000090000006122100007000000162210004b00000000000000cf3e1000050000000000000024521000000000000000000000000000188310000300000000000000000000003a231000070000000000000030831000010000000000000000000000488310000300000000000000000000004123100008000000000000006083100001000000000000000000000024521000000000000000000000000000492310000a000000000000007883100001000000000000000000000090831000020000000000000000000000532310001400000000000000a0831000020000000000000000000000d0831000030000000000000000000000672310001400000000000000709a1000010000000000000000000000e88310000100000000000000000000007b2310001400000000000000709a1000010000000000000000000000f08310000100000000000000000000008f2310001300000000000000f883100001000000000000000000000010841000010000000000000000000000a22310000d00000000000000909a100001000000000000000000000018841000020000000000000000000000af2310001700000000000000f883100001000000000000000000000028841000010000000000000000000000c623100011000000000000003084100001000000000000000000000048841000010000000000000011271000300000002452100000000000da2610003700000000000000ea2510001000000000000000f02410000c000000aa261000300000002452100000000000da2610003700000000000000a42610000600000000000000224410002300000000000000982610000c00000000000000f02410000c0000001b261000440000005f2610003900000000000000ea2510001000000000000000f02410000c00000000000000fa2510000500000000000000ff2510001c0000004e251000560000002452100000000000a4251000460000002825100026000000fc2410002c000000000000001f4410000300000000000000f02410000c000000d024100020000000382410004f00000087241000490000001424100024000000000000000a2410000a00000000000000cd4f100011000000d723100033000000f028100048000000f10900000e00000000000000382910000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210004c8c10000000000000000000348b100001000000000000000100000000000000462910001500000000000000000000008b3f10000300000000000000000000000000000000000000245210003c8b100000000000000000004c8b1000010000000000000001000000000000005b2910000e0000000000000000000000204e10000e0000000000000000000000000000000000000024521000948b10000000000000000000548b100001000000000000000100000000000000692910000d0000000000000000000000762910000700000000000000000000000000000000000000245210005c8b100000000000000000006c8b1000010000000000000001000000000000000a2210000c000000000000000000000076291000070000000000000000000000000000000000000024521000748b10000000000000000000848b1000010000000000000001000000000000007d2910001100000000000000000000008b3f10000300000000000000000000000000000000000000245210004c8c100000000000000000008c8b1000010000000000000001000000000000008e2910000f0000000000000000000000204e10000e0000000000000000000000000000000000000024521000948b10000000000000000000a48b1000010000000000000001000000000000009d2910000c0000000000000000000000cd4f10001100000000000000000000000000000000000000245210007c8c10000000000000000000ac8b100002000000000000000100000000000000a92910000a0000000000000000000000204e10000e0000000000000000000000000000000000000024521000348c10000000000000000000bc8b100001000000000000000100000000000000b3291000140000000100000000000000394f10000c00000000000000ff2510001c0000000000000024521000c48b10000000000000000000d48b100001000000000000000100000000000000c72910000a0000000000000000000000cd4f10001100000000000000000000000000000000000000245210007c8c10000000000000000000dc8b100001000000000000000100000000000000d12910000a0000000100000000000000394f10000c00000000000000394f10000c0000000000000024521000648c10000000000000000000e48b100001000000000000000000000000000000db2910000d0000000100000000000000394f10000c00000000000000cd4f10001100000000000000245210007c8c10000000000000000000ec8b100001000000000000000100000000000000e8291000140000000100000000000000394f10000c00000000000000cd4f10001100000000000000245210007c8c10000000000000000000f48b100001000000000000000100000000000000fc291000140000000000000000000000f83410000c0000000000000000000000000000000000000024521000fc8b100000000000000000006c8b100001000000000000000100000000000000102a1000130000000000000000000000f83410000c0000000000000000000000000000000000000024521000fc8b10000000000000000000848b100001000000000000000100000000000000232a1000120000000000000000000000204e10000e0000000000000000000000000000000000000024521000648c100000000000000000000c8c100001000000000000000000000000000000352a1000130000000000000000000000204e10000e0000000000000000000000000000000000000024521000348c10000000000000000000148c100001000000000000000100000000000000482a10000a0000000000000000000000522a10001400000000000000000000000000000000000000245210001c8c100000000000000000002c8c100001000000000000000100000000000000662a1000070000000100000000000000394f10000c00000000000000204e10000e0000000000000024521000348c10000000000000000000448c1000010000000000000001000000000000006d2a10000a0000000100000000000000394f10000c000000000000008b3f10000300000000000000245210004c8c100000000000000000005c8c100001000000000000000100000000000000772a10000d0000000000000000000000842a1000020000000000000000000000000000000000000024521000648c10000000000000000000748c100001000000000000000000000000000000862a10000f0000000000000000000000952a10002800000000000000000000000000000000000000245210007c8c100000000000000000008c8c1000010000000000000001000000f12f10002a0000000c00000000000000010000004f000000a12f100050000000782f1000290000000c000000000000000100000050000000302f1000480000000c000000000000000100000051000000dc2e1000540000008e2e10004e0000000c00000000000000010000004d000000602e10002e0000008c2d100069000000f52d10006b000000752d1000170000000c000000000000000100000052000000532d1000220000002a2d100029000000022d100028000000dd2c1000250000009c2c1000410000000c000000000000000100000044000000782c100024000000402c1000380000000c000000000000000100000047000000042c10003c0000000c00000000000000010000000e000000c72b10003d0000000c000000000000000100000043000000532b1000740000000c00000000000000010000000d000000392b10001a0000000c000000000000000100000010000000bd2a10007c00000080311000190000003031100048000000bb0100002d000000f0301000390000003031100048000000100200002d000000f028100048000000eb0900000a0000002c4b100028000000993110005e0000005300000001000000914e100023000000993110005e000000530000000100000000000000fa3210000f00000000000000388e1000020000000000000000000000488e1000030000000000000000000000093310001000000000000000388e100002000000000000000000000024521000000000000000000000000000193310001500000000000000608e1000020000000000000000000000245210000000000000000000000000002e3310000500000000000000708e1000030000000000000000000000888e1000040000000000000000000000333310000e00000000000000a88e100001000000000000000000000024521000000000000000000000000000413310000e00000000000000b08e1000020000000000000000000000c08e10000100000000000000000000004f3310000e00000000000000c88e1000010000000000000000000000d08e10000100000000000000df3f1000090000008b3f100003000000bf33100008000000293410002700000050341000400000008b3f1000030000001b3410000e000000df3f1000090000008b3f1000030000001334100008000000bf33100008000000c733100028000000ef331000140000000334100010000000a7331000180000008b3f100003000000a333100004000000753310002e0000008b3f1000030000005d331000180000002c4b1000280000009034100052000000ce0000000100000000000000e23410000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210006493100000000000000000007493100002000000000000000100000000000000f0341000080000000000000000000000f83410000c00000000000000000000000000000000000000245210008493100000000000000000009493100001000000000000000100000000000000043510000f0000000000000000000000f83410000c00000000000000000000000000000000000000245210009c9310000000000000000000ac93100001000000000000000100000000000000133510000c0000000000000000000000f83410000c0000000000000000000000000000000000000024521000b49310000000000000000000c4931000010000000000000001000000000000001f3510000c0000000000000000000000204e10000e0000000000000000000000000000000000000024521000cc9310000000000000000000dc931000010000000000000001000000000000002b3510000a00000000000000000000008b3f1000030000000000000000000000000000000000000024521000e493100000000000000000002452100000000000000000000100000000000000353510001100000000000000000000008b3f1000030000000000000000000000000000000000000024521000f493100000000000000000002452100000000000000000000100000000000000463510000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210000494100000000000000000002452100000000000000000000100000000000000543510000d00000000000000000000008b3f10000300000000000000000000000000000000000000245210001494100000000000000000002494100001000000000000000100000000000000613510000900000001000000000000008b3f100003000000000000006a3510004b00000000000000245210002c94100000000000000000003c94100001000000000000000100000000000000b5351000110000000000000000000000c63510000800000000000000000000000000000000000000245210004494100000000000000000005494100001000000000000000100000000000000ce3510000e0000000100000000000000dc3510000700000000000000e33510000700000000000000245210005c94100000000000000000006c94100001000000000000000100000000000000ea3510000f00000001000000000000008b3f10000300000000000000f93510001d00000000000000245210007494100000000000000000002452100000000000000000000100000000000000163610001800000001000000000000002e3610001300000000000000133410000800000000000000245210008494100000000000000000002452100000000000000000000100000000000000413610000c00000001000000000000008b3f100003000000000000004d3610001b0000000000000024521000949410000000000000000000245210000000000000000000010000000c000000000000000100000050000000d038100032000000023910002f0000000c00000000000000010000004c0000008a381000460000000c0000000000000001000000530000003e3810004c0000000c00000000000000010000004e000000023810003c0000000c00000000000000010000005400000039371000510000000c0000000000000001000000550000000c0000000000000001000000560000000c0000000000000001000000570000000c0000000000000001000000430000000a3710002f0000000c000000000000000100000058000000ea361000200000000c000000000000000100000010000000a1361000490000000c00000000000000010000001000000068361000390000000c0000000000000001000000100000000c00000000000000010000000d0000000c0000000000000001000000590000009037100019000000b037100052000000b000000020000000914e1000230000009034100052000000ce0000000100000000000000843c10000f0000000000000084951000040000000000000000000000e4951000040000000000000000000000933c100010000000000000000496100002000000000000000000000034961000040000000000000000000000a33c10000f00000000000000549610000100000000000000000000006c961000010000000000000000000000b23c10000d000000000000005496100001000000000000000000000074961000010000000000000000000000cf3e10000500000000000000f83410000c00000000000000d43e10000400000000000000e33510000700000000000000d83e10000b00000000000000e33510000700000000000000e33e10000900000000000000e335100007000000573d1000440000009b3d100006000000423e10008d0000003a3e100004000000000000004c3d10000b000000000000008b3f100003000000000000003e3e100004000000000000001334100008000000573d1000440000009b3d100006000000a13d1000990000003a3e100004000000000000004c3d10000b000000000000008b3f100003000000f33c100059000000bf3c100034000000000000005a3f10000700000000000000a8961000020000000000000000000000b896100001000000000000008b3f1000030000008e3f100006000000613f10002a00000000000000943f100005000000000000001897100001000000000000000000000020971000010000000000000000000000993f10000a00000000000000289710000100000000000000000000003097100001000000000000000040100004000000e83f100018000000df3f100009000000a33f10003c00000000000000044010000a00000000000000e09e10000100000000000000000000006497100002000000000000000e4010005500000063401000220000002c4b100028000000854010005b00000023000000010000002c4b100028000000e04010005e0000003b0000000100000020421000390000006042100048000000100200002d00000000000000ac421000120000000000000000000000be4210000a0000000000000000000000000000000000000024521000b09810000000000000000000a098100001000000000000000100000000000000c8421000120000000000000000000000be4210000a0000000000000000000000000000000000000024521000b09810000000000000000000a898100001000000000000000100000000000000da4210001500000001000000000000008b3f10000300000000000000be4210000a0000000000000024521000b09810000000000000000000c0981000040000000000000001000000dd431000370000009a431000430000000c000000000000000100000044000000ef4210004500000034431000350000002452100000000000694310003100000000000000144410000400000000000000389910000100000000000000000000002452100000000000000000000000000018441000070000000000000050991000010000000000000000000000245210000000000000000000000000004544100008000000000000004d44100010000000000000001f441000030000000000000022441000230000000000000061441000030000000000000000000000394f10000c0000000000000000000000000000000000000024521000b49910000000000000000000245210000000000000000000010000000c00000000000000010000000f00000000000000184410000700000000000000489a1000010000000000000000000000609a1000020000000000000000000000644410000a00000000000000709a1000010000000000000000000000889a10000100000000000000000000006e4410001100000000000000909a1000010000000000000000000000a89a1000010000000000000000000000754510000300000000000000784510000d00000014451000580000006c45100009000000000000001f4410000300000000000000fd44100017000000a24410005b00000000000000954410000d0000000000000000401000040000007f44100016000000000000008c4510000a0000000000000000000000cd4f1000110000000000000000000000000000000000000024521000109d10000000000000000000209d100001000000000000000100000000000000964510000d0000000000000000000000204e10000e0000000000000000000000000000000000000024521000289d10000000000000000000389d100001000000000000000100000000000000a34510000c0000000000000000000000204e10000e0000000000000000000000000000000000000024521000489d10000000000000000000409d100001000000000000000100000000000000af4510000c0000000000000000000000bb451000090000000000000000000000000000000000000024521000489d10000000000000000000589d100001000000000000000100000000000000c445100011000000000000000000000000401000040000000000000000000000000000000000000024521000809d10000000000000000000609d100002000000000000000000000000000000d5451000100000000000000000000000204e10000e0000000000000000000000000000000000000024521000809d10000000000000000000709d100001000000000000000000000000000000e54510000a0000000100000000000000394f10000c00000000000000784510000d0000000000000024521000809d10000000000000000000789d100001000000000000000000000000000000ef451000110000000000000000000000204e10000e0000000000000000000000000000000000000024521000809d10000000000000000000909d10000100000000000000000000000c000000000000000100000010000000904710001f0000000c00000000000000010000004d000000714710001f000000534710001e0000000c00000000000000010000000e0000002b471000280000006d4610005e000000cb461000600000003d4610003000000019461000240000000c00000000000000010000000d0000000046100019000000914e100023000000854010005b0000002300000001000000914e100023000000e04010005e0000003b00000001000000e64810000d000000cb4810001b0000008a481000410000000c01000001000000f348100010000000034910000f0000001249100013000000254910000f0000003449100014000000ed49100036000000484910005e0000004e01000005000000b04910003d000000484910005e0000005501000005000000ed49100036000000484910005e0000006901000005000000484910005e0000007001000005000000404a100048000000eb0900000a000000904a100045000000c70200003600000000000000fc4a10001000000000000000e09e1000010000000000000000000000245210000000000000000000000000000c4b10001500000000000000e09e1000010000000000000000000000245210000000000000000000214b10000b0000002c4b100028000000544b1000500000004500000001000000784d10001c000000cc4b1000600000005100000003000000544d100024000000cc4b10006000000059000000030000000d4d10002c000000cc4b100060000000930000004c000000d54c100038000000cc4b100060000000910000002a000000ad4c100028000000cc4b1000600000009200000032000000854c100028000000cc4b100060000000940000002c000000534c100032000000cc4b100060000000c8000000030000002c4c100027000000cc4b100060000000d000000004000000a44b100028000000cc4b100060000000d6000000030000002c4b100028000000c34d100025000000c30900002300000000000000e84d10000d0000000000000000000000f54d100021000000000000000000000000000000000000002452100088a0100000000000000000002452100000000000000000000100000000000000164e10000a0000000000000000000000204e10000e000000000000000000000000000000000000002452100098a010000000000000000000245210000000000000000000010000000c0000000000000001000000100000000c00000000000000010000005a000000914e100023000000544b100050000000450000000100000000000000b44e10000b0000000000000070a1100001000000000000000000000088a11000010000000000000000000000bf4e1000120000000000000090a11000010000000000000000000000a8a11000010000000000000000000000d14e10001500000000000000b0a1100001000000000000000000000024521000000000000000000000000000e64e10001000000000000000c8a11000010000000000000000000000e0a11000010000000000000000000000c54f10000800000000000000cd4f1000110000006e4f10005700000000000000674f10000700000000000000394f10000c000000454f10002200000000000000284f10001100000000000000394f10000c00000000000000214f10000700000000000000204e10000e000000f64e10002b00000000000000a250100010000000000000002452100000000000000000000000000040a21000010000000000000000000000b25010000f000000000000002452100000000000000000000000000048a210000100000000000000d650100025000000c1501000150000001051100019000000305110006c00000055000000220000009c5110002d000000c95110000c000000d551100003000000fa511000110000000b52100017000000ea02000005000000245210002000000044521000120000000c00000000000000010000005b00000036531000060000003c531000220000001e531000180000006d090000050000005e53100016000000745310000d0000001e5310001800000073090000050000009f5310000b0000009a5f10001600000081531000010000008953100016000000da07000009000000785f10000e000000865f1000040000008a5f10001000000081531000010000008953100016000000de07000005000000385f10002b000000635f10001500000059010000150000009f5310000b000000aa53100026000000d053100008000000d85310000600000081531000010000008953100016000000eb070000050000002452100000000000f653100002000000e0531000160000005404000011000000e0531000160000004804000028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20305910004a000000805b100000020000805d10003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202105910002000000027000000190000001059100020000000280000002000000010591000200000002a0000001900000010591000200000002b0000001800000010591000200000002c000000200000002452100000000000635f1000150000000e0400000500000000f2a901046e616d6501e9a9018602000c6578745f74776f785f31323801146578745f6765745f73746f726167655f696e746f020e6578745f626c616b65325f32353603126578745f656432353531395f766572696679040f6578745f7365745f73746f7261676505116578745f636c6561725f73746f7261676506106578745f73746f726167655f726f6f7407186578745f73746f726167655f6368616e6765735f726f6f74080e6578745f7072696e745f75746638090d6578745f7072696e745f6865780a126578745f6578697374735f73746f726167650b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f4b3c616c6c6f633a3a7261775f7665633a3a5261775665633c542c20413e3e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303937643231396233663138343832631034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a68343965646138323365313438356637361180013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c27612c20486173682c20417574686f7269747949643e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6832346531323437313961393032393134120c5f5f727573745f616c6c6f6313673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865353132666539376466303230613530140e5f5f727573745f7265616c6c6f631508727573745f6f6f6d16b8013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831613962616633656535373331666437175d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686530366365316237616538343533643818733c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861383438636135646431353766636335195d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313562393735396563323463303731621a36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68646162663734306166653461666664641b583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68663838613537353461373763303230331cc5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a68663032363365653639623335383664621d373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a626c6f636b5f686173683a3a68663236623930303266316637376538631e363c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a656e756d5f7365743a3a68353935663062356236353733306661381f0e5f5f727573745f6465616c6c6f632030636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a686365623666373462366635656364613121673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865366138363530666437393236393561225b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862383466343863643035646433326331232e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68383533643435306638346666323862332429636f72653a3a70616e69636b696e673a3a70616e69633a3a683563663961666461383036363031366525373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a696e697469616c6973653a3a6836393366303835623230366433393239263a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6163636f756e745f6e6f6e63653a3a6862373731623630373630626264366463273a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6465706f7369745f6576656e743a3a6864396266383336313161656563373963285d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68383865613533393835323434646563612992016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68663933343235626333616661323237382a403c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68666261353763626638346332373163302b453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a68316361623739313438386466356662322c453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68363934653133663262306534323836652d30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68303065343633313339663739316263392e703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68613761393333353137343236663766622f353c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a66696e616c6973653a3a6830376430363638393765373233666438306d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6830616438616139626166393332383437314e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686630363538623734313666363166316132563c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839643362613663653333643238383634337e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686230376636316536653637353430663434513c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6834373132623030393765386462663939354c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68616434313963323739396633323933663634636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a6830343838323434326432343338623538372e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a686566633733373364636532393332333238303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686336376564666338373334633534636539323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68343936396430363331643330643766373a2d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a68356562656632303632656463303539303b423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68303931613465386235373839343266333c6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68323737363338613335366162373765313d6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68613761326230306564363363366563623e4473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a68383937643637396436366364663961313f493c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6863623739623935353262643436373862404e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832326133643234383737383862326532413e3c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683732343831633661376161643462316242433c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a683365646433373562353163373566626343483c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68303333393862613761343661316362344430636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6831626138303633623863643038656365452d636f72653a3a736c6963653a3a736f72743a3a726563757273653a3a68366233613239303338626636326435344634636f72653a3a736c6963653a3a736f72743a3a627265616b5f7061747465726e733a3a6864336335306161376633353563376665473c636f72653a3a736c6963653a3a736f72743a3a7061727469616c5f696e73657274696f6e5f736f72743a3a68373264643532616563326638343335304836636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68633536336465343134643138666337614934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68343237383139336437353464326633654a2e636f72653a3a736c6963653a3a736f72743a3a68656170736f72743a3a68313564663739343438326230326437644b4a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68366439653433353733333238363230624c39636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a68613164333366373266663864353534664d4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a68313236363830306235623333616436394e4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68363531366266333064366439663530394f4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a6862373636316532393430356130646166504b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a686233336339613133326436653933343051486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666565733a3a683436363239353337613363363230353152486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6833323465353438343735356365663837534d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6862343361663437646562343466653237544c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6838373761343962616662383661666332554b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a686162623832646633323634323539643256486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a683164626662333632306161666561393557483c492061732073725f7072696d6974697665733a3a7472616974733a3a436865636b457175616c3e3a3a636865636b5f657175616c3a3a683962653465636161316432323364333958d2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a683838616165653434656431343739373459633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68656266666438313565313931336234355a83013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68363564616135386639653036313363665b7c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68323139633837376333613461373939645c84013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68366565363032623335316137323631315db1013c73726d6c5f7374616b696e673a3a4e6f6d696e6174696e673c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a68333264376266326339626666383737635e593c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a69735f636f756e63696c6f723a3a68393664346661333837363730643037665f4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683238633261303661306363353236313660b9033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970652c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a6838643066633361333136353462636135613c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6e6f6d696e61746f72735f666f723a3a6837353332353337633932613231363636623d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68323838393534313639663637393163666380013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a686338623132663837333965383434376564663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68613236363230323363363432646130316585013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a6831376533646638373038363831343261667e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a6830313635346635323633323839666430673d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6865343032613237316366643366336333684e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863323437346335333731646337646438693d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68326134313536343161643032383832376a5c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f70726f636573735f766f74653a3a68373937313338643730386362376337616b3b3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6170706c795f756e7374616b653a3a68613333313364396533313236643766396c423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68383466316562393731326631393436646d683c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c20753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68656635313232636230633932313134326e3f3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f667265655f62616c616e63653a3a68623363363164383963393430316633376f433c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f72657365727665645f62616c616e63653a3a68383464363262646363353636303137667096013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a456e737572654163636f756e744c69717569643c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f6163636f756e745f6c69717569643a3a6837353039316339326230613036363137717c3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a686430666530626435353337636231613472443c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63757272656e745f6e6f6d696e61746f72735f666f723a3a68663938636130616532653364646630387330636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6863663036353438386461373764613963744e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834643336633364616232343061333232755e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683737653763393832363937383833326676135f5f727573745f616c6c6f635f7a65726f656477397061726974795f636f6465633a3a636f6465633a3a4f75747075743a3a707573685f627974653a3a686435383737383736373837303439306578763c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686162663638663561353139313237343379c8013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c207375627374726174655f7072696d6974697665733a3a617574686f726974795f69643a3a45643235353139417574686f7269747949643e3e3e3a3a66726f6d3a3a68383233663366383138323439666236637a82013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a68663961373032636536663666303061337b7d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7265776172643a3a68353361343830346662313632306337637cb00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c2045787472696e7369633e3e3a3a6465636f64653a3a68313733383437373463626165656365627d7c3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c20486173682c204469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343039303164333036313766343937617e30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68636562366637346236663565636461317f763c284e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861643433663530356633666263656161800186013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861666563383566303963333732636637810182023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c20616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a68313364303065383234373835323537668201a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a683931376634313134333231386662326283015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746172745f656c656374696f6e3a3a683131663663393835346265346363643584013c3c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68613437633363646131356664656533338501413c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68313566336132303538336635353436658601463c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683435623531613334343638366132653587013d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68393438323163353135383839346331648801423c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633330373739623665643635353738318901473c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68663230363739386364396136663734338a013e3c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68373930366236316137636230656234358b01433c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633863383433373336623638666134308c01483c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68666137636133376138303063383665618d016e3c73726d6c5f74696d657374616d703a3a5f5f47657442797465537472756374426c6f636b506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636331373535393733323930363063638e013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343030373738653632306539393434618f01d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68663930333463366636306562626635329001663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a68646361623537363230616531313537639101663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683231636134353334323135373939343692018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683665323731633435383030633936366293018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683036373336373761616132653262373594018d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834353162396464636139623366636461950186013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832616631366333373937653935316662960190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683137383436623534363265633339393297018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623262323033313462333538396163329801613c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68343536306335613330303363343066339901f6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970653e2c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a68646661626238326466326563303033629a013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68653530633637393239323837323138309b015f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a74656172646f776e5f656c656374696f6e3a3a68623733616133343333656262343138309c01623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68336530343138623064653265366461379d015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a64726f705f6170706c6963616e74733a3a68663432613333376263663062333763389e01673c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c20503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68316266313761633066343664633036639f012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6864343161356261616361353939383034a0014b3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e3e3a3a696e736572743a3a6836313533303765663535353934363038a1012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6835666436393434326333353133303637a201733c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6836656236353033646438323132396431a3015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6865633531616135663433366666333762a4013c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6863323764393236323532373735663939a501413c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6863616438623766623036616539663532a601463c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863313065663463366461373734643936a701703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837313935643330343231323130316265a801723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864653534323233303263303436656639a901743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838383033626239663637316265326433aa01753c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72507265666572656e6365733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396165376531383634383434616262ab01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864376432353439363231303964393336ac016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834386664386230316537646266313461ad01763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833346133373665343963343930333761ae01673c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6830316461613961346266316664333834af018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863356362663732396662366366346263b0018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839613761333133373363343966303738b10190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831306233643463623962613239656339b20193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839353430343162653261666631316363b3018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396639653836393330343836383566b4018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839383538356230303266633639306230b5018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861616134343039356630356535356439b60191013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862333031323964396633646131633162b7018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863343136616632633337646430323763b80190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866373535356236323037656533323163b901623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6864306636616331376266623765333365ba015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866343133306633626436633234653462bb018f013c73726d6c5f666565733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a43686172676542797465734665653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6368617267655f626173655f62797465735f6665653a3a6838616239323966373534373433323931bc013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a7365745f76616c696461746f72733a3a6836393166633934643661333334373061bd013e3c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6831653331353636313862663061363432be01433c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6865373734656464363636323165663531bf01703c73726d6c5f666565733a3a5f5f476574427974655374727563745472616e73616374696f6e426173654665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830346163613038663166373630303564c001393c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6838373563313739653138356439396161c1013e3c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862633663653436663333633935613035c201433c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6866336639303531623866663934303439c301613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863323839646239633764356532636234c4013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866313638333963343464636361353635c501413c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6837396262343730303361613739343763c601463c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839663638653630633566386164363638c701477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6866623337343535666564336564326664c801623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830373531383239613932323033323465c901523c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c27612c204b2c20563e3e3a3a696e736572743a3a6830356136646435356461336666646430ca010c436f72655f76657273696f6ecb0110436f72655f617574686f726974696573cc0112436f72655f657865637574655f626c6f636bcd014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6866643337616665343561313865306132ce016c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6838633764323066386435393966616134cf01753c73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c20426c6f636b2c20436f6e746578742c205061796d656e742c20416c6c4d6f64756c65733e3e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6837353763343730336233613232396433d001483c636f72653a3a666d743a3a417267756d656e74733c275f3e20617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6865316465313661646637653161303132d101303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862363266656434353033623836383436d20115436f72655f696e697469616c6973655f626c6f636bd301114d657461646174615f6d65746164617461d401603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835313137303230316435376330623930d501433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865646565323965656465663066646164d601633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834393039313963363138396531663739d701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6836336564353565623166313739363337d801633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834366162623930643330333530653030d9011c426c6f636b4275696c6465725f6170706c795f65787472696e736963da011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636bdb0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373dc015d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838323432633461616530623565313366dd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6831313638656666333065383466376537de011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473df0118426c6f636b4275696c6465725f72616e646f6d5f73656564e0012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ee10115417572614170695f736c6f745f6475726174696f6ee201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6863346261633263326133613632383863e301303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839633163616533383831633638356363e40135636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a6837636339316532326362396664303931e5012f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a6839393761656138626132613165386261e6013d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a6837366164306134326463396364643435e7018001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a6835383261663432346337616638336636e8012e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a6839333938326463383963326433306633e901653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837313435646263306438393733353030ea018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837646236666334363737646535393962eb01603c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6830393132336537386130613730303366ec015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866653432646231396336356337636633ed01423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862376233663765643464616530366662ee01633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333930623839626139393733633830ef0111727573745f626567696e5f756e77696e64f0010a5f5f72675f616c6c6f63f1010c5f5f72675f6465616c6c6f63f2010c5f5f72675f7265616c6c6f63f301115f5f72675f616c6c6f635f7a65726f6564f4014e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6862363365636566363335323262356137f501313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6866323035616464396235666434323661f60143636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a6862373839383664393965363163626236f7012c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6863393639333233396661336330376339f8014a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6837633935363262633930336261666566f901323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862353765363333353432643165666462fa0149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6863333337366132313537383338373132fb0123636f72653a3a666d743a3a77726974653a3a6864633965303262643431393466643037fc0134636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6866666434343232643837336134346233fd01066d656d736574fe01066d656d637079ff01076d656d6d6f76658002066d656d636d708102095f5f756469767469338202085f5f6d756c74693383023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a686238306662333930663030636262333584023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a686437653131386565363366623935306185020c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33342e302d6e696768746c79202836333364373561633120323031392d30322d323129", + "0x2dce29f1a768624dc5343063cb77f77d": "0x0a000000", + "0xe86aadd06aa1443b2e0485fbe6c75d79": "0x4038000000000000", + "0x7b3279da6dfc5dcfbdd4098b0578c733": "0x0a000000000000000000000000000000", + "0x784006f2a1a409c65c0059c57eaed7a6": "0x00000000000000000000000000000000", + "0x3a617574683a00000000": "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", + "0x43854a3fb0f68847558aa8942fff6d9b": "0x50000000", + "0x7d78893315c59fe96c583efc57f97a0f": "0x64000000000000000000000000000000", + "0xdade128e67a5ed110063f56a01ab6bbf": "0x0000000000000000", + "0x90e2849b965314409e8bc00011f3004f": "0x01000000", + "0x8366297e853b97a38cca0f62019a717b": "0x00000000000000000000000000000000", + "0x040ff70c23416b89ce6afb75ee0d362e": "0x00000000", + "0xf4039aa8ae697861be900c58239e96f7": "0x00000000000000000000000000000000", + "0x329586a7b97f2ac15f6c26a02c3c5621": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", + "0xf9f84510feb5ef56aaead09aab1619c9": "0x4038000000000000", + "0x9de7647cf9f9d6bbc4078dc693fbe19e": "0x8013030000000000", + "0x62f532424b7b1c52f522857315040f27": "0x00000000000000000000000000000000", + "0x0e0cdac0d4de97c54f3ae216b003fa81": "0x5802000000000000", + "0x2196ccc1c9c70e1c05f6229d8b36f461": "0xc0a8000000000000", + "0x3b7d32346a3315a351084927a27d06a7": "0x00000000000000000000000000000000", + "0x5278a9149ec1adfa8090a8ad336c881e": "0x0300000000000000", + "0x0e4944cfd98d6f4cc374d16f5a4e3f9c": "0x0000000000000000", + "0x4664fb5d4e16f894df23cadb3faaa9a6": "0x04000000" + } + } +} \ No newline at end of file diff --git a/res/sparta.json b/res/sparta.json deleted file mode 100644 index 3cf7d63dfa..0000000000 --- a/res/sparta.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "name": "Joystream Testnet", - "id": "joystream_testnet_2", - "bootNodes": [ - "/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi" - ], - "telemetryUrl": "wss://telemetry.polkadot.io/submit/", - "protocolId": null, - "consensusEngine": null, - "properties": null, - "genesis": { - "runtime": { - "system": null, - "timestamp": { - "period": 3 - }, - "consensus": { - "authorities": [ - "5DBGuDoTJu8tvqrCJzHiaYUJf89V1AREe3fjYwt8CFFqKuiT" - ], - "code": "0x0061736d01000000018b011660027f7f017f60037f7f7f017f60017f0060027f7f0060037f7f7f0060057f7f7f7f7f017f60047f7f7f7f0060047f7f7e7f017f60047f7f7f7f017f60017e0060017f017f60000060027f7e0060037e7f7f0060017f017e60037f7e7e017f60047f7f7e7e0060037f7e7e0060027f7f017e60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e760c6578745f74776f785f313238000403656e76146578745f6765745f73746f726167655f696e746f000503656e760f6578745f7365745f73746f72616765000603656e76116578745f636c6561725f73746f72616765000303656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000703656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e76126578745f6578697374735f73746f72616765000003656e760e6578745f626c616b65325f323536000403656e76126578745f656432353531395f766572696679000803656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000603656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000203f001ee010b0b0c0a010203030d020e02030303020b020203020304040301060000030403020302020202060300040303030303030303030209090303030300030903020202020202030202020202020202020202020202030f0a0310111011110f11030403040a03030303040004030302030303030a03030302030303030b0203030303030302030402030303060403020202020303030303030302030303030303030303030202000302020302020203020202000005000a02060001060403121212030406001212030403030312121203031212120312020302020304020a02010a0e00000001000101010113131414150405017001575705030100110619037f01418080c0000b7f0041c0cbc2000b7f0041c0cbc2000b07f4020f066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00cb0110436f72655f617574686f72697469657300cc0112436f72655f657865637574655f626c6f636b00cd0115436f72655f696e697469616c6973655f626c6f636b00d201114d657461646174615f6d6574616461746100d3011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d9011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636b00da0120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300db011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300de0118426c6f636b4275696c6465725f72616e646f6d5f7365656400df012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00e00115417572614170695f736c6f745f6475726174696f6e00e201099401010041010b562b2ac001d101c201c601ef01f001bf01f101f30121229f01a101bb01a001531e2054515250323331554e4f4d565758595abd01be01bc015b9d019e019c015cb501b6015db901ba01b8015eb101a601b2015f91018a019b0160e501e301e60161b70190018f018e018d018c018b01af01a301ad01a501b001a401a201ae01ac01ab01aa01a901a801a701e401ee010a83b713ee0105001010000b0a004190bcc2001018000bf60201037f230041306b2202240002400240411010122203450d00200341086a41002900878240370000200341002900ff814037000020034110412010132203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1000200241086a200429030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010012204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031014200241306a24000f0b41b185c00041331015000b411041011016000b412041011016000b0700200010ea010b0b0020002001200210ec010b0700200010eb010b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410136022c20024201370214200241a8cbc2003602102002200241086a3602282002200241286a360220200241106a41b0cbc200102c000b0d0041fb9fc1004122100600000bd51701267f230041900d6b220324002003410036021041a282c0004110200341106a41041002200320003703f00c200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41081002200442003703002003420037030041b282c0004111200310002005200429030037030020032003290300370310200341106a411020014120100202400240411010122204450d00200441086a41002900878240370000200441002900ff814037000020044110412010132205450d0120052000427f7c370010200341086a22044200370300200342003703002005411820031000200341106a41086a2206200429030037030020032003290300370310200341106a411020014120100220051014200442003703002003420037030041ea81c0004115200310002006200429030037030020032003290300370310200341106a4110200241201002200442003703002003420037030041dd81c000410d2003100020062004290300370300200320032903003703100240200341106a41104184a1c100410041001001417f460d00200342003703f00c02400240200341106a4110200341f00c6a41084100100141016a41084d0d0020032903f00c4200510d02200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a20042903003703002003200329030037031041002107427f21000240200341106a41104184a1c100410041001001417f460d00200342003703f00c200341106a4110200341f00c6a41084100100141016a41084d0d0220032903f00c427f7c21000b200341106a410041e00c10f4011a41002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200341f00c6a42002000427f7c2000501b22001011200341106a202722014103704105746a220441186a200341f00c6a41186a290200370000200441106a200341f00c6a41106a290200370000200441086a200341f00c6a41086a290200370000200420032902f00c370000200141016a21274100210541002102024003402001200141036e2206417d6c6a4102470d01200341106a20056a220441df006a2d000022262004411f6a2d000022287120262028722004413f6a2d00007172211c200441de006a2d000022262004411e6a2d000022287120262028722004413e6a2d00007172211b200441dd006a2d000022262004411d6a2d000022287120262028722004413d6a2d00007172211a200441dc006a2d000022262004411c6a2d000022287120262028722004413c6a2d000071722119200441db006a2d000022262004411b6a2d000022287120262028722004413b6a2d000071722118200441da006a2d000022262004411a6a2d000022287120262028722004413a6a2d000071722117200441d9006a2d00002226200441196a2d00002228712026202872200441396a2d000071722116200441d8006a2d00002226200441186a2d00002228712026202872200441386a2d000071722115200441d7006a2d00002226200441176a2d00002228712026202872200441376a2d000071722114200441d6006a2d00002226200441166a2d00002228712026202872200441366a2d000071722113200441d5006a2d00002226200441156a2d00002228712026202872200441356a2d000071722112200441d4006a2d00002226200441146a2d00002228712026202872200441346a2d000071722111200441d3006a2d00002226200441136a2d00002228712026202872200441336a2d000071722110200441d2006a2d00002226200441126a2d00002228712026202872200441326a2d00007172210f200441d1006a2d00002226200441116a2d00002228712026202872200441316a2d00007172210e200441d0006a2d00002226200441106a2d00002228712026202872200441306a2d00007172210d200441cf006a2d000022262004410f6a2d000022287120262028722004412f6a2d00007172210c200441ce006a2d000022262004410e6a2d000022287120262028722004412e6a2d00007172210b200441cd006a2d000022262004410d6a2d000022287120262028722004412d6a2d00007172210a200441cc006a2d000022262004410c6a2d000022287120262028722004412c6a2d000071722109200441cb006a2d000022262004410b6a2d000022287120262028722004412b6a2d000071722108200441ca006a2d000022262004410a6a2d000022287120262028722004412a6a2d000071722107200441c9006a2d00002226200441096a2d00002228712026202872200441296a2d00007172211d200441c8006a2d00002226200441086a2d00002228712026202872200441286a2d00007172211e200441c7006a2d00002226200441076a2d00002228712026202872200441276a2d00007172211f200441c6006a2d00002226200441066a2d00002228712026202872200441266a2d000071722120200441c5006a2d00002226200441056a2d00002228712026202872200441256a2d000071722121200441c4006a2d00002226200441046a2d00002228712026202872200441246a2d000071722122200441c3006a2d00002226200441036a2d00002228712026202872200441236a2d000071722123200441c2006a2d00002226200441026a2d00002228712026202872200441226a2d000071722124200441c1006a2d00002226200441016a2d00002228712026202872200441216a2d000071722125200441c0006a2d0000222620042d00002228712026202872200441206a2d000071722126200541800c460d01200341106a20052006410574200141096e41e0006c6b6a6a220441ff006a201c3a0000200441fe006a201b3a0000200441fd006a201a3a0000200441fc006a20193a0000200441fb006a20183a0000200441fa006a20173a0000200441f9006a20163a0000200441f8006a20153a0000200441f7006a20143a0000200441f6006a20133a0000200441f5006a20123a0000200441f4006a20113a0000200441f3006a20103a0000200441f2006a200f3a0000200441f1006a200e3a0000200441f0006a200d3a0000200441ef006a200c3a0000200441ee006a200b3a0000200441ed006a200a3a0000200441ec006a20093a0000200441eb006a20083a0000200441ea006a20073a0000200441e9006a201d3a0000200441e8006a201e3a0000200441e7006a201f3a0000200441e6006a20203a0000200441e5006a20213a0000200441e4006a20223a0000200441e3006a20233a0000200441e2006a20243a0000200441e1006a20253a0000200441e0006a20263a0000200541e0006a210520062101200241016a22024111490d000b0b202741d100470d000b2003201c3a008f0d2003201b3a008e0d2003201a3a008d0d200320193a008c0d200320183a008b0d200320173a008a0d200320163a00890d200320153a00880d200320143a00870d200320133a00860d200320123a00850d200320113a00840d200320103a00830d2003200f3a00820d2003200e3a00810d2003200d3a00800d2003200c3a00ff0c2003200b3a00fe0c2003200a3a00fd0c200320093a00fc0c200320083a00fb0c200320073a00fa0c2003201d3a00f90c2003201e3a00f80c2003201f3a00f70c200320203a00f60c200320213a00f50c200320223a00f40c200320233a00f30c200320243a00f20c200320253a00f10c200320263a00f00c200341086a220442003703002003420037030041cc81c000411120031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41201002200442003703002003420037030041c382c000410d200310002005200429030037030020032003290300370310200341106a41101003200341900d6a24000f0b41b185c00041331015000b41b185c00041331015000b4190bcc1001018000b411041011016000b412041011016000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a41003602002001200437031820014184a1c100360210200142013702042001200141186a36020020012003370328200120023703202001200141206a102c000bb00202027f017e230041206b2201240002400240411310122202450d002002410f6a410028009e8240360000200241086a410029009782403700002002410029008f824037000020024113413310132202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1000200141086a20002903003703002001200129031037030002400240200141104184a1c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021030b20021014200141206a240020030f0b41b185c00041331015000b411341011016000b413341011016000b975f17047f017e187f017e087f027e017f027e097f017e017f017e047f027e037f027e047f0a7e057f027e017f017e027f230041c0036b220124000240024002400240024002400240024002400240024002400240024002400240024041a282c00041104184a1c100410041001001417f460d002001410036021041a282c0004110200141106a41044100100141016a41044d0d0220012802102102410021030c010b410121030b4108210442002105200141a0016a41086a22064200370300200142003703a00141c382c000410d200141a0016a100020014180016a41086a2006290300370300200120012903a0013703800102400240024020014180016a41104184a1c100410041001001417f460d002001421037029401200120014180016a36029001200141086a20014190016a101b2001280208450d0a200128020c2207ad42f8007e2205422088a70d042005a72206417f4c0d042006450d01200610122204450d05200421082007450d020c060b4100210641082108410021220c070b410821044108210820070d040b420021052008450d070c040b41b185c00041331015000b100f000b200641081016000b200141106a4104722109200141a0026a41096a210a200141a0026a41046a210b200141106a411b6a210c200141f0026a411b6a210d200141fd016a210e200141d0026a411b6a210f200141a0036a4104722110200141bc026a41046a2111200141e8016a41086a211241c0002113200141106a41186a2114200141106a41176a2115200141106a411e6a2116200141106a410f6a2117200141bc026a41076a2118200141fb016a2119200141d0026a410c6a211a200141f9016a211b200141e8016a41146a211c2001418c036a211d4200211e4100211f41002120200721210340200141003a0010200128029001200128029401200141106a410120014190016a41086a22062802001001212220062006280200202241016a222341014b6a222236020020234102490d030240024020012d00102223450d004101215a20234101460d010c050b2001410036021020064100200128029001200128029401200141106a41042022100122222022417f461b2223410420234104491b20062802006a2222360200202341034d0d042001280210215b4100215a0b200141003a0010200128029001200128029401200141106a410120221001212220062006280200202241016a222241014b6a22233602000240024020224102490d00410a213020012d0010222241094b0d010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020220e0a31050203000607040801310b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d3220012d0084022222450d0d20224101460d0c20224102470d3220144200370300200141106a41106a4200370300200141106a41086a222442003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22233602002022411f4d0d1720014184026a41026a2222200c41026a2d00003a00002001200c2f00003b0184022015280000212520162f01002126201729000021272001290017212820012d001021292001350011212a2001330015212b200141c8026a41026a20222d00003a0000200120012f0184023b01c8022027422088a7212c202a202b42208684421088a7212d202aa7212e2027a7212f410121220c180b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a22233602002022450d3120012d00100d312001420037031020064100200128029001200128029401200141106a41082023100122222022417f461b2222410820224108491b20062802006a360200202241074d0d312001290310210520122001290310370300201241086a200141106a41086a290300370300200120053703e801200120012f0184023b01e401200120012d0086023a00e60120012001280094023602dc01200120014194026a41036a2800003600df01410921300c230b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a22233602002022450d064103212220012d001022314102460d0d20314101460d0c20310d2920144200370300200141106a41106a4200370300200141106a41086a222442003703002001420037031020064100200128029001200128029401200141106a41202023100122232023417f461b2223412020234120491b20062802006a22313602002023411f4d0d1920014194026a41026a2223200c41026a2d00003a00002001200c2f00003b019402201729000021272015280000213220162f010021332001290017212a20012d001021342001350011212b20013300152135200141cc026a41026a223620232d00003a0000200120012f0194023b01cc02200141106a41026a20362d000022233a00002001419c026a41026a223620233a0000200120012f01cc0222233b019c02200120233b0110200142003703182001420037031020064100200128029001200128029401200141106a41102031100122232023417f461b2223411020234110491b20062802006a3602002023410f4d0d29202b20354220868421372024290300212b2001290310213520014190026a41026a20362d00003a0000200120012f019c023b019002200120012d0096023a008e02200120012f0194023b018c0220012001280010360284022001200141106a41036a280000360087024100212220342138203321392032213a0c2b0b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a22233602002022450d2f20012d00100d2f2001420037031020064100200128029001200128029401200141106a41082023100122222022417f461b2222410820224108491b20062802006a360200202241074d0d2f2001290310210520122001290310370300201241086a200141106a41086a290300370300200120053703e801200120012f0184023b01e401200120012d0086023a00e60120012001280094023602dc0141032130200120014194026a41036a2800003600df010c210b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2e20012d008402222241054b0d2e024020220e06000f0e100d11000b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22313602002022411f4d0d2320014184026a41026a2236200c41026a2d00003a00002001200c2f00003b018402201528000021222017290000212a20162f010021242001290017212720012d001021232001350011212b2001330015213520014194026a41026a223220362d00003a0000200120012f0184023b019402200141cc026a41026a20322d000022363a0000200120243b00b303200120012f01940222323b01b003200120323b01cc02200120363a00b2032001410036021020064100200128029001200128029401200141106a41042031100122312031417f461b2231410420314104491b20062802006a360200203141034d0d2e202a422088a72132202b203542208684421088a72136202ba7213b202aa7213120244180fe037141087621332001280210212420012802b0032134410021300c110b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2d20012d0084020d2d20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b22224120202241204922221b20062802006a222336020020220d2d200141cc026a41026a2222200c41026a2d00003a00002001200c2f00003b01cc022015280000212520162f01002126201729000021272001290017212820012d001021292001350011212a2001330015212b200141c8026a41026a223120222d00003a0000200120012f01cc023b01c8022001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a3602002027422088a7212c202a202b42208684421088a7212d202aa7212e2027a7212f202241034d0d2d20013502102105201820263b0000201120012f01c8023b0000201141026a20312d00003a0000200120253602bc0220012900bd02213c200141e8016a41176a20253a00002019202c360000200141e8016a410f6a202f360000200120283700ef012001202d3600eb012001202e3b00e901200120293a00e801200120012f01bc023b01e401200120012d00be023a00e601200120012800103602dc012001200141106a41036a2800003600df0141012130203d42ff01832005420886842205213d0c200b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2c20012d0084020d2c2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b22224104202241044922221b20062802006a222336020020220d2c20012802102131200142003703182001420037031020064100200128029001200128029401200141106a41102023100122222022417f461b2222411020224110491b20062802006a3602002022410f4d0d2c200141106a41086a290300210520012903102127200141e8016a41106a2031360200200120053703f001200120273703e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc012001200141106a41036a2800003600df01410521300c1e0b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d0420012d0084022222450d0220224101470d0420144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a3602002022411f4d0d04200141cc026a41026a2206200c41026a2d00003a00002001200c2f00003b01cc022015280000212520162f01002126201729000021272001290017212820012d0010213e2001350011212a20013300152105200141c8026a41026a222220062d00003a0000200120012f01cc023b01c80220014194026a41026a20222d00003a0000200120012f01c8023b01940220054220862205422888a721062027422088a7212c202a2005842205421088a7212d202aa7212e2027a7212f4101213f203e21290c030b200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a222241014b6a222336020020224102490d2a20012d008402223141074b0d2a41002122024020310e081c001718161a1b191c0b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a360200202241034d0d2a20012802102140410121220c1b0b410321220c220b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a41014b22226a3602002022450d0120012d0010213e20014194026a41026a200141106a41026a2d00003a0000200120012f00103b019402410021064100213f0b200141106a41026a20014194026a41026a22222d000022233a000020014190026a41026a223120233a0000200120012f01940222233b019002200120233b0110200141e8016a41096a2027370000201b2025360000200e20012f0190023b0000200e41026a20312d00003a0000200120283700e901200120063a00e801200120012f0194023b01e401200120222d00003a00e601200120012800103602dc012001200141106a41036a2800003600df012026ad42ffff0383213c410621300c270b200141106a41026a20014194026a41026a2d00003a0000200120012f0194023b01100c260b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22233602002022411f4d0d0920014184026a41026a2231200c41026a2d00003a00002001200c2f00003b018402201528000021322017290000212a20162f010021242001290017212720012d001021222001350011212b200133001521352001419c036a41026a223620312d00003a0000200120012f0184023b019c03200141cc026a41026a20362d000022313a0000200120243b009703200120012f019c0322243b019403200120243b01cc02200120313a0096032001410036021020064100200128029001200128029401200141106a41042023100122232023417f461b2223410420234104491b20062802006a360200202341034d0d2520012802102106200141f0026a41176a22312032360000200d200128029403360000200d41046a20014194036a41046a2d00003a0000200141f0026a410f6a202a422088a7ad422086202aa7ad84222a370000200120273700f702200120223a00f0022001202b203542208684421088a72223411076ad3d00f50220012023ad421086202ba7ad42ffff03838422053e00f102200141a0016a41086a2903002150200141f0026a411f6a2d000021232031290000213c20012903a001214f410121310c0c0b200142003703182001420037031020064100200128029001200128029401200141106a41102023100122222022417f461b2222411020224110491b20062802006a3602002022410f4d0d24200141106a41086a290300212a20012903102127200141d0026a41186a2903002150200141d0026a41106a290300214f201a2802002106200141d0026a41086a2802002123410021310c0b0b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122232023417f461b2223412020234120491b20062802006a3602002023411f4d0d0b20014194026a41026a2206200c41026a2d00003a00002001200c2f00003b019402201729000021272015280000213a20162f010021392001290017212a20012d001021382001350011212b20013300152137200141cc026a41026a222220062d00003a0000200120012f0194023b01cc02200141106a41026a20222d000022063a000020014190026a41026a20063a0000200120012f01cc0222063b019002200120063b01102001200b2f01003b018c022001200b41026a2d00003a008e022001200a280000360284022001200a41036a28000036008702202b2037422086842137200141a0026a41076a2f0000214420012802a0022146410121220c1d0b20144200370300200141106a41106a22244200370300200141106a41086a223142003703002001420037031020064100200128029001200128029401200141106a41202023100122232023417f461b2223412020234120491b20062802006a22363602002023411f4d0d0c20014194026a41026a2232200c41026a22512d00003a00002001200c2f00003b019402201729000021272015280000215220162f010021532001290017212a20012d00102154200135001121482001330015214a200141cc026a41026a222320322d00003a0000200120012f0194023b01cc02200141106a41026a223320232d000022343a0000200141b4026a41026a20343a0000200120012f01cc0222343b01b402200120343b01102014420037030020244200370300203142003703002001420037031020064100200128029001200128029401200141106a41202036100122242024417f461b2224412020244120491b20062802006a22363602002024411f4d0d1a203220512d00003a00002001200c2f00003b0194022017290000212b2015280000213420162f010021512001290017213520012d001021552001350011215620013300152157202320322d00003a0000200120012f0194023b01cc02203320232d000022233a0000200141b8026a41026a20233a0000200120012f01cc0222233b01b802200120233b0110200142003703182001420037031020064100200128029001200128029401200141106a41102036100122232023417f461b2223411020234110491b20062802006a22243602002023410f4d0d1b2031290300214e2001290310214c200142003703182001420037031020064100200128029001200128029401200141106a41102024100122232023417f461b2223411020234110491b20062802006a3602002023410f4d0d1b2048204a4220868421372031290300214a200129031021484102212220014190026a41026a200141b4026a41026a2d00003a0000200120012f01b4023b019002200120012f01b8023b018c022001200141b8026a41026a2d00003a008e022001200141106a41036a28000036008702200120012800103602840220562057422086844208862055ad42ff01838421412054213820532139205121442052213a203421460c1d0b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d21200128021021312001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d21200128021021322001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d21200128021021222001410036021020064100200128029001200128029401200141106a41042023100122232023417f461b2223410420234104491b20062802006a2224360200202341034d0d21200128021021342001410036021020064100200128029001200128029401200141106a41042024100122232023417f461b2223410420234104491b20062802006a2224360200202341034d0d2120012802102133200141003a00840220012802900120012802940120014184026a410120241001212320062006280200202341016a41014b22236a22363602002023450d2120012d008402222441054b0d212001420037031020064100200128029001200128029401200141106a41082036100122232023417f461b2223410820234108491b20062802006a360200202341074d0d21203341107621582033410876210620012903102127410421300c040b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d2020012802102136200141003a00840220012802900120012802940120014184026a410120231001212220062006280200202241016a41014b22226a3602002022450d2020012d008402222341064f0d20200141f0026a41186a2802002233411076215820334108762106201d2802002124200141f0026a41146a2802002134200141f0026a41106a2802002122200141f0026a410c6a2802002132200141f0026a41086a2802002131410221300c030b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22313602002022411f4d0d1520014184026a41026a2236200c41026a2d00003a00002001200c2f00003b01840220162f010021242015280000212220012d00102123200129001721272001350011212a2001330015212b200141d0026a410f6a20172900002235370000200141d0026a41176a2022360000200141d0026a411e6a20243b0100200f20012f0184023b0000200f41026a223220362d00003a00002001202b3d00d5022001202a3e00d102200120273700d702200120233a00d002200141cc026a41026a20322d000022363a0000200120243b00bb032001200f2f000022323b01b803200120323b01cc02200120363a00ba032001410036021020064100200128029001200128029401200141106a41042031100122312031417f461b2231410420314104491b20062802006a360200203141034d0d1f202a202b42208684421088a721362035422088a72132202aa7213b2035a7213120244180fe037141087621332001280210212420012802b8032134410121300c020b20144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a22313602002022411f4d0d1520014184026a41026a2224200c41026a2d00003a00002001200c2f00003b0184022017290000212a20162f01002133201528000021222001290017212720012d001021232001350011212b20013300152135201020012f0184023b0000201041026a223620242d00003a0000200120223602a003200120333b00a703200141cc026a41026a20362d000022243a00002001419c036a41026a223420243a0000200120102f000022243b019c03200120243b01cc022001410036021020064100200128029001200128029401200141106a41042031100122312031417f461b2231410420314104491b20062802006a2236360200203141034d0d1e20012802102124200141003a00840220012802900120012802940120014184026a410120361001213120062006280200203141016a41014b22316a3602002031450d1e20012d008402220641044f0d1e202a422088a72132202b203542208684421088a72136202ba7213b202aa72131200120012f019c033b019403200120342d00003a009603200120333b00970320334180fe037141087621332001280294032134410321300c010b2001410036021020064100200128029001200128029401200141106a41042023100122222022417f461b2222410420224104491b20062802006a2223360200202241034d0d1d2001280210212420144200370300200141106a41106a4200370300200141106a41086a42003703002001420037031020064100200128029001200128029401200141106a41202023100122222022417f461b2222412020224120491b20062802006a3602002022411f4d0d1a20014184026a41026a2206200c41026a2d00003a00002001200c2f00003b018402201729000021052015280000212220162f010021262001290017212720012d001021232001350011212a2001330015212b200141c8026a41026a223120062d00003a0000200120012f0184023b01c802201820263b0000200141cc026a41026a20312d000022063a0000201120012f01c80222313b0000201141026a20063a0000200120223602bc02200120313b01cc0220264108762133201128020021344105213020232129202721282005a72231212f2005422088a72232212c202a202b42208684421088a72236212d202aa7222e213b202221250b201c2032360200200141e8016a41106a203136020020122027370300200120363602ec012001203b3b01ea01200120233a00e901200120303a00e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc012001200141106a41036a2800003600df012058ad42ffff03834210862006ad42ff0183420886842033ad42ff0183842024ad4220868421422034ad4220862022ad84213c410721300c100b200141cc026a41026a2001419c036a41026a2d00003a0000200120012f019c033b01cc020c1b0b410021220b200141cc026a41026a2231200141c8026a41026a2d00003a0000200120012f01c8023b01cc022022450d19201120012f01cc023b0000201820263b0000201141026a20312d00003a0000200120253602bc02200142003703182001420037031020064100200128029001200128029401200141106a41102023100122222022417f461b2222411020224110491b20062802006a3602002022410f4d0d19202429030021502001290310214f200141a0036a41086a2206200141bc026a41086a2d00003a0000200120012902bc023703a003202dad421086202ead42ffff0383842105202cad422086202fad84212a20062d0000212320012903a003213c4102213120282127202921220b200141e8016a41106a202a37030020122027370300200120223a00e901200120313a00e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc01200120053e01ea01200120054220883d01ee012001200141106a41036a2800003600df012006ad4220862023ad842142410421300c140b200141106a41026a200141cc026a41026a2d00003a0000200120012f00cc023b01100c100b200141106a41026a200141cc026a41026a2d00003a0000200120012f00cc023b01100c0f0b200141106a41026a200141cc026a41026a2d00003a0000200120012f00cc023b01100c0e0b410421220c050b410221220c040b410321220c030b2001420037031020064100200128029001200128029401200141106a41082023100122222022417f461b2222410820224108491b20062802006a360200202241074d0d1120012903102159410721220c020b410521220c010b410621220b41082130200141e8016a41086a2059370300200120403602ec01200120223602e801200120012f0194023b01e401200120012d0096023a00e601200120012800103602dc012001200141106a41036a2800003600df010b0b0b0c070b200141cc026a41026a20014194026a41026a2d00003a0000200120012f0094023b01cc020c0a0b200141cc026a41026a200f41026a2d00003a00002001200f2f00003b01cc020c090b200141cc026a41026a201041026a2d00003a0000200120102f00003b01cc020c080b203320232d00003a0000200120012f00cc023b01100b0b0b200920012f0190023b0000200941026a20014190026a41026a2d00003a0000200141cc026a41026a20012d008e023a00002001203a360210200120393b0017200120012f018c023b01cc0220012001280284023602940220012001280087023600970220224103460d04200120012f01cc023b01e40120012001280294023602dc0120012001280097023600df01410221302001200141cc026a41026a2d00003a00e6012001290310213c200141e8016a41106a20273703002012202a370300200120383a00e901200120223a00e801200120373e01ea01200120374220883d01ee01204142088620394180fe0371410876ad842142204421432046214520482147204a2149204c214b204e214d2035214f202b21500b0c030b200141cc026a41026a200141c8026a41026a2d00003a0000200120012f00c8023b01cc020c020b200141003a0010200128029001200128029401200141106a410120231001212220062006280200202241016a222241014b6a36020020224102490d0141002106024020012d00102222450d0020224101470d02410121060b200141e8016a41106a200141106a41106a2901003703002012200141106a41086a290100370300200120012901103703e801200120012f0184023b01e40120012001280094023602dc01200120014184026a41026a2d00003a00e601200120014194026a41036a2800003600df012006213f410021300c010b410a21300b200141106a41106a2222200141e8016a41106a290300370300200141106a41086a2223201229030037030020014184026a41026a220620012d00e6013a0000200120012903e801370310200120012f01e4013b018402200120012802dc0136029402200120012800df01360097022030410a460d03202041016a2131200141c0016a41106a22242022290300370300200141c0016a41086a22362023290300370300200141bc016a41026a223220062d00003a0000200120012903103703c001200120012f0184023b01bc0120012001280294023602b40120012001280097023600b701202220242903003703002023203629030037030020014194026a41026a222420322d00003a0000200120012903c001370310200120012f01bc013b019402200120012802b4013602e801200120012800b7013600eb01024020202021470d00201f20312031201f491b2221ad42f8007e2227422088a70d092027a722064100480d09024002402020450d002004201341406a2006101322040d010c080b200610122204450d070b200421080b200820136a220641476a20054220883c0000200641436a20053e0000200641426a203e3a0000200641416a203f3a0000200641406a20303a0000202329030021272022290300212a2001290310212b20062045360000200641066a20242d00003a0000200641046a20012f0194023b0000200641076a20433b0000200641786a2050370000200641706a204f370000200641686a2042370000200641606a203c3700002006410c6a20012800eb01360000200641096a20012802e801360000200641586a202a370000200641506a2027370000200641486a202b370000200641346a205b360200200641306a205a360200200641286a2049370000200641206a2047370000200641186a204d370000200641106a204b370000201e4280808080107c211e201f41026a211f201341f8006a21132031212020312007490d000b201e2021ad8421050b2005422088a721222005a721060b200141106a200041f00010f5011a20222006470d042005a72005422088a72206470d04200641016a22082006490d0520064101742222200820082022491bad221e42f8007e2227422088a70d052027a722084100480d05024002402006450d002004200641f8006c200810132204450d010c050b2008101222040d040b200841081016000b2021450d00200410140b41b185c00041331015000b200641081016000b200542808080807083201e842105200421080b20082005422088a741f8006c6a200141106a41f00010f501220641f4006a2002360200200620033602702001410036021820014201370310200120054280808080107c2205422088a722063602e801200141e8016a200141106a101c02402006450d00200641f8006c2123200141186a210603400240024002400240024002400240024002400240200841f0006a2802004101470d00200141013a008402200128021420062802002222470d01202241016a22312022490d0c20224101742220203120312020491b22204100480d0c2022450d03200128021020222020101322310d040c0e0b200141003a008402200128021420062802002222470d01202241016a22312022490d0b20224101742220203120312020491b22204100480d0b2022450d05200128021020222020101322310d060c0e0b41012120200128021021310c030b41002120200128021021310c050b202010122231450d0a0b20012020360214200120313602102006280200212220012d00840221200b2006202241016a360200203120226a20203a00000c030b202010122231450d080b20012020360214200120313602102006280200212220012d00840221200b2006202241016a360200203120226a20203a0000200841f4006a2802002120024002400240024020012802142231200628020022226b41044f0d00202241046a22132022490d0720314101742222201320132022491b22224100480d072031450d01200128021020312022101322310d020c080b200128021021310c020b202210122231450d060b2001202236021420012031360210200628020021220b2006202241046a360200203120226a20203600000b2008200141106a101d200841f8006a2108202341887f6a22230d000b0b200141106a41086a28020021082001280214212220012802102106200141a0016a41086a22234200370300200142003703a00141c382c000410d200141a0016a1000200141a0026a41086a2023290300370300200120012903a0013703a002200141a0026a411020062008100202402022450d00200610140b02402005a7450d00200410140b200141c0036a24000f0b1010000b202241011016000b202041011016000b202041011016000bca0301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081001210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f22064103712204450d0020044101460d0120044102470d0220024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100122012001417f461b22014103200141034922011b20042802006a36020020010d04200228020841027621040c050b20064102762104410121030c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510012104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641044f0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100122012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410132203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010132203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101322030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101322030d0a0c0e0b2004101222030d110b200441011016000b200128020021030c050b200128020021030c070b2000101222030d0b0b200041011016000b200010122203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101322020d020c070b200128020021020c020b200010122202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011016000b200441011016000b200041011016000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000bc07103057f027e017f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220241084b0d000240024020020e09000603040107080509000b200141046a280200200141086a2802002202470d0e200241016a22032002490d4c20024101742204200320032004491b22044100480d4c2002450d1d20012802002002200410132203450d1e0c4a0b200141046a280200200141086a2802002202470d08200241016a22032002490d4b20024101742204200320032004491b22044100480d4b2002450d1220012802002002200410132203450d130c470b200141046a280200200141086a2802002202470d08200241016a22032002490d4a20024101742204200320032004491b22044100480d4a2002450d1320012802002002200410132203450d140c440b200141046a280200200141086a2802002202470d08200241016a22032002490d4920024101742204200320032004491b22044100480d492002450d1420012802002002200410132203450d150c410b200141046a280200200141086a2802002202470d08200241016a22032002490d4820024101742204200320032004491b22044100480d482002450d1520012802002002200410132203450d160c3e0b200141046a280200200141086a2802002202470d08200241016a22032002490d4720024101742204200320032004491b22044100480d472002450d1620012802002002200410132203450d170c2a0b200141046a280200200141086a2802002202470d09200241016a22032002490d4620024101742204200320032004491b22044100480d462002450d1920012802002002200410132203450d1a0c270b200141046a280200200141086a2802002202470d09200241016a22032002490d4520024101742204200320032004491b22044100480d452002450d1a20012802002002200410132203450d1b0c240b200141046a2204280200200141086a22022802002203470d09200341016a22052003490d4420034101742206200520052006491b22064100480d442003450d1b20012802002003200610132205450d1c0c210b200141046a280200200141086a2802002202470d09200241016a22032002490d2820024101742204200320032004491b22044100480d282002450d1c20012802002002200410132203450d1d0c1e0b200128020021030c3f0b200128020021030c3c0b200128020021030c390b200128020021030c360b200128020021030c220b200128020021030c3c0b200128020021030c1e0b200128020021030c1b0b200128020021050c180b200128020021030c150b2004101222030d340b200441011016000b2004101222030d300b200441011016000b2004101222030d2c0b200441011016000b2004101222030d280b200441011016000b2004101222030d130b200441011016000b2004101222030d2c0b200441011016000b2004101222030d0d0b200441011016000b2004101222030d090b200441011016000b2006101222050d050b200641011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0d20024101742204200320032004491b22044100480d0d2002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0d20024101742200200320032000491b22004100480d0d2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41073a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341044b0d000240024002400240024020030e050004020301000b200428020020022802002203470d08200341016a22052003490d4420034101742206200520052006491b22064100480d442003450d1120012802002003200610132205450d120c210b200428020020022802002203470d04200341016a22052003490d4320034101742206200520052006491b22064100480d432003450d0a20012802002003200610132205450d0b0c1e0b200428020020022802002203470d04200341016a22052003490d4220034101742206200520052006491b22064100480d422003450d0b20012802002003200610132205450d0c0c1b0b200428020020022802002203470d04200341016a22052003490d4120034101742206200520052006491b22064100480d412003450d0c20012802002003200610132205450d0d0c180b200428020020022802002203470d05200341016a22052003490d4020034101742206200520052006491b22064100480d402003450d0f20012802002003200610132205450d100c150b200428020020022802002203470d05200341016a22052003490d3f20034101742206200520052006491b22064100480d3f2003450d1020012802002003200610132205450d110c120b200128020021050c1a0b200128020021050c170b200128020021050c140b200128020021050c190b200128020021050c100b200128020021050c0d0b2006101222050d130b200641011016000b2006101222050d0f0b200641011016000b2006101222050d0b0b200641011016000b2006101222050d0f0b200641011016000b2006101222050d050b200641011016000b2006101222050d010b200641011016000b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41003a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d3020054101742203200620062003491b22034100480d302005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d3020034101742200200420042000491b22004100480d302003450d0120012802002003200010132203450d020c030b200128020021030c030b2000101222030d010b200041011016000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41023a00002000410c6a28020021050240024002400240024020042802002203200228020022026b41044f0d00200241046a22042002490d2e20034101742202200420042002491b22024100480d2e2003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a2005360000200041096a2d00002001104a0f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41043a0000200041186a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600002000411c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041206a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041246a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2c20054101742203200920092003491b22034100480d2c2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041286a28020021050240024002400240024020042802002204200228020022036b41044f0d00200341046a22062003490d2c20044101742203200620062003491b22034100480d2c2004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a20053600002000412c6a2d00002001104a200041106a290300210702400240024002400240200141046a2802002203200628020022006b41084f0d00200041086a22042000490d2c20034101742200200420042000491b22004100480d2c2003450d0120012802002003200010132203450d020c030b200128020021030c030b2000101222030d010b200041011016000b20012003360200200141046a2000360200200141086a28020021000b2002200041086a360200200320006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41033a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2a20054101742203200620062003491b22034100480d2a2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2a20054101742203200920092003491b22034100480d2a2005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022004101460d00024020004102460d0020004103470d02200428020020022802002200470d05200041016a22032000490d3c20004101742204200320032004491b22044100480d3c2000450d0b20012802002000200410132203450d0c0c150b200428020020022802002200470d02200041016a22032000490d3b20004101742204200320032004491b22044100480d3b2000450d0620012802002000200410132203450d070c120b200428020020022802002200470d02200041016a22032000490d3a20004101742204200320032004491b22044100480d3a2000450d0720012802002000200410132203450d080c0f0b200428020020022802002200470d03200041016a22032000490d3920004101742204200320032004491b22044100480d392000450d0a20012802002000200410132203450d0b0c0c0b200128020021030c100b200128020021030c0d0b200128020021030c100b200128020021030c090b2004101222030d0b0b200441011016000b2004101222030d070b200441011016000b2004101222030d090b200441011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41013a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41033a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41053a00002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d2820054101742203200920092003491b22034100480d282005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024020042802002204200228020022036b41204f0d00200341206a22052003490d2820044101742203200520052003491b22034100480d282004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b2002200341206a360200200420036a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41013a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2620054101742203200620062003491b22034100480d262005450d0120012802002005200310132205450d020c030b200128020021050c030b2003101222050d010b200341011016000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2620034101742200200420042000491b22004100480d262003450d0120012802002003200010132203450d020c030b200128020021030c030b2000101222030d010b200041011016000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41063a0000200041026a2103200141046a2802002105200428020021020240024002400240024002400240024002400240024020002d00014101470d0020052002470d01200241016a22002002490d2a20024101742204200020002004491b22044100480d2a2002450d0320012802002002200410132200450d040c090b20052002470d01200241016a22002002490d2920024101742204200020002004491b22044100480d292002450d0420012802002002200410132200450d050c060b200128020021000c080b200128020021000c050b2004101222000d050b200441011016000b2004101222000d010b200441011016000b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41003a000002400240024002400240200141046a28020020042802002200470d00200041016a22022000490d2620004101742204200220022004491b22044100480d262000450d0120012802002000200410132202450d020c030b200128020021020c030b2004101222020d010b200441011016000b20012002360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200220006a20032d00003a00000f0b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41013a000002400240024002400240200141046a2802002202200428020022006b41204f0d00200041206a22042000490d2420024101742200200420042000491b22004100480d242002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041206a360200200220006a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200120032900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d2e20024101742204200320032004491b22044100480d2e2002450d0720012802002002200410132203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d2d20024101742204200320032004491b22044100480d2d2002450d0420012802002002200410132203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d2c20024101742204200320032004491b22044100480d2c2002450d0720012802002002200410132203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011016000b2004101222030d070b200441011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2620034101742202200420042002491b22024100480d262003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d2620024101742200200320032000491b22004100480d262002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2420034101742202200420042002491b22024100480d242003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2220034101742202200420042002491b22024100480d222003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d2220034101742202200420042002491b22024100480d222003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041d8006a2903002107200041d0006a290300210802400240024002400240200141046a2802002203200428020022026b41104f0d00200241106a22042002490d2220034101742202200420042002491b22024100480d222003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241106a360200200320026a2202200737000820022008370000200041e8006a2903002107200041e0006a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d2220024101742200200320032000491b22004100480d222002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a280200417f6a220241064b0d00024002400240024020020e0700050203010607000b200141046a280200200141086a2802002202470d0b200241016a22032002490d3c20024101742204200320032004491b22044100480d3c2002450d1720012802002002200410132203450d180c300b200141046a280200200141086a2802002200470d06200041016a22022000490d3b20004101742203200220022003491b22034100480d3b2000450d0e20012802002000200310132202450d0f0c2d0b200141046a280200200141086a2802002200470d06200041016a22022000490d3a20004101742203200220022003491b22034100480d3a2000450d0f20012802002000200310132202450d100c2a0b200141046a280200200141086a2802002200470d06200041016a22022000490d3920004101742203200220022003491b22034100480d392000450d1020012802002000200310132202450d110c270b200141046a28020020042802002200470d06200041016a22022000490d3820004101742203200220022003491b22034100480d382000450d1120012802002000200310132202450d120c240b200141046a280200200141086a2802002200470d07200041016a22022000490d3720004101742203200220022003491b22034100480d372000450d1420012802002000200310132202450d150c210b200141046a280200200141086a2802002200470d07200041016a22022000490d3620004101742203200220022003491b22034100480d362000450d1520012802002000200310132202450d160c1e0b200141046a280200200141086a2802002202470d07200241016a22032002490d3520024101742204200320032004491b22044100480d352002450d1620012802002002200410132203450d170c180b200128020021020c270b200128020021020c240b200128020021020c210b200128020021020c1e0b200128020021030c250b200128020021020c1a0b200128020021020c170b200128020021030c110b2003101222020d1e0b200341011016000b2003101222020d1a0b200341011016000b2003101222020d160b200341011016000b2003101222020d120b200341011016000b2004101222030d180b200441011016000b2003101222020d0c0b200341011016000b2003101222020d080b200341011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41073a0000200041106a2903002107024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0320024101742200200320032000491b22004100480d032002450d0120012802002002200010132202450d020c040b200128020021020c040b2000101222020d020b200041011016000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41063a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a00002000410c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0f20024101742200200420042000491b22004100480d0f2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d1920024101742204200320032004491b22044100480d192002450d0720012802002002200410132203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1820024101742204200320032004491b22044100480d182002450d0420012802002002200410132203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0720012802002002200410132203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011016000b2004101222030d070b200441011016000b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a2903002107200041106a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1120024101742200200320032000491b22004100480d112002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a290000370000200220032900003700002000412c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0f20024101742200200420042000491b22004100480d0f2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0d20034101742202200420042002491b22024100480d0d2003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0d20024101742200200320032000491b22004100480d0d2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0b20024101742204200320032004491b22044100480d0b2002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0b20024101742200200320032000491b22004100480d0b2002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041016a2d00004101470d0020032002470d01200241016a22002002490d0f20024101742203200020002003491b22034100480d0f2002450d0320012802002002200310132200450d040c090b20032002470d01200241016a22002002490d0e20024101742203200020002003491b22034100480d0e2002450d0420012802002002200310132200450d050c060b200128020021000c080b200128020021000c050b2003101222000d050b200341011016000b2003101222000d010b200341011016000b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41003a00000f0b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41013a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41053a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0720024101742204200320032004491b22044100480d072002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a280200210502400240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241046a360200200320026a2005360000200041106a2903002107200041086a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0720024101742200200320032000491b22004100480d072002450d0120012802002002200010132202450d020c030b200128020021020c030b2000101222020d010b200041011016000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410132203450d020c030b200128020021030c030b2004101222030d010b200441011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0520034101742202200420042002491b22024100480d052003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041086a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041046a2802002103024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0320024101742200200420042000491b22004100480d032002450d0120012802002002200010132202450d020c040b200128020021020c040b2000101222020d020b200041011016000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000b130020004106360204200041ca83c0003602000bd40101037f230041306b2200240002400240024041a282c00041104184a1c100410041001001417f460d00200041003602204101210141a282c0004110200041206a41044100100141016a41044d0d022000280220210241a282c000411010030c010b410021010b20002002410020011b36020c200041206a41086a2201420037030020004200370320418080c0004115200041206a1000200041106a41086a200129030037030020002000290320370310200041106a41102000410c6a41041002200041306a24000f0b41b185c00041331015000b13002000410b360204200041a8bcc1003602000b02000b3101017f0240410110122202450d00200042818080801037020420002002360200200241003a00000f0b410141011016000bed1608017f017e027f017e037f017e057f017e230041c0016b2201240042002102200141a0016a41086a22034200370300200142003703a00141cc81c0004111200141a0016a100020014180016a41086a22042003290300370300200120012903a0013703800120014180016a4110100320034200370300200142003703a001418080c0004115200141a0016a100020042003290300370300200120012903a0013703800120014180016a4110100320034200370300200142003703a001419580c0004117200141a0016a100020042003290300370300200120012903a0013703800120014180016a4110100320034200370300200142003703a00141dd81c000410d200141a0016a1000200141206a41086a2003290300370300200120012903a0013703200240024002400240024002400240024002400240200141206a41104184a1c100410041001001417f460d00200142003703a001200141206a4110200141a0016a41084100100141016a41084d0d0220012903a0012105200141a0016a41086a22034200370300200142003703a00141dd81c000410d200141a0016a100020014180016a41086a2003290300370300200120012903a0013703800120014180016a41101003420121020c010b0b200141a0016a41086a22034200370300200142003703a00141b282c0004111200141a0016a1000200141206a41086a2003290300370300200120012903a00137032002400240200141206a41104184a1c100410041001001417f460d00200141b8016a4200370300200141a0016a41106a420037030020034200370300200142003703a001200141206a4110200141a0016a4120410010012203417f460d032003411f4d0d0320014180016a41186a2206200141a0016a41186a29030037030020014180016a41106a2207200141a0016a41106a29030037030020014180016a41086a2203200141a0016a41086a2204290300370300200120012903a00137038001200141e0006a41186a22082006290300370300200141e0006a41106a22062007290300370300200141e0006a41086a22072003290300370300200120012903800137036020044200370300200142003703a00141b282c0004111200141a0016a100020032004290300370300200120012903a0013703800120014180016a41101003200141c0006a41186a22032008290300370300200141c0006a41106a22042006290300370300200141c0006a41086a2206200729030037030020012001290360370340200141186a2003290300370300200141106a2004290300370300200141086a2006290300370300200120012903403703000c010b200141c0006a41186a200141e0006a41186a290300370300200141c0006a41106a200141e0006a41106a290300370300200141c0006a41086a200141e0006a41086a29030037030020012001290360370340200141186a4200370300200141106a4200370300200141086a4200370300200142003703000b42002109200141a0016a41086a22034200370300200142003703a00141bf81c000410d200141a0016a1000200141206a41086a2003290300370300200120012903a00137032002400240200141206a41104184a1c100410041001001417f460d0020014210370284012001200141206a36028001200141a0016a20014180016a102420012802a0012207450d0620012902a4012109200141a0016a41086a22034200370300200142003703a00141bf81c000410d200141a0016a100020014180016a41086a2003290300370300200120012903a0013703800120014180016a411010030c010b410421070b200141a0016a41086a22034200370300200142003703a00141ea81c0004115200141a0016a1000200141206a41086a22042003290300370300200120012903a00137032002400240200141206a41104184a1c100410041001001417f460d00200141b8016a4200370300200141a0016a41106a420037030020034200370300200142003703a001200141206a4110200141a0016a4120410010012203417f460d042003411f4d0d0420014180016a41186a2206200141a0016a41186a29030037030020014180016a41106a2208200141a0016a41106a29030037030020014180016a41086a2203200141a0016a41086a2204290300370300200120012903a00137038001200141e0006a41186a220a2006290300370300200141e0006a41106a22062008290300370300200141e0006a41086a22082003290300370300200120012903800137036020044200370300200142003703a00141ea81c0004115200141a0016a100020032004290300370300200120012903a0013703800120014180016a41101003200141c0006a41186a2203200a290300370300200141c0006a41106a22042006290300370300200141c0006a41086a2206200829030037030020012001290360370340200141206a41186a2003290300370300200141206a41106a2004290300370300200141206a41086a2006290300370300200120012903403703200c010b200141c0006a41186a200141e0006a41186a290300370300200141c0006a41106a200141e0006a41106a290300370300200141c0006a41086a200141e0006a41086a29030037030020012001290360370340200141206a41186a4200370300200141206a41106a420037030020044200370300200142003703200b200141e0006a41186a22034200370300200141e0006a41106a22044200370300200141e0006a41086a2206420037030020014200370360200141e0006a1004200141c0006a41186a2003290300370300200141c0006a41106a2004290300370300200141c0006a41086a200629030037030020012001290360370340200141a0016a41186a2208200141186a290300370300200141a0016a41106a220a200141106a290300370300200141a0016a41086a220b200141086a290300370300200120012903003703a00120034200370300200442003703002006420037030020014200370360200141a0016a4120200542002002a71b2202427f7c200141e0006a1005450d0720014180016a41186a220c200329030037030020014180016a41106a220d200429030037030020014180016a41086a220e200629030037030020012001290360370380012003200c2903003703002004200d2903003703002006200e290300370300200120012903800137036020082003290300370300200a2004290300370300200b2006290300370300200120012903603703a00102400240024020094220882205a722032009a7470d00200341016a22042003490d062005a74101742206200420042006491bad220f42247e2205422088a70d062005a722044100480d062003450d012007200341246c200410132207450d020c080b2009210f0c080b2004101222070d060b200441041016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b1010000b41b185c00041331015000b20094220882205a721030b2007200341246c6a220341003a0000200341196a200141b8016a290300370000200341116a200141b0016a290300370000200341096a200141a8016a290300370000200320012903a001370001200341216a20012f0080013b0000200341236a20014182016a2d00003a0000200f42ffffffff0f8320054220864280808080107c8421090b2000200129030037001420002002370300200020012903403700342000412c6a200141186a290300370000200041246a200141106a2903003700002000411c6a200141086a2903003700002000413c6a200141c0006a41086a290300370000200041c4006a200141c0006a41106a290300370000200041cc006a200141c0006a41186a290300370000200041ec006a200141206a41186a290300370000200041e4006a200141206a41106a290300370000200041dc006a200141206a41086a290300370000200020012903203700542000410c6a200937020020002007360208200141c0016a24000b9c1605027f017e137f017e0b7f23004190026b22022400200241086a2001101b02400240024002400240024002400240024002400240024002402002280208450d00200228020c2203ad42247e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510122206450d032003450d020c040b2000410036020020024190026a24000f0b4104210620030d020b41002115410021130c020b200541041016000b200241b8016a41106a2105200241b8016a4101722107200241f8006a41116a2108200241c7016a2109200241106a410172210a200141046a210b200141086a210c2002418c026a41026a210d20024180026a210e200241f0016a210f410021104100211141002112200321130340200241003a00b8012001280200200b280200200241b8016a4101200c28020010012114200c200c280200201441016a41014b22146a22153602002014450d0320022d00b801221441034b0d030240024002400240024002400240024020140e0400030102000b20022001101b2002280200450d0a20022802042214417f4c0d0d2014450d0320141080012215450d0f200c201441002001280200200b28020020152014200c280200100122162016417f461b2216201620144b1b2216200c2802006a36020020162014460d040c090b200241b8016a41186a2216420037030020054200370300200241b8016a41086a22174200370300200242003703b801200c41002001280200200b280200200241b8016a41202015100122142014417f461b2214412020144120491b200c2802006a3602002014411f4d0d09200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf0121182008411f6a200241b8016a411f6a290000370000200841186a2016290000370000200841106a2005290000370000200841086a2017290000370000200820022900b801370000410121170c040b200242003703b801200c41002001280200200b280200200241b8016a41082015100122142014417f461b2214410820144108491b200c2802006a2215360200201441074d0d0820022903b8012104200f4200370300200241b8016a41306a4200370300200241b8016a41286a4200370300200241b8016a41206a4200370300200241b8016a41186a420037030020054200370300200241b8016a41086a4200370300200242003703b801200c41002001280200200b280200200241b8016a41c0002015100122142014417f461b221441c000201441c000491b200c2802006a3602002014413f4d0d08200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a290000370300200241f8006a41186a200941186a290000370300200241f8006a41206a200941206a290000370300200241f8006a41286a200941286a290000370300200241f8006a41306a200941306a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf012118410221170c040b200241b8016a2001103020022802b8012215450d0720022902bc012118200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a2903003703002002200d2d00003a00b201200220022f008c023b01b001200220022903b801370378410021170c020b410121152001280200200b28020041014100200c28020010011a41002014470d050b200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a290300370300200220022f008c023b01b001200220022903b8013703782002200d2d00003a00b2012014ad22044220862004842118410321170b0b200d20022d00b2013a0000200241b8016a41086a2214200241f8006a41086a22192903003703002005200241f8006a41106a221a290300370300200241b8016a41186a2216200241f8006a41186a221b290300370300200241b8016a41206a221c200241f8006a41206a290300370300200241b8016a41286a221d200241f8006a41286a290300370300200241b8016a41306a221e200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241f4006a41026a221f200d2d00003a0000200241386a41086a22202014290300370300200241386a41106a22212005290300370300200241386a41186a22222016290300370300200241386a41206a2223201c290300370300200241386a41286a221c201d290300370300200241386a41306a221d201e290300370300200220022f018c023b0174200220022903b80137033820142018370300200720022f01743b0000200741026a201f2d00003a000020052002290338370000200541086a2020290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201c290300370000200541306a201d290300370000200220173a00b801200220153602bc01200e2004370300200241106a200241b8016a10860120022d00102117200241b8016a411f6a221c200a411f6a2800003600002016200a41186a2900003703002005200a41106a2900003703002014200a41086a2900003703002002200a2900003703b80120174102460d04201241016a2115200241f8006a411f6a221d201c280000360000201b2016290300370300201a200529030037030020192014290300370300200220022903b801370378024020122013470d002010201520152010491b2213ad42247e2204422088a70d062004a722144100480d0602402012450d00200620112014101322060d010c090b201410122206450d080b200620116a221420173a0000201441206a201d280000360000201441196a201b290300370000201441116a201a290300370000201441096a2019290300370000201441016a2002290378370000201041026a2110201141246a21112015211220152003490d000b0b2000201336020420002006360200200041086a201536020020024190026a24000f0b2014450d00201510140b2002418c026a41026a20022d00b2013a0000200241b8016a41086a2205200241f8006a41086a290300370300200241b8016a41106a2214200241f8006a41106a290300370300200241b8016a41186a220c200241f8006a41186a290300370300200241b8016a41206a200241f8006a41206a290300370300200241b8016a41286a200241f8006a41286a290300370300200241b8016a41306a200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241023a0010200241b8016a411f6a200a411f6a280000360000200c200a41186a2900003703002014200a41106a2900003703002005200a41086a2900003703002002200a2900003703b8010b2000410036020002402012450d00200621050340024020052d0000450d00200541086a280200450d00200541046a28020010140b200541246a21052011415c6a22110d000b0b02402013450d00200610140b20024190026a24000f0b1010000b100f000b201441041016000b201441011016000b9f0204017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1000200341086a20052903003703002003200329031037030002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012201417f460d012001410f4d0d01200341186a290300210420032903102106200342003703182003420037031020034110200341106a4110411010012201417f460d012001410f4d0d0120032903102107200041206a200341186a290300370300200041186a2007370300200041106a200437030020002006370308420121040b20002004370300200341206a24000f0b41b185c00041331015000b9d0705017f017e047f017e027f230041d0006b2203240042002104200341c0006a41086a220542003703002003420037034020012002200341c0006a1000200341206a41086a20052903003703002003200329034037032002400240200341206a41104184a1c100410041001001417f460d00200342103702342003200341206a360230200341186a200341306a101b2003280218450d01200328021c2106200341003a0040200341386a2201200128020022012003280230220720032802342208200341c0006a41012001100141016a41014b22026a22013602002002450d01024002400240024020032d0040220541037122024102460d0020024101460d0120020d022005410276ad2104420021090c030b20034100360240200320053a0040200341386a2202410020072008200341c0006a41017241032001100122012001417f461b22014103200141034922011b20022802006a36020020010d042003280240410276ad2104420021090c020b200341003b0140200320053a0040200341386a200120072008200341c0006a41017241012001100141016a220241014b6a36020020024102490d0320032f0140410276ad2104420021090c010b024002400240024020054102762202450d0020024104460d012002410c470d032003420037034820034200370340200341306a41086a410020072008200341c0006a41102001100122022002417f461b22024110200241104922021b20016a36020020020d06200341c0006a41086a29030021090c020b20034100360240200341386a410020072008200341c0006a41042001100122022002417f461b22024104200241044922021b20016a36020020020d0520033502402104420021090c030b4200210920034200370340200341306a41086a410020072008200341c0006a41082001100122022002417f461b22024108200241084922021b20016a36020020020d040b200329034021040c010b200241046a220a41104b0d02200341306a41086a210b4200210442002109410021020340200341003a0040200b200120072008200341c0006a41012001100141016a41014b22056a22013602002005450d03200341086a20033100404200200241037441f8007110fa01200341086a41086a290300200984210920032903082004842104200241016a220241ff0171200a490d000b0b20002004370308200041106a2009370300200041186a2006360200420121040b20002004370300200341d0006a24000f0b41b185c00041331015000b930c03057f017e027f230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020022034101460d00024020034102460d0020034103470d0220012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41003a00002001280200210620022001280208220136020c2002410c6a2002101c20022802042205200428020022036b20014f0d05200320016a22042003490d1520054101742203200420042003491b22034100480d152005450d0a20022802002005200310132204450d0b0c180b200141086a280200210320012802042105410110122201450d0d20024101360204200241086a22042004280200220641016a36020020022001360200200120066a41033a00002005290300210720022802042205200428020022016b41084f0d02200141086a22042001490d1420054101742201200420042001491b22014100480d142005450d0520022802002005200110132204450d060c120b20012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d02200341206a22042003490d1320054101742203200420042003491b22034100480d132005450d0620022802002005200310132204450d070c0f0b200141086a280200210320012802042101410110122204450d0d200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a2002101c2003450d1720034105742108200241086a220928020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d1720054101742204200320032004491b22044100480d172005450d01200228020020052004101322060d020c0e0b20022802002106200421030c020b200410122206450d0c0b200220043602042002200636020020092802002103200421050b2009200341206a2204360200200620036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200841606a22080d000c180b0b200228020021040c100b200228020021040c0d0b200228020021040c130b2001101222040d0c0b200141011016000b2003101222040d080b200341011016000b2003101222040d0d0b200341011016000b200441011016000b410141011016000b410141011016000b410141011016000b410141011016000b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a200737000002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110132204450d020c040b200228020021040c040b2001101222040d020b200141011016000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c020b2002200336020420022004360200200241086a28020021030b200241086a200320016a360200200420036a2006200110f5011a0b20002002290300370200200041086a200241086a280200360200200241106a24000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d0220042002412010f701450d02200441206a22062002460d0220062002412010f701450d02200441c0006a22062002460d0220062002412010f701450d02200441e0006a22062002460d0220044180016a210420062002412010f7010d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d0220042002412010f701450d022006200441206a2204470d000b0b41000f0b20050b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41023602002004412c6a4102360200200441013602342004420237021c200441b4c4c1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a41c4c4c100102c000bff1002177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b200021090c010b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d020b410221000240024002400240024002400240024002400240200d41776a220f411e4b0d0041f400210e0240200f0e1f09000303040303030303030303030303030303030303030303020303030302090b41ee00210e0c080b200d41dc00470d010b0c050b200d10c3010d03200d41ffff034b0d01200d4180fe0371410876211141d8a4c100211241002113410021000c020b41f200210e0c040b0240200d41ffff074b0d00200d4180fe037141087621164193aac100211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d05201341a8a5c1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d012010211320142112201441a8a5c100470d030c010b2010211320142112201441a8a5c100470d010b200d41ffff0371210e41d7a7c10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b024020104193aac100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41e0bdc2001018000b200f410173210f20004193aac100470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021039000b20132010103a000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841d5aac1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441d5aac100470d030c010b2010211820142117201441d5aac100470d010b200d41ffff0371210e41f3abc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041f0aec100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41e0bdc2001018000b200f410173210f200041f0aec100470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011039000b20182010103a000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c0240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b024020072802002004200a6a200b200a6b200828020028020c1101000d0002400340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d092019422088a741ff0171417f6a220041044b0d09024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c0008421190c030b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f832019428080808070838421190c010b201942ffffffff8f60834280808080108421190b410321000b2007280200200a2008280200280210110000450d000c020b0b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d030c040b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a10c401000b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a200310c501000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b110020012000280200200028020410c7010b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241b8bcc20036020420024184a1c100360200200210e901000bdc0701067f230041106b220324002003200136020c2003410c6a2002101c02400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101322060d020c070b200228020021060c020b200710122206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101322060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101322060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101322060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101322060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810122206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810122206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810122206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810122206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011016000b200841011016000b200841011016000b200841011016000b200841011016000bac0201027f230041206b2202240002400240410610122203450d00200341046a41002f00b689403b0000200341002800b2894036000020034106410c10132203450d01200320013600060240024002402003410a4184a1c100410041001001417f460d00200241186a4200370300200241106a4200370300200241086a4200370300200242003703002003410a20024120410010012201417f460d022001411f4d0d0220002002290300370000200041186a200241186a290300370000200041106a200241106a290300370000200041086a200241086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031014200241206a24000f0b41b185c00041331015000b410641011016000b410c41011016000b8f0803037f017e067f230041c0006b22012400200141306a41086a220242003703002001420037033041bb89c000411d200141306a1000200141106a41086a200229030037030020012001290330370310024002400240024002400240024002400240200141106a41104184a1c100410041001001417f460d00200142103702042001200141106a360200200141306a2001103020012802302202450d0402402001280234450d00200210140b20002802002202450d01200041046a280200450d0120021014200141c0006a24000f0b0240024020002802002203450d00200029020421040c010b410610122200450d06200041046a41002f00b689403b0000200041002800b2894036000020004106410c10132200450d07200041086a41002d00ba89403a0000200041002f00b889403b000602400240200041094184a1c100410041001001417f460d00200141003602104101210320004109200141106a41044100100141016a41044d0d0720012802102105200010142005450d012005ad4205862204422088a70d042004a722004100480d04200010122203450d0a41002102200321000340200141106a2002102e200041186a200141106a41186a290000370000200041106a200141106a41106a290000370000200041086a200141106a41086a29000037000020002001290010370000200041206a21002005200241016a2202470d000c020b0b2000101441012103410021050b2005ad220442208620048421040b200141003602182001420137031020012004422088a72200360230200141306a200141106a101c024002402000450d00200041057421064100200141106a41086a28020022026b210720012802102108200128021421092003210003400240200920076a411f4b0d00200241206a22052002490d052009410174220a20052005200a491b22054100480d05024002402009450d00200820092005101322080d010c080b200510122208450d070b200521090b200820026a22052000290000370000200541186a200041186a290000370000200541106a200041106a290000370000200541086a200041086a290000370000200741606a2107200241206a2102200041206a2100200641606a22060d000b200141186a200236020020012009360214200120083602100c010b200141186a280200210220012802142109200128021021080b200141306a41086a220042003703002001420037033041bb89c000411d200141306a1000200141106a41086a200029030037030020012001290330370310200141106a411020082002100202402009450d00200810140b2004a7450d00200310140b200141c0006a24000f0b1010000b200541011016000b41b185c00041331015000b41b185c00041331015000b410641011016000b410c41011016000b200041011016000bdb0403027f017e0d7f230041d0006b22022400200241086a2001101b02400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011016000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a360200200f0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101322060d010c060b200e10122206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d00200610140b200241d0006a24000f0b1010000b200e41011016000b130020004106360204200041ecc4c1003602000b130020004109360204200041968ec0003602000b130020004101360204200041b4c8c1003602000bd80101027f024002400240024002402000280200220141064b0d0020010e0704040104020403040b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d00200128020010140b0240200141106a280200450d002001410c6a28020010140b200141186a2101200241686a22020d000b0b200041086a280200450d03200041046a28020010140f0b200041086a280200450d02200028020410140f0b200041086a280200450d01200028020410140f0b200041086a280200450d00200028020410140f0b0b8b2f09247f047e0f7f017e087f027e107f027e1a7f230041d0026b2204240002400240024020014115490d0041012105410221064103210741322108413021094108210a4158210b4150210c417f210d4138210e410b210f4128211041202111411821124110211341afe000211441807f2115410021164160211741682118417021194178211a41c000211b41c800211c41d000211d41d800211e4101211f41012120410021210c010b410021230c010b410121230b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024020230e020001010b20014102490d0c41a07f2158200041a07f6a21594101215a4100215b4130215c4108215d4158215e4150215f417f21604128216141182162412021634110216441a87f2165418801216641d8002167418001216841d000216941f800216a41c800216b41f000216c41c000216d41e800216e4138216f41e000217041012171410121210c010b02400240024020210e03000d01010b201f20207121220c010b2049204c20096c6a212302400340204b204c200d6a224c4f0d012023290300212a2023200a6a21252023200c6a22242123202a2045542025290300222a204454202a2044511b0d000c100b0b2000204537030020002044370308203d2046290300370300203f204729030037030020412048290300370300200020042903003703102001204b20056a2223490d082000202320096c6a2100200120236b22014115490d020b2003450d090240201f2005710d002000200110362003200d6a21030b2001200676222320076c21242023200574212541002126024020012008490d00200620052000202320096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b222c1b202c20282029202c1b2228202720096a290300222954202a202b202c1b222a2027200e6a290300222b54202a202b511b222d1b200020232023200d6a222e202c1b222f20096c6a222729030020292028202d1b542027200a6a2903002228202b202a202d1b222a542028202a511b22306a2000202520096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22316a2028202920311b222820002025200572223220096c6a2227290300222954202a202b20311b222a2027200a6a290300222b54202a202b511b22336a200020252025200d6a223420311b223520096c6a22272903002029202820331b542027200a6a2903002228202b202a20331b222a542028202a511b22366a2000202420096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22376a2028202920371b2228202720096a290300222954202a202b20371b222a2027200e6a290300222b54202a202b511b22276a200020242024200d6a223820371b223920096c6a22262903002029202820271b542026200a6a2903002228202b202a20271b222a542028202a511b223a6a21262039202420056a2038202420371b20271b203a1b2124203520322034202520311b20331b20361b2125202f202320056a202e2023202c1b202d1b20301b21230b20262000202320096c6a222729030022282000202520096c6a222c2903002229542027200a6a290300222a202c200a6a290300222b54202a202b511b22276a2028202920271b22282000202420096c6a222c290300222954202a202b20271b222a202c200a6a290300222b54202a202b511b222c6a212602400240024020002025202320271b223920096c6a223129030020292028202c1b5a2031200a6a2903002228202b202a202c1b222a5a2028202a511b0d00202620056a2226200f4b0d0120264521230c020b20242023202520271b202c1b213920264521230c010b024020012005762224450d002000200120096c6a200c6a2123200021250340200441a0026a20106a2227202520106a222c290300370300200441a0026a20116a2226202520116a2231290300370300200441a0026a20126a2237202520126a222d290300370300200441a0026a20136a2233202520136a222e290300370300200441a0026a200a6a222f2025200a6a2230290300370300200420252903003703a0022023200a6a2232290300212a202320136a2234290300212b202320126a22352903002128202320116a223629030021292023290300213b202c202320106a223829030037030020312029370300202d2028370300202e202b3703002030202a3703002025203b370300203820272903003703002036202629030037030020352037290300370300203420332903003703002032202f290300370300202320042903a002370300202520096a21252023200c6a21232024200d6a22240d000b0b20012039200d736a2139410121230b02402022200d73202345722005710d002000200110370d0c0b024002402002450d00203920014f0d0a2000203920096c6a22232903002002290300542023200a6a2225290300222a2002200a6a290300222b54202a202b511b0d01200441a0026a20106a223c200020106a223d290300370300200441a0026a20116a223e200020116a223f290300370300200441a0026a20126a2240200020126a2241290300370300200441a0026a20136a2242200020136a2224290300370300200441a0026a200a6a22432000200a6a2227290300370300200420002903003703a0022025290300212a202320136a222c2903002144202320126a2226290300212b202320116a2231290300212820232903002145203d202320106a2237290300370300203f20283703002041202b370300202420443703002027202a370300200020453703002037203c2903003703002031203e29030037030020262040290300370300202c204229030037030020252043290300370300202320042903a0023703002027290300214420002903002145200420126a2246203d290300370300200420136a2247203f2903003703002004200a6a22482041290300370300200420242903003703002000200c6a2149200020096a214a4100214b41002001224c200d6a22254f0d040c100b2001450d070b203920014f0d05200441a0026a20106a2234200020106a224d290300370300200441a0026a20116a2235200020116a224e290300370300200441a0026a20126a2236200020126a224f290300370300200441a0026a20136a2238200020136a2250290300370300200441a0026a200a6a221f2000200a6a2251290300370300200420002903003703a0022000203920096c6a2223290300212a2023200a6a2225290300212b202320136a22242903002128202320126a22272903002129202320116a222c290300213b204d202320106a2226290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a37030020262034290300370300202c203529030037030020272036290300370300202420382903003703002025201f290300370300202320042903a0023703002051290300212a2000290300212b200420126a2252204d290300370300200420136a2253204e2903003703002004200a6a2254204f29030037030020042050290300370300200020096a21314100212002402001200d6a2224450d00203121230340202b20232903005a202a2023200a6a29030022285a202a2028511b0d01202320096a2123202020056a22202024490d000b0b2000200120096c6a21232024212502400340202321272025223a20204d0d01203a200d6a2125202b2027200c6a222329030054202a2027200b6a290300222854202a2028511b450d000b0b203a2020490d042024203a490d034180012130410021264100212e4100212c4100213341800121322031202020096c6a225521310340202720316b222320096e21250240024002400240024002400240202320144b22390d00202520156a2025202e2026492033202c4922247222371b21232037450d012032202320241b21322023203020241b21300b2033202c470d020c010b2023202320057622326b21302033202c470d010b2032450d0141002125200441206a2233212c203121230340202c20253a0000202c202b20232903005a202a2023200a6a29030022285a202a2028511b6a212c202320096a21232032202520056a2225470d000b0b202e2026470d020c010b200441206a222c2133202e2026470d010b02402030450d002027200c6a212341002125200441a0016a222e21260340202620253a00002026202b202329030054202a2023200a6a290300222854202a2028511b6a21262023200c6a21232030202520056a2225470d000c020b0b200441a0016a2226212e0b02402026202e6b2223202c20336b2225202520234b1b222f450d002034203120332d000020096c6a222320106a2903003703002035202320116a2903003703002036202320126a2903003703002038202320136a290300370300201f2023200a6a290300370300200420232903003703a002203120332d000020096c6a22232027202e2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703000240202f2005460d004100212403402027202e20246a22372d0000200d7320096c6a22232031203320246a20056a222d2d000020096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703002031202d2d000020096c6a22232027203720056a2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a290300370300202420066a2123202420056a222521242023202f490d000b202e20256a212e203320256a21330b2027202e2d0000200d7320096c6a222320042903a002370300202320106a2034290300370300202320116a2035290300370300202320126a2036290300370300202320136a20382903003703002023200a6a201f290300370300202e20056a212e203320056a21330b2031203220096c6a20312033202c461b21312027201620306b20096c6a2027202e2026461b212720390d000b024002402033202c4f0d00034020342031202c200d6a222c2d000020096c6a222520106a22242903003703002035202520116a22262903003703002036202520126a22372903003703002038202520136a222d290300370300201f2025200a6a222e290300370300200420252903003703a0022027200c6a222329030021282027200b6a222f2903002129202720176a2230290300213b202720186a22322903002156202720196a2239290300215720242027201a6a22272903003703002026205737030020372056370300202d203b370300202e20293703002025202837030020272034290300370300203920352903003703002032203629030037030020302038290300370300202f201f290300370300202320042903a002370300202321272033202c490d000c020b0b20312123202e20264f0d0003402026200d6a22262d000021252034202320106a22242903003703002035202320116a222c2903003703002036202320126a22312903003703002038202320136a2237290300370300201f2023200a6a222d290300370300200420232903003703a00220272025200d7320096c6a222529030021282025200a6a22332903002129202520136a222f290300213b202520126a22302903002156202520116a223229030021572024202520106a2239290300370300202c2057370300203120563703002037203b370300202d202937030020232028370300203920342903003703002032203529030037030020302036290300370300202f20382903003703002033201f290300370300202520042903a002370300202320096a2123202e2026490d000b0b2000202a3703082000202b370300204d2052290300370300204e2053290300370300204f2054290300370300200020042903003703100240024002402001202320556b20096e20206a22254d0d002034204d2903003703002035204e2903003703002036204f29030037030020382050290300370300201f2051290300370300200420002903003703a0022000202520096c6a2223290300212a2023200a6a2224290300212b202320136a22272903002128202320126a222c2903002129202320116a2226290300213b204d202320106a2231290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a3703002031203429030037030020262035290300370300202c2036290300370300202720382903003703002024201f290300370300202320042903a002370300200120256b2224450d0120242025202520244b1b21272001200776212c202320096a21260240024020252024200d6a22014f0d002000202520022003103520232102202621000c010b20262001202320031035202521010b2027202c4f211f203a20204d2120200141154f0d02410021230c160b41b8c9c100202520011038000b41c8c9c1001018000b41002121410121230c130b410121230c120b410021230c110b41022121410121230c100b203a20241039000b2020203a103a000b41b8c9c100203920011038000b41a8c9c100410041001038000b20232001103a000b41e0c9c100203920011038000b20002001103b200441d0026a24000f0b2071205a6a2127024020002071205c6c6a2224205f6a2223290300202429030022285a2024205e6a290300222b2024205d6a2225290300222a5a202b202a511b0d00200420626a2231202420616a222c290300370300200420646a2237202420636a22262903003703002004205d6a222d202420626a2233290300370300200420242903103703002024202329030037030020252023205d6a290300370300202420646a202320646a2903003703002033202320626a2903003703002026202320636a290300370300202c202320616a2903003703002000207120606a222c205c6c6a21260240024002400240202c450d00205b212520592123202420586a29030020285a202420656a290300222b202a5a202b202a511b0d030340202320666a202320676a290300370300202320686a202320696a2903003703002023206a6a2023206b6a2903003703002023206c6a2023206d6a2903003703002023206e6a2023206f6a290300370300202320706a2023205c6a2903003703002025205a460d022023290300212b2023205d6a2124202520606a21252023205f6a2123202b2028542024290300222b202a54202b202a511b0d000c030b0b4100212c0c020b410021250b20002025205c6c6a21262025212c0b202620283703002026202a3703082000202c205c6c6a222320616a2031290300370300202320636a2037290300370300202320626a202d290300370300202320042903003703100b205b205a6a215b2059205c6a21592027217120272001470d010b200441d0026a24000f0b41012121410121230c060b203c204a204b20096c6a222320106a2225290300370300203e202320116a22272903003703002040202320126a222c2903003703002042202320136a222629030037030020432023200a6a2231290300370300200420232903003703a002202420096a2237290300212a2024200e6a222d290300212b2024201b6a223329030021282024201c6a222e29030021292024201d6a222f290300213b20252024201e6a22242903003703002027203b370300202c2029370300202620283703002031202b3703002023202a3703002024203c290300370300202f203e290300370300202e204029030037030020332042290300370300202d2043290300370300203720042903a002370300204b20056a224b204c200d6a22254f0d010b204a204b20096c6a212302400340202329030020455a2023200a6a290300222a20445a202a2044511b450d01202320096a2123204b20056a224b2025490d000b410221210c020b410221210c020b410221210c020b410121230c020b410121230c010b410121230c000b0b86090b107f017e017f017e017f017e017f017e017f017e017f230041306b22022400024002400240024020014108490d00200141017641feffffff07712203417f6a220420014f0d032001410d74200173220541117620057322054105742005732206417f2001417f6a677622077122054100200120052001491b6b220520014f0d01200241286a22082000200441306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e2903003703002013201029030037030020052002290300370300200320014f0d022006410d7420067322044111762004732204410574200473220620077122044100200120042001491b6b220520014f0d01200241286a22082000200341306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e29030037030020132010290300370300200520022903003703002003410172220420014f0d032006410d742006732205411176200573220541057420057320077122054100200120052001491b6b220520014f0d01200241286a22032000200441306c6a220141286a2204290300370300200241206a2206200141206a2207290300370300200241186a2208200141186a2209290300370300200241106a220a200141106a220b290300370300200241086a220c200141086a220d290300370300200220012903003703002000200541306c6a22002903002112200041086a22052903002114200041106a220e2903002116200041186a220f2903002118200041206a2210290300211a2004200041286a22112903003703002007201a37030020092018370300200b2016370300200d2014370300200120123703002011200329030037030020102006290300370300200f2008290300370300200e200a2903003703002005200c290300370300200020022903003703000b200241306a24000f0b41b8c9c100200520011038000b200321040b41a8c9c100200420011038000bf30b05087f027e107f017e017f230041306b22022400200041c07e6a2103200041506a21044100210520014132492106410121070240024002400340024002400240200720014f0d002004200741306c6a210803402008290300200841306a220929030054200841086a290300220a200841386a290300220b54200a200b511b0d0220092108200741016a22072001490d000b0b410021082007200146210920060d030c010b410121082007200146210920060d020b20072001460d012007417f6a220920014f0d022008450d032000200941306c6a2208290300210a20082000200741306c220c6a2209290300370300200241286a220d200841286a220e290300370300200241206a220f200841206a2210290300370300200241186a2211200841186a2212290300370300200241106a2213200841106a2214290300370300200241086a2215200841086a22162903003703002016200941086a22172903003703002014200941106a22182903003703002012200941186a22192903003703002010200941206a221a290300370300200e200941286a221b2903003703002002200a370300201b200d290300370300201a200f29030037030020192011290300370300201820132903003703002017201529030037030020092002290300370300024020074102490d0020002007417e6a220f41306c6a220d2903002008290300221c5a200d41086a221d290300220b2016290300220a5a200b200a511b0d002008200d2903003703002016201d2903003703002008290310210b2014200d41106a2903003703002011200e29030037030020132010290300370300201520122903003703002012200d41186a2903003703002010200d41206a290300370300200e200d41286a2903003703002002200b3703000240024002400240200f450d0020002007417d6a221641306c6a2208290300201c5a200841086a290300220b200a5a200b200a511b0d032003200c6a2108034020084188016a200841d8006a29030037030020084180016a200841d0006a290300370300200841f8006a200841c8006a290300370300200841f0006a200841c0006a290300370300200841e8006a200841386a290300370300200841e0006a200841306a2903003703002016450d022008290300210b200841086a210d200841506a21082016417f6a2116200b201c54200d290300220b200a54200b200a511b0d000b201641016a210f0c020b4100210f0c020b4100210f0b2000200f41306c6a210d0b200d201c370300200d200a3703082000200f41306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b200541016a21050240200120076b220e4102490d002009290300221c20092903305a2017290300220a200941386a290300220b5a200a200b511b0d002009200941306a22162903003703002017201641086a2903003703002009290310210b2018201641106a2903003703002011201b2903003703002013201a290300370300201520192903003703002019201641186a290300370300201a201641206a290300370300201b201641286a2903003703002002200b370300410121100240200e4103490d00201c20092903605a200a200941e8006a290300220b5a200a200b511b0d00200941e0006a21084103210d41022117034020092017221041306c6a221641786a200841286a290300370300201641706a200841206a290300370300201641686a200841186a290300370300201641606a200841106a290300370300201641586a200841086a290300370300201641506a2008290300370300200d200e4f0d01200d41306c2108200d2117200d41016a210d201c200920086a220829030054200a200841086a290300220b54200a200b511b0d000b0b2016201c3703002016200a3703082009201041306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b20054105490d000b410021090b200241306a240020090f0b41a8c9c100200920011038000b41b8c9c100200720011038000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41033602002003411c6a4102360200200341033602242003420237020c200341a8bcc200360208200320033602282003200341046a3602202003200341206a360218200341086a2000102c000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41033602002002411c6a4102360200200241033602242002420237020c200241c8bcc2003602082002200241046a360228200220023602202002200241206a360218200241086a41d8bcc200102c000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41033602002002411c6a4102360200200241033602242002420237020c200241e8bcc2003602082002200241046a360228200220023602202002200241206a360218200241086a41f8bcc200102c000bdd0b09167f017e037f017e017f017e017f027e0c7f230041306b2202240002400240024020014101762203450d00417f210441022105413021064108210741282108412021094118210a4110210b4100210c0c010b4100210d0c010b4101210d0b03400240024002400240024002400240024002400240024002400240200d0e020001010b4102212420014102490d01417f2125412821264120212741182128411021294108212a4130212b4101212c2001212d4101210c0c0b0b02400240200c0e020001010b200320046a2203210d0340200d410174221a41017221230240201a20056a221a20014f0d00202320014f0d06201a20232000201a20066c6a22172903002000202320066c6a221929030054201720076a2903002218201920076a290300221c542018201c511b1b21230b0240202320014f0d00200d20014f0d042000202320066c6a221a2903002000200d20066c6a220d2903005a201a20076a22192903002218200d20076a2217290300221c5a2018201c511b0d00200220086a220e200d20086a220f290300370300200220096a2210200d20096a22112903003703002002200a6a2212200d200a6a22132903003703002002200b6a2214200d200b6a2215290300370300200220076a221620172903003703002002200d29030037030020192903002118201a200b6a221b290300211c201a200a6a221d290300211e201a20096a221f2903002120201a2903002121200f201a20086a2222290300370300201120203703002013201e3703002015201c37030020172018370300200d20213703002022200e290300370300201f2010290300370300201d2012290300370300201b201429030037030020192016290300370300201a20022903003703002023210d0c010b0b20030d074100210d0c0c0b202d20256a222d20014f0d05200220266a220e200020266a221a290300370300200220276a220f200020276a2223290300370300200220286a2210200020286a2217290300370300200220296a2211200020296a22192903003703002002202a6a22122000202a6a2213290300370300200220002903003703002000202d202b6c6a220d2903002118200d202a6a2214290300211c200d20296a2215290300211e200d20286a22162903002120200d20276a221b2903002121201a200d20266a221d29030037030020232021370300201720203703002019201e3703002013201c37030020002018370300201d200e290300370300201b200f290300370300201620102903003703002015201129030037030020142012290300370300200d20022903003703004100210d0340200d202c74221a202c7221230240201a20246a221a202d4f0d002023202d4f0d06201a20232000201a202b6c6a221729030020002023202b6c6a2219290300542017202a6a29030022182019202a6a290300221c542018201c511b1b21230b02402023202d4f0d00200d202d4f0d0420002023202b6c6a221a2903002000200d202b6c6a220d2903005a201a202a6a22192903002218200d202a6a2217290300221c5a2018201c511b0d00200e200d20266a2213290300370300200f200d20276a22142903003703002010200d20286a22152903003703002011200d20296a2216290300370300201220172903003703002002200d29030037030020192903002118201a20296a221b290300211c201a20286a221d290300211e201a20276a221f2903002120201a29030021212013201a20266a2222290300370300201420203703002015201e3703002016201c37030020172018370300200d20213703002022200e290300370300201f200f290300370300201d2010290300370300201b201129030037030020192012290300370300201a20022903003703002023210d0c010b0b202d202c4b0d070b200241306a24000f0b4180cac100200d20011038000b4180cac100200d202d1038000b41f0c9c100202320011038000b41f0c9c1002023202d1038000b41b8c9c100202d20011038000b4100210c0c010b4101210c0c010b4101210d0c020b4101210d0c010b4101210d0c000b0bf80303027f027e027f230041206b220224000240024002400240412010122203450d0020032000290020370000200341186a200041386a290000370000200341106a200041306a290000370000200341086a200041286a2900003700002003412041c00010132203450d0120032000290040370020200341386a200041d8006a290000370000200341306a200041d0006a290000370000200341286a200041c8006a290000370000200041086a290300210420002903002105200341c00041800110132203450d0220032005370040200341c8006a200437000020032000290310370050200341d8006a200041186a2903003700000240024020002d00604101470d00200341e0006a41013a0000200341800141800210132203450d05200341f9006a200041f9006a290000370000200341f1006a200041f1006a290000370000200341e9006a200041e9006a2900003700002003200041e1006a29000037006141810121000c010b200341e0006a41003a000041e10021000b2001280204210620012802002101200241106a41086a220742003703002002420037031020012006200241106a1000200241086a2007290300370300200220022903103703002002411020032000100220031014200241206a24000f0b412041011016000b41c00041011016000b41800141011016000b41800241011016000b890201027f230041306b22022400024002400240410f10122203450d00200341076a41002900ce9140370000200341002900c791403700002003410f411e10132203450d012003200136000f200241206a41086a220142003703002002420037032020034113200241206a1000200241086a20012903003703002002200229032037030002400240200241104184a1c100410041001001417f460d002002421037021420022002360210200241206a200241106a103020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b20031014200241306a24000f0b410f41011016000b411e41011016000b41b185c00041331015000bc30609047f017e017f017e037f017e047f017e017f23004180066b22022400200241c8026a2001103f200241d8026a280200210320022802d402210420022802d002210520022903c802210620024190056a200241dc026a41e40010f5011a024002400240024002400240024002400240024002402005450d00200241086a20024190056a41e40010f5011a2002200110402002280200450d0820022802042207ad42e0017e2208422088a70d032008a72209417f4c0d032009450d0120091012220a450d042007450d020c050b2000410036020820024180066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081016000b200241c8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241c8026a2001104120024190056a200241c8026a41f00010f5011a200241c8026a41f0006a2903002108200241a8046a200b41e80010f5011a20084203510d02200e41016a2110200241d8016a20024190056a41f00010f5011a200241f0006a200241a8046a41e80010f5011a0240200e200f470d00200d20102010200d491b220fad42e0017e2211422088a70d052011a722124100480d050240200e450d00200a200920121013220a0d010c070b20121012220a450d060b200a20096a200241d8016a41f00010f501220e41f0006a2008370300200e41f8006a200241f0006a41e80010f5011a200c4280808080107c210c200d41026a210d200941e0016a21092010210e20102007490d000b200a450d020b200241c8026a200241086a41e40010f5011a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241c8026a41e40010f5011a200041fc006a200c200fad84370200200041f8006a200a36020020024180066a24000f0b0240200e450d00200a4188016a2110034020101042201041e0016a2110200941a07e6a22090d000b0b200f450d00200a10140b2000410036020802402003450d00200341246c2110200521090340024020092d0000450d00200941086a280200450d00200941046a28020010140b200941246a21092010415c6a22100d000b0b02402004450d00200510140b20024180066a24000f0b1010000b201241081016000b9d2107077f017e037f017e0a7f027e0b7f23004180036b22022400200241a8026a41186a22034200370300200241a8026a41106a22044200370300200241a8026a41086a22054200370300200242003703a802200241a8026a2001280200220620012802042207412020074120491b220810f5011a2001200720086b3602042001200620086a360200024002402007411f4d0d00200241e8016a41186a22072003290300370300200241e8016a41106a22082004290300370300200241e8016a41086a22062005290300370300200220022903a8023703e801200241a8016a41186a2007290300370300200241a8016a41106a2008290300370300200241a8016a41086a2006290300370300200220022903e8013703a801410121070c010b410021070b200241a8026a41186a2208200241a8016a41186a290300370300200241a8026a41106a2206200241a8016a41106a290300370300200241a8026a41086a2203200241a8016a41086a290300370300200220022903a8013703a80202400240024002400240024002400240024002400240024002400240024002400240024002402007450d00200241206a41186a2008290300370300200241206a41106a2006290300370300200241206a41086a2003290300370300200220022903a802370320200241106a20011081012002290310a7450d0120022903182109200241a8026a41186a22054200370300200241a8026a41106a220a4200370300200241a8026a41086a220b4200370300200242003703a802200241a8026a20012802002204200141046a22032802002207412020074120491b220610f5011a2003200720066b22083602002001200420066a22063602002007411f4d0d02200241e8016a41186a22072005290300370300200241e8016a41106a2204200a290300370300200241e8016a41086a2205200b290300370300200220022903a8023703e801200241c0006a41186a2007290300370300200241c0006a41106a2004290300370300200241c0006a41086a2005290300370300200220022903e801370340200241a8026a2008412020084120491b22076a41004100412020076b2007411f4b1b10f4011a200241a8026a2006200710f5011a2003200820076b3602002001200620076a3602002008411f4d0d03200241e8016a41186a2207200241a8026a41186a290300370300200241e8016a41106a2208200241a8026a41106a290300370300200241e8016a41086a2206200241a8026a41086a290300370300200220022903a8023703e801200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2006290300370300200220022903e801370360200241086a200110402002280208450d0c200228020c220cad42247e220d422088a70d0f200da72207417f4c0d0f2007450d0420071012220e450d06200c450d050c070b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b4104210e200c0d020b410021164200210d0c020b200741041016000b200241a8026a41106a2107200241a8026a410172210f200241e8016a41116a2110200241b7026a211120024180016a4101722103200141046a210b200241fc026a41026a2112200241f0026a2113200241a8026a41076a21144200210d41002115410021084100210a200c21160340200b2802002106200241003a00a802200241a8026a200128020022172006410047220410f5011a20062004490d06200b200620046b22053602002001201720046a22043602002006450d0320022d00a802220641034b0d030240024002400240024002400240024020060e0400030102000b2002200110402002280200450d0a20022802042206417f4c0d0f2006450d0320061080012205450d1120052001280200200b2802002204200620042006491b220410f5011a200b28020022172004490d12200b201720046b3602002001200128020020046a36020020042006460d040c090b200241a8026a2005412020054120491b22066a41004100412020066b2006411f4b1b10f4011a200241a8026a2004200610f5011a200b200520066b3602002001200420066a3602002005411f4d0d09200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a2d00003a0000200220022f00a8023b01a002200220112900003703e8012002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021182010411f6a200241a8026a411f6a290000370000201041186a200241a8026a41186a290000370000201041106a2007290000370000201041086a200241a8026a41086a290000370000201020022900a802370000410121170c040b200242003703a802200241a8026a20042005410820054108491b220610f5011a200b200520066b22173602002001200420066a2204360200200541074d0d0820022903a8022119200241a8026a201741c000201741c000491b22066a4100410041c00020066b2006413f4b1b10f4011a200241a8026a2004200610f5011a200b201720066b3602002001200420066a3602002017413f4d0d08200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a290000370300200241e8016a41186a201141186a290000370300200241e8016a41206a201141206a290000370300200241e8016a41286a201141286a290000370300200241e8016a41306a201141306a2d00003a0000200220022f00a8023b01a002200220112900003703e801410221172002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021180c040b200241a8026a2001107d20022802a8022205450d0720022902ac022118200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220122d00003a00a202200220022f00fc023b01a002200220022903a8023703e801410021170c020b4101210541002006470d050b200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220022f00fc023b01a002200220022903a8023703e801200220122d00003a00a2022006ad22194220862019842118410321170b0b201220022d00a2023a0000200241a8026a41086a2206200241e8016a41086a221a2903003703002007200241e8016a41106a221b290300370300200241a8026a41186a2204200241e8016a41186a221c290300370300200241a8026a41206a221d200241e8016a41206a290300370300200241a8026a41286a221e200241e8016a41286a290300370300200241a8026a41306a221f200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241e4016a41026a222020122d00003a0000200241a8016a41086a22212006290300370300200241a8016a41106a22222007290300370300200241a8016a41186a22232004290300370300200241a8016a41206a2224201d290300370300200241a8016a41286a221d201e290300370300200241a8016a41306a221e201f290300370300200220022f01fc023b01e401200220022903a8023703a80120062018370300200f20022f01e4013b0000200f41026a20202d00003a0000200720022903a801370000200741086a2021290300370000200741106a2022290300370000200741186a2023290300370000200741206a2024290300370000200741286a201d290300370000200741306a201e290300370000200220173a00a802200220053602ac022013201937030020024180016a200241a8026a10860120022d0080012117200241a8026a411f6a221d2003411f6a2800003600002004200341186a2900003703002007200341106a2900003703002006200341086a290000370300200220032900003703a80220174102460d04200a41016a2105200241e8016a411f6a221e201d280000360000201c2004290300370300201b2007290300370300201a2006290300370300200220022903a8023703e8010240200a2016470d002015200520052015491b2216ad42247e2219422088a70d082019a722064100480d080240200a450d00200e200820061013220e0d010c0b0b20061012220e450d0a0b200e20086a220620173a0000200641206a201e280000360000200641196a201c290300370000200641116a201b290300370000200641096a201a290300370000200641016a20022903e801370000200d4280808080107c210d201541026a2115200841246a21082005210a2005200c490d000b0b200e450d03200241a8026a41186a2201200241206a41186a290300370300200241a8026a41106a2207200241206a41106a290300370300200241a8026a41086a2208200241206a41086a290300370300200241e8016a41086a2206200241c0006a41086a290300370300200241e8016a41106a2203200241c0006a41106a290300370300200241e8016a41186a2204200241c0006a41186a290300370300200241a8016a41086a2205200241e0006a41086a290300370300200241a8016a41106a220a200241e0006a41106a290300370300200241a8016a41186a220b200241e0006a41186a290300370300200220022903203703a802200220022903403703e801200220022903603703a8012000200d2016ad8437020c2000200e36020820002009370300200041146a20022903a8023702002000411c6a2008290300370200200041246a20072903003702002000412c6a2001290300370200200041346a20022903e8013702002000413c6a2006290300370200200041c4006a2003290300370200200041cc006a2004290300370200200041ec006a200b290300370200200041e4006a200a290300370200200041dc006a2005290300370200200041d4006a20022903a80137020020024180036a24000f0b2006450d00200510140b200241fc026a41026a20022d00a2023a0000200241a8026a41086a2201200241e8016a41086a290300370300200241a8026a41106a2207200241e8016a41106a290300370300200241a8026a41186a2206200241e8016a41186a290300370300200241a8026a41206a200241e8016a41206a290300370300200241a8026a41286a200241e8016a41286a290300370300200241a8026a41306a200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241023a008001200241a8026a411f6a2003411f6a2800003600002006200341186a2900003703002007200341106a2900003703002001200341086a290000370300200220032900003703a8020b0240200a450d00200e21010340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012008415c6a22080d000b0b2016450d00200e10140b2000410036020820024180036a24000f0b20042006103a000b1010000b100f000b200641041016000b200641011016000b20042017103a000bcb0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510f5011a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000322034103712204450d00024020044101460d0020044102470d0241002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810f5011a200141046a200620086b3602002001200520086a36020020070d0520022f010c20022d000e411074724108742003724102762101410121040c050b200241003a000b2002410b6a20052006410047220410f5011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b20034102762101410121040c030b200341044f0d004100210420024100360204200241046a200520064104200641044922081b220310f5011a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004103a000b20042006103a000bdd1204047f017e087f037e230041a0046b22022400200241186a200110400240024002400240024002400240024002402002280218450d00200241003a00880220024188026a2001280200220320012802042204410047220510f5011a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d008802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b200241b0016a2001107e02400240024020022d00b0014102460d00200241e0026a41206a200241b0016a41206a280200360200200241e0026a41186a200241b0016a41186a290300370300200241e0026a41106a200241b0016a41106a290300370300200241e0026a41086a200241b0016a41086a290300370300200220022903b0013703e00220024188026a41386a2207420037030020024188026a41306a2208420037030020024188026a41286a2209420037030020024188026a41206a220a420037030020024188026a41186a220b420037030020024188026a41106a220c420037030020024188026a41086a220d4200370300200242003703880220024188026a20012802002203200141046a220e280200220441c000200441c000491b220510f5011a200e200420056b3602002001200320056a3602002004413f4d0d0020024188036a41386a200729030037030020024188036a41306a200829030037030020024188036a41286a200929030037030020024188036a41206a200a29030037030020024188036a41186a200b29030037030020024188036a41106a200c29030037030020024188036a41086a200d290300370300200220022903880237038803200241086a20011081012002280208450d002002290310210f200141046a220e2802002104200241003a00880220024188026a200128020022072004410047220510f5011a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310088022210500d01200241003a00880220024188026a20052003410047220410f5011a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310088024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024188016a41206a200241e0026a41206a28020036020020024188016a41186a200241e0026a41186a29030037030020024188016a41106a200241e0026a41106a29030037030020024188016a41086a200241e0026a41086a290300370300200241c8036a41086a20024188036a41086a290300370300200241c8036a41106a20024188036a41106a290300370300200241c8036a41186a20024188036a41186a290300370300200241c8036a41206a20024188036a41206a290300370300200241c8036a41286a20024188036a41286a290300370300200241c8036a41306a20024188036a41306a290300370300200241c8036a41386a20024188036a41386a290300370300200220022903e0023703880120022002290388033703c8030c030b20052004103a000b20052004103a000b20042003103a000b200241b0016a41206a220420024188016a41206a280200360200200241b0016a41186a220520024188016a41186a290300370300200241b0016a41106a220320024188016a41106a290300370300200241b0016a41086a220e20024188016a41086a29030037030020024188026a41086a2207200241c8036a41086a29030037030020024188026a41106a2208200241c8036a41106a29030037030020024188026a41186a2209200241c8036a41186a29030037030020024188026a41206a220a200241c8036a41206a29030037030020024188026a41286a220b200241c8036a41286a29030037030020024188026a41306a220c200241c8036a41306a29030037030020024188026a41386a220d200241c8036a41386a29030037030020022002290388013703b001200220022903c80337038802024020064202520d0020004203370370200241a0046a24000f0b200241e0006a41206a2004280200360200200241e0006a41186a2005290300370300200241e0006a41106a2003290300370300200241e0006a41086a200e290300370300200241206a41086a2007290300370300200241206a41106a2008290300370300200241206a41186a2009290300370300200241206a41206a200a290300370300200241206a41286a200b290300370300200241206a41306a200c290300370300200241206a41386a200d290300370300200220022903b00137036020022002290388023703200b20024188026a2001107c20022d0088022101200241c8036a20024188026a41017241d70010f5011a02402001410a470d0020004203370370200241a0046a24000f0b200241b0016a200241c8036a41d70010f5011a200241c8036a41206a2204200241e0006a41206a280200360200200241c8036a41186a2205200241e0006a41186a290300370300200241c8036a41106a2203200241e0006a41106a290300370300200241c8036a41086a220e200241e0006a41086a29030037030020024188026a41086a2207200241206a41086a29030037030020024188026a41106a2208200241206a41106a29030037030020024188026a41186a2209200241206a41186a29030037030020024188026a41206a220a200241206a41206a29030037030020024188026a41286a220b200241206a41286a29030037030020024188026a41306a220c200241206a41306a29030037030020024188026a41386a220d200241206a41386a290300370300200220022903603703c80320022002290320370388022000200f370300200020022903c803370308200041106a200e290300370300200041186a2003290300370300200041206a2005290300370300200041286a2004280200360200200020022903880237022c200041346a20072903003702002000413c6a2008290300370200200041c4006a2009290300370200200041cc006a200a290300370200200041d4006a200b290300370200200041dc006a200c290300370200200041e4006a200d29030037020020004188016a20013a000020004180016a2010370300200020113703782000200637037020004189016a200241b0016a41d70010f5011a200241a0046a24000bf20301027f024002400240024002400240024002400240024020002d0000220141084b0d0020010e09090109090902030405090b200041086a2d00004102470d08200041106a280200450d082000410c6a28020010140f0b200041086a280200220141064b0d04024020010e0708080008060807080b200041106a280200450d072000410c6a28020010140f0b200041086a2d0000410c490d06200041106a280200450d062000410c6a28020010140f0b200041046a2802004102470d05200041086a22002802001042200028020010140f0b200041086a2d00004102470d040240200041106a280200450d002000410c6a28020010140b02402000411c6a280200450d00200041186a28020010140b200041286a280200450d04200041246a28020010140f0b200041086a2d00004104470d03200041d0006a280200450d03200041cc006a28020010140f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d00200128020010140b0240200141106a280200450d002001410c6a28020010140b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a28020010140f0b200041106a280200450d012000410c6a28020010140f0b200041106a280200450d002000410c6a28020010140f0b0bb12e07047f017e037f017e067f017e117f230041a0026b22012400200141b0016a41086a22024200370300200142003703b001418890c0004113200141b0016a1000200141386a41086a2002290300370300200120012903b0013703380240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141386a41104184a1c100410041001001417f460d00200141003a00b001200141386a4110200141b0016a41014100100141016a41014d0d0220012d00b0012102200141b0016a41086a22034200370300200142003703b001418890c0004113200141b0016a1000200141086a41086a2003290300370300200120012903b001370308200141086a411010032002450d00200141186a41086a220242003703002001420037031841bb89c000411d200141186a1000200141386a41086a200229030037030020012001290318370338200141386a41104184a1c100410041001001417f460d0d2001421037021c2001200141386a360218200141b0016a200141186a103020012802b0012204450d0320012902b4012105200141186a41086a220242003703002001420037031841bb89c000411d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41101003410610122202450d04200241046a41002f00b689403b0000200241002800b2894036000020024106410c10132202450d05200241086a41002d00ba89403a0000200241002f00b889403b000602400240200241094184a1c100410041001001417f460d00200141003602384101210620024109200141386a41044100100141016a41044d0d03200128023821072002101420074521082007450d012007ad4205862209422088a70d102009a722024100480d10200210122206450d0941002103200621020340200141386a2003102e200241186a200141386a41186a290000370000200241106a200141386a41106a290000370000200241086a200141386a41086a29000037000020022001290038370000200241206a21022007200341016a2203470d000c020b0b200210144101210841002107410121060b024020072005422088a7220a470d000240200a450d0020042006460d004100210b2006210220042103034020022003412010f7010d02200241206a2102200341206a2103200b41016a220b200a490d000b0b20080d0c200610142005a70d0d0c0e0b42002109200141186a41086a220242003703002001420037031841bf81c000410d200141186a1000200141b0016a41086a2002290300370300200120012903183703b0014100210202400240200141b0016a41104184a1c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a10242001280238220c450d08200129023c2209422088a7210d2009a721020c010b4104210c4100210d0b200141186a41026a2203200141286a41026a2d00003a0000200141386a41086a220b200141b0016a41086a290200370300200141386a41106a220a200141b0016a41106a280200360200200120012f00283b0118200120012902b001370338024002400240200d2002470d0020022009a7220e470d0c200241016a22082002490d112002410174220f20082008200f491b220ead42247e2210422088a70d112010a722084100480d112002450d01200c200241246c20081013220c450d020c0b0b2002210e0c0c0b20081012220c0d090b200841041016000b4190cac1001018000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b410641011016000b410c41011016000b41b185c00041331015000b200241011016000b20094280808080708321090b2009422088a7210d0b200c200d41246c22086a220241013a00002002410c6a2007360200200241086a2007360200200241046a2006360200200241036a20032d00003a0000200220012f01183b0001200241206a200a280200360200200241186a200b290300370200200241106a200129033837020020014100360210200142013703082001200d41016a2211360238200141386a200141086a101c024002402011450d00200841246a2108200c210203400240024020022d00004101470d002002410c6a2802002103200241046a28020021074100210b0c010b4101210b200241016a21070b200141386a41086a20033602002001200736023c2001200b360238200141186a200141386a10272001280218210a0240024002400240200128020c220b200141086a41086a220f28020022036b200141186a41086a28020022074f0d00200320076a22062003490d0a200b4101742212200620062012491b22124100480d0a200b450d012001280208200b2012101322060d020c1a0b200128020821060c020b201210122206450d180b2001201236020c200120063602082012210b0b200f200320076a2212360200200620036a200a200710f5011a0240200128021c450d00200a10140b200241246a21022008415c6a22080d000c020b0b200141106a2802002112200128020c210b200128020821060b200141186a41086a220242003703002001420037031841bf81c000410d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41102006201210020240200b450d00200610140b02402011450d00200d41246c41246a2103200c21020340024020022d0000450d00200241086a280200450d00200241046a28020010140b200241246a21022003415c6a22030d000b0b200e450d00200c10140b2005a7450d010b200410140b20001044200141186a41086a2202420037030020014200370318418080c0004115200141186a1000200141386a41086a2002290300370300200120012903183703380240200141386a41104184a1c100410041001001417f460d00200141003602b001200141386a4110200141b0016a41044100100141016a41044d0d1020012802b001220a450d0041002107034020072103411a10122202450d14200241186a41002f00effb403b0000200241106a41002900e7fb40370000200241086a41002900dffb40370000200241002900d7fb403700002002411a413410132202450d132002200336001a200141b0016a41086a22074200370300200142003703b0012002411e200141b0016a1000200141086a41086a2007290300370300200120012903b00137030802400240200141086a41104184a1c100410041001001417f460d002001420037034020014200370338200141086a4110200141386a411041001001220b417f460d17200b410f4d0d17200141386a41086a29030021052001290338210920074200370300200142003703b0012002411e200141b0016a1000200141186a41086a2007290300370300200120012903b001370318200141186a41101003420121100c010b420021100b200341016a21072002101402402009200584500d002010a7450d00200141386a41106a2005370300200141386a41086a2009370300200141386a41186a2003360200200141053a0038200141386a101a0b200a2007470d000b0b4108210742002105200141086a41086a220242003703002001420037030841d596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a104520012802382207450d0e200129023c21050b02402005422088a72213450d0020134106742103200741106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200341406a22030d000b0b02402005a7450d00200710140b200141086a41086a220242003703002001420037030841aef6c0004118200141086a1000200141186a41086a20022903003703002001200129030837031802400240200141186a41104184a1c100410041001001417f460d0020014100360238200141186a4110200141386a41044100100141016a41044d0d102001280238210a0c010b413c210a0b4108210742002105200141086a41086a220242003703002001420037030841d596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a104520012802382207450d0d200129023c21050b02402005422088a7220b450d00200b4106742103200741106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200341406a22030d000b0b02402005a7450d00200710140b200141086a41086a220242003703002001420037030841a4f1c000411b200141086a1000200141186a41086a20022903003703002001200129030837031841002102200a200b6c220341e4006e2114024002400240024002400240200141186a41104184a1c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a104620012802382215450d11200128023c2116200141c0006a28020022020d010c020b41042115410021164100450d010b201520024102746a2117200141dd016a2118200141286a41086a2119200341e3004b211a200141386a41206a211b200141386a412c6a211c200141386a41286a211d200141386a411c6a211e200141d4016a211f200141c8016a2120201521120340200141286a2012280200220f10472001280228210e4100210a410021064100210b4100210802402019280200220c450d00200c41216c2107200e41206a2102410021084100210b410021064100210a03400240024020022d000022034101460d00024020034102460d0020034103470d02200a41016a210a200241216a21022007415f6a22070d030c040b200641016a2106200241216a21022007415f6a22070d020c030b200b41016a210b200241216a21022007415f6a22070d010c020b200841016a2108200241216a21022007415f6a22070d000b0b200141386a200f1048200141386a41106a290300210942002105200141086a41086a220242003703002001420037030841dd81c000410d200141086a1000200141186a41086a220320022903003703002001200129030837031802400240024002400240024002400240024002400240200141186a41104184a1c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0120012903b00121050b200242003703002001420037030841fcf3c0004116200141086a100020032002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0220012903b00121102013450d050c060b200242003703002001420037030841b291c0004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a41104184a1c100410041001001417f460d0020014200370318200141b0016a4110200141186a41084100100141016a41084d0d0320012903182210500d044280de34201080211020130d060c050b4280de34420580211020130d050c040b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b4194a1c2001018000b201a200b20144f7121070c010b4105210d200a2013460d02201a200b20144f712107200c2013470d004104210d20070d010c020b2005201020097c540d024102210d2007450d010b4103210d0b200f200d104922070d0342002105200242003703002001420037030841dd81c000410d200141086a100020032002290300370300200120012903083703180240200141186a41104184a1c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0620012903b00121050b411610122203450d072003410e6a41002900d4f640370000200341086a41002900cef640370000200341002900c6f64037000020034116412c1013220c450d08200c200f360016200141b0016a41086a22034100360200200142013703b001410410122207450d0920014284808080c0003702b401200120073602b0012007200f36000020074104410810132207450d0a2001428880808080013702b40120072008360004200120073602b00120074108411010132207450d0b20014290808080c0013702b4012007200b3600082007200636000c20034110360200200120073602b00120074110412010132207450d0c2007200a360010200142a0808080c0023702b401200120073602b001200d200141b0016a104a024002400240024020012802b4012211200328020022046b41084f0d00200441086a22072004490d0a20114101742221200720072021491b22214100480d0a2011450d0120012802b00120112021101322070d020c120b20012802b00121070c020b202110122207450d100b200120213602b401200120073602b001202121110b200720046a20053700002002420037030020014200370308200c411a200141086a100020032002290300370300200120012903083703b001200141b0016a41102007200441086a100202402011450d00200710140b200c1014200141b0016a412c6a200d3a0000200141b0016a41286a200a360200201f2006360200200141b0016a41206a200b360200200141b0016a411c6a20083602002020200f360200200141b0016a41106a2005370300200341043a0000201820012f00183b0000201841026a200141186a41026a2d00003a0000200141073a00b001200141b0016a101a0b0240201b280200450d00201e28020010140b0240201c280200450d00201d28020010140b201241046a21120240200128022c450d00200e10140b20122017470d000b0b2016450d01201510140c010b0240200141d8006a280200450d00200141d4006a28020010140b0240200141e4006a280200450d00200141e0006a28020010140b0240200128022c450d00200e10140b02402016450d00201510140b2007412810060b2000104b200141086a41086a220242003703002001420037030841ea96c1004112200141086a1000200141186a41086a200229030037030020012001290308370318024002400240200141186a41104184a1c100410041001001417f460d0020014200370338200141186a4110200141386a41084100100141016a41084d0d0b20012903382000510d010c020b42012000520d010b200141386a41086a2000370300200141093a0038200141386a101a200141086a41086a2202420037030020014200370308419bafc0004119200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a41104184a1c100410041001001417f460d00200141003a0038200141b0016a4110200141386a41014100100141016a41014d0d0c20012d0038450d010b200141086a41086a220242003703002001420037030841d596c1004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b00102400240200141b0016a41104184a1c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a104520012802382202450d0e2001200129023c37023c200120023602380c010b20014100360240200142083703380b2001200141386a104c0b200141a0026a24000f0b41b185c00041331015000b1010000b411641011016000b412c41011016000b410441011016000b410841011016000b411041011016000b412041011016000b41b185c00041331015000b202141011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b201241011016000b413441011016000b411a41011016000b41b185c00041331015000b8d540b037f027e017f017e027f037e0d7f027e037f047e127f230041b0036b2201240020014180026a41086a22024200370300200142003703800241c880c100411820014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021040240024002400240024002400240024002400240024002400240024002400240024002400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0120012903c00221040b20024200370300200142003703800241b0fbc000411520014180026a10002003200229030037030020012001290380023703a00202400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0320012903c00222054200520d0141e0a6c2001018000b42e80721050b20014180026a41086a2202420037030020014200370380024183fbc000411920014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200020047d20058221050240200141a0026a41104184a1c100410041001001417f460d00200141003a00c002200141a0026a4110200141c0026a41014100100141016a41014d0d0320012d00c002210220014180026a41086a2203420037030020014200370380024183fbc000411920014180026a1000200141a0026a41086a200329030037030020012001290380023703a002200141a0026a41101003200241004721060c040b20054200520d04410121060c030b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b4200210720014180026a41086a22024200370300200142003703800241a591c000410d20014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00242002100024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0120012903c00221000b20024200370300200142003703800241e080c100411420014180026a10002003200229030037030020012001290380023703a0020240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0220012903c00221070b20014180026a41086a220242003703002001420037038002419cfbc000411420014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00202400240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0420012903c00242017c21040c010b420121040b200141c0026a41086a22082004370300200141033a00c002200141c0026a101a200120043703c002200242003703002001420037038002419cfbc000411420014180026a10002003200229030037030020012001290380023703a002200141a0026a4110200141c0026a41081002200120003703c00220024200370300200142003703800241e080c100411420014180026a10002003200229030037030020012001290380023703a002200141a0026a4110200141c0026a4108100220034200370300200142003703a00241f480c1004119200141a0026a100020082003290300370300200120012903a0023703c00202400240200141c0026a41104184a1c100410041001001417f460d00200142003703a002200141c0026a4110200141a0026a41084100100141016a41084d0d0520012903a0022104200141a0026a41086a22024200370300200142003703a00241f480c1004119200141a0026a100020014180026a41086a2002290300370300200120012903a0023703800220014180026a411010034201a74101470d010c060b4200a74101460d050b2005500d060c050b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200120043703c00220014180026a41086a22024200370300200142003703800241b0fbc000411520014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200141a0026a4110200141c0026a410810020b20014180026a41086a22024200370300200142003703800241dd81c000410d20014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021040240200141a0026a41104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0220012903c00221040b200120043703c00220024200370300200142003703800241c880c100411820014180026a10002003200229030037030020012001290380023703a002200141a0026a4110200141c0026a410810020b0240024002402006450d0020014180026a41086a22024200370300200142003703800241b291c000411520014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200141a0026a41104184a1c100410041001001417f460d01200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0420012903c00221040c020b200141a0026a21090c060b420521040b20014180026a41086a22024200370300200142003703800241b0fbc000411520014180026a1000200141c0026a41086a200229030037030020012001290380023703c00202400240200141c0026a41104184a1c100410041001001417f460d00200142003703a002200141c0026a4110200141a0026a41084100100141016a41084d0d044200210a20012903a00220047e22044200510d010c070b4200210a42e80720047e22044200520d060b20014180026a41086a2202200a3703002001200a3703800241abdec000411c20014180026a1000200141a0026a41086a200229030037030020012001290380023703a0020240200141a0026a41104184a1c100410041001001417f460d00200142003703c802200142003703c002200141a0026a4110200141c0026a4110410010012202417f460d042002410f4d0d04200141c8026a290300210b20012903c002210a0c070b4200210b0c060b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b410121020c070b200020077d2200200420042000541b2200200a510d0220014180026a41086a22024200370300200142003703800241abdec000411c20014180026a1000200141a0026a41086a200229030037030020012001290380023703a0022004421086200080210402400240200141a0026a41104184a1c100410041001001417f460d00200142003703c802200142003703c002200141a0026a4110200141c0026a4110410010012202417f460d032002410f4d0d03200141c8026a290300210020012903c00221050c010b42002105420021000b200141d0016a200520002004420010f90120012903d001421088200141d0016a41086a290300220442308684210a2004421088210b0b4200210c20014180026a41086a22024200370300200142003703800241c5fbc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200141a0026a41104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c002220d450d0420012902c402210c0c010b4101210d0b4105210e200c422088a74105742202450d03200d20026a210f41202110411c211141182112410021134110211441082115413c211641342117412c2118412421194201211a4200211b4160211c200d211d4100211e0c040b41b185c00041331015000b41c091c2001018000b41b185c00041331015000b410021020c010b410221020b0240024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024020020e03000102020b200141d8026a200b370300200141d0026a200a370300200141c8026a41003a0000200141043a00c002200141c0026a101a200141c0026a41c7dec00041121025200141a0026a2109200ca7450d0c200d1014410121020c100b20014180026a41086a220242003703002001420037038002419cfbc000411420014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021040240024002400240024002400240024002400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0120012903c00221040b20024200370300200142003703800241a6cfc000411520014180026a10002003200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d0020014180026a41086a22024200370300200142003703800241a6cfc000411520014180026a1000200141a0026a41086a200229030037030020012001290380023703a002200141a0026a411010030c010b20014180026a41086a22024200370300200142003703800241d9dec000411b20014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a002420021000240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0620012903c00221000b20024200370300200142003703800241f4dec000411620014180026a10002003200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0820012903c00222054200520d0141d891c2001018000b42e80721050b200420007d2005824200520d210b20014180026a41086a220242003703002001420037038002418adfc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0320012903c00242017c21040c010b420121040b200120043703c00220014180026a41086a220242003703002001420037038002418adfc000411220014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00220094110200141c0026a41081002200242003703002001420037038002419cdfc000411a20014180026a10002003200229030037030020012001290380023703a0020240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d03200120012903c00222043703e00120014180026a41086a22024200370300200142003703800241f4dec000411620014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d06200420012903c002520d010c020b200442e807510d010b200120043703c00220014180026a41086a22024200370300200142003703800241f4dec000411620014180026a1000200141a0026a41086a2203200229030037030020012001290380023703a00220094110200141c0026a41081002200242003703002001420037038002419cfbc000411420014180026a10002003200229030037030020012001290380023703a002420021040240200941104184a1c100410041001001417f460d00200142003703c002200141a0026a4110200141c0026a41084100100141016a41084d0d0820012903c00221040b200120043703c00220024200370300200142003703800241d9dec000411b20014180026a10002003200229030037030020012001290380023703a00220094110200141c0026a410810020b20014180026a41086a22024200370300200142003703800241dccdc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a0020240024002400240200941104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c0022223450d0b20012802c40221244105210341002125200141c8026a2802004105742202450d020c010b4101212341002124410521034100212541004105742202450d010b20022003752226ad42307e2204422088a70d1c2004a722034100480d1c200310122227450d0a202320026a22282023470d010c0c0b4108212741002126202320026a22282023460d0b0b41002125411821294110212a4108212b4120212c4128212d4101212e4130212f410521304160213120272132202321334101211e0c160b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200341081016000b02400240201e0e020001010b201d450d0a201110122202450d02200220126a20132800a3ce40360000200220146a201329009bce40370000200220156a2013290093ce403700002002201329008bce4037000020022011201610132202450d032002201d29000037001c200220176a201d20126a290000370000200220186a201d20146a290000370000200220196a201d20156a290000370000200141c0026a200220161026200141c0026a20156a22032903002100200141c0026a20146a290300210520012903c002210720021014420021040240024002400240200a200042002007201a5122021b2200200a2000200a542005420020021b2200200b542000200b511b22021b221f7d2205200b2000200b20021b22207d200a201f54ad7d220784500d00200141c0026a201d107a2003280200210220012802c0022108200141c0016a201d1062200141c0016a20156a290300210420012903c00121002002450d012002200e7422032106200821020340200141b0016a20021062200141b0016a20156a29030020047c20012903b001220420007c2200200454ad7c2104200220106a21022006201c6a22060d000b2004201b2000201a562004201b522004501b22021b21042000201a20021b2100200821020340200141a0016a2002106220014190016a20012903a001200141a0016a20156a2903002005200710f90120014180016a20012903900120014190016a20156a2903002000200410f801200220012903800120014180016a20156a290300106a200220106a21022003201c6a22030d000b200141f0006a201d10622000200484201b510d09200141f0006a20156a2903002121200129037021220c020b420021000c020b200141e0006a201d10622004201b2000201a562004201b522004501b22021b21042000201a20021b2100200141e0006a20156a2903002121200129036021220b200141d0006a202220212005200710f901200141c0006a2001290350200141d0006a20156a2903002000200410f801200141c0006a20156a29030021002001290340210420012802c402450d00200810140b201d2004201f7c2205200020207c2005200454ad7c106a201d20106a2202211d2002200f470d08410021020c0f0b200141c0026a20296a221e203320296a290000370300200141c0026a202a6a22082033202a6a290000370300200141c0026a202b6a22342033202b6a290000370300200120332900003703c00220014180026a200141c0026a107220014180026a202b6a28020021022001280280022106200141306a200141c0026a1062200141306a202b6a29030021042001290330210002402002450d0020022030742103200621020340200141206a20021062200141206a202b6a29030020047c2001290320220420007c2200200454ad7c21042002202c6a2102200320316a22030d000b0b2033202c6a21330240200128028402450d00200610140b200141a0026a20296a2202201e290300370300200141a0026a202a6a22032008290300370300200141a0026a202b6a22062034290300370300200120012903c0023703a00220322004370308203220003703002032202d6a20022903003703002032202c6a2003290300370300203220296a2006290300370300203220012903a0023703102025202e6a21252032202f6a213220332028470d080b02402024450d00202310140b20014180026a41086a22024200370300200142003703800241eecdc000411d20014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d04202520012802c0024f0d010c160b20254104490d150b4100212b20272025410041202025676b103520014180026a41086a22024200370300200142003703800241b6dfc000411620014180026a1000200141a0026a41086a200229030037030020012001290380023703a0020240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d0520012802c002212b0b024002402025450d0020252025202b202b20254b1b417f6a22024d0d07202741086a29030021042027200241306c6a22022903002105200241086a29030021002027290300210741102115411010122202450d010c100b42002107420021044200210542002100411021154110101222020d0f0b201541011016000b411c41011016000b413c41011016000b41b185c00041331015000b41c091c2001018000b41b185c00041331015000b41f091c200200220251038000b4100211e0c030b4101211e0c040b410021020c040b410121020c030b410221020c020b410221020c010b410221020c000b0b200220073700002002200437000820022015412010132202450d0120022005370010200241186a200037000020014180026a41086a22154200370300200142003703800241c7dec000411220014180026a1000200141a0026a41086a201529030037030020012001290380023703a002200941102002412010022002101402400240202b450d0041002132202b2027202541306c6a221520276b41306d22022002202b4b1b2223450d012023ad4205862204422088a70d022004a722024100480d02200210122233450d04202b450d060c050b4100212341012133410021320c050b4101213341002123202b0d030c040b1010000b412041011016000b200241011016000b20152027460d00202541306c2131200141c0026a41106a21034101211020332115202721020340200141c0026a41286a200241286a290300370300200141c0026a41206a200241206a290300370300200141c0026a41186a200241186a2903003703002003200241106a290300370300200141c0026a41086a200241086a29030037030020022903002104200141a0026a41086a221c200341086a290300370300200141a0026a41106a2206200341106a290300370300200141a0026a41186a222c200341186a290300370300200120043703c002200120032903003703a002201541186a202c290300370000201541106a2006290300370000201541086a201c290300370000201520012903a002370000202b20102232460d01200241306a2102203241016a2110201541206a2115203141506a22310d000b0b02402026450d00202710140b4200210720014180026a41086a22024200370300200142003703800241c5fbc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a002024002400240200941104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c0022225450d0220012902c40221070c010b410121250b024002400240024002402007422088a7410574222c450d0020252115034002400240024002400240411c10122202450d00200241186a41002800f7cf40360000200241106a41002900efcf40370000200241086a41002900e7cf40370000200241002900dfcf403700002002411c413c10132202450d012002201529000037001c200241346a201541186a22102900003700002002412c6a201541106a221c290000370000200241246a201541086a220629000037000020014180026a41086a222b420037030020014200370380022002413c20014180026a1000200141a0026a41086a2203202b29030037030020012001290380023703a002200141a0026a4110100320021014411210122202450d02200241106a41002f00fccc4022313b0000200241086a41002900f4cc402204370000200241002900eccc40220037000020024112413210132202450d03200220152900003700122002412a6a2010290000370000200241226a201c2900003700002002411a6a200629000037000020034200370300200142003703a00220024132200141a0026a1000200141c0026a41086a2003290300370300200120012903a0023703c002024002400240200141c0026a41104184a1c100410041001001417f460d00200141003602a002200141c0026a4110200141a0026a41044100100141016a41044d0d0220012802a002211d20034200370300200142003703a00220024132200141a0026a1000202b2003290300370300200120012903a0023703800220014180026a4110100320021014201d410041011b221d4102490d010c070b200210144100410041001b221d41024f0d060b201541206a2115202c41606a222c0d060c070b41b185c00041331015000b411c41011016000b413c41011016000b411241011016000b413241011016000b411210122202450d02200241106a20313b0000200241086a20043700002002200037000020024112413210132202450d03200220152900003700122002412a6a2010290000370000200241226a201c2900003700002002411a6a20062900003700002001201d417f6a3602c002202b420037030020014200370380022002413220014180026a10002003202b29030037030020012001290380023703a00220094110200141c0026a4104100220021014201541206a2115202c41606a222c0d000b0b02402007a7450d00202510140b02400240024002402032450d0020324105742103203321020340200141c0026a20021072411c10122215450d03201541186a41002800f7cf40360000201541106a41002900efcf40370000201541086a41002900e7cf40370000201541002900dfcf403700002015411c413c10132215450d042015200229000037001c201541346a200241186a2900003700002015412c6a200241106a290000370000201541246a200241086a2900003700002001413c3602a402200120153602a002200141c0026a200141a0026a107320151014024020012802c402450d0020012802c00210140b200241206a2102200341606a22030d000b2033203210b4010c010b2033410010b4010b20014180026a41086a22024200370300200142003703800241ccdfc000411420014180026a1000200141a0026a41086a200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d0620013502c00221040c010b42c0843d21040b200141106a200542002004420010f901200142003703c80220014289f48bdcc4002001290310428094ebdc038020012903184200521b3703c00220014180026a41086a22024200370300200142003703800241c1cdc000411b20014180026a1000200141a0026a41086a2215200229030037030020012001290380023703a00220094110200141c0026a4110100220024200370300200142003703800241e0dfc000411520014180026a10002015200229030037030020012001290380023703a00202400240200941104184a1c100410041001001417f460d00200141003602c002200141a0026a4110200141c0026a41044100100141016a41044d0d0720013502c00221040c010b423c21040b2001200542002004420010f901200142003703c80220014289f48bdcc4002001290300428094ebdc038020012903084200521b3703c00220014180026a41086a22024200370300200142003703800241abdec000411c20014180026a1000200141a0026a41086a200229030037030020012001290380023703a00220094110200141c0026a411010022023450d08203310140c080b411c41011016000b413c41011016000b411241011016000b413241011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b2026450d00202710140b20014180026a41086a22024200370300200142003703800241c5fbc000411220014180026a1000200141a0026a41086a200229030037030020012001290380023703a002024002400240200141a0026a41104184a1c100410041001001417f460d0020014210370284022001200141a0026a36028002200141c0026a20014180026a103020012802c0022229450d1020012802c4022127200141c8026a280200410574221c0d010c020b41012129410021274100410574221c450d010b202921154100212b0340411210122202450d05200241106a41002f009d81413b0000200241086a410029009581413700002002410029008d814137000020024112413210132202450d06200220152900003700122002412a6a201541186a290000370000200241226a201541106a2900003700002002411a6a201541086a29000037000020014180026a41086a2203420037030020014200370380022002413220014180026a1000200141a0026a41086a2210200329030037030020012001290380023703a002024002400240200141a0026a41104184a1c100410041001001417f460d00200141c0026a41186a22064200370300200141c0026a41106a222c4200370300200141c0026a41086a22094200370300200142003703c002200141a0026a4110200141c0026a4120410010012231417f460d062031411f4d0d06200141e0016a41186a22312006290300370300200141e0016a41106a221d202c290300370300200141e0016a41086a22322009290300370300200120012903c0023703e0012003420037030020014200370380022002413220014180026a10002010200329030037030020012001290380023703a002200141a0026a411010032002101420014180026a41186a2223203129030037030020014180026a41106a221e201d29030037030020032032290300370300200120012903e00137038002410610122202450d0b200241046a41002f00b6894022313b0000200241002800b28940221d36000020024106410c10132202450d0c2002202b3600062002410a4184a1c100410041001001417f460d01200141a0026a41186a22324200370300200141a0026a41106a2233420037030020104200370300200142003703a0022002410a200141a0026a4120410010012225417f460d0a2025411f4d0d0a20062032290300370300202c203329030037030020092010290300370300200120012903a0023703c0020c020b20021014201541206a2115202b41016a212b201c41606a221c0d020c030b20064200370300202c420037030020094200370300200142003703c0020b2002101402400240200141c0026a20014180026a412010f701450d00200141003602a002200141a0026a102f410610122202450d0c200241046a20313b00002002201d36000020024106410c10132202450d0d200241086a41002d00ba89403a0000200241002f00b889403b0006200241094184a1c100410041001001417f460d01200141003602a00220024109200141a0026a41044100100141016a41044d0d0620012802a0022110200210142010202b4d0d00410610122202450d0e200241046a20313b00002002201d36000020024106410c10132210450d0f2010202b360006412010122202450d102002200129038002370000200241186a2023290300370000200241106a201e290300370000200241086a20032903003700002010410a20024120100220021014201010140b201541206a2115202b41016a212b201c41606a221c0d010c020b20021014201541206a2115202b41016a212b201c41606a221c0d000b0b2027450d00202910140b200141b0036a24000f0b41b185c00041331015000b41b185c00041331015000b411241011016000b413241011016000b41b185c00041331015000b410641011016000b410c41011016000b410641011016000b410c41011016000b410641011016000b410c41011016000b412041011016000b41b185c00041331015000bb00b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001101b02400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510122206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081016000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001001220e200e417f461b220e4120200e412049220e1b20052802006a220f360200200e0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1001220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d29030021132002290350211420022001101b2002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10122216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081016000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a221a360200200f0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1001220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101322160d010c090b201a10122216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101322060d010c080b200510122206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d00201610140b200041003602000240200b450d00200641106a210503400240200541046a280200450d00200528020010140b200541c0006a2105200a41406a220a0d000b0b0240200c450d00200610140b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081016000b200541081016000b100f000bc40303027f017e097f230041106b2202240020022001101b02400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041016000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100122052005417f461b22054104200541044922051b20072802006a36020020050d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101322060d010c060b200d10122206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d00200610140b200241106a24000f0b1010000b200d41041016000bbb0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910122203450d00200341186a41002d00adf6403a0000200341106a41002900a5f640370000200341086a410029009df64037000020034100290095f64037000020034119413210132204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1000200241106a41086a2003290300370300200220022903503703100240024002400240200241106a41104184a1c100410041001001417f460d00200242103702242002200241106a360220200241086a200241206a101b2002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310122207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011016000b413241011016000b200341011016000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100122112011417f461b2211412020114120491b20096a22093602002011411f4d0d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082009200b200a200241d0006a41012009100141016a41014b22116a22093602002011450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101322070d010c080b201210122207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b20041014200241f0006a24000f0b200f450d00200710140b41b185c00041331015000b1010000b201241011016000b8e1105087f027e067f017e017f230041b0016b220224000240024002400240411310122203450d002003410f6a41002800a0f140360000200341086a4100290099f14037000020034100290091f14037000020034113412610132204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1000200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a41104184a1c100410041001001417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100122032003417f461b22034104200341044922031b20022802286a220136022820030d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22094100200241106a411020024190016a41202001100122032003417f461b2203412020034120491b20092802006a22013602002003411f4d0d01200241f0006a41186a22032006290300370300200241f0006a41106a22092007290300370300200241f0006a41086a220620082903003703002002200229039001370370200241d0006a41186a2003290300370300200241d0006a41106a2009290300370300200241d0006a41086a200629030037030020022002290370370350410121030c020b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b410021030b20024190016a41186a2209200241d0006a41186a29030037030020024190016a41106a2206200241d0006a41106a29030037030020024190016a41086a2207200241d0006a41086a29030037030020022002290350370390012003450d03200241306a41186a2009290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903900137033020024200370398012002420037039001200241206a41086a22094100200241106a411020024190016a41102001100122032003417f461b2203411020034110491b20092802006a3602002003410f4d0d0320024198016a290300210a200229039001210b200241086a200241206a101b2002280208450d03200228020c2203417f4c0d04024002402003450d002003108001220c450d09200241286a22012003410020022802202002280224200c20032001280200100122092009417f461b2209200920034b1b220920012802006a36020020092003460d010c040b4101210c2002280220200228022441014100200241286a28020010011a41002003470d030b2002200241206a101b2002280200450d0220022802042201417f4c0d04024002402001450d002001108001220d450d0a200241286a220920092802002207200141002002280220220920022802242206200d20012007100122072007417f461b2207200720014b1b22086a220736020020082001460d010c030b4101210d200228022022092002280224220641014100200241286a280200220710011a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002009200620024190016a41202007100122082008417f461b2208412020084120491b20076a22073602002008411f4d0d01200241f0006a41186a2208200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2008290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002009200620024190016a41082007100122082008417f461b2208410820084108491b20076a2207360200200841074d0d012002290390012112200241003a009001200241286a20072009200620024190016a41012007100141016a41014b22096a3602002009450d0120022d009001220641064f0d0120024190016a41186a2207200241306a41186a29030037030020024190016a41106a2208200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22092d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2008290300370200200041cc006a200729030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200920132d00003a0000200220022f01303b0150200020063a0074200020022f01503b0075200041f7006a20092d00003a00000b20041014200241b0016a24000f0b2001450d00200d10140b2003450d00200c10140b41b185c00041331015000b100f000b411341011016000b412641011016000b200341011016000b200141011016000be210020b7f037e230041d0026b22022400200241b0026a41086a22034200370300200242003703b00241a4f1c000411b200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a00241002104024002400240024002400240200241a0026a41104184a1c100410041001001417f460d002002421037023c2002200241a0026a360238200241a8016a200241386a104620022802a8012205450d02200241b0016a280200210420022802ac0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041012220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d01200510144100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031013220b0d010c020b20031012220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041016000b02402006450d00200510140b200a2004470d050c040b4100210c41002004460d030c040b1010000b41b185c00041331015000b410441041016000b0240200c450d00200b10140b200241d0026a240041edf5c0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241a8016a20001048200241d0006a200241f4016a290200370300200241386a41106a200241ec016a290200370300200241386a41086a200241e4016a290200370300200220022902dc013703384200210d200241b0026a41086a22034200370300200242003703b00241d7f5c0004116200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a002200241a0026a41104184a1c100410041001001417f460d02200242003703c802200242003703c002200241a0026a4110200241c0026a4110410010012203417f460d082003410f4d0d08200241c8026a290300210d20022903c002210e0c030b200241a8016a20001048200241386a41186a20024194026a290200370300200241386a41106a2002418c026a290200370300200241386a41086a20024184026a290200370300200220022902fc01370338411810122203450d0841002107200341106a4100290089f140370000200341086a4100290081f140370000200341002900f9f04037000020034118413810132203450d0920032002290338370018200341306a200241d0006a290300370000200341286a200241386a41106a290300370000200341206a200241386a41086a290300370000200241b0026a41086a22094200370300200242003703b00220034138200241b0026a1000200241c0026a41086a2009290300370300200220022903b0023703c002200241c0026a41104184a1c100410041001001417f460d03200242103702b4022002200241c0026a3602b002200241186a200241b0026a101b2002280218450d0c200228021c2208417f4c0d0a2008450d0420081080012207450d0d200241b8026a2209200928020022092008410020022802b00220022802b402200720082009100122092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241a8016a20001048200241206a200241dc016a20022903a801200241b0016a29030010660240200241c8016a280200450d0020022802c40110140b200241d4016a280200450d0520022802d00110140c050b420a210e0b2002200241386a200e200d1066200241386a20022903a801220f200e7d200241b0016a290300200d7d200f200e54ad7d106c0240200241c8016a280200450d0020022802c40110140b200241d4016a280200450d0320022802d00110140c030b0c010b4101210720022802b00220022802b40241014100200241b8026a28020010011a41002008470d060b200241fc016a210920031014200241dc016a20022903a801200241a8016a41086a290300106c41d889c00041052007410120071b22042008410020071b2203100202402003450d00200410140b200241386a41086a41053a0000200241c1006a2009290000370000200241386a412c6a2000360200200241c9006a200941086a290000370000200241d1006a200941106a290000370000200241d9006a200941186a290000370000200241073a0038200241386a101a0240200241c8016a280200450d0020022802c40110140b200241a8016a412c6a280200450d0020022802d00110140b2002200a3602b0012002200c3602ac012002200b3602a8012002411b36023c200241a4f1c000360238200241a8016a200241386a10750240200c450d00200b10140b200241a8016a20001048200220013a009c0202400240411310122203450d002003410f6a41002800a0f140360000200341086a4100290099f14037000020034100290091f14037000020034113412610132203450d01200320003600132002411736023c20022003360238200241a8016a200241386a1074200310140240200241c8016a280200450d0020022802c40110140b0240200241d4016a280200450d0020022802d00110140b200241b4016a2000360200200241b1016a20013a0000200241b0016a41023a0000200241073a00a801200241a8016a101a200241d0026a240041000f0b411341011016000b412641011016000b41b185c00041331015000b411841011016000b413841011016000b100f000b2008450d00200710140b41b185c00041331015000b200841011016000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310132202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310132202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310132202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310132202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310132202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310132202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101222020d140b200341011016000b2003101222020d100b200341011016000b2003101222020d0c0b200341011016000b2003101222020d100b200341011016000b2003101222020d060b200341011016000b2003101222020d020b200341011016000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000be1c00125027f027e097f017e187f027e077f027e0c7f027e087f017e107f037e177f027e0e7f017e0d7f097e287f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e0e7f23004190036b22012400200141e0026a41086a22024200370300200142003703e00241ddb0c0004115200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a41104184a1c100410041001001417f460d00200142103702d4012001200141286a3602d001200141086a200141d0016a108801024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200129030822034203510d0020012903102104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a0028200141286a41086a22054106360200200141286a101a2001420837031820014100360220200141e0026a41086a22024200370300200142003703e0024198b2c000411b200141e0026a100020052002290300370300200120012903e002370328200141286a41104184a1c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a103020012802d0012206450d0f20012802d401210741082108200141d8016a2802004105742209450d050c140b20042000520d1f200141083a0028200141286a41086a22444104360200200141286a101a200141e0026a41086a22054200370300200142003703e00241a5bdc000411f200141e0026a100020442005290300370300200120012903e002370328200141286a41104184a1c100410041001001417f460d01200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0820012903d001210e0c020b20042000520d1e200141083a0028200141286a41086a22024102360200200141286a101a200141e0026a41086a220a4200370300200142003703e00241feb1c000411a200141e0026a10002002200a290300370300200120012903e00237032841002145200141286a41104184a1c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a103020012802d0012246450d0e200141d8016a280200214720012802d40121450c050b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a41104184a1c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0720012903d00121480b20012048200e7c37033020014202370328200141153602d401200141ddb0c0003602d001200141286a200141d0016a108701200141083a002820054105360200200141286a101a20014190036a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012146410021470b200141e0026a41086a22024200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d05204720012802d0014f0d010c0d0b2047410a490d0c0b200141e0026a41086a22024200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0720012802d00121020c010b410a21020b200141e0026a41086a220a4200370300200142003703e00241e3bdc000411e200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0820012802d001210a0c010b4114210a0b4184a1c1002165410021664100210b4184a1c100216720472002200a200a2002491b22684d0d160240204741144b0d00204741014d0d162047417e6a2144204620474105746a41406a210541022102034020472044490d0620052002109701200541606a2105200241016a21022044417f6a2244417f470d000c170b0b2047410176226aad2248421b88a70d132048420586a72202417f4c0d134101216b4101216c02402002450d0020021012226c450d0a0b4160216d204641606a216e204641a07f6a216f4100217041042171417f217242032173422021744103217541022176417d217741052178411f21794117217a4110217b41082167413f217c4137217d4118217e412f217f41272180014120218101200141286a41206a218201420021484201218301417e218401417421850141642186014138218701413021880141282189014109218a01410a218b014104218c014100218d014100218e012047218f01410221360c0a0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b20442047103a000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200241011016000b410121020c070b10890120450d0b0c0c0b4100210a41002105410021022006210b0340200141286a200b109201024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101322080d010c060b200c10122208450d050b200d21050b200b41206a210b2008200a6a200141286a41880110f5011a200a4188016a210a200241016a2102200941606a22090d000b200141206a2002360200200120083602182001200536021c2007450d010b200610140b4200210e200142003702c401200141a090c1003602c0012002450d01418801210f200820024188016c6a2110200141c4006a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a4119211b4111211c4109211d411f211e4117211f41002120413f212141372122412f21234127212441202125200141e0026a41206a2126420821274201212841142129200141d0016a41146a212a4106212b41e802212c4138212d4130212e4128212f4230213042202131410421324160213341987d213420082135410021360c020b200c41081016000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141b0016a41086a200141c0016a41086a280200360200200120012903c0013703b001200141e0026a41086a2202200e3703002001200e3703e00241feb1c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a41104184a1c100410041001001417f460d00200142103702e4022001200141286a3602e002200141d0016a200141e0026a103020012802d0012241450d0220012802d401214241052143200141d8016a28020041057422020d010c230b41012141410021424105214341004105742202450d220b204120026a2149200141c4006a214a4120214b4108214c417f214d4102214e41a808214f4118215041102151411f21524117215341002154413f215541372156412f215741272158420821594201215a4200215b200141e4016a215c4106215d41987d215e4160215f4101216020412161410121360c020b41b185c00041331015000b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020360e09000102030405060708080b20352d0060450d41203520126a223720136a213820012802c0012239213a20012802c401223b213c0c1c0b20612262204b6a2161200141b0016a216320012802b40121640c1c0b02400240024002400240024002400240208f0122900120726a228f01450d00207910122202450d162002207a6a20702900cbaf4022003700002002207b6a20702900c4af402203370000200220676a20702900bcaf402204370000200220702900b4af40223e37000020022079207c10132202450d1720022046208f012078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c1025208201290300219101200141286a207e6a220b290300213f200141286a207b6a2209290300219201200141286a20676a220c290300219301200129032821940120021014207910122202450d182002207a6a20003700002002207b6a2003370000200220676a20043700002002203e37000020022079207c10132202450d19200220462090012084016a22062078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c10252082012903002195012009290300219601200b290300219701200c290300219801200129032821990120021014203f2093017c229301204820940120485222021b2097012098017c229401204820990120830151220a1b542091012092017c209301203f54ad7c204820021b223f2095012096017c20940120970154ad7c2048200a1b22970154203f209701511b450d01206f20900120787422066a21020340208f01206b460d0320791012220a450d10200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d14200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c1025208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101420791012220a450d15200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d16200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c10252082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a10142002206d6a2102208f0120726a218f01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b542091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b22970154203f209701511b0d000c040b0b4101210d4100218f01208d01208e01470d060c050b206f2090012078746a21024100218f014100219a01024003402006209a01460d0120791012220a450d0e200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d10200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c1025208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101420791012220a450d11200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1013220a450d12200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c10252082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a10142002206d6a2102209a01206b6a219a01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b5a2091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b2297015a203f209701511b0d000b209a01206b6a210d209001209a016b20726a228f01450d040c030b209001210d208d01208e01460d040c050b4100218f010b209001208f01490d1720900120474b0d1a0240209001208f016b220d206b76229a01450d00206e20066a21022046208f012078746a210a0340200b200a207e6a22062900003703002009200a207b6a2207290000370300200c200a20676a22402900003703002001200a290000370328200220676a229b0129000021002002207b6a229c0129000021032002290000210420062002207e6a229d012900003700002007200337000020402000370000200a200437000020022001290328370000209b01200c290300370000209c012009290300370000209d01200b2903003700002002206d6a2102200a2081016a210a209a0120726a229a010d000b0b208f01450d010b200d208a014b0d0020900120474b0d17209001208f016b210d208f0120726a2102206e208f012078746a210a03402090012002490d19200a200d206b6a220d109701200220726a210b02402002450d00200a206d6a210a200b2102200d208b01490d010b0b200b206b6a218f01208d01208e01470d020c010b208d01208e01470d010b208d01206b6a2202208d01490d43208d01206b74220a20022002200a491b2202ad2073862200207488a70d432000a7220a2070480d4302400240208d01450d00208c01208d01207574200a1013228c010d010c150b200a1012228c01450d140b2002218d010b208c01208e012075746a2202200d3602042002208f01360200208e01206b6a229a01218e01209a012076490d334103213d0c290b200141286a20a8016a20b30120a8016a290000370300200141286a20a9016a20b30120a9016a290000370300200141286a20aa016a20b30120aa016a290000370300200120b30129000037032820b30120ab016a21b30120a60121b40120a70121b5010c1b0b200128029002220228020021c801200228020421c9014105213d0c290b024020f00122f10120d6016a2202450d0020f10120e8016a21f20120b601200220dc01746a21f30120012802e002280200280200220228020022f40121f501200228020422f60121f7010c1b0b410121fa01410021f00120ee0120ef01460d200c210b209f0220dd016a210a209f022f0106220c20dc017421024100210b024002400240024003402002450d01209d02200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a102450d0120a10220d6016a21a102209f02200c20da01746a20de016a280200219f02410621360c170b209f0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20990220d2016a220b209d02209e0220a40220035420a30220005420a3022000511b220a1b220229000037000020990220e0016a200220df016a29000037000020990220e2016a200220e1016a29000037000020990220e3016a200220dd016a290000370000209a02209e02200a1b219a02209602209d02209c02200a1b229c024f0d1a200b21990220d10121a50220d101209a02490d210c1c0b20a70220dd016a210a20a7022f0106220c20dc017421024100210b024002400240024003402002450d0120a502200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a902450d0120a90220d6016a21a90220a702200c20da01746a20de016a28020021a702410721360c170b20a70220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b209c0220980220a50220ac0220035420ab0220005420ab022000511b220a1b2202290000370000209c0220df016a200220df016a290000370000209c0220e1016a200220e1016a290000370000209c0220dd016a200220dd016a29000037000020a50220a50220446a200a1b21a502209c0220446a219c0220980220446a209802200a1b2298022099024f0d1c209a0220a5024b0d210c1a0b20cf0222d00220af026a21cf0220012802900222d10228020421d20220d10221d3020c1c0b411f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b200a41041016000b208f01209001103a000b209001208f01417f6a22024f0d010b2002209001103a000b20900120471039000b410121020c280b410121020c270b410121020c260b4100213d0c0c0b4102213d0c0c0b4104213d0c0d0b4106213d0c0e0b410d213d0c0e0b410e213d0c0e0b410e213d0c0e0b410e213d0c0e0b410f213d0c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b02400240024002400240024002400340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20ee0120d0016a220220ee01490d860120ee0120d00174220a20022002200a491b2202ad20d70186220020d80188a70d86012000a7220a20d401480d86010240024020ee01450d0020ed0120ee0120d90174200a101322ed010d010c050b200a101222ed01450d040b200221ee01410121020c6f0b20ed0120ef0120d901746a220220fa01360204200220f00136020020ef0120d0016a228e0221ef01208e0220da01490d04410a213d0c550b209c0220d2016a219d02209a0220d2016a219e02209b022802002802002202280200229f0221a002200228020422a10221a2020c430b20a602280200280200220228020022a70221a802200228020422a90221aa020c430b200a41041016000b024002400240024002400240024002400240024002400240024002400240024002400240024002400240203d0e110001020304050708090a0d0e1013141819190b203a20146a210a203a2f0106220c20157421024100210b02400240024003402002450d012038200a202510f7012209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203c450d01203c20166a213c203a200c2017746a20186a280200213a4100213d0c5a0b203a200b202b746a2034470d500b20014190026a20196a203820196a220a29000037030020014190026a201a6a2038201a6a220b29000037030020014190026a20146a203820146a22092900003703002001203829000037039002200141b8026a20196a220c2037201b6a290000370300200141b8026a201a6a223d2037201c6a290000370300200141b8026a20146a220d2037201d6a290000370300200120372900013703b802201e10122202450d2a2002201f6a20202900cbaf403700002002201a6a20202900c4af40370000200220146a20202900bcaf40370000200220202900b4af403700002002201e202110132202450d2b2002203829000037001f200220226a200a290000370000200220236a200b290000370000200220246a2009290000370000200141e0026a20022021102520262903002103200141e0026a201a6a2903002104200141e0026a20196a2903002100200141e0026a20146a290300213e20012903e002213f20021014200141286a20196a2020360200200141286a201a6a2027370300201120196a200c2903003700002011201a6a203d290300370000201120146a200d290300370000201120012903b80237000020012000203e7c223e200e203f20285122021b3703282001200320047c203e200054ad7c200e20021b370330200141d0016a200141c0016a20014190026a200141286a1098010240200141d0016a201a6a2802002202450d00202a280200450d00200210140b20012802c001213920012802c401213b0c4e0b203920146a210a20392f0106220c20157421024100210b0240024003402002450d012038200a202510f7012209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203b450d9201203b20166a213b2039200c2017746a20186a28020021394101213d0c590b2039202c6a200b202b746a2202450d9101200141286a20196a220c2035202d6a290000370300200141286a201a6a220d2035202e6a290000370300200141286a20146a22062035202f6a29000037030020012035290020370328203520146a2903002103203520196a29030021042035290300213e20352903102100200220196a210b2002201a6a210902400240024002402002280218220a200220296a280200470d00200a20136a2202200a490d9801200a2013742207200220022007491b2207ad20307e223f203188a70d9801203fa722402020480d9801200a450d012009280200200a202e6c2040101322020d020c2f0b200928020021020c020b204010122202450d2d0b20092002360200200920326a2007360200200b280200210a0b2002200a202e6c6a220220012903283703102002200420037c2000203e7c2203200054ad7c370308200220033703002002202f6a200c290300370300200220256a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c91010b2063280200220c204c6a210a200c2f0106220d20437421024100210b024002400240024003402002450d012062200a204b10f7012209450d022002205f6a2102200b20606a210b200a204b6a210a2009204d4a0d000b200b204d6a210d0b2064450d012064204d6a2164200c200d204e746a204f6a21634102213d0c5d0b200c200b205d746a205e470d010b20014190026a20506a206220506a220a29000037030020014190026a20516a206220516a220b29000037030020014190026a204c6a2062204c6a22092900003703002001206229000037039002200141b8026a20506a220c200a290000370300200141b8026a20516a220d200b290000370300200141b8026a204c6a22362009290000370300200120622900003703b802205210122202450d27200220536a20542900cbaf40370000200220516a20542900c4af403700002002204c6a20542900bcaf40370000200220542900b4af4037000020022052205510132202450d282002206229000037001f200220566a200a290000370000200220576a200b290000370000200220586a2009290000370000200141e0026a200220551025200141e0026a204b6a2903002103200141e0026a20516a2903002104200141e0026a20506a2903002100200141e0026a204c6a290300213e20012903e002213f20021014200141286a20506a2054360200200141286a20516a2059370300204a20506a200c290300370000204a20516a200d290300370000204a204c6a2036290300370000204a20012903b80237000020012000203e7c223e205b203f205a5122021b3703282001200320047c203e200054ad7c205b20021b370330200141d0016a200141b0016a20014190026a200141286a109801200141d0016a20516a2802002202450d00205c280200450d00200210140b20612049470d330c87010b02400240024002400240208c01209a01229c0120726a229a012075746a2202280200450d00208c01209c012075746a220c2085016a28020022092002280204220a4d0d004102218e01209c0141024d0d8801208c01209c0120776a22022075746a280204220b200a20096a4d0d014103218e01209c0141034d0d8801200c2086016a280200200b20096a4d0d010c040b209c012075490d012002280204210a208c01209c0120776a22022075746a280204210b0b200b200a490d010b209c012084016a21020b209c012002206b6a229e014d0d24209c0120024d0d25208c0120022075746a229001280204229f012090012802006a2202208c01209e012075746a22a00128020022a101490d22200220474b0d23204620a1012078746a229b0120a001280204229d01207874220a6a210b2002207874210902400240024002400240200220a1016b220c209d016b2202209d014f0d00206c200b2002207874220a10f5012206200a6a210d209d01206b480d012002206b480d01206e20096a2109200b210a0340207910122202450d202002207a6a20702900cbaf4022033700002002207b6a20702900c4af402204370000200220676a20702900bcaf40223e370000200220702900b4af40223f37000020022079207c10132202450d212002200d206d6a220b29000037001f2002207d6a200b207e6a2900003700002002207f6a200b207b6a29000037000020022080016a200b20676a290000370000200141286a2002207c1025208201290300219701200141286a207e6a228e012903002100200141286a207b6a2207290300219101200141286a20676a2240290300219201200129032821930120021014207910122202450d222002207a6a20033700002002207b6a2004370000200220676a203e3700002002203f37000020022079207c10132202450d232002200a206d6a220c29000037001f2002207d6a200c207e6a2900003700002002207f6a200c207b6a29000037000020022080016a200c20676a290000370000200141286a2002207c102520820129030021042007290300213e208e0129030021032040290300213f2001290328219401200210142009200c200b20002092017c229201204820930120485222021b2003203f7c223f204820940120830151228e011b542097012091017c209201200054ad7c204820021b22002004203e7c203f200354ad7c2048208e011b22035420002003511b228e011b22022900003700002009207e6a2002207e6a2900003700002009207b6a2002207b6a290000370000200920676a200220676a290000370000200d200b208e011b210d209b01200c200a208e011b220a4f0d042009206d6a2109200621022006200d490d000c050b0b206c209b01200a10f5012202200a6a210d209d01206b480d01200c209d014c0d01204620096a210720022102209b01210a0340207910122209450d232009207a6a20702900cbaf4022033700002009207b6a20702900c4af402204370000200920676a20702900bcaf40223e370000200920702900b4af40223f37000020092079207c10132209450d242009200b29000037001f2009207d6a200b207e6a2900003700002009207f6a200b207b6a29000037000020092080016a200b20676a290000370000200141286a2009207c1025208201290300219701200141286a207e6a220c2903002100200141286a207b6a228e01290300219101200141286a20676a2206290300219201200129032821930120091014207910122209450d252009207a6a20033700002009207b6a2004370000200920676a203e3700002009203f37000020092079207c10132209450d262009200229000037001f2009207d6a2002207e6a2900003700002009207f6a2002207b6a29000037000020092080016a200220676a290000370000200141286a2009207c10252082012903002104208e01290300213e200c29030021032006290300213f200129032821940120091014200a200b200220002092017c229201204820930120485222091b2003203f7c223f204820940120830151220c1b542097012091017c209201200054ad7c204820091b22002004203e7c203f200354ad7c2048200c1b22035420002003511b220c1b2209290000370000200a207e6a2009207e6a290000370000200a207b6a2009207b6a290000370000200a20676a200920676a290000370000200220022081016a200c1b2102200a2081016a210a200b2081016a200b200c1b220b20074f0d04200d20024b0d000c040b0b200b210a0c010b209b01210a0b206c21020b200a2002200d20026b206d7110f5011a20900120716a209f01209d016a36020020900120a10136020020a00120a00120676a209e01207273209c016a20757410f6011a209a01218e01209a01206b4b0d4e0c84010b209c01218e01208f010d330c84010b20b40120aa016a210a20b4012f0106220c20a4017421024100210b024002400240024003402002450d01200141286a200a20ab0110f7012209450d02200220b1016a2102200b20b2016a210b200a20ab016a210a200920ac014a0d000b200b20ac016a210c0b20b501450d0120b50120ac016a21b50120b401200c20ad01746a20ae016a28020021b4014104213d0c5d0b20b401200b20af01746a20b001470d010b20b30120a501470d340c87010b200141e0026a41186a2202200141286a41186a290300370300200141e0026a41106a220a200141286a41106a290300370300200141e0026a41086a220b200141286a41086a290300370300200120012903283703e0024120101222b601450d2e20b60120012903e00237000020b60141186a200229030037000020b60141106a200a29030037000020b60141086a200b29030037000020b30120a501460d01410121b701411821b801411021b901410821ba01412021bb01410521bc01417f21bd01410221be0141a80821bf01410621c00141987d21c101420521c201422021c301410021c401416021c501410121c601410121c701410421360c400b200141286a20b8016a22ca0120b30120b8016a290000370300200141286a20b9016a22cb0120b30120b9016a290000370300200141286a20ba016a22cc0120b30120ba016a290000370300200120b30129000037032820b30120bb016a21b30120c80121cd0120c90121ce010c6b0b410121c601410121c7010c790b20f50120dd016a210a20f5012f0106220c20dc017421024100210b024002400240024003402002450d0120f301200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20f701450d0120f70120d6016a21f70120f501200c20da01746a20de016a28020021f5014106213d0c5b0b20f50120e5016a200b20e401746a2202450d00200220dd016a29030021f801200229030021f9012002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020f8017c2002290300220020f9017c22f901200054ad7c21f801200220e6016a2102200a20e7016a220a0d000c020b0b420021f901420021f8010b20b60120f20120dc01746a21fb0120f40121fc0120f60121fd010c4a0b20fc0120dd016a210a20fc012f0106220c20dc017421024100210b024002400240024003402002450d0120fb01200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20fd01450d0120fd0120d6016a21fd0120fc01200c20da01746a20de016a28020021fc014107213d0c5c0b20fc0120e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20f90120035420f80120005420f8012000511b450d4a4108213d0c5a0b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21fe0120f40121ff0120f6012180020c680b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21860220f40121870220f6012188020c680b410021f0010c690b410021f00120f10121fa010c6a0b024002400240024020ed01208e02228f0220d6016a228e0220d901746a2202280200450d0020ed01208f0220d901746a220c20e9016a28020022092002280204220a4d0d00410221ef01208f0241024d0d0b20ed01208f0220db016a220220d901746a280204220b200a20096a4d0d01410321ef01208f0241034d0d0b200c20ea016a280200200b20096a4d0d010c0c0b208f0220d901490d012002280204210a20ed01208f0220db016a220220d901746a280204210b0b200b200a490d010b208f0220e8016a21020b208f02200220d0016a2290024d0d20208f0220024d0d2120ed01200220d901746a2291022802042292022091022802006a220220ed0120900220d901746a229302280200229402490d22200220c6014b0d2320910220d5016a21950220b60120940220dc01746a22960220930228020422970220dc0174220a6a21980220b601200220dc01746a21990220022094026b220b2097026b22022097024f0d0120d101209802200220dc0174220a10f501200a6a219a0220970220d001480d03200220d001480d0320012802e002219b02209802219c02410221020c710b20a00220dd016a210a20a0022f0106220c20dc017421024100210b02400240024003402002450d01209e02200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a202450d0120a20220d6016a21a20220a002200c20da01746a20de016a28020021a002410b213d0c5b0b20a00220e5016a200b20e401746a2202450d00200220dd016a29030021a302200229030021a4022002280218220a450d2d20022802102102200a20e6016c210a0340200220dd016a29030020a3027c2002290300220020a4027c22a402200054ad7c21a302200220e6016a2102200a20e7016a220a0d000c300b0b420021a402420021a3020c2d0b20d101209602200a10f5012202200a6a219a0220970220d001480d02200b2097024c0d0220012802e00221a602200221a502209602219c02410321020c6f0b20a80220dd016a210a20a8022f0106220c20dc017421024100210b02400240024003402002450d01209802200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20aa02450d0120aa0220d6016a21aa0220a802200c20da01746a20de016a28020021a802410c213d0c5b0b20a80220e5016a200b20e401746a2202450d00200220dd016a29030021ab02200229030021ac022002280218220a450d2e20022802102102200a20e6016c210a0340200220dd016a29030020ab027c2002290300220020ac027c22ac02200054ad7c21ab02200220e6016a2102200a20e7016a220a0d000c310b0b420021ac02420021ab020c2e0b209802219c020c450b209602219c02410d213d0c590b20d10121a502410e213d0c590b209c0220a502209a0220a5026b20d2017110f5011a2095022092022097026a36020020910220940236020020930220930220dd016a20900220d60173208f026a20d9017410f6011a208e0221ef01208e0220d0014b0d3f0b20f0010d230c010b208f0221ef0120f0010d230b024020ee01450d0020ed0110140b20cf01450d6920d10110140c690b20d30228020022d4022f0106220c20ad027421024100210b20d40220b0026a220d210a0240024003402002450d0120d002200a20af0210f7012209450d02200220cc026a2102200b20b4026a210b200a20af026a210a200920b1024a0d000b200b20b1026a210c0b20d202450d0420d20220b1026a21d20220d402200c20b202746a20b3026a21d302410f213d0c560b20d10220d10228020820b1026a3602080240024020d202450d0020d40220b6026a200b20b502746a210920d402200b20ad02746a20b0026a210c20d402200b20b202746a20c1026a2802002102024020d20220b402460d0020b40220d2026b210a034020022802a8082102200a20b4026a220a0d000b0b200220c20220022f01061b22d402290008210020d40220ba026a290000210320d40220bb026a290000210420d40220af026a290000213e20d40220b0026a20d40220bc026a20d4022f0106220220ad027420cc026a10f6011a20d40220c8026a290300213f20d4022903880321970120d40220c5026a29030021910120d40220c4026a29030021920120d40220c3026a29030021930120d4022903e80221940120d40220c9026a29030021950120d40220c7026a29030021960120d40220b6026a20d40220ca026a200220b5027420cd026a10f6011a20d402200220b1026a3b0106200c20bb026a203e370000200c2004370010200c2003370008200c2000370000200920bb026a209601370300200920b0026a2095013703002009209401370300200920be026a209301370200200920bd026a209201370200200920bc026a2091013702002009209701370220200920ba026a220229030021002002203f3703002000a721d502200020ce0288a721d60220d4022f010620b8024d0d010c030b200d200b20ad02746a200d200b20b4026a220a20ad02746a200b20b10273220920d4022f01066a20ad027410f6011a20d40220b6026a220c200b20b502746a220220b7026a28020021d602200228021021d5022002200c200a20b502746a200920d4022f01066a20b5027410f6011a20d40220d4022f010620b1026a3b010620d4022f010620b8024b0d020b410021d7024110213d0c560b20d4022802002209450d000240024020d4022f01042202450d00200220b1026a210b410121070c010b4100210b4100210720092f0106450d190b024002400240024002400240024002400240200920b3026a229001200b20b4026a220c20b2027422a1016a22a001280200220a2f0106220d209001200b20b2027422d8026a220228020022062f010622406a20b9024f0d0020d70220b4026a21d70220a001280200229b012f010621072002280200220d2f01062140200141286a20b0026a2206200920b0026a220a200b20ad02746a220220b0026a290000370300200141286a20ba026a229c01200220ba026a290000370300200141286a20bb026a229d01200220bb026a290000370300200120022900003703282002200a200c20ad02746a200b20b10273229e0120092f01066a20ad027410f6011a200d20b0026a220a204020ad02746a220220bb026a209d01290300370000200220ba026a209c01290300370000200220b0026a200629030037000020022001290328370000200a204020b4026a220220ad02746a209b0120b0026a200720ad027410f5011a2006200920b6026a229f01200b20b502746a220a20b0026a290300370300209c01200a20ba026a290300370300209d01200a20bb026a290300370300200141286a20af026a22d902200a20af026a290300370300200141286a20bc026a22da02200a20bc026a290300370300200141286a20bd026a22db02200a20bd026a290300370300200141286a20be026a22dc02200a20be026a2903003703002001200a290300370328200a209f01200c20b502746a209e0120092f01066a20b5027410f6011a200d20b6026a229e01204020b502746a220a20be026a20dc02290300370300200a20bd026a20db02290300370300200a20bc026a20da02290300370300200a20af026a20d902290300370300200a20bb026a209d01290300370300200a20ba026a209c01290300370300200a20b0026a2006290300370300200a2001290328370300209e01200220b502746a209b0120b6026a200720b5027410f5011a20a001209001200b20b2026a220a20b202746a20bf0220a1016b10f601210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920d8026a20c0026a210b0340200b280200220c200a3b0104200c2009360200200b20b8026a210b2006200a20b4026a220a470d000b0b200920092f010620b1026a3b0106200d2007200d2f01066a20b4026a3b0106024020d70220b202490d00200d200220b202746a20b3026a209b0120b3026a200720b2027420b8026a10f5011a2002204020076a20b2026a4f0d00200720b4026a210b200d204020b202746a20c1026a210a0340200a280200220c20023b0104200c200d360200200a20b8026a210a200220b4026a2102200b20b1026a220b0d000b0b209b01101420092f01062202450d01200921d402200220ad02490d470c090b2007450d012006204020b1026a220a20b502746a220220c3026a2903002100200220c4026a2903002103200220c5026a2903002104200220c6026a290300213e200220c7026a290300213f200220c8026a290300219701200220c9026a290300219101200220b6026a2903002192012006200a20ad02746a220220af026a290000219301200220bb026a290000219401200220ba026a290000219501200220b0026a29000021960120d702450d022006204020b202746a20b3026a280200220a20c2023602000c030b20d10220d10228020022022802a808220a36020020d10220d10228020420b1026a360204200a20c2023602002002101420d5020d080c090b200a20af026a2900002100200a20bb026a2900002103200a20ba026a2900002104200a290008213e200a20b0026a200a20bc026a200d20ad027420cc026a10f6011a200a20c3026a290300213f200a20c4026a290300219701200a20c5026a290300219101200a20c7026a290300219201200a20c8026a290300219301200a20c9026a290300219401200a29038803219501200a2903e802219601200a20b6026a200a20ca026a200a2f010620b5027420cd026a10f6011a20d702450d02200a2802a8082107200a20b3026a220c200a20c1026a200d20b2027410f6011a200720c202360200200d450d03410021360340200c280200220620363b01042006200a360200200c20b8026a210c200d203620b4026a2236470d000c040b0b4100210a0b200620062f010620b1026a3b01062009200b20ad02746a220220af026a220c290000219801200c209301370000200220bb026a220c290000219301200c209401370000200220ba026a220c290000219401200c209501370000200220b0026a220229000021950120022096013700002009200b20b502746a220220c7026a220b290300219601200b203f370300200220c8026a220b290300213f200b209701370300200220c9026a220b290300219701200b209101370300200220b6026a220b290300219101200b209201370300200220c3026a220b290200219201200b2000370200200220c4026a220b2902002100200b2003370200200220c5026a220b2902002103200b2004370200200220c6026a220229020021042002203e37020020a001280200210b20d702450d02200a450d1e200b20bc026a200b20b0026a200b2f0106220220ad027410f6011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200220b5027410f6011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b20c6026a2004370300200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b20c1026a200b20b3026a2202200b2f010620b2027420b8026a10f6011a200b200a3602a808200b200b2f010620b4026a220a3b0106200a20cb027120b4026a210c4100210a034020022802002209200a3b01042009200b360200200220b8026a2102200c200a20b4026a220a470d000c050b0b410021070b200a20b5026a220a200a2f010020b1026a3b01002009200b20ad02746a220a20af026a220c290000219801200c2000370000200a20bb026a220c2900002100200c2003370000200a20ba026a220c2900002103200c2004370000200a20b0026a220a2900002104200a203e3700002009200b20b502746a220a20c7026a220b290300213e200b209201370300200a20c8026a220b290300219201200b209301370300200a20c9026a220b290300219301200b209401370300200a20b6026a220b290300219401200b209601370300200a20c3026a220b290200219601200b203f370200200a20c4026a220b290200213f200b209701370200200a20c5026a220b290200219701200b209101370200200a20c6026a220a290200219101200a2095013702002002280200210220d702450d012007450d1d200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c7026a203e370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a2094013703002002200b20b4026a220a20b202746a20b3026a220b2007360200200220022f010620b4026a3b0106200b280200220b200a3b0104200b200236020020d5020d030c040b200b20bc026a200b20b0026a200b2f010620ad027410f6011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200b2f010620b5027410f6011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b200437038803200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b200b2f010620b4026a3b010620d5020d020c030b200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a209401370300200a20c7026a203e370300200220022f010620b4026a3b01060b20d502450d010b20d602450d0020d50210140b20cf0220ae02470d240c650b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b20a1012002103a000b200220471039000b41fcb5c200209e01209c011038000b41fcb5c2002002209c011038000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b204041081016000b41fcb5c200209002208f021038000b41fcb5c2002002208f021038000b2094022002103a000b200220c6011039000b41e8b6c2001018000b412041011016000b41e0bdc2001018000b41e0bdc2001018000b410121360c0b0b410221360c0b0b410321360c0b0b410521360c0c0b410521360c0c0b410621360c0c0b410621360c0c0b410621360c0c0b410721360c0c0b410721360c0c0b410721360c0c0b410821360c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b4101213d0c0b0b4101213d0c0b0b4103213d0c0c0b4107213d0c0e0b4109213d0c100b410a213d0c100b410b213d0c110b410c213d0c120b410d213d0c130b4110213d0c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20cd0120ba016a210a20cd012f0106220c20bc017421024100210b024002400240024003402002450d01200141286a200a20bb0110f7012209450d02200220c5016a2102200b20b7016a210b200a20bb016a210a200920bd014a0d000b200b20bd016a210c0b20ce01450d0120ce0120bd016a21ce0120cd01200c20be01746a20bf016a28020021cd01410021020c110b20cd01200b20c001746a20c101470d010b20b30120a501470d070c1b0b200141e0026a20b8016a220220ca01290300370300200141e0026a20b9016a220a20cb01290300370300200141e0026a20ba016a220b20cc01290300370300200120012903283703e00220ca01200229030037030020cb01200a29030037030020cc01200b290300370300200120012903e002370328024020c70120c601470d0020c60120b7016a220220c601490d3120c60120b70174220a20022002200a491b22c701ad20c20186220020c30188a70d312000a7220220c401480d31024020c601450d0020b60120c60120bc01742002101322b6010d010c060b2002101222b601450d050b20b60120c60120bc01746a22022001290328370000200220b8016a20ca01290300370000200220b9016a20cb01290300370000200220ba016a20cc0129030037000020c60120b7016a21c60120b30120a501470d050c1a0b20ff0120dd016a210a20ff012f0106220c20dc017421024100210b024002400240024003402002450d0120fe01200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208002450d0120800220d6016a21800220ff01200c20da01746a20de016a28020021ff01410121020c100b20ff0120e5016a200b20e401746a2202450d00200220dd016a29030021810220022903002182022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002081027c200229030022002082027c228202200054ad7c218102200220e6016a2102200a20e7016a220a0d000c020b0b420021820242002181020b20b60120f20120dc01746a21830220f40121840220f6012185020c0b0b20840220dd016a210a2084022f0106220c20dc017421024100210b024002400240024003402002450d01208302200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208502450d0120850220d6016a218502208402200c20da01746a20de016a280200218402410221020c0f0b20840220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b2082022003542081022000542081022000511b0d050c0d0b20870220dd016a210a2087022f0106220c20dc017421024100210b024002400240024003402002450d01208602200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208802450d0120880220d6016a218802208702200c20da01746a20de016a280200218702410321020c0e0b20870220e5016a200b20e401746a2202450d00200220dd016a2903002189022002290300218a022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002089027c20022903002200208a027c228a02200054ad7c218902200220e6016a2102200a20e7016a220a0d000c020b0b4200218a0242002189020b20b60120f20120dc01746a218b0220f401218c0220f601218d020c0a0b208c0220dd016a210a208c022f0106220c20dc017421024100210b024002400240024003402002450d01208b02200a204410f7012209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208d02450d01208d0220d6016a218d02208c02200c20da01746a20de016a280200218c02410421020c0d0b208c0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b208a0220035a20890220005a2089022000511b0d0420f10120f0016b21fa0120f0010d0c0c0d0b200241011016000b41042136410121020c280b4105213d0c020b4108213d0c020b4109213d0c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20f10120f001490d0220f10120c6014b0d05024020f10120f0016b22fa0120d00176220a450d0020b60120f00120dc01746a21020340200141286a20df016a220b200220df016a2209290000370300200141286a20e1016a220c200220e1016a220d290000370300200141286a20dd016a2206200220dd016a22072900003703002001200229000037032820f30120dd016a2240290000210020f30120e1016a229b01290000210320f3012900002104200920f30120df016a229c01290000370000200d2003370000200720003700002002200437000020f301200129032837000020402006290300370000209b01200c290300370000209c01200b29030037000020f30120d2016a21f301200220446a2102200a20d6016a220a0d000b0b20f001450d010b20fa0120eb014b0d0020f10120c6014b0d0220f10120f0016b21fa0120f00120d6016a210220d30120f00120dc01746a210a034020f1012002490d04200a20fa0120d0016a22fa01200141e0026a109901200220d6016a210b02402002450d00200a20d2016a210a200b210220fa0120ec01490d010b0b200b20d0016a21f00120ee0120ef01460d060c070b20ee0120ef01470d04410021020c070b20f00120f101103a000b20f10120f001417f6a22024f0d010b200220f101103a000b20f10120c6011039000b410121020c020b410021020c010b410121020c000b0b024020a201450d0020a30110140b20c60120694d0d01200120014190026a3602b8022001200141b8026a3602e002024020c60141144b0d0020c60141014d0d0120c601417e6a210220b60120c6014105746a41406a210a4102210b034020c6012002490d04200a200b200141e0026a109901200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20c60141017622cf01ad2200421b88a70d142000420586a72244417f4c0d14410121d001410121d10102402044450d002044101222d101450d040b416021d20120b60141606a21d301410021d401410421d501417f21d601420321d701422021d801410321d901410221da01417d21db01410521dc01410821dd0141a80821de01411821df01417821e001411021e101417021e201416821e30141202144410621e40141e80221e501413021e601415021e701417e21e801417421e901416421ea01410921eb01410a21ec01410421ed01410021ee01410021ef0120c60121f001410521360c040b20c60120696b2202450d00410521ad0220b60120024105746a21ae02412021af02410821b002417f21b102410221b20241a80821b302410121b402410621b50241e80221b602411421b702410421b802410b21b902411021ba02411821bb02412821bc02413021bd02413821be02412c21bf0241b00821c00241ac0821c102410021c20241a00321c30241980321c40241900321c50241880321c60241800321c70241f80221c80241f00221c90241a80321ca0241ffff0321cb02416021cc02414021cd02422021ce0220b60121cf02410821360c040b20c701450d0920b60110140c090b200220c601103a000b204441011016000b410121020c0e0b410121020c0d0b208f010d010b0240208d01450d00208c0110140b206a450d0e206c10140c0e0b41022136410121020c0a0b02402042450d00204110140b20012802b8012102200141e0026a41086a220a4200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d04200220012802e002470d010c030b2002410a460d020b200141b0016a41086a2802002102200141e0026a41086a220a4200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d05200220012802e0024b0d010c030b2002410a4d0d020b200141e0026a41086a22024200370300200142003703e0024181bec000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d0620012802e00221690c010b410a21690b200141b0016a41086a28020021022001200141b0016a36029002200220694d0d01200141e0026a41086a22024200370300200142003703e00241feb1c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328410021a20102400240200141286a41104184a1c100410041001001417f460d00200142103702bc022001200141286a3602b802200141e0026a200141b8026a103020012802e00222a301450d0820012802e40221a201410521a401200141e8026a28020041057422020d010c020b410121a301410521a40141004105742202450d010b20a30120026a21a501200128029002220228020021a601200228020421a701411821a801411021a901410821aa01412021ab01417f21ac01410221ad0141a80821ae01410621af0141987d21b001416021b101410121b20120a30121b301410321360c070b20a201450d0020a30110140b200141186a200141b0016a4101109301200141b8016a280200210b20012802b00121440240024020012802b40122d001450d0020d001210a20442102034020022802a8082102200a417f6a220a0d000b0340204420442f01064102746a41a8086a280200214420d001417f6a22d0010d000c020b0b204421020b200141ac026a20442f0106360200410021d00120014190026a41186a4100360200200141a4026a20443602002001200b3602b002200141003602a002200142003703980220012002360294022001410036029002200141286a20014190026a109a010240024002400240024002400240024020012802582202450d00200141e0026a41086a2244200141e4006a290200370300200141e0026a41106a22d001200141ec006a290200370300200141e0026a41186a220a200141f4006a290200370300200141e0026a41206a220b200141fc006a290200370300200141e0026a41286a22d20120014184016a2802003602002001200129025c3703e002200141286a41286a22d601290300210e200129034821830120d60120d201280200360200200141286a41206a200b290300370300200141286a41186a200a290300370300200141286a41106a20d001290300370300200141286a41086a2044290300370300200120012903e002370328417f20014190026a41206a280200224441016a22d00120d0012044491b220cad2248421a88a70d102048420686a72244417f4c0d102044450d0120441012223d450d0b203d21670c020b20014190026a1094014108213d4100210c410821670c020b4108213d410821670b2067208301370300206720023602102067200e370308206741146a20012903283702002067411c6a200141286a41086a290300370200206741246a200141286a41106a227b2903003702002067412c6a200141286a41186a2209290300370200206741346a200141286a41206a220b2903003702002067413c6a200141286a41286a22d201280200360200200141b8026a41206a22e70120014190026a41206a280200360200200141b8026a41186a20014190026a41186a290300370300200141b8026a41106a20014190026a41106a290300370300200141b8026a41086a20014190026a41086a29030037030020012001290390023703b802200141286a200141b8026a109a01024002402001280258227c450d00200141286a41346a2102200141d8006a21e601410221d60141c000210a410121d0010340200141e0026a41086a2244200241086a290200370300200141e0026a41106a2279200241106a290200370300200141e0026a41186a227e200241186a290200370300200141e0026a41206a22dd01200241206a290200370300200141e0026a41286a22ee01200241286a280200360200200120022902003703e00220d2012903002148200b290300210e20d20120ee01280200360200200b20dd012903003703002009207e290300370300207b2079290300370300200141286a41086a22792044290300370300200120012903e002370328024020d001200c470d0020d001417f20e701280200224441016a226720672044491b6a224420d001490d1220d6012044204420d601491b220cad420686228301422088a70d12208301a722444100480d120240024020d001450d00203d200a20441013223d0d010c070b20441012223d450d060b203d21670b2067200a6a224420483703082044200e370300204441106a207c3602002044413c6a20d201280200360200204441346a200b2903003702002044412c6a2009290300370200204441246a207b2903003702002044411c6a2079290300370200204441146a200129032837020020d60141026a21d601200a41c0006a210a20d00141016a21d001200141286a200141b8026a109a0120e601280200227c0d000c020b0b410121d0010b200141b8026a1094010b200141e0026a41086a22444200370300200142003703e00241c4bdc000411f200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41104184a1c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e0022183010c010b42e8072183010b2001410036023020014201370328206720d001200141286a1078200128022c21022001280230210a20012802282144200141e0026a41086a220b4200370300200142003703e00241d596c1004115200141e0026a1000200141286a41086a200b290300370300200120012903e002370328200141286a41102044200a100202402002450d00204410140b024020d001450d0020d0014106742102206741106a214403400240204441046a280200450d00204428020010140b204441c0006a2144200241406a22020d000b0b0240200c450d00203d10140b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22022044290300370300200120012903e0023703284200210e0240200141286a41104184a1c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e002210e0b2001200e2083017c3703b80220444200370300200142003703e00241ea96c1004112200141e0026a100020022044290300370300200120012903e002370328200141286a4110200141b8026a4108100220444200370300200142003703e00241dd81c000410d200141e0026a100020022044290300370300200120012903e0023703280240200141286a41104184a1c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0420012903e00221480b200141386a2048370300200141083a0028200141286a41086a4107360200200141286a101a2005450d11200810140c110b204441081016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b204441081016000b41b185c00041331015000b410121020c010b02402035200f6a22352010470d00410021020c010b41002136410121020c000b0b100f000b1010000b204720686b210b204621670b2067200b109501200141e0026a41086a22444200370300200142003703e0024189bdc000411c200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41102065206620661001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d001210e0c010b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a41104184a1c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d00121480b20012048200e7c37033020014201370328200141153602d401200141ddb0c0003602d001200141286a200141d0016a108701200141083a002820054103360200200141286a101a2045450d010b2046101420014190036a24000f0b20014190036a24000f0b41b185c00041331015000b41b185c00041331015000bc92007107f017e027f027e017f097e027f230041f0016b22022400200241e0016a41086a22034200370300200242003703e00141ddb0c0004115200241e0016a1000200241f0006a41086a22042003290300370300200220022903e0013703700240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241f0006a41104184a1c100410041001001417f460d00200242103702542002200241f0006a3602502002200241d0006a10880120022903004203510d014196b1c0002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703e00141f2b0c0004124200241e0016a100020042003290300370300200220022903e0013703700240200241f0006a41104184a1c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a103020022802502204450d0c200241d8006a280200210302402002280254450d00200410142003450d010c130b20030d120b200241e0016a41086a22034200370300200242003703e00141feb1c000411a200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a41104184a1c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a103020022802502204450d0e200241d8006a280200210302402002280254450d00200410142003450d010c120b20030d110b200241e0016a41086a22034200370300200242003703e0014198b2c000411b200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a41104184a1c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a103020022802502204450d0f200241d8006a280200210302402002280254450d00200410142003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b02400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210122203450d12200341206a41002f00d3b24022173b0000200341186a41002900cbb2402218370000200341106a41002900c3b2402219370000200341086a41002900bbb240221a370000200341002900b3b240221b3700002003412241c40010132203450d13200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241e0016a41086a22014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a411010082106200310144122101221030240024002402006450d002003450d18200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010132203450d19200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0006a200341c2001025200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f2002290370212020031014412210122203450d1a200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010132203450d1b200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122204450d1c2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010132204450d1d2004201e4200202042015122071b370010200441186a201f420020071b37000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a411020044120100220041014200310142012422088a741306c22030d010c020b2003450d1d200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010132203450d1e200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122206450d1f200620163700002006201537000820064110412010132206450d2020064200370010200641186a420037000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102006412010022006101420031014200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d0f200e4101742204200320032004491b220fad4205862215422088a70d0f2015a722034100480d0f0240200e450d002010200e4105742003101322100d010c240b200310122210450d230b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210122204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100821222004101441221012210402402022450d002004450d09200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d0a200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000200241f0006a200441c2001025200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f2002290370212020041014412210122204450d0b200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d0c200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122207450d0d2007201e4200202042015122051b3700002007201f420020051b37000820074110412010132207450d0e2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c37000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102007412010022007101420041014200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010132204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122222450d11202242003700082022420037000020224110412010132222450d1220222016370010202241186a201537000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102022412010022022101420041014200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d0f200e4101742207200420042007491b220fad4205862215422088a70d0f2015a722044100480d0f0240200e450d002010200e4105742004101322100d010c150b200410122210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d00201310140b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d00200410140b2003211420012003470d000b0b0240200b450d00200810140b2002200e3602782002200f3602742002201036027020024124360254200241f2b0c000360250200241f0006a200241d0006a10730240200f450d00201010140b200241083a007041002105200241f0006a41086a4100360200200241f0006a101a1089010c240b412241011016000b41c40041011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b1010000b412241011016000b41c40041011016000b411041011016000b412041011016000b200441011016000b412241011016000b41c40041011016000b41b185c00041331015000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b41b185c00041331015000b200341011016000b41b185c00041331015000b41b185c00041331015000b41e5b1c00021054119210620012802002107200128020822030d020c030b41cdb1c00021054118210620012802002107200128020822030d010c020b41b2b1c0002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d00200328020010140b200341c0006a2103200441406a22040d000b0b200141046a280200450d00200710140b2000200636020420002005360200200241f0016a24000b13002000410036020420004184a1c1003602000b130020004107360204200041b195c0003602000b13002000410236020420004194ccc1003602000b130020004101360204200041dccdc1003602000b130020004109360204200041d999c0003602000b130020004103360204200041e0cec1003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242053700000f0b410841011016000b130020004102360204200041f8bac2003602000b13002000410036020420004184a1c1003602000b130020004101360204200041d8cac1003602000b13002000410836020420004197abc0003602000b130020004107360204200041d0dbc1003602000b130020004102360204200041f0d9c1003602000b130020004103360204200041b4d8c1003602000b130020004101360204200041f4a5c2003602000b130020004103360204200041a4f9c1003602000b130020004101360204200041b8a4c2003602000b130020004102360204200041fca4c2003602000b130020004106360204200041b092c2003602000b13002000410836020420004194e2c1003602000b1300200041013602042000419cb6c2003602000bb20504027f017e017f037e230041206b22022400024002400240411410122203450d00200341106a41002800ba9b40360000200341086a41002900b29b40370000200341002900aa9b4037000020034114413410132203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1000200241086a200529030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012205417f460d022005410f4d0d02200241186a29030021062002290310210420031014411810122203450d010c050b42002106200310144118101222030d040b411841011016000b41b185c00041331015000b411441011016000b413441011016000b200341106a41002900ce9b40370000200341086a41002900c69b40370000200341002900be9b40370000024020034118413810132203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1000200241086a200129030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b200310142000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41b185c00041331015000b413841011016000bf20202027f027e230041206b22032400024020001064450d00200341206a240041000f0b02400240411410122204450d00200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b4037000020044114413410132204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1000200341086a200029030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b20041014200341206a2400200520015a200620025a20062002511b0f0b41b185c00041331015000b411441011016000b413441011016000baf0304027f017e017f017e230041206b2201240002400240410f10122202450d00200241076a41002900e9c140370000200241002900e2c1403700002002410f412f10132202450d012002200029000037000f200241276a200041186a2900003700002002411f6a200041106a290000370000200241176a200041086a29000037000042002103200141106a41086a22004200370300200142003703102002412f200141106a1000200141086a220420002903003703002001200129031037030042002105024002400240200141104184a1c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021050b20021014200042003703002001420037031041dd81c000410d200141106a100020042000290300370300200120012903103703000240200141104184a1c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d02200129031021030b200141206a240041c4c1c000410020052003561b0f0b41b185c00041331015000b41b185c00041331015000b410f41011016000b412f41011016000bdc0202027f027e230041206b2202240002400240411410122203450d00200341106a41002800ba9b40360000200341086a41002900b29b40370000200341002900aa9b4037000020034114413410132203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1000200241086a200129030037030020022002290310370300024002400240200241104184a1c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b200310142000200537030820002004370300200241206a24000f0b41b185c00041331015000b411441011016000b413441011016000bf10504027f017e017f067e230041306b2204240002400240411810122205450d00200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054138200441206a1000200441106a41086a2007290300370300200420042903203703100240024002400240200441106a41104184a1c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012207417f460d022007410f4d0d02200441286a2903002108200429032021090c010b42002109420021080b20051014200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d1067200441206a41086a220142003703002004420037032041949bc0004116200441206a1000200441106a41086a20012903003703002004200429032037031002400240200441106a41104184a1c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012201417f460d032001410f4d0d03200441286a290300210c200429032021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37030020042006370308200441206a41086a220142003703002004420037032041949bc0004116200441206a1000200441106a41086a200129030037030020042004290320370310200441106a41102004411010020b20002002200a7d370308200041106a2003200b7d2002200a54ad7d37030020002009200254200820035420051bad370300200441306a24000f0b41b185c00041331015000b41b185c00041331015000b411841011016000b413841011016000bcc0f07017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141ecabc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441182107411810122205450d010c030b42002106411821074118101222050d020b200741011016000b41b185c00041331015000b200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b40370000024002400240024002400240024002400240024002400240024020052007413810132205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a4110200341101002200510142004200158200620025820062002511b0d0b411810122205450d04200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0520052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101420034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010020b411810122205450d06200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0720052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341086a2007290300370300200320032903800137030020034110100320051014411410122205450d08200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d09200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a29030021022003290300210141002107200510142001200284504101710d0d0c0b0b41012107200510144100410171450d0a0c0c0b413841011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411841011016000b413841011016000b411841011016000b413841011016000b411441011016000b413441011016000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a410028009e8240360000200541086a410029009782403700002005410029008f824037000020054113413310132205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b290300370300200320032903800137030020034110100320051014200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003101a20034190016a24000f0b411341011016000b413341011016000bb40604027f017e017f067e230041d0006b2204240002400240411410122205450d00200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441c0006a41086a220742003703002004420037034020054134200441c0006a1000200441206a41086a2007290300370300200420042903403703200240024002400240200441206a41104184a1c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d022007410f4d0d02200441c8006a2903002108200429034021090c010b42002109420021080b20051014200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d1069200441c0006a41086a220742003703002004420037034041949bc0004116200441c0006a1000200441206a41086a20072903003703002004200429034037032002400240200441206a41104184a1c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d032007410f4d0d03200441c8006a290300210c200429034021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37033020042006370338200441c0006a41086a220742003703002004420037034041949bc0004116200441c0006a1000200441206a41086a200729030037030020042004290340370320200441206a4110200441306a411010020b02400240200920025a200820035a20051b0d00200441086a20012002200a7d2003200b7d2002200a54ad7d1066200441186a290300210820042903102109200429030821030c010b420021030b2000200937030820002003370300200041106a2008370300200441d0006a24000f0b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b911107017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141ecabc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441142107411410122205450d010c030b42002106411421074114101222050d020b200741011016000b41b185c00041331015000b200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000002400240024002400240024002400240024002400240024002400240024020052007413410132205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a4110200341101002200510142004200158200620025820062002511b0d0d411410122205450d04200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101420034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a22054200370300200342003703800141949bc000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010020b411410122205450d06200541106a41002800ba9b40360000200541086a41002900b29b40370000200541002900aa9b4037000020054114413410132205450d07200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341086a2007290300370300200320032903800137030020034110100320051014410f10122205450d08200541076a41002900e9c140370000200541002900e2c1403700002005410f412f10132205450d092005200029000037000f200541276a200041186a2900003700002005411f6a200041106a290000370000200541176a200041086a29000037000020034180016a41086a2207420037030020034200370380012005412f20034180016a1000200341086a2007290300370300200320032903800137030020034110100320051014411810122205450d0a200541106a41002900ce9b40370000200541086a41002900c69b40370000200541002900be9b4037000020054118413810132205450d0b20052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a41104184a1c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a29030021022003290300210141002107200510142001200284504101710d0f0c0d0b41012107200510144100410171450d0c0c0e0b413441011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b411441011016000b413441011016000b410f41011016000b412f41011016000b411841011016000b413841011016000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a410028009e8240360000200541086a410029009782403700002005410029008f824037000020054113413310132205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b290300370300200320032903800137030020034110100320051014200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003101a20034190016a24000f0b411341011016000b413341011016000bbd0504027f017e017f037e230041c0006b22032400200320001062024002400240024002402003290300200341086a29030084500d00411410122204450d03200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b4037000020044114413410132204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341306a41086a220642003703002003420037033020044134200341306a1000200341206a41086a20062903003703002003200329033037032002400240200341206a41104184a1c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012206417f460d032006410f4d0d03200341386a2903002107200329033021080c010b42002108420021070b200410142000200820017c2209200720027c2009200854ad7c1069200341306a41086a220042003703002003420037033041949bc0004116200341306a1000200341206a41086a20002903003703002003200329033037032002400240200341206a41104184a1c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012200417f460d042000410f4d0d04200341386a2903002108200329033021050c010b420021080b200520017c22012005542200200820027c2000ad7c220520085420052008511b0d002003200137031020032005370318200341306a41086a220042003703002003420037033041949bc0004116200341306a1000200341206a41086a200029030037030020032003290330370320200341206a4110200341106a411010020b200341c0006a24000f0b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000bec0506027f017e017f027e017f027e230041206b2203240002400240024002400240411410122204450d00200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b4037000020044114413410132204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044134200341106a1000200341086a200629030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021050c010b420021070b200410144187acc00021040240024020052001542206200720025420072002511b0d00200010642204450d010b200341206a240020040f0b411810122204450d04200441106a41002900ce9b40370000200441086a41002900c69b40370000200441002900be9b4037000020044118413810132204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341106a41086a220942003703002003420037031020044138200341106a1000200341086a20092903003703002003200329031037030002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012209417f460d052009410f4d0d05200341186a290300210a200329031021080c010b4200210a0b200410142000200820017c220b200a20027c200b200854ad7c10672000200520017d200720027d2006ad7d1069200341206a240041000f0b41b185c00041331015000b411441011016000b413441011016000b41b185c00041331015000b411841011016000b413841011016000be70504027f017e017f047e230041206b22032400024002400240411810122204450d00200441106a41002900ce9b40370000200441086a41002900c69b40370000200441002900be9b4037000020044118413810132204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1000200341086a200629030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021052004101441142106411410122204450d010c050b4200210720041014411421064114101222040d040b200641011016000b41b185c00041331015000b411841011016000b413841011016000b200441106a41002800ba9b40360000200441086a41002900b29b40370000200441002900aa9b40370000024020042006413410132204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1000200341086a200629030037030020032003290310370300024002400240200341104184a1c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101420002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c10692000200520017d200720027d2005200154ad7d1067200341206a24000f0b41b185c00041331015000b413441011016000bf60201057f230041206b220224000240024020002d0000220320012d0000470d00024020034101470d002000410c6a28020022042001410c6a280200470d012004450d02200041046a2802002203200141046a2802002205460d0241002106034020032005412010f7010d02200341206a2103200541206a2105200641016a22062004490d000c030b0b20002001460d01200041016a200141016a412010f701450d010b419cacc00041141006200041046a280200210520002d00002103200241186a22062000410c6a2802003602002002200341014736021020022005200041016a20034101461b3602142002200241106a1027200228020022002002280208100702402002280204450d00200010140b200141046a280200210320012d0000210020062001410c6a2802003602002002200041014736021020022003200141016a20004101461b3602142002200241106a102720022802002200200228020810072002280204450d00200010140b200241206a24000b81c9020d027f017e067f017e027f017e037f017e017f027e0a7f0d7e697f230041d0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441084b0d00024002400240024002400240024020040e09008f0104030108050602000b20034198046a41086a200141106a2903003703002003200141086a2903002205370398042005a7417e6a220441054b0d9001200241086a2800002106200241046a280000210720022d00002102024020040e0600211b1e1a23000b41012108200341a0046a2802002109200328029c04210a200241ff017122024101470d3d02402009450d00200a10140b4100210b41012107410121090c430b200341d8026a41086a2001412c6a2802003602002003200141246a2902003703d802200141186a290300210c200141206a280200210d2001410c6a2802002108200141096a2d0000210e200141106a2903002105200141086a2d00002107200341c8026a41086a200241206a2d00003a00002003200241186a2900003703c8022007417e6a2206410a4b0d900120022f0001200241036a2d00004110747221042005a7210b200241146a28000021092002410c6a290000210f200241086a280000210a200241046a280000211020022d00002102024020060e0b003431322f353633383037000b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d5120034198046a41086a220220062d00003a0000200320032903f8023703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a0000200320093600a3052003200f37009b052003200a36009705200320103600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a20034190056a106f20032d0098044101470d5d4186e2c00021044123210620074104470de7010cec010b200341fa026a2001410b6a2d00003a0000200341d8026a41086a200141206a290300370300200341d8026a41106a200141286a2903003703002003200141096a2f00003b01f8022003200141186a2903003703d802200141086a2d00002211417e6a220441034b0d90012001410c6a2802002112200141106a2903002213a7211420022d00002102024020040e0400110f10000b4100210941ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d234128210620140d94020c95020b200341b8036a41046a22082001410e6a2f01003b010020034190056a41086a220b200141206a29030037030020034190056a41106a2209200141286a29030037030020032001410a6a2801003602b8032003200141186a29030037039005200141096a2d00002107200141106a2903002105200141086a2d00002106200341d8026a41086a220a200241206a2d00003a00002003200241186a2900003703d80220022d0000210420064102460d0920064103460d0720064104470d90014128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040d8502200320073a00980420034188036a41086a2202420037030020034200370388034183fbc000411920034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a410110020c080b200141c8006a2903002115200141c0006a2903002116200141386a290300210f200141306a290300210c200141086a2802002106200341f8026a41086a22092001412c6a2d00003a00002003200141246a2902003703f802200141206a280200210b200141186a2902002105200141146a280200210e200141106a280200210d2001410c6a2d000021172001410d6a2f000021042001410f6a2d00002107200341c8026a41026a220a200241036a2d00003a0000200341f8036a41086a2210200241146a290000370300200341f8036a410d6a2218200241196a290000370000200320022f00013b01c80220032002410c6a2900003703f8032004200741107472210820022d0000210720064102460d0420064103470d9001200341a0066a41086a2206200341f8026a41086a2d00003a0000200320032903f8023703a00641ac80c00041ac80c0004100200741ff017122021b20024103461b2204450d14412821060c84020b200141386a290300210f200141306a290300210c2001412c6a2802002119200141286a280200210a200141246a2802002118200141206a280200211a2001411c6a2802002110200141186a2802002117200141146a280200211b200141106a280200210d2001410c6a2802002107200141096a2d0000211c200141086a2d00002106200341d8026a41086a220e200241206a2d00003a00002003200241186a2900003703d80220022f0001200241036a2d0000411074722104200241146a28000021082002410c6a2900002105200241086a280000210b200241046a280000210920022d0000210220064102460d0a20064103460d0920064104470d9001200341f8026a41086a2206200341d8026a41086a2d00003a0000200320032903d8023703f802200241ff01714101470d1620034198046a41086a220220062d00003a0000200320032903f8023703980420034180066a41086a220620022d00003a0000200320032903980437038006200341bf066a20062d00003a0000200320083600b306200320053700ab062003200b3600a706200320093600a30620032003290380063700b706200320043b01a006200320044110763a00a206411310122202450d99012002410f6a41002800a0f140360000200241086a4100290099f14037000020024100290091f14037000020024113412610132202450d9a012002200736001320034198036a41086a2206420037030020034200370398032002411720034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a411010082106200210142006450d2520034198046a20071048200341a0066a200341cc046a412010f701450d5041a2f5c0002104411c21060c750b20034198046a200141086a41d00010f5011a20034190056a41206a200241206a2d00003a000020034190056a41186a200241186a29000037030020034190056a41106a200241106a29000037030020034190056a41086a200241086a2900003703002003200229000037039005200341c0026a20034198046a20034190056a107020032802c402210620032802c002210441002108410121074101210b410121094101210a0c97020b200141086a2903004202520d8f01412d21064101210741fe80c000410041fe80c00020022d000041ff017122024102461b20024103461b22040d9202200141106a2903002105200341f8026a41086a22024200370300200342003703f802418890c0004113200341f8026a100020034198046a41086a22072002290300370300200320032903f8023703980420034198046a411010080d940120024200370300200342003703f80241a591c000410d200341f8026a100020072002290300370300200320032903f8023703980420034198046a41104184a1c100410041001001417f460d8702200342003703900520034198046a411020034190056a41084100100141016a41084d0d8801200329039005500d8702200341f8026a41086a22024200370300200342003703f80241a591c000410d200341f8026a100020034198046a41086a22072002290300370300200320032903f802370398044200210f024020034198046a41104184a1c100410041001001417f460d00200342003703900520034198046a411020034190056a41084100100141016a41084d0d9201200329039005210f0b20024200370300200342003703f80241b291c0004115200341f8026a100020072002290300370300200320032903f8023703980420034198046a41104184a1c100410041001001417f460d3e200342003703900520034198046a411020034190056a41084100100141016a41084d0d9201200329039005200f7c2005560d3f0c87020b200341c8026a41086a200141286a2d00003a00002003200141206a2902003703c8022001411c6a2802002110200141146a2902002105200141106a28020021062001410c6a2802002104200141086a2802002108200141046a2802002107200341d8026a41086a220b200241096a290000370300200341d8026a41106a2209200241116a290000370300200341d8026a41186a220a200241196a290000370300200320022900013703d80220022d0000210220074102460d0120074103470d8f01200341a0066a41086a200341c8026a41086a2d00003a0000200320032903c8023703a006200341f8036a41186a200341d8026a41186a290300370300200341f8036a41106a200341d8026a41106a290300370300200341f8036a41086a200341d8026a41086a290300370300200320032903d8023703f803200241ff01714101470d0c20034198046a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703980420032900fb03210f200329008304210c200328008b04210720032f01f803210b20032d00fa032109200341d8036a41086a220a20022d00003a000020032003290398043703d80320034190056a411f6a200a2d00003a0000200320093a0092052003200b3b019005200320073600a3052003200c37009b052003200f37009305200320032903d8033700a70520034188036a41086a22024200370300200342003703880341af8cc100410820034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a41104184a1c100410041001001417f460d2020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f80320034198036a4110200341f8036a4120410010012202417f460d94012002411f4d0d940120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2207200341f8036a41106a29030037030020034180066a41086a220b200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200729030037030020034198046a41086a200b2903003703002003200329038006370398040c210b200241086a2800002106200241046a2800002104200341d8026a41086a20092d00003a0000200320032903f8023703d802200341d8036a41026a200a2d00003a000020034180066a41086a201029030037030020034180066a410d6a2018290000370000200320032f01c8023b01d803200320032903f8033703800641012102200741ff01714101470d0c200341b8036a41026a200341d8036a41026a2d00003a000020034198046a41086a20034180066a41086a29030037030020034198046a410d6a20034180066a410d6a290000370000200320032f01d8033b01b803200320032903800637039804410021020c0d0b200341f8036a41186a200a290300370300200341f8036a41106a2009290300370300200341f8036a41086a200b290300370300200320032903d8023703f803200241ff01714101470d0d20034198046a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703980420032900fb032105200329008304210f200328008b04210620032f01f803210420032d00fa03210720034180066a41086a220b20022d00003a0000200320032903980437038006200341a0066a411f6a200b2d00003a0000200320073a00a206200320043b01a006200320063600b3062003200f3700ab06200320053700a30620032003290380063700b70620034188036a41086a22064200370300200342003703880341af8cc100410820034188036a100020034198036a41086a200629030037030020032003290388033703980320034198036a41104184a1c100410041001001417f460d2120034190046a4200370300200341f8036a41106a4200370300200341f8036a41086a4200370300200342003703f80320034198036a4110200341f8036a4120410010012202417f460d93012002411f4d0d930120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2206200341f8036a41106a29030037030020034180066a41086a2204200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200629030037030020034198046a41086a20042903003703002003200329038006370398040c220b4128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040dfd01200320053703980420034188036a41086a22024200370300200342003703880341f480c100411920034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a410810020b0c010b200241036a2d0000211020022f0001210d200241146a280000210e2002410c6a290000210f200241086a2800002106200241046a280000211820034197066a200b2903003700002003419f066a20092d00003a0000200320073a0080062003200537008706200320032802b80336008106200320032903900537008f06200320082f01003b008506200341f8026a41086a200a2d00003a0000200320032903d8023703f802200441ff01714101470d0f20034198046a41086a2202200341f8026a41086a2d00003a0000200320032903f80237039804200341d8036a41086a220420022d00003a000020032003290398043703d803200341f8036a41086a220720042d00003a0000200320032903d8033703f803200341a0066a41086a20072d00003a0000200320032903f8033703a00620034198046a41186a20034180066a41186a29030037030020034198046a41106a20034180066a41106a290300370300200220034180066a41086a290300370300200320032903800637039804411210122202450d9301200241106a41002f009d81413b0000200241086a410029009581413700002002410029008d814137000020024112413210132202450d94012002200d20104110747222043b00122002200e3600252002200f37001d2002200636001920022018360015200220032903a006370029200241146a20044110763a0000200241316a200341a0066a41086a2d00003a0000412010122204450d95012004200329039804370000200441186a20034198046a41186a290300370000200441106a20034198046a41106a290300370000200441086a20034198046a41086a29030037000020034188036a41086a2207420037030020034200370388032002413220034188036a100020034198036a41086a200729030037030020032003290388033703980320034198036a411020044120100220041014200210140b410021040cfa010b200341f8026a41086a2206200341d8026a41086a2d00003a0000200320032903d8023703f802200241ff01714101470d0f200341d8036a41086a220220062d00003a0000200320032903f8023703d80320034180066a41086a220620022d00003a0000200320032903d80337038006200341bf066a20062d00003a0000200320083600b306200320053700ab062003200b3600a706200320093600a30620032003290380063700b706200320043b01a006200320044110763a00a206200341a0066a1071450d2d411310122202450d99012002410f6a41002800a0f140360000200241086a4100290099f14037000020024100290091f14037000020024113412610132202450d9a012002200736001320034198036a41086a2206420037030020034200370398032002411720034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a411010082106200210142006450d1b20034198046a2007104820032d008c05450d504192f4c0002104411d2106200341b8046a280200450dfd010cfc010b200341f8026a41086a200e2d00003a0000200320032903d8023703f802200241ff01714101470d1120034198046a41086a2202200341f8026a41086a220e2d00003a0000200320032903f8023703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a0000200320083600a3052003200537009b052003200b36009705200320093600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a290300370300200220034190056a41086a29030037030020032003290390053703980420034198026a20034198046a106520032903980220034198026a41086a29030084500d304200210520034198036a41086a2202420037030020034200370398034189f0c000411220034198036a1000200e200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d46200342003703a0042003420037039804200341f8026a411020034198046a4110410010012202417f460d94012002410f4d0d9401200341a0046a290300210520032903980421150c470b200341b8036a41086a220b200341d8026a41086a290300370300200341b8036a41106a220d200341d8026a41106a2d00003a00002003200341fa026a2d00003a00d203200320032f01f8023b01d003200320032903d8023703b80341ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034197066a200b2903003700002003419f066a200d2d00003a000020032013370087062003201236008306200320032d00d2033a008206200320032f01d0033b018006200320032903b80337008f0641d599c100210420034180066a1071450d83024108211d20034188036a41086a22024200370300200342003703880341d596c100411520034188036a100020034198036a41086a20022903003703002003200329038803370398034100211e20034198036a41104184a1c100410041001001417f460d502003421037029405200320034198036a3602900520034198046a20034190056a1045200328029804221d450d9f01200341a0046a280200211f200328029c04211e0c510b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d014200210520034188036a41086a22024200370300200342003703880341dd81c000410d20034188036a100020034198036a41086a2002290300370300200320032903880337039803024020034198036a41104184a1c100410041001001417f460d00200342003703980420034198036a411020034198046a41084100100141016a41084d0d890120032903980421050b411c2106200520135a0d3c200320133703980420034188036a41086a22024200370300200342003703880341ea96c100411220034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a41081002410021024100210420114102460d83020c85020b200341a7056a200341d8026a41086a290300370000200341af056a200341d8026a41106a2d00003a000020032013370097052003201236009305200320032f01f8023b019005200320032903d80237009f052003200341fa026a2d00003a00920541ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d130b412821060c83020b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040cdf010b41d480c0002104412a21060b20034198036a41026a2207200341b8036a41026a2d00003a000020034190056a41086a220920034198046a41086a29030037030020034190056a41106a20034198046a41106a290300370300200320032f01b8033b01980320032003290398043703900520020df101200341b3066a2009290300370000200341b8066a2003419d056a290000370000200320032f0198033b01a006200320063600a706200320043600a30620032003290390053700ab06200320072d00003a00a206200341d8036a41086a200341d8026a41086a2d00003a0000200320032903d8023703d803201741ff01714101470d0d20034198046a200d410676103d20032802a004200d413f7122024d0d28200341c0036a20032802980420024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221082002280013210b200229000b21052002280007210e2002280003210d41012102200328029c04450de7010ce6010b20034180066a41086a20034198046a41086a2d00003a0000200320032903980437038006412a210641d480c00021040c150b200341d8036a41086a20062d00003a0000200320032903a0063703d803201741ff01714101470d0e20034190056a200d410676103d200328029805200d413f7122024d0d33200341c0036a20032802900520024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221082002280013210b200229000b21052002280007210e2002280003210d41012102200328029405450de1010ce0010b41002107200341a0046a2802002106200328029c04210941ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d244101210b2006450d09200910140c090b41012108200341a0046a280200210b200328029c04210a200241ff017122024101470d1f0240200b450d00200a10140b41002109410121074101210b0c280b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c030b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040ceb010b4101210b4101210741ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0520034198046a41086a2903002105410810122202450d8c012002200537000041c48ec000410a20024108100220021014410021044101210841012107410121094101210b0c260b20034180066a41086a200341d8036a41086a2d00003a0000200320032902d803370380060b412a210641d480c00021040ced010b41fe80c000410041fe80c000200241ff017122024102461b20024103461b2104412d21064101210841012107410121090c1a0b20034180066a41086a20034198046a41086a2d00003a0000200320032902980437038006412a210641d480c0002104200a450dd6010cd5010b200341a4046a2802002107200341a0046a2802002109200328029c04210841ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1e02402007450d00200741186c21062008210203400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200641686a22060d000b0b410121074100210b2009450d00200810140b41282106200328029804417e6a220241054b0d23024020020e06002825242627000b200341a0046a280200450d27200328029c0410140c270b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030cda010b2013422088a72202450d32200241057422064105752209ad4206862205422088a70dea012005a722044100480dea0120041012220a450d8501201220066a211020024105742104410020126b210d200a210220122106034020034180066a41186a2207200641186a29000037030020034180066a41106a2208200641106a29000037030020034180066a41086a220b200641086a2900003703002003200629000037038006200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003702002002412c6a2008290300370200200241246a200b2903003702002002411c6a200329038006370200200241c0006a2102200641206a2106200441606a22040d000b2010200d6a41606a41057641016a21022014450dd0010ccf010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980441af99c100210420034198046a10710da80141082107200341d8036a41086a220820034198046a41176a290000370300200341d8036a41106a220b20034198046a411f6a2d00003a0000200320032d009a043a00f203200320032f0198043b01f003200320032900a7043703d803200328009b042102200329009f04210520034188036a41086a22064200370300200342003703880341d596c100411520034188036a100020034198036a41086a20062903003703002003200329038803370398034100210420034198036a41104184a1c100410041001001417f460d3c2003421037028406200320034198036a36028006200341a0066a20034180066a104520032802a0062207450d8a01200341a0066a41086a280200210820032802a40621042003418f046a200341d8036a41086a29030037000020034197046a200341e8036a2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a210620082004460d3d0ca7010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030cd3010b200341b0046a4200370300200341a8046a4200370300200341a0046a420037030020034200370398040b024020034190056a20034198046a412010f701450d0041d98cc1002104413121060ccb010b200341d8036a41086a2202200341a0066a41086a2d00003a0000200320032903a0063703d803200841ff01714101470d2320034198046a2004410676103d20032802a0042004413f7122024d0d31200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132110200429000b2105200428000721062004280003210441012107200328029c04450dc7010cc6010b41e0f3c0002104411c21060ce2010b200341b0046a420037030020034198046a41106a42003703002002420037030020034200370398040b200341a0066a20034198046a412010f701450d0141b78cc1002104412221060b20081042200810140cc6010b20034198046a200841d80010f5011a41002104200341003a00900520034190026a20034198046a20034190056a106e2003200328029002453a009a04200341063b01980420034198046a101a200810140cc5010b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1f20034198046a41086a220220062d00003a0000200320032903f8023703980420034180066a41086a220720022d00003a0000200320032903980437038006200341af056a20072d00003a0000200320093600a3052003200f37009b052003200a36009705200320103600930520032003290380063700a705200320043b019005200320044110763a00920520034198036a41086a22024200370300200342003703980341dccdc000411220034198036a10002006200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460dbc01200342103702a4062003200341f8026a3602a00620034198046a200341a0066a10302003280298042202450d8201200328029c042106200220084105746a2204450d38200341a0046a28020020084d0d3820034190056a2004460d4c200420034190056a412010f7014521042006450dbb010cba010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d08200320083602980420034198036a41086a22024200370300200342003703980341feccc000411920034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41041002410021040cbc010b200341f8036a41086a2206200341d8026a41086a280200360200200320032903d8023703f803200341f8026a41086a220e200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1e20034180066a41086a2218200e2d00003a0000200320032903f80237038006200341d8036a41086a220220182d00003a000020032003290380063703d803200341bf066a20022d00003a0000200320093600b3062003200f3700ab062003200a3600a706200320103600a306200320032903d8033700b706200320043b01a006200320044110763a00a206200220062d00003a0000200320032903f8033703d803200841ff01714101470d2a20034198046a200b410676103d20032802a004200b413f7122024d0d3b200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d00004110747221022004280013210d200429000b210c200428000721062004280003210441012109200328029c04450da6010ca5010b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1e200341d8036a41086a220220062d00003a0000200320032903f8023703d80320034198046a41086a220620022d00003a0000200320032903d80337039804200341a0066a411f6a20062d00003a0000200320093600b3062003200f3700ab062003200a3600a706200320103600a30620032003290398043700b706200320043b01a006200320044110763a00a20620034198046a200341a0066a106f20032d0098044101470d2a20034180066a41086a2202200341b8046a2d00003a00002003200341b0046a29030037038006200341a4046a2902002105200341ac046a2802002106200329029c04210f20032f009904210420032d009b042107200341d8036a41086a220b20022d00003a000020032003290380063703d80320034190056a411f6a200b2d00003a0000200320073a009205200320043b019005200320063600a3052003200537009b052003200f37009305200320032903d8033700a70520034180066a20034190056a107220032802800621020240200328028806220420084d0d00200341a0066a200220084105746a2206460d442006200341a0066a412010f701450d440b0240200328028406450d00200210140b41bce3c0002104411421060cba010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d05200320083602980420034198036a41086a22024200370300200342003703980341b6dfc000411620034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41041002410021040cb9010b200341f8026a41086a2206200341c8026a41086a2d00003a0000200320032903c8023703f802200241ff01714101470d1e20034190056a41086a220220062d00003a0000200320032903f8023703900520034180066a41086a220720022d00003a0000200320032903900537038006200341b7046a20072d00003a0000200320093600ab042003200f3700a3042003200a36009f042003201036009b0420032003290380063700af04200320043b019804200320044110763a009a0420034198036a41086a22024200370300200342003703980341dccdc000411220034198036a10002006200229030037030020032003290398033703f80241002102200341f8026a41104184a1c100410041001001417f460d30200342103702a4062003200341f8026a3602a00620034190056a200341a0066a10302003280290052207450d7e20034198056a280200210220032802940521060c310b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d032003200542808080807083200542ffffffff0f83843703980420034198036a41086a220242003703002003420037039803419cdfc000411a20034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41081002410021040cb7010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d022003200542808080807083200542ffffffff0f83843703980420034198036a41086a22024200370300200342003703980341bbcfc000411720034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a411020034198046a41081002410021040cb6010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2141282106200b0db1010cb5010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d210b412821060cb3010b200741d480c00020024101461b2104412a2106410021090240200b450d00200a10140b410121070b4101210b0c080b41bbf3c0002104412521060cd0010b200741d480c00020024101461b2104412a21064100210b02402009450d00200a10140b41012107410121090c060b41d889c00041052009200341a4046a28020010024101210802402006450d00200910140b410021070c030b41002102200328029c040dbd010cbe010b41bff1c000210441202106200a0db6010cb7010b0240200741186c2202450d00200820026a21062008210203402002280200200241086a2802002002410c6a280200200241146a2802001002200241186a22022006470d000b0b02402007450d00200741186c21062008210203400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200641686a22060d000b0b4101210702402009450d00200810140b410021080b410121094101210b0b410021040b0240024002400240200328029804417e6a220241054b0d00024020020e06000b02010304000b200b450d0a200341a0046a280200450d0a200328029c0410140c0a0b20034198046a10340c090b2009450d08200341a0046a280200450d08200328029c0410140c080b2007450d07200341a0046a280200450d07200328029c0410140c070b2008450d06024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200741686a22070d000b0b200341a0046a280200450d06200328029c0410140c060b4205200f7c2005580dc8010b41c0cac1001018000b20034198046a10340c030b200341a0046a280200450d02200328029c0410140c020b2007450d01200341a0046a280200450d01200328029c0410140c010b200b450d00024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d00200228020010140b0240200241106a280200450d002002410c6a28020010140b200241186a2102200741686a22070d000b0b200341a0046a280200450d00200328029c0410140b4101210b410021070cce010b410021022003280294050dac010cad010b200341b8036a41086a20022d00003a0000200320032903d8033703b803200841087621020ca4010b419399c10021044100210220114102460dc6010cc8010b20034180066a41086a20034198046a41086a2d00003a00002003200329039804370380060c040b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803412a210641d480c000210420074104470d97010c9c010b20034198046a41086a200341d8036a41086a2d00003a0000200320032903d803370398040c020b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c010b20034180066a41086a20034190056a41086a2d00003a00002003200329029005370380060b412a210641d480c00021040c98010b20032d008c05450d114192f4c0002104411d21060c240b42e40021150b02402015200c562005200f562005200f511b450d0041dff1c000210441102106200a0da0010ca1010b201b450d0820034198036a41086a220242003703002003420037039803419bf0c000411420034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d112003410036029804200341f8026a411020034198046a41044100100141016a41044d0d4f201b2003280298044d0d120c7e0b4108210a4100210220140d9c010c9d010b20032005422088a73602a0042003200b36029c0420032008360298042003411436029405200341d8ccc0003602900520034198046a20034190056a10730240200b450d00200810140b410021040c93010b20034198036a41086a22024200370300200342003703980341a6cfc000411520034198036a1000200341f8026a41086a2206200229030037030020032003290398033703f802200341f8026a41104184a1c100410010022003200e3a0098042002420037030020034200370398034183fbc000411920034198036a10002006200229030037030020032003290398033703f802200341f8026a411020034198046a41011002410021040c92010b41002107200328029c040d94010c95010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b803200841087621022005422088a72106200b21040c7c0b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803411a210641a2e3c00021040c8f010b20034198036a41086a22024200370300200342003703980341dccdc000411220034198036a1000200341f8026a41086a200229030037030020032003290398033703f8024100210a200341f8026a41104184a1c100410041001001417f460d14200342103702a4062003200341f8026a3602a00620034198046a200341a0066a10302003280298042209450d56200341a0046a280200210a200328029c0421100c150b20032903a804210f20034198036a41086a22024200370300200342003703980341dd81c000410d20034198036a1000200341f8026a41086a2206200229030037030020032003290398033703f802420021050240200341f8026a41104184a1c100410041001001417f460d002003420037039005200341f8026a411020034190056a41084100100141016a41084d0d4620032903900521050b20024200370300200342003703980341fcf3c000411620034198036a10002006200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d152003420037039005200341f8026a411020034190056a41084100100141016a41084d0d462005200329039005200f7c5a0d240c700b41eff1c000210441222106200a0d96010c97010b4100211f0b201d201f410674220b6a2281012102200b450d0c20034198046a411c6a21820120034198046a41146a210b4100210d20034198046a41186a21830120034198046a41206a21840120034198046a41286a218501034020034198046a41086a228601201d200d6a2202411c6a29020037030020034198046a41106a220e200241246a2902003703002083012002412c6a290200370300208401200241346a2902003703002085012002413c6a2802003602002003200241146a29020037039804200241106a2802002217450d0c20022903002113200241086a290300212520034190056a41286a22870120850128020036020020034190056a41206a22880120840129030037030020034190056a41186a22890120830129030037030020034190056a41106a228a01200e29030037030020034190056a41086a228b01208601290300370300200320032903980437039005200e2017360200200b200329039005370200200b41086a208b01290300370200200b41106a208a01290300370200200b41186a208901290300370200200b41206a208801290300370200200b41286a208701280200360200200320253703a004200320133703980420820120034180066a412010f7010d100240200b280200450d00201710140b200d41c0006a210d200241c0006a208101470d000b2081012202208101470d0d0c0e0b200341f8036a41176a2008290300370000200341f8036a411f6a200b2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a21060b200441016a22022004490dab0120044101742208200220022008491b2202ad4206862205422088a70dab012005a722084100480dab012004450d0620072004410674200810132207450d070c680b41012107410021060b20034198036a41086a22044200370300200342003703980341eecdc000411d20034198036a1000200341f8026a41086a200429030037030020032003290398033703f8020240200341f8026a41104184a1c100410041001001417f460d002003410036029005200341f8026a411020034190056a41044100100141016a41044d0d3d20032802900521042006450d660c650b4104210420060d640c650b4200210f20034198036a41086a22024200370300200342003703980341bef5c000411920034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d1020034200370398052003420037039005200341f8026a411020034190056a4110410010012202417f460d4c2002410f4d0d4c20034198056a290300210f20032903900521050c110b2006450d8301200210140c83010b201b41e4004b0d6c0b201a450d0c20034198036a41086a22024200370300200342003703980341aff0c000411b20034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d122003410036029804200341f8026a411020034198046a41044100100141016a41044d0d44201a2003280298044d0d130c5f0b2008101222070d610b200841081016000b41002109200328029c040d690c6a0b200241c0006a21020b2002208101460d010b201d201f4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d00200410140b2006210220072006470d000b0b4100218c010240201e450d00201d10140b4108218d01410821024100218e010ca1010b200341a0066a41286a220e200b41286a280200360200200341a0066a41206a228301200b41206a290200370300200341a0066a41186a228401200b41186a290200370300200341a0066a41106a228501200b41106a290200370300200341a0066a41086a228601200b41086a2902003703002003200b2902003703a00620034198046a41286a220b200e28020036020020034198046a41206a220e20830129030037030020034198046a41186a22830120840129030037030020034198046a41106a22840120850129030037030020034198046a41086a228501208601290300370300200320032903a0063703980441c0001012228d01450d44208d012013370300208d012017360210208d01200329039804370214208d012025370308411c218201208d01411c6a2085012903003702004124218b01208d0141246a208401290300370200412c218a01208d01412c6a2083012903003702004134218901208d0141346a200e290300370200413c218801208d01413c6a200b280200360200201f41067441406a200d460d0c200241c0006a218f014106219001201d201f4106746a41406a21910120034198046a411c6a219201411421930120034198046a41146a210b41012194014110210e4108210d412821870120034198046a41286a2185014120211720034198046a41206a218401411821860120034198046a41186a21830141c000219501420621254220211341002196014101218e014101218c01410121020c9c010b41012109410021100b2009200a4105746a2104200921020340200420026b41ff004d0d0c20034190056a2002460d0d200220034190056a412010f701450d0d200241206a220620034190056a460d0d200620034190056a412010f701450d0d200241c0006a220620034190056a460d0d200620034190056a412010f701450d0d200241e0006a220620034190056a460d0d20024180016a2102200620034190056a412010f7010d000c0d0b0b20034198036a41086a22024200370300200342003703980341b291c000411520034198036a100020034188036a41086a200229030037030020032003290398033703880320034188036a41104184a1c100410041001001417f460d0c200342003703900520034188036a411020034190056a41084100100141016a41084d0d36200329039005220c50450d0d4194a1c2001018000b20034180066a41086a22072004417f6a2204360200200220044105746a220229000021052002290008210f2002290010210c200641186a200241186a2900003700002006200c3700102006200f3700082006200537000020034198046a41086a2007280200360200200320032903800637039804411510122202450d412002410d6a41002900fec140370000200241086a41002900f9c140370000200241002900f1c14037000020024115413510132202450d4220022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602fc03200320023602f80320034198046a200341f8036a1073200210140240200328029c04450d0020032802980410140b411210122202450d43200241106a41002f00a0e3403b0000200241086a4100290098e34037000020024100290090e34037000020024112413210132202450d44200220032903a0063700122002412a6a200341a0066a41186a2204290300370000200241226a200341a0066a41106a22072903003700002002411a6a200341a0066a41086a220829030037000020034198036a41086a2206420037030020034200370398032002413220034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a411010032002101420034198046a41186a200429030037030020034198046a41106a200729030037030020034198046a41086a2008290300370300200320032903a0063703980420064200370300200342003703980341dd81c000410d20034198036a1000200341f8026a41086a200629030037030020032003290398033703f802420021050240200341f8026a41104184a1c100410041001001417f460d00200342003703f803200341f8026a4110200341f8036a41084100100141016a41084d0d3720032903f80321050b20034198036a41086a22024200370300200342003703980341bbcfc000411720034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d0e200342003703f803200341f8026a4110200341f8036a41084100100141016a41084d0d3720032903f803210f410f2106410f10122202450d0f0c520b41a1f2c000210441292106200a0d7f0c80010b420521050b200341a8026a200341a0066a2005200f1066200341a0066a200329039804220c20057d20034198046a41086a290300200f7d200c200554ad7d106c412821062007410110492204450d010b024020034198046a41206a280200450d0020032802b40410140b200341c4046a280200450d920120032802c00410140c92010b20034190056a41086a41013a000020034199056a20032903a00637000020034190056a412c6a2007360200200341a1056a200341a0066a41086a290300370000200341a9056a200341b0066a290300370000200341b1056a200341b8066a290300370000200341073a00900520034190056a101a0240200341b8046a280200450d0020032802b40410140b20034198046a412c6a280200450d5520032802c00410140c550b4101210420060d6d0c6e0b201a4190ce004b0d4c0b2019450d0820034198036a41086a22024200370300200342003703980341caf0c000411820034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d092003410036029804200341f8026a411020034198046a41044100100141016a41044d0d3720192003280298044d0d0a0c490b4101218e014101218c012081012202208101470d91010c92010b024020022004460d00034020034190056a2002460d02200220034190056a412010f701450d022004200241206a2202470d000b0b410f10122202450d3d200241076a41002900e9c140370000200241002900e2c1403700002002410f412f10132202450d3e200220032903900537000f200241276a20034190056a41186a22062903003700002002411f6a20034190056a41106a2204290300370000200241176a20034190056a41086a220d2903003700002003427f3703980420034198036a41086a220e420037030020034200370398032002412f20034198036a1000200341f8026a41086a200e29030037030020032003290398033703f802200341f8026a411020034198046a410810022002101420034180066a41186a220e200629030037030020034180066a41106a2206200429030037030020034180066a41086a2204200d2903003703002003200329039005370380062010200a470d46200a41016a2202200a490d8f01200a4101742210200220022010491b2210ad4205862205422088a70d8f012005a722024100480d8f01200a450d092009200a410574200210132209450d0a0c460b41a9e2c0002104411f21062010450d592009101420074104470d660c6b0b4205210c0b20054280de34200c80200f7c540d4c0b41aff4c0002104412a2106200341b8046a2802000d86010c87010b42e807210f410f2106410f101222020d430b200641011016000b41e1f2c000210441272106200a0d6f0c700b2019418089fa004b0d3f0b024020034190056a200c200f106b450d00419cf3c0002104411f2106200a0d6e0c6f0b20034198036a41086a22024200370300200342003703980341e2f0c000411720034198036a1000200341f8026a41086a200229030037030020032003290398033703f802200341f8026a41104184a1c100410041001001417f460d022003410036029804200341f8026a411020034198046a41044100100141016a41044d0d3320032802980441016a21060c030b2002101222090d3c0b200241011016000b410121060b20032006360298044200211520034198036a41086a22024200370300200342003703980341e2f0c000411720034198036a1000200341f8026a41086a220e200229030037030020032003290398033703f802200341f8026a411020034198046a4104100220034180066a41186a420037030020034180066a41106a420037030020034180066a41086a420037030020034200370380062018201920034180066a1009200341c8026a41026a220820032d0082063a0000200341a0066a41086a220b20034180066a41176a290000370300200341a0066a41106a220920034180066a411f6a2d00003a0000200320032f0180063b01c8022003200329008f063703a00620032800830621042003290087062105200341d8036a41086a20034190056a41176a290000370300200341d8036a41106a20034190056a411f6a2d00003a0000200341b8036a41086a200b290300370300200341b8036a41106a20092d00003a0000200320032d0092053a00f203200320032f0190053b01f0032003200329009f053703d803200320032f01c8023b01d003200320082d00003a00d203200320032903a0063703b803200328009305211c200329009705211620024200370300200342003703980341dd81c000410d20034198036a1000200e200229030037030020032003290398033703f8020240200341f8026a41104184a1c100410041001001417f460d002003420037039804200341f8026a411020034198046a41084100100141016a41084d0d2f20032903980421150b20034180066a41026a20082d00003a000020034198046a41086a200b29030037030020034198046a41106a20092d00003a0000200320032f01c8023b018006200320032903a00637039804411810122202450d32200241106a4100290089f140370000200241086a4100290081f140370000200241002900f9f04037000020024118413810132202450d33200220032f0180063b00182002200537001f2002200436001b20022003290398043700272002411a6a20034180066a41026a2d00003a00002002412f6a20034198046a41086a290300370000200241376a20034198046a41106a2d00003a000020034198036a41086a2208420037030020034200370398032002413820034198036a100020034188036a41086a200829030037030020032003290398033703880320034188036a41101008210b2002101441012108200b0d3820034188036a41026a200341c8026a41026a2d00003a000020034198046a41086a200341a0066a41086a29030037030020034198046a41106a200341a0066a41106a2d00003a0000200320032f01c8023b018803200320032903a00637039804411810122202450d34200241106a4100290089f140370000200241086a4100290081f140370000200241002900f9f04037000020024118413810132202450d35200220032f0188033b00182002200537001f2002200436001b20022003290398043700272002411a6a2003418a036a2d00003a00002002412f6a200341a0046a290300370000200241376a200341a8046a2d00003a000020034100360288062003420137038006200320193602f803200341f8036a20034180066a101c0240024002402003280284062209200328028806220b6b20194f0d00200b20196a2208200b490d85012009410174220e20082008200e491b220e4100480d85012009450d012003280280062009200e10132208450d020c390b20032802800621080c390b200e101222080d370b200e41011016000b41e4cbc1001018000b41b185c00041331015000b4190c9c1001018000b419892c2001018000b41b8b8c2001018000b41ecb2c2001018000b41e4e1c1001018000b41aca1c2001018000b41fccbc1001018000b41d4b2c2001018000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41a8cac1001018000b41b185c00041331015000b41b185c00041331015000b411341011016000b412641011016000b411241011016000b413241011016000b412041011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411341011016000b412641011016000b410841011016000b200441081016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41c00041081016000b411541011016000b413541011016000b411241011016000b413241011016000b41b185c00041331015000b41b185c00041331015000b410f41011016000b412f41011016000b411841011016000b413841011016000b411841011016000b413841011016000b2003200e360284062003200836028006200e21090b2008200b6a2018201910f5011a20034198036a41086a220e420037030020034200370398032002413820034198036a1000200341f8026a41086a200e29030037030020032003290398033703f802200341f8026a41102008200b20196a100202402009450d00200810140b200210140240200a450d00201810140b410021080b200341c8046a201a360200200341c4046a2010360200200341bc046a201b360200200341b8046a200d360200200341ce046a20032d00f2033a0000200341d3046a201637000020034198046a41376a201c360000200341db046a20032903d803370000200341e3046a200341d8036a41086a290300370000200341eb046a200341d8036a41106a2d00003a00002003200c37039804200320173602c004200320073602b404200320063602b004200320153703a8042003200f3703a004200320032f01f0033b01cc04200341ef046a2004360000200341f3046a2005370000200341ee046a20032d00d2033a0000200341fb046a20032903b80337000020034183056a200341b8036a41086a2903003700002003418b056a200341b8036a41106a2d00003a0000200341003a008c05200320032f01d0033b01ec0402400240024002400240411310122202450d002002410f6a41002800a0f140360000200241086a4100290099f14037000020024100290091f14037000020024113412610132202450d01200220063600132003411736028406200320023602800620034198046a20034180066a1074200210140240200341b8046a280200450d00200341b4046a28020010140b0240200341c4046a280200450d00200341c0046a28020010140b20034198036a41086a22024200370300200342003703980341a4f1c000411b20034198036a1000200341f8026a41086a200229030037030020032003290398033703f8024100210202400240200341f8026a41104184a1c100410041001001417f460d0020034210370284062003200341f8026a3602800620034198046a20034180066a10462003280298042204450d042003200329029c04220537029c0420032004360298042005a72005422088a72202460d010c060b200341003602a0042003420437039804410421040b200241016a22072002490d4e2002410174220b20072007200b491b2207ad4202862205422088a70d4e2005a7220b4100480d4e024002402002450d0020042002410274200b10132204450d010c050b200b101222040d040b200b41041016000b411341011016000b412641011016000b41b185c00041331015000b2003200736029c042003200436029804200341a0046a28020021020b20034198046a41086a2207200241016a360200200420024102746a20063602002003411b36028406200341a4f1c0003602800620034198046a20034180066a10750240200328029c04450d00200410140b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2204290300370300200341f8036a41086a20034190056a41086a220b29030037030020032003290390053703f803200741003a0000200341c4046a2006360200200341a1046a200329039005370000200341a9046a200b290300370000200341b1046a2004290300370000200341b9046a2002290300370000200341073a00980420034198046a101a024020034190056a1071450d0020034198046a41186a200229030037030020034198046a41106a200429030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034198046a2006410110760b41002104200a450d0b2008450d0b201810140c0b0b2009200a4105746a2202200329038006370000200241186a200e290300370000200241106a2006290300370000200241086a20042903003700002003200a41016a3602a0042003201036029c042003200936029804200341123602a406200341dccdc0003602a00620034198046a200341a0066a107302402010450d00200910140b410021040c130b4188f3c000210441142106200a0d2e0c2f0b41002104200241076a41002900e9c140370000200241002900e2c140370000024020022006412f10132202450d00200220032903980437000f200241276a200341b0046a2903003700002002411f6a20034198046a41106a290300370000200241176a20034198046a41086a2903003700002003200f20057c3703f80320034198036a41086a2206420037030020034200370398032002412f20034198036a1000200341f8026a41086a200629030037030020032003290398033703f802200341f8026a4110200341f8036a41081002200210140c240b412f41011016000b41caf2c000210441172106200a0d2c0c2d0b200710140b0240200220044d0d0020034198046a200810772104410d21060c210b41d0e3c0002104413921060c200b20042108200221040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c200341003602a806200342013703a0062007200841016a2206200341a0066a107820032802a406210b20032802a806210920032802a006210220034188036a41086a220a4200370300200342003703880341d596c100411520034188036a100020034198036a41086a200a29030037030020032003290388033703980320034198036a41102002200910020240200b450d00200210140b02402006450d00200741106a2102200841067441c0006a210603400240200241046a280200450d00200228020010140b200241c0006a2102200641406a22060d000b0b02402004450d00200710140b410021040b412621064100210220114102460d450c470b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a00637039005412210122202450d02200241206a41002f00a0f5403b0000200241186a4100290098f540370000200241106a4100290090f540370000200241086a4100290088f54037000020024100290080f5403700002002412241c40010132202450d0320022003290390053700222002413a6a200341a8056a290300370000200241326a20034190056a41106a2903003700002002412a6a20034190056a41086a290300370000200241c40041880110132202450d042002200736004220034198036a41086a220642003703002003420037039803200241c60020034198036a100020034188036a41086a200629030037030020032003290398033703880320034188036a4110100821062002101402402006450d0041d9f4c000210441272106200341b8046a2802000d3b0c3c0b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a0063703900520034190056a2007201c10760240200341b8046a280200450d0020032802b40410140b200341c4046a280200450d0020032802c00410140b410021040b0c3a0b412241011016000b41c40041011016000b41880141011016000b4191f2c000210441102106200a0d200c210b20032802980410140b20090d004101210941152106419f95c10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021090b20034180066a41086a220a20034198046a41086a2d00003a000020032003290398043703800620090d00200341af056a200a2d00003a00002003200d3600a3052003200c37009b052003200636009705200320043600930520032003290380063700a705200320023b019005200320024110763a00920520034198046a200341a0066a106f024020032d0098044101470d0041c8e2c00021044126210620074104470d0e0c130b20034198036a41086a22024200370300200342003703980341dccdc000411220034198036a1000200341f8026a41086a200229030037030020032003290398033703f8024100210202400240200341f8026a41104184a1c100410041001001417f460d0020034210370284062003200341f8026a3602800620034198046a20034180066a10302003280298042209450d0c200341a0046a2802002102200328029c04210a0c010b410121094100210a0b200920024105746a2104200921020340200420026b41ff004d0d02200341a0066a2002460d092002200341a0066a412010f701450d09200241206a2206200341a0066a460d032006200341a0066a412010f701450d04200241c0006a2206200341a0066a460d052006200341a0066a412010f701450d06200241e0006a2206200341a0066a460d0720024180016a21022006200341a0066a412010f7010d000c080b0b20074104460d110c0c0b024020022004460d000340200341a0066a2002460d092002200341a0066a412010f701450d082004200241206a2202470d000b0b41002102200a0d090c0a0b200341a0066a21060b20062102200a0d070c080b200341a0066a21060b20062102200a0d050c060b200341a0066a21060b200621020b200a450d030c020b200341a0066a2102200a0d010c020b41b185c00041331015000b200910140b02402002450d0041eee2c00021044122210620074104470d010c060b20034180066a20034190056a107220034198046a41186a200341a0066a41186a29030037030020034198046a41106a200341a0066a41106a29030037030020034198046a41086a200341a0066a41086a290300370300200320032903a00637039804024002400240024002402003280284062003280288062202470d00200241016a22062002490d2d20024101742204200620062004491b2204ad4205862205422088a70d2d2005a722094100480d2d2002450d012003280280062002410574200910132206450d020c030b20032802800621060c030b2009101222060d010b200941011016000b200320043602840620032006360280060b20034180066a41086a2204200241016a360200200620024105746a2202200329039804370000200241186a20034198046a41186a290300370000200241106a20034198046a41106a290300370000200241086a20034198046a41086a220229030037000020022004280200360200200320032903800637039804024002400240024002400240411510122202450d002002410d6a41002900fec140370000200241086a41002900f9c140370000200241002900f1c14037000020024115413510132202450d0120022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602dc03200320023602d80320034198046a200341d8036a1073200210140240200328029c04450d0020032802980410140b411210122202450d02200241106a41002f00a0e3403b0000200241086a4100290098e34037000020024100290090e34037000020024112413210132202450d03200220032903a0063700122002412a6a200341b8066a290300370000200241226a200341a0066a41106a2903003700002002411a6a200341a0066a41086a29030037000020034198036a41086a2206420037030020034200370398032002413220034198036a1000200341f8026a41086a200629030037030020032003290398033703f802200341f8026a411020034190056a4120100220021014410f10122202450d0441002104200241076a41002900e9c140370000200241002900e2c1403700002002410f412f10132202450d05200220032903a00637000f200241276a200341b8066a2903003700002002411f6a200341a0066a41106a290300370000200241176a200341a0066a41086a2903003700002003427f3703980420034198036a41086a2206420037030020034200370398032002412f20034198036a1000200341f8026a41086a200629030037030020032003290398033703f802200341f8026a411020034198046a410810022002101420074104470d060c0b0b411541011016000b413541011016000b411241011016000b413241011016000b410f41011016000b412f41011016000b20074106460d04024002402007410c470d004100450d010c060b2007410c490d050b200b450d040b200810140c030b200210140b2004450d0020034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a2903003703002003200329039005370398042003200c3703a8062003200542808080807083200542ffffffff0f83843703a0062003200d3602b006411c10122202450d02200241186a41002800a3ce40360000200241106a410029009bce40370000200241086a4100290093ce403700002002410029008bce403700002002411c413c10132202450d03200220032903980437001c200241346a200341b0046a2903003700002002412c6a20034198046a41106a290300370000200241246a20034198046a41086a29030037000020034100360288062003420137038006200341a0066a41106a20034180066a101c2003200341a0066a3602f803200341f8036a20034180066a107920032802840621042003280288062107200328028006210620034198036a41086a2208420037030020034200370398032002413c20034198036a1000200341f8026a41086a200829030037030020032003290398033703f802200341f8026a411020062007100202402004450d00200610140b20021014410021040c010b41d2cfc0002104410d21060b4100210b410121070c2c0b411c41011016000b413c41011016000b20032802980410140b20070d004101210741152106419f95c10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021070b20034180066a41086a220820034198046a41086a2d00003a000020032003290398043703800620070d00200341f8026a41086a20082d00003a000020032003290380063703f8024200210f20034188036a41086a22074200370300200342003703880341af8cc100410820034188036a100020034198036a41086a20072903003703002003200329038803370398034100210702400240024020034198036a41104184a1c100410041001001417f460d0020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f80320034198036a4110200341f8036a4120410010012207417f460d022007411f4d0d0220034180066a41186a200341f8036a41186a29030037030020034180066a41106a200341f8036a41106a29030037030020034180066a41086a200341f8036a41086a290300370300200320032903f80337038006200341d8036a41086a20034197066a290000370300200341d8036a41106a20034180066a411f6a2d00003a0000200320032d0082063a00f203200320032f0180063b01f0032003200329008f063703d8032003280083062107200329008706210f0c010b200341d8036a41106a41003a0000200341e0036a4200370300200341003a00f203200341003b01f003200342003703d8030b200341b8036a41086a2208200341d8036a41086a290300370300200341b8036a41106a220b200341d8036a41106a2d00003a0000200320032d00f2033a00d203200320032f01f0033b01d003200320032903d8033703b803200341a1046a200f370000200341a9046a20032903b803370000200341b1046a2008290300370000200341b9046a200b2d00003a000020034186023b0198042003200736009d04200320032f01d0033b019a04200320032d00d2033a009c0420034198046a101a200341b7046a200341f8026a41086a2d00003a0000200320103600ab04200320053700a3042003200636009f042003200436009b04200320032903f8023700af04200320023b019804200320024110763a009a0420034188036a41086a22024200370300200342003703880341af8cc100410820034188036a100020034198036a41086a200229030037030020032003290388033703980320034198036a411020034198046a41201002410021040c010b41b185c00041331015000b41002109410121074101210b0c260b201210140b200341003602a0042003420137039804200a200220034198046a1078200328029c04210420032802a0042107200328029804210620034188036a41086a22084200370300200342003703880341d596c100411520034188036a100020034198036a41086a200829030037030020032003290388033703980320034198036a411020062007100202402004450d00200610140b02402002450d0020024106742106200a41106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200641406a22060d000b0b410021044101210202402009450d00200a10140b20114102460d1e0c200b201810140b02402010450d00201710140b200d450d14200710140c140b20032802900510140b20020d0041012102419f95c100210d4115210e0c010b20034190056a41086a200341b8036a41086a2d00003a0000200320032903b80337039005410021020b20034180066a41086a220620034190056a41086a2d00003a000020032003290390053703800620020d04200341b7046a20062d00003a00002003200b3600ab04200320053700a3042003200e36009f042003200d36009b0420032003290380063700af04200320083b019804200320084110763a009a0420034198046a200c200f106920034198046a2016201510670c0d0b20032802980410140b20020d0041012102419f95c100210d4115210e0c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021020b20034180066a41086a220620034198046a41086a2d00003a000020032003290398043703800620020d00200341af056a20062d00003a00002003200b3600a3052003200537009b052003200e360097052003200d3600930520032003290380063700a705200320083b019005200320084110763a009205411410122202450d04200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b4037000020024114413410132202450d05200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200210520034188036a41086a2206420037030020034200370388032002413420034188036a100020034180066a41086a200629030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d01200342003703a004200342003703980420034180066a411020034198046a4110410010012206417f460d032006410f4d0d03200341a0046a290300211520032903980421052002101441142106411410122202450d020c060b410121074101210b410121094101210a4101210841012110200e2106200d210420012d0000220241084d0d1c0c1d0b4200211520021014411421064114101222020d040b200641011016000b41b185c00041331015000b411441011016000b413441011016000b200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b40370000024002400240024002400240024002400240024020022006413410132202450d0020022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a29030037000020034188036a41086a2206420037030020034200370388032002413420034188036a100020034180066a41086a200629030037030020032003290388033703800602400240024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012206417f460d022006410f4d0d02200341a0046a290300212120032903980421220c010b42002122420021210b2002101420034188036a41086a2202420037030020034200370388030240024002400240202220218422234200510d0041c4acc000411420034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d02200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d062002410f4d0d06200341a0046a29030021130c010b41b0acc000411420034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d01200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d082002410f4d0d08200341a0046a29030021130b20032903980421240c010b42002124420021130b0240200c20247c2225200c542202200f20137c2002ad7c2216200f542016200f511b450d004128210641f7adc00021040c0c0b411010122202450d03200241086a41002900e0ac40370000200241002900d8ac4037000020024110413010132202450d04200220032903a006370010200241286a200341a0066a41186a290300370000200241206a200341a0066a41106a290300370000200241186a200341a0066a41086a29030037000020034198046a20024130102520034198046a41206a290300212620034198046a41186a290300212720034198046a41106a290300212820032903a0042129200329039804212a200210144200212b4200212c02400240202a4201520d00411410122202450d09200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b4037000020024114413410132202450d0a200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200212c20034188036a41086a2206420037030020034200370388032002413420034188036a100020034180066a41086a20062903003703002003200329038803370380060240024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012206417f460d0a2006410f4d0d0a200341a0046a290300212a200329039804212d0c010b4200212d4200212a0b2002101420034188036a41086a22024200370300200342003703880341dd81c000410d20034188036a100020034180066a41086a2002290300370300200320032903880337038006024020034180066a41104184a1c100410041001001417f460d00200342003703980420034180066a411020034198046a41084100100141016a41084d0d02200329039804212c0b4200212b200341f0016a20264200202c420010f90120034180026a202c42002027420010f901200341e0016a420042002027420010f9014200212c024020032903e80120032903f8018442005220034180026a41086a290300222620032903e00120032903f0017c7c2227202654720d0020282027200329038002222b202954202720285420272028511b22021b20277d2029202b20021b2227202b54ad7d212c2027202b7d212b0b202c202a202d202b56202a202c56202a202c511b22021b212c202b202d20021b212b0b0240200520257d2227200556201520167d2005202554ad7d220520155620052015511b450d00411d2106418eadc00021040c0d0b02402027202b542005202c542005202c511b450d004126210641e8acc00021040c0d0b202350450d0b20034188036a41086a22024200370300200342003703880341ecabc000411b20034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a41104184a1c100410041001001417f460d0b200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d0a2002410f4d0d0a200329039804200c56200341a0046a2903002215200f562015200f511b450d0b411f210641d8adc00021040c0c0b41b185c00041331015000b41b185c00041331015000b413441011016000b41b185c00041331015000b411041011016000b413041011016000b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b41b185c00041331015000b411e2106200341a0066a106422040d002022200c7c221620225422022021200f7c2002ad7c221520215420152021511b450d01412d210641abadc00021040b410121070c100b200341a0066a20034190056a412010f701450d00200341a0066a2027200510694200210520034188036a41086a22024200370300200342003703880341949bc000411620034188036a100020034180066a41086a200229030037030020032003290388033703800602400240024002400240024002400240024002400240024002400240024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d022002410f4d0d02200341a0046a290300212120032903980421050c010b420021210b0240200520247d2222200556202120137d2005202454ad7d220520215620052021511b0d002003202237039804200320053703a00420034188036a41086a22024200370300200342003703880341949bc000411620034188036a100020034180066a41086a200229030037030020032003290388033703800620034180066a411020034198046a411010020b20034188036a41086a22024200370300200342003703880341ecabc000411b20034188036a100020034180066a41086a2002290300370300200320032903880337038006024020034180066a41104184a1c100410041001001417f460d00200342003703a004200342003703980420034180066a411020034198046a4110410010012202417f460d022002410f4d0d02200329039804201658200341a0046a290300220520155820052015511b0d0020034190056a2016201510690c0b0b411410122202450d03200241106a41002800ba9b40360000200241086a41002900b29b40370000200241002900aa9b4037000020024114413410132202450d0420022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a29030037000020034188036a41086a2206420037030020034200370388032002413420034188036a100020034198036a41086a200629030037030020032003290388033703980320034198036a4110100821062002101420060d0920034188036a41086a220242003703002003420037038803419e95c000411320034188036a100020034198036a41086a200229030037030020032003290388033703980341002102024020034198036a41104184a1c100410041001001417f460d00200341003602980420034198036a411020034198046a41044100100141016a41044d0d0320032802980421020b20034180066a200841067641ff07712204103d02400240024002402003280288062008413f7122064d0d00200341d0016a20032802800620064105746a2206106220032903d001200341d0016a41086a290300844200510d010b0240200328028406450d0020032802800610140b20034198046a2002103d024020032802a0042206413f4d0d00200341a0046a21040340200241016a21020240200328029c04450d0020032802980410140b20034198046a2002103d2004280200220641c0004f0d000b0b2003280298042107200328029c04210420034198046a41186a220920034190056a41186a29030037030020034198046a41106a220a20034190056a41106a29030037030020034198046a41086a221020034190056a41086a290300370300200320032903900537039804200641016a210820042006470d0a20064101742204200820082004491b2204ad4205862205422088a70d162005a7220b4100480d162006450d0120072006410574200b10132207450d020c0a0b2006200329039005370000200641186a20034190056a41186a290300370000200641106a20034190056a41106a290300370000200641086a20034190056a41086a29030037000020034198046a41086a20034180066a41086a280200360200200320032903800637039804410f10122202450d07200241076a41002900ce9140370000200241002900c791403700002002410f411e10132202450d082002200436000f200341133602dc03200320023602d80320034198046a200341d8036a107320021014200328029c04450d0a20032802980410140c0a0b200b101222070d080b200b41011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411441011016000b413441011016000b410f41011016000b411e41011016000b200720064105746a220b200329039804370000200b41186a2009290300370000200b41106a200a290300370000200b41086a20102903003700000240200841c000470d002003200241016a3602980420034188036a41086a220b42003703002003420037038803419e95c000411320034188036a100020034198036a41086a200b29030037030020032003290388033703980320034198036a411020034198046a410410020b200320083602a0042003200436029c042003200736029804410f10122208450d03200841076a41002900ce9140370000200841002900c791403700002008410f411e10132208450d04200241067420066a21062008200236000f2003411336028406200320083602800620034198046a20034180066a10732008101402402004450d00200710140b20034180066a41186a20034190056a41186a220229030037030020034180066a41106a20034190056a41106a220429030037030020034180066a41086a20034190056a41086a220729030037030020032003290390053703800620034198046a41086a20032903900537030020034198046a41106a200729030037030020034198046a41186a2004290300370300200341b8046a20022903003703002003200636029c04200341013a00980420034198046a101a0b200341d0046a2015370300200341c8046a201637030020034198046a41086a41003a0000200341a1046a200329039005370000200341a9046a20034190056a41086a290300370000200341b1046a200341a0056a290300370000200341b9046a200341a8056a290300370000200341023a00980420034198046a101a0b20034190056a2016201510690b20034198046a41086a41023a0000200341a1046a20032903a006370000200341c1046a200329039005370000200341a9046a200341a0066a41086a290300370000200341b1046a200341a0066a41106a290300370000200341b9046a200341a0066a41186a290300370000200341c9046a20034190056a41086a290300370000200341d1046a20034190056a41106a290300370000200341d9046a20034190056a41186a290300370000200341023a00980420034180056a2013370300200341f8046a2024370300200341f0046a200f370300200341e8046a200c37030020034198046a101a0c020b410f41011016000b411e41011016000b41002104410121074101210b410121094101210a410121084101211020012d0000220241084d0d130c140b20032802b40410140b200341c4046a280200450d0020032802c00410140b4100210a410121074101210b410121090c0e0b2003200537039005200341f8026a41086a22024200370300200342003703f80241a591c000410d200341f8026a100020034198046a41086a22072002290300370300200320032903f8023703980420034198046a411020034190056a41081002200341013a00900520024200370300200342003703f802418890c0004113200341f8026a100020072002290300370300200320032903f8023703980420034198046a411020034190056a4101100220074200370300200342003703980441b291c000411520034198046a100020034188036a41086a2007290300370300200320032903980437038803024002400240024002400240024020034188036a41104184a1c100410041001001417f460d00200342003703980420034188036a411020034198046a41084100100141016a41084d0d02200329039804210f0c010b4205210f0b20034198046a41086a22024200370300200342003703980441e485c000411220034198046a100020034198036a41086a22082002290300370300200320032903980437039803410121070240024020034198036a41104184a1c100410041001001417f460d00200342003703980420034198036a411020034198046a41084100100141016a41084d0d03200329039804210c410021090c010b410121090b200320053703900520024200370300200342003703980441e485c000411220034198046a10002008200229030037030020032003290398043703980320034198036a411020034190056a41081002200c500d0f20090d0f427f200f200f7c22152015200f541b220f4200510d022005200f802205200c200f80220f580d032005200f42017c220c510d0f4200211520034198046a41086a22024200370300200342003703980441c5fbc000411220034198046a100020034198036a41086a20022903003703002003200329039804370398030240024020034198036a41104184a1c100410041001001417f460d002003421037029405200320034198036a3602900520034198046a20034190056a10302003280298042220450d06200329029c0421150c010b410121200b2005200f427f857ca7222e450d0e2015422088a7222f202e4d0d0e200ca72130200341a1046a2131410f213220034190056a410f6a2133200341f8036a410f6a2134200341a0066a410f6a2135410021094105213641082108411021104118211b420021054114213741d8ccc00021384184a1c1002139417f213a410121184112213b4132213c412a213d4122213e411a213f4104211a4119214041feccc0002141410d214241dd81c0002143411721444197cdc00021454120210a4130214641502147420121214220210f411b214841c1cdc000214941ff00214a4160214b41dccdc000214c411d214d41eecdc000214e423f2124411c214f413c215041342151412c215241242153410321544115215541a6cfc00021564183fbc000215742102116200341d0046a2158415821594154211c412821194174215a416c215b4164215c415c215d417c215e4230210c410b215f410a216041272161411f216242ffffffff0f2122410721634102216441002165410021020c050b41b185c00041331015000b41b185c00041331015000b41d4c3c1001018000b41ecc3c1001018000b41b185c00041331015000b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b2020206520306a202f702036746a2202290000212c200220086a2900002123200220106a2900002127200341a0066a201b6a22662002201b6a290000370300200341a0066a20106a22672027370300200341a0066a20086a226820233703002003202c3703a00620034188036a20086a2269200537030020032005370388032038203720034188036a1000200341f8026a20086a226a206929030037030020032003290388033703f802024002400240200341f8026a20102039200920091001203a460d0020032016370294052003200341f8026a3602900520034198046a20034190056a10302003280298042202450d0e200328029c04216b200220034198046a20086a280200200341a0066a1028216c0240206b450d00200210140b206c450d020c010b20182009200341a0066a1028450d010b206520186a2265202e470d1f0c2b0b203b10122202450d0d200220106a20092f00fccc40226d3b0000200220086a20092900f4cc402226370000200220092900eccc4022293700002002203b203c10132202450d0e200220032903a0063700122002203d6a20662903003700002002203e6a20672903003700002002203f6a20682903003700002069200537030020032005370388032002203c20034188036a1000206a206929030037030020032003290388033703f80202400240200341f8026a20102039200920091001203a460d002003200936029804200341f8026a201020034198046a201a2009100120186a201a4d0d0a200328029804216e20021014203b101222020d010c110b4100216e20021014203b10122202450d100b200220106a206d3b0000200220086a2026370000200220293700002002203b203c10132202450d10200220032903a0063700122002203d6a20662903003700002002203e6a20672903003700002002203f6a20682903003700002003206e20186a226f360298042069200537030020032005370388032002203c20034188036a1000206a206929030037030020032003290388033703f802200341f8026a201020034198046a201a1002200210142069200537030020032005370388032041204020034188036a1000206a206929030037030020032003290388033703f80202400240200341f8026a20102039200920091001203a460d002003200936029804200341f8026a201020034198046a201a2009100120186a201a4d0d0b20032802980421700c010b410021700b20034198036a20086a2202203520086a29000037030020034198036a20106a226b203520106a2d00003a0000200320032d00a2063a00b203200320032f01a0063b01b003200320352900003703980320032800a306217120032900a706212b4200212a2069420037030020034200370388032043204220034188036a1000206a206929030037030020032003290388033703f8020240200341f8026a20102039200920091001203a460d002003200537039804200341f8026a201020034198046a20082009100120186a20084d0d08200329039804212a0b200341d8026a20086a22722002290300370300200341d8026a20106a2273206b2d00003a0000200320032d00b2033a00ca02200320032f01b0033b01c80220032003290398033703d8022069200537030020032005370388032045204420034188036a1000206a206929030037030020032003290388033703f802024002400240024002400240200341f8026a20102039200920091001203a460d002003201637029c042003200341f8026a36029804200341c8016a20034198046a101b20032802c801450d0820032802cc012274ad200c7e222c200f88a70d12202ca72202203a4c0d122002450d01200210122275450d1b2074450d030c020b4100217c4108217542002123410021020c040b410821752074450d010b20034198046a20086a2276280200217741002178200328029c042179200328029804217a4100216c410021022074217b034020034180066a201b6a227c200537030020034180066a20106a227d200537030020034180066a20086a227e2005370300200320053703800620762009207a207920034180066a200a20771001226b206b203a461b226b200a206b200a491b20776a2277360200206b20624d0d05200341f8036a201b6a207c290300370300200341f8036a20106a207d290300370300200341f8036a20086a207e29030037030020032003290380063703f803200320053703900520762009207a207920034190056a200820771001226b206b203a461b226b2008206b2008491b20776a2277360200206b20634d0d05200329039005212c200320093602900520762009207a207920034190056a201a20771001226b206b203a461b226b201a206b201a491b20776a2277360200206b20544d0d05200220186a216b200328029005217c200341d8036a20086a227d203420086a290000370300200341d8036a20106a227e203420106a2d00003a0000200320032d00fa033a00f203200320032f01f8033b01f003200320342900003703d80320032800fb03217f20032900ff03212302402002207b470d002078206b206b2078491b227bad200c7e2227200f88a70d272027a72280012009480d2702402002450d002075206c208001101322750d010c0c0b20800110122275450d0b0b2075206c6a2202202c370300200220086a20032f01f0033b010020032d00f203218001200220326a20233700002002205f6a207f360000200220606a2080013a0000200220616a207e2d00003a0000200220626a207d290300370000200220446a20032903d803370000200220196a207c360200207820646a2178206c20466a216c206b2102206b2074490d000c020b0b4100216b4100217b0b2075450d03206bad200f86207bad842223200f88a7217c2023a721020b20034198046a20086a2279207229030037030020034198046a20106a227e20732d00003a0000200320032d00ca023a008206200320032f01c8023b018006200320032903d802370398040240024002400240024002400240207c200a490d00207c20466c226b2046460d01207520466a2102206b20476a217a410021774101216c207521782075216b03402002206b206b29030020022903005622761b216b206c207720761b21772002207820761b2178206c20186a216c200220466a2102207a20476a227a0d000b206b450d182078450d182033200329039804370000203320086a2079290300370000203320106a207e2d00003a00002003202b370097052003207136009305200320032d0082063a009205200320032f0180063b019005207c20774b0d020c1f0b200341b8036a20086a226b2079290300370300200341b8036a20106a226c207e2d00003a0000200320032d0082063a00d203200320032f0180063b01d00320032003290398043703b80302402002207c470d00207c2018742202207c20186a227620762002491bad222c200c7e2227200f88a70d292027a722022009480d29207c450d032075207c20466c2002101322750d040c200b2023212c0c040b2033200329039804370000203320086a2079290300370000203320106a207e2d00003a00002003202b370097052003207136009305200320032d0082063a009205200320032f0180063b019005410021770b2075207720466c6a2202202a3703002002200a6a20034190056a201b6a2903003703002002201b6a20034190056a20106a290300370300200220106a20034190056a20086a2903003703002002200329039005370308200220183602280c030b200210122275450d1c0b2023200f88a7217c0b2075207c20466c6a2202202a37030020032d00d203217620032f01d0032177200220326a202b3700002002205f6a2071360000200220773b0108200220606a20763a0000200220616a206c2d00003a0000200220626a206b290300370000200220446a20032903b80337000020022018360228202c202283207c20186aad200f868421230b20792009360200200320213703980420032023200f88a722023602900520034190056a20034198046a101c024002402002450d00200220466c217a2059207928020022026b2177200220526a2102200328029c04216c2075216b03400240024002400240206c20776a20196a200a4f0d002002201c6a2278200a6a22762078490d29206c2018742278207620762078491b22782009480d29206c450d01200328029804206c2078101322760d020c0b0b20032802980421760c020b207810122276450d090b2003207836029c0420032076360298042078216c0b20792002205a6a227c360200207620026a2278205b6a206b200a6a2900003700002078205c6a206b201b6a2900003700002078205d6a206b20106a2900003700002078201c6a206b20086a290000370000206b290300212c0240024002400240206c20776a227820086a20784f0d00207c20086a2278207c490d29206c201874227c20782078207c491b22782009480d29206c450d012076206c2078101322760d020c0c0b206c21780c020b207810122276450d0a0b2003207836029c0420032076360298040b20792002205e6a226c360200207620026a205a6a202c370000206b20196a280200217c0240024002400240207820776a20544b0d00206c201a6a227d206c490d292078201874226c207d207d206c491b226c2009480d292078450d0120762078206c101322760d020c0a0b2078216c0c020b206c10122276450d080b2003206c36029c0420032076360298040b206b20466a216b20792002360200207620026a205e6a207c3600002077201c6a2177200220526a2102207a20476a227a0d000c020b0b200328029c04216c20032802980421760b207928020021022069200537030020032005370388032045204420034188036a10002079206929030037030020032003290388033703980420034198046a20102076200210020240206c450d00207610140b02402023a7450d00207510140b0240024002400240206f20704d0d00420021232069420037030020034200370388032049204820034188036a1000206a206929030037030020032003290388033703f802200341f8026a20102039200920091001203a460d01200320053703a0042003200537039804200341f8026a201020034198046a2010200910012202203a460d16200220324d0d162079290300212b20032903980421280c020b20034190056a201b6a206629030037030020034190056a20106a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410121020c020b420021284200212b0b206e20187420706b216b206e20706b220220186a217a4200212c02400340206b216c2002207a4f0d0102402002204a4b0d00200341b8016a2028202b2002204a7110fa01202c200341b8016a20086a2903007c202320032903b8017c222a2023542276ad7c2227202c5121772027202c542178206c20186a216b200220186a2102202a21232027212c2076207820771b450d010b0b20034198046a201b6a226b2066290300370300207e206729030037030020792068290300370300200320032903a00637039804203b10122202450d18200220106a206d3b0000200220086a2026370000200220293700002002203b203c10132202450d1920022003290398043700122002203d6a206b2903003700002002203e6a207e2903003700002002203f6a20792903003700002003206c360290052069200537030020032005370388032002203c20034188036a1000206a206929030037030020032003290388033703f802200341f8026a201020034190056a201a10022002101420034198046a200341a0066a107220792802002102200328029804216c200341a8016a200341a0066a1062200341a8016a20086a290300212c20032903a801212302402002450d002002203674216b206c2102034020034198016a2002106220034198016a20086a290300202c7c200329039801222c20237c2223202c54ad7c212c2002200a6a2102206b204b6a226b0d000b0b200328029c04450d00206c10140b206920053703002003200537038803204c203b20034188036a1000206a206929030037030020032003290388033703f80202400240200341f8026a20102039200920091001203a460d0020032016370294052003200341f8026a3602900520034198046a20034190056a10302003280298042276450d1d20792802002102200328029c04216b0c010b4100216b41012176410021020b206920053703002003200537038803204e204d20034188036a1000206a206929030037030020032003290388033703f802024002400240200341f8026a20102039200920091001203a460d002003200936029804200341f8026a201020034198046a201a2009100120186a201a4d0d0e200328029804216c206b450d020c010b4104216c206b450d010b207610140b02402002206c4d0d0020034180016a200341a0066a2023202c1068200329038001a72018470d0020034180016a20106a290300212b200329038801212820034198046a200341a0066a107a2003280298042176024020792802002202450d00420021272002203674226c216b4200212a207621020340200341f0006a20021062200341f0006a20086a290300202a7c2003290370222a20277c2227202a54ad7c212a2002200a6a2102206b204b6a226b0d000b2027202a84500d00207621020340200341e0006a20021062200341386a2003290360200341e0006a20086a2903002028202b10f901200341286a2003290338200341386a20086a2903002027202a10f801200341c8006a20022003290328200341286a20086a29030010682002200a6a2102206c204b6a226c0d000b0b200328029c04450d00207610140b204f10122202450d142002201b6a20092800a3ce40360000200220106a200929009bce40370000200220086a2009290093ce403700002002200929008bce403700002002204f205010132202450d15200220032903a00637001c200220516a2066290300370000200220526a2067290300370000200220536a206829030037000020034198046a20022050102620034198046a201b6a2277280200216b20032903980421272002101402400240206f20706b206b205420272021511b4b0d002023202488212b202c202186212820034198046a200341a0066a107220792802002102200328029804216c200341186a200341a0066a1062200341186a20086a29030021272003290318212a02402002450d002002203674216b206c21020340200341086a20021062200341086a20086a29030020277c20032903082227202a7c222a202754ad7c21272002200a6a2102206b204b6a226b0d000b0b2028202b84212b202320218621280240200328029c04450d00206c10140b2028202358202b202c58202b202c511b0d00202a20285a2027202b5a2027202b511b0d010b206920053703002003200537038803204c203b20034188036a1000206a206929030037030020032003290388033703f8020240200341f8026a20102039200920091001203a460d0020032016370294052003200341f8026a3602900520034198046a20034190056a10302003280298042278450d1e200328029c04217a024020792802002202450d00200220367421764100216b207821020240034020772002201b6a290000370300207e200220106a2900003703002079200220086a2900003703002003200229000037039804206b20034198046a200341a0066a200a10f701226c2009476a216b206c450d012002200a6a21022076204b6a22760d000c020b0b200341a0066a206b107722020d200b207a450d00207810140b2069200537030020032005370388032056205520034188036a1000206a206929030037030020032003290388033703f802200341f8026a2010203920091002200320093a0098042069200537030020032005370388032057204020034188036a1000206a206929030037030020032003290388033703f802200341f8026a201020034198046a201810020b20034190056a201b6a206629030037030020034190056a20106a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410221020b2058202c37030020034198046a20466a2023370300207920023a0000203120032903900537000020034198046a20526a206e360200203120086a20034190056a20086a290300370000203120106a20034190056a20106a2903003700002031201b6a20034190056a201b6a2903003700002003201a3a00980420034198046a101a206520186a2265202e470d1f0c2a0b208f0121020240024003402002200e6a280200216b2002200d6a290300212c2002290300212320850120022088016a28020036020020840120022089016a2902003703002083012002208a016a29020037030020034198046a200e6a226c2002208b016a29020037030020034198046a200d6a227620022082016a290200370300200320022093016a29020037039804206b450d0220034190056a2087016a228f0120850128020036020020034190056a20176a227720840129030037030020034190056a2086016a227820830129030037030020034190056a200e6a2279206c29030037030020034190056a200d6a227a2076290300370300200320032903980437039005206c206b360200200b200329039005370200200b200d6a227c207a290300370200200b200e6a227a2079290300370200200b2086016a22792078290300370200200b20176a22782077290300370200200b2087016a2277208f012802003602002003202c3703a0042003202337039804024020920120034180066a201710f7010d000240200b280200450d00206b10140b20022095016a2202208101470d010c020b0b200341a0066a2087016a228f012077280200360200200341a0066a20176a22772078290200370300200341a0066a2086016a22782079290200370300200341a0066a200e6a2279207a290200370300200341a0066a200d6a227a207c2902003703002003200b2902003703a006208501208f0128020036020020840120772903003703002083012078290300370300206c20792903003703002076207a290300370300200320032903a006370398040240208c01208e01470d00208e012094016a228c01208e01490d24208e0120940174228f01208c01208c01208f01491b228c01ad2025862227201388a70d242027a7228f01209601480d240240208e01450d00208d01208e0120900174208f011013228d010d010c200b208f011012228d01450d1f0b20022095016a218f01208d01208e01209001746a2277202c370308207720233703002077206b36021020772088016a20850128020036020020772089016a2084012903003702002077208a016a2083012903003702002077208b016a206c29030037020020772082016a207629030037020020772093016a200329039804370200208e012094016a218e012091012002470d210b2081012202208101470d230c240b200241c0006a2202208101460d230c220b207b450d00207510140b41b185c00041331015000b206c41011016000b207841011016000b207841011016000b20800141081016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b100f000b411241011016000b413241011016000b411241011016000b413241011016000b41aecdc00041131015000b41b185c00041331015000b411c41011016000b413c41011016000b200241081016000b411241011016000b413241011016000b41fc80c2002077207c1038000b200241081016000b41b185c00041331015000b41b185c00041331015000b41a7cec00041ff002002410d1029000b208f0141081016000b410021020c020b410021020c010b410121020c000b0b1010000b201d201f4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d00200410140b2006210220072006470d000b0b0240201e450d00201d10140b208d0121020b200341003602a00420034201370398042002208e0120034198046a1078200328029c04210420032802a0042107200328029804210620034188036a41086a22084200370300200342003703880341d596c100411520034188036a100020034198036a41086a200829030037030020032003290388033703980320034198036a411020062007100202402004450d00200610140b0240208e01450d00208e014106742106200241106a210203400240200241046a280200450d00200228020010140b200241c0006a2102200641406a22060d000b0b41002104208c01450d00208d0110140b411a21064100210220114102470d020b20020d012014450d010b201210140b41002110410121074101210b410121094101210a4101210820012d0000220241084d0d060c070b2015a7450d00202010140b4101210b0b410121090b4101210a0b410121080b4101211020012d0000220241084b0d010b0240024002400240024020020e09060406060601020003060b200a450d05200141086a2d00004102470d050240200141106a280200450d002001410c6a28020010140b02402001411c6a280200450d00200141186a28020010140b200141286a280200450d05200141246a28020010140c050b200b450d04200141086a2d0000410c490d04200141106a280200450d042001410c6a28020010140c040b2009450d03200141046a107b0c030b2008450d02200141086a2d00004104470d02200141d0006a280200450d02200141cc006a28020010140c020b2007450d01200141086a10340c010b2010450d00200141086a2d00004102470d00200141106a280200450d002001410c6a28020010140b2000200636020420002004360200200341d0066a24000be30301047f230041d0006b2202240002400240411210122203450d00200341106a41002f00a0e3403b0000200341086a4100290098e34037000020034100290090e34037000020034112413210132203450d01200320012900003700122003412a6a200141186a290000370000200341226a200141106a2900003700002003411a6a200141086a290000370000200241306a41086a220142003703002002420037033020034132200241306a1000200241206a41086a200129030037030020022002290330370320024002400240200241206a41104184a1c100410041001001417f460d00200241306a41186a4200370300200241306a41106a4200370300200241386a420037030020024200370330200241206a4110200241306a4120410010012201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b20031014200241d0006a24000f0b41b185c00041331015000b411241011016000b413241011016000ba77a04037f027e087f0b7e230041a0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417e6a220541104b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210920022d00002105200341d8026a41026a2204200241036a2d00003a0000200341e0056a41086a220a200241146a290000370300200341e0056a410d6a220b200241196a290000370000200320022f00013b01d80220032002410c6a2900003703e0054101210220054101470d1420034190036a41026a20042d00003a0000200341d8046a41086a200a290300370300200341d8046a410d6a200b290000370000200320032f01d8023b019003200320032903e0053703d804410021020c150b4100210941ac80c00041ac80c000410020022d000022021b20024103461b22050d10200320012d00013a00d80420034180066a41086a220242003703002003420037038006419bafc000411920034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410110020c83010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0f20034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1d200342103702dc042003200341d8026a3602d804200341d8016a200341d8046a10880120032903d8014203510d53200342083703b8044100210c200341003602c00420034180066a41086a2202420037030020034200370380064198b2c000411b20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d2b200342103702b4032003200341d8026a3602b003200341d8046a200341b0036a103020032802d804220d450d5920032802dc04210c200341e0046a2802002202450d2c0c89010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0e200141046a280200210520034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1d200342103702dc042003200341d8026a3602d804200341a8016a200341d8046a10880120032903a8014203520d1641b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0d200141086a29030021074200210620034180066a41086a22024200370300200342003703800641dd81c000410d20034180066a1000200341d8026a41086a200229030037030020032003290380063703d8020240200341d8026a41104184a1c100410041001001417f460d00200342003703d804200341d8026a4110200341d8046a41084100100141016a41084d0d4d20032903d80421060b41adbac0002109411f2108200620075a0d16200320073703e004200342023703d804200341153602b403200341ddb0c0003602b003200341d8046a200341b0036a1087010c080b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0c200141046a280200210520034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a2208200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1c200342103702dc042003200341d8026a3602d804200341b8016a200341d8046a10880120032903b8014203520d1441b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0b200141106a2903002106200141086a290300210720034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1c200342103702dc042003200341d8026a3602d80420034188016a200341d8046a1088012003290388014203520d1341b185c00041331015000b200341f0016a41186a200141196a290000370300200341f0016a41106a200141116a290000370300200341f0016a41086a200141096a290000370300200320012900013703f00120034190026a41186a200141396a29000037030020034190026a41106a200141316a29000037030020034190026a41086a200141296a2900003703002003200141216a29000037039002200141c4006a280200210a200141c8006a2802002104200141cc006a280200210b200241086a2800002108200241046a280000210520022d00002109200341d8026a41026a220f200241036a2d00003a0000200341e0056a41086a220e200241146a290000370300200341e0056a410d6a220c200241196a290000370000200320022f00013b01d80220032002410c6a2900003703e0054101210120094101470d0b200341b8046a41026a200f2d00003a0000200341d8046a41086a200e290300370300200341d8046a410d6a200c290000370000200320032f01d8023b01b804200320032903e0053703d804410021010c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0920034180066a41086a22024200370300200342003703800641d596c100411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1b200342103702b4032003200341d8026a3602b003200341d8046a200341b0036a104520032802d8042202450d4e200320032902dc043702dc04200320023602d8040c1c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d08200141086a29030021074200210620034180066a41086a22024200370300200342003703800641dd81c000410d20034180066a1000200341d8026a41086a200229030037030020032003290380063703d8020240200341d8026a41104184a1c100410041001001417f460d00200342003703d804200341d8026a4110200341d8046a41084100100141016a41084d0d4920032903d80421060b41adbac0002109411f2108200620075a0d11200320073703e004200342003703d804200341153602b403200341ddb0c0003602b003200341d8046a200341b0036a1087010c030b41ac80c00041ac80c000410020022d000022021b20024103461b22050d07200141086a290300210620034180066a41086a2202420037030020034200370380064115210841ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1b200342103702dc042003200341d8026a3602d804200341e8006a200341d8046a10880120032903684203520d0f41b185c00041331015000b200141306a2903002106200141286a2903002107200341a8036a200141196a29000037030020034190036a41106a200141116a29000037030020034190036a41086a200141096a2900003703002003200129000137039003200241086a2800002108200241046a280000210920022d00002105200341d8026a41026a2204200241036a2d00003a0000200341e0056a41086a220a200241146a290000370300200341e0056a410d6a220b200241196a290000370000200320022f00013b01d80220032002410c6a2900003703e0054101210220054101470d0b200341b8046a41026a20042d00003a0000200341d8046a41086a200a290300370300200341d8046a410d6a200b290000370000200320032f01d8023b01b804200320032903e0053703d804410021020c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d05200141086a29030021074200210620034180066a41086a22024200370300200342003703800641dd81c000410d20034180066a1000200341d8026a41086a200229030037030020032003290380063703d8020240200341d8026a41104184a1c100410041001001417f460d00200342003703d804200341d8026a4110200341d8046a41084100100141016a41084d0d4720032903d80421060b41adbac0002109411f2108200620075a0d0e200320073703e004200342013703d804200341153602b403200341ddb0c0003602b003200341d8046a200341b0036a1087010b4100210920012d00004104460d85010c86010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d03200141106a2903002106200141086a290300210720034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d18200342103702dc042003200341d8026a3602d804200341c8016a200341d8046a10880120032903c8014203520d0b41b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d02200141086a290300210620034180066a41086a2202420037030020034200370380064115210841ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d18200342103702dc042003200341d8026a3602d804200341d8006a200341d8046a10880120032903584203520d0a41b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d01200141086a290300210620034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d18200342103702dc042003200341d8026a3602d80420034198016a200341d8046a1088012003290398014203520d0941b185c00041331015000b41ac80c00041ac80c000410020022d000022021b20024103461b2205450d070b4128210820044104470d8201200141c8006a280200450d8201200141c4006a28020010140c82010b412a210841d480c00021050b20034190036a41026a200341b8046a41026a2d00003a0000200341b0036a41086a200341d8046a41086a290300370300200341b0036a41106a200341d8046a41106a290300370300200320032f01b8043b019003200320032903d8043703b00320010d75200341d4026a41026a20034190036a41026a2d00003a0000200341b8026a41086a200341b0036a41086a290300370300200341b8026a410d6a200341b0036a410d6a290000370000200320032f0190033b01d402200320032903b0033703b802200b41204d0d07419bb9c0002105410e21080c750b41d480c0002109412a21080b200341b4026a41026a20034190036a41026a2d00003a0000200341b0036a41086a200341d8046a41086a290300370300200341b0036a41106a200341d8046a41106a290300370300200320032f0190033b01b402200320032903d8043703b00320020d04200341f0026a41026a2202200341b4026a41026a2d00003a0000200341b8046a41086a2205200341b0036a41086a290300370300200341b8046a410d6a2204200341b0036a410d6a290000370000200320032f01b4023b01f002200320032903b0033703b804200341eb046a2005290300370000200341f0046a2004290000370000200320083600df04200320093600db04200320022d00003a00da04200320032f01f0023b01d804200320032903b8043700e304200341186a200341d8046a10652003290318200341186a41086a29030084500d0720034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d06200342103702dc042003200341d8026a3602d804200341086a200341d8046a108801200329030822104203510d422010a7450d1a41abb7c00021090c1f0b412a210841d480c00021090b200341b4026a41026a200341b8046a41026a2d00003a0000200341b0036a41086a200341d8046a41086a290300370300200341b0036a41106a200341d8046a41106a290300370300200320032f01b8043b01b402200320032903d8043703b00320020d02200341f0016a41026a2202200341b4026a41026a2d00003a0000200341f0026a41086a2205200341b0036a41086a290300370300200341f0026a410d6a2204200341b0036a410d6a290000370000200320032f01b4023b01f001200320032903b0033703f002200341eb046a2005290300370000200341f0046a2004290000370000200320083600df04200320093600db04200320022d00003a00da04200320032f01f0013b01d804200320032903f0023700e304200341386a200341d8046a10652003290338200341386a41086a29030084500d0620034180066a41086a22024200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d04200342103702dc042003200341d8026a3602d804200341286a200341d8046a108801200329032822104203510d412010a74101470d134200211020034180066a41086a22024200370300200342003703800641dfb7c000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d1e200342003703e004200342003703d804200341d8026a4110200341d8046a4110410010012202417f460d442002410f4d0d44200341e0046a290300211020032903d80421110c1f0b200141086a290300210620034180066a41086a2202420037030020034200370380064115210841ddb0c000411520034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d10200342103702dc042003200341d8026a3602d804200341f8006a200341d8046a10880120032903784203510d3e0b41ccbac0002109412421080b20012d00004104470d780c770b20034180066a41086a22014200370300200342003703800641ddb0c000411520034180066a1000200341d8026a41086a200129030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d10200342103702dc042003200341d8026a3602d804200341c8006a200341d8046a108801200329034822064203510d3e2006a74102470d13200341b4026a41026a200341d4026a41026a2d00003a0000200341d8026a41086a200341b8026a41086a290300370300200341d8026a410d6a200341b8026a410d6a290000370000200320032f01d4023b01b402200320032903b8023703d802200341f0026a41186a200341f0016a41186a290300370300200341f0026a41106a200341f0016a41106a290300370300200341f0026a41086a200341f0016a41086a290300370300200320032903f0013703f00220034190036a41186a20034190026a41186a29030037030020034190036a41106a20034190026a41106a29030037030020034190036a41086a20034190026a41086a290300370300200320032903900237039003411510122201450d412001410d6a410029008ab840370000200141086a4100290085b840370000200141002900fdb74037000020014115413510132201450d42200120032903f0023700152001412d6a20034188036a290300370000200141256a200341f0026a41106a2903003700002001411d6a200341f0026a41086a29030037000020034180066a41086a2202420037030020034200370380062001413520034180066a100020034190066a41086a200229030037030020032003290380063703900620034190066a411010082102200110142002450d1e200341b0036a200341f0026a10920120032d0090044101470d1f41bdb9c00021054115210820040d6e0c780b41cbb7c00021090c6b0b41a0bcc00021094127210820012d00004104460d740c750b41e1b8c00021094126210820012d00004104460d730c740b41e5bcc00021090c6f0b2005450d1020034180066a41086a22024200370300200342003703800641e3bdc000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d17200341003602d804200341d8026a4110200341d8046a41044100100141016a41044d0d3320032802d80420054f0d180c650b2002420037030020034200370380064181bec000411b20034180066a10002008200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d10200341003602d804200341d8026a4110200341d8046a41044100100141016a41044d0d3120032802d80420054d0d110c630b200320063703e004200320073703d80420034180066a41086a22024200370300200342003703800641c8b6c000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a411010020c6b0b200341003602e004200342083703d8040b200341e8016a200341d8046a104c20032802ec01210820032802e801210920012d00004104460d6d0c6e0b2006500d04200320063703d80420034180066a41086a2202420037030020034200370380064189bdc000411c20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c5d0b200320063703e004200320073703d80420034180066a41086a22024200370300200342003703800641dfb7c000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a411010020c670b2006500d02200320063703d80420034180066a41086a22024200370300200342003703800641eab2c000412020034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c5b0b2006500d0b200320063703d80420034180066a41086a22024200370300200342003703800641c4bdc000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c5a0b2006500d00200320063703d80420034180066a41086a22024200370300200342003703800641a5bdc000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410810020c590b41f0bac000210920012d00004104460d670c680b41c5b8c0002109411c210820012d00004104460d660c670b4114210841cbb7c000210520040d5d0c670b4101210d4100210241000d5d0b410021054108210e200c0d5d0c5e0b411f2108418ebac000210520040d5a0c640b411f10122202450d2e200241176a41002900cbaf40370000200241106a41002900c4af40370000200241086a41002900bcaf40370000200241002900b4af403700002002411f413f10132202450d2f200220032f01f0023b001f2002200836002620022009360022200220032903b80437002a200241216a200341f2026a22042d00003a0000200241326a200341b8046a41086a290300370000200241376a200341c5046a220a29000037000020034180066a41086a2205420037030020034200370380062002413f20034180066a100020034190066a41086a200529030037030020032003290380063703900620034190066a4110100821052002101420050d0e20034180066a41086a22024200370300200342003703800641c8b6c000411f20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a41104184a1c100410041001001417f460d0c200342003703e004200342003703d804200341d8026a4110200341d8046a4110410010012202417f460d342002410f4d0d34200341e0046a290300211020032903d80421110c0d0b41a5bbc0002109411b210820012d00004104460d600c610b410a20054b0d520b200320053602d80420034180066a41086a22024200370300200342003703800641e3bdc000411e20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410410020c4f0b4185bbc00021090b4120210820012d00004104460d5c0c5d0b420a21110b02402011200758201020065820102006511b0d004187b9c00021090c510b200341cb046a200341f0026a41086a290300370000200341b8046a41186a200341f0026a410d6a290000370000200320083600bf04200320093600bb04200320032f01f0013b01b804200320032903f0023700c3042003200341f2016a2d00003a00ba04200341e0056a41186a20034190036a41186a2202290300370300200341e0056a41106a20034190036a41106a2205290300370300200341e0056a41086a20034190036a41086a220829030037030020032003290390033703e005200341d8046a41186a2002290300370300200341d8046a41106a2005290300370300200341d8046a41086a200829030037030020032003290390033703d804411510122202450d2b2002410d6a410029008ab840370000200241086a4100290085b840370000200241002900fdb74037000020024115413510132202450d2c200220032903d8043700152002412d6a200341f0046a290300370000200241256a200341d8046a41106a2903003700002002411d6a200341d8046a41086a29030037000020034180066a41086a2205420037030020034200370380062002413520034180066a100020034190066a41086a200529030037030020032003290380063703900620034190066a411010082105200210142005450d044192b8c00021090c500b41142005490d4d0b200320053602d80420034180066a41086a2202420037030020034200370380064181bec000411b20034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a4110200341d8046a410410020c490b41a9b9c00021054114210820040d4f0c590b200341eb046a200341e0026a290300370000200341f0046a200341e5026a290000370000200320083600df04200320053600db04200320032f01b4023b01d804200320032903d8023700e3042003200341b6026a2d00003a00da04200341d8046a200341b0036a41206a412010f701450d0441d2b9c0002105411a210820040d4e0c580b412210122202450d29200241206a41002f00d3b2403b0000200241186a41002900cbb240370000200241106a41002900c3b240370000200241086a41002900bbb240370000200241002900b3b2403700002002412241c40010132202450d2a200220032903b8043700222002413a6a200341b8046a41186a290300370000200241326a200341b8046a41106a2903003700002002412a6a200341b8046a41086a290300370000200341d8046a200241c2001025200341d8046a41106a2903002112200341d8046a41186a2903002110200341d8046a41206a290300211120032903e004211320032903d804211420021014200341b8046a200720104200201442015122021b2214200720142007542011420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d22061063450d04200341b8046a20152006106b450d0641a6b8c0002109411f210820012d00004104460d550c560b4200211042e40021110b2011200758201020065820102006511b0d0041c7bcc0002109411e210820012d00004104460d530c540b200341c3036a200341b8046a41086a290300370000200341b0036a41186a200a290000370000200320083600b703200320093600b303200320032f01f0023b01b003200320032903b8043700bb03200320042d00003a00b203412210122202450d21200241206a41002f00d3b2403b0000200241186a41002900cbb240370000200241106a41002900c3b240370000200241086a41002900bbb240370000200241002900b3b2403700002002412241c40010132202450d22200220032903b0033700222002413a6a200341b0036a41186a290300370000200241326a200341b0036a41106a2903003700002002412a6a200341b8036a290300370000200341d8046a200241c2001025200341d8046a41186a2903002112200341d8046a41206a2903002113200341d8046a41106a290300211020032903e004211120032903d80421142002101441e7b6c0002109200341b0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d22061063450d3e4189b7c0002109200341b0036a20152006106b0d3e411f10122205450d28200541176a41002900cbaf40370000200541106a41002900c4af40370000200541086a41002900bcaf40370000200541002900b4af403700002005411f413f10132205450d29200520032903b00337001f200541376a200341b0036a41186a2903003700002005412f6a200341b0036a41106a290300370000200541276a200341b0036a41086a290300370000200341d8046a2005413f1025200341d8046a41106a2903002107200341d8046a41206a2903002117200341d8046a41186a290300211820032903e004211920032903d804211a20051014412210122205450d2a200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d2b200520032903b0033700222005413a6a200341c8036a290300370000200541326a200341b0036a41106a2903003700002005412a6a200341b0036a41086a29030037000020034180066a41086a220842003703002003420037038006200541c20020034180066a100020034190066a41086a200829030037030020032003290380063703900620034190066a4110100821082005101402402008450d00412210122205450d31200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d32200520032903b0033700222005413a6a200341b0036a41186a290300370000200541326a200341b0036a41106a2903003700002005412a6a200341b0036a41086a290300370000411010122208450d332008201420117d3700002008201020167d2014201154ad7d37000820084110412010132208450d3420082012420020021b370010200841186a2013420020021b37000020034180066a41086a220242003703002003420037038006200541c20020034180066a1000200341d8026a41086a200229030037030020032003290380063703d802200341d8026a411020084120100220081014200510140b411f10122202450d2c200241176a41002900cbaf40370000200241106a41002900c4af40370000200241086a41002900bcaf40370000200241002900b4af403700002002411f413f10132202450d2d200220032903b00337001f200241376a200341b0036a41186a22082903003700002002412f6a200341b0036a41106a290300370000200241276a200341b0036a41086a29030037000020034180066a41086a2205420037030020034200370380062002413f20034180066a100020034190066a41086a200529030037030020032003290380063703900620034190066a4110100821052002101420050d3d20034180066a41086a22024200370300200342003703800641feb1c000411a20034180066a1000200341d8026a41086a200229030037030020032003290380063703d80241002105200341d8026a41104184a1c100410041001001417f460d06200342103702e4052003200341d8026a3602e005200341d8046a200341e0056a103020032802d8042202450d35200320032902dc0422103702e405200320023602e0052010422088a721042010a721050c070b411f10122201450d2d200141176a41002900cbaf40370000200141106a41002900c4af40370000200141086a41002900bcaf40370000200141002900b4af403700002001411f413f10132201450d2e200120032903900337001f200141376a200341a8036a2903003700002001412f6a20034190036a41106a290300370000200141276a20034190036a41086a29030037000020034180066a41086a2202420037030020034200370380062001413f20034180066a100020034190066a41086a200229030037030020032003290380063703900620034190066a411010082102200110142002450d01200b450d03200b101222010d04200b41011016000b41e7b6c00021090c3c0b41ecb9c00021054122210820040d470c510b20034180066a41086a2205420037030020034200370380064198b2c000411b20034180066a1000200341d8026a41086a200529030037030020032003290380063703d80241002108200341d8026a41104184a1c100410041001001417f460d04200342103702b4032003200341d8026a3602b003200341d8046a200341b0036a103020032802d8042204450d32200320032902dc0422073702b403200320043602b0032007422088a721052007a721080c050b410121010b2001200a200b10f5012109200341b8046a41186a220220034190036a41186a290300370300200341b8046a41106a220520034190036a41106a290300370300200341b8046a41086a220820034190036a41086a29030037030020032003290390033703b804412010122201450d2e200120032903b804370000200141186a2002290300370000200141106a2005290300370000200141086a200829030037000002400240200b450d00200b41206a2202200b490d4c200241c000200241c0004b1b22084100480d4c200141202008101322010d01200841011016000b41202108200b41206a21020b200141206a2009200b10f5011a200341d8046a41186a22054200370300200341d8046a41106a220f4200370300200341d8046a41086a220e4200370300200342003703d80420012002200341d8046a1009200341e0056a41186a2005290300370300200341e0056a41106a200f290300370300200341e0056a41086a200e290300370300200320032903d8043703e005419295c00021050240200341f0036a200341e0056a412010f7010d0020034191046a20032903b80437000020034190046a41013a000020034199046a200341b8046a41086a290300370000200341a1046a200341b8046a41106a290300370000200341a9046a200341b8046a41186a290300370000410021050b02402008450d00200110140b02402005450d00410c2108200b450d442009101420040d450c4f0b200341e0056a41186a200341f0026a41186a290300370300200341e0056a41106a200341f0026a41106a290300370300200341e0056a41086a200341f0026a41086a290300370300200320032903f0023703e005200341d8046a200341b0036a41880110f5011a411510122201450d312001410d6a410029008ab840370000200141086a4100290085b840370000200141002900fdb74037000020014115413510132201450d32200120032903e0053700152001412d6a200341f8056a290300370000200141256a200341f0056a2903003700002001411d6a200341e8056a290300370000200341353602bc04200320013602b804200341d8046a200341b8046a103c200110140240200b450d00200910140b410021052004450d04200a10140c4e0b200341003602e805200342013703e00541012102410021040b200341d8046a41186a220a200341b0036a41186a290300370300200341d8046a41106a220b200341b0036a41106a290300370300200341d8046a41086a220f200341b0036a41086a290300370300200320032903b0033703d804024020042005470d00200541016a22092005490d492005410174220e20092009200e491b2209ad4205862210422088a70d492010a7220e4100480d492005450d0420022005410574200e10132202450d050c340b200521090c340b200341003602b803200342013703b00341012104410021050b200341d8046a41186a220a200341e0056a41186a290300370300200341d8046a41106a220b200341e0056a41106a290300370300200341d8046a41086a220f200341e0056a41086a290300370300200320032903e0053703d80420082005470d30200541016a22082005490d4620054101742209200820082009491b2208ad4205862207422088a70d462007a722094100480d462005450d0320042005410574200910132204450d040c2f0b0c490b200e101222020d2f0b200e41011016000b2009101222040d2b0b200941011016000b41e8f0c1001018000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411541011016000b413541011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b411541011016000b413541011016000b41b185c00041331015000b412241011016000b41c40041011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b412041011016000b41b185c00041331015000b41b185c00041331015000b411541011016000b413541011016000b200320083602b403200320043602b0030b200420054105746a220920032903d804370000200941186a200a290300370000200941106a200b290300370000200941086a200f290300370000200341b0036a41086a200541016a3602002003411b3602dc0420034198b2c0003602d804200341b0036a200341d8046a107302402008450d00200410140b200341b0036a41186a200341e0056a41186a2205290300370300200341b0036a41106a200341e0056a41106a2208290300370300200341b0036a41086a200341e0056a41086a2204290300370300200320032903e0053703b003200341d8046a41186a201637030020034190056a200341b8046a41186a29030037030020034188056a200341b8046a41106a29030037030020034180056a200341b8046a41086a290300370300200341a0056a2004290300370300200341a8056a2008290300370300200341b0056a2005290300370300200320113703e804200320063703e004200320153703d804200341003a00b805200320032903b8043703f804200320032903e0053703980502400240024002400240024002400240411510122205450d002005410d6a410029008ab840370000200541086a4100290085b840370000200541002900fdb74037000020054115413510132205450d01200520032903b0033700152005412d6a200341b0036a41186a290300370000200541256a200341b0036a41106a2903003700002005411d6a200341b0036a41086a29030037000020034135360294022003200536029002200341d8046a20034190026a103c20051014412210122205450d0241002109200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d03200520032903b8043700222005413a6a200341d0046a290300370000200541326a200341b8046a41106a2903003700002005412a6a200341b8046a41086a29030037000020034180066a41086a220842003703002003420037038006200541c20020034180066a100020034190066a41086a200829030037030020032003290380063703900620034190066a411010082108200510142008450d11412210122205450d04200541206a41002f00d3b2403b0000200541186a41002900cbb240370000200541106a41002900c3b240370000200541086a41002900bbb240370000200541002900b3b2403700002005412241c40010132205450d05200520032903b8043700222005413a6a200341b8046a41186a290300370000200541326a200341b8046a41106a2903003700002005412a6a200341b8046a41086a290300370000411010122208450d0620082013420020021b37000020082012420020021b37000820084110412010132202450d072002201420117d370010200241186a201020167d2014201154ad7d37000020034180066a41086a220842003703002003420037038006200541c20020034180066a1000200341d8026a41086a200829030037030020032003290380063703d802200341d8026a411020024120100220021014200510140c100b411541011016000b413541011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b200320093602e405200320023602e0050b200241206a2002200441057410f6011a200220032903d804370000200241186a200a290300370000200241106a200b290300370000200241086a200f290300370000200341e0056a41086a200441016a3602002003411a3602dc04200341feb1c0003602d804200341e0056a200341d8046a10732009450d00200210140b200341d8046a41186a2008290300370300200341d8046a41106a200341b0036a41106a290300370300200341d8046a41086a200341b0036a41086a290300370300200320032903b0033703d804411f10122202450d01200241176a41002900cbaf40370000200241106a41002900c4af40370000200241086a41002900bcaf40370000200241002900b4af403700002002411f413f10132202450d02200220032903d80437001f200241376a200341f0046a2903003700002002412f6a200341d8046a41106a290300370000200241276a200341e0046a290300370000411010122205450d03200520194200201a42015122081b221020157c221437000020052007420020081b20067c2014201054ad7c37000820054110412010132205450d0420052018420020081b220620117c2207370010200541186a2017420020081b20167c2007200654ad7c37000020034180066a41086a2208420037030020034200370380062002413f20034180066a1000200341d8026a41086a200829030037030020032003290380063703d802200341d8026a41102005412010022005101420021014410021090b4122210820012d00004104460d130c140b411f41011016000b413f41011016000b411041011016000b412041011016000b410021090b20012d00004104460d0d0c0e0b41f0bbc00021090c010b41c0bbc00021090b4130210820012d00004104460d0a0c0b0b4114210820012d00004104460d090c0a0b2004450d0a0b200a10140c090b20024105742109410021044108210e4100210541002108200d21020340200341e0056a41186a200241186a220a290000370300200341e0056a41106a200241106a220b290000370300200341e0056a41086a200241086a220f290000370300200320022900003703e005200341b0036a41186a200a290000370300200341b0036a41106a200b290000370300200341b0036a41086a200f290000370300200320022900003703b003200341d8046a200341b0036a109201024020082005470d00200541016a220a2005490d062005410174220b200a200a200b491b220aad4288017e2206422088a70d062006a7220b4100480d06024002402005450d00200e20054188016c200b1013220e0d010c090b200b1012220e450d080b200a21050b200241206a2102200e20046a200341d8046a41880110f5011a20044188016a2104200841016a2108200941606a22090d000b200341c0046a20083602002003200e3602b804200320053602bc04200c450d010b200d10140b200342003702b403200341a090c1003602b003200341b8046a200341b0036a410010930120032802b803210a20032802b00321020240024020032802b4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341f4046a20022f0106360200200341f0046a4100360200200341ec046a20023602002003200a3602f804200341003602e804200342003703e004200320083602dc04200341003602d804200341d8046a1094012005450d00200e10140b410021090b4124210820012d00004104460d020c030b1010000b200b41081016000b200141c8006a280200450d00200141c4006a28020010140b200921050b2000200836020420002005360200200341a0066a24000bd20301087f230041306b2201240041082102200141206a41086a220342003703002001420037032041d596c1004115200141206a1000200141086a20032903003703002001200129032037030041002104024002400240200141104184a1c100410041001001417f460d002001421037021420012001360210200141206a200141106a104520012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d0220082000412010f701450d02200341dc006a22082000460d0220082000412010f701450d022003419c016a22082000460d0220082000412010f701450d02200341dc016a22082000460d0220034180026a210320082000412010f7010d000c020b0b024020032006460d000340410121072003411c6a22032000460d0220032000412010f701450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d00200028020010140b200041c0006a2100200341406a22030d000b0b02402005450d00200210140b200141306a240020070f0b41b185c00041331015000bcb0201027f230041306b22022400024002400240411510122203450d002003410d6a41002900fec140370000200341086a41002900f9c140370000200341002900f1c14037000020034115413510132203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241206a41086a220142003703002002420037032020034135200241206a1000200241086a20012903003703002002200229032037030002400240200241104184a1c100410041001001417f460d002002421037021420022002360210200241206a200241106a103020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b20031014200241306a24000f0b411541011016000b413541011016000b41b185c00041331015000bc10301077f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101c02400240024002402000450d0020004105742104200241106a41086a2802002100200228021021052002280214210603400240024002400240200620006b41204f0d00200041206a22072000490d0720064101742208200720072008491b22084100480d072006450d01200520062008101322050d020c080b200041206a21070c020b200810122205450d060b200821060b200520006a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020072100200341206a2103200441606a22040d000b200241186a200736020020022006360214200220053602100c010b200241186a280200210720022802142106200228021021050b2001280204210320012802002100200241106a41086a220442003703002002420037031020002003200241106a1000200241086a2004290300370300200220022903103703002002411020052007100202402006450d00200510140b200241206a24000f0b1010000b200841011016000bed0803037f027e057f230041206b2202240020024100360218200242013703102000280218210302400240024002400240024002400240410410122204450d0020024284808080c000370214200220043602102004200336000020044104412410132204450d01200242a4808080c004370214200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436021041000d05200041086a2903002105200029030021062004412441c80010132204450d02200420063700242004412c6a2005370000200241186a22034134360200200241c80036021420022004360210200028021c21072002200041246a28020022043602002002200241106a101c02400240024020022802142208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802102008200910132208450d020c060b200228021021080c060b2009101222080d040b200941011016000b410441011016000b412441011016000b41c80041011016000b20022009360214200220083602100b200241186a2209200320046a360200200820036a2007200410f5011a2000280228210a2002200041306a28020022073602002002200241106a101c0240024002400240024020022802142203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802102003200810132204450d020c030b200228021021040c030b2008101222040d010b200841011016000b2002200836021420022004360210200821030b200241106a41086a220b200920076a2208360200200420096a200a200710f5011a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710132204450d020c030b200321070c030b2007101222040d010b200741011016000b20022007360214200220043602100b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22092003490d0320074101742208200920092008491b22084100480d032007450d0120042007200810132204450d020c040b200841286a21090c040b2008101222040d020b200841011016000b1010000b20022008360214200220043602100b200241106a41086a22082009360200200420036a200537000020002d0074200241106a104a2008280200210420022802142103200228021021002001280204210720012802002109200842003703002002420037031020092007200241106a1000200241086a2008290300370300200220022903103703002002411020002004100202402003450d00200010140b200241206a24000b920301097f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101c02400240024002402000450d0020004102742104200241186a22052802002100200228021421060340200328020021070240024002400240200620006b41044f0d00200041046a22082000490d0720064101742209200820082009491b220a4100480d072006450d0120022802102006200a101322090d020c080b200041046a2108200228021021090c020b200a10122209450d060b2002200a36021420022009360210200a21060b200341046a210320052008360200200920006a2007360000200821002004417c6a22040d000c020b0b200241186a280200210820022802142106200228021021090b2001280204210020012802002103200241106a41086a220442003703002002420037031020032000200241106a1000200241086a2004290300370300200220022903103703002002411020092008100202402006450d00200910140b200241206a24000f0b1010000b200a41011016000ba70e03057f017e037f230041b0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910122204450d00200441186a41002d00adf6403a0000200441106a41002900a5f640370000200441086a410029009df64037000020044100290095f64037000020044119413210132204450d0120042001360019200341a0016a41086a22054200370300200342003703a0012004411d200341a0016a100020034190016a41086a2005290300370300200320032903a0013703900120034190016a4110100821052004101402400240024002402005450d0020034190016a20011047200341206a41186a200341186a290300370300200341206a41106a200341106a290300370300200341206a41086a200341086a2903003703002003200329030037032020032802940122062003280298012204470d01200441016a22072004490d0620044101742205200720072005491b2206ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910132205450d030c0a0b412110122204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910122205450d07200541186a41002d00adf6403a0000200541106a41002900a5f640370000200541086a410029009df64037000020054100290095f64037000020054119413210132205450d0820052001360019200341003602282003420137032020044101200341206a102d200328022421062003280228210920032802202107200341a0016a41086a220a4200370300200342003703a0012005411d200341a0016a1000200341206a41086a200a290300370300200320032903a001370320200341206a411020072009100202402006450d00200710140b20051014200410140c0b0b200441016a210720032802900121050c090b2009101222050d070b200941011016000b411941011016000b413241011016000b1010000b412141011016000b411941011016000b413241011016000b200320063602940120032005360290010b20034190016a41086a20073602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910122204450d01200441186a41002d00adf6403a0000200441106a41002900a5f640370000200441086a410029009df64037000020044100290095f64037000020044119413210132204450d0220042001360019200341003602282003420137032020052007200341206a102d200328022421092003280228210a20032802202107200341a0016a41086a220b4200370300200342003703a0012004411d200341a0016a1000200341206a41086a200b290300370300200320032903a001370320200341206a41102007200a100202402009450d00200710140b200410142006450d00200510140b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210122204450d00200441206a41002f00a0f5403b0000200441186a4100290098f540370000200441106a4100290090f540370000200441086a4100290088f54037000020044100290080f5403700002004412241c40010132204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341286a290300370000200441c40041880110132204450d0220042001360042024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110122205450d09200541033a00000c030b410110122205450d09200541023a00000c020b410110122205450d09200541013a00000c010b410110122205450d09200541003a00000b200341a0016a41086a22074200370300200342003703a001200441c600200341a0016a100020034190016a41086a2007290300370300200320032903a0013703900120034190016a41102005410110022005101420041014200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a101a200341b0016a24000f0b412241011016000b41c40041011016000b41880141011016000b411941011016000b413241011016000b410141011016000b410141011016000b410141011016000b410141011016000bcd0a02057f037e230041306b22022400200241106a41086a220342003703002002420037031041dccdc0004112200241106a1000200241206a41086a20032903003703002002200229031037032002400240024002400240024002400240200241206a41104184a1c100410041001001417f460d00200242103702042002200241206a360200200241106a2002103020022802102203450d02200228021421040240200320014105746a2205450d00200241186a280200220620014d0d0020002005460d0220052000412010f701450d020b02402004450d00200310140b200241306a240041d2cfc0000f0b200241306a240041d2cfc0000f0b20032006417f6a22064105746a220529000021072005290008210820052900102109200320014105746a220141186a200541186a29000037000020012009370010200120083700082001200737000020022006360228200220043602242002200336022020024112360214200241dccdc000360210200241206a200241106a107302402004450d00200310140b411c10122201450d01200141186a41002800a3ce40360000200141106a410029009bce40370000200141086a4100290093ce403700002001410029008bce403700002001411c413c10132201450d022001200029000037001c200141346a200041186a2900003700002001412c6a200041106a290000370000200141246a200041086a290000370000200241106a41086a22034200370300200242003703102001413c200241106a1000200241206a41086a200329030037030020022002290310370320200241206a4110100320011014411210122201450d03200141106a41002f00fccc403b0000200141086a41002900f4cc40370000200141002900eccc4037000020014112413210132201450d04200120002900003700122001412a6a200041186a290000370000200141226a200041106a2900003700002001411a6a200041086a290000370000200241106a41086a220342003703002002420037031020014132200241106a1000200241206a41086a2204200329030037030020022002290310370320200241206a4110100320011014200342003703002002420037031041dd81c000410d200241106a1000200420032903003703002002200229031037032042002107024002400240200241206a41104184a1c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d01200229031021070b200241106a41086a220142003703002002420037031041bbcfc0004117200241106a1000200241206a41086a20012903003703002002200229031037032002400240200241206a41104184a1c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d0320022903102108410f2103410f10122201450d010c090b42e8072108410f2103410f101222010d080b200341011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411c41011016000b413c41011016000b411241011016000b413241011016000b200141076a41002900e9c140370000200141002900e2c140370000024020012003412f10132201450d002001200029000037000f200141276a200041186a2900003700002001411f6a200041106a290000370000200141176a200041086a2900003700002002200820077c370300200241106a41086a22004200370300200242003703102001412f200241106a1000200241206a41086a200029030037030020022002290310370320200241206a411020024108100220011014200241306a240041000f0b412f41011016000bb20703067f027e027f230041106b2203240020032001360208200341086a2002101c0240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101322070d020c090b200228020021070c020b200110122207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101322070d020c0a0b200228020021070c020b200110122207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101c02402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101322080d020c090b200228020021080c020b200710122208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101322080d020c0a0b200228020021080c020b200710122208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011016000b200741011016000b200141011016000b200141011016000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610132205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010132205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101322050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101322080d0a0c110b2006101222050d130b200641011016000b200128020021050c050b200128020021080c070b2000101222050d0d0b200041011016000b200010122205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510122208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101322060d020c060b200128020021060c020b200910122206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011016000b41fcb3c2001018000b20022002360240200241a091c100360244200241c8006a41146a4100360200200241286a41146a4104360200200241346a4105360200200241106a41146a410336020020024184a1c1003602582002420137024c200241e4b3c2003602482002410536022c20024203370214200241f8bbc2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a4194b4c200102c000b200041011016000b200541011016000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000bda0201027f230041306b22022400024002400240411c10122203450d00200341186a41002800f7cf40360000200341106a41002900efcf40370000200341086a41002900e7cf40370000200341002900dfcf403700002003411c413c10132203450d012003200129000037001c200341346a200141186a2900003700002003412c6a200141106a290000370000200341246a200141086a290000370000200241206a41086a22014200370300200242003703202003413c200241206a1000200241086a20012903003703002002200229032037030002400240200241104184a1c100410041001001417f460d002002421037021420022002360210200241206a200241106a103020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b20031014200241306a24000f0b411c41011016000b413c41011016000b41b185c00041331015000ba10201027f024020002802004102470d000240024002400240024002400240200028020422012d0000220241084b0d0020020e09060106060602030405060b200141086a2d00004102470d05200141106a280200450d052001410c6a28020010140c050b200141086a10340c040b200141086a2d0000410c490d03200141106a280200450d032001410c6a28020010140c030b200141046a107b0c020b200141086a2d00004102470d010240200141106a280200450d002001410c6a28020010140b02402001411c6a280200450d00200141186a28020010140b200141286a280200450d01200141246a28020010140c010b200141086a2d00004104470d00200141d0006a280200450d00200141cc006a28020010140b200041046a28020010140b0bf05907057f027e067f027e027f017e017f230041c0056b22022400200241003a00900420024190046a2001280200220320012802042204410047220510f5011a02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d009004220441094b0d09024020040e0a00070405020809060b03000b200241003a00900420024190046a20052006410047220410f5011a20062004490d6a200141046a200620046b3602002001200520046a3602002006450d9e0120022d009004450d0d0c9e010b2000410a3a0000200241c0056a24000f0b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22053602002006450d094105210420022d0090042206450d1120064101460d1020064102470d12200241003a00900420024190046a20052003410047220610f5011a20032006490d73200141046a200320066b3602002001200520066a3602002003450d1220022d00900421014200210742002108410421040c150b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22053602002006450d094106210420022d009004220641034b0d9601024020060e04001a1819000b20024190046a2001107d2002280290042201450d96012002290294042107410221040c98010b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b3602002001200520046a3602002000410a3a0000200241c0056a24000f0b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b3602002001200520046a3602002006450d0a20022d00900422044101460d0920040d0a20024190046a2001107e200241e8046a41086a220420024199046a290000370300200241e8046a41106a2206200241a1046a290000370300200241e8046a41186a2203200241a9046a290000370300200241e8046a411f6a2209200241b0046a28000036000020022002290091043703e80420022d00900422054102460d0a200241b8036a411f6a2009280000360000200241b8036a41186a2003290300370300200241b8036a41106a2006290300370300200241b8036a41086a2004290300370300200220022903e8043703b803200241c8006a2001107f2002290348a7450d34200241c8006a41106a290300210720022903502108200241d0026a411f6a200241b8036a411f6a280000360000200241d0026a41186a200241b8036a41186a290300370300200241d0026a41106a200241b8036a41106a290300370300200241d0026a41086a200241b8036a41086a290300370300200220022903b8033703d002410221040c350b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22043602002006450d5720022d0090042205450d1320054101460d1220054102470d5720024100360290044104210920024190046a200420034104200341044922061b220510f5011a200141046a200320056b3602002001200420056a36020020060d572002280290042103200220022f01e8043b0190040c91010b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b22033602002001200520046a22043602002006450d5f20022d009004220641054b0d5f41032109024020060e060097011b1c1a1d000b200241186a200110402002280218450d5f200228021c2204417f4c0d88012004450d5020041080012205450d7720052001280200200141046a22032802002206200420062004491b220610f5011a200328020022092006490d782003200920066b3602002001200128020020066a36020020062004470d510c95010b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b220a3602002001200520046a220b3602002006450d2b20022d009004220c410a4b0d2b410221040240200c0e0b31002425222728262b2329310b200241a0016a2001104020022802a001450d2b20022802a40122054108762103410321040c2d0b200241003a00900420024190046a20052006410047220410f5011a20062004490d69200141046a200620046b3602002001200520046a3602002006450d0820022d0090042204450d0720044101470d0820024190046a2001107e200241e8046a41086a2206200241b0046a2802003602002002200241a8046a2903003703e80420022d00900422014102460d0820022f00910420022d0093044110747221042002419c046a2902002107200241a4046a28020021052002290294042108200241b8036a41086a22032006280200360200200220022903e8043703b803200241d0026a41086a2003280200360200200220022903b8033703d002410321060c160b2000410a3a0000200241c0056a24000f0b200241003a00900420024190046a20052006410047220410f5011a20062004490d68200141046a200620046b22033602002001200520046a220d3602002006450d444110210420022d009004220e41104b0d440240200e0e1100383a353c3f3b43374134363d3381013932000b2002420037039804200242003703900420024190046a200d2003411020034110491b220410f5011a200141046a200320046b3602002001200d20046a3602002003410f4d0d4420024198046a290300210f2002290390042110410221040c410b42002107410521040c090b410621040c8c010b200241086a20011081012002290308a7450d900120022903102107200041003a0000200041106a2007370300200041086a4202370300200241c0056a24000f0b20024190046a2001107e200241e8046a41086a220420024199046a290000370300200241e8046a41106a2206200241a1046a290000370300200241e8046a41186a2203200241a9046a290000370300200241e8046a411f6a2209200241b0046a28000036000020022002290091043703e80420022d00900422054102470d0e0b20024190046a411f6a200241d0026a411f6a28000036000020024190046a41186a200241d0026a41186a29030037030020024190046a41106a200241d0026a41106a29030037030020024190046a41086a200241d0026a41086a290300370300200220022903d002370390040c88010b20024190046a2001107c20022d0090042104200241e8046a20024190046a41017241d70010f5011a2004410a470d0d0b20024190046a41086a200241d0026a41086a280200360200200220022903d002370390042000410a3a0000200241c0056a24000f0b20024190016a2001108101410341052002280290011b210442002107200229039801210f420021080c030b20024190046a20034120200341204922091b22066a41004100412020066b2006411f4b1b10f4011a20024190046a2005200610f5011a200141046a200320066b3602002001200520066a36020020090d00200241a4036a41046a220420024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d00900421012002280093042105200229009704210f20022800a7042106200229009f0421082002419c036a41046a220320042d00003a0000200220022f01aa0322043b01a203200220022802a40336029c03200241e8046a41046a20032d00003a0000200220043b01d0022002200228029c033602e80442002107410221040c030b420021070b420021080b0b20024190046a41086a2203200241e8046a41086a280200360200200220022f01d0023b01ac03200220022902e80437039004024020044105470d002000410a3a0000200241c0056a24000f0b200241b8036a41086a22092003280200360200200220022f01ac033b01a80220022002290390043703b803200041186a2008370000200041106a2007200f84370000200041096a20013a0000200041086a20043a0000200041043a0000200041206a20063600002000410c6a20053600002000410a6a20022f01a8023b0000200041246a20022903b8033700002000412c6a2009280200360000200241c0056a24000f0b200241003602900420024190046a200420034104200341044922091b220510f5011a200141046a200320056b22063602002001200420056a220436020020090d442002280290042103200241003a00900420024190046a20042006410047220510f5011a20062005490d63200141046a200620056b3602002001200420056a3602002006450d4420022d009004220141044f0d44410321090c7d0b2002420037039804200242003703900420024190046a20042003411020034110491b220510f5011a200141046a200320056b3602002001200420056a3602002003410f4d0d4320024198046a2903002108200229039004210720024198026a20011040200228029802450d43200228029c022204417f4c0d752004450d4120041080012203450d6b20032001280200200141046a22062802002205200420052004491b220510f5011a200628020022092005490d6c2006200920056b3602002001200128020020056a36020020052004470d420c740b4100210920024190046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f4011a20024190046a2005200610f5011a200141046a200320066b3602002001200520066a3602002003411f4d0d0a200241a4036a41046a220320024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d009004210520022800930421012002290097042107200229009f04210820022800a7042106200241d0026a41046a20032d00003a0000200220022f01aa033b01b603200220022802a4033602d002410121090c0b0b200242003703900420024190046a20052003410820034108491b220610f5011a200141046a200320066b3602002001200520066a360200200341074d0d7d2002290390042107410521040c7e0b4100210920024190046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f4011a20024190046a2005200610f5011a200141046a200320066b3602002001200520066a3602002003411f4d0d0a200241a4036a41046a220320024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d009004210520022800930421012002290097042107200229009f04210820022800a7042106200241d0026a41046a20032d00003a0000200220022f01aa033b01a802200220022802a4033602d002410121090c0b0b200241b8036a411f6a2009280000360000200241b8036a41186a2003290300370300200241b8036a41106a2006290300370300200241b8036a41086a2004290300370300200220022903e8043703b803200241f8006a2001107f410421042002290378a7450d06200241f8006a41106a29030021072002290380012108200241e0006a2001107f2002290360a7450d06200241e0006a41106a290300210f20022903682110200241d0026a411f6a200241b8036a411f6a280000360000200241d0026a41186a200241b8036a41186a290300370300200241d0026a41106a200241b8036a41106a290300370300200241d0026a41086a200241b8036a41086a290300370300200220022903b8033703d002410321040c1d0b200241b8036a200241e8046a41d70010f5011a41d80010122201450d5c200120043a0000200141016a200241b8036a41d70010f5011a20014108762104410221060b20024190046a41086a200241d0026a41086a2802002203360200200241a8026a41086a22092003360200200220022903d002220f3703a8022002200f37039004200041146a20073700002000410c6a20083700002000411c6a2005360000200041086a2004410874200141ff017172360000200041046a2006360000200041063a0000200041206a20022903a802370000200041286a2009280200360000200241c0056a24000f0b200241286a200110402002280228450d45200228022c2204417f4c0d6e2004450d3220041080012205450d5f20052001280200200141046a22032802002206200420062004491b220610f5011a200328020022092006490d602003200920066b3602002001200128020020066a36020020062004470d330c6c0b200241206a200110402002280220450d4420022802242204417f4c0d6d2004450d3320041080012205450d6020052001280200200141046a22032802002206200420062004491b220610f5011a200328020022092006490d612003200920066b3602002001200128020020066a36020020062004470d340c6a0b200242003703900420024190046a20042003410820034108491b220510f5011a200141046a200320056b3602002001200420056a360200200341074d0d432002290390042107410521090c7a0b200241c0006a200110402002280240450d4220022802442211ad42187e2207422088a70d6b2007a72204417f4c0d6b2004450d352004101222050d36200441041016000b0c160b0b2002419c036a41046a2203200241d0026a41046a2d00003a0000200220022f01b6033b01a203200220022802d00236029c032009450d72200241a8026a41046a220420032d00003a0000200220022f01a20322033b01b4032002200228029c033602a802200241e8046a41046a20042d00003a0000200220033b019403200220022802a8023602e804410421040c740b0b2002419c036a41046a2203200241d0026a41046a2d00003a0000200220022f01a8023b01a203200220022802d00236029c032009450d70200241ac036a41046a220420032d00003a0000200220022f01a20322033b01b2032002200228029c033602ac03200241e8046a41046a20042d00003a0000200220033b019403200220022802ac033602e804410321040c720b200241d0016a20011040410d210420022802d001450d0a20022802d4012105200241c8016a2001104020022802c801450d0a20022802cc012106200241b0016a2001107f20022903b001a7450d0a200241c0016a290300210720022903b801210820054108762103410621040c0d0b20024180026a20011040200228028002450d0820022802840222054108762103410b21040c0a0b20024190046a2001107e200241e8046a41086a2201200241b0046a2802003602002002200241a8046a2903003703e80420022d00900422054102460d0720022f00910420022d0093044110747221032002419c046a2902002107200241a4046a28020021062002290294042108200241b8036a41086a22042001280200360200200220022903e8043703b803200241d0026a41086a2004280200360200200220022903b8033703d002410421040c0b0b200241a8016a2001104020022802a801450d0620022802ac0122054108762103410521040c080b200241f8016a2001104020022802f801450d0520022802fc0122054108762103410921040c070b200241d8016a20011081014107410d20022802d8011b210420022903e00121080c020b200241e8016a20011081014108410d20022802e8011b210420022903f00121080c010b20024190046a2001107d2002280290042205450d02200541087621032002290294042108410c21040b0c040b200241003a00900420024190046a200b200a410047220410f5011a200a2004490d4a200141046a200a20046b3602002001200b20046a360200200a450d0020022d0090042109410a21040c050b410d21040b0b0b0b0b20024190046a41086a2201200241d0026a41086a280200360200200220022f01a4033b01ac03200220022903d0023703900402402004410d470d002000410a3a0000200241c0056a24000f0b200241a8026a41086a220a2001280200360200200220022f01ac033b019c0320022002290390043703a802200041186a2007370000200041106a2008370000200041096a20093a0000200041086a20043a0000200041053a0000200041206a20063600002000410c6a2003410874200541ff0171723600002000410a6a20022f019c033b0000200041246a20022903a8023700002000412c6a200a280200360000200241c0056a24000f0b410421040b0b20024190046a411f6a2201200241d0026a411f6a28000036000020024190046a41186a2206200241d0026a41186a29030037030020024190046a41106a2203200241d0026a41106a29030037030020024190046a41086a2209200241d0026a41086a290300370300200220022903d0023703900420044104460d5c200241a8026a411f6a220a2001280000360000200241a8026a41186a22012006290300370300200241a8026a41106a22062003290300370300200241a8026a41086a2203200929030037030020022002290390043703a802200041c8006a200f370000200041c0006a2010370000200041386a2007370000200041306a20083700002000410c6a20053a0000200041086a2004360000200041033a00002000410d6a20022903a802370000200041156a20032903003700002000411d6a2006290300370000200041256a20012903003700002000412c6a200a280000360000200241c0056a24000f0b200241003a00900420024190046a200d2003410047220410f5011a20032004490d47200141046a200320046b3602002001200d20046a3602002003450d1220022d0090042112411221040c4e0b2002420037039804200242003703900420024190046a200d2003411020034110491b220410f5011a200141046a200320046b3602002001200d20046a360200410f21042003410f4d0d1120024198046a290300210f20022903900421100c0e0b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d102002290390042110410c21040c0f0b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d0f2002290390042110410521040c0e0b200241003602900420024190046a200d20034104200341044922051b220410f5011a200141046a200320046b3602002001200d20046a36020020050d0e200228029004210b410d21040c070b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d0d2002290390042110410a21040c0c0b4100210920024190046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f4011a20024190046a200d200410f5011a200141046a200320046b22053602002001200d20046a22043602002003411f4d0d1b200241a4036a41046a220320024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d0090042112200228009304210b2002290097042110200229009f04210f20022800a7042106200241e8046a41046a20032d00003a0000200220022f01aa033b01d002200220022802a4033602e804410121090c1c0b411121040c0c0b4100210920024190046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f4011a20024190046a200d200410f5011a200141046a200320046b22053602002001200d20046a220a3602002003411f4d0d1b200241a4036a41046a220420024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d0090042112200228009304210b2002290097042110200229009f04210f20022800a7042106200241d0026a41046a20042d00003a0000200220022f01aa033b01a802200220022802a4033602d002410121090c1c0b20024200370390044108210420024190046a200d2003410820034108491b220510f5011a200141046a200320056b3602002001200d20056a360200200341074b0d040c090b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d082002290390042110410621040c070b200241003602900420024190046a200d20034104200341044922051b220410f5011a200141046a200320046b3602002001200d20046a36020020050d07200228029004210b410e21040b0c090b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a36020041072104200341074d0d050b20022903900421100c030b2002420037039804200242003703900420024190046a200d2003411020034110491b220410f5011a200141046a200320046b3602002001200d20046a3602002003410f4d0d0320024198046a290300210f2002290390042110410b21040b0c040b200242003703900420024190046a200d2003410820034108491b220410f5011a200141046a200320046b3602002001200d20046a360200200341074d0d012002290390042110410921040b0c020b411321040b0b0b0c380b4101210541002004460d390b20040d100c110b4101210541002004460d360b20040d0e0c0f0b4101210541002004460d440b20040d0c0c0d0b410421050b024002402011450d00420021074100210c41002104410021092011210d0340200241386a200110402002280238450d0c200228023c2203417f4c0d37024002402003450d002003108001220b450d23200b2001280200200141046a220a2802002206200320062003491b220610f5011a200a28020022122006490d24200a201220066b3602002001200128020020066a36020020062003460d010c0d0b4101210b41002003470d0c0b200241306a200110402002280230450d0b20022802342206417f4c0d37024002402006450d0020061080012212450d2120122001280200200141046a220e280200220a2006200a2006491b220a10f5011a200e2802002214200a490d22200e2014200a6b36020020012001280200200a6a360200200a2006460d010c0c0b4101211241002006470d0b0b200941016a210a02402009200d470d00200c200a200a200c491b220dad42187e2208422088a70d1d2008a7220e4100480d1d02402009450d0020052004200e101322050d010c200b200e10122205450d1f0b200520046a2209200b360200200941146a2006360200200941106a20063602002009410c6a2012360200200941046a2003ad220842208620088437020020074280808080107c2107200c41026a210c200441186a2104200a2109200a2011490d000c020b0b4100210d420021070b2005450d0b2007200dad842107410721090c420b4101210341002004460d320b2004450d00200310140b200220022f01e8043b0190040c370b420021104200210f0b2002419c036a41046a2203200241e8046a41046a2d00003a0000200220022f01d0023b01a203200220022802e80436029c03024002402009450d00200241b8036a41046a20032d00003a0000200220022f01a2033b01a8022002200228029c033602b8032002420037039804200242003703900420024190046a20042005411020054110491b220310f5011a200141046a200520036b3602002001200420036a3602002005410f4d0d0020024198046a2903002108200229039004210720024194036a41046a200241b8036a41046a2d00003a0000200220022f01a8023b019a03200220022802b80336029403410321040c010b411321040b0c2b0b420021104200210f0b2002419c036a41046a2204200241d0026a41046a2d00003a0000200220022f01a8023b01a203200220022802d00236029c0302402009450d00200241ac036a41046a20042d00003a0000200220022f01a2033b01b2032002200228029c033602ac0320024190046a2005412020054120491b22046a41004100412020046b2004411f4b1b10f4011a20024190046a200a200410f5011a200141046a200520046b3602002001200a20046a3602002005411f4d0d00200241a4036a41046a220420024190046a411f6a2d00003a0000200220022f0091043b01aa03200220022800ab043602a40320022d009004210a200228009304210c2002290097042107200229009f04210820022800a7042109200241d0026a41046a220520042d00003a0000200220022f01aa0322043b01b603200220022802a4033602d002200241a8026a41046a20052d00003a0000200220043b01b403200220022802d0023602a802200241a0026a200110404113210420022802a002450d2820022802a4022203417f4c0d2e2003450d0620031080012205450d2620052001280200200141046a220e280200220d2003200d2003491b220d10f5011a200e2802002211200d490d27200e2011200d6b36020020012001280200200d6a360200200d2003470d070c290b411321040c270b2006450d00201210140b2003450d00200b10140b02402009450d002005210103400240200141046a280200450d00200128020010140b0240200141106a280200450d002001410c6a28020010140b200141186a2101200441686a22040d000b0b200d450d010b200510140b2000410a3a0000200241c0056a24000f0b4101210541002003460d220b2003450d20200510140c200b20052004103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b20042006103a000b1010000b20062003103a000b200e41041016000b200641011016000b200a2014103a000b200341011016000b20062012103a000b41d80041081016000b20052006103a000b2004200a103a000b200441011016000b20062009103a000b200441011016000b20062009103a000b200441011016000b20062009103a000b20042003103a000b200441011016000b20052009103a000b200341011016000b200d2011103a000b0c010b4104210420024194036a41046a200241ac036a41046a2d00003a00002002418c036a41046a200241a8026a41046a2d00003a0000200220022f01b2033b019a03200220022802ac0336029403200220022f01b4033b019203200220022802a80236028c032003ad221342208620138421130b20024190046a41046a220120024194036a41046a2d00003a0000200241e8046a41046a22032002418c036a41046a2d00003a0000200241b8036a41026a220d20024189036a41026a2d00003a0000200220022f019a033b01d002200220022802940336029004200220022f0192033b01a8022002200228028c033602e804200220022f0089033b01b803024020044113470d002000410a3a0000200241c0056a24000f0b20024180036a41046a220e20012d00003a0000200241f8026a41046a220120032d00003a0000200241f4026a41026a2203200d2d00003a0000200220022f01d0023b018603200220022802900436028003200220022f01a8023b01fe02200220022802e8043602f802200220022f01b8033b01f402200041186a200f370000200041106a2010370000200041386a2008370000200041306a2007370000200041096a20123a0000200041086a20043a0000200041083a0000200041206a20063600002000410c6a200b360000200041296a200a3a0000200041c0006a20093600002000412c6a200c3600002000410a6a20022f0186033b0000200041246a200228028003360000200041286a200e2d00003a00002000412a6a20022f01fe023b0000200041d0006a2013370000200041cc006a2005360000200041c8006a20012d00003a0000200041c4006a20022802f802360000200041c9006a20022f01f4023b0000200041cb006a20032d00003a0000200241c0056a24000f0b2004ad22074220862007842107410421090c100b2004ad22074220862007842107410621090c0f0b20024190026a200110400240200228029002450d002002280294022205417f4c0d010240024002402005450d0020051080012206450d0520062001280200200141046a220a2802002209200520092005491b220910f5011a200a280200220c2009490d06200a200c20096b3602002001200128020020096a36020020092005460d010c020b4101210641002005470d010b20024188026a20011040200228028802450d00200228028c022209417f4c0d02024002402009450d002009108001220a450d07200a2001280200200141046a220b280200220c2009200c2009491b220c10f5011a200b2802002212200c490d08200b2012200c6b36020020012001280200200c6a360200200c2009470d010c090b4101210a41002009460d080b2009450d00200a10140b2005450d00200610140b02402004450d00200310140b200220022f01e8043b0190040c060b100f000b200541011016000b2009200c103a000b200941011016000b200c2012103a000b2009ad220f422086200f84210f410221090c010b2000410a3a0000200241c0056a24000f0b200220022f01e8043b0190040b200220022f0190043b01b803200041386a2008370000200041306a2007370000200041096a20013a0000200041086a20093a0000200041073a0000200041286a200f370000200041246a200a360000200041206a20053600002000411c6a2005360000200041186a2006360000200041146a2004360000200041106a20043600002000410c6a20033600002000410a6a20022f01b8033b0000200241c0056a24000f0b2000410a3a0000200241c0056a24000f0b0b0b20024190046a41086a2203200241e8046a41086a280200360200200220022f0194033b01ac03200220022902e80437039004024020044106470d002000410a3a0000200241c0056a24000f0b200241b8036a41086a22092003280200360200200220022f01ac033b018c0320022002290390043703b803200041186a2008370000200041106a2007370000200041096a20053a0000200041086a20043a0000200041093a0000200041206a20063600002000410c6a20013600002000410a6a20022f018c033b0000200041246a20022903b8033700002000412c6a2009280200360000200241c0056a24000f0b2004ad22074220862007842107410221090b200041013a0000200041106a20073700002000410c6a2005360000200041086a2009360000200241c0056a24000f0b2000410a3a0000200241c0056a24000bd60403027f017e0e7f230041d0006b22022400200241086a2001104002400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011016000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110f5011a200a200520116b3602002001200f20116a36020020100d02200d41016a2105200241106a41186a22112007290300370300200241106a41106a220f2008290300370300200241106a41086a22102009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101322060d010c060b201210122206450d050b2006200c6a220d2002290310370000200d41186a2011290300370000200d41106a200f290300370000200d41086a2010290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d00200610140b200241d0006a24000f0b1010000b201241011016000b8f0801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510f5011a0240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441f0014f0d01410121010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410f5011a200141046a200620046b3602002001200520046a36020041012101200641014d0d0441ef01210420022f015041ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410f5011a200141046a200620046b3602002001200520046a360200200641034d0d0441ffff03210441012101200228025041ffff034b0d08200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10f4011a200241d0006a2005200410f5011a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c020b200041023a0000200241f0006a24000f0b20052004103a000b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bce0603067f037e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510f5011a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d002022034103712204450d00024020044101460d0020044102470d02200241003a001e200241003b011c2002411c6a200520064103200641034922071b220410f5011a200141046a200620046b3602002001200520046a36020020070d0320022f011c20022d001e41107472410874200372410276ad21080c080b200241003a0020200241206a20052006410047220410f5011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21080c070b2003410276ad21080c060b0240024020034102762204450d00024020044104460d002004410c470d024200210a2002420037032820024200370320200241206a200520064110200641104922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d04200241286a2903002109200229032021084201210a0c090b4200210a20024200370320200241206a200520064108200641084922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d03200229032021080c070b20024100360220200241206a200520064104200641044922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d01200235022021080c060b200441046a220b41104b0d00200141046a210c200241106a210d4200210842002109410021030340200241003a0020200241206a20052006410047220410f5011a20062004490d04200c200620046b22073602002001200520046a22053602002006450d01200241086a20023100204200200341037441f8007110fa01200d2903002009842109200229030820088421084201210a20072106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004103a000b20042006103a000b20042006103a000b420021094201210a0b200020083703082000200a370300200041106a2009370300200241306a24000b0700200010ed010bc00503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510f5011a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000822044103712203450d002004ad2107024020034101460d0020034102470d02200241003a0006200241003b0104200241046a200520064103200641034922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d0320023301042002310006421086844208862007844202882107420121080c050b200241003a0008200241086a20052006410047220410f5011a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b2004410276ad2107420121080c030b0240024020044102762204450d0020044104470d014200210820024200370308200241086a200520064108200641084922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d0320022903082107420121080c040b20024100360208200241086a200520064104200641044922031b220410f5011a200141046a200620046b3602002001200520046a36020020030d0120023502082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410f5011a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004103a000b20042006103a000b20042006103a000bc29a0104047f017e067f017e230041106b220224000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022030d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00000240200041086a29030022064202520d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041106a2001108301200041086a29030021060b2006a722034101460d012003450d0220002d000021030b200341ff01714101470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41cccbc1001018000b41cccbc1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41003a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41023a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a28020021030b024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41043a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a200041086a28020021030b024020034107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22044100480d232003450d0120012802002003200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101c02402005450d002003200541186c6a2109200141046a210803402003280200210a2002200341086a280200220536020c2002410c6a2001101c02400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071013220b0d020c080b2001280200210b0c020b20071012220b450d060b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510f5011a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101c02400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071013220b0d020c090b2001280200210b0c020b20071012220b450d070b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510f5011a200341186a22032009470d000b0b200041086a28020021030b20034101460d032003450d0420002d000021030b0240200341ff017122044103460d0020044102470d07200110840141b4cbc1001018000b024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1f20034101742205200420042005491b22054100480d1f2003450d0120012802002003200510132204450d020c070b200128020021040c070b2005101222040d050b200541011016000b200741011016000b200741011016000b41d4c4c1001018000b41d4c4c1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a20011085012002200041306a36020c2002410c6a20011079200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a20011085012002200041306a36020c2002410c6a200110792002200041c0006a36020c2002410c6a20011079200041086a28020021030b2003450d0120034101460d0220002d000021030b200341ff01714104470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41fce1c1001018000b41fce1c1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041106a2001108301200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b200341ff017122034101460d012003450d0220002d000021030b200341ff01714105470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41c8a6c2001018000b41c8a6c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a2001101c200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002000410c6a2001108501200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00002000410c6a2001101c200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41043a00002000410c6a2001101c200041206a2001101c2002200041106a36020c2002410c6a20011079200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200041106a2001108301200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200041106a2001108301200041086a2d000021030b0240200341ff01714109470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00002000410c6a2001101c200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41093a00002000410c6a2001101c200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101c02402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1320074101742204200a200a2004491b22044100480d132007450d01200128020020072004101322070d020c080b200128020021070c020b200410122207450d060b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff017122034101460d022003450d0320002d000021030b200341ff01714106470d05024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0e20034101742205200420042005491b22054100480d0e2003450d0120012802002003200510132204450d020c060b200128020021040c060b2005101222040d040b200541011016000b200441011016000b418092c2001018000b418092c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240200041046a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2802002001108201200041046a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a2001108501200041046a28020021030b20034101460d012003450d0220002d000021030b200341ff01714107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41b0a6c2001018000b41b0a6c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00000240200041086a2d0000220341077141044b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024020030e050c0d0001020c0b200141046a280200200141086a2802002203470d04200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0920012802002003200510132204450d0a0c110b200141046a280200200141086a2802002203470d01200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d0420012802002003200510132204450d050c0e0b200141046a280200200141086a2802002203470d01200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0520012802002003200510132204450d060c0b0b200128020021040c0d0b200128020021040c0a0b200128020021040c0d0b2005101222040d090b200541011016000b2005101222040d050b200541011016000b2005101222040d070b200541011016000b41c895c2001018000b41c895c2001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c040b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a20073600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0b20012802002003200510132204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0620012802002003200510132204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0720012802002003200510132204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0a20012802002003200510132204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101222040d0b0b200541011016000b2005101222040d070b200541011016000b2005101222040d090b200541011016000b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00000c080b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00000c060b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00000c040b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00000c020b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002106200041306a290300210d02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a220320063700082003200d3700002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310f5011a200041186a28020021082002200041206a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310f5011a200041246a280200210820022000412c6a280200220336020c2002410c6a2001101c02400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410132205450d020c030b200128020021050c030b2004101222050d010b200441011016000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310f5011a0b20002d000021030b200341ff01714108470d0402400240024002400240200141046a2205280200200141086a22032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a00000240200041086a2d000022044102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041386a2903002106200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714104470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41023a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a290000370000200420072900003700000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b200141086a220b200441206a360200200720046a220441186a200041296a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210a2002200041d4006a280200220436020c2002410c6a2001101c02400240024002400240200141046a2802002208200b28020022076b20044f0d00200720046a220b2007490d0620084101742207200b200b2007491b22074100480d062008450d0120012802002008200710132208450d020c030b200128020021080c030b2007101222080d010b200741011016000b20012008360200200141046a2007360200200141086a28020021070b2003200720046a360200200820076a200a200410f5011a200041086a2d000021040b200441ff01714105470d0302400240024002400240200528020020032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a290300210602400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0320074101742204200820082004491b22044100480d032007450d0120012802002007200410132207450d020c040b200128020021070c040b2004101222070d020b200441011016000b1010000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d0b20074101742204200b200b2004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d0b20074101742204200b200b2004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0b20074101742204200820082004491b22044100480d0b2007450d0120012802002007200410132207450d020c030b200128020021070c030b2004101222070d010b200441011016000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410e3a0000200041086a2d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410f3a0000200041086a2d000021040b0240200441ff01714112470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0b20044101742208200720072008491b22084100480d0b2004450d0120012802002004200810132207450d020c030b200128020021070c030b2008101222070d010b200841011016000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d0b20044101742207200520052007491b22074100480d0b2004450d0120012802002004200710132205450d020c030b200128020021050c030b2007101222050d010b200741011016000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200041096a2d00003a0000200041086a2d000021040b200441ff017122034101460d012003450d0220002d000021030b200341ff01714109470d08024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510132204450d020c050b200128020021040c050b2005101222040d030b200541011016000b41d0f0c1001018000b41d0f0c1001018000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0a20034101742205200420042005491b22054100480d0a2003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101c02402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d0b20074101742204200a200a2004491b22044100480d0b2007450d01200128020020072004101322070d020c070b200128020021070c020b200410122207450d050b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff01714103470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510132204450d020c040b200128020021040c040b2005101222040d020b200541011016000b200441011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0620044101742203200520052003491b22034100480d062004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0620034101742205200420042005491b22054100480d062003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0620044101742203200520052003491b22034100480d062004450d0120012802002004200310132204450d020c030b200128020021040c030b2003101222040d010b200341011016000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b200341ff01714105470d0302400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510132204450d020c030b200128020021040c030b2005101222040d010b200541011016000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a2903002106024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310132204450d020c040b200128020021040c040b2003101222040d020b200341011016000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a2d000021030b200341077122014101460d012001450d020b200241106a24000f0b41d0b6c2001018000b41d0b6c2001018000bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510132204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010132204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101322040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101322070d0a0c110b2005101222040d130b200541011016000b200128020021040c050b200128020021070c070b2000101222040d0d0b200041011016000b200010122204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410122207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101322050d020c060b200128020021050c020b200810122205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011016000b41ccb3c2001018000b2002200241086a360240200241a090c100360244200241c8006a41146a4100360200200241286a41146a4104360200200241346a4106360200200241106a41146a410336020020024184a1c1003602582002420137024c200241e4b3c2003602482002410636022c20024203370214200241f8bbc2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41ecb3c200102c000b200041011016000b200441011016000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000bb10101037f024002400240024002400240200041046a280200200041086a2802002201470d00200141016a22022001490d0320014101742203200220022003491b22034100480d032001450d0120002802002001200310132202450d020c040b200028020021020c040b2003101222020d020b200341011016000b1010000b20002002360200200041046a2003360200200041086a28020021010b200041086a200141016a360200200220016a41023a00000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410132203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410132203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101322030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101322030d0a0c0d0b2004101222030d0e0b200441011016000b200128020021030c050b200128020021030c070b2004101222030d0c0b200441011016000b200410122203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410122203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101322030d020c060b200128020021030c020b200010122203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011016000b200441011016000b200041011016000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210132203450d020c030b200128020021030c030b2002101222030d010b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010132203450d020c040b200128020021030c040b2000101222030d020b200041011016000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b900a02067f017e230041e0006b2202240002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0e0c0d0b200241cb006a2001410c6a280000360000200041013a00002002200141046a29000037004320002002290040370001200041086a200241c7006a2900003700002003450d020b20034101460d0c20030d09200141086a280200450d0c200141046a2802001014200241e0006a24000f0b20034103470d0920022001410c6a280200220336021c2002200141046a2802002204360218200241003a0040200241c0006a20042003410047220510f5011a20032005490d022002200320056b220636021c2002200420056a22053602182003450d09024020022d004022034101460d0020030d0a200241003a0040200241c0006a20052006410047220310f5011a20062003490d042002200620036b220436021c2002200520036a220336021802402006450d0020022d0040450d030b410021060c060b200241003a0040200241c0006a20052006410047220310f5011a20062003490d042002200620036b36021c2002200520036a3602182006450d0920022d00400d09200241c0006a200241186a107d20022802402203450d0920022902442108200241146a41026a200241206a41026a2d00003a0000200241086a200241c0006a41086a290200370300200241106a200241c0006a41106a280200360200200220022f00203b011420022002290240370300410121060c070b41000d090c0a0b41002106200241c0006a20044120200441204922071b22056a41004100412020056b2005411f4b1b10f4011a200241c0006a2003200510f5011a2002200420056b36021c2002200320056a36021820070d03200241386a41026a200241c0006a41026a2d00003a0000200241286a200241d7006a290000370300200241306a200241c0006a411f6a2d00003a0000200220022f00403b01382002200229004f3703202002280043210320022900472108410121060c040b20052003103a000b20032006103a000b20032006103a000b0b2002413c6a41026a2205200241386a41026a2d00003a0000200241c0006a41086a2204200241206a41086a290300370300200241c0006a41106a2207200241206a41106a2d00003a0000200220022f01383b013c200220022903203703402006450d02200241146a41026a20052d00003a0000200241086a2004290300370300200241106a20072d00003a0000200220022f013c3b011420022002290340370300200241136a200241c0006a41026a2d00003a0000200220022f00403b0011410021060b200241206a41026a2205200241146a41026a2d00003a0000200241c0006a41086a2204200241086a290300370300200241c0006a41106a2207200241106a280200360200200220022f01143b012020022002290300370340200020063a0000200041086a2008370000200041046a2003360000200020022f01203b0001200041036a20052d00003a0000200041106a2002290340370000200041186a2004290300370000200041206a20072802003600000b200141086a280200450d02200141046a28020010140c020b41fdaec000411e1015000b200141086a280200450d00200141046a2802001014200241e0006a24000f0b200241e0006a24000bca0203027f017e017f230041206b22022400024002400240024002400240024002400240200028020022034101460d0020034102470d01410110122203450d03200341023a00002000290308210420034101410910132200450d04200020043700010c020b410110122203450d04200341013a00002000290308210420034101410910132200450d05200020043700010c010b410110122203450d05200341003a00002000290308210420034101410910132200450d06200020043700010b2001280204210320012802002101200241106a41086a220542003703002002420037031020012003200241106a1000200241086a2005290300370300200220022903103703002002411020004109100220001014200241206a24000f0b410141011016000b410941011016000b410141011016000b410941011016000b410141011016000b410941011016000b970302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081001210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d00082203450d0120034101460d0220034102470d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420221050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420021050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000bfe0402047f027e23004190016b22002400200041086a41086a220142003703002000420037030841d5b2c0004115200041086a1000200041f8006a41086a200129030037030020002000290308370378024002400240200041f8006a41104184a1c100410041001001417f460d0020004100360208200041f8006a4110200041086a41044100100141016a41044d0d02200028020841016a21020c010b410121020b2000200236028c01200041086a41086a220142003703002000420037030841d5b2c0004115200041086a1000200041f8006a41086a2203200129030037030020002000290308370378200041f8006a41102000418c016a41041002200142003703002000420037030841eab2c0004120200041086a100020032001290300370300200020002903083703780240024002400240200041f8006a41104184a1c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821040c010b42e40021040b200041086a41086a220142003703002000420037030841dd81c000410d200041086a1000200041f8006a41086a200129030037030020002000290308370378420021050240200041f8006a41104184a1c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821050b2000200520047c370310200042003703082000411536027c200041ddb0c000360278200041086a200041f8006a108701200041146a2002360200200041083a000820014101360200200041086a101a20004190016a24000f0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b13002000411136020420004184e5c1003602000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241143600000f0b410441011016000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011016000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011016000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010122206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010132206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110132206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011016000b41c00041011016000b41800141011016000b6101017f02400240411010122202450d00200242003700082002420037000020024110412010132202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011016000b412041011016000b3101017f0240410110122202450d00200042818080801037020420002002360200200241013a00000f0b410141011016000b13002000410f360204200041f0b5c0003602000b821103077f047e0a7f230041c0026b2202240002400240411510122203450d002003410d6a410029008ab840370000200341086a4100290085b840370000200341002900fdb74037000020034115413510132203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1000200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a41104184a1c100410041001001417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22044200370300200242003703284100210502404100200241b0016a4110200241286a41204100100122012001417f461b2201411f4d0d00200241186a2205200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200429030037030020022002290328370300200241a0026a41186a2005290300370300200241a0026a41106a2006290300370300200241a0026a41086a2007290300370300200220022903003703a002410121050b200241186a2204200241a0026a41186a290300370300200241106a2206200241a0026a41106a290300370300200241086a2207200241a0026a41086a290300370300200220022903a0023703002005450d02200241e0016a41186a2004290300370300200241e0016a41106a2006290300370300200241e0016a41086a2007290300370300200220022903003703e001200241286a41186a4200370300200241286a41106a4200370300200241286a41086a4200370300200242003703284100200241b0016a4110200241286a41202001412020014120491b2205100122012001417f461b2201411f4d0d02200241186a2204200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200241286a41086a22082903003703002002200229032837030020024180026a41186a200429030037030020024180026a41106a200629030037030020024180026a41086a2007290300370300200220022903003703800220024200370330200242003703284100200241b0016a4110200241286a41102001412020014120491b20056a2205100122012001417f461b2201410f4d0d02200829030021092002290328210a20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20056a2205100122012001417f461b2201410f4d0d02200241306a290300210b2002290328210c200241003a0028200241b0016a4110200241286a41012001411020014110491b20056a2201100141016a22054102490d024100210d024020022d00282204450d0020044101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a41202001200541014b6a10012201417f460d0320014120490d03200241a0026a41186a200241286a41186a290300370300200241a0026a41106a200241286a41106a290300370300200241a0026a41086a200241286a41086a290300370300200220022903283703a0024101210d0b200241286a41186a220e200241a0026a41186a220f290300370300200241286a41106a2210200241a0026a41106a2211290300370300200241286a41086a2212200241a0026a41086a2213290300370300200220022903a002370328200f200241e0016a41186a22012903003703002011200241e0016a41106a22052903003703002013200241e0016a41086a2204290300370300200241c0016a41086a221420024180026a41086a2206290300370300200241c0016a41106a221520024180026a41106a2207290300370300200241c0016a41186a221620024180026a41186a2208290300370300200220022903e0013703a00220022002290380023703c001200241cb006a200241036a280000360000200220022800003602482008200f2903003703002007201129030037030020062013290300370300200420142903003703002005201529030037030020012016290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200e2903003703002002411f6a2210200241286a411f6a290000370000200220022903a00237038002200220022903c0013703e00120022002290328370300200e200b370300200241286a41286a2006290300370300200241286a41306a2007290300370300200241286a41386a2008290300370300200241286a41c8006a2004290300370300200241286a41d0006a2005290300370300200241286a41d8006a20012903003703002002200c370338200220093703302002200a3703282002200229038002370348200220022903e001370368200041186a200b3703002000200c370310200020093703082000200a370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a20102900003700002000200229038002370320200041286a2006290300370300200041306a2007290300370300200041386a20082903003703002002200d3a0088012000200d3a0060200041d8006a2001290300370300200041d0006a2005290300370300200041c8006a2004290300370300200020022903e00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010f4011a0b20031014200241c0026a24000f0b41b185c00041331015000b411541011016000b413541011016000b85260b1a7f027e087f067e017f027e017f037e1e7f027e0b7f230041e0006b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b41c200211c4201211d4200211e4100211f0c010b410021000c010b410121000b034002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341306a41086a22004200370300200342003703304198b2c000411b200341306a1000200341086a41086a20002903003703002003200329033037030802400240024002400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a103020032802402234450d03200328024421350240200341c0006a41086a22362802002200450d0020004105742137203421040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411510122200450d032000410d6a410029008ab840370000200041086a4100290085b840370000200041002900fdb74037000020004115413510132200450d04200441206a2104200020032903083700152000412d6a2025290300370000200041256a20262903003700002000411d6a2038290300370000200341306a41086a222542003703002003420037033020004135200341306a10002036202529030037030020032003290330370340200341c0006a4110100320001014203741606a22370d000b0b2035450d00203410140b200341306a41086a22004200370300200342003703304198b2c000411b200341306a1000200341c0006a41086a200029030037030020032003290330370340200341c0006a41101003200042003703002003420037033041feb1c000411a200341306a1000200341086a41086a20002903003703002003200329033037030802400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a103020032802402239450d052003280244213a4105213b200341c8006a28020041057422000d010c0c0b410121394100213a4105213b41004105742200450d0b0b203920006a213c2001280200213d2001280204213e4118213f411021404108214141202137417f21384102214241a80821434106214441987d21454160213441012136203921354101211f0c050b411541011016000b413541011016000b41b185c00041331015000b41b185c00041331015000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a203f6a2035203f6a290000370300200341086a20406a203520406a290000370300200341086a20416a203520416a29000037030020032035290000370308203520376a2135203d2146203e21470c030b200341086a204a6a225a2035204a6a290000370300200341086a204b6a225b2035204b6a290000370300200341086a204c6a225c2035204c6a290000370300200320352900003703082035204d6a2135203d215d203e215e0c030b410121000c0f0b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d0120202004201010f7012226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204620416a210420462f01062224203b7421004100212502400240024003402000450d01200341086a2004203710f7012226450d02200020346a2100202520366a2125200420376a2104202620384a0d000b202520386a21240b2047450d01204720386a2147204620242042746a20436a2802002146410121000c030b204620252044746a2045460d002035203c470d090c100b200341c0006a41186a2200200341086a41186a290300370300200341c0006a41106a2204200341086a41106a290300370300200341c0006a41086a2225200341086a41086a29030037030020032003290308370340412010122248450d0720482003290340370000204841186a2000290300370000204841106a2004290300370000204841086a20252903003700002035203c460d03410121494118214a4110214b4108214c4120214d4105214e417f214f4102215041a80821514205215242202153410021544106215541987d21564160215741012158410121594102211f0c0e0b205d204c6a2104205d2f01062224204e742100410021250240024003402000450d01200341086a2004204d10f7012226450d02200020576a2100202520496a21252004204d6a21042026204f4a0d000b2025204f6a21240b205e450d02205e204f6a215e205d20242050746a20516a280200215d410221000c010b0b205d20252055746a2056460d002035203c470d070c020b200341c0006a204a6a2200205a290300370300200341c0006a204b6a2204205b290300370300200341c0006a204c6a2225205c29030037030020032003290308370340205a2000290300370300205b2004290300370300205c202529030037030020032003290340370308024020592058470d00205820496a22002058490d0320582049742204200020002004491b2259ad2052862227205388a70d032027a722002054480d0302402058450d0020482058204e742000101322480d010c050b200010122248450d040b20482058204e746a220020032903083700002000204a6a205a2903003700002000204b6a205b2903003700002000204c6a205c290300370000205820496a21582035203c470d070c010b41012158410121590b0240203a450d00203910140b204820581095012059450d0b204810140c0b0b1010000b200041011016000b412041011016000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c0e0b410121000c0d0b410121000c0c0b410121000c0b0b0240203a450d00203910140b410141001095010b200341306a41086a220042003703002003420037033041feb1c000411a200341306a1000200341086a41086a2000290300370300200320032903303703080240024002400240024002400240024002400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10302003280240224d450d07200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411f10122200450d04200041176a41002900cbaf40370000200041106a41002900c4af40370000200041086a41002900bcaf40370000200041002900b4af403700002000411f413f10132200450d03200441206a21042000200329030837001f200041376a20252903003700002000412f6a2026290300370000200041276a2038290300370000200341306a41086a22254200370300200342003703302000413f200341306a10002010202529030037030020032003290330370340200341c0006a4110100320001014203741606a22370d000b0b2036450d00204d10140b200341306a41086a222542003703002003420037033041feb1c000411a200341306a1000200341c0006a41086a202529030037030020032003290330370340200341c0006a4110100302402002450d00202542003703002003420037033041f2b0c0004124200341306a1000200341086a41086a20252903003703002003200329033037030841002126024002400240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a103020032802402238450d0c20032802442126200341c8006a28020041057422370d010c020b4101213841004105742237450d010b203821040340412210122200450d07200041206a41002f00d3b2403b0000200041186a41002900cbb240370000200041106a41002900c3b240370000200041086a41002900bbb240370000200041002900b3b2403700002000412241c40010132200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341086a200041c2001025200341086a41186a290300211e200341086a41086a290300211d200341086a41206a2903002127200341086a41106a290300212820032903082153200010140240201e4200205342015122001b221e201d420020001b221d842027420020001b22272028420020001b22288484500d002004201e201d7c221d202720287c201d201e54ad7c106c0b200441206a2104203741606a22370d000b0b2026450d00203810140b202542003703002003420037033041f2b0c0004124200341306a1000200341086a41086a2025290300370300200320032903303703080240200341086a41104184a1c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10302003280240224d450d08200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308412210122200450d05200041206a41002f00d3b2403b0000200041186a41002900cbb240370000200041106a41002900c3b240370000200041086a41002900bbb240370000200041002900b3b2403700002000412241c40010132200450d06200441206a2104200020032903083700222000413a6a2025290300370000200041326a20262903003700002000412a6a2038290300370000200341306a41086a2225420037030020034200370330200041c200200341306a10002010202529030037030020032003290330370340200341c0006a4110100320001014203741606a22370d000b0b2036450d00204d10140b200341306a41086a220042003703002003420037033041f2b0c0004124200341306a1000200341c0006a41086a2204200029030037030020032003290330370340200341c0006a41101003200042003703002003420037033041ddb0c0004115200341306a10002004200029030037030020032003290330370340200341c0006a41101003200341e0006a24000f0b413f41011016000b411f41011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b200620106a21000240200629030022272006200b6a290300222884500d00200020272028106c0b2006290310200620146a222529030084500d00201510122204450d01200420106a20162f00d3b24022263b0000200420146a20162900cbb2402229370000200420176a20162900c3b240222a3700002004200b6a20162900bbb240222b370000200420162900b3b240222c37000020042015201810132204450d0220042000290000370022200420196a200020146a22242900003700002004201a6a200020176a22232900003700002004201b6a2000200b6a222d290000370000200341086a2004201c1025200341086a20106a290300212e200341086a20146a290300212f200341086a200b6a22302903002131200341086a20176a2903002132200329030821272004101420252903002133200620176a2903002128201510122204450d03200420106a20263b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810132204450d0420042000290000370022200420196a20242900003700002004201a6a20232900003700002004201b6a202d290000370000201710122200450d0520002031201e2027201d5122251b37000020002032201e20251b37000820002017201010132200450d0620002028202f201e2027201e5222251b7c2227370010200020146a2033202e201e20251b7c2027202854ad7c370000200341306a200b6a2225201e3703002003201e3703302004201c200341306a10002030202529030037030020032003290330370308200341086a201720002010100220001014200410140b200620056a22062007470d06410021000c070b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000b4100211f410121000c000b0bb30101047f230041e0006b2201240020012000109a010240200141306a22022802002203450d00200141346a2104034002402004280200450d00200310140b20012000109a01200228020022030d000b0b02402000280204220341a090c100460d0020032802002102200310142002450d0020022802002100200210142000450d00024020002802002203450d000340200010142003210020032802002202210320020d000b0b200010140b200141e0006a24000bd5100a097f017e017f067e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041feb1c000411a200241e0006a1000200241206a41086a20002903003703002002200229036037032041002101024002400240024002400240024002400240024002400240024002400240024002400240200241206a41104184a1c100410041001001417f460d002002421037024c2002200241206a360248200241e0006a200241c8006a103020022802602200450d02200241e8006a2802002101200228026421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a109601024002400240024020022d00204101470d00412010122204450d0520042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a10960120022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d042005200120012005491b2207ad420586220b422088a70d04200ba722014100480d0402402006450d00200420032001101322040d010c060b200110122204450d050b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a10960120022d00200d000b2002280250220020022802542201460d070c060b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d00200228020810140b4100210720022802042201450d080c070b41012106410121072002280250220020022802542201470d040c050b1010000b200141011016000b41b185c00041331015000b412041011016000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d00200228024810140b20022802042201450d010b200228020021002001410574210c0340411f10122201450d02200141176a41002900cbaf40220d370000200141106a41002900c4af40220e370000200141086a41002900bcaf40220f370000200141002900b4af4022103700002001411f413f10132201450d032001200029000037001f200141376a200041186a22032900003700002001412f6a200041106a2205290000370000200141276a200041086a2208290000370000200241206a2001413f1025200241206a41106a220a2903002111200241206a41086a22092903002112200241206a41186a22132903002114200241206a41206a221529030021162002290320210b2001101420164200200b42015122011b21162014420020011b211402402012201184500d00200b500d00200020122011106c0b02402014201684500d00412210122201450d07200141206a41002f00d3b24022173b0000200141186a41002900cbb2402211370000200141106a41002900c3b2402212370000200141086a41002900bbb2402218370000200141002900b3b24022193700002001412241c40010132201450d08200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a2008290000370000200241206a200141c2001025200a290300211a2009290300211b2013290300211c2015290300211d2002290320210b20011014412210122201450d09200141206a20173b0000200141186a2011370000200141106a2012370000200141086a2018370000200120193700002001412241c40010132201450d0a200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a200829000037000041101012220a450d0b200a201b4200200b42005222131b221120147c2214370000200a201a420020131b20167c2014201154ad7c370008200a411041201013220a450d0c200a201c4200200b42015122131b370010200a41186a201d420020131b370000200241e0006a41086a2213420037030020024200370360200141c200200241e0006a10002009201329030037030020022002290360370320200241206a4110200a41201002200a1014200110140b411f10122201450d04200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10132201450d052001200029000037001f200141376a20032900003700002001412f6a2005290000370000200141276a2008290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a10002009200329030037030020022002290360370320200241206a4110100320011014200041206a2100200c41606a220c0d000b0b2002200636022820022007360224200220043602202002411a360264200241feb1c000360260200241206a200241e0006a107302402007450d00200410140b20024180016a24000f0b411f41011016000b413f41011016000b411f41011016000b413f41011016000b412241011016000b41c40041011016000b412241011016000b41c40041011016000b411041011016000b412041011016000ba30303067f037e027f230041206b220224000240024020012802082203200128020c2204460d002001280210220541046a21060340200141086a2003220741206a2203360200200741086a2900002108200741106a29000021092007290000210a200241186a200741186a290000370300200241106a2009370300200241086a20083703002002200a3703002005280200220720062802004105746a210b024002400340200b20076b41ff004d0d0120022007460d0220072002412010f701450d02200741206a220c2002460d02200c2002412010f701450d02200741c0006a220c2002460d02200c2002412010f701450d02200741e0006a220c2002460d0220074180016a2107200c2002412010f7010d000c020b0b2007200b460d03034020022007460d0120072002412010f701450d01200b200741206a2207470d000c040b0b20032004470d000b0b200041003a0000200241206a24000f0b20002002290300370001200041013a0000200041196a200241186a290300370000200041116a200241106a290300370000200041096a200241086a290300370000200241206a24000b9c0f05027f057e017f057e087f230041d0006b220224000240024002400240024002400240024002400240024002400240024020014102490d00411f10122203450d06200341176a41002900cbaf40370000200341106a41002900c4af40370000200341086a41002900bcaf40370000200341002900b4af403700002003411f413f10132203450d072003200029002037001f200341376a200041386a2900003700002003412f6a200041306a290000370000200341276a200041286a290000370000200241286a2003413f1025200241286a41206a2903002104200241c0006a2903002105200241286a41106a2903002106200229033021072002290328210820031014411f10122203450d08200341176a41002900cbaf40370000200341106a41002900c4af40370000200341086a41002900bcaf40370000200341002900b4af403700002003411f413f10132203450d092003200029000037001f200341376a200041186a22092900003700002003412f6a200041106a290000370000200341276a200041086a290000370000200241286a2003413f1025200241286a41206a290300210a200241286a41106a290300210b200241286a41186a290300210c2002290330210d2002290328210e20031014200520077c22074200200842005222031b200c200d7c22084200200e420151220f1b5a200420067c2007200554ad7c420020031b2205200a200b7c2008200c54ad7c4200200f1b220c5a2005200c511b0d00200029000021052000200041206a2203290000370000200241086a41186a2009290000370300200241086a41106a2210200041106a220f290000370300200241086a41086a2211200041086a22122900003703002012200341086a290000370000200f200341106a2900003700002009200341186a29000037000020022005370308200041206a2103024020014103490d00411f10122209450d0b200941176a41002900cbaf40370000200941106a41002900c4af40370000200941086a41002900bcaf40370000200941002900b4af403700002009411f413f10132209450d0c2009200029004037001f200941376a200041d8006a2900003700002009412f6a200041d0006a290000370000200941276a200041c8006a290000370000200241286a2009413f1025200241c8006a2903002104200241c0006a2903002105200241286a41106a2903002106200229033021072002290328210820091014411f10122209450d0d200941176a41002900cbaf40370000200941106a41002900c4af40370000200941086a41002900bcaf40370000200941002900b4af403700002009411f413f10132209450d0e2009200229030837001f200941376a200241086a41186a22132903003700002009412f6a200241086a41106a290300370000200941276a200241086a41086a290300370000200241286a2009413f1025200241286a41206a220f290300210a200241286a41106a290300210b200241286a41186a2212290300210c2002290330210d2002290328210e20091014200520077c22074200200842005222091b200c200d7c22084200200e42015122141b5a200420067c2007200554ad7c420020091b2205200a200b7c2008200c54ad7c420020141b220c5a2005200c511b0d00200041c0006a211441012109034020142103200920014f0d03200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200941026a20014f0d01411f10122200450d04200041176a41002900cbaf40220c370000200041106a41002900c4af402204370000200041086a41002900bcaf402206370000200041002900b4af4022073700002000411f413f10132200450d05200041376a200341386a2900003700002000412f6a200341306a290000370000200041276a200341286a2900003700002000200341206a221429000037001f200241286a2000413f1025200f290300210820122903002105200241286a41106a2215290300210a200241286a41086a2216290300210b2002290328210d20001014411f10122200450d06200041176a200c370000200041106a2004370000200041086a2006370000200020073700002000411f413f10132200450d072000200229030837001f200041376a20132903003700002000412f6a200241086a41106a290300370000200041276a200241086a41086a290300370000200241286a2000413f1025200f2903002104201529030021062012290300210c201629030021072002290328210e20001014200941016a21092005200b7c220b4200200d42005222001b200c20077c22074200200e42015122151b542008200a7c200b200554ad7c420020001b2205200420067c2007200c54ad7c420020151b220c542005200c511b0d000b0b20032002290308370000200341186a200241086a41186a290300370000200341106a2010290300370000200341086a20112903003700000b200241d0006a24000f0b418cb6c200200920011038000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000b411f41011016000b413f41011016000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541a090c100460d00200128020421060c010b41a80810122205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810f5011a20014100360204200120053602000b0c010b41a80841081016000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a2008412010f701220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410f6011a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410f6011a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081012221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810f5012108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410f5012108201d41e8026a200541a8066a200241067410f5012111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410f6011a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410f6011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410f6011a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410f6011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401012220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210f50121082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410f501216e200a20536a200d20526a200220107410f501216f200a20556a200d20546a200920566a220e200f7410f5012170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410f6011a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410f6011a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410f6011a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410f6011a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410f6011a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410f6011a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810122202450d03200241003b010620024100360200200241086a200441b0036a41d00810f50121092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410f6011a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410f6011a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410f6011a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081016000b41a80841081016000b41d80841081016000b410121020c000b0b20004100360210200441800c6a24000bae0c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b412010f701220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b201510f701220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a2900003700002003201837030041202120200041206a212120014103490d02410221224101212341052124417f212541a80821264178212741702128416821294160212a4106212b41e802212c4130212d4150212e4102212f410221050c080b202f20236a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b202010f701220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352022746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b202010f701220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2022746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000203121212030212f20302001490d020b202120032903003700002021201a6a201b2903003700002021201c6a201d2903003700002021201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f5011a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b200610142011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b200310142011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f5011a200241c0016a24000b13002000411136020420004180f1c1003602000b13002000410b360204200041e0fac1003602000b130020004107360204200041d1ccc0003602000b1300200041173602042000418c81c2003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a2002101c200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241003600000f0b410441011016000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242003700000f0b410841011016000b7001017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a101c2002200241086a36022c2002412c6a200241206a1079200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011016000b3401017f0240410410122202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011016000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241043600000f0b410441011016000b13002000410f360204200041e095c2003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410122203450d0020024284808080c000370204200220033602002003410036000020034104410810132203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610132203450d020c050b200421060c050b2006101222030d030b200641011016000b410441011016000b410841011016000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410132203450d020c030b200621040c030b2004101222030d010b200441011016000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710132203450d010c020b2007101222030d010b200741011016000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002104a02400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410132206450d020c040b200341086a2105200228020021060c040b2004101222060d020b200441011016000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410122203450d0020024284808080c000370244200220033602402003410036000020034104412410132203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010132203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a101c2002410036024c200241cc006a200241c0006a101c2002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710132203450d020c060b200521070c060b2007101222030d040b200741011016000b410441011016000b412441011016000b41c80041011016000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410132203450d020c040b200641286a21060c040b2004101222030d020b200441011016000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a104a200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410122202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011016000b3401017f0240410410122202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011016000b3301017f0240410410122202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011016000bf50103027f017e017f230041206b22022400200241106a41086a220342003703002002420037031041b291c0004115200241106a1000200241086a20032903003703002002200229031037030002400240024002400240200241104184a1c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d0220022903102204500d0341082105410810122203450d010c040b42052104410821054108101222030d030b200541011016000b41b185c00041331015000b4194a1c2001018000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010122202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011016000b3901017f0240411010122202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011016000b3a01017f0240411010122202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011016000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011016000b130020004109360204200041c2e8c0003602000b130020004103360204200041c4a1c2003602000bcb0e04027f047e017f037e230041e0006b22022400200241306a41086a220342003703002002420037033041d3ffc0004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240024002400240024002400240024002400240024002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d022003410f4d0d02200241d8006a2903002104200229035021050c010b42002105420021040b200241106a200442002001ad2206420010f901200241206a200542002006420010f9012002420042002005420010f901418180c100210102402002290318200229030884420052200241206a41086a2903002205200229031020022903007c7c2206200554720d002002290320210742002104200241306a41086a220342003703002002420037033041eaffc0004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d052003410f4d0d05200241d8006a2903002105200229035021040c010b420021050b200420077c22072004542203200520067c2003ad7c220420055420042005511b4101460d0002400240024041a282c00041104184a1c100410041001001417f460d002002410036025041a282c0004110200241d0006a41044100100141016a41044d0d0520022802502103411a10122201450d08200141186a41002f00effb403b0000200141106a41002900e7fb40370000200141086a41002900dffb40370000200141002900d7fb403700002001411a413410132201450d092001200336001a42002106200241306a41086a22084200370300200242003703302001411e200241306a1000200241c0006a41086a200829030037030020022002290330370340200241c0006a41104184a1c100410041001001417f460d012002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d072008410f4d0d07200241d8006a2903002105200229035021060c020b200241e0006a2400419380c1000f0b420021050b2001101441ab80c1002101200620077c22092006542208200520047c2008ad7c220620055420062005511b0d002000106422010d00411410122201450d08200141106a41002800ba9b40360000200141086a41002900b29b40370000200141002900aa9b4037000020014114413410132201450d09200120002900003700142001412c6a200041186a290000370000200141246a200041106a2900003700002001411c6a200041086a2900003700004200210a200241306a41086a220842003703002002420037033020014134200241306a1000200241c0006a41086a20082903003703002002200229033037034002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d092008410f4d0d09200241d8006a29030021052002290350210a0c010b420021050b2001101441fb9ac0002101200a2007542208200520045420052004511b0d002000200a20077d200520047d2008ad7d106942002105200241306a41086a220142003703002002420037033041949bc0004116200241306a1000200241c0006a41086a20012903003703002002200229033037034002400240200241c0006a41104184a1c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012201417f460d0c2001410f4d0d0c200241d8006a290300210a200229035021050c010b4200210a0b0240200520077d220b200556200a20047d2005200754ad7d2205200a562005200a511b0d002002200b37035020022005370358200241306a41086a220142003703002002420037033041949bc0004116200241306a1000200241c0006a41086a200129030037030020022002290330370340200241c0006a4110200241d0006a411010020b411a10122200450d0b41002101200041186a41002f00effb403b0000200041106a41002900e7fb40370000200041086a41002900dffb40370000200041002900d7fb403700002000411a413410132200450d0c2000200336001a2002200637035820022009370350200241306a41086a22034200370300200242003703302000411e200241306a1000200241c0006a41086a200329030037030020022002290330370340200241c0006a4110200241d0006a41101002200010140b200241e0006a240020010f0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411a41011016000b413441011016000b41b185c00041331015000b411441011016000b413441011016000b41b185c00041331015000b411a41011016000b413441011016000b9e0d03017f017e077f230041306b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002402001ad2203421b88a70d002003420586a72204417f4c0d00024002402004450d002004101222050d01200441011016000b410121050b200520002001410574220610f50121042002200136021820022001360214200220043602102002411236020c200241c5fbc000360208200241106a200241086a1073024002402001450d002004101420064100480d05200610122207450d03200641606a4105762108410021040340200720046a2205200020046a2209290000370000200541186a200941186a290000370000200541106a200941106a290000370000200541086a200941086a2900003700002006200441206a2204470d000b200841016a210041062105410610122204450d010c040b4100210041012107410621054106101222040d030b200541011016000b100f000b200641011016000b200441046a41002f00b689403b0000200441002800b2894036000020042005410c10132204450d01200441086a41002d00ba89403a0000200441002f00b889403b000602400240200441094184a1c100410041001001417f460d00200241003602104101210820044109200241106a41044100100141016a41044d0d012002280210210920041014200945210a02402009450d002009ad4205862203422088a70d032003a722044100480d03200410122208450d0541002105200821040340200241106a2005102e200441186a200241106a41186a290000370000200441106a200241106a41106a290000370000200441086a200241106a41086a29000037000020042002290010370000200441206a21042009200541016a2205470d000b0b20092000470d060c050b200410144101210a410021094101210841002000460d040c050b41b185c00041331015000b1010000b410c41011016000b200441011016000b024020082007460d002000450d00410021062008210420072105034020042005412010f7010d02200441206a2104200541206a2105200641016a22062000490d000b0b200a0d012008101420010d020c030b200241106a41086a20093602002002200936021420022008360210200241106a102f0240024002400240024002402000450d002000410574210041002106200721050340410610122204450d03200441046a41002f00b689403b0000200441002800b2894036000020044106410c10132209450d0420092006360006412010122204450d0520042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a2900003700002009410a2004412010022004101420091014200641016a2106200541206a2105200041606a22000d000b41062105410610122204450d010c050b41002106410621054106101222040d040b200541011016000b410641011016000b410c41011016000b412041011016000b200441046a41002f00b689403b0000200441002800b2894036000020042005410c10132204450d09200441086a41002d00ba89403a0000200441002f00b889403b000602400240200441094184a1c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d082002280210210a20041014200a20064d0d01200621050340410610122204450d07200441046a41002f00b6894022093b0000200441002800b28940220036000020044106410c10132204450d08200441086a41002d00ba89403a0000200441002f00b889403b00060240200441094184a1c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d0720022802102108200410140240200820054d0d00410610122204450d0c200441046a20093b00002004200036000020044106410c10132204450d0d200420053600062004410a1003200410140b200a200541016a2205470d010c030b20041014200a200541016a2205470d000c020b0b200410140b410610122204450d0a200441046a41002f00b689403b0000200441002800b2894036000020044106410c10132204450d0b200441086a41002d00ba89403a0000200441002f00b889403b00062002200636021020044109200241106a41041002200410140b2001450d010b200710140b200241306a24000f0b41b185c00041331015000b410641011016000b410c41011016000b41b185c00041331015000b410641011016000b410c41011016000b410c41011016000b410641011016000b410c41011016000b130020004104360204200041a882c1003602000b130020004103360204200041f8a6c2003602000b3901017f0240411010122202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011016000b1300200041023602042000419ca9c2003602000b130020004104360204200041dd85c1003602000b130020004101360204200041a4aac2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010122206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011016000b13002000410336020420004180abc2003602000b1300200041073602042000418588c1003602000b130020004108360204200041ecacc2003602000bc10201037f23004180016b22022400200028020021000240024002400240200128020022034110710d0020034120710d012000200110c001210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441d7006a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441376a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b2003418001103a000b2003418001103a000be00201067f230041306b2202240041272103024002400240024002400240200028020022004190ce00490d00412721030340200241096a20036a2204417c6a200020004190ce006e220541f0b17f6c6a220641e4006e220741017441b6a1c1006a2f00003b00002004417e6a20062007419c7f6c6a41017441b6a1c1006a2f00003b00002003417c6a2103200041ffc1d72f4b21042005210020040d000b41e4002104200541e400480d010c020b41e40021042000220541e4004e0d010b2005220441094a0d010c020b200241096a2003417e6a22036a200541ffff037120046e2204419c7f6c20056a41ffff037141017441b6a1c1006a2f00003b0000200441094c0d010b200241096a2003417e6a22006a200441017441b6a1c1006a2f00003b00000c010b200241096a2003417f6a22006a200441306a3a00000b20014184a1c1004100200241096a20006a412720006b10c1012100200241306a240020000bab0b01097f230041106b2205240020002802002206410171220720046a2108024020064104712209450d004100210a02402002450d002002210b2001210c0340200a200c2d000041c00171418001466a210a200c41016a210c200b417f6a220b0d000b0b200820026a200a6b21080b412b418080c40020071b210d2009410276210902400240024002400240024002400240024002400240024002400240024002400240024020002802084101470d002000410c6a280200220a20084d0d0120064108710d02200a20086b210b410120002d0030220c200c4103461b410371220c450d03200c4102460d04410021080c050b02402007450d004101210c2000280218200d2000411c6a2802002802101100000d100b02402009450d004101210c2000280218200120022000411c6a28020028020c1101000d100b2000280218200320042000411c6a28020028020c110100210c200541106a2400200c0f0b02402007450d004101210c2000280218200d2000411c6a2802002802101100000d0f0b02402009450d004101210c2000280218200120022000411c6a28020028020c1101000d0f0b2000280218200320042000411c6a28020028020c110100210c200541106a2400200c0f0b4101210c200041013a00302000413036020402402007450d002000280218200d2000411c6a2802002802101100000d0e0b02402009450d002000280218200120022000411c6a28020028020c1101000d0e0b200a20086b210b4101200041306a2d0000220c200c4103461b410371220c450d04200c4102460d03410021070c050b200b21084100210b0c010b200b41016a4101762108200b410176210b0b2005410036020c02402000280204220c41ff004b0d002005200c3a000c4101210a0c050b0240200c41ff0f4b0d002005200c413f71418001723a000d2005200c410676411f7141c001723a000c4102210a0c050b200c41ffff034b0d032005200c413f71418001723a000e2005200c410676413f71418001723a000d2005200c410c76410f7141e001723a000c4103210a0c040b200b41016a4101762107200b410176210b0c010b200b21074100210b0b200541003602080240200041046a280200220c41ff004b0d002005200c3a00084101210a0c060b200c41ff0f4b0d022005200c413f71418001723a00092005200c410676411f7141c001723a00084102210a0c050b2005200c413f71418001723a000f2005200c41127641f001723a000c2005200c410676413f71418001723a000e2005200c410c76413f71418001723a000d4104210a0b417f210c02400340200c41016a220c200b4f0d01200041186a2802002005410c6a200a2000411c6a28020028020c110100450d000c060b0b02402007450d00200041186a280200200d2000411c6a2802002802101100000d050b02402009450d00200041186a280200200120022000411c6a28020028020c1101000d050b200041186a220b280200200320042000411c6a220028020028020c1101000d04417f210c0340200c41016a220c20084f0d02200b2802002005410c6a200a200028020028020c110100450d000c050b0b200c41ffff034b0d012005200c413f71418001723a000a2005200c410676413f71418001723a00092005200c410c76410f7141e001723a00084103210a0c020b200541106a240041000f0b2005200c413f71418001723a000b2005200c41127641f001723a00082005200c410676413f71418001723a000a2005200c410c76413f71418001723a00094104210a0b417f210c02400340200c41016a220c200b4f0d01200041186a280200200541086a200a2000411c6a28020028020c110100450d000c020b0b200041186a220b280200200320042000411c6a220028020028020c1101000d00417f210c0340200c41016a220c20074f0d03200b280200200541086a200a200028020028020c110100450d000b0b4101210c0b200541106a2400200c0f0b200541106a240041000b8f0605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce00420010f8012002200229031022072006290300220842f0b17f427f10f901200241206a20006a2203417c6a200520022903007ca7220941e4006e220a41017441b6a1c1006a2f00003b00002003417e6a200a419c7f6c20096a41017441b6a1c1006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b41e40021092007a7220341e4004e0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d03200141e2a3c1004102200241206a20006a41800120006b10c1012100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d03200141e2a3c1004102200241206a20006a41800120006b10c1012100200241a0016a240020000f0b4127210041e40021092005a7220341e400480d030b200241206a2000417e6a22006a2003200341ffff037120096e2209419c7f6c6a41ffff037141017441b6a1c1006a2f00003b0000200941094a0d030c040b2000418001103a000b2000418001103a000b2003220941094c0d010b200241206a2000417e6a22006a200941017441b6a1c1006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b20014184a1c1004100200241206a20006a412720006b10c1012100200241a0016a240020000b960201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141e0bec2006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141f8c0c2006a2d0000220141c9004b0d0320014103744190afc1006a21010c010b2000410c7641706a22014180024f0d03200141d8c8c2006a2d00004106742000410676413f7172220141ff034b0d04200141e0b3c1006a2d0000220141364b0d05200141037441e0b7c1006a21010b200129030042012000413f71ad86834200520f0b41d8cac200200141e0071038000b41e8cac200200141ca001038000b41f8cac20020014180021038000b4188cbc20020014180041038000b4198cbc200200141371038000b2701017f2000280200220128020020012802042000280204280200200028020828020010c501000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c20044184a1c10041e4a3c10020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4101360200200441e4006a4101360200200441c8006a41146a4107360200200441d4006a4108360200200441306a41146a4105360200200420023602582004410336024c20044205370234200441f8bdc2003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a41a0bec200102c000b20042002200320081b360228200441c8006a41146a4101360200200441d4006a4101360200200441306a41146a41033602002004410336024c2004420337023420044188bdc2003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a41a0bdc200102c000b200441e4006a4101360200200441c8006a41146a4101360200200441d4006a4103360200200441306a41146a41043602002004410336024c20044204370234200441b0bdc2003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41d0bdc200102c000b41e0bdc2001018000bf50403027f027e027f23004180016b22022400200028020021000240024002400240024002400240200128020022034110710d002000290300210420034120710d014127210020044290ce00540d02412721000340200220006a2203417c6a200420044290ce0080220542f0b17f7e7ca7220641e4006e220741017441b6a1c1006a2f00003b00002003417e6a2007419c7f6c20066a41017441b6a1c1006a2f00003b00002000417c6a2100200442ffc1d72f5621032005210420030d000b41e40021062005a7220341e400480d060c050b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d02200141e2a3c1004102200220006a41800120006b10c101210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d02200141e2a3c1004102200220006a41800120006b10c101210020024180016a240020000f0b41e400210620042205a7220341e4004e0d020c030b2000418001103a000b2000418001103a000b20022000417e6a22006a2005a7220741ffff037120066e2203419c7f6c20076a41ffff037141017441b6a1c1006a2f00003b00000b02400240200341094a0d0020022000417f6a22006a200341306a3a00000c010b20022000417e6a22006a200341017441b6a1c1006a2f00003b00000b20014184a1c1004100200220006a412720006b10c101210020024180016a240020000bfb09010c7f230041106b2203240020002802102104024002400240024002400240024002400240200028020822054101470d0020040d010c020b2004450d070b02402002450d00200120026a2106200041146a280200417f732107410021082001210420012109024002400340200441016a210a0240024020042c0000220b4100480d00200b41ff0171210b200a2104200741016a22070d010c030b024002400240200a2006460d00200a2d0000413f71210c200441026a2204210a200b411f71210d200b41ff0171220b41e001490d010c020b4100210c20062104200b411f71210d200b41ff0171220b41e0014f0d010b200c200d41067472210b200a2104200741016a22070d010c030b02400240024020042006460d00200441016a220a210e20042d0000413f71200c41067472210c200b41f001490d010c020b2006210e4100200c41067472210c200b41f0014f0d010b200c200d410c7472210b200a2104200741016a22070d010c030b02400240200e2006460d00200e41016a2104200e2d0000413f71210b0c010b4100210b200a21040b200c410674200d411274418080f0007172200b72220b418080c400460d03200741016a2207450d020b200820096b20046a21082004210920062004470d000c020b0b200b418080c400460d00024002402008450d0020082002460d0041002104200820024f0d01200120086a2c00004140480d010b200121040b2008200220041b21022004200120041b21010b2005450d020c010b410021022005450d010b4100210a02402002450d002002210b200121040340200a20042d000041c00171418001466a210a200441016a2104200b417f6a220b0d000b0b2002200a6b2000410c6a28020022074f0d014100210a02402002450d004100210a2002210b200121040340200a20042d000041c00171418001466a210a200441016a2104200b417f6a220b0d000b0b200a20026b20076a210b410020002d0030220420044103461b4103712204450d0220044102460d03410021070c040b2000280218200120022000411c6a28020028020c1101002104200341106a240020040f0b2000280218200120022000411c6a28020028020c1101002104200341106a240020040f0b200b21074100210b0c010b200b41016a4101762107200b410176210b0b2003410036020c024002402000280204220441ff004b0d00200320043a000c4101210a0c010b0240200441ff0f4b0d0020032004413f71418001723a000d20032004410676411f7141c001723a000c4102210a0c010b0240200441ffff034b0d0020032004413f71418001723a000e20032004410676413f71418001723a000d20032004410c76410f7141e001723a000c4103210a0c010b20032004413f71418001723a000f2003200441127641f001723a000c20032004410676413f71418001723a000e20032004410c76413f71418001723a000d4104210a0b417f21040240024002400340200441016a2204200b4f0d01200041186a2802002003410c6a200a2000411c6a28020028020c110100450d000c020b0b200041186a220b280200200120022000411c6a220028020028020c110100450d010b200341106a240041010f0b417f210402400340200441016a220420074f0d01200b2802002003410c6a200a200028020028020c110100450d000b200341106a240041010f0b200341106a240041000f0b2000280218200120022000411c6a28020028020c1101002104200341106a240020040bcc0403037f017e047f23004180026b220424000240024020012d000d450d0041b78dc1002102413121050c010b2001280200200141046a2205280200200141086a220628020010c90120054200370200200141a090c100360200200420022900002207370310024002400240024041e40110122208450d00200841003b010620084100360200200841086a200441206a41dc0110f5011a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a410810f701220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101c02402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1013220b450d030c060b2004280210210b0c060b418a8dc1002102412d21050c060b200a1012220b0d030b200a41011016000b41e40141041016000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210f5011a200441086a200a28020036020020042004290310370300200441206a200410ca0120014180023b010c410021020b200020053602042000200236020020044180026a24000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b200010142005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b200110142005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d00200410140b20020d000b0b0240200041a090c100460d0020002802002101200010142001450d0020012802002104200110142004450d00024020042802002201450d000340200410142001210420012802002200210120000d000b0b200410140b0bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410f6011a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10f6011a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011012220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110f5012107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410f5012107200a41e0006a200041b4016a2001410c6c10f501210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410f6011a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10f6011a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410f6011a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10f6011a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210122207450d03200741003b010620074100360200200741086a200241d0006a418c0210f5012103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410f5012116200741e0006a200941b4016a2000410c6c10f5012117200741e4016a20094180026a2001417a6a220e41027410f5012118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410f6011a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10f6011a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410f6011a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410f6011a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10f6011a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410f6011a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210122200450d03200041003b010620004100360200200041086a200241d0006a418c0210f50121012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410f6011a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10f6011a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410f6011a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041016000b41e40141041016000b41940241041016000b200241e0026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a2002101c0240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610132203450d020c030b2004410e6a2105200228020021030c030b2006101222030d010b200641011016000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a41002900a5ab403700002004410029009fab403700002002410e36020c2002410c6a2002101c0240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610132204450d020c030b200228020021040c030b2006101222040d010b200641011016000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a41002900a5ab403700002007410029009fab4037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710132204450d020c030b200341126a21030c030b2007101222040d010b200741011016000b20022007360204200220043602000b200241086a22052003360200200420066a4103360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710132204450d010c020b2007101222040d010b200741011016000b20022007360204200220043602000b2005200341046a360200200420036a41033600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610132205450d020c030b200228020021050c030b2006101222050d010b200641011016000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410536020c2002410c6a2002101c2008280200210641b0abc00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101322030d020c060b200641086a2104200228020021030c020b200910122203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101322030d010c060b200610122203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a220741ecabc000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011016000b200641011016000bde0503057f017e067f230041306b22022400024002400240410610122203450d00200341046a41002f00b689403b0000200341002800b2894036000020034106410c10132203450d01200341086a41002d00ba89403a0000200341002f00b889403b000602400240024002400240200341094184a1c100410041001001417f460d00200241003602104101210420034109200241106a41044100100141016a41044d0d04200228021021052003101420054521062005450d012005ad4205862207422088a70d022007a722034100480d02200310122204450d0741002108200421030340200241106a2008102e200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a29000037000020032002290010370000200341206a21032005200841016a2208470d000c020b0b200310144101210641002105410121040b20024100360218200242013703102002200536020c2002410c6a200241106a101c024002402006450d00200241186a2802002103200228021021090c010b2005410574210a4100200241106a41086a280200220b6b210c200228021021092002280214210d4100210303400240200d200c6a411f4b0d00200b20036a220541206a22082005490d03200d4101742205200820082005491b22084100480d0302400240200d450d002009200d2008101322090d010c060b200810122209450d050b2008210d0b2009200b6a20036a2208200420036a2205290000370000200841186a200541186a290000370000200841106a200541106a290000370000200841086a200541086a290000370000200c41606a210c200a200341206a2203470d000b200241186a200b20036a22033602002002200d3602142002200936021020060d00200410140b200241306a24002003ad4220862009ad840f0b1010000b200841011016000b41b185c00041331015000b410641011016000b410c41011016000b200341011016000bd31203027f017e087f230041d0086b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b20022001360204200241f0066a2002103e024002400240024002400240024020022802f806450d00200241086a200241f0066a41880110f5011a20024190016a200241086a41880110f5011a200229039001200241a4016a2201200241e4016a2203101702400240024002402002290390012204500d00200241f0066a2004427f7c1011200241f0066a2001412010f7010d0041002105200228028802210002400240024020024190026a280200220141e0016c41e001490d002001410c6c220610122207450d0b2001210820010d010c020b41042107410021082001450d010b200141e0016c2106200141057441606a21092007210103402002200036028004200241f0066a20024180046a10ce01200141086a200241f0066a41086a280200360200200120022903f0063702002001410c6a2101200041e0016a2100200641a07e6a22060d000b200941057641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001012220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241f0066a200a200610cf010240200b450d00200a10140b02402005450d002005410c6c21002007210103400240200141046a280200450d00200128020010140b2001410c6a2101200041746a22000d000b0b02402008450d00200710140b02402003200241f0066a412010f701450d0041d99ec100410e1006200341201007200241f0066a412010070b2003200241f0066a412010f7010d052002418c026a280200210520024190016a41f8006a280200210720024190026a280200210620024198026a20024190016a41f80010f5011a2007200641e0016c6a210020072101024002400240024002402006450d0020024180046a41f8006a2109200241f0066a41086a210c20072101034020024190036a200141f00010f5011a200141f0006a290300210420024188066a200141f8006a41e80010f5011a20044203510d0220024180046a20024190036a41f00010f5011a20024180046a41f0006a2004370300200920024188066a41e80010f5011a200220024180046a3602e005200241f0066a200241e0056a10ce01200c2802002106024020022802f406450d0020022802f00610140b200241f0066a20024180046a41e00110f5011a200241003602f005200241e0056a200241f0066a2006200241f0056a10d00120022802e0054101460d05024020022802e4052206450d002006200241e0056a41086a28020010060b200141e0016a22012000470d000b200021010b20012000470d010c020b200141e0016a22012000460d010b200241f8076a2106200241f0066a41f8006a21090340200241f0066a200141f00010f5011a200141f0006a290300210420024190036a200141f8006a41e80010f5011a20044203510d0120024180046a200241f0066a41f00010f5011a20024188066a20024190036a41e80010f5011a200241f0066a20024180046a41f00010f5011a200241f0066a41f0006a2004370300200920024188066a41e80010f5011a20061042200141e0016a22012000470d000b0b02402005450d00200710140b101f2002290398021043200241f0066a1023200220024198026a41106a28020022053602800620022802a002210c2002200241f0066a41106a28020022013602840620052001470d0720022802f806210a024002402005450d000240200c200a460d00410021070340200c200741246c22006a2201200a20006a2200106d20012d0000220620002d0000470d030240024020064101470d002001410c6a28020022092000410c6a280200470d052009450d01200141046a2802002201200041046a2802002200460d0141002106034020012000412010f7010d06200141206a2101200041206a2100200641016a22062009490d000c020b0b200141016a200041016a412010f7010d040b200741016a22072005490d000c020b0b200521010340200c200c106d200c41246a210c2001417f6a22010d000b0b20024180046a41186a2201420037030020024180046a41106a2200420037030020024180046a41086a22064200370300200242003703800420024180046a100420024190036a41186a200129030037030020024190036a41106a200029030037030020024190036a41086a20062903003703002002200229038004370390030240200241cc026a220120024190036a412010f701450d0041d99ec100410e100620014120100720024190036a412010070b200120024190036a412010f7010d0902402005450d00200541246c2100200a21010340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012000415c6a22000d000b0b0240200241fc066a280200450d00200a10140b0240200241a8026a2802002200450d0020024198026a41086a2802002101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012000415c6a22000d000b0b0240200241a4026a280200450d00200241a0026a28020010140b200241d0086a240042010f0b41ccb5c2001018000b20022802e4052202450d0120024103460d0220024104460d0341d4b4c2001018000b41a4b4c2001018000b4184b5c2001018000b41ecb4c2001018000b419cb5c2001018000b20024194046a4101360200200241013602940120024184b3c2003602900120024201370284042002418cb3c20036028004200220024190016a3602900420024180046a4194b3c200102c000b41bcb4c2001018000b200220024180066a3602f005200220024184066a3602e00520024180046a41146a410036020020024190036a41146a41043602002002419c036a410936020020024188066a41146a410336020020024184a1c100360290042002420137028404200241b4b5c2003602800420024109360294032002420337028c06200241f8bbc20036028806200220024180046a3602a0032002200241e0056a360298032002200241f0056a36029003200220024190036a3602980620024188066a41bcb5c200102c000b41e4b5c2001018000b200641041016000b1010000b200041041016000b8a1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041e20110122203450d00200242e20137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410132201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410132201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a200210850102400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110132204450d020c060b200228020021040c060b2001101222040d040b200141011016000b41e20141011016000b410441011016000b410441011016000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c3700002003200210830102400240024002400240024002400240024002400240200341f0006a2903004201520d0020032903782206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110132204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510132204450d030c070b200228020021040c070b200228020021040c080b2005101222040d040b200541011016000b2001101222040d040b200141011016000b4184c4c1001018000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a2002108201200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a101c024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101322010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410132203450d020c110b4100210b2005450d120c110b2004101222030d0f0b200441011016000b200228020021010c020b200c10122201450d070b2002200c360204200220013602000b200120056a200141026a200a10f6011a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031012220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b418cf9c1001018000b200341011016000b200c41011016000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101322030d020c060b200228020021030c020b200110122203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10f6011a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c10140b200a450d060c050b1010000b200141011016000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10f6011a0b20012003200a6a3602000b02402009450d00200810140b20002002290300370200200041086a200241086a280200360200200241206a24000bcb03010b7f230041206b22032400024002402002450d0020024102742204101222050d01200441041016000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1013220a0d020c080b200820046a21070c020b200d1012220a450d060b200d210b0b200a20046a200c200810f5011a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a10140b02402002450d00200510140b200341206a24000f0b1010000b200d41011016000bca1305017f017e037f017e067f230041e0056b22042400200441a0036a200141e00110f5011a20044190026a200441a0036a10e1010240024002402004280290024101470d00200041086a2004290294023702002000420137020020032802002200450d020c010b20044190026a41086a290300210520044190016a20044190026a41106a41800110f5011a20042005370308200441086a41086a20044190016a41800110f501210620044190016a41086a220142003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200129030037030020042004290390013703a00341002101024002400240024002400240024002400240024002400240200441a0036a41104184a1c100410041001001417f460d002004410036029002200441a0036a411020044190026a41044100100141016a41044d0d0120042802900221010b41042107200120026a41808080024b0d0a410021080240024002400240024002400240200441106a410020042903084201511b2201450d002001450d0020011019220520012903202209520d01410321072001200210b3010d11200110192105411310122207450d0f2007410f6a410028009e8240360000200741086a410029009782403700002007410029008f824037000020074113413310132207450d10200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a2900003700002004200542017c3703900220044190016a41086a2201420037030020044200370390012007413320044190016a1000200441a0036a41086a200129030037030020042004290390013703a003200441a0036a411020044190026a41081002200710140b20032802002207450d05200341086a28020021012003280204210a4100210b024041a282c00041104184a1c100410041001001417f460d00200441003602a00341a282c0004110200441a0036a41044100100141016a41044d0d0a20042802a003210b0b411410122208450d0a200841106a41002800bb8140360000200841086a41002900b38140370000200841002900ab81403700002008411441281013220c450d0b200c200b360014200441003602a803200442013703a003200420013602900220044190026a200441a0036a101c20042802a403220d20042802a803220b6b20014f0d01200b20016a2208200b490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0220042802a003200d200e101322080d030c0d0b4101410220092005541b21070c0f0b20042802a00321080c020b200e10122208450d0a0b2004200e3602a403200420083602a003200e210d0b2008200b6a2007200110f5011a20044190016a41086a220e42003703002004420037039001200c411820044190016a1000200441a0036a41086a200e29030037030020042004290390013703a003200441a0036a41102008200b20016a10020240200d450d00200810140b200c101441012108200a450d00200710140b20042903082105200441a0036a200441306a41e00010f5011a20044190026a200441a0036a41086a41d80010f5011a20044190016a41186a220c200641186a29030037030020044190016a41106a220b200641106a29030037030020044190016a41086a220d200641086a290300370300200420062903003703900141002101024020054201520d00200441a0056a41186a200c290300370300200441a0056a41106a200b290300370300200441a0056a41086a200d29030037030020042004290390013703a005410121010b20044190016a20044190026a41d80010f5011a200441c0056a41186a2206200441a0056a41186a220c290300370300200441c0056a41106a220b200441a0056a41106a220d290300370300200441c0056a41086a220a200441a0056a41086a220e290300370300200420042903a0053703c00520044190026a20044190016a41d80010f5011a20044180056a41186a220f200629030037030020044180056a41106a2206200b29030037030020044180056a41086a220b200a290300370300200420042903c00537038005200441a0036a20044190026a41d80010f5011a200c200f290300370300200d2006290300370300200e200b29030037030020042004290380053703a0054102210602402001450d00200441c0056a41186a200441a0056a41186a290300370300200441c0056a41106a200441a0056a41106a290300370300200441c0056a41086a200441a0056a41086a290300370300200420042903a0053703c005410121060b20044199016a200441c0056a41086a290300370000200441a1016a200441c0056a41106a290300370000200441a9016a200441d8056a290300370000200420063a009001200420042903c005370091012004200441a0036a20044190016a106e2004280204210620042802002101200441003a00a003200420014100473a00a103200441a0036a101a0240024041a282c00041104184a1c100410041001001417f460d00200441003602a00341a282c0004110200441a0036a41044100100141016a41044d0d0320042802a00341016a210c0c010b4101210c0b20044190016a41086a220b42003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200b29030037030020042004290390013703a00302400240200441a0036a41104184a1c100410041001001417f460d002004410036029001200441a0036a411020044190016a41044100100141016a41044d0d04200428029001210b0c010b4100210b0b2004200c3602a00341a282c0004110200441a0036a410410022004417f2002200b6a220c200c2002491b3602c00520044190016a41086a220242003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200229030037030020042004290390013703a003200441a0036a4110200441c0056a410410020240024002402001450d0002402006411b470d00200141c494c100460d02200141c494c100411b10f701450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c0f0b20004100360204200041086a200636020020004100360200200745200872450d010c0e0b200041046a4104360200200041013602002007452008720d0d0b200341046a280200450d0c200710140c0c0b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b41b185c00041331015000b411441011016000b412841011016000b1010000b200e41011016000b411341011016000b413341011016000b2000410136020020002007360204200441386a104220032802002200450d010b200341046a280200450d0020001014200441e0056a24000f0b200441e0056a24000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10f2012100200241206a240020000ba70201017f23004180026b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b2002200136020420024180016a2002103f0240200228028801450d00200241086a20024180016a41f80010f5011a20022903082002411c6a200241dc006a10170240200241186a2802002200450d0020022802102101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a28020010140b200141246a21012000415c6a22000d000b0b0240200241146a280200450d00200241106a28020010140b20024180026a240042010f0b2002411c6a4101360200200241013602fc01200241a4b3c2003602f8012002420137020c2002418cb3c2003602082002200241f8016a360218200241086a4194b3c200102c000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410122203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410132205450d020c040b200228021021050c040b2004101222050d020b200441011016000b410441011016000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41013a0000410d200241106a10d401410021030240034020034190d1c1006a28020020034194d1c1006a280200200241106a10d5010240024002400240024002400240024002400240024002400240024002400240024020034198d1c1006a2802004101470d002003419cd1c1006a280200200341a0d1c1006a280200200241106a10d501200341a4d1c1006a22062802004102460d010c020b20022003419cd1c1006a28020011020020022802002002280204200241106a10d501200341a4d1c1006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101322060d020c040b200228021021060c020b200710122206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341b4d1c1006a22062802004102470d020c030b200741011016000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101322070d020c0d0b200228021021070c020b200810122207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d601200341b4d1c1006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101322070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101322060d050c0a0b200228021021060c050b200810122207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d701200341c4d1c1006a22062802004102460d030c080b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c4d1c1006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101322060d020c070b200228021021060c020b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341a807470d050c060b200841011016000b200841011016000b200741011016000b200741011016000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101322070d020c070b200228021021070c020b200810122207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d801200341c8006a220341a807470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101c02400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810132205450d020c050b2002280210220520046a2006200310f5011a200420036a21032007450d060c050b2008101222050d030b200841011016000b1010000b200841011016000b2002200836021420022005360210200520046a2006200310f5011a200420036a21032007450d010b200610140b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410132203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210132203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101322030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101322030d0a0c0e0b2004101222030d110b200441011016000b200128020021030c050b200128020021030c070b2002101222030d0b0b200241011016000b200210122203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101322030d020c070b200128020021030c020b200210122203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011016000b200441011016000b200241011016000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510132204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310132204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101322040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101322040d0a0c0d0b2005101222040d100b200541011016000b200228020021040c050b200228020021040c070b2003101222040d0a0b200341011016000b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510122204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101322040d020c060b200228020021040c020b200310122204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011016000b200541011016000b200341011016000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310132204450d020c040b200228020021040c040b2003101222040d020b200341011016000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110f5011a0bfb0f01097f230041206b2202240002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d01200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101322070d040c0a0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101322070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101322070d040c0c0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101322070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011016000b200a41011016000b200a41011016000b200a41011016000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d00200910140b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110e8012004200541cc006a2205470d010c030b2009200041c0006a280200200110e8012004200541cc006a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d00200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101322070d040c0a0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101322070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101322070d040c0c0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101322070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011016000b200a41011016000b200a41011016000b200a41011016000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d00200910140b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110e8012004200541cc006a2205470d010c020b2009200041c0006a280200200110e8012004200541cc006a2205470d000b0b200241206a24000f0b1010000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110e701200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c030b2006200041246a280200200110e80120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110e701200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c020b2006200041246a280200200110e80120042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e8010c010b2006200041146a280200200110e8010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c030b2006200041246a280200200110e80120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e8010c010b2006200041146a280200200110e8010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e80120042005412c6a2205470d010c020b2006200041246a280200200110e80120042005412c6a2205470d000b0b200241106a24000be20301017f230041e0056b22022400024002402001450d00200220003602080c010b20024184a1c1003602080b2002200136020c200241f0036a200241086a104102400240024002400240024020022903e0044203510d00200241106a200241f0036a41e00110f5011a200241f0016a200241106a41e00110f5011a2002200241f0016a3602f003200241d0036a200241f0036a10ce0120022802d8032101200241f0036a200241f0016a41e00110f5011a200241d8056a20022802d803360200200220022903d0033703d005200241e0036a200241f0036a2001200241d0056a10d0010240024020022802e0034101470d004280828898f01f20022802e403410374ad88a7210041011012210141010d010c050b20022802e40341004721004101101221014100450d040b2001450d01200141013a000020014101410210132201450d020c040b20024184026a410136020020024101360214200241acb3c200360210200242013702f4012002418cb3c2003602f0012002200241106a36028002200241f0016a4194b3c200102c000b410141011016000b410241011016000b2001450d01200141003a0000200141014102101322010d00410241011016000b200120003a0001200241e0056a24002001ad428080808020840f0b410141011016000bf51203037f017e097f230041c0016b22022400101f20024180016a41086a22034200370300200242003703800141dd81c000410d20024180016a1000200241086a41086a220420032903003703002002200229038001370308420021050240024002400240024002400240024002400240024002400240200241086a41104184a1c100410041001001417f460d002002420037038001200241086a411020024180016a41084100100141016a41084d0d0120022903800121050b20051043200241b0016a41086a22034200370300200242003703b001418080c0004115200241b0016a100020042003290300370300200220022903b0013703080240024002400240024002400240200241086a41104184a1c100410041001001417f460d004100210620024100360280014104210741012108200241086a411020024180016a41044100100141016a41044d0d092002280280012209450d012009ad420c7e2205422088a70d0f2005a722034100480d0f200310122207450d0c2007210a4100210b0340411410122203450d03200341106a41002800bb8140360000200341086a41002900b38140370000200341002900ab814037000020034114412810132203450d042003200b36001420024180016a41086a2204420037030020024200370380012003411820024180016a1000200241086a41086a200429030037030020022002290380013703080240024002400240200241086a41104184a1c100410041001001417f460d0020024210370284012002200241086a36028001200220024180016a101b2002280200450d0b2002280204220c417f4c0d09200c450d01200c1080012206450d0d20042004280200220d200c41002002280280012002280284012006200c200d1001220d200d417f461b220d200d200c4b1b220d6a360200200d200c460d020c0a0b42002105410121060c020b4101210620022802800120022802840141014100200428020010011a4100200c470d080b2004420037030020024200370380012003411820024180016a1000200241b0016a41086a200429030037030020022002290380013703b001200241b0016a41101003200cad220542208620058421050b20031014200a41046a2005370200200a2006360200200a410c6a210a2009200b41016a220b470d000b41002108200921060c010b4100210641012108410421070b410421094100210c4100210d02402006410c6c2203410c490d002003410c6e220d41037422044100480d0e200410122209450d0a0b0240200720036a220b2007460d004100210c200921032007210403402004280200210a200341046a200441086a2802003602002003200a360200200341086a2103200c41016a210c2004410c6a2204200b470d000b0b20024180016a2009200c10cf010240200d450d00200910140b02402006450d002006410c6c21042007210303400240200341046a280200450d00200328020010140b2003410c6a2103200441746a22040d000b0b024020080d00200710140b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a22034200370300200242003703b00141ea81c0004115200241b0016a1000200241a0016a41086a220c2003290300370300200220022903b0013703a001200241a0016a4110200241086a41201002200241086a1023200241003602a801200242013703a001412010122203450d08200242a080808080043702a401200220033602a0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241a0016a10830102400240024020022802a4012204200c280200220a6b41204f0d00200a41206a2203200a490d102004410174220c20032003200c491b220b4100480d102004450d0120022802a0012004200b1013220c450d020c0e0b200a41206a210320022802a001210c0c0e0b200b1012220c0d0c0b200b41011016000b411441011016000b412841011016000b100f000b200c450d00200610140b41b185c00041331015000b41b185c00041331015000b200c41011016000b41b185c00041331015000b412041011016000b200441041016000b200341041016000b2002200b3602a4012002200c3602a001200b21040b200241a0016a41086a220b2003360200200c200a6a220a41086a200241c4006a290200370000200a41106a200241cc006a290200370000200a41186a200241d4006a290200370000200a200229023c3700000240200420036b411f4b0d00200341206a220a2003490d0120044101742206200a200a2006491b220a4100480d010240024002402004450d00200c2004200a1013220c450d010c020b200a1012220c0d010b200a41011016000b2002200a3602a4012002200c3602a0010b200b200341206a360200200c20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a28020022083602800120024180016a200241a0016a101c02402008450d00200841246c2106200e210303400240024020032d00004101470d002003410c6a2802002104200341046a280200210c4100210a0c010b4101210a200341016a210c0b20024180016a41086a20043602002002200c360284012002200a36028001200241b0016a20024180016a102720022802b001210a024002400240024020022802a401220b200241a0016a41086a220928020022046b200241b0016a41086a280200220c4f0d002004200c6a220d2004490d06200b4101742207200d200d2007491b220d4100480d06200b450d0120022802a001200b200d1013220b0d020c070b20022802a001210b0c020b200d1012220b450d050b2002200d3602a4012002200b3602a0010b20092004200c6a220d360200200b20046a200a200c10f5011a024020022802b401450d00200a10140b200341246a21032006415c6a22060d000b02402008450d00200841246c2104200e21030340024020032d0000450d00200341086a280200450d00200341046a28020010140b200341246a21032004415c6a22040d000b0b200241146a280200450d040c030b200241a8016a280200210d20022802a001210b200241146a2802000d020c030b1010000b200d41011016000b200e10140b200241c0016a2400200dad422086200bad840ba90a03017f037e087f230041f0016b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b20022001360204200241286a200210dc010240024002402002280228450d00200241086a41086a2201200241286a41086a220028020036020020022002290328370308200241186a41086a20012802003602002002200229030837031820024180016a200241186a10dd012002280280014101460d0120024180016a41086a2201290300210320014200370300200242003703800141a591c000410d20024180016a100020002001290300370300200220022903800137032842002104024002400240200241286a41104184a1c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d0120022903800121040b20024180016a41086a22014200370300200242003703800141b291c000411520024180016a1000200241286a41086a2001290300370300200220022903800137032802400240200241286a41104184a1c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d03200229038001210541e001210041e00110122201450d010c060b4205210541e001210041e001101222010d050b200041081016000b41b185c00041331015000b41b185c00041331015000b20024194016a410136020020024101360274200241b4b3c20036027020024201370284012002418cb3c200360280012002200241f0006a3602900120024180016a4194b3c200102c000b41ea94c000412820022802840120024180016a41086a2802001029000b200120024180016a41f00010f50122064202370370200641003a00880120064202370390012006200229037037037820064180016a200241f0006a41086a29030037030020062002280069360089012006418c016a200241e9006a41036a28000036000020062003200520047c220420042003541b37039801200620022903283703a001200641a8016a200241286a41086a290300370300200641b0016a200241386a290300370300200641b8016a200241c0006a290300370300200641c0016a200241c8006a290300370300200641c8016a200241d0006a290300370300200641d0016a200241d8006a290300370300200641d8016a200241e0006a290300370300200228021822072108200228021c2209210a0340200841086a210020082f0106220c4103742101417f210b02400240024003402001450d0141bc8ac0002000410810f701220d450d03200141786a2101200b41016a210b200041086a2100200d417f4a0d000b200a0d010c020b200c210b200a450d010b200a417f6a210a2008200b4102746a41e4016a28020021080c010b0b20072009200228022010c9012002410036023020024201370328200241013602800120024180016a200241286a101c200228022c210b200228023021012002200636027020024180016a200241f0006a10ce012002280280012108024002400240024002400240200b20016b200228028801220d4f0d002001200d6a22002001490d03200b410174220a20002000200a491b220a4100480d03200b450d012002280228200b200a1013220b450d020c040b2001200d6a21002002280228210b0c040b200a1012220b0d020b200a41011016000b1010000b2002200a36022c2002200b3602280b200241306a2000360200200b20016a2008200d10f5011a0240200228028401450d00200810140b20064188016a104220061014200241f0016a24002000ad422086200bad840bed0d06027f017e0a7f017e067f017e230041a0026b22022400200241186a200110400240024002400240024002400240024002400240024002402002280218450d00200228021c2203ad2204421d88a70d0a2004420386a72205417f4c0d0a024002400240024002400240024002400240024002400240024002402005450d00200510122206450d022003450d010c030b4101210620030d020b410021054100210b2006450d0c0c020b200541011016000b200141046a210741002108410021094100210a2003210b034020024200370340200241c0006a2001280200220c2007280200220541082005410849220d1b220e10f5011a20072005200e6b3602002001200c200e6a360200200d0d02200a41016a2105200229034021040240200a200b470d002008200520052008491b220bad420386220f422088a70d13200fa7220e4100480d130240200a450d0020062009200e101322060d010c070b200e10122206450d060b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0a0b2005ad422086200bad84210f200241106a200110402002280210450d0720022802142203ad420c7e2204422088a70d132004a72205417f4c0d132005450d0120051012220c450d042003450d020c050b200b0d070c080b4104210c20030d030b410021094100210b200c450d040c030b200e41011016000b200541041016000b410021084100210a4100210e2003210b0340200241086a2001104002400240024002402002280208450d00200228020c2205417f4c0d12024002402005450d0020051080012207450d0320072001280200200141046a220d2802002209200520092005491b220910f5011a200d28020022102009490d04200d201020096b3602002001200128020020096a36020020092005470d010c050b4101210741002005460d040b2005450d00200710140b0240200e450d00200c210503400240200541046a280200450d00200528020010140b2005410c6a2105200a41746a220a0d000b0b200b450d05200c10140c050b200541011016000b20092010103a000b200e41016a21090240200e200b470d002008200920092008491b220bad420c7e2204422088a70d0c2004a7220d4100480d0c0240200e450d00200c200a200d1013220c0d010c0e0b200d1012220c450d0d0b200c200a6a220e2007360200200e41046a2005ad2204422086200484370200200841026a2108200a410c6a210a2009210e20092003490d000b200c450d010b2009200f422088a7470d0320024200370224200241a090c100360220200c2009410c6c6a211020094103742205450d04200620056a2111200241206a41086a2112200241d4006a2113200241d0006a2114200c2108200621030340200822052010460d062005410c6a210820052802002215450d0720052902042104200220032900002216370330024002402002280220220e41a090c100460d00200228022421070c010b41e4011012220e450d0d41002107200e41003b0106200e4100360200200e41086a200241c0006a41dc0110f5011a200241003602242002200e3602200b200341086a210302400340200e41086a210a200e2f0106220d410374210541002109024003402005450d01200241306a200a410810f7012201450d03200541786a2105200941016a2109200a41086a210a2001417f4a0d000b2009417f6a210d0b02402007450d002007417f6a2107200e200d4102746a41e4016a280200210e0c010b0b2013201637020020142012360200200241c0006a410c6a200d360200200241c0006a41086a200241206a3602002002200e360244200241003602402002200437023420022015360230200241c0006a200241306a10ca0120032011470d010c080b200e2009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d00200510140b20032011470d000c070b0b200fa7450d010b200610140b200041003602000c0a0b2000410036020002402009450d002009410c6c210a200c210503400240200541046a280200450d00200528020010140b2005410c6a2105200a41746a220a0d000b0b0240200b450d00200c10140b200fa7450d0920061014200241a0026a24000f0b200c2108200fa70d020c030b201021080b200fa7450d010b200610140b024020082010460d00034020082802002205450d010240200841046a280200450d00200510140b2008410c6a22082010470d000b0b0240200b450d00200c10140b200241c0006a41086a2205200241206a41086a28020036020020022002290320370340200041086a200528020036020020002002290340370200200241a0026a24000f0b1010000b200d41041016000b41e40141041016000b100f000b200241a0026a24000bad0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141899dc1002006410810f7012208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2201450d00200128020821062001280200210120024200370308200241086a200120064108200641084922071b10f5011a20070d01200041086a2002290308370300410021010c030b200041919dc100360204200041086a41283602000c010b200041b99dc100360204200041086a41293602000b410121010b20002001360200200241106a24000bac3a190c7f017e037f017e097f027e017f017e077f037e027f017e057f027e027f037e067f027e037f017e0c7f027e0e7f027e107f230041d0026b22022400024002402001450d00200220003602100c010b20024184a1c1003602100b20022001360214200241f0006a200241106a103e0240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10dc012002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241a090c100360250200241d0006a41086a210a2004450d0241e001210b2008200441e0016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f2120410221214178212241a591c00021234184a1c10021244115212541b291c0002126423c2127428080808070212842252129418801212a41ff01212b427f212c41bc9cc100212d41e000212e4107212f20082130410021310c030b2002412c6a410136020020024101360254200241bcb3c2003602502002420137021c2002418cb3c2003602182002200241d0006a360228200241186a4194b3c200102c000b20024184016a410136020020024101360254200241bcb3c200360250200242013702742002418cb3c2003602702002200241d0006a36028001200241f0006a4194b3c200102c000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b412f411e2072205c410c6c6a41a07f4622451b214641c48ac00041e29dc10020451b21450c010b02400240024002400240024020310e06000501020304040b2030200d6a290300200e520d13024020302d0088012201450d002001202b712201450d230c540b203029039001200e520d212030290398012132200241f0006a200241c0006a10dd010240024020022802704101470d00200f3502002133200228027421344101213520112d0000450d010c0d0b200f290300213642002133200f42003703002002420037037020232010200241f0006a10002009200f290300370300200220022903703703180240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0a200229037021330b200f42003703002002420037037020262025200241f0006a10002009200f29030037030020022002290370370318024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0d200229037021372032203620277c580d020c010b420521372032203620277c580d010b203820288320298421334101213541c594c000213420112d0000450d010c0d0b410021352032203720337c22335a0d2120112d00000d0c0b024002402035450d0020022802502002280254200a28020010c90120024200370254200241a090c100360250200220123703180c010b2002280250213920022012370318203941a090c100460d002002280254213a0c200b201310122239450d0a4100213a203941003b010620394100360200203941086a200241f0006a201410f5011a20024100360254200220393602500c1e0b20482050204e204f6a22012001204e491b6a22012048490d4e2048204f742200200120012000491b2249ad2051862232205288a70d4e2032a722012053480d4e02402048450d00204a204820547420011013224a0d0f0c060b20011012224a450d05410321310c170b204a20482054746a204d3602002048204f6a2148204e450d270240204c20462f01064f0d002046204c2055746a20566a214d204c204f6a214c204e20506a214e20492048460d0c0c0d0b41012101024020462f01042200204628020022462f0106490d004101210103402001204f6a210120462f01042200204628020022462f01064f0d000b0b204620002055746a20566a214d204620002054746a20576a28020021464100214c2001204f460d25204f20016b2101034020462802e40121462001204f6a22010d000c260b0b20592060205f20586a22012001205f491b6a22012059490d4c20592058742200200120012000491b225aad2061862232206288a70d4c2032a722012063480d4c02402059450d00205b205920647420011013225b0d100c050b20011012225b450d04410521310c190b205b20592064746a205e360200205920586a21590240205f450d000240205d20452f01064f0d002045205d20656c6a20666a215e205d20586a215d205f20606a215f205a2059460d0e0c0f0b41012101024020452f01042200204528020022452f0106490d00410121010340200120586a210120452f01042200204528020022452f01064f0d000b0b2045200020656c6a20666a215e204520002064746a20676a28020021454100215d20012058460d23205820016b2101034020452802e4012145200120586a22010d000c240b0b205b215c2048413f4b0d370c280b2069280200227220686a210020722f0106223e206b7421014100215c024003402001450d01206f2000206810f701223d450d11200120706a2101205c20716a215c200020686a2100203d206c4a0d000b205c206c6a213e0b0240206a450d00206a206c6a216a2072203e206d746a206e6a2169410121310c110b412f214641c48ac00021450b2002204636026420022045360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c801200228020022460d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c220b200141041016000b200141041016000b41b185c00041331015000b41b185c00041331015000b41e40141041016000b41e88dc100412241b78dc10041311029000b41e88dc1004122204620022802041029000b410221310c080b410321310c080b410321310c090b410421310c090b410521310c090b410521310c0a0b410021010c460b410121010c450b410221010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b4100213c0c040b4100213c0c040b410021010c040b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b2030202a6a2d0000202b7122010d34410121010c060b203029039001200e520d34203029039801213f200f42003703002002420037037020262025200241f0006a10002009200f290300370300200220022903703703180240024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d02200229037021320c010b420521320b202c203220327c224020402032541b2240500d01200241c0006a2141200228024421420c030b41b185c00041331015000b419cc4c1001018000b0240024002400240024002400240024002400240024002400240203c0e020001010b203941086a210020392f0106223b20157421014100213d024003402001450d01200241186a2000410810f701223e450d08200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a213b0b0240203a450d00203a20206a213a2039203b2021746a20136a28020021394100213c0c0e0b201620123702002018200a360200201a203b360200200f200241d0006a360200200220393602742002201b3602702009201b3602002002201c3703184101101221010240024002400240024002402035450d002001450d0d200141013a00002002201d37021c2002200136021820022033a72201360260200241e0006a200241186a101c200228021c223d200928020022006b20014f0d01200020016a223e2000490d40203d410174223b203e203e203b491b223e201b480d40203d450d022002280218203d203e1013223d0d030c0e0b2001450d0e2001201b3a00002002201d37021c2002200136021820014101201e10132201450d0f200120333700012002201f37021c200220013602180c040b2002280218213d0c020b203e1012223d450d0b0b2002203e36021c2002203d3602180b2009200020016a360200203d20006a2034200110f5011a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10ca01201120353a0000200241d0006a20196a201b3a00002033213820350d01410021010c100b2041280200223b41086a2100203b2f0106224320157421014100213d02400240024003402001450d01202d2000410810f701223e450d02200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a21430b2042450d01204220206a2142203b20432021746a20136a21414101213c0c100b203b202e6a203d20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10f5011a2001202f4d0d02203f20408020022903702244520d040c3f0b204442808080807083421c84213241ed9cc10021460c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b204442808080807083422984213241c49cc10021460b2032a721450c010b4131214541ea88c00021460b2002204536026420022046360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c801200228020822460d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41e88dc1004122418a8dc100412d1029000b410141011016000b203e41011016000b410141011016000b410941011016000b41e88dc10041222046200228020c1029000b4101213c0c010b410221010c020b410221010c010b410221010c000b0b205f20606a215f024002400240205a2059470d00410421310c010b410521310c010b410221010c340b410221010c330b204e20506a214e02400240024020492048470d00410221310c010b410321310c010b410221010c330b410221010c320b20022802402002280244200228024810c90102402006450d00200641246c2145200321460340024020462d0000450d00204641086a280200450d00204641046a28020010140b204641246a21462045415c6a22450d000b0b02402007450d00200310140b02402004450d00200441e0016c214520084188016a2146034020461042204641e0016a2146204541a07e6a22450d000b0b02402005450d00200810140b410110122246450d05204620022d007c3a000020464101410210132247450d06204720022d007d3a0001200228027022452146024020022802742200450d002045214620002101034020462802e40121462001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782231450d002031417f6a214820462f0106450d01204641086a213d410121000c020b410021494104214a4104214b4100214820000d030c040b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a213d204620004102746a41e8016a28020021464100210020014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b417f204841016a220120012048491b2249ad2232421e88a70d042032420286a72201417f4c0d04024002400240024002402001450d0020011012224a450d0d204a203d3602002048450d020c010b4104214a4104203d3602002048450d010b200020462f01064f0d01200041016a214c204620004103746a41086a214d0c020b410121480c020b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a214d204620004102746a41e8016a28020021464100214c20014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b2031417e6a214e4101214f417f215042022151422021524100215341022154410321554108215641e80121574101214820494101470d0b0c0a0b204a214b2002280270214520022802742200450d010b20002101034020452802e40121452001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002258450d002058417f6a215920452f0106450d01204541e0006a2131410121000c020b4100215a4104215b4104215c410021592048413f4d0d020c110b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a2131204520004102746a41e8016a28020021454100210020014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b417f205941016a220120012059491b225aad2232421e88a70d012032420286a72201417f4c0d01024002400240024002402001450d0020011012225b450d0b205b20313602002059450d020c010b4104215b410420313602002059450d010b200020452f01064f0d01200041016a215d20452000410c6c6a41e0006a215e0c020b41012159205b215c2048413f4b0d110c020b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a215e204520004102746a41e8016a28020021454100215d20014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b2058417e6a215f41012158417f216042022161422021624100216341022164410c216541e000216641e801216741012159205a4101470d0a0c090b41012104410110122258450d03205820484102743a000020484102742245450d140c0f0b100f000b410141011016000b410241011016000b410141011016000b200141041016000b200141041016000b410221310c030b410321310c030b410421310c030b410521310c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402048418080014f0d0041022104410210122258450d02205820484102744101723b0000204841027422450d010c060b024020484180808080044f0d0041042104410410122258450d0320582048410274410272360000204841027422450d010c060b410110122246450d03204641033a00004105210420464101410510132258450d042058204836000120484102742245450d050b410020046b21462004214802400340204b28020021010240200420466a41074b0d00204841086a22002048490d152004410174224f20002000204f491b22004100480d15024002402004450d00205820042000101322580d010c040b200010122258450d030b200021040b204b41046a214b205820486a2001290000370000204641786a2146204841086a21482045417c6a22450d000b2059413f4b0d070c060b200041011016000b410241011016000b410441011016000b410141011016000b410541011016000b200421482059413f4b0d010b4101214541011012224b450d08204b20594102743a00004101210120590d010c020b02402059418080014f0d004102214541021012224b450d07204b20594102744101723b00000c010b024020594180808080044f0d004104214541041012224b450d06204b20594102744102723600000c010b410110122246450d04204641033a0000410521452046410141051013224b450d03204b20593600010b2059410274214f204521010340205c28020022462802002159024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020462802082246413f4b0d0020452001470d01204541016a22012045490d2120454101742200200120012000491b22004100480d212045450d05204b204520001013224b0d060c0f0b2046418080014f0d01204520016b41014b0d02200141026a22002001490d2020454101742268200020002068491b22004100480d202045450d0b204b204520001013224b0d0c0c0f0b204521000c050b20464180808080044f0d01204520016b41034b0d05200141046a22002001490d1e20454101742268200020002068491b22004100480d1e024020450d0020001012224b450d100c070b204b204520001013224b0d060c0f0b204521000c090b20452001470d05204541016a22012045490d1c20454101742200200120012000491b22004100480d1c0240024020450d0020001012224b450d100c010b204b204520001013224b450d0f0b204521010c060b20001012224b450d090b204521010b204b20016a20464102743a00002000200141016a22016b20464f0d060c0c0b204521000b204b20016a20464102744102723600002000200141046a22016b2046490d0a0c040b204521000b204b20016a41033a000002402000200141016a22456b41034b0d00204541046a22682045490d1620004101742231206820682031491b22684100480d16024002402000450d00204b200020681013224b0d010c080b20681012224b450d070b206821000b204b20456a20463600002000200141056a22016b2046490d080c020b20001012224b450d030b204b20016a20464102744101723b00002000200141026a22016b2046490d060b200021450c060b200041011016000b200041011016000b206841011016000b200041011016000b200041011016000b200120466a22452001490d0c20004101742268204520452068491b22454100480d0c02402000450d00204b200020451013224b0d010c040b20451012224b450d030b205c41046a215c204b20016a2059204610f5011a200120466a2101204f417c6a224f0d000b0b024002400240200420486b20014f0d00204820016a22462048490d0c20044101742200204620462000491b22004100480d0c2004450d0120582004200010132258450d020c090b204820016a2146205820486a204b200110f5011a2045450d0a0c090b2000101222580d070b200041011016000b204541011016000b410541011016000b410141011016000b410441011016000b410241011016000b410141011016000b20002104205820486a204b200110f5011a2045450d010b204b10140b0240205a450d00205b10140b02402049450d00204a10140b02402046450d00204641026a22452046490d0120454104204541044b1b22014100480d0120474102200110132247450d02204741026a2058204610f5011a2004450d040c030b204641026a2145204741026a2058204610f5011a20040d020c030b1010000b200141011016000b205810140b20022802702002280274200241f8006a28020010c901200241d0026a24002045ad4220862047ad840f0b20014101470d002030280290012015460d010b2030200b6a2230200c470d01410021010c050b200241c0006a21692002280244216a410821684103216b417f216c4102216d41e401216e41bc8ac000216f41782170410121710c010b410021310c010b410121310c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a220342003703002002420037033041cc81c0004111200241306a1000200241206a41086a2003290300370300200220022903303703200240024002400240200241206a41104184a1c100410041001001417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010012203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010122203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101222030d020b200441011016000b41b185c00041331015000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bfc1404047f017e087f017e230041c0076b22022400024002402001450d00200220003602000c010b20024184a1c1003602000b20022001360204200241e0056a20021041024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903d0064203510d00200241086a200241e0056a41e00110f5011a200241e8016a200241086a41e00110f5011a2002200241e8016a3602d004200241e0056a200241d0046a10ce0120022802e8052103024020022802e405450d0020022802e00510140b200241e0056a200241e8016a41e00110f5011a200241d0046a200241e0056a10e101024002400240024002400240024020022802d0044101470d0020022802d404210120022802d8042200411a460d0120004115470d024102210441f60121002001419f95c100460d0f2001419f95c100411510f7010d020c0f0b200241c8036a200241d0046a41086a41880110f5011a410021040240200241c8036a41086a410020022903c8034201511b2201450d002001450d00410321002001200310b301450d03410021040c0e0b4176416c20011b21000c0d0b410021002001418798c100460d02410021042001418798c100411a10f701450d0d0b4100210441810121000c0c0b200141206a410020011b210c2001101921064101210041002104200c290300220f2006540d0a4102210041022104200f20064280027c560d0a2006200f5a0d014100210b41002105410021074100210e410421090340412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010132200450d062000200637002002402007200e470d00200741016a220a2007490d20200b200a200a200b491b220ead420c7e220f422088a70d20200fa7220a4100480d2002402007450d0020092005200a101322090d010c090b200a10122209450d080b200920056a220a2000360200200a41046a42c08080808005370200200b41026a210b2005410c6a2105200741016a2107200642017c2206200c290300220f540d000c030b0b410021040c0a0b41042109410021074100210e0b410c1012220d450d04412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010132201450d062003ad21062001200f370020200d42c08080808005370204200d2001360200200241f8036a1042200241003602e805200242013703e00541012104410121014101101222000d090c140b200241fc016a41013602002002410136020c200241c4b3c200360208200242013702ec012002418cb3c2003602e8012002200241086a3602f801200241e8016a4194b3c200102c000b412041011016000b41c00041011016000b200a41041016000b410c41041016000b412041011016000b41c00041011016000b200241f8036a10420b200241003602e805200242013703e005024020044101460d0020044102470d02410110122201450d0d200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41023a000020022802e40520032802002201470d04200141016a22032001490d1320014101742205200320032005491b22054100480d132001450d0820022802e0052001200510132203450d090c160b41012101410110122200450d0b0b200241e0056a41086a22032003280200220520016a360200200220013602e405200220003602e005200020056a20013a000020022802e4052200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802e0052000200110132200450d050c0f0b410110122201450d0b200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41003a000020022802e40520032802002201470d02200141016a22032001490d1020014101742205200320032005491b22054100480d102001450d0720022802e0052001200510132203450d080c0c0b20022802e00521000c0e0b20022802e00521030c120b20022802e00521030c0a0b2001101222000d0a0b200141011016000b2005101222030d0d0b200541011016000b2005101222030d040b200541011016000b200120011016000b410141011016000b410141011016000b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000c070b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2205200141086a360200200020016a2006370000200220073602e801200241e8016a200241e0056a101c02400240024002402007450d0020092007410c6c6a21082009210303402003280200210a2002200341086a28020022013602e801200241e8016a200241e0056a101c024002400240024020022802e405220b200528020022006b20014f0d00200020016a220c2000490d09200b4101742200200c200c2000491b22004100480d09200b450d0120022802e005200b20001013220b0d020c060b20022802e005210b0c020b20001012220b450d040b200220003602e4052002200b3602e005200528020021000b2005200020016a360200200b20006a200a200110f5011a2003410c6a22032008470d000b0b200241013602e801200241e8016a200241e0056a101c200d280200210b2002200d28020822013602e801200241e8016a200241e0056a101c02400240024020022802e4052203200528020022006b20014f0d00200020016a22052000490d0620034101742200200520052000491b22004100480d062003450d0120022802e0052003200010132203450d020c040b20022802e00521030c040b2000101222030d020b200041011016000b200041011016000b200220003602e405200220033602e005200241e8056a28020021000b200241e0056a41086a2205200020016a360200200320006a200b200110f5011a02400240024020022802e4052200200528020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802e0052000200110132200450d020c040b20022802e00521000c040b2001101222000d020b200141011016000b1010000b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2203200141086a360200200020016a427f3700002003280200210320022802e005210520044101470d0302402007450d002007410c6c21002009210103400240200141046a280200450d00200128020010140b2001410c6a2101200041746a22000d000b0b0240200e450d00200910140b0240200d41046a280200450d00200d28020010140b200d10140c030b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000b200241e8056a280200210320022802e00521050b200241c0076a24002003ad4220862005ad840ba61607017f027e037f017e017f037e047f230041f0036b2202240002400240200129037022034202520d00200241086a20014188016a41d80010f5011a420021030c010b200241fe006a2001410b6a2d00003a0000200241e0006a41086a2001411c6a290200370300200241e0006a410d6a200141216a290000370000200220012f00093b017c200220012902143703602001410c6a280200210520012d0008210620012802102107200241b8016a200141e4006a290000370300200241b0016a200141dc006a290000370300200241a8016a200141d4006a290000370300200241a0016a200141cc006a29000037030020024198016a200141c4006a29000037030020024180016a41106a2001413c6a29000037030020024180016a41086a200141346a2900003703002002200129002c3703800120012903002108200241c0016a41106a200141f0006a220941106a290300370300200241c0016a41086a200941086a290300370300200220092903003703c00120014180016a290300210a2001290378210b4200210c200241a0026a41086a22094200370300200242003703a00241dd81c000410d200241a0026a1000200241086a41086a2009290300370300200220022903a00237030842002104024002400240024002400240024002400240200241086a41104184a1c100410041001001417f460d00200242003703a002200241086a4110200241a0026a41084100100141016a41084d0d0120022903a00221040b024020034201520d00200b500d032004200a200a2004541b22032003200a7d200b827d210c0b200241a0026a200c1011200241f4016a41026a20022d00a2023a0000200241086a41086a2209200241b3026a290000370300200241086a410d6a220d200241b8026a290000370000200220022f01a0023b01f401200220022900ab0237030820022800a302210e20022800a702210f200241d8016a410d6a200d290000370000200241d8016a41086a2009290300370300200220022903083703d801200241dc036a41026a2209200241fc006a41026a2d00003a0000200241a0026a41086a220d200241e0006a41086a290300370300200241a0026a410d6a2210200241e0006a410d6a290000370000200220022f017c3b01dc03200220022903603703a0020240024002400240024002400240200641ff01714101470d00200241e0036a2005410676103d20022802e8032005413f7122054d0d01200241d8036a41026a20022802e00320054105746a220541026a2d00003a0000200241c0036a200541136a290000370300200241c5036a200541186a290000370000200220052f00003b01d8032002200529000b3703b80320052800072107200528000321054101210920022802e4030d020c030b200241d8036a41026a20092d00003a0000200241b8036a41086a200d290300370300200241b8036a410d6a2010290000370000200220022f01dc033b01d803200220022903a0023703b8030c030b4100210920022802e403450d010b20022802e00310140b2009450d010b200241e0036a41026a200241d8036a41026a2d00003a0000200241a0026a41086a200241b8036a41086a290300370300200241a0026a410d6a200241b8036a410d6a290000370000200220022f01d8033b01e003200220022903b8033703a002410021090c010b4101210941152107419f95c10021050b2002419c026a41026a2206200241e0036a41026a2d00003a0000200241086a41086a220d200241a0026a41086a2210290300370300200241086a41106a200241a0026a41106a290300370300200220022f01e0033b019c02200220022903a00237030802402009450d002000200536020420004101360200200041086a200736020020014188016a1042200241f0036a24000f0b2002418b026a200d29030037000020024190026a200241086a410d6a290000370000200220022f019c023b01f801200220073600ff01200220053600fb012002200229030837008302200220062d00003a00fa01200220083703a002201020014188016a41d80010f501210d2002419f036a200f3600002002419b036a200e36000020024190036a200241c0016a41106a29030037030020024188036a2201200241c0016a41086a2903003703002002419a036a200241f4016a41026a2d00003a0000200241a3036a20022903d801370000200241ab036a200241d8016a41086a290300370000200241b0036a200241d8016a410d6a290000370000200220022903c00137038003200220022f01f4013b0198032002410036021020024201370308200241a0026a200241086a108301200d200241086a1082010240024002400240024002400240024002402002290380034201520d0020012903002203420c882204420120044201561b22044200510d0c20024190036a2903002004802104200228020c2205200241106a28020022016b41024f0d01200141026a22092001490d0a20054101742201200920092001491b22014100480d0a2005450d05200228020820052001101322050d060c0e0b0240200228020c200241106a2802002201470d00200141016a22052001490d0a20014101742209200520052009491b22094100480d0a2001450d02200228020820012009101322050d030c0d0b200228020821050c030b200228020821050c050b200910122205450d0a0b2002200936020c20022005360208200241106a28020021010b200241106a200141016a360200200520016a41003a00000c030b200110122205450d080b2002200136020c20022005360208200241106a28020021010b200241106a200141026a360200200520016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b024002400240200228020c2206200241106a28020022016b41204f0d00200141206a22052001490d0420064101742201200520052001491b22094100480d042006450d0120022802082006200910132205450d020c090b200228020821050c090b2009101222050d070b200941011016000b41b185c00041331015000b1010000b41e0bbc2001018000b4184c4c1001018000b200941011016000b200141011016000b2002200936020c20022005360208200241106a2802002101200921060b200520016a220920024198036a2207290000370000200941186a200741186a290000370000200941106a200741106a290000370000200941086a200741086a290000370000024002400240200141206a2201418102490d00200241086a41186a22094200370300200241086a41106a22074200370300200241086a41086a220e42003703002002420037030820052001200241086a1009200241b8036a41186a2009290300370300200241b8036a41106a2007290300370300200241b8036a41086a200e290300370300200220022903083703b803200241b8036a412020024180016a200241f8016a100a210120060d010c020b2005200120024180016a200241f8016a100a21012006450d010b200510140b02402001450d002000418798c10036020420004101360200200041086a411a360200200d1042200241f0036a24000f0b200241b8036a41186a200241f8016a41186a290300370300200241b8036a41106a200241f8016a41106a290300370300200241b8036a41086a200241f8016a41086a290300370300200220022903f8013703b80320022903a0022104200241086a200d41d80010f5011a420121030b200041086a2003370300200041306a2004370300200041106a20022903b803370300200041186a200241b8036a41086a290300370300200041206a200241b8036a41106a290300370300200041286a200241b8036a41186a290300370300200041386a200241086a41d80010f5011a20004100360200200241f0036a24000be90104027f017e017f017e230041206b22022400200241106a41086a220342003703002002420037031041b291c0004115200241106a1000200241086a2003290300370300200220022903103703000240024002400240200241104184a1c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d022002290310210441082105410810122203450d010c030b42052104410821054108101222030d020b200541011016000b41b185c00041331015000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840b13002000410236020420004180b7c2003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242013700000f0b410841011016000b1300200041073602042000418c99c1003602000b130020004104360204200041d0b8c2003602000bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d4012000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d4012000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000b0b0be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510132204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310132204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101322040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101322040d0a0c0e0b2005101222040d110b200541011016000b200228020021040c050b200228020021040c070b2003101222040d0b0b200341011016000b200310122204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510122204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101322040d020c070b200228020021040c020b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011016000b200541011016000b200341011016000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d501200041086a22002001470d000b0b0b2700200028020c200041106a2802001006200041146a350200100c200041186a350200100c00000b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10f5011a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010f4011a0b20010b0d0042cecdbec7a4a882e3f0000b7c01017f230041306b22022400200241146a410a3602002002410a36020c200220003602082002200041046a3602102001411c6a2802002100200128021821012002412c6a41023602002002420237021c200241b0bec2003602182002200241086a36022820012000200241186a10f2012101200241306a240020010b9e0c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b200310c301450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641d8a4c1002107410021084102210941b002210a41a8a5c100210b41a8a5c100210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe037141087621134193aac10021144100211541022116419f01211741d5aac100211841d5aac1002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041d7a7c10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e4193aac100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f20024193aac100470d000b0b41012102200f410171450d0c0c0e0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff0371210041f3abc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41f0aec100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241f0aec100470d000b0b41012102200f410171450d0b0c0d0b20082011103a000b201141af021039000b20152011103a000b2011419e011039000b41e0bdc2001018000b41e0bdc2001018000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e0340024002400240024002400240024020024101460d00024020024102460d0020024103470d062005422088a741ff0171417f6a220241044b0d06024020020e050006040503000b200542ffffffff8f6083210541fd002100410321020c070b41dc002100410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c00084210541dc002100410321020c040b200542ffffffff8f608342808080802084210541fb002100410321020c030b200542ffffffff8f608342808080803084210541f5002100410321020c020b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f83200542808080807083842105410321020c020b200542ffffffff8f6083428080808010842105410321020c010b200141186a28020041272001411c6a28020028021011000021020c020b200f2802002000200e280200280210110000450d000b41010f0b20020bba0201037f23004180016b220224000240024002400240200128020022034110710d0020034120710d012000200110c001210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441d7006a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b20002802002103410021000340200220006a41ff006a2003410f712204413072200441376a2004410a491b3a00002000417f6a2100200341047622030d000b20004180016a22034181014f0d01200141e2a3c1004102200220006a4180016a410020006b10c101210020024180016a240020000f0b2003418001103a000b2003418001103a000b9709010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a3602002003428080808080043703082003200036022041002106200341003602182003410036021020032005360230200320053602280240024002400240024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2100200341346a2101200341306a210b4101210603402000200741206a2d00003a00002003200741086a28020036020c20032007410c6a280200360208410021020240024002400240200741186a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b2007411c6a280200220c200128020022044f0d0a200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b2007411c6a28020021040b410121020b200341086a410c6a2004360200200341086a41086a2002360200410021020240024002400240200741106a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b200741146a280200220c200128020022044f0d0b200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b200741146a28020021040b410121020b200341086a41146a2004360200200341086a41106a20023602000240024020072802004101470d00200741046a2802002202200128020022044f0d07200b28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d072004200241086a3602000b2002280200200341086a200241046a2802001100000d032006200a4f0d02200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d000c030b0b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000f0b41d0bec200200220041038000b41e0bdc2001018000b41c0bec200200c20041038000b41c0bec200200c20041038000b09002000200110c0010b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b2205240020052001200220032004410010fc01200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa710fb01200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff007110fa01200641106a20012002200741ff007110fb01200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bd5cb020200418080c0000b90bc0153797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e53797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63653a65787472696e7369635f696e64657853797374656d20506172656e744861736853797374656d204576656e7473426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d4163636f756e744e6f6e6365543a3a496e64657845787472696e736963436f756e74416c6c45787472696e736963734c656e426c6f636b4861736845787472696e7369634461746152616e646f6d536565644e756d626572506172656e744861736845787472696e73696373526f6f74446967657374543a3a4469676573744576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c6964207479706541757261204c61737454696d657374616d704175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e72734f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f6f70732f61726974682e727300000000000000002f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c7372632f6c6962636f72652f726573756c742e72733a203a617574683a6c656e436f6e73656e737573204f726967696e616c417574686f7269746965733a636f64652f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f636f6e73656e7375732f7372632f6c69622e72736f66666c726570304e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e742064617461217265706f72745f6d69736265686176696f726e6f74655f6f66666c696e6572656d61726b7365745f686561705f70616765737365745f636f64657365745f73746f726167652053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f7465207468652070726576696f757320626c6f636b27732076616c696461746f72206d6973736564207468656972206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f75722e5f7265706f7274436f6e73656e7375734f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a68656170706167657300002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f736f72742e7273617373657274696f6e206661696c65643a206d6964203c3d206c656e00000000000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f6d6f642e727354696d657374616d702044696455706461746554696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f74696d657374616d702f7372632f6c69622e727354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f64496e646963657320456e756d53657454696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c426c6f636b506572696f643e206265747765656e2073657175656e7469616c20626c6f636b734e65774163636f756e74496e6465782041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465782f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f696e64696365732f7372632f6c69622e727354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e742064617461696e76616c69642073616c74496e6469636573204e657874456e756d536574496e64696365734e657874456e756d536574543a3a4163636f756e74496e646578456e756d5365742054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e73657420536574207468652063757272656e742074696d652e2045787472696e736963207769746820746869732063616c6c2073686f756c6420626520706c616365642061742074686520737065636966696320706f736974696f6e20696e20746865206561636820626c6f636b2028737065636966696564206279207468652054726169743a3a54494d455354414d505f5345545f504f534954494f4e29207479706963616c6c7920617420746865207374617274206f6620746865206561636820626c6f636b2e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e74207370656369666965642062792060626c6f636b5f706572696f64602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d704e6f77426c6f636b506572696f6444696455706461746520446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d2028616e6420616476697365642920706572696f64206265747765656e20626c6f636b732e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e6163636f756e742068617320746f6f206665772066756e647342616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e636573797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e676665657370726f706f73616c73656c656374696f6e636f756e63696c4e65774163636f756e745265617065644163636f756e745472616e73666572205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e20416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e7472616e736665727365745f62616c616e636520536574207468652062616c616e636573206f66206120676976656e206163636f756e742e77686f66726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572207374616b65722e6465737476616c7565546f74616c49737375616e6365543a3a42616c616e63654578697374656e7469616c4465706f7369745472616e736665724665654372656174696f6e46656556657374696e6756657374696e675363686564756c653c543a3a42616c616e63653e4672656542616c616e6365526573657276656442616c616e63652054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e20285468697320697320646966666572656e7420616e642077686f6c6c7920756e72656c6174656420746f207468652060426f6e64616765602073797374656d207573656420696e20746865207374616b696e67206d6f64756c652e29205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420697320616c6f6e65207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865726d6f72652c20604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e75702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e204174206c6561737420617320626967206173205265636c61696d5265626174652e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420616c6c6f77656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20616d6f756e74206f66207374616b65206f6e207468652073797374656d2e42616c616e6365736a6f7973747265616d2d6e6f6465000000df6acb689907609b0100000037e397fc7c91f5e40100000040fe3ad401f8959a02000000d2bc9897eed08f1501000000dd718d5cc53262d40100000042616c616e636573204578697374656e7469616c4465706f7369746e6f7420656e6f75676820667265652066756e64734469676573744974656d206e6f7420657175616c42616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656542616c616e6365732056657374696e6776657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c756562616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e74676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c75652f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f62616c616e6365732f7372632f6c69622e72736e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d65436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573456c656374696f6e53746172746564416e6e6f756e63696e6753746172746564416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465642041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f644175746f53746172745374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e526f756e644578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e436f6d6d69746d656e74735665633c543a3a486173683e566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e416e6e6f756e63696e67506572696f6452657665616c696e67506572696f64436f756e63696c53697a6543616e6469646163794c696d69744d696e436f756e63696c5374616b654e65775465726d4475726174696f6e4d696e566f74696e675374616b65436f756e63696c456c656374696f6e2f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e7273436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b6521656c656374696f6e206e6f7420696e20616e6e6f756e63696e67207374616765656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736475706c696361746520636f6d6d69746d656e746661696c656420746f207265736572766520766f74696e67207374616b6521656c656374696f6e206e6f7420696e20766f74696e672073746167654f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74766f74696e67207374616b6520746f6f206c6f7773616c7420746f6f206c61726765636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e672073746167656d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a654f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c6d696e696d756d207374616b65206d7573742062652070726f76696465646f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f70706564436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a656170706c7972657665616c7365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f647365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b657365745f706172616d5f6e65775f7465726d5f6475726174696f6e7365745f706172616d5f636f756e63696c5f73697a657365745f706172616d5f63616e6469646163795f6c696d69747365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f7374617274666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747372632f6c6962616c6c6f632f7665632e7273617373657274696f6e206661696c65643a20656e64203c3d206c656e63616e6e6f74207472616e7366657220696c6c69717569642066756e64735374616b696e6720426f6e646167655374616b696e67204e6f6d696e61746f7273466f725265776172644f66666c696e655761726e696e674f66666c696e65536c617368204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e42616c616e6365204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e756e7374616b656e6f6d696e617465756e6e6f6d696e61746572656769737465725f707265666572656e6365737365745f73657373696f6e735f7065725f6572617365745f626f6e64696e675f6475726174696f6e7365745f76616c696461746f725f636f756e74666f7263655f6e65775f6572617365745f6f66666c696e655f736c6173685f67726163657365745f696e76756c6e657261626c657320536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e205365742074686520676976656e206163636f756e74277320707265666572656e636520666f7220736c617368696e67206265686176696f75722073686f756c64207468657920626520612076616c696461746f722e20416e206572726f7220286e6f2d6f7029206966206053656c663a3a696e74656e74696f6e7328295b696e74656e74696f6e735f696e6465785d20213d206f726967696e602e696e74656e74696f6e735f696e646578707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2057696c6c2070616e69632069662063616c6c6564207768656e20736f757263652069736e27742063757272656e746c79206e6f6d696e6174696e67207461726765742e2055706461746573204e6f6d696e6174696e672c204e6f6d696e61746f7273466f7220616e64204e6f6d696e6174696f6e42616c616e63652e7461726765745f696e6465787461726765742052657472616374207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e204465636c617265207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e5374616b696e675374616b696e6720496e76756c657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b207165645374616b696e672043757272656e744f66666c696e65536c6173685374616b696e6720496e74656e74696f6e735374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672056616c696461746f72507265666572656e636573706f73206465726976656420636f72726563746c792066726f6d2053656c663a3a696e74656e74696f6e7328293b206170706c795f756e7374616b652063616e206f6e6c79206661696c20696620706f732077726f6e673b2053656c663a3a696e74656e74696f6e73282920646f65736e2774206368616e67653b207165645374616b696e6720466f7263696e674e65774572615374616b696e6720426f6e64696e674475726174696f6e496e76616c696420696e6465785374616b696e672043757272656e744e6f6d696e61746f7273466f7200000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f6d6f642e727356616c696461746f72436f756e744d696e696d756d56616c696461746f72436f756e7453657373696f6e7350657245726153657373696f6e52657761726450657262696c6c4f66666c696e65536c6173684772616365426f6e64696e674475726174696f6e496e76756c657261626c657343757272656e7445726156616c696461746f72507265666572656e636573496e74656e74696f6e734e6f6d696e6174696e674e6f6d696e61746f7273466f7243757272656e744e6f6d696e61746f7273466f7243757272656e7453657373696f6e52657761726443757272656e744f66666c696e65536c6173684e65787453657373696f6e735065724572614c6173744572614c656e6774684368616e67655374616b6552616e6765506169724f663c42616c616e63654f663c543e3e426f6e64616765536c617368436f756e74466f7263696e674e65774572612829526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520626c6f636b20617420776869636820746865206077686f6027732066756e6473206265636f6d6520656e746972656c79206c69717569642e20546865206869676865737420616e64206c6f77657374207374616b65642076616c696461746f7220736c61736861626c652062616c616e6365732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e742e20416c6c206e6f6d696e61746f72202d3e206e6f6d696e65652072656c6174696f6e73686970732e20416c6c20746865206163636f756e7473207769746820612064657369726520746f207374616b652e20507265666572656e636573207468617420612076616c696461746f72206861732e205468652063757272656e742065726120696e6465782e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c65206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c69736520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e5265776172645374616b696e67205374616b6552616e67655374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e735065724572615374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204f66666c696e65536c6173685374616b696e672053657373696f6e5265776172640000000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7374616b696e672f7372632f6c69622e727343616e6e6f74207374616b6520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74207374616b6520696620616c7265616479207374616b65642e43616e6e6f74206e6f6d696e61746520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74206e6f6d696e61746520696620616c7265616479207374616b65642e5374616b696e67204e6f6d696e6174696e674163636f756e74206d757374206265206e6f6d696e6174696e67496e76616c69642074617267657420696e64657863616e6e6f7420756e7374616b65207768656e2074686572652061726520746f6f20666577207374616b6564207061727469636970616e747350726f706f73616c4372656174656450726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564566f74656454616c6c7946696e616c697a656452756e74696d6555706461746564202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e4861736854616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e2f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e7273417070726f76616c51756f72756d4d696e5374616b6542616c616e63654f663c543e43616e63656c6c6174696f6e46656552656a656374696f6e466565566f74696e67506572696f644e616d654d61784c656e4465736372697074696f6e4d61784c656e5761736d436f64654d61784c656e50726f706f73616c436f756e7450726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e41637469766550726f706f73616c4964735665633c7533323e5761736d436f6465427948617368543a3a486173685665633c75383e566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c207533322954616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e20476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e0000000000617474656d707420746f20646976696465206279207a65726f000000000000002f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e46656550726f706f73616c732052656a656374696f6e46656550726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732054616c6c79526573756c74736372656174655f70726f706f73616c766f74655f6f6e5f70726f706f73616c63616e63656c5f70726f706f73616c2043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f672920606060766f746520706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67297374616b656e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f7273466565732043757272656e745472616e73616374696f6e46656543686172676564204665652063686172676564202865787472696e7369635f696e6465782c206665655f616d6f756e7429753332416d6f756e7453756469644b65794368616e67656420546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e4163636f756e7449642041207375646f206a75737420746f6f6b20706c6163652e626f6f6c4e657753657373696f6e204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7375646f2f7372632f6c69622e72732f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73657373696f6e2f7372632f6c69622e727346656573205472616e73616374696f6e4279746546656546656573205472616e73616374696f6e42617365466565627974657320666565206f766572666c6f776e6f2065787472696e73696320696e64657820666f756e6466656520676f74206f766572666c6f772061667465722063686172676553657373696f6e204c6173744c656e6774684368616e676553657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e67746853657373696f6e204e6578744b6579466f7200617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f6f70732f61726974682e7273466565735472616e73616374696f6e4261736546656541737365744f663c543e5472616e73616374696f6e4279746546656543757272656e745472616e73616374696f6e46656520546865206065787472696e7369635f696e646578203d3e20616363756d756c617465645f6665657360206d61702c20636f6e7461696e696e67207265636f72647320746f20747261636b20746865206f766572616c6c2063686172676564206665657320666f722065616368207472616e73616374696f6e2e20416c6c207265636f7264732073686f756c642062652072656d6f7665642061742066696e616c6973652073746167652e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e7375646f7365745f6b65796e65773c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636570726f706f73616c426f783c543a3a50726f706f73616c3e5375646f4b65797365745f6c656e677468666f7263655f6e65775f73657373696f6e20466f726365732061206e65772073657373696f6e2e6170706c795f72657761726473205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e436f6d706163743c543a3a426c6f636b4e756d6265723e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e56616c696461746f727353657373696f6e4c656e67746843757272656e74496e64657843757272656e745374617274543a3a4d6f6d656e74466f7263696e674e657753657373696f6e4c6173744c656e6774684368616e67654e6578744b6579466f724e65787453657373696f6e4c656e67746820546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206973207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b6579496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165642f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b696e697469616c6973655f626c6f636b6170706c795f65787472696e736963696e686572656e745f65787472696e73696373636865636b5f696e686572656e747376616c69646174655f7472616e73616374696f6e2f686f6d652f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e302e302f7372632f636f6465632e72730000000000000000000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000000000000000000053746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e45787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e6365626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e6465780000000000000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000000000002f72757374632f653534343934373237383535636431343232396635643435363539316564326132663032376334362f7372632f6c6962616c6c6f632f736c6963652e7273436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e64734174436f756e63696c5465726d456e646564426c6f636b4e756d626572696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64652f686f6d652f6d6f6b687461722f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e7273626164207369676e617475726520696e2065787472696e7369637372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e7273416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e5465726d456e64734174543a3a426c6f636b4e756d626572436f756e63696c6d757374207365742066757475726520626c6f636b206e756d62657263616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f725f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e7365745f636f756e63696c6164645f636f756e63696c5f6d656d62657272656d6f76655f636f756e63696c5f6d656d6265727365745f7465726d5f656e64735f61742053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f7665543a3a4163636f756e74496420416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e74735665633c543a3a4163636f756e7449643e61757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e4578706c69636974207265706f7274696e67206e6f7420616c6c6f77656445787472696e7369635375636365737345787472696e7369634661696c656420416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e48617368206e6f7420657175616c000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f686f6d652f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e727352756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e67617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a206361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e7273000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839397372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d7372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f66206000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e85927372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f662060004190bcc1000bb08f01500110001e0000006e0110005c0000004e0100000300000000000000d00110000c0000000100000000000000974d10000c00000000000000dc0110000800000000000000845010008c61100000000000000000008450100000000000000000000100000000000000e40110000e0000000000000000000000223e10000300000000000000000000000000000000000000845010006c61100000000000000000008450100000000000000000000000000000000000f2011000100000000000000000000000223e10000300000000000000000000000000000000000000845010006c61100000000000000000008450100000000000000000000000000000000000020210000900000001000000000000007e4c10000e00000000000000bd341000070000000000000084501000a4611000000000000000000084501000000000000000000001000000000000000b0210000d0000000100000000000000223e10000300000000000000c43410000700000000000000845010007c61100000000000000000008450100000000000000000000100000000000000180210000a0000000000000000000000bd341000070000000000000000000000000000000000000084501000a461100000000000000000008450100000000000000000000100000000000000220210000600000000000000000000007e4c10000e00000000000000000000000000000000000000845010008c61100000000000000000009c61100001000000000000000100000000000000280210000a0000000000000000000000bd341000070000000000000000000000000000000000000084501000a461100000000000000000008450100000000000000000000100000000000000320210000e0000000000000000000000bd341000070000000000000000000000000000000000000084501000a4611000000000000000000084501000000000000000000001000000000000004002100006000000000000000000000046021000090000000000000000000000000000000000000084501000b4611000000000000000000084501000000000000000000001000000000000004f021000060000000000000000000000550210001a0000000000000000000000000000000000000084501000c46110000000000000000000845010000000000000000000010000000c00000000000000010000000d0000000c00000000000000010000000e0000000c00000000000000010000000f0000006f021000420000000c0000000000000001000000100000000c00000000000000010000000e0000000c00000000000000010000000e000000f602100022000000180310005a000000b5000000030000007203100028000000180310005a000000bb00000003000000a003100019000000c003100048000000bb0100002d000000a003100019000000100410005a000000ef0000001e0000008450100000000000b0041000020000009b04100015000000e503000005000000974b100028000000dd0410005f000000b80000000100000000000000730510001200000000000000746310000100000000000000000000008c631000010000000000000000000000850510000c0000000000000094631000010000000000000000000000ac631000010000000000000000000000910510000600000000000000b4631000010000000000000000000000cc631000010000000000000000000000970510000e00000000000000d4631000010000000000000000000000ec631000010000000000000000000000a50510000800000000000000f46310000100000000000000000000000c641000010000000000000000000000ad0510000b00000000000000146410000100000000000000000000002c6410000100000000000000000000000f0710000700000000000000c434100007000000f50610001a00000000000000b10610000700000000000000b80610003d000000600610005100000000000000590610000700000000000000c4341000070000003e0610001b000000000000003606100005000000000000003b06100003000000f70510003f000000000000009f4210000300000000000000c434100007000000e50510001200000000000000d30510000500000000000000d80510000d000000b80510001b000000000000001f07100013000000000000000000000032071000120000000000000000000000000000000000000084501000806410000000000000000000845010000000000000000000000000000c00000000000000010000000d000000ef4c100023000000dd0410005f000000b800000001000000c007100048000000b001000023000000c007100048000000b101000023000000990710001c0000007e51100018000000e40300000d0000005007100049000000870200001d00000050071000490000009d0000003a0000005007100049000000a4000000300000001b0810002b000000460810005f000000b400000004000000d608100030000000460810005f000000a800000004000000060910004c000000460810005f000000a90000000400000000000000520910000f0000000000000084651000020000000000000000000000946510000400000000000000763e100009000000dc0910000c000000610910002200000084501000000000008309100041000000c409100018000000974b100028000000e80910005d0000004800000001000000974b100028000000460810005f0000009c00000001000000ef4c100023000000e80910005d0000004800000001000000ef4c100023000000460810005f0000009c0000000100000000000000b80a10000b0000000000000000000000c30a10000f0000000000000000000000000000000000000084501000ac6610000000000000000000bc66100001000000000000000100000000000000d20a1000070000000100000000000000c30a10000f000000000000002b4e1000110000000000000084501000c46610000000000000000000d46610000100000000000000010000000c000000000000000100000011000000ef0a10001f0000000c00000000000000010000000e000000d90a100016000000000000000e0b100003000000000000000867100001000000000000000000000020671000080000000000000000000000c40c10000300000000000000c70c100012000000110b1000160000008450100000000000270b1000550000007c0b10005b000000d70b10005d000000340c10002f0000008450100000000000630c10006100000000000000e20c10000300000000000000000000003b4410000900000000000000000000000000000000000000845010004468100000000000000000005468100001000000000000000100000000000000e50c10000b00000000000000000000003b4410000900000000000000000000000000000000000000845010005c68100000000000000000006c68100001000000000000000100000000000000f00c1000090000000000000000000000973e1000040000000000000000000000000000000000000084501000746810000000000000000000846810000100000000000000010000000c00000000000000010000000f000000570d1000240000000c000000000000000100000012000000260d1000310000000c00000000000000010000000d000000f90c10002d00000000000000d60d10000600000000000000130000000000000000000000140000000000000000000000020000000000000000000000000000000000000015000000000000000000000000000000dc0d10000900000000000000160000000000000000000000170000000000000000000000000000001800000000000000000000000200000000000000000000000000000000000000e50d100009000000000000001900000000000000000000001a0000000000000000000000000000001b00000000000000000000000200000000000000000000000000000000000000ee0d100004000000000000001c0000000000000002000000000000000000000000000000020000000000000000000000000000000200000000000000000000000000000000000000f20d100007000000000000001d00000000000000000000001e0000000000000000000000000000001f00000000000000000000000000000020000000000000000000000000000000f90d10000800000000000000210000000000000000000000220000000000000000000000000000002300000000000000000000000000000024000000000000000000000000000000010e10000700000000000000250000000000000000000000260000000000000000000000000000002700000000000000000000000000000028000000000000000000000000000000080e100007000000000000002900000000000000000000002a0000000000000000000000000000002b0000000000000000000000000000002c0000000000000000000000000000000f0e100004000000000000002d00000000000000000000002e000000000000000000000002000000000000000000000000000000000000002f000000000000000000000000000000944210000400000000000000300000000000000000000000310000000000000000000000000000003200000000000000000000000000000033000000000000000000000000000000130e100009000000000000003400000000000000000000003500000000000000000000000000000036000000000000000000000000000000370000000000000000000000000000001c0e10000800000000000000380000000000000000000000390000000000000000000000000000003a0000000000000000000000000000003b000000000000000000000000000000240e100007000000000000003c00000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003f0000000000000000000000000000002b0e10000a00000000000000487d1000020000000000000000000000b86c1000010000000000000000000000350e10000d00000000000000e4921000010000000000000000000000c06c1000010000000000000000000000420e10000800000000000000c86c1000040000000000000000000000e86c100001000000000000008d0e10001b000000760e100017000000763e100009000000763e100009000000712110000700000071211000070000004a0e10002c00000000000000a80e10000800000000000000486d1000020000000000000000000000786d1000010000000000000000000000b00e10000b00000000000000806d1000030000000000000000000000c86d1000010000000000000000000000370f10000400000000000000a242100023000000000000003b0f10000500000000000000e70e100013000000020f10003500000000000000e00e10000300000000000000a24210002300000000000000e30e10000400000000000000e70e10001300000000000000fa0e10000800000000000000e70e100013000000bb0e10002500000000000000400f10000d00000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000e46f100001000000000000000100000000000000570f10001200000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000ec6f100001000000000000000100000000000000690f10000b00000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000f46f100001000000000000000100000000000000740f10000b00000000000000000000004d0f10000a0000000000000000000000000000000000000084501000747010000000000000000000fc6f1000010000000000000001000000000000007f0f1000070000000100000000000000974d10000c00000000000000860f10001b00000000000000845010000470100000000000000000001470100001000000000000000000000000000000a10f10000b0000000100000000000000974d10000c000000000000004d0f10000a00000000000000845010007470100000000000000000001c7010000b000000000000000100000000000000ac0f10000f0000000100000000000000974d10000c000000000000004d0f10000a0000000000000084501000747010000000000000000000847010000c00000000000000010000006e151000290000003a151000340000001515100025000000cc141000490000000c00000000000000010000000d0000009614100036000000621210002700000084501000000000008912100053000000dc1210005a00000036131000550000008b1310004f000000da131000500000002a1410001500000084501000000000003f141000570000001d121000450000000c000000000000000100000040000000bb0f10005d000000181010002700000084501000000000003f1010005b0000009a1010005c000000f61010004a0000008450100000000000401110005d0000009d1110002d0000008450100000000000ca111000530000001d12100045000000ef4c1000230000001f1710005e000000a800000001000000974b1000280000001f1710005e000000a80000000100000000000000d31710000f000000000000008450100000000000000000000000000074721000010000000000000000000000e217100011000000000000007c72100001000000000000000000000084501000000000000000000000000000f31710000f000000000000008450100000000000000000000000000084501000000000000000000000000000021810000d0000000000000084501000000000000000000000000000845010000000000000000000000000000f1810000b0000000000000084501000000000000000000000000000845010000000000000000000000000001a181000100000000000000084501000000000000000000000000000845010000000000000000000000000002a1810000e000000000000008450100000000000000000000000000084501000000000000000000000000000381810000e00000000000000489b10000100000000000000000000008450100000000000000000004618100017000000223e100003000000000000008a191000090000000000000000000000973e1000040000000000000000000000000000000000000084501000907710000000000000000000845010000000000000000000010000000000000093191000050000000000000000000000981910001d0000000000000000000000000000000000000084501000a077100000000000000000008450100000000000000000000000000000000000b5191000050000000000000000000000223e1000030000000000000000000000000000000000000084501000b077100000000000000000008450100000000000000000000100000000000000ba1910001400000000000000000000002b4e1000110000000000000000000000000000000000000084501000d077100000000000000000008450100000000000000000000100000000000000ce191000120000000100000000000000974d10000c00000000000000e01910001f0000000000000084501000c077100000000000000000008450100000000000000000000100000000000000ff1910000a00000000000000000000002b4e1000110000000000000000000000000000000000000084501000d077100000000000000000008450100000000000000000000100000000000000091a10000f0000000100000000000000974d10000c00000000000000181a1000130000000000000084501000c0771000000000000000000084501000000000000000000001000000000000002b1a10000b0000000000000000000000361a10000c0000000000000000000000000000000000000084501000d077100000000000000000008450100000000000000000000100000000000000421a1000050000000100000000000000bd3410000700000000000000471a1000450000000000000084501000e0771000000000000000000084501000000000000000000001000000000000008c1a10001000000000000000000000007e4c10000e0000000000000000000000000000000000000084501000f077100000000000000000008450100000000000000000000100000000000000003410000c00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000f0771000000000000000000084501000000000000000000001000000000000009c1a10000f00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000f077100000000000000000008450100000000000000000000100000000000000ab1a10000b0000000000000000000000223e10000300000000000000000000000000000000000000845010000078100000000000000000008450100000000000000000000100000000000000b61a10000e0000000000000000000000223e10000300000000000000000000000000000000000000845010001078100000000000000000008450100000000000000000000100000000000000c41a10000f0000000000000000000000d93310000c00000000000000000000000000000000000000845010002078100000000000000000008450100000000000000000000100000000000000d31a10000f00000000000000000000007e4c10000e00000000000000000000000000000000000000845010003078100000000000000000008450100000000000000000000100000000000000e21a10000e0000000000000000000000d93310000c0000000000000000000000000000000000000084501000407810000000000000000000845010000000000000000000010000000c0000000000000001000000410000000c00000000000000010000000d0000000c0000000000000001000000110000000c0000000000000001000000420000000c00000000000000010000000e0000000c0000000000000001000000430000000c0000000000000001000000440000000c0000000000000001000000450000000c0000000000000001000000460000000c0000000000000001000000470000000c0000000000000001000000480000000c000000000000000100000049000000974b100028000000ff1a1000490000007b02000001000000ef4c100023000000ff1a1000490000007b02000001000000000000001c1f100005000000000000006c7b100001000000000000000000000084501000000000000000000000000000d53c10000400000000000000847b100002000000000000000000000084501000000000000000000000000000211f10000600000000000000b47b100003000000000000000000000084501000000000000000000000000000271f10001400000000000000589d1000010000000000000000000000845010000000000000000000000000003b1f10001300000000000000589d1000010000000000000000000000845010000000000000000000000000004e1f10001000000000000000589d1000010000000000000000000000845010000000000000000000000000005e1f10001b00000000000000fc7b100001000000000000000000000084501000000000000000000000000000791f10001700000000000000fc7b100001000000000000000000000084501000000000000000000000000000901f10001a00000000000000fc7b100001000000000000000000000084501000000000000000000000000000aa1f10001b00000000000000147c100001000000000000000000000084501000000000000000000000000000c51f10001b000000000000002c7c100001000000000000000000000084501000000000000000000000000000e01f10001600000000000000447c100001000000000000000000000084501000000000000000000000000000f61f100019000000000000005c7c1000010000000000000000000000845010000000000000000000000000000f2010001a00000000000000147c10000100000000000000000000008450100000000000000000000000000029201000130000000000000084501000000000000000000000000000845010000000000000000000000000003c20100014000000000000008450100000000000000000000000000084501000000000000000000000000000502010000e00000000000000747c100001000000000000000000000084501000000000000000000000000000663d10000500000000000000d93310000c00000000000000872010000a00000000000000bd3410000700000000000000663d10000500000000000000d93310000c00000000000000872010000a00000000000000bd3410000700000000000000d53c10000400000000000000974d10000c00000000000000912010000400000000000000c434100007000000000000008120100006000000000000007e4c10000e000000000000007b2010000600000000000000d93310000c000000000000007320100008000000000000007e4c10000e00000000000000672010000c00000000000000223e10000300000000000000622010000500000000000000223e100003000000000000005e2010000400000000000000973e100004000000a82010001c0000009520100013000000770400000900000000000000062110000600000000000000287d1000010000000000000000000000307d10000100000000000000000000000c2110000e00000000000000388a1000020000000000000000000000387d10000200000000000000000000001a2110000c00000000000000487d1000020000000000000000000000587d10000100000000000000712110000700000012221000380000007821100055000000cd21100045000000763e1000090000007121100007000000262110004b00000000000000663d1000050000000000000084501000000000000000000000000000447f10000300000000000000000000004a22100007000000000000005c7f1000010000000000000000000000747f10000300000000000000000000005122100008000000000000008c7f100001000000000000000000000084501000000000000000000000000000592210000a00000000000000a47f1000010000000000000000000000bc7f1000020000000000000000000000632210001400000000000000cc7f1000020000000000000000000000fc7f10000300000000000000000000007722100014000000000000002c961000010000000000000000000000148010000100000000000000000000008b22100014000000000000002c9610000100000000000000000000001c8010000100000000000000000000009f2210001300000000000000248010000100000000000000000000003c801000010000000000000000000000b22210000d000000000000004c96100001000000000000000000000044801000020000000000000000000000bf22100017000000000000002480100001000000000000000000000054801000010000000000000000000000d622100011000000000000005c80100001000000000000000000000074801000010000000000000021261000300000008450100000000000ea2510003700000000000000fa2410001000000000000000002410000c000000ba251000300000008450100000000000ea2510003700000000000000b42510000600000000000000a24210002300000000000000a82510000c00000000000000002410000c0000002b251000440000006f2510003900000000000000fa2410001000000000000000002410000c000000000000000a25100005000000000000000f2510001c0000005e241000560000008450100000000000b42410004600000038241000260000000c2410002c000000000000009f4210000300000000000000002410000c000000e023100020000000482310004f00000097231000490000002423100024000000000000001a2310000a000000000000002b4e100011000000e7221000330000000028100048000000ed0900000e00000000000000482810000e0000000000000000000000223e1000030000000000000000000000000000000000000084501000788810000000000000000000608710000100000000000000010000000000000056281000150000000000000000000000223e100003000000000000000000000000000000000000008450100068871000000000000000000078871000010000000000000001000000000000006b2810000e00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000c087100000000000000000008087100001000000000000000100000000000000792810000d00000000000000000000008628100007000000000000000000000000000000000000008450100088871000000000000000000098871000010000000000000001000000000000001a2110000c000000000000000000000086281000070000000000000000000000000000000000000084501000a08710000000000000000000b0871000010000000000000001000000000000008d281000110000000000000000000000223e1000030000000000000000000000000000000000000084501000788810000000000000000000b8871000010000000000000001000000000000009e2810000f00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000c08710000000000000000000d087100001000000000000000100000000000000ad2810000c00000000000000000000002b4e1000110000000000000000000000000000000000000084501000a88810000000000000000000d887100002000000000000000100000000000000b92810000a00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000608810000000000000000000e887100001000000000000000100000000000000c3281000140000000100000000000000974d10000c000000000000000f2510001c0000000000000084501000f087100000000000000000000088100001000000000000000100000000000000d72810000a00000000000000000000002b4e1000110000000000000000000000000000000000000084501000a888100000000000000000000888100001000000000000000100000000000000e12810000a0000000100000000000000974d10000c00000000000000974d10000c00000000000000845010009088100000000000000000001088100001000000000000000000000000000000eb2810000d0000000100000000000000974d10000c000000000000002b4e1000110000000000000084501000a888100000000000000000001888100001000000000000000100000000000000f8281000140000000100000000000000974d10000c000000000000002b4e1000110000000000000084501000a8881000000000000000000020881000010000000000000001000000000000000c291000140000000000000000000000d93310000c0000000000000000000000000000000000000084501000288810000000000000000000988710000100000000000000010000000000000020291000130000000000000000000000d93310000c0000000000000000000000000000000000000084501000288810000000000000000000b087100001000000000000000100000000000000332910001200000000000000000000007e4c10000e00000000000000000000000000000000000000845010009088100000000000000000003888100001000000000000000000000000000000452910001300000000000000000000007e4c10000e00000000000000000000000000000000000000845010006088100000000000000000004088100001000000000000000100000000000000582910000a000000000000000000000062291000140000000000000000000000000000000000000084501000488810000000000000000000588810000100000000000000010000000000000076291000070000000100000000000000974d10000c000000000000007e4c10000e000000000000008450100060881000000000000000000070881000010000000000000001000000000000007d2910000a0000000100000000000000974d10000c00000000000000223e10000300000000000000845010007888100000000000000000008888100001000000000000000100000000000000872910000d000000000000000000000094291000020000000000000000000000000000000000000084501000908810000000000000000000a088100001000000000000000000000000000000962910000f0000000000000000000000a5291000280000000000000000000000000000000000000084501000a88810000000000000000000b8881000010000000000000001000000012f10002a0000000c00000000000000010000004a000000b12e100050000000882e1000290000000c00000000000000010000004b000000402e1000480000000c00000000000000010000004c000000ec2d1000540000009e2d10004e0000000c000000000000000100000048000000702d10002e0000009c2c100069000000052d10006b000000852c1000170000000c00000000000000010000004d000000632c1000220000003a2c100029000000122c100028000000ed2b100025000000ac2b1000410000000c000000000000000100000040000000882b100024000000502b1000380000000c000000000000000100000042000000142b10003c0000000c00000000000000010000000f000000d72a10003d0000000c000000000000000100000011000000632a1000740000000c00000000000000010000000d000000492a10001a0000000c00000000000000010000000e000000cd2910007c00000090301000190000004030100048000000bb0100002d00000000301000390000004030100048000000100200002d0000000028100048000000e70900000a000000974b100028000000a93010005d0000005300000001000000ef4c100023000000a93010005d000000530000000100000000000000093210000f00000000000000388a1000020000000000000000000000488a1000030000000000000000000000183210001000000000000000388a100002000000000000000000000084501000000000000000000000000000283210001500000000000000608a1000020000000000000000000000845010000000000000000000000000003d3210000500000000000000708a1000030000000000000000000000888a1000040000000000000000000000423210000e00000000000000a88a100001000000000000000000000084501000000000000000000000000000503210000e00000000000000b08a1000020000000000000000000000c08a10000100000000000000763e100009000000223e100003000000a83210000800000012331000270000003933100040000000223e100003000000043310000e000000763e100009000000223e100003000000fc32100008000000a832100008000000b032100028000000d832100014000000ec321000100000009032100018000000223e1000030000008c321000040000005e3210002e000000974b100028000000793310004a000000cb0000000100000000000000c33310000e0000000000000000000000223e1000030000000000000000000000000000000000000084501000548f10000000000000000000648f100002000000000000000100000000000000d1331000080000000000000000000000d93310000c0000000000000000000000000000000000000084501000748f10000000000000000000848f100001000000000000000100000000000000e53310000f0000000000000000000000d93310000c00000000000000000000000000000000000000845010008c8f100000000000000000009c8f100001000000000000000100000000000000f43310000c0000000000000000000000d93310000c0000000000000000000000000000000000000084501000a48f10000000000000000000b48f100001000000000000000100000000000000003410000c00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000bc8f10000000000000000000cc8f1000010000000000000001000000000000000c3410000a0000000000000000000000223e1000030000000000000000000000000000000000000084501000d48f10000000000000000000845010000000000000000000010000000000000016341000110000000000000000000000223e1000030000000000000000000000000000000000000084501000e48f100000000000000000008450100000000000000000000100000000000000273410000e0000000000000000000000223e1000030000000000000000000000000000000000000084501000f48f100000000000000000008450100000000000000000000100000000000000353410000d0000000000000000000000223e1000030000000000000000000000000000000000000084501000049010000000000000000000149010000100000000000000010000000000000042341000090000000100000000000000223e100003000000000000004b3410004b00000000000000845010001c90100000000000000000002c9010000100000000000000010000000000000096341000110000000000000000000000a73410000800000000000000000000000000000000000000845010003490100000000000000000004490100001000000000000000100000000000000af3410000e0000000100000000000000bd3410000700000000000000c43410000700000000000000845010004c90100000000000000000005c90100001000000000000000100000000000000cb3410000f0000000100000000000000223e10000300000000000000da3410001d00000000000000845010006490100000000000000000008450100000000000000000000100000000000000f73410001800000001000000000000000f3510001300000000000000fc3210000800000000000000845010007490100000000000000000008450100000000000000000000100000000000000223510000c0000000100000000000000223e100003000000000000002e3510001b0000000000000084501000849010000000000000000000845010000000000000000000010000000c00000000000000010000004b000000a837100032000000da3710002f0000000c00000000000000010000004700000062371000460000000c00000000000000010000004e000000163710004c0000000c000000000000000100000049000000da3610003c0000000c00000000000000010000004f0000001a361000510000000c0000000000000001000000500000000c0000000000000001000000510000000c0000000000000001000000520000000c000000000000000100000011000000eb3510002f0000000c000000000000000100000053000000cb351000200000000c00000000000000010000000e00000082351000490000000c00000000000000010000000e00000049351000390000000c00000000000000010000000e0000000c00000000000000010000000d0000000c0000000000000001000000540000007036100019000000903610004a000000ad00000020000000ef4c100023000000793310004a000000cb00000001000000000000005c3b10000f0000000000000048911000040000000000000000000000a89110000400000000000000000000006b3b10001000000000000000c8911000020000000000000000000000f89110000400000000000000000000007b3b10000f000000000000001892100001000000000000000000000030921000010000000000000000000000663d10000500000000000000d93310000c000000000000006b3d10000400000000000000c434100007000000000000006f3d10000b00000000000000c434100007000000000000007a3d10000900000000000000c434100007000000ee3b100044000000323c100006000000d93c10008d000000d13c10000400000000000000e33b10000b00000000000000223e10000300000000000000d53c10000400000000000000fc32100008000000ee3b100044000000323c100006000000383c100099000000d13c10000400000000000000e33b10000b00000000000000223e1000030000008a3b10005900000000000000f13d1000070000000000000064921000020000000000000000000000749210000100000000000000223e100003000000253e100006000000f83d10002a000000000000002b3e10000500000000000000d4921000010000000000000000000000dc921000010000000000000000000000303e10000a00000000000000e4921000010000000000000000000000ec9210000100000000000000973e1000040000007f3e100018000000763e1000090000003a3e10003c000000000000009b3e10000a00000000000000489b1000010000000000000000000000209310000200000000000000a53e100055000000fa3e100022000000974b1000280000001c3f10005a0000002300000001000000974b100028000000763f10005d0000003b00000001000000a040100039000000e040100048000000100200002d000000000000002c4110001200000000000000000000003e4110000a00000000000000000000000000000000000000845010006c94100000000000000000005c94100001000000000000000100000000000000484110001200000000000000000000003e4110000a00000000000000000000000000000000000000845010006c941000000000000000000064941000010000000000000001000000000000005a411000150000000100000000000000223e100003000000000000003e4110000a00000000000000845010006c94100000000000000000007c9410000400000000000000010000005d421000370000001a421000430000000c0000000000000001000000400000006f41100045000000b4411000350000008450100000000000e94110003100000000000000944210000400000000000000f4941000010000000000000000000000845010000000000000000000000000009842100007000000000000000c95100001000000000000000000000084501000000000000000000000000000c54210000800000000000000cd42100010000000000000009f4210000300000000000000a24210002300000000000000e1421000030000000000000000000000974d10000c0000000000000000000000000000000000000084501000709510000000000000000000845010000000000000000000010000000c00000000000000010000001000000000000000984210000700000000000000049610000100000000000000000000001c961000020000000000000000000000e44210000a000000000000002c96100001000000000000000000000044961000010000000000000000000000ee42100011000000000000004c96100001000000000000000000000064961000010000000000000000000000f54310000300000000000000f84310000d0000009443100058000000ec43100009000000000000009f42100003000000000000007d43100017000000224310005b00000000000000154310000d00000000000000973e100004000000ff42100016000000000000000c4410000a00000000000000000000002b4e1000110000000000000000000000000000000000000084501000cc9810000000000000000000dc98100001000000000000000100000000000000164410000d00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000e49810000000000000000000f498100001000000000000000100000000000000234410000c00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000049910000000000000000000fc981000010000000000000001000000000000002f4410000c00000000000000000000003b441000090000000000000000000000000000000000000084501000049910000000000000000000149910000100000000000000010000000000000044441000110000000000000000000000973e10000400000000000000000000000000000000000000845010003c99100000000000000000001c99100002000000000000000000000000000000554410001000000000000000000000007e4c10000e00000000000000000000000000000000000000845010003c99100000000000000000002c99100001000000000000000000000000000000654410000a0000000100000000000000974d10000c00000000000000f84310000d00000000000000845010003c991000000000000000000034991000010000000000000000000000000000006f4410001100000000000000000000007e4c10000e00000000000000000000000000000000000000845010003c99100000000000000000004c9910000100000000000000000000000c00000000000000010000000e000000104610001f0000000c000000000000000100000048000000f14510001f000000d34510001e0000000c00000000000000010000000f000000ab45100028000000ed4410005e0000004b45100060000000bd4410003000000099441000240000000c00000000000000010000000d0000008044100019000000ef4c1000230000001c3f10005a0000002300000001000000ef4c100023000000763f10005d0000003b000000010000005e4710000d000000434710001b0000000a4710003900000006010000010000006b471000100000007b4710000f0000008a471000130000009d4710000f000000ac471000140000006548100036000000c04710005d0000004e01000005000000284810003d000000c04710005d00000055010000050000006548100036000000c04710005d0000006901000005000000c04710005d0000007001000005000000834a10001c000000d84810005f00000051000000030000005f4a100024000000d84810005f0000005900000003000000184a10002c000000d84810005f000000930000004c000000e049100038000000d84810005f000000910000002a000000b849100028000000d84810005f00000092000000320000009049100028000000d84810005f000000940000002c0000005e49100032000000d84810005f000000c8000000030000003749100027000000d84810005f000000d000000004000000b048100028000000d84810005f000000d600000003000000c04a100048000000e70900000a000000104b100045000000c402000036000000000000007c4b10001000000000000000489b10000100000000000000000000008450100000000000000000008c4b10000b000000974b100028000000bf4b1000480000004300000001000000974b100028000000214c100025000000c30900002300000000000000464c10000d0000000000000000000000534c1000210000000000000000000000000000000000000084501000189c100000000000000000008450100000000000000000000100000000000000744c10000a00000000000000000000007e4c10000e0000000000000000000000000000000000000084501000289c10000000000000000000845010000000000000000000010000000c00000000000000010000000e0000000c000000000000000100000055000000ef4c100023000000bf4b100048000000430000000100000000000000124d10000b00000000000000009d1000010000000000000000000000189d10000100000000000000000000001d4d10001200000000000000209d1000010000000000000000000000389d10000100000000000000000000002f4d10001500000000000000409d100001000000000000000000000084501000000000000000000000000000444d10001000000000000000589d1000010000000000000000000000709d1000010000000000000000000000234e100008000000000000002b4e100011000000cc4d10005700000000000000c54d10000700000000000000974d10000c000000a34d10002200000000000000864d10001100000000000000974d10000c000000000000007f4d100007000000000000007e4c10000e000000544d10002b00000000000000004f1000100000000000000084501000000000000000000000000000d09d1000010000000000000000000000104f10000f0000000000000084501000000000000000000000000000d89d10000100000000000000344f1000250000001f4f100015000000704f100019000000904f10006b00000055000000220000001d5010002d0000004a5010000c000000565010000300000059501000110000006a50100017000000ea020000050000008450100020000000a4501000120000000c00000000000000010000005600000096511000060000009c511000220000007e511000180000006909000005000000be51100016000000d45110000d0000007e511000180000006f09000005000000ff5110000b000000fa5d100016000000e151100001000000e951100016000000da07000009000000d85d10000e000000e65d100004000000ea5d100010000000e151100001000000e951100016000000de07000005000000985d10002b000000c35d1000150000005901000015000000ff5110000b0000000a5210002600000030521000080000003852100006000000e151100001000000e951100016000000eb070000050000008450100000000000565210000200000040521000160000003f0400001100000040521000160000003304000028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20905710004a000000e059100000020000e05b10003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202705710002000000027000000190000007057100020000000280000002000000070571000200000002a0000001900000070571000200000002b0000001800000070571000200000002c000000200000008450100000000000c35d1000150000000e040000050000000087a401046e616d6501fea301fd01000c6578745f74776f785f31323801146578745f6765745f73746f726167655f696e746f020f6578745f7365745f73746f7261676503116578745f636c6561725f73746f7261676504106578745f73746f726167655f726f6f7405186578745f73746f726167655f6368616e6765735f726f6f74060e6578745f7072696e745f75746638070d6578745f7072696e745f68657808126578745f6578697374735f73746f72616765090e6578745f626c616b65325f3235360a126578745f656432353531395f7665726966790b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f4b3c616c6c6f633a3a7261775f7665633a3a5261775665633c542c20413e3e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68306335383537336233666339313863361034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a683736313165636638326261323263386411373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a626c6f636b5f686173683a3a6836656462636435313038386265663164120c5f5f727573745f616c6c6f63130e5f5f727573745f7265616c6c6f63140e5f5f727573745f6465616c6c6f63152e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68333064336263666532633938336538331608727573745f6f6f6d17373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a696e697469616c6973653a3a68363132386536666434323037376332651829636f72653a3a70616e69636b696e673a3a70616e69633a3a6863326636313633356662333339303763193a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6163636f756e745f6e6f6e63653a3a68383933643733643262643330633736371a3a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6465706f7369745f6576656e743a3a68393163636136363435643066633733321b5d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68303365323032366234343738626265611c673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68343233343363336664316337643133351d92016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68343034636664616463313833373033621e403c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68356630653061353162393763353036391f453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a686466376462623434663632323731303220453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68333232633333366136356564366437382130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a683030633938313632396363656364383222703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683661333237303537393464376162663123353c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a66696e616c6973653a3a6839656236643739333534663236623563244e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834323861656637666136353432613161256c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a6831303836376261346632633232323065266c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68386536316564633261613539316562662780013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c27612c20486173682c20417574686f7269747949643e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a68373639306563383738323734663864622834636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a6837323832633139396636383465663439292e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a68303966366336353362313130656464302a303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a68623164396433616535303232653135332b323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68373163353338653536396262326365652c2d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a68313561343035366134636336316131332d423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68366339663938396565626564653030612e4473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a68333862303837356266366235613663342f493c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6839346636663534663730373039663863304e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832643237383561313234366538626362313e3c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683234336361363461386438636534353532433c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a686433316539333839373335323364313333483c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68396563636261313861313531616133663430636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6836343366373435363239336232356532352d636f72653a3a736c6963653a3a736f72743a3a726563757273653a3a68313666623565303766663534626164303634636f72653a3a736c6963653a3a736f72743a3a627265616b5f7061747465726e733a3a6830666232336265373966653138396632373c636f72653a3a736c6963653a3a736f72743a3a7061727469616c5f696e73657274696f6e5f736f72743a3a68396366643631323462363966356635353836636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68383563363065383762626564343936663934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68316231353265316536316338613734393a36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68313464346263633239346337353430373b2e636f72653a3a736c6963653a3a736f72743a3a68656170736f72743a3a68666463373536306130323337326662643c3d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343938376465363332323033313132643d363c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a656e756d5f7365743a3a68666465363866383038643363663533383eb00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c2045787472696e7369633e3e3a3a6465636f64653a3a68346434343733333134636336373938353f7c3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c20486173682c204469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838323038663738393864313532613564405d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686437373230363438333436663235386441b8013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68323732303366656333393639356230324230636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a686266376261376262363161333263613043733c284f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a68626430343732616431633233626364624486013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861346536663636303132656461653166454e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863343538656361303236663139363038464e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68353436386334383731613439316433344782023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c20616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a683432343862663331623030323936323648b9033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970652c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a683530303339323062636330656639316649663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68316562353765373066343736656233314ad2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a68396538646134346233353735373434314ba6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a68346630383636356163363835663439624c5c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746172745f656c656374696f6e3a3a68383163363530646534373133613563304d3c3c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68623731336466386638356239336433664e413c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633662623334613734303236363239344f463c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839333338386265353835333761636538503e3c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683964613836646338623266323732323151433c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a686261646334363936663433646462356652483c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6832396164343363323735326564653561536e3c73726d6c5f74696d657374616d703a3a5f5f47657442797465537472756374426c6f636b506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864636164343232323538346639623462544a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68353934346632386563393466383261385539636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a6866343135636637313332346463613636564b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a683331613339646433326463303037363957423c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a686561343639613064623535363331386258473c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6838636238383365383530643232643061593d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68343639373231636537366630663238615a4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68633861373863326635323733343064645b4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a68306566616139366164616231616430365c4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a68663631343438336565636639363230315d486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666565733a3a68643864643734646231353836353230325e486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a68616263376662633637356464653130335f4d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6864353365323336373737386563373063604c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6864313036326438383032333531303234614b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a68613037363063373461353639313836656284013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68666661343766306439346130633433646382013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a68373663386139383364353730353666366496013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a456e737572654163636f756e744c69717569643c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f6163636f756e745f6c69717569643a3a68663738646237633633306565646635326583013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68323737333031643362616665373831636685013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a683931366134336562663336653436363767433c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f72657365727665645f62616c616e63653a3a6832363533616636363761623434616361687c3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a6839313336343637623638313737623537693f3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f667265655f62616c616e63653a3a68653832343332353666623266393662376a7d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7265776172643a3a68363139346437353934663739373662346b7e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a68666337356630373630393163333363346c80013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a68633966383332663834646132633230376d483c492061732073725f7072696d6974697665733a3a7472616974733a3a436865636b457175616c3e3a3a636865636b5f657175616c3a3a68666230623739613434636230366462646e633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68383863333831626337663436363630376fb1013c73726d6c5f7374616b696e673a3a4e6f6d696e6174696e673c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a6835333966386361393666633332356238707c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a683062356630343631636237336332383871593c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a69735f636f756e63696c6f723a3a6838623535626364336534363736316364723c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6e6f6d696e61746f72735f666f723a3a6831353339633237343761353861363965733d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6866303762376336636131326665306432743d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862346363303337363535353737663638753d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6837393234313530663238616335663330765c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f70726f636573735f766f74653a3a6862333031393038373236663731666234773b3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6170706c795f756e7374616b653a3a683161363962383639616330616338623378423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a683738643662343638636661363930346579683c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c20753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68313833376336633337316463373363327a443c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63757272656e745f6e6f6d696e61746f72735f666f723a3a68613463623039353430643036646564327b30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68363432313561366332313066353364327c583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313034396661303833666539636236317d4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68316331396430626666656537303663397e733c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68623636643132633339333533646132357f5e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68363535366237633130373765663235358001135f5f727573745f616c6c6f635f7a65726f656481015d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683334303830326338316365316134376282015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68313731353562326531333436363662378301673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68613732343566616437383139346137308401397061726974795f636f6465633a3a636f6465633a3a4f75747075743a3a707573685f627974653a3a68363366303037613635383464653334328501763c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68376164613530386130623364653035348601c8013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c207375627374726174655f7072696d6974697665733a3a617574686f726974795f69643a3a45643235353139417574686f7269747949643e3e3e3a3a66726f6d3a3a686436636634373134306236373837653687013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68663563363734383234666462656265378801d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68366133313864303766373230306636648901663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a68303434333264356238356232613066368a01663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68376464616334323565303535643362658b018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636437353834353264393834353637368c018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636333633436616632386639646464648d018d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68356366356439336266326164346432368e0186013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68643335653836306664373662356465618f0190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686337343363336662393363303064336290018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68366538333530356535363536623164309101613c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633736386235336336373366346532669201f6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970653e2c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a683637373335366235353637383431393693015f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a74656172646f776e5f656c656374696f6e3a3a68353963366562346238653738346333369401623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a686634363363353938306434663338616395015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a64726f705f6170706c6963616e74733a3a68323561646637623966326164383532669601673c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c20503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a686661373032363863336538303861646397012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a686339663161633666323565303865353798014b3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e3e3a3a696e736572743a3a686235383461633164653866303463393999012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a68643532353637663964376132643062329a01733c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68386361356439306366656239376434659b015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68636664303764626536303563323461389c013c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68666163393531613439383835343433339d01413c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68356138326535666262663162353935639e01463c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68353337393430326235376236656635329f01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861653530613534326163643863336630a001723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836383062396639363838666531393566a101743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861386465323664313737323265343062a201753c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72507265666572656e6365733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861333062363566646339336435353733a301703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836666664316363363664636166353737a4016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865353365626538663237646530356465a501763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865363434626238663330663562613962a601673c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837386633353931666565393463316461a7018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836336438653862366339623435623032a8018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830613266373733303834343863613430a90190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834376464343462393361326266643761aa0193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865323530636337383362316166653764ab018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865306365336164356338323164383439ac018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832633161313663373665353332613539ad018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834633163333762383137333232303239ae0191013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863333835323138303363633737396162af018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838623437373837663334383134643532b00190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839636564343437343739653562313033b101623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6838373961623763663136333961393136b2015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6839663666636631336530366433636463b3018f013c73726d6c5f666565733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a43686172676542797465734665653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6368617267655f626173655f62797465735f6665653a3a6837313636363237393862643537316265b4013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a7365745f76616c696461746f72733a3a6863366135333863613764653930376362b5013e3c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862383263303566373533613364343362b601433c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6838333333393834636239393737343566b701703c73726d6c5f666565733a3a5f5f476574427974655374727563745472616e73616374696f6e426173654665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832366463366263396637346563313436b801393c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866653037373161633537643930346261b9013e3c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862373237653266383365343738396263ba01433c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6832346663653462646561663266396134bb01613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839363135616234376338356537633465bc013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6838316638626431383662326365663039bd01413c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6834626536363065353635343637633032be01463c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6835336336663832663632326134313431bf01303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6833383863396463313337316335633734c00149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6833663366306565633538306132636466c10135636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a6866616430656266653761663133383264c201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6838613831383761386465613762653861c3013d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a6865346639386630306138326336636161c4018001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a6831366166346432353266386531336561c5012e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a6839383835393262633961303666666639c601303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6864393166393237396264656337333933c7012c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6864373232353135613866363031646362c801477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6835383333643861393638393331663961c901623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6833616530326663623633323863353330ca01523c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c27612c204b2c20563e3e3a3a696e736572743a3a6833396661383661616362353233363235cb010c436f72655f76657273696f6ecc0110436f72655f617574686f726974696573cd0112436f72655f657865637574655f626c6f636bce014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6862396630343164663637376562383166cf016c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6835366462353531393836376332663636d001753c73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c20426c6f636b2c20436f6e746578742c205061796d656e742c20416c6c4d6f64756c65733e3e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6862336639326138616139666533616163d101483c636f72653a3a666d743a3a417267756d656e74733c275f3e20617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6861303534656238346561376365353037d20115436f72655f696e697469616c6973655f626c6f636bd301114d657461646174615f6d65746164617461d401603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6833373631663237373135396232663561d501433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862363165366638376564316432633434d601633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862366332386139643335626330666534d701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834306133346562656235363738373562d801633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839363266336536363035313535613262d9011c426c6f636b4275696c6465725f6170706c795f65787472696e736963da011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636bdb0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373dc015d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6866353130643937346462643934323864dd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6861343134363738613430336532326137de011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473df0118426c6f636b4275696c6465725f72616e646f6d5f73656564e0012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ee101c5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a6865636438396662336636313662343566e20115417572614170695f736c6f745f6475726174696f6ee301653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6836616466363034323261343638613162e4018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831346463633265333134663865663035e501603c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6832626134363130623231663336393232e6015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6839633461396331396139636433353836e701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6838663164656438363231616234303261e801423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865313036353439663466663137396235e90111727573745f626567696e5f756e77696e64ea010a5f5f72675f616c6c6f63eb010c5f5f72675f6465616c6c6f63ec010c5f5f72675f7265616c6c6f63ed01115f5f72675f616c6c6f635f7a65726f6564ee01313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6864386539623836393433356634353335ef014a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839613861313363333436653665613164f001323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6864323935306462613062303964643132f10149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6864333432376335346434656539383865f20123636f72653a3a666d743a3a77726974653a3a6831626538336266333463393837633365f30134636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6836363738306365363339383362303937f401066d656d736574f501066d656d637079f601076d656d6d6f7665f701066d656d636d70f801095f5f75646976746933f901085f5f6d756c746933fa013f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a6833313639313463633232636361303038fb013f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a6830663661613130316134636634623566fc010c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33342e302d6e696768746c79202865353434393437323720323031392d30322d313329" - }, - "indices": { - "ids": [ - "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f" - ] - }, - "balances": { - "existentialDeposit": 0, - "transferFee": 0, - "creationFee": 0, - "balances": [ - [ - "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", - 1000000000 - ] - ], - "vesting": [] - }, - "session": { - "validators": [ - "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4" - ], - "sessionLength": 50 - }, - "staking": { - "validatorCount": 10, - "minimumValidatorCount": 1, - "sessionsPerEra": 12, - "sessionReward": 2065, - "offlineSlash": 1000000, - "offlineSlashGrace": 4, - "bondingDuration": 600, - "invulnerables": [ - "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4" - ], - "currentEra": 0, - "intentions": [ - "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4" - ], - "currentSessionReward": 0, - "currentOfflineSlash": 0 - }, - "fees": { - "transactionBaseFee": 0, - "transactionByteFee": 0 - }, - "sudo": { - "key": "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f" - }, - "proposals": { - "approvalQuorum": 60, - "minStake": 200, - "cancellationFee": 50, - "rejectionFee": 100, - "votingPeriod": 28800, - "nameMaxLen": 32, - "descriptionMaxLen": 10000, - "wasmCodeMaxLen": 2000000 - }, - "election": { - "autoStart": false, - "announcingPeriod": 43200, - "votingPeriod": 14400, - "revealingPeriod": 14400, - "councilSize": 6, - "candidacyLimit": 25, - "minCouncilStake": 1000, - "newTermDuration": 201600, - "minVotingStake": 100 - }, - "council": { - "activeCouncil": [], - "termEndsAt": 1 - } - } - } -} \ No newline at end of file diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index a88bef7789..1f40496d11 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,7 +2,7 @@ authors = ['Joystream'] edition = '2018' name = 'joystream-node-runtime' -version = '0.9.1' +version = '1.0.0' [features] default = ['std'] diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index 89ba0cd724..f34b9ff2ac 100644 --- a/runtime/wasm/Cargo.toml +++ b/runtime/wasm/Cargo.toml @@ -19,4 +19,4 @@ path = '..' authors = ['Joystream'] edition = '2018' name = 'joystream-node-runtime-wasm' -version = '0.9.1' +version = '1.0.0' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index afea1d58cf..95e65f4628 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -24,8 +24,8 @@ pub enum Alternative { LocalTestnet, /// Staging testnet StagingTestnet, - /// Sparta testnet - Sparta, + /// Testnet - the current live testnet + LiveTestnet, } impl Alternative { @@ -71,7 +71,7 @@ impl Alternative { None ), Alternative::StagingTestnet => staging_testnet_config(), - Alternative::Sparta => sparta_config()?, + Alternative::LiveTestnet => live_testnet_config()?, }) } @@ -80,25 +80,25 @@ impl Alternative { "dev" => Some(Alternative::Development), "local" => Some(Alternative::LocalTestnet), "staging" => Some(Alternative::StagingTestnet), - "" | "sparta" => Some(Alternative::Sparta), + "" | "testnet" => Some(Alternative::LiveTestnet), _ => None, } } } -/// Sparta testnet generator -pub fn sparta_config() -> Result { - ChainSpec::from_embedded(include_bytes!("../res/sparta.json")) +/// LiveTestnet generator +pub fn live_testnet_config() -> Result { + ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_1.json")) } -/// Staging testnet config. +/// Staging testnet config pub fn staging_testnet_config() -> ChainSpec { let boot_nodes = vec![ String::from("/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi") ]; ChainSpec::from_genesis( - "Joystream Testnet", - "joystream_testnet_2", + "Joystream Staging Testnet", + "joystream_staging_3", staging_testnet_config_genesis, boot_nodes, Some(STAGING_TELEMETRY_URL.into()), @@ -137,7 +137,7 @@ fn staging_testnet_config_genesis () -> GenesisConfig { ids: endowed_accounts.clone(), }), balances: Some(BalancesConfig { - balances: endowed_accounts.iter().map(|&k| (k, 10_000_000 * DOLLARS)).collect(), + balances: endowed_accounts.iter().map(|&k| (k, 100_000_000 * DOLLARS)).collect(), existential_deposit: 0, transfer_fee: 0, creation_fee: 0, @@ -152,17 +152,17 @@ fn staging_testnet_config_genesis () -> GenesisConfig { }), session: Some(SessionConfig { validators: initial_authorities.iter().cloned().map(Into::into).collect(), - session_length: 5 * MINUTES, + session_length: 10 * MINUTES, }), staking: Some(StakingConfig { current_era: 0, intentions: initial_authorities.iter().cloned().map(Into::into).collect(), - offline_slash: Perbill::from_billionths(1_000_000), - session_reward: Perbill::from_billionths(2_065), + offline_slash: Perbill::from_millionths(10_000), // 1/ 100 => 1% + session_reward: Perbill::from_millionths(1_000), // 1/1000 => 0.1% (min stake -> 1000 units for reward to be GT 0) current_offline_slash: 0, current_session_reward: 0, validator_count: 10, - sessions_per_era: 12, + sessions_per_era: 6, bonding_duration: 60 * MINUTES, offline_slash_grace: 4, minimum_validator_count: 1, @@ -184,12 +184,12 @@ fn staging_testnet_config_genesis () -> GenesisConfig { min_voting_stake: 1 * DOLLARS, }), proposals: Some(ProposalsConfig { - approval_quorum: 60, + approval_quorum: 80, min_stake: 2 * DOLLARS, - cancellation_fee: 50 * CENTS, + cancellation_fee: 10 * CENTS, rejection_fee: 1 * DOLLARS, voting_period: 2 * DAYS, - name_max_len: 32, + name_max_len: 512, description_max_len: 10_000, wasm_code_max_len: 2_000_000, }), From ffdd7294c816c12e734c5e469d6dec9398197724 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 28 Feb 2019 22:12:19 +0200 Subject: [PATCH 175/350] revised council and proposal quorum parameters --- src/chain_spec.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 95e65f4628..4ada06c315 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -177,14 +177,14 @@ fn staging_testnet_config_genesis () -> GenesisConfig { announcing_period: 3 * DAYS, voting_period: 1 * DAYS, revealing_period: 1 * DAYS, - council_size: 6, + council_size: 12, candidacy_limit: 25, min_council_stake: 10 * DOLLARS, new_term_duration: 14 * DAYS, min_voting_stake: 1 * DOLLARS, }), proposals: Some(ProposalsConfig { - approval_quorum: 80, + approval_quorum: 66, min_stake: 2 * DOLLARS, cancellation_fee: 10 * CENTS, rejection_fee: 1 * DOLLARS, From cd344e2b827edfadf31a5886b125cfb1efc1a97d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 28 Feb 2019 22:23:16 +0200 Subject: [PATCH 176/350] sudo method to update proposal approval_quorum --- runtime/src/governance/proposals.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs index 22562058fd..2a08fe19c9 100644 --- a/runtime/src/governance/proposals.rs +++ b/runtime/src/governance/proposals.rs @@ -331,6 +331,11 @@ decl_module! { Self::deposit_event(RawEvent::ProposalVetoed(proposal_id)); } + + fn set_approval_quorum(new_value: u32) { + ensure!(new_value > 0, "approval quorom must be greater than zero"); + >::put(new_value); + } } } From ef1839741b70dce23548ffda18a6ac5db27c69b1 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 28 Feb 2019 22:31:25 +0200 Subject: [PATCH 177/350] rebuilt chain spec --- res/joy_testnet_1.json | 82 +++++++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/res/joy_testnet_1.json b/res/joy_testnet_1.json index df232c2952..c9784401b5 100644 --- a/res/joy_testnet_1.json +++ b/res/joy_testnet_1.json @@ -13,57 +13,57 @@ }, "genesis": { "raw": { - "0xdfaac108e0d4bc78fc9419a7fcfa84dc": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0x8b54f94e652e79e757faa813e395199d": "0x19000000", - "0x3a617574683a6c656e": "0x01000000", - "0xb7b6ec0f25eb1ed8b91d05f697d7a874": "0x0600000000000000", - "0x3fb2474c4125721e4f9b6d33231cc646": "0x64000000000000000000000000000000", - "0x50a63a871aced22e88ee6466fe5aa5d9": "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", + "0x7b3279da6dfc5dcfbdd4098b0578c733": "0x0a000000000000000000000000000000", "0x0b21b3456b23e90d061941ab416f5ea2": "0x00000000000000000000000000000000", - "0x7c1f36e9b2a83a7f2b42d97ec0f18d9c": "0x046b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", - "0x78f4ad73d6b7279f8d06f359e363c829": "0xe8e70b54020000000000000000000000", - "0x51dc7d6b960dbce5de1de96c88afc3d8": "0x0100000000000000", - "0xcc2719d196dc6b2ef83fd3399f9a8c7b": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0x579ab55d37b1220812be3c3df29d4858": "0x0000000000000000", - "0x6ca8e0c58adf9d1f3105b0888d39bf2d": "0x00000000000000000000000000000000", - "0x9624db8f7f825714be29f5be7ef5a76f": "0x06000000", - "0xe9d19aa1c8f2c8eba1a85e4db92740c8": "0xe8030000000000000000000000000000", + "0x3a617574683a6c656e": "0x01000000", + "0x2dce29f1a768624dc5343063cb77f77d": "0x0a000000", "0x30503a949860f4244ab6e457807234c6": "0x8070000000000000", - "0xb8f48a8c01f629d6dc877f64892bed49": "0x0000000000000000", - "0x30f81b445b20a0cacb485475146b9c2e": "0x00020000", - "0x8b00d7280647603efa998c64c5a3d9aa": "0x80841e00", + "0x579ab55d37b1220812be3c3df29d4858": "0x0000000000000000", "0xd9c94b41dc87728ebf0a966d2e9ad9c0": "0x6400000000000000", - "0xb9b861cab4bbce870c811515bd5f33d7": "0x00", - "0xd437fe93b0bd0a5d67d30d85d010edc2": "0x80969800", - "0x24b2518f9a9ee24ab0b62346d83d90b0": "0x40420f00", + "0x5278a9149ec1adfa8090a8ad336c881e": "0x0300000000000000", + "0x7d78893315c59fe96c583efc57f97a0f": "0x64000000000000000000000000000000", + "0xe9d19aa1c8f2c8eba1a85e4db92740c8": "0xe8030000000000000000000000000000", + "0xcc2719d196dc6b2ef83fd3399f9a8c7b": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", + "0x45411b6c68791e09f4851417f7482619": "0xd0070000000000000000000000000000", "0x92b3170bbdf31d1483495c9b06ba7d70": "0x10270000", - "0x7be03dc7a23a09ed0b3f2b21c864cc98": "0x00e40b54020000000000000000000000", - "0x9a20141d973fa6385716ae951301f106": "0x00", - "0x45411b6c68791e09f4851417f7482619": "0xe8030000000000000000000000000000", - "0x052864eeea9f485c498882d7367582d3": "0xc8000000000000000000000000000000", - "0x3a636f6465": "0x0061736d010000000191011760027f7f017f60037f7f7f017f60017f0060027f7f0060037f7f7f0060057f7f7f7f7f017f60047f7f7f7f017f60047f7f7f7f0060047f7f7e7f017f60017e0060017f017f60000060027f7e0060037e7f7f0060017f017e60037f7e7e0060047f7f7e7e0060037f7e7e017f60027f7f017e60027e7f017f60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e760c6578745f74776f785f313238000403656e76146578745f6765745f73746f726167655f696e746f000503656e760e6578745f626c616b65325f323536000403656e76126578745f656432353531395f766572696679000603656e760f6578745f7365745f73746f72616765000703656e76116578745f636c6561725f73746f72616765000303656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000803656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e76126578745f6578697374735f73746f72616765000003656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000703656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000203f901f7010b0b030a030103030303030303030c030202030303020d0e020303020b02020302040302030202010700000304040403020302020202070300040303020202020202020202020202030304030403030a030303030f001011030303040004030f0f0a10030203030a020303110f03030209090309030202020202020202020303030b020303030303030203030402030303070403020202020303030303030302030303030303030303030202000302020302020203020202070403121212030407000012120304030303121212030312121212000005130a0207020302020403020a02010a000e0601000000010001010101141415151604050170015c5c05030100110619037f01418080c0000b7f0041b0d4c2000b7f0041b0d4c2000b07f4020f066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00ca0110436f72655f617574686f72697469657300cb0112436f72655f657865637574655f626c6f636b00cc0115436f72655f696e697469616c6973655f626c6f636b00d201114d657461646174615f6d6574616461746100d3011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d9011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636b00da0120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300db011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300de0118426c6f636b4275696c6465725f72616e646f6d5f7365656400df012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00e00115417572614170695f736c6f745f6475726174696f6e00e10109a301010041010b5bf401d001e2013938e301d101f801f901fa01fc012d2ea901c301a701332a2c4b8b018c018a014243414c8501860184014d8801890187014ec501c601c4014fa501a601a40150bd01be0151c101c201c00152b901ae01ba015398019101a30154eb01e901ec015534323556a801bf018d01970196019501940193019201b701ab01b501ad01b801ac01aa01b601b401b301b201b101b001af01ea01f5010abff513f70105001010000b0a004180c5c2001024000b930c03057f017e027f230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020022034101460d00024020034102460d0020034103470d0220012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41003a00002001280200210620022001280208220136020c2002410c6a2002101320022802042205200428020022036b20014f0d05200320016a22042003490d1520054101742203200420042003491b22034100480d152005450d0a20022802002005200310142204450d0b0c180b200141086a280200210320012802042105410110122201450d0d20024101360204200241086a22042004280200220641016a36020020022001360200200120066a41033a00002005290300210720022802042205200428020022016b41084f0d02200141086a22042001490d1420054101742201200420042001491b22014100480d142005450d0520022802002005200110142204450d060c120b20012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d02200341206a22042003490d1320054101742203200420042003491b22034100480d132005450d0620022802002005200310142204450d070c0f0b200141086a280200210320012802042101410110122204450d0d200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a200210132003450d1720034105742108200241086a220928020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d1720054101742204200320032004491b22044100480d172005450d01200228020020052004101422060d020c0e0b20022802002106200421030c020b200410122206450d0c0b200220043602042002200636020020092802002103200421050b2009200341206a2204360200200620036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200841606a22080d000c180b0b200228020021040c100b200228020021040c0d0b200228020021040c130b2001101222040d0c0b200141011015000b2003101222040d080b200341011015000b2003101222040d0d0b200341011015000b200441011015000b410141011015000b410141011015000b410141011015000b410141011015000b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a200737000002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110142204450d020c040b200228020021040c040b2001101222040d020b200141011015000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c020b2002200336020420022004360200200241086a28020021030b200241086a200320016a360200200420036a2006200110fe011a0b20002002290300370200200041086a200241086a280200360200200241106a24000b0700200010f0010b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410142203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010142203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2000101222030d0b0b200041011015000b200010122203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101422020d020c070b200128020021020c020b200010122202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011015000b200441011015000b200041011015000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000b0b0020002001200210f2010b0d0041d8a3c1004122100800000bef1004047f017e087f037e230041a0046b22022400200241186a200110170240024002400240024002400240024002402002280218450d00200241003a00880220024188026a2001280200220320012802042204410047220510fe011a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d008802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b200241b0016a2001101802400240024020022d00b0014102460d00200241b8036a41206a200241b0016a41206a280200360200200241b8036a41186a200241b0016a41186a290300370300200241b8036a41106a200241b0016a41106a290300370300200241b8036a41086a200241b0016a41086a290300370300200220022903b0013703b80320024188026a41386a2207420037030020024188026a41306a2208420037030020024188026a41286a2209420037030020024188026a41206a220a420037030020024188026a41186a220b420037030020024188026a41106a220c420037030020024188026a41086a220d4200370300200242003703880220024188026a20012802002203200141046a220e280200220441c000200441c000491b220510fe011a200e200420056b3602002001200320056a3602002004413f4d0d00200241e0036a41386a2007290300370300200241e0036a41306a2008290300370300200241e0036a41286a2009290300370300200241e0036a41206a200a290300370300200241e0036a41186a200b290300370300200241e0036a41106a200c290300370300200241e0036a41086a200d29030037030020022002290388023703e003200241086a200110192002280208450d002002290310210f200141046a220e2802002104200241003a00880220024188026a200128020022072004410047220510fe011a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310088022210500d01200241003a00880220024188026a20052003410047220410fe011a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310088024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024188016a41206a200241b8036a41206a28020036020020024188016a41186a200241b8036a41186a29030037030020024188016a41106a200241b8036a41106a29030037030020024188016a41086a200241b8036a41086a290300370300200241e0026a41086a200241e0036a41086a290300370300200241e0026a41106a200241e0036a41106a290300370300200241e0026a41186a200241e0036a41186a290300370300200241e0026a41206a200241e0036a41206a290300370300200241e0026a41286a200241e0036a41286a290300370300200241e0026a41306a200241e0036a41306a290300370300200241e0026a41386a200241e0036a41386a290300370300200220022903b80337038801200220022903e0033703e0020c030b20052004101a000b20052004101a000b20042003101a000b200241b0016a41206a220420024188016a41206a280200360200200241b0016a41186a220520024188016a41186a290300370300200241b0016a41106a220320024188016a41106a290300370300200241b0016a41086a220e20024188016a41086a29030037030020024188026a41086a2207200241e0026a41086a29030037030020024188026a41106a2208200241e0026a41106a29030037030020024188026a41186a2209200241e0026a41186a29030037030020024188026a41206a220a200241e0026a41206a29030037030020024188026a41286a220b200241e0026a41286a29030037030020024188026a41306a220c200241e0026a41306a29030037030020024188026a41386a220d200241e0026a41386a29030037030020022002290388013703b001200220022903e00237038802024020064202520d0020004203370370200241a0046a24000f0b200241e0006a41206a2004280200360200200241e0006a41186a2005290300370300200241e0006a41106a2003290300370300200241e0006a41086a200e290300370300200241206a41086a2007290300370300200241206a41106a2008290300370300200241206a41186a2009290300370300200241206a41206a200a290300370300200241206a41286a200b290300370300200241206a41306a200c290300370300200241206a41386a200d290300370300200220022903b00137036020022002290388023703200b20024188026a2001101b20022d0088022101200241e0026a20024188026a41017241d70010fe011a02402001410b470d0020004203370370200241a0046a24000f0b200241b0016a200241e0026a41d70010fe011a2000200f37030020002002290360370308200041106a200241e0006a41086a290300370300200041186a200241e0006a41106a290300370300200041206a200241e0006a41186a290300370300200041286a200241e0006a41206a2802003602002000200229032037022c200041346a200241206a41086a2903003702002000413c6a200241206a41106a290300370200200041c4006a200241206a41186a290300370200200041cc006a200241206a41206a290300370200200041d4006a200241206a41286a290300370200200041dc006a200241d0006a290300370200200041e4006a200241d8006a29030037020020004188016a20013a000020004180016a2010370300200020113703782000200637037020004189016a200241b0016a41d70010fe011a200241a0046a24000bcb0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000322034103712204450d00024020044101460d0020044102470d0241002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810fe011a200141046a200620086b3602002001200520086a36020020070d0520022f010c20022d000e411074724108742003724102762101410121040c050b200241003a000b2002410b6a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b20034102762101410121040c030b200341044f0d004100210420024100360204200241046a200520064104200641044922081b220310fe011a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004101a000b20042006101a000b8f0801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441f0014f0d01410121010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410fe011a200141046a200620046b3602002001200520046a36020041012101200641014d0d0441ef01210420022f015041ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410fe011a200141046a200620046b3602002001200520046a360200200641034d0d0441ffff03210441012101200228025041ffff034b0d08200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10fd011a200241d0006a2005200410fe011a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c020b200041023a0000200241f0006a24000f0b20052004101a000b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bc00503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510fe011a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000822044103712203450d002004ad2107024020034101460d0020034102470d02200241003a0006200241003b0104200241046a200520064103200641034922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320023301042002310006421086844208862007844202882107420121080c050b200241003a0008200241086a20052006410047220410fe011a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b2004410276ad2107420121080c030b0240024020044102762204450d0020044104470d014200210820024200370308200241086a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320022903082107420121080c040b20024100360208200241086a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0120023502082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410fe011a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004101a000b20042006101a000b20042006101a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241d8c5c2003602082002200241046a360228200220023602202002200241206a360218200241086a41e8c5c200103a000bc65905057f027e017f047e087f230041c0056b22022400200241003a00f003200241f0036a2001280200220320012802042204410047220510fe011a0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a220536020002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d00f0032204410a4b0d0b024020040e0b00070405020809060b030a000b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450daa0120022d00f003450d0e0caa010b2000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22053602002006450d0a4105210420022d00f0032206450d1320064101460d1220064102470d14200241003a00f003200241f0036a20052003410047220610fe011a20032006490d7b200141046a200320066b3602002001200520066a3602002003450d1420022d00f00321014200210742002108410421040c170b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22053602002006450d0a4106210420022d00f003220641034b0d9701024020060e04001a1819000b200241f0036a2001107420022802f0032201450d970120022902f4032107410221040c99010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002006450d0c20022d00f0032204450d0b20044101470d0c200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0c20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241f8006a20011075410421042002290378a7450d23200241f8006a41106a29030021072002290380012108200241e0006a200110752002290360a7450d23200241f0006a290300210c2002290368210d200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410321040c240b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22043602002006450d6220022d00f003220541034b0d62024020050e04001b1819000b200242003703f803200242003703f003200241f0036a20042003411020034110491b220510fe011a200141046a200320056b3602002001200420056a3602002003410f4d0d62200241f8036a290300210720022903f003210820024198026a20011017200228029802450d62200228029c022204417f4c0d9b012004450d60200410762206450d890120062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d8a012003200920056b3602002001200128020020056a36020020052004470d610c9a010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22043602002006450d6620022d00f003220641054b0d6641032109024020060e060099011f201e21000b200241186a200110172002280218450d66200228021c2204417f4c0d9a012004450d57200410762205450d810120052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d82012003200920066b3602002001200128020020066a36020020062004470d580c97010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b220e3602002001200520046a22103602002006450d3220022d00f003220f410a4b0d32410221040240200f0e0b38002b2c292e2f2d322a30380b200241a0016a2001101720022802a001450d3220022802a40122054108762103410321040c340b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002006450d0a20022d00f0032204450d0920044101470d0a200241f0036a20011018200241c8046a41086a2205200241fc036a290200370300200241c8046a41106a220620024184046a290200370300200241c8046a41186a22032002418c046a290200370300200220022902f4033703c80420022d00f00322014102460d0a20022f00f10320022d00f303411074722104200241d0026a41186a2003290300370300200241d0026a41106a2006290300370300200241d0026a41086a2005290300370300200220022903c8043703d002410321050c1a0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b3602002001200520046a3602002006450d930120022d00f003450d050c93010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d70200141046a200620046b22033602002001200520046a22113602002006450d4b4110210420022d00f003221241104b0d4b024020120e11003f413c4346424a3e483b3d443a8b014039000b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d4b200241f8036a290300210c20022903f003210a410221040c480b2000410b3a0000200241c0056a24000f0b42002107410521040c0a0b410621040c8c010b200241086a200110192002290308a7450d9b0120022903102107200041003a0000200041106a2007370300200041086a4202370300200241c0056a24000f0b200241a8026a2001101720022802a802450d8d0120022802ac022204417f4c0d91012004450d1e200410762206450d7420062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d752003200920056b3602002001200128020020056a36020020052004470d1f0c89010b200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102470d100b200241f0036a41086a200241d0026a41086a280200360200200220022903d0023703f0030c86010b200241f0036a2001101b20022d00f0032104200241c8046a200241f0036a41017241d70010fe011a2004410b470d0f0b2000410b3a0000200241c0056a24000f0b20024190016a20011019410341052002280290011b210442002107200229039801210a420021080c030b200241f0036a20034120200341204922091b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a36020020090d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210120022800f303210520022900f703210a200228008704210620022900ff032108200241a4056a41046a220320042d00003a0000200220022f01b20522043b01aa05200220022802ac053602a405200241c8046a41046a20032d00003a0000200220043b01d002200220022802a4053602c80442002107410221040c030b420021070b420021080b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f01d0023b01b405200220022902c8043703f003024020044105470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b01b002200220022903f00337039803200041186a2008370000200041106a2007200a84370000200041096a20013a0000200041086a20043a0000200041043a0000200041206a20063600002000410c6a20053600002000410a6a20022f01b0023b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d0f200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01be05200220022802ac053602d002410121090c100b200242003703f003200241f0036a20052003410820034108491b220610fe011a200141046a200320066b3602002001200520066a360200200341074d0d7e20022903f0032107410521040c7f0b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d0f200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01b002200220022802ac053602d002410121090c100b200241003602f00341042109200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4a20022802f00321060c010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4920022802f0032106410521090b200220022f01c8043b01f0030c89010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b22033602002001200420056a220436020020060d4720022802f0032106200241003a00f003200241f0036a20042003410047220510fe011a20032005490d65200141046a200320056b3602002001200420056a3602002003450d4720022d00f003220141044f0d47410321090c87010b20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241c8006a200110752002290348a7450d1e200241c8006a41106a290300210720022903502108200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410221040c1f0b20024198036a200241c8046a41d70010fe011a41d80010122201450d60200120043a0000200141016a20024198036a41d70010fe011a20014108762104410221050b200241b0026a41186a2206200241d0026a41186a290300370300200241b0026a41106a2203200241d0026a41106a290300370300200241b0026a41086a2209200241d0026a41086a290300370300200220022903d0023703b002200041086a2004410874200141ff017172360000200041046a2005360000200041063a00002000410c6a20022903b002370000200041146a20092903003700002000411c6a2003290300370000200041246a2006290300370000200241c0056a24000f0b200241286a200110172002280228450d48200228022c2204417f4c0d7c2004450d35200410762205450d6520052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d662003200920066b3602002001200128020020066a36020020062004470d360c720b200241206a200110172002280220450d4720022802242204417f4c0d7b2004450d36200410762205450d6620052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d672003200920066b3602002001200128020020066a36020020062004470d370c700b200242003703f003200241f0036a20042003410820034108491b220510fe011a200141046a200320056b3602002001200420056a360200200341074d0d4620022903f0032107410521090c780b200241c0006a200110172002280240450d4520022802442213ad42187e2207422088a70d792007a72204417f4c0d792004450d382004101222050d39200441041015000b0b200920037221010c180b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01be053b01aa05200220022802d0023602a4052009450d6e200241b0026a41046a220420032d00003a0000200220022f01aa0522033b01bc05200220022802a4053602b002200241c8046a41046a20042d00003a0000200220033b019003200220022802b0023602c804410421040c700b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4052009450d6c200241b4056a41046a220420032d00003a0000200220022f01aa0522033b01ba05200220022802a4053602b405200241c8046a41046a20042d00003a0000200220033b019003200220022802b4053602c804410321040c6e0b4101210641002004460d6a0b2004450d6d2006101f0c6d0b200241d0016a20011017410d210420022802d001450d0a20022802d4012105200241c8016a2001101720022802c801450d0a20022802cc012106200241b0016a2001107520022903b001a7450d0a200241c0016a290300210720022903b801210820054108762103410621040c0d0b20024180026a20011017200228028002450d0820022802840222054108762103410b21040c0a0b200241f0036a20011018200241c8046a41086a220120024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0720022f00f10320022d00f303411074722103200241fc036a290200210720024184046a280200210620022902f403210820024198036a41086a22042001280200360200200220022903c80437039803200241d0026a41086a200428020036020020022002290398033703d002410421040c0b0b200241a8016a2001101720022802a801450d0620022802ac0122054108762103410521040c080b200241f8016a2001101720022802f801450d0520022802fc0122054108762103410921040c070b200241d8016a200110194107410d20022802d8011b210420022903e00121080c020b200241e8016a200110194108410d20022802e8011b210420022903f00121080c010b200241f0036a2001107420022802f0032205450d022005410876210320022902f4032108410c21040b0c040b200241003a00f003200241f0036a2010200e410047220410fe011a200e2004490d4d200141046a200e20046b3602002001201020046a360200200e450d0020022d00f0032109410a21040c050b410d21040b0b0b0b0b200241f0036a41086a2201200241d0026a41086a280200360200200220022f01ac053b01b405200220022903d0023703f00302402004410d470d002000410b3a0000200241c0056a24000f0b200241b0026a41086a220e2001280200360200200220022f01b4053b01a405200220022903f0033703b002200041186a2007370000200041106a2008370000200041096a20093a0000200041086a20043a0000200041053a0000200041206a20063600002000410c6a2003410874200541ff0171723600002000410a6a20022f01a4053b0000200041246a20022903b0023700002000412c6a200e280200360000200241c0056a24000f0b410421040b200920037221010b200241f0036a41086a2203200241d0026a41086a280200360200200220022903d0023703f00320044104460d55200241b0026a41086a22092003280200360200200220022903f0033703b0022000410f6a20014110763a00002000410d6a20013b0000200041186a200a370000200041106a200b370000200041c8006a200c370000200041c0006a200d370000200041386a2007370000200041306a2008370000200041206a20063600002000410c6a20053a0000200041086a2004360000200041033a0000200041246a20022903b0023700002000412c6a2009280200360000200241c0056a24000f0b200241003a00f003200241f0036a20112003410047220410fe011a20032004490d4a200141046a200320046b3602002001201120046a3602002003450d1220022d00f0032114411221040c510b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a360200410f21042003410f4d0d11200241f8036a290300210c20022903f003210a0c0e0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d1020022903f003210a410c21040c0f0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0f20022903f003210a410521040c0e0b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0e20022802f0032109410d21040c070b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0d20022903f003210a410a21040c0c0b4100210e200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a22043602002003411f4d0d18200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003211420022800f303210920022900f703210a20022900ff03210c2002280087042106200241c8046a41046a20032d00003a0000200220022f01b2053b01d002200220022802ac053602c8044101210e0c190b411121040c0c0b4100210e200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a220f3602002003411f4d0d18200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003211420022800f303210920022900f703210a20022900ff03210c2002280087042106200241d0026a41046a20042d00003a0000200220022f01b2053b01b002200220022802ac053602d0024101210e0c190b200242003703f00341082104200241f0036a20112003410820034108491b220510fe011a200141046a200320056b3602002001201120056a360200200341074b0d040c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0820022903f003210a410621040c070b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0720022802f0032109410e21040b0c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a36020041072104200341074d0d050b20022903f003210a0c030b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d03200241f8036a290300210c20022903f003210a410b21040b0c040b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0120022903f003210a410921040b0c020b411321040b0b0b0c3b0b4101210541002004460d3c0b20040d100c110b4101210541002004460d390b20040d0e0c0f0b4101210541002004460d3f0b20040d0c0c0d0b410421050b024002402013450d00420021074100210f4100210441002109201321110340200241386a200110172002280238450d0c200228023c2203417f4c0d42024002402003450d00200310762210450d2420102001280200200141046a220e2802002206200320062003491b220610fe011a200e28020022142006490d25200e201420066b3602002001200128020020066a36020020062003460d010c0d0b4101211041002003470d0c0b200241306a200110172002280230450d0b20022802342206417f4c0d42024002402006450d00200610762214450d2220142001280200200141046a2212280200220e2006200e2006491b220e10fe011a20122802002215200e490d2320122015200e6b36020020012001280200200e6a360200200e2006460d010c0c0b4101211441002006470d0b0b200941016a210e024020092011470d00200f200e200e200f491b2211ad42187e2208422088a70d1e2008a722124100480d1e02402009450d00200520042012101422050d010c210b201210122205450d200b200520046a22092010360200200941146a2006360200200941106a20063602002009410c6a2014360200200941046a2003ad220842208620088437020020074280808080107c2107200f41026a210f200441186a2104200e2109200e2013490d000c020b0b41002111420021070b2005450d0b20072011ad842107410721090c3d0b4200210a4200210c0b200241a4056a41046a2203200241c8046a41046a2d00003a0000200220022f01d0023b01aa05200220022802c8043602a40502400240200e450d0020024198036a41046a20032d00003a0000200220022f01aa053b01b002200220022802a40536029803200242003703f803200242003703f003200241f0036a20042005411020054110491b220310fe011a200141046a200520036b3602002001200420036a3602002005410f4d0d00200241f8036a290300210820022903f003210720024190036a41046a20024198036a41046a2d00003a0000200220022f01b0023b019603200220022802980336029003410321040c010b411321040b0c310b4200210a4200210c0b200241a4056a41046a2204200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4050240200e450d00200241b4056a41046a20042d00003a0000200220022f01aa053b01ba05200220022802a4053602b405200241f0036a2005412020054120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a200f200410fe011a200141046a200520046b3602002001200f20046a3602002005411f4d0d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210f20022800f303211020022900f703210720022900ff032108200228008704210e200241d0026a41046a220520042d00003a0000200220022f01b20522043b01be05200220022802ac053602d002200241b0026a41046a20052d00003a0000200220043b01bc05200220022802d0023602b002200241a0026a200110174113210420022802a002450d2e20022802a4022203417f4c0d3c2003450d09200310762205450d2c20052001280200200141046a22122802002211200320112003491b221110fe011a201228020022132011490d2d2012201320116b3602002001200128020020116a36020020112003470d0a0c2f0b411321040c2d0b4101210641002004460d390b2004450d002006101f0b200220022f01c8043b01f0030c3e0b2006450d002014101f0b2003450d002010101f0b02402009450d002005210103400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200441686a22040d000b0b2011450d010b2005101f0b2000410b3a0000200241c0056a24000f0b4101210541002003460d250b2003450d232005101f0c230b20052004101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b1010000b20062003101a000b201241041015000b200641011015000b200e2015101a000b200341011015000b20062014101a000b41d80041081015000b200441011015000b20052009101a000b20052003101a000b2004200e101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b20042003101a000b200441011015000b20052009101a000b200341011015000b20112013101a000b0c010b4104210420024190036a41046a200241b4056a41046a2d00003a000020024188036a41046a200241b0026a41046a2d00003a0000200220022f01ba053b019603200220022802b40536029003200220022f01bc053b018e03200220022802b002360288032003ad220b422086200b84210b0b200241f0036a41046a220120024190036a41046a2d00003a0000200241c8046a41046a220320024188036a41046a2d00003a000020024198036a41026a221120024185036a41026a2d00003a0000200220022f0196033b01d00220022002280290033602f003200220022f018e033b01b00220022002280288033602c804200220022f0085033b019803024020044113470d002000410b3a0000200241c0056a24000f0b200241fc026a41046a221220012d00003a0000200241f4026a41046a220120032d00003a0000200241f0026a41026a220320112d00003a0000200220022f01d0023b018203200220022802f0033602fc02200220022f01b0023b01fa02200220022802c8043602f402200220022f0198033b01f002200041186a200c370000200041106a200a370000200041386a2008370000200041306a2007370000200041096a20143a0000200041086a20043a0000200041083a0000200041206a20063600002000410c6a2009360000200041296a200f3a0000200041c0006a200e3600002000412c6a20103600002000410a6a20022f0182033b0000200041246a20022802fc02360000200041286a20122d00003a00002000412a6a20022f01fa023b0000200041d0006a200b370000200041cc006a2005360000200041c8006a20012d00003a0000200041c4006a20022802f402360000200041c9006a20022f01f0023b0000200041cb006a20032d00003a0000200241c0056a24000f0b2004ad22074220862007842107410421090c080b2004ad22074220862007842107410621090c070b2000410b3a0000200241c0056a24000f0b2000410a3a0000200041086a2006360000200041046a41023600002000410c6a2004ad2207422086200784370000200241c0056a24000f0b0b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f0190033b01b405200220022902c8043703f003024020044106470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b018803200220022903f00337039803200041186a2008370000200041106a2007370000200041096a20053a0000200041086a20043a0000200041093a0000200041206a20063600002000410c6a20013600002000410a6a20022f0188033b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b2000410b3a0000200241c0056a24000f0b2004ad22074220862007842107410221090b200041013a0000200041106a20073700002000410c6a2005360000200041086a2009360000200241c0056a24000f0b20024190026a200110170240200228029002450d002002280294022205417f4c0d010240024002402005450d00200510762203450d0520032001280200200141046a220e2802002209200520092005491b220910fe011a200e280200220f2009490d06200e200f20096b3602002001200128020020096a36020020092005460d010c020b4101210341002005470d010b20024188026a20011017200228028802450d00200228028c022209417f4c0d02024002402009450d0020091076220e450d07200e2001280200200141046a2210280200220f2009200f2009491b220f10fe011a20102802002214200f490d0820102014200f6b36020020012001280200200f6a360200200f2009470d010c090b4101210e41002009460d080b2009450d00200e101f0b2005450d002003101f0b02402004450d002006101f0b200220022f01c8043b01f0030c060b100f000b200541011015000b2009200f101a000b200941011015000b200f2014101a000b2009ad220a422086200a84210a410221090c010b2000410b3a0000200241c0056a24000f0b200220022f01c8043b01f0030b200220022f01f0033b019803200041386a2007370000200041306a2008370000200041096a20013a0000200041086a20093a0000200041073a0000200041286a200a370000200041246a200e360000200041206a20053600002000411c6a2005360000200041186a2003360000200041146a2004360000200041106a20043600002000410c6a20063600002000410a6a20022f0198033b0000200241c0056a24000f0b2000410b3a0000200241c0056a24000bc51505017f037e017f037e077f230041d0036b2202240002400240200129037022034202520d00200241086a20014188016a41d80010fe011a420021030c010b20024198016a200141e4006a29000037030020024190016a200141dc006a29000037030020024188016a200141d4006a29000037030020024180016a200141cc006a290000370300200241f8006a200141c4006a290000370300200241e0006a41106a2001413c6a290000370300200241e0006a41086a200141346a2900003703002002200129002c37036020012903002105200241a0016a41106a200141f0006a220641106a290300370300200241a0016a41086a200641086a290300370300200220062903003703a00120014180016a2903002107200129037821084200210920024180026a41086a22064200370300200242003703800241dd81c000410d20024180026a1000200241086a41086a2006290300370300200220022903800237030842002104024002400240024002400240024002400240200241086a411041a4a4c100410041001001417f460d002002420037038002200241086a411020024180026a41084100100141016a41084d0d0120022903800221040b024020034201520d002008500d032004200720072004541b2203200320077d2008827d21090b20024180026a2009101d200241d4016a41026a20022d0082023a0000200241086a41086a220620024193026a290000370300200241086a410d6a220a20024198026a290000370000200220022f0180023b01d4012002200229008b02370308200228008302210b200228008702210c200241b8016a410d6a200a290000370000200241b8016a41086a2006290300370300200220022903083703b8012001410c6a2802002106200141086a2d0000210d2001280210210a200241bc036a41026a220e2001410b6a2d00003a000020024180026a41086a220f2001411c6a29020037030020024180026a410d6a2210200141216a290000370000200220012f00093b01bc0320022001290214370380020240024002400240024002400240200d4101470d00200241c0036a2006410676101e20022802c8032006413f7122064d0d01200241b8036a41026a20022802c00320064105746a220641026a2d00003a0000200241a0036a200641136a290000370300200241a5036a200641186a290000370000200220062f00003b01b8032002200629000b370398032006280007210a200628000321064101210d20022802c4030d020c030b200241b8036a41026a200e2d00003a000020024198036a41086a200f29030037030020024198036a410d6a2010290000370000200220022f01bc033b01b8032002200229038002370398030c030b4100210d20022802c403450d010b20022802c003101f0b200d450d010b200241c0036a41026a200241b8036a41026a2d00003a000020024180026a41086a20024198036a41086a29030037030020024180026a410d6a20024198036a410d6a290000370000200220022f01b8033b01c0032002200229039803370380024100210d0c010b4101210d4115210a41949bc10021060b200241fc016a41026a220e200241c0036a41026a2d00003a0000200241086a41086a220f20024180026a41086a2210290300370300200241086a41106a20024180026a41106a290300370300200220022f01c0033b01fc0120022002290380023703080240200d450d002000200636020420004101360200200041086a200a36020020014188016a1020200241d0036a24000f0b200241eb016a200f290300370000200241f0016a200241086a410d6a290000370000200220022f01fc013b01d8012002200a3600df01200220063600db01200220022903083700e3012002200e2d00003a00da012002200537038002201020014188016a41d80010fe01210e200241ff026a200c360000200241fb026a200b360000200241f0026a200241a0016a41106a290300370300200241e8026a2201200241a0016a41086a290300370300200241fa026a200241d4016a41026a2d00003a000020024183036a20022903b8013700002002418b036a200241b8016a41086a29030037000020024190036a200241b8016a410d6a290000370000200220022903a0013703e002200220022f01d4013b01f802200241003602102002420137030820024180026a200241086a1021200e200241086a102202400240024002400240024002400240024020022903e0024201520d0020012903002203420c882204420120044201561b22044200510d0c200241f0026a2903002004802104200228020c2206200241106a28020022016b41024f0d01200141026a220a2001490d0a20064101742201200a200a2001491b22014100480d0a2006450d05200228020820062001101422060d060c0e0b0240200228020c200241106a2802002201470d00200141016a22062001490d0a2001410174220a20062006200a491b220a4100480d0a2001450d0220022802082001200a101422060d030c0d0b200228020821060c030b200228020821060c050b200a10122206450d0a0b2002200a36020c20022006360208200241106a28020021010b200241106a200141016a360200200620016a41003a00000c030b200110122206450d080b2002200136020c20022006360208200241106a28020021010b200241106a200141026a360200200620016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b024002400240200228020c220b200241106a28020022016b41204f0d00200141206a22062001490d04200b4101742201200620062001491b220a4100480d04200b450d012002280208200b200a10142206450d020c090b200228020821060c090b200a101222060d070b200a41011015000b41de86c00041331023000b1010000b41d0c4c2001024000b41bcc9c1001024000b200a41011015000b200141011015000b2002200a36020c20022006360208200241106a2802002101200a210b0b200620016a220a200241f8026a220d290000370000200a41186a200d41186a290000370000200a41106a200d41106a290000370000200a41086a200d41086a290000370000024002400240200141206a2201418102490d00200241086a41186a220a4200370300200241086a41106a220d4200370300200241086a41086a220c42003703002002420037030820062001200241086a100220024198036a41186a200a29030037030020024198036a41106a200d29030037030020024198036a41086a200c290300370300200220022903083703980320024198036a4120200241e0006a200241d8016a10032101200b0d010c020b20062001200241e0006a200241d8016a10032101200b450d010b2006101f0b02402001450d00200041a99bc10036020420004101360200200041086a411a360200200e1020200241d0036a24000f0b20024198036a41186a200241d8016a41186a29030037030020024198036a41106a200241d8016a41106a29030037030020024198036a41086a200241d8016a41086a290300370300200220022903d801370398032002290380022104200241086a200e41d80010fe011a420121030b200041086a2003370300200041306a2004370300200041106a200229039803370300200041186a20024198036a41086a290300370300200041206a20024198036a41106a290300370300200041286a20024198036a41186a290300370300200041386a200241086a41d80010fe011a20004100360200200241d0036a24000bf60201037f230041306b2202240002400240411010122203450d00200341086a410029009482403700002003410029008c824037000020034110412010142203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1000200241086a2004290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010012204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241306a24000f0b41de86c00041331023000b411041011015000b412041011015000b890201027f230041306b22022400024002400240410f10122203450d00200341076a41002900e09540370000200341002900d995403700002003410f411e10142203450d012003200136000f200241206a41086a220142003703002002420037032020034113200241206a1000200241086a200129030037030020022002290320370300024002402002411041a4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b410f41011015000b411e41011015000b41de86c00041331023000b0700200010f1010b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a220028020010202000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510142204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010142204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101422040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101422070d0a0c110b2005101222040d130b200541011015000b200128020021040c050b200128020021070c070b2000101222040d0d0b200041011015000b200010122204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410122207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101422050d020c060b200128020021050c020b200810122205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011015000b4190bcc2001024000b2002200241086a360240200241a893c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4103360200200241106a41146a4103360200200241a4a4c1003602582002420137024c200241a8bcc2003602482002410336022c20024203370214200241e8c4c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41b0bcc200103a000b200041011015000b200441011015000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000b9da20104047f017e067f017e230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022030d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3920034101742205200420042005491b22054100480d392003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00000240200041086a29030022064202520d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d3a20034101742205200420042005491b22054100480d3a2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041106a20011021200041086a29030021060b2006a722034101460d012003450d0220002d000021030b200341ff01714101470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3620034101742205200420042005491b22054100480d362003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41f8dac1001024000b41f8dac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41003a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d3520054101742204200720072004491b22044100480d352005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41023a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d3520054101742204200720072004491b22044100480d352005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d3520044101742203200520052003491b22034100480d352004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a28020021030b024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22054100480d352003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41043a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d3520054101742204200720072004491b22044100480d352005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3520034101742205200420042005491b22044100480d352003450d0120012802002003200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101302402005450d002003200541186c6a2109200141046a210803402003280200210a2002200341086a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d36200b4101742207200c200c2007491b22074100480d36200b450d012001280200200b20071014220b0d020c080b2001280200210b0c020b20071012220b450d060b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d36200b4101742207200c200c2007491b22074100480d36200b450d012001280200200b20071014220b0d020c090b2001280200210b0c020b20071012220b450d070b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a200341186a22032009470d000b0b200041086a28020021030b20034101460d032003450d0420002d000021030b0240200341ff017122044103460d0020044102470d072001107741c8dac1001024000b024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d3120034101742205200420042005491b22054100480d312003450d0120012802002003200510142204450d020c070b200128020021040c070b2005101222040d050b200541011015000b200741011015000b200741011015000b41a4cac1001024000b41a4cac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2e20034101742205200420042005491b22054100480d2e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110782002200041306a36020c2002410c6a2001106d200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2e20034101742205200420042005491b22054100480d2e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a200110782002200041306a36020c2002410c6a2001106d2002200041c0006a36020c2002410c6a2001106d200041086a28020021030b20034101460d012003450d0220002d000021030b200341ff01714104470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2a20034101742205200420042005491b22054100480d2a2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41e0dac1001024000b41e0dac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2920044101742203200520052003491b22034100480d292004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041106a20011021200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b200341ff017122034101460d012003450d0220002d000021030b200341ff01714105470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2520034101742205200420042005491b22054100480d252003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b418cafc2001024000b418cafc2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a20011013200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002000410c6a20011078200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00002000410c6a20011013200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41043a00002000410c6a20011013200041206a200110132002200041106a36020c2002410c6a2001106d200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200041106a20011021200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200041106a20011021200041086a2d000021030b0240200341ff01714109470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41093a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d2520074101742204200a200a2004491b22044100480d252007450d01200128020020072004101422070d020c080b200128020021070c020b200410122207450d060b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff017122034101460d022003450d0320002d000021030b200341ff01714106470d05024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2020034101742205200420042005491b22054100480d202003450d0120012802002003200510142204450d020c060b200128020021040c060b2005101222040d040b200541011015000b200441011015000b41d499c2001024000b41d499c2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240200041046a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1e20034101742205200420042005491b22054100480d1e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a28020020011022200041046a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1e20034101742205200420042005491b22054100480d1e2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a20011078200041046a28020021030b20034101460d012003450d0220002d000021030b200341ff01714107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41f4aec2001024000b41f4aec2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034107714104460d00024020034103460d0020034102470d02200141046a280200200141086a2802002203470d05200341016a22042003490d4120034101742205200420042005491b22054100480d412003450d0e200128020020032005101422040d0f0c320b200141046a280200200141086a2802002203470d02200341016a22042003490d4020034101742205200420042005491b22054100480d402003450d07200128020020032005101422040d080c2f0b200141046a28020020052802002203470d02200341016a22042003490d3f20034101742205200420042005491b22054100480d3f2003450d09200128020020032005101422040d0a0c2f0b20034105470d03200141046a280200200141086a2802002203470d04200341016a22042003490d3e20034101742205200420042005491b22054100480d3e2003450d1b200128020020032005101422040d1c0c360b200128020021040c060b200128020021040c080b200128020021040c0a0b200341077122034101460d2820030d2641d89dc2001024000b200128020021040c180b200510122204450d270b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a28020021070240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d3720044101742203200520052003491b22034100480d372004450d07200128020020042003101422040d080c290b200128020021040c080b200510122204450d250b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a28020021070240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d3420044101742203200520052003491b22034100480d342004450d07200128020020042003101422040d080c270b200128020021040c080b200510122204450d230b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002106200041306a290300210d0240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d3120044101742203200520052003491b22034100480d312004450d07200128020020042003101422040d080c250b200128020021040c080b200310122204450d210b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a200736000002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d0b200341016a22042003490d3020034101742205200420042005491b22054100480d302003450d16200128020020032005101422040d170c2c0b200141046a280200200141086a2802002203470d08200341016a22042003490d2f20034101742205200420042005491b22054100480d2f2003450d0f200128020020032005101422040d100c290b200141046a28020020052802002203470d08200341016a22042003490d2e20034101742205200420042005491b22054100480d2e2003450d11200128020020032005101422040d120c290b200141046a280200200141086a2802002203470d09200341016a22042003490d2d20034101742205200420042005491b22054100480d2d2003450d16200128020020032005101422040d170c2a0b200310122204450d1f0b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c160b200310122204450d1d0b20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a220320063700082003200d3700002000410c6a28020021082002200041146a280200220336020c2002410c6a200110130240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2b20054101742204200720072004491b22044100480d2b2005450d01200128020020052004101422050d020c200b200128020021050c020b200410122205450d1e0b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041186a28020021082002200041206a280200220336020c2002410c6a200110130240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2b20054101742204200720072004491b22044100480d2b2005450d01200128020020052004101422050d020c210b200128020021050c020b200410122205450d1f0b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041246a280200210820022000412c6a280200220336020c2002410c6a200110130240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2b20054101742204200720072004491b22044100480d2b2005450d01200128020020052004101422050d020c220b200128020021050c020b200410122205450d200b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a0c130b200128020021040c080b200128020021040c0a0b200128020021040c0c0b200128020021040c0e0b200510122204450d1a0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00002000410c6a28020021070240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d2420044101742203200520052003491b22034100480d242004450d01200128020020042003101422040d020c1d0b200128020021040c020b200310122204450d1b0b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c0c0b200510122204450d190b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00000c090b200510122204450d170b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00000c060b200510122204450d150b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00000c030b200510122204450d130b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00000b20002d000021030b200341ff01714108470d16024002400240200141046a2205280200200141086a22032802002204470d00200441016a22072004490d1520044101742208200720072008491b22084100480d152004450d0120012802002004200810142207450d020c130b200128020021070c130b2008101222070d110b200841011015000b41d89dc2001024000b200541011015000b200541011015000b200541011015000b200341011015000b200341011015000b200341011015000b200441011015000b200441011015000b200441011015000b200541011015000b200341011015000b200541011015000b200541011015000b200541011015000b200541011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a00000240200041086a2d000022044102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041386a2903002106200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b200441ff01714104470d0302400240024002400240200528020020032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41023a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0520074101742204200820082004491b22044100480d052007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a290000370000200420072900003700000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0520074101742204200820082004491b22044100480d052007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b200141086a220b200441206a360200200720046a220441186a200041296a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210a2002200041d4006a280200220436020c2002410c6a20011013024002400240200141046a2802002208200b28020022076b20044f0d00200720046a220b2007490d0320084101742207200b200b2007491b22074100480d032008450d0120012802002008200710142208450d020c040b200128020021080c040b2007101222080d020b200741011015000b1010000b20012008360200200141046a2007360200200141086a28020021070b2003200720046a360200200820076a200a200410fe011a200041086a2d000021040b0240200441ff01714105470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410e3a0000200041086a2d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410f3a0000200041086a2d000021040b0240200441ff01714112470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d1620044101742207200520052007491b22074100480d162004450d0120012802002004200710142205450d020c030b200128020021050c030b2007101222050d010b200741011015000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200041096a2d00003a0000200041086a2d000021040b200441ff017122034101460d012003450d0220002d000021030b200341ff01714109470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41a4f8c1001024000b41a4f8c1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1620074101742204200a200a2004491b22044100480d162007450d01200128020020072004101422070d020c070b200128020021070c020b200410122207450d050b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff01714103470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c040b200128020021040c040b2005101222040d020b200541011015000b200441011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a2d000021030b200341077122034101460d012003450d0220002d000021030b200341ff0171410a470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41e8bdc2001024000b41e8bdc2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a0000200041046a28020022034102460d012003450d0220034101460d030b200241106a24000f0b024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41dcbfc1001024000b41dcbfc1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a28020021072002200041106a280200220036020c2002410c6a20011013024002400240200141046a2802002204200528020022036b20004f0d00200320006a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310142204450d020c040b200128020021040c040b2003101222040d020b200341011015000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200320006a360200200420036a2007200010fe011a200241106a24000b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410436022c2002420137021420024198d4c2003602102002200241086a3602282002200241286a360220200241106a41a0d4c200103a000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a410036020020012004370318200141a4a4c100360210200142013702042001200141186a36020020012003370328200120023703202001200141206a103a000bd51701267f230041900d6b220324002003410036021041af82c0004110200341106a41041004200320003703f00c200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a410810042004420037030020034200370300418c83c0004111200310002005200429030037030020032003290300370310200341106a411020014120100402400240411010122204450d00200441086a410029009482403700002004410029008c824037000020044110412010142205450d0120052000427f7c370010200341086a22044200370300200342003703002005411820031000200341106a41086a2206200429030037030020032003290300370310200341106a41102001412010042005101f200442003703002003420037030041ea81c0004115200310002006200429030037030020032003290300370310200341106a4110200241201004200442003703002003420037030041dd81c000410d2003100020062004290300370300200320032903003703100240200341106a411041a4a4c100410041001001417f460d00200342003703f00c02400240200341106a4110200341f00c6a41084100100141016a41084d0d0020032903f00c4200510d02200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a20042903003703002003200329030037031041002107427f21000240200341106a411041a4a4c100410041001001417f460d00200342003703f00c200341106a4110200341f00c6a41084100100141016a41084d0d0220032903f00c427f7c21000b200341106a410041e00c10fd011a41002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200341f00c6a42002000427f7c2000501b2200101d200341106a202722014103704105746a220441186a200341f00c6a41186a290200370000200441106a200341f00c6a41106a290200370000200441086a200341f00c6a41086a290200370000200420032902f00c370000200141016a21274100210541002102024003402001200141036e2206417d6c6a4102470d01200341106a20056a220441df006a2d000022262004411f6a2d000022287120262028722004413f6a2d00007172211c200441de006a2d000022262004411e6a2d000022287120262028722004413e6a2d00007172211b200441dd006a2d000022262004411d6a2d000022287120262028722004413d6a2d00007172211a200441dc006a2d000022262004411c6a2d000022287120262028722004413c6a2d000071722119200441db006a2d000022262004411b6a2d000022287120262028722004413b6a2d000071722118200441da006a2d000022262004411a6a2d000022287120262028722004413a6a2d000071722117200441d9006a2d00002226200441196a2d00002228712026202872200441396a2d000071722116200441d8006a2d00002226200441186a2d00002228712026202872200441386a2d000071722115200441d7006a2d00002226200441176a2d00002228712026202872200441376a2d000071722114200441d6006a2d00002226200441166a2d00002228712026202872200441366a2d000071722113200441d5006a2d00002226200441156a2d00002228712026202872200441356a2d000071722112200441d4006a2d00002226200441146a2d00002228712026202872200441346a2d000071722111200441d3006a2d00002226200441136a2d00002228712026202872200441336a2d000071722110200441d2006a2d00002226200441126a2d00002228712026202872200441326a2d00007172210f200441d1006a2d00002226200441116a2d00002228712026202872200441316a2d00007172210e200441d0006a2d00002226200441106a2d00002228712026202872200441306a2d00007172210d200441cf006a2d000022262004410f6a2d000022287120262028722004412f6a2d00007172210c200441ce006a2d000022262004410e6a2d000022287120262028722004412e6a2d00007172210b200441cd006a2d000022262004410d6a2d000022287120262028722004412d6a2d00007172210a200441cc006a2d000022262004410c6a2d000022287120262028722004412c6a2d000071722109200441cb006a2d000022262004410b6a2d000022287120262028722004412b6a2d000071722108200441ca006a2d000022262004410a6a2d000022287120262028722004412a6a2d000071722107200441c9006a2d00002226200441096a2d00002228712026202872200441296a2d00007172211d200441c8006a2d00002226200441086a2d00002228712026202872200441286a2d00007172211e200441c7006a2d00002226200441076a2d00002228712026202872200441276a2d00007172211f200441c6006a2d00002226200441066a2d00002228712026202872200441266a2d000071722120200441c5006a2d00002226200441056a2d00002228712026202872200441256a2d000071722121200441c4006a2d00002226200441046a2d00002228712026202872200441246a2d000071722122200441c3006a2d00002226200441036a2d00002228712026202872200441236a2d000071722123200441c2006a2d00002226200441026a2d00002228712026202872200441226a2d000071722124200441c1006a2d00002226200441016a2d00002228712026202872200441216a2d000071722125200441c0006a2d0000222620042d00002228712026202872200441206a2d000071722126200541800c460d01200341106a20052006410574200141096e41e0006c6b6a6a220441ff006a201c3a0000200441fe006a201b3a0000200441fd006a201a3a0000200441fc006a20193a0000200441fb006a20183a0000200441fa006a20173a0000200441f9006a20163a0000200441f8006a20153a0000200441f7006a20143a0000200441f6006a20133a0000200441f5006a20123a0000200441f4006a20113a0000200441f3006a20103a0000200441f2006a200f3a0000200441f1006a200e3a0000200441f0006a200d3a0000200441ef006a200c3a0000200441ee006a200b3a0000200441ed006a200a3a0000200441ec006a20093a0000200441eb006a20083a0000200441ea006a20073a0000200441e9006a201d3a0000200441e8006a201e3a0000200441e7006a201f3a0000200441e6006a20203a0000200441e5006a20213a0000200441e4006a20223a0000200441e3006a20233a0000200441e2006a20243a0000200441e1006a20253a0000200441e0006a20263a0000200541e0006a210520062101200241016a22024111490d000b0b202741d100470d000b2003201c3a008f0d2003201b3a008e0d2003201a3a008d0d200320193a008c0d200320183a008b0d200320173a008a0d200320163a00890d200320153a00880d200320143a00870d200320133a00860d200320123a00850d200320113a00840d200320103a00830d2003200f3a00820d2003200e3a00810d2003200d3a00800d2003200c3a00ff0c2003200b3a00fe0c2003200a3a00fd0c200320093a00fc0c200320083a00fb0c200320073a00fa0c2003201d3a00f90c2003201e3a00f80c2003201f3a00f70c200320203a00f60c200320213a00f50c200320223a00f40c200320233a00f30c200320243a00f20c200320253a00f10c200320263a00f00c200341086a220442003703002003420037030041cc81c000411120031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41201004200442003703002003420037030041ff81c000410d200310002005200429030037030020032003290300370310200341106a41101005200341900d6a24000f0b41de86c00041331023000b41de86c00041331023000b41f4bfc1001024000b411041011015000b412041011015000bb00202027f017e230041206b2201240002400240411310122202450d002002410f6a41002800ab8240360000200241086a41002900a482403700002002410029009c824037000020024113413310142202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1000200141086a200029030037030020012001290310370300024002402001411041a4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021030b2002101f200141206a240020030f0b41de86c00041331023000b411341011015000b413341011015000b9f6a17067f017e127f017e047f037e037f017e017f017e027f017e027f077e097f017e017f017e047f027e017f047e047f230041b0046b2201240002400240024002400240024002400240024002400240024002400240024041af82c000411041a4a4c100410041001001417f460d002001410036020841af82c0004110200141086a41044100100141016a41044d0d0220012802082102410021030c010b410121030b4108210420014198016a41086a22054200370300200142003703980141ff81c000410d20014198016a1000200141f8006a41086a20052903003703002001200129039801370378024002400240200141f8006a411041a4a4c100410041001001417f460d002001421037028c012001200141f8006a36028801200120014188016a10282001280200450d0920012802042206ad42f8007e2207422088a70d042007a72205417f4c0d042005450d01200510122204450d052006450d020c060b41002117410021160c060b4108210420060d040b41002116410021172004450d060c040b41de86c00041331023000b100f000b200541081015000b200141f0036a41176a2108200141f0026a41176a210920014190036a41176a210a41c000210b20014188016a41086a210c200141086a41186a210d200141086a41106a210e20014180026a411b6a210f20014180026a41136a2110200141f0026a410c6a2111200141e6016a2112200141ee016a2113200141f2016a21144100211541002105200621160340200141003a0008200128028801200128028c01200141086a4101200c28020010012117200c200c280200201741016a41014b22186a22173602002018450d024101214d0240024020012d000822184101460d0020180d0420014100360208200c4100200128028801200128028c01200141086a41042017100122172017417f461b2218410420184104491b200c2802006a2217360200201841034d0d042001280208214e4100214d0c010b0b200141003a0008200128028801200128028c01200141086a4101201710012117200c200c280200201741016a221741014b6a221836020002400240024020174102490d00410b213420012d00082217410a4b0d010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020170e0b2b050203000607040901082b0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2c20012d00ff012217450d0f20174101460d0e20174102470d2c200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2c2019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d8012001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d2c2019290300211f20012903082120200141d0036a41146a201c360200200141d0036a41106a201b360200200141d0036a41186a201d360200200141d0036a411c6a201e3602002001201a3703d803200120073703d003201e4118762117200141d0036a410f6a2900002221422088a72122200141d0036a411b6a2800002123200141d0036a41176a280000212420012900d70321252021a7212641022119200721270c100b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2b20012d00ff0122174101460d0820170d2b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2b20012903082125410021190c090b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d1220012d00ff012217450d1020174101460d0f20174102470d12200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300211a200e280200211b200141086a41146a221e280200211c200d280200211d20012903082107200141d0036a411c6a200141086a411c6a22282802002229360200200141d0036a41186a201d360200200141d0036a41146a201c360200200141d0036a41106a201b3602002001201a3703d803200120073703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300212a20282802002128200d280200212b201e280200211e200e280200212c2001290308212d2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a22183602002017410f4d0d122019290300212e2001290308212f2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d12201929030021302001290308213120014190036a411c6a202836020020014190036a41186a202b36020020014190036a41146a201e360200200141b0036a411c6a2029360200200141b0036a41186a201d360200200141b0036a41146a201c360200200141b0036a41106a201b36020020014190036a41106a202c360200200141c8016a41086a200a41086a2d00003a00002001202d370390032001202a370398032001200a2900003703c801202d4208862029411876ad842132200120073703b0032001201a3703b8032007423888201a4208868421252007421888a72117200141b0036a411b6a2800002123200141b0036a41176a2800002124200141b0036a41136a2800002122200141b0036a410f6a280000212620014190036a410f6a290000211f20012900970321202007a7211841022119202f2121202e21330c110b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2920012d00080d2920014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2920012903082107200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b801200742088821272007a72119410321340c2a0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2820012d00ff01221741064b0d28024020170e0700141315121617000b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2820192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a20014180026a411c6a200141086a411c6a280200221c36020020014180026a41186a201b36020020014180026a41146a201936020020014180026a41106a201736020020014190046a411c6a201c36020020014190046a41186a221c201b36020020014190046a41146a201936020020014190046a41106a2219201736020020012007370388022001201a3703800220012007370398042001201a3703900420014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2820012802082118200141f0036a41186a201c290300370300200141f0036a41106a2019290300370300200141f0036a41086a20014190046a41086a29030037030020012001290390043703f003200141f0036a411f6a2d00002117200141f0036a411b6a280000212320082800002124200141f0036a41136a2800002122200141f0036a410f6a280000212620012900f703212520012800f303211b20012f00f103213520012d00f003211c410021190c180b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2720012d00ff010d27200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b22174120201741204922171b200c2802006a221836020020170d272019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d80120014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2720012802082136200141b8016a41086a20192d00003a0000200120012903083703b801200742088821272007a7211941012134201c2122201e2123201d2124201a2125201b21260c280b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2620012d00ff010d2620014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221836020020170d262001280208211b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d26200141086a41086a2217290300212520012903082107200141b8016a41086a20172d00003a0000200120012902083703b801200742088821272007a7211941052134201b21260c270b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2520012d00ff012217450d0420174101470d25200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d2520192903002107200141086a411c6a2802002117200d280200211820012903082120200141d8016a41106a200e290300370300200141d8016a41186a2018360200200141d8016a411c6a2017360200200120073703e001200120203703d801201741107621172020421088a721362020420888a7213720122901002125201328010021262014280100212220012901de0121072020a72138410121390c050b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2420012d00080d24200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d24200141086a410f6a2900002125200141086a411f6a2d00002124200141086a411b6a2800002122200141086a41176a2800002126200128000b213620012d000a213720012d0009213820012d00082139200129000f2107200141b8016a41086a20192d00003a0000200120012900083703b801200742088821272007a72119410a21340c050b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2020012d00ff012217410a4b0d2041002119024020170e0b20001819161b1c1a1d171f200b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d202001280208213a200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410121190c1f0b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2220012903082125410121190b200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b80141092134420021270c220b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d2020012d0008213841002139420021250b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801201741ffff03712124200742088821272007a72119410621340b0c1f0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1d20192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a22192017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a36020020170d1d2001280208211820014190036a41186a201c29030037030020014190036a41106a201929030037030020014190036a41086a200141b0036a41086a290300370300200120012903b003370390032001350290032001330194032001310096034210868442208684212720014190036a410f6a2900002207422088a7212220014198016a41086a290300211f20014190036a411f6a2d0000211720014190036a411b6a2800002123200a2800002124200129039801212020012900970321252007a72126410121190c010b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d1c200141086a41086a2903002207422088a7212220012903082125200141f0026a41186a290300211f200141f0026a41106a290300212020112802002118200141f0026a41086a280200211720012802f40221232007a7212641002119420021270b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b8012018ad4220862017ad842132410421340c0c0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0220192903002120200e2802002117200141086a41146a2802002118200d280200213420012903082107200141f0026a411c6a200141086a411c6a2802002219360200200141f0026a41186a2034360200200141f0026a41146a2018360200200141f0026a41106a2017360200200141d0026a411c6a2019360200200141d0026a41186a2034360200200141d0026a41146a2018360200200141d0026a41106a2017360200200120203703f802200120073703f002200120203703d802200120073703d002200141c8016a41086a200141c7026a41086a2d00003a0000200120012900c7023703c801200742388820204208868421252007421888a721172019411876ad2132200141d0026a411b6a2800002123200141d0026a41176a2800002124200141d0026a41136a2800002122200141d0026a410f6a28000021262007a72118410121190c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a280200360200200141a0026a41186a221d201c360200200141a0026a41146a201b360200200141a0026a41106a221b2017360200200120073703a8022001201a3703a0022001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d012019290300211f2001290308212020014180026a41186a201d29030037030020014180026a41106a201b29030037030020014180026a41086a200141a0026a41086a290300370300200120012903a00237038002200141c8016a41086a20192d00003a0000200120012903083703c80120013502800222072001330184022001310086024210868442208684421888a7211720014180026a411f6a3100002132200f280000212320014180026a41176a28000021242010280000212220014180026a410f6a280000212620012900870221252007a72118410021190b200141086a41086a200141c8016a41086a2d000022343a0000200141b8016a41086a20343a0000200120012903c80122073703b801200120073703082017ad4218862018ad42ffffff0783842127410221344100213b0c190b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c170b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211c20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211e20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208212820014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d1620012802082117200141003a00ff01200128028801200128028c01200141ff016a4101201810012118200c200c280200201841016a41014b22186a22193602002018450d1620012d00ff01221841054b0d1620014200370308200c4100200128028801200128028c01200141086a41082019100122192019417f461b2219410820194108491b200c2802006a360200201941074d0d162017411076213c2017410876211d200129030821254104211920282123201e2124201c2122201b21260c050b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d152001280208211b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a3602002017450d1520012d00ff01221c41064f0d15200141f0026a41186a2802002217411076213c2017410876211d200141f0026a411c6a2802002118200141f0026a41146a2802002123200141f0026a41106a280200212420112802002122200141f0026a41086a2802002126410221190c050b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d142019290300211a200e2802002117200141086a41146a2802002119200d280200211b20012903082107200141d0026a411c6a200141086a411c6a280200221c360200200141d0026a41186a201b360200200141d0026a41146a2019360200200141d0026a41106a20173602002001201a3703d802200120073703d00220014100360208200c4100200128028801200128028c01200141086a41042018100122182018417f461b22184104201841044922181b200c2802006a36020020180d1420012802082118200141a0026a411c6a201c360200200141a0026a41186a201b360200200141a0026a41146a2019360200200141a0026a41106a2017360200200120073703a0022001201a3703a8022007423888201a420886842125201c41187621172007421888a7211b2007420888a72135200141a0026a411b6a2800002123200141a0026a41176a2800002124200141a0026a41136a2800002122200141a0026a410f6a28000021262007a7211c410121190c040b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1320192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221936020020170d1320012802082118200141003a00ff01200128028801200128028c01200141ff016a4101201910012117200c200c280200201741016a41014b22176a3602002017450d1320012d00ff01221d41044f0d1320014190036a41186a201c29030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200120012903b0033703900320014190036a411f6a2d0000211720014190036a411b6a2800002123200a280000212420014190036a41136a280000212220014190036a410f6a28000021262001290097032125200128009303211b20012f009103213520012d009003211c410321190c030b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2219360200201741034d0d1220012802082118200d4200370300200e4200370300200141086a41086a221b420037030020014200370308200c4100200128028801200128028c01200141086a41202019100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d12201b2903002120200e2802002117200141086a41146a2802002134200d280200211920012903082107200141d0036a411c6a200141086a411c6a280200223b360200200141d0036a41186a2019360200200141d0036a41146a2034360200200141d0036a41106a2017360200200120203703d803200120073703d00320074238882020420886842125203b41187621172007421888a7211b2007420888a72135200141d0036a411b6a2800002123200141d0036a41176a2800002124200141d0036a41136a2800002122200141d0036a410f6a28000021262007a7211c410521190c020b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d112001280208211b200141d8016a41186a2802002217411076213c2017410876211d200141d8016a411c6a2802002118200141d8016a41146a2802002123200141d8016a41106a2802002124200141d8016a410c6a2802002122200141d8016a41086a2802002126410621190b0b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b801201bad4218862035ad42ffff038342088684201cad42ff0183842127203cad42ffff0383421086201dad42ff0183420886842017ad42ff0183842018ad422086842132410721340b0c0f0b410421190c090b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0920192903002107200e2802002117200141086a41146a221e280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a2228280200221d360200200141a0026a41186a201c360200200141a0026a41146a201b360200200141a0026a41106a201736020020014180026a411c6a201d36020020014180026a41186a221d201c36020020014180026a41146a201b36020020014180026a41106a221b2017360200200120073703a8022001201a3703a00220012007370388022001201a37038002200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0920192903002120200e2802002117201e2802002118200d280200213420012903082107200141f0036a411c6a2028280200360200200141f0036a41186a2034360200200141f0036a41146a2018360200200141f0036a41106a201736020020014190046a41086a20014180026a41086a29030037030020014190046a41106a201b29030037030020014190046a41186a201d290300370300200120203703f803200120073703f003200120012903800237039004200141c8016a41086a200841086a2d00003a0000200120082900003703c801200742088620014190046a411f6a31000084213d20012f01900420012d00920441107472213e200141f0036a410f6a290000213f20014190046a411b6a280000214020014190046a41176a280000214120014190046a41136a280000214220014190046a410f6a280000214320012900f70321442001290097042145200128009304213a410921190c060b410221190c070b410321190c060b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d0620012903082145200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410721190c050b410521190c040b410621190c030b200d4200370300200e4200370300200141086a41086a420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0341082119200141086a41086a2903002120200e2802002117200141086a41146a22182802002134200d280200213b20012903082107200141086a411c6a224620462802002246360200200d203b36020020182034360200200e2017360200200141c8016a41086a200141c7026a41086a2d00003a00002001202037031020012007370308200120012900c7023703c801200742388820204208868421452007421888a7213a2046411876ad213d200141086a411b6a2800002140200141086a41176a2800002141200141086a41136a2800002142200141086a410f6a28000021432007a7213e0b0c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a221d280200211b200d280200211c2001290308211a200141b0036a411c6a200141086a411c6a221e280200360200200141b0036a41186a2228201c360200200141b0036a41146a201b360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117201d280200211c200d280200211d2001290308211a200141d0036a411c6a201e280200360200200141d0036a41186a221e201d360200200141d0036a41146a201c360200200141d0036a41106a221c2017360200200120073703d8032001201a3703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d01200d2903002107200e29030021202001290308211f200141d8016a41086a20192903002221370300200141d8016a41106a2020370300200141d8016a41186a2007370300200141d0026a41086a2021370300200141d0026a41186a2007370300200141d0026a41106a20203703002001201f3703d8012001201f3703d00220014190036a41186a202829030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200141f0026a41086a200141d0036a41086a290300370300200141f0026a41106a201c290300370300200141f0026a41186a201e290300370300200120012903b00337039003200120012903d0033703f002200141c8016a41086a200941086a2d00003a0000200120092900003703c80120012f01d00220012d00d20241107472214b20012f01900320012d00920341107472213e20013502f00220013301f40220013100f602421086844220868442088620014190036a411f6a31000084213d200141f0026a410f6a290000213f200141d0026a410f6a2900002148200141d0026a411f6a310000214a200141d0026a41176a290000214920014190036a411b6a2800002140200a280000214120014190036a41136a280000214220014190036a410f6a280000214320012900f702214420012900d70221472001290097032145200128009303213a20012800d302214c410a21190b41082134200141086a41086a200141c8016a41086a2d000022173a0000200141b8016a41086a20173a0000200120012903c80122073703b80120012007370308203aad421886203ead42ffffff078384212720442120203f211f204721212048213320492131204a2130203d2132204221222040212320412124204b213b20452125204321260c040b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c020b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d0141002117024020012d00082218450d0020184101470d02410121170b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801420021274200212520172139410021340c020b410b21340b204621190b200141086a41086a2218200141b8016a41086a2d00003a0000200120012903b8013703082034410b460d02200541016a2117200141a8016a41086a224620182d00003a0000200120012903083703a801201820462d00003a0000200120012903a801370308024020052016470d002015201720172015491b2216ad42f8007e2207422088a70d072007a722464100480d0702402005450d002004200b41406a2046101422040d010c060b204610122204450d050b2004200b6a220541686a2032370000200541646a2023360000200541606a20243600002005415c6a2022360000200541586a2026360000200541446a2036360000200541436a20373a0000200541426a20383a0000200541416a20393a0000200541406a20343a0000200541506a2025370000200541486a20274208862019ad42ff018384370000200541786a201f370000200541706a2020370000200541286a2030370000200541206a2031370000200541186a2033370000200541106a202137000020182d00002118200129030821072005410b6a203b4110763a0000200541096a203b3b0000200541346a204e360200200541306a204d3602002005410c6a204c360000200541086a20183a000020052007370000201541026a2115200b41f8006a210b201921462017210520172006490d000b0b200141086a200041f00010fe011a20162017470d03201741016a22052017490d042017410174220c20052005200c491b2216ad42f8007e2207422088a70d042007a722054100480d04024002402017450d002004201741f8006c200510142204450d010c050b2005101222040d040b200541081015000b2016450d002004101f0b41de86c00041331023000b204641081015000b2004201741f8006c220c6a200141086a41f00010fe01220541f4006a20023602002005200336027020014100360210200142013703082001201741016a2205360278200141f8006a200141086a101302402005450d00200c41f8006a2118200141106a210c2004210503400240024002400240024002400240024002400240200541f0006a2802004101470d00200141013a00ff01200128020c200c2802002217470d01201741016a220b2017490d0c20174101742234200b200b2034491b22344100480d0c2017450d032001280208201720341014220b0d040c0d0b200141003a00ff01200128020c200c2802002217470d01201741016a220b2017490d0b20174101742234200b200b2034491b22344100480d0b2017450d052001280208201720341014220b0d060c0d0b410121342001280208210b0c030b410021342001280208210b0c050b20341012220b450d090b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a00000c030b20341012220b450d070b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a0000200541f4006a28020021340240024002400240200128020c220b200c28020022176b41044f0d00201741046a22152017490d07200b4101742217201520152017491b22174100480d07200b450d012001280208200b20171014220b0d020c0a0b2001280208210b0c020b20171012220b450d080b2001201736020c2001200b360208200c28020021170b200c201741046a360200200b20176a20343600000b2005200141086a1029200541f8006a2105201841887f6a22180d000b0b200141086a41086a220c2802002117200128020c21182001280208210520014198016a41086a220b4200370300200142003703980141ff81c000410d20014198016a1000200c200b2903003703002001200129039801370308200141086a411020052017100402402018450d002005101f0b02402016450d002004101f0b200141b0046a24000f0b1010000b203441011015000b203441011015000b201741011015000bca0301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081001210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f22064103712204450d0020044101460d0120044102470d0220024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100122012001417f461b22014103200141034922011b20042802006a36020020010d04200228020841027621040c050b20064102762104410121030c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510012104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641044f0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100122012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b8a8a0103057f027e017f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4420024101742204200320032004491b22044100480d442002450d1f20012802002002200410142203450d200c420b200141046a280200200141086a2802002202470d09200241016a22032002490d4320024101742204200320032004491b22044100480d432002450d1420012802002002200410142203450d150c3f0b200141046a280200200141086a2802002202470d09200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002202470d09200241016a22032002490d4120024101742204200320032004491b22044100480d412002450d1620012802002002200410142203450d170c360b200141046a280200200141086a2802002202470d09200241016a22032002490d4020024101742204200320032004491b22044100480d402002450d1720012802002002200410142203450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002202470d0a200241016a22032002490d3e20024101742204200320032004491b22044100480d3e2002450d1b20012802002002200410142203450d1c0c2d0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1c20012802002002200410142203450d1d0c2a0b200141046a2204280200200141086a22022802002203470d0a200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1d20012802002003200610142205450d1e0c270b200141046a280200200141086a2802002202470d0a200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1e20012802002002200410142203450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3320024101742204200320032004491b22044100480d332002450d1f20012802002002200410142203450d200c210b200128020021030c360b200128020021030c300b200128020021030c2d0b200128020021030c2a0b200128020021030c270b200128020021030c330b200128020021030c230b200128020021030c200b200128020021050c1d0b200128020021030c1a0b200128020021030c170b2004101222030d2a0b200441011015000b2004101222030d230b200441011015000b2004101222030d1f0b200441011015000b2004101222030d1b0b200441011015000b2004101222030d170b200441011015000b2004101222030d220b200441011015000b2004101222030d110b200441011015000b2004101222030d0d0b200441011015000b2006101222050d090b200641011015000b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041086a2903004201520d0020032002470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0320012802002002200410142203450d040c090b20032002470d01200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0420012802002002200410142203450d050c060b200128020021030c080b200128020021030c050b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1720024101742200200320032000491b22004100480d172002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1520024101742200200320032000491b22004100480d152002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041016a2d00004101470d0020032002470d01200241016a22002002490d2020024101742203200020002003491b22034100480d202002450d0320012802002002200310142200450d040c090b20032002470d01200241016a22002002490d1f20024101742203200020002003491b22034100480d1f2002450d0420012802002002200310142200450d050c060b200128020021000c080b200128020021000c050b2003101222000d050b200341011015000b2003101222000d010b200341011015000b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41003a00000f0b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41013a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341054b0d0002400240024002400240024020030e06000402030105000b200428020020022802002203470d09200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1320012802002003200610142205450d140c270b200428020020022802002203470d05200341016a22052003490d3b20034101742206200520052006491b22064100480d3b2003450d0c20012802002003200610142205450d0d0c240b200428020020022802002203470d05200341016a22052003490d3a20034101742206200520052006491b22064100480d3a2003450d0d20012802002003200610142205450d0e0c210b200428020020022802002203470d05200341016a22052003490d3920034101742206200520052006491b22064100480d392003450d0e20012802002003200610142205450d0f0c1e0b200428020020022802002203470d06200341016a22052003490d3820034101742206200520052006491b22064100480d382003450d1120012802002003200610142205450d120c1b0b200428020020022802002203470d06200341016a22052003490d3720034101742206200520052006491b22064100480d372003450d1220012802002003200610142205450d130c180b200428020020022802002203470d06200341016a22052003490d3620034101742206200520052006491b22064100480d362003450d1320012802002003200610142205450d140c150b200128020021050c1f0b200128020021050c1c0b200128020021050c190b200128020021050c1e0b200128020021050c150b200128020021050c120b200128020021050c0f0b2006101222050d170b200641011015000b2006101222050d130b200641011015000b2006101222050d0f0b200641011015000b2006101222050d130b200641011015000b2006101222050d090b200641011015000b2006101222050d050b200641011015000b2006101222050d010b200641011015000b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41003a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2420054101742203200620062003491b22034100480d242005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2420034101742200200420042000491b22004100480d242003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41063a00002000410c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2220034101742200200420042000491b22004100480d222003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41023a00002000410c6a28020021050240024002400240024020042802002203200228020022026b41044f0d00200241046a22042002490d2020034101742202200420042002491b22024100480d202003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a2005360000200041096a2d0000200110580f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41043a0000200041186a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600002000411c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041206a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041246a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041286a28020021050240024002400240024020042802002204200228020022036b41044f0d00200341046a22062003490d1e20044101742203200620062003491b22034100480d1e2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a20053600002000412c6a2d000020011058200041106a290300210702400240024002400240200141046a2802002203200628020022006b41084f0d00200041086a22042000490d1e20034101742200200420042000491b22004100480d1e2003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041086a360200200320006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41033a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1c20054101742203200620062003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1c20054101742203200920092003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022004101460d00024020004102460d0020004103470d02200428020020022802002200470d05200041016a22032000490d2e20004101742204200320032004491b22044100480d2e2000450d0b20012802002000200410142203450d0c0c150b200428020020022802002200470d02200041016a22032000490d2d20004101742204200320032004491b22044100480d2d2000450d0620012802002000200410142203450d070c120b200428020020022802002200470d02200041016a22032000490d2c20004101742204200320032004491b22044100480d2c2000450d0720012802002000200410142203450d080c0f0b200428020020022802002200470d03200041016a22032000490d2b20004101742204200320032004491b22044100480d2b2000450d0a20012802002000200410142203450d0b0c0c0b200128020021030c100b200128020021030c0d0b200128020021030c100b200128020021030c090b2004101222030d0b0b200441011015000b2004101222030d070b200441011015000b2004101222030d090b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41013a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41033a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41053a00002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1a20054101742203200920092003491b22034100480d1a2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024020042802002204200228020022036b41204f0d00200341206a22052003490d1a20044101742203200520052003491b22034100480d1a2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b2002200341206a360200200420036a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41013a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1820054101742203200620062003491b22034100480d182005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d1820034101742200200420042000491b22004100480d182003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41063a0000200041026a2103200141046a2802002105200428020021020240024002400240024002400240024002400240024020002d00014101470d0020052002470d01200241016a22002002490d1c20024101742204200020002004491b22044100480d1c2002450d0320012802002002200410142200450d040c090b20052002470d01200241016a22002002490d1b20024101742204200020002004491b22044100480d1b2002450d0420012802002002200410142200450d050c060b200128020021000c080b200128020021000c050b2004101222000d050b200441011015000b2004101222000d010b200441011015000b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41003a000002400240024002400240200141046a28020020042802002200470d00200041016a22022000490d1820004101742204200220022004491b22044100480d182000450d0120012802002000200410142202450d020c030b200128020021020c030b2004101222020d010b200441011015000b20012002360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200220006a20032d00003a00000f0b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41013a000002400240024002400240200141046a2802002202200428020022006b41204f0d00200041206a22042000490d1620024101742200200420042000491b22004100480d162002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041206a360200200220006a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200120032900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d2020024101742204200320032004491b22044100480d202002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1f20024101742204200320032004491b22044100480d1f2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1e20024101742204200320032004491b22044100480d1e2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1820034101742202200420042002491b22024100480d182003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1820024101742200200320032000491b22004100480d182002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1620034101742202200420042002491b22024100480d162003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041d8006a2903002107200041d0006a290300210802400240024002400240200141046a2802002203200428020022026b41104f0d00200241106a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241106a360200200320026a2202200737000820022008370000200041e8006a2903002107200041e0006a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4e20024101742204200320032004491b22044100480d4e2002450d1f20012802002002200410142203450d200c3f0b200141046a280200200141086a2802002200470d09200041016a22022000490d4d20004101742203200220022003491b22034100480d4d2000450d1420012802002000200310142202450d150c3c0b200141046a280200200141086a2802002202470d09200241016a22032002490d4520024101742204200320032004491b22044100480d452002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002200470d09200041016a22022000490d4b20004101742203200220022003491b22034100480d4b2000450d1620012802002000200310142202450d170c360b200141046a280200200141086a2802002200470d09200041016a22022000490d4a20004101742203200220022003491b22034100480d4a2000450d1720012802002000200310142202450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d4220024101742204200320032004491b22044100480d422002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002200470d0a200041016a22022000490d4820004101742203200220022003491b22034100480d482000450d1b20012802002000200310142202450d1c0c2d0b200141046a280200200141086a2802002200470d0a200041016a22022000490d4720004101742203200220022003491b22034100480d472000450d1c20012802002000200310142202450d1d0c2a0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1d20012802002002200410142203450d1e0c270b200141046a28020020042802002200470d0a200041016a22022000490d4520004101742203200220022003491b22034100480d452000450d1e20012802002000200310142202450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1f20012802002002200410142203450d200c210b200128020021020c330b200128020021030c300b200128020021020c2d0b200128020021020c2a0b200128020021030c270b200128020021030c300b200128020021020c230b200128020021020c200b200128020021030c1d0b200128020021020c1a0b200128020021030c170b2003101222020d270b200341011015000b2004101222030d230b200441011015000b2003101222020d1f0b200341011015000b2003101222020d1b0b200341011015000b2004101222030d170b200441011015000b2004101222030d1f0b200441011015000b2003101222020d110b200341011015000b2003101222020d0d0b200341011015000b2004101222030d090b200441011015000b2003101222020d050b200341011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041296a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41073a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1b20024101742200200320032000491b22004100480d1b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41063a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1520034101742202200420042002491b22024100480d152003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041c9006a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a00002000410c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0b20024101742200200420042000491b22004100480d0b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d1c20024101742204200320032004491b22044100480d1c2002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a2903002107200041106a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1220034101742202200420042002491b22024100480d122003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a290000370000200220032900003700002000412c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d1220024101742200200420042000491b22004100480d122002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1020034101742202200420042002491b22024100480d102003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1020024101742200200320032000491b22004100480d102002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0e20024101742204200320032004491b22044100480d0e2002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0e20024101742200200320032000491b22004100480d0e2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0320034101742202200420042002491b22024100480d032003450d0120012802002003200210142203450d020c040b200128020021030c040b2002101222030d020b200241011015000b1010000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41053a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0720024101742204200320032004491b22044100480d072002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a280200210502400240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241046a360200200320026a2005360000200041106a2903002107200041086a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0720024101742200200320032000491b22004100480d072002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0520034101742202200420042002491b22024100480d052003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041086a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041046a2802002103024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0320024101742200200420042000491b22004100480d032002450d0120012802002002200010142202450d020c040b200128020021020c040b2000101222020d020b200041011015000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000b1300200041063602042000419884c0003602000bd40101037f230041306b2200240002400240024041af82c000411041a4a4c100410041001001417f460d00200041003602204101210141af82c0004110200041206a41044100100141016a41044d0d022000280220210241af82c000411010050c010b410021010b20002002410020011b36020c200041206a41086a2201420037030020004200370320418080c0004115200041206a1000200041106a41086a200129030037030020002000290320370310200041106a41102000410c6a41041004200041306a24000f0b41de86c00041331023000b13002000410b3602042000418cc0c1003602000b02000b3101017f0240410110122202450d00200042818080801037020420002002360200200241003a00000f0b410141011015000bf21305037f017e057f017e057f230041d0016b22012400200141b0016a41086a22024200370300200142003703b00141cc81c0004111200141b0016a1000200141f0006a41086a22032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001418080c0004115200141b0016a100020032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001419580c0004117200141b0016a100020032002290300370300200120012903b001370370200141f0006a41101005200141dd81c000410d1030200129030821042001280200210520024200370300200142003703b001418c83c0004111200141b0016a100020032002290300370300200120012903b00137037002400240024002400240024002400240200141f0006a411041a4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010012202417f460d022002411f4d0d0220014190016a41186a2206200141b0016a41186a220329030037030020014190016a41106a2207200141b0016a41106a220829030037030020014190016a41086a2209200141b0016a41086a2202290300370300200120012903b0013703900120024200370300200142003703b001418c83c0004111200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a4110100520032006290300370300200820072903003703002002200929030037030020012001290390013703b001200141106a41186a2003290300370300200141106a41106a2008290300370300200141106a41086a2002290300370300200120012903b0013703100c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200220014190016a41086a29030037030020012001290390013703b001200141106a41186a4200370300200141106a41106a4200370300200141106a41086a4200370300200142003703100b200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b0013703704100210202400240200141f0006a411041a4a4c100410041001001417f460d0020014210370294012001200141f0006a36029001200141b0016a20014190016a103120012802b0012207450d0520012902b401210a200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a41101005200a422088a72102200aa721090c010b41042107410021090b200141b0016a41086a22034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b00137037002400240200141f0006a411041a4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020034200370300200142003703b001200141f0006a4110200141b0016a4120410010012203417f460d032003411f4d0d0320014190016a41186a220b200141b0016a41186a220829030037030020014190016a41106a220c200141b0016a41106a220629030037030020014190016a41086a220d200141b0016a41086a2203290300370300200120012903b0013703900120034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b001370370200141f0006a411010052008200b2903003703002006200c2903003703002003200d29030037030020012001290390013703b001200141306a41186a2008290300370300200141306a41106a2006290300370300200141306a41086a2003290300370300200120012903b0013703300c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200320014190016a41086a29030037030020012001290390013703b001200141306a41186a4200370300200141306a41106a4200370300200141306a41086a4200370300200142003703300b200141f0006a41186a22034200370300200141f0006a41106a22084200370300200141f0006a41086a2206420037030020014200370370200141f0006a1006200141d0006a41186a2003290300370300200141d0006a41106a2008290300370300200141d0006a41086a200629030037030020012001290370370350200141b0016a41186a220b200141106a41186a290300370300200141b0016a41106a220c200141106a41106a290300370300200141b0016a41086a220d200141106a41086a290300370300200120012903103703b00120034200370300200842003703002006420037030020014200370370200141b0016a41202004420020051b2204427f7c200141f0006a1007450d0520014190016a41186a2205200329030037030020014190016a41106a220e200829030037030020014190016a41086a220f20062903003703002001200129037037039001200320052903003703002008200e2903003703002006200f2903003703002001200129039001370370200b2003290300370300200c2008290300370300200d2006290300370300200120012903703703b00120092002470d04200241016a22032002490d0220024101742208200320032008491b2209ad42247e220a422088a70d02200aa722034100480d02024002402002450d002007200241246c200310142207450d010c060b2003101222070d050b200341041015000b41de86c00041331023000b41de86c00041331023000b1010000b41de86c00041331023000b2007200241246c6a220341003a0000200341196a200141c8016a290300370000200341116a200141c0016a290300370000200341096a200141b8016a290300370000200320012903b001370001200341216a20012f0090013b0000200341236a20014192016a2d00003a0000200241016a21020b2000200129031037001420002004370300200020012903503700342000412c6a200141106a41186a290300370000200041246a200141106a41106a2903003700002000411c6a200141106a41086a2903003700002000413c6a200141d0006a41086a290300370000200041c4006a200141d0006a41106a290300370000200041cc006a200141d0006a41186a290300370000200041ec006a200141306a41186a290300370000200041e4006a200141306a41106a290300370000200041dc006a200141306a41086a29030037000020002001290330370054200041106a20023602002000410c6a200936020020002007360208200141d0016a24000bf50104017f017e017f017e230041206b2203240042002104200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310024002400240200341106a411041a4a4c100410041001001417f460d0020034200370300200341106a4110200341084100100141016a41084d0d0220032903002106200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310200341106a41101005420121040c010b0b2000200437030020002006370308200341206a24000f0b41de86c00041331023000b9a1605027f017e137f017e0b7f23004190026b22022400200241086a2001102802400240024002400240024002400240024002400240024002402002280208450d00200228020c2203ad42247e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510122206450d032003450d020c040b2000410036020020024190026a24000f0b4104210620030d020b41002115410021130c020b200541041015000b200241b8016a41106a2105200241b8016a4101722107200241f8006a41116a2108200241c7016a2109200241106a410172210a200141046a210b200141086a210c2002418c026a41026a210d20024180026a210e200241f0016a210f410021104100211141002112200321130340200241003a00b8012001280200200b280200200241b8016a4101200c28020010012114200c200c280200201441016a41014b22146a22153602002014450d0320022d00b801221441034b0d030240024002400240024002400240024020140e0400030102000b2002200110282002280200450d0a20022802042214417f4c0d0d2014450d03201410762215450d0f200c201441002001280200200b28020020152014200c280200100122162016417f461b2216201620144b1b2216200c2802006a36020020162014460d040c090b200241b8016a41186a2216420037030020054200370300200241b8016a41086a22174200370300200242003703b801200c41002001280200200b280200200241b8016a41202015100122142014417f461b2214412020144120491b200c2802006a3602002014411f4d0d09200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf0121182008411f6a200241b8016a411f6a290000370000200841186a2016290000370000200841106a2005290000370000200841086a2017290000370000200820022900b801370000410121170c040b200242003703b801200c41002001280200200b280200200241b8016a41082015100122142014417f461b2214410820144108491b200c2802006a2215360200201441074d0d0820022903b8012104200f4200370300200241b8016a41306a4200370300200241b8016a41286a4200370300200241b8016a41206a4200370300200241b8016a41186a420037030020054200370300200241b8016a41086a4200370300200242003703b801200c41002001280200200b280200200241b8016a41c0002015100122142014417f461b221441c000201441c000491b200c2802006a3602002014413f4d0d08200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a290000370300200241f8006a41186a200941186a290000370300200241f8006a41206a200941206a290000370300200241f8006a41286a200941286a290000370300200241f8006a41306a200941306a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf012118410221170c040b200241b8016a2001104020022802b8012215450d0720022902bc012118200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a2903003703002002200d2d00003a00b201200220022f008c023b01b001200220022903b801370378410021170c020b410121152001280200200b28020041014100200c28020010011a41002014470d050b200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a290300370300200220022f008c023b01b001200220022903b8013703782002200d2d00003a00b2012014ad22044220862004842118410321170b0b200d20022d00b2013a0000200241b8016a41086a2214200241f8006a41086a22192903003703002005200241f8006a41106a221a290300370300200241b8016a41186a2216200241f8006a41186a221b290300370300200241b8016a41206a221c200241f8006a41206a290300370300200241b8016a41286a221d200241f8006a41286a290300370300200241b8016a41306a221e200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241f4006a41026a221f200d2d00003a0000200241386a41086a22202014290300370300200241386a41106a22212005290300370300200241386a41186a22222016290300370300200241386a41206a2223201c290300370300200241386a41286a221c201d290300370300200241386a41306a221d201e290300370300200220022f018c023b0174200220022903b80137033820142018370300200720022f01743b0000200741026a201f2d00003a000020052002290338370000200541086a2020290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201c290300370000200541306a201d290300370000200220173a00b801200220153602bc01200e2004370300200241106a200241b8016a107920022d00102117200241b8016a411f6a221c200a411f6a2800003600002016200a41186a2900003703002005200a41106a2900003703002014200a41086a2900003703002002200a2900003703b80120174102460d04201241016a2115200241f8006a411f6a221d201c280000360000201b2016290300370300201a200529030037030020192014290300370300200220022903b801370378024020122013470d002010201520152010491b2213ad42247e2204422088a70d062004a722144100480d0602402012450d00200620112014101422060d010c090b201410122206450d080b200620116a221420173a0000201441206a201d280000360000201441196a201b290300370000201441116a201a290300370000201441096a2019290300370000201441016a2002290378370000201041026a2110201141246a21112015211220152003490d000b0b2000201336020420002006360200200041086a201536020020024190026a24000f0b2014450d002015101f0b2002418c026a41026a20022d00b2013a0000200241b8016a41086a2205200241f8006a41086a290300370300200241b8016a41106a2214200241f8006a41106a290300370300200241b8016a41186a220c200241f8006a41186a290300370300200241b8016a41206a200241f8006a41206a290300370300200241b8016a41286a200241f8006a41286a290300370300200241b8016a41306a200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241023a0010200241b8016a411f6a200a411f6a280000360000200c200a41186a2900003703002014200a41106a2900003703002005200a41086a2900003703002002200a2900003703b8010b2000410036020002402012450d00200621050340024020052d0000450d00200541086a280200450d00200541046a280200101f0b200541246a21052011415c6a22110d000b0b02402013450d002006101f0b20024190026a24000f0b1010000b100f000b201441041015000b201441011015000b130020004102360204200041a8c7c1003602000b3301017f0240410410122202450d0020004284808080c0003702042000200236020020024180203600000f0b410441011015000b130020004104360204200041ff85c0003602000b130020004101360204200041f8c8c1003602000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d02200420024120108002450d02200441206a22062002460d02200620024120108002450d02200441c0006a22062002460d02200620024120108002450d02200441e0006a22062002460d0220044180016a21042006200241201080020d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d02200420024120108002450d022006200441206a2204470d000b0b41000f0b20050b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41053602002004412c6a4102360200200441043602342004420237021c200441d4c9c1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a41e4c9c100103a000bff1002177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b200021090c010b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d020b410221000240024002400240024002400240024002400240200d41776a220f411e4b0d0041f400210e0240200f0e1f09000303040303030303030303030303030303030303030303020303030302090b41ee00210e0c080b200d41dc00470d010b0c050b200d10e6010d03200d41ffff034b0d01200d4180fe0371410876211141f8a7c100211241002113410021000c020b41f200210e0c040b0240200d41ffff074b0d00200d4180fe0371410876211641b3adc100211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d05201341c8a8c1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d012010211320142112201441c8a8c100470d030c010b2010211320142112201441c8a8c100470d010b200d41ffff0371210e41f7aac10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041b3adc100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d0c6c2001024000b200f410173210f200041b3adc100470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021049000b20132010101a000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841f5adc1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441f5adc100470d030c010b2010211820142117201441f5adc100470d010b200d41ffff0371210e4193afc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b024020104190b2c100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d0c6c2001024000b200f410173210f20004190b2c100470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011049000b20182010101a000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c0240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b024020072802002004200a6a200b200a6b200828020028020c1101000d0002400340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d092019422088a741ff0171417f6a220041044b0d09024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c0008421190c030b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f832019428080808070838421190c010b201942ffffffff8f60834280808080108421190b410321000b2007280200200a2008280200280210110000450d000c020b0b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d030c040b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a10e701000b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a200310e801000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b110020012000280200200028020410f7010b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241a8c5c200360204200241a4a4c100360200200210ef01000bdc0701067f230041106b220324002003200136020c2003410c6a2002101302400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101422060d020c070b200228020021060c020b200710122206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101422060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101422060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101422060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101422060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810122206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810122206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810122206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810122206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200841011015000b200841011015000b200841011015000b200841011015000b9f0204017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1000200341086a200529030037030020032003290310370300024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012201417f460d012001410f4d0d01200341186a290300210420032903102106200342003703182003420037031020034110200341106a4110411010012201417f460d012001410f4d0d0120032903102107200041206a200341186a290300370300200041186a2007370300200041106a200437030020002006370308420121040b20002004370300200341206a24000f0b41de86c00041331023000b9d0705017f017e047f017e027f230041d0006b2203240042002104200341c0006a41086a220542003703002003420037034020012002200341c0006a1000200341206a41086a20052903003703002003200329034037032002400240200341206a411041a4a4c100410041001001417f460d00200342103702342003200341206a360230200341186a200341306a10282003280218450d01200328021c2106200341003a0040200341386a2201200128020022012003280230220720032802342208200341c0006a41012001100141016a41014b22026a22013602002002450d01024002400240024020032d0040220541037122024102460d0020024101460d0120020d022005410276ad2104420021090c030b20034100360240200320053a0040200341386a2202410020072008200341c0006a41017241032001100122012001417f461b22014103200141034922011b20022802006a36020020010d042003280240410276ad2104420021090c020b200341003b0140200320053a0040200341386a200120072008200341c0006a41017241012001100141016a220241014b6a36020020024102490d0320032f0140410276ad2104420021090c010b024002400240024020054102762202450d0020024104460d012002410c470d032003420037034820034200370340200341306a41086a410020072008200341c0006a41102001100122022002417f461b22024110200241104922021b20016a36020020020d06200341c0006a41086a29030021090c020b20034100360240200341386a410020072008200341c0006a41042001100122022002417f461b22024104200241044922021b20016a36020020020d0520033502402104420021090c030b4200210920034200370340200341306a41086a410020072008200341c0006a41082001100122022002417f461b22024108200241084922021b20016a36020020020d040b200329034021040c010b200241046a220a41104b0d02200341306a41086a210b4200210442002109410021020340200341003a0040200b200120072008200341c0006a41012001100141016a41014b22056a22013602002005450d03200341086a20033100404200200241037441f80071108302200341086a41086a290300200984210920032903082004842104200241016a220241ff0171200a490d000b0b20002004370308200041106a2009370300200041186a2006360200420121040b20002004370300200341d0006a24000f0b41de86c00041331023000bac0201027f230041206b2202240002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200320013600060240024002402003410a41a4a4c100410041001001417f460d00200241186a4200370300200241106a4200370300200241086a4200370300200242003703002003410a20024120410010012201417f460d022001411f4d0d0220002002290300370000200041186a200241186a290300370000200041106a200241106a290300370000200041086a200241086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241206a24000f0b41de86c00041331023000b410641011015000b410c41011015000b8f0803037f017e067f230041c0006b22012400200141306a41086a220242003703002001420037033041ba88c000411d200141306a1000200141106a41086a200229030037030020012001290330370310024002400240024002400240024002400240200141106a411041a4a4c100410041001001417f460d00200142103702042001200141106a360200200141306a2001104020012802302202450d0402402001280234450d002002101f0b20002802002202450d01200041046a280200450d012002101f200141c0006a24000f0b0240024020002802002203450d00200029020421040c010b410610122200450d06200041046a41002f00a388403b00002000410028009f884036000020004106410c10142200450d07200041086a41002d00a788403a0000200041002f00a588403b0006024002402000410941a4a4c100410041001001417f460d00200141003602104101210320004109200141106a41044100100141016a41044d0d07200128021021052000101f2005450d012005ad4205862204422088a70d042004a722004100480d04200010122203450d0a41002102200321000340200141106a2002103e200041186a200141106a41186a290000370000200041106a200141106a41106a290000370000200041086a200141106a41086a29000037000020002001290010370000200041206a21002005200241016a2202470d000c020b0b2000101f41012103410021050b2005ad220442208620048421040b200141003602182001420137031020012004422088a72200360230200141306a200141106a1013024002402000450d00200041057421064100200141106a41086a28020022026b210720012802102108200128021421092003210003400240200920076a411f4b0d00200241206a22052002490d052009410174220a20052005200a491b22054100480d05024002402009450d00200820092005101422080d010c080b200510122208450d070b200521090b200820026a22052000290000370000200541186a200041186a290000370000200541106a200041106a290000370000200541086a200041086a290000370000200741606a2107200241206a2102200041206a2100200641606a22060d000b200141186a200236020020012009360214200120083602100c010b200141186a280200210220012802142109200128021021080b200141306a41086a220042003703002001420037033041ba88c000411d200141306a1000200141106a41086a200029030037030020012001290330370310200141106a411020082002100402402009450d002008101f0b2004a7450d002003101f0b200141c0006a24000f0b1010000b200541011015000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200041011015000bdc0403027f017e0d7f230041d0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001001220f200f417f461b220f4120200f4120491b20052802006a360200200f411f4d0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101422060d010c060b200e10122206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d002006101f0b200241d0006a24000f0b1010000b200e41011015000b130020004106360204200041d4cac1003602000b130020004109360204200041f68fc0003602000b1300200041013602042000419ccec1003602000bd80101027f024002400240024002402000280200220141064b0d0020010e0704040104020403040b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041086a280200450d03200041046a280200101f0f0b200041086a280200450d022000280204101f0f0b200041086a280200450d012000280204101f0f0b200041086a280200450d002000280204101f0f0b0b8b2f09247f047e0f7f017e087f027e107f027e1a7f230041d0026b2204240002400240024020014115490d0041012105410221064103210741322108413021094108210a4158210b4150210c417f210d4138210e410b210f4128211041202111411821124110211341afe000211441807f2115410021164160211741682118417021194178211a41c000211b41c800211c41d000211d41d800211e4101211f41012120410021210c010b410021230c010b410121230b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024020230e020001010b20014102490d0c41a07f2158200041a07f6a21594101215a4100215b4130215c4108215d4158215e4150215f417f21604128216141182162412021634110216441a87f2165418801216641d8002167418001216841d000216941f800216a41c800216b41f000216c41c000216d41e800216e4138216f41e000217041012171410121210c010b02400240024020210e03000d01010b201f20207121220c010b2049204c20096c6a212302400340204b204c200d6a224c4f0d012023290300212a2023200a6a21252023200c6a22242123202a2045542025290300222a204454202a2044511b0d000c100b0b2000204537030020002044370308203d2046290300370300203f204729030037030020412048290300370300200020042903003703102001204b20056a2223490d082000202320096c6a2100200120236b22014115490d020b2003450d090240201f2005710d002000200110462003200d6a21030b2001200676222320076c21242023200574212541002126024020012008490d00200620052000202320096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b222c1b202c20282029202c1b2228202720096a290300222954202a202b202c1b222a2027200e6a290300222b54202a202b511b222d1b200020232023200d6a222e202c1b222f20096c6a222729030020292028202d1b542027200a6a2903002228202b202a202d1b222a542028202a511b22306a2000202520096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22316a2028202920311b222820002025200572223220096c6a2227290300222954202a202b20311b222a2027200a6a290300222b54202a202b511b22336a200020252025200d6a223420311b223520096c6a22272903002029202820331b542027200a6a2903002228202b202a20331b222a542028202a511b22366a2000202420096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22376a2028202920371b2228202720096a290300222954202a202b20371b222a2027200e6a290300222b54202a202b511b22276a200020242024200d6a223820371b223920096c6a22262903002029202820271b542026200a6a2903002228202b202a20271b222a542028202a511b223a6a21262039202420056a2038202420371b20271b203a1b2124203520322034202520311b20331b20361b2125202f202320056a202e2023202c1b202d1b20301b21230b20262000202320096c6a222729030022282000202520096c6a222c2903002229542027200a6a290300222a202c200a6a290300222b54202a202b511b22276a2028202920271b22282000202420096c6a222c290300222954202a202b20271b222a202c200a6a290300222b54202a202b511b222c6a212602400240024020002025202320271b223920096c6a223129030020292028202c1b5a2031200a6a2903002228202b202a202c1b222a5a2028202a511b0d00202620056a2226200f4b0d0120264521230c020b20242023202520271b202c1b213920264521230c010b024020012005762224450d002000200120096c6a200c6a2123200021250340200441a0026a20106a2227202520106a222c290300370300200441a0026a20116a2226202520116a2231290300370300200441a0026a20126a2237202520126a222d290300370300200441a0026a20136a2233202520136a222e290300370300200441a0026a200a6a222f2025200a6a2230290300370300200420252903003703a0022023200a6a2232290300212a202320136a2234290300212b202320126a22352903002128202320116a223629030021292023290300213b202c202320106a223829030037030020312029370300202d2028370300202e202b3703002030202a3703002025203b370300203820272903003703002036202629030037030020352037290300370300203420332903003703002032202f290300370300202320042903a002370300202520096a21252023200c6a21232024200d6a22240d000b0b20012039200d736a2139410121230b02402022200d73202345722005710d002000200110470d0c0b024002402002450d00203920014f0d0a2000203920096c6a22232903002002290300542023200a6a2225290300222a2002200a6a290300222b54202a202b511b0d01200441a0026a20106a223c200020106a223d290300370300200441a0026a20116a223e200020116a223f290300370300200441a0026a20126a2240200020126a2241290300370300200441a0026a20136a2242200020136a2224290300370300200441a0026a200a6a22432000200a6a2227290300370300200420002903003703a0022025290300212a202320136a222c2903002144202320126a2226290300212b202320116a2231290300212820232903002145203d202320106a2237290300370300203f20283703002041202b370300202420443703002027202a370300200020453703002037203c2903003703002031203e29030037030020262040290300370300202c204229030037030020252043290300370300202320042903a0023703002027290300214420002903002145200420126a2246203d290300370300200420136a2247203f2903003703002004200a6a22482041290300370300200420242903003703002000200c6a2149200020096a214a4100214b41002001224c200d6a22254f0d040c100b2001450d070b203920014f0d05200441a0026a20106a2234200020106a224d290300370300200441a0026a20116a2235200020116a224e290300370300200441a0026a20126a2236200020126a224f290300370300200441a0026a20136a2238200020136a2250290300370300200441a0026a200a6a221f2000200a6a2251290300370300200420002903003703a0022000203920096c6a2223290300212a2023200a6a2225290300212b202320136a22242903002128202320126a22272903002129202320116a222c290300213b204d202320106a2226290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a37030020262034290300370300202c203529030037030020272036290300370300202420382903003703002025201f290300370300202320042903a0023703002051290300212a2000290300212b200420126a2252204d290300370300200420136a2253204e2903003703002004200a6a2254204f29030037030020042050290300370300200020096a21314100212002402001200d6a2224450d00203121230340202b20232903005a202a2023200a6a29030022285a202a2028511b0d01202320096a2123202020056a22202024490d000b0b2000200120096c6a21232024212502400340202321272025223a20204d0d01203a200d6a2125202b2027200c6a222329030054202a2027200b6a290300222854202a2028511b450d000b0b203a2020490d042024203a490d034180012130410021264100212e4100212c4100213341800121322031202020096c6a225521310340202720316b222320096e21250240024002400240024002400240202320144b22390d00202520156a2025202e2026492033202c4922247222371b21232037450d012032202320241b21322023203020241b21300b2033202c470d020c010b2023202320057622326b21302033202c470d010b2032450d0141002125200441206a2233212c203121230340202c20253a0000202c202b20232903005a202a2023200a6a29030022285a202a2028511b6a212c202320096a21232032202520056a2225470d000b0b202e2026470d020c010b200441206a222c2133202e2026470d010b02402030450d002027200c6a212341002125200441a0016a222e21260340202620253a00002026202b202329030054202a2023200a6a290300222854202a2028511b6a21262023200c6a21232030202520056a2225470d000c020b0b200441a0016a2226212e0b02402026202e6b2223202c20336b2225202520234b1b222f450d002034203120332d000020096c6a222320106a2903003703002035202320116a2903003703002036202320126a2903003703002038202320136a290300370300201f2023200a6a290300370300200420232903003703a002203120332d000020096c6a22232027202e2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703000240202f2005460d004100212403402027202e20246a22372d0000200d7320096c6a22232031203320246a20056a222d2d000020096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703002031202d2d000020096c6a22232027203720056a2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a290300370300202420066a2123202420056a222521242023202f490d000b202e20256a212e203320256a21330b2027202e2d0000200d7320096c6a222320042903a002370300202320106a2034290300370300202320116a2035290300370300202320126a2036290300370300202320136a20382903003703002023200a6a201f290300370300202e20056a212e203320056a21330b2031203220096c6a20312033202c461b21312027201620306b20096c6a2027202e2026461b212720390d000b024002402033202c4f0d00034020342031202c200d6a222c2d000020096c6a222520106a22242903003703002035202520116a22262903003703002036202520126a22372903003703002038202520136a222d290300370300201f2025200a6a222e290300370300200420252903003703a0022027200c6a222329030021282027200b6a222f2903002129202720176a2230290300213b202720186a22322903002156202720196a2239290300215720242027201a6a22272903003703002026205737030020372056370300202d203b370300202e20293703002025202837030020272034290300370300203920352903003703002032203629030037030020302038290300370300202f201f290300370300202320042903a002370300202321272033202c490d000c020b0b20312123202e20264f0d0003402026200d6a22262d000021252034202320106a22242903003703002035202320116a222c2903003703002036202320126a22312903003703002038202320136a2237290300370300201f2023200a6a222d290300370300200420232903003703a00220272025200d7320096c6a222529030021282025200a6a22332903002129202520136a222f290300213b202520126a22302903002156202520116a223229030021572024202520106a2239290300370300202c2057370300203120563703002037203b370300202d202937030020232028370300203920342903003703002032203529030037030020302036290300370300202f20382903003703002033201f290300370300202520042903a002370300202320096a2123202e2026490d000b0b2000202a3703082000202b370300204d2052290300370300204e2053290300370300204f2054290300370300200020042903003703100240024002402001202320556b20096e20206a22254d0d002034204d2903003703002035204e2903003703002036204f29030037030020382050290300370300201f2051290300370300200420002903003703a0022000202520096c6a2223290300212a2023200a6a2224290300212b202320136a22272903002128202320126a222c2903002129202320116a2226290300213b204d202320106a2231290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a3703002031203429030037030020262035290300370300202c2036290300370300202720382903003703002024201f290300370300202320042903a002370300200120256b2224450d0120242025202520244b1b21272001200776212c202320096a21260240024020252024200d6a22014f0d002000202520022003104520232102202621000c010b20262001202320031045202521010b2027202c4f211f203a20204d2120200141154f0d02410021230c160b41a0cfc100202520011048000b41b0cfc1001024000b41002121410121230c130b410121230c120b410021230c110b41022121410121230c100b203a20241049000b2020203a101a000b41a0cfc100203920011048000b4190cfc100410041001048000b20232001101a000b41c8cfc100203920011048000b20002001104a200441d0026a24000f0b2071205a6a2127024020002071205c6c6a2224205f6a2223290300202429030022285a2024205e6a290300222b2024205d6a2225290300222a5a202b202a511b0d00200420626a2231202420616a222c290300370300200420646a2237202420636a22262903003703002004205d6a222d202420626a2233290300370300200420242903103703002024202329030037030020252023205d6a290300370300202420646a202320646a2903003703002033202320626a2903003703002026202320636a290300370300202c202320616a2903003703002000207120606a222c205c6c6a21260240024002400240202c450d00205b212520592123202420586a29030020285a202420656a290300222b202a5a202b202a511b0d030340202320666a202320676a290300370300202320686a202320696a2903003703002023206a6a2023206b6a2903003703002023206c6a2023206d6a2903003703002023206e6a2023206f6a290300370300202320706a2023205c6a2903003703002025205a460d022023290300212b2023205d6a2124202520606a21252023205f6a2123202b2028542024290300222b202a54202b202a511b0d000c030b0b4100212c0c020b410021250b20002025205c6c6a21262025212c0b202620283703002026202a3703082000202c205c6c6a222320616a2031290300370300202320636a2037290300370300202320626a202d290300370300202320042903003703100b205b205a6a215b2059205c6a21592027217120272001470d010b200441d0026a24000f0b41012121410121230c060b203c204a204b20096c6a222320106a2225290300370300203e202320116a22272903003703002040202320126a222c2903003703002042202320136a222629030037030020432023200a6a2231290300370300200420232903003703a002202420096a2237290300212a2024200e6a222d290300212b2024201b6a223329030021282024201c6a222e29030021292024201d6a222f290300213b20252024201e6a22242903003703002027203b370300202c2029370300202620283703002031202b3703002023202a3703002024203c290300370300202f203e290300370300202e204029030037030020332042290300370300202d2043290300370300203720042903a002370300204b20056a224b204c200d6a22254f0d010b204a204b20096c6a212302400340202329030020455a2023200a6a290300222a20445a202a2044511b450d01202320096a2123204b20056a224b2025490d000b410221210c020b410221210c020b410221210c020b410121230c020b410121230c010b410121230c000b0b86090b107f017e017f017e017f017e017f017e017f017e017f230041306b22022400024002400240024020014108490d00200141017641feffffff07712203417f6a220420014f0d032001410d74200173220541117620057322054105742005732206417f2001417f6a677622077122054100200120052001491b6b220520014f0d01200241286a22082000200441306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e2903003703002013201029030037030020052002290300370300200320014f0d022006410d7420067322044111762004732204410574200473220620077122044100200120042001491b6b220520014f0d01200241286a22082000200341306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e29030037030020132010290300370300200520022903003703002003410172220420014f0d032006410d742006732205411176200573220541057420057320077122054100200120052001491b6b220520014f0d01200241286a22032000200441306c6a220141286a2204290300370300200241206a2206200141206a2207290300370300200241186a2208200141186a2209290300370300200241106a220a200141106a220b290300370300200241086a220c200141086a220d290300370300200220012903003703002000200541306c6a22002903002112200041086a22052903002114200041106a220e2903002116200041186a220f2903002118200041206a2210290300211a2004200041286a22112903003703002007201a37030020092018370300200b2016370300200d2014370300200120123703002011200329030037030020102006290300370300200f2008290300370300200e200a2903003703002005200c290300370300200020022903003703000b200241306a24000f0b41a0cfc100200520011048000b200321040b4190cfc100200420011048000bf30b05087f027e107f017e017f230041306b22022400200041c07e6a2103200041506a21044100210520014132492106410121070240024002400340024002400240200720014f0d002004200741306c6a210803402008290300200841306a220929030054200841086a290300220a200841386a290300220b54200a200b511b0d0220092108200741016a22072001490d000b0b410021082007200146210920060d030c010b410121082007200146210920060d020b20072001460d012007417f6a220920014f0d022008450d032000200941306c6a2208290300210a20082000200741306c220c6a2209290300370300200241286a220d200841286a220e290300370300200241206a220f200841206a2210290300370300200241186a2211200841186a2212290300370300200241106a2213200841106a2214290300370300200241086a2215200841086a22162903003703002016200941086a22172903003703002014200941106a22182903003703002012200941186a22192903003703002010200941206a221a290300370300200e200941286a221b2903003703002002200a370300201b200d290300370300201a200f29030037030020192011290300370300201820132903003703002017201529030037030020092002290300370300024020074102490d0020002007417e6a220f41306c6a220d2903002008290300221c5a200d41086a221d290300220b2016290300220a5a200b200a511b0d002008200d2903003703002016201d2903003703002008290310210b2014200d41106a2903003703002011200e29030037030020132010290300370300201520122903003703002012200d41186a2903003703002010200d41206a290300370300200e200d41286a2903003703002002200b3703000240024002400240200f450d0020002007417d6a221641306c6a2208290300201c5a200841086a290300220b200a5a200b200a511b0d032003200c6a2108034020084188016a200841d8006a29030037030020084180016a200841d0006a290300370300200841f8006a200841c8006a290300370300200841f0006a200841c0006a290300370300200841e8006a200841386a290300370300200841e0006a200841306a2903003703002016450d022008290300210b200841086a210d200841506a21082016417f6a2116200b201c54200d290300220b200a54200b200a511b0d000b201641016a210f0c020b4100210f0c020b4100210f0b2000200f41306c6a210d0b200d201c370300200d200a3703082000200f41306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b200541016a21050240200120076b220e4102490d002009290300221c20092903305a2017290300220a200941386a290300220b5a200a200b511b0d002009200941306a22162903003703002017201641086a2903003703002009290310210b2018201641106a2903003703002011201b2903003703002013201a290300370300201520192903003703002019201641186a290300370300201a201641206a290300370300201b201641286a2903003703002002200b370300410121100240200e4103490d00201c20092903605a200a200941e8006a290300220b5a200a200b511b0d00200941e0006a21084103210d41022117034020092017221041306c6a221641786a200841286a290300370300201641706a200841206a290300370300201641686a200841186a290300370300201641606a200841106a290300370300201641586a200841086a290300370300201641506a2008290300370300200d200e4f0d01200d41306c2108200d2117200d41016a210d201c200920086a220829030054200a200841086a290300220b54200a200b511b0d000b0b2016201c3703002016200a3703082009201041306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b20054105490d000b410021090b200241306a240020090f0b4190cfc100200920011048000b41a0cfc100200720011048000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41013602002003411c6a4102360200200341013602242003420237020c20034198c5c200360208200320033602282003200341046a3602202003200341206a360218200341086a2000103a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241b8c5c2003602082002200241046a360228200220023602202002200241206a360218200241086a41c8c5c200103a000bdd0b09167f017e037f017e017f017e017f027e0c7f230041306b2202240002400240024020014101762203450d00417f210441022105413021064108210741282108412021094118210a4110210b4100210c0c010b4100210d0c010b4101210d0b03400240024002400240024002400240024002400240024002400240200d0e020001010b4102212420014102490d01417f2125412821264120212741182128411021294108212a4130212b4101212c2001212d4101210c0c0b0b02400240200c0e020001010b200320046a2203210d0340200d410174221a41017221230240201a20056a221a20014f0d00202320014f0d06201a20232000201a20066c6a22172903002000202320066c6a221929030054201720076a2903002218201920076a290300221c542018201c511b1b21230b0240202320014f0d00200d20014f0d042000202320066c6a221a2903002000200d20066c6a220d2903005a201a20076a22192903002218200d20076a2217290300221c5a2018201c511b0d00200220086a220e200d20086a220f290300370300200220096a2210200d20096a22112903003703002002200a6a2212200d200a6a22132903003703002002200b6a2214200d200b6a2215290300370300200220076a221620172903003703002002200d29030037030020192903002118201a200b6a221b290300211c201a200a6a221d290300211e201a20096a221f2903002120201a2903002121200f201a20086a2222290300370300201120203703002013201e3703002015201c37030020172018370300200d20213703002022200e290300370300201f2010290300370300201d2012290300370300201b201429030037030020192016290300370300201a20022903003703002023210d0c010b0b20030d074100210d0c0c0b202d20256a222d20014f0d05200220266a220e200020266a221a290300370300200220276a220f200020276a2223290300370300200220286a2210200020286a2217290300370300200220296a2211200020296a22192903003703002002202a6a22122000202a6a2213290300370300200220002903003703002000202d202b6c6a220d2903002118200d202a6a2214290300211c200d20296a2215290300211e200d20286a22162903002120200d20276a221b2903002121201a200d20266a221d29030037030020232021370300201720203703002019201e3703002013201c37030020002018370300201d200e290300370300201b200f290300370300201620102903003703002015201129030037030020142012290300370300200d20022903003703004100210d0340200d202c74221a202c7221230240201a20246a221a202d4f0d002023202d4f0d06201a20232000201a202b6c6a221729030020002023202b6c6a2219290300542017202a6a29030022182019202a6a290300221c542018201c511b1b21230b02402023202d4f0d00200d202d4f0d0420002023202b6c6a221a2903002000200d202b6c6a220d2903005a201a202a6a22192903002218200d202a6a2217290300221c5a2018201c511b0d00200e200d20266a2213290300370300200f200d20276a22142903003703002010200d20286a22152903003703002011200d20296a2216290300370300201220172903003703002002200d29030037030020192903002118201a20296a221b290300211c201a20286a221d290300211e201a20276a221f2903002120201a29030021212013201a20266a2222290300370300201420203703002015201e3703002016201c37030020172018370300200d20213703002022200e290300370300201f200f290300370300201d2010290300370300201b201129030037030020192012290300370300201a20022903003703002023210d0c010b0b202d202c4b0d070b200241306a24000f0b41e8cfc100200d20011048000b41e8cfc100200d202d1048000b41d8cfc100202320011048000b41d8cfc1002023202d1048000b41a0cfc100202d20011048000b4100210c0c010b4101210c0c010b4101210d0c020b4101210d0c010b4101210d0c000b0b130020004102360204200041e8c3c2003602000b130020004100360204200041a4a4c1003602000b130020004101360204200041ecd9c1003602000b130020004103360204200041b0d8c1003602000b130020004101360204200041b8aec2003602000b130020004103360204200041f880c2003602000b130020004101360204200041fcacc2003602000b130020004102360204200041c0adc2003602000b130020004107360204200041849ac2003602000b13002000410b360204200041c4e8c1003602000b13002000410236020420004188bdc2003602000b130020004101360204200041b0bfc1003602000bf60201057f230041206b220224000240024020002d0000220320012d0000470d00024020034101470d002000410c6a28020022042001410c6a280200470d012004450d02200041046a2802002203200141046a2802002205460d024100210603402003200541201080020d02200341206a2103200541206a2105200641016a22062004490d000c030b0b20002001460d01200041016a200141016a4120108002450d010b418c93c00041141008200041046a280200210520002d00002103200241186a22062000410c6a2802003602002002200341014736021020022005200041016a20034101461b3602142002200241106a1011200228020022002002280208100902402002280204450d002000101f0b200141046a280200210320012d0000210020062001410c6a2802003602002002200041014736021020022003200141016a20004101461b3602142002200241106a101120022802002200200228020810092002280204450d002000101f0b200241206a24000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310142202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310142202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310142202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310142202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310142202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310142202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101222020d140b200341011015000b2003101222020d100b200341011015000b2003101222020d0c0b200341011015000b2003101222020d100b200341011015000b2003101222020d060b200341011015000b2003101222020d020b200341011015000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000be4d6020b027f017e057f017e037f017e017f037e0c7f0d7e6a7f230041d0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441094b0d00024020040e0a009a010402090805060307000b20034198046a41086a200141106a2903003703002003200141086a2903002205370398042005a7417e6a220441054b0d9b01200241086a2800002106200241046a280000210720022d00002102024020040e0600201e1f1c21000b41012108200341a0046a2802002109200328029c04210a200241ff017122024101470d4002402009450d00200a101f0b41002107410121094101210a0c470b200141086a2903004202520d9b01412d21064101210741fe80c000410041fe80c00020022d000041ff017122024102461b20024103461b22040daf02200141106a290300210520034190036a41086a22024200370300200342003703900341be93c000411320034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a4110100a0da70120024200370300200342003703900341f594c000410d20034190036a10002007200229030037030020032003290390033703980420034198046a411041a4a4c100410041001001417f460da302200342003703900520034198046a411020034190056a41084100100141016a41084d0d9901200329039005500da30220034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a220720022903003703002003200329039003370398044200210b024020034198046a411041a4a4c100410041001001417f460d00200342003703900520034198046a411020034190056a41084100100141016a41084d0da501200329039005210b0b200242003703002003420037039003418295c000411520034190036a10002007200229030037030020032003290390033703980420034198046a411041a4a4c100410041001001417f460d48200342003703900520034198046a411020034190056a41084100100141016a41084d0da501200329039005200b7c2005560d490ca3020b200341b8036a41046a22082001410e6a2f01003b010020034190056a41086a2209200141206a29030037030020034190056a41106a220a200141286a29030037030020032001410a6a2801003602b8032003200141186a29030037039005200141096a2d00002107200141106a2903002105200141086a2d00002106200341d8036a41086a220c200241206a2d00003a00002003200241186a2900003703d80320022d0000210420064102460d0c20064103460d0a20064104470d9b014128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040da102200320073a009804200341f8036a41086a22024200370300200342003703f80341ecfdc0004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410110040c0b0b20034192036a2001410b6a2d00003a0000200341f0026a41086a200141206a290300370300200341f0026a41106a200141286a2903003703002003200141096a2f00003b0190032003200141186a2903003703f002200141086a2d0000220d417e6a220441034b0d9b012001410c6a280200210e200141106a290300220fa7211020022d00002102024020040e04000f0d0e000b4100210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d284128210620100daa020cab020b200341d0026a41086a220c2001412c6a2d00003a00002003200141246a2902003703d002200141386a290300210b200141306a2903002111200141c8006a2903002112200141c0006a2903002113200141206a280200210a200141186a2902002105200141146a2802002106200141106a28020021142001410c6a2d00002115200141086a28020021042001410d6a2f000021072001410f6a2d00002108200341e0026a41086a2216200241206a2d00003a00002003200241186a2900003703e0022007200841107472210920022d0000210820044102460d0520044103470d9b01200341a0066a41086a2207200341d0026a41086a2d00003a0000200320032903d0023703a00641ac80c00041ac80c0004100200841ff017122021b20024103461b2204450d150c9e020b200141386a290300210b200141306a29030021112001412c6a2802002117200141286a280200210c200141246a2802002114200141206a28020021182001411c6a2802002116200141186a2802002119200141146a280200211a200141106a28020021152001410c6a2802002107200141096a2d0000211b200141086a2d00002106200341f0026a41086a200241206a2d00003a00002003200241186a2900003703f0022006417e6a220641034b0d9b0120022f0001200241036a2d0000411074722104200241146a28000021082002410c6a2900002105200241086a2800002109200241046a280000210a20022d00002102024020060e0400130f12000b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d1f200341d8036a41086a220220062d00003a000020032003290390033703d80320034180066a41086a220620022d00003a0000200320032903d80337038006200341af056a20062d00003a0000200320083600a3052003200537009b0520032009360097052003200a3600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034190026a20034198046a105a20032903900220034190026a41086a29030084500d4c42002105200341a0036a41086a22024200370300200342003703a00341b1f2c0004112200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d58200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460dae012002410f4d0dae01200341a0046a290300210520032903980421120c590b20034198046a200141086a41d00010fe011a20034190056a41206a200241206a2d00003a000020034190056a41186a200241186a29000037030020034190056a41106a200241106a29000037030020034190056a41086a200241086a2900003703002003200229000037039005200341b8026a20034198046a20034190056a105b20032802bc02210620032802b80221044100210941012107410121084101210a4101210c0cae020b200141106a28020021062001410c6a2802002107200141086a2802002109200141046a280200210420034180066a41086a2208200241206a2d00003a00002003200241186a2900003703800620044102470d9a01200241036a2d0000210420022f0001210a200241146a280000210c2002410c6a2900002105200241086a2800002116200241046a280000211520022d0000210220034190036a41086a20082d00003a0000200320032903800637039003200241ff01714101470d03200341a0036a41086a220220034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220820022d00003a0000200320032903a00337039804200341af056a20082d00003a00002003200c3600a3052003200537009b052003201636009705200320153600930520032003290398043700a7052003200a20044110747222043b019005200320044110763a009205200341c0026a20034190056a105c20032903c002200341c0026a41086a29030084500d13200341f8036a41086a22044200370300200342003703f803419086c0004112200341f8036a100020022004290300370300200320032903f8033703a003200341a0036a411041a4a4c100410041001001417f460d202003410036029804200341a0036a411020034198046a41044100100141016a41044d0d9d0120062003280298044d0d210c98020b200341e0026a41086a200141286a2d00003a00002003200141206a2902003703e0022001411c6a2802002116200141146a2902002105200141106a28020021062001410c6a2802002104200141086a2802002108200141046a2802002107200341f0026a41086a2209200241096a290000370300200341f0026a41106a220a200241116a290000370300200341f0026a41186a220c200241196a290000370300200320022900013703f00220022d0000210220074102460d0320074103470d9a01200341a0066a41086a200341e0026a41086a2d00003a0000200320032903e0023703a006200341f8036a41186a200341f0026a41186a290300370300200341f8036a41106a200341f0026a41106a290300370300200341f8036a41086a2207200341f0026a41086a290300370300200320032903f0023703f803200241ff01714101470d0d200341a0036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703a00320032900fb03210b2003290083042111200328008b04210920032f01f803210a20032d00fa03210c20034198046a41086a221520022d00003a0000200320032903a0033703980420034190056a411f6a20152d00003a00002003200c3a0092052003200a3b019005200320093600a3052003201137009b052003200b3700930520032003290398043700a70520074200370300200342003703f80341af8fc1004108200341f8036a100020022007290300370300200320032903f8033703a003200341a0036a411041a4a4c100410041001001417f460d2520034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460da1012002411f4d0da10120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2207200341f8036a41106a29030037030020034180066a41086a2209200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200729030037030020034198046a41086a20092903003703002003200329038006370398040c260b200341f0026a41086a2001412c6a2802003602002003200141246a2902003703f002200141186a2903002111200141206a28020021152001410c6a2802002108200141096a2d00002114200141106a2903002105200141086a2d00002107200341e0026a41086a200241206a2d00003a00002003200241186a2900003703e0022007417e6a2206410a4b0d9a0120022f0001200241036a2d00004110747221042005a72109200241146a280000210a2002410c6a290000210b200241086a280000210c200241046a280000211620022d00002102024020060e0b00302d2e2b31322f342c33000b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d4e20034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a00002003200a3600a3052003200b37009b052003200c36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a20034190056a105d20032d0098044101470d5c41f7e3c00021044123210620074104470df0010cf5010b200241036a2d0000210420022f0001211a200241146a28000021182002410c6a2900002112200241086a2800002117200241046a2800002119200341f0026a41086a200c2d00003a0000200320032903d0023703f00220034190036a41086a20162d00003a0000200320032903e0023703900341012107200841ff01714101470d0a20034198046a41086a220720034190036a41086a2d00003a0000200320032903900337039804200341d8036a41086a220220072d00003a000020032003290398043703d803200341bf066a20022d00003a0000200320183600b306200320123700ab06200320173600a706200320193600a306200320032903d8033700b7062003201a20044110747222043b01a006200320044110763a00a2062002200341f0026a41086a2d00003a0000200320032903f0023703d803201541ff01714101470d1920034198046a2014410676101e20032802a0042014413f7122024d0d39200341c0036a20032802980420024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029c04450d8b020c8a020b20034198046a41086a200341a0036a41086a2d00003a0000200320032902a00337039804412a210641d480c000210420070d95020c96020b200341f8036a41186a200c290300370300200341f8036a41106a200a290300370300200341f8036a41086a2009290300370300200320032903f0023703f803200241ff01714101470d0c200341d8036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703d80320032900fb032105200329008304210b200328008b04210620032f01f803210420032d00fa03210720034180066a41086a220920022d00003a0000200320032903d80337038006200341a0066a411f6a20092d00003a0000200320073a00a206200320043b01a006200320063600b3062003200b3700ab06200320053700a30620032003290380063700b706200341f8036a41086a22024200370300200342003703f80341af8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411041a4a4c100410041001001417f460d2320034190046a4200370300200341f8036a41106a420037030020024200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460d9e012002411f4d0d9e0120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2206200341f8036a41106a29030037030020034180066a41086a2204200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200629030037030020034198046a41086a20042903003703002003200329038006370398040c240b4128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040d96022003200537039804200341f8036a41086a22024200370300200342003703f80341eb83c1004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810040b0c82020b200241036a2d0000211620022f00012115200241146a28000021142002410c6a290000210b200241086a2800002106200241046a280000211920034197066a20092903003700002003419f066a200a2d00003a0000200320073a0080062003200537008706200320032802b80336008106200320032903900537008f06200320082f01003b00850620034190036a41086a200c2d00003a0000200320032903d80337039003200441ff01714101470d0d200341a0036a41086a220420034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220220042d00003a0000200320032903a00337039804200341f0026a41086a220420022d00003a000020032003290398043703f002200341a0066a41086a20042d00003a0000200320032903f0023703a00620034198046a41186a20034180066a41186a29030037030020034198046a41106a20034180066a41106a290300370300200220034180066a41086a290300370300200320032903800637039804411210122202450d9c01200241106a41002f009484413b0000200241086a410029008c844137000020024100290084844137000020024112413210142202450d9d012002201520164110747222043b0012200220143600252002200b37001d2002200636001920022019360015200220032903a006370029200241146a20044110763a0000200241316a200341a0066a41086a2d00003a0000412010122204450d9e012004200329039804370000200441186a20034198046a41186a290300370000200441106a20034198046a41106a290300370000200441086a20034198046a41086a290300370000200341f8036a41086a22074200370300200342003703f80320024132200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a003200341a0036a41102004412010042004101f2002101f0c81020b200341b8036a41086a2209200341f0026a41086a290300370300200341b8036a41106a2215200341f0026a41106a2d00003a0000200320034192036a2d00003a00d203200320032f0190033b01d003200320032903f0023703b80341ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034197066a20092903003700002003419f066a20152d00003a00002003200f370087062003200e36008306200320032d00d2033a008206200320032f01d0033b018006200320032903b80337008f0641f79cc100210420034180066a105e450d9b024108211c200341f8036a41086a22024200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0034100211d200341a0036a411041a4a4c100410041001001417f460d5920034210370294052003200341a0036a3602900520034198046a20034190056a105f200328029804221c450db001200341a0046a280200211e200328029c04211d0c5a0b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0142002105200341f8036a41086a22024200370300200342003703f80341dd81c000410d200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0030240200341a0036a411041a4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d970120032903980421050b411c21062005200f5a0d422003200f37039804200341f8036a41086a22024200370300200342003703f80341ea95c1004112200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810044100210241002104200d4102460d9b020c9d020b200341a7056a200341f0026a41086a290300370000200341af056a200341f0026a41106a2d00003a00002003200f370097052003200e36009305200320032f0190033b019005200320032903f00237009f05200320034192036a2d00003a00920541ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1a0b412821060c9b020b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0e200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220620022d00003a0000200320032903a00337038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206411310122202450d9d012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d9e0120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d1520034198046a20071060200341a0066a200341cc046a4120108002450d4b41caf7c0002104411c21060c720b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040c9b020b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040cef010b4128210641ac80c00041ac80c0004100200241ff017122021b20024103461b22040dfc01411310122202450d9d012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d9e0120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d1220034198046a2007106020032d008c05450d4f41baf6c0002104411d2106200341b8046a2802000d500c510b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0d20034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206200341a0066a105e450d2c411310122202450da1012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450da20120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d1120034198046a2007106020032d008c05450d5841baf6c0002104411d2106200341b8046a280200450dfa010cf9010b20034180066a41086a200341d8036a41086a2d00003a0000200320032903d80337038006412a210641d480c00021040c180b200341d8036a41086a20072d00003a0000200320032903a0063703d803201541ff01714101470d1020034190056a2014410676101e2003280298052014413f7122024d0d36200341c0036a20032802900520024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029405450df3010cf2010b41a286c0002104411b21062007450d86020c85020b41002107200341a0046a2802002106200328029c04210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d26410121092006450d05200a101f0c050b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040c86020b41012108200341a0046a2802002109200328029c04210c200241ff017122024101470d2002402009450d00200c101f0b4100210a41012109410121070c290b410121094101210741ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034198046a41086a2903002105410810122202450d9c012002200537000041a490c000410a2002410810042002101f4100210441012108410121094101210a410121070c290b41fe80c000410041fe80c000200241ff017122024102461b20024103461b2104412d210641012108410121094101210a0c1f0b200341a4046a2802002107200341a0046a280200210a200328029c04210841ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2402402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b4101210741002109200a450d002008101f0b41282106200328029804417e6a220241054b0d29024020020e06002e2b2a2c2d000b200341a0046a280200450d2d200328029c04101f0c2d0b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c030b200341b8036a41086a20022d00003a0000200320032903d8033703b8030cf2010b20034180066a41086a200341d8036a41086a2d00003a0000200320032902d80337038006412a210641d480c0002104200c450de6010ce5010b20034180066a41086a20034198046a41086a2d00003a00002003200329039804370380060b412a210641d480c00021040cec010b20064180204b0df7010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a290300370300200320032903900537039804410910122202450d8501200241086a41002d00d286403a0000200241002900ca864037000020024109412910142202450d86012002200329039804370009200241216a200341b0046a290300370000200241196a200341a8046a290300370000200241116a200341a0046a290300370000200341003602a806200342013703a006200320063602f803200341f8036a200341a0066a101320032802a406220a20032802a80622086b20064f0d18200820066a22042008490dfd01200a410174220c20042004200c491b220c4100480dfd01200a450d3720032802a006200a200c10142204450d380cdf010b4188f6c0002104411c21060ce9010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030ce3010b200f422088a72202450d2e20024105742206410575220aad4206862205422088a70dfb012005a722044100480dfb0120041012220c450d9001200e20066a2116200241057421044100200e6b2115200c2102200e2106034020034180066a41186a2207200641186a29000037030020034180066a41106a2208200641106a29000037030020034180066a41086a2209200641086a2900003703002003200629000037038006200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003702002002412c6a2008290300370200200241246a20092903003702002002411c6a200329038006370200200241c0006a2102200641206a2106200441606a22040d000b201620156a41606a41057641016a21022010450ddb010cda010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980441d19cc100210420034198046a105e0db90141082107200341d8036a41086a220820034198046a41176a290000370300200341d8036a41106a220920034198046a411f6a2d00003a0000200320032d009a043a00f203200320032f0198043b01f003200320032900a7043703d803200328009b042102200329009f042105200341f8036a41086a22064200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2006290300370300200320032903f8033703a00341002104200341a0036a411041a4a4c100410041001001417f460d3e20034210370284062003200341a0036a36028006200341a0066a20034180066a105f20032802a0062207450d9401200341a0066a41086a280200210820032802a40621042003418f046a200341d8036a41086a29030037000020034197046a200341e8036a2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a210620082004460d3f0cb8010b200341b0046a4200370300200341a8046a4200370300200341a0046a420037030020034200370398040b024020034190056a20034198046a4120108002450d0041d98fc1002104413121060cd7010b200341d8036a41086a2202200341a0066a41086a2d00003a0000200320032903a0063703d803200841ff01714101470d2320034198046a2004410676101e20032802a0042004413f7122024d0d33200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132116200429000b2105200428000721062004280003210441012107200328029c04450dd3010cd2010b200341b0046a420037030020034198046a41106a420037030020034198046a41086a420037030020034200370398040b200341a0066a20034198046a4120108002450d0141b78fc1002104412221060b200810202008101f0cd3010b20034198046a200841d80010fe011a41002104200341003a00900520034188026a20034198046a20034190056a10592003200328028802453a009a04200341063b01980420034198046a10272008101f0cd2010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d20200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220720022d00003a0000200320032903a00337038006200341af056a20072d00003a00002003200a3600a3052003200b37009b052003200c36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460dc901200342103702a406200320034190036a3602a00620034198046a200341a0066a10402003280298042202450d8e01200328029c042106200220084105746a2204450d3d200341a0046a28020020084d0d3d20034190056a2004460d4e200420034190056a41201080024521042006450dc8010cc7010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d082003200836029804200341a0036a41086a22024200370300200342003703a00341eecec0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cc9010b200341f8036a41086a2206200341f0026a41086a280200360200200320032903f0023703f80320034190036a41086a2214200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d1f20034180066a41086a221920142d00003a0000200320032903900337038006200341d8036a41086a220220192d00003a000020032003290380063703d803200341bf066a20022d00003a00002003200a3600b3062003200b3700ab062003200c3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a206200220062d00003a0000200320032903f8033703d803200841ff01714101470d2d20034198046a2009410676101e20032802a0042009413f7122024d0d3e200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132115200429000b211120042800072106200428000321044101210a200328029c04450db3010cb2010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d1f20034198046a41086a220220062d00003a0000200320032903900337039804200341d8036a41086a220620022d00003a000020032003290398043703d803200341a0066a411f6a20062d00003a00002003200a3600b3062003200b3700ab062003200c3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a20620034198046a200341a0066a105d20032d0098044101470d2d20034180066a41086a2202200341b8046a2d00003a00002003200341b0046a29030037038006200341a4046a2902002105200341ac046a2802002106200329029c04210b20032f009904210420032d009b042107200341d8036a41086a220920022d00003a000020032003290380063703d80320034190056a411f6a20092d00003a0000200320073a009205200320043b019005200320063600a3052003200537009b052003200b37009305200320032903d8033700a70520034180066a20034190056a106120032802800621020240200328028806220420084d0d00200341a0066a200220084105746a2206460d4a2006200341a0066a4120108002450d4a0b0240200328028406450d002002101f0b41ade5c0002104411421060cc7010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d052003200836029804200341a0036a41086a22024200370300200342003703a00341a6e1c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cc6010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d1f20034190056a41086a220220062d00003a000020032003290390033703900520034180066a41086a220720022d00003a0000200320032903900537038006200341b7046a20072d00003a00002003200a3600ab042003200b3700a3042003200c36009f042003201636009b0420032003290380063700af04200320043b019804200320044110763a009a04200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a003370390034100210220034190036a411041a4a4c100410041001001417f460d34200342103702a406200320034190036a3602a00620034190056a200341a0066a10402003280290052207450d8a0120034198056a280200210220032802940521060c350b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d032003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a003418ce1c000411a200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc4010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d022003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc3010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1f4128210620090dbe010cc2010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1f0b412821060cc0010b200741d480c00020024101461b2104412a21064100210a02402009450d00200c101f0b410121090b410121070c080b200741d480c00020024101461b2104412a21064100210702402009450d00200a101f0b410121094101210a0c070b20032802a00621040cc7010b41fc89c0004105200a200341a4046a28020010044101210802402006450d00200a101f0b410021090c030b41002102200328029c040dd0010cd1010b41e3f5c0002104412521060cce010b0240200741186c2202450d00200820026a21062008210203402002280200200241086a2802002002410c6a280200200241146a2802001004200241186a22022006470d000b0b02402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b410121090240200a450d002008101f0b410021080b4101210a410121070b410021040b0240024002400240200328029804417e6a220241054b0d00024020020e06000b02010304000b2007450d0a200341a0046a280200450d0a200328029c04101f0c0a0b20034198046a10440c090b200a450d08200341a0046a280200450d08200328029c04101f0c080b2009450d07200341a0046a280200450d07200328029c04101f0c070b2008450d06024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d06200328029c04101f0c060b4205200b7c2005580dda010b4198d8c1001024000b20034198046a10440c030b200341a0046a280200450d02200328029c04101f0c020b2007450d01200341a0046a280200450d01200328029c04101f0c010b2009450d00024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d00200328029c04101f0b41012108410021070ce1010b410021022003280294050dbb010cbc010b41e7f3c000210441202106200c0db8010cb9010b200341b8036a41086a20022d00003a0000200320032903d8033703b803200841087621020cb0010b41b59cc100210441002102200d4102460dd8010cda010b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c040b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803412a210641d480c000210420074104470da3010ca8010b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d8030c020b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c010b20034180066a41086a20034190056a41086a2d00003a00002003200329029005370380060b412a210641d480c00021040ca4010b4108210c4100210220100dab010cac010b20032005422088a73602a0042003200936029c0420032008360298042003411436029405200341c8cec0003602900520034198046a20034190056a106202402009450d002008101f0b410021040ca2010b200341a0036a41086a22024200370300200342003703a0034196d1c0004115200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900320034190036a411041a4a4c10041001004200320143a00980420024200370300200342003703a00341ecfdc0004119200341a0036a100020062002290300370300200320032903a0033703900320034190036a411020034198046a41011004410021040ca1010b42e40021120b024020122011562005200b562005200b511b450d004187f4c000210441102106200c0dac010cad010b201a450d10200341a0036a41086a22024200370300200342003703a00341c3f2c0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d1c200341003602980420034190036a411020034198046a41044100100141016a41044d0d59201a2003280298044d0d1d0c88010b20032d008c05450d1541baf6c0002104411d21060c260b200c101222040da7010b200c41011015000b41002107200328029c040d9e010c9f010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b803200841087621022005422088a72106200921040c86010b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803411a21064193e5c00021040c99010b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a003370390034100210c20034190036a411041a4a4c100410041001001417f460d17200342103702a406200320034190036a3602a00620034198046a200341a0066a1040200328029804220a450d5f200341a0046a280200210c200328029c0421160c180b200341cc046a20032903980420034198046a41086a2903001063412821062007410110642204450d18200341b8046a280200450d010b20032802b404101f0b200341c4046a280200450daa0120032802c004101f0caa010b4100211e0b201c201e41067422096a22810121022009450d0c20034198046a411c6a21820120034198046a41146a21094100211520034198046a41186a21830120034198046a41206a21840120034198046a41286a218501034020034198046a41086a228601201c20156a2202411c6a29020037030020034198046a41106a2214200241246a2902003703002083012002412c6a290200370300208401200241346a2902003703002085012002413c6a2802003602002003200241146a29020037039804200241106a280200221a450d0c2002290300210f200241086a290300212420034190056a41286a22870120850128020036020020034190056a41206a22880120840129030037030020034190056a41186a22890120830129030037030020034190056a41106a228a01201429030037030020034190056a41086a228b012086012903003703002003200329039804370390052014201a3602002009200329039005370200200941086a208b01290300370200200941106a208a01290300370200200941186a208901290300370200200941206a208801290300370200200941286a208701280200360200200320243703a0042003200f3703980420820120034180066a41201080020d1002402009280200450d00201a101f0b201541c0006a2115200241c0006a208101470d000b2081012202208101470d0d0c0e0b200341f8036a41176a2008290300370000200341f8036a411f6a20092d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a21060b200441016a22022004490dba0120044101742208200220022008491b2209ad4206862205422088a70dba012005a722024100480dba012004450d0520072004410674200210142207450d060c770b41012107410021060b200341a0036a41086a22044200370300200342003703a00341decfc000411d200341a0036a100020034190036a41086a2004290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200341003602900520034190036a411020034190056a41044100100141016a41044d0d4220032802900521042006450d750c740b4104210420060d730c740b4197f4c000210441222106200c0d9a010c9b010b20032903a804210b200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900342002105024020034190036a411041a4a4c100410041001001417f460d00200342003703900520034190036a411020034190056a41084100100141016a41084d0d4620032903900521050b20024200370300200342003703a00341a4f6c0004116200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d10200342003703900520034190036a411020034190056a41084100100141016a41084d0d462005200329039005200b7c5a0d200c6b0b2006450d8b012002101f0c8b010b2002101222070d710b200241081015000b4100210a200328029c040d730c740b4200210b200341a0036a41086a22024200370300200342003703a00341e6f7c0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0e2003420037039805200342003703900520034190036a411020034190056a4110410010012202417f460d502002410f4d0d5020034198056a290300210b20032903900521050c0f0b200241c0006a21020b2002208101460d010b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b4100218c010240201d450d00201c101f0b4108218d01410821024100218e010cb0010b200341a0066a41286a2214200941286a280200360200200341a0066a41206a228301200941206a290200370300200341a0066a41186a228401200941186a290200370300200341a0066a41106a228501200941106a290200370300200341a0066a41086a228601200941086a290200370300200320092902003703a00620034198046a41286a2209201428020036020020034198046a41206a221420830129030037030020034198046a41186a22830120840129030037030020034198046a41106a22840120850129030037030020034198046a41086a228501208601290300370300200320032903a0063703980441c0001012228d01450d4c208d01200f370300208d01201a360210208d01200329039804370214208d012024370308411c218201208d01411c6a2085012903003702004124218b01208d0141246a208401290300370200412c218a01208d01412c6a2083012903003702004134218901208d0141346a2014290300370200413c218801208d01413c6a2009280200360200201e41067441406a2015460d0d200241c0006a218f01411421900120034198046a41146a21094106219101201c201e4106746a41406a21920120034198046a411c6a21930141012194014110211441082115412821870120034198046a41286a2185014120211a20034198046a41206a218401411821860120034198046a41186a21830141c000219501420621244220210f41002196014101218e014101218c01410121020caa010b201a41e4004b0d6b0b2018450d06200341a0036a41086a22024200370300200342003703a00341d7f2c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0c200341003602980420034190036a411020034198046a41044100100141016a41044d0d4720182003280298044d0d0d0c5e0b4101210a410021160b200a200c4105746a2104200a21020340200420026b41ff004d0d0d20034190056a2002460d0e200220034190056a4120108002450d0e200241206a220620034190056a460d0e200620034190056a4120108002450d0e200241c0006a220620034190056a460d0e200620034190056a4120108002450d0e200241e0006a220620034190056a460d0e20024180016a2102200620034190056a41201080020d000c0e0b0b2003419c056a200736020020034190056a41086a41063a0000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d5d20032802c004101f0c5d0b20034180066a41086a22072004417f6a2204360200200220044105746a220229000021052002290008210b20022900102111200641186a200241186a290000370000200620113700102006200b3700082006200537000020034198046a41086a2007280200360200200320032903800637039804411510122202450d482002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d4920022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602fc03200320023602f80320034198046a200341f8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d4a200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d4b200220032903a0063700122002412a6a200341a0066a41186a2204290300370000200241226a200341a0066a41106a22072903003700002002411a6a200341a0066a41086a2208290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a411010052002101f20034198046a41186a200429030037030020034198046a41106a200729030037030020034198046a41086a2008290300370300200320032903a0063703980420064200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900342002105024020034190036a411041a4a4c100410041001001417f460d00200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3d20032903f80321050b200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0c200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3d20032903f803210b410f2106410f10122202450d0d0c590b200341a0036a41086a22024200370300200342003703a003418295c0004115200341a0036a1000200341f8036a41086a2002290300370300200320032903a0033703f803200341f8036a411041a4a4c100410041001001417f460d0d2003420037039005200341f8036a411020034190056a41084100100141016a41084d0d3d200329039005221150450d0e41a4a9c2001024000b4101210420060d780c790b41c9f4c000210441292106200c0d86010c87010b420521050b200341a0026a200341a0066a2005200b1065200341a0066a200329039804221120057d20034198046a41086a290300200b7d2011200554ad7d1063412821062007410110642204450d010b024020034198046a41206a280200450d0020032802b404101f0b200341c4046a280200450d8c0120032802c004101f0c8c010b20034190056a41086a41013a000020034199056a20032903a00637000020034190056a412c6a2007360200200341a1056a200341a0066a41086a290300370000200341a9056a200341b0066a290300370000200341b1056a200341b8066a290300370000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b20034198046a412c6a280200450d5520032802c004101f0c550b4101218e014101218c012081012202208101470d9f010ca0010b20184190ce004b0d510b2017450d07200341a0036a41086a22024200370300200342003703a00341f2f2c0004118200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d08200341003602980420034190036a411020034198046a41044100100141016a41044d0d3d20172003280298044d0d090c4e0b024020022004460d00034020034190056a2002460d02200220034190056a4120108002450d022004200241206a2202470d000b0b410f10122202450d42200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d43200220032903900537000f200241276a20034190056a41186a22062903003700002002411f6a20034190056a41106a2204290300370000200241176a20034190056a41086a22152903003700002003427f37039804200341a0036a41086a22144200370300200342003703a0032002412f200341a0036a100020034190036a41086a2014290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20034180066a41186a2214200629030037030020034180066a41106a2206200429030037030020034180066a41086a220420152903003703002003200329039005370380062016200c470d4c200c41016a2202200c490d9b01200c4101742216200220022016491b2216ad4205862205422088a70d9b012005a722024100480d9b01200c450d09200a200c41057420021014220a450d0a0c4c0b419ae4c0002104411f21062016450d5f200a101f20074104470d6c0c710b42e807210b410f2106410f101222020d4c0b200641011015000b420521110b20054280de34201180200b7c540d4b0b41d7f6c0002104412a2106200341b8046a2802000d7f0c80010b4189f5c000210441272106200c0d770c780b2017418089fa004b0d450b024020034190056a2011200b1066450d0041c4f5c0002104411f2106200c0d760c770b200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d02200341003602980420034190036a411020034198046a41044100100141016a41044d0d3b20032802980441016a21060c030b20021012220a0d420b200241011015000b410121060b200320063602980442002112200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a221b2002290300370300200320032903a0033703900320034190036a411020034198046a4104100420034180066a41186a420037030020034180066a41106a420037030020034180066a41086a420037030020034200370380062014201720034180066a1002200341d0026a41026a220820032d0082063a0000200341a0066a41086a220920034180066a41176a290000370300200341a0066a41106a220a20034180066a411f6a2d00003a0000200320032f0180063b01d0022003200329008f063703a00620032800830621042003290087062105200341d8036a41086a20034190056a41176a290000370300200341d8036a41106a20034190056a411f6a2d00003a0000200341b8036a41086a2009290300370300200341b8036a41106a200a2d00003a0000200320032d0092053a00f203200320032f0190053b01f0032003200329009f053703d803200320032f01d0023b01d003200320082d00003a00d203200320032903a0063703b8032003280093052159200329009705211320024200370300200342003703a00341dd81c000410d200341a0036a1000201b2002290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d3520032903980421120b20034180066a41026a20082d00003a000020034198046a41086a200929030037030020034198046a41106a200a2d00003a0000200320032f01d0023b018006200320032903a00637039804411810122202450d38200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d39200220032f0180063b00182002200537001f2002200436001b20022003290398043700272002411a6a20034180066a41026a2d00003a00002002412f6a20034198046a41086a290300370000200241376a20034198046a41106a2d00003a0000200341a0036a41086a22084200370300200342003703a00320024138200341a0036a1000200341f8036a41086a2008290300370300200320032903a0033703f803200341f8036a4110100a21092002101f4101210820090d3e200341e0026a41026a200341d0026a41026a2d00003a000020034198046a41086a200341a0066a41086a29030037030020034198046a41106a200341a0066a41106a2d00003a0000200320032f01d0023b01e002200320032903a00637039804411810122202450d3a200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d3b200220032f01e0023b00182002200537001f2002200436001b20022003290398043700272002411a6a200341e2026a2d00003a00002002412f6a200341a0046a290300370000200241376a200341a8046a2d00003a000020034100360288062003420137038006200320173602f803200341f8036a20034180066a1013024002400240200328028406220a20032802880622096b20174f0d00200920176a22082009490d9101200a410174221b20082008201b491b221b4100480d9101200a450d01200328028006200a201b10142208450d020c3f0b20032802800621080c3f0b201b101222080d3d0b201b41011015000b4190dbc1001024000b41de86c00041331023000b41f8cec1001024000b41a8dbc1001024000b41b0bbc2001024000b41a8c1c2001024000b41ace8c1001024000b41bca9c2001024000b41e0c8c1001024000b4198bbc2001024000b41ec99c2001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b4180d8c1001024000b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b412041011015000b410941011015000b412941011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411341011015000b412641011015000b410841011015000b200441081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41c00041081015000b41de86c00041331023000b411541011015000b413541011015000b411241011015000b413241011015000b41de86c00041331023000b410f41011015000b412f41011015000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b2003201b360284062003200836028006201b210a0b200820096a2014201710fe011a200341a0036a41086a221b4200370300200342003703a00320024138200341a0036a100020034190036a41086a201b290300370300200320032903a0033703900320034190036a41102008200920176a10040240200a450d002008101f0b2002101f0240200c450d002014101f0b410021080b200341c8046a2018360200200341c4046a2016360200200341bc046a201a360200200341b8046a2015360200200341ce046a20032d00f2033a0000200341d3046a201337000020034198046a41376a2059360000200341db046a20032903d803370000200341e3046a200341d8036a41086a290300370000200341eb046a200341d8036a41106a2d00003a00002003201137039804200320193602c004200320073602b404200320063602b004200320123703a8042003200b3703a004200320032f01f0033b01cc04200341ef046a2004360000200341f3046a2005370000200341ee046a20032d00d2033a0000200341fb046a20032903b80337000020034183056a200341b8036a41086a2903003700002003418b056a200341b8036a41106a2d00003a0000200341003a008c05200320032f01d0033b01ec0402400240024002400240411310122202450d002002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d01200220063600132003411736028406200320023602800620034198046a20034180066a10672002101f0240200341b8046a280200450d00200341b4046a280200101f0b0240200341c4046a280200450d00200341c0046a280200101f0b200341a0036a41086a22024200370300200342003703a00341ccf3c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041a4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a10682003280298042204450d042003200329029c04220537029c0420032004360298042005a72005422088a72202460d010c060b200341003602a0042003420437039804410421040b200241016a22072002490d5420024101742209200720072009491b2207ad4202862205422088a70d542005a722094100480d54024002402002450d0020042002410274200910142204450d010c050b2009101222040d040b200941041015000b411341011015000b412641011015000b41de86c00041331023000b2003200736029c042003200436029804200341a0046a28020021020b20034198046a41086a2207200241016a360200200420024102746a20063602002003411b36028406200341ccf3c0003602800620034198046a20034180066a10690240200328029c04450d002004101f0b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2204290300370300200341f8036a41086a20034190056a41086a220929030037030020032003290390053703f803200741003a0000200341c4046a2006360200200341a1046a200329039005370000200341a9046a2009290300370000200341b1046a2004290300370000200341b9046a2002290300370000200341073a00980420034198046a1027024020034190056a105e450d0020034198046a41186a200229030037030020034198046a41106a200429030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034198046a20064101106a0b41002104200c450d062008450d062014101f0c060b200a200c4105746a2202200329038006370000200241186a2014290300370000200241106a2006290300370000200241086a20042903003700002003200c41016a3602a0042003201636029c042003200a36029804200341123602a406200341cccfc0003602a00620034198046a200341a0066a106202402016450d00200a101f0b410021040c130b41b0f5c000210441142106200c0d300c310b41002104200241076a41002900d9c340370000200241002900d2c340370000024020022006412f10142202450d00200220032903980437000f200241276a200341b0046a2903003700002002411f6a20034198046a41106a290300370000200241176a20034198046a41086a2903003700002003200b20057c3703f803200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a4110200341f8036a410810042002101f0c240b412f41011015000b41f2f4c000210441172106200c0d2e0c2f0b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a00637039005412210122202450d02200241206a41002f00c8f7403b0000200241186a41002900c0f740370000200241106a41002900b8f740370000200241086a41002900b0f740370000200241002900a8f7403700002002412241c40010142202450d0320022003290390053700222002413a6a200341a8056a290300370000200241326a20034190056a41106a2903003700002002412a6a20034190056a41086a290300370000200241c40041880110142202450d0420022007360042200341a0036a41086a22064200370300200342003703a003200241c600200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f02402006450d004181f7c000210441272106200341b8046a2802000d350c360b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a0063703900520034190056a2007201b106a0240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d0020032802c004101f0b410021040b0c340b412241011015000b41c40041011015000b41880141011015000b2007101f0b0240200220044d0d0020034198046a2008106b2104410d21060c1b0b41c1e5c0002104413921060c1a0b20042108200921040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c200341003602a806200342013703a0062007200841016a2206200341a0066a106c20032802a406210920032802a806210a20032802a0062102200341f8036a41086a220c4200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a200c290300370300200320032903f8033703a003200341a0036a41102002200a100402402009450d002002101f0b02402006450d00200741106a2102200841067441c0006a210603400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b02402004450d002007101f0b410021040b4126210641002102200d4102460d450c470b41b9f4c000210441102106200c0d220c230b200328029804101f0b200a0d004101210a4115210641949bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b803370398044100210a0b20034180066a41086a220c20034198046a41086a2d00003a0000200320032903980437038006200a0d00200341af056a200c2d00003a0000200320153600a3052003201137009b052003200636009705200320043600930520032003290380063700a705200320023b019005200320024110763a00920520034198046a200341a0066a105d024020032d0098044101470d0041b9e4c00021044126210620074104470d0e0c130b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041a4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a1040200328029804220a450d0c200341a0046a2802002102200328029c04210c0c010b4101210a4100210c0b200a20024105746a2104200a21020340200420026b41ff004d0d02200341a0066a2002460d092002200341a0066a4120108002450d09200241206a2206200341a0066a460d032006200341a0066a4120108002450d04200241c0006a2206200341a0066a460d052006200341a0066a4120108002450d06200241e0006a2206200341a0066a460d0720024180016a21022006200341a0066a41201080020d000c080b0b20074104460d110c0c0b024020022004460d000340200341a0066a2002460d092002200341a0066a4120108002450d082004200241206a2202470d000b0b41002102200c0d090c0a0b200341a0066a21060b20062102200c0d070c080b200341a0066a21060b20062102200c0d050c060b200341a0066a21060b200621020b200c450d030c020b200341a0066a2102200c0d010c020b41de86c00041331023000b200a101f0b02402002450d0041dfe4c00021044122210620074104470d010c060b20034180066a20034190056a106120034198046a41186a200341a0066a41186a29030037030020034198046a41106a200341a0066a41106a29030037030020034198046a41086a200341a0066a41086a290300370300200320032903a00637039804024002400240024002402003280284062003280288062202470d00200241016a22062002490d3320024101742204200620062004491b2204ad4205862205422088a70d332005a7220a4100480d332002450d012003280280062002410574200a10142206450d020c030b20032802800621060c030b200a101222060d010b200a41011015000b200320043602840620032006360280060b20034180066a41086a2204200241016a360200200620024105746a2202200329039804370000200241186a20034198046a41186a290300370000200241106a20034198046a41106a290300370000200241086a20034198046a41086a220229030037000020022004280200360200200320032903800637039804024002400240024002400240411510122202450d002002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d0120022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602dc03200320023602d80320034198046a200341d8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d02200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d03200220032903a0063700122002412a6a200341b8066a290300370000200241226a200341a0066a41106a2903003700002002411a6a200341a0066a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034190056a412010042002101f410f10122202450d0441002104200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d05200220032903a00637000f200241276a200341b8066a2903003700002002411f6a200341a0066a41106a290300370000200241176a200341a0066a41086a2903003700002003427f37039804200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20074104470d060c0b0b411541011015000b413541011015000b411241011015000b413241011015000b410f41011015000b412f41011015000b20074106460d04024002402007410c470d004100450d010c060b2007410c490d050b2009450d040b2008101f0c030b2002101f0b2004450d0020034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a290300370300200320032903900537039804200320113703a8062003200542808080807083200542ffffffff0f83843703a006200320153602b006411c10122202450d02200241186a4100280093d040360000200241106a410029008bd040370000200241086a4100290083d040370000200241002900fbcf403700002002411c413c10142202450d03200220032903980437001c200241346a200341b0046a2903003700002002412c6a20034198046a41106a290300370000200241246a20034198046a41086a29030037000020034100360288062003420137038006200341a0066a41106a20034180066a10132003200341a0066a3602f803200341f8036a20034180066a106d200328028406210420032802880621072003280280062106200341a0036a41086a22084200370300200342003703a0032002413c200341a0036a100020034190036a41086a2008290300370300200320032903a0033703900320034190036a411020062007100402402004450d002006101f0b2002101f410021040c010b41c2d1c0002104410d21060b41002108410121070c320b411c41011015000b413c41011015000b200328029804101f0b20070d00410121074115210641949bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021070b20034180066a41086a220820034198046a41086a2d00003a000020032003290398043703800620070d0020034190036a41086a20082d00003a00002003200329038006370390034200210b200341f8036a41086a22074200370300200342003703f80341af8fc1004108200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a00341002107024002400240200341a0036a411041a4a4c100410041001001417f460d0020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012207417f460d022007411f4d0d0220034180066a41186a200341f8036a41186a29030037030020034180066a41106a200341f8036a41106a29030037030020034180066a41086a200341f8036a41086a290300370300200320032903f80337038006200341d8036a41086a20034197066a290000370300200341d8036a41106a20034180066a411f6a2d00003a0000200320032d0082063a00f203200320032f0180063b01f0032003200329008f063703d8032003280083062107200329008706210b0c010b200341d8036a41106a41003a0000200341e0036a4200370300200341003a00f203200341003b01f003200342003703d8030b200341b8036a41086a2208200341d8036a41086a290300370300200341b8036a41106a2209200341d8036a41106a2d00003a0000200320032d00f2033a00d203200320032f01f0033b01d003200320032903d8033703b803200341a1046a200b370000200341a9046a20032903b803370000200341b1046a2008290300370000200341b9046a20092d00003a000020034186023b0198042003200736009d04200320032f01d0033b019a04200320032d00d2033a009c0420034198046a1027200341b7046a20034190036a41086a2d00003a0000200320163600ab04200320053700a3042003200636009f042003200436009b0420032003290390033700af04200320023b019804200320024110763a009a04200341f8036a41086a22024200370300200342003703f80341af8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a41201004410021040c010b41de86c00041331023000b4100210a41012107410121080c2c0b200e101f0b200341003602a0042003420137039804200c200220034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b02402002450d0020024106742106200c41106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104410121020240200a450d00200c101f0b200d4102460d240c260b2003200c3602a406200320043602a006200c210a0b200420086a2009200610fe011a200341f8036a41086a220c4200370300200342003703f80320024129200341f8036a1000200341a0036a41086a200c290300370300200320032903f8033703a003200341a0036a41102004200820066a10040240200a450d002004101f0b2002101f02402007450d002009101f0b200341a1046a20034198056a290300370000200341a9046a200341a0056a290300370000200341b1046a200341a8056a2903003700002003410a3a00980420032003290390053700990420034198046a1027410021040c170b2014101f0b02402016450d002019101f0b2015450d072007101f0c070b200328029005101f0b20020d004101210241949bc1002114411521060c010b20034190056a41086a200341b8036a41086a2d00003a0000200320032903b80337039005410021020b200341a0036a41086a220420034190056a41086a2d00003a000020032003290390053703a00320020d08200341b7046a20042d00003a00002003200a3600ab04200320053700a3042003200636009f042003201436009b04200320032903a0033700af04200320093b019804200320094110763a009a0420034198046a2011200b106e20034198046a20132012106f0b410021040c120b20032802b404101f0b200341c4046a280200450d0020032802c004101f0b4100210c41012107410121084101210a0c1f0b200328029804101f0b20020d004101210241949bc1002114411521060c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021020b200341a0036a41086a220420034198046a41086a2d00003a000020032003290398043703a00320020d00200341af056a20042d00003a00002003200a3600a3052003200537009b0520032006360097052003201436009305200320032903a0033700a705200320093b019005200320094110763a009205411410122202450d04200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d05200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a29030037000042002105200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d032006410f4d0d03200341a0046a290300211220032903980421052002101f41142106411410122202450d020c060b41012107410121084101210a4101210c4101210941012116410121152014210420012d0000220241094d0d1d0c1e0b420021122002101f411421064114101222020d040b200641011015000b41de86c00041331023000b411441011015000b413441011015000b200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad9540370000024002400240024002400240024002400240024020022006413410142202450d0020022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900302400240024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d022006410f4d0d02200341a0046a290300212020032903980421210c010b42002121420021200b2002101f200341a0036a41086a22024200370300200342003703a0030240024002400240202120208422224200510d004186afc0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d02200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d062002410f4d0d06200341a0046a290300210f0c010b41f2aec0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d082002410f4d0d08200341a0046a290300210f0b20032903980421230c010b420021234200210f0b0240201120237c22242011542202200b200f7c2002ad7c2213200b542013200b511b450d0041ccb0c00021040c0f0b411010122202450d03200241086a41002900a2af403700002002410029009aaf4037000020024110413010142202450d04200220032903a006370010200241286a200341a0066a41186a290300370000200241206a200341a0066a41106a290300370000200241186a200341a0066a41086a29030037000020034198046a20024130103c20034198046a41206a290300212520034198046a41186a290300212620034198046a41106a290300212720032903a004212820032903980421292002101f4200212a4200212b0240024020294201520d00411410122202450d09200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0a200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200212b200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a003370390030240024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d0a2006410f4d0d0a200341a0046a2903002129200329039804212c0c010b4200212c420021290b2002101f200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d02200329039804212b0b4200212a200341e8016a20254200202b4200108202200341f8016a202b420020264200108202200341d8016a42004200202642001082024200212b024020032903e00120032903f00184420052200341f8016a41086a290300222520032903d80120032903e8017c7c2226202554720d002027202620032903f801222a202854202620275420262027511b22021b20267d2028202a20021b2226202a54ad7d212b2026202a7d212a0b202b2029202c202a562029202b562029202b511b22021b212b202a202c20021b212a0b0240200520247d2226200556201220137d2005202454ad7d220520125620052012511b450d0041e3afc0002104411d21060c110b02402026202a542005202b542005202b511b450d0041bdafc0002104412621060c110b202250450d0b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041a4a4c100410041001001417f460d0b200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d0a2002410f4d0d0a200329039804201156200341a0046a2903002212200b562012200b511b450d0b41adb0c0002104411f21060c100b41de86c00041331023000b41de86c00041331023000b413441011015000b41de86c00041331023000b411041011015000b413041011015000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411e2106200341a0066a107022040d040240202120117c221320215422022020200b7c2002ad7c221220205420122020511b450d004180b0c0002104412d21060c050b024002400240200341a0066a20034190056a4120108002450d00200341a0066a20262005106e42002105200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024002400240024002400240024002400240024002400240024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200341a0046a290300212020032903980421050c010b420021200b0240200520237d22212005562020200f7d2005202354ad7d220520205620052020511b0d002003202137039804200320053703a004200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a411010040b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041a4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200329039804201358200341a0046a290300220520125820052012511b0d0020034190056a20132012106e0c0b0b411410122202450d03200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0420022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f20060d09200341a0036a41086a22024200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900341002102024020034190036a411041a4a4c100410041001001417f460d00200341003602980420034190036a411020034198046a41044100100141016a41044d0d0320032802980421020b20034180066a200941067641ff07712204101e02400240024002402003280288062009413f7122064d0d00200341c8016a20032802800620064105746a2206105c20032903c801200341c8016a41086a290300844200510d010b0240200328028406450d00200328028006101f0b20034198046a2002101e024020032802a0042206413f4d0d00200341a0046a21040340200241016a21020240200328029c04450d00200328029804101f0b20034198046a2002101e2004280200220641c0004f0d000b0b2003280298042107200328029c04210420034198046a41186a220a20034190056a41186a29030037030020034198046a41106a220c20034190056a41106a29030037030020034198046a41086a221620034190056a41086a290300370300200320032903900537039804200641016a210820042006470d0a20064101742204200820082004491b2204ad4205862205422088a70d192005a722094100480d192006450d0120072006410574200910142207450d020c0a0b2006200329039005370000200641186a20034190056a41186a290300370000200641106a20034190056a41106a290300370000200641086a20034190056a41086a29030037000020034198046a41086a20034180066a41086a280200360200200320032903800637039804410f10122202450d07200241076a41002900e09540370000200241002900d995403700002002410f411e10142202450d082002200436000f200341133602fc03200320023602f80320034198046a200341f8036a10622002101f200328029c04450d0a200328029804101f0c0a0b2009101222070d080b200941011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b410f41011015000b411e41011015000b200720064105746a2209200329039804370000200941186a200a290300370000200941106a200c290300370000200941086a20162903003700000240200841c000470d002003200241016a36029804200341a0036a41086a22094200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2009290300370300200320032903a0033703900320034190036a411020034198046a410410040b200320083602a0042003200436029c042003200736029804410f10122208450d04200841076a41002900e09540370000200841002900d995403700002008410f411e10142208450d05200241067420066a21062008200236000f2003411336028406200320083602800620034198046a20034180066a10622008101f02402004450d002007101f0b20034180066a41186a20034190056a41186a220229030037030020034180066a41106a20034190056a41106a220429030037030020034180066a41086a20034190056a41086a220729030037030020032003290390053703800620034198046a41086a20032903900537030020034198046a41106a200729030037030020034198046a41186a2004290300370300200341b8046a20022903003703002003200636029c04200341013a00980420034198046a10270b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2206290300370300200341f8036a41086a20034190056a41086a220429030037030020032003290390053703f803200341d0046a2012370300200341c8046a201337030020034198046a41086a41003a0000200341a1046a200329039005370000200341a9046a2004290300370000200341b1046a2006290300370000200341b9046a2002290300370000200341023a00980420034198046a10270b20034190056a20132012106e0b200329009705210520032900a7062112200341a0046a41023a0000200341a8046a2012370300200341a4046a2019360200200341a1046a20032f01a0063b0000200341a3046a20032d00a2063a0000200341b0046a20032900af06370300200341b8046a200341a0066a41176a290000370300200341c0046a200341a0066a411f6a2d00003a0000200341c1046a20032f0190053b0000200341c3046a20032d0092053a0000200341023a009804200341c8046a2005370300200341c4046a201436020020034180056a200f370300200341f8046a2023370300200341f0046a200b370300200341e8046a2011370300200341d0046a200329009f05370300200341d8046a20034190056a41176a290000370300200341e0046a20034190056a411f6a2d00003a000020034198046a10270b4100210441012107410121084101210a4101210c41012109410121164101211520012d0000220241094d0d190c1a0b410f41011015000b411e41011015000b41bd86c0002104410d21062007450d010b2009101f0b4100211541012107410121084101210a4101210c410121094101211620012d0000220241094d0d140c150b412821060b410121070c0c0b200320053703900520034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a411020034190056a41081004200341013a00900520024200370300200342003703900341be93c000411320034190036a10002007200229030037030020032003290390033703980420034198046a411020034190056a41011004200742003703002003420037039804418295c000411520034198046a1000200341f8036a41086a200729030037030020032003290398043703f8030240024002400240024002400240200341f8036a411041a4a4c100410041001001417f460d002003420037039804200341f8036a411020034198046a41084100100141016a41084d0d02200329039804210b0c010b4205210b0b20034198046a41086a22024200370300200342003703980441a888c000411220034198046a1000200341a0036a41086a2208200229030037030020032003290398043703a0034101210702400240200341a0036a411041a4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d0320032903980421114100210a0c010b4101210a0b200320053703900520024200370300200342003703980441a888c000411220034198046a10002008200229030037030020032003290398043703a003200341a0036a411020034190056a410810042011500d10200a0d10427f200b200b7c22122012200b541b220b4200510d022005200b8022052011200b80220b580d032005200b42017c2211510d104200211220034198046a41086a22024200370300200342003703980441aefec000411220034198046a1000200341a0036a41086a200229030037030020032003290398043703a00302400240200341a0036a411041a4a4c100410041001001417f460d0020034210370294052003200341a0036a3602900520034198046a20034190056a1040200328029804221f450d06200329029c0421120c010b4101211f0b2005200b427f857ca7222d450d0f2012422088a7222e202d4d0d0f2011a7212f200341a1046a2130410f213120034190056a410f6a2132200341f8036a410f6a2133200341a0066a410f6a21344100210a41052135410821084110211641182118420021054114213641c8cec000213741a4a4c1002138417f2139410121194112213a4132213b412a213c4122213d411a213e410421174119213f41eecec0002140410d214141dd81c0002142411721434187cfc00021444120210c4130214541502146420121204220210b411b214741b1cfc000214841ff0021494160214a41cccfc000214b411d214c41decfc000214d423f2123411c214e413c214f41342150412c21514124215241032153411521544196d1c000215541ecfdc000215642102113200341d0046a215741582158415421594128211b4174215a416c215b4164215c415c215d417c215e42302111410b215f410a216041272161411f216242ffffffff0f2121410721634102216441002165410021020c050b41de86c00041331023000b41de86c00041331023000b41f4c9c1001024000b418ccac1001024000b41de86c00041331023000b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b201f2065202f6a202e702035746a2202290000212b200220086a2900002122200220166a2900002126200341a0066a20186a2266200220186a290000370300200341a0066a20166a22672026370300200341a0066a20086a226820223703002003202b3703a006200341f8036a20086a22692005370300200320053703f80320372036200341f8036a100020034190036a20086a226a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042202450d0e200328029c04216b200220034198046a20086a280200200341a0066a1036216c0240206b450d002002101f0b206c450d020c010b2019200a200341a0066a1036450d010b206520196a2265202d470d1f0c2c0b203a10122202450d0d200220166a200a2f00ecce40226d3b0000200220086a200a2900e4ce4022253700002002200a2900dcce4022283700002002203a203b10142202450d0e200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a206829030037000020692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0a200328029804216e2002101f203a101222020d010c110b4100216e2002101f203a10122202450d100b200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d10200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a20682903003700002003206e20196a226f3602980420692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201710042002101f20692005370300200320053703f8032040203f200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0b20032802980421700c010b410021700b200341a0036a20086a2202203420086a290000370300200341a0036a20166a226b203420166a2d00003a0000200320032d00a2063a00d202200320032f01a0063b01d002200320342900003703a00320032800a306217120032900a706212a4200212920694200370300200342003703f80320422041200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d00200320053703980420034190036a201620034198046a2008200a100120196a20084d0d0820032903980421290b200341f0026a20086a22722002290300370300200341f0026a20166a2273206b2d00003a0000200320032d00d2023a00e202200320032f01d0023b01e002200320032903a0033703f00220692005370300200320053703f80320442043200341f8036a1000206a2069290300370300200320032903f8033703900302400240024002400240024020034190036a20162038200a200a10012039460d002003201337029c04200320034190036a36029804200341c0016a20034198046a102820032802c001450d0820032802c4012274ad20117e222b200b88a70d12202ba7220220394c0d122002450d01200210122275450d1b2074450d030c020b4100217c4108217542002122410021020c040b410821752074450d010b20034198046a20086a2276280200217741002178200328029c042179200328029804217a4100216c410021022074217b034020034180066a20186a227c200537030020034180066a20166a227d200537030020034180066a20086a227e200537030020032005370380062076200a207a207920034180066a200c20771001226b206b2039461b226b200c206b200c491b20776a2277360200206b20624d0d05200341f8036a20186a207c290300370300200341f8036a20166a207d2903003703002069207e29030037030020032003290380063703f80320032005370390052076200a207a207920034190056a200820771001226b206b2039461b226b2008206b2008491b20776a2277360200206b20634d0d05200329039005212b2003200a360290052076200a207a207920034190056a201720771001226b206b2039461b226b2017206b2017491b20776a2277360200206b20534d0d05200220196a216b200328029005217c200341d8036a20086a227d203320086a290000370300200341d8036a20166a227e203320166a2d00003a0000200320032d00fa033a00f203200320032f01f8033b01f003200320332900003703d80320032800fb03217f20032900ff03212202402002207b470d002078206b206b2078491b227bad20117e2226200b88a70d282026a7228001200a480d2802402002450d002075206c208001101422750d010c0c0b20800110122275450d0b0b2075206c6a2202202b370300200220086a20032f01f0033b010020032d00f203218001200220316a20223700002002205f6a207f360000200220606a2080013a0000200220616a207e2d00003a0000200220626a207d290300370000200220436a20032903d8033700002002201b6a207c360200207820646a2178206c20456a216c206b2102206b2074490d000c020b0b4100216b4100217b0b2075450d03206bad200b86207bad842222200b88a7217c2022a721020b20034198046a20086a2279207229030037030020034198046a20166a227e20732d00003a0000200320032d00e2023a008206200320032f01e0023b018006200320032903f002370398040240024002400240024002400240207c200c490d00207c20456c226b2045460d01207520456a2102206b20466a217a410021774101216c207521782075216b03402002206b206b29030020022903005622761b216b206c207720761b21772002207820761b2178206c20196a216c200220456a2102207a20466a227a0d000b206b450d182078450d182032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005207c20774b0d020c1f0b200341b8036a20086a226b2079290300370300200341b8036a20166a226c207e2d00003a0000200320032d0082063a00d203200320032f0180063b01d00320032003290398043703b80302402002207c470d00207c2019742202207c20196a227620762002491bad222b20117e2226200b88a70d2a2026a72202200a480d2a207c450d032075207c20456c2002101422750d040c200b2022212b0c040b2032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005410021770b2075207720456c6a220220293703002002200c6a20034190056a20186a290300370300200220186a20034190056a20166a290300370300200220166a20034190056a20086a2903003703002002200329039005370308200220193602280c030b200210122275450d1c0b2022200b88a7217c0b2075207c20456c6a2202202937030020032d00d203217620032f01d0032177200220316a202a3700002002205f6a2071360000200220773b0108200220606a20763a0000200220616a206c2d00003a0000200220626a206b290300370000200220436a20032903b80337000020022019360228202b202183207c20196aad200b868421220b2079200a360200200320203703980420032022200b88a722023602900520034190056a20034198046a1013024002402002450d00200220456c217a2058207928020022026b2177200220516a2102200328029c04216c2075216b03400240024002400240206c20776a201b6a200c4f0d00200220596a2278200c6a22762078490d2a206c2019742278207620762078491b2278200a480d2a206c450d01200328029804206c2078101422760d020c0a0b20032802980421760c020b207810122276450d080b2003207836029c0420032076360298042078216c0b20792002205a6a227c360200207620026a2278205b6a206b200c6a2900003700002078205c6a206b20186a2900003700002078205d6a206b20166a290000370000207820596a206b20086a290000370000206b290300212b0240024002400240206c20776a227820086a20784f0d00207c20086a2278207c490d2a206c201974227c20782078207c491b2278200a480d2a206c450d012076206c2078101422760d020c0b0b206c21780c020b207810122276450d090b2003207836029c0420032076360298040b20792002205e6a226c360200207620026a205a6a202b370000206b201b6a280200217c0240024002400240207820776a20534b0d00206c20176a227d206c490d2a2078201974226c207d207d206c491b226c200a480d2a2078450d0120762078206c101422760d020c0c0b2078216c0c020b206c10122276450d0a0b2003206c36029c0420032076360298040b206b20456a216b20792002360200207620026a205e6a207c360000207720596a2177200220516a2102207a20466a227a0d000c020b0b200328029c04216c20032802980421760b2079280200210220692005370300200320053703f80320442043200341f8036a100020792069290300370300200320032903f8033703980420034198046a20162076200210040240206c450d002076101f0b02402022a7450d002075101f0b0240024002400240206f20704d0d004200212220694200370300200342003703f80320482047200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a200a10012039460d01200320053703a004200320053703980420034190036a201620034198046a2016200a100122022039460d16200220314d0d162079290300212a20032903980421270c020b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410121020c020b420021274200212a0b206e20197420706b216b206e20706b220220196a217a4200212b02400340206b216c2002207a4f0d010240200220494b0d00200341b0016a2027202a2002204971108302202b200341b0016a20086a2903007c202220032903b0017c22292022542276ad7c2226202b5121772026202b542178206c20196a216b200220196a2102202921222026212b2076207820771b450d010b0b20034198046a20186a226b2066290300370300207e206729030037030020792068290300370300200320032903a00637039804203a10122202450d18200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d1920022003290398043700122002203c6a206b2903003700002002203d6a207e2903003700002002203e6a20792903003700002003206c3602900520692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034190056a201710042002101f20034198046a200341a0066a106120792802002102200328029804216c200341a0016a200341a0066a105c200341a0016a20086a290300212b20032903a001212202402002450d002002203574216b206c2102034020034190016a2002105c20034190016a20086a290300202b7c200329039001222b20227c2222202b54ad7c212b2002200c6a2102206b204a6a226b0d000b0b200328029c04450d00206c101f0b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042276450d1d20792802002102200328029c04216b0c010b4100216b41012176410021020b20692005370300200320053703f803204d204c200341f8036a1000206a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0e200328029804216c206b450d020c010b4104216c206b450d010b2076101f0b02402002206c4d0d00200341f8006a200341a0066a2022202b10712003290378a72019470d00200341f8006a20166a290300212a200329038001212720034198046a200341a0066a10722003280298042176024020792802002202450d00420021262002203574226c216b42002129207621020340200341e8006a2002105c200341e8006a20086a29030020297c2003290368222920267c2226202954ad7c21292002200c6a2102206b204a6a226b0d000b2026202984500d00207621020340200341d8006a2002105c200341306a2003290358200341d8006a20086a2903002027202a108202200341206a2003290330200341306a20086a29030020262029108102200341c0006a20022003290320200341206a20086a29030010712002200c6a2102206c204a6a226c0d000b0b200328029c04450d002076101f0b204e10122202450d14200220186a200a280093d040360000200220166a200a29008bd040370000200220086a200a290083d0403700002002200a2900fbcf403700002002204e204f10142202450d15200220032903a00637001c200220506a2066290300370000200220516a2067290300370000200220526a206829030037000020034198046a2002204f103d20034198046a20186a2277280200216b20032903980421262002101f02400240206f20706b206b205320262020511b4b0d002022202388212a202b202086212720034198046a200341a0066a106120792802002102200328029804216c200341106a200341a0066a105c200341106a20086a29030021262003290310212902402002450d002002203574216b206c2102034020032002105c200320086a29030020267c2003290300222620297c2229202654ad7c21262002200c6a2102206b204a6a226b0d000b0b2027202a84212a202220208621270240200328029c04450d00206c101f0b2027202258202a202b58202a202b511b0d00202920275a2026202a5a2026202a511b0d010b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042278450d1e200328029c04217a024020792802002202450d00200220357421764100216b20782102024003402077200220186a290000370300207e200220166a2900003703002079200220086a2900003703002003200229000037039804206b20034198046a200341a0066a200c108002226c200a476a216b206c450d012002200c6a21022076204a6a22760d000c020b0b200341a0066a206b106b22020d200b207a450d002078101f0b20692005370300200320053703f80320552054200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a10042003200a3a00980420692005370300200320053703f8032056203f200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201910040b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410221020b2057202b37030020034198046a20456a2022370300207920023a0000203020032903900537000020034198046a20516a206e360200203020086a20034190056a20086a290300370000203020166a20034190056a20166a290300370000203020186a20034190056a20186a290300370000200320173a00980420034198046a1027206520196a2265202d470d1f0c2b0b208f012102024002400340200220146a280200216b200220156a290300212b2002290300212220850120022088016a28020036020020840120022089016a2902003703002083012002208a016a29020037030020034198046a20146a226c2002208b016a29020037030020034198046a20156a227620022082016a290200370300200320022090016a29020037039804206b450d0220034190056a2087016a228f0120850128020036020020034190056a201a6a227720840129030037030020034190056a2086016a227820830129030037030020034190056a20146a2279206c29030037030020034190056a20156a227a2076290300370300200320032903980437039005206c206b3602002009200329039005370200200920156a227c207a290300370200200920146a227a207929030037020020092086016a227920782903003702002009201a6a2278207729030037020020092087016a2277208f012802003602002003202b3703a0042003202237039804024020930120034180066a201a1080020d0002402009280200450d00206b101f0b20022095016a2202208101470d010c020b0b200341a0066a2087016a228f012077280200360200200341a0066a201a6a22772078290200370300200341a0066a2086016a22782079290200370300200341a0066a20146a2279207a290200370300200341a0066a20156a227a207c290200370300200320092902003703a006208501208f0128020036020020840120772903003703002083012078290300370300206c20792903003703002076207a290300370300200320032903a006370398040240208c01208e01470d00208e012094016a228c01208e01490d24208e0120940174228f01208c01208c01208f01491b228c01ad2024862226200f88a70d242026a7228f01209601480d240240208e01450d00208d01208e0120910174208f011014228d010d010c200b208f011012228d01450d1f0b20022095016a218f01208d01208e01209101746a2277202b370308207720223703002077206b36021020772088016a20850128020036020020772089016a2084012903003702002077208a016a2083012903003702002077208b016a206c29030037020020772082016a207629030037020020772090016a200329039804370200208e012094016a218e012092012002470d210b2081012202208101470d240c250b200241c0006a2202208101460d240c230b207b450d002075101f0b41de86c00041331023000b207841011015000b207841011015000b206c41011015000b20800141081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b100f000b411241011015000b413241011015000b411241011015000b413241011015000b419ecfc00041131023000b41de86c00041331023000b411c41011015000b413c41011015000b200241081015000b411241011015000b413241011015000b41d088c2002077207c1048000b200241081015000b41de86c00041331023000b41de86c00041331023000b4197d0c00041ff002002410d1037000b208f0141081015000b410021020c020b410021020c010b410121020c000b0b1010000b1010000b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b0240201d450d00201c101f0b208d0121020b200341003602a00420034201370398042002208e0120034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f80341d595c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b0240208e01450d00208e014106742106200241106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104208c01450d00208d01101f0b411a210641002102200d4102470d020b20020d012010450d010b200e101f0b4100211641012107410121084101210a4101210c410121090c060b2012a7450d00201f101f0b410121080b4101210a0b4101210c0b410121090b410121160b4101211520012d0000220241094b0d010b02400240024002400240024020020e0a07020707070004030501070b2008450d06200141086a2d0000410c490d06200141106a280200450d062001410c6a280200101f0c060b2016450d05200141086a2d00004102470d05200141106a280200450d052001410c6a280200101f0c050b2007450d04200141086a10440c040b200c450d03200141086a2d00004102470d030240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d03200141246a280200101f0c030b200a450d02200141046a10730c020b2009450d01200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b2015450d00200141046a2802004102490d002001410c6a280200450d00200141086a280200101f0b2000200636020420002004360200200341d0066a24000bdc0202027f027e230041206b2202240002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b2003101f2000200537030820002004370300200241206a24000f0b41de86c00041331023000b411441011015000b413441011015000b9d840104037f027e087f0b7e230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417e6a220541104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210520022d0000210420034180036a41026a2209200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220044101470d14200341c0036a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01c003200320032903900637038805410021020c150b4100210941ac80c00041ac80c000410020022d000022021b20024103461b22050d10200320012d00013a008805200341b0066a41086a22024200370300200342003703b00641f4b0c0004119200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410110040c88010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0f200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1d2003421037028c05200320034180036a3602880520034188026a20034188056a108f012003290388024203510d5a200342083703e8044100210c200341003602f004200341b0066a41086a22024200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d31200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220d450d63200328028c05210c20034190056a2802002202450d320c95010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0e200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1d2003421037028c05200320034180036a36028805200341d8016a20034188056a108f0120032903d8014203520d1741de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0d200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5420032903880521060b41e2bcc0002109411f2108200620075a0d1720032007370390052003420237038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c080b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0c200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a22082002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341e8016a20034188056a108f0120032903e8014203520d1541de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0b200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341b8016a20034188056a108f0120032903b8014203520d1441de86c00041331023000b200341a0026a41186a200141196a290000370300200341a0026a41106a200141116a290000370300200341a0026a41086a200141096a290000370300200320012900013703a002200341c0026a41186a200141396a290000370300200341c0026a41106a200141316a290000370300200341c0026a41086a200141296a2900003703002003200141216a2900003703c002200141c4006a280200210a200141c8006a2802002109200141cc006a280200210b200241086a2800002108200241046a280000210520022d0000210420034180036a41026a220f200241036a2d00003a000020034190066a41086a220e200241146a29000037030020034190066a410d6a220c200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210120044101470d0b200341e8046a41026a200f2d00003a000020034188056a41086a200e29030037030020034188056a410d6a200c290000370000200320032f0180033b01e804200320032903900637038805410021010c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d09200341b0066a41086a22024200370300200342003703b00641d595c1004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1b200342103702e403200320034180036a3602e00320034188056a200341e0036a105f2003280288052202450d552003200329028c0537028c0520032002360288050c1c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d08200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5020032903880521060b41e2bcc0002109411f2108200620075a0d1220032007370390052003420037038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c030b41ac80c00041ac80c000410020022d000022021b20024103461b22050d07200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1b2003421037028c05200320034180036a3602880520034198016a20034188056a108f012003290398014203520d1041de86c00041331023000b200141306a2903002106200141286a2903002107200341d8036a200141196a290000370300200341c0036a41106a200141116a290000370300200341c0036a41086a200141096a290000370300200320012900013703c003200241086a2800002108200241046a280000210920022d0000210520034180036a41026a2204200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220054101470d0b200341e8046a41026a20042d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01e804200320032903900637038805410021020c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d05200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d4e20032903880521060b41e2bcc0002109411f2108200620075a0d0f20032007370390052003420137038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010b4100210920012d00004104460d91010c92010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d03200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341f8016a20034188056a108f0120032903f8014203520d0c41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d02200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d182003421037028c05200320034180036a3602880520034188016a20034188056a108f012003290388014203520d0b41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d01200141086a2903002106200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341c8016a20034188056a108f0120032903c8014203520d0a41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b2205450d080b4128210820044104470d8e01200141c8006a280200450d8e01200141c4006a280200101f0c8e010b412a210841d480c00021050b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00302402001450d0020090d230c8d010b200341fc026a41026a200341c0066a41026a2d00003a0000200341e0026a41086a200341e0036a41086a290300370300200341e0026a410d6a200341e0036a410d6a290000370000200320032f01c0063b01fc02200320032903e0033703e002200b41204d0d0841d4bcc0002105410e210820090d220c8c010b41d480c0002105412a21080b200341c0066a41026a200341c0036a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01c0033b01c00620032003290388053703e0032002450d022005210920012d00004104460d88010c89010b412a210841d480c00021090b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00320020d03200341a0026a41026a2202200341c0066a41026a2d00003a0000200341a0036a41086a2205200341e0036a41086a290300370300200341a0036a410d6a2204200341e0036a410d6a290000370000200320032f01c0063b01a002200320032903e0033703a0032003419b056a2005290300370000200341a0056a20042900003700002003200836008f052003200936008b05200320022d00003a008a05200320032f01a0023b018805200320032903a00337009305200341d8006a20034188056a105a2003290358200341d8006a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d132003421037028c05200320034180036a36028805200341c8006a20034188056a108f01200329034822104203520d1441de86c00041331023000b200341a0036a41026a2202200341c0066a41026a2d00003a0000200341e8046a41086a2204200341e0036a41086a290300370300200341e8046a410d6a2209200341e0036a410d6a290000370000200320032f01c0063b01a003200320032903e0033703e8042003419b056a2004290300370000200341a0056a20092900003700002003200836008f052003200536008b05200320022d00003a008a05200320032f01a0033b018805200320032903e80437009305200341286a20034188056a105a2003290328200341286a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341186a20034188056a108f01200329031822104203520d1541de86c00041331023000b200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d0f2003421037028c05200320034180036a36028805200341a8016a20034188056a108f0120032903a8014203510d440b4181bdc0002109412421080b20012d00004104470d83010c82010b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341f8006a20034188056a108f01200329037822064203520d1541de86c00041331023000b4194bac00021094126210820012d00004104460d80010c81010b41b8b8c00021094127210820012d00004104460d7f0c80010b41d5bec00021090c7b0b2005450d17200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d1e200341003602880520034180036a411020034188056a41044100100141016a41044d0d3a20032802880520054f0d1f0c740b20024200370300200342003703b00641f1bfc000411b200341b0066a100020082002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d17200341003602880520034180036a411020034188056a41044100100141016a41044d0d3820032802880520054d0d180c720b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c770b200341003602900520034208370388050b20034198026a20034188056a108301200328029c022108200328029802210920012d00004104460d790c7a0b2006500d042003200637038805200341b0066a41086a22024200370300200342003703b00641f9bec000411c200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c620b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c730b2006500d022003200637038805200341b0066a41086a22024200370300200342003703b00641d2b4c0004120200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c600b2006500d122003200637038805200341b0066a41086a22024200370300200342003703b00641b4bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5f0b2006500d002003200637038805200341b0066a41086a22024200370300200342003703b0064195bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5e0b41a5bdc000210920012d00004104460d730c740b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d022003421037028c05200320034180036a36028805200341386a20034188056a108f0120032903384203510d3220104203510d332010a74101470d0342002110200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d102003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d392002410f4d0d3920034190056a290300211020032903880521110c110b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341086a20034188056a108f0120032903084203510d3220104203510d332010a7450d0841dfb8c00021090c0d0b419db9c00021090c630b41babac0002109411c210820012d00004104460d6d0c6e0b420321060b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b00637038003024020034180036a411041a4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341e8006a20034188056a108f0120032903684203510d3120064203510d322006a74102470d032003419c036a41026a200341fc026a41026a2d00003a000020034180036a41086a200341e0026a41086a29030037030020034180036a410d6a200341e0026a410d6a290000370000200320032f01fc023b019c03200320032903e00237038003200341a0036a41186a200341a0026a41186a290300370300200341a0036a41106a200341a0026a41106a290300370300200341a0036a41086a200341a0026a41086a290300370300200320032903a0023703a003200341c0036a41186a200341c0026a41186a290300370300200341c0036a41106a200341c0026a41106a290300370300200341c0036a41086a200341c0026a41086a290300370300200320032903c0023703c003411510122201450d352001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d36200120032903a0033700152001412d6a200341b8036a290300370000200141256a200341a0036a41106a2903003700002001411d6a200341a0036a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d0f200341e0036a200341a0036a10990120032d00c0044101470d1041e4bbc00021014115210220090d5d0c5e0b419db9c00021054114210820090d030c6d0b4101210d4100210241000d630b410021054108210e200c0d630c640b41b5bcc0002105411f21082009450d6a0b200a101f0c690b411f10122202450d31200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d32200220032f01a0033b001f2002200836002620022005360022200220032903e80437002a200241216a200341a2036a22092d00003a0000200241326a200341e8046a41086a290300370000200241376a200341f5046a220a290000370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d0e200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041a4a4c100410041001001417f460d0c2003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d372002410f4d0d3720034190056a290300211020032903880521110c0d0b41dabdc0002109411b210820012d00004104460d650c660b410a20054b0d5a0b2003200536028805200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c4d0b41babdc00021090b4120210820012d00004104460d610c620b420a21110b02402011200756201020065620102006511b450d0041d6bac00021090c550b200341fb046a200341a0036a41086a290300370000200341e8046a41186a200341a0036a410d6a290000370000200320083600ef04200320093600eb04200320032f01a0023b01e804200320032903a0033700f3042003200341a2026a2d00003a00ea0420034190066a41186a200341c0036a41186a220229030037030020034190066a41106a200341c0036a41106a220529030037030020034190066a41086a200341c0036a41086a2204290300370300200320032903c0033703900620034188056a41186a200229030037030020034188056a41106a200529030037030020034188056a41086a2004290300370300200320032903c00337038805411510122202450d2e2002410d6a4100290095bb40370000200241086a4100290090bb4037000020024100290088bb4037000020024115413510142202450d2f20022003290388053700152002412d6a200341a0056a290300370000200241256a20034188056a41106a2903003700002002411d6a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1000200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a4110100a21052002101f2005450d0441bcbbc00021090c540b41142005490d550b2003200536028805200341b0066a41086a22024200370300200342003703b00641f1bfc000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c470b41d0bbc00021014114210220090d4d0c4e0b2003419b056a20034188036a290300370000200341a0056a2003418d036a2900003700002003200836008f052003200536008b05200320032f019c033b01880520032003290380033700930520032003419e036a2d00003a008a0520034188056a200341e0036a41206a4120108002450d0441f9bbc0002101411a21020c4b0b412210122202450d2c200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d2d200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a29030037000020034188056a200241c200103c20034188056a41106a290300211220034188056a41186a290300211020034188056a41206a2903002111200329039005211320032903880521142002101f200341e8046a200720104200201442015122021b2214200720142007542011420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d2206107a450d04200341e8046a201520061066450d07419dbbc0002109411f210820012d00004104460d5a0c5b0b4200211042e40021110b2011200756201020065620102006511b450d0041ffb8c0002109411e210820012d00004104460d580c590b200341f3036a200341e8046a41086a290300370000200341e0036a41186a200a290000370000200320083600e703200320053600e303200320032f01a0033b01e003200320032903e8043700eb03200320092d00003a00e203412210122202450d24200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d25200220032903e0033700222002413a6a200341e0036a41186a290300370000200241326a200341e0036a41106a2903003700002002412a6a200341e8036a29030037000020034188056a200241c200103c20034188056a41186a290300211220034188056a41206a290300211320034188056a41106a2903002110200329039005211120032903880521142002101f41d0b9c0002109200341e0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22041b22117d221520062010200620041b22167d2007201154ad7d2206107a450d0241f2b9c0002109200341e0036a2015200610660d02411f10122204450d2b200441176a41002900a4b140370000200441106a410029009db140370000200441086a4100290095b1403700002004410029008db1403700002004411f413f10142204450d2c200420032903e00337001f200441376a200341e0036a41186a2903003700002004412f6a200341e0036a41106a290300370000200441276a200341e0036a41086a29030037000020034188056a2004413f103c20034188056a41106a290300210720034188056a41206a290300211720034188056a41186a29030021182003290390052119200329038805211a2004101f412210122204450d2d200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d2e200420032903e0033700222004413a6a200341f8036a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000200341b0066a41086a22094200370300200342003703b006200441c200200341b0066a1000200341c0066a41086a2009290300370300200320032903b0063703c006200341c0066a4110100a21092004101f02402009450d00412210122204450d34200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d35200420032903e0033700222004413a6a200341e0036a41186a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000411010122209450d362009201420117d3700002009201020167d2014201154ad7d37000820094110412010142209450d3720092012420020021b370010200941186a2013420020021b370000200341b0066a41086a22024200370300200342003703b006200441c200200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a41102009412010042009101f2004101f0b411f10122202450d2f200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d30200220032903e00337001f200241376a200341e0036a41186a22092903003700002002412f6a200341e0036a41106a290300370000200241276a200341e0036a41086a290300370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d40200341b0066a41086a22024200370300200342003703b00641e6b3c000411a200341b0066a100020034180036a41086a2002290300370300200320032903b006370380034100210420034180036a411041a4a4c100410041001001417f460d072003421037029406200320034180036a3602900620034188056a20034190066a10402003280288052202450d382003200329028c0522103702940620032002360290062010422088a7210a2010a721040c080b411f10122201450d30200141176a41002900a4b140370000200141106a410029009db140370000200141086a4100290095b1403700002001410029008db1403700002001411f413f10142201450d31200120032903c00337001f200141376a200341d8036a2903003700002001412f6a200341c0036a41106a290300370000200141276a200341c0036a41086a290300370000200341b0066a41086a22024200370300200342003703b0062001413f200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d02200b450d04200b101222010d05200b41011015000b41d0b9c00021090b4122210820012d00004104460d540c550b4193bcc00021014122210220090d440c450b200341b0066a41086a22054200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2005290300370300200320032903b006370380034100210420034180036a411041a4a4c100410041001001417f460d04200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220a450d342003200329028c0522073702e4032003200a3602e0032007422088a721052007a721040c050b410121010b2001200a200b10fe01210f200341e8046a41186a2201200341c0036a41186a290300370300200341e8046a41106a2204200341c0036a41106a290300370300200341e8046a41086a220e200341c0036a41086a290300370300200320032903c0033703e804412010122202450d30200220032903e804370000200241186a2001290300370000200241106a2004290300370000200241086a200e29030037000002400240200b450d00200b41206a2201200b490d50200141c000200141c0004b1b22044100480d50200241202004101422020d01200441011015000b41202104200b41206a21010b200241206a200f200b10fe011a20034188056a41186a220e420037030020034188056a41106a220c420037030020034188056a41086a220d420037030020034200370388052002200120034188056a100220034190066a41186a200e29030037030020034190066a41106a200c29030037030020034190066a41086a200d29030037030020032003290388053703900641be82c10021010240200341a0046a20034190066a41201080020d00200341c1046a20032903e804370000200341c0046a41013a0000200341c9046a200341e8046a41086a290300370000200341d1046a200341e8046a41106a290300370000200341d9046a200341e8046a41186a290300370000410021010b02402004450d002002101f0b02402001450d00410c2102200b450d41200f101f20090d420c430b20034190066a41186a200341a0036a41186a29030037030020034190066a41106a200341a0036a41106a29030037030020034190066a41086a200341a0036a41086a290300370300200320032903a0033703900620034188056a200341e0036a41880110fe011a411510122201450d332001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d3420012003290390063700152001412d6a200341a8066a290300370000200141256a200341a0066a2903003700002001411d6a20034198066a290300370000200341353602ec04200320013602e80420034188056a200341e8046a109a012001101f0240200b450d00200f101f0b4100210102402009450d00200a101f0b41000d430c440b20034100360298062003420137039006410121024100210a0b20034188056a41186a220f200341e0036a41186a29030037030020034188056a41106a220e200341e0036a41106a29030037030020034188056a41086a220c200341e0036a41086a290300370300200320032903e003370388050240200a2004470d00200441016a220b2004490d4d2004410174220d200b200b200d491b220bad4205862210422088a70d4d2010a7220d4100480d4d2004450d0320022004410574200d10142202450d040c360b2004210b0c360b200341003602e803200342013703e0034101210a410021050b20034188056a41186a220f20034190066a41186a29030037030020034188056a41106a220e20034190066a41106a29030037030020034188056a41086a220c20034190066a41086a29030037030020032003290390063703880520042005470d32200541016a22042005490d4a2005410174220b20042004200b491b2204ad4205862207422088a70d4a2007a7220b4100480d4a2005450d02200a2005410574200b1014220a450d030c310b200d101222020d320b200d41011015000b200b1012220a0d2e0b200b41011015000b41bcf8c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41d0c6c2001024000b41de86c00041331023000b41d0c6c2001024000b41de86c00041331023000b41d0c6c2001024000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411541011015000b413541011015000b41de86c00041331023000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412041011015000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b200320043602e4032003200a3602e0030b200a20054105746a220b200329038805370000200b41186a200f290300370000200b41106a200e290300370000200b41086a200c290300370000200341e0036a41086a200541016a3602002003411b36028c0520034180b4c00036028805200341e0036a20034188056a106202402004450d00200a101f0b200341e0036a41186a20034190066a41186a2205290300370300200341e0036a41106a20034190066a41106a2204290300370300200341e0036a41086a20034190066a41086a220a29030037030020032003290390063703e00320034188056a41186a2016370300200341c0056a200341e8046a41186a290300370300200341b8056a200341e8046a41106a290300370300200341b0056a200341e8046a41086a290300370300200341d0056a200a290300370300200341d8056a2004290300370300200341e0056a2005290300370300200320113703980520032006370390052003201537038805200341003a00e805200320032903e8043703a80520032003290390063703c80502400240024002400240024002400240411510122205450d002005410d6a4100290095bb40370000200541086a4100290090bb4037000020054100290088bb4037000020054115413510142205450d01200520032903e0033700152005412d6a200341e0036a41186a290300370000200541256a200341e0036a41106a2903003700002005411d6a200341e0036a41086a290300370000200341353602c402200320053602c00220034188056a200341c0026a109a012005101f412210122205450d02200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d03200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042005101f02402004450d00412210122205450d05200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d06200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000411010122204450d0720042013420020021b37000020042012420020021b37000820044110412010142202450d082002201420117d370010200241186a201020167d2014201154ad7d370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a100020034180036a41086a2004290300370300200320032903b0063703800320034180036a41102002412010042002101f2005101f0b20034188056a41106a200836020020034194056a200936020020034188056a41096a20032f01a0023b000020034193056a200341a2026a2d00003a00002003419c056a20032903a003370200200341a9056a200341ad036a290000370000200341b1056a20032903c003370000200341c1056a200341c0036a41106a290300370000200341c9056a200341c0036a41186a290300370000200341083a00880520034188056a41086a41093a0000200341a4056a200341a0036a41086a290300370200200341b9056a200341c0036a41086a29030037000020034188056a10270c0b0b411541011015000b413541011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b2003200b3602940620032002360290060b200241206a2002200a41057410ff011a2002200329038805370000200241186a200f290300370000200241106a200e290300370000200241086a200c29030037000020034190066a41086a200a41016a3602002003411a36028c05200341e6b3c0003602880520034190066a20034188056a1062200b450d002002101f0b20034188056a41186a200929030037030020034188056a41106a200341e0036a41106a29030037030020034188056a41086a200341e0036a41086a290300370300200320032903e00337038805411f10122202450d02200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d03200220032903880537001f200241376a200341a0056a2903003700002002412f6a20034188056a41106a290300370000200241276a20034190056a290300370000411010122204450d04200420194200201a42015122091b221020157c221437000020042007420020091b20067c2014201054ad7c37000820044110412010142204450d0520042018420020091b220620117c2207370010200441186a2017420020091b20167c2007200654ad7c370000200341b0066a41086a22094200370300200342003703b0062002413f200341b0066a100020034180036a41086a2009290300370300200320032903b0063703800320034180036a41102004412010042004101f2002101f20034188056a41086a41083a000020034188056a41106a200836020020034194056a200536020020034191056a20032f01a0033b000020034193056a200341a2036a2d00003a00002003419c056a20032903e804370200200341a4056a200341e8046a41086a290300370200200341a9056a200341f5046a290000370000200341083a00880520034188056a10270b410021090b20012d00004104460d140c150b411f41011015000b413f41011015000b411041011015000b412041011015000b2009450d010b200a101f0b2001450d010b20022108200121050c0e0b20034191056a20032f01fc023b000020034188056a41106a200836020020034194056a20053602002003419c056a20032903e002370200200341b1056a20032903a002370000200341083a00880520034188056a41086a410a3a000020034193056a200341fe026a2d00003a0000200341a9056a200341ed026a290000370000200341c1056a200341a0026a41106a290300370000200341c9056a200341a0026a41186a290300370000200341a4056a200341e0026a41086a290300370200200341b9056a200341a0026a41086a290300370000200341e9056a200341c0026a41186a290300370000200341e1056a200341c0026a41106a290300370000200341d9056a200341c0026a41086a290300370000200341d1056a20032903c00237000020034188056a1027410021050c0d0b4114210820012d00004104460d0a0c0b0b41a5bec00021090c010b41f5bdc00021090b4130210820012d00004104460d070c080b20024105742109410021044108210e4100210541002108200d2102034020034190066a41186a200241186a220a29000037030020034190066a41106a200241106a220b29000037030020034190066a41086a200241086a220f2900003703002003200229000037039006200341e0036a41186a200a290000370300200341e0036a41106a200b290000370300200341e0036a41086a200f290000370300200320022900003703e00320034188056a200341e0036a109901024020082005470d00200541016a220a2005490d062005410174220b200a200a200b491b220aad4288017e2206422088a70d062006a7220b4100480d06024002402005450d00200e20054188016c200b1014220e0d010c090b200b1012220e450d080b200a21050b200241206a2102200e20046a20034188056a41880110fe011a20044188016a2104200841016a2108200941606a22090d000b200341f0046a20083602002003200e3602e804200320053602ec04200c450d010b200d101f0b200342003702e403200341a893c1003602e003200341e8046a200341e0036a4100109b0120032802e803210a20032802e00321020240024020032802e4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341a4056a20022f0106360200200341a0056a41003602002003419c056a20023602002003200a3602a805200341003602980520034200370390052003200836028c05200341003602880520034188056a109c012005450d00200e101f0b410021090b4124210820012d00004104460d020c030b1010000b200b41081015000b200141c8006a280200450d00200141c4006a280200101f0b200921050b2000200836020420002005360200200341d0066a24000bb20504027f017e017f037e230041206b22022400024002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1000200241086a2005290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012205417f460d022005410f4d0d02200241186a2903002106200229031021042003101f411810122203450d010c050b420021062003101f4118101222030d040b411841011015000b41de86c00041331023000b411441011015000b413441011015000b200341106a41002900d19540370000200341086a41002900c99540370000200341002900c19540370000024020034118413810142203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041a4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b2003101f2000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41de86c00041331023000b413841011015000be30301047f230041d0006b2202240002400240411210122203450d00200341106a41002f0091e5403b0000200341086a4100290089e54037000020034100290081e54037000020034112413210142203450d01200320012900003700122003412a6a200141186a290000370000200341226a200141106a2900003700002003411a6a200141086a290000370000200241306a41086a220142003703002002420037033020034132200241306a1000200241206a41086a200129030037030020022002290330370320024002400240200241206a411041a4a4c100410041001001417f460d00200241306a41186a4200370300200241306a41106a4200370300200241386a420037030020024200370330200241206a4110200241306a4120410010012201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b2003101f200241d0006a24000f0b41de86c00041331023000b411241011015000b413241011015000bd20301087f230041306b2201240041082102200141206a41086a220342003703002001420037032041d595c1004115200141206a1000200141086a200329030037030020012001290320370300410021040240024002402001411041a4a4c100410041001001417f460d002001421037021420012001360210200141206a200141106a105f20012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d02200820004120108002450d02200341dc006a22082000460d02200820004120108002450d022003419c016a22082000460d02200820004120108002450d02200341dc016a22082000460d0220034180026a21032008200041201080020d000c020b0b024020032006460d000340410121072003411c6a22032000460d02200320004120108002450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d002000280200101f0b200041c0006a2100200341406a22030d000b0b02402005450d002002101f0b200141306a240020070f0b41de86c00041331023000bb00b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510122206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081015000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001001220e200e417f461b220e4120200e412049220e1b20052802006a220f360200200e0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1001220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d2903002113200229035021142002200110282002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10122216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081015000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a221a360200200f0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1001220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101422160d010c090b201a10122216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101422060d010c080b200510122206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d002016101f0b200041003602000240200b450d00200641106a210503400240200541046a280200450d002005280200101f0b200541c0006a2105200a41406a220a0d000b0b0240200c450d002006101f0b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081015000b200541081015000b100f000b8c1105087f027e067f017e017f230041b0016b220224000240024002400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1000200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a411041a4a4c100410041001001417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100122032003417f461b22034104200341044922031b20022802286a220136022820030d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22094100200241106a411020024190016a41202001100122032003417f461b2203412020034120491b20092802006a22013602002003411f4d0d01200241f0006a41186a22032006290300370300200241f0006a41106a22092007290300370300200241f0006a41086a220620082903003703002002200229039001370370200241d0006a41186a2003290300370300200241d0006a41106a2009290300370300200241d0006a41086a200629030037030020022002290370370350410121030c020b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b410021030b20024190016a41186a2209200241d0006a41186a29030037030020024190016a41106a2206200241d0006a41106a29030037030020024190016a41086a2207200241d0006a41086a29030037030020022002290350370390012003450d03200241306a41186a2009290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903900137033020024200370398012002420037039001200241206a41086a22094100200241106a411020024190016a41102001100122032003417f461b2203411020034110491b20092802006a3602002003410f4d0d0320024198016a290300210a200229039001210b200241086a200241206a10282002280208450d03200228020c2203417f4c0d04024002402003450d0020031076220c450d09200241286a22012003410020022802202002280224200c20032001280200100122092009417f461b2209200920034b1b220920012802006a36020020092003460d010c040b4101210c2002280220200228022441014100200241286a28020010011a41002003470d030b2002200241206a10282002280200450d0220022802042201417f4c0d04024002402001450d0020011076220d450d0a200241286a220920092802002207200141002002280220220920022802242206200d20012007100122072007417f461b2207200720014b1b22086a220736020020082001460d010c030b4101210d200228022022092002280224220641014100200241286a280200220710011a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002009200620024190016a41202007100122082008417f461b2208412020084120491b20076a22073602002008411f4d0d01200241f0006a41186a2208200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2008290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002009200620024190016a41082007100122082008417f461b2208410820084108491b20076a2207360200200841074d0d012002290390012112200241003a009001200241286a20072009200620024190016a41012007100141016a41014b22096a3602002009450d0120022d009001220641064f0d0120024190016a41186a2207200241306a41186a29030037030020024190016a41106a2208200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22092d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2008290300370200200041cc006a200729030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200920132d00003a0000200220022f01303b0150200020063a0074200020022f01503b0075200041f7006a20092d00003a00000b2004101f200241b0016a24000f0b2001450d00200d101f0b2003450d00200c101f0b41de86c00041331023000b100f000b411341011015000b412641011015000b200341011015000b200141011015000bcb0201027f230041306b22022400024002400240411510122203450d002003410d6a41002900eec340370000200341086a41002900e9c340370000200341002900e1c34037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241206a41086a220142003703002002420037032020034135200241206a1000200241086a200129030037030020022002290320370300024002402002411041a4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411541011015000b413541011015000b41de86c00041331023000bc10301077f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004105742104200241106a41086a2802002100200228021021052002280214210603400240024002400240200620006b41204f0d00200041206a22072000490d0720064101742208200720072008491b22084100480d072006450d01200520062008101422050d020c080b200041206a21070c020b200810122205450d060b200821060b200520006a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020072100200341206a2103200441606a22040d000b200241186a200736020020022006360214200220053602100c010b200241186a280200210720022802142106200228021021050b2001280204210320012802002100200241106a41086a220442003703002002420037031020002003200241106a1000200241086a2004290300370300200220022903103703002002411020052007100402402006450d002005101f0b200241206a24000f0b1010000b200841011015000be70504027f017e017f047e230041206b22032400024002400240411810122204450d00200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021052004101f41142106411410122204450d010c050b420021072004101f411421064114101222040d040b200641011015000b41de86c00041331023000b411841011015000b413841011015000b200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad9540370000024020042006413410142204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101f20002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c106e2000200520017d200720027d2005200154ad7d106f200341206a24000f0b41de86c00041331023000b413441011015000be110020b7f037e230041d0026b22022400200241b0026a41086a22034200370300200242003703b00241ccf3c000411b200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a00241002104024002400240024002400240200241a0026a411041a4a4c100410041001001417f460d002002421037023c2002200241a0026a360238200241a8016a200241386a106820022802a8012205450d02200241b0016a280200210420022802ac0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041012220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d012005101f4100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031014220b0d010c020b20031012220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041015000b02402006450d002005101f0b200a2004470d050c040b4100210c41002004460d030c040b1010000b41de86c00041331023000b410441041015000b0240200c450d00200b101f0b200241d0026a24004195f8c0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241a8016a20001060200241d0006a200241f4016a290200370300200241386a41106a200241ec016a290200370300200241386a41086a200241e4016a290200370300200220022902dc013703384200210d200241b0026a41086a22034200370300200242003703b00241fff7c0004116200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a002200241a0026a411041a4a4c100410041001001417f460d02200242003703c802200242003703c002200241a0026a4110200241c0026a4110410010012203417f460d082003410f4d0d08200241c8026a290300210d20022903c002210e0c030b200241a8016a20001060200241386a41186a20024194026a290200370300200241386a41106a2002418c026a290200370300200241386a41086a20024184026a290200370300200220022902fc01370338411810122203450d0841002107200341106a41002900b1f340370000200341086a41002900a9f340370000200341002900a1f34037000020034118413810142203450d0920032002290338370018200341306a200241d0006a290300370000200341286a200241386a41106a290300370000200341206a200241386a41086a290300370000200241b0026a41086a22094200370300200242003703b00220034138200241b0026a1000200241c0026a41086a2009290300370300200220022903b0023703c002200241c0026a411041a4a4c100410041001001417f460d03200242103702b4022002200241c0026a3602b002200241186a200241b0026a10282002280218450d0c200228021c2208417f4c0d0a2008450d04200810762207450d0d200241b8026a2209200928020022092008410020022802b00220022802b402200720082009100122092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241a8016a20001060200241206a200241dc016a20022903a801200241b0016a29030010650240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0520022802d001101f0c050b420a210e0b2002200241386a200e200d1065200241386a20022903a801220f200e7d200241b0016a290300200d7d200f200e54ad7d10630240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0320022802d001101f0c030b0c010b4101210720022802b00220022802b40241014100200241b8026a28020010011a41002008470d060b200241fc016a21092003101f200241dc016a20022903a801200241a8016a41086a290300106341fc89c00041052007410120071b22042008410020071b2203100402402003450d002004101f0b200241386a41086a41053a0000200241c1006a2009290000370000200241386a412c6a2000360200200241c9006a200941086a290000370000200241d1006a200941106a290000370000200241d9006a200941186a290000370000200241073a0038200241386a10270240200241c8016a280200450d0020022802c401101f0b200241a8016a412c6a280200450d0020022802d001101f0b2002200a3602b0012002200c3602ac012002200b3602a8012002411b36023c200241ccf3c000360238200241a8016a200241386a10690240200c450d00200b101f0b200241a8016a20001060200220013a009c0202400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142203450d01200320003600132002411736023c20022003360238200241a8016a200241386a10672003101f0240200241c8016a280200450d0020022802c401101f0b0240200241d4016a280200450d0020022802d001101f0b200241b4016a2000360200200241b1016a20013a0000200241b0016a41023a0000200241073a00a801200241a8016a1027200241d0026a240041000f0b411341011015000b412641011015000b41de86c00041331023000b411841011015000b413841011015000b100f000b2008450d002007101f0b41de86c00041331023000b200841011015000bf10504027f017e017f067e230041306b2204240002400240411810122205450d00200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054138200441206a1000200441106a41086a2007290300370300200420042903203703100240024002400240200441106a411041a4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012207417f460d022007410f4d0d02200441286a2903002108200429032021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106f200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a20012903003703002004200429032037031002400240200441106a411041a4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012201417f460d032001410f4d0d03200441286a290300210c200429032021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37030020042006370308200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a200129030037030020042004290320370310200441106a41102004411010040b20002002200a7d370308200041106a2003200b7d2002200a54ad7d37030020002009200254200820035420051bad370300200441306a24000f0b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000bec0506027f017e017f027e017f027e230041206b2203240002400240024002400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021050c010b420021070b2004101f419c9bc00021040240024020052001542206200720025420072002511b0d00200010702204450d010b200341206a240020040f0b411810122204450d04200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341106a41086a220942003703002003420037031020044138200341106a1000200341086a200929030037030020032003290310370300024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012209417f460d052009410f4d0d05200341186a290300210a200329031021080c010b4200210a0b2004101f2000200820017c220b200a20027c200b200854ad7c106f2000200520017d200720027d2006ad7d106e200341206a240041000f0b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411841011015000b413841011015000bed0803037f027e057f230041206b2202240020024100360218200242013703102000280218210302400240024002400240024002400240410410122204450d0020024284808080c000370214200220043602102004200336000020044104412410142204450d01200242a4808080c004370214200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436021041000d05200041086a2903002105200029030021062004412441c80010142204450d02200420063700242004412c6a2005370000200241186a22034134360200200241c80036021420022004360210200028021c21072002200041246a28020022043602002002200241106a101302400240024020022802142208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802102008200910142208450d020c060b200228021021080c060b2009101222080d040b200941011015000b410441011015000b412441011015000b41c80041011015000b20022009360214200220083602100b200241186a2209200320046a360200200820036a2007200410fe011a2000280228210a2002200041306a28020022073602002002200241106a10130240024002400240024020022802142203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802102003200810142204450d020c030b200228021021040c030b2008101222040d010b200841011015000b2002200836021420022004360210200821030b200241106a41086a220b200920076a2208360200200420096a200a200710fe011a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710142204450d020c030b200321070c030b2007101222040d010b200741011015000b20022007360214200220043602100b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22092003490d0320074101742208200920092008491b22084100480d032007450d0120042007200810142204450d020c040b200841286a21090c040b2008101222040d020b200841011015000b1010000b20022008360214200220043602100b200241106a41086a22082009360200200420036a200537000020002d0074200241106a10582008280200210420022802142103200228021021002001280204210720012802002109200842003703002002420037031020092007200241106a1000200241086a2008290300370300200220022903103703002002411020002004100402402003450d002000101f0b200241206a24000bc40303027f017e097f230041106b2202240020022001102802400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041015000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100122052005417f461b22054104200541044922051b20072802006a36020020050d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101422060d010c060b200d10122206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d002006101f0b200241106a24000f0b1010000b200d41041015000b920301097f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004102742104200241186a22052802002100200228021421060340200328020021070240024002400240200620006b41044f0d00200041046a22082000490d0720064101742209200820082009491b220a4100480d072006450d0120022802102006200a101422090d020c080b200041046a2108200228021021090c020b200a10122209450d060b2002200a36021420022009360210200a21060b200341046a210320052008360200200920006a2007360000200821002004417c6a22040d000c020b0b200241186a280200210820022802142106200228021021090b2001280204210020012802002103200241106a41086a220442003703002002420037031020032000200241106a1000200241086a2004290300370300200220022903103703002002411020092008100402402006450d002009101f0b200241206a24000f0b1010000b200a41011015000ba80e03057f017e037f230041b0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910122204450d00200441186a41002d00d5f8403a0000200441106a41002900cdf840370000200441086a41002900c5f840370000200441002900bdf84037000020044119413210142204450d0120042001360019200341a0016a41086a22054200370300200342003703a0012004411d200341a0016a100020034190016a41086a2005290300370300200320032903a0013703900120034190016a4110100a21052004101f02400240024002402005450d0020034190016a2001108101200341206a41186a200341186a290300370300200341206a41106a200341106a290300370300200341206a41086a200341086a2903003703002003200329030037032020032802940122062003280298012204470d01200441016a22072004490d0620044101742205200720072005491b2206ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910142205450d030c0a0b412110122204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910122205450d07200541186a41002d00d5f8403a0000200541106a41002900cdf840370000200541086a41002900c5f840370000200541002900bdf84037000020054119413210142205450d0820052001360019200341003602282003420137032020044101200341206a103b200328022421062003280228210920032802202107200341a0016a41086a220a4200370300200342003703a0012005411d200341a0016a1000200341206a41086a200a290300370300200320032903a001370320200341206a411020072009100402402006450d002007101f0b2005101f2004101f0c0b0b200441016a210720032802900121050c090b2009101222050d070b200941011015000b411941011015000b413241011015000b1010000b412141011015000b411941011015000b413241011015000b200320063602940120032005360290010b20034190016a41086a20073602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910122204450d01200441186a41002d00d5f8403a0000200441106a41002900cdf840370000200441086a41002900c5f840370000200441002900bdf84037000020044119413210142204450d0220042001360019200341003602282003420137032020052007200341206a103b200328022421092003280228210a20032802202107200341a0016a41086a220b4200370300200342003703a0012004411d200341a0016a1000200341206a41086a200b290300370300200320032903a001370320200341206a41102007200a100402402009450d002007101f0b2004101f2006450d002005101f0b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210122204450d00200441206a41002f00c8f7403b0000200441186a41002900c0f740370000200441106a41002900b8f740370000200441086a41002900b0f740370000200441002900a8f7403700002004412241c40010142204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341286a290300370000200441c40041880110142204450d0220042001360042024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110122205450d09200541033a00000c030b410110122205450d09200541023a00000c020b410110122205450d09200541013a00000c010b410110122205450d09200541003a00000b200341a0016a41086a22074200370300200342003703a001200441c600200341a0016a100020034190016a41086a2007290300370300200320032903a0013703900120034190016a41102005410110042005101f2004101f200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a1027200341b0016a24000f0b412241011015000b41c40041011015000b41880141011015000b411941011015000b413241011015000b410141011015000b410141011015000b410141011015000b410141011015000bcd0a02057f037e230041306b22022400200241106a41086a220342003703002002420037031041cccfc0004112200241106a1000200241206a41086a20032903003703002002200229031037032002400240024002400240024002400240200241206a411041a4a4c100410041001001417f460d00200242103702042002200241206a360200200241106a2002104020022802102203450d02200228021421040240200320014105746a2205450d00200241186a280200220620014d0d0020002005460d02200520004120108002450d020b02402004450d002003101f0b200241306a240041c2d1c0000f0b200241306a240041c2d1c0000f0b20032006417f6a22064105746a220529000021072005290008210820052900102109200320014105746a220141186a200541186a29000037000020012009370010200120083700082001200737000020022006360228200220043602242002200336022020024112360214200241cccfc000360210200241206a200241106a106202402004450d002003101f0b411c10122201450d01200141186a4100280093d040360000200141106a410029008bd040370000200141086a4100290083d040370000200141002900fbcf403700002001411c413c10142201450d022001200029000037001c200141346a200041186a2900003700002001412c6a200041106a290000370000200141246a200041086a290000370000200241106a41086a22034200370300200242003703102001413c200241106a1000200241206a41086a200329030037030020022002290310370320200241206a411010052001101f411210122201450d03200141106a41002f00ecce403b0000200141086a41002900e4ce40370000200141002900dcce4037000020014112413210142201450d04200120002900003700122001412a6a200041186a290000370000200141226a200041106a2900003700002001411a6a200041086a290000370000200241106a41086a220342003703002002420037031020014132200241106a1000200241206a41086a2204200329030037030020022002290310370320200241206a411010052001101f200342003703002002420037031041dd81c000410d200241106a1000200420032903003703002002200229031037032042002107024002400240200241206a411041a4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d01200229031021070b200241106a41086a220142003703002002420037031041abd1c0004117200241106a1000200241206a41086a20012903003703002002200229031037032002400240200241206a411041a4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d0320022903102108410f2103410f10122201450d010c090b42e8072108410f2103410f101222010d080b200341011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b200141076a41002900d9c340370000200141002900d2c340370000024020012003412f10142201450d002001200029000037000f200141276a200041186a2900003700002001411f6a200041106a290000370000200141176a200041086a2900003700002002200820077c370300200241106a41086a22004200370300200242003703102001412f200241106a1000200241206a41086a200029030037030020022002290310370320200241206a41102002410810042001101f200241306a240041000f0b412f41011015000bb20703067f027e027f230041106b2203240020032001360208200341086a200210130240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c090b200228020021070c020b200110122207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c0a0b200228020021070c020b200110122207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101302402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c090b200228020021080c020b200710122208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c0a0b200228020021080c020b200710122208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200741011015000b200141011015000b200141011015000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610142205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010142205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101422050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101422080d0a0c110b2006101222050d130b200641011015000b200128020021050c050b200128020021080c070b2000101222050d0d0b200041011015000b200010122205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510122208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101422060d020c060b200128020021060c020b200910122206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011015000b41c0bcc2001024000b20022002360240200241a894c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4106360200200241106a41146a4103360200200241a4a4c1003602582002420137024c200241a8bcc2003602482002410636022c20024203370214200241e8c4c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41d8bcc200103a000b200041011015000b200541011015000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000b911107017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441142107411410122205450d010c030b42002106411421074114101222050d020b200741011015000b41de86c00041331023000b200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000002400240024002400240024002400240024002400240024002400240024020052007413410142205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0d411410122205450d04200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411410122205450d06200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d07200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f410f10122205450d08200541076a41002900d9c340370000200541002900d2c3403700002005410f412f10142205450d092005200029000037000f200541276a200041186a2900003700002005411f6a200041106a290000370000200541176a200041086a29000037000020034180016a41086a2207420037030020034200370380012005412f20034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411810122205450d0a200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0b20052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0f0c0d0b410121072005101f4100410171450d0c0c0e0b413441011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b411441011015000b413441011015000b410f41011015000b412f41011015000b411841011015000b413841011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000bcc0f07017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441182107411810122205450d010c030b42002106411821074118101222050d020b200741011015000b41de86c00041331023000b200541106a41002900d19540370000200541086a41002900c99540370000200541002900c19540370000024002400240024002400240024002400240024002400240024020052007413810142205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0b411810122205450d04200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0520052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411810122205450d06200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0720052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411410122205450d08200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d09200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041a4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0d0c0b0b410121072005101f4100410171450d0a0c0c0b413841011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b411441011015000b413441011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000baf0304027f017e017f017e230041206b2201240002400240410f10122202450d00200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d012002200029000037000f200241276a200041186a2900003700002002411f6a200041106a290000370000200241176a200041086a29000037000042002103200141106a41086a22004200370300200142003703102002412f200141106a1000200141086a2204200029030037030020012001290310370300420021050240024002402001411041a4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021050b2002101f200042003703002001420037031041dd81c000410d200141106a1000200420002903003703002001200129031037030002402001411041a4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d02200129031021030b200141206a240041b4c3c000410020052003561b0f0b41de86c00041331023000b41de86c00041331023000b410f41011015000b412f41011015000bb40604027f017e017f067e230041d0006b2204240002400240411410122205450d00200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441c0006a41086a220742003703002004420037034020054134200441c0006a1000200441206a41086a2007290300370300200420042903403703200240024002400240200441206a411041a4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d022007410f4d0d02200441c8006a2903002108200429034021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106e200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a20072903003703002004200429034037032002400240200441206a411041a4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d032007410f4d0d03200441c8006a290300210c200429034021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37033020042006370338200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a200729030037030020042004290340370320200441206a4110200441306a411010040b02400240200920025a200820035a20051b0d00200441086a20012002200a7d2003200b7d2002200a54ad7d1065200441186a290300210820042903102109200429030821030c010b420021030b2000200937030820002003370300200041106a2008370300200441d0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bda0201027f230041306b22022400024002400240411c10122203450d00200341186a41002800e7d140360000200341106a41002900dfd140370000200341086a41002900d7d140370000200341002900cfd1403700002003411c413c10142203450d012003200129000037001c200341346a200141186a2900003700002003412c6a200141106a290000370000200341246a200141086a290000370000200241206a41086a22014200370300200242003703202003413c200241206a1000200241086a200129030037030020022002290320370300024002402002411041a4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411c41011015000b413c41011015000b41de86c00041331023000bc90201027f024020002802004102470d0002400240024002400240024002400240200028020422012d0000220241094b0d0020020e0a07010707070203040506070b200141046a2802004102490d062001410c6a280200450d06200141086a280200101f0c060b200141086a10440c050b200141086a2d0000410c490d04200141106a280200450d042001410c6a280200101f0c040b200141046a10730c030b200141086a2d00004102470d020240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d02200141246a280200101f0c020b200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b200141086a2d00004102470d00200141106a280200450d002001410c6a280200101f0b200041046a280200101f0b0bd60403027f017e0e7f230041d0006b22022400200241086a2001101702400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110fe011a200a200520116b3602002001200f20116a36020020100d02200d41016a2105200241106a41186a22112007290300370300200241106a41106a220f2008290300370300200241106a41086a22102009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101422060d010c060b201210122206450d050b2006200c6a220d2002290310370000200d41186a2011290300370000200d41106a200f290300370000200d41086a2010290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d002006101f0b200241d0006a24000f0b1010000b201241011015000bce0603067f037e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510fe011a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d002022034103712204450d00024020044101460d0020044102470d02200241003a001e200241003b011c2002411c6a200520064103200641034922071b220410fe011a200141046a200620046b3602002001200520046a36020020070d0320022f011c20022d001e41107472410874200372410276ad21080c080b200241003a0020200241206a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21080c070b2003410276ad21080c060b0240024020034102762204450d00024020044104460d002004410c470d024200210a2002420037032820024200370320200241206a200520064110200641104922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d04200241286a2903002109200229032021084201210a0c090b4200210a20024200370320200241206a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d03200229032021080c070b20024100360220200241206a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d01200235022021080c060b200441046a220b41104b0d00200141046a210c200241106a210d4200210842002109410021030340200241003a0020200241206a20052006410047220410fe011a20062004490d04200c200620046b22073602002001200520046a22053602002006450d01200241086a20023100204200200341037441f80071108302200d2903002009842109200229030820088421084201210a20072106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004101a000b20042006101a000b20042006101a000b420021094201210a0b200020083703082000200a370300200041106a2009370300200241306a24000b0700200010f3010bb10101037f024002400240024002400240200041046a280200200041086a2802002201470d00200141016a22022001490d0320014101742203200220022003491b22034100480d032001450d0120002802002001200310142202450d020c040b200028020021020c040b2003101222020d020b200341011015000b1010000b20002002360200200041046a2003360200200041086a28020021010b200041086a200141016a360200200220016a41023a00000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410142203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410142203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101422030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101422030d0a0c0d0b2004101222030d0e0b200441011015000b200128020021030c050b200128020021030c070b2004101222030d0c0b200441011015000b200410122203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410122203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101422030d020c060b200128020021030c020b200010122203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011015000b200441011015000b200041011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010142203450d020c040b200128020021030c040b2000101222030d020b200041011015000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b900a02067f017e230041e0006b2202240002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0e0c0d0b200241cb006a2001410c6a280000360000200041013a00002002200141046a29000037004320002002290040370001200041086a200241c7006a2900003700002003450d020b20034101460d0c20030d09200141086a280200450d0c200141046a280200101f200241e0006a24000f0b20034103470d0920022001410c6a280200220336021c2002200141046a2802002204360218200241003a0040200241c0006a20042003410047220510fe011a20032005490d022002200320056b220636021c2002200420056a22053602182003450d09024020022d004022034101460d0020030d0a200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b220436021c2002200520036a220336021802402006450d0020022d0040450d030b410021060c060b200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b36021c2002200520036a3602182006450d0920022d00400d09200241c0006a200241186a107420022802402203450d0920022902442108200241146a41026a200241206a41026a2d00003a0000200241086a200241c0006a41086a290200370300200241106a200241c0006a41106a280200360200200220022f00203b011420022002290240370300410121060c070b41000d090c0a0b41002106200241c0006a20044120200441204922071b22056a41004100412020056b2005411f4b1b10fd011a200241c0006a2003200510fe011a2002200420056b36021c2002200320056a36021820070d03200241386a41026a200241c0006a41026a2d00003a0000200241286a200241d7006a290000370300200241306a200241c0006a411f6a2d00003a0000200220022f00403b01382002200229004f3703202002280043210320022900472108410121060c040b20052003101a000b20032006101a000b20032006101a000b0b2002413c6a41026a2205200241386a41026a2d00003a0000200241c0006a41086a2204200241206a41086a290300370300200241c0006a41106a2207200241206a41106a2d00003a0000200220022f01383b013c200220022903203703402006450d02200241146a41026a20052d00003a0000200241086a2004290300370300200241106a20072d00003a0000200220022f013c3b011420022002290340370300200241136a200241c0006a41026a2d00003a0000200220022f00403b0011410021060b200241206a41026a2205200241146a41026a2d00003a0000200241c0006a41086a2204200241086a290300370300200241c0006a41106a2207200241106a280200360200200220022f01143b012020022002290300370340200020063a0000200041086a2008370000200041046a2003360000200020022f01203b0001200041036a20052d00003a0000200041106a2002290340370000200041186a2004290300370000200041206a20072802003600000b200141086a280200450d02200141046a280200101f0c020b41a093c000411e1023000b200141086a280200450d00200141046a280200101f200241e0006a24000f0b200241e0006a24000bf20202027f027e230041206b22032400024020001070450d00200341206a240041000f0b02400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1000200341086a2000290300370300200320032903103703000240024002402003411041a4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b2004101f200341206a2400200520015a200620025a20062002511b0f0b41de86c00041331023000b411441011015000b413441011015000bbd0504027f017e017f037e230041c0006b2203240020032000105c024002400240024002402003290300200341086a29030084500d00411410122204450d03200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341306a41086a220642003703002003420037033020044134200341306a1000200341206a41086a20062903003703002003200329033037032002400240200341206a411041a4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012206417f460d032006410f4d0d03200341386a2903002107200329033021080c010b42002108420021070b2004101f2000200820017c2209200720027c2009200854ad7c106e200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a20002903003703002003200329033037032002400240200341206a411041a4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012200417f460d042000410f4d0d04200341386a2903002108200329033021050c010b420021080b200520017c22012005542200200820027c2000ad7c220520085420052008511b0d002003200137031020032005370318200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a200029030037030020032003290330370320200341206a4110200341106a411010040b200341c0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bc30609047f017e017f017e037f017e047f017e017f23004180066b22022400200241c8026a2001107d200241d8026a280200210320022802d402210420022802d002210520022903c802210620024190056a200241dc026a41e40010fe011a024002400240024002400240024002400240024002402005450d00200241086a20024190056a41e40010fe011a2002200110172002280200450d0820022802042207ad42e0017e2208422088a70d032008a72209417f4c0d032009450d0120091012220a450d042007450d020c050b2000410036020820024180066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081015000b200241c8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241c8026a2001101620024190056a200241c8026a41f00010fe011a200241c8026a41f0006a2903002108200241a8046a200b41e80010fe011a20084203510d02200e41016a2110200241d8016a20024190056a41f00010fe011a200241f0006a200241a8046a41e80010fe011a0240200e200f470d00200d20102010200d491b220fad42e0017e2211422088a70d052011a722124100480d050240200e450d00200a200920121014220a0d010c070b20121012220a450d060b200a20096a200241d8016a41f00010fe01220e41f0006a2008370300200e41f8006a200241f0006a41e80010fe011a200c4280808080107c210c200d41026a210d200941e0016a21092010210e20102007490d000b200a450d020b200241c8026a200241086a41e40010fe011a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241c8026a41e40010fe011a200041fc006a200c200fad84370200200041f8006a200a36020020024180066a24000f0b0240200e450d00200a4188016a211003402010107e201041e0016a2110200941a07e6a22090d000b0b200f450d00200a101f0b2000410036020802402003450d00200341246c2110200521090340024020092d0000450d00200941086a280200450d00200941046a280200101f0b200941246a21092010415c6a22100d000b0b02402004450d002005101f0b20024180066a24000f0b1010000b201241081015000b9a2107077f017e037f017e0a7f027e0b7f23004180036b22022400200241a8026a41186a22034200370300200241a8026a41106a22044200370300200241a8026a41086a22054200370300200242003703a802200241a8026a2001280200220620012802042207412020074120491b220810fe011a2001200720086b3602042001200620086a360200024002402007411f4d0d00200241e8016a41186a22072003290300370300200241e8016a41106a22082004290300370300200241e8016a41086a22062005290300370300200220022903a8023703e801200241a8016a41186a2007290300370300200241a8016a41106a2008290300370300200241a8016a41086a2006290300370300200220022903e8013703a801410121070c010b410021070b200241a8026a41186a2208200241a8016a41186a290300370300200241a8026a41106a2206200241a8016a41106a290300370300200241a8026a41086a2203200241a8016a41086a290300370300200220022903a8013703a80202400240024002400240024002400240024002400240024002400240024002400240024002402007450d00200241206a41186a2008290300370300200241206a41106a2006290300370300200241206a41086a2003290300370300200220022903a802370320200241106a200110192002290310a7450d0120022903182109200241a8026a41186a22054200370300200241a8026a41106a220a4200370300200241a8026a41086a220b4200370300200242003703a802200241a8026a20012802002204200141046a22032802002207412020074120491b220610fe011a2003200720066b22083602002001200420066a22063602002007411f4d0d02200241e8016a41186a22072005290300370300200241e8016a41106a2204200a290300370300200241e8016a41086a2205200b290300370300200220022903a8023703e801200241c0006a41186a2007290300370300200241c0006a41106a2004290300370300200241c0006a41086a2005290300370300200220022903e801370340200241a8026a2008412020084120491b22076a41004100412020076b2007411f4b1b10fd011a200241a8026a2006200710fe011a2003200820076b3602002001200620076a3602002008411f4d0d03200241e8016a41186a2207200241a8026a41186a290300370300200241e8016a41106a2208200241a8026a41106a290300370300200241e8016a41086a2206200241a8026a41086a290300370300200220022903a8023703e801200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2006290300370300200220022903e801370360200241086a200110172002280208450d0c200228020c220cad42247e220d422088a70d0f200da72207417f4c0d0f2007450d0420071012220e450d06200c450d050c070b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b4104210e200c0d020b410021164200210d0c020b200741041015000b200241a8026a41106a2107200241a8026a410172210f200241e8016a41116a2110200241b7026a211120024180016a4101722103200141046a210b200241fc026a41026a2112200241f0026a2113200241a8026a41076a21144200210d41002115410021084100210a200c21160340200b2802002106200241003a00a802200241a8026a200128020022172006410047220410fe011a20062004490d06200b200620046b22053602002001201720046a22043602002006450d0320022d00a802220641034b0d030240024002400240024002400240024020060e0400030102000b2002200110172002280200450d0a20022802042206417f4c0d0f2006450d03200610762205450d1120052001280200200b2802002204200620042006491b220410fe011a200b28020022172004490d12200b201720046b3602002001200128020020046a36020020042006460d040c090b200241a8026a2005412020054120491b22066a41004100412020066b2006411f4b1b10fd011a200241a8026a2004200610fe011a200b200520066b3602002001200420066a3602002005411f4d0d09200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a2d00003a0000200220022f00a8023b01a002200220112900003703e8012002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021182010411f6a200241a8026a411f6a290000370000201041186a200241a8026a41186a290000370000201041106a2007290000370000201041086a200241a8026a41086a290000370000201020022900a802370000410121170c040b200242003703a802200241a8026a20042005410820054108491b220610fe011a200b200520066b22173602002001200420066a2204360200200541074d0d0820022903a8022119200241a8026a201741c000201741c000491b22066a4100410041c00020066b2006413f4b1b10fd011a200241a8026a2004200610fe011a200b201720066b3602002001200420066a3602002017413f4d0d08200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a290000370300200241e8016a41186a201141186a290000370300200241e8016a41206a201141206a290000370300200241e8016a41286a201141286a290000370300200241e8016a41306a201141306a2d00003a0000200220022f00a8023b01a002200220112900003703e801410221172002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021180c040b200241a8026a2001107420022802a8022205450d0720022902ac022118200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220122d00003a00a202200220022f00fc023b01a002200220022903a8023703e801410021170c020b4101210541002006470d050b200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220022f00fc023b01a002200220022903a8023703e801200220122d00003a00a2022006ad22194220862019842118410321170b0b201220022d00a2023a0000200241a8026a41086a2206200241e8016a41086a221a2903003703002007200241e8016a41106a221b290300370300200241a8026a41186a2204200241e8016a41186a221c290300370300200241a8026a41206a221d200241e8016a41206a290300370300200241a8026a41286a221e200241e8016a41286a290300370300200241a8026a41306a221f200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241e4016a41026a222020122d00003a0000200241a8016a41086a22212006290300370300200241a8016a41106a22222007290300370300200241a8016a41186a22232004290300370300200241a8016a41206a2224201d290300370300200241a8016a41286a221d201e290300370300200241a8016a41306a221e201f290300370300200220022f01fc023b01e401200220022903a8023703a80120062018370300200f20022f01e4013b0000200f41026a20202d00003a0000200720022903a801370000200741086a2021290300370000200741106a2022290300370000200741186a2023290300370000200741206a2024290300370000200741286a201d290300370000200741306a201e290300370000200220173a00a802200220053602ac022013201937030020024180016a200241a8026a107920022d0080012117200241a8026a411f6a221d2003411f6a2800003600002004200341186a2900003703002007200341106a2900003703002006200341086a290000370300200220032900003703a80220174102460d04200a41016a2105200241e8016a411f6a221e201d280000360000201c2004290300370300201b2007290300370300201a2006290300370300200220022903a8023703e8010240200a2016470d002015200520052015491b2216ad42247e2219422088a70d082019a722064100480d080240200a450d00200e200820061014220e0d010c0b0b20061012220e450d0a0b200e20086a220620173a0000200641206a201e280000360000200641196a201c290300370000200641116a201b290300370000200641096a201a290300370000200641016a20022903e801370000200d4280808080107c210d201541026a2115200841246a21082005210a2005200c490d000b0b200e450d03200241a8026a41186a2201200241206a41186a290300370300200241a8026a41106a2207200241206a41106a290300370300200241a8026a41086a2208200241206a41086a290300370300200241e8016a41086a2206200241c0006a41086a290300370300200241e8016a41106a2203200241c0006a41106a290300370300200241e8016a41186a2204200241c0006a41186a290300370300200241a8016a41086a2205200241e0006a41086a290300370300200241a8016a41106a220a200241e0006a41106a290300370300200241a8016a41186a220b200241e0006a41186a290300370300200220022903203703a802200220022903403703e801200220022903603703a8012000200d2016ad8437020c2000200e36020820002009370300200041146a20022903a8023702002000411c6a2008290300370200200041246a20072903003702002000412c6a2001290300370200200041346a20022903e8013702002000413c6a2006290300370200200041c4006a2003290300370200200041cc006a2004290300370200200041ec006a200b290300370200200041e4006a200a290300370200200041dc006a2005290300370200200041d4006a20022903a80137020020024180036a24000f0b2006450d002005101f0b200241fc026a41026a20022d00a2023a0000200241a8026a41086a2201200241e8016a41086a290300370300200241a8026a41106a2207200241e8016a41106a290300370300200241a8026a41186a2206200241e8016a41186a290300370300200241a8026a41206a200241e8016a41206a290300370300200241a8026a41286a200241e8016a41286a290300370300200241a8026a41306a200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241023a008001200241a8026a411f6a2003411f6a2800003600002006200341186a2900003703002007200341106a2900003703002001200341086a290000370300200220032900003703a8020b0240200a450d00200e21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012008415c6a22080d000b0b2016450d00200e101f0b2000410036020820024180036a24000f0b20042006101a000b1010000b100f000b200641041015000b200641011015000b20042017101a000b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a2200280200107e2000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0b9b2f07047f017e037f017e087f017e0f7f230041a0026b22012400200141b0016a41086a22024200370300200142003703b00141be93c0004113200141b0016a1000200141386a41086a2002290300370300200120012903b001370338024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141386a411041a4a4c100410041001001417f460d00200141003a00b001200141386a4110200141b0016a41014100100141016a41014d0d0220012d00b0012102200141b0016a41086a22034200370300200142003703b00141be93c0004113200141b0016a1000200141086a41086a2003290300370300200120012903b001370308200141086a411010052002450d00200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141386a41086a200229030037030020012001290318370338200141386a411041a4a4c100410041001001417f460d0c2001421037021c2001200141386a360218200141b0016a200141186a104020012802b0012204450d0320012902b4012105200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41101005410610122202450d04200241046a41002f00a388403b00002002410028009f884036000020024106410c10142202450d05200241086a41002d00a788403a0000200241002f00a588403b0006024002402002410941a4a4c100410041001001417f460d00200141003602384101210620024109200141386a41044100100141016a41044d0d03200128023821072002101f20074521082007450d012007ad4205862209422088a70d0f2009a722024100480d0f200210122206450d0841002103200621020340200141386a2003103e200241186a200141386a41186a290000370000200241106a200141386a41106a290000370000200241086a200141386a41086a29000037000020022001290038370000200241206a21022007200341016a2203470d000c020b0b2002101f4101210841002107410121060b024020072005422088a7220a470d000240200a450d0020042006460d004100210b200621022004210303402002200341201080020d02200241206a2102200341206a2103200b41016a220b200a490d000b0b20080d0b2006101f2005a70d0c0c0d0b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141b0016a41086a22032002290300370300200120012903083703b0014100210c02400240200141b0016a411041a4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a10312001280238220d450d09200129023c2109200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a200141b0016a41086a290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b200141386a21022009422088a7220e2009a7220c460d010c0b0b200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a2003290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b4104210d200141386a21020b200c41016a2203200c490d0d200c4101742207200320032007491b2207ad42247e2209422088a70d0d2009a722034100480d0d02400240200c450d00200d200c41246c20031014220d450d010c0a0b20031012220d0d090b200341041015000b41e8d7c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200241011015000b41de86c00041331023000b200c210e2007210c0b200d200e41246c22076a22032002290200370200200341206a200241206a280200360200200341186a200241186a290200370200200341106a200241106a290200370200200341086a200241086a29020037020020014100360210200142013703082001200e41016a220f360238200141386a200141086a101302400240200f450d00200741246a2108200d210203400240024020022d00004101470d002002410c6a2802002103200241046a28020021074100210b0c010b4101210b200241016a21070b200141386a41086a20033602002001200736023c2001200b360238200141186a200141386a10112001280218210a0240024002400240200128020c220b200141086a41086a221028020022036b200141186a41086a28020022074f0d00200320076a22062003490d0a200b4101742211200620062011491b22114100480d0a200b450d012001280208200b2011101422060d020c1a0b200128020821060c020b201110122206450d180b2001201136020c200120063602082011210b0b2010200320076a2211360200200620036a200a200710fe011a0240200128021c450d00200a101f0b200241246a21022008415c6a22080d000c020b0b200141086a41086a2802002111200128020c210b200128020821060b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141186a41086a200229030037030020012001290308370318200141186a41102006201110040240200b450d002006101f0b0240200f450d00200e41246c41246a2103200d21020340024020022d0000450d00200241086a280200450d00200241046a280200101f0b200241246a21022003415c6a22030d000b0b200c450d00200d101f0b2005a7450d010b2004101f0b2000108001200141186a41086a2202420037030020014200370318418080c0004115200141186a1000200141386a41086a2002290300370300200120012903183703380240200141386a411041a4a4c100410041001001417f460d00200141003602b001200141386a4110200141b0016a41044100100141016a41044d0d1020012802b001220a450d0041002107034020072103411a10122202450d14200241186a41002f00d8fe403b0000200241106a41002900d0fe40370000200241086a41002900c8fe40370000200241002900c0fe403700002002411a413410142202450d132002200336001a200141b0016a41086a22074200370300200142003703b0012002411e200141b0016a1000200141086a41086a2007290300370300200120012903b00137030802400240200141086a411041a4a4c100410041001001417f460d002001420037034020014200370338200141086a4110200141386a411041001001220b417f460d17200b410f4d0d17200141386a41086a29030021052001290338210920074200370300200142003703b0012002411e200141b0016a1000200141186a41086a2007290300370300200120012903b001370318200141186a41101005420121120c010b420021120b200341016a21072002101f02402009200584500d002012a7450d00200141386a41106a2005370300200141386a41086a2009370300200141386a41186a2003360200200141053a0038200141386a10270b200a2007470d000b0b4108210742002105200141086a41086a220242003703002001420037030841d595c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0e200129023c21050b02402005422088a72213450d0020134106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841d6f8c0004118200141086a1000200141186a41086a20022903003703002001200129030837031802400240200141186a411041a4a4c100410041001001417f460d0020014100360238200141186a4110200141386a41044100100141016a41044d0d102001280238210a0c010b413c210a0b4108210742002105200141086a41086a220242003703002001420037030841d595c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0d200129023c21050b02402005422088a7220b450d00200b4106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841ccf3c000411b200141086a1000200141186a41086a20022903003703002001200129030837031841002102200a200b6c220341e4006e2114024002400240024002400240200141186a411041a4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a106820012802382215450d11200128023c2116200141c0006a28020022020d010c020b41042115410021164100450d010b201520024102746a2117200141dd016a2118200141286a41086a2119200341e3004b211a200141386a41206a211b200141386a412c6a211c200141386a41286a211d200141386a411c6a211e200141d4016a211f200141c8016a2120201521110340200141286a201128020022101081012001280228210f4100210a410021064100210b4100210802402019280200220d450d00200d41216c2107200f41206a2102410021084100210b410021064100210a03400240024020022d000022034101460d00024020034102460d0020034103470d02200a41016a210a200241216a21022007415f6a22070d030c040b200641016a2106200241216a21022007415f6a22070d020c030b200b41016a210b200241216a21022007415f6a22070d010c020b200841016a2108200241216a21022007415f6a22070d000b0b200141386a20101060200141386a41106a290300210942002105200141086a41086a220242003703002001420037030841dd81c000410d200141086a1000200141186a41086a220320022903003703002001200129030837031802400240024002400240024002400240024002400240200141186a411041a4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0120012903b00121050b200242003703002001420037030841a4f6c0004116200141086a100020032002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0220012903b00121122013450d050c060b2002420037030020014200370308418295c0004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041a4a4c100410041001001417f460d0020014200370318200141b0016a4110200141186a41084100100141016a41084d0d0320012903182212500d044280de34201280211220130d060c050b4280de34420580211220130d050c040b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41a4a9c2001024000b201a200b20144f7121070c010b4105210c200a2013460d02201a200b20144f712107200d2013470d004104210c20070d010c020b2005201220097c540d024102210c2007450d010b4103210c0b2010200c106422070d0342002105200242003703002001420037030841dd81c000410d200141086a100020032002290300370300200120012903083703180240200141186a411041a4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0620012903b00121050b411610122203450d072003410e6a41002900fcf840370000200341086a41002900f6f840370000200341002900eef84037000020034116412c1014220d450d08200d2010360016200141b0016a41086a22034100360200200142013703b001410410122207450d0920014284808080c0003702b401200120073602b0012007201036000020074104410810142207450d0a2001428880808080013702b40120072008360004200120073602b00120074108411010142207450d0b20014290808080c0013702b4012007200b3600082007200636000c20034110360200200120073602b00120074110412010142207450d0c2007200a360010200142a0808080c0023702b401200120073602b001200c200141b0016a1058024002400240024020012802b40122042003280200220e6b41084f0d00200e41086a2207200e490d0a20044101742221200720072021491b22214100480d0a2004450d0120012802b00120042021101422070d020c120b20012802b00121070c020b202110122207450d100b200120213602b401200120073602b001202121040b2007200e6a20053700002002420037030020014200370308200d411a200141086a100020032002290300370300200120012903083703b001200141b0016a41102007200e41086a100402402004450d002007101f0b200d101f200141b0016a412c6a200c3a0000200141b0016a41286a200a360200201f2006360200200141b0016a41206a200b360200200141b0016a411c6a200836020020202010360200200141b0016a41106a2005370300200341043a0000201820012f00183b0000201841026a200141186a41026a2d00003a0000200141073a00b001200141b0016a10270b0240201b280200450d00201e280200101f0b0240201c280200450d00201d280200101f0b201141046a21110240200128022c450d00200f101f0b20112017470d000b0b2016450d012015101f0c010b0240200141d8006a280200450d00200141d4006a280200101f0b0240200141e4006a280200450d00200141e0006a280200101f0b0240200128022c450d00200f101f0b02402016450d002015101f0b2007412810080b2000108201200141086a41086a220242003703002001420037030841ea95c1004112200141086a1000200141186a41086a200229030037030020012001290308370318024002400240200141186a411041a4a4c100410041001001417f460d0020014200370338200141186a4110200141386a41084100100141016a41084d0d0b20012903382000510d010c020b42012000520d010b200141386a41106a2000370300200141386a41086a4200370300200141093a0038200141386a1027200141086a41086a220242003703002001420037030841f4b0c0004119200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041a4a4c100410041001001417f460d00200141003a0038200141b0016a4110200141386a41014100100141016a41014d0d0c20012d0038450d010b200141086a41086a220242003703002001420037030841d595c1004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b00102400240200141b0016a411041a4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a105f20012802382202450d0e2001200129023c37023c200120023602380c010b20014100360240200142083703380b2001200141386a1083010b200141a0026a24000f0b41de86c00041331023000b1010000b411641011015000b412c41011015000b410441011015000b410841011015000b411041011015000b412041011015000b41de86c00041331023000b202141011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b201141011015000b413441011015000b411a41011015000b41de86c00041331023000bc3520d037f027e017f017e017f037e0d7f027e037f027e017f027e127f230041c0036b2201240020014190026a41086a22024200370300200142003703900241bf83c100411820014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240024002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b2002420037030020014200370390024199fec000411520014190026a10002003200229030037030020012001290390023703b00202400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00222054200520d0141a4afc2001024000b42e80721050b20014190026a41086a22024200370300200142003703900241ecfdc000411920014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200020047d20058221050240200141b0026a411041a4a4c100410041001001417f460d00200141003a00d002200141b0026a4110200141d0026a41014100100141016a41014d0d0320012d00d002210220014190026a41086a22034200370300200142003703900241ecfdc000411920014190026a1000200141b0026a41086a200329030037030020012001290390023703b002200141b0026a41101005200241004721060c040b20054200520d04410121060c030b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b4200210720014190026a41086a22024200370300200142003703900241f594c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221000b20024200370300200142003703900241d783c100411420014190026a10002003200229030037030020012001290390023703b0020240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0220012903d00221070b20014190026a41086a2202420037030020014200370390024185fec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00202400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0420012903d00242017c21040c010b420121040b200141d0026a41086a2004370300200141033a00d002200141d0026a1027200120043703d0022002420037030020014200370390024185fec000411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200120003703d00220024200370300200142003703900241d783c100411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200141e0016a41eb83c1004119103002400240024020012903e001a74101470d00200120012903e8013703d00220014190026a41086a2202420037030020014200370390024199fec000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040c010b2005500d010b20014190026a41086a22024200370300200142003703900241dd81c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240200141b0026a411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0520012903d00221040b200120043703d00220024200370300200142003703900241bf83c100411820014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040b0240024002402006450d0020014190026a41086a220242003703002001420037039002418295c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411041a4a4c100410041001001417f460d01200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0720012903d00221040c020b200141b0026a21080c090b420521040b20014190026a41086a2202420037030020014200370390024199fec000411520014190026a1000200141d0026a41086a200229030037030020012001290390023703d00202400240200141d0026a411041a4a4c100410041001001417f460d00200142003703b002200141d0026a4110200141b0026a41084100100141016a41084d0d074200210920012903b00220047e22044200510d010c0a0b4200210942e80720047e22044200520d090b20014190026a41086a220220093703002001200937039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240200141b0026a411041a4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d072002410f4d0d07200141d8026a290300210a20012903d00221090c0a0b4200210a0c090b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410121020c070b200020077d2200200420042000541b22002009510d0220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0022004421086200080210402400240200141b0026a411041a4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d032002410f4d0d03200141d8026a290300210020012903d00221050c010b42002105420021000b200141d0016a200520002004420010820220012903d001421088200141d0016a41086a29030022044230868421092004421088210a0b4200210b20014190026a41086a22024200370300200142003703900241aefec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240200141b0026a411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d002220c450d0420012902d402210b0c010b4101210c0b4105210d200b422088a74105742202450d03200c20026a210e4120210f411c211041182111410021124110211341082114413c211541342116412c211741242118420121194200211a4160211b200c211c4100211d0c040b41de86c00041331023000b419499c2001024000b41de86c00041331023000b410021020c010b410221020b0240024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024020020e03000102020b200141e8026a200a370300200141e0026a2009370300200141d8026a41003a0000200141043a00d002200141d0026a1027200141d0026a41b7e0c0004112103c200141b0026a2108200ba7450d0c200c101f410121020c100b20014190026a41086a2202420037030020014200370390024185fec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210402400240024002400240024002400240024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b2002420037030020014200370390024196d1c000411520014190026a10002003200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d0020014190026a41086a2202420037030020014200370390024196d1c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411010050c010b20014190026a41086a22024200370300200142003703900241c9e0c000411b20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0620012903d00221000b20024200370300200142003703900241e4e0c000411620014190026a10002003200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00222054200520d0141ac99c2001024000b42e80721050b200420007d2005824200520d210b20014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00242017c21040c010b420121040b200120043703d00220014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a41081004200242003703002001420037039002418ce1c000411a20014190026a10002003200229030037030020012001290390023703b00202402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d03200120012903d00222043703f00120014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d06200420012903d002520d010c020b200442e807510d010b200120043703d00220014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a410810042002420037030020014200370390024185fec000411420014190026a10002003200229030037030020012001290390023703b0024200210402402008411041a4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00221040b200120043703d00220024200370300200142003703900241c9e0c000411b20014190026a10002003200229030037030020012001290390023703b00220084110200141d0026a410810040b20014190026a41086a22024200370300200142003703900241cccfc000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240024002402008411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022223450d0b20012802d40221244105210341002125200141d8026a2802004105742202450d020c010b4101212341002124410521034100212541004105742202450d010b20022003752226ad42307e2204422088a70d1c2004a722034100480d1c200310122227450d0a202320026a22282023470d010c0c0b4108212741002126202320026a22282023460d0b0b41002125411821294110212a4108212b4120212c4128212d4101212e4130212f410521304160213120272132202321334101211d0c160b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200341081015000b02400240201d0e020001010b201c450d0a201010122202450d02200220116a2012280093d040360000200220136a201229008bd040370000200220146a2012290083d040370000200220122900fbcf4037000020022010201510142202450d032002201c29000037001c200220166a201c20116a290000370000200220176a201c20136a290000370000200220186a201c20146a290000370000200141d0026a20022015103d200141d0026a20146a22032903002100200141d0026a20136a290300210520012903d00221072002101f420021040240024002400240200920004200200720195122021b2200200920002009542005420020021b2200200a542000200a511b22021b221e7d2205200a2000200a20021b221f7d2009201e54ad7d220784500d00200141d0026a201c10722003280200210220012802d0022120200141c0016a201c105c200141c0016a20146a290300210420012903c00121002002450d012002200d7422032106202021020340200141b0016a2002105c200141b0016a20146a29030020047c20012903b001220420007c2200200454ad7c21042002200f6a21022006201b6a22060d000b2004201a20002019562004201a522004501b22021b21042000201920021b2100202021020340200141a0016a2002105c20014190016a20012903a001200141a0016a20146a2903002005200710820220014180016a20012903900120014190016a20146a29030020002004108102200220012903800120014180016a20146a290300107b2002200f6a21022003201b6a22030d000b200141f0006a201c105c2000200484201a510d09200141f0006a20146a2903002121200129037021220c020b420021000c020b200141e0006a201c105c2004201a20002019562004201a522004501b22021b21042000201920021b2100200141e0006a20146a2903002121200129036021220b200141d0006a2022202120052007108202200141c0006a2001290350200141d0006a20146a29030020002004108102200141c0006a20146a29030021002001290340210420012802d402450d002020101f0b201c2004201e7c22052000201f7c2005200454ad7c107b201c200f6a2202211c2002200e470d08410021020c0f0b200141d0026a20296a221d203320296a290000370300200141d0026a202a6a22202033202a6a290000370300200141d0026a202b6a22342033202b6a290000370300200120332900003703d00220014190026a200141d0026a106120014190026a202b6a28020021022001280290022106200141306a200141d0026a105c200141306a202b6a29030021042001290330210002402002450d0020022030742103200621020340200141206a2002105c200141206a202b6a29030020047c2001290320220420007c2200200454ad7c21042002202c6a2102200320316a22030d000b0b2033202c6a21330240200128029402450d002006101f0b200141b0026a20296a2202201d290300370300200141b0026a202a6a22032020290300370300200141b0026a202b6a22062034290300370300200120012903d0023703b00220322004370308203220003703002032202d6a20022903003703002032202c6a2003290300370300203220296a2006290300370300203220012903b0023703102025202e6a21252032202f6a213220332028470d080b02402024450d002023101f0b20014190026a41086a22024200370300200142003703900241decfc000411d20014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d04202520012802d0024f0d010c160b20254104490d150b4100212b20272025410041202025676b104520014190026a41086a22024200370300200142003703900241a6e1c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0520012802d002212b0b024002402025450d0020252025202b202b20254b1b417f6a22024d0d07202741086a29030021042027200241306c6a22022903002105200241086a29030021002027290300210741102114411010122202450d010c100b42002107420021044200210542002100411021144110101222020d0f0b201441011015000b411c41011015000b413c41011015000b41de86c00041331023000b419499c2001024000b41de86c00041331023000b41c499c200200220251048000b4100211d0c030b4101211d0c040b410021020c040b410121020c030b410221020c020b410221020c010b410221020c000b0b200220073700002002200437000820022014412010142202450d0120022005370010200241186a200037000020014190026a41086a22144200370300200142003703900241b7e0c000411220014190026a1000200141b0026a41086a201429030037030020012001290390023703b002200841102002412010042002101f02400240202b450d0041002132202b2027202541306c6a221420276b41306d22022002202b4b1b2223450d012023ad4205862204422088a70d022004a722024100480d02200210122233450d04202b450d060c050b4100212341012133410021320c050b4101213341002123202b0d030c040b1010000b412041011015000b200241011015000b20142027460d00202541306c2131200141d0026a41106a21034101210f20332114202721020340200141d0026a41286a200241286a290300370300200141d0026a41206a200241206a290300370300200141d0026a41186a200241186a2903003703002003200241106a290300370300200141d0026a41086a200241086a29030037030020022903002104200141b0026a41086a221b200341086a290300370300200141b0026a41106a2206200341106a290300370300200141b0026a41186a222c200341186a290300370300200120043703d002200120032903003703b002201441186a202c290300370000201441106a2006290300370000201441086a201b290300370000201420012903b002370000202b200f2232460d01200241306a2102203241016a210f201441206a2114203141506a22310d000b0b02402026450d002027101f0b4200210720014190026a41086a22024200370300200142003703900241aefec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240024002402008411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022225450d0220012902d40221070c010b410121250b024002400240024002402007422088a7410574222c450d0020252114034002400240024002400240411c10122202450d00200241186a41002800e7d140360000200241106a41002900dfd140370000200241086a41002900d7d140370000200241002900cfd1403700002002411c413c10142202450d012002201429000037001c200241346a201441186a220f2900003700002002412c6a201441106a221b290000370000200241246a201441086a220629000037000020014190026a41086a222b420037030020014200370390022002413c20014190026a1000200141b0026a41086a2203202b29030037030020012001290390023703b002200141b0026a411010052002101f411210122202450d02200241106a41002f00ecce4022313b0000200241086a41002900e4ce402204370000200241002900dcce40220037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a200629000037000020034200370300200142003703b00220024132200141b0026a1000200141d0026a41086a2003290300370300200120012903b0023703d002024002400240200141d0026a411041a4a4c100410041001001417f460d00200141003602b002200141d0026a4110200141b0026a41044100100141016a41044d0d0220012802b002211c20034200370300200142003703b00220024132200141b0026a1000202b2003290300370300200120012903b0023703900220014190026a411010052002101f201c410041011b221c4102490d010c070b2002101f4100410041001b221c41024f0d060b201441206a2114202c41606a222c0d060c070b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b411210122202450d02200241106a20313b0000200241086a20043700002002200037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a20062900003700002001201c417f6a3602d002202b420037030020014200370390022002413220014190026a10002003202b29030037030020012001290390023703b00220084110200141d0026a410410042002101f201441206a2114202c41606a222c0d000b0b02402007a7450d002025101f0b02400240024002402032450d0020324105742103203321020340200141d0026a20021061411c10122214450d03201441186a41002800e7d140360000201441106a41002900dfd140370000201441086a41002900d7d140370000201441002900cfd1403700002014411c413c10142214450d042014200229000037001c201441346a200241186a2900003700002014412c6a200241106a290000370000201441246a200241086a2900003700002001413c3602b402200120143602b002200141d0026a200141b0026a10622014101f024020012802d402450d0020012802d002101f0b200241206a2102200341606a22030d000b2033203210bc010c010b2033410010bc010b20014190026a41086a22024200370300200142003703900241bce1c000411420014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0620013502d00221040c010b42c0843d21040b200141106a2005420020044200108202200142003703d80220014289f48bdcc4002001290310428094ebdc038020012903184200521b3703d00220014190026a41086a22024200370300200142003703900241b1cfc000411b20014190026a1000200141b0026a41086a2214200229030037030020012001290390023703b00220084110200141d0026a4110100420024200370300200142003703900241d0e1c000411520014190026a10002014200229030037030020012001290390023703b002024002402008411041a4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0720013502d00221040c010b423c21040b20012005420020044200108202200142003703d80220014289f48bdcc4002001290300428094ebdc038020012903084200521b3703d00220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b00220084110200141d0026a411010042023450d082033101f0c080b411c41011015000b413c41011015000b411241011015000b413241011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b2026450d002027101f0b20014190026a41086a22024200370300200142003703900241aefec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002400240200141b0026a411041a4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022229450d1020012802d4022127200141d8026a280200410574221b0d010c020b41012129410021274100410574221b450d010b202921144100212b0340411210122202450d05200241106a41002f009484413b0000200241086a410029008c844137000020024100290084844137000020024112413210142202450d06200220142900003700122002412a6a201441186a290000370000200241226a201441106a2900003700002002411a6a201441086a29000037000020014190026a41086a2203420037030020014200370390022002413220014190026a1000200141b0026a41086a220f200329030037030020012001290390023703b002024002400240200141b0026a411041a4a4c100410041001001417f460d00200141d0026a41186a22064200370300200141d0026a41106a222c4200370300200141d0026a41086a22084200370300200142003703d002200141b0026a4110200141d0026a4120410010012231417f460d062031411f4d0d06200141f0016a41186a22312006290300370300200141f0016a41106a221c202c290300370300200141f0016a41086a22322008290300370300200120012903d0023703f0012003420037030020014200370390022002413220014190026a1000200f200329030037030020012001290390023703b002200141b0026a411010052002101f20014190026a41186a2223203129030037030020014190026a41106a221d201c29030037030020032032290300370300200120012903f00137039002410610122202450d0b200241046a41002f00a3884022313b00002002410028009f8840221c36000020024106410c10142202450d0c2002202b3600062002410a41a4a4c100410041001001417f460d01200141b0026a41186a22324200370300200141b0026a41106a22334200370300200f4200370300200142003703b0022002410a200141b0026a4120410010012225417f460d0a2025411f4d0d0a20062032290300370300202c20332903003703002008200f290300370300200120012903b0023703d0020c020b2002101f201441206a2114202b41016a212b201b41606a221b0d020c030b20064200370300202c420037030020084200370300200142003703d0020b2002101f02400240200141d0026a20014190026a4120108002450d00200141003602b002200141b0026a103f410610122202450d0c200241046a20313b00002002201c36000020024106410c10142202450d0d200241086a41002d00a788403a0000200241002f00a588403b00062002410941a4a4c100410041001001417f460d01200141003602b00220024109200141b0026a41044100100141016a41044d0d0620012802b002210f2002101f200f202b4d0d00410610122202450d0e200241046a20313b00002002201c36000020024106410c1014220f450d0f200f202b360006412010122202450d102002200129039002370000200241186a2023290300370000200241106a201d290300370000200241086a2003290300370000200f410a2002412010042002101f200f101f0b201441206a2114202b41016a212b201b41606a221b0d010c020b2002101f201441206a2114202b41016a212b201b41606a221b0d000b0b2027450d002029101f0b200141c0036a24000f0b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b41de86c00041331023000b410641011015000b410c41011015000b410641011015000b410c41011015000b410641011015000b410c41011015000b412041011015000b41de86c00041331023000bbb0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910122203450d00200341186a41002d00d5f8403a0000200341106a41002900cdf840370000200341086a41002900c5f840370000200341002900bdf84037000020034119413210142204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1000200241106a41086a2003290300370300200220022903503703100240024002400240200241106a411041a4a4c100410041001001417f460d00200242103702242002200241106a360220200241086a200241206a10282002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310122207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011015000b413241011015000b200341011015000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100122112011417f461b2211412020114120491b20096a22093602002011411f4d0d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082009200b200a200241d0006a41012009100141016a41014b22116a22093602002011450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101422070d010c080b201210122207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b2004101f200241f0006a24000f0b200f450d002007101f0b41de86c00041331023000b1010000b201241011015000b85c10125027f027e097f017e187f027e077f027e0c7f027e087f017e107f037e177f027e0e7f017e0d7f097e287f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e0e7f23004190036b22012400200141e0026a41086a22024200370300200142003703e00241c5b2c0004115200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041a4a4c100410041001001417f460d00200142103702d4012001200141286a3602d001200141086a200141d0016a108f01024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200129030822034203510d0020012903102104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a0028200141286a41086a220541063a0000200141286a10272001420837031820014100360220200141e0026a41086a22024200370300200142003703e0024180b4c000411b200141e0026a100020052002290300370300200120012903e002370328200141286a411041a4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012206450d0f20012802d401210741082108200141d8016a2802004105742209450d050c140b20042000520d1f200141083a0028200141286a41086a224441043a0000200141286a1027200141e0026a41086a22054200370300200142003703e0024195bfc000411f200141e0026a100020442005290300370300200120012903e002370328200141286a411041a4a4c100410041001001417f460d01200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0820012903d001210e0c020b20042000520d1e200141083a0028200141286a41086a220241023a0000200141286a1027200141e0026a41086a220a4200370300200142003703e00241e6b3c000411a200141e0026a10002002200a290300370300200120012903e00237032841002145200141286a411041a4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012246450d0e200141d8016a280200214720012802d40121450c050b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041a4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0720012903d00121480b20012048200e7c37033020014202370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541053a0000200141286a102720014190036a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012146410021470b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d05204720012802d0014f0d010c0d0b2047410a490d0c0b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0720012802d00121020c010b410a21020b200141e0026a41086a220a4200370300200142003703e00241d3bfc000411e200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0820012802d001210a0c010b4114210a0b41a4a4c1002165410021664100210b41a4a4c100216720472002200a200a2002491b22684d0d160240204741144b0d00204741014d0d162047417e6a2144204620474105746a41406a210541022102034020472044490d0620052002109f01200541606a2105200241016a21022044417f6a2244417f470d000c170b0b2047410176226aad2248421b88a70d132048420586a72202417f4c0d134101216b4101216c02402002450d0020021012226c450d0a0b4160216d204641606a216e204641a07f6a216f4100217041042171417f217242032173422021744103217541022176417d217741052178411f21794117217a4110217b41082167413f217c4137217d4118217e412f217f41272180014120218101200141286a41206a218201420021484201218301417e218401417421850141642186014138218701413021880141282189014109218a01410a218b014104218c014100218d014100218e012047218f01410221360c0a0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b20442047101a000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200241011015000b410121020c070b10900120450d0b0c0c0b4100210a41002105410021022006210b0340200141286a200b109901024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101422080d010c060b200c10122208450d050b200d21050b200b41206a210b2008200a6a200141286a41880110fe011a200a4188016a210a200241016a2102200941606a22090d000b200141206a2002360200200120083602182001200536021c2007450d010b2006101f0b4200210e200142003702c401200141a893c1003602c0012002450d01418801210f200820024188016c6a2110200141c4006a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a4119211b4111211c4109211d411f211e4117211f41002120413f212141372122412f21234127212441202125200141e0026a41206a2126420821274201212841142129200141d0016a41146a212a4106212b41e802212c4138212d4130212e4128212f4230213042202131410421324160213341987d213420082135410021360c020b200c41081015000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141b0016a41086a200141c0016a41086a280200360200200120012903c0013703b001200141e0026a41086a2202200e3703002001200e3703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041a4a4c100410041001001417f460d00200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012241450d0220012802d401214241052143200141d8016a28020041057422020d010c230b41012141410021424105214341004105742202450d220b204120026a2149200141c4006a214a4120214b4108214c417f214d4102214e41a808214f4118215041102151411f21524117215341002154413f215541372156412f215741272158420821594201215a4200215b200141e4016a215c4106215d41987d215e4160215f4101216020412161410121360c020b41de86c00041331023000b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020360e09000102030405060708080b20352d0060450d41203520126a223720136a213820012802c0012239213a20012802c401223b213c0c1c0b20612262204b6a2161200141b0016a216320012802b40121640c1c0b02400240024002400240024002400240208f0122900120726a228f01450d00207910122202450d162002207a6a20702900a4b14022003700002002207b6a207029009db1402203370000200220676a2070290095b14022043700002002207029008db140223e37000020022079207c10142202450d1720022046208f012078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c208201290300219101200141286a207e6a220b290300213f200141286a207b6a2209290300219201200141286a20676a220c29030021930120012903282194012002101f207910122202450d182002207a6a20003700002002207b6a2003370000200220676a20043700002002203e37000020022079207c10142202450d19200220462090012084016a22062078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c2082012903002195012009290300219601200b290300219701200c29030021980120012903282199012002101f203f2093017c229301204820940120485222021b2097012098017c229401204820990120830151220a1b542091012092017c209301203f54ad7c204820021b223f2095012096017c20940120970154ad7c2048200a1b22970154203f209701511b450d01206f20900120787422066a21020340208f01206b460d0320791012220a450d10200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d14200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d15200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d16200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102208f0120726a218f01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b542091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b22970154203f209701511b0d000c040b0b4101210d4100218f01208d01208e01470d060c050b206f2090012078746a21024100218f014100219a01024003402006209a01460d0120791012220a450d0e200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d10200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d11200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d12200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102209a01206b6a219a01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b5a2091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b2297015a203f209701511b0d000b209a01206b6a210d209001209a016b20726a228f01450d040c030b209001210d208d01208e01460d040c050b4100218f010b209001208f01490d1720900120474b0d1a0240209001208f016b220d206b76229a01450d00206e20066a21022046208f012078746a210a0340200b200a207e6a22062900003703002009200a207b6a2207290000370300200c200a20676a22402900003703002001200a290000370328200220676a229b0129000021002002207b6a229c0129000021032002290000210420062002207e6a229d012900003700002007200337000020402000370000200a200437000020022001290328370000209b01200c290300370000209c012009290300370000209d01200b2903003700002002206d6a2102200a2081016a210a209a0120726a229a010d000b0b208f01450d010b200d208a014b0d0020900120474b0d17209001208f016b210d208f0120726a2102206e208f012078746a210a03402090012002490d19200a200d206b6a220d109f01200220726a210b02402002450d00200a206d6a210a200b2102200d208b01490d010b0b200b206b6a218f01208d01208e01470d020c010b208d01208e01470d010b208d01206b6a2202208d01490d43208d01206b74220a20022002200a491b2202ad2073862200207488a70d432000a7220a2070480d4302400240208d01450d00208c01208d01207574200a1014228c010d010c150b200a1012228c01450d140b2002218d010b208c01208e012075746a2202200d3602042002208f01360200208e01206b6a229a01218e01209a012076490d334103213d0c290b200141286a20a8016a20b30120a8016a290000370300200141286a20a9016a20b30120a9016a290000370300200141286a20aa016a20b30120aa016a290000370300200120b30129000037032820b30120ab016a21b30120a60121b40120a70121b5010c1b0b200128029002220228020021c801200228020421c9014105213d0c290b024020f00122f10120d6016a2202450d0020f10120e8016a21f20120b601200220dc01746a21f30120012802e002280200280200220228020022f40121f501200228020422f60121f7010c1b0b410121fa01410021f00120ee0120ef01460d200c210b209f0220dd016a210a209f022f0106220c20dc017421024100210b024002400240024003402002450d01209d02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a102450d0120a10220d6016a21a102209f02200c20da01746a20de016a280200219f02410621360c170b209f0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20990220d2016a220b209d02209e0220a40220035420a30220005420a3022000511b220a1b220229000037000020990220e0016a200220df016a29000037000020990220e2016a200220e1016a29000037000020990220e3016a200220dd016a290000370000209a02209e02200a1b219a02209602209d02209c02200a1b229c024f0d1a200b21990220d10121a50220d101209a02490d210c1c0b20a70220dd016a210a20a7022f0106220c20dc017421024100210b024002400240024003402002450d0120a502200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a902450d0120a90220d6016a21a90220a702200c20da01746a20de016a28020021a702410721360c170b20a70220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b209c0220980220a50220ac0220035420ab0220005420ab022000511b220a1b2202290000370000209c0220df016a200220df016a290000370000209c0220e1016a200220e1016a290000370000209c0220dd016a200220dd016a29000037000020a50220a50220446a200a1b21a502209c0220446a219c0220980220446a209802200a1b2298022099024f0d1c209a0220a5024b0d210c1a0b20cf0222d00220af026a21cf0220012802900222d10228020421d20220d10221d3020c1c0b411f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b200a41041015000b208f01209001101a000b209001208f01417f6a22024f0d010b2002209001101a000b20900120471049000b410121020c280b410121020c270b410121020c260b4100213d0c0c0b4102213d0c0c0b4104213d0c0d0b4106213d0c0e0b410d213d0c0e0b410e213d0c0e0b410e213d0c0e0b410e213d0c0e0b410f213d0c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b02400240024002400240024002400340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20ee0120d0016a220220ee01490d860120ee0120d00174220a20022002200a491b2202ad20d70186220020d80188a70d86012000a7220a20d401480d86010240024020ee01450d0020ed0120ee0120d90174200a101422ed010d010c050b200a101222ed01450d040b200221ee01410121020c6f0b20ed0120ef0120d901746a220220fa01360204200220f00136020020ef0120d0016a228e0221ef01208e0220da01490d04410a213d0c550b209c0220d2016a219d02209a0220d2016a219e02209b022802002802002202280200229f0221a002200228020422a10221a2020c430b20a602280200280200220228020022a70221a802200228020422a90221aa020c430b200a41041015000b024002400240024002400240024002400240024002400240024002400240024002400240024002400240203d0e110001020304050708090a0d0e1013141819190b203a20146a210a203a2f0106220c20157421024100210b02400240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203c450d01203c20166a213c203a200c2017746a20186a280200213a4100213d0c5a0b203a200b202b746a2034470d500b20014190026a20196a203820196a220a29000037030020014190026a201a6a2038201a6a220b29000037030020014190026a20146a203820146a22092900003703002001203829000037039002200141b8026a20196a220c2037201b6a290000370300200141b8026a201a6a223d2037201c6a290000370300200141b8026a20146a220d2037201d6a290000370300200120372900013703b802201e10122202450d2a2002201f6a20202900a4b1403700002002201a6a202029009db140370000200220146a2020290095b1403700002002202029008db1403700002002201e202110142202450d2b2002203829000037001f200220226a200a290000370000200220236a200b290000370000200220246a2009290000370000200141e0026a20022021103c20262903002103200141e0026a201a6a2903002104200141e0026a20196a2903002100200141e0026a20146a290300213e20012903e002213f2002101f200141286a20196a2020360200200141286a201a6a2027370300201120196a200c2903003700002011201a6a203d290300370000201120146a200d290300370000201120012903b80237000020012000203e7c223e200e203f20285122021b3703282001200320047c203e200054ad7c200e20021b370330200141d0016a200141c0016a20014190026a200141286a10a0010240200141d0016a201a6a2802002202450d00202a280200450d002002101f0b20012802c001213920012802c401213b0c4e0b203920146a210a20392f0106220c20157421024100210b0240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203b450d9201203b20166a213b2039200c2017746a20186a28020021394101213d0c590b2039202c6a200b202b746a2202450d9101200141286a20196a220c2035202d6a290000370300200141286a201a6a220d2035202e6a290000370300200141286a20146a22062035202f6a29000037030020012035290020370328203520146a2903002103203520196a29030021042035290300213e20352903102100200220196a210b2002201a6a210902400240024002402002280218220a200220296a280200470d00200a20136a2202200a490d9801200a2013742207200220022007491b2207ad20307e223f203188a70d9801203fa722402020480d9801200a450d012009280200200a202e6c2040101422020d020c2f0b200928020021020c020b204010122202450d2d0b20092002360200200920326a2007360200200b280200210a0b2002200a202e6c6a220220012903283703102002200420037c2000203e7c2203200054ad7c370308200220033703002002202f6a200c290300370300200220256a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c91010b2063280200220c204c6a210a200c2f0106220d20437421024100210b024002400240024003402002450d012062200a204b1080022209450d022002205f6a2102200b20606a210b200a204b6a210a2009204d4a0d000b200b204d6a210d0b2064450d012064204d6a2164200c200d204e746a204f6a21634102213d0c5d0b200c200b205d746a205e470d010b20014190026a20506a206220506a220a29000037030020014190026a20516a206220516a220b29000037030020014190026a204c6a2062204c6a22092900003703002001206229000037039002200141b8026a20506a220c200a290000370300200141b8026a20516a220d200b290000370300200141b8026a204c6a22362009290000370300200120622900003703b802205210122202450d27200220536a20542900a4b140370000200220516a205429009db1403700002002204c6a2054290095b1403700002002205429008db14037000020022052205510142202450d282002206229000037001f200220566a200a290000370000200220576a200b290000370000200220586a2009290000370000200141e0026a20022055103c200141e0026a204b6a2903002103200141e0026a20516a2903002104200141e0026a20506a2903002100200141e0026a204c6a290300213e20012903e002213f2002101f200141286a20506a2054360200200141286a20516a2059370300204a20506a200c290300370000204a20516a200d290300370000204a204c6a2036290300370000204a20012903b80237000020012000203e7c223e205b203f205a5122021b3703282001200320047c203e200054ad7c205b20021b370330200141d0016a200141b0016a20014190026a200141286a10a001200141d0016a20516a2802002202450d00205c280200450d002002101f0b20612049470d330c87010b02400240024002400240208c01209a01229c0120726a229a012075746a2202280200450d00208c01209c012075746a220c2085016a28020022092002280204220a4d0d004102218e01209c0141024d0d8801208c01209c0120776a22022075746a280204220b200a20096a4d0d014103218e01209c0141034d0d8801200c2086016a280200200b20096a4d0d010c040b209c012075490d012002280204210a208c01209c0120776a22022075746a280204210b0b200b200a490d010b209c012084016a21020b209c012002206b6a229e014d0d24209c0120024d0d25208c0120022075746a229001280204229f012090012802006a2202208c01209e012075746a22a00128020022a101490d22200220474b0d23204620a1012078746a229b0120a001280204229d01207874220a6a210b2002207874210902400240024002400240200220a1016b220c209d016b2202209d014f0d00206c200b2002207874220a10fe012206200a6a210d209d01206b480d012002206b480d01206e20096a2109200b210a0340207910122202450d202002207a6a20702900a4b14022033700002002207b6a207029009db1402204370000200220676a2070290095b140223e3700002002207029008db140223f37000020022079207c10142202450d212002200d206d6a220b29000037001f2002207d6a200b207e6a2900003700002002207f6a200b207b6a29000037000020022080016a200b20676a290000370000200141286a2002207c103c208201290300219701200141286a207e6a228e012903002100200141286a207b6a2207290300219101200141286a20676a224029030021920120012903282193012002101f207910122202450d222002207a6a20033700002002207b6a2004370000200220676a203e3700002002203f37000020022079207c10142202450d232002200a206d6a220c29000037001f2002207d6a200c207e6a2900003700002002207f6a200c207b6a29000037000020022080016a200c20676a290000370000200141286a2002207c103c20820129030021042007290300213e208e0129030021032040290300213f20012903282194012002101f2009200c200b20002092017c229201204820930120485222021b2003203f7c223f204820940120830151228e011b542097012091017c209201200054ad7c204820021b22002004203e7c203f200354ad7c2048208e011b22035420002003511b228e011b22022900003700002009207e6a2002207e6a2900003700002009207b6a2002207b6a290000370000200920676a200220676a290000370000200d200b208e011b210d209b01200c200a208e011b220a4f0d042009206d6a2109200621022006200d490d000c050b0b206c209b01200a10fe012202200a6a210d209d01206b480d01200c209d014c0d01204620096a210720022102209b01210a0340207910122209450d232009207a6a20702900a4b14022033700002009207b6a207029009db1402204370000200920676a2070290095b140223e3700002009207029008db140223f37000020092079207c10142209450d242009200b29000037001f2009207d6a200b207e6a2900003700002009207f6a200b207b6a29000037000020092080016a200b20676a290000370000200141286a2009207c103c208201290300219701200141286a207e6a220c2903002100200141286a207b6a228e01290300219101200141286a20676a220629030021920120012903282193012009101f207910122209450d252009207a6a20033700002009207b6a2004370000200920676a203e3700002009203f37000020092079207c10142209450d262009200229000037001f2009207d6a2002207e6a2900003700002009207f6a2002207b6a29000037000020092080016a200220676a290000370000200141286a2009207c103c2082012903002104208e01290300213e200c29030021032006290300213f20012903282194012009101f200a200b200220002092017c229201204820930120485222091b2003203f7c223f204820940120830151220c1b542097012091017c209201200054ad7c204820091b22002004203e7c203f200354ad7c2048200c1b22035420002003511b220c1b2209290000370000200a207e6a2009207e6a290000370000200a207b6a2009207b6a290000370000200a20676a200920676a290000370000200220022081016a200c1b2102200a2081016a210a200b2081016a200b200c1b220b20074f0d04200d20024b0d000c040b0b200b210a0c010b209b01210a0b206c21020b200a2002200d20026b206d7110fe011a20900120716a209f01209d016a36020020900120a10136020020a00120a00120676a209e01207273209c016a20757410ff011a209a01218e01209a01206b4b0d4e0c84010b209c01218e01208f010d330c84010b20b40120aa016a210a20b4012f0106220c20a4017421024100210b024002400240024003402002450d01200141286a200a20ab011080022209450d02200220b1016a2102200b20b2016a210b200a20ab016a210a200920ac014a0d000b200b20ac016a210c0b20b501450d0120b50120ac016a21b50120b401200c20ad01746a20ae016a28020021b4014104213d0c5d0b20b401200b20af01746a20b001470d010b20b30120a501470d340c87010b200141e0026a41186a2202200141286a41186a290300370300200141e0026a41106a220a200141286a41106a290300370300200141e0026a41086a220b200141286a41086a290300370300200120012903283703e0024120101222b601450d2e20b60120012903e00237000020b60141186a200229030037000020b60141106a200a29030037000020b60141086a200b29030037000020b30120a501460d01410121b701411821b801411021b901410821ba01412021bb01410521bc01417f21bd01410221be0141a80821bf01410621c00141987d21c101420521c201422021c301410021c401416021c501410121c601410121c701410421360c400b200141286a20b8016a22ca0120b30120b8016a290000370300200141286a20b9016a22cb0120b30120b9016a290000370300200141286a20ba016a22cc0120b30120ba016a290000370300200120b30129000037032820b30120bb016a21b30120c80121cd0120c90121ce010c6b0b410121c601410121c7010c790b20f50120dd016a210a20f5012f0106220c20dc017421024100210b024002400240024003402002450d0120f301200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20f701450d0120f70120d6016a21f70120f501200c20da01746a20de016a28020021f5014106213d0c5b0b20f50120e5016a200b20e401746a2202450d00200220dd016a29030021f801200229030021f9012002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020f8017c2002290300220020f9017c22f901200054ad7c21f801200220e6016a2102200a20e7016a220a0d000c020b0b420021f901420021f8010b20b60120f20120dc01746a21fb0120f40121fc0120f60121fd010c4a0b20fc0120dd016a210a20fc012f0106220c20dc017421024100210b024002400240024003402002450d0120fb01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20fd01450d0120fd0120d6016a21fd0120fc01200c20da01746a20de016a28020021fc014107213d0c5c0b20fc0120e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20f90120035420f80120005420f8012000511b450d4a4108213d0c5a0b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21fe0120f40121ff0120f6012180020c680b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21860220f40121870220f6012188020c680b410021f0010c690b410021f00120f10121fa010c6a0b024002400240024020ed01208e02228f0220d6016a228e0220d901746a2202280200450d0020ed01208f0220d901746a220c20e9016a28020022092002280204220a4d0d00410221ef01208f0241024d0d0b20ed01208f0220db016a220220d901746a280204220b200a20096a4d0d01410321ef01208f0241034d0d0b200c20ea016a280200200b20096a4d0d010c0c0b208f0220d901490d012002280204210a20ed01208f0220db016a220220d901746a280204210b0b200b200a490d010b208f0220e8016a21020b208f02200220d0016a2290024d0d20208f0220024d0d2120ed01200220d901746a2291022802042292022091022802006a220220ed0120900220d901746a229302280200229402490d22200220c6014b0d2320910220d5016a21950220b60120940220dc01746a22960220930228020422970220dc0174220a6a21980220b601200220dc01746a21990220022094026b220b2097026b22022097024f0d0120d101209802200220dc0174220a10fe01200a6a219a0220970220d001480d03200220d001480d0320012802e002219b02209802219c02410221020c710b20a00220dd016a210a20a0022f0106220c20dc017421024100210b02400240024003402002450d01209e02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a202450d0120a20220d6016a21a20220a002200c20da01746a20de016a28020021a002410b213d0c5b0b20a00220e5016a200b20e401746a2202450d00200220dd016a29030021a302200229030021a4022002280218220a450d2d20022802102102200a20e6016c210a0340200220dd016a29030020a3027c2002290300220020a4027c22a402200054ad7c21a302200220e6016a2102200a20e7016a220a0d000c300b0b420021a402420021a3020c2d0b20d101209602200a10fe012202200a6a219a0220970220d001480d02200b2097024c0d0220012802e00221a602200221a502209602219c02410321020c6f0b20a80220dd016a210a20a8022f0106220c20dc017421024100210b02400240024003402002450d01209802200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20aa02450d0120aa0220d6016a21aa0220a802200c20da01746a20de016a28020021a802410c213d0c5b0b20a80220e5016a200b20e401746a2202450d00200220dd016a29030021ab02200229030021ac022002280218220a450d2e20022802102102200a20e6016c210a0340200220dd016a29030020ab027c2002290300220020ac027c22ac02200054ad7c21ab02200220e6016a2102200a20e7016a220a0d000c310b0b420021ac02420021ab020c2e0b209802219c020c450b209602219c02410d213d0c590b20d10121a502410e213d0c590b209c0220a502209a0220a5026b20d2017110fe011a2095022092022097026a36020020910220940236020020930220930220dd016a20900220d60173208f026a20d9017410ff011a208e0221ef01208e0220d0014b0d3f0b20f0010d230c010b208f0221ef0120f0010d230b024020ee01450d0020ed01101f0b20cf01450d6920d101101f0c690b20d30228020022d4022f0106220c20ad027421024100210b20d40220b0026a220d210a0240024003402002450d0120d002200a20af021080022209450d02200220cc026a2102200b20b4026a210b200a20af026a210a200920b1024a0d000b200b20b1026a210c0b20d202450d0420d20220b1026a21d20220d402200c20b202746a20b3026a21d302410f213d0c560b20d10220d10228020820b1026a3602080240024020d202450d0020d40220b6026a200b20b502746a210920d402200b20ad02746a20b0026a210c20d402200b20b202746a20c1026a2802002102024020d20220b402460d0020b40220d2026b210a034020022802a8082102200a20b4026a220a0d000b0b200220c20220022f01061b22d402290008210020d40220ba026a290000210320d40220bb026a290000210420d40220af026a290000213e20d40220b0026a20d40220bc026a20d4022f0106220220ad027420cc026a10ff011a20d40220c8026a290300213f20d4022903880321970120d40220c5026a29030021910120d40220c4026a29030021920120d40220c3026a29030021930120d4022903e80221940120d40220c9026a29030021950120d40220c7026a29030021960120d40220b6026a20d40220ca026a200220b5027420cd026a10ff011a20d402200220b1026a3b0106200c20bb026a203e370000200c2004370010200c2003370008200c2000370000200920bb026a209601370300200920b0026a2095013703002009209401370300200920be026a209301370200200920bd026a209201370200200920bc026a2091013702002009209701370220200920ba026a220229030021002002203f3703002000a721d502200020ce0288a721d60220d4022f010620b8024d0d010c030b200d200b20ad02746a200d200b20b4026a220a20ad02746a200b20b10273220920d4022f01066a20ad027410ff011a20d40220b6026a220c200b20b502746a220220b7026a28020021d602200228021021d5022002200c200a20b502746a200920d4022f01066a20b5027410ff011a20d40220d4022f010620b1026a3b010620d4022f010620b8024b0d020b410021d7024110213d0c560b20d4022802002209450d000240024020d4022f01042202450d00200220b1026a210b410121070c010b4100210b4100210720092f0106450d190b024002400240024002400240024002400240200920b3026a229001200b20b4026a220c20b2027422a1016a22a001280200220a2f0106220d209001200b20b2027422d8026a220228020022062f010622406a20b9024f0d0020d70220b4026a21d70220a001280200229b012f010621072002280200220d2f01062140200141286a20b0026a2206200920b0026a220a200b20ad02746a220220b0026a290000370300200141286a20ba026a229c01200220ba026a290000370300200141286a20bb026a229d01200220bb026a290000370300200120022900003703282002200a200c20ad02746a200b20b10273229e0120092f01066a20ad027410ff011a200d20b0026a220a204020ad02746a220220bb026a209d01290300370000200220ba026a209c01290300370000200220b0026a200629030037000020022001290328370000200a204020b4026a220220ad02746a209b0120b0026a200720ad027410fe011a2006200920b6026a229f01200b20b502746a220a20b0026a290300370300209c01200a20ba026a290300370300209d01200a20bb026a290300370300200141286a20af026a22d902200a20af026a290300370300200141286a20bc026a22da02200a20bc026a290300370300200141286a20bd026a22db02200a20bd026a290300370300200141286a20be026a22dc02200a20be026a2903003703002001200a290300370328200a209f01200c20b502746a209e0120092f01066a20b5027410ff011a200d20b6026a229e01204020b502746a220a20be026a20dc02290300370300200a20bd026a20db02290300370300200a20bc026a20da02290300370300200a20af026a20d902290300370300200a20bb026a209d01290300370300200a20ba026a209c01290300370300200a20b0026a2006290300370300200a2001290328370300209e01200220b502746a209b0120b6026a200720b5027410fe011a20a001209001200b20b2026a220a20b202746a20bf0220a1016b10ff01210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920d8026a20c0026a210b0340200b280200220c200a3b0104200c2009360200200b20b8026a210b2006200a20b4026a220a470d000b0b200920092f010620b1026a3b0106200d2007200d2f01066a20b4026a3b0106024020d70220b202490d00200d200220b202746a20b3026a209b0120b3026a200720b2027420b8026a10fe011a2002204020076a20b2026a4f0d00200720b4026a210b200d204020b202746a20c1026a210a0340200a280200220c20023b0104200c200d360200200a20b8026a210a200220b4026a2102200b20b1026a220b0d000b0b209b01101f20092f01062202450d01200921d402200220ad02490d470c090b2007450d012006204020b1026a220a20b502746a220220c3026a2903002100200220c4026a2903002103200220c5026a2903002104200220c6026a290300213e200220c7026a290300213f200220c8026a290300219701200220c9026a290300219101200220b6026a2903002192012006200a20ad02746a220220af026a290000219301200220bb026a290000219401200220ba026a290000219501200220b0026a29000021960120d702450d022006204020b202746a20b3026a280200220a20c2023602000c030b20d10220d10228020022022802a808220a36020020d10220d10228020420b1026a360204200a20c2023602002002101f20d5020d080c090b200a20af026a2900002100200a20bb026a2900002103200a20ba026a2900002104200a290008213e200a20b0026a200a20bc026a200d20ad027420cc026a10ff011a200a20c3026a290300213f200a20c4026a290300219701200a20c5026a290300219101200a20c7026a290300219201200a20c8026a290300219301200a20c9026a290300219401200a29038803219501200a2903e802219601200a20b6026a200a20ca026a200a2f010620b5027420cd026a10ff011a20d702450d02200a2802a8082107200a20b3026a220c200a20c1026a200d20b2027410ff011a200720c202360200200d450d03410021360340200c280200220620363b01042006200a360200200c20b8026a210c200d203620b4026a2236470d000c040b0b4100210a0b200620062f010620b1026a3b01062009200b20ad02746a220220af026a220c290000219801200c209301370000200220bb026a220c290000219301200c209401370000200220ba026a220c290000219401200c209501370000200220b0026a220229000021950120022096013700002009200b20b502746a220220c7026a220b290300219601200b203f370300200220c8026a220b290300213f200b209701370300200220c9026a220b290300219701200b209101370300200220b6026a220b290300219101200b209201370300200220c3026a220b290200219201200b2000370200200220c4026a220b2902002100200b2003370200200220c5026a220b2902002103200b2004370200200220c6026a220229020021042002203e37020020a001280200210b20d702450d02200a450d1e200b20bc026a200b20b0026a200b2f0106220220ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200220b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b20c6026a2004370300200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b20c1026a200b20b3026a2202200b2f010620b2027420b8026a10ff011a200b200a3602a808200b200b2f010620b4026a220a3b0106200a20cb027120b4026a210c4100210a034020022802002209200a3b01042009200b360200200220b8026a2102200c200a20b4026a220a470d000c050b0b410021070b200a20b5026a220a200a2f010020b1026a3b01002009200b20ad02746a220a20af026a220c290000219801200c2000370000200a20bb026a220c2900002100200c2003370000200a20ba026a220c2900002103200c2004370000200a20b0026a220a2900002104200a203e3700002009200b20b502746a220a20c7026a220b290300213e200b209201370300200a20c8026a220b290300219201200b209301370300200a20c9026a220b290300219301200b209401370300200a20b6026a220b290300219401200b209601370300200a20c3026a220b290200219601200b203f370200200a20c4026a220b290200213f200b209701370200200a20c5026a220b290200219701200b209101370200200a20c6026a220a290200219101200a2095013702002002280200210220d702450d012007450d1d200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c7026a203e370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a2094013703002002200b20b4026a220a20b202746a20b3026a220b2007360200200220022f010620b4026a3b0106200b280200220b200a3b0104200b200236020020d5020d030c040b200b20bc026a200b20b0026a200b2f010620ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200b2f010620b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b200437038803200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b200b2f010620b4026a3b010620d5020d020c030b200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a209401370300200a20c7026a203e370300200220022f010620b4026a3b01060b20d502450d010b20d602450d0020d502101f0b20cf0220ae02470d240c650b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b20a1012002101a000b200220471049000b41e8bcc200209e01209c011048000b41e8bcc2002002209c011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b204041081015000b41e8bcc200209002208f021048000b41e8bcc2002002208f021048000b2094022002101a000b200220c6011049000b41d8bfc2001024000b412041011015000b41d0c6c2001024000b41d0c6c2001024000b410121360c0b0b410221360c0b0b410321360c0b0b410521360c0c0b410521360c0c0b410621360c0c0b410621360c0c0b410621360c0c0b410721360c0c0b410721360c0c0b410721360c0c0b410821360c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b4101213d0c0b0b4101213d0c0b0b4103213d0c0c0b4107213d0c0e0b4109213d0c100b410a213d0c100b410b213d0c110b410c213d0c120b410d213d0c130b4110213d0c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20cd0120ba016a210a20cd012f0106220c20bc017421024100210b024002400240024003402002450d01200141286a200a20bb011080022209450d02200220c5016a2102200b20b7016a210b200a20bb016a210a200920bd014a0d000b200b20bd016a210c0b20ce01450d0120ce0120bd016a21ce0120cd01200c20be01746a20bf016a28020021cd01410021020c110b20cd01200b20c001746a20c101470d010b20b30120a501470d070c1b0b200141e0026a20b8016a220220ca01290300370300200141e0026a20b9016a220a20cb01290300370300200141e0026a20ba016a220b20cc01290300370300200120012903283703e00220ca01200229030037030020cb01200a29030037030020cc01200b290300370300200120012903e002370328024020c70120c601470d0020c60120b7016a220220c601490d3120c60120b70174220a20022002200a491b22c701ad20c20186220020c30188a70d312000a7220220c401480d31024020c601450d0020b60120c60120bc01742002101422b6010d010c060b2002101222b601450d050b20b60120c60120bc01746a22022001290328370000200220b8016a20ca01290300370000200220b9016a20cb01290300370000200220ba016a20cc0129030037000020c60120b7016a21c60120b30120a501470d050c1a0b20ff0120dd016a210a20ff012f0106220c20dc017421024100210b024002400240024003402002450d0120fe01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208002450d0120800220d6016a21800220ff01200c20da01746a20de016a28020021ff01410121020c100b20ff0120e5016a200b20e401746a2202450d00200220dd016a29030021810220022903002182022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002081027c200229030022002082027c228202200054ad7c218102200220e6016a2102200a20e7016a220a0d000c020b0b420021820242002181020b20b60120f20120dc01746a21830220f40121840220f6012185020c0b0b20840220dd016a210a2084022f0106220c20dc017421024100210b024002400240024003402002450d01208302200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208502450d0120850220d6016a218502208402200c20da01746a20de016a280200218402410221020c0f0b20840220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b2082022003542081022000542081022000511b0d050c0d0b20870220dd016a210a2087022f0106220c20dc017421024100210b024002400240024003402002450d01208602200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208802450d0120880220d6016a218802208702200c20da01746a20de016a280200218702410321020c0e0b20870220e5016a200b20e401746a2202450d00200220dd016a2903002189022002290300218a022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002089027c20022903002200208a027c228a02200054ad7c218902200220e6016a2102200a20e7016a220a0d000c020b0b4200218a0242002189020b20b60120f20120dc01746a218b0220f401218c0220f601218d020c0a0b208c0220dd016a210a208c022f0106220c20dc017421024100210b024002400240024003402002450d01208b02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208d02450d01208d0220d6016a218d02208c02200c20da01746a20de016a280200218c02410421020c0d0b208c0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b208a0220035a20890220005a2089022000511b0d0420f10120f0016b21fa0120f0010d0c0c0d0b200241011015000b41042136410121020c280b4105213d0c020b4108213d0c020b4109213d0c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20f10120f001490d0220f10120c6014b0d05024020f10120f0016b22fa0120d00176220a450d0020b60120f00120dc01746a21020340200141286a20df016a220b200220df016a2209290000370300200141286a20e1016a220c200220e1016a220d290000370300200141286a20dd016a2206200220dd016a22072900003703002001200229000037032820f30120dd016a2240290000210020f30120e1016a229b01290000210320f3012900002104200920f30120df016a229c01290000370000200d2003370000200720003700002002200437000020f301200129032837000020402006290300370000209b01200c290300370000209c01200b29030037000020f30120d2016a21f301200220446a2102200a20d6016a220a0d000b0b20f001450d010b20fa0120eb014b0d0020f10120c6014b0d0220f10120f0016b21fa0120f00120d6016a210220d30120f00120dc01746a210a034020f1012002490d04200a20fa0120d0016a22fa01200141e0026a10a101200220d6016a210b02402002450d00200a20d2016a210a200b210220fa0120ec01490d010b0b200b20d0016a21f00120ee0120ef01460d060c070b20ee0120ef01470d04410021020c070b20f00120f101101a000b20f10120f001417f6a22024f0d010b200220f101101a000b20f10120c6011049000b410121020c020b410021020c010b410121020c000b0b024020a201450d0020a301101f0b20c60120694d0d01200120014190026a3602b8022001200141b8026a3602e002024020c60141144b0d0020c60141014d0d0120c601417e6a210220b60120c6014105746a41406a210a4102210b034020c6012002490d04200a200b200141e0026a10a101200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20c60141017622cf01ad2200421b88a70d142000420586a72244417f4c0d14410121d001410121d10102402044450d002044101222d101450d040b416021d20120b60141606a21d301410021d401410421d501417f21d601420321d701422021d801410321d901410221da01417d21db01410521dc01410821dd0141a80821de01411821df01417821e001411021e101417021e201416821e30141202144410621e40141e80221e501413021e601415021e701417e21e801417421e901416421ea01410921eb01410a21ec01410421ed01410021ee01410021ef0120c60121f001410521360c040b20c60120696b2202450d00410521ad0220b60120024105746a21ae02412021af02410821b002417f21b102410221b20241a80821b302410121b402410621b50241e80221b602411421b702410421b802410b21b902411021ba02411821bb02412821bc02413021bd02413821be02412c21bf0241b00821c00241ac0821c102410021c20241a00321c30241980321c40241900321c50241880321c60241800321c70241f80221c80241f00221c90241a80321ca0241ffff0321cb02416021cc02414021cd02422021ce0220b60121cf02410821360c040b20c701450d0920b601101f0c090b200220c601101a000b204441011015000b410121020c0e0b410121020c0d0b208f010d010b0240208d01450d00208c01101f0b206a450d0e206c101f0c0e0b41022136410121020c0a0b02402042450d002041101f0b20012802b8012102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d04200220012802e002470d010c030b2002410a460d020b200141b0016a41086a2802002102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d05200220012802e0024b0d010c030b2002410a4d0d020b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d0620012802e00221690c010b410a21690b200141b0016a41086a28020021022001200141b0016a36029002200220694d0d01200141e0026a41086a22024200370300200142003703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328410021a20102400240200141286a411041a4a4c100410041001001417f460d00200142103702bc022001200141286a3602b802200141e0026a200141b8026a104020012802e00222a301450d0820012802e40221a201410521a401200141e8026a28020041057422020d010c020b410121a301410521a40141004105742202450d010b20a30120026a21a501200128029002220228020021a601200228020421a701411821a801411021a901410821aa01412021ab01417f21ac01410221ad0141a80821ae01410621af0141987d21b001416021b101410121b20120a30121b301410321360c070b20a201450d0020a301101f0b200141186a200141b0016a4101109b01200141b8016a280200210b20012802b00121440240024020012802b40122d001450d0020d001210a20442102034020022802a8082102200a417f6a220a0d000b0340204420442f01064102746a41a8086a280200214420d001417f6a22d0010d000c020b0b204421020b200141ac026a20442f0106360200410021d00120014190026a41186a4100360200200141a4026a20443602002001200b3602b002200141003602a002200142003703980220012002360294022001410036029002200141286a20014190026a10a2010240024002400240024002400240024020012802582202450d00200141e0026a41086a2244200141e4006a290200370300200141e0026a41106a22d001200141ec006a290200370300200141e0026a41186a220a200141f4006a290200370300200141e0026a41206a220b200141fc006a290200370300200141e0026a41286a22d20120014184016a2802003602002001200129025c3703e002200141286a41286a22d601290300210e200129034821830120d60120d201280200360200200141286a41206a200b290300370300200141286a41186a200a290300370300200141286a41106a20d001290300370300200141286a41086a2044290300370300200120012903e002370328417f20014190026a41206a280200224441016a22d00120d0012044491b220cad2248421a88a70d102048420686a72244417f4c0d102044450d0120441012223d450d0b203d21670c020b20014190026a109c014108213d4100210c410821670c020b4108213d410821670b2067208301370300206720023602102067200e370308206741146a20012903283702002067411c6a200141286a41086a290300370200206741246a200141286a41106a227b2903003702002067412c6a200141286a41186a2209290300370200206741346a200141286a41206a220b2903003702002067413c6a200141286a41286a22d201280200360200200141b8026a41206a22e70120014190026a41206a280200360200200141b8026a41186a20014190026a41186a290300370300200141b8026a41106a20014190026a41106a290300370300200141b8026a41086a20014190026a41086a29030037030020012001290390023703b802200141286a200141b8026a10a201024002402001280258227c450d00200141286a41346a2102200141d8006a21e601410221d60141c000210a410121d0010340200141e0026a41086a2244200241086a290200370300200141e0026a41106a2279200241106a290200370300200141e0026a41186a227e200241186a290200370300200141e0026a41206a22dd01200241206a290200370300200141e0026a41286a22ee01200241286a280200360200200120022902003703e00220d2012903002148200b290300210e20d20120ee01280200360200200b20dd012903003703002009207e290300370300207b2079290300370300200141286a41086a22792044290300370300200120012903e002370328024020d001200c470d0020d001417f20e701280200224441016a226720672044491b6a224420d001490d1220d6012044204420d601491b220cad420686228301422088a70d12208301a722444100480d120240024020d001450d00203d200a20441014223d0d010c070b20441012223d450d060b203d21670b2067200a6a224420483703082044200e370300204441106a207c3602002044413c6a20d201280200360200204441346a200b2903003702002044412c6a2009290300370200204441246a207b2903003702002044411c6a2079290300370200204441146a200129032837020020d60141026a21d601200a41c0006a210a20d00141016a21d001200141286a200141b8026a10a20120e601280200227c0d000c020b0b410121d0010b200141b8026a109c010b200141e0026a41086a22444200370300200142003703e00241b4bfc000411f200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a411041a4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e0022183010c010b42e8072183010b2001410036023020014201370328206720d001200141286a106c200128022c21022001280230210a20012802282144200141e0026a41086a220b4200370300200142003703e00241d595c1004115200141e0026a1000200141286a41086a200b290300370300200120012903e002370328200141286a41102044200a100402402002450d002044101f0b024020d001450d0020d0014106742102206741106a214403400240204441046a280200450d002044280200101f0b204441c0006a2144200241406a22020d000b0b0240200c450d00203d101f0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22022044290300370300200120012903e0023703284200210e0240200141286a411041a4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e002210e0b2001200e2083017c220e3703b80220444200370300200142003703e00241ea95c1004112200141e0026a100020022044290300370300200120012903e002370328200141286a4110200141b8026a41081004200141286a41106a200e37030020024201370300200141093a0028200141286a102720444200370300200142003703e00241dd81c000410d200141e0026a100020022044290300370300200120012903e0023703280240200141286a411041a4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0420012903e00221480b200141386a2048370300200141083a0028200141286a41086a41073a0000200141286a10272005450d112008101f0c110b204441081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b204441081015000b41de86c00041331023000b410121020c010b02402035200f6a22352010470d00410021020c010b41002136410121020c000b0b100f000b1010000b204720686b210b204621670b2067200b109d01200141e0026a41086a22444200370300200142003703e00241f9bec000411c200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41102065206620661001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d001210e0c010b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041a4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d00121480b20012048200e7c37033020014201370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541033a0000200141286a10272045450d010b2046101f20014190036a24000f0b20014190036a24000f0b41de86c00041331023000b41de86c00041331023000bc92007107f017e027f027e017f097e027f230041f0016b22022400200241e0016a41086a22034200370300200242003703e00141c5b2c0004115200241e0016a1000200241f0006a41086a22042003290300370300200220022903e0013703700240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241f0006a411041a4a4c100410041001001417f460d00200242103702542002200241f0006a3602502002200241d0006a108f0120022903004203510d0141feb2c0002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703e00141dab2c0004124200241e0016a100020042003290300370300200220022903e0013703700240200241f0006a411041a4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0c200241d8006a280200210302402002280254450d002004101f2003450d010c130b20030d120b200241e0016a41086a22034200370300200242003703e00141e6b3c000411a200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041a4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0e200241d8006a280200210302402002280254450d002004101f2003450d010c120b20030d110b200241e0016a41086a22034200370300200242003703e0014180b4c000411b200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041a4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0f200241d8006a280200210302402002280254450d002004101f2003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b02400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210122203450d12200341206a41002f00bbb44022173b0000200341186a41002900b3b4402218370000200341106a41002900abb4402219370000200341086a41002900a3b440221a3700002003410029009bb440221b3700002003412241c40010142203450d13200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241e0016a41086a22014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21062003101f4122101221030240024002402006450d002003450d18200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d19200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0006a200341c200103c200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f200229037021202003101f412210122203450d1a200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1b200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122204450d1c2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010142204450d1d2004201e4200202042015122071b370010200441186a201f420020071b37000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102004412010042004101f2003101f2012422088a741306c22030d010c020b2003450d1d200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1e200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122206450d1f200620163700002006201537000820064110412010142206450d2020064200370010200641186a420037000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102006412010042006101f2003101f200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d0f200e4101742204200320032004491b220fad4205862215422088a70d0f2015a722034100480d0f0240200e450d002010200e4105742003101422100d010c240b200310122210450d230b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210122204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21222004101f41221012210402402022450d002004450d09200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0a200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000200241f0006a200441c200103c200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f200229037021202004101f412210122204450d0b200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0c200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122207450d0d2007201e4200202042015122051b3700002007201f420020051b37000820074110412010142207450d0e2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c37000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102007412010042007101f2004101f200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122222450d11202242003700082022420037000020224110412010142222450d1220222016370010202241186a201537000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102022412010042022101f2004101f200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d0f200e4101742207200420042007491b220fad4205862215422088a70d0f2015a722044100480d0f0240200e450d002010200e4105742004101422100d010c150b200410122210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d002013101f0b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d002004101f0b2003211420012003470d000b0b0240200b450d002008101f0b2002200e3602782002200f3602742002201036027020024124360254200241dab2c000360250200241f0006a200241d0006a10620240200f450d002010101f0b200241083a007041002105200241f0006a41086a41003a0000200241f0006a10271090010c240b412241011015000b41c40041011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b1010000b412241011015000b41c40041011015000b411041011015000b412041011015000b200441011015000b412241011015000b41c40041011015000b41de86c00041331023000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b41de86c00041331023000b200341011015000b41de86c00041331023000b41de86c00041331023000b41cdb3c00021054119210620012802002107200128020822030d020c030b41b5b3c00021054118210620012802002107200128020822030d010c020b419ab3c0002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d002003280200101f0b200341c0006a2103200441406a22040d000b0b200141046a280200450d002007101f0b2000200636020420002005360200200241f0016a24000b130020004100360204200041a4a4c1003602000b130020004107360204200041b19bc0003602000b130020004102360204200041c0dbc1003602000b13002000410236020420004188ddc1003602000b130020004108360204200041a69dc0003602000b130020004107360204200041e8dec1003602000b130020004101360204200041fce4c1003602000b130020004109360204200041d0adc0003602000b13002000410336020420004180e6c1003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242053700000f0b410841011015000bca0203027f017e017f230041206b22022400024002400240024002400240024002400240200028020022034101460d0020034102470d01410110122203450d03200341023a00002000290308210420034101410910142200450d04200020043700010c020b410110122203450d04200341013a00002000290308210420034101410910142200450d05200020043700010c010b410110122203450d05200341003a00002000290308210420034101410910142200450d06200020043700010b2001280204210320012802002101200241106a41086a220542003703002002420037031020012003200241106a1000200241086a200529030037030020022002290310370300200241102000410910042000101f200241206a24000f0b410141011015000b410941011015000b410141011015000b410941011015000b410141011015000b410941011015000b970302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081001210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d00082203450d0120034101460d0220034102470d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420221050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420021050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000bfe0402047f027e23004190016b22002400200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a200129030037030020002000290308370378024002400240200041f8006a411041a4a4c100410041001001417f460d0020004100360208200041f8006a4110200041086a41044100100141016a41044d0d02200028020841016a21020c010b410121020b2000200236028c01200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a2203200129030037030020002000290308370378200041f8006a41102000418c016a41041004200142003703002000420037030841d2b4c0004120200041086a100020032001290300370300200020002903083703780240024002400240200041f8006a411041a4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821040c010b42e40021040b200041086a41086a220142003703002000420037030841dd81c000410d200041086a1000200041f8006a41086a200129030037030020002000290308370378420021050240200041f8006a411041a4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821050b2000200520047c370310200042003703082000411536027c200041c5b2c000360278200041086a200041f8006a108e01200041146a2002360200200041083a0008200141013a0000200041086a102720004190016a24000f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b130020004111360204200041d8ecc1003602000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241143600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011015000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011015000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010122206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010142206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110142206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011015000b41c00041011015000b41800141011015000b6101017f02400240411010122202450d00200242003700082002420037000020024110412010142202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011015000b412041011015000b3101017f0240410110122202450d00200042818080801037020420002002360200200241013a00000f0b410141011015000b13002000410f360204200041d8b7c0003602000b821103077f047e0a7f230041c0026b2202240002400240411510122203450d002003410d6a4100290095bb40370000200341086a4100290090bb4037000020034100290088bb4037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1000200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a411041a4a4c100410041001001417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22044200370300200242003703284100210502404100200241b0016a4110200241286a41204100100122012001417f461b2201411f4d0d00200241186a2205200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200429030037030020022002290328370300200241a0026a41186a2005290300370300200241a0026a41106a2006290300370300200241a0026a41086a2007290300370300200220022903003703a002410121050b200241186a2204200241a0026a41186a290300370300200241106a2206200241a0026a41106a290300370300200241086a2207200241a0026a41086a290300370300200220022903a0023703002005450d02200241e0016a41186a2004290300370300200241e0016a41106a2006290300370300200241e0016a41086a2007290300370300200220022903003703e001200241286a41186a4200370300200241286a41106a4200370300200241286a41086a4200370300200242003703284100200241b0016a4110200241286a41202001412020014120491b2205100122012001417f461b2201411f4d0d02200241186a2204200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200241286a41086a22082903003703002002200229032837030020024180026a41186a200429030037030020024180026a41106a200629030037030020024180026a41086a2007290300370300200220022903003703800220024200370330200242003703284100200241b0016a4110200241286a41102001412020014120491b20056a2205100122012001417f461b2201410f4d0d02200829030021092002290328210a20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20056a2205100122012001417f461b2201410f4d0d02200241306a290300210b2002290328210c200241003a0028200241b0016a4110200241286a41012001411020014110491b20056a2201100141016a22054102490d024100210d024020022d00282204450d0020044101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a41202001200541014b6a10012201417f460d0320014120490d03200241a0026a41186a200241286a41186a290300370300200241a0026a41106a200241286a41106a290300370300200241a0026a41086a200241286a41086a290300370300200220022903283703a0024101210d0b200241286a41186a220e200241a0026a41186a220f290300370300200241286a41106a2210200241a0026a41106a2211290300370300200241286a41086a2212200241a0026a41086a2213290300370300200220022903a002370328200f200241e0016a41186a22012903003703002011200241e0016a41106a22052903003703002013200241e0016a41086a2204290300370300200241c0016a41086a221420024180026a41086a2206290300370300200241c0016a41106a221520024180026a41106a2207290300370300200241c0016a41186a221620024180026a41186a2208290300370300200220022903e0013703a00220022002290380023703c001200241cb006a200241036a280000360000200220022800003602482008200f2903003703002007201129030037030020062013290300370300200420142903003703002005201529030037030020012016290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200e2903003703002002411f6a2210200241286a411f6a290000370000200220022903a00237038002200220022903c0013703e00120022002290328370300200e200b370300200241286a41286a2006290300370300200241286a41306a2007290300370300200241286a41386a2008290300370300200241286a41c8006a2004290300370300200241286a41d0006a2005290300370300200241286a41d8006a20012903003703002002200c370338200220093703302002200a3703282002200229038002370348200220022903e001370368200041186a200b3703002000200c370310200020093703082000200a370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a20102900003700002000200229038002370320200041286a2006290300370300200041306a2007290300370300200041386a20082903003703002002200d3a0088012000200d3a0060200041d8006a2001290300370300200041d0006a2005290300370300200041c8006a2004290300370300200020022903e00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010fd011a0b2003101f200241c0026a24000f0b41de86c00041331023000b411541011015000b413541011015000bf80303027f027e027f230041206b220224000240024002400240412010122203450d0020032000290020370000200341186a200041386a290000370000200341106a200041306a290000370000200341086a200041286a2900003700002003412041c00010142203450d0120032000290040370020200341386a200041d8006a290000370000200341306a200041d0006a290000370000200341286a200041c8006a290000370000200041086a290300210420002903002105200341c00041800110142203450d0220032005370040200341c8006a200437000020032000290310370050200341d8006a200041186a2903003700000240024020002d00604101470d00200341e0006a41013a0000200341800141800210142203450d05200341f9006a200041f9006a290000370000200341f1006a200041f1006a290000370000200341e9006a200041e9006a2900003700002003200041e1006a29000037006141810121000c010b200341e0006a41003a000041e10021000b2001280204210620012802002101200241106a41086a220742003703002002420037031020012006200241106a1000200241086a200729030037030020022002290310370300200241102003200010042003101f200241206a24000f0b412041011015000b41c00041011015000b41800141011015000b41800241011015000b85260b1a7f027e087f067e017f027e017f037e1e7f027e0b7f230041e0006b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b41c200211c4201211d4200211e4100211f0c010b410021000c010b410121000b034002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341086a41086a20002903003703002003200329033037030802400240024002400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402234450d03200328024421350240200341c0006a41086a22362802002200450d0020004105742137203421040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411510122200450d032000410d6a4100290095bb40370000200041086a4100290090bb4037000020004100290088bb4037000020004115413510142200450d04200441206a2104200020032903083700152000412d6a2025290300370000200041256a20262903003700002000411d6a2038290300370000200341306a41086a222542003703002003420037033020004135200341306a10002036202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2035450d002034101f0b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341c0006a41086a200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a20002903003703002003200329033037030802400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402239450d052003280244213a4105213b200341c8006a28020041057422000d010c0c0b410121394100213a4105213b41004105742200450d0b0b203920006a213c2001280200213d2001280204213e4118213f411021404108214141202137417f21384102214241a80821434106214441987d21454160213441012136203921354101211f0c050b411541011015000b413541011015000b41de86c00041331023000b41de86c00041331023000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a203f6a2035203f6a290000370300200341086a20406a203520406a290000370300200341086a20416a203520416a29000037030020032035290000370308203520376a2135203d2146203e21470c030b200341086a204a6a225a2035204a6a290000370300200341086a204b6a225b2035204b6a290000370300200341086a204c6a225c2035204c6a290000370300200320352900003703082035204d6a2135203d215d203e215e0c030b410121000c0f0b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d012020200420101080022226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204620416a210420462f01062224203b7421004100212502400240024003402000450d01200341086a200420371080022226450d02200020346a2100202520366a2125200420376a2104202620384a0d000b202520386a21240b2047450d01204720386a2147204620242042746a20436a2802002146410121000c030b204620252044746a2045460d002035203c470d090c100b200341c0006a41186a2200200341086a41186a290300370300200341c0006a41106a2204200341086a41106a290300370300200341c0006a41086a2225200341086a41086a29030037030020032003290308370340412010122248450d0720482003290340370000204841186a2000290300370000204841106a2004290300370000204841086a20252903003700002035203c460d03410121494118214a4110214b4108214c4120214d4105214e417f214f4102215041a80821514205215242202153410021544106215541987d21564160215741012158410121594102211f0c0e0b205d204c6a2104205d2f01062224204e742100410021250240024003402000450d01200341086a2004204d1080022226450d02200020576a2100202520496a21252004204d6a21042026204f4a0d000b2025204f6a21240b205e450d02205e204f6a215e205d20242050746a20516a280200215d410221000c010b0b205d20252055746a2056460d002035203c470d070c020b200341c0006a204a6a2200205a290300370300200341c0006a204b6a2204205b290300370300200341c0006a204c6a2225205c29030037030020032003290308370340205a2000290300370300205b2004290300370300205c202529030037030020032003290340370308024020592058470d00205820496a22002058490d0320582049742204200020002004491b2259ad2052862227205388a70d032027a722002054480d0302402058450d0020482058204e742000101422480d010c050b200010122248450d040b20482058204e746a220020032903083700002000204a6a205a2903003700002000204b6a205b2903003700002000204c6a205c290300370000205820496a21582035203c470d070c010b41012158410121590b0240203a450d002039101f0b20482058109d012059450d0b2048101f0c0b0b1010000b200041011015000b412041011015000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c0e0b410121000c0d0b410121000c0c0b410121000c0b0b0240203a450d002039101f0b41014100109d010b200341306a41086a220042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a2000290300370300200320032903303703080240024002400240024002400240024002400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d07200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411f10122200450d04200041176a41002900a4b140370000200041106a410029009db140370000200041086a4100290095b1403700002000410029008db1403700002000411f413f10142200450d03200441206a21042000200329030837001f200041376a20252903003700002000412f6a2026290300370000200041276a2038290300370000200341306a41086a22254200370300200342003703302000413f200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a222542003703002003420037033041e6b3c000411a200341306a1000200341c0006a41086a202529030037030020032003290330370340200341c0006a4110100502402002450d00202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a20252903003703002003200329033037030841002126024002400240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402238450d0c20032802442126200341c8006a28020041057422370d010c020b4101213841004105742237450d010b203821040340412210122200450d07200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341086a200041c200103c200341086a41186a290300211e200341086a41086a290300211d200341086a41206a2903002127200341086a41106a2903002128200329030821532000101f0240201e4200205342015122001b221e201d420020001b221d842027420020001b22272028420020001b22288484500d002004201e201d7c221d202720287c201d201e54ad7c10630b200441206a2104203741606a22370d000b0b2026450d002038101f0b202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a2025290300370300200320032903303703080240200341086a411041a4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d08200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308412210122200450d05200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d06200441206a2104200020032903083700222000413a6a2025290300370000200041326a20262903003700002000412a6a2038290300370000200341306a41086a2225420037030020034200370330200041c200200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a220042003703002003420037033041dab2c0004124200341306a1000200341c0006a41086a2204200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041c5b2c0004115200341306a10002004200029030037030020032003290330370340200341c0006a41101005200341e0006a24000f0b413f41011015000b411f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200620106a21000240200629030022272006200b6a290300222884500d0020002027202810630b2006290310200620146a222529030084500d00201510122204450d01200420106a20162f00bbb44022263b0000200420146a20162900b3b4402229370000200420176a20162900abb440222a3700002004200b6a20162900a3b440222b3700002004201629009bb440222c37000020042015201810142204450d0220042000290000370022200420196a200020146a22242900003700002004201a6a200020176a22232900003700002004201b6a2000200b6a222d290000370000200341086a2004201c103c200341086a20106a290300212e200341086a20146a290300212f200341086a200b6a22302903002131200341086a20176a2903002132200329030821272004101f20252903002133200620176a2903002128201510122204450d03200420106a20263b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810142204450d0420042000290000370022200420196a20242900003700002004201a6a20232900003700002004201b6a202d290000370000201710122200450d0520002031201e2027201d5122251b37000020002032201e20251b37000820002017201010142200450d0620002028202f201e2027201e5222251b7c2227370010200020146a2033202e201e20251b7c2027202854ad7c370000200341306a200b6a2225201e3703002003201e3703302004201c200341306a10002030202529030037030020032003290330370308200341086a20172000201010042000101f2004101f0b200620056a22062007470d06410021000c070b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b4100211f410121000c000b0bb30101047f230041e0006b220124002001200010a2010240200141306a22022802002203450d00200141346a2104034002402004280200450d002003101f0b2001200010a201200228020022030d000b0b02402000280204220341a893c100460d00200328020021022003101f2002450d00200228020021002002101f2000450d00024020002802002203450d0003402000101f2003210020032802002202210320020d000b0b2000101f0b200141e0006a24000bd5100a097f017e017f067e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041e6b3c000411a200241e0006a1000200241206a41086a20002903003703002002200229036037032041002101024002400240024002400240024002400240024002400240024002400240024002400240200241206a411041a4a4c100410041001001417f460d002002421037024c2002200241206a360248200241e0006a200241c8006a104020022802602200450d02200241e8006a2802002101200228026421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a109e01024002400240024020022d00204101470d00412010122204450d0520042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a109e0120022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d042005200120012005491b2207ad420586220b422088a70d04200ba722014100480d0402402006450d00200420032001101422040d010c060b200110122204450d050b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a109e0120022d00200d000b2002280250220020022802542201460d070c060b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d002002280208101f0b4100210720022802042201450d080c070b41012106410121072002280250220020022802542201470d040c050b1010000b200141011015000b41de86c00041331023000b412041011015000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d002002280248101f0b20022802042201450d010b200228020021002001410574210c0340411f10122201450d02200141176a41002900a4b140220d370000200141106a410029009db140220e370000200141086a4100290095b140220f3700002001410029008db14022103700002001411f413f10142201450d032001200029000037001f200141376a200041186a22032900003700002001412f6a200041106a2205290000370000200141276a200041086a2208290000370000200241206a2001413f103c200241206a41106a220a2903002111200241206a41086a22092903002112200241206a41186a22132903002114200241206a41206a221529030021162002290320210b2001101f20164200200b42015122011b21162014420020011b211402402012201184500d00200b500d0020002012201110630b02402014201684500d00412210122201450d07200141206a41002f00bbb44022173b0000200141186a41002900b3b4402211370000200141106a41002900abb4402212370000200141086a41002900a3b44022183700002001410029009bb44022193700002001412241c40010142201450d08200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a2008290000370000200241206a200141c200103c200a290300211a2009290300211b2013290300211c2015290300211d2002290320210b2001101f412210122201450d09200141206a20173b0000200141186a2011370000200141106a2012370000200141086a2018370000200120193700002001412241c40010142201450d0a200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a200829000037000041101012220a450d0b200a201b4200200b42005222131b221120147c2214370000200a201a420020131b20167c2014201154ad7c370008200a411041201014220a450d0c200a201c4200200b42015122131b370010200a41186a201d420020131b370000200241e0006a41086a2213420037030020024200370360200141c200200241e0006a10002009201329030037030020022002290360370320200241206a4110200a41201004200a101f2001101f0b411f10122201450d04200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10142201450d052001200029000037001f200141376a20032900003700002001412f6a2005290000370000200141276a2008290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a10002009200329030037030020022002290360370320200241206a411010052001101f200041206a2100200c41606a220c0d000b0b2002200636022820022007360224200220043602202002411a360264200241e6b3c000360260200241206a200241e0006a106202402007450d002004101f0b20024180016a24000f0b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000ba30303067f037e027f230041206b220224000240024020012802082203200128020c2204460d002001280210220541046a21060340200141086a2003220741206a2203360200200741086a2900002108200741106a29000021092007290000210a200241186a200741186a290000370300200241106a2009370300200241086a20083703002002200a3703002005280200220720062802004105746a210b024002400340200b20076b41ff004d0d0120022007460d02200720024120108002450d02200741206a220c2002460d02200c20024120108002450d02200741c0006a220c2002460d02200c20024120108002450d02200741e0006a220c2002460d0220074180016a2107200c200241201080020d000c020b0b2007200b460d03034020022007460d01200720024120108002450d01200b200741206a2207470d000c040b0b20032004470d000b0b200041003a0000200241206a24000f0b20002002290300370001200041013a0000200041196a200241186a290300370000200041116a200241106a290300370000200041096a200241086a290300370000200241206a24000b9c0f05027f057e017f057e087f230041d0006b220224000240024002400240024002400240024002400240024002400240024020014102490d00411f10122203450d06200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d072003200029002037001f200341376a200041386a2900003700002003412f6a200041306a290000370000200341276a200041286a290000370000200241286a2003413f103c200241286a41206a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082003101f411f10122203450d08200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d092003200029000037001f200341376a200041186a22092900003700002003412f6a200041106a290000370000200341276a200041086a290000370000200241286a2003413f103c200241286a41206a290300210a200241286a41106a290300210b200241286a41186a290300210c2002290330210d2002290328210e2003101f200520077c22074200200842005222031b200c200d7c22084200200e420151220f1b5a200420067c2007200554ad7c420020031b2205200a200b7c2008200c54ad7c4200200f1b220c5a2005200c511b0d00200029000021052000200041206a2203290000370000200241086a41186a2009290000370300200241086a41106a2210200041106a220f290000370300200241086a41086a2211200041086a22122900003703002012200341086a290000370000200f200341106a2900003700002009200341186a29000037000020022005370308200041206a2103024020014103490d00411f10122209450d0b200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0c2009200029004037001f200941376a200041d8006a2900003700002009412f6a200041d0006a290000370000200941276a200041c8006a290000370000200241286a2009413f103c200241c8006a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082009101f411f10122209450d0d200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0e2009200229030837001f200941376a200241086a41186a22132903003700002009412f6a200241086a41106a290300370000200941276a200241086a41086a290300370000200241286a2009413f103c200241286a41206a220f290300210a200241286a41106a290300210b200241286a41186a2212290300210c2002290330210d2002290328210e2009101f200520077c22074200200842005222091b200c200d7c22084200200e42015122141b5a200420067c2007200554ad7c420020091b2205200a200b7c2008200c54ad7c420020141b220c5a2005200c511b0d00200041c0006a211441012109034020142103200920014f0d03200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200941026a20014f0d01411f10122200450d04200041176a41002900a4b140220c370000200041106a410029009db1402204370000200041086a4100290095b14022063700002000410029008db14022073700002000411f413f10142200450d05200041376a200341386a2900003700002000412f6a200341306a290000370000200041276a200341286a2900003700002000200341206a221429000037001f200241286a2000413f103c200f290300210820122903002105200241286a41106a2215290300210a200241286a41086a2216290300210b2002290328210d2000101f411f10122200450d06200041176a200c370000200041106a2004370000200041086a2006370000200020073700002000411f413f10142200450d072000200229030837001f200041376a20132903003700002000412f6a200241086a41106a290300370000200041276a200241086a41086a290300370000200241286a2000413f103c200f2903002104201529030021062012290300210c201629030021072002290328210e2000101f200941016a21092005200b7c220b4200200d42005222001b200c20077c22074200200e42015122151b542008200a7c200b200554ad7c420020001b2205200420067c2007200c54ad7c420020151b220c542005200c511b0d000b0b20032002290308370000200341186a200241086a41186a290300370000200341106a2010290300370000200341086a20112903003700000b200241d0006a24000f0b41f8bcc200200920011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541a893c100460d00200128020421060c010b41a80810122205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810fe011a20014100360204200120053602000b0c010b41a80841081015000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a20084120108002220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410ff011a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410ff011a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081012221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810fe012108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410fe012108201d41e8026a200541a8066a200241067410fe012111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410ff011a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410ff011a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401012220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210fe0121082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410fe01216e200a20536a200d20526a200220107410fe01216f200a20556a200d20546a200920566a220e200f7410fe012170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410ff011a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410ff011a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410ff011a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410ff011a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410ff011a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410ff011a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810122202450d03200241003b010620024100360200200241086a200441b0036a41d00810fe0121092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410ff011a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410ff011a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410ff011a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081015000b41a80841081015000b41d80841081015000b410121020c000b0b20004100360210200441800c6a24000bae0c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b4120108002220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b2015108002220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a2900003700002003201837030041202120200041206a212120014103490d02410221224101212341052124417f212541a80821264178212741702128416821294160212a4106212b41e802212c4130212d4150212e4102212f410221050c080b202f20236a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352022746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2022746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000203121212030212f20302001490d020b202120032903003700002021201a6a201b2903003700002021201c6a201d2903003700002021201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b2006101f2011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b2003101f2011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000b130020004111360204200041d4f8c1003602000b13002000410b360204200041b482c2003602000b130020004107360204200041c1cec0003602000b130020004117360204200041e088c2003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021013200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241003600000f0b410441011015000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242003700000f0b410841011015000b7001017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a10132002200241086a36022c2002412c6a200241206a106d200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011015000b3401017f0240410410122202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241043600000f0b410441011015000b13002000410f360204200041f09dc2003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410122203450d0020024284808080c000370204200220033602002003410036000020034104410810142203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610142203450d020c050b200421060c050b2006101222030d030b200641011015000b410441011015000b410841011015000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410142203450d020c030b200621040c030b2004101222030d010b200441011015000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710142203450d010c020b2007101222030d010b200741011015000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002105802400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410142206450d020c040b200341086a2105200228020021060c040b2004101222060d020b200441011015000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410122203450d0020024284808080c000370244200220033602402003410036000020034104412410142203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010142203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a10132002410036024c200241cc006a200241c0006a10132002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710142203450d020c060b200521070c060b2007101222030d040b200741011015000b410441011015000b412441011015000b41c80041011015000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410142203450d020c040b200641286a21060c040b2004101222030d020b200441011015000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a1058200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410122202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011015000b3401017f0240410410122202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011015000b3301017f0240410410122202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011015000bf50103027f017e017f230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a200329030037030020022002290310370300024002400240024002402002411041a4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d0220022903102204500d0341082105410810122203450d010c040b42052104410821054108101222030d030b200541011015000b41de86c00041331023000b41a4a9c2001024000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010122202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011015000b3901017f0240411010122202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011015000b3a01017f0240411010122202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011015000b130020004109360204200041e1eac0003602000b130020004104360204200041d4a9c2003602000bcb0e04027f047e017f037e230041e0006b22022400200241306a41086a220342003703002002420037033041ca82c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240024002400240024002400240024002400240024002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d022003410f4d0d02200241d8006a2903002104200229035021050c010b42002105420021040b200241106a200442002001ad22064200108202200241206a20054200200642001082022002420042002005420010820241f882c100210102402002290318200229030884420052200241206a41086a2903002205200229031020022903007c7c2206200554720d002002290320210742002104200241306a41086a220342003703002002420037033041e182c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d052003410f4d0d05200241d8006a2903002105200229035021040c010b420021050b200420077c22072004542203200520067c2003ad7c220420055420042005511b4101460d0002400240024041af82c000411041a4a4c100410041001001417f460d002002410036025041af82c0004110200241d0006a41044100100141016a41044d0d0520022802502103411a10122201450d08200141186a41002f00d8fe403b0000200141106a41002900d0fe40370000200141086a41002900c8fe40370000200141002900c0fe403700002001411a413410142201450d092001200336001a42002106200241306a41086a22084200370300200242003703302001411e200241306a1000200241c0006a41086a200829030037030020022002290330370340200241c0006a411041a4a4c100410041001001417f460d012002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d072008410f4d0d07200241d8006a2903002105200229035021060c020b200241e0006a2400418a83c1000f0b420021050b2001101f41a283c1002101200620077c22092006542208200520047c2008ad7c220620055420062005511b0d002000107022010d00411410122201450d08200141106a41002800bd9540360000200141086a41002900b59540370000200141002900ad954037000020014114413410142201450d09200120002900003700142001412c6a200041186a290000370000200141246a200041106a2900003700002001411c6a200041086a2900003700004200210a200241306a41086a220842003703002002420037033020014134200241306a1000200241c0006a41086a20082903003703002002200229033037034002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d092008410f4d0d09200241d8006a29030021052002290350210a0c010b420021050b2001101f41d193c0002101200a2007542208200520045420052004511b0d002000200a20077d200520047d2008ad7d106e42002105200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a20012903003703002002200229033037034002400240200241c0006a411041a4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012201417f460d0c2001410f4d0d0c200241d8006a290300210a200229035021050c010b4200210a0b0240200520077d220b200556200a20047d2005200754ad7d2205200a562005200a511b0d002002200b37035020022005370358200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a200129030037030020022002290330370340200241c0006a4110200241d0006a411010040b411a10122200450d0b41002101200041186a41002f00d8fe403b0000200041106a41002900d0fe40370000200041086a41002900c8fe40370000200041002900c0fe403700002000411a413410142200450d0c2000200336001a2002200637035820022009370350200241306a41086a22034200370300200242003703302000411e200241306a1000200241c0006a41086a200329030037030020022002290330370340200241c0006a4110200241d0006a411010042000101f0b200241e0006a240020010f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411a41011015000b413441011015000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411a41011015000b413441011015000b9e0d03017f017e077f230041306b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002402001ad2203421b88a70d002003420586a72204417f4c0d00024002402004450d002004101222050d01200441011015000b410121050b200520002001410574220610fe0121042002200136021820022001360214200220043602102002411236020c200241aefec000360208200241106a200241086a1062024002402001450d002004101f20064100480d05200610122207450d03200641606a4105762108410021040340200720046a2205200020046a2209290000370000200541186a200941186a290000370000200541106a200941106a290000370000200541086a200941086a2900003700002006200441206a2204470d000b200841016a210041062105410610122204450d010c040b4100210041012107410621054106101222040d030b200541011015000b100f000b200641011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d01200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941a4a4c100410041001001417f460d00200241003602104101210820044109200241106a41044100100141016a41044d0d01200228021021092004101f200945210a02402009450d002009ad4205862203422088a70d032003a722044100480d03200410122208450d0541002105200821040340200241106a2005103e200441186a200241106a41186a290000370000200441106a200241106a41106a290000370000200441086a200241106a41086a29000037000020042002290010370000200441206a21042009200541016a2205470d000b0b20092000470d060c050b2004101f4101210a410021094101210841002000460d040c050b41de86c00041331023000b1010000b410c41011015000b200441011015000b024020082007460d002000450d0041002106200821042007210503402004200541201080020d02200441206a2104200541206a2105200641016a22062000490d000b0b200a0d012008101f20010d020c030b200241106a41086a20093602002002200936021420022008360210200241106a103f0240024002400240024002402000450d002000410574210041002106200721050340410610122204450d03200441046a41002f00a388403b00002004410028009f884036000020044106410c10142209450d0420092006360006412010122204450d0520042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a2900003700002009410a2004412010042004101f2009101f200641016a2106200541206a2105200041606a22000d000b41062105410610122204450d010c050b41002106410621054106101222040d040b200541011015000b410641011015000b410c41011015000b412041011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d09200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941a4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d082002280210210a2004101f200a20064d0d01200621050340410610122204450d07200441046a41002f00a3884022093b00002004410028009f8840220036000020044106410c10142204450d08200441086a41002d00a788403a0000200441002f00a588403b000602402004410941a4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d07200228021021082004101f0240200820054d0d00410610122204450d0c200441046a20093b00002004200036000020044106410c10142204450d0d200420053600062004410a10052004101f0b200a200541016a2205470d010c030b2004101f200a200541016a2205470d000c020b0b2004101f0b410610122204450d0a200441046a41002f00a388403b00002004410028009f884036000020044106410c10142204450d0b200441086a41002d00a788403a0000200441002f00a588403b00062002200636021020044109200241106a410410042004101f0b2001450d010b2007101f0b200241306a24000f0b41de86c00041331023000b410641011015000b410c41011015000b41de86c00041331023000b410641011015000b410c41011015000b410c41011015000b410641011015000b410c41011015000b130020004104360204200041a885c1003602000b130020004103360204200041bcafc2003602000b3901017f0240411010122202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011015000b130020004102360204200041e0b1c2003602000b130020004104360204200041dd88c1003602000b130020004101360204200041e8b2c2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010122206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011015000b130020004103360204200041c4b3c2003602000b130020004107360204200041858bc1003602000b130020004108360204200041b0b5c2003602000bcc0403037f017e047f23004180026b220424000240024020012d000d450d0041b790c1002102413121050c010b2001280200200141046a2205280200200141086a220628020010c80120054200370200200141a893c100360200200420022900002207370310024002400240024041e40110122208450d00200841003b010620084100360200200841086a200441206a41dc0110fe011a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a4108108002220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101302402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1014220b450d030c060b2004280210210b0c060b418a90c1002102412d21050c060b200a1012220b0d030b200a41011015000b41e40141041015000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210fe011a200441086a200a28020036020020042004290310370300200441206a200410c90120014180023b010c410021020b200020053602042000200236020020044180026a24000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b2000101f2005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b2001101f2005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d002004101f0b20020d000b0b0240200041a893c100460d00200028020021012000101f2001450d00200128020021042001101f2004450d00024020042802002201450d0003402004101f2001210420012802002200210120000d000b0b2004101f0b0bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410ff011a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10ff011a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011012220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110fe012107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410fe012107200a41e0006a200041b4016a2001410c6c10fe01210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410ff011a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10ff011a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410ff011a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10ff011a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210122207450d03200741003b010620074100360200200741086a200241d0006a418c0210fe012103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410fe012116200741e0006a200941b4016a2000410c6c10fe012117200741e4016a20094180026a2001417a6a220e41027410fe012118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410ff011a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10ff011a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410ff011a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410ff011a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10ff011a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410ff011a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210122200450d03200041003b010620004100360200200041086a200241d0006a418c0210fe0121012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410ff011a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10ff011a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410ff011a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041015000b41e40141041015000b41940241041015000b200241e0026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210130240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142203450d020c030b2004410e6a2105200228020021030c030b2006101222030d010b200641011015000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a41002900c79240370000200441002900c192403700002002410e36020c2002410c6a200210130240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610142204450d020c030b200228020021040c030b2006101222040d010b200641011015000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a41002900c79240370000200741002900c1924037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710142204450d020c030b200341126a21030c030b2007101222040d010b200741011015000b20022007360204200220043602000b200241086a22052003360200200420066a4103360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710142204450d010c020b2007101222040d010b200741011015000b20022007360204200220043602000b2005200341046a360200200420036a41033600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142205450d020c030b200228020021050c030b2006101222050d010b200641011015000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410536020c2002410c6a200210132008280200210641d092c00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101422030d020c060b200641086a2104200228020021030c020b200910122203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101422030d010c060b200610122203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a2207418c93c000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011015000b200641011015000bde0503057f017e067f230041306b22022400024002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200341086a41002d00a788403a0000200341002f00a588403b0006024002400240024002402003410941a4a4c100410041001001417f460d00200241003602104101210420034109200241106a41044100100141016a41044d0d04200228021021052003101f20054521062005450d012005ad4205862207422088a70d022007a722034100480d02200310122204450d0741002108200421030340200241106a2008103e200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a29000037000020032002290010370000200341206a21032005200841016a2208470d000c020b0b2003101f4101210641002105410121040b20024100360218200242013703102002200536020c2002410c6a200241106a1013024002402006450d00200241186a2802002103200228021021090c010b2005410574210a4100200241106a41086a280200220b6b210c200228021021092002280214210d4100210303400240200d200c6a411f4b0d00200b20036a220541206a22082005490d03200d4101742205200820082005491b22084100480d0302400240200d450d002009200d2008101422090d010c060b200810122209450d050b2008210d0b2009200b6a20036a2208200420036a2205290000370000200841186a200541186a290000370000200841106a200541106a290000370000200841086a200541086a290000370000200c41606a210c200a200341206a2203470d000b200241186a200b20036a22033602002002200d3602142002200936021020060d002004101f0b200241306a24002003ad4220862009ad840f0b1010000b200841011015000b41de86c00041331023000b410641011015000b410c41011015000b200341011015000bd31203027f017e087f230041d0086b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b20022001360204200241f0066a2002107c024002400240024002400240024020022802f806450d00200241086a200241f0066a41880110fe011a20024190016a200241086a41880110fe011a200229039001200241a4016a2201200241e4016a2203102502400240024002402002290390012204500d00200241f0066a2004427f7c101d200241f0066a200141201080020d0041002105200228028802210002400240024020024190026a280200220141e0016c41e001490d002001410c6c220610122207450d0b2001210820010d010c020b41042107410021082001450d010b200141e0016c2106200141057441606a21092007210103402002200036028004200241f0066a20024180046a10cd01200141086a200241f0066a41086a280200360200200120022903f0063702002001410c6a2101200041e0016a2100200641a07e6a22060d000b200941057641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001012220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241f0066a200a200610ce010240200b450d00200a101f0b02402005450d002005410c6c21002007210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b02402008450d002007101f0b02402003200241f0066a4120108002450d0041fba1c100410e1008200341201009200241f0066a412010090b2003200241f0066a41201080020d052002418c026a280200210520024190016a41f8006a280200210720024190026a280200210620024198026a20024190016a41f80010fe011a2007200641e0016c6a210020072101024002400240024002402006450d0020024180046a41f8006a2109200241f0066a41086a210c20072101034020024190036a200141f00010fe011a200141f0006a290300210420024188066a200141f8006a41e80010fe011a20044203510d0220024180046a20024190036a41f00010fe011a20024180046a41f0006a2004370300200920024188066a41e80010fe011a200220024180046a3602e005200241f0066a200241e0056a10cd01200c2802002106024020022802f406450d0020022802f006101f0b200241f0066a20024180046a41e00110fe011a200241003602f005200241e0056a200241f0066a2006200241f0056a10cf0120022802e0054101460d05024020022802e4052206450d002006200241e0056a41086a28020010080b200141e0016a22012000470d000b200021010b20012000470d010c020b200141e0016a22012000460d010b200241f8076a2106200241f0066a41f8006a21090340200241f0066a200141f00010fe011a200141f0006a290300210420024190036a200141f8006a41e80010fe011a20044203510d0120024180046a200241f0066a41f00010fe011a20024188066a20024190036a41e80010fe011a200241f0066a20024180046a41f00010fe011a200241f0066a41f0006a2004370300200920024188066a41e80010fe011a2006107e200141e0016a22012000470d000b0b02402005450d002007101f0b102b200229039802107f200241f0066a102f200220024198026a41106a28020022053602800620022802a002210c2002200241f0066a41106a28020022013602840620052001470d0720022802f806210a024002402005450d000240200c200a460d00410021070340200c200741246c22006a2201200a20006a2200105720012d0000220620002d0000470d030240024020064101470d002001410c6a28020022092000410c6a280200470d052009450d01200141046a2802002201200041046a2802002200460d014100210603402001200041201080020d06200141206a2101200041206a2100200641016a22062009490d000c020b0b200141016a200041016a41201080020d040b200741016a22072005490d000c020b0b200521010340200c200c1057200c41246a210c2001417f6a22010d000b0b20024180046a41186a2201420037030020024180046a41106a2200420037030020024180046a41086a22064200370300200242003703800420024180046a100620024190036a41186a200129030037030020024190036a41106a200029030037030020024190036a41086a20062903003703002002200229038004370390030240200241cc026a220120024190036a4120108002450d0041fba1c100410e100820014120100920024190036a412010090b200120024190036a41201080020d0902402005450d00200541246c2100200a21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241fc066a280200450d00200a101f0b0240200241a8026a2802002200450d0020024198026a41086a2802002101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241a4026a280200450d00200241a0026a280200101f0b200241d0086a240042010f0b41a8bfc2001024000b20022802e4052202450d0120024103460d0220024104460d0341b0bec2001024000b4180bec2001024000b41e0bec2001024000b41c8bec2001024000b41f8bec2001024000b20024194046a41013602002002410436029401200241c8bbc200360290012002420137028404200241d0bbc20036028004200220024190016a3602900420024180046a41d8bbc200103a000b4198bec2001024000b200220024180066a3602f005200220024184066a3602e00520024180046a41146a410036020020024190036a41146a41023602002002419c036a410736020020024188066a41146a4103360200200241a4a4c10036029004200242013702840420024190bfc2003602800420024107360294032002420337028c06200241e8c4c20036028806200220024180046a3602a0032002200241e0056a360298032002200241f0056a36029003200220024190036a3602980620024188066a4198bfc200103a000b41c0bfc2001024000b200641041015000b1010000b200041041015000b8b1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041e20110122203450d00200242e20137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410142201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410142201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a2002107802400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110142204450d020c060b200228020021040c060b2001101222040d040b200141011015000b41e20141011015000b410441011015000b410441011015000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c37000020032002102102400240024002400240024002400240024002400240200341f0006a2903004201520d00200341f8006a2903002206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110142204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510142204450d030c070b200228020021040c070b200228020021040c080b2005101222040d040b200541011015000b2001101222040d040b200141011015000b41bcc9c1001024000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a20021022200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a1013024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101422010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410142203450d020c110b4100210b2005450d120c110b2004101222030d0f0b200441011015000b200228020021010c020b200c10122201450d070b2002200c360204200220013602000b200120056a200141026a200a10ff011a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031012220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b41e080c2001024000b200341011015000b200c41011015000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101422030d020c060b200228020021030c020b200110122203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10ff011a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c101f0b200a450d060c050b1010000b200141011015000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10ff011a0b20012003200a6a3602000b02402009450d002008101f0b20002002290300370200200041086a200241086a280200360200200241206a24000bcb03010b7f230041206b22032400024002402002450d0020024102742204101222050d01200441041015000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1014220a0d020c080b200820046a21070c020b200d1012220a450d060b200d210b0b200a20046a200c200810fe011a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a101f0b02402002450d002005101f0b200341206a24000f0b1010000b200d41011015000b871605017f017e037f017e067f230041e0056b22042400200441a0036a200141e00110fe011a20044190026a200441a0036a101c0240024002402004280290024101470d00200041086a2004290294023702002000420137020020032802002200450d020c010b20044190026a41086a290300210520044190016a20044190026a41106a41800110fe011a20042005370308200441086a41086a20044190016a41800110fe01210620044190016a41086a220142003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200129030037030020042004290390013703a00341002101024002400240024002400240024002400240024002400240024002400240200441a0036a411041a4a4c100410041001001417f460d002004410036029002200441a0036a411020044190026a41044100100141016a41044d0d0120042802900221010b41042107200120026a41808080024b0d0d410021080240200441106a410020042903084201511b2201450d002001450d0002400240024020011026220520012903202209520d00410321072001200210bb010d11411310122207450d0d2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c824037000020074113413310142207450d0e200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a29000037000020044190016a41086a220a420037030020044200370390012007413320044190016a1000200441a0036a41086a200a29030037030020042004290390013703a003200441a0036a411041a4a4c100410041001001417f460d012004420037039002200441a0036a411020044190026a41084100100141016a41084d0d0820042903900242017c21052007101f4113210a4113101222070d020c0f0b4101410220092005541b21070c100b420121052007101f4113210a411310122207450d0d0b2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c82403700002007200a413310142207450d0d200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200420053703900220044190016a41086a2201420037030020044200370390012007413320044190016a1000200441a0036a41086a200129030037030020042004290390013703a003200441a0036a411020044190026a410810042007101f0b024020032802002207450d00200341086a28020021012003280204210b4100210c024041af82c000411041a4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0520042802a003210c0b411410122208450d06200841106a41002800bb8140360000200841086a41002900b38140370000200841002900ab81403700002008411441281014220a450d07200a200c360014200441003602a803200442013703a003200420013602900220044190026a200441a0036a1013024002400240024020042802a403220d20042802a803220c6b20014f0d00200c20016a2208200c490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0120042802a003200d200e101422080d020c0d0b20042802a00321080c020b200e10122208450d0b0b2004200e3602a403200420083602a003200e210d0b2008200c6a2007200110fe011a20044190016a41086a220e42003703002004420037039001200a411820044190016a1000200441a0036a41086a200e29030037030020042004290390013703a003200441a0036a41102008200c20016a10040240200d450d002008101f0b200a101f41012108200b450d002007101f0b20042903082105200441a0036a200441306a41e00010fe011a20044190026a200441a0036a41086a41d80010fe011a20044190016a41186a220a200641186a29030037030020044190016a41106a220c200641106a29030037030020044190016a41086a220d200641086a290300370300200420062903003703900141002101024020054201520d00200441a0056a41186a200a290300370300200441a0056a41106a200c290300370300200441a0056a41086a200d29030037030020042004290390013703a005410121010b20044190016a20044190026a41d80010fe011a200441c0056a41186a2206200441a0056a41186a220a290300370300200441c0056a41106a220c200441a0056a41106a220d290300370300200441c0056a41086a220b200441a0056a41086a220e290300370300200420042903a0053703c00520044190026a20044190016a41d80010fe011a20044180056a41186a220f200629030037030020044180056a41106a2206200c29030037030020044180056a41086a220c200b290300370300200420042903c00537038005200441a0036a20044190026a41d80010fe011a200a200f290300370300200d2006290300370300200e200c29030037030020042004290380053703a0054102210602402001450d00200441c0056a41186a200441a0056a41186a290300370300200441c0056a41106a200441a0056a41106a290300370300200441c0056a41086a200441a0056a41086a290300370300200420042903a0053703c005410121060b20044199016a200441c0056a41086a290300370000200441a1016a200441c0056a41106a290300370000200441a9016a200441d8056a290300370000200420063a009001200420042903c005370091012004200441a0036a20044190016a10592004280204210620042802002101200441003a00a003200420014100473a00a103200441a0036a10270240024041af82c000411041a4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0320042802a00341016a210a0c010b4101210a0b20044190016a41086a220c42003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200c29030037030020042004290390013703a00302400240200441a0036a411041a4a4c100410041001001417f460d002004410036029001200441a0036a411020044190016a41044100100141016a41044d0d04200428029001210c0c010b4100210c0b2004200a3602a00341af82c0004110200441a0036a410410042004417f2002200c6a220a200a2002491b3602c00520044190016a41086a220242003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200229030037030020042004290390013703a003200441a0036a4110200441c0056a410410040240024002402001450d0002402006411b470d00200141b99ac100460d02200141b99ac100411b108002450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c120b20004100360204200041086a200636020020004100360200200745200872450d010c110b200041046a4104360200200041013602002007452008720d100b200341046a280200450d0f2007101f0c0f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b412841011015000b1010000b200e41011015000b411341011015000b413341011015000b200a41011015000b413341011015000b2000410136020020002007360204200441386a102020032802002200450d010b200341046a280200450d002000101f200441e0056a24000f0b200441e0056a24000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10fb012100200241206a240020000bc20201037f23004180016b22022400200028020021000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000ba70201017f23004180026b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b2002200136020420024180016a2002107d0240200228028801450d00200241086a20024180016a41f80010fe011a20022903082002411c6a200241dc006a10250240200241186a2802002200450d0020022802102101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241146a280200450d00200241106a280200101f0b20024180026a240042010f0b2002411c6a4101360200200241043602fc01200241e8bbc2003602f8012002420137020c200241d0bbc2003602082002200241f8016a360218200241086a41d8bbc200103a000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410122203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410142205450d020c040b200228021021050c040b2004101222050d020b200441011015000b410441011015000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41013a0000410e200241106a10d4014100210302400340200341fccfc1006a28020020034180d0c1006a280200200241106a10d5010240024002400240024002400240024002400240024002400240024002400240024020034184d0c1006a2802004101470d0020034188d0c1006a2802002003418cd0c1006a280200200241106a10d50120034190d0c1006a22062802004102460d010c020b200220034188d0c1006a28020011020020022802002002280204200241106a10d50120034190d0c1006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101422060d020c040b200228021021060c020b200710122206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341a0d0c1006a22062802004102470d020c030b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101422070d020c0d0b200228021021070c020b200810122207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d601200341a0d0c1006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101422070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101422060d050c0a0b200228021021060c050b200810122207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d701200341b0d0c1006a22062802004102460d030c080b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341b0d0c1006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101422060d020c070b200228021021060c020b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341f007470d050c060b200841011015000b200841011015000b200741011015000b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101422070d020c070b200228021021070c020b200810122207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d801200341c8006a220341f007470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101302400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810142205450d020c050b2002280210220520046a2006200310fe011a200420036a21032007450d060c050b2008101222050d030b200841011015000b1010000b200841011015000b2002200836021420022005360210200520046a2006200310fe011a200420036a21032007450d010b2006101f0b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410142203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210142203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2002101222030d0b0b200241011015000b200210122203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101422030d020c070b200128020021030c020b200210122203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011015000b200441011015000b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510142204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310142204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101422040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101422040d0a0c0d0b2005101222040d100b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0a0b200341011015000b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510122204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101422040d020c060b200228020021040c020b200310122204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310142204450d020c040b200228020021040c040b2003101222040d020b200341011015000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110fe011a0bfb0f01097f230041206b2202240002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d01200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c030b2009200041c0006a280200200110ed012004200541cc006a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d00200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c020b2009200041c0006a280200200110ed012004200541cc006a2205470d000b0b200241206a24000f0b1010000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000be20301017f230041e0056b22022400024002402001450d00200220003602080c010b200241a4a4c1003602080b2002200136020c200241f0036a200241086a101602400240024002400240024020022903e0044203510d00200241106a200241f0036a41e00110fe011a200241f0016a200241106a41e00110fe011a2002200241f0016a3602f003200241d0036a200241f0036a10cd0120022802d8032101200241f0036a200241f0016a41e00110fe011a200241d8056a20022802d803360200200220022903d0033703d005200241e0036a200241f0036a2001200241d0056a10cf010240024020022802e0034101470d004280828898f01f20022802e403410374ad88a7210041011012210141010d010c050b20022802e40341004721004101101221014100450d040b2001450d01200141013a000020014101410210142201450d020c040b20024184026a410136020020024104360214200241f0bbc200360210200242013702f401200241d0bbc2003602f0012002200241106a36028002200241f0016a41d8bbc200103a000b410141011015000b410241011015000b2001450d01200141003a0000200141014102101422010d00410241011015000b200120003a0001200241e0056a24002001ad428080808020840f0b410141011015000bf71203027f017e0a7f230041c0016b22022400102b20024180016a41086a22034200370300200242003703800141dd81c000410d20024180016a1000200241086a41086a20032903003703002002200229038001370308420021040240024002400240024002400240024002400240024002400240200241086a411041a4a4c100410041001001417f460d002002420037038001200241086a411020024180016a41084100100141016a41084d0d0120022903800121040b2004107f200241b0016a41086a22034200370300200242003703b001418080c0004115200241b0016a1000200241a0016a41086a2003290300370300200220022903b0013703a0010240024002400240024002400240200241a0016a411041a4a4c100410041001001417f460d0041002105200241003602084104210641012107200241a0016a4110200241086a41044100100141016a41044d0d0920022802082208450d012008ad420c7e2204422088a70d0f2004a722034100480d0f200310122206450d0c20062109410021050340411410122203450d03200341106a41002800bb8140360000200341086a41002900b38140370000200341002900ab81403700002003411441281014220a450d04200a200536001420024180016a41086a220b42003703002002420037038001200a411820024180016a1000200241086a41086a200b290300370300200220022903800137030802400240200241086a411041a4a4c100410041001001417f460d0020024210370284012002200241086a36028001200220024180016a10282002280200450d0920022802042203417f4c0d07024002402003450d0020031076220c450d0d200b200b280200220d20034100200228028001200228028401200c2003200d1001220d200d417f461b220d200d20034b1b220d6a360200200d2003460d010c0a0b4101210c20022802800120022802840141014100200b28020010011a41002003470d090b200b42003703002002420037038001200a411820024180016a1000200241b0016a41086a200b29030037030020022002290380013703b001200241b0016a41101005200c0d010b4101210c410021030b200a101f200941086a2003360200200941046a20033602002009200c3602002009410c6a21092008200541016a2205470d000b41002107200821050c010b4100210541012107410421060b410421084100210a4100210d02402005410c6c2203410c490d002003410c6e220d41037422094100480d0e200910122208450d0a0b0240200620036a220c2006460d004100210a200821032006210903402009280200210b200341046a200941086a2802003602002003200b360200200341086a2103200a41016a210a2009410c6a2209200c470d000b0b20024180016a2008200a10ce010240200d450d002008101f0b02402005450d002005410c6c21092006210303400240200341046a280200450d002003280200101f0b2003410c6a2103200941746a22090d000b0b024020070d002006101f0b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a22034200370300200242003703b00141ea81c0004115200241b0016a1000200241a0016a41086a220a2003290300370300200220022903b0013703a001200241a0016a4110200241086a41201004200241086a102f200241003602a801200242013703a001412010122203450d08200242a080808080043702a401200220033602a0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241a0016a102102400240024020022802a4012209200a280200220b6b41204f0d00200b41206a2203200b490d102009410174220a20032003200a491b220c4100480d102009450d0120022802a0012009200c1014220a450d020c0e0b200b41206a210320022802a001210a0c0e0b200c1012220a0d0c0b200c41011015000b411441011015000b412841011015000b100f000b2003450d00200c101f0b41de86c00041331023000b41de86c00041331023000b200341011015000b41de86c00041331023000b412041011015000b200941041015000b200341041015000b2002200c3602a4012002200a3602a001200c21090b200241a0016a41086a220c2003360200200a200b6a220b41086a200241c4006a290200370000200b41106a200241cc006a290200370000200b41186a200241d4006a290200370000200b200229023c3700000240200920036b411f4b0d00200341206a220b2003490d0120094101742205200b200b2005491b220b4100480d010240024002402009450d00200a2009200b1014220a450d010c020b200b1012220a0d010b200b41011015000b2002200b3602a4012002200a3602a0010b200c200341206a360200200a20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a28020022073602800120024180016a200241a0016a101302402007450d00200741246c2105200e210303400240024020032d00004101470d002003410c6a2802002109200341046a280200210a4100210b0c010b4101210b200341016a210a0b20024180016a41086a20093602002002200a360284012002200b36028001200241b0016a20024180016a101120022802b001210b024002400240024020022802a401220c200241a0016a41086a220828020022096b200241b0016a41086a280200220a4f0d002009200a6a220d2009490d06200c4101742206200d200d2006491b220d4100480d06200c450d0120022802a001200c200d1014220c0d020c070b20022802a001210c0c020b200d1012220c450d050b2002200d3602a4012002200c3602a0010b20082009200a6a220d360200200c20096a200b200a10fe011a024020022802b401450d00200b101f0b200341246a21032005415c6a22050d000b02402007450d00200741246c2109200e21030340024020032d0000450d00200341086a280200450d00200341046a280200101f0b200341246a21032009415c6a22090d000b0b200241146a280200450d040c030b200241a8016a280200210d20022802a001210c200241146a2802000d020c030b1010000b200d41011015000b200e101f0b200241c0016a2400200dad422086200cad840ba90a03017f037e087f230041f0016b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b20022001360204200241286a200210dc010240024002402002280228450d00200241086a41086a2201200241286a41086a220028020036020020022002290328370308200241186a41086a20012802003602002002200229030837031820024180016a200241186a10dd012002280280014101460d0120024180016a41086a2201290300210320014200370300200242003703800141f594c000410d20024180016a100020002001290300370300200220022903800137032842002104024002400240200241286a411041a4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d0120022903800121040b20024180016a41086a220142003703002002420037038001418295c000411520024180016a1000200241286a41086a2001290300370300200220022903800137032802400240200241286a411041a4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d03200229038001210541e001210041e00110122201450d010c060b4205210541e001210041e001101222010d050b200041081015000b41de86c00041331023000b41de86c00041331023000b20024194016a410136020020024104360274200241f8bbc2003602702002420137028401200241d0bbc200360280012002200241f0006a3602900120024180016a41d8bbc200103a000b41d99ac000412820022802840120024180016a41086a2802001037000b200120024180016a41f00010fe0122064202370370200641003a00880120064202370390012006200229037037037820064180016a200241f0006a41086a29030037030020062002280069360089012006418c016a200241e9006a41036a28000036000020062003200520047c220420042003541b37039801200620022903283703a001200641a8016a200241286a41086a290300370300200641b0016a200241386a290300370300200641b8016a200241c0006a290300370300200641c0016a200241c8006a290300370300200641c8016a200241d0006a290300370300200641d0016a200241d8006a290300370300200641d8016a200241e0006a290300370300200228021822072108200228021c2209210a0340200841086a210020082f0106220c4103742101417f210b02400240024003402001450d01419c8cc00020004108108002220d450d03200141786a2101200b41016a210b200041086a2100200d417f4a0d000b200a0d010c020b200c210b200a450d010b200a417f6a210a2008200b4102746a41e4016a28020021080c010b0b20072009200228022010c8012002410036023020024201370328200241013602800120024180016a200241286a1013200228022c210b200228023021012002200636027020024180016a200241f0006a10cd012002280280012108024002400240024002400240200b20016b200228028801220d4f0d002001200d6a22002001490d03200b410174220a20002000200a491b220a4100480d03200b450d012002280228200b200a1014220b450d020c040b2001200d6a21002002280228210b0c040b200a1012220b0d020b200a41011015000b1010000b2002200a36022c2002200b3602280b200241306a2000360200200b20016a2008200d10fe011a0240200228028401450d002008101f0b20064188016a107e2006101f200241f0016a24002000ad422086200bad840bec0d06027f017e0a7f017e067f017e230041a0026b22022400200241186a200110170240024002400240024002400240024002400240024002402002280218450d00200228021c2203ad2204421d88a70d0a2004420386a72205417f4c0d0a024002400240024002400240024002400240024002400240024002402005450d00200510122206450d022003450d010c030b4101210620030d020b410021054100210b2006450d0c0c020b200541011015000b200141046a210741002108410021094100210a2003210b034020024200370340200241c0006a2001280200220c2007280200220541082005410849220d1b220e10fe011a20072005200e6b3602002001200c200e6a360200200d0d02200a41016a2105200229034021040240200a200b470d002008200520052008491b220bad420386220f422088a70d13200fa7220e4100480d130240200a450d0020062009200e101422060d010c070b200e10122206450d060b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0a0b2005ad422086200bad84210f200241106a200110172002280210450d0720022802142203ad420c7e2204422088a70d132004a72205417f4c0d132005450d0120051012220c450d042003450d020c050b200b0d070c080b4104210c20030d030b410021094100210b200c450d040c030b200e41011015000b200541041015000b410021084100210a4100210e2003210b0340200241086a2001101702400240024002402002280208450d00200228020c2205417f4c0d12024002402005450d00200510762207450d0320072001280200200141046a220d2802002209200520092005491b220910fe011a200d28020022102009490d04200d201020096b3602002001200128020020096a36020020092005470d010c050b4101210741002005460d040b2005450d002007101f0b0240200e450d00200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b200b450d05200c101f0c050b200541011015000b20092010101a000b200e41016a21090240200e200b470d002008200920092008491b220bad420c7e2204422088a70d0c2004a7220d4100480d0c0240200e450d00200c200a200d1014220c0d010c0e0b200d1012220c450d0d0b200c200a6a220e2007360200200e41046a2005ad2204422086200484370200200841026a2108200a410c6a210a2009210e20092003490d000b200c450d010b2009200f422088a7470d0320024200370224200241a893c100360220200c2009410c6c6a211020094103742205450d04200620056a2111200241206a41086a2112200241d4006a2113200241d0006a2114200c2108200621030340200822052010460d062005410c6a210820052802002215450d0720052902042104200220032900002216370330024002402002280220220e41a893c100460d00200228022421070c010b41e4011012220e450d0d41002107200e41003b0106200e4100360200200e41086a200241c0006a41dc0110fe011a200241003602242002200e3602200b200341086a210302400340200e41086a210a200e2f0106220d410374210541002109024003402005450d01200241306a200a41081080022201450d03200541786a2105200941016a2109200a41086a210a2001417f4a0d000b2009417f6a210d0b02402007450d002007417f6a2107200e200d4102746a41e4016a280200210e0c010b0b2013201637020020142012360200200241c0006a410c6a200d360200200241c0006a41086a200241206a3602002002200e360244200241003602402002200437023420022015360230200241c0006a200241306a10c90120032011470d010c080b200e2009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d002005101f0b20032011470d000c070b0b200fa7450d010b2006101f0b200041003602000c0a0b2000410036020002402009450d002009410c6c210a200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b0240200b450d00200c101f0b200fa7450d092006101f200241a0026a24000f0b200c2108200fa70d020c030b201021080b200fa7450d010b2006101f0b024020082010460d00034020082802002205450d010240200841046a280200450d002005101f0b2008410c6a22082010470d000b0b0240200b450d00200c101f0b200241c0006a41086a2205200241206a41086a28020036020020022002290320370340200041086a200528020036020020002002290340370200200241a0026a24000f0b1010000b200d41041015000b41e40141041015000b100f000b200241a0026a24000bad0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141aba0c100200641081080022208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2201450d00200128020821062001280200210120024200370308200241086a200120064108200641084922071b10fe011a20070d01200041086a2002290308370300410021010c030b200041b3a0c100360204200041086a41283602000c010b200041dba0c100360204200041086a41293602000b410121010b20002001360200200241106a24000bac3a190c7f017e037f017e097f027e017f017e077f037e027f017e057f027e027f037e067f027e037f017e0c7f027e0e7f027e107f230041d0026b22022400024002402001450d00200220003602100c010b200241a4a4c1003602100b20022001360214200241f0006a200241106a107c0240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10dc012002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241a893c100360250200241d0006a41086a210a2004450d0241e001210b2008200441e0016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f2120410221214178212241f594c000212341a4a4c100212441152125418295c0002126423c2127428080808070212842252129418801212a41ff01212b427f212c41de9fc100212d41e000212e4107212f20082130410021310c030b2002412c6a41013602002002410436025420024180bcc2003602502002420137021c200241d0bbc2003602182002200241d0006a360228200241186a41d8bbc200103a000b20024184016a41013602002002410436025420024180bcc20036025020024201370274200241d0bbc2003602702002200241d0006a36028001200241f0006a41d8bbc200103a000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b412f411e2072205c410c6c6a41a07f4622451b214641a48cc0004184a1c10020451b21450c010b02400240024002400240024020310e06000501020304040b2030200d6a290300200e520d13024020302d0088012201450d002001202b712201450d230c540b203029039001200e520d212030290398012132200241f0006a200241c0006a10dd010240024020022802704101470d00200f3502002133200228027421344101213520112d0000450d010c0d0b200f290300213642002133200f42003703002002420037037020232010200241f0006a10002009200f290300370300200220022903703703180240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0a200229037021330b200f42003703002002420037037020262025200241f0006a10002009200f29030037030020022002290370370318024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0d200229037021372032203620277c580d020c010b420521372032203620277c580d010b203820288320298421334101213541b49ac000213420112d0000450d010c0d0b410021352032203720337c22335a0d2120112d00000d0c0b024002402035450d0020022802502002280254200a28020010c80120024200370254200241a893c100360250200220123703180c010b2002280250213920022012370318203941a893c100460d002002280254213a0c200b201310122239450d0a4100213a203941003b010620394100360200203941086a200241f0006a201410fe011a20024100360254200220393602500c1e0b20482050204e204f6a22012001204e491b6a22012048490d4e2048204f742200200120012000491b2249ad2051862232205288a70d4e2032a722012053480d4e02402048450d00204a204820547420011014224a0d0f0c060b20011012224a450d05410321310c170b204a20482054746a204d3602002048204f6a2148204e450d270240204c20462f01064f0d002046204c2055746a20566a214d204c204f6a214c204e20506a214e20492048460d0c0c0d0b41012101024020462f01042200204628020022462f0106490d004101210103402001204f6a210120462f01042200204628020022462f01064f0d000b0b204620002055746a20566a214d204620002054746a20576a28020021464100214c2001204f460d25204f20016b2101034020462802e40121462001204f6a22010d000c260b0b20592060205f20586a22012001205f491b6a22012059490d4c20592058742200200120012000491b225aad2061862232206288a70d4c2032a722012063480d4c02402059450d00205b205920647420011014225b0d100c050b20011012225b450d04410521310c190b205b20592064746a205e360200205920586a21590240205f450d000240205d20452f01064f0d002045205d20656c6a20666a215e205d20586a215d205f20606a215f205a2059460d0e0c0f0b41012101024020452f01042200204528020022452f0106490d00410121010340200120586a210120452f01042200204528020022452f01064f0d000b0b2045200020656c6a20666a215e204520002064746a20676a28020021454100215d20012058460d23205820016b2101034020452802e4012145200120586a22010d000c240b0b205b215c2048413f4b0d370c280b2069280200227220686a210020722f0106223e206b7421014100215c024003402001450d01206f20002068108002223d450d11200120706a2101205c20716a215c200020686a2100203d206c4a0d000b205c206c6a213e0b0240206a450d00206a206c6a216a2072203e206d746a206e6a2169410121310c110b412f214641a48cc00021450b2002204636026420022045360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c701200228020022460d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c220b200141041015000b200141041015000b41de86c00041331023000b41de86c00041331023000b41e40141041015000b41e890c100412241b790c10041311037000b41e890c1004122204620022802041037000b410221310c080b410321310c080b410321310c090b410421310c090b410521310c090b410521310c0a0b410021010c460b410121010c450b410221010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b4100213c0c040b4100213c0c040b410021010c040b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b2030202a6a2d0000202b7122010d34410121010c060b203029039001200e520d34203029039801213f200f42003703002002420037037020262025200241f0006a10002009200f290300370300200220022903703703180240024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d02200229037021320c010b420521320b202c203220327c224020402032541b2240500d01200241c0006a2141200228024421420c030b41de86c00041331023000b41bccac1001024000b0240024002400240024002400240024002400240024002400240203c0e020001010b203941086a210020392f0106223b20157421014100213d024003402001450d01200241186a20004108108002223e450d08200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a213b0b0240203a450d00203a20206a213a2039203b2021746a20136a28020021394100213c0c0e0b201620123702002018200a360200201a203b360200200f200241d0006a360200200220393602742002201b3602702009201b3602002002201c3703184101101221010240024002400240024002402035450d002001450d0d200141013a00002002201d37021c2002200136021820022033a72201360260200241e0006a200241186a1013200228021c223d200928020022006b20014f0d01200020016a223e2000490d40203d410174223b203e203e203b491b223e201b480d40203d450d022002280218203d203e1014223d0d030c0e0b2001450d0e2001201b3a00002002201d37021c2002200136021820014101201e10142201450d0f200120333700012002201f37021c200220013602180c040b2002280218213d0c020b203e1012223d450d0b0b2002203e36021c2002203d3602180b2009200020016a360200203d20006a2034200110fe011a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10c901201120353a0000200241d0006a20196a201b3a00002033213820350d01410021010c100b2041280200223b41086a2100203b2f0106224320157421014100213d02400240024003402001450d01202d20004108108002223e450d02200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a21430b2042450d01204220206a2142203b20432021746a20136a21414101213c0c100b203b202e6a203d20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10fe011a2001202f4d0d02203f20408020022903702244520d040c3f0b204442808080807083421c842132418fa0c10021460c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b204442808080807083422984213241e69fc10021460b2032a721450c010b4131214541eb8bc00021460b2002204536026420022046360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c701200228020822460d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41e890c1004122418a90c100412d1037000b410141011015000b203e41011015000b410141011015000b410941011015000b41e890c10041222046200228020c1037000b4101213c0c010b410221010c020b410221010c010b410221010c000b0b205f20606a215f024002400240205a2059470d00410421310c010b410521310c010b410221010c340b410221010c330b204e20506a214e02400240024020492048470d00410221310c010b410321310c010b410221010c330b410221010c320b20022802402002280244200228024810c80102402006450d00200641246c2145200321460340024020462d0000450d00204641086a280200450d00204641046a280200101f0b204641246a21462045415c6a22450d000b0b02402007450d002003101f0b02402004450d00200441e0016c214520084188016a214603402046107e204641e0016a2146204541a07e6a22450d000b0b02402005450d002008101f0b410110122246450d05204620022d007c3a000020464101410210142247450d06204720022d007d3a0001200228027022452146024020022802742200450d002045214620002101034020462802e40121462001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782231450d002031417f6a214820462f0106450d01204641086a213d410121000c020b410021494104214a4104214b4100214820000d030c040b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a213d204620004102746a41e8016a28020021464100210020014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b417f204841016a220120012048491b2249ad2232421e88a70d042032420286a72201417f4c0d04024002400240024002402001450d0020011012224a450d0d204a203d3602002048450d020c010b4104214a4104203d3602002048450d010b200020462f01064f0d01200041016a214c204620004103746a41086a214d0c020b410121480c020b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a214d204620004102746a41e8016a28020021464100214c20014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b2031417e6a214e4101214f417f215042022151422021524100215341022154410321554108215641e80121574101214820494101470d0b0c0a0b204a214b2002280270214520022802742200450d010b20002101034020452802e40121452001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002258450d002058417f6a215920452f0106450d01204541e0006a2131410121000c020b4100215a4104215b4104215c410021592048413f4d0d020c110b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a2131204520004102746a41e8016a28020021454100210020014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b417f205941016a220120012059491b225aad2232421e88a70d012032420286a72201417f4c0d01024002400240024002402001450d0020011012225b450d0b205b20313602002059450d020c010b4104215b410420313602002059450d010b200020452f01064f0d01200041016a215d20452000410c6c6a41e0006a215e0c020b41012159205b215c2048413f4b0d110c020b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a215e204520004102746a41e8016a28020021454100215d20014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b2058417e6a215f41012158417f216042022161422021624100216341022164410c216541e000216641e801216741012159205a4101470d0a0c090b41012104410110122258450d03205820484102743a000020484102742245450d140c0f0b100f000b410141011015000b410241011015000b410141011015000b200141041015000b200141041015000b410221310c030b410321310c030b410421310c030b410521310c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402048418080014f0d0041022104410210122258450d02205820484102744101723b0000204841027422450d010c060b024020484180808080044f0d0041042104410410122258450d0320582048410274410272360000204841027422450d010c060b410110122246450d03204641033a00004105210420464101410510142258450d042058204836000120484102742245450d050b410020046b21462004214802400340204b28020021010240200420466a41074b0d00204841086a22002048490d152004410174224f20002000204f491b22004100480d15024002402004450d00205820042000101422580d010c040b200010122258450d030b200021040b204b41046a214b205820486a2001290000370000204641786a2146204841086a21482045417c6a22450d000b2059413f4b0d070c060b200041011015000b410241011015000b410441011015000b410141011015000b410541011015000b200421482059413f4b0d010b4101214541011012224b450d08204b20594102743a00004101210120590d010c020b02402059418080014f0d004102214541021012224b450d07204b20594102744101723b00000c010b024020594180808080044f0d004104214541041012224b450d06204b20594102744102723600000c010b410110122246450d04204641033a0000410521452046410141051014224b450d03204b20593600010b2059410274214f204521010340205c28020022462802002159024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020462802082246413f4b0d0020452001470d01204541016a22012045490d2120454101742200200120012000491b22004100480d212045450d05204b204520001014224b0d060c0f0b2046418080014f0d01204520016b41014b0d02200141026a22002001490d2020454101742268200020002068491b22004100480d202045450d0b204b204520001014224b0d0c0c0f0b204521000c050b20464180808080044f0d01204520016b41034b0d05200141046a22002001490d1e20454101742268200020002068491b22004100480d1e024020450d0020001012224b450d100c070b204b204520001014224b0d060c0f0b204521000c090b20452001470d05204541016a22012045490d1c20454101742200200120012000491b22004100480d1c0240024020450d0020001012224b450d100c010b204b204520001014224b450d0f0b204521010c060b20001012224b450d090b204521010b204b20016a20464102743a00002000200141016a22016b20464f0d060c0c0b204521000b204b20016a20464102744102723600002000200141046a22016b2046490d0a0c040b204521000b204b20016a41033a000002402000200141016a22456b41034b0d00204541046a22682045490d1620004101742231206820682031491b22684100480d16024002402000450d00204b200020681014224b0d010c080b20681012224b450d070b206821000b204b20456a20463600002000200141056a22016b2046490d080c020b20001012224b450d030b204b20016a20464102744101723b00002000200141026a22016b2046490d060b200021450c060b200041011015000b200041011015000b206841011015000b200041011015000b200041011015000b200120466a22452001490d0c20004101742268204520452068491b22454100480d0c02402000450d00204b200020451014224b0d010c040b20451012224b450d030b205c41046a215c204b20016a2059204610fe011a200120466a2101204f417c6a224f0d000b0b024002400240200420486b20014f0d00204820016a22462048490d0c20044101742200204620462000491b22004100480d0c2004450d0120582004200010142258450d020c090b204820016a2146205820486a204b200110fe011a2045450d0a0c090b2000101222580d070b200041011015000b204541011015000b410541011015000b410141011015000b410441011015000b410241011015000b410141011015000b20002104205820486a204b200110fe011a2045450d010b204b101f0b0240205a450d00205b101f0b02402049450d00204a101f0b02402046450d00204641026a22452046490d0120454104204541044b1b22014100480d0120474102200110142247450d02204741026a2058204610fe011a2004450d040c030b204641026a2145204741026a2058204610fe011a20040d020c030b1010000b200141011015000b2058101f0b20022802702002280274200241f8006a28020010c801200241d0026a24002045ad4220862047ad840f0b20014101470d002030280290012015460d010b2030200b6a2230200c470d01410021010c050b200241c0006a21692002280244216a410821684103216b417f216c4102216d41e401216e419c8cc000216f41782170410121710c010b410021310c010b410121310c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a220342003703002002420037033041cc81c0004111200241306a1000200241206a41086a2003290300370300200220022903303703200240024002400240200241206a411041a4a4c100410041001001417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010012203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010122203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101222030d020b200441011015000b41de86c00041331023000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bfb1404047f017e087f017e230041c0076b22022400024002402001450d00200220003602000c010b200241a4a4c1003602000b20022001360204200241e0056a20021016024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903d0064203510d00200241086a200241e0056a41e00110fe011a200241e8016a200241086a41e00110fe011a2002200241e8016a3602d004200241e0056a200241d0046a10cd0120022802e8052103024020022802e405450d0020022802e005101f0b200241e0056a200241e8016a41e00110fe011a200241d0046a200241e0056a101c024002400240024002400240024020022802d0044101470d0020022802d404210120022802d8042200411a460d0120004115470d024102210441f6012100200141949bc100460d0f200141949bc10041151080020d020c0f0b200241c8036a200241d0046a41086a41880110fe011a410021040240200241c8036a41086a410020022903c8034201511b2201450d002001450d00410321002001200310bb01450d03410021040c0e0b4176416c20011b21000c0d0b41002100200141a99bc100460d0241002104200141a99bc100411a108002450d0d0b4100210441810121000c0c0b200141206a410020011b210c2001102621064101210041002104200c290300220f2006540d0a4102210041022104200f20064280027c560d0a2006200f5a0d014100210b41002105410021074100210e410421090340412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142200450d062000200637002002402007200e470d00200741016a220a2007490d20200b200a200a200b491b220ead420c7e220f422088a70d20200fa7220a4100480d2002402007450d0020092005200a101422090d010c090b200a10122209450d080b200920056a220a2000360200200a41046a42c08080808005370200200b41026a210b2005410c6a2105200741016a2107200642017c2206200c290300220f540d000c030b0b410021040c0a0b41042109410021074100210e0b410c1012220d450d04412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142201450d062003ad21062001200f370020200d42c08080808005370204200d2001360200200241f8036a1020200241003602e805200242013703e00541012104410121014101101222000d090c140b200241fc016a41013602002002410436020c20024188bcc200360208200242013702ec01200241d0bbc2003602e8012002200241086a3602f801200241e8016a41d8bbc200103a000b412041011015000b41c00041011015000b200a41041015000b410c41041015000b412041011015000b41c00041011015000b200241f8036a10200b200241003602e805200242013703e005024020044101460d0020044102470d02410110122201450d0d200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41023a000020022802e40520032802002201470d04200141016a22032001490d1320014101742205200320032005491b22054100480d132001450d0820022802e0052001200510142203450d090c160b41012101410110122200450d0b0b200241e0056a41086a22032003280200220520016a360200200220013602e405200220003602e005200020056a20013a000020022802e4052200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802e0052000200110142200450d050c0f0b410110122201450d0b200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41003a000020022802e40520032802002201470d02200141016a22032001490d1020014101742205200320032005491b22054100480d102001450d0720022802e0052001200510142203450d080c0c0b20022802e00521000c0e0b20022802e00521030c120b20022802e00521030c0a0b2001101222000d0a0b200141011015000b2005101222030d0d0b200541011015000b2005101222030d040b200541011015000b200120011015000b410141011015000b410141011015000b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000c070b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2205200141086a360200200020016a2006370000200220073602e801200241e8016a200241e0056a101302400240024002402007450d0020092007410c6c6a21082009210303402003280200210a2002200341086a28020022013602e801200241e8016a200241e0056a1013024002400240024020022802e405220b200528020022006b20014f0d00200020016a220c2000490d09200b4101742200200c200c2000491b22004100480d09200b450d0120022802e005200b20001014220b0d020c060b20022802e005210b0c020b20001012220b450d040b200220003602e4052002200b3602e005200528020021000b2005200020016a360200200b20006a200a200110fe011a2003410c6a22032008470d000b0b200241013602e801200241e8016a200241e0056a1013200d280200210b2002200d28020822013602e801200241e8016a200241e0056a101302400240024020022802e4052203200528020022006b20014f0d00200020016a22052000490d0620034101742200200520052000491b22004100480d062003450d0120022802e0052003200010142203450d020c040b20022802e00521030c040b2000101222030d020b200041011015000b200041011015000b200220003602e405200220033602e005200241e8056a28020021000b200241e0056a41086a2205200020016a360200200320006a200b200110fe011a02400240024020022802e4052200200528020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802e0052000200110142200450d020c040b20022802e00521000c040b2001101222000d020b200141011015000b1010000b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2203200141086a360200200020016a427f3700002003280200210320022802e005210520044101470d0302402007450d002007410c6c21002009210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b0240200e450d002009101f0b0240200d41046a280200450d00200d280200101f0b200d101f0c030b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000b200241e8056a280200210320022802e00521050b200241c0076a24002003ad4220862005ad840be90104027f017e017f017e230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a20032903003703002002200229031037030002400240024002402002411041a4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d022002290310210441082105410810122203450d010c030b42052104410821054108101222030d020b200541011015000b41de86c00041331023000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840bc90202027f017e23004180016b22022400200028020021000240024002400240200128020022034110710d002000290300210420034120710d012004200110e501210020024180016a240020000f0b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d0120014182a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d0120014182a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b2000418001101a000b2000418001101a000b860605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce0042001081022002200229031022072006290300220842f0b17f427f108202200241206a20006a2203417c6a200520022903007ca7220941e4006e220a41017441d6a4c1006a2f00003b00002003417e6a200a419c7f6c20096a41017441d6a4c1006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b2007a7220341e3004a0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d0320014182a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d0320014182a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b412721002005a7220341e3004c0d030b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff037141017441d6a4c1006a2f00003b0000200941094a0d030c040b2000418001101a000b2000418001101a000b2003220941094c0d010b200241206a2000417e6a22006a200941017441d6a4c1006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141a4a4c1004100200241206a20006a412720006b10e4012100200241a0016a240020000bc80601077f20002802002205410171220620046a2107024002400240024020054104710d0041002101412b418080c40020061b210620002802084101460d010c020b4100210902402002450d002002210a200121080340200920082d000041c00171418001466a2109200841016a2108200a417f6a220a0d000b0b200720026a20096b2107412b418080c40020061b210620002802084101470d010b02400240024002400240024002400240024002402000410c6a280200220920074d0d0020054108710d01200920076b2108410120002d0030220920094103461b2209410371450d0220094102460d034100210b200821090c040b41012108200020062001200210f6010d0a2000280218200320042000411c6a28020028020c1101000f0b41012108200041013a003020004130360204200020062001200210f6010d09200920076b21084101200041306a2d0000220920094103461b2209410371450d0320094102460d0441002107200821090c050b410021092008210b0c010b20084101762109200841016a410176210b0b417f2108200041046a210a200041186a21072000411c6a210502400340200841016a220820094f0d012007280200200a2802002005280200280210110000450d000b41010f0b200041046a280200210a41012108200020062001200210f6010d06200041186a2209280200200320042000411c6a220228020028020c1101000d0620092802002100417f2109200228020041106a21020340200941016a2209200b4f0d04410121082000200a2002280200110000450d000c070b0b41002109200821070c010b20084101762109200841016a41017621070b417f2108200041046a210a200041186a21022000411c6a210102400340200841016a220820094f0d012002280200200a2802002001280200280210110000450d000b41010f0b200041046a280200210a41012108200041186a2209280200200320042000411c6a220228020028020c1101000d0320092802002100417f2109200228020041106a21020340200941016a220920074f0d02410121082000200a2002280200110000450d000c040b0b41000f0b41000f0b41012108200020062001200210f6010d002000280218200320042000411c6a28020028020c1101000f0b20080bd20203037f017e027f230041306b220224004127210302400240024020004290ce00540d00412721030340200241096a20036a2204417c6a200020004290ce0080220542f0b17f7e7ca7220641e4006e220741017441d6a4c1006a2f00003b00002004417e6a2007419c7f6c20066a41017441d6a4c1006a2f00003b00002003417c6a2103200042ffc1d72f5621042005210020040d000b2005a7220441e3004c0d020c010b20002205a7220441e3004c0d010b200241096a2003417e6a22036a2005a7220641ffff037141e4006e2204419c7f6c20066a41ffff037141017441d6a4c1006a2f00003b00000b02400240200441094a0d00200241096a2003417f6a22036a200441306a3a00000c010b200241096a2003417e6a22036a200441017441d6a4c1006a2f00003b00000b200141a4a4c1004100200241096a20036a412720036b10e4012103200241306a240020030b960201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141d0c7c2006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141e8c9c2006a2d0000220141c9004b0d03200141037441b0b2c1006a21010c010b2000410c7641706a22014180024f0d03200141c8d1c2006a2d00004106742000410676413f7172220141ff034b0d0420014180b7c1006a2d0000220141364b0d0520014103744180bbc1006a21010b200129030042012000413f71ad86834200520f0b41c8d3c200200141e0071048000b41d8d3c200200141ca001048000b41e8d3c20020014180021048000b41f8d3c20020014180041048000b4188d4c200200141371048000b2701017f2000280200220128020020012802042000280204280200200028020828020010e801000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c200441a4a4c1004184a7c10020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4104360200200441e4006a4104360200200441c8006a41146a4108360200200441d4006a4109360200200441306a41146a4105360200200420023602582004410136024c20044205370234200441e8c6c2003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a4190c7c200103a000b20042002200320081b360228200441c8006a41146a4104360200200441d4006a4104360200200441306a41146a41033602002004410136024c20044203370234200441f8c5c2003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a4190c6c200103a000b200441e4006a4104360200200441c8006a41146a4104360200200441d4006a4101360200200441306a41146a41043602002004410136024c20044204370234200441a0c6c2003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41c0c6c200103a000b41d0c6c2001024000b130020004102360204200041f0bfc2003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242013700000f0b410841011015000b130020004107360204200041ae9cc1003602000b130020004104360204200041c0c1c2003602000be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510142204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310142204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101422040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101422040d0a0c0e0b2005101222040d110b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0b0b200341011015000b200310122204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510122204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101422040d020c070b200228020021040c020b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d501200041086a22002001470d000b0b0bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d4012000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d4012000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000b0b0b2700200028020c200041106a2802001008200041146a350200100c200041186a350200100c00000b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10fe011a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010fd011a0b20010b0c002000350200200110e5010b0d0042f18afdd3f88ff29bfb000b5501017f024002402001418080c400460d0041012104200028021820012000411c6a2802002802101100000d010b02402002450d002000280218200220032000411c6a28020028020c1101000f0b410021040b20040b8008010b7f200028021021030240024002400240024002400240024002400240200028020822044101470d0020030d010c020b2003450d070b02402002450d00200120026a2105200041146a280200417f732106410021072001210320012108024002400340200341016a21090240024020032c0000220a4100480d00200a41ff0171210a20092103200641016a22060d010c030b02400240024020092005460d0020092d0000413f71210b200341026a22032109200a411f71210c200a41ff0171220a41e001490d010c020b4100210b20052103200a411f71210c200a41ff0171220a41e0014f0d010b200b200c41067472210a20092103200641016a22060d010c030b02400240024020032005460d00200341016a2209210d20032d0000413f71200b41067472210b200a41f001490d010c020b2005210d4100200b41067472210b200a41f0014f0d010b200b200c410c7472210a20092103200641016a22060d010c030b02400240200d2005460d00200d41016a2103200d2d0000413f71210a0c010b4100210a200921030b200b410674200c411274418080f0007172200a72220a418080c400460d03200641016a2206450d020b200720086b20036a21072003210820052003470d000c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b2004450d020c010b410021022004450d010b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200220096b2000410c6a28020022064f0d014100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2109410020002d0030220320034103461b2203410371450d0220034102460d03410021080c040b2000280218200120022000411c6a28020028020c1101000f0b2000280218200120022000411c6a28020028020c1101000f0b20092108410021090c010b200941016a4101762108200941017621090b417f2103200041046a210a200041186a21062000411c6a210702400340200341016a220320094f0d012006280200200a2802002007280200280210110000450d000b41010f0b200041046a280200210941012103200041186a220a280200200120022000411c6a220628020028020c1101000d01200a280200210a417f2103200628020041106a210602400340200341016a220320084f0d01200a20092006280200110000450d000b41010f0b41000f0b2000280218200120022000411c6a28020028020c11010021030b20030b7c01017f230041306b22022400200241146a410a3602002002410a36020c200220003602082002200041046a3602102001411c6a2802002100200128021821012002412c6a41023602002002420237021c200241a0c7c2003602182002200241086a36022820012000200241186a10fb012101200241306a240020010b9e0c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b200310e601450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641f8a7c1002107410021084102210941b002210a41c8a8c100210b41c8a8c100210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe0371410876211341b3adc10021144100211541022116419f01211741f5adc100211841f5adc1002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041f7aac10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41b3adc100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241b3adc100470d000b0b41012102200f410171450d0c0c0e0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff037121004193afc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e4190b2c100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f20024190b2c100470d000b0b41012102200f410171450d0b0c0d0b20082011101a000b201141af021049000b20152011101a000b2011419e011049000b41d0c6c2001024000b41d0c6c2001024000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e0340024002400240024002400240024020024101460d00024020024102460d0020024103470d062005422088a741ff0171417f6a220241044b0d06024020020e050006040503000b200542ffffffff8f6083210541fd002100410321020c070b41dc002100410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c00084210541dc002100410321020c040b200542ffffffff8f608342808080802084210541fb002100410321020c030b200542ffffffff8f608342808080803084210541f5002100410321020c020b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f83200542808080807083842105410321020c020b200542ffffffff8f6083428080808010842105410321020c010b200141186a28020041272001411c6a28020028021011000021020c020b200f2802002000200e280200280210110000450d000b41010f0b20020bbb0201037f23004180016b220224000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d0120014182a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000b9709010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a3602002003428080808080043703082003200036022041002106200341003602182003410036021020032005360230200320053602280240024002400240024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2100200341346a2101200341306a210b4101210603402000200741206a2d00003a00002003200741086a28020036020c20032007410c6a280200360208410021020240024002400240200741186a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b2007411c6a280200220c200128020022044f0d0a200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b2007411c6a28020021040b410121020b200341086a410c6a2004360200200341086a41086a2002360200410021020240024002400240200741106a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b200741146a280200220c200128020022044f0d0b200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b200741146a28020021040b410121020b200341086a41146a2004360200200341086a41106a20023602000240024020072802004101470d00200741046a2802002202200128020022044f0d07200b28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d072004200241086a3602000b2002280200200341086a200241046a2802001100000d032006200a4f0d02200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d000c030b0b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000f0b41c0c7c200200220041048000b41d0c6c2001024000b41b0c7c200200c20041048000b41b0c7c200200c20041048000b0c002000350200200110e5010b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b22052400200520012002200320044100108502200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa7108402200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff0071108302200641106a20012002200741ff0071108402200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bc5d4020200418080c0000bb0bf0153797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e53797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d204576656e747353797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63653a65787472696e7369635f696e6465784d656d6f557064617465642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6d656d6f2e727353797374656d20506172656e7448617368426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d4163636f756e744e6f6e6365543a3a496e64657845787472696e736963436f756e74416c6c45787472696e736963734c656e426c6f636b4861736845787472696e7369634461746152616e646f6d536565644e756d626572506172656e744861736845787472696e73696373526f6f74446967657374543a3a4469676573744576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e4d656d6f4d61784d656d6f4c656e6774684d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f7570646174655f6d656d6f73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c69642074797065000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72737372632f6c6962636f72652f726573756c742e72733a203a617574683a6c656e41757261204c61737454696d657374616d70436f6e73656e737573204f726967696e616c417574686f7269746965734175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e72734f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e3a636f64652f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f636f6e73656e7375732f7372632f6c69622e7273000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c6f66666c726570304e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e742064617461217265706f72745f6d69736265686176696f726e6f74655f6f66666c696e6572656d61726b7365745f686561705f70616765737365745f636f64657365745f73746f726167652053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f7465207468652070726576696f757320626c6f636b27732076616c696461746f72206d6973736564207468656972206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f75722e5f7265706f7274436f6e73656e7375734f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a68656170706167657300002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f736f72742e7273617373657274696f6e206661696c65643a206d6964203c3d206c656e00000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727373797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e676665657370726f706f73616c73656c656374696f6e636f756e63696c6d656d6f6a6f7973747265616d2d6e6f646500df6acb689907609b0100000037e397fc7c91f5e40100000040fe3ad401f8959a02000000d2bc9897eed08f1501000000dd718d5cc53262d4010000004469676573744974656d206e6f7420657175616c6e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d6554696d657374616d70204469645570646174656163636f756e742068617320746f6f206665772066756e647354696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f74696d657374616d702f7372632f6c69622e727354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f6442616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e6365496e646963657320456e756d53657454696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c426c6f636b506572696f643e206265747765656e2073657175656e7469616c20626c6f636b734e65774163636f756e745265617065644163636f756e745472616e73666572205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e20416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e4e65774163636f756e74496e6465782041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465782f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f696e64696365732f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f62616c616e6365732f7372632f6c69622e727354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e74206461746142616c616e636573204578697374656e7469616c4465706f7369746e6f7420656e6f75676820667265652066756e6473496e64696365734e657874456e756d536574543a3a4163636f756e74496e646578456e756d5365742054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e7472616e736665727365745f62616c616e636520536574207468652062616c616e636573206f66206120676976656e206163636f756e742e77686f66726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572207374616b65722e6465737476616c756542616c616e636573546f74616c49737375616e6365543a3a42616c616e63654578697374656e7469616c4465706f7369745472616e736665724665654372656174696f6e46656556657374696e6756657374696e675363686564756c653c543a3a42616c616e63653e4672656542616c616e6365526573657276656442616c616e63652054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e20285468697320697320646966666572656e7420616e642077686f6c6c7920756e72656c6174656420746f207468652060426f6e64616765602073797374656d207573656420696e20746865207374616b696e67206d6f64756c652e29205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420697320616c6f6e65207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865726d6f72652c20604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e75702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e204174206c6561737420617320626967206173205265636c61696d5265626174652e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420616c6c6f77656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20616d6f756e74206f66207374616b65206f6e207468652073797374656d2e73657420536574207468652063757272656e742074696d652e2045787472696e736963207769746820746869732063616c6c2073686f756c6420626520706c616365642061742074686520737065636966696320706f736974696f6e20696e20746865206561636820626c6f636b2028737065636966696564206279207468652054726169743a3a54494d455354414d505f5345545f504f534954494f4e29207479706963616c6c7920617420746865207374617274206f6620746865206561636820626c6f636b2e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e74207370656369666965642062792060626c6f636b5f706572696f64602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d704e6f77426c6f636b506572696f6444696455706461746520446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d2028616e6420616476697365642920706572696f64206265747765656e20626c6f636b732e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e42616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656542616c616e6365732056657374696e67496e6469636573204e657874456e756d53657476657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c756562616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e74676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c7565436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573456c656374696f6e53746172746564416e6e6f756e63696e6753746172746564416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465644170706c69656452657665616c65642041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f644175746f53746172745374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e526f756e644578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e436f6d6d69746d656e74735665633c543a3a486173683e566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e416e6e6f756e63696e67506572696f6452657665616c696e67506572696f64436f756e63696c53697a6543616e6469646163794c696d69744d696e436f756e63696c5374616b654e65775465726d4475726174696f6e4d696e566f74696e675374616b65436f756e63696c456c656374696f6e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e72734f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167656d696e696d756d207374616b65206d7573742062652070726f7669646564656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b65214f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e67207374616765766f74696e67207374616b6520746f6f206c6f77436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e6720737461676573616c7420746f6f206c617267656d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f70706564436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a656170706c7972657665616c7365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f647365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b657365745f706172616d5f6e65775f7465726d5f6475726174696f6e7365745f706172616d5f636f756e63696c5f73697a657365745f706172616d5f63616e6469646163795f6c696d69747365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f7374617274666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747372632f6c6962616c6c6f632f7665632e7273617373657274696f6e206661696c65643a20656e64203c3d206c656e63616e6e6f74207472616e7366657220696c6c69717569642066756e64735374616b696e6720426f6e646167655374616b696e67204e6f6d696e61746f7273466f725265776172644f66666c696e655761726e696e674f66666c696e65536c617368204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e42616c616e6365204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e756e7374616b656e6f6d696e617465756e6e6f6d696e61746572656769737465725f707265666572656e6365737365745f73657373696f6e735f7065725f6572617365745f626f6e64696e675f6475726174696f6e7365745f76616c696461746f725f636f756e74666f7263655f6e65775f6572617365745f6f66666c696e655f736c6173685f67726163657365745f696e76756c6e657261626c657320536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e205365742074686520676976656e206163636f756e74277320707265666572656e636520666f7220736c617368696e67206265686176696f75722073686f756c64207468657920626520612076616c696461746f722e20416e206572726f7220286e6f2d6f7029206966206053656c663a3a696e74656e74696f6e7328295b696e74656e74696f6e735f696e6465785d20213d206f726967696e602e696e74656e74696f6e735f696e646578707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2057696c6c2070616e69632069662063616c6c6564207768656e20736f757263652069736e27742063757272656e746c79206e6f6d696e6174696e67207461726765742e2055706461746573204e6f6d696e6174696e672c204e6f6d696e61746f7273466f7220616e64204e6f6d696e6174696f6e42616c616e63652e7461726765745f696e6465787461726765742052657472616374207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e204465636c617265207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e5374616b696e675374616b696e6720496e76756c657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b207165645374616b696e672043757272656e744f66666c696e65536c6173685374616b696e6720496e74656e74696f6e735374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672056616c696461746f72507265666572656e636573706f73206465726976656420636f72726563746c792066726f6d2053656c663a3a696e74656e74696f6e7328293b206170706c795f756e7374616b652063616e206f6e6c79206661696c20696620706f732077726f6e673b2053656c663a3a696e74656e74696f6e73282920646f65736e2774206368616e67653b207165645374616b696e6720466f7263696e674e65774572615374616b696e6720426f6e64696e674475726174696f6e496e76616c696420696e6465785374616b696e672043757272656e744e6f6d696e61746f7273466f7200000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727356616c696461746f72436f756e744d696e696d756d56616c696461746f72436f756e7453657373696f6e7350657245726153657373696f6e52657761726450657262696c6c4f66666c696e65536c6173684772616365426f6e64696e674475726174696f6e496e76756c657261626c657343757272656e7445726156616c696461746f72507265666572656e636573496e74656e74696f6e734e6f6d696e6174696e674e6f6d696e61746f7273466f7243757272656e744e6f6d696e61746f7273466f7243757272656e7453657373696f6e52657761726443757272656e744f66666c696e65536c6173684e65787453657373696f6e735065724572614c6173744572614c656e6774684368616e67655374616b6552616e6765506169724f663c42616c616e63654f663c543e3e426f6e64616765536c617368436f756e74466f7263696e674e65774572612829526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520626c6f636b20617420776869636820746865206077686f6027732066756e6473206265636f6d6520656e746972656c79206c69717569642e20546865206869676865737420616e64206c6f77657374207374616b65642076616c696461746f7220736c61736861626c652062616c616e6365732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e742e20416c6c206e6f6d696e61746f72202d3e206e6f6d696e65652072656c6174696f6e73686970732e20416c6c20746865206163636f756e7473207769746820612064657369726520746f207374616b652e20507265666572656e636573207468617420612076616c696461746f72206861732e205468652063757272656e742065726120696e6465782e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c65206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c69736520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e5265776172645374616b696e67205374616b6552616e67655374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e735065724572615374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204f66666c696e65536c6173685374616b696e672053657373696f6e5265776172640000000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7374616b696e672f7372632f6c69622e727343616e6e6f74207374616b6520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74207374616b6520696620616c7265616479207374616b65642e43616e6e6f74206e6f6d696e61746520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74206e6f6d696e61746520696620616c7265616479207374616b65642e5374616b696e67204e6f6d696e6174696e674163636f756e74206d757374206265206e6f6d696e6174696e67496e76616c69642074617267657420696e64657863616e6e6f7420756e7374616b65207768656e2074686572652061726520746f6f20666577207374616b6564207061727469636970616e747350726f706f73616c4372656174656450726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564566f74656454616c6c7946696e616c697a656452756e74696d655570646174656450726f706f73616c5665746f656420526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e4861736854616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e7273417070726f76616c51756f72756d4d696e5374616b6542616c616e63654f663c543e43616e63656c6c6174696f6e46656552656a656374696f6e466565566f74696e67506572696f644e616d654d61784c656e4465736372697074696f6e4d61784c656e5761736d436f64654d61784c656e50726f706f73616c436f756e7450726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e41637469766550726f706f73616c4964735665633c7533323e5761736d436f6465427948617368543a3a486173685665633c75383e566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c207533322954616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e20476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e46656550726f706f73616c732052656a656374696f6e46656550726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732054616c6c79526573756c74736372656174655f70726f706f73616c766f74655f6f6e5f70726f706f73616c63616e63656c5f70726f706f73616c7665746f5f70726f706f73616c2043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f672920606060766f746520706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67297374616b656e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f7273466565732043757272656e745472616e73616374696f6e46656543686172676564204665652063686172676564202865787472696e7369635f696e6465782c206665655f616d6f756e7429753332416d6f756e7453756469644b65794368616e67656420546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e4163636f756e7449642041207375646f206a75737420746f6f6b20706c6163652e626f6f6c4e657753657373696f6e204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7375646f2f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73657373696f6e2f7372632f6c69622e7273696e76616c69642073616c7446656573205472616e73616374696f6e4279746546656546656573205472616e73616374696f6e42617365466565627974657320666565206f766572666c6f776e6f2065787472696e73696320696e64657820666f756e6466656520676f74206f766572666c6f772061667465722063686172676553657373696f6e204c6173744c656e6774684368616e676553657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e67746853657373696f6e204e6578744b6579466f7200000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e7273466565735472616e73616374696f6e4261736546656541737365744f663c543e5472616e73616374696f6e4279746546656543757272656e745472616e73616374696f6e46656520546865206065787472696e7369635f696e646578203d3e20616363756d756c617465645f6665657360206d61702c20636f6e7461696e696e67207265636f72647320746f20747261636b20746865206f766572616c6c2063686172676564206665657320666f722065616368207472616e73616374696f6e2e20416c6c207265636f7264732073686f756c642062652072656d6f7665642061742066696e616c6973652073746167652e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e7375646f7365745f6b65796e65773c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636570726f706f73616c426f783c543a3a50726f706f73616c3e5375646f4b65797365745f6c656e677468666f7263655f6e65775f73657373696f6e20466f726365732061206e65772073657373696f6e2e6170706c795f72657761726473205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e436f6d706163743c543a3a426c6f636b4e756d6265723e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e56616c696461746f727353657373696f6e4c656e67746843757272656e74496e64657843757272656e745374617274543a3a4d6f6d656e74466f7263696e674e657753657373696f6e4c6173744c656e6774684368616e67654e6578744b6579466f724e65787453657373696f6e4c656e67746820546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206973207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b6579496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b696e697469616c6973655f626c6f636b6170706c795f65787472696e736963696e686572656e745f65787472696e73696373636865636b5f696e686572656e747376616c69646174655f7472616e73616374696f6e2f55736572732f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e302e302f7372632f636f6465632e727300000000000000000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000000000000000000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962616c6c6f632f736c6963652e7273436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e64734174436f756e63696c5465726d456e6465644e6577436f756e63696c5465726d53746172746564426c6f636b4e756d626572696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64652f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e727353746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e45787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e6365626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e646578626164207369676e617475726520696e2065787472696e7369637372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e7273416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e5465726d456e64734174543a3a426c6f636b4e756d626572436f756e63696c6d757374207365742066757475726520626c6f636b206e756d62657263616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f725f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e7365745f636f756e63696c6164645f636f756e63696c5f6d656d62657272656d6f76655f636f756e63696c5f6d656d6265727365745f7465726d5f656e64735f61742053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f7665543a3a4163636f756e74496420416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e74735665633c543a3a4163636f756e7449643e61757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e4578706c69636974207265706f7274696e67206e6f7420616c6c6f77656445787472696e7369635375636365737345787472696e7369634661696c656420416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e48617368206e6f7420657175616c00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e7273617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a2052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e676361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e72730000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839397372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d7372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f66206000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e85927372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f6620600041b0bfc1000b809501000000003f0110000b00000000000000289710000100000000000000000000002452100000000000000000002c4b1000280000004a011000420000001b000000010000009d0110001e000000bb0110005d0000004e01000003000000000000001e0210000c0000000100000000000000394f10000c000000000000002a0210000800000000000000245210006063100000000000000000002452100000000000000000000100000000000000320210000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210005063100000000000000000002452100000000000000000000000000000000000400210001000000000000000000000008b3f1000030000000000000000000000000000000000000024521000506310000000000000000000245210000000000000000000000000000000000050021000090000000100000000000000204e10000e00000000000000dc3510000700000000000000245210007863100000000000000000002452100000000000000000000100000000000000590210000d00000001000000000000008b3f10000300000000000000e33510000700000000000000245210004064100000000000000000002452100000000000000000000100000000000000660210000a0000000000000000000000dc351000070000000000000000000000000000000000000024521000786310000000000000000000245210000000000000000000010000000000000070021000060000000000000000000000204e10000e00000000000000000000000000000000000000245210006063100000000000000000007063100001000000000000000100000000000000760210000a0000000000000000000000dc3510000700000000000000000000000000000000000000245210007863100000000000000000002452100000000000000000000100000000000000800210000e0000000000000000000000dc35100007000000000000000000000000000000000000002452100078631000000000000000000024521000000000000000000001000000000000008e0210000600000000000000000000009402100009000000000000000000000000000000000000002452100088631000000000000000000024521000000000000000000001000000000000009d021000060000000000000000000000a30210001a0000000000000000000000000000000000000024521000986310000000000000000000245210000000000000000000010000000c00000000000000010000000d0000000c00000000000000010000000e000000bd021000420000000c00000000000000010000000f0000000c0000000000000001000000100000000c00000000000000010000001000000000000000ff021000040000000100000000000000394f10000c00000000000000e33510000700000000000000245210004064100000000000000000002452100000000000000000000100000000000000030310000d00000000000000000000008b3f1000030000000000000000000000000000000000000024521000506410000000000000000000245210000000000000000000010000000c0000000000000001000000100000000c000000000000000100000011000000914e1000230000004a011000420000001b0000000100000000000000530310000b00000000000000a4641000010000000000000000000000245210000000000000000000000000003d0910000400000000000000e335100007000000a003100019000000c003100048000000bb0100002d00000024521000000000001d041000020000000804100015000000e5030000050000005704100022000000790410005b000000b500000003000000d404100028000000790410005b000000bb000000030000002c4b1000280000000105100060000000b8000000010000007005100019000000900510005b000000ef0000001e000000000000005306100012000000000000005c66100001000000000000000000000074661000010000000000000000000000650610000c000000000000007c661000010000000000000000000000946610000100000000000000000000007106100006000000000000009c661000010000000000000000000000b4661000010000000000000000000000770610000e00000000000000bc661000010000000000000000000000d4661000010000000000000000000000850610000800000000000000dc661000010000000000000000000000f46610000100000000000000000000008d0610000b00000000000000fc66100001000000000000000000000014671000010000000000000000000000ef0710000700000000000000e335100007000000d50710001a00000000000000910710000700000000000000980710003d000000400710005100000000000000390710000700000000000000e3351000070000001e0710001b000000000000001607100005000000000000001b07100003000000d70610003f000000000000001f4410000300000000000000e335100007000000c50610001200000000000000b30610000500000000000000b80610000d000000980610001b00000000000000ff07100013000000000000000000000012081000120000000000000000000000000000000000000024521000686710000000000000000000245210000000000000000000000000000c00000000000000010000000d000000914e1000230000000105100060000000b800000001000000a008100048000000b001000023000000a008100048000000b101000023000000790810001c0000001e53100018000000e40300000d0000003008100049000000870200001d00000030081000490000009d0000003a0000003008100049000000a40000003000000000000000e80810000600000000000000120000000000000000000000130000000000000000000000020000000000000000000000000000000000000014000000000000000000000000000000ee0810000900000000000000150000000000000000000000160000000000000000000000000000001700000000000000000000000200000000000000000000000000000000000000f70810000900000000000000180000000000000000000000190000000000000000000000000000001a000000000000000000000002000000000000000000000000000000000000000009100004000000000000001b00000000000000020000000000000000000000000000000200000000000000000000000000000002000000000000000000000000000000000000000409100007000000000000001c00000000000000000000001d0000000000000000000000000000001e0000000000000000000000000000001f0000000000000000000000000000000b09100008000000000000002000000000000000000000002100000000000000000000000000000022000000000000000000000000000000230000000000000000000000000000001309100007000000000000002400000000000000000000002500000000000000000000000000000026000000000000000000000000000000270000000000000000000000000000001a0910000700000000000000280000000000000000000000290000000000000000000000000000002a0000000000000000000000000000002b0000000000000000000000000000002109100004000000000000002c00000000000000000000002d000000000000000000000002000000000000000000000000000000000000002e0000000000000000000000000000001444100004000000000000002f00000000000000000000003000000000000000000000000000000031000000000000000000000000000000320000000000000000000000000000002509100009000000000000003300000000000000000000003400000000000000000000000000000035000000000000000000000000000000360000000000000000000000000000002e091000080000000000000037000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a0000000000000000000000000000003609100007000000000000003b00000000000000000000003c0000000000000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003d09100004000000000000003f00000000000000000000004000000000000000000000000000000041000000000000000000000000000000420000000000000000000000ea0910002b000000150a100060000000b400000004000000e80a100030000000150a100060000000a800000004000000180b10004c000000150a100060000000a90000000400000000000000640b10000a000000000000001c811000020000000000000000000000b46c10000100000000000000000000006e0b10000d0000000000000028971000010000000000000000000000bc6c10000100000000000000000000007b0b10000800000000000000c46c1000040000000000000000000000e46c10000100000000000000c60b10001b000000af0b100017000000df3f100009000000df3f10000900000061221000070000006122100007000000830b10002c00000000000000e10b10000f00000000000000186d1000020000000000000000000000286d10000400000000000000df3f1000090000006b0c10000c000000f00b1000220000002452100000000000120c100041000000530c1000180000002c4b100028000000770c10005e00000048000000010000002c4b100028000000d50c10005f000000a8000000010000002c4b100028000000150a1000600000009c00000001000000914e100023000000770c10005e0000004800000001000000914e100023000000150a1000600000009c0000000100000000000000b80d10000b0000000000000000000000c30d10000f0000000000000000000000000000000000000024521000586e10000000000000000000686e100001000000000000000100000000000000d20d1000070000000100000000000000c30d10000f00000000000000cd4f1000110000000000000024521000706e10000000000000000000806e10000100000000000000010000000c000000000000000100000043000000ef0d10001f0000000c000000000000000100000010000000d90d100016000000000000000e0e10000800000000000000e06e1000020000000000000000000000106f1000010000000000000000000000160e10000b00000000000000186f1000030000000000000000000000606f10000100000000000000000000009d0e10000400000000000000224410002300000000000000a10e100005000000000000004d0e100013000000680e10003500000000000000460e10000300000000000000224410002300000000000000490e100004000000000000004d0e10001300000000000000600e100008000000000000004d0e100013000000210e10002500000000000000ae0e10000d0000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000007c71100001000000000000000100000000000000c50e1000120000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000008471100001000000000000000100000000000000d70e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000008c71100001000000000000000100000000000000e20e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000245210000c72100000000000000000009471100001000000000000000100000000000000ed0e1000070000000100000000000000394f10000c00000000000000f40e10001b00000000000000245210009c7110000000000000000000ac711000010000000000000000000000000000000f0f10000b0000000100000000000000394f10000c00000000000000bb0e10000a00000000000000245210000c7210000000000000000000b47110000b0000000000000001000000000000001a0f10000f0000000100000000000000394f10000c00000000000000bb0e10000a00000000000000245210000c72100000000000000000001c7210000c0000000000000001000000dc14100029000000a81410003400000083141000250000003a141000490000000c00000000000000010000000d0000000414100036000000d0111000270000002452100000000000f7111000530000004a1210005a000000a412100055000000f91210004f000000481310005000000098131000150000002452100000000000ad131000570000008b111000450000000c000000000000000100000044000000290f10005d000000860f1000270000002452100000000000ad0f10005b000000081010005c000000641010004a0000002452100000000000ae1010005d0000000b1110002d000000245210000000000038111000530000008b1110004500000000000000051510000300000000000000a8721000010000000000000000000000c0721000080000000000000000000000bb1610000300000000000000be16100012000000081510001600000024521000000000001e15100055000000731510005b000000ce1510005d0000002b1610002f00000024521000000000005a1610006100000000000000d9161000030000000000000000000000bb451000090000000000000000000000000000000000000024521000e47310000000000000000000f473100001000000000000000100000000000000dc1610000b0000000000000000000000bb451000090000000000000000000000000000000000000024521000fc73100000000000000000000c74100001000000000000000100000000000000e716100009000000000000000000000000401000040000000000000000000000000000000000000024521000147410000000000000000000247410000100000000000000010000000c00000000000000010000000e0000004e171000240000000c0000000000000001000000450000001d171000310000000c00000000000000010000000d000000f01610002d000000914e100023000000d50c10005f000000a80000000100000000000000ac1810000f000000000000002452100000000000000000000000000028761000010000000000000000000000bb1810001100000000000000c88e100001000000000000000000000024521000000000000000000000000000cc1810000f000000000000002452100000000000000000000000000024521000000000000000000000000000db1810000d000000000000002452100000000000000000000000000024521000000000000000000000000000e81810000b000000000000002452100000000000000000000000000024521000000000000000000000000000f318100010000000000000002452100000000000000000000000000024521000000000000000000000000000031910000e000000000000002452100000000000000000000000000024521000000000000000000000000000111910000e00000000000000e09e1000010000000000000000000000245210000000000000000000000000001f191000070000000000000028971000010000000000000000000000245210000000000000000000000000002e33100005000000000000003076100002000000000000000000000024521000000000000000000000000000261910000800000000000000407610000300000000000000000000002452100000000000000000002e19100017000000df3f100009000000a333100004000000df3f100009000000a333100004000000df3f10000900000000000000721a100009000000000000000000000000401000040000000000000000000000000000000000000024521000647b1000000000000000000024521000000000000000000001000000000000007b1a1000050000000000000000000000801a10001d0000000000000000000000000000000000000024521000747b1000000000000000000024521000000000000000000000000000000000009d1a10000500000000000000000000008b3f1000030000000000000000000000000000000000000024521000847b100000000000000000002452100000000000000000000100000000000000a21a1000140000000000000000000000cd4f1000110000000000000000000000000000000000000024521000a47b100000000000000000002452100000000000000000000100000000000000b61a1000120000000100000000000000394f10000c00000000000000c81a10001f0000000000000024521000947b100000000000000000002452100000000000000000000100000000000000e71a10000a0000000000000000000000cd4f1000110000000000000000000000000000000000000024521000a47b100000000000000000002452100000000000000000000100000000000000f11a10000f0000000100000000000000394f10000c00000000000000001b1000130000000000000024521000947b100000000000000000002452100000000000000000000100000000000000131b10000b00000000000000000000001e1b10000c0000000000000000000000000000000000000024521000a47b1000000000000000000024521000000000000000000001000000000000002a1b1000050000000100000000000000dc35100007000000000000002f1b1000450000000000000024521000b47b100000000000000000002452100000000000000000000100000000000000741b1000100000000000000000000000204e10000e0000000000000000000000000000000000000024521000c47b1000000000000000000024521000000000000000000001000000000000001f3510000c0000000000000000000000204e10000e0000000000000000000000000000000000000024521000c47b100000000000000000002452100000000000000000000100000000000000841b10000f0000000000000000000000204e10000e0000000000000000000000000000000000000024521000c47b100000000000000000002452100000000000000000000100000000000000931b10000b00000000000000000000008b3f1000030000000000000000000000000000000000000024521000d47b1000000000000000000024521000000000000000000001000000000000009e1b10000e00000000000000000000008b3f1000030000000000000000000000000000000000000024521000e47b100000000000000000002452100000000000000000000100000000000000ac1b10000f0000000000000000000000f83410000c0000000000000000000000000000000000000024521000f47b100000000000000000002452100000000000000000000100000000000000bb1b10000f0000000000000000000000204e10000e0000000000000000000000000000000000000024521000047c100000000000000000002452100000000000000000000100000000000000ca1b10000e0000000000000000000000f83410000c0000000000000000000000000000000000000024521000147c10000000000000000000245210000000000000000000010000000c0000000000000001000000460000000c00000000000000010000000d0000000c0000000000000001000000430000000c0000000000000001000000470000000c0000000000000001000000100000000c0000000000000001000000480000000c0000000000000001000000490000000c00000000000000010000004a0000000c00000000000000010000004b0000000c00000000000000010000004c0000000c00000000000000010000004d0000000c00000000000000010000004e0000002c4b100028000000e71b1000510000008102000001000000914e100023000000e71b1000510000008102000001000000000000000c2010000500000000000000407f1000010000000000000000000000245210000000000000000000000000003e3e10000400000000000000587f100002000000000000000000000024521000000000000000000000000000112010000600000000000000887f100003000000000000000000000024521000000000000000000000000000172010001400000000000000c8a11000010000000000000000000000245210000000000000000000000000002b2010001300000000000000c8a11000010000000000000000000000245210000000000000000000000000003e2010001000000000000000c8a11000010000000000000000000000245210000000000000000000000000004e2010001b00000000000000d07f100001000000000000000000000024521000000000000000000000000000692010001700000000000000d07f100001000000000000000000000024521000000000000000000000000000802010001a00000000000000d07f1000010000000000000000000000245210000000000000000000000000009a2010001b00000000000000e87f100001000000000000000000000024521000000000000000000000000000b52010001b000000000000000080100001000000000000000000000024521000000000000000000000000000d020100016000000000000001880100001000000000000000000000024521000000000000000000000000000e620100019000000000000003080100001000000000000000000000024521000000000000000000000000000ff2010001a00000000000000e87f10000100000000000000000000002452100000000000000000000000000019211000130000000000000024521000000000000000000000000000245210000000000000000000000000002c21100014000000000000002452100000000000000000000000000024521000000000000000000000000000402110000e000000000000004880100001000000000000000000000024521000000000000000000000000000cf3e10000500000000000000f83410000c00000000000000772110000a00000000000000dc3510000700000000000000cf3e10000500000000000000f83410000c00000000000000772110000a00000000000000dc35100007000000000000003e3e10000400000000000000394f10000c00000000000000812110000400000000000000e33510000700000000000000712110000600000000000000204e10000e000000000000006b2110000600000000000000f83410000c00000000000000632110000800000000000000204e10000e00000000000000572110000c000000000000008b3f100003000000000000005221100005000000000000008b3f100003000000000000004e21100004000000000000000040100004000000982110001c0000008521100013000000770400000900000000000000f62110000600000000000000fc80100001000000000000000000000004811000010000000000000000000000fc2110000e00000000000000388e10000200000000000000000000000c8110000200000000000000000000000a2210000c000000000000001c8110000200000000000000000000002c8110000100000000000000612210000700000002231000380000006822100055000000bd22100045000000df3f1000090000006122100007000000162210004b00000000000000cf3e1000050000000000000024521000000000000000000000000000188310000300000000000000000000003a231000070000000000000030831000010000000000000000000000488310000300000000000000000000004123100008000000000000006083100001000000000000000000000024521000000000000000000000000000492310000a000000000000007883100001000000000000000000000090831000020000000000000000000000532310001400000000000000a0831000020000000000000000000000d0831000030000000000000000000000672310001400000000000000709a1000010000000000000000000000e88310000100000000000000000000007b2310001400000000000000709a1000010000000000000000000000f08310000100000000000000000000008f2310001300000000000000f883100001000000000000000000000010841000010000000000000000000000a22310000d00000000000000909a100001000000000000000000000018841000020000000000000000000000af2310001700000000000000f883100001000000000000000000000028841000010000000000000000000000c623100011000000000000003084100001000000000000000000000048841000010000000000000011271000300000002452100000000000da2610003700000000000000ea2510001000000000000000f02410000c000000aa261000300000002452100000000000da2610003700000000000000a42610000600000000000000224410002300000000000000982610000c00000000000000f02410000c0000001b261000440000005f2610003900000000000000ea2510001000000000000000f02410000c00000000000000fa2510000500000000000000ff2510001c0000004e251000560000002452100000000000a4251000460000002825100026000000fc2410002c000000000000001f4410000300000000000000f02410000c000000d024100020000000382410004f00000087241000490000001424100024000000000000000a2410000a00000000000000cd4f100011000000d723100033000000f028100048000000f10900000e00000000000000382910000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210004c8c10000000000000000000348b100001000000000000000100000000000000462910001500000000000000000000008b3f10000300000000000000000000000000000000000000245210003c8b100000000000000000004c8b1000010000000000000001000000000000005b2910000e0000000000000000000000204e10000e0000000000000000000000000000000000000024521000948b10000000000000000000548b100001000000000000000100000000000000692910000d0000000000000000000000762910000700000000000000000000000000000000000000245210005c8b100000000000000000006c8b1000010000000000000001000000000000000a2210000c000000000000000000000076291000070000000000000000000000000000000000000024521000748b10000000000000000000848b1000010000000000000001000000000000007d2910001100000000000000000000008b3f10000300000000000000000000000000000000000000245210004c8c100000000000000000008c8b1000010000000000000001000000000000008e2910000f0000000000000000000000204e10000e0000000000000000000000000000000000000024521000948b10000000000000000000a48b1000010000000000000001000000000000009d2910000c0000000000000000000000cd4f10001100000000000000000000000000000000000000245210007c8c10000000000000000000ac8b100002000000000000000100000000000000a92910000a0000000000000000000000204e10000e0000000000000000000000000000000000000024521000348c10000000000000000000bc8b100001000000000000000100000000000000b3291000140000000100000000000000394f10000c00000000000000ff2510001c0000000000000024521000c48b10000000000000000000d48b100001000000000000000100000000000000c72910000a0000000000000000000000cd4f10001100000000000000000000000000000000000000245210007c8c10000000000000000000dc8b100001000000000000000100000000000000d12910000a0000000100000000000000394f10000c00000000000000394f10000c0000000000000024521000648c10000000000000000000e48b100001000000000000000000000000000000db2910000d0000000100000000000000394f10000c00000000000000cd4f10001100000000000000245210007c8c10000000000000000000ec8b100001000000000000000100000000000000e8291000140000000100000000000000394f10000c00000000000000cd4f10001100000000000000245210007c8c10000000000000000000f48b100001000000000000000100000000000000fc291000140000000000000000000000f83410000c0000000000000000000000000000000000000024521000fc8b100000000000000000006c8b100001000000000000000100000000000000102a1000130000000000000000000000f83410000c0000000000000000000000000000000000000024521000fc8b10000000000000000000848b100001000000000000000100000000000000232a1000120000000000000000000000204e10000e0000000000000000000000000000000000000024521000648c100000000000000000000c8c100001000000000000000000000000000000352a1000130000000000000000000000204e10000e0000000000000000000000000000000000000024521000348c10000000000000000000148c100001000000000000000100000000000000482a10000a0000000000000000000000522a10001400000000000000000000000000000000000000245210001c8c100000000000000000002c8c100001000000000000000100000000000000662a1000070000000100000000000000394f10000c00000000000000204e10000e0000000000000024521000348c10000000000000000000448c1000010000000000000001000000000000006d2a10000a0000000100000000000000394f10000c000000000000008b3f10000300000000000000245210004c8c100000000000000000005c8c100001000000000000000100000000000000772a10000d0000000000000000000000842a1000020000000000000000000000000000000000000024521000648c10000000000000000000748c100001000000000000000000000000000000862a10000f0000000000000000000000952a10002800000000000000000000000000000000000000245210007c8c100000000000000000008c8c1000010000000000000001000000f12f10002a0000000c00000000000000010000004f000000a12f100050000000782f1000290000000c000000000000000100000050000000302f1000480000000c000000000000000100000051000000dc2e1000540000008e2e10004e0000000c00000000000000010000004d000000602e10002e0000008c2d100069000000f52d10006b000000752d1000170000000c000000000000000100000052000000532d1000220000002a2d100029000000022d100028000000dd2c1000250000009c2c1000410000000c000000000000000100000044000000782c100024000000402c1000380000000c000000000000000100000047000000042c10003c0000000c00000000000000010000000e000000c72b10003d0000000c000000000000000100000043000000532b1000740000000c00000000000000010000000d000000392b10001a0000000c000000000000000100000010000000bd2a10007c00000080311000190000003031100048000000bb0100002d000000f0301000390000003031100048000000100200002d000000f028100048000000eb0900000a0000002c4b100028000000993110005e0000005300000001000000914e100023000000993110005e000000530000000100000000000000fa3210000f00000000000000388e1000020000000000000000000000488e1000030000000000000000000000093310001000000000000000388e100002000000000000000000000024521000000000000000000000000000193310001500000000000000608e1000020000000000000000000000245210000000000000000000000000002e3310000500000000000000708e1000030000000000000000000000888e1000040000000000000000000000333310000e00000000000000a88e100001000000000000000000000024521000000000000000000000000000413310000e00000000000000b08e1000020000000000000000000000c08e10000100000000000000000000004f3310000e00000000000000c88e1000010000000000000000000000d08e10000100000000000000df3f1000090000008b3f100003000000bf33100008000000293410002700000050341000400000008b3f1000030000001b3410000e000000df3f1000090000008b3f1000030000001334100008000000bf33100008000000c733100028000000ef331000140000000334100010000000a7331000180000008b3f100003000000a333100004000000753310002e0000008b3f1000030000005d331000180000002c4b1000280000009034100052000000ce0000000100000000000000e23410000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210006493100000000000000000007493100002000000000000000100000000000000f0341000080000000000000000000000f83410000c00000000000000000000000000000000000000245210008493100000000000000000009493100001000000000000000100000000000000043510000f0000000000000000000000f83410000c00000000000000000000000000000000000000245210009c9310000000000000000000ac93100001000000000000000100000000000000133510000c0000000000000000000000f83410000c0000000000000000000000000000000000000024521000b49310000000000000000000c4931000010000000000000001000000000000001f3510000c0000000000000000000000204e10000e0000000000000000000000000000000000000024521000cc9310000000000000000000dc931000010000000000000001000000000000002b3510000a00000000000000000000008b3f1000030000000000000000000000000000000000000024521000e493100000000000000000002452100000000000000000000100000000000000353510001100000000000000000000008b3f1000030000000000000000000000000000000000000024521000f493100000000000000000002452100000000000000000000100000000000000463510000e00000000000000000000008b3f10000300000000000000000000000000000000000000245210000494100000000000000000002452100000000000000000000100000000000000543510000d00000000000000000000008b3f10000300000000000000000000000000000000000000245210001494100000000000000000002494100001000000000000000100000000000000613510000900000001000000000000008b3f100003000000000000006a3510004b00000000000000245210002c94100000000000000000003c94100001000000000000000100000000000000b5351000110000000000000000000000c63510000800000000000000000000000000000000000000245210004494100000000000000000005494100001000000000000000100000000000000ce3510000e0000000100000000000000dc3510000700000000000000e33510000700000000000000245210005c94100000000000000000006c94100001000000000000000100000000000000ea3510000f00000001000000000000008b3f10000300000000000000f93510001d00000000000000245210007494100000000000000000002452100000000000000000000100000000000000163610001800000001000000000000002e3610001300000000000000133410000800000000000000245210008494100000000000000000002452100000000000000000000100000000000000413610000c00000001000000000000008b3f100003000000000000004d3610001b0000000000000024521000949410000000000000000000245210000000000000000000010000000c000000000000000100000050000000d038100032000000023910002f0000000c00000000000000010000004c0000008a381000460000000c0000000000000001000000530000003e3810004c0000000c00000000000000010000004e000000023810003c0000000c00000000000000010000005400000039371000510000000c0000000000000001000000550000000c0000000000000001000000560000000c0000000000000001000000570000000c0000000000000001000000430000000a3710002f0000000c000000000000000100000058000000ea361000200000000c000000000000000100000010000000a1361000490000000c00000000000000010000001000000068361000390000000c0000000000000001000000100000000c00000000000000010000000d0000000c0000000000000001000000590000009037100019000000b037100052000000b000000020000000914e1000230000009034100052000000ce0000000100000000000000843c10000f0000000000000084951000040000000000000000000000e4951000040000000000000000000000933c100010000000000000000496100002000000000000000000000034961000040000000000000000000000a33c10000f00000000000000549610000100000000000000000000006c961000010000000000000000000000b23c10000d000000000000005496100001000000000000000000000074961000010000000000000000000000cf3e10000500000000000000f83410000c00000000000000d43e10000400000000000000e33510000700000000000000d83e10000b00000000000000e33510000700000000000000e33e10000900000000000000e335100007000000573d1000440000009b3d100006000000423e10008d0000003a3e100004000000000000004c3d10000b000000000000008b3f100003000000000000003e3e100004000000000000001334100008000000573d1000440000009b3d100006000000a13d1000990000003a3e100004000000000000004c3d10000b000000000000008b3f100003000000f33c100059000000bf3c100034000000000000005a3f10000700000000000000a8961000020000000000000000000000b896100001000000000000008b3f1000030000008e3f100006000000613f10002a00000000000000943f100005000000000000001897100001000000000000000000000020971000010000000000000000000000993f10000a00000000000000289710000100000000000000000000003097100001000000000000000040100004000000e83f100018000000df3f100009000000a33f10003c00000000000000044010000a00000000000000e09e10000100000000000000000000006497100002000000000000000e4010005500000063401000220000002c4b100028000000854010005b00000023000000010000002c4b100028000000e04010005e0000003b0000000100000020421000390000006042100048000000100200002d00000000000000ac421000120000000000000000000000be4210000a0000000000000000000000000000000000000024521000b09810000000000000000000a098100001000000000000000100000000000000c8421000120000000000000000000000be4210000a0000000000000000000000000000000000000024521000b09810000000000000000000a898100001000000000000000100000000000000da4210001500000001000000000000008b3f10000300000000000000be4210000a0000000000000024521000b09810000000000000000000c0981000040000000000000001000000dd431000370000009a431000430000000c000000000000000100000044000000ef4210004500000034431000350000002452100000000000694310003100000000000000144410000400000000000000389910000100000000000000000000002452100000000000000000000000000018441000070000000000000050991000010000000000000000000000245210000000000000000000000000004544100008000000000000004d44100010000000000000001f441000030000000000000022441000230000000000000061441000030000000000000000000000394f10000c0000000000000000000000000000000000000024521000b49910000000000000000000245210000000000000000000010000000c00000000000000010000000f00000000000000184410000700000000000000489a1000010000000000000000000000609a1000020000000000000000000000644410000a00000000000000709a1000010000000000000000000000889a10000100000000000000000000006e4410001100000000000000909a1000010000000000000000000000a89a1000010000000000000000000000754510000300000000000000784510000d00000014451000580000006c45100009000000000000001f4410000300000000000000fd44100017000000a24410005b00000000000000954410000d0000000000000000401000040000007f44100016000000000000008c4510000a0000000000000000000000cd4f1000110000000000000000000000000000000000000024521000109d10000000000000000000209d100001000000000000000100000000000000964510000d0000000000000000000000204e10000e0000000000000000000000000000000000000024521000289d10000000000000000000389d100001000000000000000100000000000000a34510000c0000000000000000000000204e10000e0000000000000000000000000000000000000024521000489d10000000000000000000409d100001000000000000000100000000000000af4510000c0000000000000000000000bb451000090000000000000000000000000000000000000024521000489d10000000000000000000589d100001000000000000000100000000000000c445100011000000000000000000000000401000040000000000000000000000000000000000000024521000809d10000000000000000000609d100002000000000000000000000000000000d5451000100000000000000000000000204e10000e0000000000000000000000000000000000000024521000809d10000000000000000000709d100001000000000000000000000000000000e54510000a0000000100000000000000394f10000c00000000000000784510000d0000000000000024521000809d10000000000000000000789d100001000000000000000000000000000000ef451000110000000000000000000000204e10000e0000000000000000000000000000000000000024521000809d10000000000000000000909d10000100000000000000000000000c000000000000000100000010000000904710001f0000000c00000000000000010000004d000000714710001f000000534710001e0000000c00000000000000010000000e0000002b471000280000006d4610005e000000cb461000600000003d4610003000000019461000240000000c00000000000000010000000d0000000046100019000000914e100023000000854010005b0000002300000001000000914e100023000000e04010005e0000003b00000001000000e64810000d000000cb4810001b0000008a481000410000000c01000001000000f348100010000000034910000f0000001249100013000000254910000f0000003449100014000000ed49100036000000484910005e0000004e01000005000000b04910003d000000484910005e0000005501000005000000ed49100036000000484910005e0000006901000005000000484910005e0000007001000005000000404a100048000000eb0900000a000000904a100045000000c70200003600000000000000fc4a10001000000000000000e09e1000010000000000000000000000245210000000000000000000000000000c4b10001500000000000000e09e1000010000000000000000000000245210000000000000000000214b10000b0000002c4b100028000000544b1000500000004500000001000000784d10001c000000cc4b1000600000005100000003000000544d100024000000cc4b10006000000059000000030000000d4d10002c000000cc4b100060000000930000004c000000d54c100038000000cc4b100060000000910000002a000000ad4c100028000000cc4b1000600000009200000032000000854c100028000000cc4b100060000000940000002c000000534c100032000000cc4b100060000000c8000000030000002c4c100027000000cc4b100060000000d000000004000000a44b100028000000cc4b100060000000d6000000030000002c4b100028000000c34d100025000000c30900002300000000000000e84d10000d0000000000000000000000f54d100021000000000000000000000000000000000000002452100088a0100000000000000000002452100000000000000000000100000000000000164e10000a0000000000000000000000204e10000e000000000000000000000000000000000000002452100098a010000000000000000000245210000000000000000000010000000c0000000000000001000000100000000c00000000000000010000005a000000914e100023000000544b100050000000450000000100000000000000b44e10000b0000000000000070a1100001000000000000000000000088a11000010000000000000000000000bf4e1000120000000000000090a11000010000000000000000000000a8a11000010000000000000000000000d14e10001500000000000000b0a1100001000000000000000000000024521000000000000000000000000000e64e10001000000000000000c8a11000010000000000000000000000e0a11000010000000000000000000000c54f10000800000000000000cd4f1000110000006e4f10005700000000000000674f10000700000000000000394f10000c000000454f10002200000000000000284f10001100000000000000394f10000c00000000000000214f10000700000000000000204e10000e000000f64e10002b00000000000000a250100010000000000000002452100000000000000000000000000040a21000010000000000000000000000b25010000f000000000000002452100000000000000000000000000048a210000100000000000000d650100025000000c1501000150000001051100019000000305110006c00000055000000220000009c5110002d000000c95110000c000000d551100003000000fa511000110000000b52100017000000ea02000005000000245210002000000044521000120000000c00000000000000010000005b00000036531000060000003c531000220000001e531000180000006d090000050000005e53100016000000745310000d0000001e5310001800000073090000050000009f5310000b0000009a5f10001600000081531000010000008953100016000000da07000009000000785f10000e000000865f1000040000008a5f10001000000081531000010000008953100016000000de07000005000000385f10002b000000635f10001500000059010000150000009f5310000b000000aa53100026000000d053100008000000d85310000600000081531000010000008953100016000000eb070000050000002452100000000000f653100002000000e0531000160000005404000011000000e0531000160000004804000028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20305910004a000000805b100000020000805d10003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202105910002000000027000000190000001059100020000000280000002000000010591000200000002a0000001900000010591000200000002b0000001800000010591000200000002c000000200000002452100000000000635f1000150000000e0400000500000000f2a901046e616d6501e9a9018602000c6578745f74776f785f31323801146578745f6765745f73746f726167655f696e746f020e6578745f626c616b65325f32353603126578745f656432353531395f766572696679040f6578745f7365745f73746f7261676505116578745f636c6561725f73746f7261676506106578745f73746f726167655f726f6f7407186578745f73746f726167655f6368616e6765735f726f6f74080e6578745f7072696e745f75746638090d6578745f7072696e745f6865780a126578745f6578697374735f73746f726167650b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f4b3c616c6c6f633a3a7261775f7665633a3a5261775665633c542c20413e3e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303937643231396233663138343832631034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a68343965646138323365313438356637361180013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c27612c20486173682c20417574686f7269747949643e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6832346531323437313961393032393134120c5f5f727573745f616c6c6f6313673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865353132666539376466303230613530140e5f5f727573745f7265616c6c6f631508727573745f6f6f6d16b8013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831613962616633656535373331666437175d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686530366365316237616538343533643818733c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861383438636135646431353766636335195d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313562393735396563323463303731621a36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68646162663734306166653461666664641b583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68663838613537353461373763303230331cc5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a68663032363365653639623335383664621d373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a626c6f636b5f686173683a3a68663236623930303266316637376538631e363c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a656e756d5f7365743a3a68353935663062356236353733306661381f0e5f5f727573745f6465616c6c6f632030636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a686365623666373462366635656364613121673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865366138363530666437393236393561225b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862383466343863643035646433326331232e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68383533643435306638346666323862332429636f72653a3a70616e69636b696e673a3a70616e69633a3a683563663961666461383036363031366525373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a696e697469616c6973653a3a6836393366303835623230366433393239263a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6163636f756e745f6e6f6e63653a3a6862373731623630373630626264366463273a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6465706f7369745f6576656e743a3a6864396266383336313161656563373963285d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68383865613533393835323434646563612992016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68663933343235626333616661323237382a403c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68666261353763626638346332373163302b453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a68316361623739313438386466356662322c453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68363934653133663262306534323836652d30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68303065343633313339663739316263392e703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68613761393333353137343236663766622f353c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a66696e616c6973653a3a6830376430363638393765373233666438306d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6830616438616139626166393332383437314e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686630363538623734313666363166316132563c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839643362613663653333643238383634337e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686230376636316536653637353430663434513c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6834373132623030393765386462663939354c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68616434313963323739396633323933663634636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a6830343838323434326432343338623538372e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a686566633733373364636532393332333238303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686336376564666338373334633534636539323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68343936396430363331643330643766373a2d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a68356562656632303632656463303539303b423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68303931613465386235373839343266333c6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68323737363338613335366162373765313d6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68613761326230306564363363366563623e4473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a68383937643637396436366364663961313f493c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6863623739623935353262643436373862404e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832326133643234383737383862326532413e3c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683732343831633661376161643462316242433c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a683365646433373562353163373566626343483c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68303333393862613761343661316362344430636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6831626138303633623863643038656365452d636f72653a3a736c6963653a3a736f72743a3a726563757273653a3a68366233613239303338626636326435344634636f72653a3a736c6963653a3a736f72743a3a627265616b5f7061747465726e733a3a6864336335306161376633353563376665473c636f72653a3a736c6963653a3a736f72743a3a7061727469616c5f696e73657274696f6e5f736f72743a3a68373264643532616563326638343335304836636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68633536336465343134643138666337614934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68343237383139336437353464326633654a2e636f72653a3a736c6963653a3a736f72743a3a68656170736f72743a3a68313564663739343438326230326437644b4a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68366439653433353733333238363230624c39636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a68613164333366373266663864353534664d4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a68313236363830306235623333616436394e4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68363531366266333064366439663530394f4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a6862373636316532393430356130646166504b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a686233336339613133326436653933343051486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666565733a3a683436363239353337613363363230353152486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6833323465353438343735356365663837534d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6862343361663437646562343466653237544c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6838373761343962616662383661666332554b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a686162623832646633323634323539643256486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a683164626662333632306161666561393557483c492061732073725f7072696d6974697665733a3a7472616974733a3a436865636b457175616c3e3a3a636865636b5f657175616c3a3a683962653465636161316432323364333958d2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a683838616165653434656431343739373459633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68656266666438313565313931336234355a83013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68363564616135386639653036313363665b7c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68323139633837376333613461373939645c84013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68366565363032623335316137323631315db1013c73726d6c5f7374616b696e673a3a4e6f6d696e6174696e673c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a68333264376266326339626666383737635e593c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a69735f636f756e63696c6f723a3a68393664346661333837363730643037665f4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683238633261303661306363353236313660b9033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970652c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a6838643066633361333136353462636135613c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6e6f6d696e61746f72735f666f723a3a6837353332353337633932613231363636623d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68323838393534313639663637393163666380013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a686338623132663837333965383434376564663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68613236363230323363363432646130316585013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a6831376533646638373038363831343261667e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a6830313635346635323633323839666430673d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6865343032613237316366643366336333684e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863323437346335333731646337646438693d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68326134313536343161643032383832376a5c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f70726f636573735f766f74653a3a68373937313338643730386362376337616b3b3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6170706c795f756e7374616b653a3a68613333313364396533313236643766396c423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68383466316562393731326631393436646d683c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c20753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68656635313232636230633932313134326e3f3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f667265655f62616c616e63653a3a68623363363164383963393430316633376f433c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f72657365727665645f62616c616e63653a3a68383464363262646363353636303137667096013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a456e737572654163636f756e744c69717569643c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f6163636f756e745f6c69717569643a3a6837353039316339326230613036363137717c3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a686430666530626435353337636231613472443c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63757272656e745f6e6f6d696e61746f72735f666f723a3a68663938636130616532653364646630387330636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6863663036353438386461373764613963744e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834643336633364616232343061333232755e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683737653763393832363937383833326676135f5f727573745f616c6c6f635f7a65726f656477397061726974795f636f6465633a3a636f6465633a3a4f75747075743a3a707573685f627974653a3a686435383737383736373837303439306578763c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686162663638663561353139313237343379c8013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c207375627374726174655f7072696d6974697665733a3a617574686f726974795f69643a3a45643235353139417574686f7269747949643e3e3e3a3a66726f6d3a3a68383233663366383138323439666236637a82013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a68663961373032636536663666303061337b7d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7265776172643a3a68353361343830346662313632306337637cb00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c2045787472696e7369633e3e3a3a6465636f64653a3a68313733383437373463626165656365627d7c3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c20486173682c204469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343039303164333036313766343937617e30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68636562366637346236663565636461317f763c284e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861643433663530356633666263656161800186013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861666563383566303963333732636637810182023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c20616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a68313364303065383234373835323537668201a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a683931376634313134333231386662326283015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746172745f656c656374696f6e3a3a683131663663393835346265346363643584013c3c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68613437633363646131356664656533338501413c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68313566336132303538336635353436658601463c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683435623531613334343638366132653587013d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68393438323163353135383839346331648801423c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633330373739623665643635353738318901473c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68663230363739386364396136663734338a013e3c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68373930366236316137636230656234358b01433c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633863383433373336623638666134308c01483c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68666137636133376138303063383665618d016e3c73726d6c5f74696d657374616d703a3a5f5f47657442797465537472756374426c6f636b506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636331373535393733323930363063638e013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343030373738653632306539393434618f01d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68663930333463366636306562626635329001663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a68646361623537363230616531313537639101663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683231636134353334323135373939343692018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683665323731633435383030633936366293018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683036373336373761616132653262373594018d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834353162396464636139623366636461950186013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832616631366333373937653935316662960190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683137383436623534363265633339393297018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623262323033313462333538396163329801613c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68343536306335613330303363343066339901f6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970653e2c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a68646661626238326466326563303033629a013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68653530633637393239323837323138309b015f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a74656172646f776e5f656c656374696f6e3a3a68623733616133343333656262343138309c01623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68336530343138623064653265366461379d015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a64726f705f6170706c6963616e74733a3a68663432613333376263663062333763389e01673c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c20503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68316266313761633066343664633036639f012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6864343161356261616361353939383034a0014b3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e3e3a3a696e736572743a3a6836313533303765663535353934363038a1012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6835666436393434326333353133303637a201733c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6836656236353033646438323132396431a3015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6865633531616135663433366666333762a4013c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6863323764393236323532373735663939a501413c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6863616438623766623036616539663532a601463c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863313065663463366461373734643936a701703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837313935643330343231323130316265a801723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864653534323233303263303436656639a901743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838383033626239663637316265326433aa01753c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72507265666572656e6365733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396165376531383634383434616262ab01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864376432353439363231303964393336ac016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834386664386230316537646266313461ad01763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833346133373665343963343930333761ae01673c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6830316461613961346266316664333834af018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863356362663732396662366366346263b0018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839613761333133373363343966303738b10190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831306233643463623962613239656339b20193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839353430343162653261666631316363b3018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396639653836393330343836383566b4018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839383538356230303266633639306230b5018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861616134343039356630356535356439b60191013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862333031323964396633646131633162b7018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863343136616632633337646430323763b80190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866373535356236323037656533323163b901623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6864306636616331376266623765333365ba015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866343133306633626436633234653462bb018f013c73726d6c5f666565733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a43686172676542797465734665653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6368617267655f626173655f62797465735f6665653a3a6838616239323966373534373433323931bc013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a7365745f76616c696461746f72733a3a6836393166633934643661333334373061bd013e3c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6831653331353636313862663061363432be01433c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6865373734656464363636323165663531bf01703c73726d6c5f666565733a3a5f5f476574427974655374727563745472616e73616374696f6e426173654665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830346163613038663166373630303564c001393c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6838373563313739653138356439396161c1013e3c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862633663653436663333633935613035c201433c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6866336639303531623866663934303439c301613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863323839646239633764356532636234c4013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866313638333963343464636361353635c501413c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6837396262343730303361613739343763c601463c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839663638653630633566386164363638c701477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6866623337343535666564336564326664c801623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830373531383239613932323033323465c901523c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c27612c204b2c20563e3e3a3a696e736572743a3a6830356136646435356461336666646430ca010c436f72655f76657273696f6ecb0110436f72655f617574686f726974696573cc0112436f72655f657865637574655f626c6f636bcd014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6866643337616665343561313865306132ce016c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6838633764323066386435393966616134cf01753c73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c20426c6f636b2c20436f6e746578742c205061796d656e742c20416c6c4d6f64756c65733e3e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6837353763343730336233613232396433d001483c636f72653a3a666d743a3a417267756d656e74733c275f3e20617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6865316465313661646637653161303132d101303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862363266656434353033623836383436d20115436f72655f696e697469616c6973655f626c6f636bd301114d657461646174615f6d65746164617461d401603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835313137303230316435376330623930d501433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865646565323965656465663066646164d601633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834393039313963363138396531663739d701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6836336564353565623166313739363337d801633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834366162623930643330333530653030d9011c426c6f636b4275696c6465725f6170706c795f65787472696e736963da011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636bdb0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373dc015d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838323432633461616530623565313366dd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6831313638656666333065383466376537de011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473df0118426c6f636b4275696c6465725f72616e646f6d5f73656564e0012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ee10115417572614170695f736c6f745f6475726174696f6ee201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6863346261633263326133613632383863e301303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839633163616533383831633638356363e40135636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a6837636339316532326362396664303931e5012f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a6839393761656138626132613165386261e6013d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a6837366164306134326463396364643435e7018001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a6835383261663432346337616638336636e8012e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a6839333938326463383963326433306633e901653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837313435646263306438393733353030ea018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837646236666334363737646535393962eb01603c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6830393132336537386130613730303366ec015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866653432646231396336356337636633ed01423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862376233663765643464616530366662ee01633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333930623839626139393733633830ef0111727573745f626567696e5f756e77696e64f0010a5f5f72675f616c6c6f63f1010c5f5f72675f6465616c6c6f63f2010c5f5f72675f7265616c6c6f63f301115f5f72675f616c6c6f635f7a65726f6564f4014e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6862363365636566363335323262356137f501313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6866323035616464396235666434323661f60143636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a6862373839383664393965363163626236f7012c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6863393639333233396661336330376339f8014a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6837633935363262633930336261666566f901323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862353765363333353432643165666462fa0149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6863333337366132313537383338373132fb0123636f72653a3a666d743a3a77726974653a3a6864633965303262643431393466643037fc0134636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6866666434343232643837336134346233fd01066d656d736574fe01066d656d637079ff01076d656d6d6f76658002066d656d636d708102095f5f756469767469338202085f5f6d756c74693383023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a686238306662333930663030636262333584023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a686437653131386565363366623935306185020c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33342e302d6e696768746c79202836333364373561633120323031392d30322d323129", - "0x2dce29f1a768624dc5343063cb77f77d": "0x0a000000", - "0xe86aadd06aa1443b2e0485fbe6c75d79": "0x4038000000000000", - "0x7b3279da6dfc5dcfbdd4098b0578c733": "0x0a000000000000000000000000000000", - "0x784006f2a1a409c65c0059c57eaed7a6": "0x00000000000000000000000000000000", "0x3a617574683a00000000": "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0x43854a3fb0f68847558aa8942fff6d9b": "0x50000000", - "0x7d78893315c59fe96c583efc57f97a0f": "0x64000000000000000000000000000000", - "0xdade128e67a5ed110063f56a01ab6bbf": "0x0000000000000000", - "0x90e2849b965314409e8bc00011f3004f": "0x01000000", - "0x8366297e853b97a38cca0f62019a717b": "0x00000000000000000000000000000000", - "0x040ff70c23416b89ce6afb75ee0d362e": "0x00000000", + "0x3b7d32346a3315a351084927a27d06a7": "0x00000000000000000000000000000000", "0xf4039aa8ae697861be900c58239e96f7": "0x00000000000000000000000000000000", - "0x329586a7b97f2ac15f6c26a02c3c5621": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0xf9f84510feb5ef56aaead09aab1619c9": "0x4038000000000000", + "0x3a636f6465": "0x0061736d010000000191011760027f7f017f60037f7f7f017f60017f0060027f7f0060037f7f7f0060057f7f7f7f7f017f60047f7f7f7f017f60047f7f7f7f0060047f7f7e7f017f60017e0060017f017f60000060027f7e0060037e7f7f0060017f017e60037f7e7e0060047f7f7e7e0060037f7e7e017f60027f7f017e60027e7f017f60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e760c6578745f74776f785f313238000403656e76146578745f6765745f73746f726167655f696e746f000503656e760e6578745f626c616b65325f323536000403656e76126578745f656432353531395f766572696679000603656e760f6578745f7365745f73746f72616765000703656e76116578745f636c6561725f73746f72616765000303656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000803656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e76126578745f6578697374735f73746f72616765000003656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000703656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000203f901f7010b0b030a030103030303030303030c030202030303020d0e020303020b02020302040302030202010700000304040403020302020202070300040303020202020202020202020202030304030403030a030303030f001011030303040004030f0f0a10030203030a020303110f03030209090309030202020202020202020303030b020303030303030203030402030303070403020202020303030303030302030303030303030303030202000302020302020203020202070403121212030407000012120304030303121212030312121212000005130a0207020302020403020a02010a000e0601000000010001010101141415151604050170015c5c05030100110619037f01418080c0000b7f0041b8d5c2000b7f0041b8d5c2000b07f4020f066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00ca0110436f72655f617574686f72697469657300cb0112436f72655f657865637574655f626c6f636b00cc0115436f72655f696e697469616c6973655f626c6f636b00d201114d657461646174615f6d6574616461746100d3011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d9011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636b00da0120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300db011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300de0118426c6f636b4275696c6465725f72616e646f6d5f7365656400df012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00e00115417572614170695f736c6f745f6475726174696f6e00e10109a301010041010b5bf401d001e2013938e301d101f801f901fa01fc012d2ea901c301a701332a2c4b8b018c018a014243414c8501860184014d8801890187014ec501c601c4014fa501a601a40150bd01be0151c101c201c00152b901ae01ba015398019101a30154eb01e901ec015534323556a801bf018d01970196019501940193019201b701ab01b501ad01b801ac01aa01b601b401b301b201b101b001af01ea01f5010a89fa13f70105001010000b0a004184c6c2001024000b930c03057f017e027f230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020022034101460d00024020034102460d0020034103470d0220012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41003a00002001280200210620022001280208220136020c2002410c6a2002101320022802042205200428020022036b20014f0d05200320016a22042003490d1520054101742203200420042003491b22034100480d152005450d0a20022802002005200310142204450d0b0c180b200141086a280200210320012802042105410110122201450d0d20024101360204200241086a22042004280200220641016a36020020022001360200200120066a41033a00002005290300210720022802042205200428020022016b41084f0d02200141086a22042001490d1420054101742201200420042001491b22014100480d142005450d0520022802002005200110142204450d060c120b20012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d02200341206a22042003490d1320054101742203200420042003491b22034100480d132005450d0620022802002005200310142204450d070c0f0b200141086a280200210320012802042101410110122204450d0d200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a200210132003450d1720034105742108200241086a220928020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d1720054101742204200320032004491b22044100480d172005450d01200228020020052004101422060d020c0e0b20022802002106200421030c020b200410122206450d0c0b200220043602042002200636020020092802002103200421050b2009200341206a2204360200200620036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200841606a22080d000c180b0b200228020021040c100b200228020021040c0d0b200228020021040c130b2001101222040d0c0b200141011015000b2003101222040d080b200341011015000b2003101222040d0d0b200341011015000b200441011015000b410141011015000b410141011015000b410141011015000b410141011015000b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a200737000002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110142204450d020c040b200228020021040c040b2001101222040d020b200141011015000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c020b2002200336020420022004360200200241086a28020021030b200241086a200320016a360200200420036a2006200110fe011a0b20002002290300370200200041086a200241086a280200360200200241106a24000b0700200010f0010b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410142203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010142203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2000101222030d0b0b200041011015000b200010122203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101422020d020c070b200128020021020c020b200010122202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011015000b200441011015000b200041011015000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000b0b0020002001200210f2010b0d004198a4c1004122100800000bef1004047f017e087f037e230041a0046b22022400200241186a200110170240024002400240024002400240024002402002280218450d00200241003a00880220024188026a2001280200220320012802042204410047220510fe011a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d008802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b200241b0016a2001101802400240024020022d00b0014102460d00200241b8036a41206a200241b0016a41206a280200360200200241b8036a41186a200241b0016a41186a290300370300200241b8036a41106a200241b0016a41106a290300370300200241b8036a41086a200241b0016a41086a290300370300200220022903b0013703b80320024188026a41386a2207420037030020024188026a41306a2208420037030020024188026a41286a2209420037030020024188026a41206a220a420037030020024188026a41186a220b420037030020024188026a41106a220c420037030020024188026a41086a220d4200370300200242003703880220024188026a20012802002203200141046a220e280200220441c000200441c000491b220510fe011a200e200420056b3602002001200320056a3602002004413f4d0d00200241e0036a41386a2007290300370300200241e0036a41306a2008290300370300200241e0036a41286a2009290300370300200241e0036a41206a200a290300370300200241e0036a41186a200b290300370300200241e0036a41106a200c290300370300200241e0036a41086a200d29030037030020022002290388023703e003200241086a200110192002280208450d002002290310210f200141046a220e2802002104200241003a00880220024188026a200128020022072004410047220510fe011a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310088022210500d01200241003a00880220024188026a20052003410047220410fe011a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310088024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024188016a41206a200241b8036a41206a28020036020020024188016a41186a200241b8036a41186a29030037030020024188016a41106a200241b8036a41106a29030037030020024188016a41086a200241b8036a41086a290300370300200241e0026a41086a200241e0036a41086a290300370300200241e0026a41106a200241e0036a41106a290300370300200241e0026a41186a200241e0036a41186a290300370300200241e0026a41206a200241e0036a41206a290300370300200241e0026a41286a200241e0036a41286a290300370300200241e0026a41306a200241e0036a41306a290300370300200241e0026a41386a200241e0036a41386a290300370300200220022903b80337038801200220022903e0033703e0020c030b20052004101a000b20052004101a000b20042003101a000b200241b0016a41206a220420024188016a41206a280200360200200241b0016a41186a220520024188016a41186a290300370300200241b0016a41106a220320024188016a41106a290300370300200241b0016a41086a220e20024188016a41086a29030037030020024188026a41086a2207200241e0026a41086a29030037030020024188026a41106a2208200241e0026a41106a29030037030020024188026a41186a2209200241e0026a41186a29030037030020024188026a41206a220a200241e0026a41206a29030037030020024188026a41286a220b200241e0026a41286a29030037030020024188026a41306a220c200241e0026a41306a29030037030020024188026a41386a220d200241e0026a41386a29030037030020022002290388013703b001200220022903e00237038802024020064202520d0020004203370370200241a0046a24000f0b200241e0006a41206a2004280200360200200241e0006a41186a2005290300370300200241e0006a41106a2003290300370300200241e0006a41086a200e290300370300200241206a41086a2007290300370300200241206a41106a2008290300370300200241206a41186a2009290300370300200241206a41206a200a290300370300200241206a41286a200b290300370300200241206a41306a200c290300370300200241206a41386a200d290300370300200220022903b00137036020022002290388023703200b20024188026a2001101b20022d0088022101200241e0026a20024188026a41017241d70010fe011a02402001410b470d0020004203370370200241a0046a24000f0b200241b0016a200241e0026a41d70010fe011a2000200f37030020002002290360370308200041106a200241e0006a41086a290300370300200041186a200241e0006a41106a290300370300200041206a200241e0006a41186a290300370300200041286a200241e0006a41206a2802003602002000200229032037022c200041346a200241206a41086a2903003702002000413c6a200241206a41106a290300370200200041c4006a200241206a41186a290300370200200041cc006a200241206a41206a290300370200200041d4006a200241206a41286a290300370200200041dc006a200241d0006a290300370200200041e4006a200241d8006a29030037020020004188016a20013a000020004180016a2010370300200020113703782000200637037020004189016a200241b0016a41d70010fe011a200241a0046a24000bcb0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000322034103712204450d00024020044101460d0020044102470d0241002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810fe011a200141046a200620086b3602002001200520086a36020020070d0520022f010c20022d000e411074724108742003724102762101410121040c050b200241003a000b2002410b6a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b20034102762101410121040c030b200341044f0d004100210420024100360204200241046a200520064104200641044922081b220310fe011a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004101a000b20042006101a000b8f0801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441f0014f0d01410121010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410fe011a200141046a200620046b3602002001200520046a36020041012101200641014d0d0441ef01210420022f015041ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410fe011a200141046a200620046b3602002001200520046a360200200641034d0d0441ffff03210441012101200228025041ffff034b0d08200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10fd011a200241d0006a2005200410fe011a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c020b200041023a0000200241f0006a24000f0b20052004101a000b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bc00503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510fe011a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000822044103712203450d002004ad2107024020034101460d0020034102470d02200241003a0006200241003b0104200241046a200520064103200641034922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320023301042002310006421086844208862007844202882107420121080c050b200241003a0008200241086a20052006410047220410fe011a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b2004410276ad2107420121080c030b0240024020044102762204450d0020044104470d014200210820024200370308200241086a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320022903082107420121080c040b20024100360208200241086a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0120023502082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410fe011a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004101a000b20042006101a000b20042006101a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241dcc6c2003602082002200241046a360228200220023602202002200241206a360218200241086a41ecc6c200103a000b965a05057f027e017f047e087f230041c0056b22022400200241003a00f003200241f0036a2001280200220320012802042204410047220510fe011a0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d00f0032204410a4b0d0b024020040e0b00070405020809060b030a000b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d72200141046a200620046b3602002001200520046a3602002006450dab0120022d00f003450d0e0cab010b2000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22053602002006450d0a4105210420022d00f0032206450d1320064101460d1220064102470d14200241003a00f003200241f0036a20052003410047220610fe011a20032006490d7c200141046a200320066b3602002001200520066a3602002003450d1420022d00f00321014200210742002108410421040c170b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22053602002006450d0a4106210420022d00f003220641034b0d9801024020060e04001a1819000b200241f0036a2001107420022802f0032201450d980120022902f4032107410221040c9a010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450d0c20022d00f0032204450d0b20044101470d0c200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0c20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241f8006a20011075410421042002290378a7450d24200241f8006a41106a29030021072002290380012108200241e0006a200110752002290360a7450d24200241f0006a290300210c2002290368210d200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410321040c250b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22043602002006450d6320022d00f003220541044b0d63024020050e05001d1a1b18000b200242003703f803200242003703f003200241f0036a20042003411020034110491b220510fe011a200141046a200320056b3602002001200420056a3602002003410f4d0d63200241f8036a290300210720022903f003210820024198026a20011017200228029802450d63200228029c022204417f4c0d9c012004450d61200410762206450d8a0120062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d8b012003200920056b3602002001200128020020056a36020020052004470d620c9b010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22043602002006450d6720022d00f003220641054b0d6741032109024020060e06009a0120211f22000b200241186a200110172002280218450d67200228021c2204417f4c0d9b012004450d58200410762205450d820120052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d83012003200920066b3602002001200128020020066a36020020062004470d590c98010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b220e3602002001200520046a22103602002006450d3320022d00f003220f410a4b0d33410221040240200f0e0b39002c2d2a2f302e332b31390b200241a0016a2001101720022802a001450d3320022802a40122054108762103410321040c350b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450d0a20022d00f0032204450d0920044101470d0a200241f0036a20011018200241c8046a41086a2205200241fc036a290200370300200241c8046a41106a220620024184046a290200370300200241c8046a41186a22032002418c046a290200370300200220022902f4033703c80420022d00f00322014102460d0a20022f00f10320022d00f303411074722104200241d0026a41186a2003290300370300200241d0026a41106a2006290300370300200241d0026a41086a2005290300370300200220022903c8043703d002410321050c1b0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450d940120022d00f003450d050c94010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22113602002006450d4c4110210420022d00f003221241104b0d4c024020120e110040423d4447434b3f493c3e453b8c01413a000b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d4c200241f8036a290300210c20022903f003210a410221040c490b2000410b3a0000200241c0056a24000f0b42002107410521040c0a0b410621040c8d010b200241086a200110192002290308a7450d9c0120022903102107200041003a0000200041106a2007370300200041086a4202370300200241c0056a24000f0b200241a8026a2001101720022802a802450d8e0120022802ac022204417f4c0d92012004450d1f200410762206450d7520062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d762003200920056b3602002001200128020020056a36020020052004470d200c8a010b200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102470d0d0b200241f0036a41086a200241d0026a41086a280200360200200220022903d0023703f0030c87010b200241f0036a2001101b20022d00f0032104200241c8046a200241f0036a41017241d70010fe011a2004410b470d100b2000410b3a0000200241c0056a24000f0b20024190016a20011019410341052002280290011b210442002107200229039801210a420021080c030b200241f0036a20034120200341204922091b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a36020020090d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210120022800f303210520022900f703210a200228008704210620022900ff032108200241a4056a41046a220320042d00003a0000200220022f01b20522043b01aa05200220022802ac053602a405200241c8046a41046a20032d00003a0000200220043b01d002200220022802a4053602c80442002107410221040c030b420021070b420021080b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f01d0023b01b405200220022902c8043703f003024020044105470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b01b002200220022903f00337039803200041186a2008370000200041106a2007200a84370000200041096a20013a0000200041086a20043a0000200041043a0000200041206a20063600002000410c6a20053600002000410a6a20022f01b0023b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d10200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01be05200220022802ac053602d002410121090c110b200242003703f003200241f0036a20052003410820034108491b220610fe011a200141046a200320066b3602002001200520066a360200200341074d0d7f20022903f0032107410521040c80010b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d10200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01b002200220022802ac053602d002410121090c110b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4b20022802f0032106410621090c030b20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241c8006a200110752002290348a7450d22200241c8006a41106a290300210720022903502108200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410221040c230b200241003602f00341042109200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4920022802f00321060c010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4820022802f0032106410521090b200220022f01c8043b01f0030c88010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b22033602002001200420056a220436020020060d4620022802f0032106200241003a00f003200241f0036a20042003410047220510fe011a20032005490d64200141046a200320056b3602002001200420056a3602002003450d4620022d00f003220141044f0d46410321090c86010b20024198036a200241c8046a41d70010fe011a41d80010122201450d60200120043a0000200141016a20024198036a41d70010fe011a20014108762104410221050b200241b0026a41186a2206200241d0026a41186a290300370300200241b0026a41106a2203200241d0026a41106a290300370300200241b0026a41086a2209200241d0026a41086a290300370300200220022903d0023703b002200041086a2004410874200141ff017172360000200041046a2005360000200041063a00002000410c6a20022903b002370000200041146a20092903003700002000411c6a2003290300370000200041246a2006290300370000200241c0056a24000f0b200241286a200110172002280228450d48200228022c2204417f4c0d7c2004450d35200410762205450d6520052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d662003200920066b3602002001200128020020066a36020020062004470d360c720b200241206a200110172002280220450d4720022802242204417f4c0d7b2004450d36200410762205450d6620052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d672003200920066b3602002001200128020020066a36020020062004470d370c700b200242003703f003200241f0036a20042003410820034108491b220510fe011a200141046a200320056b3602002001200420056a360200200341074d0d4620022903f0032107410521090c780b200241c0006a200110172002280240450d4520022802442213ad42187e2207422088a70d792007a72204417f4c0d792004450d382004101222050d39200441041015000b0b200920037221010c180b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01be053b01aa05200220022802d0023602a4052009450d6e200241b0026a41046a220420032d00003a0000200220022f01aa0522033b01bc05200220022802a4053602b002200241c8046a41046a20042d00003a0000200220033b019003200220022802b0023602c804410421040c700b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4052009450d6c200241b4056a41046a220420032d00003a0000200220022f01aa0522033b01ba05200220022802a4053602b405200241c8046a41046a20042d00003a0000200220033b019003200220022802b4053602c804410321040c6e0b4101210641002004460d6a0b2004450d6d2006101f0c6d0b200241d0016a20011017410d210420022802d001450d0a20022802d4012105200241c8016a2001101720022802c801450d0a20022802cc012106200241b0016a2001107520022903b001a7450d0a200241c0016a290300210720022903b801210820054108762103410621040c0d0b20024180026a20011017200228028002450d0820022802840222054108762103410b21040c0a0b200241f0036a20011018200241c8046a41086a220120024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0720022f00f10320022d00f303411074722103200241fc036a290200210720024184046a280200210620022902f403210820024198036a41086a22042001280200360200200220022903c80437039803200241d0026a41086a200428020036020020022002290398033703d002410421040c0b0b200241a8016a2001101720022802a801450d0620022802ac0122054108762103410521040c080b200241f8016a2001101720022802f801450d0520022802fc0122054108762103410921040c070b200241d8016a200110194107410d20022802d8011b210420022903e00121080c020b200241e8016a200110194108410d20022802e8011b210420022903f00121080c010b200241f0036a2001107420022802f0032205450d022005410876210320022902f4032108410c21040b0c040b200241003a00f003200241f0036a2010200e410047220410fe011a200e2004490d4d200141046a200e20046b3602002001201020046a360200200e450d0020022d00f0032109410a21040c050b410d21040b0b0b0b0b200241f0036a41086a2201200241d0026a41086a280200360200200220022f01ac053b01b405200220022903d0023703f00302402004410d470d002000410b3a0000200241c0056a24000f0b200241b0026a41086a220e2001280200360200200220022f01b4053b01a405200220022903f0033703b002200041186a2007370000200041106a2008370000200041096a20093a0000200041086a20043a0000200041053a0000200041206a20063600002000410c6a2003410874200541ff0171723600002000410a6a20022f01a4053b0000200041246a20022903b0023700002000412c6a200e280200360000200241c0056a24000f0b410421040b200920037221010b200241f0036a41086a2203200241d0026a41086a280200360200200220022903d0023703f00320044104460d55200241b0026a41086a22092003280200360200200220022903f0033703b0022000410f6a20014110763a00002000410d6a20013b0000200041186a200a370000200041106a200b370000200041c8006a200c370000200041c0006a200d370000200041386a2007370000200041306a2008370000200041206a20063600002000410c6a20053a0000200041086a2004360000200041033a0000200041246a20022903b0023700002000412c6a2009280200360000200241c0056a24000f0b200241003a00f003200241f0036a20112003410047220410fe011a20032004490d4a200141046a200320046b3602002001201120046a3602002003450d1220022d00f003210e411221040c510b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a360200410f21042003410f4d0d11200241f8036a290300210c20022903f003210a0c0e0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d1020022903f003210a410c21040c0f0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0f20022903f003210a410521040c0e0b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0e20022802f0032109410d21040c070b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0d20022903f003210a410a21040c0c0b4100210f200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a22043602002003411f4d0d18200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210e20022800f303210920022900f703210a20022900ff03210c2002280087042106200241c8046a41046a20032d00003a0000200220022f01b2053b01d002200220022802ac053602c8044101210f0c190b411121040c0c0b4100210f200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a22103602002003411f4d0d18200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210e20022800f303210920022900f703210a20022900ff03210c2002280087042106200241d0026a41046a20042d00003a0000200220022f01b2053b01b002200220022802ac053602d0024101210f0c190b200242003703f00341082104200241f0036a20112003410820034108491b220510fe011a200141046a200320056b3602002001201120056a360200200341074b0d040c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0820022903f003210a410621040c070b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0720022802f0032109410e21040b0c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a36020041072104200341074d0d050b20022903f003210a0c030b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d03200241f8036a290300210c20022903f003210a410b21040b0c040b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0120022903f003210a410921040b0c020b411321040b0b0b0c3b0b4101210541002004460d3c0b20040d100c110b4101210541002004460d390b20040d0e0c0f0b4101210541002004460d3f0b20040d0c0c0d0b410421050b024002402013450d00420021074100210f4100210441002109201321110340200241386a200110172002280238450d0c200228023c2203417f4c0d42024002402003450d00200310762210450d2420102001280200200141046a220e2802002206200320062003491b220610fe011a200e28020022142006490d25200e201420066b3602002001200128020020066a36020020062003460d010c0d0b4101211041002003470d0c0b200241306a200110172002280230450d0b20022802342206417f4c0d42024002402006450d00200610762214450d2220142001280200200141046a2212280200220e2006200e2006491b220e10fe011a20122802002215200e490d2320122015200e6b36020020012001280200200e6a360200200e2006460d010c0c0b4101211441002006470d0b0b200941016a210e024020092011470d00200f200e200e200f491b2211ad42187e2208422088a70d1e2008a722124100480d1e02402009450d00200520042012101422050d010c210b201210122205450d200b200520046a22092010360200200941146a2006360200200941106a20063602002009410c6a2014360200200941046a2003ad220842208620088437020020074280808080107c2107200f41026a210f200441186a2104200e2109200e2013490d000c020b0b41002111420021070b2005450d0b20072011ad842107410721090c3d0b4200210a4200210c0b200241a4056a41046a2203200241c8046a41046a2d00003a0000200220022f01d0023b01aa05200220022802c8043602a40502400240200f450d0020024198036a41046a20032d00003a0000200220022f01aa053b01b002200220022802a40536029803200242003703f803200242003703f003200241f0036a20042005411020054110491b220310fe011a200141046a200520036b3602002001200420036a3602002005410f4d0d00200241f8036a290300210820022903f003210720024190036a41046a20024198036a41046a2d00003a0000200220022f01b0023b019603200220022802980336029003410321040c010b411321040b0c310b4200210a4200210c0b200241a4056a41046a2204200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4050240200f450d00200241b4056a41046a20042d00003a0000200220022f01aa053b01ba05200220022802a4053602b405200241f0036a2005412020054120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2010200410fe011a200141046a200520046b3602002001201020046a3602002005411f4d0d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003211020022800f303211420022900f703210720022900ff032108200228008704210f200241d0026a41046a220520042d00003a0000200220022f01b20522043b01be05200220022802ac053602d002200241b0026a41046a20052d00003a0000200220043b01bc05200220022802d0023602b002200241a0026a200110174113210420022802a002450d2e20022802a4022203417f4c0d3c2003450d09200310762205450d2c20052001280200200141046a22122802002211200320112003491b221110fe011a201228020022132011490d2d2012201320116b3602002001200128020020116a36020020112003470d0a0c2f0b411321040c2d0b4101210641002004460d390b2004450d002006101f0b200220022f01c8043b01f0030c3e0b2006450d002014101f0b2003450d002010101f0b02402009450d002005210103400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200441686a22040d000b0b2011450d010b2005101f0b2000410b3a0000200241c0056a24000f0b4101210541002003460d250b2003450d232005101f0c230b20052004101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b1010000b20062003101a000b201241041015000b200641011015000b200e2015101a000b200341011015000b20062014101a000b41d80041081015000b200441011015000b20052009101a000b20052003101a000b2004200e101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b20042003101a000b200441011015000b20052009101a000b200341011015000b20112013101a000b0c010b4104210420024190036a41046a200241b4056a41046a2d00003a000020024188036a41046a200241b0026a41046a2d00003a0000200220022f01ba053b019603200220022802b40536029003200220022f01bc053b018e03200220022802b002360288032003ad220b422086200b84210b0b200241f0036a41046a220120024190036a41046a2d00003a0000200241c8046a41046a220320024188036a41046a2d00003a000020024198036a41026a221120024185036a41026a2d00003a0000200220022f0196033b01d00220022002280290033602f003200220022f018e033b01b00220022002280288033602c804200220022f0085033b019803024020044113470d002000410b3a0000200241c0056a24000f0b200241fc026a41046a221220012d00003a0000200241f4026a41046a220120032d00003a0000200241f0026a41026a220320112d00003a0000200220022f01d0023b018203200220022802f0033602fc02200220022f01b0023b01fa02200220022802c8043602f402200220022f0198033b01f002200041186a200c370000200041106a200a370000200041386a2008370000200041306a2007370000200041096a200e3a0000200041086a20043a0000200041083a0000200041206a20063600002000410c6a2009360000200041296a20103a0000200041c0006a200f3600002000412c6a20143600002000410a6a20022f0182033b0000200041246a20022802fc02360000200041286a20122d00003a00002000412a6a20022f01fa023b0000200041d0006a200b370000200041cc006a2005360000200041c8006a20012d00003a0000200041c4006a20022802f402360000200041c9006a20022f01f0023b0000200041cb006a20032d00003a0000200241c0056a24000f0b2004ad22074220862007842107410421090c080b2004ad22074220862007842107410621090c070b2000410b3a0000200241c0056a24000f0b2000410a3a0000200041086a2006360000200041046a41023600002000410c6a2004ad2207422086200784370000200241c0056a24000f0b0b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f0190033b01b405200220022902c8043703f003024020044106470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b018803200220022903f00337039803200041186a2008370000200041106a2007370000200041096a20053a0000200041086a20043a0000200041093a0000200041206a20063600002000410c6a20013600002000410a6a20022f0188033b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b2000410b3a0000200241c0056a24000f0b2004ad22074220862007842107410221090b200041013a0000200041106a20073700002000410c6a2005360000200041086a2009360000200241c0056a24000f0b20024190026a200110170240200228029002450d002002280294022205417f4c0d010240024002402005450d00200510762203450d0520032001280200200141046a220e2802002209200520092005491b220910fe011a200e280200220f2009490d06200e200f20096b3602002001200128020020096a36020020092005460d010c020b4101210341002005470d010b20024188026a20011017200228028802450d00200228028c022209417f4c0d02024002402009450d0020091076220e450d07200e2001280200200141046a2210280200220f2009200f2009491b220f10fe011a20102802002214200f490d0820102014200f6b36020020012001280200200f6a360200200f2009470d010c090b4101210e41002009460d080b2009450d00200e101f0b2005450d002003101f0b02402004450d002006101f0b200220022f01c8043b01f0030c060b100f000b200541011015000b2009200f101a000b200941011015000b200f2014101a000b2009ad220a422086200a84210a410221090c010b2000410b3a0000200241c0056a24000f0b200220022f01c8043b01f0030b200220022f01f0033b019803200041386a2007370000200041306a2008370000200041096a20013a0000200041086a20093a0000200041073a0000200041286a200a370000200041246a200e360000200041206a20053600002000411c6a2005360000200041186a2003360000200041146a2004360000200041106a20043600002000410c6a20063600002000410a6a20022f0198033b0000200241c0056a24000f0b2000410b3a0000200241c0056a24000bc51505017f037e017f037e077f230041d0036b2202240002400240200129037022034202520d00200241086a20014188016a41d80010fe011a420021030c010b20024198016a200141e4006a29000037030020024190016a200141dc006a29000037030020024188016a200141d4006a29000037030020024180016a200141cc006a290000370300200241f8006a200141c4006a290000370300200241e0006a41106a2001413c6a290000370300200241e0006a41086a200141346a2900003703002002200129002c37036020012903002105200241a0016a41106a200141f0006a220641106a290300370300200241a0016a41086a200641086a290300370300200220062903003703a00120014180016a2903002107200129037821084200210920024180026a41086a22064200370300200242003703800241dd81c000410d20024180026a1000200241086a41086a2006290300370300200220022903800237030842002104024002400240024002400240024002400240200241086a411041e4a4c100410041001001417f460d002002420037038002200241086a411020024180026a41084100100141016a41084d0d0120022903800221040b024020034201520d002008500d032004200720072004541b2203200320077d2008827d21090b20024180026a2009101d200241d4016a41026a20022d0082023a0000200241086a41086a220620024193026a290000370300200241086a410d6a220a20024198026a290000370000200220022f0180023b01d4012002200229008b02370308200228008302210b200228008702210c200241b8016a410d6a200a290000370000200241b8016a41086a2006290300370300200220022903083703b8012001410c6a2802002106200141086a2d0000210d2001280210210a200241bc036a41026a220e2001410b6a2d00003a000020024180026a41086a220f2001411c6a29020037030020024180026a410d6a2210200141216a290000370000200220012f00093b01bc0320022001290214370380020240024002400240024002400240200d4101470d00200241c0036a2006410676101e20022802c8032006413f7122064d0d01200241b8036a41026a20022802c00320064105746a220641026a2d00003a0000200241a0036a200641136a290000370300200241a5036a200641186a290000370000200220062f00003b01b8032002200629000b370398032006280007210a200628000321064101210d20022802c4030d020c030b200241b8036a41026a200e2d00003a000020024198036a41086a200f29030037030020024198036a410d6a2010290000370000200220022f01bc033b01b8032002200229038002370398030c030b4100210d20022802c403450d010b20022802c003101f0b200d450d010b200241c0036a41026a200241b8036a41026a2d00003a000020024180026a41086a20024198036a41086a29030037030020024180026a410d6a20024198036a410d6a290000370000200220022f01b8033b01c0032002200229039803370380024100210d0c010b4101210d4115210a41d49bc10021060b200241fc016a41026a220e200241c0036a41026a2d00003a0000200241086a41086a220f20024180026a41086a2210290300370300200241086a41106a20024180026a41106a290300370300200220022f01c0033b01fc0120022002290380023703080240200d450d002000200636020420004101360200200041086a200a36020020014188016a1020200241d0036a24000f0b200241eb016a200f290300370000200241f0016a200241086a410d6a290000370000200220022f01fc013b01d8012002200a3600df01200220063600db01200220022903083700e3012002200e2d00003a00da012002200537038002201020014188016a41d80010fe01210e200241ff026a200c360000200241fb026a200b360000200241f0026a200241a0016a41106a290300370300200241e8026a2201200241a0016a41086a290300370300200241fa026a200241d4016a41026a2d00003a000020024183036a20022903b8013700002002418b036a200241b8016a41086a29030037000020024190036a200241b8016a410d6a290000370000200220022903a0013703e002200220022f01d4013b01f802200241003602102002420137030820024180026a200241086a1021200e200241086a102202400240024002400240024002400240024020022903e0024201520d0020012903002203420c882204420120044201561b22044200510d0c200241f0026a2903002004802104200228020c2206200241106a28020022016b41024f0d01200141026a220a2001490d0a20064101742201200a200a2001491b22014100480d0a2006450d05200228020820062001101422060d060c0e0b0240200228020c200241106a2802002201470d00200141016a22062001490d0a2001410174220a20062006200a491b220a4100480d0a2001450d0220022802082001200a101422060d030c0d0b200228020821060c030b200228020821060c050b200a10122206450d0a0b2002200a36020c20022006360208200241106a28020021010b200241106a200141016a360200200620016a41003a00000c030b200110122206450d080b2002200136020c20022006360208200241106a28020021010b200241106a200141026a360200200620016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b024002400240200228020c220b200241106a28020022016b41204f0d00200141206a22062001490d04200b4101742201200620062001491b220a4100480d04200b450d012002280208200b200a10142206450d020c090b200228020821060c090b200a101222060d070b200a41011015000b41de86c00041331023000b1010000b41d4c5c2001024000b41fcc9c1001024000b200a41011015000b200141011015000b2002200a36020c20022006360208200241106a2802002101200a210b0b200620016a220a200241f8026a220d290000370000200a41186a200d41186a290000370000200a41106a200d41106a290000370000200a41086a200d41086a290000370000024002400240200141206a2201418102490d00200241086a41186a220a4200370300200241086a41106a220d4200370300200241086a41086a220c42003703002002420037030820062001200241086a100220024198036a41186a200a29030037030020024198036a41106a200d29030037030020024198036a41086a200c290300370300200220022903083703980320024198036a4120200241e0006a200241d8016a10032101200b0d010c020b20062001200241e0006a200241d8016a10032101200b450d010b2006101f0b02402001450d00200041e99bc10036020420004101360200200041086a411a360200200e1020200241d0036a24000f0b20024198036a41186a200241d8016a41186a29030037030020024198036a41106a200241d8016a41106a29030037030020024198036a41086a200241d8016a41086a290300370300200220022903d801370398032002290380022104200241086a200e41d80010fe011a420121030b200041086a2003370300200041306a2004370300200041106a200229039803370300200041186a20024198036a41086a290300370300200041206a20024198036a41106a290300370300200041286a20024198036a41186a290300370300200041386a200241086a41d80010fe011a20004100360200200241d0036a24000bf60201037f230041306b2202240002400240411010122203450d00200341086a410029009482403700002003410029008c824037000020034110412010142203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1000200241086a2004290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010012204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241306a24000f0b41de86c00041331023000b411041011015000b412041011015000b890201027f230041306b22022400024002400240410f10122203450d00200341076a41002900e09540370000200341002900d995403700002003410f411e10142203450d012003200136000f200241206a41086a220142003703002002420037032020034113200241206a1000200241086a200129030037030020022002290320370300024002402002411041e4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b410f41011015000b411e41011015000b41de86c00041331023000b0700200010f1010b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a220028020010202000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510142204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010142204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101422040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101422070d0a0c110b2005101222040d130b200541011015000b200128020021040c050b200128020021070c070b2000101222040d0d0b200041011015000b200010122204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410122207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101422050d020c060b200128020021050c020b200810122205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011015000b4194bdc2001024000b2002200241086a360240200241e893c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4103360200200241106a41146a4103360200200241e4a4c1003602582002420137024c200241acbdc2003602482002410336022c20024203370214200241ecc5c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41b4bdc200103a000b200041011015000b200441011015000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000be9a40104047f017e067f017e230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022030d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00000240200041086a29030022064202520d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041106a20011021200041086a29030021060b2006a722034101460d012003450d0220002d000021030b200341ff01714101470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41b8dbc1001024000b41b8dbc1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41003a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41023a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a28020021030b024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41043a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22044100480d232003450d0120012802002003200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101302402005450d002003200541186c6a2109200141046a210803402003280200210a2002200341086a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071014220b0d020c080b2001280200210b0c020b20071012220b450d060b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071014220b0d020c090b2001280200210b0c020b20071012220b450d070b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a200341186a22032009470d000b0b200041086a28020021030b20034101460d032003450d0420002d000021030b0240200341ff017122044103460d0020044102470d07200110774188dbc1001024000b024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1f20034101742205200420042005491b22054100480d1f2003450d0120012802002003200510142204450d020c070b200128020021040c070b2005101222040d050b200541011015000b200741011015000b200741011015000b41e4cac1001024000b41e4cac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110782002200041306a36020c2002410c6a2001106d200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a200110782002200041306a36020c2002410c6a2001106d2002200041c0006a36020c2002410c6a2001106d200041086a28020021030b20034101460d012003450d0220002d000021030b200341ff01714104470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41a0dbc1001024000b41a0dbc1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041106a20011021200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b200341ff017122034101460d012003450d0220002d000021030b200341ff01714105470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b4190b0c2001024000b4190b0c2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a20011013200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002000410c6a20011078200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00002000410c6a20011013200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41043a00002000410c6a20011013200041206a200110132002200041106a36020c2002410c6a2001106d200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200041106a20011021200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200041106a20011021200041086a2d000021030b0240200341ff01714109470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41093a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1320074101742204200a200a2004491b22044100480d132007450d01200128020020072004101422070d020c080b200128020021070c020b200410122207450d060b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff017122034101460d022003450d0320002d000021030b200341ff01714106470d05024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0e20034101742205200420042005491b22054100480d0e2003450d0120012802002003200510142204450d020c060b200128020021040c060b2005101222040d040b200541011015000b200441011015000b41949ac2001024000b41949ac2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240200041046a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a28020020011022200041046a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a20011078200041046a28020021030b20034101460d012003450d0220002d000021030b200341ff01714107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41f8afc2001024000b41f8afc2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00000240200041086a2d000022034107714107460d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e0714150002010403140b200141046a280200200141086a2802002203470d06200341016a22042003490d2120034101742205200420042005491b22054100480d212003450d0d20012802002003200510142204450d0e0c1d0b200141046a280200200141086a2802002203470d03200341016a22042003490d2020034101742205200420042005491b22054100480d202003450d0820012802002003200510142204450d090c1a0b200141046a280200200141086a2802002203470d03200341016a22042003490d1f20034101742205200420042005491b22054100480d1f2003450d0920012802002003200510142204450d0a0c170b200141046a280200200141086a2802002203470d04200341016a22042003490d1e20034101742205200420042005491b22054100480d1e2003450d0c20012802002003200510142204450d0d0c140b200141046a280200200141086a2802002203470d04200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0d20012802002003200510142204450d0e0c110b200128020021040c170b200128020021040c140b200128020021040c170b200128020021040c100b200128020021040c0d0b2005101222040d110b200541011015000b2005101222040d0d0b200541011015000b2005101222040d0f0b200541011015000b2005101222040d070b200541011015000b2005101222040d030b200541011015000b41989ec2001024000b41989ec2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0f20044101742203200520052003491b22034100480d0f2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c080b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c060b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a20073600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0b20012802002003200510142204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0620012802002003200510142204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0720012802002003200510142204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0a20012802002003200510142204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101222040d0b0b200541011015000b2005101222040d070b200541011015000b2005101222040d090b200541011015000b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00000c0a0b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00000c080b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00000c060b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00000c040b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c020b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002106200041306a290300210d02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a220320063700082003200d3700002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041186a28020021082002200041206a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041246a280200210820022000412c6a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a0b20002d000021030b200341ff01714108470d0402400240024002400240200141046a2205280200200141086a22032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a00000240200041086a2d000022044102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041386a2903002106200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b200441ff01714104470d0302400240024002400240200528020020032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41023a000002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0320074101742204200820082004491b22044100480d032007450d0120012802002007200410142207450d020c040b200128020021070c040b2004101222070d020b200441011015000b1010000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a290000370000200420072900003700000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b200141086a220b200441206a360200200720046a220441186a200041296a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210a2002200041d4006a280200220436020c2002410c6a2001101302400240024002400240200141046a2802002208200b28020022076b20044f0d00200720046a220b2007490d1620084101742207200b200b2007491b22074100480d162008450d0120012802002008200710142208450d020c030b200128020021080c030b2007101222080d010b200741011015000b20012008360200200141046a2007360200200141086a28020021070b2003200720046a360200200820076a200a200410fe011a200041086a2d000021040b0240200441ff01714105470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410e3a0000200041086a2d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410f3a0000200041086a2d000021040b0240200441ff01714112470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d1620044101742207200520052007491b22074100480d162004450d0120012802002004200710142205450d020c030b200128020021050c030b2007101222050d010b200741011015000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200041096a2d00003a0000200041086a2d000021040b200441ff017122034101460d012003450d0220002d000021030b200341ff01714109470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41e4f8c1001024000b41e4f8c1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1620074101742204200a200a2004491b22044100480d162007450d01200128020020072004101422070d020c070b200128020021070c020b200410122207450d050b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff01714103470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c040b200128020021040c040b2005101222040d020b200541011015000b200441011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a2d000021030b200341077122034101460d012003450d0220002d000021030b200341ff0171410a470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41ecbec2001024000b41ecbec2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a0000200041046a28020022034102460d012003450d0220034101460d030b200241106a24000f0b024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b419cc0c1001024000b419cc0c1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a28020021072002200041106a280200220036020c2002410c6a20011013024002400240200141046a2802002204200528020022036b20004f0d00200320006a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310142204450d020c040b200128020021040c040b2003101222040d020b200341011015000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200320006a360200200420036a2007200010fe011a200241106a24000b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410436022c20024201370214200241a0d5c2003602102002200241086a3602282002200241286a360220200241106a41a8d5c200103a000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a410036020020012004370318200141e4a4c100360210200142013702042001200141186a36020020012003370328200120023703202001200141206a103a000bd51701267f230041900d6b220324002003410036021041af82c0004110200341106a41041004200320003703f00c200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a410810042004420037030020034200370300418c83c0004111200310002005200429030037030020032003290300370310200341106a411020014120100402400240411010122204450d00200441086a410029009482403700002004410029008c824037000020044110412010142205450d0120052000427f7c370010200341086a22044200370300200342003703002005411820031000200341106a41086a2206200429030037030020032003290300370310200341106a41102001412010042005101f200442003703002003420037030041ea81c0004115200310002006200429030037030020032003290300370310200341106a4110200241201004200442003703002003420037030041dd81c000410d2003100020062004290300370300200320032903003703100240200341106a411041e4a4c100410041001001417f460d00200342003703f00c02400240200341106a4110200341f00c6a41084100100141016a41084d0d0020032903f00c4200510d02200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a20042903003703002003200329030037031041002107427f21000240200341106a411041e4a4c100410041001001417f460d00200342003703f00c200341106a4110200341f00c6a41084100100141016a41084d0d0220032903f00c427f7c21000b200341106a410041e00c10fd011a41002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200341f00c6a42002000427f7c2000501b2200101d200341106a202722014103704105746a220441186a200341f00c6a41186a290200370000200441106a200341f00c6a41106a290200370000200441086a200341f00c6a41086a290200370000200420032902f00c370000200141016a21274100210541002102024003402001200141036e2206417d6c6a4102470d01200341106a20056a220441df006a2d000022262004411f6a2d000022287120262028722004413f6a2d00007172211c200441de006a2d000022262004411e6a2d000022287120262028722004413e6a2d00007172211b200441dd006a2d000022262004411d6a2d000022287120262028722004413d6a2d00007172211a200441dc006a2d000022262004411c6a2d000022287120262028722004413c6a2d000071722119200441db006a2d000022262004411b6a2d000022287120262028722004413b6a2d000071722118200441da006a2d000022262004411a6a2d000022287120262028722004413a6a2d000071722117200441d9006a2d00002226200441196a2d00002228712026202872200441396a2d000071722116200441d8006a2d00002226200441186a2d00002228712026202872200441386a2d000071722115200441d7006a2d00002226200441176a2d00002228712026202872200441376a2d000071722114200441d6006a2d00002226200441166a2d00002228712026202872200441366a2d000071722113200441d5006a2d00002226200441156a2d00002228712026202872200441356a2d000071722112200441d4006a2d00002226200441146a2d00002228712026202872200441346a2d000071722111200441d3006a2d00002226200441136a2d00002228712026202872200441336a2d000071722110200441d2006a2d00002226200441126a2d00002228712026202872200441326a2d00007172210f200441d1006a2d00002226200441116a2d00002228712026202872200441316a2d00007172210e200441d0006a2d00002226200441106a2d00002228712026202872200441306a2d00007172210d200441cf006a2d000022262004410f6a2d000022287120262028722004412f6a2d00007172210c200441ce006a2d000022262004410e6a2d000022287120262028722004412e6a2d00007172210b200441cd006a2d000022262004410d6a2d000022287120262028722004412d6a2d00007172210a200441cc006a2d000022262004410c6a2d000022287120262028722004412c6a2d000071722109200441cb006a2d000022262004410b6a2d000022287120262028722004412b6a2d000071722108200441ca006a2d000022262004410a6a2d000022287120262028722004412a6a2d000071722107200441c9006a2d00002226200441096a2d00002228712026202872200441296a2d00007172211d200441c8006a2d00002226200441086a2d00002228712026202872200441286a2d00007172211e200441c7006a2d00002226200441076a2d00002228712026202872200441276a2d00007172211f200441c6006a2d00002226200441066a2d00002228712026202872200441266a2d000071722120200441c5006a2d00002226200441056a2d00002228712026202872200441256a2d000071722121200441c4006a2d00002226200441046a2d00002228712026202872200441246a2d000071722122200441c3006a2d00002226200441036a2d00002228712026202872200441236a2d000071722123200441c2006a2d00002226200441026a2d00002228712026202872200441226a2d000071722124200441c1006a2d00002226200441016a2d00002228712026202872200441216a2d000071722125200441c0006a2d0000222620042d00002228712026202872200441206a2d000071722126200541800c460d01200341106a20052006410574200141096e41e0006c6b6a6a220441ff006a201c3a0000200441fe006a201b3a0000200441fd006a201a3a0000200441fc006a20193a0000200441fb006a20183a0000200441fa006a20173a0000200441f9006a20163a0000200441f8006a20153a0000200441f7006a20143a0000200441f6006a20133a0000200441f5006a20123a0000200441f4006a20113a0000200441f3006a20103a0000200441f2006a200f3a0000200441f1006a200e3a0000200441f0006a200d3a0000200441ef006a200c3a0000200441ee006a200b3a0000200441ed006a200a3a0000200441ec006a20093a0000200441eb006a20083a0000200441ea006a20073a0000200441e9006a201d3a0000200441e8006a201e3a0000200441e7006a201f3a0000200441e6006a20203a0000200441e5006a20213a0000200441e4006a20223a0000200441e3006a20233a0000200441e2006a20243a0000200441e1006a20253a0000200441e0006a20263a0000200541e0006a210520062101200241016a22024111490d000b0b202741d100470d000b2003201c3a008f0d2003201b3a008e0d2003201a3a008d0d200320193a008c0d200320183a008b0d200320173a008a0d200320163a00890d200320153a00880d200320143a00870d200320133a00860d200320123a00850d200320113a00840d200320103a00830d2003200f3a00820d2003200e3a00810d2003200d3a00800d2003200c3a00ff0c2003200b3a00fe0c2003200a3a00fd0c200320093a00fc0c200320083a00fb0c200320073a00fa0c2003201d3a00f90c2003201e3a00f80c2003201f3a00f70c200320203a00f60c200320213a00f50c200320223a00f40c200320233a00f30c200320243a00f20c200320253a00f10c200320263a00f00c200341086a220442003703002003420037030041cc81c000411120031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41201004200442003703002003420037030041ff81c000410d200310002005200429030037030020032003290300370310200341106a41101005200341900d6a24000f0b41de86c00041331023000b41de86c00041331023000b41b4c0c1001024000b411041011015000b412041011015000bb00202027f017e230041206b2201240002400240411310122202450d002002410f6a41002800ab8240360000200241086a41002900a482403700002002410029009c824037000020024113413310142202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1000200141086a200029030037030020012001290310370300024002402001411041e4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021030b2002101f200141206a240020030f0b41de86c00041331023000b411341011015000b413341011015000b9f6a17067f017e127f017e047f037e037f017e017f017e027f017e027f077e097f017e017f017e047f027e017f047e047f230041b0046b2201240002400240024002400240024002400240024002400240024002400240024041af82c000411041e4a4c100410041001001417f460d002001410036020841af82c0004110200141086a41044100100141016a41044d0d0220012802082102410021030c010b410121030b4108210420014198016a41086a22054200370300200142003703980141ff81c000410d20014198016a1000200141f8006a41086a20052903003703002001200129039801370378024002400240200141f8006a411041e4a4c100410041001001417f460d002001421037028c012001200141f8006a36028801200120014188016a10282001280200450d0920012802042206ad42f8007e2207422088a70d042007a72205417f4c0d042005450d01200510122204450d052006450d020c060b41002117410021160c060b4108210420060d040b41002116410021172004450d060c040b41de86c00041331023000b100f000b200541081015000b200141f0036a41176a2108200141f0026a41176a210920014190036a41176a210a41c000210b20014188016a41086a210c200141086a41186a210d200141086a41106a210e20014180026a411b6a210f20014180026a41136a2110200141f0026a410c6a2111200141e6016a2112200141ee016a2113200141f2016a21144100211541002105200621160340200141003a0008200128028801200128028c01200141086a4101200c28020010012117200c200c280200201741016a41014b22186a22173602002018450d024101214d0240024020012d000822184101460d0020180d0420014100360208200c4100200128028801200128028c01200141086a41042017100122172017417f461b2218410420184104491b200c2802006a2217360200201841034d0d042001280208214e4100214d0c010b0b200141003a0008200128028801200128028c01200141086a4101201710012117200c200c280200201741016a221741014b6a221836020002400240024020174102490d00410b213420012d00082217410a4b0d010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020170e0b2b050203000607040901082b0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2c20012d00ff012217450d0f20174101460d0e20174102470d2c200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2c2019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d8012001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d2c2019290300211f20012903082120200141d0036a41146a201c360200200141d0036a41106a201b360200200141d0036a41186a201d360200200141d0036a411c6a201e3602002001201a3703d803200120073703d003201e4118762117200141d0036a410f6a2900002221422088a72122200141d0036a411b6a2800002123200141d0036a41176a280000212420012900d70321252021a7212641022119200721270c100b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2b20012d00ff0122174101460d0820170d2b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2b20012903082125410021190c090b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d1220012d00ff012217450d1020174101460d0f20174102470d12200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300211a200e280200211b200141086a41146a221e280200211c200d280200211d20012903082107200141d0036a411c6a200141086a411c6a22282802002229360200200141d0036a41186a201d360200200141d0036a41146a201c360200200141d0036a41106a201b3602002001201a3703d803200120073703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300212a20282802002128200d280200212b201e280200211e200e280200212c2001290308212d2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a22183602002017410f4d0d122019290300212e2001290308212f2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d12201929030021302001290308213120014190036a411c6a202836020020014190036a41186a202b36020020014190036a41146a201e360200200141b0036a411c6a2029360200200141b0036a41186a201d360200200141b0036a41146a201c360200200141b0036a41106a201b36020020014190036a41106a202c360200200141c8016a41086a200a41086a2d00003a00002001202d370390032001202a370398032001200a2900003703c801202d4208862029411876ad842132200120073703b0032001201a3703b8032007423888201a4208868421252007421888a72117200141b0036a411b6a2800002123200141b0036a41176a2800002124200141b0036a41136a2800002122200141b0036a410f6a280000212620014190036a410f6a290000211f20012900970321202007a7211841022119202f2121202e21330c110b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2920012d00080d2920014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2920012903082107200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b801200742088821272007a72119410321340c2a0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2820012d00ff01221741064b0d28024020170e0700141315121617000b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2820192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a20014180026a411c6a200141086a411c6a280200221c36020020014180026a41186a201b36020020014180026a41146a201936020020014180026a41106a201736020020014190046a411c6a201c36020020014190046a41186a221c201b36020020014190046a41146a201936020020014190046a41106a2219201736020020012007370388022001201a3703800220012007370398042001201a3703900420014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2820012802082118200141f0036a41186a201c290300370300200141f0036a41106a2019290300370300200141f0036a41086a20014190046a41086a29030037030020012001290390043703f003200141f0036a411f6a2d00002117200141f0036a411b6a280000212320082800002124200141f0036a41136a2800002122200141f0036a410f6a280000212620012900f703212520012800f303211b20012f00f103213520012d00f003211c410021190c180b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2720012d00ff010d27200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b22174120201741204922171b200c2802006a221836020020170d272019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d80120014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2720012802082136200141b8016a41086a20192d00003a0000200120012903083703b801200742088821272007a7211941012134201c2122201e2123201d2124201a2125201b21260c280b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2620012d00ff010d2620014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221836020020170d262001280208211b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d26200141086a41086a2217290300212520012903082107200141b8016a41086a20172d00003a0000200120012902083703b801200742088821272007a7211941052134201b21260c270b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2520012d00ff012217450d0420174101470d25200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d2520192903002107200141086a411c6a2802002117200d280200211820012903082120200141d8016a41106a200e290300370300200141d8016a41186a2018360200200141d8016a411c6a2017360200200120073703e001200120203703d801201741107621172020421088a721362020420888a7213720122901002125201328010021262014280100212220012901de0121072020a72138410121390c050b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2420012d00080d24200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d24200141086a410f6a2900002125200141086a411f6a2d00002124200141086a411b6a2800002122200141086a41176a2800002126200128000b213620012d000a213720012d0009213820012d00082139200129000f2107200141b8016a41086a20192d00003a0000200120012900083703b801200742088821272007a72119410a21340c050b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2020012d00ff012217410a4b0d2041002119024020170e0b20001819161b1c1a1d171f200b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d202001280208213a200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410121190c1f0b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2220012903082125410121190b200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b80141092134420021270c220b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d2020012d0008213841002139420021250b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801201741ffff03712124200742088821272007a72119410621340b0c1f0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1d20192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a22192017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a36020020170d1d2001280208211820014190036a41186a201c29030037030020014190036a41106a201929030037030020014190036a41086a200141b0036a41086a290300370300200120012903b003370390032001350290032001330194032001310096034210868442208684212720014190036a410f6a2900002207422088a7212220014198016a41086a290300211f20014190036a411f6a2d0000211720014190036a411b6a2800002123200a2800002124200129039801212020012900970321252007a72126410121190c010b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d1c200141086a41086a2903002207422088a7212220012903082125200141f0026a41186a290300211f200141f0026a41106a290300212020112802002118200141f0026a41086a280200211720012802f40221232007a7212641002119420021270b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b8012018ad4220862017ad842132410421340c0c0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0220192903002120200e2802002117200141086a41146a2802002118200d280200213420012903082107200141f0026a411c6a200141086a411c6a2802002219360200200141f0026a41186a2034360200200141f0026a41146a2018360200200141f0026a41106a2017360200200141d0026a411c6a2019360200200141d0026a41186a2034360200200141d0026a41146a2018360200200141d0026a41106a2017360200200120203703f802200120073703f002200120203703d802200120073703d002200141c8016a41086a200141c7026a41086a2d00003a0000200120012900c7023703c801200742388820204208868421252007421888a721172019411876ad2132200141d0026a411b6a2800002123200141d0026a41176a2800002124200141d0026a41136a2800002122200141d0026a410f6a28000021262007a72118410121190c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a280200360200200141a0026a41186a221d201c360200200141a0026a41146a201b360200200141a0026a41106a221b2017360200200120073703a8022001201a3703a0022001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d012019290300211f2001290308212020014180026a41186a201d29030037030020014180026a41106a201b29030037030020014180026a41086a200141a0026a41086a290300370300200120012903a00237038002200141c8016a41086a20192d00003a0000200120012903083703c80120013502800222072001330184022001310086024210868442208684421888a7211720014180026a411f6a3100002132200f280000212320014180026a41176a28000021242010280000212220014180026a410f6a280000212620012900870221252007a72118410021190b200141086a41086a200141c8016a41086a2d000022343a0000200141b8016a41086a20343a0000200120012903c80122073703b801200120073703082017ad4218862018ad42ffffff0783842127410221344100213b0c190b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c170b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211c20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211e20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208212820014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d1620012802082117200141003a00ff01200128028801200128028c01200141ff016a4101201810012118200c200c280200201841016a41014b22186a22193602002018450d1620012d00ff01221841054b0d1620014200370308200c4100200128028801200128028c01200141086a41082019100122192019417f461b2219410820194108491b200c2802006a360200201941074d0d162017411076213c2017410876211d200129030821254104211920282123201e2124201c2122201b21260c050b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d152001280208211b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a3602002017450d1520012d00ff01221c41064f0d15200141f0026a41186a2802002217411076213c2017410876211d200141f0026a411c6a2802002118200141f0026a41146a2802002123200141f0026a41106a280200212420112802002122200141f0026a41086a2802002126410221190c050b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d142019290300211a200e2802002117200141086a41146a2802002119200d280200211b20012903082107200141d0026a411c6a200141086a411c6a280200221c360200200141d0026a41186a201b360200200141d0026a41146a2019360200200141d0026a41106a20173602002001201a3703d802200120073703d00220014100360208200c4100200128028801200128028c01200141086a41042018100122182018417f461b22184104201841044922181b200c2802006a36020020180d1420012802082118200141a0026a411c6a201c360200200141a0026a41186a201b360200200141a0026a41146a2019360200200141a0026a41106a2017360200200120073703a0022001201a3703a8022007423888201a420886842125201c41187621172007421888a7211b2007420888a72135200141a0026a411b6a2800002123200141a0026a41176a2800002124200141a0026a41136a2800002122200141a0026a410f6a28000021262007a7211c410121190c040b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1320192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221936020020170d1320012802082118200141003a00ff01200128028801200128028c01200141ff016a4101201910012117200c200c280200201741016a41014b22176a3602002017450d1320012d00ff01221d41044f0d1320014190036a41186a201c29030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200120012903b0033703900320014190036a411f6a2d0000211720014190036a411b6a2800002123200a280000212420014190036a41136a280000212220014190036a410f6a28000021262001290097032125200128009303211b20012f009103213520012d009003211c410321190c030b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2219360200201741034d0d1220012802082118200d4200370300200e4200370300200141086a41086a221b420037030020014200370308200c4100200128028801200128028c01200141086a41202019100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d12201b2903002120200e2802002117200141086a41146a2802002134200d280200211920012903082107200141d0036a411c6a200141086a411c6a280200223b360200200141d0036a41186a2019360200200141d0036a41146a2034360200200141d0036a41106a2017360200200120203703d803200120073703d00320074238882020420886842125203b41187621172007421888a7211b2007420888a72135200141d0036a411b6a2800002123200141d0036a41176a2800002124200141d0036a41136a2800002122200141d0036a410f6a28000021262007a7211c410521190c020b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d112001280208211b200141d8016a41186a2802002217411076213c2017410876211d200141d8016a411c6a2802002118200141d8016a41146a2802002123200141d8016a41106a2802002124200141d8016a410c6a2802002122200141d8016a41086a2802002126410621190b0b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b801201bad4218862035ad42ffff038342088684201cad42ff0183842127203cad42ffff0383421086201dad42ff0183420886842017ad42ff0183842018ad422086842132410721340b0c0f0b410421190c090b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0920192903002107200e2802002117200141086a41146a221e280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a2228280200221d360200200141a0026a41186a201c360200200141a0026a41146a201b360200200141a0026a41106a201736020020014180026a411c6a201d36020020014180026a41186a221d201c36020020014180026a41146a201b36020020014180026a41106a221b2017360200200120073703a8022001201a3703a00220012007370388022001201a37038002200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0920192903002120200e2802002117201e2802002118200d280200213420012903082107200141f0036a411c6a2028280200360200200141f0036a41186a2034360200200141f0036a41146a2018360200200141f0036a41106a201736020020014190046a41086a20014180026a41086a29030037030020014190046a41106a201b29030037030020014190046a41186a201d290300370300200120203703f803200120073703f003200120012903800237039004200141c8016a41086a200841086a2d00003a0000200120082900003703c801200742088620014190046a411f6a31000084213d20012f01900420012d00920441107472213e200141f0036a410f6a290000213f20014190046a411b6a280000214020014190046a41176a280000214120014190046a41136a280000214220014190046a410f6a280000214320012900f70321442001290097042145200128009304213a410921190c060b410221190c070b410321190c060b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d0620012903082145200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410721190c050b410521190c040b410621190c030b200d4200370300200e4200370300200141086a41086a420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0341082119200141086a41086a2903002120200e2802002117200141086a41146a22182802002134200d280200213b20012903082107200141086a411c6a224620462802002246360200200d203b36020020182034360200200e2017360200200141c8016a41086a200141c7026a41086a2d00003a00002001202037031020012007370308200120012900c7023703c801200742388820204208868421452007421888a7213a2046411876ad213d200141086a411b6a2800002140200141086a41176a2800002141200141086a41136a2800002142200141086a410f6a28000021432007a7213e0b0c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a221d280200211b200d280200211c2001290308211a200141b0036a411c6a200141086a411c6a221e280200360200200141b0036a41186a2228201c360200200141b0036a41146a201b360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117201d280200211c200d280200211d2001290308211a200141d0036a411c6a201e280200360200200141d0036a41186a221e201d360200200141d0036a41146a201c360200200141d0036a41106a221c2017360200200120073703d8032001201a3703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d01200d2903002107200e29030021202001290308211f200141d8016a41086a20192903002221370300200141d8016a41106a2020370300200141d8016a41186a2007370300200141d0026a41086a2021370300200141d0026a41186a2007370300200141d0026a41106a20203703002001201f3703d8012001201f3703d00220014190036a41186a202829030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200141f0026a41086a200141d0036a41086a290300370300200141f0026a41106a201c290300370300200141f0026a41186a201e290300370300200120012903b00337039003200120012903d0033703f002200141c8016a41086a200941086a2d00003a0000200120092900003703c80120012f01d00220012d00d20241107472214b20012f01900320012d00920341107472213e20013502f00220013301f40220013100f602421086844220868442088620014190036a411f6a31000084213d200141f0026a410f6a290000213f200141d0026a410f6a2900002148200141d0026a411f6a310000214a200141d0026a41176a290000214920014190036a411b6a2800002140200a280000214120014190036a41136a280000214220014190036a410f6a280000214320012900f702214420012900d70221472001290097032145200128009303213a20012800d302214c410a21190b41082134200141086a41086a200141c8016a41086a2d000022173a0000200141b8016a41086a20173a0000200120012903c80122073703b80120012007370308203aad421886203ead42ffffff078384212720442120203f211f204721212048213320492131204a2130203d2132204221222040212320412124204b213b20452125204321260c040b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c020b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d0141002117024020012d00082218450d0020184101470d02410121170b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801420021274200212520172139410021340c020b410b21340b204621190b200141086a41086a2218200141b8016a41086a2d00003a0000200120012903b8013703082034410b460d02200541016a2117200141a8016a41086a224620182d00003a0000200120012903083703a801201820462d00003a0000200120012903a801370308024020052016470d002015201720172015491b2216ad42f8007e2207422088a70d072007a722464100480d0702402005450d002004200b41406a2046101422040d010c060b204610122204450d050b2004200b6a220541686a2032370000200541646a2023360000200541606a20243600002005415c6a2022360000200541586a2026360000200541446a2036360000200541436a20373a0000200541426a20383a0000200541416a20393a0000200541406a20343a0000200541506a2025370000200541486a20274208862019ad42ff018384370000200541786a201f370000200541706a2020370000200541286a2030370000200541206a2031370000200541186a2033370000200541106a202137000020182d00002118200129030821072005410b6a203b4110763a0000200541096a203b3b0000200541346a204e360200200541306a204d3602002005410c6a204c360000200541086a20183a000020052007370000201541026a2115200b41f8006a210b201921462017210520172006490d000b0b200141086a200041f00010fe011a20162017470d03201741016a22052017490d042017410174220c20052005200c491b2216ad42f8007e2207422088a70d042007a722054100480d04024002402017450d002004201741f8006c200510142204450d010c050b2005101222040d040b200541081015000b2016450d002004101f0b41de86c00041331023000b204641081015000b2004201741f8006c220c6a200141086a41f00010fe01220541f4006a20023602002005200336027020014100360210200142013703082001201741016a2205360278200141f8006a200141086a101302402005450d00200c41f8006a2118200141106a210c2004210503400240024002400240024002400240024002400240200541f0006a2802004101470d00200141013a00ff01200128020c200c2802002217470d01201741016a220b2017490d0c20174101742234200b200b2034491b22344100480d0c2017450d032001280208201720341014220b0d040c0d0b200141003a00ff01200128020c200c2802002217470d01201741016a220b2017490d0b20174101742234200b200b2034491b22344100480d0b2017450d052001280208201720341014220b0d060c0d0b410121342001280208210b0c030b410021342001280208210b0c050b20341012220b450d090b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a00000c030b20341012220b450d070b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a0000200541f4006a28020021340240024002400240200128020c220b200c28020022176b41044f0d00201741046a22152017490d07200b4101742217201520152017491b22174100480d07200b450d012001280208200b20171014220b0d020c0a0b2001280208210b0c020b20171012220b450d080b2001201736020c2001200b360208200c28020021170b200c201741046a360200200b20176a20343600000b2005200141086a1029200541f8006a2105201841887f6a22180d000b0b200141086a41086a220c2802002117200128020c21182001280208210520014198016a41086a220b4200370300200142003703980141ff81c000410d20014198016a1000200c200b2903003703002001200129039801370308200141086a411020052017100402402018450d002005101f0b02402016450d002004101f0b200141b0046a24000f0b1010000b203441011015000b203441011015000b201741011015000bca0301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081001210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f22064103712204450d0020044101460d0120044102470d0220024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100122012001417f461b22014103200141034922011b20042802006a36020020010d04200228020841027621040c050b20064102762104410121030c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510012104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641044f0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100122012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b8a8a0103057f027e017f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4420024101742204200320032004491b22044100480d442002450d1f20012802002002200410142203450d200c420b200141046a280200200141086a2802002202470d09200241016a22032002490d4320024101742204200320032004491b22044100480d432002450d1420012802002002200410142203450d150c3f0b200141046a280200200141086a2802002202470d09200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002202470d09200241016a22032002490d4120024101742204200320032004491b22044100480d412002450d1620012802002002200410142203450d170c360b200141046a280200200141086a2802002202470d09200241016a22032002490d4020024101742204200320032004491b22044100480d402002450d1720012802002002200410142203450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002202470d0a200241016a22032002490d3e20024101742204200320032004491b22044100480d3e2002450d1b20012802002002200410142203450d1c0c2d0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1c20012802002002200410142203450d1d0c2a0b200141046a2204280200200141086a22022802002203470d0a200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1d20012802002003200610142205450d1e0c270b200141046a280200200141086a2802002202470d0a200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1e20012802002002200410142203450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3320024101742204200320032004491b22044100480d332002450d1f20012802002002200410142203450d200c210b200128020021030c360b200128020021030c300b200128020021030c2d0b200128020021030c2a0b200128020021030c270b200128020021030c330b200128020021030c230b200128020021030c200b200128020021050c1d0b200128020021030c1a0b200128020021030c170b2004101222030d2a0b200441011015000b2004101222030d230b200441011015000b2004101222030d1f0b200441011015000b2004101222030d1b0b200441011015000b2004101222030d170b200441011015000b2004101222030d220b200441011015000b2004101222030d110b200441011015000b2004101222030d0d0b200441011015000b2006101222050d090b200641011015000b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041086a2903004201520d0020032002470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0320012802002002200410142203450d040c090b20032002470d01200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0420012802002002200410142203450d050c060b200128020021030c080b200128020021030c050b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1720024101742200200320032000491b22004100480d172002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1520024101742200200320032000491b22004100480d152002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041016a2d00004101470d0020032002470d01200241016a22002002490d2020024101742203200020002003491b22034100480d202002450d0320012802002002200310142200450d040c090b20032002470d01200241016a22002002490d1f20024101742203200020002003491b22034100480d1f2002450d0420012802002002200310142200450d050c060b200128020021000c080b200128020021000c050b2003101222000d050b200341011015000b2003101222000d010b200341011015000b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41003a00000f0b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41013a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341054b0d0002400240024002400240024020030e06000402030105000b200428020020022802002203470d09200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1320012802002003200610142205450d140c270b200428020020022802002203470d05200341016a22052003490d3b20034101742206200520052006491b22064100480d3b2003450d0c20012802002003200610142205450d0d0c240b200428020020022802002203470d05200341016a22052003490d3a20034101742206200520052006491b22064100480d3a2003450d0d20012802002003200610142205450d0e0c210b200428020020022802002203470d05200341016a22052003490d3920034101742206200520052006491b22064100480d392003450d0e20012802002003200610142205450d0f0c1e0b200428020020022802002203470d06200341016a22052003490d3820034101742206200520052006491b22064100480d382003450d1120012802002003200610142205450d120c1b0b200428020020022802002203470d06200341016a22052003490d3720034101742206200520052006491b22064100480d372003450d1220012802002003200610142205450d130c180b200428020020022802002203470d06200341016a22052003490d3620034101742206200520052006491b22064100480d362003450d1320012802002003200610142205450d140c150b200128020021050c1f0b200128020021050c1c0b200128020021050c190b200128020021050c1e0b200128020021050c150b200128020021050c120b200128020021050c0f0b2006101222050d170b200641011015000b2006101222050d130b200641011015000b2006101222050d0f0b200641011015000b2006101222050d130b200641011015000b2006101222050d090b200641011015000b2006101222050d050b200641011015000b2006101222050d010b200641011015000b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41003a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2420054101742203200620062003491b22034100480d242005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2420034101742200200420042000491b22004100480d242003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41063a00002000410c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2220034101742200200420042000491b22004100480d222003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41023a00002000410c6a28020021050240024002400240024020042802002203200228020022026b41044f0d00200241046a22042002490d2020034101742202200420042002491b22024100480d202003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a2005360000200041096a2d0000200110580f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41043a0000200041186a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600002000411c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041206a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041246a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041286a28020021050240024002400240024020042802002204200228020022036b41044f0d00200341046a22062003490d1e20044101742203200620062003491b22034100480d1e2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a20053600002000412c6a2d000020011058200041106a290300210702400240024002400240200141046a2802002203200628020022006b41084f0d00200041086a22042000490d1e20034101742200200420042000491b22004100480d1e2003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041086a360200200320006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41033a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1c20054101742203200620062003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1c20054101742203200920092003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022004101460d00024020004102460d0020004103470d02200428020020022802002200470d05200041016a22032000490d2e20004101742204200320032004491b22044100480d2e2000450d0b20012802002000200410142203450d0c0c150b200428020020022802002200470d02200041016a22032000490d2d20004101742204200320032004491b22044100480d2d2000450d0620012802002000200410142203450d070c120b200428020020022802002200470d02200041016a22032000490d2c20004101742204200320032004491b22044100480d2c2000450d0720012802002000200410142203450d080c0f0b200428020020022802002200470d03200041016a22032000490d2b20004101742204200320032004491b22044100480d2b2000450d0a20012802002000200410142203450d0b0c0c0b200128020021030c100b200128020021030c0d0b200128020021030c100b200128020021030c090b2004101222030d0b0b200441011015000b2004101222030d070b200441011015000b2004101222030d090b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41013a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41033a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41053a00002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1a20054101742203200920092003491b22034100480d1a2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024020042802002204200228020022036b41204f0d00200341206a22052003490d1a20044101742203200520052003491b22034100480d1a2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b2002200341206a360200200420036a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41013a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1820054101742203200620062003491b22034100480d182005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d1820034101742200200420042000491b22004100480d182003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41063a0000200041026a2103200141046a2802002105200428020021020240024002400240024002400240024002400240024020002d00014101470d0020052002470d01200241016a22002002490d1c20024101742204200020002004491b22044100480d1c2002450d0320012802002002200410142200450d040c090b20052002470d01200241016a22002002490d1b20024101742204200020002004491b22044100480d1b2002450d0420012802002002200410142200450d050c060b200128020021000c080b200128020021000c050b2004101222000d050b200441011015000b2004101222000d010b200441011015000b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41003a000002400240024002400240200141046a28020020042802002200470d00200041016a22022000490d1820004101742204200220022004491b22044100480d182000450d0120012802002000200410142202450d020c030b200128020021020c030b2004101222020d010b200441011015000b20012002360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200220006a20032d00003a00000f0b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41013a000002400240024002400240200141046a2802002202200428020022006b41204f0d00200041206a22042000490d1620024101742200200420042000491b22004100480d162002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041206a360200200220006a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200120032900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d2020024101742204200320032004491b22044100480d202002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1f20024101742204200320032004491b22044100480d1f2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1e20024101742204200320032004491b22044100480d1e2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1820034101742202200420042002491b22024100480d182003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1820024101742200200320032000491b22004100480d182002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1620034101742202200420042002491b22024100480d162003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041d8006a2903002107200041d0006a290300210802400240024002400240200141046a2802002203200428020022026b41104f0d00200241106a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241106a360200200320026a2202200737000820022008370000200041e8006a2903002107200041e0006a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4e20024101742204200320032004491b22044100480d4e2002450d1f20012802002002200410142203450d200c3f0b200141046a280200200141086a2802002200470d09200041016a22022000490d4d20004101742203200220022003491b22034100480d4d2000450d1420012802002000200310142202450d150c3c0b200141046a280200200141086a2802002202470d09200241016a22032002490d4520024101742204200320032004491b22044100480d452002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002200470d09200041016a22022000490d4b20004101742203200220022003491b22034100480d4b2000450d1620012802002000200310142202450d170c360b200141046a280200200141086a2802002200470d09200041016a22022000490d4a20004101742203200220022003491b22034100480d4a2000450d1720012802002000200310142202450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d4220024101742204200320032004491b22044100480d422002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002200470d0a200041016a22022000490d4820004101742203200220022003491b22034100480d482000450d1b20012802002000200310142202450d1c0c2d0b200141046a280200200141086a2802002200470d0a200041016a22022000490d4720004101742203200220022003491b22034100480d472000450d1c20012802002000200310142202450d1d0c2a0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1d20012802002002200410142203450d1e0c270b200141046a28020020042802002200470d0a200041016a22022000490d4520004101742203200220022003491b22034100480d452000450d1e20012802002000200310142202450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1f20012802002002200410142203450d200c210b200128020021020c330b200128020021030c300b200128020021020c2d0b200128020021020c2a0b200128020021030c270b200128020021030c300b200128020021020c230b200128020021020c200b200128020021030c1d0b200128020021020c1a0b200128020021030c170b2003101222020d270b200341011015000b2004101222030d230b200441011015000b2003101222020d1f0b200341011015000b2003101222020d1b0b200341011015000b2004101222030d170b200441011015000b2004101222030d1f0b200441011015000b2003101222020d110b200341011015000b2003101222020d0d0b200341011015000b2004101222030d090b200441011015000b2003101222020d050b200341011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041296a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41073a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1b20024101742200200320032000491b22004100480d1b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41063a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1520034101742202200420042002491b22024100480d152003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041c9006a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a00002000410c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0b20024101742200200420042000491b22004100480d0b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d1c20024101742204200320032004491b22044100480d1c2002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a2903002107200041106a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1220034101742202200420042002491b22024100480d122003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a290000370000200220032900003700002000412c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d1220024101742200200420042000491b22004100480d122002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1020034101742202200420042002491b22024100480d102003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1020024101742200200320032000491b22004100480d102002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0e20024101742204200320032004491b22044100480d0e2002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0e20024101742200200320032000491b22004100480d0e2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0320034101742202200420042002491b22024100480d032003450d0120012802002003200210142203450d020c040b200128020021030c040b2002101222030d020b200241011015000b1010000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41053a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0720024101742204200320032004491b22044100480d072002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a280200210502400240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241046a360200200320026a2005360000200041106a2903002107200041086a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0720024101742200200320032000491b22004100480d072002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0520034101742202200420042002491b22024100480d052003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041086a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041046a2802002103024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0320024101742200200420042000491b22004100480d032002450d0120012802002002200010142202450d020c040b200128020021020c040b2000101222020d020b200041011015000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000b1300200041063602042000419884c0003602000bd40101037f230041306b2200240002400240024041af82c000411041e4a4c100410041001001417f460d00200041003602204101210141af82c0004110200041206a41044100100141016a41044d0d022000280220210241af82c000411010050c010b410021010b20002002410020011b36020c200041206a41086a2201420037030020004200370320418080c0004115200041206a1000200041106a41086a200129030037030020002000290320370310200041106a41102000410c6a41041004200041306a24000f0b41de86c00041331023000b13002000410b360204200041ccc0c1003602000b02000b3101017f0240410110122202450d00200042818080801037020420002002360200200241003a00000f0b410141011015000bf21305037f017e057f017e057f230041d0016b22012400200141b0016a41086a22024200370300200142003703b00141cc81c0004111200141b0016a1000200141f0006a41086a22032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001418080c0004115200141b0016a100020032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001419580c0004117200141b0016a100020032002290300370300200120012903b001370370200141f0006a41101005200141dd81c000410d1030200129030821042001280200210520024200370300200142003703b001418c83c0004111200141b0016a100020032002290300370300200120012903b00137037002400240024002400240024002400240200141f0006a411041e4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010012202417f460d022002411f4d0d0220014190016a41186a2206200141b0016a41186a220329030037030020014190016a41106a2207200141b0016a41106a220829030037030020014190016a41086a2209200141b0016a41086a2202290300370300200120012903b0013703900120024200370300200142003703b001418c83c0004111200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a4110100520032006290300370300200820072903003703002002200929030037030020012001290390013703b001200141106a41186a2003290300370300200141106a41106a2008290300370300200141106a41086a2002290300370300200120012903b0013703100c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200220014190016a41086a29030037030020012001290390013703b001200141106a41186a4200370300200141106a41106a4200370300200141106a41086a4200370300200142003703100b200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b0013703704100210202400240200141f0006a411041e4a4c100410041001001417f460d0020014210370294012001200141f0006a36029001200141b0016a20014190016a103120012802b0012207450d0520012902b401210a200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a41101005200a422088a72102200aa721090c010b41042107410021090b200141b0016a41086a22034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b00137037002400240200141f0006a411041e4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020034200370300200142003703b001200141f0006a4110200141b0016a4120410010012203417f460d032003411f4d0d0320014190016a41186a220b200141b0016a41186a220829030037030020014190016a41106a220c200141b0016a41106a220629030037030020014190016a41086a220d200141b0016a41086a2203290300370300200120012903b0013703900120034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b001370370200141f0006a411010052008200b2903003703002006200c2903003703002003200d29030037030020012001290390013703b001200141306a41186a2008290300370300200141306a41106a2006290300370300200141306a41086a2003290300370300200120012903b0013703300c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200320014190016a41086a29030037030020012001290390013703b001200141306a41186a4200370300200141306a41106a4200370300200141306a41086a4200370300200142003703300b200141f0006a41186a22034200370300200141f0006a41106a22084200370300200141f0006a41086a2206420037030020014200370370200141f0006a1006200141d0006a41186a2003290300370300200141d0006a41106a2008290300370300200141d0006a41086a200629030037030020012001290370370350200141b0016a41186a220b200141106a41186a290300370300200141b0016a41106a220c200141106a41106a290300370300200141b0016a41086a220d200141106a41086a290300370300200120012903103703b00120034200370300200842003703002006420037030020014200370370200141b0016a41202004420020051b2204427f7c200141f0006a1007450d0520014190016a41186a2205200329030037030020014190016a41106a220e200829030037030020014190016a41086a220f20062903003703002001200129037037039001200320052903003703002008200e2903003703002006200f2903003703002001200129039001370370200b2003290300370300200c2008290300370300200d2006290300370300200120012903703703b00120092002470d04200241016a22032002490d0220024101742208200320032008491b2209ad42247e220a422088a70d02200aa722034100480d02024002402002450d002007200241246c200310142207450d010c060b2003101222070d050b200341041015000b41de86c00041331023000b41de86c00041331023000b1010000b41de86c00041331023000b2007200241246c6a220341003a0000200341196a200141c8016a290300370000200341116a200141c0016a290300370000200341096a200141b8016a290300370000200320012903b001370001200341216a20012f0090013b0000200341236a20014192016a2d00003a0000200241016a21020b2000200129031037001420002004370300200020012903503700342000412c6a200141106a41186a290300370000200041246a200141106a41106a2903003700002000411c6a200141106a41086a2903003700002000413c6a200141d0006a41086a290300370000200041c4006a200141d0006a41106a290300370000200041cc006a200141d0006a41186a290300370000200041ec006a200141306a41186a290300370000200041e4006a200141306a41106a290300370000200041dc006a200141306a41086a29030037000020002001290330370054200041106a20023602002000410c6a200936020020002007360208200141d0016a24000bf50104017f017e017f017e230041206b2203240042002104200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310024002400240200341106a411041e4a4c100410041001001417f460d0020034200370300200341106a4110200341084100100141016a41084d0d0220032903002106200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310200341106a41101005420121040c010b0b2000200437030020002006370308200341206a24000f0b41de86c00041331023000b9a1605027f017e137f017e0b7f23004190026b22022400200241086a2001102802400240024002400240024002400240024002400240024002402002280208450d00200228020c2203ad42247e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510122206450d032003450d020c040b2000410036020020024190026a24000f0b4104210620030d020b41002115410021130c020b200541041015000b200241b8016a41106a2105200241b8016a4101722107200241f8006a41116a2108200241c7016a2109200241106a410172210a200141046a210b200141086a210c2002418c026a41026a210d20024180026a210e200241f0016a210f410021104100211141002112200321130340200241003a00b8012001280200200b280200200241b8016a4101200c28020010012114200c200c280200201441016a41014b22146a22153602002014450d0320022d00b801221441034b0d030240024002400240024002400240024020140e0400030102000b2002200110282002280200450d0a20022802042214417f4c0d0d2014450d03201410762215450d0f200c201441002001280200200b28020020152014200c280200100122162016417f461b2216201620144b1b2216200c2802006a36020020162014460d040c090b200241b8016a41186a2216420037030020054200370300200241b8016a41086a22174200370300200242003703b801200c41002001280200200b280200200241b8016a41202015100122142014417f461b2214412020144120491b200c2802006a3602002014411f4d0d09200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf0121182008411f6a200241b8016a411f6a290000370000200841186a2016290000370000200841106a2005290000370000200841086a2017290000370000200820022900b801370000410121170c040b200242003703b801200c41002001280200200b280200200241b8016a41082015100122142014417f461b2214410820144108491b200c2802006a2215360200201441074d0d0820022903b8012104200f4200370300200241b8016a41306a4200370300200241b8016a41286a4200370300200241b8016a41206a4200370300200241b8016a41186a420037030020054200370300200241b8016a41086a4200370300200242003703b801200c41002001280200200b280200200241b8016a41c0002015100122142014417f461b221441c000201441c000491b200c2802006a3602002014413f4d0d08200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a290000370300200241f8006a41186a200941186a290000370300200241f8006a41206a200941206a290000370300200241f8006a41286a200941286a290000370300200241f8006a41306a200941306a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf012118410221170c040b200241b8016a2001104020022802b8012215450d0720022902bc012118200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a2903003703002002200d2d00003a00b201200220022f008c023b01b001200220022903b801370378410021170c020b410121152001280200200b28020041014100200c28020010011a41002014470d050b200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a290300370300200220022f008c023b01b001200220022903b8013703782002200d2d00003a00b2012014ad22044220862004842118410321170b0b200d20022d00b2013a0000200241b8016a41086a2214200241f8006a41086a22192903003703002005200241f8006a41106a221a290300370300200241b8016a41186a2216200241f8006a41186a221b290300370300200241b8016a41206a221c200241f8006a41206a290300370300200241b8016a41286a221d200241f8006a41286a290300370300200241b8016a41306a221e200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241f4006a41026a221f200d2d00003a0000200241386a41086a22202014290300370300200241386a41106a22212005290300370300200241386a41186a22222016290300370300200241386a41206a2223201c290300370300200241386a41286a221c201d290300370300200241386a41306a221d201e290300370300200220022f018c023b0174200220022903b80137033820142018370300200720022f01743b0000200741026a201f2d00003a000020052002290338370000200541086a2020290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201c290300370000200541306a201d290300370000200220173a00b801200220153602bc01200e2004370300200241106a200241b8016a107920022d00102117200241b8016a411f6a221c200a411f6a2800003600002016200a41186a2900003703002005200a41106a2900003703002014200a41086a2900003703002002200a2900003703b80120174102460d04201241016a2115200241f8006a411f6a221d201c280000360000201b2016290300370300201a200529030037030020192014290300370300200220022903b801370378024020122013470d002010201520152010491b2213ad42247e2204422088a70d062004a722144100480d0602402012450d00200620112014101422060d010c090b201410122206450d080b200620116a221420173a0000201441206a201d280000360000201441196a201b290300370000201441116a201a290300370000201441096a2019290300370000201441016a2002290378370000201041026a2110201141246a21112015211220152003490d000b0b2000201336020420002006360200200041086a201536020020024190026a24000f0b2014450d002015101f0b2002418c026a41026a20022d00b2013a0000200241b8016a41086a2205200241f8006a41086a290300370300200241b8016a41106a2214200241f8006a41106a290300370300200241b8016a41186a220c200241f8006a41186a290300370300200241b8016a41206a200241f8006a41206a290300370300200241b8016a41286a200241f8006a41286a290300370300200241b8016a41306a200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241023a0010200241b8016a411f6a200a411f6a280000360000200c200a41186a2900003703002014200a41106a2900003703002005200a41086a2900003703002002200a2900003703b8010b2000410036020002402012450d00200621050340024020052d0000450d00200541086a280200450d00200541046a280200101f0b200541246a21052011415c6a22110d000b0b02402013450d002006101f0b20024190026a24000f0b1010000b100f000b201441041015000b201441011015000b130020004102360204200041e8c7c1003602000b3301017f0240410410122202450d0020004284808080c0003702042000200236020020024180203600000f0b410441011015000b130020004104360204200041ff85c0003602000b130020004101360204200041b8c9c1003602000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d02200420024120108002450d02200441206a22062002460d02200620024120108002450d02200441c0006a22062002460d02200620024120108002450d02200441e0006a22062002460d0220044180016a21042006200241201080020d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d02200420024120108002450d022006200441206a2204470d000b0b41000f0b20050b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41053602002004412c6a4102360200200441043602342004420237021c20044194cac1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a41a4cac100103a000bff1002177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b200021090c010b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d020b410221000240024002400240024002400240024002400240200d41776a220f411e4b0d0041f400210e0240200f0e1f09000303040303030303030303030303030303030303030303020303030302090b41ee00210e0c080b200d41dc00470d010b0c050b200d10e6010d03200d41ffff034b0d01200d4180fe0371410876211141b8a8c100211241002113410021000c020b41f200210e0c040b0240200d41ffff074b0d00200d4180fe0371410876211641f3adc100211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d0520134188a9c1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d01201021132014211220144188a9c100470d030c010b201021132014211220144188a9c100470d010b200d41ffff0371210e41b7abc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041f3adc100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d4c7c2001024000b200f410173210f200041f3adc100470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021049000b20132010101a000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841b5aec1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441b5aec100470d030c010b2010211820142117201441b5aec100470d010b200d41ffff0371210e41d3afc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041d0b2c100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d4c7c2001024000b200f410173210f200041d0b2c100470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011049000b20182010101a000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c0240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b024020072802002004200a6a200b200a6b200828020028020c1101000d0002400340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d092019422088a741ff0171417f6a220041044b0d09024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c0008421190c030b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f832019428080808070838421190c010b201942ffffffff8f60834280808080108421190b410321000b2007280200200a2008280200280210110000450d000c020b0b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d030c040b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a10e701000b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a200310e801000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b110020012000280200200028020410f7010b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241acc6c200360204200241e4a4c100360200200210ef01000bdc0701067f230041106b220324002003200136020c2003410c6a2002101302400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101422060d020c070b200228020021060c020b200710122206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101422060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101422060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101422060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101422060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810122206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810122206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810122206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810122206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200841011015000b200841011015000b200841011015000b200841011015000b9f0204017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1000200341086a200529030037030020032003290310370300024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012201417f460d012001410f4d0d01200341186a290300210420032903102106200342003703182003420037031020034110200341106a4110411010012201417f460d012001410f4d0d0120032903102107200041206a200341186a290300370300200041186a2007370300200041106a200437030020002006370308420121040b20002004370300200341206a24000f0b41de86c00041331023000b9d0705017f017e047f017e027f230041d0006b2203240042002104200341c0006a41086a220542003703002003420037034020012002200341c0006a1000200341206a41086a20052903003703002003200329034037032002400240200341206a411041e4a4c100410041001001417f460d00200342103702342003200341206a360230200341186a200341306a10282003280218450d01200328021c2106200341003a0040200341386a2201200128020022012003280230220720032802342208200341c0006a41012001100141016a41014b22026a22013602002002450d01024002400240024020032d0040220541037122024102460d0020024101460d0120020d022005410276ad2104420021090c030b20034100360240200320053a0040200341386a2202410020072008200341c0006a41017241032001100122012001417f461b22014103200141034922011b20022802006a36020020010d042003280240410276ad2104420021090c020b200341003b0140200320053a0040200341386a200120072008200341c0006a41017241012001100141016a220241014b6a36020020024102490d0320032f0140410276ad2104420021090c010b024002400240024020054102762202450d0020024104460d012002410c470d032003420037034820034200370340200341306a41086a410020072008200341c0006a41102001100122022002417f461b22024110200241104922021b20016a36020020020d06200341c0006a41086a29030021090c020b20034100360240200341386a410020072008200341c0006a41042001100122022002417f461b22024104200241044922021b20016a36020020020d0520033502402104420021090c030b4200210920034200370340200341306a41086a410020072008200341c0006a41082001100122022002417f461b22024108200241084922021b20016a36020020020d040b200329034021040c010b200241046a220a41104b0d02200341306a41086a210b4200210442002109410021020340200341003a0040200b200120072008200341c0006a41012001100141016a41014b22056a22013602002005450d03200341086a20033100404200200241037441f80071108302200341086a41086a290300200984210920032903082004842104200241016a220241ff0171200a490d000b0b20002004370308200041106a2009370300200041186a2006360200420121040b20002004370300200341d0006a24000f0b41de86c00041331023000bac0201027f230041206b2202240002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200320013600060240024002402003410a41e4a4c100410041001001417f460d00200241186a4200370300200241106a4200370300200241086a4200370300200242003703002003410a20024120410010012201417f460d022001411f4d0d0220002002290300370000200041186a200241186a290300370000200041106a200241106a290300370000200041086a200241086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241206a24000f0b41de86c00041331023000b410641011015000b410c41011015000b8f0803037f017e067f230041c0006b22012400200141306a41086a220242003703002001420037033041ba88c000411d200141306a1000200141106a41086a200229030037030020012001290330370310024002400240024002400240024002400240200141106a411041e4a4c100410041001001417f460d00200142103702042001200141106a360200200141306a2001104020012802302202450d0402402001280234450d002002101f0b20002802002202450d01200041046a280200450d012002101f200141c0006a24000f0b0240024020002802002203450d00200029020421040c010b410610122200450d06200041046a41002f00a388403b00002000410028009f884036000020004106410c10142200450d07200041086a41002d00a788403a0000200041002f00a588403b0006024002402000410941e4a4c100410041001001417f460d00200141003602104101210320004109200141106a41044100100141016a41044d0d07200128021021052000101f2005450d012005ad4205862204422088a70d042004a722004100480d04200010122203450d0a41002102200321000340200141106a2002103e200041186a200141106a41186a290000370000200041106a200141106a41106a290000370000200041086a200141106a41086a29000037000020002001290010370000200041206a21002005200241016a2202470d000c020b0b2000101f41012103410021050b2005ad220442208620048421040b200141003602182001420137031020012004422088a72200360230200141306a200141106a1013024002402000450d00200041057421064100200141106a41086a28020022026b210720012802102108200128021421092003210003400240200920076a411f4b0d00200241206a22052002490d052009410174220a20052005200a491b22054100480d05024002402009450d00200820092005101422080d010c080b200510122208450d070b200521090b200820026a22052000290000370000200541186a200041186a290000370000200541106a200041106a290000370000200541086a200041086a290000370000200741606a2107200241206a2102200041206a2100200641606a22060d000b200141186a200236020020012009360214200120083602100c010b200141186a280200210220012802142109200128021021080b200141306a41086a220042003703002001420037033041ba88c000411d200141306a1000200141106a41086a200029030037030020012001290330370310200141106a411020082002100402402009450d002008101f0b2004a7450d002003101f0b200141c0006a24000f0b1010000b200541011015000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200041011015000bdc0403027f017e0d7f230041d0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001001220f200f417f461b220f4120200f4120491b20052802006a360200200f411f4d0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101422060d010c060b200e10122206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d002006101f0b200241d0006a24000f0b1010000b200e41011015000b13002000410636020420004194cbc1003602000b130020004109360204200041f68fc0003602000b130020004101360204200041dccec1003602000bd80101027f024002400240024002402000280200220141064b0d0020010e0704040104020403040b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041086a280200450d03200041046a280200101f0f0b200041086a280200450d022000280204101f0f0b200041086a280200450d012000280204101f0f0b200041086a280200450d002000280204101f0f0b0b8b2f09247f047e0f7f017e087f027e107f027e1a7f230041d0026b2204240002400240024020014115490d0041012105410221064103210741322108413021094108210a4158210b4150210c417f210d4138210e410b210f4128211041202111411821124110211341afe000211441807f2115410021164160211741682118417021194178211a41c000211b41c800211c41d000211d41d800211e4101211f41012120410021210c010b410021230c010b410121230b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024020230e020001010b20014102490d0c41a07f2158200041a07f6a21594101215a4100215b4130215c4108215d4158215e4150215f417f21604128216141182162412021634110216441a87f2165418801216641d8002167418001216841d000216941f800216a41c800216b41f000216c41c000216d41e800216e4138216f41e000217041012171410121210c010b02400240024020210e03000d01010b201f20207121220c010b2049204c20096c6a212302400340204b204c200d6a224c4f0d012023290300212a2023200a6a21252023200c6a22242123202a2045542025290300222a204454202a2044511b0d000c100b0b2000204537030020002044370308203d2046290300370300203f204729030037030020412048290300370300200020042903003703102001204b20056a2223490d082000202320096c6a2100200120236b22014115490d020b2003450d090240201f2005710d002000200110462003200d6a21030b2001200676222320076c21242023200574212541002126024020012008490d00200620052000202320096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b222c1b202c20282029202c1b2228202720096a290300222954202a202b202c1b222a2027200e6a290300222b54202a202b511b222d1b200020232023200d6a222e202c1b222f20096c6a222729030020292028202d1b542027200a6a2903002228202b202a202d1b222a542028202a511b22306a2000202520096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22316a2028202920311b222820002025200572223220096c6a2227290300222954202a202b20311b222a2027200a6a290300222b54202a202b511b22336a200020252025200d6a223420311b223520096c6a22272903002029202820331b542027200a6a2903002228202b202a20331b222a542028202a511b22366a2000202420096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22376a2028202920371b2228202720096a290300222954202a202b20371b222a2027200e6a290300222b54202a202b511b22276a200020242024200d6a223820371b223920096c6a22262903002029202820271b542026200a6a2903002228202b202a20271b222a542028202a511b223a6a21262039202420056a2038202420371b20271b203a1b2124203520322034202520311b20331b20361b2125202f202320056a202e2023202c1b202d1b20301b21230b20262000202320096c6a222729030022282000202520096c6a222c2903002229542027200a6a290300222a202c200a6a290300222b54202a202b511b22276a2028202920271b22282000202420096c6a222c290300222954202a202b20271b222a202c200a6a290300222b54202a202b511b222c6a212602400240024020002025202320271b223920096c6a223129030020292028202c1b5a2031200a6a2903002228202b202a202c1b222a5a2028202a511b0d00202620056a2226200f4b0d0120264521230c020b20242023202520271b202c1b213920264521230c010b024020012005762224450d002000200120096c6a200c6a2123200021250340200441a0026a20106a2227202520106a222c290300370300200441a0026a20116a2226202520116a2231290300370300200441a0026a20126a2237202520126a222d290300370300200441a0026a20136a2233202520136a222e290300370300200441a0026a200a6a222f2025200a6a2230290300370300200420252903003703a0022023200a6a2232290300212a202320136a2234290300212b202320126a22352903002128202320116a223629030021292023290300213b202c202320106a223829030037030020312029370300202d2028370300202e202b3703002030202a3703002025203b370300203820272903003703002036202629030037030020352037290300370300203420332903003703002032202f290300370300202320042903a002370300202520096a21252023200c6a21232024200d6a22240d000b0b20012039200d736a2139410121230b02402022200d73202345722005710d002000200110470d0c0b024002402002450d00203920014f0d0a2000203920096c6a22232903002002290300542023200a6a2225290300222a2002200a6a290300222b54202a202b511b0d01200441a0026a20106a223c200020106a223d290300370300200441a0026a20116a223e200020116a223f290300370300200441a0026a20126a2240200020126a2241290300370300200441a0026a20136a2242200020136a2224290300370300200441a0026a200a6a22432000200a6a2227290300370300200420002903003703a0022025290300212a202320136a222c2903002144202320126a2226290300212b202320116a2231290300212820232903002145203d202320106a2237290300370300203f20283703002041202b370300202420443703002027202a370300200020453703002037203c2903003703002031203e29030037030020262040290300370300202c204229030037030020252043290300370300202320042903a0023703002027290300214420002903002145200420126a2246203d290300370300200420136a2247203f2903003703002004200a6a22482041290300370300200420242903003703002000200c6a2149200020096a214a4100214b41002001224c200d6a22254f0d040c100b2001450d070b203920014f0d05200441a0026a20106a2234200020106a224d290300370300200441a0026a20116a2235200020116a224e290300370300200441a0026a20126a2236200020126a224f290300370300200441a0026a20136a2238200020136a2250290300370300200441a0026a200a6a221f2000200a6a2251290300370300200420002903003703a0022000203920096c6a2223290300212a2023200a6a2225290300212b202320136a22242903002128202320126a22272903002129202320116a222c290300213b204d202320106a2226290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a37030020262034290300370300202c203529030037030020272036290300370300202420382903003703002025201f290300370300202320042903a0023703002051290300212a2000290300212b200420126a2252204d290300370300200420136a2253204e2903003703002004200a6a2254204f29030037030020042050290300370300200020096a21314100212002402001200d6a2224450d00203121230340202b20232903005a202a2023200a6a29030022285a202a2028511b0d01202320096a2123202020056a22202024490d000b0b2000200120096c6a21232024212502400340202321272025223a20204d0d01203a200d6a2125202b2027200c6a222329030054202a2027200b6a290300222854202a2028511b450d000b0b203a2020490d042024203a490d034180012130410021264100212e4100212c4100213341800121322031202020096c6a225521310340202720316b222320096e21250240024002400240024002400240202320144b22390d00202520156a2025202e2026492033202c4922247222371b21232037450d012032202320241b21322023203020241b21300b2033202c470d020c010b2023202320057622326b21302033202c470d010b2032450d0141002125200441206a2233212c203121230340202c20253a0000202c202b20232903005a202a2023200a6a29030022285a202a2028511b6a212c202320096a21232032202520056a2225470d000b0b202e2026470d020c010b200441206a222c2133202e2026470d010b02402030450d002027200c6a212341002125200441a0016a222e21260340202620253a00002026202b202329030054202a2023200a6a290300222854202a2028511b6a21262023200c6a21232030202520056a2225470d000c020b0b200441a0016a2226212e0b02402026202e6b2223202c20336b2225202520234b1b222f450d002034203120332d000020096c6a222320106a2903003703002035202320116a2903003703002036202320126a2903003703002038202320136a290300370300201f2023200a6a290300370300200420232903003703a002203120332d000020096c6a22232027202e2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703000240202f2005460d004100212403402027202e20246a22372d0000200d7320096c6a22232031203320246a20056a222d2d000020096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703002031202d2d000020096c6a22232027203720056a2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a290300370300202420066a2123202420056a222521242023202f490d000b202e20256a212e203320256a21330b2027202e2d0000200d7320096c6a222320042903a002370300202320106a2034290300370300202320116a2035290300370300202320126a2036290300370300202320136a20382903003703002023200a6a201f290300370300202e20056a212e203320056a21330b2031203220096c6a20312033202c461b21312027201620306b20096c6a2027202e2026461b212720390d000b024002402033202c4f0d00034020342031202c200d6a222c2d000020096c6a222520106a22242903003703002035202520116a22262903003703002036202520126a22372903003703002038202520136a222d290300370300201f2025200a6a222e290300370300200420252903003703a0022027200c6a222329030021282027200b6a222f2903002129202720176a2230290300213b202720186a22322903002156202720196a2239290300215720242027201a6a22272903003703002026205737030020372056370300202d203b370300202e20293703002025202837030020272034290300370300203920352903003703002032203629030037030020302038290300370300202f201f290300370300202320042903a002370300202321272033202c490d000c020b0b20312123202e20264f0d0003402026200d6a22262d000021252034202320106a22242903003703002035202320116a222c2903003703002036202320126a22312903003703002038202320136a2237290300370300201f2023200a6a222d290300370300200420232903003703a00220272025200d7320096c6a222529030021282025200a6a22332903002129202520136a222f290300213b202520126a22302903002156202520116a223229030021572024202520106a2239290300370300202c2057370300203120563703002037203b370300202d202937030020232028370300203920342903003703002032203529030037030020302036290300370300202f20382903003703002033201f290300370300202520042903a002370300202320096a2123202e2026490d000b0b2000202a3703082000202b370300204d2052290300370300204e2053290300370300204f2054290300370300200020042903003703100240024002402001202320556b20096e20206a22254d0d002034204d2903003703002035204e2903003703002036204f29030037030020382050290300370300201f2051290300370300200420002903003703a0022000202520096c6a2223290300212a2023200a6a2224290300212b202320136a22272903002128202320126a222c2903002129202320116a2226290300213b204d202320106a2231290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a3703002031203429030037030020262035290300370300202c2036290300370300202720382903003703002024201f290300370300202320042903a002370300200120256b2224450d0120242025202520244b1b21272001200776212c202320096a21260240024020252024200d6a22014f0d002000202520022003104520232102202621000c010b20262001202320031045202521010b2027202c4f211f203a20204d2120200141154f0d02410021230c160b41e0cfc100202520011048000b41f0cfc1001024000b41002121410121230c130b410121230c120b410021230c110b41022121410121230c100b203a20241049000b2020203a101a000b41e0cfc100203920011048000b41d0cfc100410041001048000b20232001101a000b4188d0c100203920011048000b20002001104a200441d0026a24000f0b2071205a6a2127024020002071205c6c6a2224205f6a2223290300202429030022285a2024205e6a290300222b2024205d6a2225290300222a5a202b202a511b0d00200420626a2231202420616a222c290300370300200420646a2237202420636a22262903003703002004205d6a222d202420626a2233290300370300200420242903103703002024202329030037030020252023205d6a290300370300202420646a202320646a2903003703002033202320626a2903003703002026202320636a290300370300202c202320616a2903003703002000207120606a222c205c6c6a21260240024002400240202c450d00205b212520592123202420586a29030020285a202420656a290300222b202a5a202b202a511b0d030340202320666a202320676a290300370300202320686a202320696a2903003703002023206a6a2023206b6a2903003703002023206c6a2023206d6a2903003703002023206e6a2023206f6a290300370300202320706a2023205c6a2903003703002025205a460d022023290300212b2023205d6a2124202520606a21252023205f6a2123202b2028542024290300222b202a54202b202a511b0d000c030b0b4100212c0c020b410021250b20002025205c6c6a21262025212c0b202620283703002026202a3703082000202c205c6c6a222320616a2031290300370300202320636a2037290300370300202320626a202d290300370300202320042903003703100b205b205a6a215b2059205c6a21592027217120272001470d010b200441d0026a24000f0b41012121410121230c060b203c204a204b20096c6a222320106a2225290300370300203e202320116a22272903003703002040202320126a222c2903003703002042202320136a222629030037030020432023200a6a2231290300370300200420232903003703a002202420096a2237290300212a2024200e6a222d290300212b2024201b6a223329030021282024201c6a222e29030021292024201d6a222f290300213b20252024201e6a22242903003703002027203b370300202c2029370300202620283703002031202b3703002023202a3703002024203c290300370300202f203e290300370300202e204029030037030020332042290300370300202d2043290300370300203720042903a002370300204b20056a224b204c200d6a22254f0d010b204a204b20096c6a212302400340202329030020455a2023200a6a290300222a20445a202a2044511b450d01202320096a2123204b20056a224b2025490d000b410221210c020b410221210c020b410221210c020b410121230c020b410121230c010b410121230c000b0b86090b107f017e017f017e017f017e017f017e017f017e017f230041306b22022400024002400240024020014108490d00200141017641feffffff07712203417f6a220420014f0d032001410d74200173220541117620057322054105742005732206417f2001417f6a677622077122054100200120052001491b6b220520014f0d01200241286a22082000200441306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e2903003703002013201029030037030020052002290300370300200320014f0d022006410d7420067322044111762004732204410574200473220620077122044100200120042001491b6b220520014f0d01200241286a22082000200341306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e29030037030020132010290300370300200520022903003703002003410172220420014f0d032006410d742006732205411176200573220541057420057320077122054100200120052001491b6b220520014f0d01200241286a22032000200441306c6a220141286a2204290300370300200241206a2206200141206a2207290300370300200241186a2208200141186a2209290300370300200241106a220a200141106a220b290300370300200241086a220c200141086a220d290300370300200220012903003703002000200541306c6a22002903002112200041086a22052903002114200041106a220e2903002116200041186a220f2903002118200041206a2210290300211a2004200041286a22112903003703002007201a37030020092018370300200b2016370300200d2014370300200120123703002011200329030037030020102006290300370300200f2008290300370300200e200a2903003703002005200c290300370300200020022903003703000b200241306a24000f0b41e0cfc100200520011048000b200321040b41d0cfc100200420011048000bf30b05087f027e107f017e017f230041306b22022400200041c07e6a2103200041506a21044100210520014132492106410121070240024002400340024002400240200720014f0d002004200741306c6a210803402008290300200841306a220929030054200841086a290300220a200841386a290300220b54200a200b511b0d0220092108200741016a22072001490d000b0b410021082007200146210920060d030c010b410121082007200146210920060d020b20072001460d012007417f6a220920014f0d022008450d032000200941306c6a2208290300210a20082000200741306c220c6a2209290300370300200241286a220d200841286a220e290300370300200241206a220f200841206a2210290300370300200241186a2211200841186a2212290300370300200241106a2213200841106a2214290300370300200241086a2215200841086a22162903003703002016200941086a22172903003703002014200941106a22182903003703002012200941186a22192903003703002010200941206a221a290300370300200e200941286a221b2903003703002002200a370300201b200d290300370300201a200f29030037030020192011290300370300201820132903003703002017201529030037030020092002290300370300024020074102490d0020002007417e6a220f41306c6a220d2903002008290300221c5a200d41086a221d290300220b2016290300220a5a200b200a511b0d002008200d2903003703002016201d2903003703002008290310210b2014200d41106a2903003703002011200e29030037030020132010290300370300201520122903003703002012200d41186a2903003703002010200d41206a290300370300200e200d41286a2903003703002002200b3703000240024002400240200f450d0020002007417d6a221641306c6a2208290300201c5a200841086a290300220b200a5a200b200a511b0d032003200c6a2108034020084188016a200841d8006a29030037030020084180016a200841d0006a290300370300200841f8006a200841c8006a290300370300200841f0006a200841c0006a290300370300200841e8006a200841386a290300370300200841e0006a200841306a2903003703002016450d022008290300210b200841086a210d200841506a21082016417f6a2116200b201c54200d290300220b200a54200b200a511b0d000b201641016a210f0c020b4100210f0c020b4100210f0b2000200f41306c6a210d0b200d201c370300200d200a3703082000200f41306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b200541016a21050240200120076b220e4102490d002009290300221c20092903305a2017290300220a200941386a290300220b5a200a200b511b0d002009200941306a22162903003703002017201641086a2903003703002009290310210b2018201641106a2903003703002011201b2903003703002013201a290300370300201520192903003703002019201641186a290300370300201a201641206a290300370300201b201641286a2903003703002002200b370300410121100240200e4103490d00201c20092903605a200a200941e8006a290300220b5a200a200b511b0d00200941e0006a21084103210d41022117034020092017221041306c6a221641786a200841286a290300370300201641706a200841206a290300370300201641686a200841186a290300370300201641606a200841106a290300370300201641586a200841086a290300370300201641506a2008290300370300200d200e4f0d01200d41306c2108200d2117200d41016a210d201c200920086a220829030054200a200841086a290300220b54200a200b511b0d000b0b2016201c3703002016200a3703082009201041306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b20054105490d000b410021090b200241306a240020090f0b41d0cfc100200920011048000b41e0cfc100200720011048000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41013602002003411c6a4102360200200341013602242003420237020c2003419cc6c200360208200320033602282003200341046a3602202003200341206a360218200341086a2000103a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241bcc6c2003602082002200241046a360228200220023602202002200241206a360218200241086a41ccc6c200103a000bdd0b09167f017e037f017e017f017e017f027e0c7f230041306b2202240002400240024020014101762203450d00417f210441022105413021064108210741282108412021094118210a4110210b4100210c0c010b4100210d0c010b4101210d0b03400240024002400240024002400240024002400240024002400240200d0e020001010b4102212420014102490d01417f2125412821264120212741182128411021294108212a4130212b4101212c2001212d4101210c0c0b0b02400240200c0e020001010b200320046a2203210d0340200d410174221a41017221230240201a20056a221a20014f0d00202320014f0d06201a20232000201a20066c6a22172903002000202320066c6a221929030054201720076a2903002218201920076a290300221c542018201c511b1b21230b0240202320014f0d00200d20014f0d042000202320066c6a221a2903002000200d20066c6a220d2903005a201a20076a22192903002218200d20076a2217290300221c5a2018201c511b0d00200220086a220e200d20086a220f290300370300200220096a2210200d20096a22112903003703002002200a6a2212200d200a6a22132903003703002002200b6a2214200d200b6a2215290300370300200220076a221620172903003703002002200d29030037030020192903002118201a200b6a221b290300211c201a200a6a221d290300211e201a20096a221f2903002120201a2903002121200f201a20086a2222290300370300201120203703002013201e3703002015201c37030020172018370300200d20213703002022200e290300370300201f2010290300370300201d2012290300370300201b201429030037030020192016290300370300201a20022903003703002023210d0c010b0b20030d074100210d0c0c0b202d20256a222d20014f0d05200220266a220e200020266a221a290300370300200220276a220f200020276a2223290300370300200220286a2210200020286a2217290300370300200220296a2211200020296a22192903003703002002202a6a22122000202a6a2213290300370300200220002903003703002000202d202b6c6a220d2903002118200d202a6a2214290300211c200d20296a2215290300211e200d20286a22162903002120200d20276a221b2903002121201a200d20266a221d29030037030020232021370300201720203703002019201e3703002013201c37030020002018370300201d200e290300370300201b200f290300370300201620102903003703002015201129030037030020142012290300370300200d20022903003703004100210d0340200d202c74221a202c7221230240201a20246a221a202d4f0d002023202d4f0d06201a20232000201a202b6c6a221729030020002023202b6c6a2219290300542017202a6a29030022182019202a6a290300221c542018201c511b1b21230b02402023202d4f0d00200d202d4f0d0420002023202b6c6a221a2903002000200d202b6c6a220d2903005a201a202a6a22192903002218200d202a6a2217290300221c5a2018201c511b0d00200e200d20266a2213290300370300200f200d20276a22142903003703002010200d20286a22152903003703002011200d20296a2216290300370300201220172903003703002002200d29030037030020192903002118201a20296a221b290300211c201a20286a221d290300211e201a20276a221f2903002120201a29030021212013201a20266a2222290300370300201420203703002015201e3703002016201c37030020172018370300200d20213703002022200e290300370300201f200f290300370300201d2010290300370300201b201129030037030020192012290300370300201a20022903003703002023210d0c010b0b202d202c4b0d070b200241306a24000f0b41a8d0c100200d20011048000b41a8d0c100200d202d1048000b4198d0c100202320011048000b4198d0c1002023202d1048000b41e0cfc100202d20011048000b4100210c0c010b4101210c0c010b4101210d0c020b4101210d0c010b4101210d0c000b0b130020004102360204200041ecc4c2003602000b130020004100360204200041e4a4c1003602000b130020004101360204200041acdac1003602000b130020004103360204200041f0d8c1003602000b130020004101360204200041bcafc2003602000b130020004103360204200041b881c2003602000b13002000410136020420004180aec2003602000b130020004102360204200041c4aec2003602000b130020004107360204200041c49ac2003602000b13002000410b36020420004184e9c1003602000b1300200041023602042000418cbec2003602000b130020004101360204200041f0bfc1003602000bf60201057f230041206b220224000240024020002d0000220320012d0000470d00024020034101470d002000410c6a28020022042001410c6a280200470d012004450d02200041046a2802002203200141046a2802002205460d024100210603402003200541201080020d02200341206a2103200541206a2105200641016a22062004490d000c030b0b20002001460d01200041016a200141016a4120108002450d010b418c93c00041141008200041046a280200210520002d00002103200241186a22062000410c6a2802003602002002200341014736021020022005200041016a20034101461b3602142002200241106a1011200228020022002002280208100902402002280204450d002000101f0b200141046a280200210320012d0000210020062001410c6a2802003602002002200041014736021020022003200141016a20004101461b3602142002200241106a101120022802002200200228020810092002280204450d002000101f0b200241206a24000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310142202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310142202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310142202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310142202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310142202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310142202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101222020d140b200341011015000b2003101222020d100b200341011015000b2003101222020d0c0b200341011015000b2003101222020d100b200341011015000b2003101222020d060b200341011015000b2003101222020d020b200341011015000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000b92d8020b027f017e057f027e037f017e017f027e0c7f0d7e6a7f230041d0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441094b0d00024020040e0a009e010402090805060307000b20034198046a41086a200141106a2903003703002003200141086a2903002205370398042005a7417e6a220441054b0d9f01200241086a2800002106200241046a280000210720022d00002102024020040e06002220211e23000b41012108200341a0046a2802002109200328029c04210a200241ff017122024101470d4102402009450d00200a101f0b41002107410121094101210a0c490b200141086a2903004202520d9f01412d21064101210741fe80c000410041fe80c00020022d000041ff017122024102461b20024103461b22040db202200141106a290300210520034190036a41086a22024200370300200342003703900341be93c000411320034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a4110100a0dab0120024200370300200342003703900341f594c000410d20034190036a10002007200229030037030020032003290390033703980420034198046a411041e4a4c100410041001001417f460da602200342003703900520034198046a411020034190056a41084100100141016a41084d0d9d01200329039005500da60220034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a220720022903003703002003200329039003370398044200210b024020034198046a411041e4a4c100410041001001417f460d00200342003703900520034198046a411020034190056a41084100100141016a41084d0da901200329039005210b0b200242003703002003420037039003418295c000411520034190036a10002007200229030037030020032003290390033703980420034198046a411041e4a4c100410041001001417f460d4a200342003703900520034198046a411020034190056a41084100100141016a41084d0da901200329039005200b7c2005560d4b0ca6020b200341b8036a41046a22082001410e6a2f01003b010020034190056a41086a2209200141206a29030037030020034190056a41106a220a200141286a29030037030020032001410a6a2801003602b8032003200141186a29030037039005200141096a2d00002107200141106a2903002105200141086a2d00002106200341d8036a41086a220d200241206a2d00003a00002003200241186a2900003703d80320022d0000210420064102460d0c20064103460d0a20064104470d9f014128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040da402200320073a009804200341f8036a41086a22024200370300200342003703f80341b1fec0004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410110040c0b0b20034192036a2001410b6a2d00003a0000200341f0026a41086a200141206a290300370300200341f0026a41106a200141286a2903003703002003200141096a2f00003b0190032003200141186a2903003703f002200141086a2d0000220e417e6a220441034b0d9f012001410c6a280200210f200141106a2903002210a7211120022d00002102024020040e04000f0d0e000b4100210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d294128210620110dad020cae020b200341d0026a41086a220d2001412c6a2d00003a00002003200141246a2902003703d002200141386a290300210b200141306a290300210c200141c8006a2903002112200141c0006a2903002113200141206a280200210a200141186a2902002105200141146a2802002106200141106a28020021142001410c6a2d00002115200141086a28020021042001410d6a2f000021072001410f6a2d00002108200341e0026a41086a2216200241206a2d00003a00002003200241186a2900003703e0022007200841107472210920022d0000210820044102460d0520044103470d9f01200341a0066a41086a2207200341d0026a41086a2d00003a0000200320032903d0023703a00641ac80c00041ac80c0004100200841ff017122021b20024103461b2204450d170ca1020b200141386a290300210b200141306a290300210c2001412c6a2802002117200141286a280200210d200141246a2802002114200141206a28020021182001411c6a2802002116200141186a2802002119200141146a280200211a200141106a28020021152001410c6a2802002107200141096a2d0000211b200141086a2d00002106200341f0026a41086a200241206a2d00003a00002003200241186a2900003703f0022006417e6a220641044b0d9f0120022f0001200241036a2d0000411074722104200241146a28000021082002410c6a2900002105200241086a2800002109200241046a280000210a20022d00002102024020060e050016131412000b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d23200341d8036a41086a220220062d00003a000020032003290390033703d80320034180066a41086a220620022d00003a0000200320032903d80337038006200341af056a20062d00003a0000200320083600a3052003200537009b0520032009360097052003200a3600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034190026a20034198046a105a20032903900220034190026a41086a29030084500d5742002105200341a0036a41086a22024200370300200342003703a00341b1f2c0004112200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d5f200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460db2012002410f4d0db201200341a0046a290300210520032903980421120c600b20034198046a200141086a41d00010fe011a20034190056a41206a200241206a2d00003a000020034190056a41186a200241186a29000037030020034190056a41106a200241106a29000037030020034190056a41086a200241086a2900003703002003200229000037039005200341b8026a20034198046a20034190056a105b20032802bc02210620032802b80221044100210941012107410121084101210a4101210d0cb1020b200141106a28020021062001410c6a2802002107200141086a2802002109200141046a280200210420034180066a41086a2208200241206a2d00003a00002003200241186a2900003703800620044102470d9e01200241036a2d0000210420022f0001210a200241146a280000210d2002410c6a2900002105200241086a2800002116200241046a280000211520022d0000210220034190036a41086a20082d00003a0000200320032903800637039003200241ff01714101470d03200341a0036a41086a220220034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220820022d00003a0000200320032903a00337039804200341af056a20082d00003a00002003200d3600a3052003200537009b052003201636009705200320153600930520032003290398043700a7052003200a20044110747222043b019005200320044110763a009205200341c0026a20034190056a105c20032903c002200341c0026a41086a29030084500d15200341f8036a41086a22044200370300200342003703f803419086c0004112200341f8036a100020022004290300370300200320032903f8033703a003200341a0036a411041e4a4c100410041001001417f460d1e2003410036029804200341a0036a411020034198046a41044100100141016a41044d0da10120062003280298044d0d1f0c9b020b200341e0026a41086a200141286a2d00003a00002003200141206a2902003703e0022001411c6a2802002116200141146a2902002105200141106a28020021062001410c6a2802002104200141086a2802002108200141046a2802002107200341f0026a41086a2209200241096a290000370300200341f0026a41106a220a200241116a290000370300200341f0026a41186a220d200241196a290000370300200320022900013703f00220022d0000210220074102460d0320074103470d9e01200341a0066a41086a200341e0026a41086a2d00003a0000200320032903e0023703a006200341f8036a41186a200341f0026a41186a290300370300200341f8036a41106a200341f0026a41106a290300370300200341f8036a41086a2207200341f0026a41086a290300370300200320032903f0023703f803200241ff01714101470d0c200341a0036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703a00320032900fb03210b200329008304210c200328008b04210920032f01f803210a20032d00fa03210d20034198046a41086a221520022d00003a0000200320032903a0033703980420034190056a411f6a20152d00003a00002003200d3a0092052003200a3b019005200320093600a3052003200c37009b052003200b3700930520032003290398043700a70520074200370300200342003703f80341ef8fc1004108200341f8036a100020022007290300370300200320032903f8033703a003200341a0036a411041e4a4c100410041001001417f460d2620034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460da5012002411f4d0da50120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2207200341f8036a41106a29030037030020034180066a41086a2209200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200729030037030020034198046a41086a20092903003703002003200329038006370398040c270b200341f0026a41086a2001412c6a2802003602002003200141246a2902003703f002200141186a290300210c200141206a28020021152001410c6a2802002108200141096a2d00002114200141106a2903002105200141086a2d00002107200341e0026a41086a200241206a2d00003a00002003200241186a2900003703e0022007417e6a2206410a4b0d9e0120022f0001200241036a2d00004110747221042005a72109200241146a280000210a2002410c6a290000210b200241086a280000210d200241046a280000211620022d00002102024020060e0b00312e2f2c323330352d34000b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d5020034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a00002003200a3600a3052003200b37009b052003200d36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a20034190056a105d20032d0098044101470d6041f7e3c00021044123210620074104470df3010cf8010b200241036a2d0000210420022f0001211a200241146a28000021182002410c6a2900002112200241086a2800002117200241046a2800002119200341f0026a41086a200d2d00003a0000200320032903d0023703f00220034190036a41086a20162d00003a0000200320032903e0023703900341012107200841ff01714101470d0920034198046a41086a220720034190036a41086a2d00003a0000200320032903900337039804200341d8036a41086a220220072d00003a000020032003290398043703d803200341bf066a20022d00003a0000200320183600b306200320123700ab06200320173600a706200320193600a306200320032903d8033700b7062003201a20044110747222043b01a006200320044110763a00a2062002200341f0026a41086a2d00003a0000200320032903f0023703d803201541ff01714101470d1a20034198046a2014410676101e20032802a0042014413f7122024d0d3c200341c0036a20032802980420024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029c04450d8e020c8d020b20034198046a41086a200341a0036a41086a2d00003a0000200320032902a00337039804412a210641d480c000210420070d98020c99020b200341f8036a41186a200d290300370300200341f8036a41106a200a290300370300200341f8036a41086a2009290300370300200320032903f0023703f803200241ff01714101470d09200341d8036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703d80320032900fb032105200329008304210b200328008b04210620032f01f803210420032d00fa03210720034180066a41086a220920022d00003a0000200320032903d80337038006200341a0066a411f6a20092d00003a0000200320073a00a206200320043b01a006200320063600b3062003200b3700ab06200320053700a30620032003290380063700b706200341f8036a41086a22024200370300200342003703f80341ef8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411041e4a4c100410041001001417f460d2420034190046a4200370300200341f8036a41106a420037030020024200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460da2012002411f4d0da20120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2206200341f8036a41106a29030037030020034180066a41086a2204200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200629030037030020034198046a41086a20042903003703002003200329038006370398040c250b4128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040d99022003200537039804200341f8036a41086a22024200370300200342003703f80341b084c1004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810040b0c85020b200241036a2d0000211620022f00012115200241146a28000021142002410c6a290000210b200241086a2800002106200241046a280000211920034197066a20092903003700002003419f066a200a2d00003a0000200320073a0080062003200537008706200320032802b80336008106200320032903900537008f06200320082f01003b00850620034190036a41086a200d2d00003a0000200320032903d80337039003200441ff01714101470d0f200341a0036a41086a220420034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220220042d00003a0000200320032903a00337039804200341f0026a41086a220420022d00003a000020032003290398043703f002200341a0066a41086a20042d00003a0000200320032903f0023703a00620034198046a41186a20034180066a41186a29030037030020034198046a41106a20034180066a41106a290300370300200220034180066a41086a290300370300200320032903800637039804411210122202450da001200241106a41002f00d984413b0000200241086a41002900d18441370000200241002900c9844137000020024112413210142202450da1012002201520164110747222043b0012200220143600252002200b37001d2002200636001920022019360015200220032903a006370029200241146a20044110763a0000200241316a200341a0066a41086a2d00003a0000412010122204450da2012004200329039804370000200441186a20034198046a41186a290300370000200441106a20034198046a41106a290300370000200441086a20034198046a41086a290300370000200341f8036a41086a22074200370300200342003703f80320024132200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a003200341a0036a41102004412010042004101f2002101f0c84020b200341b8036a41086a2209200341f0026a41086a290300370300200341b8036a41106a2215200341f0026a41106a2d00003a0000200320034192036a2d00003a00d203200320032f0190033b01d003200320032903f0023703b80341ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034197066a20092903003700002003419f066a20152d00003a000020032010370087062003200f36008306200320032d00d2033a008206200320032f01d0033b018006200320032903b80337008f0641b79dc100210420034180066a105e450d9e024108211c200341f8036a41086a22024200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0034100211d200341a0036a411041e4a4c100410041001001417f460d5a20034210370294052003200341a0036a3602900520034198046a20034190056a105f200328029804221c450db301200341a0046a280200211e200328029c04211d0c5b0b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0142002105200341f8036a41086a22024200370300200342003703f80341dd81c000410d200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0030240200341a0036a411041e4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d9b0120032903980421050b411c2106200520105a0d442003201037039804200341f8036a41086a22024200370300200342003703f80341aa96c1004112200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810044100210241002104200e4102460d9e020ca0020b200341a7056a200341f0026a41086a290300370000200341af056a200341f0026a41106a2d00003a000020032010370097052003200f36009305200320032f0190033b019005200320032903f00237009f05200320034192036a2d00003a00920541ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1b0b412821060c9e020b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040c9f020b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040cf3010b20034180066a41086a200341d8036a41086a2d00003a0000200320032903d80337038006412a210641d480c00021040c1c0b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d02412921062007450d4b2003200736029804200341a0036a41086a22024200370300200342003703a00341a8f8c0004118200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cff010b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0f200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220620022d00003a0000200320032903a00337038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206411310122202450d9d012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d9e0120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d2c20034198046a20071060200341a0066a200341cc046a4120108002450d4e41caf7c0002104411c21060c730b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2a0b412821060cfc010b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0e20034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206200341a0066a105e450d37411310122202450da4012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450da50120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d2920034198046a2007106020032d008c05450d5c41baf6c0002104411d2106200341b8046a280200450dfa010cf9010b200341d8036a41086a20072d00003a0000200320032903a0063703d803201541ff01714101470d0f20034190056a2014410676101e2003280298052014413f7122024d0d37200341c0036a20032802900520024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029405450df4010cf3010b41a286c0002104411b21062007450d87020c86020b41002107200341a0046a2802002106200328029c04210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d27410121092006450d05200a101f0c050b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040c87020b41012108200341a0046a2802002109200328029c04210d200241ff017122024101470d1f02402009450d00200d101f0b4100210a41012109410121070c290b410121094101210741ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034198046a41086a2903002105410810122202450d9b012002200537000041a490c000410a2002410810042002101f4100210441012108410121094101210a410121070c290b41fe80c000410041fe80c000200241ff017122024102461b20024103461b2104412d210641012108410121094101210a0c1e0b200341a4046a2802002107200341a0046a280200210a200328029c04210841ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2402402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b4101210741002109200a450d002008101f0b41282106200328029804417e6a220241054b0d29024020020e06002e2b2a2c2d000b200341a0046a280200450d2d200328029c04101f0c2d0b200341b8036a41086a20022d00003a0000200320032903d8033703b8030cf4010b20064180204b0dfc010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a290300370300200320032903900537039804410910122202450d8b01200241086a41002d00d286403a0000200241002900ca864037000020024109412910142202450d8c012002200329039804370009200241216a200341b0046a290300370000200241196a200341a8046a290300370000200241116a200341a0046a290300370000200341003602a806200342013703a006200320063602f803200341f8036a200341a0066a101320032802a406220a20032802a80622086b20064f0d1b200820066a22042008490d8202200a410174220d20042004200d491b220d4100480d8202200a450d3920032802a006200a200d10142204450d3a0ce6010b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c020b20034180066a41086a200341d8036a41086a2d00003a0000200320032902d80337038006412a210641d480c0002104200d450de3010ce2010b20034180066a41086a20034198046a41086a2d00003a00002003200329039804370380060b412a210641d480c00021040ceb010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030ce5010b2010422088a72202450d3020024105742206410575220aad4206862205422088a70dfd012005a722044100480dfd0120041012220d450d9101200f20066a2116200241057421044100200f6b2115200d2102200f2106034020034180066a41186a2207200641186a29000037030020034180066a41106a2208200641106a29000037030020034180066a41086a2209200641086a2900003703002003200629000037038006200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003702002002412c6a2008290300370200200241246a20092903003702002002411c6a200329038006370200200241c0006a2102200641206a2106200441606a22040d000b201620156a41606a41057641016a21022011450ddd010cdc010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980441919dc100210420034198046a105e0dbb0141082107200341d8036a41086a220820034198046a41176a290000370300200341d8036a41106a220920034198046a411f6a2d00003a0000200320032d009a043a00f203200320032f0198043b01f003200320032900a7043703d803200328009b042102200329009f042105200341f8036a41086a22064200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2006290300370300200320032903f8033703a00341002104200341a0036a411041e4a4c100410041001001417f460d3e20034210370284062003200341a0036a36028006200341a0066a20034180066a105f20032802a0062207450d9601200341a0066a41086a280200210820032802a40621042003418f046a200341d8036a41086a29030037000020034197046a200341e8036a2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a210620082004460d3f0cba010b200341b0046a4200370300200341a8046a4200370300200341a0046a420037030020034200370398040b024020034190056a20034198046a4120108002450d00419990c1002104413121060cd9010b200341d8036a41086a2202200341a0066a41086a2d00003a0000200320032903a0063703d803200841ff01714101470d2420034198046a2004410676101e20032802a0042004413f7122024d0d33200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132116200429000b2105200428000721062004280003210441012107200328029c04450dd5010cd4010b200341b0046a420037030020034198046a41106a420037030020034198046a41086a420037030020034200370398040b200341a0066a20034198046a4120108002450d0141f78fc1002104412221060b200810202008101f0cd5010b20034198046a200841d80010fe011a41002104200341003a00900520034188026a20034198046a20034190056a10592003200328028802453a009a04200341063b01980420034198046a10272008101f0cd4010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d21200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220720022d00003a0000200320032903a00337038006200341af056a20072d00003a00002003200a3600a3052003200b37009b052003200d36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460dcb01200342103702a406200320034190036a3602a00620034198046a200341a0066a10402003280298042202450d9001200328029c042106200220084105746a2204450d3e200341a0046a28020020084d0d3e20034190056a2004460d50200420034190056a41201080024521042006450dca010cc9010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d082003200836029804200341a0036a41086a22024200370300200342003703a00341eecec0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040ccb010b200341f8036a41086a2206200341f0026a41086a280200360200200320032903f0023703f80320034190036a41086a2214200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d2020034180066a41086a221920142d00003a0000200320032903900337038006200341d8036a41086a220220192d00003a000020032003290380063703d803200341bf066a20022d00003a00002003200a3600b3062003200b3700ab062003200d3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a206200220062d00003a0000200320032903f8033703d803200841ff01714101470d3020034198046a2009410676101e20032802a0042009413f7122024d0d41200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132115200429000b210c20042800072106200428000321044101210a200328029c04450db5010cb4010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d2020034198046a41086a220220062d00003a0000200320032903900337039804200341d8036a41086a220620022d00003a000020032003290398043703d803200341a0066a411f6a20062d00003a00002003200a3600b3062003200b3700ab062003200d3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a20620034198046a200341a0066a105d20032d0098044101470d3020034180066a41086a2202200341b8046a2d00003a00002003200341b0046a29030037038006200341a4046a2902002105200341ac046a2802002106200329029c04210b20032f009904210420032d009b042107200341d8036a41086a220920022d00003a000020032003290380063703d80320034190056a411f6a20092d00003a0000200320073a009205200320043b019005200320063600a3052003200537009b052003200b37009305200320032903d8033700a70520034180066a20034190056a106120032802800621020240200328028806220420084d0d00200341a0066a200220084105746a2206460d4c2006200341a0066a4120108002450d4c0b0240200328028406450d002002101f0b41ade5c0002104411421060cc9010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d052003200836029804200341a0036a41086a22024200370300200342003703a00341a6e1c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cc8010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d2020034190056a41086a220220062d00003a000020032003290390033703900520034180066a41086a220720022d00003a0000200320032903900537038006200341b7046a20072d00003a00002003200a3600ab042003200b3700a3042003200d36009f042003201636009b0420032003290380063700af04200320043b019804200320044110763a009a04200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a003370390034100210220034190036a411041e4a4c100410041001001417f460d37200342103702a406200320034190036a3602a00620034190056a200341a0066a10402003280290052207450d8c0120034198056a280200210220032802940521060c380b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d032003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a003418ce1c000411a200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc6010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d022003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc5010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d214128210620090dc0010cc4010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d210b412821060cc2010b200741d480c00020024101461b2104412a21064100210a02402009450d00200d101f0b410121090b410121070c090b200741d480c00020024101461b2104412a21064100210702402009450d00200a101f0b410121094101210a0c080b20032802a00621040ccb010b411310122202450d742002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d7520022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d0020034198046a2007106020032d008c05450d2a41baf6c0002104411d2106200341b8046a2802000d2b0c2c0b4188f6c0002104411c21060cd1010b41fc89c0004105200a200341a4046a28020010044101210802402006450d00200a101f0b410021090c020b41002102200328029c040dd0010cd1010b0240200741186c2202450d00200820026a21062008210203402002280200200241086a2802002002410c6a280200200241146a2802001004200241186a22022006470d000b0b02402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b410121090240200a450d002008101f0b410021080b4101210a410121070b410021040b0240024002400240200328029804417e6a220241054b0d00024020020e06000b02010304000b2007450d0a200341a0046a280200450d0a200328029c04101f0c0a0b20034198046a10440c090b200a450d08200341a0046a280200450d08200328029c04101f0c080b2009450d07200341a0046a280200450d07200328029c04101f0c070b2008450d06024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d06200328029c04101f0c060b4205200b7c2005580ddb010b41d8d8c1001024000b20034198046a10440c030b200341a0046a280200450d02200328029c04101f0c020b2007450d01200341a0046a280200450d01200328029c04101f0c010b2009450d00024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d00200328029c04101f0b41012108410021070ce2010b41e3f5c0002104412521060cc3010b410021022003280294050dbb010cbc010b200341b8036a41086a20022d00003a0000200320032903d8033703b803200841087621020cb1010b41f59cc100210441002102200e4102460dd9010cdb010b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c040b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803412a210641d480c000210420074104470da4010ca9010b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d8030c020b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c010b20034180066a41086a20034190056a41086a2d00003a00002003200329029005370380060b412a210641d480c00021040ca5010b41e7f3c000210441202106200d0dae010caf010b4108210d4100210220110dab010cac010b20032005422088a73602a0042003200936029c0420032008360298042003411436029405200341c8cec0003602900520034198046a20034190056a106202402009450d002008101f0b410021040ca2010b200341a0036a41086a22024200370300200342003703a0034196d1c0004115200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900320034190036a411041e4a4c10041001004200320143a00980420024200370300200342003703a00341b1fec0004119200341a0036a100020062002290300370300200320032903a0033703900320034190036a411020034198046a41011004410021040ca1010b200d101222040dac010b200d41011015000b41fff7c00021040cb3010b41002107200328029c040da0010ca1010b42e40021120b02402012200c562005200b562005200b511b450d004187f4c000210441102106200d0da6010ca7010b201a450d10200341a0036a41086a22024200370300200342003703a00341c3f2c0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d1b200341003602980420034190036a411020034198046a41044100100141016a41044d0d57201a2003280298044d0d1c0c84010b20032d008c05450d1741baf6c0002104411d21060c240b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b803200841087621022005422088a72106200921040c85010b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803411a21064193e5c00021040c98010b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a003370390034100210d20034190036a411041e4a4c100410041001001417f460d15200342103702a406200320034190036a3602a00620034198046a200341a0066a1040200328029804220a450d5f200341a0046a280200210d200328029c0421160c160b4100211e0b201c201e41067422096a22810121022009450d0e20034198046a411c6a21820120034198046a41146a21094100211520034198046a41186a21830120034198046a41206a21840120034198046a41286a218501034020034198046a41086a228601201c20156a2202411c6a29020037030020034198046a41106a2214200241246a2902003703002083012002412c6a290200370300208401200241346a2902003703002085012002413c6a2802003602002003200241146a29020037039804200241106a280200221a450d0e20022903002110200241086a290300212420034190056a41286a22870120850128020036020020034190056a41206a22880120840129030037030020034190056a41186a22890120830129030037030020034190056a41106a228a01201429030037030020034190056a41086a228b012086012903003703002003200329039804370390052014201a3602002009200329039005370200200941086a208b01290300370200200941106a208a01290300370200200941186a208901290300370200200941206a208801290300370200200941286a208701280200360200200320243703a004200320103703980420820120034180066a41201080020d1202402009280200450d00201a101f0b201541c0006a2115200241c0006a208101470d000b2081012202208101470d0f0c100b200341f8036a41176a2008290300370000200341f8036a411f6a20092d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a21060b200441016a22022004490dbc0120044101742208200220022008491b2209ad4206862205422088a70dbc012005a722024100480dbc012004450d0620072004410674200210142207450d070c790b200341cc046a20032903980420034198046a41086a2903001063412821062007410110642204450d15200341b8046a280200450d010b20032802b404101f0b200341c4046a280200450da50120032802c004101f0ca5010b41012107410021060b200341a0036a41086a22044200370300200342003703a00341decfc000411d200341a0036a100020034190036a41086a2004290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200341003602900520034190036a411020034190056a41044100100141016a41044d0d4220032802900521042006450d740c730b4104210420060d720c730b2006450d8c012002101f0c8c010b2002101222070d720b200241081015000b4197f4c000210441222106200d0d94010c95010b20032903a804210b200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900342002105024020034190036a411041e4a4c100410041001001417f460d00200342003703900520034190036a411020034190056a41084100100141016a41084d0d4320032903900521050b20024200370300200342003703a00341a4f6c0004116200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0e200342003703900520034190036a411020034190056a41084100100141016a41084d0d432005200329039005200b7c5a0d1d0c680b4100210a200328029c040d720c730b200241c0006a21020b2002208101460d010b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b4100218c010240201d450d00201c101f0b4108218d01410821024100218e010cb0010b200341a0066a41286a2214200941286a280200360200200341a0066a41206a228301200941206a290200370300200341a0066a41186a228401200941186a290200370300200341a0066a41106a228501200941106a290200370300200341a0066a41086a228601200941086a290200370300200320092902003703a00620034198046a41286a2209201428020036020020034198046a41206a221420830129030037030020034198046a41186a22830120840129030037030020034198046a41106a22840120850129030037030020034198046a41086a228501208601290300370300200320032903a0063703980441c0001012228d01450d4d208d012010370300208d01201a360210208d01200329039804370214208d012024370308411c218201208d01411c6a2085012903003702004124218b01208d0141246a208401290300370200412c218a01208d01412c6a2083012903003702004134218901208d0141346a2014290300370200413c218801208d01413c6a2009280200360200201e41067441406a2015460d0a200241c0006a218f01411421900120034198046a41146a21094106219101201c201e4106746a41406a21920120034198046a411c6a21930141012194014110211441082115412821870120034198046a41286a2185014120211a20034198046a41206a218401411821860120034198046a41186a21830141c000219501420621244220211041002196014101218e014101218c01410121020caa010b4200210b200341a0036a41086a22024200370300200342003703a00341e6f7c0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0a2003420037039805200342003703900520034190036a411020034190056a4110410010012202417f460d4b2002410f4d0d4b20034198056a290300210b20032903900521050c0b0b4101210a410021160b200a200d4105746a2104200a21020340200420026b41ff004d0d0d20034190056a2002460d0e200220034190056a4120108002450d0e200241206a220620034190056a460d0e200620034190056a4120108002450d0e200241c0006a220620034190056a460d0e200620034190056a4120108002450d0e200241e0006a220620034190056a460d0e20024180016a2102200620034190056a41201080020d000c0e0b0b201a41e4004b0d680b2018450d04200341a0036a41086a22024200370300200342003703a00341d7f2c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0e200341003602980420034190036a411020034198046a41044100100141016a41044d0d4520182003280298044d0d0f0c5c0b20034180066a41086a22072004417f6a2204360200200220044105746a220229000021052002290008210b2002290010210c200641186a200241186a2900003700002006200c3700102006200b3700082006200537000020034198046a41086a2007280200360200200320032903800637039804411510122202450d482002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d4920022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602fc03200320023602f80320034198046a200341f8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d4a200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d4b200220032903a0063700122002412a6a200341a0066a41186a2204290300370000200241226a200341a0066a41106a22072903003700002002411a6a200341a0066a41086a2208290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a411010052002101f20034198046a41186a200429030037030020034198046a41106a200729030037030020034198046a41086a2008290300370300200320032903a0063703980420064200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900342002105024020034190036a411041e4a4c100410041001001417f460d00200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3e20032903f80321050b200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0b200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3e20032903f803210b410f2106410f10122202450d0c0c5a0b2003419c056a200736020020034190056a41086a41063a0000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d5c20032802c004101f410021040c91010b4101210420060d780c790b200341a0036a41086a22024200370300200342003703a003418295c0004115200341a0036a1000200341f8036a41086a2002290300370300200320032903a0033703f803200341f8036a411041e4a4c100410041001001417f460d0c2003420037039005200341f8036a411020034190056a41084100100141016a41084d0d40200329039005220c50450d0d41e4a9c2001024000b41c9f4c000210441292106200d0d83010c84010b4101218e014101218c012081012202208101470da2010ca3010b420521050b200341a0026a200341a0066a2005200b1065200341a0066a200329039804220c20057d20034198046a41086a290300200b7d200c200554ad7d1063412821062007410110642204450d010b024020034198046a41206a280200450d0020032802b404101f0b200341c4046a280200450d8a0120032802c004101f0c8a010b20034190056a41086a41013a000020034199056a20032903a00637000020034190056a412c6a2007360200200341a1056a200341a0066a41086a290300370000200341a9056a200341b0066a290300370000200341b1056a200341b8066a290300370000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b20034198046a412c6a280200450d5420032802c004101f410021040c89010b024020022004460d00034020034190056a2002460d02200220034190056a4120108002450d022004200241206a2202470d000b0b410f10122202450d44200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d45200220032903900537000f200241276a20034190056a41186a22062903003700002002411f6a20034190056a41106a2204290300370000200241176a20034190056a41086a22152903003700002003427f37039804200341a0036a41086a22144200370300200342003703a0032002412f200341a0036a100020034190036a41086a2014290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20034180066a41186a2214200629030037030020034180066a41106a2206200429030037030020034180066a41086a220420152903003703002003200329039005370380062016200d470d4f200d41016a2202200d490d9c01200d4101742216200220022016491b2216ad4205862205422088a70d9c012005a722024100480d9c01200d450d0b200a200d41057420021014220a450d0c0c4f0b419ae4c0002104411f21062016450d60200a101f20074104470d6d0c720b42e807210b410f2106410f101222020d4e0b200641011015000b20184190ce004b0d4d0b2017450d03200341a0036a41086a22024200370300200342003703a00341f2f2c0004118200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d04200341003602980420034190036a411020034198046a41044100100141016a41044d0d3d20172003280298044d0d050c490b4205210c0b20054280de34200c80200b7c540d4b0b41d7f6c0002104412a2106200341b8046a2802000d7e0c7f0b4189f5c000210441272106200d0d740c750b2017418089fa004b0d440b024020034190056a200c200b1066450d0041c4f5c0002104411f2106200d0d730c740b200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d02200341003602980420034190036a411020034198046a41044100100141016a41044d0d3b20032802980441016a21060c030b20021012220a0d430b200241011015000b410121060b200320063602980442002112200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a221b2002290300370300200320032903a0033703900320034190036a411020034198046a4104100420034180066a41186a420037030020034180066a41106a420037030020034180066a41086a420037030020034200370380062014201720034180066a1002200341d0026a41026a220820032d0082063a0000200341a0066a41086a220920034180066a41176a290000370300200341a0066a41106a220a20034180066a411f6a2d00003a0000200320032f0180063b01d0022003200329008f063703a00620032800830621042003290087062105200341d8036a41086a20034190056a41176a290000370300200341d8036a41106a20034190056a411f6a2d00003a0000200341b8036a41086a2009290300370300200341b8036a41106a200a2d00003a0000200320032d0092053a00f203200320032f0190053b01f0032003200329009f053703d803200320032f01d0023b01d003200320082d00003a00d203200320032903a0063703b8032003280093052159200329009705211320024200370300200342003703a00341dd81c000410d200341a0036a1000201b2002290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d3520032903980421120b20034180066a41026a20082d00003a000020034198046a41086a200929030037030020034198046a41106a200a2d00003a0000200320032f01d0023b018006200320032903a00637039804411810122202450d38200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d39200220032f0180063b00182002200537001f2002200436001b20022003290398043700272002411a6a20034180066a41026a2d00003a00002002412f6a20034198046a41086a290300370000200241376a20034198046a41106a2d00003a0000200341a0036a41086a22084200370300200342003703a00320024138200341a0036a1000200341f8036a41086a2008290300370300200320032903a0033703f803200341f8036a4110100a21092002101f4101210820090d3e200341e0026a41026a200341d0026a41026a2d00003a000020034198046a41086a200341a0066a41086a29030037030020034198046a41106a200341a0066a41106a2d00003a0000200320032f01d0023b01e002200320032903a00637039804411810122202450d3a200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d3b200220032f01e0023b00182002200537001f2002200436001b20022003290398043700272002411a6a200341e2026a2d00003a00002002412f6a200341a0046a290300370000200241376a200341a8046a2d00003a000020034100360288062003420137038006200320173602f803200341f8036a20034180066a1013024002400240200328028406220a20032802880622096b20174f0d00200920176a22082009490d9001200a410174221b20082008201b491b221b4100480d9001200a450d01200328028006200a201b10142208450d020c3f0b20032802800621080c3f0b201b101222080d3d0b201b41011015000b41d0dbc1001024000b41de86c00041331023000b41b8cfc1001024000b41e8dbc1001024000b41b4bcc2001024000b41acc2c2001024000b41ece8c1001024000b41fca9c2001024000b41a0c9c1001024000b419cbcc2001024000b41ac9ac2001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41c0d8c1001024000b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b412041011015000b410941011015000b412941011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b41de86c00041331023000b410841011015000b41de86c00041331023000b200441081015000b411341011015000b412641011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41c00041081015000b411541011015000b413541011015000b411241011015000b413241011015000b41de86c00041331023000b41de86c00041331023000b410f41011015000b412f41011015000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b2003201b360284062003200836028006201b210a0b200820096a2014201710fe011a200341a0036a41086a221b4200370300200342003703a00320024138200341a0036a100020034190036a41086a201b290300370300200320032903a0033703900320034190036a41102008200920176a10040240200a450d002008101f0b2002101f0240200d450d002014101f0b410021080b200341c8046a2018360200200341c4046a2016360200200341bc046a201a360200200341b8046a2015360200200341ce046a20032d00f2033a0000200341d3046a201337000020034198046a41376a2059360000200341db046a20032903d803370000200341e3046a200341d8036a41086a290300370000200341eb046a200341d8036a41106a2d00003a00002003200c37039804200320193602c004200320073602b404200320063602b004200320123703a8042003200b3703a004200320032f01f0033b01cc04200341ef046a2004360000200341f3046a2005370000200341ee046a20032d00d2033a0000200341fb046a20032903b80337000020034183056a200341b8036a41086a2903003700002003418b056a200341b8036a41106a2d00003a0000200341003a008c05200320032f01d0033b01ec0402400240024002400240411310122202450d002002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d01200220063600132003411736028406200320023602800620034198046a20034180066a10672002101f0240200341b8046a280200450d00200341b4046a280200101f0b0240200341c4046a280200450d00200341c0046a280200101f0b200341a0036a41086a22024200370300200342003703a00341ccf3c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041e4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a10682003280298042204450d042003200329029c04220537029c0420032004360298042005a72005422088a72202460d010c060b200341003602a0042003420437039804410421040b200241016a22072002490d5320024101742209200720072009491b2209ad4202862205422088a70d532005a722074100480d53024002402002450d0020042002410274200710142204450d010c050b2007101222040d040b200741041015000b411341011015000b412641011015000b41de86c00041331023000b2003200936029c042003200436029804200341a0046a28020021020b20034198046a41086a2207200241016a360200200420024102746a20063602002003411b36028406200341ccf3c0003602800620034198046a20034180066a10690240200328029c04450d002004101f0b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2204290300370300200341f8036a41086a20034190056a41086a220929030037030020032003290390053703f803200741003a0000200341c4046a2006360200200341a1046a200329039005370000200341a9046a2009290300370000200341b1046a2004290300370000200341b9046a2002290300370000200341073a00980420034198046a1027024020034190056a105e450d0020034198046a41186a200229030037030020034198046a41106a200429030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034198046a20064101106a0b410021040240200d450d002008450d002014101f0b0c3a0b41b0f5c000210441142106200d0d2e0c2f0b200a200d4105746a2202200329038006370000200241186a2014290300370000200241106a2006290300370000200241086a20042903003700002003200d41016a3602a0042003201636029c042003200a36029804200341123602a406200341cccfc0003602a00620034198046a200341a0066a106202402016450d00200a101f0b410021040c110b41002104200241076a41002900d9c340370000200241002900d2c340370000024020022006412f10142202450d00200220032903980437000f200241276a200341b0046a2903003700002002411f6a20034198046a41106a290300370000200241176a20034198046a41086a2903003700002003200b20057c3703f803200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a4110200341f8036a410810042002101f0c230b412f41011015000b41f2f4c000210441172106200d0d2b0c2c0b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a00637039005412210122202450d01200241206a41002f00c8f7403b0000200241186a41002900c0f740370000200241106a41002900b8f740370000200241086a41002900b0f740370000200241002900a8f7403700002002412241c40010142202450d0220022003290390053700222002413a6a200341a8056a290300370000200241326a20034190056a41106a2903003700002002412a6a20034190056a41086a290300370000200241c40041880110142202450d0320022007360042200341a0036a41086a22064200370300200342003703a003200241c600200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f02402006450d004181f7c000210441272106200341b8046a2802000d340c350b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a0063703900520034190056a2007201b106a0240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d0020032802c004101f0b410021040c340b412241011015000b41c40041011015000b41880141011015000b2007101f0b0240200220044d0d0020034198046a2008106b2104410d21060c1b0b41c1e5c0002104413921060c1a0b20042108200921040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c200341003602a806200342013703a0062007200841016a2206200341a0066a106c20032802a406210920032802a806210a20032802a0062102200341f8036a41086a220d4200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a200d290300370300200320032903f8033703a003200341a0036a41102002200a100402402009450d002002101f0b02402006450d00200741106a2102200841067441c0006a210603400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b02402004450d002007101f0b410021040b4126210641002102200e4102460d450c470b41b9f4c000210441102106200d0d200c210b200328029804101f0b200a0d004101210a4115210641d49bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b803370398044100210a0b20034180066a41086a220d20034198046a41086a2d00003a0000200320032903980437038006200a0d00200341af056a200d2d00003a0000200320153600a3052003200c37009b052003200636009705200320043600930520032003290380063700a705200320023b019005200320024110763a00920520034198046a200341a0066a105d024020032d0098044101470d0041b9e4c00021044126210620074104470d0e0c130b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041e4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a1040200328029804220a450d0c200341a0046a2802002102200328029c04210d0c010b4101210a4100210d0b200a20024105746a2104200a21020340200420026b41ff004d0d02200341a0066a2002460d092002200341a0066a4120108002450d09200241206a2206200341a0066a460d032006200341a0066a4120108002450d04200241c0006a2206200341a0066a460d052006200341a0066a4120108002450d06200241e0006a2206200341a0066a460d0720024180016a21022006200341a0066a41201080020d000c080b0b20074104460d110c0c0b024020022004460d000340200341a0066a2002460d092002200341a0066a4120108002450d082004200241206a2202470d000b0b41002102200d0d090c0a0b200341a0066a21060b20062102200d0d070c080b200341a0066a21060b20062102200d0d050c060b200341a0066a21060b200621020b200d450d030c020b200341a0066a2102200d0d010c020b41de86c00041331023000b200a101f0b02402002450d0041dfe4c00021044122210620074104470d010c060b20034180066a20034190056a106120034198046a41186a200341a0066a41186a29030037030020034198046a41106a200341a0066a41106a29030037030020034198046a41086a200341a0066a41086a290300370300200320032903a00637039804024002400240024002402003280284062003280288062202470d00200241016a22062002490d3320024101742204200620062004491b2204ad4205862205422088a70d332005a7220a4100480d332002450d012003280280062002410574200a10142206450d020c030b20032802800621060c030b200a101222060d010b200a41011015000b200320043602840620032006360280060b20034180066a41086a2204200241016a360200200620024105746a2202200329039804370000200241186a20034198046a41186a290300370000200241106a20034198046a41106a290300370000200241086a20034198046a41086a220229030037000020022004280200360200200320032903800637039804024002400240024002400240411510122202450d002002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d0120022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602dc03200320023602d80320034198046a200341d8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d02200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d03200220032903a0063700122002412a6a200341b8066a290300370000200241226a200341a0066a41106a2903003700002002411a6a200341a0066a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034190056a412010042002101f410f10122202450d0441002104200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d05200220032903a00637000f200241276a200341b8066a2903003700002002411f6a200341a0066a41106a290300370000200241176a200341a0066a41086a2903003700002003427f37039804200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20074104470d060c0b0b411541011015000b413541011015000b411241011015000b413241011015000b410f41011015000b412f41011015000b20074106460d04024002402007410c470d004100450d010c060b2007410c490d050b2009450d040b2008101f0c030b2002101f0b2004450d0020034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a2903003703002003200329039005370398042003200c3703a8062003200542808080807083200542ffffffff0f83843703a006200320153602b006411c10122202450d02200241186a4100280093d040360000200241106a410029008bd040370000200241086a4100290083d040370000200241002900fbcf403700002002411c413c10142202450d03200220032903980437001c200241346a200341b0046a2903003700002002412c6a20034198046a41106a290300370000200241246a20034198046a41086a29030037000020034100360288062003420137038006200341a0066a41106a20034180066a10132003200341a0066a3602f803200341f8036a20034180066a106d200328028406210420032802880621072003280280062106200341a0036a41086a22084200370300200342003703a0032002413c200341a0036a100020034190036a41086a2008290300370300200320032903a0033703900320034190036a411020062007100402402004450d002006101f0b2002101f410021040c010b41c2d1c0002104410d21060b41002108410121070c320b411c41011015000b413c41011015000b200328029804101f0b20070d00410121074115210641d49bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021070b20034180066a41086a220820034198046a41086a2d00003a000020032003290398043703800620070d0020034190036a41086a20082d00003a00002003200329038006370390034200210b200341f8036a41086a22074200370300200342003703f80341ef8fc1004108200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a00341002107024002400240200341a0036a411041e4a4c100410041001001417f460d0020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012207417f460d022007411f4d0d0220034180066a41186a200341f8036a41186a29030037030020034180066a41106a200341f8036a41106a29030037030020034180066a41086a200341f8036a41086a290300370300200320032903f80337038006200341d8036a41086a20034197066a290000370300200341d8036a41106a20034180066a411f6a2d00003a0000200320032d0082063a00f203200320032f0180063b01f0032003200329008f063703d8032003280083062107200329008706210b0c010b200341d8036a41106a41003a0000200341e0036a4200370300200341003a00f203200341003b01f003200342003703d8030b200341b8036a41086a2208200341d8036a41086a290300370300200341b8036a41106a2209200341d8036a41106a2d00003a0000200320032d00f2033a00d203200320032f01f0033b01d003200320032903d8033703b803200341a1046a200b370000200341a9046a20032903b803370000200341b1046a2008290300370000200341b9046a20092d00003a000020034186023b0198042003200736009d04200320032f01d0033b019a04200320032d00d2033a009c0420034198046a1027200341b7046a20034190036a41086a2d00003a0000200320163600ab04200320053700a3042003200636009f042003200436009b0420032003290390033700af04200320023b019804200320024110763a009a04200341f8036a41086a22024200370300200342003703f80341ef8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a41201004410021040c010b41de86c00041331023000b4100210a41012107410121080c2c0b200f101f0b200341003602a0042003420137039804200d200220034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b02402002450d0020024106742106200d41106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104410121020240200a450d00200d101f0b200e4102460d240c260b2014101f0b02402016450d002019101f0b2015450d092007101f0c090b2003200d3602a406200320043602a006200d210a0b200420086a2009200610fe011a200341f8036a41086a220d4200370300200342003703f80320024129200341f8036a1000200341a0036a41086a200d290300370300200320032903f8033703a003200341a0036a41102004200820066a10040240200a450d002004101f0b2002101f02402007450d002009101f0b200341a1046a20034198056a290300370000200341a9046a200341a0056a290300370000200341b1046a200341a8056a2903003700002003410a3a00980420032003290390053700990420034198046a1027410021040c150b200328029005101f0b20020d004101210241d49bc1002114411521060c010b20034190056a41086a200341b8036a41086a2d00003a0000200320032903b80337039005410021020b200341a0036a41086a220420034190056a41086a2d00003a000020032003290390053703a00320020d08200341b7046a20042d00003a00002003200a3600ab04200320053700a3042003200636009f042003201436009b04200320032903a0033700af04200320093b019804200320094110763a009a0420034198046a200c200b106e20034198046a20132012106f0b410021040c120b20032802b404101f0b200341c4046a280200450d0020032802c004101f0b4100210d41012107410121084101210a0c1f0b200328029804101f0b20020d004101210241d49bc1002114411521060c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021020b200341a0036a41086a220420034198046a41086a2d00003a000020032003290398043703a00320020d00200341af056a20042d00003a00002003200a3600a3052003200537009b0520032006360097052003201436009305200320032903a0033700a705200320093b019005200320094110763a009205411410122202450d04200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d05200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a29030037000042002105200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d032006410f4d0d03200341a0046a290300211320032903980421052002101f41142106411410122202450d020c060b41012107410121084101210a4101210d4101210941012116410121152014210420012d0000220241094d0d1d0c1e0b420021132002101f411421064114101222020d040b200641011015000b41de86c00041331023000b411441011015000b413441011015000b200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad9540370000024002400240024002400240024002400240024020022006413410142202450d0020022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900302400240024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d022006410f4d0d02200341a0046a290300212020032903980421210c010b42002121420021200b2002101f200341a0036a41086a22024200370300200342003703a0030240024002400240202120208422224200510d004186afc0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d02200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d062002410f4d0d06200341a0046a29030021100c010b41f2aec0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d082002410f4d0d08200341a0046a29030021100b20032903980421230c010b42002123420021100b0240200c20237c2224200c542202200b20107c2002ad7c2212200b542012200b511b450d0041ccb0c00021040c0f0b411010122202450d03200241086a41002900a2af403700002002410029009aaf4037000020024110413010142202450d04200220032903a006370010200241286a200341a0066a41186a290300370000200241206a200341a0066a41106a290300370000200241186a200341a0066a41086a29030037000020034198046a20024130103c20034198046a41206a290300212520034198046a41186a290300212620034198046a41106a290300212720032903a004212820032903980421292002101f4200212a4200212b0240024020294201520d00411410122202450d09200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0a200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200212b200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a003370390030240024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d0a2006410f4d0d0a200341a0046a2903002129200329039804212c0c010b4200212c420021290b2002101f200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d02200329039804212b0b4200212a200341e8016a20254200202b4200108202200341f8016a202b420020264200108202200341d8016a42004200202642001082024200212b024020032903e00120032903f00184420052200341f8016a41086a290300222520032903d80120032903e8017c7c2226202554720d002027202620032903f801222a202854202620275420262027511b22021b20267d2028202a20021b2226202a54ad7d212b2026202a7d212a0b202b2029202c202a562029202b562029202b511b22021b212b202a202c20021b212a0b0240200520247d2226200556201320127d2005202454ad7d220520135620052013511b450d0041e3afc0002104411d21060c110b02402026202a542005202b542005202b511b450d0041bdafc0002104412621060c110b202250450d0b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0b200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d0a2002410f4d0d0a200329039804200c56200341a0046a2903002212200b562012200b511b450d0b41adb0c0002104411f21060c100b41de86c00041331023000b41de86c00041331023000b413441011015000b41de86c00041331023000b411041011015000b413041011015000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411e2106200341a0066a107022040d0402402021200c7c221320215422022020200b7c2002ad7c221220205420122020511b450d004180b0c0002104412d21060c050b024002400240200341a0066a20034190056a4120108002450d00200341a0066a20262005106e42002105200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024002400240024002400240024002400240024002400240024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200341a0046a290300212020032903980421050c010b420021200b0240200520237d2221200556202020107d2005202354ad7d220520205620052020511b0d002003202137039804200320053703a004200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a411010040b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200329039804201358200341a0046a290300220520125820052012511b0d0020034190056a20132012106e0c0b0b411410122202450d03200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0420022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f20060d09200341a0036a41086a22024200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900341002102024020034190036a411041e4a4c100410041001001417f460d00200341003602980420034190036a411020034198046a41044100100141016a41044d0d0320032802980421020b20034180066a200941067641ff07712204101e02400240024002402003280288062009413f7122064d0d00200341c8016a20032802800620064105746a2206105c20032903c801200341c8016a41086a290300844200510d010b0240200328028406450d00200328028006101f0b20034198046a2002101e024020032802a0042206413f4d0d00200341a0046a21040340200241016a21020240200328029c04450d00200328029804101f0b20034198046a2002101e2004280200220641c0004f0d000b0b2003280298042107200328029c04210420034198046a41186a220a20034190056a41186a29030037030020034198046a41106a220d20034190056a41106a29030037030020034198046a41086a221620034190056a41086a290300370300200320032903900537039804200641016a210820042006470d0a20064101742204200820082004491b2204ad4205862205422088a70d192005a722094100480d192006450d0120072006410574200910142207450d020c0a0b2006200329039005370000200641186a20034190056a41186a290300370000200641106a20034190056a41106a290300370000200641086a20034190056a41086a29030037000020034198046a41086a20034180066a41086a280200360200200320032903800637039804410f10122202450d07200241076a41002900e09540370000200241002900d995403700002002410f411e10142202450d082002200436000f200341133602fc03200320023602f80320034198046a200341f8036a10622002101f200328029c04450d0a200328029804101f0c0a0b2009101222070d080b200941011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b410f41011015000b411e41011015000b200720064105746a2209200329039804370000200941186a200a290300370000200941106a200d290300370000200941086a20162903003700000240200841c000470d002003200241016a36029804200341a0036a41086a22094200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2009290300370300200320032903a0033703900320034190036a411020034198046a410410040b200320083602a0042003200436029c042003200736029804410f10122208450d04200841076a41002900e09540370000200841002900d995403700002008410f411e10142208450d05200241067420066a21062008200236000f2003411336028406200320083602800620034198046a20034180066a10622008101f02402004450d002007101f0b20034180066a41186a20034190056a41186a220229030037030020034180066a41106a20034190056a41106a220429030037030020034180066a41086a20034190056a41086a220729030037030020032003290390053703800620034198046a41086a20032903900537030020034198046a41106a200729030037030020034198046a41186a2004290300370300200341b8046a20022903003703002003200636029c04200341013a00980420034198046a10270b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2206290300370300200341f8036a41086a20034190056a41086a220429030037030020032003290390053703f803200341d0046a2012370300200341c8046a201337030020034198046a41086a41003a0000200341a1046a200329039005370000200341a9046a2004290300370000200341b1046a2006290300370000200341b9046a2002290300370000200341023a00980420034198046a10270b20034190056a20132012106e0b200329009705210520032900a7062112200341a0046a41023a0000200341a8046a2012370300200341a4046a2019360200200341a1046a20032f01a0063b0000200341a3046a20032d00a2063a0000200341b0046a20032900af06370300200341b8046a200341a0066a41176a290000370300200341c0046a200341a0066a411f6a2d00003a0000200341c1046a20032f0190053b0000200341c3046a20032d0092053a0000200341023a009804200341c8046a2005370300200341c4046a201436020020034180056a2010370300200341f8046a2023370300200341f0046a200b370300200341e8046a200c370300200341d0046a200329009f05370300200341d8046a20034190056a41176a290000370300200341e0046a20034190056a411f6a2d00003a000020034198046a10270b4100210441012107410121084101210a4101210d41012109410121164101211520012d0000220241094d0d190c1a0b410f41011015000b411e41011015000b41bd86c0002104410d21062007450d010b2009101f0b4100211541012107410121084101210a4101210d410121094101211620012d0000220241094d0d140c150b412821060b410121070c0c0b200320053703900520034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a411020034190056a41081004200341013a00900520024200370300200342003703900341be93c000411320034190036a10002007200229030037030020032003290390033703980420034198046a411020034190056a41011004200742003703002003420037039804418295c000411520034198046a1000200341f8036a41086a200729030037030020032003290398043703f8030240024002400240024002400240200341f8036a411041e4a4c100410041001001417f460d002003420037039804200341f8036a411020034198046a41084100100141016a41084d0d02200329039804210c0c010b4205210c0b20034198046a41086a22024200370300200342003703980441a888c000411220034198046a1000200341a0036a41086a2208200229030037030020032003290398043703a0034101210702400240200341a0036a411041e4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d03200329039804210b4100210a0c010b4101210a0b200320053703900520024200370300200342003703980441a888c000411220034198046a10002008200229030037030020032003290398043703a003200341a0036a411020034190056a41081004200b500d10200a0d10427f200c200c7c22122012200c541b220c4200510d022005200c802205200b200c80220b580d032005200b42017c220c510d104200211220034198046a41086a22024200370300200342003703980441f3fec000411220034198046a1000200341a0036a41086a200229030037030020032003290398043703a00302400240200341a0036a411041e4a4c100410041001001417f460d0020034210370294052003200341a0036a3602900520034198046a20034190056a1040200328029804221f450d06200329029c0421120c010b4101211f0b2005200b427f857ca7222d450d0f2012422088a7222e202d4d0d0f200ca7212f200341a1046a2130410f213120034190056a410f6a2132200341f8036a410f6a2133200341a0066a410f6a21344100210a41052135410821084110211641182118420021054114213641c8cec000213741e4a4c1002138417f2139410121194112213a4132213b412a213c4122213d411a213e410421174119213f41eecec0002140410d214141dd81c0002142411721434187cfc00021444120210d4130214541502146420121204220210b411b214741b1cfc000214841ff0021494160214a41cccfc000214b411d214c41decfc000214d423f2123411c214e413c214f41342150412c21514124215241032153411521544196d1c000215541b1fec000215642102113200341d0046a215741582158415421594128211b4174215a416c215b4164215c415c215d417c215e4230210c410b215f410a216041272161411f216242ffffffff0f2121410721634102216441002165410021020c050b41de86c00041331023000b41de86c00041331023000b41b4cac1001024000b41cccac1001024000b41de86c00041331023000b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b201f2065202f6a202e702035746a2202290000212b200220086a2900002122200220166a2900002126200341a0066a20186a2266200220186a290000370300200341a0066a20166a22672026370300200341a0066a20086a226820223703002003202b3703a006200341f8036a20086a22692005370300200320053703f80320372036200341f8036a100020034190036a20086a226a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042202450d0e200328029c04216b200220034198046a20086a280200200341a0066a1036216c0240206b450d002002101f0b206c450d020c010b2019200a200341a0066a1036450d010b206520196a2265202d470d1f0c2c0b203a10122202450d0d200220166a200a2f00ecce40226d3b0000200220086a200a2900e4ce4022253700002002200a2900dcce4022283700002002203a203b10142202450d0e200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a206829030037000020692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0a200328029804216e2002101f203a101222020d010c110b4100216e2002101f203a10122202450d100b200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d10200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a20682903003700002003206e20196a226f3602980420692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201710042002101f20692005370300200320053703f8032040203f200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0b20032802980421700c010b410021700b200341a0036a20086a2202203420086a290000370300200341a0036a20166a226b203420166a2d00003a0000200320032d00a2063a00d202200320032f01a0063b01d002200320342900003703a00320032800a306217120032900a706212a4200212920694200370300200342003703f80320422041200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d00200320053703980420034190036a201620034198046a2008200a100120196a20084d0d0820032903980421290b200341f0026a20086a22722002290300370300200341f0026a20166a2273206b2d00003a0000200320032d00d2023a00e202200320032f01d0023b01e002200320032903a0033703f00220692005370300200320053703f80320442043200341f8036a1000206a2069290300370300200320032903f8033703900302400240024002400240024020034190036a20162038200a200a10012039460d002003201337029c04200320034190036a36029804200341c0016a20034198046a102820032802c001450d0820032802c4012274ad200c7e222b200b88a70d12202ba7220220394c0d122002450d01200210122275450d1b2074450d030c020b4100217c4108217542002122410021020c040b410821752074450d010b20034198046a20086a2276280200217741002178200328029c042179200328029804217a4100216c410021022074217b034020034180066a20186a227c200537030020034180066a20166a227d200537030020034180066a20086a227e200537030020032005370380062076200a207a207920034180066a200d20771001226b206b2039461b226b200d206b200d491b20776a2277360200206b20624d0d05200341f8036a20186a207c290300370300200341f8036a20166a207d2903003703002069207e29030037030020032003290380063703f80320032005370390052076200a207a207920034190056a200820771001226b206b2039461b226b2008206b2008491b20776a2277360200206b20634d0d05200329039005212b2003200a360290052076200a207a207920034190056a201720771001226b206b2039461b226b2017206b2017491b20776a2277360200206b20534d0d05200220196a216b200328029005217c200341d8036a20086a227d203320086a290000370300200341d8036a20166a227e203320166a2d00003a0000200320032d00fa033a00f203200320032f01f8033b01f003200320332900003703d80320032800fb03217f20032900ff03212202402002207b470d002078206b206b2078491b227bad200c7e2226200b88a70d282026a7228001200a480d2802402002450d002075206c208001101422750d010c0c0b20800110122275450d0b0b2075206c6a2202202b370300200220086a20032f01f0033b010020032d00f203218001200220316a20223700002002205f6a207f360000200220606a2080013a0000200220616a207e2d00003a0000200220626a207d290300370000200220436a20032903d8033700002002201b6a207c360200207820646a2178206c20456a216c206b2102206b2074490d000c020b0b4100216b4100217b0b2075450d03206bad200b86207bad842222200b88a7217c2022a721020b20034198046a20086a2279207229030037030020034198046a20166a227e20732d00003a0000200320032d00e2023a008206200320032f01e0023b018006200320032903f002370398040240024002400240024002400240207c200d490d00207c20456c226b2045460d01207520456a2102206b20466a217a410021774101216c207521782075216b03402002206b206b29030020022903005622761b216b206c207720761b21772002207820761b2178206c20196a216c200220456a2102207a20466a227a0d000b206b450d182078450d182032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005207c20774b0d020c1f0b200341b8036a20086a226b2079290300370300200341b8036a20166a226c207e2d00003a0000200320032d0082063a00d203200320032f0180063b01d00320032003290398043703b80302402002207c470d00207c2019742202207c20196a227620762002491bad222b200c7e2226200b88a70d2a2026a72202200a480d2a207c450d032075207c20456c2002101422750d040c200b2022212b0c040b2032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005410021770b2075207720456c6a220220293703002002200d6a20034190056a20186a290300370300200220186a20034190056a20166a290300370300200220166a20034190056a20086a2903003703002002200329039005370308200220193602280c030b200210122275450d1c0b2022200b88a7217c0b2075207c20456c6a2202202937030020032d00d203217620032f01d0032177200220316a202a3700002002205f6a2071360000200220773b0108200220606a20763a0000200220616a206c2d00003a0000200220626a206b290300370000200220436a20032903b80337000020022019360228202b202183207c20196aad200b868421220b2079200a360200200320203703980420032022200b88a722023602900520034190056a20034198046a1013024002402002450d00200220456c217a2058207928020022026b2177200220516a2102200328029c04216c2075216b03400240024002400240206c20776a201b6a200d4f0d00200220596a2278200d6a22762078490d2a206c2019742278207620762078491b2278200a480d2a206c450d01200328029804206c2078101422760d020c0a0b20032802980421760c020b207810122276450d080b2003207836029c0420032076360298042078216c0b20792002205a6a227c360200207620026a2278205b6a206b200d6a2900003700002078205c6a206b20186a2900003700002078205d6a206b20166a290000370000207820596a206b20086a290000370000206b290300212b0240024002400240206c20776a227820086a20784f0d00207c20086a2278207c490d2a206c201974227c20782078207c491b2278200a480d2a206c450d012076206c2078101422760d020c0b0b206c21780c020b207810122276450d090b2003207836029c0420032076360298040b20792002205e6a226c360200207620026a205a6a202b370000206b201b6a280200217c0240024002400240207820776a20534b0d00206c20176a227d206c490d2a2078201974226c207d207d206c491b226c200a480d2a2078450d0120762078206c101422760d020c0c0b2078216c0c020b206c10122276450d0a0b2003206c36029c0420032076360298040b206b20456a216b20792002360200207620026a205e6a207c360000207720596a2177200220516a2102207a20466a227a0d000c020b0b200328029c04216c20032802980421760b2079280200210220692005370300200320053703f80320442043200341f8036a100020792069290300370300200320032903f8033703980420034198046a20162076200210040240206c450d002076101f0b02402022a7450d002075101f0b0240024002400240206f20704d0d004200212220694200370300200342003703f80320482047200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a200a10012039460d01200320053703a004200320053703980420034190036a201620034198046a2016200a100122022039460d16200220314d0d162079290300212a20032903980421270c020b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410121020c020b420021274200212a0b206e20197420706b216b206e20706b220220196a217a4200212b02400340206b216c2002207a4f0d010240200220494b0d00200341b0016a2027202a2002204971108302202b200341b0016a20086a2903007c202220032903b0017c22292022542276ad7c2226202b5121772026202b542178206c20196a216b200220196a2102202921222026212b2076207820771b450d010b0b20034198046a20186a226b2066290300370300207e206729030037030020792068290300370300200320032903a00637039804203a10122202450d18200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d1920022003290398043700122002203c6a206b2903003700002002203d6a207e2903003700002002203e6a20792903003700002003206c3602900520692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034190056a201710042002101f20034198046a200341a0066a106120792802002102200328029804216c200341a0016a200341a0066a105c200341a0016a20086a290300212b20032903a001212202402002450d002002203574216b206c2102034020034190016a2002105c20034190016a20086a290300202b7c200329039001222b20227c2222202b54ad7c212b2002200d6a2102206b204a6a226b0d000b0b200328029c04450d00206c101f0b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042276450d1d20792802002102200328029c04216b0c010b4100216b41012176410021020b20692005370300200320053703f803204d204c200341f8036a1000206a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0e200328029804216c206b450d020c010b4104216c206b450d010b2076101f0b02402002206c4d0d00200341f8006a200341a0066a2022202b10712003290378a72019470d00200341f8006a20166a290300212a200329038001212720034198046a200341a0066a10722003280298042176024020792802002202450d00420021262002203574226c216b42002129207621020340200341e8006a2002105c200341e8006a20086a29030020297c2003290368222920267c2226202954ad7c21292002200d6a2102206b204a6a226b0d000b2026202984500d00207621020340200341d8006a2002105c200341306a2003290358200341d8006a20086a2903002027202a108202200341206a2003290330200341306a20086a29030020262029108102200341c0006a20022003290320200341206a20086a29030010712002200d6a2102206c204a6a226c0d000b0b200328029c04450d002076101f0b204e10122202450d14200220186a200a280093d040360000200220166a200a29008bd040370000200220086a200a290083d0403700002002200a2900fbcf403700002002204e204f10142202450d15200220032903a00637001c200220506a2066290300370000200220516a2067290300370000200220526a206829030037000020034198046a2002204f103d20034198046a20186a2277280200216b20032903980421262002101f02400240206f20706b206b205320262020511b4b0d002022202388212a202b202086212720034198046a200341a0066a106120792802002102200328029804216c200341106a200341a0066a105c200341106a20086a29030021262003290310212902402002450d002002203574216b206c2102034020032002105c200320086a29030020267c2003290300222620297c2229202654ad7c21262002200d6a2102206b204a6a226b0d000b0b2027202a84212a202220208621270240200328029c04450d00206c101f0b2027202258202a202b58202a202b511b0d00202920275a2026202a5a2026202a511b0d010b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042278450d1e200328029c04217a024020792802002202450d00200220357421764100216b20782102024003402077200220186a290000370300207e200220166a2900003703002079200220086a2900003703002003200229000037039804206b20034198046a200341a0066a200d108002226c200a476a216b206c450d012002200d6a21022076204a6a22760d000c020b0b200341a0066a206b106b22020d200b207a450d002078101f0b20692005370300200320053703f80320552054200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a10042003200a3a00980420692005370300200320053703f8032056203f200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201910040b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410221020b2057202b37030020034198046a20456a2022370300207920023a0000203020032903900537000020034198046a20516a206e360200203020086a20034190056a20086a290300370000203020166a20034190056a20166a290300370000203020186a20034190056a20186a290300370000200320173a00980420034198046a1027206520196a2265202d470d1f0c2b0b208f012102024002400340200220146a280200216b200220156a290300212b2002290300212220850120022088016a28020036020020840120022089016a2902003703002083012002208a016a29020037030020034198046a20146a226c2002208b016a29020037030020034198046a20156a227620022082016a290200370300200320022090016a29020037039804206b450d0220034190056a2087016a228f0120850128020036020020034190056a201a6a227720840129030037030020034190056a2086016a227820830129030037030020034190056a20146a2279206c29030037030020034190056a20156a227a2076290300370300200320032903980437039005206c206b3602002009200329039005370200200920156a227c207a290300370200200920146a227a207929030037020020092086016a227920782903003702002009201a6a2278207729030037020020092087016a2277208f012802003602002003202b3703a0042003202237039804024020930120034180066a201a1080020d0002402009280200450d00206b101f0b20022095016a2202208101470d010c020b0b200341a0066a2087016a228f012077280200360200200341a0066a201a6a22772078290200370300200341a0066a2086016a22782079290200370300200341a0066a20146a2279207a290200370300200341a0066a20156a227a207c290200370300200320092902003703a006208501208f0128020036020020840120772903003703002083012078290300370300206c20792903003703002076207a290300370300200320032903a006370398040240208c01208e01470d00208e012094016a228c01208e01490d24208e0120940174228f01208c01208c01208f01491b228c01ad2024862226201088a70d242026a7228f01209601480d240240208e01450d00208d01208e0120910174208f011014228d010d010c200b208f011012228d01450d1f0b20022095016a218f01208d01208e01209101746a2277202b370308207720223703002077206b36021020772088016a20850128020036020020772089016a2084012903003702002077208a016a2083012903003702002077208b016a206c29030037020020772082016a207629030037020020772090016a200329039804370200208e012094016a218e012092012002470d210b2081012202208101470d240c250b200241c0006a2202208101460d240c230b207b450d002075101f0b41de86c00041331023000b207841011015000b207841011015000b206c41011015000b20800141081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b100f000b411241011015000b413241011015000b411241011015000b413241011015000b419ecfc00041131023000b41de86c00041331023000b411c41011015000b413c41011015000b200241081015000b411241011015000b413241011015000b419089c2002077207c1048000b200241081015000b41de86c00041331023000b41de86c00041331023000b4197d0c00041ff002002410d1037000b208f0141081015000b410021020c020b410021020c010b410121020c000b0b1010000b1010000b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b0240201d450d00201c101f0b208d0121020b200341003602a00420034201370398042002208e0120034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b0240208e01450d00208e014106742106200241106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104208c01450d00208d01101f0b411a210641002102200e4102470d020b20020d012011450d010b200f101f0b4100211641012107410121084101210a4101210d410121090c060b2012a7450d00201f101f0b410121080b4101210a0b4101210d0b410121090b410121160b4101211520012d0000220241094b0d010b02400240024002400240024020020e0a07020707070004030501070b2008450d06200141086a2d0000410c490d06200141106a280200450d062001410c6a280200101f0c060b2016450d05200141086a2d00004102470d05200141106a280200450d052001410c6a280200101f0c050b2007450d04200141086a10440c040b200d450d03200141086a2d00004102470d030240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d03200141246a280200101f0c030b200a450d02200141046a10730c020b2009450d01200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b2015450d00200141046a2802004102490d002001410c6a280200450d00200141086a280200101f0b2000200636020420002004360200200341d0066a24000bdc0202027f027e230041206b2202240002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b2003101f2000200537030820002004370300200241206a24000f0b41de86c00041331023000b411441011015000b413441011015000b9d840104037f027e087f0b7e230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417e6a220541104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210520022d0000210420034180036a41026a2209200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220044101470d14200341c0036a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01c003200320032903900637038805410021020c150b4100210941ac80c00041ac80c000410020022d000022021b20024103461b22050d10200320012d00013a008805200341b0066a41086a22024200370300200342003703b00641f4b0c0004119200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410110040c88010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0f200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1d2003421037028c05200320034180036a3602880520034188026a20034188056a108f012003290388024203510d5a200342083703e8044100210c200341003602f004200341b0066a41086a22024200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d31200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220d450d63200328028c05210c20034190056a2802002202450d320c95010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0e200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1d2003421037028c05200320034180036a36028805200341d8016a20034188056a108f0120032903d8014203520d1741de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0d200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5420032903880521060b41e2bcc0002109411f2108200620075a0d1720032007370390052003420237038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c080b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0c200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a22082002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341e8016a20034188056a108f0120032903e8014203520d1541de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0b200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341b8016a20034188056a108f0120032903b8014203520d1441de86c00041331023000b200341a0026a41186a200141196a290000370300200341a0026a41106a200141116a290000370300200341a0026a41086a200141096a290000370300200320012900013703a002200341c0026a41186a200141396a290000370300200341c0026a41106a200141316a290000370300200341c0026a41086a200141296a2900003703002003200141216a2900003703c002200141c4006a280200210a200141c8006a2802002109200141cc006a280200210b200241086a2800002108200241046a280000210520022d0000210420034180036a41026a220f200241036a2d00003a000020034190066a41086a220e200241146a29000037030020034190066a410d6a220c200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210120044101470d0b200341e8046a41026a200f2d00003a000020034188056a41086a200e29030037030020034188056a410d6a200c290000370000200320032f0180033b01e804200320032903900637038805410021010c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d09200341b0066a41086a22024200370300200342003703b006419596c1004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1b200342103702e403200320034180036a3602e00320034188056a200341e0036a105f2003280288052202450d552003200329028c0537028c0520032002360288050c1c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d08200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5020032903880521060b41e2bcc0002109411f2108200620075a0d1220032007370390052003420037038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c030b41ac80c00041ac80c000410020022d000022021b20024103461b22050d07200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1b2003421037028c05200320034180036a3602880520034198016a20034188056a108f012003290398014203520d1041de86c00041331023000b200141306a2903002106200141286a2903002107200341d8036a200141196a290000370300200341c0036a41106a200141116a290000370300200341c0036a41086a200141096a290000370300200320012900013703c003200241086a2800002108200241046a280000210920022d0000210520034180036a41026a2204200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220054101470d0b200341e8046a41026a20042d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01e804200320032903900637038805410021020c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d05200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d4e20032903880521060b41e2bcc0002109411f2108200620075a0d0f20032007370390052003420137038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010b4100210920012d00004104460d91010c92010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d03200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341f8016a20034188056a108f0120032903f8014203520d0c41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d02200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d182003421037028c05200320034180036a3602880520034188016a20034188056a108f012003290388014203520d0b41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d01200141086a2903002106200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341c8016a20034188056a108f0120032903c8014203520d0a41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b2205450d080b4128210820044104470d8e01200141c8006a280200450d8e01200141c4006a280200101f0c8e010b412a210841d480c00021050b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00302402001450d0020090d230c8d010b200341fc026a41026a200341c0066a41026a2d00003a0000200341e0026a41086a200341e0036a41086a290300370300200341e0026a410d6a200341e0036a410d6a290000370000200320032f01c0063b01fc02200320032903e0033703e002200b41204d0d0841d4bcc0002105410e210820090d220c8c010b41d480c0002105412a21080b200341c0066a41026a200341c0036a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01c0033b01c00620032003290388053703e0032002450d022005210920012d00004104460d88010c89010b412a210841d480c00021090b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00320020d03200341a0026a41026a2202200341c0066a41026a2d00003a0000200341a0036a41086a2205200341e0036a41086a290300370300200341a0036a410d6a2204200341e0036a410d6a290000370000200320032f01c0063b01a002200320032903e0033703a0032003419b056a2005290300370000200341a0056a20042900003700002003200836008f052003200936008b05200320022d00003a008a05200320032f01a0023b018805200320032903a00337009305200341d8006a20034188056a105a2003290358200341d8006a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d132003421037028c05200320034180036a36028805200341c8006a20034188056a108f01200329034822104203520d1441de86c00041331023000b200341a0036a41026a2202200341c0066a41026a2d00003a0000200341e8046a41086a2204200341e0036a41086a290300370300200341e8046a410d6a2209200341e0036a410d6a290000370000200320032f01c0063b01a003200320032903e0033703e8042003419b056a2004290300370000200341a0056a20092900003700002003200836008f052003200536008b05200320022d00003a008a05200320032f01a0033b018805200320032903e80437009305200341286a20034188056a105a2003290328200341286a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341186a20034188056a108f01200329031822104203520d1541de86c00041331023000b200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d0f2003421037028c05200320034180036a36028805200341a8016a20034188056a108f0120032903a8014203510d440b4181bdc0002109412421080b20012d00004104470d83010c82010b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341f8006a20034188056a108f01200329037822064203520d1541de86c00041331023000b4194bac00021094126210820012d00004104460d80010c81010b41b8b8c00021094127210820012d00004104460d7f0c80010b41d5bec00021090c7b0b2005450d17200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1e200341003602880520034180036a411020034188056a41044100100141016a41044d0d3a20032802880520054f0d1f0c740b20024200370300200342003703b00641f1bfc000411b200341b0066a100020082002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d17200341003602880520034180036a411020034188056a41044100100141016a41044d0d3820032802880520054d0d180c720b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c770b200341003602900520034208370388050b20034198026a20034188056a108301200328029c022108200328029802210920012d00004104460d790c7a0b2006500d042003200637038805200341b0066a41086a22024200370300200342003703b00641f9bec000411c200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c620b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c730b2006500d022003200637038805200341b0066a41086a22024200370300200342003703b00641d2b4c0004120200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c600b2006500d122003200637038805200341b0066a41086a22024200370300200342003703b00641b4bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5f0b2006500d002003200637038805200341b0066a41086a22024200370300200342003703b0064195bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5e0b41a5bdc000210920012d00004104460d730c740b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d022003421037028c05200320034180036a36028805200341386a20034188056a108f0120032903384203510d3220104203510d332010a74101470d0342002110200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d102003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d392002410f4d0d3920034190056a290300211020032903880521110c110b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341086a20034188056a108f0120032903084203510d3220104203510d332010a7450d0841dfb8c00021090c0d0b419db9c00021090c630b41babac0002109411c210820012d00004104460d6d0c6e0b420321060b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341e8006a20034188056a108f0120032903684203510d3120064203510d322006a74102470d032003419c036a41026a200341fc026a41026a2d00003a000020034180036a41086a200341e0026a41086a29030037030020034180036a410d6a200341e0026a410d6a290000370000200320032f01fc023b019c03200320032903e00237038003200341a0036a41186a200341a0026a41186a290300370300200341a0036a41106a200341a0026a41106a290300370300200341a0036a41086a200341a0026a41086a290300370300200320032903a0023703a003200341c0036a41186a200341c0026a41186a290300370300200341c0036a41106a200341c0026a41106a290300370300200341c0036a41086a200341c0026a41086a290300370300200320032903c0023703c003411510122201450d352001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d36200120032903a0033700152001412d6a200341b8036a290300370000200141256a200341a0036a41106a2903003700002001411d6a200341a0036a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d0f200341e0036a200341a0036a10990120032d00c0044101470d1041e4bbc00021014115210220090d5d0c5e0b419db9c00021054114210820090d030c6d0b4101210d4100210241000d630b410021054108210e200c0d630c640b41b5bcc0002105411f21082009450d6a0b200a101f0c690b411f10122202450d31200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d32200220032f01a0033b001f2002200836002620022005360022200220032903e80437002a200241216a200341a2036a22092d00003a0000200241326a200341e8046a41086a290300370000200241376a200341f5046a220a290000370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d0e200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d0c2003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d372002410f4d0d3720034190056a290300211020032903880521110c0d0b41dabdc0002109411b210820012d00004104460d650c660b410a20054b0d5a0b2003200536028805200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c4d0b41babdc00021090b4120210820012d00004104460d610c620b420a21110b02402011200756201020065620102006511b450d0041d6bac00021090c550b200341fb046a200341a0036a41086a290300370000200341e8046a41186a200341a0036a410d6a290000370000200320083600ef04200320093600eb04200320032f01a0023b01e804200320032903a0033700f3042003200341a2026a2d00003a00ea0420034190066a41186a200341c0036a41186a220229030037030020034190066a41106a200341c0036a41106a220529030037030020034190066a41086a200341c0036a41086a2204290300370300200320032903c0033703900620034188056a41186a200229030037030020034188056a41106a200529030037030020034188056a41086a2004290300370300200320032903c00337038805411510122202450d2e2002410d6a4100290095bb40370000200241086a4100290090bb4037000020024100290088bb4037000020024115413510142202450d2f20022003290388053700152002412d6a200341a0056a290300370000200241256a20034188056a41106a2903003700002002411d6a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1000200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a4110100a21052002101f2005450d0441bcbbc00021090c540b41142005490d550b2003200536028805200341b0066a41086a22024200370300200342003703b00641f1bfc000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c470b41d0bbc00021014114210220090d4d0c4e0b2003419b056a20034188036a290300370000200341a0056a2003418d036a2900003700002003200836008f052003200536008b05200320032f019c033b01880520032003290380033700930520032003419e036a2d00003a008a0520034188056a200341e0036a41206a4120108002450d0441f9bbc0002101411a21020c4b0b412210122202450d2c200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d2d200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a29030037000020034188056a200241c200103c20034188056a41106a290300211220034188056a41186a290300211020034188056a41206a2903002111200329039005211320032903880521142002101f200341e8046a200720104200201442015122021b2214200720142007542011420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d2206107a450d04200341e8046a201520061066450d07419dbbc0002109411f210820012d00004104460d5a0c5b0b4200211042e40021110b2011200756201020065620102006511b450d0041ffb8c0002109411e210820012d00004104460d580c590b200341f3036a200341e8046a41086a290300370000200341e0036a41186a200a290000370000200320083600e703200320053600e303200320032f01a0033b01e003200320032903e8043700eb03200320092d00003a00e203412210122202450d24200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d25200220032903e0033700222002413a6a200341e0036a41186a290300370000200241326a200341e0036a41106a2903003700002002412a6a200341e8036a29030037000020034188056a200241c200103c20034188056a41186a290300211220034188056a41206a290300211320034188056a41106a2903002110200329039005211120032903880521142002101f41d0b9c0002109200341e0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22041b22117d221520062010200620041b22167d2007201154ad7d2206107a450d0241f2b9c0002109200341e0036a2015200610660d02411f10122204450d2b200441176a41002900a4b140370000200441106a410029009db140370000200441086a4100290095b1403700002004410029008db1403700002004411f413f10142204450d2c200420032903e00337001f200441376a200341e0036a41186a2903003700002004412f6a200341e0036a41106a290300370000200441276a200341e0036a41086a29030037000020034188056a2004413f103c20034188056a41106a290300210720034188056a41206a290300211720034188056a41186a29030021182003290390052119200329038805211a2004101f412210122204450d2d200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d2e200420032903e0033700222004413a6a200341f8036a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000200341b0066a41086a22094200370300200342003703b006200441c200200341b0066a1000200341c0066a41086a2009290300370300200320032903b0063703c006200341c0066a4110100a21092004101f02402009450d00412210122204450d34200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d35200420032903e0033700222004413a6a200341e0036a41186a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000411010122209450d362009201420117d3700002009201020167d2014201154ad7d37000820094110412010142209450d3720092012420020021b370010200941186a2013420020021b370000200341b0066a41086a22024200370300200342003703b006200441c200200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a41102009412010042009101f2004101f0b411f10122202450d2f200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d30200220032903e00337001f200241376a200341e0036a41186a22092903003700002002412f6a200341e0036a41106a290300370000200241276a200341e0036a41086a290300370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d40200341b0066a41086a22024200370300200342003703b00641e6b3c000411a200341b0066a100020034180036a41086a2002290300370300200320032903b006370380034100210420034180036a411041e4a4c100410041001001417f460d072003421037029406200320034180036a3602900620034188056a20034190066a10402003280288052202450d382003200329028c0522103702940620032002360290062010422088a7210a2010a721040c080b411f10122201450d30200141176a41002900a4b140370000200141106a410029009db140370000200141086a4100290095b1403700002001410029008db1403700002001411f413f10142201450d31200120032903c00337001f200141376a200341d8036a2903003700002001412f6a200341c0036a41106a290300370000200141276a200341c0036a41086a290300370000200341b0066a41086a22024200370300200342003703b0062001413f200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d02200b450d04200b101222010d05200b41011015000b41d0b9c00021090b4122210820012d00004104460d540c550b4193bcc00021014122210220090d440c450b200341b0066a41086a22054200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2005290300370300200320032903b006370380034100210420034180036a411041e4a4c100410041001001417f460d04200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220a450d342003200329028c0522073702e4032003200a3602e0032007422088a721052007a721040c050b410121010b2001200a200b10fe01210f200341e8046a41186a2201200341c0036a41186a290300370300200341e8046a41106a2204200341c0036a41106a290300370300200341e8046a41086a220e200341c0036a41086a290300370300200320032903c0033703e804412010122202450d30200220032903e804370000200241186a2001290300370000200241106a2004290300370000200241086a200e29030037000002400240200b450d00200b41206a2201200b490d50200141c000200141c0004b1b22044100480d50200241202004101422020d01200441011015000b41202104200b41206a21010b200241206a200f200b10fe011a20034188056a41186a220e420037030020034188056a41106a220c420037030020034188056a41086a220d420037030020034200370388052002200120034188056a100220034190066a41186a200e29030037030020034190066a41106a200c29030037030020034190066a41086a200d290300370300200320032903880537039006418383c10021010240200341a0046a20034190066a41201080020d00200341c1046a20032903e804370000200341c0046a41013a0000200341c9046a200341e8046a41086a290300370000200341d1046a200341e8046a41106a290300370000200341d9046a200341e8046a41186a290300370000410021010b02402004450d002002101f0b02402001450d00410c2102200b450d41200f101f20090d420c430b20034190066a41186a200341a0036a41186a29030037030020034190066a41106a200341a0036a41106a29030037030020034190066a41086a200341a0036a41086a290300370300200320032903a0033703900620034188056a200341e0036a41880110fe011a411510122201450d332001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d3420012003290390063700152001412d6a200341a8066a290300370000200141256a200341a0066a2903003700002001411d6a20034198066a290300370000200341353602ec04200320013602e80420034188056a200341e8046a109a012001101f0240200b450d00200f101f0b4100210102402009450d00200a101f0b41000d430c440b20034100360298062003420137039006410121024100210a0b20034188056a41186a220f200341e0036a41186a29030037030020034188056a41106a220e200341e0036a41106a29030037030020034188056a41086a220c200341e0036a41086a290300370300200320032903e003370388050240200a2004470d00200441016a220b2004490d4d2004410174220d200b200b200d491b220bad4205862210422088a70d4d2010a7220d4100480d4d2004450d0320022004410574200d10142202450d040c360b2004210b0c360b200341003602e803200342013703e0034101210a410021050b20034188056a41186a220f20034190066a41186a29030037030020034188056a41106a220e20034190066a41106a29030037030020034188056a41086a220c20034190066a41086a29030037030020032003290390063703880520042005470d32200541016a22042005490d4a2005410174220b20042004200b491b2204ad4205862207422088a70d4a2007a7220b4100480d4a2005450d02200a2005410574200b1014220a450d030c310b200d101222020d320b200d41011015000b200b1012220a0d2e0b200b41011015000b41fcf8c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41d4c7c2001024000b41de86c00041331023000b41d4c7c2001024000b41de86c00041331023000b41d4c7c2001024000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411541011015000b413541011015000b41de86c00041331023000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412041011015000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b200320043602e4032003200a3602e0030b200a20054105746a220b200329038805370000200b41186a200f290300370000200b41106a200e290300370000200b41086a200c290300370000200341e0036a41086a200541016a3602002003411b36028c0520034180b4c00036028805200341e0036a20034188056a106202402004450d00200a101f0b200341e0036a41186a20034190066a41186a2205290300370300200341e0036a41106a20034190066a41106a2204290300370300200341e0036a41086a20034190066a41086a220a29030037030020032003290390063703e00320034188056a41186a2016370300200341c0056a200341e8046a41186a290300370300200341b8056a200341e8046a41106a290300370300200341b0056a200341e8046a41086a290300370300200341d0056a200a290300370300200341d8056a2004290300370300200341e0056a2005290300370300200320113703980520032006370390052003201537038805200341003a00e805200320032903e8043703a80520032003290390063703c80502400240024002400240024002400240411510122205450d002005410d6a4100290095bb40370000200541086a4100290090bb4037000020054100290088bb4037000020054115413510142205450d01200520032903e0033700152005412d6a200341e0036a41186a290300370000200541256a200341e0036a41106a2903003700002005411d6a200341e0036a41086a290300370000200341353602c402200320053602c00220034188056a200341c0026a109a012005101f412210122205450d02200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d03200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042005101f02402004450d00412210122205450d05200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d06200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000411010122204450d0720042013420020021b37000020042012420020021b37000820044110412010142202450d082002201420117d370010200241186a201020167d2014201154ad7d370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a100020034180036a41086a2004290300370300200320032903b0063703800320034180036a41102002412010042002101f2005101f0b20034188056a41106a200836020020034194056a200936020020034188056a41096a20032f01a0023b000020034193056a200341a2026a2d00003a00002003419c056a20032903a003370200200341a9056a200341ad036a290000370000200341b1056a20032903c003370000200341c1056a200341c0036a41106a290300370000200341c9056a200341c0036a41186a290300370000200341083a00880520034188056a41086a41093a0000200341a4056a200341a0036a41086a290300370200200341b9056a200341c0036a41086a29030037000020034188056a10270c0b0b411541011015000b413541011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b2003200b3602940620032002360290060b200241206a2002200a41057410ff011a2002200329038805370000200241186a200f290300370000200241106a200e290300370000200241086a200c29030037000020034190066a41086a200a41016a3602002003411a36028c05200341e6b3c0003602880520034190066a20034188056a1062200b450d002002101f0b20034188056a41186a200929030037030020034188056a41106a200341e0036a41106a29030037030020034188056a41086a200341e0036a41086a290300370300200320032903e00337038805411f10122202450d02200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d03200220032903880537001f200241376a200341a0056a2903003700002002412f6a20034188056a41106a290300370000200241276a20034190056a290300370000411010122204450d04200420194200201a42015122091b221020157c221437000020042007420020091b20067c2014201054ad7c37000820044110412010142204450d0520042018420020091b220620117c2207370010200441186a2017420020091b20167c2007200654ad7c370000200341b0066a41086a22094200370300200342003703b0062002413f200341b0066a100020034180036a41086a2009290300370300200320032903b0063703800320034180036a41102004412010042004101f2002101f20034188056a41086a41083a000020034188056a41106a200836020020034194056a200536020020034191056a20032f01a0033b000020034193056a200341a2036a2d00003a00002003419c056a20032903e804370200200341a4056a200341e8046a41086a290300370200200341a9056a200341f5046a290000370000200341083a00880520034188056a10270b410021090b20012d00004104460d140c150b411f41011015000b413f41011015000b411041011015000b412041011015000b2009450d010b200a101f0b2001450d010b20022108200121050c0e0b20034191056a20032f01fc023b000020034188056a41106a200836020020034194056a20053602002003419c056a20032903e002370200200341b1056a20032903a002370000200341083a00880520034188056a41086a410a3a000020034193056a200341fe026a2d00003a0000200341a9056a200341ed026a290000370000200341c1056a200341a0026a41106a290300370000200341c9056a200341a0026a41186a290300370000200341a4056a200341e0026a41086a290300370200200341b9056a200341a0026a41086a290300370000200341e9056a200341c0026a41186a290300370000200341e1056a200341c0026a41106a290300370000200341d9056a200341c0026a41086a290300370000200341d1056a20032903c00237000020034188056a1027410021050c0d0b4114210820012d00004104460d0a0c0b0b41a5bec00021090c010b41f5bdc00021090b4130210820012d00004104460d070c080b20024105742109410021044108210e4100210541002108200d2102034020034190066a41186a200241186a220a29000037030020034190066a41106a200241106a220b29000037030020034190066a41086a200241086a220f2900003703002003200229000037039006200341e0036a41186a200a290000370300200341e0036a41106a200b290000370300200341e0036a41086a200f290000370300200320022900003703e00320034188056a200341e0036a109901024020082005470d00200541016a220a2005490d062005410174220b200a200a200b491b220aad4288017e2206422088a70d062006a7220b4100480d06024002402005450d00200e20054188016c200b1014220e0d010c090b200b1012220e450d080b200a21050b200241206a2102200e20046a20034188056a41880110fe011a20044188016a2104200841016a2108200941606a22090d000b200341f0046a20083602002003200e3602e804200320053602ec04200c450d010b200d101f0b200342003702e403200341e893c1003602e003200341e8046a200341e0036a4100109b0120032802e803210a20032802e00321020240024020032802e4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341a4056a20022f0106360200200341a0056a41003602002003419c056a20023602002003200a3602a805200341003602980520034200370390052003200836028c05200341003602880520034188056a109c012005450d00200e101f0b410021090b4124210820012d00004104460d020c030b1010000b200b41081015000b200141c8006a280200450d00200141c4006a280200101f0b200921050b2000200836020420002005360200200341d0066a24000bb20504027f017e017f037e230041206b22022400024002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1000200241086a2005290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012205417f460d022005410f4d0d02200241186a2903002106200229031021042003101f411810122203450d010c050b420021062003101f4118101222030d040b411841011015000b41de86c00041331023000b411441011015000b413441011015000b200341106a41002900d19540370000200341086a41002900c99540370000200341002900c19540370000024020034118413810142203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b2003101f2000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41de86c00041331023000b413841011015000be30301047f230041d0006b2202240002400240411210122203450d00200341106a41002f0091e5403b0000200341086a4100290089e54037000020034100290081e54037000020034112413210142203450d01200320012900003700122003412a6a200141186a290000370000200341226a200141106a2900003700002003411a6a200141086a290000370000200241306a41086a220142003703002002420037033020034132200241306a1000200241206a41086a200129030037030020022002290330370320024002400240200241206a411041e4a4c100410041001001417f460d00200241306a41186a4200370300200241306a41106a4200370300200241386a420037030020024200370330200241206a4110200241306a4120410010012201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b2003101f200241d0006a24000f0b41de86c00041331023000b411241011015000b413241011015000bd20301087f230041306b2201240041082102200141206a41086a2203420037030020014200370320419596c1004115200141206a1000200141086a200329030037030020012001290320370300410021040240024002402001411041e4a4c100410041001001417f460d002001421037021420012001360210200141206a200141106a105f20012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d02200820004120108002450d02200341dc006a22082000460d02200820004120108002450d022003419c016a22082000460d02200820004120108002450d02200341dc016a22082000460d0220034180026a21032008200041201080020d000c020b0b024020032006460d000340410121072003411c6a22032000460d02200320004120108002450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d002000280200101f0b200041c0006a2100200341406a22030d000b0b02402005450d002002101f0b200141306a240020070f0b41de86c00041331023000bb00b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510122206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081015000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001001220e200e417f461b220e4120200e412049220e1b20052802006a220f360200200e0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1001220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d2903002113200229035021142002200110282002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10122216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081015000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a221a360200200f0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1001220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101422160d010c090b201a10122216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101422060d010c080b200510122206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d002016101f0b200041003602000240200b450d00200641106a210503400240200541046a280200450d002005280200101f0b200541c0006a2105200a41406a220a0d000b0b0240200c450d002006101f0b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081015000b200541081015000b100f000b8c1105087f027e067f017e017f230041b0016b220224000240024002400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1000200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a411041e4a4c100410041001001417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100122032003417f461b22034104200341044922031b20022802286a220136022820030d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22094100200241106a411020024190016a41202001100122032003417f461b2203412020034120491b20092802006a22013602002003411f4d0d01200241f0006a41186a22032006290300370300200241f0006a41106a22092007290300370300200241f0006a41086a220620082903003703002002200229039001370370200241d0006a41186a2003290300370300200241d0006a41106a2009290300370300200241d0006a41086a200629030037030020022002290370370350410121030c020b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b410021030b20024190016a41186a2209200241d0006a41186a29030037030020024190016a41106a2206200241d0006a41106a29030037030020024190016a41086a2207200241d0006a41086a29030037030020022002290350370390012003450d03200241306a41186a2009290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903900137033020024200370398012002420037039001200241206a41086a22094100200241106a411020024190016a41102001100122032003417f461b2203411020034110491b20092802006a3602002003410f4d0d0320024198016a290300210a200229039001210b200241086a200241206a10282002280208450d03200228020c2203417f4c0d04024002402003450d0020031076220c450d09200241286a22012003410020022802202002280224200c20032001280200100122092009417f461b2209200920034b1b220920012802006a36020020092003460d010c040b4101210c2002280220200228022441014100200241286a28020010011a41002003470d030b2002200241206a10282002280200450d0220022802042201417f4c0d04024002402001450d0020011076220d450d0a200241286a220920092802002207200141002002280220220920022802242206200d20012007100122072007417f461b2207200720014b1b22086a220736020020082001460d010c030b4101210d200228022022092002280224220641014100200241286a280200220710011a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002009200620024190016a41202007100122082008417f461b2208412020084120491b20076a22073602002008411f4d0d01200241f0006a41186a2208200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2008290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002009200620024190016a41082007100122082008417f461b2208410820084108491b20076a2207360200200841074d0d012002290390012112200241003a009001200241286a20072009200620024190016a41012007100141016a41014b22096a3602002009450d0120022d009001220641064f0d0120024190016a41186a2207200241306a41186a29030037030020024190016a41106a2208200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22092d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2008290300370200200041cc006a200729030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200920132d00003a0000200220022f01303b0150200020063a0074200020022f01503b0075200041f7006a20092d00003a00000b2004101f200241b0016a24000f0b2001450d00200d101f0b2003450d00200c101f0b41de86c00041331023000b100f000b411341011015000b412641011015000b200341011015000b200141011015000bcb0201027f230041306b22022400024002400240411510122203450d002003410d6a41002900eec340370000200341086a41002900e9c340370000200341002900e1c34037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241206a41086a220142003703002002420037032020034135200241206a1000200241086a200129030037030020022002290320370300024002402002411041e4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411541011015000b413541011015000b41de86c00041331023000bc10301077f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004105742104200241106a41086a2802002100200228021021052002280214210603400240024002400240200620006b41204f0d00200041206a22072000490d0720064101742208200720072008491b22084100480d072006450d01200520062008101422050d020c080b200041206a21070c020b200810122205450d060b200821060b200520006a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020072100200341206a2103200441606a22040d000b200241186a200736020020022006360214200220053602100c010b200241186a280200210720022802142106200228021021050b2001280204210320012802002100200241106a41086a220442003703002002420037031020002003200241106a1000200241086a2004290300370300200220022903103703002002411020052007100402402006450d002005101f0b200241206a24000f0b1010000b200841011015000be70504027f017e017f047e230041206b22032400024002400240411810122204450d00200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021052004101f41142106411410122204450d010c050b420021072004101f411421064114101222040d040b200641011015000b41de86c00041331023000b411841011015000b413841011015000b200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad9540370000024020042006413410142204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101f20002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c106e2000200520017d200720027d2005200154ad7d106f200341206a24000f0b41de86c00041331023000b413441011015000be110020b7f037e230041d0026b22022400200241b0026a41086a22034200370300200242003703b00241ccf3c000411b200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a00241002104024002400240024002400240200241a0026a411041e4a4c100410041001001417f460d002002421037023c2002200241a0026a360238200241a8016a200241386a106820022802a8012205450d02200241b0016a280200210420022802ac0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041012220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d012005101f4100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031014220b0d010c020b20031012220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041015000b02402006450d002005101f0b200a2004470d050c040b4100210c41002004460d030c040b1010000b41de86c00041331023000b410441041015000b0240200c450d00200b101f0b200241d0026a240041d6f8c0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241a8016a20001060200241d0006a200241f4016a290200370300200241386a41106a200241ec016a290200370300200241386a41086a200241e4016a290200370300200220022902dc013703384200210d200241b0026a41086a22034200370300200242003703b00241c0f8c0004116200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a002200241a0026a411041e4a4c100410041001001417f460d02200242003703c802200242003703c002200241a0026a4110200241c0026a4110410010012203417f460d082003410f4d0d08200241c8026a290300210d20022903c002210e0c030b200241a8016a20001060200241386a41186a20024194026a290200370300200241386a41106a2002418c026a290200370300200241386a41086a20024184026a290200370300200220022902fc01370338411810122203450d0841002107200341106a41002900b1f340370000200341086a41002900a9f340370000200341002900a1f34037000020034118413810142203450d0920032002290338370018200341306a200241d0006a290300370000200341286a200241386a41106a290300370000200341206a200241386a41086a290300370000200241b0026a41086a22094200370300200242003703b00220034138200241b0026a1000200241c0026a41086a2009290300370300200220022903b0023703c002200241c0026a411041e4a4c100410041001001417f460d03200242103702b4022002200241c0026a3602b002200241186a200241b0026a10282002280218450d0c200228021c2208417f4c0d0a2008450d04200810762207450d0d200241b8026a2209200928020022092008410020022802b00220022802b402200720082009100122092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241a8016a20001060200241206a200241dc016a20022903a801200241b0016a29030010650240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0520022802d001101f0c050b420a210e0b2002200241386a200e200d1065200241386a20022903a801220f200e7d200241b0016a290300200d7d200f200e54ad7d10630240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0320022802d001101f0c030b0c010b4101210720022802b00220022802b40241014100200241b8026a28020010011a41002008470d060b200241fc016a21092003101f200241dc016a20022903a801200241a8016a41086a290300106341fc89c00041052007410120071b22042008410020071b2203100402402003450d002004101f0b200241386a41086a41053a0000200241c1006a2009290000370000200241386a412c6a2000360200200241c9006a200941086a290000370000200241d1006a200941106a290000370000200241d9006a200941186a290000370000200241073a0038200241386a10270240200241c8016a280200450d0020022802c401101f0b200241a8016a412c6a280200450d0020022802d001101f0b2002200a3602b0012002200c3602ac012002200b3602a8012002411b36023c200241ccf3c000360238200241a8016a200241386a10690240200c450d00200b101f0b200241a8016a20001060200220013a009c0202400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142203450d01200320003600132002411736023c20022003360238200241a8016a200241386a10672003101f0240200241c8016a280200450d0020022802c401101f0b0240200241d4016a280200450d0020022802d001101f0b200241b4016a2000360200200241b1016a20013a0000200241b0016a41023a0000200241073a00a801200241a8016a1027200241d0026a240041000f0b411341011015000b412641011015000b41de86c00041331023000b411841011015000b413841011015000b100f000b2008450d002007101f0b41de86c00041331023000b200841011015000bf10504027f017e017f067e230041306b2204240002400240411810122205450d00200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054138200441206a1000200441106a41086a2007290300370300200420042903203703100240024002400240200441106a411041e4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012207417f460d022007410f4d0d02200441286a2903002108200429032021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106f200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a20012903003703002004200429032037031002400240200441106a411041e4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012201417f460d032001410f4d0d03200441286a290300210c200429032021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37030020042006370308200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a200129030037030020042004290320370310200441106a41102004411010040b20002002200a7d370308200041106a2003200b7d2002200a54ad7d37030020002009200254200820035420051bad370300200441306a24000f0b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000bec0506027f017e017f027e017f027e230041206b2203240002400240024002400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021050c010b420021070b2004101f419c9bc00021040240024020052001542206200720025420072002511b0d00200010702204450d010b200341206a240020040f0b411810122204450d04200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341106a41086a220942003703002003420037031020044138200341106a1000200341086a200929030037030020032003290310370300024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012209417f460d052009410f4d0d05200341186a290300210a200329031021080c010b4200210a0b2004101f2000200820017c220b200a20027c200b200854ad7c106f2000200520017d200720027d2006ad7d106e200341206a240041000f0b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411841011015000b413841011015000bed0803037f027e057f230041206b2202240020024100360218200242013703102000280218210302400240024002400240024002400240410410122204450d0020024284808080c000370214200220043602102004200336000020044104412410142204450d01200242a4808080c004370214200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436021041000d05200041086a2903002105200029030021062004412441c80010142204450d02200420063700242004412c6a2005370000200241186a22034134360200200241c80036021420022004360210200028021c21072002200041246a28020022043602002002200241106a101302400240024020022802142208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802102008200910142208450d020c060b200228021021080c060b2009101222080d040b200941011015000b410441011015000b412441011015000b41c80041011015000b20022009360214200220083602100b200241186a2209200320046a360200200820036a2007200410fe011a2000280228210a2002200041306a28020022073602002002200241106a10130240024002400240024020022802142203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802102003200810142204450d020c030b200228021021040c030b2008101222040d010b200841011015000b2002200836021420022004360210200821030b200241106a41086a220b200920076a2208360200200420096a200a200710fe011a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710142204450d020c030b200321070c030b2007101222040d010b200741011015000b20022007360214200220043602100b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22092003490d0320074101742208200920092008491b22084100480d032007450d0120042007200810142204450d020c040b200841286a21090c040b2008101222040d020b200841011015000b1010000b20022008360214200220043602100b200241106a41086a22082009360200200420036a200537000020002d0074200241106a10582008280200210420022802142103200228021021002001280204210720012802002109200842003703002002420037031020092007200241106a1000200241086a2008290300370300200220022903103703002002411020002004100402402003450d002000101f0b200241206a24000bc40303027f017e097f230041106b2202240020022001102802400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041015000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100122052005417f461b22054104200541044922051b20072802006a36020020050d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101422060d010c060b200d10122206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d002006101f0b200241106a24000f0b1010000b200d41041015000b920301097f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004102742104200241186a22052802002100200228021421060340200328020021070240024002400240200620006b41044f0d00200041046a22082000490d0720064101742209200820082009491b220a4100480d072006450d0120022802102006200a101422090d020c080b200041046a2108200228021021090c020b200a10122209450d060b2002200a36021420022009360210200a21060b200341046a210320052008360200200920006a2007360000200821002004417c6a22040d000c020b0b200241186a280200210820022802142106200228021021090b2001280204210020012802002103200241106a41086a220442003703002002420037031020032000200241106a1000200241086a2004290300370300200220022903103703002002411020092008100402402006450d002009101f0b200241206a24000f0b1010000b200a41011015000ba80e03057f017e037f230041b0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910122204450d00200441186a41002d0096f9403a0000200441106a410029008ef940370000200441086a4100290086f940370000200441002900fef84037000020044119413210142204450d0120042001360019200341a0016a41086a22054200370300200342003703a0012004411d200341a0016a100020034190016a41086a2005290300370300200320032903a0013703900120034190016a4110100a21052004101f02400240024002402005450d0020034190016a2001108101200341206a41186a200341186a290300370300200341206a41106a200341106a290300370300200341206a41086a200341086a2903003703002003200329030037032020032802940122062003280298012204470d01200441016a22072004490d0620044101742205200720072005491b2206ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910142205450d030c0a0b412110122204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910122205450d07200541186a41002d0096f9403a0000200541106a410029008ef940370000200541086a4100290086f940370000200541002900fef84037000020054119413210142205450d0820052001360019200341003602282003420137032020044101200341206a103b200328022421062003280228210920032802202107200341a0016a41086a220a4200370300200342003703a0012005411d200341a0016a1000200341206a41086a200a290300370300200320032903a001370320200341206a411020072009100402402006450d002007101f0b2005101f2004101f0c0b0b200441016a210720032802900121050c090b2009101222050d070b200941011015000b411941011015000b413241011015000b1010000b412141011015000b411941011015000b413241011015000b200320063602940120032005360290010b20034190016a41086a20073602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910122204450d01200441186a41002d0096f9403a0000200441106a410029008ef940370000200441086a4100290086f940370000200441002900fef84037000020044119413210142204450d0220042001360019200341003602282003420137032020052007200341206a103b200328022421092003280228210a20032802202107200341a0016a41086a220b4200370300200342003703a0012004411d200341a0016a1000200341206a41086a200b290300370300200320032903a001370320200341206a41102007200a100402402009450d002007101f0b2004101f2006450d002005101f0b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210122204450d00200441206a41002f00c8f7403b0000200441186a41002900c0f740370000200441106a41002900b8f740370000200441086a41002900b0f740370000200441002900a8f7403700002004412241c40010142204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341286a290300370000200441c40041880110142204450d0220042001360042024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110122205450d09200541033a00000c030b410110122205450d09200541023a00000c020b410110122205450d09200541013a00000c010b410110122205450d09200541003a00000b200341a0016a41086a22074200370300200342003703a001200441c600200341a0016a100020034190016a41086a2007290300370300200320032903a0013703900120034190016a41102005410110042005101f2004101f200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a1027200341b0016a24000f0b412241011015000b41c40041011015000b41880141011015000b411941011015000b413241011015000b410141011015000b410141011015000b410141011015000b410141011015000bcd0a02057f037e230041306b22022400200241106a41086a220342003703002002420037031041cccfc0004112200241106a1000200241206a41086a20032903003703002002200229031037032002400240024002400240024002400240200241206a411041e4a4c100410041001001417f460d00200242103702042002200241206a360200200241106a2002104020022802102203450d02200228021421040240200320014105746a2205450d00200241186a280200220620014d0d0020002005460d02200520004120108002450d020b02402004450d002003101f0b200241306a240041c2d1c0000f0b200241306a240041c2d1c0000f0b20032006417f6a22064105746a220529000021072005290008210820052900102109200320014105746a220141186a200541186a29000037000020012009370010200120083700082001200737000020022006360228200220043602242002200336022020024112360214200241cccfc000360210200241206a200241106a106202402004450d002003101f0b411c10122201450d01200141186a4100280093d040360000200141106a410029008bd040370000200141086a4100290083d040370000200141002900fbcf403700002001411c413c10142201450d022001200029000037001c200141346a200041186a2900003700002001412c6a200041106a290000370000200141246a200041086a290000370000200241106a41086a22034200370300200242003703102001413c200241106a1000200241206a41086a200329030037030020022002290310370320200241206a411010052001101f411210122201450d03200141106a41002f00ecce403b0000200141086a41002900e4ce40370000200141002900dcce4037000020014112413210142201450d04200120002900003700122001412a6a200041186a290000370000200141226a200041106a2900003700002001411a6a200041086a290000370000200241106a41086a220342003703002002420037031020014132200241106a1000200241206a41086a2204200329030037030020022002290310370320200241206a411010052001101f200342003703002002420037031041dd81c000410d200241106a1000200420032903003703002002200229031037032042002107024002400240200241206a411041e4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d01200229031021070b200241106a41086a220142003703002002420037031041abd1c0004117200241106a1000200241206a41086a20012903003703002002200229031037032002400240200241206a411041e4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d0320022903102108410f2103410f10122201450d010c090b42e8072108410f2103410f101222010d080b200341011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b200141076a41002900d9c340370000200141002900d2c340370000024020012003412f10142201450d002001200029000037000f200141276a200041186a2900003700002001411f6a200041106a290000370000200141176a200041086a2900003700002002200820077c370300200241106a41086a22004200370300200242003703102001412f200241106a1000200241206a41086a200029030037030020022002290310370320200241206a41102002410810042001101f200241306a240041000f0b412f41011015000bb20703067f027e027f230041106b2203240020032001360208200341086a200210130240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c090b200228020021070c020b200110122207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c0a0b200228020021070c020b200110122207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101302402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c090b200228020021080c020b200710122208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c0a0b200228020021080c020b200710122208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200741011015000b200141011015000b200141011015000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610142205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010142205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101422050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101422080d0a0c110b2006101222050d130b200641011015000b200128020021050c050b200128020021080c070b2000101222050d0d0b200041011015000b200010122205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510122208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101422060d020c060b200128020021060c020b200910122206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011015000b41c4bdc2001024000b20022002360240200241e894c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4106360200200241106a41146a4103360200200241e4a4c1003602582002420137024c200241acbdc2003602482002410636022c20024203370214200241ecc5c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41dcbdc200103a000b200041011015000b200541011015000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000b911107017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441142107411410122205450d010c030b42002106411421074114101222050d020b200741011015000b41de86c00041331023000b200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000002400240024002400240024002400240024002400240024002400240024020052007413410142205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0d411410122205450d04200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411410122205450d06200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d07200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f410f10122205450d08200541076a41002900d9c340370000200541002900d2c3403700002005410f412f10142205450d092005200029000037000f200541276a200041186a2900003700002005411f6a200041106a290000370000200541176a200041086a29000037000020034180016a41086a2207420037030020034200370380012005412f20034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411810122205450d0a200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0b20052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0f0c0d0b410121072005101f4100410171450d0c0c0e0b413441011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b411441011015000b413441011015000b410f41011015000b412f41011015000b411841011015000b413841011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000bcc0f07017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441182107411810122205450d010c030b42002106411821074118101222050d020b200741011015000b41de86c00041331023000b200541106a41002900d19540370000200541086a41002900c99540370000200541002900c19540370000024002400240024002400240024002400240024002400240024020052007413810142205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0b411810122205450d04200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0520052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411810122205450d06200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0720052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411410122205450d08200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d09200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0d0c0b0b410121072005101f4100410171450d0a0c0c0b413841011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b411441011015000b413441011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000baf0304027f017e017f017e230041206b2201240002400240410f10122202450d00200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d012002200029000037000f200241276a200041186a2900003700002002411f6a200041106a290000370000200241176a200041086a29000037000042002103200141106a41086a22004200370300200142003703102002412f200141106a1000200141086a2204200029030037030020012001290310370300420021050240024002402001411041e4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021050b2002101f200042003703002001420037031041dd81c000410d200141106a1000200420002903003703002001200129031037030002402001411041e4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d02200129031021030b200141206a240041b4c3c000410020052003561b0f0b41de86c00041331023000b41de86c00041331023000b410f41011015000b412f41011015000bb40604027f017e017f067e230041d0006b2204240002400240411410122205450d00200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441c0006a41086a220742003703002004420037034020054134200441c0006a1000200441206a41086a2007290300370300200420042903403703200240024002400240200441206a411041e4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d022007410f4d0d02200441c8006a2903002108200429034021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106e200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a20072903003703002004200429034037032002400240200441206a411041e4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d032007410f4d0d03200441c8006a290300210c200429034021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37033020042006370338200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a200729030037030020042004290340370320200441206a4110200441306a411010040b02400240200920025a200820035a20051b0d00200441086a20012002200a7d2003200b7d2002200a54ad7d1065200441186a290300210820042903102109200429030821030c010b420021030b2000200937030820002003370300200041106a2008370300200441d0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bda0201027f230041306b22022400024002400240411c10122203450d00200341186a41002800e7d140360000200341106a41002900dfd140370000200341086a41002900d7d140370000200341002900cfd1403700002003411c413c10142203450d012003200129000037001c200341346a200141186a2900003700002003412c6a200141106a290000370000200341246a200141086a290000370000200241206a41086a22014200370300200242003703202003413c200241206a1000200241086a200129030037030020022002290320370300024002402002411041e4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411c41011015000b413c41011015000b41de86c00041331023000bc90201027f024020002802004102470d0002400240024002400240024002400240200028020422012d0000220241094b0d0020020e0a07010707070203040506070b200141046a2802004102490d062001410c6a280200450d06200141086a280200101f0c060b200141086a10440c050b200141086a2d0000410c490d04200141106a280200450d042001410c6a280200101f0c040b200141046a10730c030b200141086a2d00004102470d020240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d02200141246a280200101f0c020b200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b200141086a2d00004102470d00200141106a280200450d002001410c6a280200101f0b200041046a280200101f0b0bd60403027f017e0e7f230041d0006b22022400200241086a2001101702400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110fe011a200a200520116b3602002001200f20116a36020020100d02200d41016a2105200241106a41186a22112007290300370300200241106a41106a220f2008290300370300200241106a41086a22102009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101422060d010c060b201210122206450d050b2006200c6a220d2002290310370000200d41186a2011290300370000200d41106a200f290300370000200d41086a2010290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d002006101f0b200241d0006a24000f0b1010000b201241011015000bce0603067f037e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510fe011a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d002022034103712204450d00024020044101460d0020044102470d02200241003a001e200241003b011c2002411c6a200520064103200641034922071b220410fe011a200141046a200620046b3602002001200520046a36020020070d0320022f011c20022d001e41107472410874200372410276ad21080c080b200241003a0020200241206a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21080c070b2003410276ad21080c060b0240024020034102762204450d00024020044104460d002004410c470d024200210a2002420037032820024200370320200241206a200520064110200641104922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d04200241286a2903002109200229032021084201210a0c090b4200210a20024200370320200241206a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d03200229032021080c070b20024100360220200241206a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d01200235022021080c060b200441046a220b41104b0d00200141046a210c200241106a210d4200210842002109410021030340200241003a0020200241206a20052006410047220410fe011a20062004490d04200c200620046b22073602002001200520046a22053602002006450d01200241086a20023100204200200341037441f80071108302200d2903002009842109200229030820088421084201210a20072106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004101a000b20042006101a000b20042006101a000b420021094201210a0b200020083703082000200a370300200041106a2009370300200241306a24000b0700200010f3010bb10101037f024002400240024002400240200041046a280200200041086a2802002201470d00200141016a22022001490d0320014101742203200220022003491b22034100480d032001450d0120002802002001200310142202450d020c040b200028020021020c040b2003101222020d020b200341011015000b1010000b20002002360200200041046a2003360200200041086a28020021010b200041086a200141016a360200200220016a41023a00000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410142203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410142203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101422030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101422030d0a0c0d0b2004101222030d0e0b200441011015000b200128020021030c050b200128020021030c070b2004101222030d0c0b200441011015000b200410122203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410122203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101422030d020c060b200128020021030c020b200010122203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011015000b200441011015000b200041011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010142203450d020c040b200128020021030c040b2000101222030d020b200041011015000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b900a02067f017e230041e0006b2202240002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0e0c0d0b200241cb006a2001410c6a280000360000200041013a00002002200141046a29000037004320002002290040370001200041086a200241c7006a2900003700002003450d020b20034101460d0c20030d09200141086a280200450d0c200141046a280200101f200241e0006a24000f0b20034103470d0920022001410c6a280200220336021c2002200141046a2802002204360218200241003a0040200241c0006a20042003410047220510fe011a20032005490d022002200320056b220636021c2002200420056a22053602182003450d09024020022d004022034101460d0020030d0a200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b220436021c2002200520036a220336021802402006450d0020022d0040450d030b410021060c060b200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b36021c2002200520036a3602182006450d0920022d00400d09200241c0006a200241186a107420022802402203450d0920022902442108200241146a41026a200241206a41026a2d00003a0000200241086a200241c0006a41086a290200370300200241106a200241c0006a41106a280200360200200220022f00203b011420022002290240370300410121060c070b41000d090c0a0b41002106200241c0006a20044120200441204922071b22056a41004100412020056b2005411f4b1b10fd011a200241c0006a2003200510fe011a2002200420056b36021c2002200320056a36021820070d03200241386a41026a200241c0006a41026a2d00003a0000200241286a200241d7006a290000370300200241306a200241c0006a411f6a2d00003a0000200220022f00403b01382002200229004f3703202002280043210320022900472108410121060c040b20052003101a000b20032006101a000b20032006101a000b0b2002413c6a41026a2205200241386a41026a2d00003a0000200241c0006a41086a2204200241206a41086a290300370300200241c0006a41106a2207200241206a41106a2d00003a0000200220022f01383b013c200220022903203703402006450d02200241146a41026a20052d00003a0000200241086a2004290300370300200241106a20072d00003a0000200220022f013c3b011420022002290340370300200241136a200241c0006a41026a2d00003a0000200220022f00403b0011410021060b200241206a41026a2205200241146a41026a2d00003a0000200241c0006a41086a2204200241086a290300370300200241c0006a41106a2207200241106a280200360200200220022f01143b012020022002290300370340200020063a0000200041086a2008370000200041046a2003360000200020022f01203b0001200041036a20052d00003a0000200041106a2002290340370000200041186a2004290300370000200041206a20072802003600000b200141086a280200450d02200141046a280200101f0c020b41a093c000411e1023000b200141086a280200450d00200141046a280200101f200241e0006a24000f0b200241e0006a24000bf20202027f027e230041206b22032400024020001070450d00200341206a240041000f0b02400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1000200341086a2000290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b2004101f200341206a2400200520015a200620025a20062002511b0f0b41de86c00041331023000b411441011015000b413441011015000bbd0504027f017e017f037e230041c0006b2203240020032000105c024002400240024002402003290300200341086a29030084500d00411410122204450d03200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341306a41086a220642003703002003420037033020044134200341306a1000200341206a41086a20062903003703002003200329033037032002400240200341206a411041e4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012206417f460d032006410f4d0d03200341386a2903002107200329033021080c010b42002108420021070b2004101f2000200820017c2209200720027c2009200854ad7c106e200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a20002903003703002003200329033037032002400240200341206a411041e4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012200417f460d042000410f4d0d04200341386a2903002108200329033021050c010b420021080b200520017c22012005542200200820027c2000ad7c220520085420052008511b0d002003200137031020032005370318200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a200029030037030020032003290330370320200341206a4110200341106a411010040b200341c0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bc30609047f017e017f017e037f017e047f017e017f23004180066b22022400200241c8026a2001107d200241d8026a280200210320022802d402210420022802d002210520022903c802210620024190056a200241dc026a41e40010fe011a024002400240024002400240024002400240024002402005450d00200241086a20024190056a41e40010fe011a2002200110172002280200450d0820022802042207ad42e0017e2208422088a70d032008a72209417f4c0d032009450d0120091012220a450d042007450d020c050b2000410036020820024180066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081015000b200241c8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241c8026a2001101620024190056a200241c8026a41f00010fe011a200241c8026a41f0006a2903002108200241a8046a200b41e80010fe011a20084203510d02200e41016a2110200241d8016a20024190056a41f00010fe011a200241f0006a200241a8046a41e80010fe011a0240200e200f470d00200d20102010200d491b220fad42e0017e2211422088a70d052011a722124100480d050240200e450d00200a200920121014220a0d010c070b20121012220a450d060b200a20096a200241d8016a41f00010fe01220e41f0006a2008370300200e41f8006a200241f0006a41e80010fe011a200c4280808080107c210c200d41026a210d200941e0016a21092010210e20102007490d000b200a450d020b200241c8026a200241086a41e40010fe011a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241c8026a41e40010fe011a200041fc006a200c200fad84370200200041f8006a200a36020020024180066a24000f0b0240200e450d00200a4188016a211003402010107e201041e0016a2110200941a07e6a22090d000b0b200f450d00200a101f0b2000410036020802402003450d00200341246c2110200521090340024020092d0000450d00200941086a280200450d00200941046a280200101f0b200941246a21092010415c6a22100d000b0b02402004450d002005101f0b20024180066a24000f0b1010000b201241081015000b9a2107077f017e037f017e0a7f027e0b7f23004180036b22022400200241a8026a41186a22034200370300200241a8026a41106a22044200370300200241a8026a41086a22054200370300200242003703a802200241a8026a2001280200220620012802042207412020074120491b220810fe011a2001200720086b3602042001200620086a360200024002402007411f4d0d00200241e8016a41186a22072003290300370300200241e8016a41106a22082004290300370300200241e8016a41086a22062005290300370300200220022903a8023703e801200241a8016a41186a2007290300370300200241a8016a41106a2008290300370300200241a8016a41086a2006290300370300200220022903e8013703a801410121070c010b410021070b200241a8026a41186a2208200241a8016a41186a290300370300200241a8026a41106a2206200241a8016a41106a290300370300200241a8026a41086a2203200241a8016a41086a290300370300200220022903a8013703a80202400240024002400240024002400240024002400240024002400240024002400240024002402007450d00200241206a41186a2008290300370300200241206a41106a2006290300370300200241206a41086a2003290300370300200220022903a802370320200241106a200110192002290310a7450d0120022903182109200241a8026a41186a22054200370300200241a8026a41106a220a4200370300200241a8026a41086a220b4200370300200242003703a802200241a8026a20012802002204200141046a22032802002207412020074120491b220610fe011a2003200720066b22083602002001200420066a22063602002007411f4d0d02200241e8016a41186a22072005290300370300200241e8016a41106a2204200a290300370300200241e8016a41086a2205200b290300370300200220022903a8023703e801200241c0006a41186a2007290300370300200241c0006a41106a2004290300370300200241c0006a41086a2005290300370300200220022903e801370340200241a8026a2008412020084120491b22076a41004100412020076b2007411f4b1b10fd011a200241a8026a2006200710fe011a2003200820076b3602002001200620076a3602002008411f4d0d03200241e8016a41186a2207200241a8026a41186a290300370300200241e8016a41106a2208200241a8026a41106a290300370300200241e8016a41086a2206200241a8026a41086a290300370300200220022903a8023703e801200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2006290300370300200220022903e801370360200241086a200110172002280208450d0c200228020c220cad42247e220d422088a70d0f200da72207417f4c0d0f2007450d0420071012220e450d06200c450d050c070b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b4104210e200c0d020b410021164200210d0c020b200741041015000b200241a8026a41106a2107200241a8026a410172210f200241e8016a41116a2110200241b7026a211120024180016a4101722103200141046a210b200241fc026a41026a2112200241f0026a2113200241a8026a41076a21144200210d41002115410021084100210a200c21160340200b2802002106200241003a00a802200241a8026a200128020022172006410047220410fe011a20062004490d06200b200620046b22053602002001201720046a22043602002006450d0320022d00a802220641034b0d030240024002400240024002400240024020060e0400030102000b2002200110172002280200450d0a20022802042206417f4c0d0f2006450d03200610762205450d1120052001280200200b2802002204200620042006491b220410fe011a200b28020022172004490d12200b201720046b3602002001200128020020046a36020020042006460d040c090b200241a8026a2005412020054120491b22066a41004100412020066b2006411f4b1b10fd011a200241a8026a2004200610fe011a200b200520066b3602002001200420066a3602002005411f4d0d09200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a2d00003a0000200220022f00a8023b01a002200220112900003703e8012002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021182010411f6a200241a8026a411f6a290000370000201041186a200241a8026a41186a290000370000201041106a2007290000370000201041086a200241a8026a41086a290000370000201020022900a802370000410121170c040b200242003703a802200241a8026a20042005410820054108491b220610fe011a200b200520066b22173602002001200420066a2204360200200541074d0d0820022903a8022119200241a8026a201741c000201741c000491b22066a4100410041c00020066b2006413f4b1b10fd011a200241a8026a2004200610fe011a200b201720066b3602002001200420066a3602002017413f4d0d08200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a290000370300200241e8016a41186a201141186a290000370300200241e8016a41206a201141206a290000370300200241e8016a41286a201141286a290000370300200241e8016a41306a201141306a2d00003a0000200220022f00a8023b01a002200220112900003703e801410221172002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021180c040b200241a8026a2001107420022802a8022205450d0720022902ac022118200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220122d00003a00a202200220022f00fc023b01a002200220022903a8023703e801410021170c020b4101210541002006470d050b200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220022f00fc023b01a002200220022903a8023703e801200220122d00003a00a2022006ad22194220862019842118410321170b0b201220022d00a2023a0000200241a8026a41086a2206200241e8016a41086a221a2903003703002007200241e8016a41106a221b290300370300200241a8026a41186a2204200241e8016a41186a221c290300370300200241a8026a41206a221d200241e8016a41206a290300370300200241a8026a41286a221e200241e8016a41286a290300370300200241a8026a41306a221f200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241e4016a41026a222020122d00003a0000200241a8016a41086a22212006290300370300200241a8016a41106a22222007290300370300200241a8016a41186a22232004290300370300200241a8016a41206a2224201d290300370300200241a8016a41286a221d201e290300370300200241a8016a41306a221e201f290300370300200220022f01fc023b01e401200220022903a8023703a80120062018370300200f20022f01e4013b0000200f41026a20202d00003a0000200720022903a801370000200741086a2021290300370000200741106a2022290300370000200741186a2023290300370000200741206a2024290300370000200741286a201d290300370000200741306a201e290300370000200220173a00a802200220053602ac022013201937030020024180016a200241a8026a107920022d0080012117200241a8026a411f6a221d2003411f6a2800003600002004200341186a2900003703002007200341106a2900003703002006200341086a290000370300200220032900003703a80220174102460d04200a41016a2105200241e8016a411f6a221e201d280000360000201c2004290300370300201b2007290300370300201a2006290300370300200220022903a8023703e8010240200a2016470d002015200520052015491b2216ad42247e2219422088a70d082019a722064100480d080240200a450d00200e200820061014220e0d010c0b0b20061012220e450d0a0b200e20086a220620173a0000200641206a201e280000360000200641196a201c290300370000200641116a201b290300370000200641096a201a290300370000200641016a20022903e801370000200d4280808080107c210d201541026a2115200841246a21082005210a2005200c490d000b0b200e450d03200241a8026a41186a2201200241206a41186a290300370300200241a8026a41106a2207200241206a41106a290300370300200241a8026a41086a2208200241206a41086a290300370300200241e8016a41086a2206200241c0006a41086a290300370300200241e8016a41106a2203200241c0006a41106a290300370300200241e8016a41186a2204200241c0006a41186a290300370300200241a8016a41086a2205200241e0006a41086a290300370300200241a8016a41106a220a200241e0006a41106a290300370300200241a8016a41186a220b200241e0006a41186a290300370300200220022903203703a802200220022903403703e801200220022903603703a8012000200d2016ad8437020c2000200e36020820002009370300200041146a20022903a8023702002000411c6a2008290300370200200041246a20072903003702002000412c6a2001290300370200200041346a20022903e8013702002000413c6a2006290300370200200041c4006a2003290300370200200041cc006a2004290300370200200041ec006a200b290300370200200041e4006a200a290300370200200041dc006a2005290300370200200041d4006a20022903a80137020020024180036a24000f0b2006450d002005101f0b200241fc026a41026a20022d00a2023a0000200241a8026a41086a2201200241e8016a41086a290300370300200241a8026a41106a2207200241e8016a41106a290300370300200241a8026a41186a2206200241e8016a41186a290300370300200241a8026a41206a200241e8016a41206a290300370300200241a8026a41286a200241e8016a41286a290300370300200241a8026a41306a200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241023a008001200241a8026a411f6a2003411f6a2800003600002006200341186a2900003703002007200341106a2900003703002001200341086a290000370300200220032900003703a8020b0240200a450d00200e21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012008415c6a22080d000b0b2016450d00200e101f0b2000410036020820024180036a24000f0b20042006101a000b1010000b100f000b200641041015000b200641011015000b20042017101a000b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a2200280200107e2000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0b9b2f07047f017e037f017e087f017e0f7f230041a0026b22012400200141b0016a41086a22024200370300200142003703b00141be93c0004113200141b0016a1000200141386a41086a2002290300370300200120012903b001370338024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141386a411041e4a4c100410041001001417f460d00200141003a00b001200141386a4110200141b0016a41014100100141016a41014d0d0220012d00b0012102200141b0016a41086a22034200370300200142003703b00141be93c0004113200141b0016a1000200141086a41086a2003290300370300200120012903b001370308200141086a411010052002450d00200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141386a41086a200229030037030020012001290318370338200141386a411041e4a4c100410041001001417f460d0c2001421037021c2001200141386a360218200141b0016a200141186a104020012802b0012204450d0320012902b4012105200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41101005410610122202450d04200241046a41002f00a388403b00002002410028009f884036000020024106410c10142202450d05200241086a41002d00a788403a0000200241002f00a588403b0006024002402002410941e4a4c100410041001001417f460d00200141003602384101210620024109200141386a41044100100141016a41044d0d03200128023821072002101f20074521082007450d012007ad4205862209422088a70d0f2009a722024100480d0f200210122206450d0841002103200621020340200141386a2003103e200241186a200141386a41186a290000370000200241106a200141386a41106a290000370000200241086a200141386a41086a29000037000020022001290038370000200241206a21022007200341016a2203470d000c020b0b2002101f4101210841002107410121060b024020072005422088a7220a470d000240200a450d0020042006460d004100210b200621022004210303402002200341201080020d02200241206a2102200341206a2103200b41016a220b200a490d000b0b20080d0b2006101f2005a70d0c0c0d0b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141b0016a41086a22032002290300370300200120012903083703b0014100210c02400240200141b0016a411041e4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a10312001280238220d450d09200129023c2109200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a200141b0016a41086a290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b200141386a21022009422088a7220e2009a7220c460d010c0b0b200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a2003290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b4104210d200141386a21020b200c41016a2203200c490d0d200c4101742207200320032007491b2207ad42247e2209422088a70d0d2009a722034100480d0d02400240200c450d00200d200c41246c20031014220d450d010c0a0b20031012220d0d090b200341041015000b41a8d8c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200241011015000b41de86c00041331023000b200c210e2007210c0b200d200e41246c22076a22032002290200370200200341206a200241206a280200360200200341186a200241186a290200370200200341106a200241106a290200370200200341086a200241086a29020037020020014100360210200142013703082001200e41016a220f360238200141386a200141086a101302400240200f450d00200741246a2108200d210203400240024020022d00004101470d002002410c6a2802002103200241046a28020021074100210b0c010b4101210b200241016a21070b200141386a41086a20033602002001200736023c2001200b360238200141186a200141386a10112001280218210a0240024002400240200128020c220b200141086a41086a221028020022036b200141186a41086a28020022074f0d00200320076a22062003490d0a200b4101742211200620062011491b22114100480d0a200b450d012001280208200b2011101422060d020c1a0b200128020821060c020b201110122206450d180b2001201136020c200120063602082011210b0b2010200320076a2211360200200620036a200a200710fe011a0240200128021c450d00200a101f0b200241246a21022008415c6a22080d000c020b0b200141086a41086a2802002111200128020c210b200128020821060b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141186a41086a200229030037030020012001290308370318200141186a41102006201110040240200b450d002006101f0b0240200f450d00200e41246c41246a2103200d21020340024020022d0000450d00200241086a280200450d00200241046a280200101f0b200241246a21022003415c6a22030d000b0b200c450d00200d101f0b2005a7450d010b2004101f0b2000108001200141186a41086a2202420037030020014200370318418080c0004115200141186a1000200141386a41086a2002290300370300200120012903183703380240200141386a411041e4a4c100410041001001417f460d00200141003602b001200141386a4110200141b0016a41044100100141016a41044d0d1020012802b001220a450d0041002107034020072103411a10122202450d14200241186a41002f009dff403b0000200241106a4100290095ff40370000200241086a410029008dff4037000020024100290085ff403700002002411a413410142202450d132002200336001a200141b0016a41086a22074200370300200142003703b0012002411e200141b0016a1000200141086a41086a2007290300370300200120012903b00137030802400240200141086a411041e4a4c100410041001001417f460d002001420037034020014200370338200141086a4110200141386a411041001001220b417f460d17200b410f4d0d17200141386a41086a29030021052001290338210920074200370300200142003703b0012002411e200141b0016a1000200141186a41086a2007290300370300200120012903b001370318200141186a41101005420121120c010b420021120b200341016a21072002101f02402009200584500d002012a7450d00200141386a41106a2005370300200141386a41086a2009370300200141386a41186a2003360200200141053a0038200141386a10270b200a2007470d000b0b4108210742002105200141086a41086a2202420037030020014200370308419596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0e200129023c21050b02402005422088a72213450d0020134106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841a8f8c0004118200141086a1000200141186a41086a20022903003703002001200129030837031802400240200141186a411041e4a4c100410041001001417f460d0020014100360238200141186a4110200141386a41044100100141016a41044d0d102001280238210a0c010b413c210a0b4108210742002105200141086a41086a2202420037030020014200370308419596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0d200129023c21050b02402005422088a7220b450d00200b4106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841ccf3c000411b200141086a1000200141186a41086a20022903003703002001200129030837031841002102200a200b6c220341e4006e2114024002400240024002400240200141186a411041e4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a106820012802382215450d11200128023c2116200141c0006a28020022020d010c020b41042115410021164100450d010b201520024102746a2117200141dd016a2118200141286a41086a2119200341e3004b211a200141386a41206a211b200141386a412c6a211c200141386a41286a211d200141386a411c6a211e200141d4016a211f200141c8016a2120201521110340200141286a201128020022101081012001280228210f4100210a410021064100210b4100210802402019280200220d450d00200d41216c2107200f41206a2102410021084100210b410021064100210a03400240024020022d000022034101460d00024020034102460d0020034103470d02200a41016a210a200241216a21022007415f6a22070d030c040b200641016a2106200241216a21022007415f6a22070d020c030b200b41016a210b200241216a21022007415f6a22070d010c020b200841016a2108200241216a21022007415f6a22070d000b0b200141386a20101060200141386a41106a290300210942002105200141086a41086a220242003703002001420037030841dd81c000410d200141086a1000200141186a41086a220320022903003703002001200129030837031802400240024002400240024002400240024002400240200141186a411041e4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0120012903b00121050b200242003703002001420037030841a4f6c0004116200141086a100020032002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0220012903b00121122013450d050c060b2002420037030020014200370308418295c0004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041e4a4c100410041001001417f460d0020014200370318200141b0016a4110200141186a41084100100141016a41084d0d0320012903182212500d044280de34201280211220130d060c050b4280de34420580211220130d050c040b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41e4a9c2001024000b201a200b20144f7121070c010b4105210c200a2013460d02201a200b20144f712107200d2013470d004104210c20070d010c020b2005201220097c540d024102210c2007450d010b4103210c0b2010200c106422070d0342002105200242003703002001420037030841dd81c000410d200141086a100020032002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0620012903b00121050b411610122203450d072003410e6a41002900a5f940370000200341086a410029009ff94037000020034100290097f94037000020034116412c1014220d450d08200d2010360016200141b0016a41086a22034100360200200142013703b001410410122207450d0920014284808080c0003702b401200120073602b0012007201036000020074104410810142207450d0a2001428880808080013702b40120072008360004200120073602b00120074108411010142207450d0b20014290808080c0013702b4012007200b3600082007200636000c20034110360200200120073602b00120074110412010142207450d0c2007200a360010200142a0808080c0023702b401200120073602b001200c200141b0016a1058024002400240024020012802b40122042003280200220e6b41084f0d00200e41086a2207200e490d0a20044101742221200720072021491b22214100480d0a2004450d0120012802b00120042021101422070d020c120b20012802b00121070c020b202110122207450d100b200120213602b401200120073602b001202121040b2007200e6a20053700002002420037030020014200370308200d411a200141086a100020032002290300370300200120012903083703b001200141b0016a41102007200e41086a100402402004450d002007101f0b200d101f200141b0016a412c6a200c3a0000200141b0016a41286a200a360200201f2006360200200141b0016a41206a200b360200200141b0016a411c6a200836020020202010360200200141b0016a41106a2005370300200341043a0000201820012f00183b0000201841026a200141186a41026a2d00003a0000200141073a00b001200141b0016a10270b0240201b280200450d00201e280200101f0b0240201c280200450d00201d280200101f0b201141046a21110240200128022c450d00200f101f0b20112017470d000b0b2016450d012015101f0c010b0240200141d8006a280200450d00200141d4006a280200101f0b0240200141e4006a280200450d00200141e0006a280200101f0b0240200128022c450d00200f101f0b02402016450d002015101f0b2007412810080b2000108201200141086a41086a220242003703002001420037030841aa96c1004112200141086a1000200141186a41086a200229030037030020012001290308370318024002400240200141186a411041e4a4c100410041001001417f460d0020014200370338200141186a4110200141386a41084100100141016a41084d0d0b20012903382000510d010c020b42012000520d010b200141386a41106a2000370300200141386a41086a4200370300200141093a0038200141386a1027200141086a41086a220242003703002001420037030841f4b0c0004119200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041e4a4c100410041001001417f460d00200141003a0038200141b0016a4110200141386a41014100100141016a41014d0d0c20012d0038450d010b200141086a41086a2202420037030020014200370308419596c1004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b00102400240200141b0016a411041e4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a105f20012802382202450d0e2001200129023c37023c200120023602380c010b20014100360240200142083703380b2001200141386a1083010b200141a0026a24000f0b41de86c00041331023000b1010000b411641011015000b412c41011015000b410441011015000b410841011015000b411041011015000b412041011015000b41de86c00041331023000b202141011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b201141011015000b413441011015000b411a41011015000b41de86c00041331023000bc3520d037f027e017f017e017f037e0d7f027e037f027e017f027e127f230041c0036b2201240020014190026a41086a220242003703002001420037039002418484c100411820014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240024002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b20024200370300200142003703900241defec000411520014190026a10002003200229030037030020012001290390023703b00202400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00222054200520d0141a8b0c2001024000b42e80721050b20014190026a41086a22024200370300200142003703900241b1fec000411920014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200020047d20058221050240200141b0026a411041e4a4c100410041001001417f460d00200141003a00d002200141b0026a4110200141d0026a41014100100141016a41014d0d0320012d00d002210220014190026a41086a22034200370300200142003703900241b1fec000411920014190026a1000200141b0026a41086a200329030037030020012001290390023703b002200141b0026a41101005200241004721060c040b20054200520d04410121060c030b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b4200210720014190026a41086a22024200370300200142003703900241f594c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221000b200242003703002001420037039002419c84c100411420014190026a10002003200229030037030020012001290390023703b0020240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0220012903d00221070b20014190026a41086a22024200370300200142003703900241cafec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00202400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0420012903d00242017c21040c010b420121040b200141d0026a41086a2004370300200141033a00d002200141d0026a1027200120043703d00220024200370300200142003703900241cafec000411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200120003703d002200242003703002001420037039002419c84c100411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200141e0016a41b084c1004119103002400240024020012903e001a74101470d00200120012903e8013703d00220014190026a41086a22024200370300200142003703900241defec000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040c010b2005500d010b20014190026a41086a22024200370300200142003703900241dd81c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0520012903d00221040b200120043703d002200242003703002001420037039002418484c100411820014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040b0240024002402006450d0020014190026a41086a220242003703002001420037039002418295c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411041e4a4c100410041001001417f460d01200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0720012903d00221040c020b200141b0026a21080c090b420521040b20014190026a41086a22024200370300200142003703900241defec000411520014190026a1000200141d0026a41086a200229030037030020012001290390023703d00202400240200141d0026a411041e4a4c100410041001001417f460d00200142003703b002200141d0026a4110200141b0026a41084100100141016a41084d0d074200210920012903b00220047e22044200510d010c0a0b4200210942e80720047e22044200520d090b20014190026a41086a220220093703002001200937039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240200141b0026a411041e4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d072002410f4d0d07200141d8026a290300210a20012903d00221090c0a0b4200210a0c090b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410121020c070b200020077d2200200420042000541b22002009510d0220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0022004421086200080210402400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d032002410f4d0d03200141d8026a290300210020012903d00221050c010b42002105420021000b200141d0016a200520002004420010820220012903d001421088200141d0016a41086a29030022044230868421092004421088210a0b4200210b20014190026a41086a22024200370300200142003703900241f3fec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240200141b0026a411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d002220c450d0420012902d402210b0c010b4101210c0b4105210d200b422088a74105742202450d03200c20026a210e4120210f411c211041182111410021124110211341082114413c211541342116412c211741242118420121194200211a4160211b200c211c4100211d0c040b41de86c00041331023000b41d499c2001024000b41de86c00041331023000b410021020c010b410221020b0240024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024020020e03000102020b200141e8026a200a370300200141e0026a2009370300200141d8026a41003a0000200141043a00d002200141d0026a1027200141d0026a41b7e0c0004112103c200141b0026a2108200ba7450d0c200c101f410121020c100b20014190026a41086a22024200370300200142003703900241cafec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210402400240024002400240024002400240024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b2002420037030020014200370390024196d1c000411520014190026a10002003200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d0020014190026a41086a2202420037030020014200370390024196d1c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411010050c010b20014190026a41086a22024200370300200142003703900241c9e0c000411b20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0620012903d00221000b20024200370300200142003703900241e4e0c000411620014190026a10002003200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00222054200520d0141ec99c2001024000b42e80721050b200420007d2005824200520d210b20014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00242017c21040c010b420121040b200120043703d00220014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a41081004200242003703002001420037039002418ce1c000411a20014190026a10002003200229030037030020012001290390023703b00202402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d03200120012903d00222043703f00120014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d06200420012903d002520d010c020b200442e807510d010b200120043703d00220014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a4108100420024200370300200142003703900241cafec000411420014190026a10002003200229030037030020012001290390023703b0024200210402402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00221040b200120043703d00220024200370300200142003703900241c9e0c000411b20014190026a10002003200229030037030020012001290390023703b00220084110200141d0026a410810040b20014190026a41086a22024200370300200142003703900241cccfc000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240024002402008411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022223450d0b20012802d40221244105210341002125200141d8026a2802004105742202450d020c010b4101212341002124410521034100212541004105742202450d010b20022003752226ad42307e2204422088a70d1c2004a722034100480d1c200310122227450d0a202320026a22282023470d010c0c0b4108212741002126202320026a22282023460d0b0b41002125411821294110212a4108212b4120212c4128212d4101212e4130212f410521304160213120272132202321334101211d0c160b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200341081015000b02400240201d0e020001010b201c450d0a201010122202450d02200220116a2012280093d040360000200220136a201229008bd040370000200220146a2012290083d040370000200220122900fbcf4037000020022010201510142202450d032002201c29000037001c200220166a201c20116a290000370000200220176a201c20136a290000370000200220186a201c20146a290000370000200141d0026a20022015103d200141d0026a20146a22032903002100200141d0026a20136a290300210520012903d00221072002101f420021040240024002400240200920004200200720195122021b2200200920002009542005420020021b2200200a542000200a511b22021b221e7d2205200a2000200a20021b221f7d2009201e54ad7d220784500d00200141d0026a201c10722003280200210220012802d0022120200141c0016a201c105c200141c0016a20146a290300210420012903c00121002002450d012002200d7422032106202021020340200141b0016a2002105c200141b0016a20146a29030020047c20012903b001220420007c2200200454ad7c21042002200f6a21022006201b6a22060d000b2004201a20002019562004201a522004501b22021b21042000201920021b2100202021020340200141a0016a2002105c20014190016a20012903a001200141a0016a20146a2903002005200710820220014180016a20012903900120014190016a20146a29030020002004108102200220012903800120014180016a20146a290300107b2002200f6a21022003201b6a22030d000b200141f0006a201c105c2000200484201a510d09200141f0006a20146a2903002121200129037021220c020b420021000c020b200141e0006a201c105c2004201a20002019562004201a522004501b22021b21042000201920021b2100200141e0006a20146a2903002121200129036021220b200141d0006a2022202120052007108202200141c0006a2001290350200141d0006a20146a29030020002004108102200141c0006a20146a29030021002001290340210420012802d402450d002020101f0b201c2004201e7c22052000201f7c2005200454ad7c107b201c200f6a2202211c2002200e470d08410021020c0f0b200141d0026a20296a221d203320296a290000370300200141d0026a202a6a22202033202a6a290000370300200141d0026a202b6a22342033202b6a290000370300200120332900003703d00220014190026a200141d0026a106120014190026a202b6a28020021022001280290022106200141306a200141d0026a105c200141306a202b6a29030021042001290330210002402002450d0020022030742103200621020340200141206a2002105c200141206a202b6a29030020047c2001290320220420007c2200200454ad7c21042002202c6a2102200320316a22030d000b0b2033202c6a21330240200128029402450d002006101f0b200141b0026a20296a2202201d290300370300200141b0026a202a6a22032020290300370300200141b0026a202b6a22062034290300370300200120012903d0023703b00220322004370308203220003703002032202d6a20022903003703002032202c6a2003290300370300203220296a2006290300370300203220012903b0023703102025202e6a21252032202f6a213220332028470d080b02402024450d002023101f0b20014190026a41086a22024200370300200142003703900241decfc000411d20014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d04202520012802d0024f0d010c160b20254104490d150b4100212b20272025410041202025676b104520014190026a41086a22024200370300200142003703900241a6e1c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0520012802d002212b0b024002402025450d0020252025202b202b20254b1b417f6a22024d0d07202741086a29030021042027200241306c6a22022903002105200241086a29030021002027290300210741102114411010122202450d010c100b42002107420021044200210542002100411021144110101222020d0f0b201441011015000b411c41011015000b413c41011015000b41de86c00041331023000b41d499c2001024000b41de86c00041331023000b41849ac200200220251048000b4100211d0c030b4101211d0c040b410021020c040b410121020c030b410221020c020b410221020c010b410221020c000b0b200220073700002002200437000820022014412010142202450d0120022005370010200241186a200037000020014190026a41086a22144200370300200142003703900241b7e0c000411220014190026a1000200141b0026a41086a201429030037030020012001290390023703b002200841102002412010042002101f02400240202b450d0041002132202b2027202541306c6a221420276b41306d22022002202b4b1b2223450d012023ad4205862204422088a70d022004a722024100480d02200210122233450d04202b450d060c050b4100212341012133410021320c050b4101213341002123202b0d030c040b1010000b412041011015000b200241011015000b20142027460d00202541306c2131200141d0026a41106a21034101210f20332114202721020340200141d0026a41286a200241286a290300370300200141d0026a41206a200241206a290300370300200141d0026a41186a200241186a2903003703002003200241106a290300370300200141d0026a41086a200241086a29030037030020022903002104200141b0026a41086a221b200341086a290300370300200141b0026a41106a2206200341106a290300370300200141b0026a41186a222c200341186a290300370300200120043703d002200120032903003703b002201441186a202c290300370000201441106a2006290300370000201441086a201b290300370000201420012903b002370000202b200f2232460d01200241306a2102203241016a210f201441206a2114203141506a22310d000b0b02402026450d002027101f0b4200210720014190026a41086a22024200370300200142003703900241f3fec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240024002402008411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022225450d0220012902d40221070c010b410121250b024002400240024002402007422088a7410574222c450d0020252114034002400240024002400240411c10122202450d00200241186a41002800e7d140360000200241106a41002900dfd140370000200241086a41002900d7d140370000200241002900cfd1403700002002411c413c10142202450d012002201429000037001c200241346a201441186a220f2900003700002002412c6a201441106a221b290000370000200241246a201441086a220629000037000020014190026a41086a222b420037030020014200370390022002413c20014190026a1000200141b0026a41086a2203202b29030037030020012001290390023703b002200141b0026a411010052002101f411210122202450d02200241106a41002f00ecce4022313b0000200241086a41002900e4ce402204370000200241002900dcce40220037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a200629000037000020034200370300200142003703b00220024132200141b0026a1000200141d0026a41086a2003290300370300200120012903b0023703d002024002400240200141d0026a411041e4a4c100410041001001417f460d00200141003602b002200141d0026a4110200141b0026a41044100100141016a41044d0d0220012802b002211c20034200370300200142003703b00220024132200141b0026a1000202b2003290300370300200120012903b0023703900220014190026a411010052002101f201c410041011b221c4102490d010c070b2002101f4100410041001b221c41024f0d060b201441206a2114202c41606a222c0d060c070b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b411210122202450d02200241106a20313b0000200241086a20043700002002200037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a20062900003700002001201c417f6a3602d002202b420037030020014200370390022002413220014190026a10002003202b29030037030020012001290390023703b00220084110200141d0026a410410042002101f201441206a2114202c41606a222c0d000b0b02402007a7450d002025101f0b02400240024002402032450d0020324105742103203321020340200141d0026a20021061411c10122214450d03201441186a41002800e7d140360000201441106a41002900dfd140370000201441086a41002900d7d140370000201441002900cfd1403700002014411c413c10142214450d042014200229000037001c201441346a200241186a2900003700002014412c6a200241106a290000370000201441246a200241086a2900003700002001413c3602b402200120143602b002200141d0026a200141b0026a10622014101f024020012802d402450d0020012802d002101f0b200241206a2102200341606a22030d000b2033203210bc010c010b2033410010bc010b20014190026a41086a22024200370300200142003703900241bce1c000411420014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0620013502d00221040c010b42c0843d21040b200141106a2005420020044200108202200142003703d80220014289f48bdcc4002001290310428094ebdc038020012903184200521b3703d00220014190026a41086a22024200370300200142003703900241b1cfc000411b20014190026a1000200141b0026a41086a2214200229030037030020012001290390023703b00220084110200141d0026a4110100420024200370300200142003703900241d0e1c000411520014190026a10002014200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0720013502d00221040c010b423c21040b20012005420020044200108202200142003703d80220014289f48bdcc4002001290300428094ebdc038020012903084200521b3703d00220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b00220084110200141d0026a411010042023450d082033101f0c080b411c41011015000b413c41011015000b411241011015000b413241011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b2026450d002027101f0b20014190026a41086a22024200370300200142003703900241f3fec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002400240200141b0026a411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022229450d1020012802d4022127200141d8026a280200410574221b0d010c020b41012129410021274100410574221b450d010b202921144100212b0340411210122202450d05200241106a41002f00d984413b0000200241086a41002900d18441370000200241002900c9844137000020024112413210142202450d06200220142900003700122002412a6a201441186a290000370000200241226a201441106a2900003700002002411a6a201441086a29000037000020014190026a41086a2203420037030020014200370390022002413220014190026a1000200141b0026a41086a220f200329030037030020012001290390023703b002024002400240200141b0026a411041e4a4c100410041001001417f460d00200141d0026a41186a22064200370300200141d0026a41106a222c4200370300200141d0026a41086a22084200370300200142003703d002200141b0026a4110200141d0026a4120410010012231417f460d062031411f4d0d06200141f0016a41186a22312006290300370300200141f0016a41106a221c202c290300370300200141f0016a41086a22322008290300370300200120012903d0023703f0012003420037030020014200370390022002413220014190026a1000200f200329030037030020012001290390023703b002200141b0026a411010052002101f20014190026a41186a2223203129030037030020014190026a41106a221d201c29030037030020032032290300370300200120012903f00137039002410610122202450d0b200241046a41002f00a3884022313b00002002410028009f8840221c36000020024106410c10142202450d0c2002202b3600062002410a41e4a4c100410041001001417f460d01200141b0026a41186a22324200370300200141b0026a41106a22334200370300200f4200370300200142003703b0022002410a200141b0026a4120410010012225417f460d0a2025411f4d0d0a20062032290300370300202c20332903003703002008200f290300370300200120012903b0023703d0020c020b2002101f201441206a2114202b41016a212b201b41606a221b0d020c030b20064200370300202c420037030020084200370300200142003703d0020b2002101f02400240200141d0026a20014190026a4120108002450d00200141003602b002200141b0026a103f410610122202450d0c200241046a20313b00002002201c36000020024106410c10142202450d0d200241086a41002d00a788403a0000200241002f00a588403b00062002410941e4a4c100410041001001417f460d01200141003602b00220024109200141b0026a41044100100141016a41044d0d0620012802b002210f2002101f200f202b4d0d00410610122202450d0e200241046a20313b00002002201c36000020024106410c1014220f450d0f200f202b360006412010122202450d102002200129039002370000200241186a2023290300370000200241106a201d290300370000200241086a2003290300370000200f410a2002412010042002101f200f101f0b201441206a2114202b41016a212b201b41606a221b0d010c020b2002101f201441206a2114202b41016a212b201b41606a221b0d000b0b2027450d002029101f0b200141c0036a24000f0b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b41de86c00041331023000b410641011015000b410c41011015000b410641011015000b410c41011015000b410641011015000b410c41011015000b412041011015000b41de86c00041331023000bbb0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910122203450d00200341186a41002d0096f9403a0000200341106a410029008ef940370000200341086a4100290086f940370000200341002900fef84037000020034119413210142204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1000200241106a41086a2003290300370300200220022903503703100240024002400240200241106a411041e4a4c100410041001001417f460d00200242103702242002200241106a360220200241086a200241206a10282002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310122207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011015000b413241011015000b200341011015000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100122112011417f461b2211412020114120491b20096a22093602002011411f4d0d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082009200b200a200241d0006a41012009100141016a41014b22116a22093602002011450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101422070d010c080b201210122207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b2004101f200241f0006a24000f0b200f450d002007101f0b41de86c00041331023000b1010000b201241011015000b85c10125027f027e097f017e187f027e077f027e0c7f027e087f017e107f037e177f027e0e7f017e0d7f097e287f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e0e7f23004190036b22012400200141e0026a41086a22024200370300200142003703e00241c5b2c0004115200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041e4a4c100410041001001417f460d00200142103702d4012001200141286a3602d001200141086a200141d0016a108f01024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200129030822034203510d0020012903102104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a0028200141286a41086a220541063a0000200141286a10272001420837031820014100360220200141e0026a41086a22024200370300200142003703e0024180b4c000411b200141e0026a100020052002290300370300200120012903e002370328200141286a411041e4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012206450d0f20012802d401210741082108200141d8016a2802004105742209450d050c140b20042000520d1f200141083a0028200141286a41086a224441043a0000200141286a1027200141e0026a41086a22054200370300200142003703e0024195bfc000411f200141e0026a100020442005290300370300200120012903e002370328200141286a411041e4a4c100410041001001417f460d01200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0820012903d001210e0c020b20042000520d1e200141083a0028200141286a41086a220241023a0000200141286a1027200141e0026a41086a220a4200370300200142003703e00241e6b3c000411a200141e0026a10002002200a290300370300200120012903e00237032841002145200141286a411041e4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012246450d0e200141d8016a280200214720012802d40121450c050b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041e4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0720012903d00121480b20012048200e7c37033020014202370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541053a0000200141286a102720014190036a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012146410021470b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d05204720012802d0014f0d010c0d0b2047410a490d0c0b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0720012802d00121020c010b410a21020b200141e0026a41086a220a4200370300200142003703e00241d3bfc000411e200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0820012802d001210a0c010b4114210a0b41e4a4c1002165410021664100210b41e4a4c100216720472002200a200a2002491b22684d0d160240204741144b0d00204741014d0d162047417e6a2144204620474105746a41406a210541022102034020472044490d0620052002109f01200541606a2105200241016a21022044417f6a2244417f470d000c170b0b2047410176226aad2248421b88a70d132048420586a72202417f4c0d134101216b4101216c02402002450d0020021012226c450d0a0b4160216d204641606a216e204641a07f6a216f4100217041042171417f217242032173422021744103217541022176417d217741052178411f21794117217a4110217b41082167413f217c4137217d4118217e412f217f41272180014120218101200141286a41206a218201420021484201218301417e218401417421850141642186014138218701413021880141282189014109218a01410a218b014104218c014100218d014100218e012047218f01410221360c0a0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b20442047101a000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200241011015000b410121020c070b10900120450d0b0c0c0b4100210a41002105410021022006210b0340200141286a200b109901024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101422080d010c060b200c10122208450d050b200d21050b200b41206a210b2008200a6a200141286a41880110fe011a200a4188016a210a200241016a2102200941606a22090d000b200141206a2002360200200120083602182001200536021c2007450d010b2006101f0b4200210e200142003702c401200141e893c1003602c0012002450d01418801210f200820024188016c6a2110200141c4006a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a4119211b4111211c4109211d411f211e4117211f41002120413f212141372122412f21234127212441202125200141e0026a41206a2126420821274201212841142129200141d0016a41146a212a4106212b41e802212c4138212d4130212e4128212f4230213042202131410421324160213341987d213420082135410021360c020b200c41081015000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141b0016a41086a200141c0016a41086a280200360200200120012903c0013703b001200141e0026a41086a2202200e3703002001200e3703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041e4a4c100410041001001417f460d00200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012241450d0220012802d401214241052143200141d8016a28020041057422020d010c230b41012141410021424105214341004105742202450d220b204120026a2149200141c4006a214a4120214b4108214c417f214d4102214e41a808214f4118215041102151411f21524117215341002154413f215541372156412f215741272158420821594201215a4200215b200141e4016a215c4106215d41987d215e4160215f4101216020412161410121360c020b41de86c00041331023000b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020360e09000102030405060708080b20352d0060450d41203520126a223720136a213820012802c0012239213a20012802c401223b213c0c1c0b20612262204b6a2161200141b0016a216320012802b40121640c1c0b02400240024002400240024002400240208f0122900120726a228f01450d00207910122202450d162002207a6a20702900a4b14022003700002002207b6a207029009db1402203370000200220676a2070290095b14022043700002002207029008db140223e37000020022079207c10142202450d1720022046208f012078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c208201290300219101200141286a207e6a220b290300213f200141286a207b6a2209290300219201200141286a20676a220c29030021930120012903282194012002101f207910122202450d182002207a6a20003700002002207b6a2003370000200220676a20043700002002203e37000020022079207c10142202450d19200220462090012084016a22062078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c2082012903002195012009290300219601200b290300219701200c29030021980120012903282199012002101f203f2093017c229301204820940120485222021b2097012098017c229401204820990120830151220a1b542091012092017c209301203f54ad7c204820021b223f2095012096017c20940120970154ad7c2048200a1b22970154203f209701511b450d01206f20900120787422066a21020340208f01206b460d0320791012220a450d10200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d14200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d15200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d16200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102208f0120726a218f01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b542091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b22970154203f209701511b0d000c040b0b4101210d4100218f01208d01208e01470d060c050b206f2090012078746a21024100218f014100219a01024003402006209a01460d0120791012220a450d0e200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d10200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d11200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d12200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102209a01206b6a219a01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b5a2091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b2297015a203f209701511b0d000b209a01206b6a210d209001209a016b20726a228f01450d040c030b209001210d208d01208e01460d040c050b4100218f010b209001208f01490d1720900120474b0d1a0240209001208f016b220d206b76229a01450d00206e20066a21022046208f012078746a210a0340200b200a207e6a22062900003703002009200a207b6a2207290000370300200c200a20676a22402900003703002001200a290000370328200220676a229b0129000021002002207b6a229c0129000021032002290000210420062002207e6a229d012900003700002007200337000020402000370000200a200437000020022001290328370000209b01200c290300370000209c012009290300370000209d01200b2903003700002002206d6a2102200a2081016a210a209a0120726a229a010d000b0b208f01450d010b200d208a014b0d0020900120474b0d17209001208f016b210d208f0120726a2102206e208f012078746a210a03402090012002490d19200a200d206b6a220d109f01200220726a210b02402002450d00200a206d6a210a200b2102200d208b01490d010b0b200b206b6a218f01208d01208e01470d020c010b208d01208e01470d010b208d01206b6a2202208d01490d43208d01206b74220a20022002200a491b2202ad2073862200207488a70d432000a7220a2070480d4302400240208d01450d00208c01208d01207574200a1014228c010d010c150b200a1012228c01450d140b2002218d010b208c01208e012075746a2202200d3602042002208f01360200208e01206b6a229a01218e01209a012076490d334103213d0c290b200141286a20a8016a20b30120a8016a290000370300200141286a20a9016a20b30120a9016a290000370300200141286a20aa016a20b30120aa016a290000370300200120b30129000037032820b30120ab016a21b30120a60121b40120a70121b5010c1b0b200128029002220228020021c801200228020421c9014105213d0c290b024020f00122f10120d6016a2202450d0020f10120e8016a21f20120b601200220dc01746a21f30120012802e002280200280200220228020022f40121f501200228020422f60121f7010c1b0b410121fa01410021f00120ee0120ef01460d200c210b209f0220dd016a210a209f022f0106220c20dc017421024100210b024002400240024003402002450d01209d02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a102450d0120a10220d6016a21a102209f02200c20da01746a20de016a280200219f02410621360c170b209f0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20990220d2016a220b209d02209e0220a40220035420a30220005420a3022000511b220a1b220229000037000020990220e0016a200220df016a29000037000020990220e2016a200220e1016a29000037000020990220e3016a200220dd016a290000370000209a02209e02200a1b219a02209602209d02209c02200a1b229c024f0d1a200b21990220d10121a50220d101209a02490d210c1c0b20a70220dd016a210a20a7022f0106220c20dc017421024100210b024002400240024003402002450d0120a502200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a902450d0120a90220d6016a21a90220a702200c20da01746a20de016a28020021a702410721360c170b20a70220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b209c0220980220a50220ac0220035420ab0220005420ab022000511b220a1b2202290000370000209c0220df016a200220df016a290000370000209c0220e1016a200220e1016a290000370000209c0220dd016a200220dd016a29000037000020a50220a50220446a200a1b21a502209c0220446a219c0220980220446a209802200a1b2298022099024f0d1c209a0220a5024b0d210c1a0b20cf0222d00220af026a21cf0220012802900222d10228020421d20220d10221d3020c1c0b411f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b200a41041015000b208f01209001101a000b209001208f01417f6a22024f0d010b2002209001101a000b20900120471049000b410121020c280b410121020c270b410121020c260b4100213d0c0c0b4102213d0c0c0b4104213d0c0d0b4106213d0c0e0b410d213d0c0e0b410e213d0c0e0b410e213d0c0e0b410e213d0c0e0b410f213d0c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b02400240024002400240024002400340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20ee0120d0016a220220ee01490d860120ee0120d00174220a20022002200a491b2202ad20d70186220020d80188a70d86012000a7220a20d401480d86010240024020ee01450d0020ed0120ee0120d90174200a101422ed010d010c050b200a101222ed01450d040b200221ee01410121020c6f0b20ed0120ef0120d901746a220220fa01360204200220f00136020020ef0120d0016a228e0221ef01208e0220da01490d04410a213d0c550b209c0220d2016a219d02209a0220d2016a219e02209b022802002802002202280200229f0221a002200228020422a10221a2020c430b20a602280200280200220228020022a70221a802200228020422a90221aa020c430b200a41041015000b024002400240024002400240024002400240024002400240024002400240024002400240024002400240203d0e110001020304050708090a0d0e1013141819190b203a20146a210a203a2f0106220c20157421024100210b02400240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203c450d01203c20166a213c203a200c2017746a20186a280200213a4100213d0c5a0b203a200b202b746a2034470d500b20014190026a20196a203820196a220a29000037030020014190026a201a6a2038201a6a220b29000037030020014190026a20146a203820146a22092900003703002001203829000037039002200141b8026a20196a220c2037201b6a290000370300200141b8026a201a6a223d2037201c6a290000370300200141b8026a20146a220d2037201d6a290000370300200120372900013703b802201e10122202450d2a2002201f6a20202900a4b1403700002002201a6a202029009db140370000200220146a2020290095b1403700002002202029008db1403700002002201e202110142202450d2b2002203829000037001f200220226a200a290000370000200220236a200b290000370000200220246a2009290000370000200141e0026a20022021103c20262903002103200141e0026a201a6a2903002104200141e0026a20196a2903002100200141e0026a20146a290300213e20012903e002213f2002101f200141286a20196a2020360200200141286a201a6a2027370300201120196a200c2903003700002011201a6a203d290300370000201120146a200d290300370000201120012903b80237000020012000203e7c223e200e203f20285122021b3703282001200320047c203e200054ad7c200e20021b370330200141d0016a200141c0016a20014190026a200141286a10a0010240200141d0016a201a6a2802002202450d00202a280200450d002002101f0b20012802c001213920012802c401213b0c4e0b203920146a210a20392f0106220c20157421024100210b0240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203b450d9201203b20166a213b2039200c2017746a20186a28020021394101213d0c590b2039202c6a200b202b746a2202450d9101200141286a20196a220c2035202d6a290000370300200141286a201a6a220d2035202e6a290000370300200141286a20146a22062035202f6a29000037030020012035290020370328203520146a2903002103203520196a29030021042035290300213e20352903102100200220196a210b2002201a6a210902400240024002402002280218220a200220296a280200470d00200a20136a2202200a490d9801200a2013742207200220022007491b2207ad20307e223f203188a70d9801203fa722402020480d9801200a450d012009280200200a202e6c2040101422020d020c2f0b200928020021020c020b204010122202450d2d0b20092002360200200920326a2007360200200b280200210a0b2002200a202e6c6a220220012903283703102002200420037c2000203e7c2203200054ad7c370308200220033703002002202f6a200c290300370300200220256a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c91010b2063280200220c204c6a210a200c2f0106220d20437421024100210b024002400240024003402002450d012062200a204b1080022209450d022002205f6a2102200b20606a210b200a204b6a210a2009204d4a0d000b200b204d6a210d0b2064450d012064204d6a2164200c200d204e746a204f6a21634102213d0c5d0b200c200b205d746a205e470d010b20014190026a20506a206220506a220a29000037030020014190026a20516a206220516a220b29000037030020014190026a204c6a2062204c6a22092900003703002001206229000037039002200141b8026a20506a220c200a290000370300200141b8026a20516a220d200b290000370300200141b8026a204c6a22362009290000370300200120622900003703b802205210122202450d27200220536a20542900a4b140370000200220516a205429009db1403700002002204c6a2054290095b1403700002002205429008db14037000020022052205510142202450d282002206229000037001f200220566a200a290000370000200220576a200b290000370000200220586a2009290000370000200141e0026a20022055103c200141e0026a204b6a2903002103200141e0026a20516a2903002104200141e0026a20506a2903002100200141e0026a204c6a290300213e20012903e002213f2002101f200141286a20506a2054360200200141286a20516a2059370300204a20506a200c290300370000204a20516a200d290300370000204a204c6a2036290300370000204a20012903b80237000020012000203e7c223e205b203f205a5122021b3703282001200320047c203e200054ad7c205b20021b370330200141d0016a200141b0016a20014190026a200141286a10a001200141d0016a20516a2802002202450d00205c280200450d002002101f0b20612049470d330c87010b02400240024002400240208c01209a01229c0120726a229a012075746a2202280200450d00208c01209c012075746a220c2085016a28020022092002280204220a4d0d004102218e01209c0141024d0d8801208c01209c0120776a22022075746a280204220b200a20096a4d0d014103218e01209c0141034d0d8801200c2086016a280200200b20096a4d0d010c040b209c012075490d012002280204210a208c01209c0120776a22022075746a280204210b0b200b200a490d010b209c012084016a21020b209c012002206b6a229e014d0d24209c0120024d0d25208c0120022075746a229001280204229f012090012802006a2202208c01209e012075746a22a00128020022a101490d22200220474b0d23204620a1012078746a229b0120a001280204229d01207874220a6a210b2002207874210902400240024002400240200220a1016b220c209d016b2202209d014f0d00206c200b2002207874220a10fe012206200a6a210d209d01206b480d012002206b480d01206e20096a2109200b210a0340207910122202450d202002207a6a20702900a4b14022033700002002207b6a207029009db1402204370000200220676a2070290095b140223e3700002002207029008db140223f37000020022079207c10142202450d212002200d206d6a220b29000037001f2002207d6a200b207e6a2900003700002002207f6a200b207b6a29000037000020022080016a200b20676a290000370000200141286a2002207c103c208201290300219701200141286a207e6a228e012903002100200141286a207b6a2207290300219101200141286a20676a224029030021920120012903282193012002101f207910122202450d222002207a6a20033700002002207b6a2004370000200220676a203e3700002002203f37000020022079207c10142202450d232002200a206d6a220c29000037001f2002207d6a200c207e6a2900003700002002207f6a200c207b6a29000037000020022080016a200c20676a290000370000200141286a2002207c103c20820129030021042007290300213e208e0129030021032040290300213f20012903282194012002101f2009200c200b20002092017c229201204820930120485222021b2003203f7c223f204820940120830151228e011b542097012091017c209201200054ad7c204820021b22002004203e7c203f200354ad7c2048208e011b22035420002003511b228e011b22022900003700002009207e6a2002207e6a2900003700002009207b6a2002207b6a290000370000200920676a200220676a290000370000200d200b208e011b210d209b01200c200a208e011b220a4f0d042009206d6a2109200621022006200d490d000c050b0b206c209b01200a10fe012202200a6a210d209d01206b480d01200c209d014c0d01204620096a210720022102209b01210a0340207910122209450d232009207a6a20702900a4b14022033700002009207b6a207029009db1402204370000200920676a2070290095b140223e3700002009207029008db140223f37000020092079207c10142209450d242009200b29000037001f2009207d6a200b207e6a2900003700002009207f6a200b207b6a29000037000020092080016a200b20676a290000370000200141286a2009207c103c208201290300219701200141286a207e6a220c2903002100200141286a207b6a228e01290300219101200141286a20676a220629030021920120012903282193012009101f207910122209450d252009207a6a20033700002009207b6a2004370000200920676a203e3700002009203f37000020092079207c10142209450d262009200229000037001f2009207d6a2002207e6a2900003700002009207f6a2002207b6a29000037000020092080016a200220676a290000370000200141286a2009207c103c2082012903002104208e01290300213e200c29030021032006290300213f20012903282194012009101f200a200b200220002092017c229201204820930120485222091b2003203f7c223f204820940120830151220c1b542097012091017c209201200054ad7c204820091b22002004203e7c203f200354ad7c2048200c1b22035420002003511b220c1b2209290000370000200a207e6a2009207e6a290000370000200a207b6a2009207b6a290000370000200a20676a200920676a290000370000200220022081016a200c1b2102200a2081016a210a200b2081016a200b200c1b220b20074f0d04200d20024b0d000c040b0b200b210a0c010b209b01210a0b206c21020b200a2002200d20026b206d7110fe011a20900120716a209f01209d016a36020020900120a10136020020a00120a00120676a209e01207273209c016a20757410ff011a209a01218e01209a01206b4b0d4e0c84010b209c01218e01208f010d330c84010b20b40120aa016a210a20b4012f0106220c20a4017421024100210b024002400240024003402002450d01200141286a200a20ab011080022209450d02200220b1016a2102200b20b2016a210b200a20ab016a210a200920ac014a0d000b200b20ac016a210c0b20b501450d0120b50120ac016a21b50120b401200c20ad01746a20ae016a28020021b4014104213d0c5d0b20b401200b20af01746a20b001470d010b20b30120a501470d340c87010b200141e0026a41186a2202200141286a41186a290300370300200141e0026a41106a220a200141286a41106a290300370300200141e0026a41086a220b200141286a41086a290300370300200120012903283703e0024120101222b601450d2e20b60120012903e00237000020b60141186a200229030037000020b60141106a200a29030037000020b60141086a200b29030037000020b30120a501460d01410121b701411821b801411021b901410821ba01412021bb01410521bc01417f21bd01410221be0141a80821bf01410621c00141987d21c101420521c201422021c301410021c401416021c501410121c601410121c701410421360c400b200141286a20b8016a22ca0120b30120b8016a290000370300200141286a20b9016a22cb0120b30120b9016a290000370300200141286a20ba016a22cc0120b30120ba016a290000370300200120b30129000037032820b30120bb016a21b30120c80121cd0120c90121ce010c6b0b410121c601410121c7010c790b20f50120dd016a210a20f5012f0106220c20dc017421024100210b024002400240024003402002450d0120f301200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20f701450d0120f70120d6016a21f70120f501200c20da01746a20de016a28020021f5014106213d0c5b0b20f50120e5016a200b20e401746a2202450d00200220dd016a29030021f801200229030021f9012002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020f8017c2002290300220020f9017c22f901200054ad7c21f801200220e6016a2102200a20e7016a220a0d000c020b0b420021f901420021f8010b20b60120f20120dc01746a21fb0120f40121fc0120f60121fd010c4a0b20fc0120dd016a210a20fc012f0106220c20dc017421024100210b024002400240024003402002450d0120fb01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20fd01450d0120fd0120d6016a21fd0120fc01200c20da01746a20de016a28020021fc014107213d0c5c0b20fc0120e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20f90120035420f80120005420f8012000511b450d4a4108213d0c5a0b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21fe0120f40121ff0120f6012180020c680b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21860220f40121870220f6012188020c680b410021f0010c690b410021f00120f10121fa010c6a0b024002400240024020ed01208e02228f0220d6016a228e0220d901746a2202280200450d0020ed01208f0220d901746a220c20e9016a28020022092002280204220a4d0d00410221ef01208f0241024d0d0b20ed01208f0220db016a220220d901746a280204220b200a20096a4d0d01410321ef01208f0241034d0d0b200c20ea016a280200200b20096a4d0d010c0c0b208f0220d901490d012002280204210a20ed01208f0220db016a220220d901746a280204210b0b200b200a490d010b208f0220e8016a21020b208f02200220d0016a2290024d0d20208f0220024d0d2120ed01200220d901746a2291022802042292022091022802006a220220ed0120900220d901746a229302280200229402490d22200220c6014b0d2320910220d5016a21950220b60120940220dc01746a22960220930228020422970220dc0174220a6a21980220b601200220dc01746a21990220022094026b220b2097026b22022097024f0d0120d101209802200220dc0174220a10fe01200a6a219a0220970220d001480d03200220d001480d0320012802e002219b02209802219c02410221020c710b20a00220dd016a210a20a0022f0106220c20dc017421024100210b02400240024003402002450d01209e02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a202450d0120a20220d6016a21a20220a002200c20da01746a20de016a28020021a002410b213d0c5b0b20a00220e5016a200b20e401746a2202450d00200220dd016a29030021a302200229030021a4022002280218220a450d2d20022802102102200a20e6016c210a0340200220dd016a29030020a3027c2002290300220020a4027c22a402200054ad7c21a302200220e6016a2102200a20e7016a220a0d000c300b0b420021a402420021a3020c2d0b20d101209602200a10fe012202200a6a219a0220970220d001480d02200b2097024c0d0220012802e00221a602200221a502209602219c02410321020c6f0b20a80220dd016a210a20a8022f0106220c20dc017421024100210b02400240024003402002450d01209802200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20aa02450d0120aa0220d6016a21aa0220a802200c20da01746a20de016a28020021a802410c213d0c5b0b20a80220e5016a200b20e401746a2202450d00200220dd016a29030021ab02200229030021ac022002280218220a450d2e20022802102102200a20e6016c210a0340200220dd016a29030020ab027c2002290300220020ac027c22ac02200054ad7c21ab02200220e6016a2102200a20e7016a220a0d000c310b0b420021ac02420021ab020c2e0b209802219c020c450b209602219c02410d213d0c590b20d10121a502410e213d0c590b209c0220a502209a0220a5026b20d2017110fe011a2095022092022097026a36020020910220940236020020930220930220dd016a20900220d60173208f026a20d9017410ff011a208e0221ef01208e0220d0014b0d3f0b20f0010d230c010b208f0221ef0120f0010d230b024020ee01450d0020ed01101f0b20cf01450d6920d101101f0c690b20d30228020022d4022f0106220c20ad027421024100210b20d40220b0026a220d210a0240024003402002450d0120d002200a20af021080022209450d02200220cc026a2102200b20b4026a210b200a20af026a210a200920b1024a0d000b200b20b1026a210c0b20d202450d0420d20220b1026a21d20220d402200c20b202746a20b3026a21d302410f213d0c560b20d10220d10228020820b1026a3602080240024020d202450d0020d40220b6026a200b20b502746a210920d402200b20ad02746a20b0026a210c20d402200b20b202746a20c1026a2802002102024020d20220b402460d0020b40220d2026b210a034020022802a8082102200a20b4026a220a0d000b0b200220c20220022f01061b22d402290008210020d40220ba026a290000210320d40220bb026a290000210420d40220af026a290000213e20d40220b0026a20d40220bc026a20d4022f0106220220ad027420cc026a10ff011a20d40220c8026a290300213f20d4022903880321970120d40220c5026a29030021910120d40220c4026a29030021920120d40220c3026a29030021930120d4022903e80221940120d40220c9026a29030021950120d40220c7026a29030021960120d40220b6026a20d40220ca026a200220b5027420cd026a10ff011a20d402200220b1026a3b0106200c20bb026a203e370000200c2004370010200c2003370008200c2000370000200920bb026a209601370300200920b0026a2095013703002009209401370300200920be026a209301370200200920bd026a209201370200200920bc026a2091013702002009209701370220200920ba026a220229030021002002203f3703002000a721d502200020ce0288a721d60220d4022f010620b8024d0d010c030b200d200b20ad02746a200d200b20b4026a220a20ad02746a200b20b10273220920d4022f01066a20ad027410ff011a20d40220b6026a220c200b20b502746a220220b7026a28020021d602200228021021d5022002200c200a20b502746a200920d4022f01066a20b5027410ff011a20d40220d4022f010620b1026a3b010620d4022f010620b8024b0d020b410021d7024110213d0c560b20d4022802002209450d000240024020d4022f01042202450d00200220b1026a210b410121070c010b4100210b4100210720092f0106450d190b024002400240024002400240024002400240200920b3026a229001200b20b4026a220c20b2027422a1016a22a001280200220a2f0106220d209001200b20b2027422d8026a220228020022062f010622406a20b9024f0d0020d70220b4026a21d70220a001280200229b012f010621072002280200220d2f01062140200141286a20b0026a2206200920b0026a220a200b20ad02746a220220b0026a290000370300200141286a20ba026a229c01200220ba026a290000370300200141286a20bb026a229d01200220bb026a290000370300200120022900003703282002200a200c20ad02746a200b20b10273229e0120092f01066a20ad027410ff011a200d20b0026a220a204020ad02746a220220bb026a209d01290300370000200220ba026a209c01290300370000200220b0026a200629030037000020022001290328370000200a204020b4026a220220ad02746a209b0120b0026a200720ad027410fe011a2006200920b6026a229f01200b20b502746a220a20b0026a290300370300209c01200a20ba026a290300370300209d01200a20bb026a290300370300200141286a20af026a22d902200a20af026a290300370300200141286a20bc026a22da02200a20bc026a290300370300200141286a20bd026a22db02200a20bd026a290300370300200141286a20be026a22dc02200a20be026a2903003703002001200a290300370328200a209f01200c20b502746a209e0120092f01066a20b5027410ff011a200d20b6026a229e01204020b502746a220a20be026a20dc02290300370300200a20bd026a20db02290300370300200a20bc026a20da02290300370300200a20af026a20d902290300370300200a20bb026a209d01290300370300200a20ba026a209c01290300370300200a20b0026a2006290300370300200a2001290328370300209e01200220b502746a209b0120b6026a200720b5027410fe011a20a001209001200b20b2026a220a20b202746a20bf0220a1016b10ff01210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920d8026a20c0026a210b0340200b280200220c200a3b0104200c2009360200200b20b8026a210b2006200a20b4026a220a470d000b0b200920092f010620b1026a3b0106200d2007200d2f01066a20b4026a3b0106024020d70220b202490d00200d200220b202746a20b3026a209b0120b3026a200720b2027420b8026a10fe011a2002204020076a20b2026a4f0d00200720b4026a210b200d204020b202746a20c1026a210a0340200a280200220c20023b0104200c200d360200200a20b8026a210a200220b4026a2102200b20b1026a220b0d000b0b209b01101f20092f01062202450d01200921d402200220ad02490d470c090b2007450d012006204020b1026a220a20b502746a220220c3026a2903002100200220c4026a2903002103200220c5026a2903002104200220c6026a290300213e200220c7026a290300213f200220c8026a290300219701200220c9026a290300219101200220b6026a2903002192012006200a20ad02746a220220af026a290000219301200220bb026a290000219401200220ba026a290000219501200220b0026a29000021960120d702450d022006204020b202746a20b3026a280200220a20c2023602000c030b20d10220d10228020022022802a808220a36020020d10220d10228020420b1026a360204200a20c2023602002002101f20d5020d080c090b200a20af026a2900002100200a20bb026a2900002103200a20ba026a2900002104200a290008213e200a20b0026a200a20bc026a200d20ad027420cc026a10ff011a200a20c3026a290300213f200a20c4026a290300219701200a20c5026a290300219101200a20c7026a290300219201200a20c8026a290300219301200a20c9026a290300219401200a29038803219501200a2903e802219601200a20b6026a200a20ca026a200a2f010620b5027420cd026a10ff011a20d702450d02200a2802a8082107200a20b3026a220c200a20c1026a200d20b2027410ff011a200720c202360200200d450d03410021360340200c280200220620363b01042006200a360200200c20b8026a210c200d203620b4026a2236470d000c040b0b4100210a0b200620062f010620b1026a3b01062009200b20ad02746a220220af026a220c290000219801200c209301370000200220bb026a220c290000219301200c209401370000200220ba026a220c290000219401200c209501370000200220b0026a220229000021950120022096013700002009200b20b502746a220220c7026a220b290300219601200b203f370300200220c8026a220b290300213f200b209701370300200220c9026a220b290300219701200b209101370300200220b6026a220b290300219101200b209201370300200220c3026a220b290200219201200b2000370200200220c4026a220b2902002100200b2003370200200220c5026a220b2902002103200b2004370200200220c6026a220229020021042002203e37020020a001280200210b20d702450d02200a450d1e200b20bc026a200b20b0026a200b2f0106220220ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200220b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b20c6026a2004370300200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b20c1026a200b20b3026a2202200b2f010620b2027420b8026a10ff011a200b200a3602a808200b200b2f010620b4026a220a3b0106200a20cb027120b4026a210c4100210a034020022802002209200a3b01042009200b360200200220b8026a2102200c200a20b4026a220a470d000c050b0b410021070b200a20b5026a220a200a2f010020b1026a3b01002009200b20ad02746a220a20af026a220c290000219801200c2000370000200a20bb026a220c2900002100200c2003370000200a20ba026a220c2900002103200c2004370000200a20b0026a220a2900002104200a203e3700002009200b20b502746a220a20c7026a220b290300213e200b209201370300200a20c8026a220b290300219201200b209301370300200a20c9026a220b290300219301200b209401370300200a20b6026a220b290300219401200b209601370300200a20c3026a220b290200219601200b203f370200200a20c4026a220b290200213f200b209701370200200a20c5026a220b290200219701200b209101370200200a20c6026a220a290200219101200a2095013702002002280200210220d702450d012007450d1d200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c7026a203e370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a2094013703002002200b20b4026a220a20b202746a20b3026a220b2007360200200220022f010620b4026a3b0106200b280200220b200a3b0104200b200236020020d5020d030c040b200b20bc026a200b20b0026a200b2f010620ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200b2f010620b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b200437038803200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b200b2f010620b4026a3b010620d5020d020c030b200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a209401370300200a20c7026a203e370300200220022f010620b4026a3b01060b20d502450d010b20d602450d0020d502101f0b20cf0220ae02470d240c650b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b20a1012002101a000b200220471049000b41ecbdc200209e01209c011048000b41ecbdc2002002209c011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b204041081015000b41ecbdc200209002208f021048000b41ecbdc2002002208f021048000b2094022002101a000b200220c6011049000b41dcc0c2001024000b412041011015000b41d4c7c2001024000b41d4c7c2001024000b410121360c0b0b410221360c0b0b410321360c0b0b410521360c0c0b410521360c0c0b410621360c0c0b410621360c0c0b410621360c0c0b410721360c0c0b410721360c0c0b410721360c0c0b410821360c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b4101213d0c0b0b4101213d0c0b0b4103213d0c0c0b4107213d0c0e0b4109213d0c100b410a213d0c100b410b213d0c110b410c213d0c120b410d213d0c130b4110213d0c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20cd0120ba016a210a20cd012f0106220c20bc017421024100210b024002400240024003402002450d01200141286a200a20bb011080022209450d02200220c5016a2102200b20b7016a210b200a20bb016a210a200920bd014a0d000b200b20bd016a210c0b20ce01450d0120ce0120bd016a21ce0120cd01200c20be01746a20bf016a28020021cd01410021020c110b20cd01200b20c001746a20c101470d010b20b30120a501470d070c1b0b200141e0026a20b8016a220220ca01290300370300200141e0026a20b9016a220a20cb01290300370300200141e0026a20ba016a220b20cc01290300370300200120012903283703e00220ca01200229030037030020cb01200a29030037030020cc01200b290300370300200120012903e002370328024020c70120c601470d0020c60120b7016a220220c601490d3120c60120b70174220a20022002200a491b22c701ad20c20186220020c30188a70d312000a7220220c401480d31024020c601450d0020b60120c60120bc01742002101422b6010d010c060b2002101222b601450d050b20b60120c60120bc01746a22022001290328370000200220b8016a20ca01290300370000200220b9016a20cb01290300370000200220ba016a20cc0129030037000020c60120b7016a21c60120b30120a501470d050c1a0b20ff0120dd016a210a20ff012f0106220c20dc017421024100210b024002400240024003402002450d0120fe01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208002450d0120800220d6016a21800220ff01200c20da01746a20de016a28020021ff01410121020c100b20ff0120e5016a200b20e401746a2202450d00200220dd016a29030021810220022903002182022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002081027c200229030022002082027c228202200054ad7c218102200220e6016a2102200a20e7016a220a0d000c020b0b420021820242002181020b20b60120f20120dc01746a21830220f40121840220f6012185020c0b0b20840220dd016a210a2084022f0106220c20dc017421024100210b024002400240024003402002450d01208302200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208502450d0120850220d6016a218502208402200c20da01746a20de016a280200218402410221020c0f0b20840220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b2082022003542081022000542081022000511b0d050c0d0b20870220dd016a210a2087022f0106220c20dc017421024100210b024002400240024003402002450d01208602200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208802450d0120880220d6016a218802208702200c20da01746a20de016a280200218702410321020c0e0b20870220e5016a200b20e401746a2202450d00200220dd016a2903002189022002290300218a022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002089027c20022903002200208a027c228a02200054ad7c218902200220e6016a2102200a20e7016a220a0d000c020b0b4200218a0242002189020b20b60120f20120dc01746a218b0220f401218c0220f601218d020c0a0b208c0220dd016a210a208c022f0106220c20dc017421024100210b024002400240024003402002450d01208b02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208d02450d01208d0220d6016a218d02208c02200c20da01746a20de016a280200218c02410421020c0d0b208c0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b208a0220035a20890220005a2089022000511b0d0420f10120f0016b21fa0120f0010d0c0c0d0b200241011015000b41042136410121020c280b4105213d0c020b4108213d0c020b4109213d0c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20f10120f001490d0220f10120c6014b0d05024020f10120f0016b22fa0120d00176220a450d0020b60120f00120dc01746a21020340200141286a20df016a220b200220df016a2209290000370300200141286a20e1016a220c200220e1016a220d290000370300200141286a20dd016a2206200220dd016a22072900003703002001200229000037032820f30120dd016a2240290000210020f30120e1016a229b01290000210320f3012900002104200920f30120df016a229c01290000370000200d2003370000200720003700002002200437000020f301200129032837000020402006290300370000209b01200c290300370000209c01200b29030037000020f30120d2016a21f301200220446a2102200a20d6016a220a0d000b0b20f001450d010b20fa0120eb014b0d0020f10120c6014b0d0220f10120f0016b21fa0120f00120d6016a210220d30120f00120dc01746a210a034020f1012002490d04200a20fa0120d0016a22fa01200141e0026a10a101200220d6016a210b02402002450d00200a20d2016a210a200b210220fa0120ec01490d010b0b200b20d0016a21f00120ee0120ef01460d060c070b20ee0120ef01470d04410021020c070b20f00120f101101a000b20f10120f001417f6a22024f0d010b200220f101101a000b20f10120c6011049000b410121020c020b410021020c010b410121020c000b0b024020a201450d0020a301101f0b20c60120694d0d01200120014190026a3602b8022001200141b8026a3602e002024020c60141144b0d0020c60141014d0d0120c601417e6a210220b60120c6014105746a41406a210a4102210b034020c6012002490d04200a200b200141e0026a10a101200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20c60141017622cf01ad2200421b88a70d142000420586a72244417f4c0d14410121d001410121d10102402044450d002044101222d101450d040b416021d20120b60141606a21d301410021d401410421d501417f21d601420321d701422021d801410321d901410221da01417d21db01410521dc01410821dd0141a80821de01411821df01417821e001411021e101417021e201416821e30141202144410621e40141e80221e501413021e601415021e701417e21e801417421e901416421ea01410921eb01410a21ec01410421ed01410021ee01410021ef0120c60121f001410521360c040b20c60120696b2202450d00410521ad0220b60120024105746a21ae02412021af02410821b002417f21b102410221b20241a80821b302410121b402410621b50241e80221b602411421b702410421b802410b21b902411021ba02411821bb02412821bc02413021bd02413821be02412c21bf0241b00821c00241ac0821c102410021c20241a00321c30241980321c40241900321c50241880321c60241800321c70241f80221c80241f00221c90241a80321ca0241ffff0321cb02416021cc02414021cd02422021ce0220b60121cf02410821360c040b20c701450d0920b601101f0c090b200220c601101a000b204441011015000b410121020c0e0b410121020c0d0b208f010d010b0240208d01450d00208c01101f0b206a450d0e206c101f0c0e0b41022136410121020c0a0b02402042450d002041101f0b20012802b8012102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d04200220012802e002470d010c030b2002410a460d020b200141b0016a41086a2802002102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d05200220012802e0024b0d010c030b2002410a4d0d020b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d0620012802e00221690c010b410a21690b200141b0016a41086a28020021022001200141b0016a36029002200220694d0d01200141e0026a41086a22024200370300200142003703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328410021a20102400240200141286a411041e4a4c100410041001001417f460d00200142103702bc022001200141286a3602b802200141e0026a200141b8026a104020012802e00222a301450d0820012802e40221a201410521a401200141e8026a28020041057422020d010c020b410121a301410521a40141004105742202450d010b20a30120026a21a501200128029002220228020021a601200228020421a701411821a801411021a901410821aa01412021ab01417f21ac01410221ad0141a80821ae01410621af0141987d21b001416021b101410121b20120a30121b301410321360c070b20a201450d0020a301101f0b200141186a200141b0016a4101109b01200141b8016a280200210b20012802b00121440240024020012802b40122d001450d0020d001210a20442102034020022802a8082102200a417f6a220a0d000b0340204420442f01064102746a41a8086a280200214420d001417f6a22d0010d000c020b0b204421020b200141ac026a20442f0106360200410021d00120014190026a41186a4100360200200141a4026a20443602002001200b3602b002200141003602a002200142003703980220012002360294022001410036029002200141286a20014190026a10a2010240024002400240024002400240024020012802582202450d00200141e0026a41086a2244200141e4006a290200370300200141e0026a41106a22d001200141ec006a290200370300200141e0026a41186a220a200141f4006a290200370300200141e0026a41206a220b200141fc006a290200370300200141e0026a41286a22d20120014184016a2802003602002001200129025c3703e002200141286a41286a22d601290300210e200129034821830120d60120d201280200360200200141286a41206a200b290300370300200141286a41186a200a290300370300200141286a41106a20d001290300370300200141286a41086a2044290300370300200120012903e002370328417f20014190026a41206a280200224441016a22d00120d0012044491b220cad2248421a88a70d102048420686a72244417f4c0d102044450d0120441012223d450d0b203d21670c020b20014190026a109c014108213d4100210c410821670c020b4108213d410821670b2067208301370300206720023602102067200e370308206741146a20012903283702002067411c6a200141286a41086a290300370200206741246a200141286a41106a227b2903003702002067412c6a200141286a41186a2209290300370200206741346a200141286a41206a220b2903003702002067413c6a200141286a41286a22d201280200360200200141b8026a41206a22e70120014190026a41206a280200360200200141b8026a41186a20014190026a41186a290300370300200141b8026a41106a20014190026a41106a290300370300200141b8026a41086a20014190026a41086a29030037030020012001290390023703b802200141286a200141b8026a10a201024002402001280258227c450d00200141286a41346a2102200141d8006a21e601410221d60141c000210a410121d0010340200141e0026a41086a2244200241086a290200370300200141e0026a41106a2279200241106a290200370300200141e0026a41186a227e200241186a290200370300200141e0026a41206a22dd01200241206a290200370300200141e0026a41286a22ee01200241286a280200360200200120022902003703e00220d2012903002148200b290300210e20d20120ee01280200360200200b20dd012903003703002009207e290300370300207b2079290300370300200141286a41086a22792044290300370300200120012903e002370328024020d001200c470d0020d001417f20e701280200224441016a226720672044491b6a224420d001490d1220d6012044204420d601491b220cad420686228301422088a70d12208301a722444100480d120240024020d001450d00203d200a20441014223d0d010c070b20441012223d450d060b203d21670b2067200a6a224420483703082044200e370300204441106a207c3602002044413c6a20d201280200360200204441346a200b2903003702002044412c6a2009290300370200204441246a207b2903003702002044411c6a2079290300370200204441146a200129032837020020d60141026a21d601200a41c0006a210a20d00141016a21d001200141286a200141b8026a10a20120e601280200227c0d000c020b0b410121d0010b200141b8026a109c010b200141e0026a41086a22444200370300200142003703e00241b4bfc000411f200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e0022183010c010b42e8072183010b2001410036023020014201370328206720d001200141286a106c200128022c21022001280230210a20012802282144200141e0026a41086a220b4200370300200142003703e002419596c1004115200141e0026a1000200141286a41086a200b290300370300200120012903e002370328200141286a41102044200a100402402002450d002044101f0b024020d001450d0020d0014106742102206741106a214403400240204441046a280200450d002044280200101f0b204441c0006a2144200241406a22020d000b0b0240200c450d00203d101f0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22022044290300370300200120012903e0023703284200210e0240200141286a411041e4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e002210e0b2001200e2083017c220e3703b80220444200370300200142003703e00241aa96c1004112200141e0026a100020022044290300370300200120012903e002370328200141286a4110200141b8026a41081004200141286a41106a200e37030020024201370300200141093a0028200141286a102720444200370300200142003703e00241dd81c000410d200141e0026a100020022044290300370300200120012903e0023703280240200141286a411041e4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0420012903e00221480b200141386a2048370300200141083a0028200141286a41086a41073a0000200141286a10272005450d112008101f0c110b204441081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b204441081015000b41de86c00041331023000b410121020c010b02402035200f6a22352010470d00410021020c010b41002136410121020c000b0b100f000b1010000b204720686b210b204621670b2067200b109d01200141e0026a41086a22444200370300200142003703e00241f9bec000411c200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41102065206620661001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d001210e0c010b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041e4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d00121480b20012048200e7c37033020014201370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541033a0000200141286a10272045450d010b2046101f20014190036a24000f0b20014190036a24000f0b41de86c00041331023000b41de86c00041331023000bc92007107f017e027f027e017f097e027f230041f0016b22022400200241e0016a41086a22034200370300200242003703e00141c5b2c0004115200241e0016a1000200241f0006a41086a22042003290300370300200220022903e0013703700240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241f0006a411041e4a4c100410041001001417f460d00200242103702542002200241f0006a3602502002200241d0006a108f0120022903004203510d0141feb2c0002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703e00141dab2c0004124200241e0016a100020042003290300370300200220022903e0013703700240200241f0006a411041e4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0c200241d8006a280200210302402002280254450d002004101f2003450d010c130b20030d120b200241e0016a41086a22034200370300200242003703e00141e6b3c000411a200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041e4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0e200241d8006a280200210302402002280254450d002004101f2003450d010c120b20030d110b200241e0016a41086a22034200370300200242003703e0014180b4c000411b200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041e4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0f200241d8006a280200210302402002280254450d002004101f2003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b02400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210122203450d12200341206a41002f00bbb44022173b0000200341186a41002900b3b4402218370000200341106a41002900abb4402219370000200341086a41002900a3b440221a3700002003410029009bb440221b3700002003412241c40010142203450d13200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241e0016a41086a22014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21062003101f4122101221030240024002402006450d002003450d18200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d19200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0006a200341c200103c200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f200229037021202003101f412210122203450d1a200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1b200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122204450d1c2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010142204450d1d2004201e4200202042015122071b370010200441186a201f420020071b37000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102004412010042004101f2003101f2012422088a741306c22030d010c020b2003450d1d200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1e200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122206450d1f200620163700002006201537000820064110412010142206450d2020064200370010200641186a420037000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102006412010042006101f2003101f200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d0f200e4101742204200320032004491b220fad4205862215422088a70d0f2015a722034100480d0f0240200e450d002010200e4105742003101422100d010c240b200310122210450d230b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210122204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21222004101f41221012210402402022450d002004450d09200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0a200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000200241f0006a200441c200103c200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f200229037021202004101f412210122204450d0b200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0c200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122207450d0d2007201e4200202042015122051b3700002007201f420020051b37000820074110412010142207450d0e2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c37000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102007412010042007101f2004101f200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122222450d11202242003700082022420037000020224110412010142222450d1220222016370010202241186a201537000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102022412010042022101f2004101f200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d0f200e4101742207200420042007491b220fad4205862215422088a70d0f2015a722044100480d0f0240200e450d002010200e4105742004101422100d010c150b200410122210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d002013101f0b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d002004101f0b2003211420012003470d000b0b0240200b450d002008101f0b2002200e3602782002200f3602742002201036027020024124360254200241dab2c000360250200241f0006a200241d0006a10620240200f450d002010101f0b200241083a007041002105200241f0006a41086a41003a0000200241f0006a10271090010c240b412241011015000b41c40041011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b1010000b412241011015000b41c40041011015000b411041011015000b412041011015000b200441011015000b412241011015000b41c40041011015000b41de86c00041331023000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b41de86c00041331023000b200341011015000b41de86c00041331023000b41de86c00041331023000b41cdb3c00021054119210620012802002107200128020822030d020c030b41b5b3c00021054118210620012802002107200128020822030d010c020b419ab3c0002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d002003280200101f0b200341c0006a2103200441406a22040d000b0b200141046a280200450d002007101f0b2000200636020420002005360200200241f0016a24000b130020004100360204200041e4a4c1003602000b130020004107360204200041b19bc0003602000b13002000410236020420004180dcc1003602000b130020004102360204200041c8ddc1003602000b130020004108360204200041a69dc0003602000b130020004107360204200041a8dfc1003602000b130020004101360204200041bce5c1003602000b130020004109360204200041d0adc0003602000b130020004103360204200041c0e6c1003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242053700000f0b410841011015000bca0203027f017e017f230041206b22022400024002400240024002400240024002400240200028020022034101460d0020034102470d01410110122203450d03200341023a00002000290308210420034101410910142200450d04200020043700010c020b410110122203450d04200341013a00002000290308210420034101410910142200450d05200020043700010c010b410110122203450d05200341003a00002000290308210420034101410910142200450d06200020043700010b2001280204210320012802002101200241106a41086a220542003703002002420037031020012003200241106a1000200241086a200529030037030020022002290310370300200241102000410910042000101f200241206a24000f0b410141011015000b410941011015000b410141011015000b410941011015000b410141011015000b410941011015000b970302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081001210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d00082203450d0120034101460d0220034102470d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420221050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420021050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000bfe0402047f027e23004190016b22002400200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a200129030037030020002000290308370378024002400240200041f8006a411041e4a4c100410041001001417f460d0020004100360208200041f8006a4110200041086a41044100100141016a41044d0d02200028020841016a21020c010b410121020b2000200236028c01200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a2203200129030037030020002000290308370378200041f8006a41102000418c016a41041004200142003703002000420037030841d2b4c0004120200041086a100020032001290300370300200020002903083703780240024002400240200041f8006a411041e4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821040c010b42e40021040b200041086a41086a220142003703002000420037030841dd81c000410d200041086a1000200041f8006a41086a200129030037030020002000290308370378420021050240200041f8006a411041e4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821050b2000200520047c370310200042003703082000411536027c200041c5b2c000360278200041086a200041f8006a108e01200041146a2002360200200041083a0008200141013a0000200041086a102720004190016a24000f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b13002000411136020420004198edc1003602000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241143600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011015000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011015000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010122206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010142206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110142206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011015000b41c00041011015000b41800141011015000b6101017f02400240411010122202450d00200242003700082002420037000020024110412010142202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011015000b412041011015000b3101017f0240410110122202450d00200042818080801037020420002002360200200241013a00000f0b410141011015000b13002000410f360204200041d8b7c0003602000b821103077f047e0a7f230041c0026b2202240002400240411510122203450d002003410d6a4100290095bb40370000200341086a4100290090bb4037000020034100290088bb4037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1000200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a411041e4a4c100410041001001417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22044200370300200242003703284100210502404100200241b0016a4110200241286a41204100100122012001417f461b2201411f4d0d00200241186a2205200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200429030037030020022002290328370300200241a0026a41186a2005290300370300200241a0026a41106a2006290300370300200241a0026a41086a2007290300370300200220022903003703a002410121050b200241186a2204200241a0026a41186a290300370300200241106a2206200241a0026a41106a290300370300200241086a2207200241a0026a41086a290300370300200220022903a0023703002005450d02200241e0016a41186a2004290300370300200241e0016a41106a2006290300370300200241e0016a41086a2007290300370300200220022903003703e001200241286a41186a4200370300200241286a41106a4200370300200241286a41086a4200370300200242003703284100200241b0016a4110200241286a41202001412020014120491b2205100122012001417f461b2201411f4d0d02200241186a2204200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200241286a41086a22082903003703002002200229032837030020024180026a41186a200429030037030020024180026a41106a200629030037030020024180026a41086a2007290300370300200220022903003703800220024200370330200242003703284100200241b0016a4110200241286a41102001412020014120491b20056a2205100122012001417f461b2201410f4d0d02200829030021092002290328210a20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20056a2205100122012001417f461b2201410f4d0d02200241306a290300210b2002290328210c200241003a0028200241b0016a4110200241286a41012001411020014110491b20056a2201100141016a22054102490d024100210d024020022d00282204450d0020044101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a41202001200541014b6a10012201417f460d0320014120490d03200241a0026a41186a200241286a41186a290300370300200241a0026a41106a200241286a41106a290300370300200241a0026a41086a200241286a41086a290300370300200220022903283703a0024101210d0b200241286a41186a220e200241a0026a41186a220f290300370300200241286a41106a2210200241a0026a41106a2211290300370300200241286a41086a2212200241a0026a41086a2213290300370300200220022903a002370328200f200241e0016a41186a22012903003703002011200241e0016a41106a22052903003703002013200241e0016a41086a2204290300370300200241c0016a41086a221420024180026a41086a2206290300370300200241c0016a41106a221520024180026a41106a2207290300370300200241c0016a41186a221620024180026a41186a2208290300370300200220022903e0013703a00220022002290380023703c001200241cb006a200241036a280000360000200220022800003602482008200f2903003703002007201129030037030020062013290300370300200420142903003703002005201529030037030020012016290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200e2903003703002002411f6a2210200241286a411f6a290000370000200220022903a00237038002200220022903c0013703e00120022002290328370300200e200b370300200241286a41286a2006290300370300200241286a41306a2007290300370300200241286a41386a2008290300370300200241286a41c8006a2004290300370300200241286a41d0006a2005290300370300200241286a41d8006a20012903003703002002200c370338200220093703302002200a3703282002200229038002370348200220022903e001370368200041186a200b3703002000200c370310200020093703082000200a370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a20102900003700002000200229038002370320200041286a2006290300370300200041306a2007290300370300200041386a20082903003703002002200d3a0088012000200d3a0060200041d8006a2001290300370300200041d0006a2005290300370300200041c8006a2004290300370300200020022903e00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010fd011a0b2003101f200241c0026a24000f0b41de86c00041331023000b411541011015000b413541011015000bf80303027f027e027f230041206b220224000240024002400240412010122203450d0020032000290020370000200341186a200041386a290000370000200341106a200041306a290000370000200341086a200041286a2900003700002003412041c00010142203450d0120032000290040370020200341386a200041d8006a290000370000200341306a200041d0006a290000370000200341286a200041c8006a290000370000200041086a290300210420002903002105200341c00041800110142203450d0220032005370040200341c8006a200437000020032000290310370050200341d8006a200041186a2903003700000240024020002d00604101470d00200341e0006a41013a0000200341800141800210142203450d05200341f9006a200041f9006a290000370000200341f1006a200041f1006a290000370000200341e9006a200041e9006a2900003700002003200041e1006a29000037006141810121000c010b200341e0006a41003a000041e10021000b2001280204210620012802002101200241106a41086a220742003703002002420037031020012006200241106a1000200241086a200729030037030020022002290310370300200241102003200010042003101f200241206a24000f0b412041011015000b41c00041011015000b41800141011015000b41800241011015000b85260b1a7f027e087f067e017f027e017f037e1e7f027e0b7f230041e0006b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b41c200211c4201211d4200211e4100211f0c010b410021000c010b410121000b034002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341086a41086a20002903003703002003200329033037030802400240024002400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402234450d03200328024421350240200341c0006a41086a22362802002200450d0020004105742137203421040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411510122200450d032000410d6a4100290095bb40370000200041086a4100290090bb4037000020004100290088bb4037000020004115413510142200450d04200441206a2104200020032903083700152000412d6a2025290300370000200041256a20262903003700002000411d6a2038290300370000200341306a41086a222542003703002003420037033020004135200341306a10002036202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2035450d002034101f0b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341c0006a41086a200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a20002903003703002003200329033037030802400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402239450d052003280244213a4105213b200341c8006a28020041057422000d010c0c0b410121394100213a4105213b41004105742200450d0b0b203920006a213c2001280200213d2001280204213e4118213f411021404108214141202137417f21384102214241a80821434106214441987d21454160213441012136203921354101211f0c050b411541011015000b413541011015000b41de86c00041331023000b41de86c00041331023000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a203f6a2035203f6a290000370300200341086a20406a203520406a290000370300200341086a20416a203520416a29000037030020032035290000370308203520376a2135203d2146203e21470c030b200341086a204a6a225a2035204a6a290000370300200341086a204b6a225b2035204b6a290000370300200341086a204c6a225c2035204c6a290000370300200320352900003703082035204d6a2135203d215d203e215e0c030b410121000c0f0b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d012020200420101080022226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204620416a210420462f01062224203b7421004100212502400240024003402000450d01200341086a200420371080022226450d02200020346a2100202520366a2125200420376a2104202620384a0d000b202520386a21240b2047450d01204720386a2147204620242042746a20436a2802002146410121000c030b204620252044746a2045460d002035203c470d090c100b200341c0006a41186a2200200341086a41186a290300370300200341c0006a41106a2204200341086a41106a290300370300200341c0006a41086a2225200341086a41086a29030037030020032003290308370340412010122248450d0720482003290340370000204841186a2000290300370000204841106a2004290300370000204841086a20252903003700002035203c460d03410121494118214a4110214b4108214c4120214d4105214e417f214f4102215041a80821514205215242202153410021544106215541987d21564160215741012158410121594102211f0c0e0b205d204c6a2104205d2f01062224204e742100410021250240024003402000450d01200341086a2004204d1080022226450d02200020576a2100202520496a21252004204d6a21042026204f4a0d000b2025204f6a21240b205e450d02205e204f6a215e205d20242050746a20516a280200215d410221000c010b0b205d20252055746a2056460d002035203c470d070c020b200341c0006a204a6a2200205a290300370300200341c0006a204b6a2204205b290300370300200341c0006a204c6a2225205c29030037030020032003290308370340205a2000290300370300205b2004290300370300205c202529030037030020032003290340370308024020592058470d00205820496a22002058490d0320582049742204200020002004491b2259ad2052862227205388a70d032027a722002054480d0302402058450d0020482058204e742000101422480d010c050b200010122248450d040b20482058204e746a220020032903083700002000204a6a205a2903003700002000204b6a205b2903003700002000204c6a205c290300370000205820496a21582035203c470d070c010b41012158410121590b0240203a450d002039101f0b20482058109d012059450d0b2048101f0c0b0b1010000b200041011015000b412041011015000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c0e0b410121000c0d0b410121000c0c0b410121000c0b0b0240203a450d002039101f0b41014100109d010b200341306a41086a220042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a2000290300370300200320032903303703080240024002400240024002400240024002400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d07200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411f10122200450d04200041176a41002900a4b140370000200041106a410029009db140370000200041086a4100290095b1403700002000410029008db1403700002000411f413f10142200450d03200441206a21042000200329030837001f200041376a20252903003700002000412f6a2026290300370000200041276a2038290300370000200341306a41086a22254200370300200342003703302000413f200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a222542003703002003420037033041e6b3c000411a200341306a1000200341c0006a41086a202529030037030020032003290330370340200341c0006a4110100502402002450d00202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a20252903003703002003200329033037030841002126024002400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402238450d0c20032802442126200341c8006a28020041057422370d010c020b4101213841004105742237450d010b203821040340412210122200450d07200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341086a200041c200103c200341086a41186a290300211e200341086a41086a290300211d200341086a41206a2903002127200341086a41106a2903002128200329030821532000101f0240201e4200205342015122001b221e201d420020001b221d842027420020001b22272028420020001b22288484500d002004201e201d7c221d202720287c201d201e54ad7c10630b200441206a2104203741606a22370d000b0b2026450d002038101f0b202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a2025290300370300200320032903303703080240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d08200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308412210122200450d05200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d06200441206a2104200020032903083700222000413a6a2025290300370000200041326a20262903003700002000412a6a2038290300370000200341306a41086a2225420037030020034200370330200041c200200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a220042003703002003420037033041dab2c0004124200341306a1000200341c0006a41086a2204200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041c5b2c0004115200341306a10002004200029030037030020032003290330370340200341c0006a41101005200341e0006a24000f0b413f41011015000b411f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200620106a21000240200629030022272006200b6a290300222884500d0020002027202810630b2006290310200620146a222529030084500d00201510122204450d01200420106a20162f00bbb44022263b0000200420146a20162900b3b4402229370000200420176a20162900abb440222a3700002004200b6a20162900a3b440222b3700002004201629009bb440222c37000020042015201810142204450d0220042000290000370022200420196a200020146a22242900003700002004201a6a200020176a22232900003700002004201b6a2000200b6a222d290000370000200341086a2004201c103c200341086a20106a290300212e200341086a20146a290300212f200341086a200b6a22302903002131200341086a20176a2903002132200329030821272004101f20252903002133200620176a2903002128201510122204450d03200420106a20263b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810142204450d0420042000290000370022200420196a20242900003700002004201a6a20232900003700002004201b6a202d290000370000201710122200450d0520002031201e2027201d5122251b37000020002032201e20251b37000820002017201010142200450d0620002028202f201e2027201e5222251b7c2227370010200020146a2033202e201e20251b7c2027202854ad7c370000200341306a200b6a2225201e3703002003201e3703302004201c200341306a10002030202529030037030020032003290330370308200341086a20172000201010042000101f2004101f0b200620056a22062007470d06410021000c070b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b4100211f410121000c000b0bb30101047f230041e0006b220124002001200010a2010240200141306a22022802002203450d00200141346a2104034002402004280200450d002003101f0b2001200010a201200228020022030d000b0b02402000280204220341e893c100460d00200328020021022003101f2002450d00200228020021002002101f2000450d00024020002802002203450d0003402000101f2003210020032802002202210320020d000b0b2000101f0b200141e0006a24000bd5100a097f017e017f067e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041e6b3c000411a200241e0006a1000200241206a41086a20002903003703002002200229036037032041002101024002400240024002400240024002400240024002400240024002400240024002400240200241206a411041e4a4c100410041001001417f460d002002421037024c2002200241206a360248200241e0006a200241c8006a104020022802602200450d02200241e8006a2802002101200228026421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a109e01024002400240024020022d00204101470d00412010122204450d0520042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a109e0120022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d042005200120012005491b2207ad420586220b422088a70d04200ba722014100480d0402402006450d00200420032001101422040d010c060b200110122204450d050b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a109e0120022d00200d000b2002280250220020022802542201460d070c060b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d002002280208101f0b4100210720022802042201450d080c070b41012106410121072002280250220020022802542201470d040c050b1010000b200141011015000b41de86c00041331023000b412041011015000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d002002280248101f0b20022802042201450d010b200228020021002001410574210c0340411f10122201450d02200141176a41002900a4b140220d370000200141106a410029009db140220e370000200141086a4100290095b140220f3700002001410029008db14022103700002001411f413f10142201450d032001200029000037001f200141376a200041186a22032900003700002001412f6a200041106a2205290000370000200141276a200041086a2208290000370000200241206a2001413f103c200241206a41106a220a2903002111200241206a41086a22092903002112200241206a41186a22132903002114200241206a41206a221529030021162002290320210b2001101f20164200200b42015122011b21162014420020011b211402402012201184500d00200b500d0020002012201110630b02402014201684500d00412210122201450d07200141206a41002f00bbb44022173b0000200141186a41002900b3b4402211370000200141106a41002900abb4402212370000200141086a41002900a3b44022183700002001410029009bb44022193700002001412241c40010142201450d08200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a2008290000370000200241206a200141c200103c200a290300211a2009290300211b2013290300211c2015290300211d2002290320210b2001101f412210122201450d09200141206a20173b0000200141186a2011370000200141106a2012370000200141086a2018370000200120193700002001412241c40010142201450d0a200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a200829000037000041101012220a450d0b200a201b4200200b42005222131b221120147c2214370000200a201a420020131b20167c2014201154ad7c370008200a411041201014220a450d0c200a201c4200200b42015122131b370010200a41186a201d420020131b370000200241e0006a41086a2213420037030020024200370360200141c200200241e0006a10002009201329030037030020022002290360370320200241206a4110200a41201004200a101f2001101f0b411f10122201450d04200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10142201450d052001200029000037001f200141376a20032900003700002001412f6a2005290000370000200141276a2008290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a10002009200329030037030020022002290360370320200241206a411010052001101f200041206a2100200c41606a220c0d000b0b2002200636022820022007360224200220043602202002411a360264200241e6b3c000360260200241206a200241e0006a106202402007450d002004101f0b20024180016a24000f0b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000ba30303067f037e027f230041206b220224000240024020012802082203200128020c2204460d002001280210220541046a21060340200141086a2003220741206a2203360200200741086a2900002108200741106a29000021092007290000210a200241186a200741186a290000370300200241106a2009370300200241086a20083703002002200a3703002005280200220720062802004105746a210b024002400340200b20076b41ff004d0d0120022007460d02200720024120108002450d02200741206a220c2002460d02200c20024120108002450d02200741c0006a220c2002460d02200c20024120108002450d02200741e0006a220c2002460d0220074180016a2107200c200241201080020d000c020b0b2007200b460d03034020022007460d01200720024120108002450d01200b200741206a2207470d000c040b0b20032004470d000b0b200041003a0000200241206a24000f0b20002002290300370001200041013a0000200041196a200241186a290300370000200041116a200241106a290300370000200041096a200241086a290300370000200241206a24000b9c0f05027f057e017f057e087f230041d0006b220224000240024002400240024002400240024002400240024002400240024020014102490d00411f10122203450d06200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d072003200029002037001f200341376a200041386a2900003700002003412f6a200041306a290000370000200341276a200041286a290000370000200241286a2003413f103c200241286a41206a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082003101f411f10122203450d08200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d092003200029000037001f200341376a200041186a22092900003700002003412f6a200041106a290000370000200341276a200041086a290000370000200241286a2003413f103c200241286a41206a290300210a200241286a41106a290300210b200241286a41186a290300210c2002290330210d2002290328210e2003101f200520077c22074200200842005222031b200c200d7c22084200200e420151220f1b5a200420067c2007200554ad7c420020031b2205200a200b7c2008200c54ad7c4200200f1b220c5a2005200c511b0d00200029000021052000200041206a2203290000370000200241086a41186a2009290000370300200241086a41106a2210200041106a220f290000370300200241086a41086a2211200041086a22122900003703002012200341086a290000370000200f200341106a2900003700002009200341186a29000037000020022005370308200041206a2103024020014103490d00411f10122209450d0b200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0c2009200029004037001f200941376a200041d8006a2900003700002009412f6a200041d0006a290000370000200941276a200041c8006a290000370000200241286a2009413f103c200241c8006a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082009101f411f10122209450d0d200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0e2009200229030837001f200941376a200241086a41186a22132903003700002009412f6a200241086a41106a290300370000200941276a200241086a41086a290300370000200241286a2009413f103c200241286a41206a220f290300210a200241286a41106a290300210b200241286a41186a2212290300210c2002290330210d2002290328210e2009101f200520077c22074200200842005222091b200c200d7c22084200200e42015122141b5a200420067c2007200554ad7c420020091b2205200a200b7c2008200c54ad7c420020141b220c5a2005200c511b0d00200041c0006a211441012109034020142103200920014f0d03200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200941026a20014f0d01411f10122200450d04200041176a41002900a4b140220c370000200041106a410029009db1402204370000200041086a4100290095b14022063700002000410029008db14022073700002000411f413f10142200450d05200041376a200341386a2900003700002000412f6a200341306a290000370000200041276a200341286a2900003700002000200341206a221429000037001f200241286a2000413f103c200f290300210820122903002105200241286a41106a2215290300210a200241286a41086a2216290300210b2002290328210d2000101f411f10122200450d06200041176a200c370000200041106a2004370000200041086a2006370000200020073700002000411f413f10142200450d072000200229030837001f200041376a20132903003700002000412f6a200241086a41106a290300370000200041276a200241086a41086a290300370000200241286a2000413f103c200f2903002104201529030021062012290300210c201629030021072002290328210e2000101f200941016a21092005200b7c220b4200200d42005222001b200c20077c22074200200e42015122151b542008200a7c200b200554ad7c420020001b2205200420067c2007200c54ad7c420020151b220c542005200c511b0d000b0b20032002290308370000200341186a200241086a41186a290300370000200341106a2010290300370000200341086a20112903003700000b200241d0006a24000f0b41fcbdc200200920011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541e893c100460d00200128020421060c010b41a80810122205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810fe011a20014100360204200120053602000b0c010b41a80841081015000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a20084120108002220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410ff011a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410ff011a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081012221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810fe012108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410fe012108201d41e8026a200541a8066a200241067410fe012111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410ff011a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410ff011a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401012220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210fe0121082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410fe01216e200a20536a200d20526a200220107410fe01216f200a20556a200d20546a200920566a220e200f7410fe012170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410ff011a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410ff011a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410ff011a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410ff011a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410ff011a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410ff011a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810122202450d03200241003b010620024100360200200241086a200441b0036a41d00810fe0121092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410ff011a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410ff011a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410ff011a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081015000b41a80841081015000b41d80841081015000b410121020c000b0b20004100360210200441800c6a24000bae0c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b4120108002220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b2015108002220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a2900003700002003201837030041202120200041206a212120014103490d02410221224101212341052124417f212541a80821264178212741702128416821294160212a4106212b41e802212c4130212d4150212e4102212f410221050c080b202f20236a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352022746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2022746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000203121212030212f20302001490d020b202120032903003700002021201a6a201b2903003700002021201c6a201d2903003700002021201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b2006101f2011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b2003101f2011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000b13002000411136020420004194f9c1003602000b13002000410b360204200041f482c2003602000b130020004107360204200041c1cec0003602000b130020004117360204200041a089c2003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021013200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241003600000f0b410441011015000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242003700000f0b410841011015000b7001017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a10132002200241086a36022c2002412c6a200241206a106d200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011015000b3401017f0240410410122202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241043600000f0b410441011015000b13002000410f360204200041b09ec2003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410122203450d0020024284808080c000370204200220033602002003410036000020034104410810142203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610142203450d020c050b200421060c050b2006101222030d030b200641011015000b410441011015000b410841011015000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410142203450d020c030b200621040c030b2004101222030d010b200441011015000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710142203450d010c020b2007101222030d010b200741011015000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002105802400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410142206450d020c040b200341086a2105200228020021060c040b2004101222060d020b200441011015000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410122203450d0020024284808080c000370244200220033602402003410036000020034104412410142203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010142203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a10132002410036024c200241cc006a200241c0006a10132002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710142203450d020c060b200521070c060b2007101222030d040b200741011015000b410441011015000b412441011015000b41c80041011015000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410142203450d020c040b200641286a21060c040b2004101222030d020b200441011015000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a1058200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410122202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011015000b3401017f0240410410122202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011015000b3301017f0240410410122202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011015000bf50103027f017e017f230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a200329030037030020022002290310370300024002400240024002402002411041e4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d0220022903102204500d0341082105410810122203450d010c040b42052104410821054108101222030d030b200541011015000b41de86c00041331023000b41e4a9c2001024000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010122202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011015000b3901017f0240411010122202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011015000b3a01017f0240411010122202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011015000b130020004109360204200041e1eac0003602000b13002000410536020420004194aac2003602000bcb0e04027f047e017f037e230041e0006b22022400200241306a41086a2203420037030020024200370330418f83c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240024002400240024002400240024002400240024002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d022003410f4d0d02200241d8006a2903002104200229035021050c010b42002105420021040b200241106a200442002001ad22064200108202200241206a20054200200642001082022002420042002005420010820241bd83c100210102402002290318200229030884420052200241206a41086a2903002205200229031020022903007c7c2206200554720d002002290320210742002104200241306a41086a220342003703002002420037033041a683c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d052003410f4d0d05200241d8006a2903002105200229035021040c010b420021050b200420077c22072004542203200520067c2003ad7c220420055420042005511b4101460d0002400240024041af82c000411041e4a4c100410041001001417f460d002002410036025041af82c0004110200241d0006a41044100100141016a41044d0d0520022802502103411a10122201450d08200141186a41002f009dff403b0000200141106a4100290095ff40370000200141086a410029008dff4037000020014100290085ff403700002001411a413410142201450d092001200336001a42002106200241306a41086a22084200370300200242003703302001411e200241306a1000200241c0006a41086a200829030037030020022002290330370340200241c0006a411041e4a4c100410041001001417f460d012002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d072008410f4d0d07200241d8006a2903002105200229035021060c020b200241e0006a240041cf83c1000f0b420021050b2001101f41e783c1002101200620077c22092006542208200520047c2008ad7c220620055420062005511b0d002000107022010d00411410122201450d08200141106a41002800bd9540360000200141086a41002900b59540370000200141002900ad954037000020014114413410142201450d09200120002900003700142001412c6a200041186a290000370000200141246a200041106a2900003700002001411c6a200041086a2900003700004200210a200241306a41086a220842003703002002420037033020014134200241306a1000200241c0006a41086a20082903003703002002200229033037034002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d092008410f4d0d09200241d8006a29030021052002290350210a0c010b420021050b2001101f41d193c0002101200a2007542208200520045420052004511b0d002000200a20077d200520047d2008ad7d106e42002105200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a20012903003703002002200229033037034002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012201417f460d0c2001410f4d0d0c200241d8006a290300210a200229035021050c010b4200210a0b0240200520077d220b200556200a20047d2005200754ad7d2205200a562005200a511b0d002002200b37035020022005370358200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a200129030037030020022002290330370340200241c0006a4110200241d0006a411010040b411a10122200450d0b41002101200041186a41002f009dff403b0000200041106a4100290095ff40370000200041086a410029008dff4037000020004100290085ff403700002000411a413410142200450d0c2000200336001a2002200637035820022009370350200241306a41086a22034200370300200242003703302000411e200241306a1000200241c0006a41086a200329030037030020022002290330370340200241c0006a4110200241d0006a411010042000101f0b200241e0006a240020010f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411a41011015000b413441011015000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411a41011015000b413441011015000b9e0d03017f017e077f230041306b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002402001ad2203421b88a70d002003420586a72204417f4c0d00024002402004450d002004101222050d01200441011015000b410121050b200520002001410574220610fe0121042002200136021820022001360214200220043602102002411236020c200241f3fec000360208200241106a200241086a1062024002402001450d002004101f20064100480d05200610122207450d03200641606a4105762108410021040340200720046a2205200020046a2209290000370000200541186a200941186a290000370000200541106a200941106a290000370000200541086a200941086a2900003700002006200441206a2204470d000b200841016a210041062105410610122204450d010c040b4100210041012107410621054106101222040d030b200541011015000b100f000b200641011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d01200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941e4a4c100410041001001417f460d00200241003602104101210820044109200241106a41044100100141016a41044d0d01200228021021092004101f200945210a02402009450d002009ad4205862203422088a70d032003a722044100480d03200410122208450d0541002105200821040340200241106a2005103e200441186a200241106a41186a290000370000200441106a200241106a41106a290000370000200441086a200241106a41086a29000037000020042002290010370000200441206a21042009200541016a2205470d000b0b20092000470d060c050b2004101f4101210a410021094101210841002000460d040c050b41de86c00041331023000b1010000b410c41011015000b200441011015000b024020082007460d002000450d0041002106200821042007210503402004200541201080020d02200441206a2104200541206a2105200641016a22062000490d000b0b200a0d012008101f20010d020c030b200241106a41086a20093602002002200936021420022008360210200241106a103f0240024002400240024002402000450d002000410574210041002106200721050340410610122204450d03200441046a41002f00a388403b00002004410028009f884036000020044106410c10142209450d0420092006360006412010122204450d0520042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a2900003700002009410a2004412010042004101f2009101f200641016a2106200541206a2105200041606a22000d000b41062105410610122204450d010c050b41002106410621054106101222040d040b200541011015000b410641011015000b410c41011015000b412041011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d09200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941e4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d082002280210210a2004101f200a20064d0d01200621050340410610122204450d07200441046a41002f00a3884022093b00002004410028009f8840220036000020044106410c10142204450d08200441086a41002d00a788403a0000200441002f00a588403b000602402004410941e4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d07200228021021082004101f0240200820054d0d00410610122204450d0c200441046a20093b00002004200036000020044106410c10142204450d0d200420053600062004410a10052004101f0b200a200541016a2205470d010c030b2004101f200a200541016a2205470d000c020b0b2004101f0b410610122204450d0a200441046a41002f00a388403b00002004410028009f884036000020044106410c10142204450d0b200441086a41002d00a788403a0000200441002f00a588403b00062002200636021020044109200241106a410410042004101f0b2001450d010b2007101f0b200241306a24000f0b41de86c00041331023000b410641011015000b410c41011015000b41de86c00041331023000b410641011015000b410c41011015000b410c41011015000b410641011015000b410c41011015000b130020004104360204200041e885c1003602000b130020004103360204200041c0b0c2003602000b3901017f0240411010122202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011015000b130020004102360204200041e4b2c2003602000b1300200041043602042000419d89c1003602000b130020004101360204200041ecb3c2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010122206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011015000b130020004103360204200041c8b4c2003602000b130020004107360204200041c58bc1003602000b130020004108360204200041b4b6c2003602000bcc0403037f017e047f23004180026b220424000240024020012d000d450d0041f790c1002102413121050c010b2001280200200141046a2205280200200141086a220628020010c80120054200370200200141e893c100360200200420022900002207370310024002400240024041e40110122208450d00200841003b010620084100360200200841086a200441206a41dc0110fe011a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a4108108002220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101302402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1014220b450d030c060b2004280210210b0c060b41ca90c1002102412d21050c060b200a1012220b0d030b200a41011015000b41e40141041015000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210fe011a200441086a200a28020036020020042004290310370300200441206a200410c90120014180023b010c410021020b200020053602042000200236020020044180026a24000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b2000101f2005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b2001101f2005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d002004101f0b20020d000b0b0240200041e893c100460d00200028020021012000101f2001450d00200128020021042001101f2004450d00024020042802002201450d0003402004101f2001210420012802002200210120000d000b0b2004101f0b0bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410ff011a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10ff011a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011012220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110fe012107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410fe012107200a41e0006a200041b4016a2001410c6c10fe01210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410ff011a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10ff011a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410ff011a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10ff011a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210122207450d03200741003b010620074100360200200741086a200241d0006a418c0210fe012103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410fe012116200741e0006a200941b4016a2000410c6c10fe012117200741e4016a20094180026a2001417a6a220e41027410fe012118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410ff011a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10ff011a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410ff011a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410ff011a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10ff011a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410ff011a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210122200450d03200041003b010620004100360200200041086a200241d0006a418c0210fe0121012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410ff011a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10ff011a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410ff011a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041015000b41e40141041015000b41940241041015000b200241e0026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210130240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142203450d020c030b2004410e6a2105200228020021030c030b2006101222030d010b200641011015000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a41002900c79240370000200441002900c192403700002002410e36020c2002410c6a200210130240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610142204450d020c030b200228020021040c030b2006101222040d010b200641011015000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a41002900c79240370000200741002900c1924037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710142204450d020c030b200341126a21030c030b2007101222040d010b200741011015000b20022007360204200220043602000b200241086a22052003360200200420066a4103360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710142204450d010c020b2007101222040d010b200741011015000b20022007360204200220043602000b2005200341046a360200200420036a41033600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142205450d020c030b200228020021050c030b2006101222050d010b200641011015000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410536020c2002410c6a200210132008280200210641d092c00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101422030d020c060b200641086a2104200228020021030c020b200910122203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101422030d010c060b200610122203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a2207418c93c000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011015000b200641011015000bde0503057f017e067f230041306b22022400024002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200341086a41002d00a788403a0000200341002f00a588403b0006024002400240024002402003410941e4a4c100410041001001417f460d00200241003602104101210420034109200241106a41044100100141016a41044d0d04200228021021052003101f20054521062005450d012005ad4205862207422088a70d022007a722034100480d02200310122204450d0741002108200421030340200241106a2008103e200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a29000037000020032002290010370000200341206a21032005200841016a2208470d000c020b0b2003101f4101210641002105410121040b20024100360218200242013703102002200536020c2002410c6a200241106a1013024002402006450d00200241186a2802002103200228021021090c010b2005410574210a4100200241106a41086a280200220b6b210c200228021021092002280214210d4100210303400240200d200c6a411f4b0d00200b20036a220541206a22082005490d03200d4101742205200820082005491b22084100480d0302400240200d450d002009200d2008101422090d010c060b200810122209450d050b2008210d0b2009200b6a20036a2208200420036a2205290000370000200841186a200541186a290000370000200841106a200541106a290000370000200841086a200541086a290000370000200c41606a210c200a200341206a2203470d000b200241186a200b20036a22033602002002200d3602142002200936021020060d002004101f0b200241306a24002003ad4220862009ad840f0b1010000b200841011015000b41de86c00041331023000b410641011015000b410c41011015000b200341011015000bd31203027f017e087f230041d0086b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b20022001360204200241f0066a2002107c024002400240024002400240024020022802f806450d00200241086a200241f0066a41880110fe011a20024190016a200241086a41880110fe011a200229039001200241a4016a2201200241e4016a2203102502400240024002402002290390012204500d00200241f0066a2004427f7c101d200241f0066a200141201080020d0041002105200228028802210002400240024020024190026a280200220141e0016c41e001490d002001410c6c220610122207450d0b2001210820010d010c020b41042107410021082001450d010b200141e0016c2106200141057441606a21092007210103402002200036028004200241f0066a20024180046a10cd01200141086a200241f0066a41086a280200360200200120022903f0063702002001410c6a2101200041e0016a2100200641a07e6a22060d000b200941057641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001012220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241f0066a200a200610ce010240200b450d00200a101f0b02402005450d002005410c6c21002007210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b02402008450d002007101f0b02402003200241f0066a4120108002450d0041bba2c100410e1008200341201009200241f0066a412010090b2003200241f0066a41201080020d052002418c026a280200210520024190016a41f8006a280200210720024190026a280200210620024198026a20024190016a41f80010fe011a2007200641e0016c6a210020072101024002400240024002402006450d0020024180046a41f8006a2109200241f0066a41086a210c20072101034020024190036a200141f00010fe011a200141f0006a290300210420024188066a200141f8006a41e80010fe011a20044203510d0220024180046a20024190036a41f00010fe011a20024180046a41f0006a2004370300200920024188066a41e80010fe011a200220024180046a3602e005200241f0066a200241e0056a10cd01200c2802002106024020022802f406450d0020022802f006101f0b200241f0066a20024180046a41e00110fe011a200241003602f005200241e0056a200241f0066a2006200241f0056a10cf0120022802e0054101460d05024020022802e4052206450d002006200241e0056a41086a28020010080b200141e0016a22012000470d000b200021010b20012000470d010c020b200141e0016a22012000460d010b200241f8076a2106200241f0066a41f8006a21090340200241f0066a200141f00010fe011a200141f0006a290300210420024190036a200141f8006a41e80010fe011a20044203510d0120024180046a200241f0066a41f00010fe011a20024188066a20024190036a41e80010fe011a200241f0066a20024180046a41f00010fe011a200241f0066a41f0006a2004370300200920024188066a41e80010fe011a2006107e200141e0016a22012000470d000b0b02402005450d002007101f0b102b200229039802107f200241f0066a102f200220024198026a41106a28020022053602800620022802a002210c2002200241f0066a41106a28020022013602840620052001470d0720022802f806210a024002402005450d000240200c200a460d00410021070340200c200741246c22006a2201200a20006a2200105720012d0000220620002d0000470d030240024020064101470d002001410c6a28020022092000410c6a280200470d052009450d01200141046a2802002201200041046a2802002200460d014100210603402001200041201080020d06200141206a2101200041206a2100200641016a22062009490d000c020b0b200141016a200041016a41201080020d040b200741016a22072005490d000c020b0b200521010340200c200c1057200c41246a210c2001417f6a22010d000b0b20024180046a41186a2201420037030020024180046a41106a2200420037030020024180046a41086a22064200370300200242003703800420024180046a100620024190036a41186a200129030037030020024190036a41106a200029030037030020024190036a41086a20062903003703002002200229038004370390030240200241cc026a220120024190036a4120108002450d0041bba2c100410e100820014120100920024190036a412010090b200120024190036a41201080020d0902402005450d00200541246c2100200a21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241fc066a280200450d00200a101f0b0240200241a8026a2802002200450d0020024198026a41086a2802002101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241a4026a280200450d00200241a0026a280200101f0b200241d0086a240042010f0b41acc0c2001024000b20022802e4052202450d0120024103460d0220024104460d0341b4bfc2001024000b4184bfc2001024000b41e4bfc2001024000b41ccbfc2001024000b41fcbfc2001024000b20024194046a41013602002002410436029401200241ccbcc200360290012002420137028404200241d4bcc20036028004200220024190016a3602900420024180046a41dcbcc200103a000b419cbfc2001024000b200220024180066a3602f005200220024184066a3602e00520024180046a41146a410036020020024190036a41146a41023602002002419c036a410736020020024188066a41146a4103360200200241e4a4c10036029004200242013702840420024194c0c2003602800420024107360294032002420337028c06200241ecc5c20036028806200220024180046a3602a0032002200241e0056a360298032002200241f0056a36029003200220024190036a3602980620024188066a419cc0c200103a000b41c4c0c2001024000b200641041015000b1010000b200041041015000b8b1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041e20110122203450d00200242e20137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410142201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410142201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a2002107802400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110142204450d020c060b200228020021040c060b2001101222040d040b200141011015000b41e20141011015000b410441011015000b410441011015000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c37000020032002102102400240024002400240024002400240024002400240200341f0006a2903004201520d00200341f8006a2903002206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110142204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510142204450d030c070b200228020021040c070b200228020021040c080b2005101222040d040b200541011015000b2001101222040d040b200141011015000b41fcc9c1001024000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a20021022200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a1013024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101422010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410142203450d020c110b4100210b2005450d120c110b2004101222030d0f0b200441011015000b200228020021010c020b200c10122201450d070b2002200c360204200220013602000b200120056a200141026a200a10ff011a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031012220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b41a081c2001024000b200341011015000b200c41011015000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101422030d020c060b200228020021030c020b200110122203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10ff011a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c101f0b200a450d060c050b1010000b200141011015000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10ff011a0b20012003200a6a3602000b02402009450d002008101f0b20002002290300370200200041086a200241086a280200360200200241206a24000bcb03010b7f230041206b22032400024002402002450d0020024102742204101222050d01200441041015000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1014220a0d020c080b200820046a21070c020b200d1012220a450d060b200d210b0b200a20046a200c200810fe011a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a101f0b02402002450d002005101f0b200341206a24000f0b1010000b200d41011015000b871605017f017e037f017e067f230041e0056b22042400200441a0036a200141e00110fe011a20044190026a200441a0036a101c0240024002402004280290024101470d00200041086a2004290294023702002000420137020020032802002200450d020c010b20044190026a41086a290300210520044190016a20044190026a41106a41800110fe011a20042005370308200441086a41086a20044190016a41800110fe01210620044190016a41086a220142003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200129030037030020042004290390013703a00341002101024002400240024002400240024002400240024002400240024002400240200441a0036a411041e4a4c100410041001001417f460d002004410036029002200441a0036a411020044190026a41044100100141016a41044d0d0120042802900221010b41042107200120026a41808080024b0d0d410021080240200441106a410020042903084201511b2201450d002001450d0002400240024020011026220520012903202209520d00410321072001200210bb010d11411310122207450d0d2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c824037000020074113413310142207450d0e200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a29000037000020044190016a41086a220a420037030020044200370390012007413320044190016a1000200441a0036a41086a200a29030037030020042004290390013703a003200441a0036a411041e4a4c100410041001001417f460d012004420037039002200441a0036a411020044190026a41084100100141016a41084d0d0820042903900242017c21052007101f4113210a4113101222070d020c0f0b4101410220092005541b21070c100b420121052007101f4113210a411310122207450d0d0b2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c82403700002007200a413310142207450d0d200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200420053703900220044190016a41086a2201420037030020044200370390012007413320044190016a1000200441a0036a41086a200129030037030020042004290390013703a003200441a0036a411020044190026a410810042007101f0b024020032802002207450d00200341086a28020021012003280204210b4100210c024041af82c000411041e4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0520042802a003210c0b411410122208450d06200841106a41002800bb8140360000200841086a41002900b38140370000200841002900ab81403700002008411441281014220a450d07200a200c360014200441003602a803200442013703a003200420013602900220044190026a200441a0036a1013024002400240024020042802a403220d20042802a803220c6b20014f0d00200c20016a2208200c490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0120042802a003200d200e101422080d020c0d0b20042802a00321080c020b200e10122208450d0b0b2004200e3602a403200420083602a003200e210d0b2008200c6a2007200110fe011a20044190016a41086a220e42003703002004420037039001200a411820044190016a1000200441a0036a41086a200e29030037030020042004290390013703a003200441a0036a41102008200c20016a10040240200d450d002008101f0b200a101f41012108200b450d002007101f0b20042903082105200441a0036a200441306a41e00010fe011a20044190026a200441a0036a41086a41d80010fe011a20044190016a41186a220a200641186a29030037030020044190016a41106a220c200641106a29030037030020044190016a41086a220d200641086a290300370300200420062903003703900141002101024020054201520d00200441a0056a41186a200a290300370300200441a0056a41106a200c290300370300200441a0056a41086a200d29030037030020042004290390013703a005410121010b20044190016a20044190026a41d80010fe011a200441c0056a41186a2206200441a0056a41186a220a290300370300200441c0056a41106a220c200441a0056a41106a220d290300370300200441c0056a41086a220b200441a0056a41086a220e290300370300200420042903a0053703c00520044190026a20044190016a41d80010fe011a20044180056a41186a220f200629030037030020044180056a41106a2206200c29030037030020044180056a41086a220c200b290300370300200420042903c00537038005200441a0036a20044190026a41d80010fe011a200a200f290300370300200d2006290300370300200e200c29030037030020042004290380053703a0054102210602402001450d00200441c0056a41186a200441a0056a41186a290300370300200441c0056a41106a200441a0056a41106a290300370300200441c0056a41086a200441a0056a41086a290300370300200420042903a0053703c005410121060b20044199016a200441c0056a41086a290300370000200441a1016a200441c0056a41106a290300370000200441a9016a200441d8056a290300370000200420063a009001200420042903c005370091012004200441a0036a20044190016a10592004280204210620042802002101200441003a00a003200420014100473a00a103200441a0036a10270240024041af82c000411041e4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0320042802a00341016a210a0c010b4101210a0b20044190016a41086a220c42003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200c29030037030020042004290390013703a00302400240200441a0036a411041e4a4c100410041001001417f460d002004410036029001200441a0036a411020044190016a41044100100141016a41044d0d04200428029001210c0c010b4100210c0b2004200a3602a00341af82c0004110200441a0036a410410042004417f2002200c6a220a200a2002491b3602c00520044190016a41086a220242003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200229030037030020042004290390013703a003200441a0036a4110200441c0056a410410040240024002402001450d0002402006411b470d00200141f99ac100460d02200141f99ac100411b108002450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c120b20004100360204200041086a200636020020004100360200200745200872450d010c110b200041046a4104360200200041013602002007452008720d100b200341046a280200450d0f2007101f0c0f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b412841011015000b1010000b200e41011015000b411341011015000b413341011015000b200a41011015000b413341011015000b2000410136020020002007360204200441386a102020032802002200450d010b200341046a280200450d002000101f200441e0056a24000f0b200441e0056a24000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10fb012100200241206a240020000bc20201037f23004180016b22022400200028020021000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000ba70201017f23004180026b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b2002200136020420024180016a2002107d0240200228028801450d00200241086a20024180016a41f80010fe011a20022903082002411c6a200241dc006a10250240200241186a2802002200450d0020022802102101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241146a280200450d00200241106a280200101f0b20024180026a240042010f0b2002411c6a4101360200200241043602fc01200241ecbcc2003602f8012002420137020c200241d4bcc2003602082002200241f8016a360218200241086a41dcbcc200103a000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410122203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410142205450d020c040b200228021021050c040b2004101222050d020b200441011015000b410441011015000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41013a0000410e200241106a10d4014100210302400340200341bcd0c1006a280200200341c0d0c1006a280200200241106a10d50102400240024002400240024002400240024002400240024002400240024002400240200341c4d0c1006a2802004101470d00200341c8d0c1006a280200200341ccd0c1006a280200200241106a10d501200341d0d0c1006a22062802004102460d010c020b2002200341c8d0c1006a28020011020020022802002002280204200241106a10d501200341d0d0c1006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101422060d020c040b200228021021060c020b200710122206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341e0d0c1006a22062802004102470d020c030b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101422070d020c0d0b200228021021070c020b200810122207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d601200341e0d0c1006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101422070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101422060d050c0a0b200228021021060c050b200810122207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d701200341f0d0c1006a22062802004102460d030c080b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341f0d0c1006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101422060d020c070b200228021021060c020b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341f007470d050c060b200841011015000b200841011015000b200741011015000b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101422070d020c070b200228021021070c020b200810122207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d801200341c8006a220341f007470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101302400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810142205450d020c050b2002280210220520046a2006200310fe011a200420036a21032007450d060c050b2008101222050d030b200841011015000b1010000b200841011015000b2002200836021420022005360210200520046a2006200310fe011a200420036a21032007450d010b2006101f0b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410142203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210142203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2002101222030d0b0b200241011015000b200210122203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101422030d020c070b200128020021030c020b200210122203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011015000b200441011015000b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510142204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310142204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101422040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101422040d0a0c0d0b2005101222040d100b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0a0b200341011015000b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510122204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101422040d020c060b200228020021040c020b200310122204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310142204450d020c040b200228020021040c040b2003101222040d020b200341011015000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110fe011a0bfb0f01097f230041206b2202240002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d01200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c030b2009200041c0006a280200200110ed012004200541cc006a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d00200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c020b2009200041c0006a280200200110ed012004200541cc006a2205470d000b0b200241206a24000f0b1010000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000be20301017f230041e0056b22022400024002402001450d00200220003602080c010b200241e4a4c1003602080b2002200136020c200241f0036a200241086a101602400240024002400240024020022903e0044203510d00200241106a200241f0036a41e00110fe011a200241f0016a200241106a41e00110fe011a2002200241f0016a3602f003200241d0036a200241f0036a10cd0120022802d8032101200241f0036a200241f0016a41e00110fe011a200241d8056a20022802d803360200200220022903d0033703d005200241e0036a200241f0036a2001200241d0056a10cf010240024020022802e0034101470d004280828898f01f20022802e403410374ad88a7210041011012210141010d010c050b20022802e40341004721004101101221014100450d040b2001450d01200141013a000020014101410210142201450d020c040b20024184026a410136020020024104360214200241f4bcc200360210200242013702f401200241d4bcc2003602f0012002200241106a36028002200241f0016a41dcbcc200103a000b410141011015000b410241011015000b2001450d01200141003a0000200141014102101422010d00410241011015000b200120003a0001200241e0056a24002001ad428080808020840f0b410141011015000bf71203027f017e0a7f230041c0016b22022400102b20024180016a41086a22034200370300200242003703800141dd81c000410d20024180016a1000200241086a41086a20032903003703002002200229038001370308420021040240024002400240024002400240024002400240024002400240200241086a411041e4a4c100410041001001417f460d002002420037038001200241086a411020024180016a41084100100141016a41084d0d0120022903800121040b2004107f200241b0016a41086a22034200370300200242003703b001418080c0004115200241b0016a1000200241a0016a41086a2003290300370300200220022903b0013703a0010240024002400240024002400240200241a0016a411041e4a4c100410041001001417f460d0041002105200241003602084104210641012107200241a0016a4110200241086a41044100100141016a41044d0d0920022802082208450d012008ad420c7e2204422088a70d0f2004a722034100480d0f200310122206450d0c20062109410021050340411410122203450d03200341106a41002800bb8140360000200341086a41002900b38140370000200341002900ab81403700002003411441281014220a450d04200a200536001420024180016a41086a220b42003703002002420037038001200a411820024180016a1000200241086a41086a200b290300370300200220022903800137030802400240200241086a411041e4a4c100410041001001417f460d0020024210370284012002200241086a36028001200220024180016a10282002280200450d0920022802042203417f4c0d07024002402003450d0020031076220c450d0d200b200b280200220d20034100200228028001200228028401200c2003200d1001220d200d417f461b220d200d20034b1b220d6a360200200d2003460d010c0a0b4101210c20022802800120022802840141014100200b28020010011a41002003470d090b200b42003703002002420037038001200a411820024180016a1000200241b0016a41086a200b29030037030020022002290380013703b001200241b0016a41101005200c0d010b4101210c410021030b200a101f200941086a2003360200200941046a20033602002009200c3602002009410c6a21092008200541016a2205470d000b41002107200821050c010b4100210541012107410421060b410421084100210a4100210d02402005410c6c2203410c490d002003410c6e220d41037422094100480d0e200910122208450d0a0b0240200620036a220c2006460d004100210a200821032006210903402009280200210b200341046a200941086a2802003602002003200b360200200341086a2103200a41016a210a2009410c6a2209200c470d000b0b20024180016a2008200a10ce010240200d450d002008101f0b02402005450d002005410c6c21092006210303400240200341046a280200450d002003280200101f0b2003410c6a2103200941746a22090d000b0b024020070d002006101f0b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a22034200370300200242003703b00141ea81c0004115200241b0016a1000200241a0016a41086a220a2003290300370300200220022903b0013703a001200241a0016a4110200241086a41201004200241086a102f200241003602a801200242013703a001412010122203450d08200242a080808080043702a401200220033602a0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241a0016a102102400240024020022802a4012209200a280200220b6b41204f0d00200b41206a2203200b490d102009410174220a20032003200a491b220c4100480d102009450d0120022802a0012009200c1014220a450d020c0e0b200b41206a210320022802a001210a0c0e0b200c1012220a0d0c0b200c41011015000b411441011015000b412841011015000b100f000b2003450d00200c101f0b41de86c00041331023000b41de86c00041331023000b200341011015000b41de86c00041331023000b412041011015000b200941041015000b200341041015000b2002200c3602a4012002200a3602a001200c21090b200241a0016a41086a220c2003360200200a200b6a220b41086a200241c4006a290200370000200b41106a200241cc006a290200370000200b41186a200241d4006a290200370000200b200229023c3700000240200920036b411f4b0d00200341206a220b2003490d0120094101742205200b200b2005491b220b4100480d010240024002402009450d00200a2009200b1014220a450d010c020b200b1012220a0d010b200b41011015000b2002200b3602a4012002200a3602a0010b200c200341206a360200200a20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a28020022073602800120024180016a200241a0016a101302402007450d00200741246c2105200e210303400240024020032d00004101470d002003410c6a2802002109200341046a280200210a4100210b0c010b4101210b200341016a210a0b20024180016a41086a20093602002002200a360284012002200b36028001200241b0016a20024180016a101120022802b001210b024002400240024020022802a401220c200241a0016a41086a220828020022096b200241b0016a41086a280200220a4f0d002009200a6a220d2009490d06200c4101742206200d200d2006491b220d4100480d06200c450d0120022802a001200c200d1014220c0d020c070b20022802a001210c0c020b200d1012220c450d050b2002200d3602a4012002200c3602a0010b20082009200a6a220d360200200c20096a200b200a10fe011a024020022802b401450d00200b101f0b200341246a21032005415c6a22050d000b02402007450d00200741246c2109200e21030340024020032d0000450d00200341086a280200450d00200341046a280200101f0b200341246a21032009415c6a22090d000b0b200241146a280200450d040c030b200241a8016a280200210d20022802a001210c200241146a2802000d020c030b1010000b200d41011015000b200e101f0b200241c0016a2400200dad422086200cad840ba90a03017f037e087f230041f0016b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b20022001360204200241286a200210dc010240024002402002280228450d00200241086a41086a2201200241286a41086a220028020036020020022002290328370308200241186a41086a20012802003602002002200229030837031820024180016a200241186a10dd012002280280014101460d0120024180016a41086a2201290300210320014200370300200242003703800141f594c000410d20024180016a100020002001290300370300200220022903800137032842002104024002400240200241286a411041e4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d0120022903800121040b20024180016a41086a220142003703002002420037038001418295c000411520024180016a1000200241286a41086a2001290300370300200220022903800137032802400240200241286a411041e4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d03200229038001210541e001210041e00110122201450d010c060b4205210541e001210041e001101222010d050b200041081015000b41de86c00041331023000b41de86c00041331023000b20024194016a410136020020024104360274200241fcbcc2003602702002420137028401200241d4bcc200360280012002200241f0006a3602900120024180016a41dcbcc200103a000b41d99ac000412820022802840120024180016a41086a2802001037000b200120024180016a41f00010fe0122064202370370200641003a00880120064202370390012006200229037037037820064180016a200241f0006a41086a29030037030020062002280069360089012006418c016a200241e9006a41036a28000036000020062003200520047c220420042003541b37039801200620022903283703a001200641a8016a200241286a41086a290300370300200641b0016a200241386a290300370300200641b8016a200241c0006a290300370300200641c0016a200241c8006a290300370300200641c8016a200241d0006a290300370300200641d0016a200241d8006a290300370300200641d8016a200241e0006a290300370300200228021822072108200228021c2209210a0340200841086a210020082f0106220c4103742101417f210b02400240024003402001450d01419c8cc00020004108108002220d450d03200141786a2101200b41016a210b200041086a2100200d417f4a0d000b200a0d010c020b200c210b200a450d010b200a417f6a210a2008200b4102746a41e4016a28020021080c010b0b20072009200228022010c8012002410036023020024201370328200241013602800120024180016a200241286a1013200228022c210b200228023021012002200636027020024180016a200241f0006a10cd012002280280012108024002400240024002400240200b20016b200228028801220d4f0d002001200d6a22002001490d03200b410174220a20002000200a491b220a4100480d03200b450d012002280228200b200a1014220b450d020c040b2001200d6a21002002280228210b0c040b200a1012220b0d020b200a41011015000b1010000b2002200a36022c2002200b3602280b200241306a2000360200200b20016a2008200d10fe011a0240200228028401450d002008101f0b20064188016a107e2006101f200241f0016a24002000ad422086200bad840bec0d06027f017e0a7f017e067f017e230041a0026b22022400200241186a200110170240024002400240024002400240024002400240024002402002280218450d00200228021c2203ad2204421d88a70d0a2004420386a72205417f4c0d0a024002400240024002400240024002400240024002400240024002402005450d00200510122206450d022003450d010c030b4101210620030d020b410021054100210b2006450d0c0c020b200541011015000b200141046a210741002108410021094100210a2003210b034020024200370340200241c0006a2001280200220c2007280200220541082005410849220d1b220e10fe011a20072005200e6b3602002001200c200e6a360200200d0d02200a41016a2105200229034021040240200a200b470d002008200520052008491b220bad420386220f422088a70d13200fa7220e4100480d130240200a450d0020062009200e101422060d010c070b200e10122206450d060b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0a0b2005ad422086200bad84210f200241106a200110172002280210450d0720022802142203ad420c7e2204422088a70d132004a72205417f4c0d132005450d0120051012220c450d042003450d020c050b200b0d070c080b4104210c20030d030b410021094100210b200c450d040c030b200e41011015000b200541041015000b410021084100210a4100210e2003210b0340200241086a2001101702400240024002402002280208450d00200228020c2205417f4c0d12024002402005450d00200510762207450d0320072001280200200141046a220d2802002209200520092005491b220910fe011a200d28020022102009490d04200d201020096b3602002001200128020020096a36020020092005470d010c050b4101210741002005460d040b2005450d002007101f0b0240200e450d00200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b200b450d05200c101f0c050b200541011015000b20092010101a000b200e41016a21090240200e200b470d002008200920092008491b220bad420c7e2204422088a70d0c2004a7220d4100480d0c0240200e450d00200c200a200d1014220c0d010c0e0b200d1012220c450d0d0b200c200a6a220e2007360200200e41046a2005ad2204422086200484370200200841026a2108200a410c6a210a2009210e20092003490d000b200c450d010b2009200f422088a7470d0320024200370224200241e893c100360220200c2009410c6c6a211020094103742205450d04200620056a2111200241206a41086a2112200241d4006a2113200241d0006a2114200c2108200621030340200822052010460d062005410c6a210820052802002215450d0720052902042104200220032900002216370330024002402002280220220e41e893c100460d00200228022421070c010b41e4011012220e450d0d41002107200e41003b0106200e4100360200200e41086a200241c0006a41dc0110fe011a200241003602242002200e3602200b200341086a210302400340200e41086a210a200e2f0106220d410374210541002109024003402005450d01200241306a200a41081080022201450d03200541786a2105200941016a2109200a41086a210a2001417f4a0d000b2009417f6a210d0b02402007450d002007417f6a2107200e200d4102746a41e4016a280200210e0c010b0b2013201637020020142012360200200241c0006a410c6a200d360200200241c0006a41086a200241206a3602002002200e360244200241003602402002200437023420022015360230200241c0006a200241306a10c90120032011470d010c080b200e2009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d002005101f0b20032011470d000c070b0b200fa7450d010b2006101f0b200041003602000c0a0b2000410036020002402009450d002009410c6c210a200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b0240200b450d00200c101f0b200fa7450d092006101f200241a0026a24000f0b200c2108200fa70d020c030b201021080b200fa7450d010b2006101f0b024020082010460d00034020082802002205450d010240200841046a280200450d002005101f0b2008410c6a22082010470d000b0b0240200b450d00200c101f0b200241c0006a41086a2205200241206a41086a28020036020020022002290320370340200041086a200528020036020020002002290340370200200241a0026a24000f0b1010000b200d41041015000b41e40141041015000b100f000b200241a0026a24000bad0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141eba0c100200641081080022208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2201450d00200128020821062001280200210120024200370308200241086a200120064108200641084922071b10fe011a20070d01200041086a2002290308370300410021010c030b200041f3a0c100360204200041086a41283602000c010b2000419ba1c100360204200041086a41293602000b410121010b20002001360200200241106a24000bac3a190c7f017e037f017e097f027e017f017e077f037e027f017e057f027e027f037e067f027e037f017e0c7f027e0e7f027e107f230041d0026b22022400024002402001450d00200220003602100c010b200241e4a4c1003602100b20022001360214200241f0006a200241106a107c0240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10dc012002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241e893c100360250200241d0006a41086a210a2004450d0241e001210b2008200441e0016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f2120410221214178212241f594c000212341e4a4c100212441152125418295c0002126423c2127428080808070212842252129418801212a41ff01212b427f212c419ea0c100212d41e000212e4107212f20082130410021310c030b2002412c6a41013602002002410436025420024184bdc2003602502002420137021c200241d4bcc2003602182002200241d0006a360228200241186a41dcbcc200103a000b20024184016a41013602002002410436025420024184bdc20036025020024201370274200241d4bcc2003602702002200241d0006a36028001200241f0006a41dcbcc200103a000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b412f411e2072205c410c6c6a41a07f4622451b214641a48cc00041c4a1c10020451b21450c010b02400240024002400240024020310e06000501020304040b2030200d6a290300200e520d13024020302d0088012201450d002001202b712201450d230c540b203029039001200e520d212030290398012132200241f0006a200241c0006a10dd010240024020022802704101470d00200f3502002133200228027421344101213520112d0000450d010c0d0b200f290300213642002133200f42003703002002420037037020232010200241f0006a10002009200f290300370300200220022903703703180240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0a200229037021330b200f42003703002002420037037020262025200241f0006a10002009200f29030037030020022002290370370318024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0d200229037021372032203620277c580d020c010b420521372032203620277c580d010b203820288320298421334101213541b49ac000213420112d0000450d010c0d0b410021352032203720337c22335a0d2120112d00000d0c0b024002402035450d0020022802502002280254200a28020010c80120024200370254200241e893c100360250200220123703180c010b2002280250213920022012370318203941e893c100460d002002280254213a0c200b201310122239450d0a4100213a203941003b010620394100360200203941086a200241f0006a201410fe011a20024100360254200220393602500c1e0b20482050204e204f6a22012001204e491b6a22012048490d4e2048204f742200200120012000491b2249ad2051862232205288a70d4e2032a722012053480d4e02402048450d00204a204820547420011014224a0d0f0c060b20011012224a450d05410321310c170b204a20482054746a204d3602002048204f6a2148204e450d270240204c20462f01064f0d002046204c2055746a20566a214d204c204f6a214c204e20506a214e20492048460d0c0c0d0b41012101024020462f01042200204628020022462f0106490d004101210103402001204f6a210120462f01042200204628020022462f01064f0d000b0b204620002055746a20566a214d204620002054746a20576a28020021464100214c2001204f460d25204f20016b2101034020462802e40121462001204f6a22010d000c260b0b20592060205f20586a22012001205f491b6a22012059490d4c20592058742200200120012000491b225aad2061862232206288a70d4c2032a722012063480d4c02402059450d00205b205920647420011014225b0d100c050b20011012225b450d04410521310c190b205b20592064746a205e360200205920586a21590240205f450d000240205d20452f01064f0d002045205d20656c6a20666a215e205d20586a215d205f20606a215f205a2059460d0e0c0f0b41012101024020452f01042200204528020022452f0106490d00410121010340200120586a210120452f01042200204528020022452f01064f0d000b0b2045200020656c6a20666a215e204520002064746a20676a28020021454100215d20012058460d23205820016b2101034020452802e4012145200120586a22010d000c240b0b205b215c2048413f4b0d370c280b2069280200227220686a210020722f0106223e206b7421014100215c024003402001450d01206f20002068108002223d450d11200120706a2101205c20716a215c200020686a2100203d206c4a0d000b205c206c6a213e0b0240206a450d00206a206c6a216a2072203e206d746a206e6a2169410121310c110b412f214641a48cc00021450b2002204636026420022045360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c701200228020022460d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c220b200141041015000b200141041015000b41de86c00041331023000b41de86c00041331023000b41e40141041015000b41a891c100412241f790c10041311037000b41a891c1004122204620022802041037000b410221310c080b410321310c080b410321310c090b410421310c090b410521310c090b410521310c0a0b410021010c460b410121010c450b410221010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b4100213c0c040b4100213c0c040b410021010c040b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b2030202a6a2d0000202b7122010d34410121010c060b203029039001200e520d34203029039801213f200f42003703002002420037037020262025200241f0006a10002009200f290300370300200220022903703703180240024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d02200229037021320c010b420521320b202c203220327c224020402032541b2240500d01200241c0006a2141200228024421420c030b41de86c00041331023000b41fccac1001024000b0240024002400240024002400240024002400240024002400240203c0e020001010b203941086a210020392f0106223b20157421014100213d024003402001450d01200241186a20004108108002223e450d08200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a213b0b0240203a450d00203a20206a213a2039203b2021746a20136a28020021394100213c0c0e0b201620123702002018200a360200201a203b360200200f200241d0006a360200200220393602742002201b3602702009201b3602002002201c3703184101101221010240024002400240024002402035450d002001450d0d200141013a00002002201d37021c2002200136021820022033a72201360260200241e0006a200241186a1013200228021c223d200928020022006b20014f0d01200020016a223e2000490d40203d410174223b203e203e203b491b223e201b480d40203d450d022002280218203d203e1014223d0d030c0e0b2001450d0e2001201b3a00002002201d37021c2002200136021820014101201e10142201450d0f200120333700012002201f37021c200220013602180c040b2002280218213d0c020b203e1012223d450d0b0b2002203e36021c2002203d3602180b2009200020016a360200203d20006a2034200110fe011a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10c901201120353a0000200241d0006a20196a201b3a00002033213820350d01410021010c100b2041280200223b41086a2100203b2f0106224320157421014100213d02400240024003402001450d01202d20004108108002223e450d02200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a21430b2042450d01204220206a2142203b20432021746a20136a21414101213c0c100b203b202e6a203d20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10fe011a2001202f4d0d02203f20408020022903702244520d040c3f0b204442808080807083421c84213241cfa0c10021460c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b204442808080807083422984213241a6a0c10021460b2032a721450c010b4131214541eb8bc00021460b2002204536026420022046360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c701200228020822460d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41a891c100412241ca90c100412d1037000b410141011015000b203e41011015000b410141011015000b410941011015000b41a891c10041222046200228020c1037000b4101213c0c010b410221010c020b410221010c010b410221010c000b0b205f20606a215f024002400240205a2059470d00410421310c010b410521310c010b410221010c340b410221010c330b204e20506a214e02400240024020492048470d00410221310c010b410321310c010b410221010c330b410221010c320b20022802402002280244200228024810c80102402006450d00200641246c2145200321460340024020462d0000450d00204641086a280200450d00204641046a280200101f0b204641246a21462045415c6a22450d000b0b02402007450d002003101f0b02402004450d00200441e0016c214520084188016a214603402046107e204641e0016a2146204541a07e6a22450d000b0b02402005450d002008101f0b410110122246450d05204620022d007c3a000020464101410210142247450d06204720022d007d3a0001200228027022452146024020022802742200450d002045214620002101034020462802e40121462001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782231450d002031417f6a214820462f0106450d01204641086a213d410121000c020b410021494104214a4104214b4100214820000d030c040b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a213d204620004102746a41e8016a28020021464100210020014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b417f204841016a220120012048491b2249ad2232421e88a70d042032420286a72201417f4c0d04024002400240024002402001450d0020011012224a450d0d204a203d3602002048450d020c010b4104214a4104203d3602002048450d010b200020462f01064f0d01200041016a214c204620004103746a41086a214d0c020b410121480c020b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a214d204620004102746a41e8016a28020021464100214c20014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b2031417e6a214e4101214f417f215042022151422021524100215341022154410321554108215641e80121574101214820494101470d0b0c0a0b204a214b2002280270214520022802742200450d010b20002101034020452802e40121452001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002258450d002058417f6a215920452f0106450d01204541e0006a2131410121000c020b4100215a4104215b4104215c410021592048413f4d0d020c110b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a2131204520004102746a41e8016a28020021454100210020014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b417f205941016a220120012059491b225aad2232421e88a70d012032420286a72201417f4c0d01024002400240024002402001450d0020011012225b450d0b205b20313602002059450d020c010b4104215b410420313602002059450d010b200020452f01064f0d01200041016a215d20452000410c6c6a41e0006a215e0c020b41012159205b215c2048413f4b0d110c020b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a215e204520004102746a41e8016a28020021454100215d20014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b2058417e6a215f41012158417f216042022161422021624100216341022164410c216541e000216641e801216741012159205a4101470d0a0c090b41012104410110122258450d03205820484102743a000020484102742245450d140c0f0b100f000b410141011015000b410241011015000b410141011015000b200141041015000b200141041015000b410221310c030b410321310c030b410421310c030b410521310c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402048418080014f0d0041022104410210122258450d02205820484102744101723b0000204841027422450d010c060b024020484180808080044f0d0041042104410410122258450d0320582048410274410272360000204841027422450d010c060b410110122246450d03204641033a00004105210420464101410510142258450d042058204836000120484102742245450d050b410020046b21462004214802400340204b28020021010240200420466a41074b0d00204841086a22002048490d152004410174224f20002000204f491b22004100480d15024002402004450d00205820042000101422580d010c040b200010122258450d030b200021040b204b41046a214b205820486a2001290000370000204641786a2146204841086a21482045417c6a22450d000b2059413f4b0d070c060b200041011015000b410241011015000b410441011015000b410141011015000b410541011015000b200421482059413f4b0d010b4101214541011012224b450d08204b20594102743a00004101210120590d010c020b02402059418080014f0d004102214541021012224b450d07204b20594102744101723b00000c010b024020594180808080044f0d004104214541041012224b450d06204b20594102744102723600000c010b410110122246450d04204641033a0000410521452046410141051014224b450d03204b20593600010b2059410274214f204521010340205c28020022462802002159024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020462802082246413f4b0d0020452001470d01204541016a22012045490d2120454101742200200120012000491b22004100480d212045450d05204b204520001014224b0d060c0f0b2046418080014f0d01204520016b41014b0d02200141026a22002001490d2020454101742268200020002068491b22004100480d202045450d0b204b204520001014224b0d0c0c0f0b204521000c050b20464180808080044f0d01204520016b41034b0d05200141046a22002001490d1e20454101742268200020002068491b22004100480d1e024020450d0020001012224b450d100c070b204b204520001014224b0d060c0f0b204521000c090b20452001470d05204541016a22012045490d1c20454101742200200120012000491b22004100480d1c0240024020450d0020001012224b450d100c010b204b204520001014224b450d0f0b204521010c060b20001012224b450d090b204521010b204b20016a20464102743a00002000200141016a22016b20464f0d060c0c0b204521000b204b20016a20464102744102723600002000200141046a22016b2046490d0a0c040b204521000b204b20016a41033a000002402000200141016a22456b41034b0d00204541046a22682045490d1620004101742231206820682031491b22684100480d16024002402000450d00204b200020681014224b0d010c080b20681012224b450d070b206821000b204b20456a20463600002000200141056a22016b2046490d080c020b20001012224b450d030b204b20016a20464102744101723b00002000200141026a22016b2046490d060b200021450c060b200041011015000b200041011015000b206841011015000b200041011015000b200041011015000b200120466a22452001490d0c20004101742268204520452068491b22454100480d0c02402000450d00204b200020451014224b0d010c040b20451012224b450d030b205c41046a215c204b20016a2059204610fe011a200120466a2101204f417c6a224f0d000b0b024002400240200420486b20014f0d00204820016a22462048490d0c20044101742200204620462000491b22004100480d0c2004450d0120582004200010142258450d020c090b204820016a2146205820486a204b200110fe011a2045450d0a0c090b2000101222580d070b200041011015000b204541011015000b410541011015000b410141011015000b410441011015000b410241011015000b410141011015000b20002104205820486a204b200110fe011a2045450d010b204b101f0b0240205a450d00205b101f0b02402049450d00204a101f0b02402046450d00204641026a22452046490d0120454104204541044b1b22014100480d0120474102200110142247450d02204741026a2058204610fe011a2004450d040c030b204641026a2145204741026a2058204610fe011a20040d020c030b1010000b200141011015000b2058101f0b20022802702002280274200241f8006a28020010c801200241d0026a24002045ad4220862047ad840f0b20014101470d002030280290012015460d010b2030200b6a2230200c470d01410021010c050b200241c0006a21692002280244216a410821684103216b417f216c4102216d41e401216e419c8cc000216f41782170410121710c010b410021310c010b410121310c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a220342003703002002420037033041cc81c0004111200241306a1000200241206a41086a2003290300370300200220022903303703200240024002400240200241206a411041e4a4c100410041001001417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010012203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010122203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101222030d020b200441011015000b41de86c00041331023000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bfb1404047f017e087f017e230041c0076b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b20022001360204200241e0056a20021016024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903d0064203510d00200241086a200241e0056a41e00110fe011a200241e8016a200241086a41e00110fe011a2002200241e8016a3602d004200241e0056a200241d0046a10cd0120022802e8052103024020022802e405450d0020022802e005101f0b200241e0056a200241e8016a41e00110fe011a200241d0046a200241e0056a101c024002400240024002400240024020022802d0044101470d0020022802d404210120022802d8042200411a460d0120004115470d024102210441f6012100200141d49bc100460d0f200141d49bc10041151080020d020c0f0b200241c8036a200241d0046a41086a41880110fe011a410021040240200241c8036a41086a410020022903c8034201511b2201450d002001450d00410321002001200310bb01450d03410021040c0e0b4176416c20011b21000c0d0b41002100200141e99bc100460d0241002104200141e99bc100411a108002450d0d0b4100210441810121000c0c0b200141206a410020011b210c2001102621064101210041002104200c290300220f2006540d0a4102210041022104200f20064280027c560d0a2006200f5a0d014100210b41002105410021074100210e410421090340412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142200450d062000200637002002402007200e470d00200741016a220a2007490d20200b200a200a200b491b220ead420c7e220f422088a70d20200fa7220a4100480d2002402007450d0020092005200a101422090d010c090b200a10122209450d080b200920056a220a2000360200200a41046a42c08080808005370200200b41026a210b2005410c6a2105200741016a2107200642017c2206200c290300220f540d000c030b0b410021040c0a0b41042109410021074100210e0b410c1012220d450d04412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142201450d062003ad21062001200f370020200d42c08080808005370204200d2001360200200241f8036a1020200241003602e805200242013703e00541012104410121014101101222000d090c140b200241fc016a41013602002002410436020c2002418cbdc200360208200242013702ec01200241d4bcc2003602e8012002200241086a3602f801200241e8016a41dcbcc200103a000b412041011015000b41c00041011015000b200a41041015000b410c41041015000b412041011015000b41c00041011015000b200241f8036a10200b200241003602e805200242013703e005024020044101460d0020044102470d02410110122201450d0d200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41023a000020022802e40520032802002201470d04200141016a22032001490d1320014101742205200320032005491b22054100480d132001450d0820022802e0052001200510142203450d090c160b41012101410110122200450d0b0b200241e0056a41086a22032003280200220520016a360200200220013602e405200220003602e005200020056a20013a000020022802e4052200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802e0052000200110142200450d050c0f0b410110122201450d0b200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41003a000020022802e40520032802002201470d02200141016a22032001490d1020014101742205200320032005491b22054100480d102001450d0720022802e0052001200510142203450d080c0c0b20022802e00521000c0e0b20022802e00521030c120b20022802e00521030c0a0b2001101222000d0a0b200141011015000b2005101222030d0d0b200541011015000b2005101222030d040b200541011015000b200120011015000b410141011015000b410141011015000b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000c070b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2205200141086a360200200020016a2006370000200220073602e801200241e8016a200241e0056a101302400240024002402007450d0020092007410c6c6a21082009210303402003280200210a2002200341086a28020022013602e801200241e8016a200241e0056a1013024002400240024020022802e405220b200528020022006b20014f0d00200020016a220c2000490d09200b4101742200200c200c2000491b22004100480d09200b450d0120022802e005200b20001014220b0d020c060b20022802e005210b0c020b20001012220b450d040b200220003602e4052002200b3602e005200528020021000b2005200020016a360200200b20006a200a200110fe011a2003410c6a22032008470d000b0b200241013602e801200241e8016a200241e0056a1013200d280200210b2002200d28020822013602e801200241e8016a200241e0056a101302400240024020022802e4052203200528020022006b20014f0d00200020016a22052000490d0620034101742200200520052000491b22004100480d062003450d0120022802e0052003200010142203450d020c040b20022802e00521030c040b2000101222030d020b200041011015000b200041011015000b200220003602e405200220033602e005200241e8056a28020021000b200241e0056a41086a2205200020016a360200200320006a200b200110fe011a02400240024020022802e4052200200528020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802e0052000200110142200450d020c040b20022802e00521000c040b2001101222000d020b200141011015000b1010000b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2203200141086a360200200020016a427f3700002003280200210320022802e005210520044101470d0302402007450d002007410c6c21002009210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b0240200e450d002009101f0b0240200d41046a280200450d00200d280200101f0b200d101f0c030b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000b200241e8056a280200210320022802e00521050b200241c0076a24002003ad4220862005ad840be90104027f017e017f017e230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a20032903003703002002200229031037030002400240024002402002411041e4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d022002290310210441082105410810122203450d010c030b42052104410821054108101222030d020b200541011015000b41de86c00041331023000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840bc90202027f017e23004180016b22022400200028020021000240024002400240200128020022034110710d002000290300210420034120710d012004200110e501210020024180016a240020000f0b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141c2a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141c2a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b2000418001101a000b2000418001101a000b860605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce0042001081022002200229031022072006290300220842f0b17f427f108202200241206a20006a2203417c6a200520022903007ca7220941e4006e220a4101744196a5c1006a2f00003b00002003417e6a200a419c7f6c20096a4101744196a5c1006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b2007a7220341e3004a0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d03200141c2a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d03200141c2a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b412721002005a7220341e3004c0d030b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff03714101744196a5c1006a2f00003b0000200941094a0d030c040b2000418001101a000b2000418001101a000b2003220941094c0d010b200241206a2000417e6a22006a20094101744196a5c1006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141e4a4c1004100200241206a20006a412720006b10e4012100200241a0016a240020000bc80601077f20002802002205410171220620046a2107024002400240024020054104710d0041002101412b418080c40020061b210620002802084101460d010c020b4100210902402002450d002002210a200121080340200920082d000041c00171418001466a2109200841016a2108200a417f6a220a0d000b0b200720026a20096b2107412b418080c40020061b210620002802084101470d010b02400240024002400240024002400240024002402000410c6a280200220920074d0d0020054108710d01200920076b2108410120002d0030220920094103461b2209410371450d0220094102460d034100210b200821090c040b41012108200020062001200210f6010d0a2000280218200320042000411c6a28020028020c1101000f0b41012108200041013a003020004130360204200020062001200210f6010d09200920076b21084101200041306a2d0000220920094103461b2209410371450d0320094102460d0441002107200821090c050b410021092008210b0c010b20084101762109200841016a410176210b0b417f2108200041046a210a200041186a21072000411c6a210502400340200841016a220820094f0d012007280200200a2802002005280200280210110000450d000b41010f0b200041046a280200210a41012108200020062001200210f6010d06200041186a2209280200200320042000411c6a220228020028020c1101000d0620092802002100417f2109200228020041106a21020340200941016a2209200b4f0d04410121082000200a2002280200110000450d000c070b0b41002109200821070c010b20084101762109200841016a41017621070b417f2108200041046a210a200041186a21022000411c6a210102400340200841016a220820094f0d012002280200200a2802002001280200280210110000450d000b41010f0b200041046a280200210a41012108200041186a2209280200200320042000411c6a220228020028020c1101000d0320092802002100417f2109200228020041106a21020340200941016a220920074f0d02410121082000200a2002280200110000450d000c040b0b41000f0b41000f0b41012108200020062001200210f6010d002000280218200320042000411c6a28020028020c1101000f0b20080bd20203037f017e027f230041306b220224004127210302400240024020004290ce00540d00412721030340200241096a20036a2204417c6a200020004290ce0080220542f0b17f7e7ca7220641e4006e22074101744196a5c1006a2f00003b00002004417e6a2007419c7f6c20066a4101744196a5c1006a2f00003b00002003417c6a2103200042ffc1d72f5621042005210020040d000b2005a7220441e3004c0d020c010b20002205a7220441e3004c0d010b200241096a2003417e6a22036a2005a7220641ffff037141e4006e2204419c7f6c20066a41ffff03714101744196a5c1006a2f00003b00000b02400240200441094a0d00200241096a2003417f6a22036a200441306a3a00000c010b200241096a2003417e6a22036a20044101744196a5c1006a2f00003b00000b200141e4a4c1004100200241096a20036a412720036b10e4012103200241306a240020030b960201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141d8c8c2006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141f0cac2006a2d0000220141c9004b0d03200141037441f0b2c1006a21010c010b2000410c7641706a22014180024f0d03200141d0d2c2006a2d00004106742000410676413f7172220141ff034b0d04200141c0b7c1006a2d0000220141364b0d05200141037441c0bbc1006a21010b200129030042012000413f71ad86834200520f0b41d0d4c200200141e0071048000b41e0d4c200200141ca001048000b41f0d4c20020014180021048000b4180d5c20020014180041048000b4190d5c200200141371048000b2701017f2000280200220128020020012802042000280204280200200028020828020010e801000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c200441e4a4c10041c4a7c10020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4104360200200441e4006a4104360200200441c8006a41146a4108360200200441d4006a4109360200200441306a41146a4105360200200420023602582004410136024c20044205370234200441ecc7c2003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a4194c8c200103a000b20042002200320081b360228200441c8006a41146a4104360200200441d4006a4104360200200441306a41146a41033602002004410136024c20044203370234200441fcc6c2003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a4194c7c200103a000b200441e4006a4104360200200441c8006a41146a4104360200200441d4006a4101360200200441306a41146a41043602002004410136024c20044204370234200441a4c7c2003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41c4c7c200103a000b41d4c7c2001024000b130020004102360204200041f4c0c2003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242013700000f0b410841011015000b130020004107360204200041ee9cc1003602000b130020004104360204200041c4c2c2003602000be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510142204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310142204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101422040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101422040d0a0c0e0b2005101222040d110b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0b0b200341011015000b200310122204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510122204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101422040d020c070b200228020021040c020b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d501200041086a22002001470d000b0b0bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d4012000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d4012000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000b0b0b2700200028020c200041106a2802001008200041146a350200100c200041186a350200100c00000b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10fe011a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010fd011a0b20010b0c002000350200200110e5010b0d0042f18afdd3f88ff29bfb000b5501017f024002402001418080c400460d0041012104200028021820012000411c6a2802002802101100000d010b02402002450d002000280218200220032000411c6a28020028020c1101000f0b410021040b20040b8008010b7f200028021021030240024002400240024002400240024002400240200028020822044101470d0020030d010c020b2003450d070b02402002450d00200120026a2105200041146a280200417f732106410021072001210320012108024002400340200341016a21090240024020032c0000220a4100480d00200a41ff0171210a20092103200641016a22060d010c030b02400240024020092005460d0020092d0000413f71210b200341026a22032109200a411f71210c200a41ff0171220a41e001490d010c020b4100210b20052103200a411f71210c200a41ff0171220a41e0014f0d010b200b200c41067472210a20092103200641016a22060d010c030b02400240024020032005460d00200341016a2209210d20032d0000413f71200b41067472210b200a41f001490d010c020b2005210d4100200b41067472210b200a41f0014f0d010b200b200c410c7472210a20092103200641016a22060d010c030b02400240200d2005460d00200d41016a2103200d2d0000413f71210a0c010b4100210a200921030b200b410674200c411274418080f0007172200a72220a418080c400460d03200641016a2206450d020b200720086b20036a21072003210820052003470d000c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b2004450d020c010b410021022004450d010b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200220096b2000410c6a28020022064f0d014100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2109410020002d0030220320034103461b2203410371450d0220034102460d03410021080c040b2000280218200120022000411c6a28020028020c1101000f0b2000280218200120022000411c6a28020028020c1101000f0b20092108410021090c010b200941016a4101762108200941017621090b417f2103200041046a210a200041186a21062000411c6a210702400340200341016a220320094f0d012006280200200a2802002007280200280210110000450d000b41010f0b200041046a280200210941012103200041186a220a280200200120022000411c6a220628020028020c1101000d01200a280200210a417f2103200628020041106a210602400340200341016a220320084f0d01200a20092006280200110000450d000b41010f0b41000f0b2000280218200120022000411c6a28020028020c11010021030b20030b7c01017f230041306b22022400200241146a410a3602002002410a36020c200220003602082002200041046a3602102001411c6a2802002100200128021821012002412c6a41023602002002420237021c200241a4c8c2003602182002200241086a36022820012000200241186a10fb012101200241306a240020010b9e0c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b200310e601450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641b8a8c1002107410021084102210941b002210a4188a9c100210b4188a9c100210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe0371410876211341f3adc10021144100211541022116419f01211741b5aec100211841b5aec1002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041b7abc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41f3adc100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241f3adc100470d000b0b41012102200f410171450d0c0c0e0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff0371210041d3afc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41d0b2c100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241d0b2c100470d000b0b41012102200f410171450d0b0c0d0b20082011101a000b201141af021049000b20152011101a000b2011419e011049000b41d4c7c2001024000b41d4c7c2001024000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e0340024002400240024002400240024020024101460d00024020024102460d0020024103470d062005422088a741ff0171417f6a220241044b0d06024020020e050006040503000b200542ffffffff8f6083210541fd002100410321020c070b41dc002100410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c00084210541dc002100410321020c040b200542ffffffff8f608342808080802084210541fb002100410321020c030b200542ffffffff8f608342808080803084210541f5002100410321020c020b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f83200542808080807083842105410321020c020b200542ffffffff8f6083428080808010842105410321020c010b200141186a28020041272001411c6a28020028021011000021020c020b200f2802002000200e280200280210110000450d000b41010f0b20020bbb0201037f23004180016b220224000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000b9709010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a3602002003428080808080043703082003200036022041002106200341003602182003410036021020032005360230200320053602280240024002400240024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2100200341346a2101200341306a210b4101210603402000200741206a2d00003a00002003200741086a28020036020c20032007410c6a280200360208410021020240024002400240200741186a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b2007411c6a280200220c200128020022044f0d0a200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b2007411c6a28020021040b410121020b200341086a410c6a2004360200200341086a41086a2002360200410021020240024002400240200741106a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b200741146a280200220c200128020022044f0d0b200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b200741146a28020021040b410121020b200341086a41146a2004360200200341086a41106a20023602000240024020072802004101470d00200741046a2802002202200128020022044f0d07200b28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d072004200241086a3602000b2002280200200341086a200241046a2802001100000d032006200a4f0d02200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d000c030b0b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000f0b41c4c8c200200220041048000b41d4c7c2001024000b41b4c8c200200c20041048000b41b4c8c200200c20041048000b0c002000350200200110e5010b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b22052400200520012002200320044100108502200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa7108402200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff0071108302200641106a20012002200741ff0071108402200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bcdd5020200418080c0000bf0bf0153797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e53797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d204576656e747353797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63653a65787472696e7369635f696e6465784d656d6f557064617465642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6d656d6f2e727353797374656d20506172656e7448617368426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d4163636f756e744e6f6e6365543a3a496e64657845787472696e736963436f756e74416c6c45787472696e736963734c656e426c6f636b4861736845787472696e7369634461746152616e646f6d536565644e756d626572506172656e744861736845787472696e73696373526f6f74446967657374543a3a4469676573744576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e4d656d6f4d61784d656d6f4c656e6774684d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f7570646174655f6d656d6f73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c69642074797065000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72737372632f6c6962636f72652f726573756c742e72733a203a617574683a6c656e41757261204c61737454696d657374616d70436f6e73656e737573204f726967696e616c417574686f7269746965734175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e72734f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e3a636f64652f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f636f6e73656e7375732f7372632f6c69622e7273000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c6f66666c726570304e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e742064617461217265706f72745f6d69736265686176696f726e6f74655f6f66666c696e6572656d61726b7365745f686561705f70616765737365745f636f64657365745f73746f726167652053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f7465207468652070726576696f757320626c6f636b27732076616c696461746f72206d6973736564207468656972206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f75722e5f7265706f7274436f6e73656e7375734f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a68656170706167657300002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f736f72742e7273617373657274696f6e206661696c65643a206d6964203c3d206c656e00000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727373797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e676665657370726f706f73616c73656c656374696f6e636f756e63696c6d656d6f6a6f7973747265616d2d6e6f646500df6acb689907609b0100000037e397fc7c91f5e40100000040fe3ad401f8959a02000000d2bc9897eed08f1501000000dd718d5cc53262d4010000004469676573744974656d206e6f7420657175616c6e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d6554696d657374616d70204469645570646174656163636f756e742068617320746f6f206665772066756e647354696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f74696d657374616d702f7372632f6c69622e727354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f6442616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e6365496e646963657320456e756d53657454696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c426c6f636b506572696f643e206265747765656e2073657175656e7469616c20626c6f636b734e65774163636f756e745265617065644163636f756e745472616e73666572205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e20416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e4e65774163636f756e74496e6465782041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465782f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f696e64696365732f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f62616c616e6365732f7372632f6c69622e727354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e74206461746142616c616e636573204578697374656e7469616c4465706f7369746e6f7420656e6f75676820667265652066756e6473496e64696365734e657874456e756d536574543a3a4163636f756e74496e646578456e756d5365742054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e7472616e736665727365745f62616c616e636520536574207468652062616c616e636573206f66206120676976656e206163636f756e742e77686f66726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572207374616b65722e6465737476616c756542616c616e636573546f74616c49737375616e6365543a3a42616c616e63654578697374656e7469616c4465706f7369745472616e736665724665654372656174696f6e46656556657374696e6756657374696e675363686564756c653c543a3a42616c616e63653e4672656542616c616e6365526573657276656442616c616e63652054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e20285468697320697320646966666572656e7420616e642077686f6c6c7920756e72656c6174656420746f207468652060426f6e64616765602073797374656d207573656420696e20746865207374616b696e67206d6f64756c652e29205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420697320616c6f6e65207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865726d6f72652c20604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e75702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e204174206c6561737420617320626967206173205265636c61696d5265626174652e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420616c6c6f77656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20616d6f756e74206f66207374616b65206f6e207468652073797374656d2e73657420536574207468652063757272656e742074696d652e2045787472696e736963207769746820746869732063616c6c2073686f756c6420626520706c616365642061742074686520737065636966696320706f736974696f6e20696e20746865206561636820626c6f636b2028737065636966696564206279207468652054726169743a3a54494d455354414d505f5345545f504f534954494f4e29207479706963616c6c7920617420746865207374617274206f6620746865206561636820626c6f636b2e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e74207370656369666965642062792060626c6f636b5f706572696f64602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d704e6f77426c6f636b506572696f6444696455706461746520446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d2028616e6420616476697365642920706572696f64206265747765656e20626c6f636b732e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e42616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656542616c616e6365732056657374696e67496e6469636573204e657874456e756d53657476657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c756562616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e74676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c7565436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573456c656374696f6e53746172746564416e6e6f756e63696e6753746172746564416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465644170706c69656452657665616c65642041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f644175746f53746172745374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e526f756e644578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e436f6d6d69746d656e74735665633c543a3a486173683e566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e416e6e6f756e63696e67506572696f6452657665616c696e67506572696f64436f756e63696c53697a6543616e6469646163794c696d69744d696e436f756e63696c5374616b654e65775465726d4475726174696f6e4d696e566f74696e675374616b65436f756e63696c456c656374696f6e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e72734f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167656d696e696d756d207374616b65206d7573742062652070726f7669646564656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b65214f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e67207374616765766f74696e67207374616b6520746f6f206c6f77436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e6720737461676573616c7420746f6f206c617267656d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f70706564436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a656170706c7972657665616c7365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f647365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b657365745f706172616d5f6e65775f7465726d5f6475726174696f6e7365745f706172616d5f636f756e63696c5f73697a657365745f706172616d5f63616e6469646163795f6c696d69747365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f7374617274666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747372632f6c6962616c6c6f632f7665632e7273617373657274696f6e206661696c65643a20656e64203c3d206c656e63616e6e6f74207472616e7366657220696c6c69717569642066756e64735374616b696e6720426f6e646167655374616b696e67204e6f6d696e61746f7273466f725265776172644f66666c696e655761726e696e674f66666c696e65536c617368204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e42616c616e6365204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e756e7374616b656e6f6d696e617465756e6e6f6d696e61746572656769737465725f707265666572656e6365737365745f73657373696f6e735f7065725f6572617365745f626f6e64696e675f6475726174696f6e7365745f76616c696461746f725f636f756e74666f7263655f6e65775f6572617365745f6f66666c696e655f736c6173685f67726163657365745f696e76756c6e657261626c657320536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e205365742074686520676976656e206163636f756e74277320707265666572656e636520666f7220736c617368696e67206265686176696f75722073686f756c64207468657920626520612076616c696461746f722e20416e206572726f7220286e6f2d6f7029206966206053656c663a3a696e74656e74696f6e7328295b696e74656e74696f6e735f696e6465785d20213d206f726967696e602e696e74656e74696f6e735f696e646578707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2057696c6c2070616e69632069662063616c6c6564207768656e20736f757263652069736e27742063757272656e746c79206e6f6d696e6174696e67207461726765742e2055706461746573204e6f6d696e6174696e672c204e6f6d696e61746f7273466f7220616e64204e6f6d696e6174696f6e42616c616e63652e7461726765745f696e6465787461726765742052657472616374207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e204465636c617265207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e5374616b696e675374616b696e6720496e76756c657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b207165645374616b696e672043757272656e744f66666c696e65536c6173685374616b696e6720496e74656e74696f6e735374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672056616c696461746f72507265666572656e636573706f73206465726976656420636f72726563746c792066726f6d2053656c663a3a696e74656e74696f6e7328293b206170706c795f756e7374616b652063616e206f6e6c79206661696c20696620706f732077726f6e673b2053656c663a3a696e74656e74696f6e73282920646f65736e2774206368616e67653b207165645374616b696e6720466f7263696e674e65774572615374616b696e6720426f6e64696e674475726174696f6e496e76616c696420696e6465785374616b696e672043757272656e744e6f6d696e61746f7273466f7200000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727356616c696461746f72436f756e744d696e696d756d56616c696461746f72436f756e7453657373696f6e7350657245726153657373696f6e52657761726450657262696c6c4f66666c696e65536c6173684772616365426f6e64696e674475726174696f6e496e76756c657261626c657343757272656e7445726156616c696461746f72507265666572656e636573496e74656e74696f6e734e6f6d696e6174696e674e6f6d696e61746f7273466f7243757272656e744e6f6d696e61746f7273466f7243757272656e7453657373696f6e52657761726443757272656e744f66666c696e65536c6173684e65787453657373696f6e735065724572614c6173744572614c656e6774684368616e67655374616b6552616e6765506169724f663c42616c616e63654f663c543e3e426f6e64616765536c617368436f756e74466f7263696e674e65774572612829526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520626c6f636b20617420776869636820746865206077686f6027732066756e6473206265636f6d6520656e746972656c79206c69717569642e20546865206869676865737420616e64206c6f77657374207374616b65642076616c696461746f7220736c61736861626c652062616c616e6365732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e742e20416c6c206e6f6d696e61746f72202d3e206e6f6d696e65652072656c6174696f6e73686970732e20416c6c20746865206163636f756e7473207769746820612064657369726520746f207374616b652e20507265666572656e636573207468617420612076616c696461746f72206861732e205468652063757272656e742065726120696e6465782e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c65206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c69736520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e5265776172645374616b696e67205374616b6552616e67655374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e735065724572615374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204f66666c696e65536c6173685374616b696e672053657373696f6e5265776172640000000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7374616b696e672f7372632f6c69622e727343616e6e6f74207374616b6520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74207374616b6520696620616c7265616479207374616b65642e43616e6e6f74206e6f6d696e61746520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74206e6f6d696e61746520696620616c7265616479207374616b65642e5374616b696e67204e6f6d696e6174696e674163636f756e74206d757374206265206e6f6d696e6174696e67496e76616c69642074617267657420696e64657863616e6e6f7420756e7374616b65207768656e2074686572652061726520746f6f20666577207374616b6564207061727469636970616e747350726f706f73616c4372656174656450726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564566f74656454616c6c7946696e616c697a656452756e74696d655570646174656450726f706f73616c5665746f656420526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e4861736854616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e7273417070726f76616c51756f72756d4d696e5374616b6542616c616e63654f663c543e43616e63656c6c6174696f6e46656552656a656374696f6e466565566f74696e67506572696f644e616d654d61784c656e4465736372697074696f6e4d61784c656e5761736d436f64654d61784c656e50726f706f73616c436f756e7450726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e41637469766550726f706f73616c4964735665633c7533323e5761736d436f6465427948617368543a3a486173685665633c75383e566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c207533322954616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e20476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e466565617070726f76616c2071756f726f6d206d7573742062652067726561746572207468616e207a65726f50726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732052656a656374696f6e46656550726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c732054616c6c79526573756c74736372656174655f70726f706f73616c766f74655f6f6e5f70726f706f73616c63616e63656c5f70726f706f73616c7665746f5f70726f706f73616c7365745f617070726f76616c5f71756f72756d6e65775f76616c75652043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f672920606060766f746520706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67297374616b656e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f7273466565732043757272656e745472616e73616374696f6e46656543686172676564204665652063686172676564202865787472696e7369635f696e6465782c206665655f616d6f756e7429753332416d6f756e7453756469644b65794368616e67656420546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e4163636f756e7449642041207375646f206a75737420746f6f6b20706c6163652e626f6f6c4e657753657373696f6e204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7375646f2f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73657373696f6e2f7372632f6c69622e7273696e76616c69642073616c7446656573205472616e73616374696f6e4279746546656546656573205472616e73616374696f6e42617365466565627974657320666565206f766572666c6f776e6f2065787472696e73696320696e64657820666f756e6466656520676f74206f766572666c6f772061667465722063686172676553657373696f6e204c6173744c656e6774684368616e676553657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e67746853657373696f6e204e6578744b6579466f720000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e7273466565735472616e73616374696f6e4261736546656541737365744f663c543e5472616e73616374696f6e4279746546656543757272656e745472616e73616374696f6e46656520546865206065787472696e7369635f696e646578203d3e20616363756d756c617465645f6665657360206d61702c20636f6e7461696e696e67207265636f72647320746f20747261636b20746865206f766572616c6c2063686172676564206665657320666f722065616368207472616e73616374696f6e2e20416c6c207265636f7264732073686f756c642062652072656d6f7665642061742066696e616c6973652073746167652e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e7375646f7365745f6b65796e65773c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636570726f706f73616c426f783c543a3a50726f706f73616c3e5375646f4b65797365745f6c656e677468666f7263655f6e65775f73657373696f6e20466f726365732061206e65772073657373696f6e2e6170706c795f72657761726473205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e436f6d706163743c543a3a426c6f636b4e756d6265723e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e56616c696461746f727353657373696f6e4c656e67746843757272656e74496e64657843757272656e745374617274543a3a4d6f6d656e74466f7263696e674e657753657373696f6e4c6173744c656e6774684368616e67654e6578744b6579466f724e65787453657373696f6e4c656e67746820546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206973207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b6579496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b696e697469616c6973655f626c6f636b6170706c795f65787472696e736963696e686572656e745f65787472696e73696373636865636b5f696e686572656e747376616c69646174655f7472616e73616374696f6e2f55736572732f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e302e302f7372632f636f6465632e727300000000000000000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000000000000000000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962616c6c6f632f736c6963652e7273436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e64734174436f756e63696c5465726d456e6465644e6577436f756e63696c5465726d53746172746564426c6f636b4e756d626572696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64652f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e727353746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e45787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e6365626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e646578626164207369676e617475726520696e2065787472696e7369637372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e7273416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e5465726d456e64734174543a3a426c6f636b4e756d626572436f756e63696c6d757374207365742066757475726520626c6f636b206e756d62657263616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f725f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e7365745f636f756e63696c6164645f636f756e63696c5f6d656d62657272656d6f76655f636f756e63696c5f6d656d6265727365745f7465726d5f656e64735f61742053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f7665543a3a4163636f756e74496420416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e74735665633c543a3a4163636f756e7449643e61757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e4578706c69636974207265706f7274696e67206e6f7420616c6c6f77656445787472696e7369635375636365737345787472696e7369634661696c656420416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e48617368206e6f7420657175616c00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e7273617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a2052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e676361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e72730000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839397372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d7372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f66206000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e85927372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f6620600041f0bfc1000bc89501000000003f0110000b00000000000000ac9710000100000000000000000000006452100000000000000000006c4b1000280000004a011000420000001b000000010000009d0110001e000000bb0110005d0000004e01000003000000000000001e0210000c0000000100000000000000794f10000c000000000000002a021000080000000000000064521000a063100000000000000000006452100000000000000000000100000000000000320210000e0000000000000000000000d03f1000030000000000000000000000000000000000000064521000906310000000000000000000645210000000000000000000000000000000000040021000100000000000000000000000d03f1000030000000000000000000000000000000000000064521000906310000000000000000000645210000000000000000000000000000000000050021000090000000100000000000000604e10000e00000000000000dc351000070000000000000064521000b863100000000000000000006452100000000000000000000100000000000000590210000d0000000100000000000000d03f10000300000000000000e33510000700000000000000645210008064100000000000000000006452100000000000000000000100000000000000660210000a0000000000000000000000dc351000070000000000000000000000000000000000000064521000b86310000000000000000000645210000000000000000000010000000000000070021000060000000000000000000000604e10000e0000000000000000000000000000000000000064521000a06310000000000000000000b063100001000000000000000100000000000000760210000a0000000000000000000000dc351000070000000000000000000000000000000000000064521000b863100000000000000000006452100000000000000000000100000000000000800210000e0000000000000000000000dc351000070000000000000000000000000000000000000064521000b8631000000000000000000064521000000000000000000001000000000000008e02100006000000000000000000000094021000090000000000000000000000000000000000000064521000c8631000000000000000000064521000000000000000000001000000000000009d021000060000000000000000000000a30210001a0000000000000000000000000000000000000064521000d86310000000000000000000645210000000000000000000010000000c00000000000000010000000d0000000c00000000000000010000000e000000bd021000420000000c00000000000000010000000f0000000c0000000000000001000000100000000c00000000000000010000001000000000000000ff021000040000000100000000000000794f10000c00000000000000e33510000700000000000000645210008064100000000000000000006452100000000000000000000100000000000000030310000d0000000000000000000000d03f1000030000000000000000000000000000000000000064521000906410000000000000000000645210000000000000000000010000000c0000000000000001000000100000000c000000000000000100000011000000d14e1000230000004a011000420000001b0000000100000000000000530310000b00000000000000e4641000010000000000000000000000645210000000000000000000000000003d0910000400000000000000e335100007000000a003100019000000c003100048000000bb0100002d00000064521000000000001d041000020000000804100015000000e5030000050000005704100022000000790410005b000000b500000003000000d404100028000000790410005b000000bb000000030000006c4b1000280000000105100060000000b8000000010000007005100019000000900510005b000000ef0000001e000000000000005306100012000000000000009c661000010000000000000000000000b4661000010000000000000000000000650610000c00000000000000bc661000010000000000000000000000d4661000010000000000000000000000710610000600000000000000dc661000010000000000000000000000f4661000010000000000000000000000770610000e00000000000000fc661000010000000000000000000000146710000100000000000000000000008506100008000000000000001c671000010000000000000000000000346710000100000000000000000000008d0610000b000000000000003c67100001000000000000000000000054671000010000000000000000000000ef0710000700000000000000e335100007000000d50710001a00000000000000910710000700000000000000980710003d000000400710005100000000000000390710000700000000000000e3351000070000001e0710001b000000000000001607100005000000000000001b07100003000000d70610003f000000000000005f4410000300000000000000e335100007000000c50610001200000000000000b30610000500000000000000b80610000d000000980610001b00000000000000ff07100013000000000000000000000012081000120000000000000000000000000000000000000064521000a86710000000000000000000645210000000000000000000000000000c00000000000000010000000d000000d14e1000230000000105100060000000b800000001000000a008100048000000b001000023000000a008100048000000b101000023000000790810001c0000005e53100018000000e40300000d0000003008100049000000870200001d00000030081000490000009d0000003a0000003008100049000000a40000003000000000000000e80810000600000000000000120000000000000000000000130000000000000000000000020000000000000000000000000000000000000014000000000000000000000000000000ee0810000900000000000000150000000000000000000000160000000000000000000000000000001700000000000000000000000200000000000000000000000000000000000000f70810000900000000000000180000000000000000000000190000000000000000000000000000001a000000000000000000000002000000000000000000000000000000000000000009100004000000000000001b00000000000000020000000000000000000000000000000200000000000000000000000000000002000000000000000000000000000000000000000409100007000000000000001c00000000000000000000001d0000000000000000000000000000001e0000000000000000000000000000001f0000000000000000000000000000000b09100008000000000000002000000000000000000000002100000000000000000000000000000022000000000000000000000000000000230000000000000000000000000000001309100007000000000000002400000000000000000000002500000000000000000000000000000026000000000000000000000000000000270000000000000000000000000000001a0910000700000000000000280000000000000000000000290000000000000000000000000000002a0000000000000000000000000000002b0000000000000000000000000000002109100004000000000000002c00000000000000000000002d000000000000000000000002000000000000000000000000000000000000002e0000000000000000000000000000005444100004000000000000002f00000000000000000000003000000000000000000000000000000031000000000000000000000000000000320000000000000000000000000000002509100009000000000000003300000000000000000000003400000000000000000000000000000035000000000000000000000000000000360000000000000000000000000000002e091000080000000000000037000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a0000000000000000000000000000003609100007000000000000003b00000000000000000000003c0000000000000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003d09100004000000000000003f00000000000000000000004000000000000000000000000000000041000000000000000000000000000000420000000000000000000000ea0910002b000000150a100060000000b400000004000000e80a100030000000150a100060000000a800000004000000180b10004c000000150a100060000000a90000000400000000000000640b10000a000000000000005c811000020000000000000000000000f46c10000100000000000000000000006e0b10000d00000000000000ac971000010000000000000000000000fc6c10000100000000000000000000007b0b10000800000000000000046d1000040000000000000000000000246d10000100000000000000c60b10001b000000af0b1000170000002440100009000000244010000900000061221000070000006122100007000000830b10002c00000000000000e10b10000f00000000000000586d1000020000000000000000000000686d1000040000000000000024401000090000006b0c10000c000000f00b1000220000006452100000000000120c100041000000530c1000180000006c4b100028000000770c10005e00000048000000010000006c4b100028000000d50c10005f000000a8000000010000006c4b100028000000150a1000600000009c00000001000000d14e100023000000770c10005e0000004800000001000000d14e100023000000150a1000600000009c0000000100000000000000b80d10000b0000000000000000000000c30d10000f0000000000000000000000000000000000000064521000986e10000000000000000000a86e100001000000000000000100000000000000d20d1000070000000100000000000000c30d10000f000000000000000d501000110000000000000064521000b06e10000000000000000000c06e10000100000000000000010000000c000000000000000100000043000000ef0d10001f0000000c000000000000000100000010000000d90d100016000000000000000e0e10000800000000000000206f1000020000000000000000000000506f1000010000000000000000000000160e10000b00000000000000586f1000030000000000000000000000a06f10000100000000000000000000009d0e10000400000000000000624410002300000000000000a10e100005000000000000004d0e100013000000680e10003500000000000000460e10000300000000000000624410002300000000000000490e100004000000000000004d0e10001300000000000000600e100008000000000000004d0e100013000000210e10002500000000000000ae0e10000d0000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000bc71100001000000000000000100000000000000c50e1000120000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000c471100001000000000000000100000000000000d70e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000cc71100001000000000000000100000000000000e20e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000d471100001000000000000000100000000000000ed0e1000070000000100000000000000794f10000c00000000000000f40e10001b0000000000000064521000dc7110000000000000000000ec711000010000000000000000000000000000000f0f10000b0000000100000000000000794f10000c00000000000000bb0e10000a00000000000000645210004c7210000000000000000000f47110000b0000000000000001000000000000001a0f10000f0000000100000000000000794f10000c00000000000000bb0e10000a00000000000000645210004c72100000000000000000005c7210000c0000000000000001000000dc14100029000000a81410003400000083141000250000003a141000490000000c00000000000000010000000d0000000414100036000000d0111000270000006452100000000000f7111000530000004a1210005a000000a412100055000000f91210004f000000481310005000000098131000150000006452100000000000ad131000570000008b111000450000000c000000000000000100000044000000290f10005d000000860f1000270000006452100000000000ad0f10005b000000081010005c000000641010004a0000006452100000000000ae1010005d0000000b1110002d000000645210000000000038111000530000008b1110004500000000000000051510000300000000000000e872100001000000000000000000000000731000080000000000000000000000bb1610000300000000000000be16100012000000081510001600000064521000000000001e15100055000000731510005b000000ce1510005d0000002b1610002f00000064521000000000005a1610006100000000000000d9161000030000000000000000000000fb4510000900000000000000000000000000000000000000645210002474100000000000000000003474100001000000000000000100000000000000dc1610000b0000000000000000000000fb4510000900000000000000000000000000000000000000645210003c74100000000000000000004c74100001000000000000000100000000000000e716100009000000000000000000000045401000040000000000000000000000000000000000000064521000547410000000000000000000647410000100000000000000010000000c00000000000000010000000e0000004e171000240000000c0000000000000001000000450000001d171000310000000c00000000000000010000000d000000f01610002d000000d14e100023000000d50c10005f000000a80000000100000000000000ac1810000f000000000000006452100000000000000000000000000068761000010000000000000000000000bb1810001100000000000000088f100001000000000000000000000064521000000000000000000000000000cc1810000f000000000000006452100000000000000000000000000064521000000000000000000000000000db1810000d000000000000006452100000000000000000000000000064521000000000000000000000000000e81810000b000000000000006452100000000000000000000000000064521000000000000000000000000000f318100010000000000000006452100000000000000000000000000064521000000000000000000000000000031910000e000000000000006452100000000000000000000000000064521000000000000000000000000000111910000e00000000000000649f1000010000000000000000000000645210000000000000000000000000001f1910000700000000000000ac971000010000000000000000000000645210000000000000000000000000002e33100005000000000000007076100002000000000000000000000064521000000000000000000000000000261910000800000000000000807610000300000000000000000000006452100000000000000000002e191000170000002440100009000000a3331000040000002440100009000000a333100004000000244010000900000000000000721a100009000000000000000000000045401000040000000000000000000000000000000000000064521000a47b1000000000000000000064521000000000000000000001000000000000007b1a1000050000000000000000000000801a10001d0000000000000000000000000000000000000064521000b47b1000000000000000000064521000000000000000000000000000000000009d1a1000050000000000000000000000d03f1000030000000000000000000000000000000000000064521000c47b100000000000000000006452100000000000000000000100000000000000a21a10001400000000000000000000000d501000110000000000000000000000000000000000000064521000e47b100000000000000000006452100000000000000000000100000000000000b61a1000120000000100000000000000794f10000c00000000000000c81a10001f0000000000000064521000d47b100000000000000000006452100000000000000000000100000000000000e71a10000a00000000000000000000000d501000110000000000000000000000000000000000000064521000e47b100000000000000000006452100000000000000000000100000000000000f11a10000f0000000100000000000000794f10000c00000000000000001b1000130000000000000064521000d47b100000000000000000006452100000000000000000000100000000000000131b10000b00000000000000000000001e1b10000c0000000000000000000000000000000000000064521000e47b1000000000000000000064521000000000000000000001000000000000002a1b1000050000000100000000000000dc35100007000000000000002f1b1000450000000000000064521000f47b100000000000000000006452100000000000000000000100000000000000741b1000100000000000000000000000604e10000e0000000000000000000000000000000000000064521000047c1000000000000000000064521000000000000000000001000000000000001f3510000c0000000000000000000000604e10000e0000000000000000000000000000000000000064521000047c100000000000000000006452100000000000000000000100000000000000841b10000f0000000000000000000000604e10000e0000000000000000000000000000000000000064521000047c100000000000000000006452100000000000000000000100000000000000931b10000b0000000000000000000000d03f1000030000000000000000000000000000000000000064521000147c1000000000000000000064521000000000000000000001000000000000009e1b10000e0000000000000000000000d03f1000030000000000000000000000000000000000000064521000247c100000000000000000006452100000000000000000000100000000000000ac1b10000f0000000000000000000000f83410000c0000000000000000000000000000000000000064521000347c100000000000000000006452100000000000000000000100000000000000bb1b10000f0000000000000000000000604e10000e0000000000000000000000000000000000000064521000447c100000000000000000006452100000000000000000000100000000000000ca1b10000e0000000000000000000000f83410000c0000000000000000000000000000000000000064521000547c10000000000000000000645210000000000000000000010000000c0000000000000001000000460000000c00000000000000010000000d0000000c0000000000000001000000430000000c0000000000000001000000470000000c0000000000000001000000100000000c0000000000000001000000480000000c0000000000000001000000490000000c00000000000000010000004a0000000c00000000000000010000004b0000000c00000000000000010000004c0000000c00000000000000010000004d0000000c00000000000000010000004e0000006c4b100028000000e71b1000510000008102000001000000d14e100023000000e71b1000510000008102000001000000000000000c2010000500000000000000807f100001000000000000000000000064521000000000000000000000000000833e10000400000000000000987f100002000000000000000000000064521000000000000000000000000000112010000600000000000000c87f1000030000000000000000000000645210000000000000000000000000001720100014000000000000004ca21000010000000000000000000000645210000000000000000000000000002b20100013000000000000004ca21000010000000000000000000000645210000000000000000000000000003e20100010000000000000004ca21000010000000000000000000000645210000000000000000000000000004e2010001b0000000000000010801000010000000000000000000000645210000000000000000000000000006920100017000000000000001080100001000000000000000000000064521000000000000000000000000000802010001a0000000000000010801000010000000000000000000000645210000000000000000000000000009a2010001b000000000000002880100001000000000000000000000064521000000000000000000000000000b52010001b000000000000004080100001000000000000000000000064521000000000000000000000000000d020100016000000000000005880100001000000000000000000000064521000000000000000000000000000e620100019000000000000007080100001000000000000000000000064521000000000000000000000000000ff2010001a00000000000000288010000100000000000000000000006452100000000000000000000000000019211000130000000000000064521000000000000000000000000000645210000000000000000000000000002c21100014000000000000006452100000000000000000000000000064521000000000000000000000000000402110000e000000000000008880100001000000000000000000000064521000000000000000000000000000143f10000500000000000000f83410000c00000000000000772110000a00000000000000dc3510000700000000000000143f10000500000000000000f83410000c00000000000000772110000a00000000000000dc3510000700000000000000833e10000400000000000000794f10000c00000000000000812110000400000000000000e33510000700000000000000712110000600000000000000604e10000e000000000000006b2110000600000000000000f83410000c00000000000000632110000800000000000000604e10000e00000000000000572110000c00000000000000d03f10000300000000000000522110000500000000000000d03f100003000000000000004e21100004000000000000004540100004000000982110001c0000008521100013000000770400000900000000000000f621100006000000000000003c81100001000000000000000000000044811000010000000000000000000000fc2110000e00000000000000788e10000200000000000000000000004c8110000200000000000000000000000a2210000c000000000000005c8110000200000000000000000000006c8110000100000000000000612210000700000002231000380000006822100055000000bd2210004500000024401000090000006122100007000000162210004b00000000000000143f1000050000000000000064521000000000000000000000000000588310000300000000000000000000003a23100007000000000000007083100001000000000000000000000088831000030000000000000000000000412310000800000000000000a083100001000000000000000000000064521000000000000000000000000000492310000a00000000000000b8831000010000000000000000000000d0831000020000000000000000000000532310001400000000000000e083100002000000000000000000000010841000030000000000000000000000672310001400000000000000f49a1000010000000000000000000000288410000100000000000000000000007b2310001400000000000000f49a1000010000000000000000000000308410000100000000000000000000008f23100013000000000000003884100001000000000000000000000050841000010000000000000000000000a22310000d00000000000000149b100001000000000000000000000058841000020000000000000000000000af23100017000000000000003884100001000000000000000000000068841000010000000000000000000000c623100011000000000000007084100001000000000000000000000088841000010000000000000011271000300000006452100000000000da2610003700000000000000ea2510001000000000000000f02410000c000000aa261000300000006452100000000000da2610003700000000000000a42610000600000000000000624410002300000000000000982610000c00000000000000f02410000c0000001b261000440000005f2610003900000000000000ea2510001000000000000000f02410000c00000000000000fa2510000500000000000000ff2510001c0000004e251000560000006452100000000000a4251000460000002825100026000000fc2410002c000000000000005f4410000300000000000000f02410000c000000d024100020000000382410004f00000087241000490000001424100024000000000000000a2410000a000000000000000d50100011000000d723100033000000f028100048000000f10900000e00000000000000382910000e0000000000000000000000d03f10000300000000000000000000000000000000000000645210008c8c10000000000000000000748b10000100000000000000010000000000000046291000150000000000000000000000d03f10000300000000000000000000000000000000000000645210007c8b100000000000000000008c8b1000010000000000000001000000000000005b2910000e0000000000000000000000604e10000e0000000000000000000000000000000000000064521000d48b10000000000000000000948b100001000000000000000100000000000000692910000d0000000000000000000000762910000700000000000000000000000000000000000000645210009c8b10000000000000000000ac8b1000010000000000000001000000000000000a2210000c000000000000000000000076291000070000000000000000000000000000000000000064521000b48b10000000000000000000c48b1000010000000000000001000000000000007d291000110000000000000000000000d03f10000300000000000000000000000000000000000000645210008c8c10000000000000000000cc8b1000010000000000000001000000000000008e2910000f0000000000000000000000604e10000e0000000000000000000000000000000000000064521000d48b10000000000000000000e48b1000010000000000000001000000000000009d2910000c00000000000000000000000d501000110000000000000000000000000000000000000064521000bc8c10000000000000000000ec8b100002000000000000000100000000000000a92910000a0000000000000000000000604e10000e0000000000000000000000000000000000000064521000748c10000000000000000000fc8b100001000000000000000100000000000000b3291000140000000100000000000000794f10000c00000000000000ff2510001c0000000000000064521000048c10000000000000000000148c100001000000000000000100000000000000c72910000a00000000000000000000000d501000110000000000000000000000000000000000000064521000bc8c100000000000000000001c8c100001000000000000000100000000000000d12910000a0000000100000000000000794f10000c00000000000000794f10000c0000000000000064521000a48c10000000000000000000248c100001000000000000000000000000000000db2910000d0000000100000000000000794f10000c000000000000000d501000110000000000000064521000bc8c100000000000000000002c8c100001000000000000000100000000000000e8291000140000000100000000000000794f10000c000000000000000d501000110000000000000064521000bc8c10000000000000000000348c100001000000000000000100000000000000fc291000140000000000000000000000f83410000c00000000000000000000000000000000000000645210003c8c10000000000000000000ac8b100001000000000000000100000000000000102a1000130000000000000000000000f83410000c00000000000000000000000000000000000000645210003c8c10000000000000000000c48b100001000000000000000100000000000000232a1000120000000000000000000000604e10000e0000000000000000000000000000000000000064521000a48c100000000000000000004c8c100001000000000000000000000000000000352a1000130000000000000000000000604e10000e0000000000000000000000000000000000000064521000748c10000000000000000000548c100001000000000000000100000000000000482a10000a0000000000000000000000522a10001400000000000000000000000000000000000000645210005c8c100000000000000000006c8c100001000000000000000100000000000000662a1000070000000100000000000000794f10000c00000000000000604e10000e0000000000000064521000748c10000000000000000000848c1000010000000000000001000000000000006d2a10000a0000000100000000000000794f10000c00000000000000d03f10000300000000000000645210008c8c100000000000000000009c8c100001000000000000000100000000000000772a10000d0000000000000000000000842a1000020000000000000000000000000000000000000064521000a48c10000000000000000000b48c100001000000000000000000000000000000862a10000f0000000000000000000000952a1000280000000000000000000000000000000000000064521000bc8c10000000000000000000cc8c1000010000000000000001000000f12f10002a0000000c00000000000000010000004f000000a12f100050000000782f1000290000000c000000000000000100000050000000302f1000480000000c000000000000000100000051000000dc2e1000540000008e2e10004e0000000c00000000000000010000004d000000602e10002e0000008c2d100069000000f52d10006b000000752d1000170000000c000000000000000100000052000000532d1000220000002a2d100029000000022d100028000000dd2c1000250000009c2c1000410000000c000000000000000100000044000000782c100024000000402c1000380000000c000000000000000100000047000000042c10003c0000000c00000000000000010000000e000000c72b10003d0000000c000000000000000100000043000000532b1000740000000c00000000000000010000000d000000392b10001a0000000c000000000000000100000010000000bd2a10007c00000080311000190000003031100048000000bb0100002d000000f0301000390000003031100048000000100200002d000000f028100048000000eb0900000a0000006c4b100028000000993110005e0000005300000001000000d14e100023000000993110005e000000530000000100000000000000fa3210000f00000000000000788e1000020000000000000000000000888e1000030000000000000000000000093310001000000000000000788e100002000000000000000000000064521000000000000000000000000000193310001500000000000000a08e1000020000000000000000000000645210000000000000000000000000002e3310000500000000000000b08e1000030000000000000000000000c88e1000040000000000000000000000333310000e00000000000000e88e100001000000000000000000000064521000000000000000000000000000413310000e00000000000000f08e1000020000000000000000000000008f10000100000000000000000000004f3310000e00000000000000088f1000010000000000000000000000108f100001000000000000002440100009000000d03f100003000000bf3310000800000029341000270000005034100040000000d03f1000030000001b3410000e0000002440100009000000d03f1000030000001334100008000000bf33100008000000c733100028000000ef331000140000000334100010000000a733100018000000d03f100003000000a333100004000000753310002e000000d03f1000030000005d331000180000006c4b1000280000009034100052000000ce0000000100000000000000e23410000e0000000000000000000000d03f1000030000000000000000000000000000000000000064521000a49310000000000000000000b493100002000000000000000100000000000000f0341000080000000000000000000000f83410000c0000000000000000000000000000000000000064521000c49310000000000000000000d493100001000000000000000100000000000000043510000f0000000000000000000000f83410000c0000000000000000000000000000000000000064521000dc9310000000000000000000ec93100001000000000000000100000000000000133510000c0000000000000000000000f83410000c0000000000000000000000000000000000000064521000f4931000000000000000000004941000010000000000000001000000000000001f3510000c0000000000000000000000604e10000e00000000000000000000000000000000000000645210000c94100000000000000000001c941000010000000000000001000000000000002b3510000a0000000000000000000000d03f1000030000000000000000000000000000000000000064521000249410000000000000000000645210000000000000000000010000000000000035351000110000000000000000000000d03f10000300000000000000000000000000000000000000645210003494100000000000000000006452100000000000000000000100000000000000463510000e0000000000000000000000d03f10000300000000000000000000000000000000000000645210004494100000000000000000006452100000000000000000000100000000000000543510000d0000000000000000000000d03f1000030000000000000000000000000000000000000064521000549410000000000000000000649410000100000000000000010000000000000061351000090000000100000000000000d03f100003000000000000006a3510004b00000000000000645210006c94100000000000000000007c94100001000000000000000100000000000000b5351000110000000000000000000000c63510000800000000000000000000000000000000000000645210008494100000000000000000009494100001000000000000000100000000000000ce3510000e0000000100000000000000dc3510000700000000000000e33510000700000000000000645210009c9410000000000000000000ac94100001000000000000000100000000000000ea3510000f0000000100000000000000d03f10000300000000000000f93510001d0000000000000064521000b494100000000000000000006452100000000000000000000100000000000000163610001800000001000000000000002e361000130000000000000013341000080000000000000064521000c494100000000000000000006452100000000000000000000100000000000000413610000c0000000100000000000000d03f100003000000000000004d3610001b0000000000000064521000d49410000000000000000000645210000000000000000000010000000c000000000000000100000050000000d038100032000000023910002f0000000c00000000000000010000004c0000008a381000460000000c0000000000000001000000530000003e3810004c0000000c00000000000000010000004e000000023810003c0000000c00000000000000010000005400000039371000510000000c0000000000000001000000550000000c0000000000000001000000560000000c0000000000000001000000570000000c0000000000000001000000430000000a3710002f0000000c000000000000000100000058000000ea361000200000000c000000000000000100000010000000a1361000490000000c00000000000000010000001000000068361000390000000c0000000000000001000000100000000c00000000000000010000000d0000000c0000000000000001000000590000009037100019000000b037100052000000b000000020000000d14e1000230000009034100052000000ce0000000100000000000000ad3c10000f00000000000000f095100004000000000000000000000050961000040000000000000000000000bc3c1000100000000000000070961000020000000000000000000000a0961000040000000000000000000000cc3c10000f00000000000000c0961000010000000000000000000000d8961000010000000000000000000000db3c10000d00000000000000c0961000010000000000000000000000e0961000010000000000000000000000e83c10001300000000000000e896100001000000000000000000000064521000000000000000000000000000143f10000500000000000000f83410000c00000000000000193f10000400000000000000e335100007000000000000001d3f10000b00000000000000e33510000700000000000000283f10000900000000000000e3351000070000009c3d100044000000e03d100006000000873e10008d0000007f3e10000400000000000000913d10000b00000000000000d03f10000300000000000000833e1000040000000000000013341000080000009c3d100044000000e03d100006000000e63d1000990000007f3e10000400000000000000913d10000b00000000000000d03f100003000000383d100059000000043d10003400000000000000fb3c10000900000000000000d03f100003000000000000009f3f100007000000000000002c9710000200000000000000000000003c9710000100000000000000d03f100003000000d33f100006000000a63f10002a00000000000000d93f100005000000000000009c971000010000000000000000000000a4971000010000000000000000000000de3f10000a00000000000000ac971000010000000000000000000000b4971000010000000000000045401000040000002d401000180000002440100009000000e83f10003c00000000000000494010000a00000000000000649f1000010000000000000000000000e897100002000000000000005340100055000000a8401000220000006c4b100028000000ca4010005b00000023000000010000006c4b100028000000254110005e0000003b000000010000006042100039000000a042100048000000100200002d00000000000000ec421000120000000000000000000000fe4210000a0000000000000000000000000000000000000064521000349910000000000000000000249910000100000000000000010000000000000008431000120000000000000000000000fe4210000a00000000000000000000000000000000000000645210003499100000000000000000002c991000010000000000000001000000000000001a431000150000000100000000000000d03f10000300000000000000fe4210000a0000000000000064521000349910000000000000000000449910000400000000000000010000001d44100037000000da431000430000000c0000000000000001000000440000002f4310004500000074431000350000006452100000000000a94310003100000000000000544410000400000000000000bc99100001000000000000000000000064521000000000000000000000000000584410000700000000000000d4991000010000000000000000000000645210000000000000000000000000008544100008000000000000008d44100010000000000000005f4410000300000000000000624410002300000000000000a1441000030000000000000000000000794f10000c0000000000000000000000000000000000000064521000389a10000000000000000000645210000000000000000000010000000c00000000000000010000000f00000000000000584410000700000000000000cc9a1000010000000000000000000000e49a1000020000000000000000000000a44410000a00000000000000f49a10000100000000000000000000000c9b1000010000000000000000000000ae4410001100000000000000149b10000100000000000000000000002c9b1000010000000000000000000000b54510000300000000000000b84510000d0000005445100058000000ac45100009000000000000005f44100003000000000000003d45100017000000e24410005b00000000000000d54410000d000000000000004540100004000000bf4410001600000000000000cc4510000a00000000000000000000000d501000110000000000000000000000000000000000000064521000949d10000000000000000000a49d100001000000000000000100000000000000d64510000d0000000000000000000000604e10000e0000000000000000000000000000000000000064521000ac9d10000000000000000000bc9d100001000000000000000100000000000000e34510000c0000000000000000000000604e10000e0000000000000000000000000000000000000064521000cc9d10000000000000000000c49d100001000000000000000100000000000000ef4510000c0000000000000000000000fb451000090000000000000000000000000000000000000064521000cc9d10000000000000000000dc9d1000010000000000000001000000000000000446100011000000000000000000000045401000040000000000000000000000000000000000000064521000049e10000000000000000000e49d10000200000000000000000000000000000015461000100000000000000000000000604e10000e0000000000000000000000000000000000000064521000049e10000000000000000000f49d100001000000000000000000000000000000254610000a0000000100000000000000794f10000c00000000000000b84510000d0000000000000064521000049e10000000000000000000fc9d1000010000000000000000000000000000002f461000110000000000000000000000604e10000e0000000000000000000000000000000000000064521000049e10000000000000000000149e10000100000000000000000000000c000000000000000100000010000000d04710001f0000000c00000000000000010000004d000000b14710001f000000934710001e0000000c00000000000000010000000e0000006b47100028000000ad4610005e0000000b471000600000007d4610003000000059461000240000000c00000000000000010000000d0000004046100019000000d14e100023000000ca4010005b0000002300000001000000d14e100023000000254110005e0000003b00000001000000264910000d0000000b4910001b000000ca481000410000000c010000010000003349100010000000434910000f0000005249100013000000654910000f00000074491000140000002d4a100036000000884910005e0000004e01000005000000f04910003d000000884910005e00000055010000050000002d4a100036000000884910005e0000006901000005000000884910005e0000007001000005000000804a100048000000eb0900000a000000d04a100045000000c702000036000000000000003c4b10001000000000000000649f1000010000000000000000000000645210000000000000000000000000004c4b10001500000000000000649f1000010000000000000000000000645210000000000000000000614b10000b0000006c4b100028000000944b1000500000004500000001000000b84d10001c0000000c4c1000600000005100000003000000944d1000240000000c4c10006000000059000000030000004d4d10002c0000000c4c100060000000930000004c000000154d1000380000000c4c100060000000910000002a000000ed4c1000280000000c4c1000600000009200000032000000c54c1000280000000c4c100060000000940000002c000000934c1000320000000c4c100060000000c8000000030000006c4c1000270000000c4c100060000000d000000004000000e44b1000280000000c4c100060000000d6000000030000006c4b100028000000034e100025000000c30900002300000000000000284e10000d0000000000000000000000354e10002100000000000000000000000000000000000000645210000ca1100000000000000000006452100000000000000000000100000000000000564e10000a0000000000000000000000604e10000e00000000000000000000000000000000000000645210001ca110000000000000000000645210000000000000000000010000000c0000000000000001000000100000000c00000000000000010000005a000000d14e100023000000944b100050000000450000000100000000000000f44e10000b00000000000000f4a110000100000000000000000000000ca21000010000000000000000000000ff4e1000120000000000000014a210000100000000000000000000002ca21000010000000000000000000000114f1000150000000000000034a2100001000000000000000000000064521000000000000000000000000000264f100010000000000000004ca2100001000000000000000000000064a210000100000000000000000000000550100008000000000000000d50100011000000ae4f10005700000000000000a74f10000700000000000000794f10000c000000854f10002200000000000000684f10001100000000000000794f10000c00000000000000614f10000700000000000000604e10000e000000364f10002b00000000000000e2501000100000000000000064521000000000000000000000000000c4a21000010000000000000000000000f25010000f0000000000000064521000000000000000000000000000cca210000100000000000000165110002500000001511000150000005051100019000000705110006c0000005500000022000000dc5110002d000000095210000c00000015521000030000003a521000110000004b52100017000000ea02000005000000645210002000000084521000120000000c00000000000000010000005b00000076531000060000007c531000220000005e531000180000006d090000050000009e53100016000000b45310000d0000005e531000180000007309000005000000df5310000b000000da5f100016000000c153100001000000c953100016000000da07000009000000b85f10000e000000c65f100004000000ca5f100010000000c153100001000000c953100016000000de07000005000000785f10002b000000a35f1000150000005901000015000000df5310000b000000ea5310002600000010541000080000001854100006000000c153100001000000c953100016000000eb0700000500000064521000000000003654100002000000205410001600000054040000110000002054100016000000480400002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20705910004a000000c05b100000020000c05d10003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202505910002000000027000000190000005059100020000000280000002000000050591000200000002a0000001900000050591000200000002b0000001800000050591000200000002c000000200000006452100000000000a35f1000150000000e0400000500000000f2a901046e616d6501e9a9018602000c6578745f74776f785f31323801146578745f6765745f73746f726167655f696e746f020e6578745f626c616b65325f32353603126578745f656432353531395f766572696679040f6578745f7365745f73746f7261676505116578745f636c6561725f73746f7261676506106578745f73746f726167655f726f6f7407186578745f73746f726167655f6368616e6765735f726f6f74080e6578745f7072696e745f75746638090d6578745f7072696e745f6865780a126578745f6578697374735f73746f726167650b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f4b3c616c6c6f633a3a7261775f7665633a3a5261775665633c542c20413e3e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303937643231396233663138343832631034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a68343965646138323365313438356637361180013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c27612c20486173682c20417574686f7269747949643e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6832346531323437313961393032393134120c5f5f727573745f616c6c6f6313673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865353132666539376466303230613530140e5f5f727573745f7265616c6c6f631508727573745f6f6f6d16b8013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831613962616633656535373331666437175d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686530366365316237616538343533643818733c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861383438636135646431353766636335195d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313562393735396563323463303731621a36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68646162663734306166653461666664641b583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68663838613537353461373763303230331cc5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a68663032363365653639623335383664621d373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a626c6f636b5f686173683a3a68663236623930303266316637376538631e363c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a656e756d5f7365743a3a68353935663062356236353733306661381f0e5f5f727573745f6465616c6c6f632030636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a686365623666373462366635656364613121673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865366138363530666437393236393561225b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862383466343863643035646433326331232e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68383533643435306638346666323862332429636f72653a3a70616e69636b696e673a3a70616e69633a3a683563663961666461383036363031366525373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a696e697469616c6973653a3a6836393366303835623230366433393239263a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6163636f756e745f6e6f6e63653a3a6862373731623630373630626264366463273a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6465706f7369745f6576656e743a3a6864396266383336313161656563373963285d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68383865613533393835323434646563612992016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68663933343235626333616661323237382a403c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68666261353763626638346332373163302b453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a68316361623739313438386466356662322c453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68363934653133663262306534323836652d30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68303065343633313339663739316263392e703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68613761393333353137343236663766622f353c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a66696e616c6973653a3a6830376430363638393765373233666438306d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6830616438616139626166393332383437314e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686630363538623734313666363166316132563c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839643362613663653333643238383634337e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686230376636316536653637353430663434513c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6834373132623030393765386462663939354c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68616434313963323739396633323933663634636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a6830343838323434326432343338623538372e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a686566633733373364636532393332333238303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686336376564666338373334633534636539323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68343936396430363331643330643766373a2d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a68356562656632303632656463303539303b423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68303931613465386235373839343266333c6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68323737363338613335366162373765313d6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68613761326230306564363363366563623e4473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a68383937643637396436366364663961313f493c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6863623739623935353262643436373862404e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832326133643234383737383862326532413e3c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683732343831633661376161643462316242433c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a683365646433373562353163373566626343483c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68303333393862613761343661316362344430636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6831626138303633623863643038656365452d636f72653a3a736c6963653a3a736f72743a3a726563757273653a3a68366233613239303338626636326435344634636f72653a3a736c6963653a3a736f72743a3a627265616b5f7061747465726e733a3a6864336335306161376633353563376665473c636f72653a3a736c6963653a3a736f72743a3a7061727469616c5f696e73657274696f6e5f736f72743a3a68373264643532616563326638343335304836636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68633536336465343134643138666337614934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68343237383139336437353464326633654a2e636f72653a3a736c6963653a3a736f72743a3a68656170736f72743a3a68313564663739343438326230326437644b4a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68366439653433353733333238363230624c39636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a68613164333366373266663864353534664d4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a68313236363830306235623333616436394e4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68363531366266333064366439663530394f4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a6862373636316532393430356130646166504b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a686233336339613133326436653933343051486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666565733a3a683436363239353337613363363230353152486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6833323465353438343735356365663837534d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6862343361663437646562343466653237544c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6838373761343962616662383661666332554b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a686162623832646633323634323539643256486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a683164626662333632306161666561393557483c492061732073725f7072696d6974697665733a3a7472616974733a3a436865636b457175616c3e3a3a636865636b5f657175616c3a3a683962653465636161316432323364333958d2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a683838616165653434656431343739373459633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68656266666438313565313931336234355a83013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68363564616135386639653036313363665b7c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68323139633837376333613461373939645c84013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68366565363032623335316137323631315db1013c73726d6c5f7374616b696e673a3a4e6f6d696e6174696e673c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a68333264376266326339626666383737635e593c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a69735f636f756e63696c6f723a3a68393664346661333837363730643037665f4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683238633261303661306363353236313660b9033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970652c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a6838643066633361333136353462636135613c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6e6f6d696e61746f72735f666f723a3a6837353332353337633932613231363636623d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68323838393534313639663637393163666380013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a686338623132663837333965383434376564663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68613236363230323363363432646130316585013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a6831376533646638373038363831343261667e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a6830313635346635323633323839666430673d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6865343032613237316366643366336333684e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863323437346335333731646337646438693d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68326134313536343161643032383832376a5c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f70726f636573735f766f74653a3a68373937313338643730386362376337616b3b3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6170706c795f756e7374616b653a3a68613333313364396533313236643766396c423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68383466316562393731326631393436646d683c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c20753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68656635313232636230633932313134326e3f3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f667265655f62616c616e63653a3a68623363363164383963393430316633376f433c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f72657365727665645f62616c616e63653a3a68383464363262646363353636303137667096013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a456e737572654163636f756e744c69717569643c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f6163636f756e745f6c69717569643a3a6837353039316339326230613036363137717c3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a686430666530626435353337636231613472443c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63757272656e745f6e6f6d696e61746f72735f666f723a3a68663938636130616532653364646630387330636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6863663036353438386461373764613963744e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834643336633364616232343061333232755e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683737653763393832363937383833326676135f5f727573745f616c6c6f635f7a65726f656477397061726974795f636f6465633a3a636f6465633a3a4f75747075743a3a707573685f627974653a3a686435383737383736373837303439306578763c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686162663638663561353139313237343379c8013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c207375627374726174655f7072696d6974697665733a3a617574686f726974795f69643a3a45643235353139417574686f7269747949643e3e3e3a3a66726f6d3a3a68383233663366383138323439666236637a82013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a68663961373032636536663666303061337b7d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7265776172643a3a68353361343830346662313632306337637cb00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c2045787472696e7369633e3e3a3a6465636f64653a3a68313733383437373463626165656365627d7c3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c20486173682c204469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343039303164333036313766343937617e30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68636562366637346236663565636461317f763c284e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861643433663530356633666263656161800186013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861666563383566303963333732636637810182023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c20616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a68313364303065383234373835323537668201a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a683931376634313134333231386662326283015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746172745f656c656374696f6e3a3a683131663663393835346265346363643584013c3c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68613437633363646131356664656533338501413c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68313566336132303538336635353436658601463c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683435623531613334343638366132653587013d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68393438323163353135383839346331648801423c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633330373739623665643635353738318901473c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68663230363739386364396136663734338a013e3c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68373930366236316137636230656234358b01433c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633863383433373336623638666134308c01483c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68666137636133376138303063383665618d016e3c73726d6c5f74696d657374616d703a3a5f5f47657442797465537472756374426c6f636b506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636331373535393733323930363063638e013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343030373738653632306539393434618f01d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68663930333463366636306562626635329001663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a68646361623537363230616531313537639101663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683231636134353334323135373939343692018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683665323731633435383030633936366293018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683036373336373761616132653262373594018d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834353162396464636139623366636461950186013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832616631366333373937653935316662960190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683137383436623534363265633339393297018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623262323033313462333538396163329801613c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68343536306335613330303363343066339901f6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970653e2c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a68646661626238326466326563303033629a013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68653530633637393239323837323138309b015f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a74656172646f776e5f656c656374696f6e3a3a68623733616133343333656262343138309c01623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68336530343138623064653265366461379d015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a64726f705f6170706c6963616e74733a3a68663432613333376263663062333763389e01673c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c20503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68316266313761633066343664633036639f012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6864343161356261616361353939383034a0014b3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e3e3a3a696e736572743a3a6836313533303765663535353934363038a1012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6835666436393434326333353133303637a201733c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6836656236353033646438323132396431a3015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6865633531616135663433366666333762a4013c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6863323764393236323532373735663939a501413c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6863616438623766623036616539663532a601463c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863313065663463366461373734643936a701703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837313935643330343231323130316265a801723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864653534323233303263303436656639a901743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838383033626239663637316265326433aa01753c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72507265666572656e6365733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396165376531383634383434616262ab01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864376432353439363231303964393336ac016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834386664386230316537646266313461ad01763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833346133373665343963343930333761ae01673c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6830316461613961346266316664333834af018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863356362663732396662366366346263b0018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839613761333133373363343966303738b10190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831306233643463623962613239656339b20193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839353430343162653261666631316363b3018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396639653836393330343836383566b4018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839383538356230303266633639306230b5018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861616134343039356630356535356439b60191013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862333031323964396633646131633162b7018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863343136616632633337646430323763b80190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866373535356236323037656533323163b901623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6864306636616331376266623765333365ba015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6834326532633266336238316466626563bb018f013c73726d6c5f666565733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a43686172676542797465734665653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6368617267655f626173655f62797465735f6665653a3a6838616239323966373534373433323931bc013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a7365745f76616c696461746f72733a3a6836393166633934643661333334373061bd013e3c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6831653331353636313862663061363432be01433c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6865373734656464363636323165663531bf01703c73726d6c5f666565733a3a5f5f476574427974655374727563745472616e73616374696f6e426173654665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830346163613038663166373630303564c001393c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6838373563313739653138356439396161c1013e3c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862633663653436663333633935613035c201433c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6866336639303531623866663934303439c301613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863323839646239633764356532636234c4013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866313638333963343464636361353635c501413c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6837396262343730303361613739343763c601463c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839663638653630633566386164363638c701477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6866623337343535666564336564326664c801623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830373531383239613932323033323465c901523c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c27612c204b2c20563e3e3a3a696e736572743a3a6830356136646435356461336666646430ca010c436f72655f76657273696f6ecb0110436f72655f617574686f726974696573cc0112436f72655f657865637574655f626c6f636bcd014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6866643337616665343561313865306132ce016c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6838633764323066386435393966616134cf01753c73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c20426c6f636b2c20436f6e746578742c205061796d656e742c20416c6c4d6f64756c65733e3e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6837353763343730336233613232396433d001483c636f72653a3a666d743a3a417267756d656e74733c275f3e20617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6865316465313661646637653161303132d101303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862363266656434353033623836383436d20115436f72655f696e697469616c6973655f626c6f636bd301114d657461646174615f6d65746164617461d401603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835313137303230316435376330623930d501433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865646565323965656465663066646164d601633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834393039313963363138396531663739d701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6836336564353565623166313739363337d801633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834366162623930643330333530653030d9011c426c6f636b4275696c6465725f6170706c795f65787472696e736963da011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636bdb0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373dc015d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838323432633461616530623565313366dd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6831313638656666333065383466376537de011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473df0118426c6f636b4275696c6465725f72616e646f6d5f73656564e0012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ee10115417572614170695f736c6f745f6475726174696f6ee201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6863346261633263326133613632383863e301303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839633163616533383831633638356363e40135636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a6837636339316532326362396664303931e5012f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a6839393761656138626132613165386261e6013d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a6837366164306134326463396364643435e7018001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a6835383261663432346337616638336636e8012e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a6839333938326463383963326433306633e901653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837313435646263306438393733353030ea018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837646236666334363737646535393962eb01603c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6830393132336537386130613730303366ec015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866653432646231396336356337636633ed01423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862376233663765643464616530366662ee01633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333930623839626139393733633830ef0111727573745f626567696e5f756e77696e64f0010a5f5f72675f616c6c6f63f1010c5f5f72675f6465616c6c6f63f2010c5f5f72675f7265616c6c6f63f301115f5f72675f616c6c6f635f7a65726f6564f4014e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6862363365636566363335323262356137f501313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6866323035616464396235666434323661f60143636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a6862373839383664393965363163626236f7012c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6863393639333233396661336330376339f8014a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6837633935363262633930336261666566f901323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862353765363333353432643165666462fa0149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6863333337366132313537383338373132fb0123636f72653a3a666d743a3a77726974653a3a6864633965303262643431393466643037fc0134636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6866666434343232643837336134346233fd01066d656d736574fe01066d656d637079ff01076d656d6d6f76658002066d656d636d708102095f5f756469767469338202085f5f6d756c74693383023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a686238306662333930663030636262333584023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a686437653131386565363366623935306185020c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33342e302d6e696768746c79202836333364373561633120323031392d30322d323129", "0x9de7647cf9f9d6bbc4078dc693fbe19e": "0x8013030000000000", - "0x62f532424b7b1c52f522857315040f27": "0x00000000000000000000000000000000", + "0x9a20141d973fa6385716ae951301f106": "0x00", + "0xb9b861cab4bbce870c811515bd5f33d7": "0x00", + "0x9624db8f7f825714be29f5be7ef5a76f": "0x0c000000", + "0x784006f2a1a409c65c0059c57eaed7a6": "0x00000000000000000000000000000000", + "0xdade128e67a5ed110063f56a01ab6bbf": "0x0000000000000000", + "0x24b2518f9a9ee24ab0b62346d83d90b0": "0x40420f00", "0x0e0cdac0d4de97c54f3ae216b003fa81": "0x5802000000000000", + "0xd437fe93b0bd0a5d67d30d85d010edc2": "0x80969800", + "0x8b54f94e652e79e757faa813e395199d": "0x19000000", + "0xb7b6ec0f25eb1ed8b91d05f697d7a874": "0x0600000000000000", "0x2196ccc1c9c70e1c05f6229d8b36f461": "0xc0a8000000000000", - "0x3b7d32346a3315a351084927a27d06a7": "0x00000000000000000000000000000000", - "0x5278a9149ec1adfa8090a8ad336c881e": "0x0300000000000000", + "0xe86aadd06aa1443b2e0485fbe6c75d79": "0x4038000000000000", + "0x30f81b445b20a0cacb485475146b9c2e": "0x00020000", + "0x78f4ad73d6b7279f8d06f359e363c829": "0xd0eb0b54020000000000000000000000", + "0x50a63a871aced22e88ee6466fe5aa5d9": "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", + "0x6ca8e0c58adf9d1f3105b0888d39bf2d": "0x00000000000000000000000000000000", + "0xf9f84510feb5ef56aaead09aab1619c9": "0x4038000000000000", + "0x51dc7d6b960dbce5de1de96c88afc3d8": "0x0100000000000000", + "0x7be03dc7a23a09ed0b3f2b21c864cc98": "0x00e40b54020000000000000000000000", + "0x040ff70c23416b89ce6afb75ee0d362e": "0x00000000", + "0x329586a7b97f2ac15f6c26a02c3c5621": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", + "0x4664fb5d4e16f894df23cadb3faaa9a6": "0x04000000", + "0x052864eeea9f485c498882d7367582d3": "0xc8000000000000000000000000000000", "0x0e4944cfd98d6f4cc374d16f5a4e3f9c": "0x0000000000000000", - "0x4664fb5d4e16f894df23cadb3faaa9a6": "0x04000000" + "0x8b00d7280647603efa998c64c5a3d9aa": "0x80841e00", + "0xdfaac108e0d4bc78fc9419a7fcfa84dc": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", + "0x43854a3fb0f68847558aa8942fff6d9b": "0x42000000", + "0x62f532424b7b1c52f522857315040f27": "0x00000000000000000000000000000000", + "0x7c1f36e9b2a83a7f2b42d97ec0f18d9c": "0x046b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", + "0xb8f48a8c01f629d6dc877f64892bed49": "0x0000000000000000", + "0x3fb2474c4125721e4f9b6d33231cc646": "0x64000000000000000000000000000000", + "0x90e2849b965314409e8bc00011f3004f": "0x01000000", + "0x8366297e853b97a38cca0f62019a717b": "0x00000000000000000000000000000000" } } } \ No newline at end of file From 8ed9e40e19d5b52edf30a412bcc1cec576b1e57e Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Mar 2019 03:00:04 +0200 Subject: [PATCH 178/350] improved readme --- README.md | 51 ++++++++++++++++++++++++++++++-------------- build-clean-start.sh | 6 +++--- build-node.sh | 4 ---- clean-chain.sh | 3 --- init.sh | 8 ------- start-node.sh | 3 --- 6 files changed, 38 insertions(+), 37 deletions(-) delete mode 100755 build-node.sh delete mode 100755 clean-chain.sh delete mode 100755 init.sh delete mode 100755 start-node.sh diff --git a/README.md b/README.md index 775255d71d..18702967aa 100644 --- a/README.md +++ b/README.md @@ -2,44 +2,63 @@ Joystream node built on top of Substrate. -## Initial setup +Follow the instructions below to download the software or build it from source. Further instructions for windows and mac can be found [here.](https://blog.joystream.org/sparta/) +Linux should be similar to mac. -Call this script once. It will init WASM environment and build a node. -It will take some time (tens of minutes), so be patient. +## Binary releases +Downloads are available in [releases](https://github.com/Joystream/substrate-node-joystream/releases). + +## Building from source + +### Initial setup +If you want to build from source you will need the Rust [toolchain](https://rustup.rs/), openssl and llvm/libclang. + +Initialise the WASM build environment: ```bash -./init.sh +./init-wasm.sh ``` -## Build - -### Build runtime (WASM) +### Building +Checkout the correct release branch if you are planning to connect to one of the public testnets. +Build the WASM runtime library: ```bash ./build-runtime.sh ``` -### Build node (native) - +Build the node (native code): ```bash -./build-node.sh +cargo build ``` -## Start node +### Running a public node +Run the node and connect to the public testnet +```bash +cargo run +``` +### Installing a release build ```bash -./start-node.sh +cargo install --path ./ ``` -## Clean chain data +## Development + +### Running a local development node + +```bash +cargo run -- --dev +``` -It's a good practice to clean chain data after you rebuilt a node and about to restart a it. +### Cleaning development chain data +When making changes to the runtime library remember to purge the chain after rebuilding the node to test the new runtime. ```bash -./clean-chain.sh +cargo run -- purge-chain --dev ``` -## Test +## Tests ### Run all tests diff --git a/build-clean-start.sh b/build-clean-start.sh index 1b249492e5..a05bef09b5 100755 --- a/build-clean-start.sh +++ b/build-clean-start.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash ./build-runtime.sh -./build-node.sh -./clean-chain.sh -./start-node.sh +cargo build +cargo run -- purge-chain --dev +cargo run -- --dev diff --git a/build-node.sh b/build-node.sh deleted file mode 100755 index 4f5a9c5a80..0000000000 --- a/build-node.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -echo "Building node..." -cargo build --release diff --git a/clean-chain.sh b/clean-chain.sh deleted file mode 100755 index 1cccef5385..0000000000 --- a/clean-chain.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -cargo run -- purge-chain --dev diff --git a/init.sh b/init.sh deleted file mode 100755 index cfc893f587..0000000000 --- a/init.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -echo "Initialising webassembly build environment..." -./init-wasm.sh 2>/dev/null >/dev/null - -./build-runtime.sh - -./build-node.sh diff --git a/start-node.sh b/start-node.sh deleted file mode 100755 index e8505364c9..0000000000 --- a/start-node.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -./target/release/joystream-node --dev From 25a145b71fa7ca137faded7e6c9a81b57ad972d0 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 1 Mar 2019 03:16:52 +0200 Subject: [PATCH 179/350] add note about cargo install --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 18702967aa..16d751e1e0 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,15 @@ cargo run ``` ### Installing a release build +This will install node to your `~/.cargo/bin` folder, which you would normally have in your `$PATH` environment. + ```bash cargo install --path ./ ``` +Now you can run +```bash +joystream-node +``` ## Development From 9941dd096ccf499ede3b98ed5e9304ce7925e2de Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 4 Mar 2019 23:37:15 +0200 Subject: [PATCH 180/350] runtime update spec 4 fixes issue with processing transactions of illiquid accounts --- Cargo.lock | 846 ++++++++++++++++++++-------------------- Cargo.toml | 48 +-- runtime/Cargo.toml | 78 ++-- runtime/src/lib.rs | 2 +- runtime/wasm/Cargo.toml | 2 +- 5 files changed, 488 insertions(+), 488 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 534b6fe8e5..c507e077d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -702,7 +702,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1020,23 +1020,23 @@ dependencies = [ "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 1.0.0", + "joystream-node-runtime 1.0.1", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "node-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1044,32 +1044,32 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "1.0.0" +version = "1.0.1" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] @@ -1785,71 +1785,71 @@ dependencies = [ [[package]] name = "node-executor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "node-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "node-runtime 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "node-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "node-runtime" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "node-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-contract 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-council 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-democracy 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-grandpa 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-treasury 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-upgrade-key 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] @@ -2740,7 +2740,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2752,24 +2752,24 @@ dependencies = [ [[package]] name = "sr-io" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "environmental 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2778,27 +2778,27 @@ dependencies = [ "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "sr-sandbox" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-std" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2806,74 +2806,74 @@ dependencies = [ [[package]] name = "sr-version" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-balances" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-consensus" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-contract" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2881,40 +2881,40 @@ dependencies = [ "pwasm-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-sandbox 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-council" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-democracy 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-democracy" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2922,151 +2922,151 @@ dependencies = [ "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-executive" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-fees" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-grandpa" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-indices" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-metadata" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-session" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-staking" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-sudo" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-support" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3075,42 +3075,42 @@ dependencies = [ "paste 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-support-procedural" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3120,7 +3120,7 @@ dependencies = [ [[package]] name = "srml-system" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3128,59 +3128,59 @@ dependencies = [ "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-timestamp" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-treasury" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "srml-upgrade-key" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] @@ -3283,23 +3283,23 @@ dependencies = [ [[package]] name = "substrate-basic-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-cli" version = "0.3.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3314,15 +3314,15 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sysinfo 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3331,7 +3331,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3344,24 +3344,24 @@ dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-client-db" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -3371,71 +3371,71 @@ dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-consensus-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-aura-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-consensus-aura-slots" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-common" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3443,17 +3443,17 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3464,13 +3464,13 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3478,42 +3478,42 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-inherents" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-keyring" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-keystore" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3522,19 +3522,19 @@ dependencies = [ "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3545,18 +3545,18 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network-libp2p" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3581,7 +3581,7 @@ dependencies = [ [[package]] name = "substrate-panic-handler" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3590,7 +3590,7 @@ dependencies = [ [[package]] name = "substrate-primitives" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3609,7 +3609,7 @@ dependencies = [ "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3618,7 +3618,7 @@ dependencies = [ [[package]] name = "substrate-rpc" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3630,35 +3630,35 @@ dependencies = [ "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc-servers" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-serializer" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3667,7 +3667,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "0.3.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3680,18 +3680,18 @@ dependencies = [ "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3699,19 +3699,19 @@ dependencies = [ [[package]] name = "substrate-state-db" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-state-machine" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3719,9 +3719,9 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3729,7 +3729,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "0.3.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3744,7 +3744,7 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3752,29 +3752,29 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-transaction-pool" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", - "substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-trie" version = "0.4.0" -source = "git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0#1ca4cc0a16a357782bb1028bb57376594ca232a0" +source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4512,7 +4512,7 @@ dependencies = [ "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -4607,9 +4607,9 @@ dependencies = [ "checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" -"checksum node-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum node-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum node-runtime 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum node-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum node-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum node-runtime 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" "checksum nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d138afcce92d219ccb6eb53d9b1e8a96ac0d633cfd3c53cd9856d96d1741bb8" "checksum nom 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b30adc557058ce00c9d0d7cb3c6e0b5bc6f36e2e2eabe74b0ba726d194abd588" @@ -4712,34 +4712,34 @@ dependencies = [ "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" "checksum snow 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7251f8920e9043106cfe466c04ed3eb257b8315a7699259c4fd0af6dffb6aef6" "checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" -"checksum sr-api-macros 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum sr-io 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum sr-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum sr-sandbox 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum sr-std 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum sr-version 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-balances 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-consensus 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-contract 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-council 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-democracy 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-executive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-fees 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-grandpa 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-indices 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-metadata 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-session 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-staking 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-sudo 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-support 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-support-procedural 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-system 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-timestamp 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-treasury 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum srml-upgrade-key 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-sandbox 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-contract 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-council 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-democracy 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-grandpa 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-treasury 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-upgrade-key 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" @@ -4752,33 +4752,33 @@ dependencies = [ "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" "checksum structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "670ad348dc73012fcf78c71f06f9d942232cdd4c859d4b6975e27836c3efc0c3" "checksum structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ef98172b1a00b0bec738508d3726540edcbd186d50dfd326f2b1febbb3559f04" -"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-cli 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-client 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-client-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-consensus-common 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-executor 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-inherents 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-keyring 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-keystore 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-panic-handler 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-rpc 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-serializer 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-service 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-state-db 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-state-machine 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-telemetry 0.3.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" -"checksum substrate-trie 0.4.0 (git+https://github.com/paritytech/substrate.git?rev=1ca4cc0a16a357782bb1028bb57376594ca232a0)" = "" +"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" "checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9" diff --git a/Cargo.toml b/Cargo.toml index f3282e5cc9..54bac27401 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,64 +11,64 @@ tokio = '0.1' trie-root = '0.11.0' [dependencies.basic-authorship] -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'substrate-basic-authorship' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.consensus] -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'substrate-consensus-aura' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.ctrlc] features = ['termination'] version = '3.0' [dependencies.inherents] -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'substrate-inherents' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.node-executor] -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.joystream-node-runtime] path = 'runtime' [dependencies.primitives] -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'substrate-primitives' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.sr-io] -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.substrate-cli] -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.substrate-client] -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.substrate-executor] -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.substrate-network] -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.substrate-service] -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.transaction-pool] -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'substrate-transaction-pool' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [package] authors = ['Joystream'] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 1f40496d11..9433296744 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,7 +2,7 @@ authors = ['Joystream'] edition = '2018' name = 'joystream-node-runtime' -version = '1.0.0' +version = '1.0.1' [features] default = ['std'] @@ -33,45 +33,45 @@ std = [ ] [dependencies.aura] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-aura' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.balances] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-balances' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.consensus] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-consensus' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.consensus-aura] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'substrate-consensus-aura-primitives' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.executive] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-executive' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.fees] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-fees' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.indices] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-indices' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.parity-codec] default-features = false @@ -83,27 +83,27 @@ version = '3.0' [dependencies.primitives] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'substrate-primitives' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.rstd] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'sr-std' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.runtime-io] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'sr-io' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.runtime-primitives] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'sr-primitives' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.safe-mix] default-features = false @@ -119,46 +119,46 @@ version = '1.0' [dependencies.srml-support] default_features = false -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.substrate-client] default_features = false -git = 'https://github.com/paritytech/substrate.git' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +git = 'https://github.com/joystream/substrate.git' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.sudo] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-sudo' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.system] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-system' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.timestamp] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-timestamp' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.version] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'sr-version' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.staking] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-staking' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.session] default_features = false -git = 'https://github.com/paritytech/substrate.git' +git = 'https://github.com/joystream/substrate.git' package = 'srml-session' -rev = '1ca4cc0a16a357782bb1028bb57376594ca232a0' +rev = 'df5e65927780b323482e2e8b5031822f423a032d' diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 5975ea98d4..77adf189ae 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -87,7 +87,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("joystream-node"), impl_name: create_runtime_str!("joystream-node"), authoring_version: 3, - spec_version: 3, + spec_version: 4, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml index f34b9ff2ac..625bcaf2b7 100644 --- a/runtime/wasm/Cargo.toml +++ b/runtime/wasm/Cargo.toml @@ -19,4 +19,4 @@ path = '..' authors = ['Joystream'] edition = '2018' name = 'joystream-node-runtime-wasm' -version = '1.0.0' +version = '1.0.1' From 8e27402bc8ca7b0e37f5352b158f21ea1989d452 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 6 Mar 2019 10:49:59 +0200 Subject: [PATCH 181/350] add CHANGELOG for runtime package --- runtime/CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 runtime/CHANGELOG.md diff --git a/runtime/CHANGELOG.md b/runtime/CHANGELOG.md new file mode 100644 index 0000000000..95faba3880 --- /dev/null +++ b/runtime/CHANGELOG.md @@ -0,0 +1,16 @@ +### Version 4 - Bug Fixes - March 4th 2019 - `9941dd` + - Allow illiquid accounts to pay transaction fees. Fixes unstaking and setting memo, by permitting extrinsics which do not require more than a transaction fee to be accepted into mempool. + - Updated Cargo dependencies to use forked substrate repo `github.com/joystream/substrate` + + + On-chain runtime upgrade performed with sudo `consensus::setCode()` + +### Version 3 - Sparta - March 1st 2019 - `1ca4cc` + - Basic substrate node - based on substrate `1ca4cc0a16a357782bb1028bb57376594ca232a0` + - Block Authoring - only Aura (enabling GRANDPA in future release) + - Council Elections + - Council Runtime upgrade proposal + - Simple PoS validator staking + - Memo (account status message) + +Used in genesis block for first testnet (Sparta) From 295178cb0adfb83074b67c7b9585952fe93fdaf8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 11 Mar 2019 16:38:55 +0200 Subject: [PATCH 182/350] depend on runtime repo --- Cargo.lock | 4 +++- Cargo.toml | 7 ++++++- test-all.sh | 11 ----------- test-proposals.sh | 17 ----------------- 4 files changed, 9 insertions(+), 30 deletions(-) delete mode 100755 test-all.sh delete mode 100755 test-proposals.sh diff --git a/Cargo.lock b/Cargo.lock index c507e077d8..d7f8f17981 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1020,7 +1020,7 @@ dependencies = [ "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 1.0.1", + "joystream-node-runtime 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "node-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1045,6 +1045,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "1.0.1" +source = "git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0#d1f3abe5d6c4603892a6d798d54e7e8705c561b4" dependencies = [ "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4548,6 +4549,7 @@ dependencies = [ "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" +"checksum joystream-node-runtime 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0)" = "" "checksum jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc15eef5f8b6bef5ac5f7440a957ff95d036e2f98706947741bfc93d1976db4c" "checksum jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c2dae61ca8a3b047fb11309b00661bc56837085bd07e46f907b9c562c0b03e68" "checksum jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11d2a00824306155b8ef57fe957f31b8cd8ad24262f15cf911d84dcf9a3f206d" diff --git a/Cargo.toml b/Cargo.toml index 54bac27401..ed4ef1f520 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,12 @@ git = 'https://github.com/joystream/substrate.git' rev = 'df5e65927780b323482e2e8b5031822f423a032d' [dependencies.joystream-node-runtime] -path = 'runtime' +git = 'https://github.com/joystream/substrate-runtime-joystream.git' +tag = 'v3.4.0' +# When developing locally change the location of the dependency to a local directory +# comment out the "git" and "tag" lines above and replace with a "path" +# path = 'runtime' +# path = '../my-local-joystream-runtime-repo/' [dependencies.primitives] git = 'https://github.com/joystream/substrate.git' diff --git a/test-all.sh b/test-all.sh deleted file mode 100755 index ae7a6c9982..0000000000 --- a/test-all.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -# Save current directory. -pushd . >/dev/null - -echo "Run all runtime tests..." -cd ./runtime -cargo test --all - -# Restore initial directory. -popd >/dev/null diff --git a/test-proposals.sh b/test-proposals.sh deleted file mode 100755 index 95801acc4d..0000000000 --- a/test-proposals.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash - -set -e - -bold=$(tput bold) -normal=$(tput sgr0) - -# Save current directory. -pushd . >/dev/null - -MODULE=proposals -echo "Run tests for ${bold}$MODULE${normal} module..." -cd ./runtime -cargo test $MODULE - -# Restore initial directory. -popd >/dev/null From 3b438284245f80f2950dbff39a7de7a30bb51855 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 11 Mar 2019 17:22:12 +0200 Subject: [PATCH 183/350] update readme with instructions on developing runtime --- README.md | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 16d751e1e0..e31501b37c 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,13 @@ Build the WASM runtime library: Build the node (native code): ```bash -cargo build +cargo build --release ``` ### Running a public node Run the node and connect to the public testnet ```bash -cargo run +cargo run --release ``` ### Installing a release build @@ -64,14 +64,21 @@ When making changes to the runtime library remember to purge the chain after reb cargo run -- purge-chain --dev ``` -## Tests +### Developing a runtime upgrade -### Run all tests +The runtime library is in a seprate github [repo](https://github.com/joystream/substrate-runtime-joystream) -```bash -./test-all.sh -``` +The recommended way to test a new rutime is to build it seprately and upgrade a chain. You can easily do this by calling `consensus::setCode()` with an extrinsic, either with the webui or with the subcli set-code.js script. No need to recompile the node (but use a release that matches the version of the network you are planning to upgrade and preferably with the runtime of the live chain as well), just make sure to bump the runtime spec version to be different from the native node runtime spec version. + +### Developing runtime for a new chain +If the plan is to write a runtime for a new chain, and not upgrading you can take a different approach. +Then modify `Cargo.toml` in the root of this repo, edit the section: "[dependencies.joystream-node-runtime]" with the path to where you cloned the runtime repo. + +Update `src/chain_spec.rs` find lines where the wasm blob is included `code: include_bytes!('../runtime/..` and modify it to point to the location where the wasm output file is compiled to. +You may need to make further changes in chain_spec to match modules added and/or removed that require chain configuration. + +Build the runtime in the cloned runtime repo. Then rebuild the node. You can now run the node in development mode or use it to build a new chain spec file. -### Test a specific module +### Why can't I just just modify the code in runtime/ -Check out `./test-proposals.sh` on how to run tests for a specific module. +Mainly so you can understand how things work to avoid mistakes when preparing a new runtime upgrade for a live chain, and to separate the release process of the node software from the runtime. \ No newline at end of file From 071b7106ea53de332ccaeec1c8b561943e9a34de Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 11 Mar 2019 17:40:09 +0200 Subject: [PATCH 184/350] update readme with link to subcli script --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e31501b37c..70d8fe8b02 100644 --- a/README.md +++ b/README.md @@ -68,13 +68,13 @@ cargo run -- purge-chain --dev The runtime library is in a seprate github [repo](https://github.com/joystream/substrate-runtime-joystream) -The recommended way to test a new rutime is to build it seprately and upgrade a chain. You can easily do this by calling `consensus::setCode()` with an extrinsic, either with the webui or with the subcli set-code.js script. No need to recompile the node (but use a release that matches the version of the network you are planning to upgrade and preferably with the runtime of the live chain as well), just make sure to bump the runtime spec version to be different from the native node runtime spec version. +The recommended way to test a new rutime is to build it seprately and upgrade a chain. You can easily do this by calling `consensus::setCode()` with an extrinsic, either with the webui or with the [subcli](https://github.com/Joystream/subcli/blob/master/set-code.js) set-code.js script. No need to recompile the node (but use a release that matches the version of the network you are planning to upgrade and preferably with the runtime of the live chain as well), just make sure to bump the runtime spec version to be different from the native node runtime spec version. ### Developing runtime for a new chain If the plan is to write a runtime for a new chain, and not upgrading you can take a different approach. Then modify `Cargo.toml` in the root of this repo, edit the section: "[dependencies.joystream-node-runtime]" with the path to where you cloned the runtime repo. -Update `src/chain_spec.rs` find lines where the wasm blob is included `code: include_bytes!('../runtime/..` and modify it to point to the location where the wasm output file is compiled to. +Update `src/chain_spec.rs` and `src/service.rs` find lines where the wasm blob is included `include_bytes!("../runtime/..` and modify it to point to the location where the wasm output file is compiled to. You may need to make further changes in chain_spec to match modules added and/or removed that require chain configuration. Build the runtime in the cloned runtime repo. Then rebuild the node. You can now run the node in development mode or use it to build a new chain spec file. From d893ade45404401a780610b94ed0604d8f85d7c3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 14 Mar 2019 23:23:56 +0200 Subject: [PATCH 185/350] typos and emphasise use of --release build --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 70d8fe8b02..2ccd82acdc 100644 --- a/README.md +++ b/README.md @@ -54,31 +54,33 @@ joystream-node ### Running a local development node ```bash -cargo run -- --dev +cargo run --release -- --dev ``` ### Cleaning development chain data When making changes to the runtime library remember to purge the chain after rebuilding the node to test the new runtime. ```bash -cargo run -- purge-chain --dev +cargo run --release -- purge-chain --dev ``` ### Developing a runtime upgrade -The runtime library is in a seprate github [repo](https://github.com/joystream/substrate-runtime-joystream) +The runtime library is in a separate github [repo](https://github.com/joystream/substrate-runtime-joystream) -The recommended way to test a new rutime is to build it seprately and upgrade a chain. You can easily do this by calling `consensus::setCode()` with an extrinsic, either with the webui or with the [subcli](https://github.com/Joystream/subcli/blob/master/set-code.js) set-code.js script. No need to recompile the node (but use a release that matches the version of the network you are planning to upgrade and preferably with the runtime of the live chain as well), just make sure to bump the runtime spec version to be different from the native node runtime spec version. +The recommended way to test a new runtime is to build it separately and upgrade a dev chain. You can easily do this by calling `consensus::setCode()` with an extrinsic, either with the webui or with the subcli [set-code.js script](https://github.com/Joystream/subcli/blob/master/set-code.js) . No need to recompile the node (but use a release that matches the version of the network you are planning to upgrade and preferably with the runtime of the live chain as well), just make sure to bump the runtime spec version to be different from the native node runtime spec version. + +> Make sure you run a node built in release mode. If you use debug build and try to set new runtime code the node will halt ...[details](https://github.com/paritytech/substrate/issues/1856) ### Developing runtime for a new chain If the plan is to write a runtime for a new chain, and not upgrading you can take a different approach. Then modify `Cargo.toml` in the root of this repo, edit the section: "[dependencies.joystream-node-runtime]" with the path to where you cloned the runtime repo. Update `src/chain_spec.rs` and `src/service.rs` find lines where the wasm blob is included `include_bytes!("../runtime/..` and modify it to point to the location where the wasm output file is compiled to. -You may need to make further changes in chain_spec to match modules added and/or removed that require chain configuration. +You may need to make further changes in chain_spec to match modules added and/or removed that require genesis configuration. -Build the runtime in the cloned runtime repo. Then rebuild the node. You can now run the node in development mode or use it to build a new chain spec file. +Build the runtime in the cloned runtime repo. Then rebuild the node. You can now run the node in development mode or use it to build a new chain spec. ### Why can't I just just modify the code in runtime/ -Mainly so you can understand how things work to avoid mistakes when preparing a new runtime upgrade for a live chain, and to separate the release process of the node software from the runtime. \ No newline at end of file +Mainly so you can understand how things work to avoid mistakes when preparing a new runtime upgrade for a live chain, and to separate the release process of the node software from the runtime. From afec730efeb860af63347488234761f71edd34f4 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 16 Mar 2019 13:25:59 +0200 Subject: [PATCH 186/350] updated readme --- README.md | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 16d751e1e0..2ccd82acdc 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,13 @@ Build the WASM runtime library: Build the node (native code): ```bash -cargo build +cargo build --release ``` ### Running a public node Run the node and connect to the public testnet ```bash -cargo run +cargo run --release ``` ### Installing a release build @@ -54,24 +54,33 @@ joystream-node ### Running a local development node ```bash -cargo run -- --dev +cargo run --release -- --dev ``` ### Cleaning development chain data When making changes to the runtime library remember to purge the chain after rebuilding the node to test the new runtime. ```bash -cargo run -- purge-chain --dev +cargo run --release -- purge-chain --dev ``` -## Tests +### Developing a runtime upgrade -### Run all tests +The runtime library is in a separate github [repo](https://github.com/joystream/substrate-runtime-joystream) -```bash -./test-all.sh -``` +The recommended way to test a new runtime is to build it separately and upgrade a dev chain. You can easily do this by calling `consensus::setCode()` with an extrinsic, either with the webui or with the subcli [set-code.js script](https://github.com/Joystream/subcli/blob/master/set-code.js) . No need to recompile the node (but use a release that matches the version of the network you are planning to upgrade and preferably with the runtime of the live chain as well), just make sure to bump the runtime spec version to be different from the native node runtime spec version. + +> Make sure you run a node built in release mode. If you use debug build and try to set new runtime code the node will halt ...[details](https://github.com/paritytech/substrate/issues/1856) + +### Developing runtime for a new chain +If the plan is to write a runtime for a new chain, and not upgrading you can take a different approach. +Then modify `Cargo.toml` in the root of this repo, edit the section: "[dependencies.joystream-node-runtime]" with the path to where you cloned the runtime repo. + +Update `src/chain_spec.rs` and `src/service.rs` find lines where the wasm blob is included `include_bytes!("../runtime/..` and modify it to point to the location where the wasm output file is compiled to. +You may need to make further changes in chain_spec to match modules added and/or removed that require genesis configuration. + +Build the runtime in the cloned runtime repo. Then rebuild the node. You can now run the node in development mode or use it to build a new chain spec. -### Test a specific module +### Why can't I just just modify the code in runtime/ -Check out `./test-proposals.sh` on how to run tests for a specific module. +Mainly so you can understand how things work to avoid mistakes when preparing a new runtime upgrade for a live chain, and to separate the release process of the node software from the runtime. From 1667c39f5215a184710b4a240440cc90a6a9b739 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 2 Apr 2019 14:17:25 +0300 Subject: [PATCH 187/350] substrate upgrade: initial update --- Cargo.lock | 2456 ++++++++++++++++++++++++++------------------- Cargo.toml | 58 +- src/chain_spec.rs | 48 +- src/cli.rs | 5 + src/service.rs | 3 +- 5 files changed, 1494 insertions(+), 1076 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d7f8f17981..479f2841a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,7 +3,7 @@ name = "MacTypes-sys" version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -13,7 +13,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -45,16 +45,24 @@ dependencies = [ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "aho-corasick" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "aio-limited" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -104,7 +112,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -112,7 +120,7 @@ name = "atty" version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -129,8 +137,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -141,7 +149,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -182,22 +190,23 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.43.2" +version = "0.47.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cexpr 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "which 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -205,6 +214,11 @@ name = "bitflags" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "bitmask" +version = "0.5.0" +source = "git+https://github.com/paritytech/bitmask#a84e147be602631617badd18b6b9af83391db4a9" + [[package]] name = "blake2" version = "0.8.0" @@ -288,7 +302,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bytes" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -305,15 +319,15 @@ dependencies = [ [[package]] name = "cexpr" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "nom 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cfg-if" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -332,7 +346,7 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -377,7 +391,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -385,7 +399,7 @@ name = "core-foundation-sys" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -393,12 +407,12 @@ name = "crossbeam" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -430,15 +444,24 @@ dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "crossbeam-deque" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "crossbeam-epoch" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -450,19 +473,27 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "crossbeam-queue" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "crossbeam-utils" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -470,8 +501,8 @@ name = "crossbeam-utils" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -504,7 +535,7 @@ dependencies = [ [[package]] name = "ctr" -version = "0.3.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -595,7 +626,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "elastic-array" -version = "0.10.0" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -603,19 +634,19 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "environmental" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -628,11 +659,11 @@ dependencies = [ [[package]] name = "exit-future" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -651,7 +682,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -665,7 +696,7 @@ name = "fdlimit" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -675,7 +706,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -702,10 +733,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -713,8 +743,8 @@ name = "fs-swap" version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -740,7 +770,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "futures" -version = "0.1.25" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -748,7 +778,7 @@ name = "futures-cpupool" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -788,24 +818,24 @@ dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "h2" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -821,6 +851,15 @@ dependencies = [ "crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hashbrown" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "heapsize" version = "0.4.2" @@ -844,16 +883,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hex-literal" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hex-literal-impl 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "hex-literal-impl" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -893,7 +932,7 @@ name = "http" version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -931,26 +970,27 @@ dependencies = [ [[package]] name = "hyper" -version = "0.12.24" +version = "0.12.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -970,7 +1010,7 @@ name = "impl-codec" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -979,7 +1019,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1002,7 +1042,7 @@ name = "iovec" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1013,31 +1053,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "joystream-node" -version = "0.10.1" +version = "1.0.0" dependencies = [ "ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "joystream-node-runtime 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "node-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1047,11 +1085,11 @@ name = "joystream-node-runtime" version = "1.0.1" source = "git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0#d1f3abe5d6c4603892a6d798d54e7e8705c561b4" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -1078,11 +1116,11 @@ name = "jsonrpc-core" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1092,7 +1130,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1100,12 +1138,12 @@ name = "jsonrpc-http-server" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hyper 0.12.24 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1116,7 +1154,7 @@ dependencies = [ "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1124,15 +1162,15 @@ name = "jsonrpc-server-utils" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1168,7 +1206,7 @@ name = "kvdb" version = "0.1.0" source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" dependencies = [ - "elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", ] @@ -1177,14 +1215,14 @@ name = "kvdb-rocksdb" version = "0.1.4" source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" dependencies = [ - "elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1195,7 +1233,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "lazy_static" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1205,7 +1243,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.49" +version = "0.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1219,123 +1257,131 @@ dependencies = [ [[package]] name = "libp2p" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-dns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-floodsub 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-kad 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mdns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mplex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-noise 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-plaintext 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ratelimit 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-secio 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-tcp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-uds 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-websocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-yamux 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core-derive 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-dns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-floodsub 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-identify 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-kad 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-mdns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-mplex 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-noise 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-ping 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-plaintext 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-ratelimit 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-secio 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-tcp 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-uds 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-websocket 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-yamux 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-core" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ + "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "multistream-select 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "multistream-select 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-core-derive" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-dns" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-floodsub" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-identify" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1343,27 +1389,27 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-identify 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-ping 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1371,20 +1417,20 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1392,167 +1438,168 @@ dependencies = [ [[package]] name = "libp2p-mplex" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-noise" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.3.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "snow 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ping" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-plaintext" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ratelimit" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-secio" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-tcp" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-uds" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-websocket" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "websocket 0.22.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "websocket 0.22.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-yamux" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.5.0" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "yamux 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "yamux 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "librocksdb-sys" -version = "5.14.3" +version = "5.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bindgen 0.43.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", - "make-cmd 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1570,12 +1617,7 @@ dependencies = [ [[package]] name = "linked-hash-map" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "linked-hash-map" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1583,7 +1625,7 @@ name = "linked_hash_set" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1608,22 +1650,17 @@ name = "log" version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "lru-cache" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "make-cmd" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "matches" version = "0.1.8" @@ -1682,7 +1719,7 @@ dependencies = [ "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1707,7 +1744,7 @@ version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1725,14 +1762,14 @@ dependencies = [ [[package]] name = "multistream-select" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1749,13 +1786,13 @@ name = "native-tls" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.18 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.41 (registry+https://github.com/rust-lang/crates.io-index)", - "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)", + "schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1766,8 +1803,8 @@ name = "net2" version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1778,81 +1815,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "node-executor" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "node-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "node-runtime 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "node-primitives" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - -[[package]] -name = "node-runtime" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "node-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-contract 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-council 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-democracy 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-grandpa 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-treasury 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-upgrade-key 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "nodrop" version = "0.1.13" @@ -1865,7 +1832,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "nom" -version = "4.2.0" +version = "4.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1890,7 +1857,7 @@ name = "num_cpus" version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1906,6 +1873,9 @@ dependencies = [ name = "once_cell" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "opaque-debug" @@ -1914,15 +1884,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl" -version = "0.10.18" +version = "0.10.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.41 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1932,12 +1902,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl-sys" -version = "0.9.41" +version = "0.9.43" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1964,21 +1935,23 @@ source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7 [[package]] name = "parity-codec" -version = "3.0.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-codec-derive" -version = "3.0.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1995,21 +1968,21 @@ dependencies = [ [[package]] name = "parity-multiaddr" version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-multihash" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2033,7 +2006,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2076,7 +2049,7 @@ name = "parking_lot_core" version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2087,7 +2060,7 @@ name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2099,7 +2072,7 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2108,22 +2081,32 @@ dependencies = [ [[package]] name = "paste" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "paste-impl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "paste-impl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "paste-impl" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pbkdf2" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2175,7 +2158,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2183,14 +2166,6 @@ name = "proc-macro-hack-impl" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "proc-macro2" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "proc-macro2" version = "0.4.27" @@ -2201,18 +2176,8 @@ dependencies = [ [[package]] name = "protobuf" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "pwasm-utils" -version = "0.6.2" +version = "2.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "quick-error" @@ -2224,14 +2189,6 @@ name = "quick-error" version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "quote" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "quote" version = "0.6.11" @@ -2245,7 +2202,7 @@ name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2255,7 +2212,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2268,7 +2225,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2279,13 +2236,13 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2334,19 +2291,19 @@ name = "rand_jitter" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand_os" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2385,8 +2342,8 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2400,7 +2357,7 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.1.51" +version = "0.1.52" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2408,24 +2365,24 @@ name = "redox_termios" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex" -version = "1.1.0" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2445,8 +2402,8 @@ version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2457,8 +2414,8 @@ name = "rocksdb" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", - "librocksdb-sys 5.14.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "librocksdb-sys 5.17.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2467,7 +2424,7 @@ version = "0.2.36" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2498,12 +2455,12 @@ dependencies = [ [[package]] name = "rw-stream-sink" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.1.1" +source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2526,10 +2483,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "schannel" -version = "0.1.14" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2550,13 +2507,30 @@ dependencies = [ ] [[package]] -name = "scopeguard" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "secp256k1" -version = "0.12.2" +name = "schnorrkel" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "merlin 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scopeguard" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "secp256k1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2570,7 +2544,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2581,7 +2555,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2599,27 +2573,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.88" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde_derive" -version = "1.0.88" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_json" -version = "1.0.38" +version = "1.0.39" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2697,8 +2671,8 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2708,7 +2682,7 @@ version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2719,7 +2693,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "snow" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2731,6 +2705,7 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2738,6 +2713,18 @@ name = "spin" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "sr-api-macros" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "sr-api-macros" version = "0.1.0" @@ -2747,7 +2734,24 @@ dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sr-io" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2755,10 +2759,10 @@ name = "sr-io" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "environmental 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -2767,6 +2771,22 @@ dependencies = [ "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "sr-primitives" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + [[package]] name = "sr-primitives" version = "0.1.0" @@ -2775,25 +2795,21 @@ dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] -name = "sr-sandbox" +name = "sr-std" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2807,127 +2823,117 @@ dependencies = [ [[package]] name = "sr-version" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] -name = "srml-aura" +name = "sr-version" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] -name = "srml-balances" +name = "srml-aura" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] -name = "srml-consensus" +name = "srml-aura" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] -name = "srml-contract" +name = "srml-balances" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pwasm-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-sandbox 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] -name = "srml-council" +name = "srml-consensus" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-democracy 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] -name = "srml-democracy" +name = "srml-consensus" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] @@ -2935,8 +2941,8 @@ name = "srml-executive" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -2949,10 +2955,10 @@ name = "srml-fees" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -2962,40 +2968,34 @@ dependencies = [ ] [[package]] -name = "srml-grandpa" +name = "srml-indices" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] -name = "srml-indices" +name = "srml-metadata" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -3003,24 +3003,42 @@ name = "srml-metadata" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] +[[package]] +name = "srml-session" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + [[package]] name = "srml-session" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -3029,16 +3047,35 @@ dependencies = [ "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] +[[package]] +name = "srml-staking" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + [[package]] name = "srml-staking" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -3053,10 +3090,10 @@ name = "srml-sudo" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -3064,18 +3101,38 @@ dependencies = [ "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] +[[package]] +name = "srml-support" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "bitmask 0.5.0 (git+https://github.com/paritytech/bitmask)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + [[package]] name = "srml-support" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -3084,6 +3141,18 @@ dependencies = [ "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] +[[package]] +name = "srml-support-procedural" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "srml-support-procedural" version = "0.1.0" @@ -3093,7 +3162,19 @@ dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-support-procedural-tools" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3105,7 +3186,17 @@ dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "srml-support-procedural-tools-derive" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3115,73 +3206,74 @@ source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482 dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-system" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] -name = "srml-timestamp" +name = "srml-system" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] -name = "srml-treasury" +name = "srml-timestamp" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] -name = "srml-upgrade-key" +name = "srml-timestamp" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] @@ -3201,7 +3293,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "stdweb" -version = "0.4.14" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3218,9 +3310,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3231,11 +3323,11 @@ dependencies = [ "base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3263,70 +3355,129 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "structopt" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "structopt-derive" -version = "0.2.14" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "strum" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "strum_macros" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-basic-authorship" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + +[[package]] +name = "substrate-bip39" +version = "0.2.1" +source = "git+https://github.com/paritytech/substrate-bip39#44307fda4ea17fe97aeb93af317fbc8f6ed34193" +dependencies = [ + "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-cli" version = "0.3.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sysinfo 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-client" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -3336,14 +3487,14 @@ source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482 dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -3362,48 +3513,56 @@ dependencies = [ [[package]] name = "substrate-client-db" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] name = "substrate-consensus-aura" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-consensus-aura-primitives" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -3417,20 +3576,39 @@ dependencies = [ [[package]] name = "substrate-consensus-aura-slots" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-consensus-common" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3440,15 +3618,40 @@ source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482 dependencies = [ "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-executor" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3458,13 +3661,13 @@ source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482 dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -3473,20 +3676,18 @@ dependencies = [ "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "substrate-finality-grandpa-primitives" +name = "substrate-inherents" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -3494,91 +3695,114 @@ name = "substrate-inherents" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] +[[package]] +name = "substrate-keyring" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + [[package]] name = "substrate-keyring" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", ] [[package]] name = "substrate-keystore" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-peerset 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network-libp2p" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-peerset 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-panic-handler" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-panic-handler" version = "0.1.0" @@ -3588,6 +3812,54 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-peerset" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-primitives" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)", + "tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-primitives" version = "0.1.0" @@ -3598,62 +3870,71 @@ dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc-servers" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + +[[package]] +name = "substrate-serializer" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3661,52 +3942,69 @@ name = "substrate-serializer" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-service" version = "0.3.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-state-db" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + +[[package]] +name = "substrate-state-machine" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3716,9 +4014,9 @@ source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482 dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", @@ -3732,7 +4030,7 @@ name = "substrate-telemetry" version = "0.3.0" source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" dependencies = [ - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3742,34 +4040,64 @@ dependencies = [ "ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-telemetry" +version = "0.3.1" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-transaction-graph" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] name = "substrate-transaction-pool" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", +] + +[[package]] +name = "substrate-trie" +version = "0.4.0" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +dependencies = [ + "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3779,7 +4107,7 @@ source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482 dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3796,7 +4124,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "syn" -version = "0.15.26" +version = "0.15.29" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3811,17 +4139,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sysinfo" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3841,10 +4169,10 @@ name = "tempfile" version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3862,8 +4190,8 @@ name = "termion" version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3880,7 +4208,7 @@ name = "thread_local" version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3888,11 +4216,25 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tiny-bip39" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tiny-keccak" version = "1.4.2" @@ -3906,31 +4248,32 @@ name = "tk-listen" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio" -version = "0.1.15" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3940,18 +4283,18 @@ name = "tokio-codec" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-current-thread" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3959,64 +4302,66 @@ name = "tokio-dns-unofficial" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-executor" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-fs" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-io" -version = "0.1.11" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-reactor" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-sync" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4024,29 +4369,28 @@ name = "tokio-tcp" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-threadpool" -version = "0.1.11" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4055,9 +4399,9 @@ version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4065,9 +4409,17 @@ name = "tokio-tls" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tokio-trace-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4075,13 +4427,13 @@ name = "tokio-udp" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4089,16 +4441,16 @@ name = "tokio-uds" version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4106,7 +4458,7 @@ name = "toml" version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4119,7 +4471,7 @@ name = "trie-db" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4192,7 +4544,7 @@ dependencies = [ [[package]] name = "unicase" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4234,7 +4586,7 @@ name = "unsigned-varint" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4293,36 +4645,35 @@ name = "want" version = "0.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasmi" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "websocket" -version = "0.22.2" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4330,10 +4681,11 @@ dependencies = [ [[package]] name = "which" -version = "1.0.5" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4388,12 +4740,12 @@ version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.18 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4409,6 +4761,16 @@ dependencies = [ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "x25519-dalek" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "xdg" version = "2.2.0" @@ -4416,26 +4778,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "yamux" -version = "0.1.7" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "zeroize" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [metadata] "checksum MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eaf9f0d0b1cc33a4d2aee14fb4b2eac03462ef4db29c8ac4057327d8a71ad86f" "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" "checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" +"checksum aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c" "checksum aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f10b352bc3fc08ae24dc5d2d3ddcac153678533986122dc283d747b12071000" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" @@ -4452,8 +4820,9 @@ dependencies = [ "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" "checksum bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ebecac13b3c745150d7b6c3ea7572d372f09d627c2077e893bf26c5c7f70d282" -"checksum bindgen 0.43.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d52d263eacd15d26cbcf215d254b410bd58212aaa2d3c453a04b2d3b3adcf41" +"checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" +"checksum bitmask 0.5.0 (git+https://github.com/paritytech/bitmask)" = "" "checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" "checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" @@ -4465,10 +4834,10 @@ dependencies = [ "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" "checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" -"checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa" +"checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" "checksum cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "389803e36973d242e7fecb092b2de44a3d35ac62524b3b9339e51d577d668e02" -"checksum cexpr 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "644d693ecfa91955ed32dcc7eda4914e1be97a641fb6f0645a37348e20b230da" -"checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4" +"checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af" +"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" "checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" @@ -4481,15 +4850,17 @@ dependencies = [ "checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b" "checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3" "checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" +"checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71" "checksum crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150" "checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4" +"checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" "checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9" "checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c" "checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" "checksum crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c240f247c278fa08a6d4820a6a222bfc6e0d999e51ba67be94f44c905b2161f2" "checksum crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "779015233ac67d65098614aec748ac1c756ab6677fa2e14cf8b37c08dfed1198" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" -"checksum ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "044f882973b245404e90c90e7e42e8ee8d7a64edfd7adf83d684fb97e8e2c1b6" +"checksum ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" "checksum ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "630391922b1b893692c6334369ff528dcc3a9d8061ccf4c803aa8f83cb13db5e" "checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" "checksum curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e1f8a6fc0376eb52dc18af94915cc04dfdf8353746c0e8c550ae683a0815e5c1" @@ -4500,11 +4871,11 @@ dependencies = [ "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" "checksum ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81956bcf7ef761fb4e1d88de3fa181358a0d26cbcb9755b587a08f9119824b86" "checksum either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c67353c641dc847124ea1902d69bd753dee9bb3beff9aa3662ecf86c971d1fac" -"checksum elastic-array 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "88d4851b005ef16de812ea9acdb7bece2f0a40dd86c07b85631d7dafa54537bb" -"checksum env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "afb070faf94c85d17d50ca44f6ad076bce18ae92f0037d350947240a36e9d42e" -"checksum environmental 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db746025e3ea695bfa0ae744dbacd5fcfc8db51b9760cf8bd0ab69708bb93c49" +"checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" +"checksum env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a" +"checksum environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c7464757b80de8930c91c9afe77ddce501826bf9d134a87db2c67d9dc177e2c" "checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" -"checksum exit-future 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "87559b08e99a81a92bbb867d237543e43495857749f688e0773390a20d56c61c" +"checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" @@ -4513,26 +4884,27 @@ dependencies = [ "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" +"checksum futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "62941eff9507c8177d448bd83a44d9b9760856e184081d8cd79ba9f03dd24981" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592" "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" -"checksum h2 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "ddb2b25a33e231484694267af28fec74ac63b5ccf51ee2065a5e313b834d836e" +"checksum h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "910a5e7be6283a9c91b3982fa5188368c8719cce2a3cf3b86048673bf9d9c36b" "checksum hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1b03501f6e1a2a97f1618879aba3156f14ca2847faa530c4e28859638bd11483" "checksum hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f5c13dbac3cc50684760f54af18545c9e80fb75e93a3e586d71ebdc13138f6a4" +"checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" -"checksum hex-literal 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "27455ce8b4a6666c87220e4b59c9a83995476bdadc10197905e61dbe906e36fa" -"checksum hex-literal-impl 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1d340b6514f232f6db1bd16db65302a5278a04fef9ce867cb932e7e5fa21130a" +"checksum hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639" +"checksum hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda" "checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" "checksum hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f127a908633569f208325f86f71255d3363c79721d7f9fe31cd5569908819771" "checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" @@ -4540,7 +4912,7 @@ dependencies = [ "checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" "checksum hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "df0caae6b71d266b91b4a83111a61d2b94ed2e2bea024c532b933dcff867e58c" -"checksum hyper 0.12.24 (registry+https://github.com/rust-lang/crates.io-index)" = "fdfa9b401ef6c4229745bb6e9b2529192d07b920eed624cdee2a82348cd550af" +"checksum hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)" = "7d5b6658b016965ae301fa995306db965c93677880ea70765a84235a96eae896" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2050d823639fbeae26b2b5ba09aca8907793117324858070ade0673c49f793b" "checksum impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5158079de9d4158e0ce1de3ae0bd7be03904efc40b3d7dd8b8c301cbf6b52b56" @@ -4561,38 +4933,36 @@ dependencies = [ "checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" -"checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" +"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.49 (registry+https://github.com/rust-lang/crates.io-index)" = "413f3dfc802c5dc91dc570b05125b6cda9855edfaa9825c9849807876376e70e" +"checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917" "checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" -"checksum libp2p 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a018a1334df0db75852ebbb227f0235a998fb51446bf33fbd46c967d6ba21d9e" -"checksum libp2p-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c8dc95c7fda9de223bc195b637290918e8decb18e63fd3d03005f84b8ce380b" -"checksum libp2p-core-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e9ff3bb639d0be41e1aff9d0d28715e54474e4d15e43aa4865bdec44867d8d3" -"checksum libp2p-dns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "63d310aa56671539a2bce6124cf4326482278b0d0b841c3ba1514e44d8597096" -"checksum libp2p-floodsub 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8256d778f0dc087be409d8cbd081a11bc41ea27ddcd4862814e50e8cfa9c6df0" -"checksum libp2p-identify 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8883b6c80b113925360c2c7e1cb987fc14f5c01efc36db1f04d50cf569486be2" -"checksum libp2p-kad 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0691fcca7648369798c6466c61139d31dbb7e2afad311e44fcc4e220ce1e4d78" -"checksum libp2p-mdns 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "63289f296e39752180d8a45e024cc38d1028a6db41deab3943ff2ccb9d1224cd" -"checksum libp2p-mplex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "791e375a6a230568f0d8f56f6236403de8e4bf4bd870c3c5f605fd1778da70b2" -"checksum libp2p-noise 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "70d28b0ca9eb9818d45e037b4a8a0915553c5c1f8d878d8d6170f60451ad37d2" -"checksum libp2p-ping 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "81d40e54b11bfbdb7eb2b19a9c7bfe90af8abae0a2b0b3840b26b50151476f45" -"checksum libp2p-plaintext 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4383404cba7e4483e0b7d78b3ac5e66f8b024233a5095df9da65d5a1e975d692" -"checksum libp2p-ratelimit 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bad4fe925d50cc886608ab3b3a7a962b5064ecc49db8b66fd063a950d469c757" -"checksum libp2p-secio 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f9a7641a314d54ad7797f0445685818edb4d3c2f21690cea900f12ea73501b" -"checksum libp2p-tcp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4625bedbb083d676903a8ede4c5c42f9bf7bd5dee788f3cba29d8e01b785d253" -"checksum libp2p-uds 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac5f5d900e381b02ebea2f0621555a2f25a7735772355291aeb70fd9e0da3692" -"checksum libp2p-websocket 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96b6dfdd776a248d7494aeaf22f149b4d5f6784146546bc34f7b094c7162e141" -"checksum libp2p-yamux 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d5a6197ae647c963f5a711c6fb00ba07b9a2812df26f6284870221f654fe9313" -"checksum librocksdb-sys 5.14.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b9024327233e7fac7982440f73301c00046d438c5b1011e8f4e394226ce19007" +"checksum libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-core-derive 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-dns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-floodsub 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-identify 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-kad 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-mdns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-mplex 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-noise 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-ping 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-plaintext 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-ratelimit 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-secio 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-tcp 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-uds 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-websocket 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p-yamux 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum librocksdb-sys 5.17.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7dfb546562f9b450237bb8df7a31961849ee9fb1186d9e356db1d7a6b7609ff2" "checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" -"checksum linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7860ec297f7008ff7a1e3382d7f7e1dcd69efc94751a2284bafc3d013c2aa939" -"checksum linked-hash-map 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "70fb39025bc7cdd76305867c4eccf2f2dcf6e9a57f5b21a93e1c2d86cd03ec9e" +"checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" "checksum linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" -"checksum lru-cache 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4d06ff7ff06f729ce5f4e227876cb88d10bc59cd4ae1e09fbb2bde15c850dc21" -"checksum make-cmd 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a8ca8afbe8af1785e09636acb5a41e08a765f5f0340568716c18a8700ba3c0d3" +"checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" "checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" @@ -4604,34 +4974,31 @@ dependencies = [ "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum multistream-select 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ed84364f0e921a32204896952ee80c7befc14a7a39f2c56cd955d71e8dae6" +"checksum multistream-select 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" "checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" -"checksum node-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum node-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum node-runtime 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" "checksum nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d138afcce92d219ccb6eb53d9b1e8a96ac0d633cfd3c53cd9856d96d1741bb8" -"checksum nom 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b30adc557058ce00c9d0d7cb3c6e0b5bc6f36e2e2eabe74b0ba726d194abd588" +"checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" "checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" "checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" "checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409" -"checksum openssl 0.10.18 (registry+https://github.com/rust-lang/crates.io-index)" = "b90119d71b0a3596588da04bf7c2c42f2978cfa1217a94119d8ec9e963c7729c" +"checksum openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)" = "5a0d6b781aac4ac1bd6cafe2a2f0ad8c16ae8e1dd5184822a16c50139f8838d9" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.41 (registry+https://github.com/rust-lang/crates.io-index)" = "e4c77cdd67d31759b22aa72cfda3c65c12348f9e6c5420946b403c022fd0311a" +"checksum openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)" = "33c86834957dd5b915623e94f2f4ab2c70dd8f6b70679824155d5ae21dbd495d" "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum parity-codec 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "88f69984317b736dceac3baa86600fc089856f69b44b07231f39b5648b02bcd4" -"checksum parity-codec-derive 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a58ba33211595f92cc2163ac583961d3dc767e656934146636b05256cc9acd7f" +"checksum parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0333b2a2973e75c3b4a9bc2a7b28dceacb56e3949907b4ce113ff3a53bcc6713" +"checksum parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "be90eb3f1b4c02a478ccee3e0e64e5152692e7871c7258d2aa8e356359325aa7" "checksum parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b9db194dfbcfe3b398d63d765437a5c7232d59906e203055f0e993f6458ff1" -"checksum parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "61ae6944d4435d41f4d0f12108c5cbb9207cbb14bc8f2b4984c6e930dc9c8e41" -"checksum parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e8eab0287ccde7821e337a124dc5a4f1d6e4c25d10cc91e3f9361615dd95076" +"checksum parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" "checksum parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2fec5048fba72a2e01baeb0d08089db79aead4b57e2443df172fb1840075a233" "checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" @@ -4640,8 +5007,9 @@ dependencies = [ "checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa" "checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" -"checksum paste 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f50392d1265092fbee9273414cc40eb6d47d307bd66222c477bb8450c8504f9d" -"checksum paste-impl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a3cd512fe3a55e8933b2dcad913e365639db86d512e4004c3084b86864d9467a" +"checksum paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1f4a4a1c555c6505821f9d58b8779d0f630a6b7e4e1be24ba718610acf01fa79" +"checksum paste-impl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "26e796e623b8b257215f27e6c80a5478856cae305f5b59810ff9acdaa34570e6" +"checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" "checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" @@ -4650,13 +5018,10 @@ dependencies = [ "checksum proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2c725b36c99df7af7bf9324e9c999b9e37d92c8f8caf106d82e1d7953218d2d8" "checksum proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e90aa19cd73dedc2d0e1e8407473f073d735fef0ab521438de6da8ee449ab66" "checksum proc-macro-hack-impl 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2b753ad9ed99dd8efeaa7d2fb8453c8f6bc3e54b97966d35f1bc77ca6865254a" -"checksum proc-macro2 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "77997c53ae6edd6d187fec07ec41b207063b5ee6f33680e9fa86d405cdd313d4" "checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" -"checksum protobuf 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d82d117bc7565ce6be0150159251c9b1eeec7b129f5a2aa86e10acb5970de1cb" -"checksum pwasm-utils 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "efb0dcbddbb600f47a7098d33762a00552c671992171637f5bb310b37fe1f0e4" +"checksum protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "524d165d95627ddebba768db728216c4429bbb62882f7e6ab1a6c3c54a7ed830" "checksum quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5fb6ccf8db7bbcb9c2eae558db5ab4f3da1c2a87e4e597ed394726bc8ea6ca1d" "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" -"checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8" "checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" @@ -4668,16 +5033,16 @@ dependencies = [ "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" "checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" -"checksum rand_os 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b7c690732391ae0abafced5015ffb53656abfaec61b342290e5eb56b286a679d" +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" "checksum rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473" "checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" +"checksum redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)" = "d32b3053e5ced86e4bc0411fec997389532bf56b000e66cb4884eeeb41413d69" "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" -"checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f" -"checksum regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8c2f35eedad5295fdf00a63d7d4b238135723f92b434ec06774dad15c7ab0861" +"checksum regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "559008764a17de49a3146b234641644ed37d118d1ef641a0bb573d146edc6ce0" +"checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96" "checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" "checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" @@ -4686,21 +5051,22 @@ dependencies = [ "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum rw-stream-sink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "108ad7c3d65ba866ec50a224b7b3b0cb6c682c3d805015cea859d491232346a5" +"checksum rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" -"checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56" +"checksum schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339" "checksum schnorrkel 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fe554f318830b48e5da8ab1ccb1ffd02b79228364dac7766b7cd1ec461ca5116" +"checksum schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b5eff518f9bed3d803a0d002af0ab96339b0ebbedde3bec98a684986134b7a39" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaccd3a23619349e0878d9a241f34b1982343cdf67367058cd7d078d326b63e" "checksum security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfab8dda0e7a327c696d893df9ffa19cadc4bd195797997f5223cf5831beaf05" "checksum security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum serde 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)" = "9f301d728f2b94c9a7691c90f07b0b4e8a4517181d9461be94c04bddeb4bd850" -"checksum serde_derive 1.0.88 (registry+https://github.com/rust-lang/crates.io-index)" = "beed18e6f5175aef3ba670e57c60ef3b1b74d250d962a26604bff4c80e970dd4" -"checksum serde_json 1.0.38 (registry+https://github.com/rust-lang/crates.io-index)" = "27dce848e7467aa0e2fcaf0a413641499c0b745452aaca1194d24dedde9e13c9" +"checksum serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "92514fb95f900c9b5126e32d020f5c6d40564c27a5ea6d1d7d9f157a96623560" +"checksum serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6eabf4b5914e88e24eea240bb7c9f9a2cbc1bbbe8d961d381975ec3c6b806c" +"checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" "checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" "checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" @@ -4712,80 +5078,104 @@ dependencies = [ "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" "checksum slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "60c04b4726fa04595ccf2c2dad7bcd15474242c4c5e109a8a376e8a2c9b1539a" "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" -"checksum snow 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7251f8920e9043106cfe466c04ed3eb257b8315a7699259c4fd0af6dffb6aef6" +"checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" +"checksum sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum sr-sandbox 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-contract 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-council 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-democracy 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-grandpa 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-treasury 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-upgrade-key 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" -"checksum stdweb 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)" = "5eafd45550bc406cfa179ea263ba0935da87adf220dab40e2c25c4675edc49d8" +"checksum stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a3edad410e603184d656e2abded5fd4d3d6e93d5763d21130dbaf99795db74eb" "checksum stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0e21ebd9179de08f2300a65454268a17ea3de204627458588c84319c4def3930" "checksum stdweb-internal-macros 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1635afd059cbfac7d5b1274f0c44cec110c1e013c48e8bbc22e07e52696cf887" "checksum stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a2a2f4a2eb556337b2d1a302630bbddf989ae383c70393e89b48152b9896cbda" "checksum stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8861bc80f649f5b4c9bd38b696ae9af74499d479dbfb327f0607de6b326a36bc" "checksum string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b639411d0b9c738748b5397d5ceba08e648f4f1992231aa859af1a017f31f60b" "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" -"checksum structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "670ad348dc73012fcf78c71f06f9d942232cdd4c859d4b6975e27836c3efc0c3" -"checksum structopt-derive 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ef98172b1a00b0bec738508d3726540edcbd186d50dfd326f2b1febbb3559f04" -"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "3d0760c312538987d363c36c42339b55f5ee176ea8808bbe4543d484a291c8d1" +"checksum structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "528aeb7351d042e6ffbc2a6fb76a86f9b622fdf7c25932798e7a82cb03bc94c6" +"checksum strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1810e25f576e7ffce1ff5243b37066da5ded0310b3274c20baaeccb1145b2806" +"checksum strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "572a2f4e53dd4c3483fd79e5cc10ddd773a3acb1169bbfe8762365e107110579" +"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)" = "" +"checksum substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-finality-grandpa-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-peerset 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" -"checksum syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)" = "f92e629aa1d9c827b2bb8297046c1ccffc57c99b947a680d3ccff1f136a3bee9" +"checksum syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1825685f977249735d510a242a6727b46efe914bb67e38d30c071b1b72b1d5c2" "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" -"checksum sysinfo 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4da1ccc493b46042d6f5352910a7f18ed8fe81307dd7db3f2e2d8a7db6f6284" +"checksum sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b5a0cb7899e248ed0baa6ef6f8406352523c2f99bc7c4b1800f4cd6d5dde99eb" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" @@ -4794,21 +5184,23 @@ dependencies = [ "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" +"checksum tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f5388a470627f97a01a6e13389ced797a42b1611f9de7e0f6ca705675ac55297" "checksum tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e9175261fbdb60781fcd388a4d6cc7e14764a2b629a7ad94abb439aed223a44f" "checksum tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5462b0f968c0457efe38fcd2df7e487096b992419e4f5337b06775a614bbda4b" -"checksum tokio 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "e0500b88064f08bebddd0c0bed39e19f5c567a5f30975bee52b0c0d3e2eeb38c" +"checksum tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "65641e515a437b308ab131a82ce3042ff9795bef5d6c5a9be4eb24195c417fd9" "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" -"checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6" +"checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" "checksum tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975" -"checksum tokio-executor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30c6dbf2d1ad1de300b393910e8a3aa272b724a400b6531da03eed99e329fbf0" -"checksum tokio-fs 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0e9cbbc8a3698b7ab652340f46633364f9eaa928ddaaee79d8b8f356dd79a09d" -"checksum tokio-io 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b53aeb9d3f5ccf2ebb29e19788f96987fa1355f8fe45ea193928eaaaf3ae820f" -"checksum tokio-reactor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "afbcdb0f0d2a1e4c440af82d7bbf0bf91a8a8c0575bcd20c05d15be7e9d3a02f" -"checksum tokio-sync 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c73850a5ad497d73ccfcfc0ffb494a4502d93f35cb475cfeef4fcf2916d26040" +"checksum tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "83ea44c6c0773cc034771693711c35c677b4b5a4b21b9e7071704c54de7d555e" +"checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" +"checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" +"checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce" +"checksum tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "fda385df506bf7546e70872767f71e81640f1f251bdf2fd8eb81a0eaec5fe022" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" -"checksum tokio-threadpool 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c3fd86cb15547d02daa2b21aadaf4e37dee3368df38a526178a5afa3c034d2fb" +"checksum tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "ec5759cf26cf9659555f36c431b515e3d05f66831741c85b4b5d5dfb9cf1323c" "checksum tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2910970404ba6fa78c5539126a9ae2045d62e3713041e447f695f41405a120c6" "checksum tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" +"checksum tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "350c9edade9830dc185ae48ba45667a445ab59f6167ef6d0254ec9d2430d9dd3" "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" "checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" @@ -4823,7 +5215,7 @@ dependencies = [ "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" "checksum uint 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e7780bb27fd8a22295e0d9d53ae3be253f715a0dccb1808527f478f1c2603708" "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" -"checksum unicase 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d3218ea14b4edcaccfa0df0a64a3792a2c32cc706f1b336e48867f9d3147f90" +"checksum unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "41d17211f887da8e4a70a45b9536f26fc5de166b81e2d5d80de4a17fd22553bd" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" "checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" @@ -4839,9 +5231,9 @@ dependencies = [ "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" -"checksum wasmi 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "21ef487a11df1ed468cf613c78798c26282da5c30e9d49f824872d4c77b47d1d" -"checksum websocket 0.22.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d2c67346c042adbd4f5b2a49700e340befc5b772094fec8d36df6b825523d933" -"checksum which 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e84a603e7e0b1ce1aa1ee2b109c7be00155ce52df5081590d1ffb93f4f515cb2" +"checksum wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f6a891b45c79e9f96fb66cc84a057211ef9cd2e5e8d093f3dbbd480e146a8758" +"checksum websocket 0.22.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7cc2d74d89f9df981ab41ae624e33cf302fdf456b93455c6a31911a99c9f0bb8" +"checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" "checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" @@ -4851,5 +5243,7 @@ dependencies = [ "checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" "checksum ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)" = "329d3e6dd450a9c5c73024e1047f0be7e24121a68484eb0b5368977bee3cf8c3" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" +"checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" "checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" -"checksum yamux 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "56626765982b12c2f4b59529e1d2ce0a7c25499865e6edf8b502dceb51b65fe2" +"checksum yamux 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "302defd1bed8a9a6d43b82f0e5a50510dfdfbbd02c270c93ff9d6f3f5e2dea89" +"checksum zeroize 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8ddfeb6eee2fb3b262ef6e0898a52b7563bb8e0d5955a313b3cf2f808246ea14" diff --git a/Cargo.toml b/Cargo.toml index ed4ef1f520..ea06d9645d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,24 +1,34 @@ +[[bin]] +name = 'joystream-node' +path = 'src/main.rs' + +[package] +authors = ['Joystream'] +build = 'build.rs' +edition = '2018' +name = 'joystream-node' +version = '1.0.0' + [dependencies] error-chain = '0.12' exit-future = '0.1' futures = '0.1' hex-literal = '0.1' log = '0.4' -parity-codec = '3.0' +parity-codec = '3.2' parking_lot = '0.7.1' -slog = '^2' tokio = '0.1' trie-root = '0.11.0' [dependencies.basic-authorship] git = 'https://github.com/joystream/substrate.git' package = 'substrate-basic-authorship' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.consensus] git = 'https://github.com/joystream/substrate.git' package = 'substrate-consensus-aura' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.ctrlc] features = ['termination'] @@ -27,11 +37,12 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/joystream/substrate.git' package = 'substrate-inherents' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' -[dependencies.node-executor] +[dependencies.network] git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +package = 'substrate-network' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.joystream-node-runtime] git = 'https://github.com/joystream/substrate-runtime-joystream.git' @@ -44,49 +55,34 @@ tag = 'v3.4.0' [dependencies.primitives] git = 'https://github.com/joystream/substrate.git' package = 'substrate-primitives' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.sr-io] git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.substrate-cli] git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.substrate-client] git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.substrate-executor] git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.substrate-network] -git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.substrate-service] git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.transaction-pool] git = 'https://github.com/joystream/substrate.git' package = 'substrate-transaction-pool' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[package] -authors = ['Joystream'] -build = 'build.rs' -edition = '2018' -name = 'joystream-node' -version = '0.10.1' - -[[bin]] -name = 'joystream-node' -path = 'src/main.rs' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +[profile.release] +panic = 'unwind' [build-dependencies] vergen = '3' -[profile.release] -panic = 'unwind' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 4ada06c315..82ed4cfbb3 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -1,4 +1,4 @@ -use primitives::{Ed25519AuthorityId, ed25519}; +use primitives::{ed25519, sr25519, Pair}; use joystream_node_runtime::{ AccountId, GenesisConfig, ConsensusConfig, TimestampConfig, BalancesConfig, SudoConfig, IndicesConfig, SessionConfig, StakingConfig, Permill, Perbill, @@ -7,6 +7,8 @@ use joystream_node_runtime::{ use substrate_service; use hex_literal::{hex, hex_impl}; +use ed25519::Public as AuthorityId; + // Note this is the URL for the telemetry server const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; @@ -28,6 +30,26 @@ pub enum Alternative { LiveTestnet, } +fn authority_key(s: &str) -> AuthorityId { + ed25519::Pair::from_string(&format!("//{}", s), None) + .expect("static values are valid; qed") + .public() +} + +// New sr25519 for account keys +// fn account_key(s: &str) -> AccountId { +// sr25519::Pair::from_string(&format!("//{}", s), None) +// .expect("static values are valid; qed") +// .public() +// } + +// Continue to use ed25519 for account keys for now +fn account_key(s: &str) -> AccountId { + ed25519::Pair::from_string(&format!("//{}", s), None) + .expect("static values are valid; qed") + .public() +} + impl Alternative { /// Get an actual chain config from one of the alternatives. pub(crate) fn load(self) -> Result { @@ -36,11 +58,11 @@ impl Alternative { "Development", "dev", || testnet_genesis(vec![ - ed25519::Pair::from_seed(b"Alice ").public().into(), + authority_key("Alice") ], vec![ - ed25519::Pair::from_seed(b"Alice ").public().0.into(), + account_key("Alice") ], - ed25519::Pair::from_seed(b"Alice ").public().0.into() + account_key("Alice") ), vec![], None, @@ -52,17 +74,17 @@ impl Alternative { "Local Testnet", "local_testnet", || testnet_genesis(vec![ - ed25519::Pair::from_seed(b"Alice ").public().into(), - ed25519::Pair::from_seed(b"Bob ").public().into(), + authority_key("Alice"), + authority_key("Bob"), ], vec![ - ed25519::Pair::from_seed(b"Alice ").public().0.into(), - ed25519::Pair::from_seed(b"Bob ").public().0.into(), - ed25519::Pair::from_seed(b"Charlie ").public().0.into(), - ed25519::Pair::from_seed(b"Dave ").public().0.into(), - ed25519::Pair::from_seed(b"Eve ").public().0.into(), - ed25519::Pair::from_seed(b"Ferdie ").public().0.into(), + account_key("Alice"), + account_key("Bob"), + account_key("Charlie"), + account_key("Dave"), + account_key("Eve"), + account_key("Ferdie"), ], - ed25519::Pair::from_seed(b"Alice ").public().0.into() + account_key("Alice"), ), vec![], None, diff --git a/src/cli.rs b/src/cli.rs index 1b8a7c0a48..ab6259792f 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -66,6 +66,11 @@ fn run_until_exit( let _ = runtime.block_on(e.into_exit()); exit_send.fire(); + + // we eagerly drop the service so that the internal exit future is fired, + // but we need to keep holding a reference to the global telemetry guard + let _telemetry = service.telemetry(); + drop(service); Ok(()) } diff --git a/src/service.rs b/src/service.rs index d0f505a58e..8ae2e570a5 100644 --- a/src/service.rs +++ b/src/service.rs @@ -15,7 +15,7 @@ use basic_authorship::ProposerFactory; use node_executor; use consensus::{import_queue, start_aura, AuraImportQueue, SlotDuration, NothingExtra}; use substrate_client as client; -use primitives::ed25519::Pair; +use primitives::{ed25519::Pair, Pair as PairT}; use inherents::InherentDataProviders; use substrate_network::construct_simple_protocol; use substrate_executor::native_executor_instance; @@ -74,6 +74,7 @@ construct_service_factory! { service.network(), service.on_exit(), service.config.custom.inherent_data_providers.clone(), + service.config.force_authoring, )?); } From 2c42a4c09406f5db7bb92ae411f41b148e927adb Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 3 Apr 2019 16:47:42 +0300 Subject: [PATCH 188/350] substrate upgrade: refactor to work with latest joystream runtime --- .gitignore | 5 +- Cargo.lock | 810 +++--------- Cargo.toml | 16 +- build-runtime.sh | 2 +- runtime/CHANGELOG.md | 16 - runtime/Cargo.toml | 164 --- runtime/src/governance/council.rs | 170 --- runtime/src/governance/election.rs | 1667 ------------------------- runtime/src/governance/mock.rs | 97 -- runtime/src/governance/mod.rs | 19 - runtime/src/governance/proposals.rs | 1390 --------------------- runtime/src/governance/sealed_vote.rs | 70 -- runtime/src/governance/stake.rs | 114 -- runtime/src/lib.rs | 326 ----- runtime/src/memo.rs | 41 - runtime/wasm/Cargo.toml | 22 - runtime/wasm/build.sh | 13 - runtime/wasm/src/lib.rs | 3 - src/chain_spec.rs | 317 +++-- src/cli.rs | 152 +-- src/error.rs | 14 +- src/main.rs | 24 +- src/service.rs | 170 ++- 23 files changed, 552 insertions(+), 5070 deletions(-) delete mode 100644 runtime/CHANGELOG.md delete mode 100644 runtime/Cargo.toml delete mode 100644 runtime/src/governance/council.rs delete mode 100644 runtime/src/governance/election.rs delete mode 100644 runtime/src/governance/mock.rs delete mode 100644 runtime/src/governance/mod.rs delete mode 100644 runtime/src/governance/proposals.rs delete mode 100644 runtime/src/governance/sealed_vote.rs delete mode 100644 runtime/src/governance/stake.rs delete mode 100644 runtime/src/lib.rs delete mode 100644 runtime/src/memo.rs delete mode 100644 runtime/wasm/Cargo.toml delete mode 100755 runtime/wasm/build.sh delete mode 100644 runtime/wasm/src/lib.rs diff --git a/.gitignore b/.gitignore index d9c097446d..f96bd5d8a4 100644 --- a/.gitignore +++ b/.gitignore @@ -2,11 +2,10 @@ # will have compiled files and executables **/target/ -# Cargo lock in subs -runtime/**/Cargo.lock - # These are backup files generated by rustfmt **/*.rs.bk # JetBrains IDEs .idea + +substrate-runtime-joystream/ diff --git a/Cargo.lock b/Cargo.lock index 479f2841a1..9b5a029c39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -71,7 +71,7 @@ name = "ansi_term" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -112,7 +112,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -122,7 +122,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -140,7 +140,7 @@ dependencies = [ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -548,7 +548,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -621,7 +621,7 @@ dependencies = [ [[package]] name = "either" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -682,7 +682,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -735,7 +735,7 @@ name = "fork-tree" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -746,7 +746,7 @@ dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -843,6 +843,11 @@ name = "hash-db" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "hash-db" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "hash256-std-hasher" version = "0.11.0" @@ -865,7 +870,7 @@ name = "heapsize" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1010,7 +1015,7 @@ name = "impl-codec" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1060,9 +1065,9 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0)", + "joystream-node-runtime 4.1.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -1074,41 +1079,40 @@ dependencies = [ "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "joystream-node-runtime" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0#d1f3abe5d6c4603892a6d798d54e7e8705c561b4" +version = "4.1.0" dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -1130,7 +1134,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1252,7 +1256,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1331,7 +1335,7 @@ version = "0.5.0" source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1805,7 +1809,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1935,23 +1939,23 @@ source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7 [[package]] name = "parity-codec" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-codec-derive" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2052,7 +2056,7 @@ dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2064,7 +2068,7 @@ dependencies = [ "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2076,7 +2080,7 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2096,7 +2100,7 @@ dependencies = [ "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2158,7 +2162,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2215,7 +2219,7 @@ dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2227,7 +2231,7 @@ dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2245,7 +2249,7 @@ dependencies = [ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2293,7 +2297,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2306,7 +2310,7 @@ dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2332,7 +2336,7 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2393,7 +2397,7 @@ name = "remove_dir_all" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2406,7 +2410,7 @@ dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2487,23 +2491,7 @@ version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "schnorrkel" -version = "0.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2583,7 +2571,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2722,19 +2710,7 @@ dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "sr-api-macros" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2745,7 +2721,7 @@ dependencies = [ "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -2754,23 +2730,6 @@ dependencies = [ "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sr-io" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "sr-primitives" version = "0.1.0" @@ -2779,7 +2738,7 @@ dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -2787,23 +2746,6 @@ dependencies = [ "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "sr-primitives" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "sr-std" version = "0.1.0" @@ -2812,49 +2754,27 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sr-std" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "sr-version" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "sr-version" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-aura" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -2866,39 +2786,20 @@ dependencies = [ "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-aura" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-balances" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -2907,7 +2808,7 @@ version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -2918,72 +2819,37 @@ dependencies = [ "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-consensus" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-executive" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - -[[package]] -name = "srml-fees" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] name = "srml-indices" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -2991,34 +2857,21 @@ name = "srml-metadata" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-metadata" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-session" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3029,31 +2882,13 @@ dependencies = [ "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-session" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-staking" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3066,39 +2901,20 @@ dependencies = [ "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-staking" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-sudo" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" +source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", + "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] [[package]] @@ -3109,7 +2925,7 @@ dependencies = [ "bitmask 0.5.0 (git+https://github.com/paritytech/bitmask)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3121,26 +2937,6 @@ dependencies = [ "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-support" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-support-procedural" version = "0.1.0" @@ -3150,19 +2946,7 @@ dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "srml-support-procedural" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3174,19 +2958,7 @@ dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "srml-support-procedural-tools" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3196,17 +2968,7 @@ source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06 dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "srml-support-procedural-tools-derive" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3215,7 +2977,7 @@ version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3226,31 +2988,13 @@ dependencies = [ "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-system" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "srml-timestamp" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3259,23 +3003,6 @@ dependencies = [ "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "srml-timestamp" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "stable_deref_trait" version = "1.1.1" @@ -3312,7 +3039,7 @@ dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3327,7 +3054,7 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3370,7 +3097,7 @@ dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3386,7 +3113,7 @@ dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3395,7 +3122,7 @@ version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3464,7 +3191,7 @@ dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3480,36 +3207,6 @@ dependencies = [ "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "substrate-client" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "substrate-client-db" version = "0.1.0" @@ -3520,7 +3217,7 @@ dependencies = [ "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3539,7 +3236,7 @@ dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3565,14 +3262,6 @@ dependencies = [ "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "substrate-consensus-aura-primitives" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "substrate-consensus-aura-slots" version = "0.1.0" @@ -3581,7 +3270,7 @@ dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3602,8 +3291,8 @@ dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -3611,24 +3300,6 @@ dependencies = [ "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-consensus-common" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-executor" version = "0.1.0" @@ -3639,7 +3310,7 @@ dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3654,54 +3325,17 @@ dependencies = [ "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-executor" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-inherents" version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "substrate-inherents" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "substrate-keyring" version = "0.1.0" @@ -3714,16 +3348,6 @@ dependencies = [ "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] -[[package]] -name = "substrate-keyring" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", -] - [[package]] name = "substrate-keystore" version = "0.1.0" @@ -3754,7 +3378,7 @@ dependencies = [ "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3803,15 +3427,6 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-panic-handler" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-peerset" version = "0.1.0" @@ -3842,7 +3457,7 @@ dependencies = [ "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3860,34 +3475,6 @@ dependencies = [ "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-primitives" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-rpc" version = "0.1.0" @@ -3898,7 +3485,7 @@ dependencies = [ "jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3937,15 +3524,6 @@ dependencies = [ "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-serializer" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-service" version = "0.3.0" @@ -3956,7 +3534,7 @@ dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3984,7 +3562,7 @@ version = "0.1.0" source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", ] @@ -3998,7 +3576,7 @@ dependencies = [ "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -4007,39 +3585,6 @@ dependencies = [ "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "substrate-state-machine" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)", - "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-telemetry" -version = "0.3.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "substrate-telemetry" version = "0.3.1" @@ -4080,7 +3625,7 @@ dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", @@ -4095,19 +3640,7 @@ source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06 dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-trie" -version = "0.4.0" -source = "git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d#df5e65927780b323482e2e8b5031822f423a032d" -dependencies = [ - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4124,7 +3657,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "syn" -version = "0.15.29" +version = "0.15.30" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4139,7 +3672,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4151,7 +3684,7 @@ dependencies = [ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4174,7 +3707,7 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4218,7 +3751,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4485,6 +4018,14 @@ dependencies = [ "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "trie-root" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "try-lock" version = "0.2.2" @@ -4695,7 +4236,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "winapi" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4717,7 +4258,7 @@ name = "winapi-util" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4730,7 +4271,7 @@ name = "wincolor" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4870,7 +4411,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" "checksum ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81956bcf7ef761fb4e1d88de3fa181358a0d26cbcb9755b587a08f9119824b86" -"checksum either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c67353c641dc847124ea1902d69bd753dee9bb3beff9aa3662ecf86c971d1fac" +"checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b" "checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" "checksum env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a" "checksum environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c7464757b80de8930c91c9afe77ddce501826bf9d134a87db2c67d9dc177e2c" @@ -4898,6 +4439,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" "checksum h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "910a5e7be6283a9c91b3982fa5188368c8719cce2a3cf3b86048673bf9d9c36b" "checksum hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1b03501f6e1a2a97f1618879aba3156f14ca2847faa530c4e28859638bd11483" +"checksum hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ba7fb417e5c470acdd61068c79767d0e65962e70836cf6c9dfd2409f06345ce0" "checksum hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f5c13dbac3cc50684760f54af18545c9e80fb75e93a3e586d71ebdc13138f6a4" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" @@ -4921,7 +4463,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" -"checksum joystream-node-runtime 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream.git?tag=v3.4.0)" = "" "checksum jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc15eef5f8b6bef5ac5f7440a957ff95d036e2f98706947741bfc93d1976db4c" "checksum jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c2dae61ca8a3b047fb11309b00661bc56837085bd07e46f907b9c562c0b03e68" "checksum jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11d2a00824306155b8ef57fe957f31b8cd8ad24262f15cf911d84dcf9a3f206d" @@ -4994,8 +4535,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum parity-codec 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0333b2a2973e75c3b4a9bc2a7b28dceacb56e3949907b4ce113ff3a53bcc6713" -"checksum parity-codec-derive 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "be90eb3f1b4c02a478ccee3e0e64e5152692e7871c7258d2aa8e356359325aa7" +"checksum parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2edd80cdaf3b9c7b7f524299586bb4eae43cc5eb20c7b41aa0cd741200000e38" +"checksum parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00a486fd383382ddcb2de928364b1f82571c1e48274fc43b7667a4738ee4056c" "checksum parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b9db194dfbcfe3b398d63d765437a5c7232d59906e203055f0e993f6458ff1" "checksum parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" "checksum parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" @@ -5056,7 +4597,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" "checksum schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339" -"checksum schnorrkel 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fe554f318830b48e5da8ab1ccb1ffd02b79228364dac7766b7cd1ec461ca5116" "checksum schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b5eff518f9bed3d803a0d002af0ab96339b0ebbedde3bec98a684986134b7a39" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaccd3a23619349e0878d9a241f34b1982343cdf67367058cd7d078d326b63e" @@ -5081,42 +4621,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" "checksum sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-fees 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" +"checksum srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" @@ -5135,45 +4658,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)" = "" "checksum substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-peerset 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" -"checksum substrate-telemetry 0.3.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" "checksum substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=df5e65927780b323482e2e8b5031822f423a032d)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" -"checksum syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1825685f977249735d510a242a6727b46efe914bb67e38d30c071b1b72b1d5c2" +"checksum syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)" = "66c8865bf5a7cbb662d8b011950060b3c8743dca141b054bf7195b20d314d8e2" "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" "checksum sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b5a0cb7899e248ed0baa6ef6f8406352523c2f99bc7c4b1800f4cd6d5dde99eb" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" @@ -5207,6 +4718,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" "checksum trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7319e28ca295f27359d944a682f7f65b419158bf1590c92cadc0000258d788" "checksum trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3c6fef2705af3258ec46a7e22286090394a44216201a1cf7d04b78db825e543" +"checksum trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cfa2e20c4f1418ac2e71ddc418e35e1b56e34022e2146209ffdbf1b2de8b1bd9" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" "checksum twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "555cd4909480122bbbf21e34faac4cb08a171f324775670447ed116726c474af" @@ -5235,7 +4747,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum websocket 0.22.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7cc2d74d89f9df981ab41ae624e33cf302fdf456b93455c6a31911a99c9f0bb8" "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" +"checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" diff --git a/Cargo.toml b/Cargo.toml index ea06d9645d..75ab21afe8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ log = '0.4' parity-codec = '3.2' parking_lot = '0.7.1' tokio = '0.1' -trie-root = '0.11.0' +trie-root = '0.12.0' [dependencies.basic-authorship] git = 'https://github.com/joystream/substrate.git' @@ -45,12 +45,8 @@ package = 'substrate-network' rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' [dependencies.joystream-node-runtime] -git = 'https://github.com/joystream/substrate-runtime-joystream.git' -tag = 'v3.4.0' -# When developing locally change the location of the dependency to a local directory -# comment out the "git" and "tag" lines above and replace with a "path" -# path = 'runtime' -# path = '../my-local-joystream-runtime-repo/' +# clone https://github.com/joystream/substrate-runtime-joystream to this path: +path = './substrate-runtime-joystream/' [dependencies.primitives] git = 'https://github.com/joystream/substrate.git' @@ -81,6 +77,12 @@ rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' git = 'https://github.com/joystream/substrate.git' package = 'substrate-transaction-pool' rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' + +[dependencies.substrate-telemetry] +git = 'https://github.com/joystream/substrate.git' +package = 'substrate-telemetry' +rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' + [profile.release] panic = 'unwind' diff --git a/build-runtime.sh b/build-runtime.sh index edbcba835c..25418d84d5 100755 --- a/build-runtime.sh +++ b/build-runtime.sh @@ -12,7 +12,7 @@ normal=$(tput sgr0) # Save current directory. pushd . >/dev/null -for SRC in runtime/wasm +for SRC in substrate-runtime-joystream/ do echo "${bold}Building webassembly binary in $SRC...${normal}" cd "$PROJECT_ROOT/$SRC" diff --git a/runtime/CHANGELOG.md b/runtime/CHANGELOG.md deleted file mode 100644 index 95faba3880..0000000000 --- a/runtime/CHANGELOG.md +++ /dev/null @@ -1,16 +0,0 @@ -### Version 4 - Bug Fixes - March 4th 2019 - `9941dd` - - Allow illiquid accounts to pay transaction fees. Fixes unstaking and setting memo, by permitting extrinsics which do not require more than a transaction fee to be accepted into mempool. - - Updated Cargo dependencies to use forked substrate repo `github.com/joystream/substrate` - - - On-chain runtime upgrade performed with sudo `consensus::setCode()` - -### Version 3 - Sparta - March 1st 2019 - `1ca4cc` - - Basic substrate node - based on substrate `1ca4cc0a16a357782bb1028bb57376594ca232a0` - - Block Authoring - only Aura (enabling GRANDPA in future release) - - Council Elections - - Council Runtime upgrade proposal - - Simple PoS validator staking - - Memo (account status message) - -Used in genesis block for first testnet (Sparta) diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml deleted file mode 100644 index 9433296744..0000000000 --- a/runtime/Cargo.toml +++ /dev/null @@ -1,164 +0,0 @@ -[package] -authors = ['Joystream'] -edition = '2018' -name = 'joystream-node-runtime' -version = '1.0.1' - -[features] -default = ['std'] -std = [ - 'parity-codec/std', - 'parity-codec-derive/std', - 'primitives/std', - 'substrate-client/std', - 'rstd/std', - 'runtime-io/std', - 'srml-support/std', - 'balances/std', - 'fees/std', - 'executive/std', - 'aura/std', - 'indices/std', - 'primitives/std', - 'system/std', - 'timestamp/std', - 'sudo/std', - 'version/std', - 'serde_derive', - 'serde/std', - 'safe-mix/std', - 'consensus-aura/std', - 'staking/std', - 'session/std', -] -[dependencies.aura] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-aura' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.balances] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-balances' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.consensus] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-consensus' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.consensus-aura] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'substrate-consensus-aura-primitives' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.executive] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-executive' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.fees] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-fees' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.indices] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-indices' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.parity-codec] -default-features = false -version = '3.0' - -[dependencies.parity-codec-derive] -default-features = false -version = '3.0' - -[dependencies.primitives] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'substrate-primitives' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.rstd] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'sr-std' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.runtime-io] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'sr-io' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.runtime-primitives] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'sr-primitives' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.safe-mix] -default-features = false -version = '1.0' - -[dependencies.serde] -default-features = false -version = '1.0' - -[dependencies.serde_derive] -optional = true -version = '1.0' - -[dependencies.srml-support] -default_features = false -git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.substrate-client] -default_features = false -git = 'https://github.com/joystream/substrate.git' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.sudo] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-sudo' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.system] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-system' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.timestamp] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-timestamp' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.version] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'sr-version' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.staking] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-staking' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' - -[dependencies.session] -default_features = false -git = 'https://github.com/joystream/substrate.git' -package = 'srml-session' -rev = 'df5e65927780b323482e2e8b5031822f423a032d' diff --git a/runtime/src/governance/council.rs b/runtime/src/governance/council.rs deleted file mode 100644 index f30d7c9b37..0000000000 --- a/runtime/src/governance/council.rs +++ /dev/null @@ -1,170 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] - -use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; -use srml_support::traits::{Currency}; -use system::{self, ensure_signed}; -use runtime_primitives::traits::{As, Zero}; -use rstd::prelude::*; - -pub use super::election::{self, Seats, Seat, CouncilElected}; -pub use super::{ GovernanceCurrency, BalanceOf }; - -// Hook For announcing that council term has ended -pub trait CouncilTermEnded { - fn council_term_ended(); -} - -impl CouncilTermEnded for () { - fn council_term_ended() {} -} - -impl CouncilTermEnded for (X,) { - fn council_term_ended() { - X::council_term_ended(); - } -} - -pub trait Trait: system::Trait + GovernanceCurrency { - type Event: From> + Into<::Event>; - - type CouncilTermEnded: CouncilTermEnded; -} - -decl_storage! { - trait Store for Module as Council { - ActiveCouncil get(active_council) config(): Seats>; - TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::sa(1); - } -} - -/// Event for this module. -decl_event!( - pub enum Event where ::BlockNumber { - CouncilTermEnded(BlockNumber), - NewCouncilTermStarted(BlockNumber), - } -); - -impl CouncilElected>, T::BlockNumber> for Module { - fn council_elected(seats: Seats>, term: T::BlockNumber) { - >::put(seats); - - let next_term_ends_at = >::block_number() + term; - >::put(next_term_ends_at); - Self::deposit_event(RawEvent::NewCouncilTermStarted(next_term_ends_at)); - } -} - -impl Module { - - pub fn is_term_ended() -> bool { - >::block_number() >= Self::term_ends_at() - } - - pub fn is_councilor(sender: &T::AccountId) -> bool { - Self::active_council().iter().any(|c| c.member == *sender) - } -} - -decl_module! { - pub struct Module for enum Call where origin: T::Origin { - fn deposit_event() = default; - - fn on_finalise(now: T::BlockNumber) { - if now == Self::term_ends_at() { - Self::deposit_event(RawEvent::CouncilTermEnded(now)); - T::CouncilTermEnded::council_term_ended(); - } - } - - // Sudo methods... - - /// Force set a zero staked council. Stakes in existing council will vanish into thin air! - fn set_council(accounts: Vec) { - let new_council: Seats> = accounts.into_iter().map(|account| { - Seat { - member: account, - stake: BalanceOf::::zero(), - backers: vec![] - } - }).collect(); - >::put(new_council); - } - - /// Adds a zero staked council member - fn add_council_member(account: T::AccountId) { - ensure!(!Self::is_councilor(&account), "cannot add same account multiple times"); - let seat = Seat { - member: account, - stake: BalanceOf::::zero(), - backers: vec![] - }; - - // add member to existing council - >::mutate(|council| council.push(seat)); - } - - fn remove_council_member(account_to_remove: T::AccountId) { - ensure!(Self::is_councilor(&account_to_remove), "account is not a councilor"); - let filtered_council: Seats> = Self::active_council() - .into_iter() - .filter(|c| c.member != account_to_remove) - .collect(); - >::put(filtered_council); - } - - /// Set blocknumber when council term will end - fn set_term_ends_at(ends_at: T::BlockNumber) { - ensure!(ends_at > >::block_number(), "must set future block number"); - >::put(ends_at); - } - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::governance::mock::*; - use parity_codec::Encode; - use runtime_io::with_externalities; - use srml_support::*; - - #[test] - fn add_council_member_test() { - with_externalities(&mut initial_test_ext(), || { - assert!(!Council::is_councilor(&1)); - - assert_ok!(Council::add_council_member(1)); - assert!(Council::is_councilor(&1)); - - assert_ok!(Council::add_council_member(2)); - assert!(Council::is_councilor(&1)); - assert!(Council::is_councilor(&2)); - }); - } - - #[test] - fn remove_council_member_test() { - with_externalities(&mut initial_test_ext(), || { - assert_ok!(Council::add_council_member(1)); - assert_ok!(Council::add_council_member(2)); - assert_ok!(Council::add_council_member(3)); - - assert_ok!(Council::remove_council_member(2)); - - assert!(!Council::is_councilor(&2)); - assert!(Council::is_councilor(&1)); - assert!(Council::is_councilor(&3)); - }); - } - - #[test] - fn set_council_test() { - with_externalities(&mut initial_test_ext(), || { - assert_ok!(Council::set_council(vec![4,5,6])); - assert!(Council::is_councilor(&4)); - assert!(Council::is_councilor(&5)); - assert!(Council::is_councilor(&6)); - }); - } -} diff --git a/runtime/src/governance/election.rs b/runtime/src/governance/election.rs deleted file mode 100644 index 282247e59f..0000000000 --- a/runtime/src/governance/election.rs +++ /dev/null @@ -1,1667 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] - -use rstd::prelude::*; -use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; -use srml_support::traits::{Currency}; -use system::{self, ensure_signed}; - -use runtime_primitives::traits::{Hash, As, Zero, /*SimpleArithmetic*/}; -//use {balances}; - -use rstd::collections::btree_map::BTreeMap; -use rstd::ops::Add; - -use super::stake::Stake; -use super::sealed_vote::SealedVote; - -pub use super::{ GovernanceCurrency, BalanceOf }; -use super::council; - -pub trait Trait: system::Trait + council::Trait + GovernanceCurrency { - type Event: From> + Into<::Event>; - - type CouncilElected: CouncilElected>, Self::BlockNumber>; -} - -#[derive(Clone, Copy, Encode, Decode)] -pub enum ElectionStage { - Announcing(BlockNumber), - Voting(BlockNumber), - Revealing(BlockNumber), -} - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct Seat { - pub member: AccountId, - pub stake: Balance, - pub backers: Vec>, -} - -impl Seat - where Balance: Add + Copy, -{ - pub fn calc_total_stake(&self) -> Balance { - self.backers.iter().fold(self.stake, |acc, backer| acc + backer.stake) - } -} - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct Backer { - pub member: AccountId, - pub stake: Balance, -} - -pub type Seats = Vec>; - -// Hook for setting a new council when it is elected -pub trait CouncilElected { - fn council_elected(new_council: Elected, term: Term); -} - -impl CouncilElected for () { - fn council_elected(_new_council: Elected, term: Term) {} -} - -impl> CouncilElected for (X,) { - fn council_elected(new_council: Elected, term: Term) { - X::council_elected(new_council, term); - } -} - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Clone, Copy, Encode, Decode, Default)] -pub struct TransferableStake { - seat: Balance, - backing: Balance, -} - -decl_storage! { - trait Store for Module as CouncilElection { - // Flag for wether to automatically start an election after a council term ends - AutoStart get(auto_start) config() : bool = true; - - // Current stage if there is an election running - Stage get(stage): Option>; - - // The election round - Round get(round): u32; - - ExistingStakeHolders get(existing_stake_holders): Vec; - TransferableStakes get(transferable_stakes): map T::AccountId => TransferableStake>; - - Applicants get(applicants): Vec; - ApplicantStakes get(applicant_stakes): map T::AccountId => Stake>; - - Commitments get(commitments): Vec; - - // TODO value type of this map looks scary, is there any way to simplify the notation? - Votes get(votes): map T::Hash => SealedVote>, T::Hash, T::AccountId>; - - // Current Election Parameters - default "zero" values are not meaningful. Running an election without - // settings reasonable values is a bad idea. Parameters can be set in the TriggerElection hook. - AnnouncingPeriod get(announcing_period) config(): T::BlockNumber = T::BlockNumber::sa(100); - VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::sa(100); - RevealingPeriod get(revealing_period) config(): T::BlockNumber = T::BlockNumber::sa(100); - CouncilSize get(council_size) config(): u32 = 10; - CandidacyLimit get (candidacy_limit) config(): u32 = 20; - MinCouncilStake get(min_council_stake) config(): BalanceOf = BalanceOf::::sa(100); - NewTermDuration get(new_term_duration) config(): T::BlockNumber = T::BlockNumber::sa(1000); - MinVotingStake get(min_voting_stake) config(): BalanceOf = BalanceOf::::sa(10); - } -} - -/// Event for this module. -decl_event!( - pub enum Event where - ::BlockNumber, - ::AccountId, - ::Hash { - /// A new election started - ElectionStarted(), - AnnouncingStarted(u32), - AnnouncingEnded(), - VotingStarted(), - VotingEnded(), - RevealingStarted(), - RevealingEnded(), - CouncilElected(BlockNumber), - Applied(AccountId), - Voted(AccountId, Hash), - Revealed(AccountId, Hash, AccountId), - } -); - -impl Module { - // HELPERS - IMMUTABLES - - fn council_size_usize() -> usize { - Self::council_size() as usize - } - - fn candidacy_limit_usize() -> usize { - Self::candidacy_limit() as usize - } - - fn current_block_number_plus(length: T::BlockNumber) -> T::BlockNumber { - >::block_number() + length - } - - // TODO This method should be moved to Membership module once it's created. - fn is_member(sender: T::AccountId) -> bool { - !T::Currency::free_balance(&sender).is_zero() - } - - // PUBLIC IMMUTABLES - - /// Returns true if an election is running - pub fn is_election_running() -> bool { - Self::stage().is_some() - } - - /// Returns block number at which current stage will end if an election is running. - pub fn stage_ends_at() -> Option { - if let Some(stage) = Self::stage() { - match stage { - ElectionStage::Announcing(ends) => Some(ends), - ElectionStage::Voting(ends) => Some(ends), - ElectionStage::Revealing(ends) => Some(ends), - } - } else { - None - } - } - - // PRIVATE MUTABLES - - /// Starts an election. Will fail if an election is already running - /// Initializes transferable stakes. Assumes election parameters have already been set. - fn start_election(current_council: Seats>) -> Result { - ensure!(!Self::is_election_running(), "election already in progress"); - ensure!(Self::existing_stake_holders().len() == 0, "stake holders must be empty"); - ensure!(Self::applicants().len() == 0, "applicants must be empty"); - ensure!(Self::commitments().len() == 0, "commitments must be empty"); - - // Take snapshot of seat and backing stakes of an existing council - // Its important to note that the election system takes ownership of these stakes, and is responsible - // to return any unused stake to original owners and the end of the election. - Self::initialize_transferable_stakes(current_council); - - Self::deposit_event(RawEvent::ElectionStarted()); - - Self::move_to_announcing_stage(); - Ok(()) - } - - /// Sets announcing stage. Can be called from any stage and assumes all preparatory work - /// for entering the stage has been performed. - /// Bumps the election round. - fn move_to_announcing_stage() { - let next_round = >::mutate(|n| { *n += 1; *n }); - - let new_stage_ends_at = Self::current_block_number_plus(Self::announcing_period()); - - >::put(ElectionStage::Announcing(new_stage_ends_at)); - - Self::deposit_event(RawEvent::AnnouncingStarted(next_round)); - } - - /// Sets announcing stage. Can be called from any stage and assumes all preparatory work - /// for entering the stage has been performed. - fn move_to_voting_stage() { - let new_stage_ends_at = Self::current_block_number_plus(Self::voting_period()); - - >::put(ElectionStage::Voting(new_stage_ends_at)); - - Self::deposit_event(RawEvent::VotingStarted()); - } - - /// Sets announcing stage. Can be called from any stage and assumes all preparatory work - /// for entering the stage has been performed. - fn move_to_revealing_stage() { - let new_stage_ends_at = Self::current_block_number_plus(Self::revealing_period()); - - >::put(ElectionStage::Revealing(new_stage_ends_at)); - - Self::deposit_event(RawEvent::RevealingStarted()); - } - - /// Sorts applicants by stake, and returns slice of applicants with least stake. Applicants not - /// returned in the slice are the top `len` highest staked. - fn find_least_staked_applicants ( - applicants: &mut Vec, - len: usize) -> &[T::AccountId] - { - if len >= applicants.len() { - &[] - } else { - applicants.sort_by_key(|applicant| Self::applicant_stakes(applicant)); - &applicants[0 .. applicants.len() - len] - } - } - - fn on_announcing_ended() { - let mut applicants = Self::applicants(); - - if applicants.len() < Self::council_size_usize() { - // Not enough applicants announced candidacy - Self::move_to_announcing_stage(); - } else { - // upper limit on applicants that will move to voting stage - let limit = rstd::cmp::max(Self::council_size_usize(), Self::candidacy_limit_usize()); - let applicants_to_drop = Self::find_least_staked_applicants(&mut applicants, limit); - - Self::drop_applicants(applicants_to_drop); - - Self::move_to_voting_stage(); - } - } - - fn on_voting_ended() { - Self::move_to_revealing_stage(); - } - - fn on_revealing_ended() { - // tally the revealed votes - let mut votes = Vec::new(); - - for commitment in Self::commitments().iter() { - votes.push(Self::votes(commitment)); - } - - let mut new_council = Self::tally_votes(&votes); - - // Note here that applicants with zero votes dont appear in the tally. - // Is an applicant with some votes but less total stake than another applicant with zero votes - // more qualified to be on the council? - // Consider implications - if a council can be formed purely by staking are we fine with that? - - for applicant in Self::applicants().iter() { - if !new_council.contains_key(applicant) { - new_council.insert(applicant.clone(), Seat { - member: applicant.clone(), - stake: Self::applicant_stakes(applicant).total(), - backers: Vec::new(), - }); - } - } - - if new_council.len() == Self::council_size_usize() { - // all applicants in the tally will form the new council - } else if new_council.len() > Self::council_size_usize() { - // we have more than enough applicants to form the new council. - // select top staked - Self::filter_top_staked(&mut new_council, Self::council_size_usize()); - } else { - // Not enough applicants with votes to form a council. - // This may happen if we didn't add applicants with zero votes to the tally, - // or in future if we allow applicants to withdraw candidacy during voting or revealing stages. - // or council size was increased during voting, revealing stages. - } - - // unless we want to add more filtering criteria to what is considered a successful election - // other than just the minimum stake for candidacy, we have a new council! - - Self::teardown_election ( - &votes, - &new_council, - true /* unlock transferable stakes */ - ); - - let new_council = new_council.into_iter().map(|(_, seat)| seat).collect(); - T::CouncilElected::council_elected(new_council, Self::new_term_duration()); - - Self::deposit_event(RawEvent::CouncilElected(>::block_number())); - } - - fn teardown_election ( - votes: &Vec>, - T::Hash, T::AccountId>>, new_council: &BTreeMap>>, - unlock_ts: bool) - { - Self::refund_voting_stakes(&votes, &new_council); - Self::clear_votes(); - - Self::drop_unelected_applicants(&new_council); - Self::clear_applicants(); - - if unlock_ts { - Self::unlock_transferable_stakes(); - } - - Self::clear_transferable_stakes(); - - >::kill(); - } - - fn unlock_transferable_stakes() { - // move stakes back to account holder's free balance - for stakeholder in Self::existing_stake_holders().iter() { - let stake = Self::transferable_stakes(stakeholder); - if !stake.seat.is_zero() || !stake.backing.is_zero() { - T::Currency::unreserve(stakeholder, stake.seat + stake.backing); - } - } - } - - fn clear_transferable_stakes() { - for stakeholder in Self::existing_stake_holders() { - >::remove(stakeholder); - } - - >::kill(); - } - - fn clear_applicants() { - for applicant in Self::applicants() { - >::remove(applicant); - } - >::kill(); - } - - fn refund_applicant(applicant: &T::AccountId) { - let stake = >::get(applicant); - - // return new stake to account's free balance - if !stake.new.is_zero() { - T::Currency::unreserve(applicant, stake.new); - } - - // return unused transferable stake - if !stake.transferred.is_zero() { - >::mutate(applicant, |transferable| (*transferable).seat += stake.transferred); - } - } - - fn drop_applicants(drop: &[T::AccountId]) { - let not_dropped: Vec = Self::applicants().into_iter() - .filter(|id| !drop.iter().any(|x| *x == *id)) - .collect(); - - for applicant in drop { - Self::refund_applicant(applicant); - >::remove(applicant); - } - - >::put(not_dropped); - } - - fn drop_unelected_applicants(new_council: &BTreeMap>>) { - let applicants_to_drop: Vec = Self::applicants().into_iter() - .filter(|applicant| !new_council.contains_key(&applicant)) - .collect(); - - Self::drop_applicants(&applicants_to_drop[..]); - } - - fn refund_voting_stakes( - sealed_votes: &Vec>, T::Hash, T::AccountId>>, - new_council: &BTreeMap>>) - { - for sealed_vote in sealed_votes.iter() { - // Do a refund if commitment was not revealed, or the vote was for applicant that did - // not get elected to the council - // TODO critical: shouldn't we slash the stake in such a case? This is the whole idea behid staking on something: people need to decide carefully and be responsible for their bahavior because they can loose their stake - // See https://github.com/Joystream/substrate-node-joystream/issues/4 - let do_refund = match sealed_vote.get_vote() { - Some(applicant) => !new_council.contains_key(&applicant), - None => true - }; - - if do_refund { - // return new stake to account's free balance - let SealedVote { voter, stake, .. } = sealed_vote; - if !stake.new.is_zero() { - T::Currency::unreserve(voter, stake.new); - } - - // return unused transferable stake - if !stake.transferred.is_zero() { - >::mutate(voter, |transferable| (*transferable).backing += stake.transferred); - } - } - } - } - - fn clear_votes() { - for commitment in Self::commitments() { - >::remove(commitment); - } - >::kill(); - } - - fn tally_votes(sealed_votes: &Vec>, T::Hash, T::AccountId>>) -> BTreeMap>> { - let mut tally: BTreeMap>> = BTreeMap::new(); - - for sealed_vote in sealed_votes.iter() { - if let Some(applicant) = sealed_vote.get_vote() { - if !tally.contains_key(&applicant) { - // Add new seat - tally.insert(applicant.clone(), Seat { - member: applicant.clone(), - stake: Self::applicant_stakes(applicant).total(), - backers: vec![], - }); - } - if let Some(seat) = tally.get_mut(&applicant) { - // Add backer to existing seat - seat.backers.push(Backer { - member: sealed_vote.voter.clone(), - stake: sealed_vote.stake.total() - }); - } - } - } - - tally - } - - fn filter_top_staked(tally: &mut BTreeMap>>, limit: usize) { - - if limit >= tally.len() { - return; - } - - // use ordering in the applicants vector (not ordering resulting from btreemap iteration) - let mut seats: Vec = Self::applicants().into_iter() - .filter(|id| tally.contains_key(id)).collect(); - - // ensure_eq!(seats.len(), tally.len()); - - if limit >= seats.len() { - // Tally is inconsistent with list of applicants! - return; - } - - // TODO: order by number of votes, then number of backers - - seats.sort_by_key(|applicant| { - tally.get(&applicant).map_or(Zero::zero(), |seat| seat.calc_total_stake()) - }); - - // seats at bottom of list - let filtered_out_seats = &seats[0 .. seats.len() - limit]; - - for id in filtered_out_seats { - tally.remove(id); - } - } - - /// Checks if the current election stage has ended and calls the stage ended handler - fn check_if_stage_is_ending(now: T::BlockNumber) { - if let Some(stage) = Self::stage() { - match stage { - ElectionStage::Announcing(ends) => if ends == now { - Self::deposit_event(RawEvent::AnnouncingEnded()); - Self::on_announcing_ended(); - }, - ElectionStage::Voting(ends) => if ends == now { - Self::deposit_event(RawEvent::VotingEnded()); - Self::on_voting_ended(); - }, - ElectionStage::Revealing(ends) => if ends == now { - Self::deposit_event(RawEvent::RevealingEnded()); - Self::on_revealing_ended(); - }, - } - } - } - - /// Takes a snapshot of the stakes from the current council - fn initialize_transferable_stakes(current_council: Seats>) { - let mut stakeholder_accounts: Vec = Vec::new(); - - for seat in current_council.into_iter() { - let Seat { member, stake, .. } = seat; - - if >::exists(&member) { - >::mutate(&member, |transferbale_stake| *transferbale_stake = TransferableStake { - seat: transferbale_stake.seat + stake, - backing: transferbale_stake.backing, - }); - } else { - >::insert(&member, TransferableStake { - seat: stake, - backing: BalanceOf::::zero(), - }); - - stakeholder_accounts.push(member); - } - - for backer in seat.backers.into_iter() { - let Backer { member, stake, ..} = backer; - - if >::exists(&member) { - >::mutate(&member, |transferbale_stake| *transferbale_stake = TransferableStake { - seat: transferbale_stake.seat, - backing: transferbale_stake.backing + stake, - }); - } else { - >::insert(&member, TransferableStake { - seat: BalanceOf::::zero(), - backing: stake, - }); - - stakeholder_accounts.push(member); - } - } - } - - >::put(stakeholder_accounts); - } - - fn new_stake_reusing_transferable(transferable: &mut BalanceOf, new_stake: BalanceOf) -> Stake> { - let transferred = - if *transferable >= new_stake { - new_stake - } else { - *transferable - }; - - *transferable = *transferable - transferred; - - Stake { - new: new_stake - transferred, - transferred, - } - } - - fn try_add_applicant(applicant: T::AccountId, stake: BalanceOf) -> Result { - let mut transferable_stake = >::get(&applicant); - - let new_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.seat, stake); - - ensure!(T::Currency::can_reserve(&applicant, new_stake.new), "not enough free balance to reserve"); - - ensure!(T::Currency::reserve(&applicant, new_stake.new).is_ok(), "failed to reserve applicant stake!"); - - let applicant_stake = >::get(&applicant); - let total_stake = applicant_stake.add(&new_stake); - - if >::exists(&applicant) { - >::insert(&applicant, transferable_stake); - } - - if !>::exists(&applicant) { - // insert element at the begining, this gives priority to early applicants - // when ordering applicants by stake if stakes are equal - >::mutate(|applicants| applicants.insert(0, applicant.clone())); - } - - >::insert(applicant.clone(), total_stake); - - Ok(()) - } - - fn try_add_vote(voter: T::AccountId, stake: BalanceOf, commitment: T::Hash) -> Result { - ensure!(!>::exists(commitment), "duplicate commitment"); - - let mut transferable_stake = >::get(&voter); - - let vote_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.backing, stake); - - ensure!(T::Currency::can_reserve(&voter, vote_stake.new), "not enough free balance to reserve"); - - ensure!(T::Currency::reserve(&voter, vote_stake.new).is_ok(), "failed to reserve voting stake!"); - - >::mutate(|commitments| commitments.push(commitment)); - - >::insert(commitment, SealedVote::new(voter.clone(), vote_stake, commitment)); - - if >::exists(&voter) { - >::insert(&voter, transferable_stake); - } - - Ok(()) - } - - fn try_reveal_vote(voter: T::AccountId, commitment: T::Hash, vote_for: T::AccountId, salt: Vec) -> Result { - ensure!(>::exists(&commitment), "commitment not found"); - - let mut sealed_vote = >::get(&commitment); - - ensure!(sealed_vote.is_not_revealed(), "vote already revealed"); - // only voter can reveal their own votes - ensure!(sealed_vote.is_owned_by(voter), "only voter can reveal vote"); - ensure!(>::exists(&vote_for), "vote for non-applicant not allowed"); - - let mut salt = salt.clone(); - - // Tries to unseal, if salt is invalid will return error - sealed_vote.unseal(vote_for, &mut salt, ::Hashing::hash)?; - - // Update the revealed vote - >::insert(commitment, sealed_vote); - - Ok(()) - } -} - -decl_module! { - pub struct Module for enum Call where origin: T::Origin { - fn deposit_event() = default; - - // No origin so this is a priviledged call - fn on_finalise(now: T::BlockNumber) { - Self::check_if_stage_is_ending(now); - } - - // Member can apply during announcing stage only. On first call a minimum stake will need to be provided. - // Member can make subsequent calls during announcing stage to increase their stake. - fn apply(origin, stake: BalanceOf) { - let sender = ensure_signed(origin)?; - ensure!(Self::is_member(sender.clone()), "Only members can apply to be on council"); - - let stage = Self::stage(); - ensure!(Self::stage().is_some(), "election not running"); - - let is_announcing = match stage.unwrap() { - ElectionStage::Announcing(_) => true, - _ => false - }; - ensure!(is_announcing, "election not in announcing stage"); - - // minimum stake on first attempt to apply - if !>::exists(&sender) { - ensure!(stake >= Self::min_council_stake(), "minimum stake must be provided"); - } - - Self::try_add_applicant(sender.clone(), stake)?; - - Self::deposit_event(RawEvent::Applied(sender)); - } - - fn vote(origin, commitment: T::Hash, stake: BalanceOf) { - let sender = ensure_signed(origin)?; - ensure!(Self::is_member(sender.clone()), "Only members can vote for an applicant"); - - let stage = Self::stage(); - ensure!(Self::stage().is_some(), "election not running"); - - let is_voting = match stage.unwrap() { - ElectionStage::Voting(_) => true, - _ => false - }; - ensure!(is_voting, "election not in voting stage"); - - ensure!(stake >= Self::min_voting_stake(), "voting stake too low"); - Self::try_add_vote(sender.clone(), stake, commitment)?; - Self::deposit_event(RawEvent::Voted(sender, commitment)); - } - - fn reveal(origin, commitment: T::Hash, vote: T::AccountId, salt: Vec) { - let sender = ensure_signed(origin)?; - - ensure!(salt.len() <= 32, "salt too large"); // at most 256 bits salt - - let stage = Self::stage(); - ensure!(Self::stage().is_some(), "election not running"); - - let is_revealing = match stage.unwrap() { - ElectionStage::Revealing(_) => true, - _ => false - }; - ensure!(is_revealing, "election not in revealing stage"); - - Self::try_reveal_vote(sender.clone(), commitment, vote.clone(), salt)?; - Self::deposit_event(RawEvent::Revealed(sender, commitment, vote)); - } - - fn set_stage_announcing(ends_at: T::BlockNumber) { - ensure!(ends_at > >::block_number(), "must end at future block number"); - >::put(ElectionStage::Announcing(ends_at)); - } - - fn set_stage_revealing(ends_at: T::BlockNumber) { - ensure!(ends_at > >::block_number(), "must end at future block number"); - >::put(ElectionStage::Revealing(ends_at)); - } - - fn set_stage_voting(ends_at: T::BlockNumber) { - ensure!(ends_at > >::block_number(), "must end at future block number"); - >::put(ElectionStage::Voting(ends_at)); - } - - fn set_param_announcing_period(period: T::BlockNumber) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!period.is_zero(), "period cannot be zero"); - >::put(period); - } - fn set_param_voting_period(period: T::BlockNumber) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!period.is_zero(), "period cannot be zero"); - >::put(period); - } - fn set_param_revealing_period(period: T::BlockNumber) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!period.is_zero(), "period cannot be zero"); - >::put(period); - } - fn set_param_min_council_stake(amount: BalanceOf) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - >::put(amount); - } - fn set_param_new_term_duration(duration: T::BlockNumber) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!duration.is_zero(), "new term duration cannot be zero"); - >::put(duration); - } - fn set_param_council_size(council_size: u32) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(council_size > 0, "council size cannot be zero"); - ensure!(council_size <= Self::candidacy_limit(), "council size cannot greater than candidacy limit"); - >::put(council_size); - } - fn set_param_candidacy_limit(limit: u32) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(limit >= Self::council_size(), "candidacy limit cannot be less than council size"); - >::put(limit); - } - fn set_param_min_voting_stake(amount: BalanceOf) { - ensure!(!Self::is_election_running(), "cannot change params during election"); - >::put(amount); - } - - fn force_stop_election() { - ensure!(Self::is_election_running(), "only running election can be stopped"); - - let mut votes = Vec::new(); - for commitment in Self::commitments() { - votes.push(Self::votes(commitment)); - } - - // no council gets elected - let empty_council = BTreeMap::new(); - - Self::teardown_election ( - &votes, - &empty_council, - false /* do not unlock transferable stakes */ - ); - } - - fn force_start_election() { - Self::start_election(>::active_council())?; - } - - fn set_auto_start (flag: bool) { - >::put(flag); - } - - } -} - -impl council::CouncilTermEnded for Module { - fn council_term_ended() { - if Self::auto_start() { - if Self::start_election(>::active_council()).is_ok() { - // emit ElectionStarted - } else { - // emit ElectionFailedStart - } - } - } -} - -#[cfg(test)] -mod tests { - use super::*; - use crate::governance::mock::*; - use parity_codec::Encode; - use runtime_io::with_externalities; - use srml_support::*; - - #[test] - fn election_starts_when_council_term_ends() { - with_externalities(&mut initial_test_ext(), || { - System::set_block_number(1); - - assert!(Council::is_term_ended()); - assert!(Election::stage().is_none()); - - ::council_term_ended(); - - assert!(Election::stage().is_some()); - }); - } - - #[test] - fn new_stake_reusing_transferable_works() { - { - let mut transferable = 0; - let additional = 100; - let new_stake = Election::new_stake_reusing_transferable(&mut transferable, additional); - assert_eq!(new_stake.new, 100); - assert_eq!(new_stake.transferred, 0); - } - - { - let mut transferable = 40; - let additional = 60; - let new_stake = Election::new_stake_reusing_transferable(&mut transferable, additional); - assert_eq!(new_stake.new, 20); - assert_eq!(new_stake.transferred, 40); - assert_eq!(transferable, 0); - } - - { - let mut transferable = 1000; - let additional = 100; - let new_stake = Election::new_stake_reusing_transferable(&mut transferable, additional); - assert_eq!(new_stake.new, 0); - assert_eq!(new_stake.transferred, 100); - assert_eq!(transferable, 900); - } - } - - #[test] - fn check_default_params() { - // TODO missing test implementation? - } - - #[test] - fn should_not_start_new_election_if_already_started() { - with_externalities(&mut initial_test_ext(), || { - assert_ok!(Election::start_election(vec![])); - assert_err!(Election::start_election(vec![]), "election already in progress"); - }); - } - - fn assert_announcing_period(expected_period: ::BlockNumber) { - assert!(Election::is_election_running(), "Election Stage was not set"); - - let election_stage = Election::stage().unwrap(); - - match election_stage { - election::ElectionStage::Announcing(period) => { - assert_eq!(period, expected_period, "Election period not set correctly") - } - _ => { - assert!(false, "Election Stage was not correctly set to Announcing") - } - } - } - - #[test] - fn start_election_should_work() { - with_externalities(&mut initial_test_ext(), || { - System::set_block_number(1); - >::put(20); - let prev_round = Election::round(); - - assert_ok!(Election::start_election(vec![])); - - // election round is bumped - assert_eq!(Election::round(), prev_round + 1); - - // we enter the announcing stage for a specified period - assert_announcing_period(1 + Election::announcing_period()); - }); - } - - #[test] - fn init_transferable_stake_should_work () { - with_externalities(&mut initial_test_ext(), || { - - let existing_council = vec![ - Seat { - member: 1, - stake: 100, - backers: vec![ - Backer { - member: 2, - stake: 50, - }, - Backer { - member: 3, - stake: 40, - }, - Backer { - member: 10, - stake: 10, - }] - }, - - Seat { - member: 2, - stake: 200, - backers: vec![ - Backer { - member: 1, - stake: 10, - }, - Backer { - member: 3, - stake: 60, - }, - Backer { - member: 20, - stake: 20, - }] - }, - - Seat { - member: 3, - stake: 300, - backers: vec![ - Backer { - member: 1, - stake: 20, - }, - Backer { - member: 2, - stake: 40, - }] - } - ]; - - Election::initialize_transferable_stakes(existing_council); - let mut existing_stake_holders = Election::existing_stake_holders(); - existing_stake_holders.sort(); - assert_eq!(existing_stake_holders, vec![1,2,3,10,20]); - - assert_eq!(Election::transferable_stakes(&1).seat, 100); - assert_eq!(Election::transferable_stakes(&1).backing, 30); - - assert_eq!(Election::transferable_stakes(&2).seat, 200); - assert_eq!(Election::transferable_stakes(&2).backing, 90); - - assert_eq!(Election::transferable_stakes(&3).seat, 300); - assert_eq!(Election::transferable_stakes(&3).backing, 100); - - assert_eq!(Election::transferable_stakes(&10).seat, 0); - assert_eq!(Election::transferable_stakes(&10).backing, 10); - - assert_eq!(Election::transferable_stakes(&20).seat, 0); - assert_eq!(Election::transferable_stakes(&20).backing, 20); - - }); - } - - #[test] - fn try_add_applicant_should_work() { - with_externalities(&mut initial_test_ext(), || { - - assert!(Election::applicants().len() == 0); - - let applicant = 20 as u64; - - let starting_balance = 1000 as u32; - Balances::set_free_balance(&applicant, starting_balance); - - let stake = 100 as u32; - - assert!(Election::try_add_applicant(applicant, stake).is_ok()); - assert_eq!(Election::applicants(), vec![applicant]); - - assert_eq!(Election::applicant_stakes(applicant).new, stake); - assert_eq!(Election::applicant_stakes(applicant).transferred, 0); - - assert_eq!(Balances::free_balance(&applicant), starting_balance - stake); - }); - } - - #[test] - fn increasing_applicant_stake_should_work () { - with_externalities(&mut initial_test_ext(), || { - let applicant = 20 as u64; - let starting_stake = 100 as u32; - - >::put(vec![applicant]); - >::insert(applicant, Stake { - new: starting_stake, - transferred: 0, - }); - - let additional_stake = 100 as u32; - Balances::set_free_balance(&applicant, additional_stake); - assert!(Election::try_add_applicant(applicant, additional_stake).is_ok()); - - assert_eq!(Election::applicant_stakes(applicant).new, starting_stake + additional_stake); - assert_eq!(Election::applicant_stakes(applicant).transferred, 0) - }); - } - - #[test] - fn using_transferable_seat_stake_should_work() { - with_externalities(&mut initial_test_ext(), || { - - let applicant = 20 as u64; - Balances::set_free_balance(&applicant, 5000); - - >::put(vec![applicant]); - save_transferable_stake(applicant, TransferableStake {seat: 1000, backing: 0}); - - >::put(vec![applicant]); - let starting_stake = Stake { - new: 100, - transferred: 0, - }; - >::insert(applicant, starting_stake); - - // transferable stake covers new stake - assert!(Election::try_add_applicant(applicant, 600).is_ok()); - assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new); - assert_eq!(Election::applicant_stakes(applicant).transferred, 600); - assert_eq!(Election::transferable_stakes(applicant).seat, 400); - assert_eq!(Balances::free_balance(applicant), 5000); - - // all remaining transferable stake is consumed and free balance covers remaining stake - assert!(Election::try_add_applicant(applicant, 1000).is_ok()); - assert_eq!(Election::applicant_stakes(applicant).new, starting_stake.new + 600); - assert_eq!(Election::applicant_stakes(applicant).transferred, 1000); - assert_eq!(Election::transferable_stakes(applicant).seat, 0); - assert_eq!(Balances::free_balance(applicant), 4400); - - }); - } - - #[test] - fn moving_to_voting_without_enough_applicants_should_not_work() { - with_externalities(&mut initial_test_ext(), || { - System::set_block_number(1); - >::put(20); - >::put(10); - Election::move_to_announcing_stage(); - let round = Election::round(); - - // add applicants - >::put(vec![10,20,30]); - let stake = Stake { - new: 10, - transferred: 0, - }; - - let applicants = Election::applicants(); - - for applicant in applicants.iter() { - >::insert(applicant, stake); - } - - // make sure we are testing the condition that we don't have enough applicants - assert!(Election::council_size_usize() > applicants.len()); - - // try to move to voting stage - let ann_ends = Election::stage_ends_at().unwrap(); - System::set_block_number(ann_ends); - Election::on_announcing_ended(); - - // A new round should have been started - assert_eq!(Election::round(), round + 1); - - // A new announcing period started - assert_announcing_period(ann_ends + Election::announcing_period()); - - // applicants list should be unchanged.. - assert_eq!(Election::applicants(), applicants); - }); - } - - #[test] - fn top_applicants_move_to_voting_stage() { - with_externalities(&mut initial_test_ext(), || { - >::put(vec![10, 20, 30, 40]); - let mut applicants = Election::applicants(); - - for (i, applicant) in applicants.iter().enumerate() { - >::insert(applicant, Stake { - new: (i * 10) as u32, - transferred: 0, - }); - } - - let rejected = Election::find_least_staked_applicants(&mut applicants, 3); - assert_eq!(rejected.to_vec(), vec![10]); - - >::put(vec![40, 30, 20, 10]); - let mut applicants = Election::applicants(); - - for applicant in applicants.iter() { - >::insert(applicant, Stake { - new: 20 as u32, - transferred: 0, - }); - } - - // stable sort is preserving order when two elements are equivalent - let rejected = Election::find_least_staked_applicants(&mut applicants, 3); - assert_eq!(rejected.to_vec(), vec![40]); - }); - } - - #[test] - fn refunding_applicant_stakes_should_work () { - with_externalities(&mut initial_test_ext(), || { - Balances::set_free_balance(&1, 1000); - Balances::set_free_balance(&2, 2000); Balances::set_reserved_balance(&2, 5000); - Balances::set_free_balance(&3, 3000); Balances::set_reserved_balance(&3, 5000); - - >::put(vec![1,2,3]); - - save_transferable_stake(1, TransferableStake {seat: 50, backing: 0}); - save_transferable_stake(2, TransferableStake {seat: 0, backing: 0}); - save_transferable_stake(3, TransferableStake {seat: 0, backing: 0}); - - >::insert(1, Stake { - new: 100, - transferred: 200, - }); - - >::insert(2, Stake { - new: 300, - transferred: 400, - }); - - >::insert(3, Stake { - new: 500, - transferred: 600, - }); - - Election::drop_applicants(&vec![2,3][..]); - - assert_eq!(Election::applicants(), vec![1]); - - assert_eq!(Election::applicant_stakes(1).new, 100); - assert_eq!(Election::applicant_stakes(1).transferred, 200); - assert_eq!(Election::transferable_stakes(1).seat, 50); - assert_eq!(Balances::free_balance(&1), 1000); - - //assert_eq!(Election::applicant_stakes(2), Default::default()); - assert!(!>::exists(2)); - assert_eq!(Election::transferable_stakes(2).seat, 400); - assert_eq!(Balances::free_balance(&2), 2300); - - //assert_eq!(Election::applicant_stakes(3), Default::default()); - assert!(!>::exists(3)); - assert_eq!(Election::transferable_stakes(3).seat, 600); - assert_eq!(Balances::free_balance(&3), 3500); - }); - } - - #[test] - fn voting_should_work () { - with_externalities(&mut initial_test_ext(), || { - Balances::set_free_balance(&20, 1000); - let payload = vec![10u8]; - let commitment = ::Hashing::hash(&payload[..]); - - assert!(Election::try_add_vote(20, 100, commitment).is_ok()); - - assert_eq!(Election::commitments(), vec![commitment]); - assert_eq!(Election::votes(commitment).voter, 20); - assert_eq!(Election::votes(commitment).commitment, commitment); - assert_eq!(Election::votes(commitment).stake, Stake { - new: 100, - transferred: 0, - }); - assert_eq!(Balances::free_balance(&20), 900); - }); - } - - fn save_transferable_stake(id: u64, stake: TransferableStake) { - >::insert(id, stake); - } - - #[test] - fn votes_can_be_covered_by_transferable_stake () { - with_externalities(&mut initial_test_ext(), || { - Balances::set_free_balance(&20, 1000); - - save_transferable_stake(20, TransferableStake {seat: 0, backing: 500}); - - let payload = vec![10u8]; - let commitment = ::Hashing::hash(&payload[..]); - - assert!(Election::try_add_vote(20, 100, commitment).is_ok()); - - assert_eq!(Election::commitments(), vec![commitment]); - assert_eq!(Election::votes(commitment).voter, 20); - assert_eq!(Election::votes(commitment).commitment, commitment); - assert_eq!(Election::votes(commitment).stake, Stake { - new: 0, - transferred: 100, - }); - assert_eq!(Balances::free_balance(&20), 1000); - }); - } - - #[test] - fn voting_without_enough_balance_should_not_work () { - with_externalities(&mut initial_test_ext(), || { - Balances::set_free_balance(&20, 100); - - save_transferable_stake(20, TransferableStake { seat: 0, backing: 500 }); - - let payload = vec![10u8]; - let commitment = ::Hashing::hash(&payload[..]); - - assert!(Election::try_add_vote(20, 1000, commitment).is_err()); - assert_eq!(Election::commitments(), vec![]); - assert!(!>::exists(commitment)); - assert_eq!(Balances::free_balance(&20), 100); - }); - } - - #[test] - fn voting_with_existing_commitment_should_not_work () { - with_externalities(&mut initial_test_ext(), || { - Balances::set_free_balance(&20, 1000); - - save_transferable_stake(20, TransferableStake { seat: 0, backing: 500}); - - let payload = vec![10u8]; - let commitment = ::Hashing::hash(&payload[..]); - - assert!(Election::try_add_vote(20, 100, commitment).is_ok()); - - assert_eq!(Election::commitments(), vec![commitment]); - assert_eq!(Election::votes(commitment).voter, 20); - assert_eq!(Election::votes(commitment).commitment, commitment); - assert_eq!(Election::votes(commitment).stake, Stake { - new: 0, - transferred: 100, - }); - assert_eq!(Balances::free_balance(&20), 1000); - - assert!(Election::try_add_vote(30, 100, commitment).is_err()); - }); - } - - fn make_commitment_for_applicant(applicant: ::AccountId, salt: &mut Vec) -> ::Hash { - let mut payload = applicant.encode(); - payload.append(salt); - ::Hashing::hash(&payload[..]) - } - - #[test] - fn revealing_vote_works () { - with_externalities(&mut initial_test_ext(), || { - let applicant = 20 as u64; - let salt = vec![128u8]; - let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); - let voter = 10 as u64; - - >::insert(&applicant, Stake {new: 0, transferred: 0}); - - >::insert(&commitment, SealedVote::new(voter, Stake { - new: 100, transferred: 0 - }, commitment)); - - assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(voter, commitment, applicant, salt).is_ok()); - assert_eq!(>::get(commitment).get_vote().unwrap(), applicant); - }); - } - - #[test] - fn revealing_with_bad_salt_should_not_work () { - with_externalities(&mut initial_test_ext(), || { - let applicant = 20 as u64; - let salt = vec![128u8]; - let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); - let voter = 10 as u64; - - >::insert(&applicant, Stake {new: 0, transferred: 0}); - - >::insert(&commitment, SealedVote::new(voter, Stake { - new: 100, transferred: 0 - }, commitment)); - - assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(voter, commitment, applicant, vec![]).is_err()); - assert!(>::get(commitment).is_not_revealed()); - }); - } - - #[test] - fn revealing_non_matching_commitment_should_not_work () { - with_externalities(&mut initial_test_ext(), || { - let applicant = 20 as u64; - let salt = vec![128u8]; - let commitment = make_commitment_for_applicant(100, &mut salt.clone()); - let voter = 10 as u64; - - >::insert(&applicant, Stake {new: 0, transferred: 0}); - - assert!(Election::try_reveal_vote(voter, commitment, applicant, vec![]).is_err()); - }); - } - - #[test] - fn revealing_for_non_applicant_should_not_work () { - with_externalities(&mut initial_test_ext(), || { - let applicant = 20 as u64; - let salt = vec![128u8]; - let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); - let voter = 10 as u64; - - >::insert(&commitment, SealedVote::new(voter, Stake { - new: 100, transferred: 0 - }, commitment)); - - assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(voter, commitment, applicant, vec![]).is_err()); - assert!(>::get(commitment).is_not_revealed()); - }); - } - - #[test] - fn revealing_by_non_committer_should_not_work () { - with_externalities(&mut initial_test_ext(), || { - let applicant = 20 as u64; - let salt = vec![128u8]; - let commitment = make_commitment_for_applicant(applicant, &mut salt.clone()); - let voter = 10 as u64; - let not_voter = 100 as u64; - - >::insert(&applicant, Stake {new: 0, transferred: 0}); - - >::insert(&commitment, SealedVote::new(voter, Stake { - new: 100, transferred: 0 - }, commitment)); - - assert!(>::get(commitment).is_not_revealed()); - assert!(Election::try_reveal_vote(not_voter, commitment, applicant, salt).is_err()); - assert!(>::get(commitment).is_not_revealed()); - }); - } - - pub fn mock_votes (mock: Vec<(u64, u32, u32, u64)>) -> Vec, primitives::H256, u64>> { - let commitment = make_commitment_for_applicant(1, &mut vec![0u8]); - - mock.into_iter().map(|(voter, stake_ref, stake_tran, applicant)| SealedVote::new_unsealed(voter as u64, Stake { - new: stake_ref as u32, transferred: stake_tran as u32 - }, commitment, applicant as u64)).collect() - } - - - #[test] - fn vote_tallying_should_work () { - with_externalities(&mut initial_test_ext(), || { - let votes = mock_votes(vec![ - // (voter, stake[new], stake[transferred], applicant) - (10, 100, 0, 100), - (10, 150, 0, 100), - - (10, 500, 0, 200), - (20, 200, 0, 200), - - (30, 300, 0, 300), - (30, 400, 0, 300), - ]); - - let tally = Election::tally_votes(&votes); - - assert_eq!(tally.len(), 3); - - assert_eq!(tally.get(&100).unwrap().member, 100); - assert_eq!(tally.get(&100).unwrap().backers, vec![ - Backer { - member: 10 as u64, - stake: 100 as u32, - }, - Backer { - member: 10 as u64, - stake: 150 as u32, - }, - ]); - - assert_eq!(tally.get(&200).unwrap().member, 200); - assert_eq!(tally.get(&200).unwrap().backers, vec![ - Backer { - member: 10 as u64, - stake: 500 as u32, - }, - Backer { - member: 20 as u64, - stake: 200 as u32, - } - ]); - - assert_eq!(tally.get(&300).unwrap().member, 300); - assert_eq!(tally.get(&300).unwrap().backers, vec![ - Backer { - member: 30 as u64, - stake: 300 as u32, - }, - Backer { - member: 30 as u64, - stake: 400 as u32, - } - ]); - }); - } - - #[test] - fn filter_top_staked_applicants_should_work () { - with_externalities(&mut initial_test_ext(), || { - // filter_top_staked depends on order of applicants - >::put(vec![100, 200, 300]); - - { - let votes = mock_votes(vec![ - // (voter, stake[new], stake[transferred], applicant) - (10, 100, 0, 100), - (10, 150, 0, 100), - - (10, 500, 0, 200), - (20, 200, 0, 200), - - (30, 300, 0, 300), - (30, 400, 0, 300), - ]); - - let mut tally = Election::tally_votes(&votes); - assert_eq!(tally.len(), 3); - Election::filter_top_staked(&mut tally, 3); - assert_eq!(tally.len(), 3); - } - - { - let votes = mock_votes(vec![ - // (voter, stake[new], stake[transferred], applicant) - (10, 100, 0, 100), - (10, 150, 0, 100), - - (10, 500, 0, 200), - (20, 200, 0, 200), - - (30, 300, 0, 300), - (30, 400, 0, 300), - ]); - - let mut tally = Election::tally_votes(&votes); - assert_eq!(tally.len(), 3); - Election::filter_top_staked(&mut tally, 2); - assert_eq!(tally.len(), 2); - assert!(tally.get(&200).is_some()); - assert!(tally.get(&300).is_some()); - } - }); - } - - #[test] - fn drop_unelected_applicants_should_work () { - with_externalities(&mut initial_test_ext(), || { - >::put(vec![100, 200, 300]); - - Balances::set_free_balance(&100, 1000); Balances::set_reserved_balance(&100, 1000); - - >::insert(100, Stake { - new: 20 as u32, - transferred: 50 as u32, - }); - - save_transferable_stake(100, TransferableStake {seat:100, backing: 0}); - - let mut new_council: BTreeMap> = BTreeMap::new(); - new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); - new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); - - Election::drop_unelected_applicants(&new_council); - - // applicant dropped - assert_eq!(Election::applicants(), vec![200, 300]); - assert!(!>::exists(100)); - - // and refunded - assert_eq!(Election::transferable_stakes(100).seat, 150); - assert_eq!(Balances::free_balance(&100), 1020); - assert_eq!(Balances::reserved_balance(&100), 980); - }); - } - - - #[test] - fn refunding_voting_stakes_should_work () { - with_externalities(&mut initial_test_ext(), || { - // voters' balances - Balances::set_free_balance(&10, 1000); Balances::set_reserved_balance(&10, 5000); - Balances::set_free_balance(&20, 2000); Balances::set_reserved_balance(&20, 5000); - Balances::set_free_balance(&30, 3000); Balances::set_reserved_balance(&30, 5000); - - save_transferable_stake(10, TransferableStake {seat: 0, backing: 100}); - save_transferable_stake(20, TransferableStake {seat: 0, backing: 200}); - save_transferable_stake(30, TransferableStake {seat: 0, backing: 300}); - - let votes = mock_votes(vec![ - // (voter, stake[new], stake[transferred], applicant) - (10, 100, 20, 100), - (20, 200, 40, 100), - (30, 300, 60, 100), - - (10, 500, 70, 200), - (20, 600, 80, 200), - (30, 700, 90, 200), - - (10, 800, 100, 300), - (20, 900, 120, 300), - (30, 1000, 140, 300), - ]); - - let mut new_council: BTreeMap> = BTreeMap::new(); - new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 0 as u32, backers: vec![]}); - new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 0 as u32, backers: vec![]}); - - Election::refund_voting_stakes(&votes, &new_council); - - assert_eq!(Balances::free_balance(&10), 1100); assert_eq!(Balances::reserved_balance(&10), 4900); - assert_eq!(Balances::free_balance(&20), 2200); assert_eq!(Balances::reserved_balance(&20), 4800); - assert_eq!(Balances::free_balance(&30), 3300); assert_eq!(Balances::reserved_balance(&30), 4700); - - assert_eq!(Election::transferable_stakes(10).backing, 120); - assert_eq!(Election::transferable_stakes(20).backing, 240); - assert_eq!(Election::transferable_stakes(30).backing, 360); - }); - } - - #[test] - fn unlock_transferable_stakes_should_work () { - with_externalities(&mut initial_test_ext(), || { - >::put(vec![10,20,30]); - - Balances::set_free_balance(&10, 1000); Balances::set_reserved_balance(&10, 5000); - save_transferable_stake(10, TransferableStake {seat: 50, backing: 100}); - - Balances::set_free_balance(&20, 2000); Balances::set_reserved_balance(&20, 5000); - save_transferable_stake(20, TransferableStake {seat: 60, backing: 200}); - - Balances::set_free_balance(&30, 3000); Balances::set_reserved_balance(&30, 5000); - save_transferable_stake(30, TransferableStake {seat: 70, backing: 300}); - - Election::unlock_transferable_stakes(); - - assert_eq!(Balances::free_balance(&10), 1150); - assert_eq!(Balances::free_balance(&20), 2260); - assert_eq!(Balances::free_balance(&30), 3370); - }); - } - - #[test] - fn council_elected_hook_should_work() { - with_externalities(&mut initial_test_ext(), || { - - let mut new_council: BTreeMap> = BTreeMap::new(); - new_council.insert(200 as u64, Seat{ member: 200 as u64, stake: 10 as u32, backers: vec![]}); - new_council.insert(300 as u64, Seat{ member: 300 as u64, stake: 20 as u32, backers: vec![]}); - - assert_eq!(Council::active_council().len(), 0); - - let new_council = new_council.into_iter().map(|(_, seat)| seat.clone()).collect(); - ::CouncilElected::council_elected(new_council, 10); - - assert_eq!(Council::active_council().len(), 2); - }); - } - - #[test] - fn simulation() { - with_externalities(&mut initial_test_ext(), || { - assert_eq!(Council::active_council().len(), 0); - assert!(Election::stage().is_none()); - - >::put(10); - >::put(50); - >::put(10); - >::put(10); - >::put(10); - >::put(20); - >::put(100); - >::put(10); - - for i in 1..30 { - Balances::set_free_balance(&(i as u64), 50000); - } - - System::set_block_number(1); - assert_ok!(Election::start_election(vec![])); - - for i in 1..20 { - if i < 21 { - assert!(Election::apply(Origin::signed(i), 150).is_ok()); - } else { - assert!(Election::apply(Origin::signed(i + 1000), 150).is_err()); // not enough free balance - assert!(Election::apply(Origin::signed(i), 20).is_err()); // not enough minimum stake - } - } - - let n = 1 + Election::announcing_period(); - System::set_block_number(n); - Election::on_finalise(n); - - for i in 1..20 { - assert!(Election::vote(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![40u8]), 100).is_ok()); - - assert!(Election::vote(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![41u8]), 100).is_ok()); - - assert!(Election::vote(Origin::signed(i), make_commitment_for_applicant(i + 1000, &mut vec![42u8]), 100).is_ok()); - } - - let n = n + Election::voting_period(); - System::set_block_number(n); - Election::on_finalise(n); - - for i in 1..20 { - assert!(Election::reveal(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![40u8]), i, vec![40u8]).is_ok()); - //wrong salt - assert!(Election::reveal(Origin::signed(i), make_commitment_for_applicant(i, &mut vec![41u8]), i, vec![]).is_err()); - //vote not for valid applicant - assert!(Election::reveal(Origin::signed(i), make_commitment_for_applicant(i + 1000, &mut vec![42u8]), i + 1000, vec![42u8]).is_err()); - } - - let n = n + Election::revealing_period(); - System::set_block_number(n); - Election::on_finalise(n); - - assert_eq!(Council::active_council().len(), Election::council_size_usize()); - for (i, seat) in Council::active_council().iter().enumerate() { - assert_eq!(seat.member, (i + 1) as u64); - } - assert!(Election::stage().is_none()); - - // When council term ends.. start a new election. - assert_ok!(Election::start_election(vec![])); - }); - } -} \ No newline at end of file diff --git a/runtime/src/governance/mock.rs b/runtime/src/governance/mock.rs deleted file mode 100644 index 5cb193eddc..0000000000 --- a/runtime/src/governance/mock.rs +++ /dev/null @@ -1,97 +0,0 @@ -#![cfg(test)] - -use rstd::prelude::*; -pub use super::{election, council, proposals, GovernanceCurrency}; -pub use system; - -pub use primitives::{H256, Blake2Hasher}; -pub use runtime_primitives::{ - BuildStorage, - traits::{BlakeTwo256, OnFinalise, IdentityLookup}, - testing::{Digest, DigestItem, Header, UintAuthorityId} -}; - -use srml_support::impl_outer_origin; - -impl_outer_origin! { - pub enum Origin for Test {} -} - -// For testing the module, we construct most of a mock runtime. This means -// first constructing a configuration type (`Test`) which `impl`s each of the -// configuration traits of modules we want to use. -#[derive(Clone, Eq, PartialEq)] -pub struct Test; -impl system::Trait for Test { - type Origin = Origin; - type Index = u64; - type BlockNumber = u64; - type Hash = H256; - type Hashing = BlakeTwo256; - type Digest = Digest; - type AccountId = u64; - type Header = Header; - type Event = (); - type Log = DigestItem; - type Lookup = IdentityLookup; -} -impl timestamp::Trait for Test { - type Moment = u64; - type OnTimestampSet = (); -} -impl consensus::Trait for Test { - type SessionKey = UintAuthorityId; - type InherentOfflineReport = (); - type Log = DigestItem; -} -impl council::Trait for Test { - type Event = (); - - type CouncilTermEnded = (Election,); -} -impl election::Trait for Test { - type Event = (); - - type CouncilElected = (Council,); -} -impl proposals::Trait for Test { - type Event = (); -} -impl balances::Trait for Test { - type Event = (); - - /// The balance of an account. - type Balance = u32; - - /// A function which is invoked when the free-balance has fallen below the existential deposit and - /// has been reduced to zero. - /// - /// Gives a chance to clean up resources associated with the given account. - type OnFreeBalanceZero = (); - - /// Handler for when a new account is created. - type OnNewAccount = (); - - /// A function that returns true iff a given account can transfer its funds to another account. - type EnsureAccountLiquid = (); -} - -impl GovernanceCurrency for Test { - type Currency = balances::Module; -} - -// TODO add a Hook type to capture TriggerElection and CouncilElected hooks - -// This function basically just builds a genesis storage key/value store according to -// our desired mockup. -pub fn initial_test_ext() -> runtime_io::TestExternalities { - let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; - - runtime_io::TestExternalities::new(t) -} - -pub type Election = election::Module; -pub type Council = council::Module; -pub type Proposals = proposals::Module; -pub type System = system::Module; -pub type Balances = balances::Module; diff --git a/runtime/src/governance/mod.rs b/runtime/src/governance/mod.rs deleted file mode 100644 index 544fa97a15..0000000000 --- a/runtime/src/governance/mod.rs +++ /dev/null @@ -1,19 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] - -use srml_support::traits::{Currency, ArithmeticType}; -use system; - -pub mod election; -pub mod council; -pub mod proposals; - -mod stake; -mod sealed_vote; - -pub trait GovernanceCurrency: system::Trait + Sized { - type Currency: ArithmeticType + Currency<::AccountId, Balance=BalanceOf>; -} - -pub type BalanceOf = <::Currency as ArithmeticType>::Type; - -mod mock; \ No newline at end of file diff --git a/runtime/src/governance/proposals.rs b/runtime/src/governance/proposals.rs deleted file mode 100644 index 2a08fe19c9..0000000000 --- a/runtime/src/governance/proposals.rs +++ /dev/null @@ -1,1390 +0,0 @@ -use srml_support::{StorageValue, StorageMap, dispatch::Result, decl_module, decl_event, decl_storage, ensure}; -use srml_support::traits::{Currency}; -use primitives::{storage::well_known_keys}; -use runtime_primitives::traits::{As, Hash, Zero}; -use runtime_io::print; -use {balances, system::{self, ensure_signed}}; -use rstd::prelude::*; - -use super::council; -pub use super::{ GovernanceCurrency, BalanceOf }; - -const DEFAULT_APPROVAL_QUORUM: u32 = 60; -const DEFAULT_MIN_STAKE: u64 = 100; -const DEFAULT_CANCELLATION_FEE: u64 = 5; -const DEFAULT_REJECTION_FEE: u64 = 10; - -const DEFAULT_VOTING_PERIOD_IN_DAYS: u64 = 10; -const DEFAULT_VOTING_PERIOD_IN_SECS: u64 = DEFAULT_VOTING_PERIOD_IN_DAYS * 24 * 60 * 60; - -const DEFAULT_NAME_MAX_LEN: u32 = 100; -const DEFAULT_DESCRIPTION_MAX_LEN: u32 = 10_000; -const DEFAULT_WASM_CODE_MAX_LEN: u32 = 2_000_000; - -const MSG_STAKE_IS_TOO_LOW: &str = "Stake is too low"; -const MSG_STAKE_IS_GREATER_THAN_BALANCE: &str = "Balance is too low to be staked"; -const MSG_ONLY_MEMBERS_CAN_PROPOSE: &str = "Only members can make a proposal"; -const MSG_ONLY_COUNCILORS_CAN_VOTE: &str = "Only councilors can vote on proposals"; -const MSG_PROPOSAL_NOT_FOUND: &str = "This proposal does not exist"; -const MSG_PROPOSAL_EXPIRED: &str = "Voting period is expired for this proposal"; -const MSG_PROPOSAL_FINALIZED: &str = "Proposal is finalized already"; -const MSG_YOU_ALREADY_VOTED: &str = "You have already voted on this proposal"; -const MSG_YOU_DONT_OWN_THIS_PROPOSAL: &str = "You do not own this proposal"; -const MSG_PROPOSAL_STATUS_ALREADY_UPDATED: &str = "Proposal status has been updated already"; -const MSG_EMPTY_NAME_PROVIDED: &str = "Proposal cannot have an empty name"; -const MSG_EMPTY_DESCRIPTION_PROVIDED: &str = "Proposal cannot have an empty description"; -const MSG_EMPTY_WASM_CODE_PROVIDED: &str = "Proposal cannot have an empty WASM code"; -const MSG_TOO_LONG_NAME: &str = "Name is too long"; -const MSG_TOO_LONG_DESCRIPTION: &str = "Description is too long"; -const MSG_TOO_LONG_WASM_CODE: &str = "WASM code is too big"; - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Clone, PartialEq, Eq)] -pub enum ProposalStatus { - /// A new proposal that is available for voting. - Active, - /// If cancelled by a proposer. - Cancelled, - /// Not enough votes and voting period expired. - Expired, - /// To clear the quorum requirement, the percentage of council members with revealed votes - /// must be no less than the quorum value for the given proposal type. - Approved, - Rejected, - /// If all revealed votes are slashes, then the proposal is rejected, - /// and the proposal stake is slashed. - Slashed, -} - -impl Default for ProposalStatus { - fn default() -> Self { - ProposalStatus::Active - } -} - -use self::ProposalStatus::*; - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Clone, PartialEq, Eq)] -pub enum VoteKind { - /// Signals presence, but unwillingness to cast judgment on substance of vote. - Abstain, - /// Pass, an alternative or a ranking, for binary, multiple choice - /// and ranked choice propositions, respectively. - Approve, - /// Against proposal. - Reject, - /// Against the proposal, and slash proposal stake. - Slash, -} - -impl Default for VoteKind { - fn default() -> Self { - VoteKind::Abstain - } -} - -use self::VoteKind::*; - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -/// Proposal for node runtime update. -pub struct RuntimeUpgradeProposal { - id: u32, - proposer: AccountId, - stake: Balance, - name: Vec, - description: Vec, - wasm_hash: Hash, - proposed_at: BlockNumber, - status: ProposalStatus, -} - -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Encode, Decode, Default, Clone, PartialEq, Eq)] -pub struct TallyResult { - proposal_id: u32, - abstentions: u32, - approvals: u32, - rejections: u32, - slashes: u32, - status: ProposalStatus, - finalized_at: BlockNumber, -} - -pub trait Trait: timestamp::Trait + council::Trait + GovernanceCurrency { - /// The overarching event type. - type Event: From> + Into<::Event>; -} - -decl_event!( - pub enum Event - where - ::Hash, - ::BlockNumber, - ::AccountId - { - // New events - - /// Params: - /// * Account id of a member who proposed. - /// * Id of a newly created proposal after it was saved in storage. - ProposalCreated(AccountId, u32), - ProposalCanceled(AccountId, u32), - ProposalStatusUpdated(u32, ProposalStatus), - - /// Params: - /// * Voter - an account id of a councilor. - /// * Id of a proposal. - /// * Kind of vote. - Voted(AccountId, u32, VoteKind), - - TallyFinalized(TallyResult), - - /// * Hash - hash of wasm code of runtime update. - RuntimeUpdated(u32, Hash), - - /// Root cancelled proposal - ProposalVetoed(u32), - } -); - -decl_storage! { - trait Store for Module as Proposals { - - // Parameters (defaut values could be exported to config): - - // TODO rename 'approval_quorum' -> 'quorum_percent' ?! - /// A percent (up to 100) of the council participants - /// that must vote affirmatively in order to pass. - ApprovalQuorum get(approval_quorum) config(): u32 = DEFAULT_APPROVAL_QUORUM; - - /// Minimum amount of a balance to be staked in order to make a proposal. - MinStake get(min_stake) config(): BalanceOf = - BalanceOf::::sa(DEFAULT_MIN_STAKE); - - /// A fee to be slashed (burn) in case a proposer decides to cancel a proposal. - CancellationFee get(cancellation_fee) config(): BalanceOf = - BalanceOf::::sa(DEFAULT_CANCELLATION_FEE); - - /// A fee to be slashed (burn) in case a proposal was rejected. - RejectionFee get(rejection_fee) config(): BalanceOf = - BalanceOf::::sa(DEFAULT_REJECTION_FEE); - - /// Max duration of proposal in blocks until it will be expired if not enough votes. - VotingPeriod get(voting_period) config(): T::BlockNumber = - T::BlockNumber::sa(DEFAULT_VOTING_PERIOD_IN_SECS / - >::block_period().as_()); - - NameMaxLen get(name_max_len) config(): u32 = DEFAULT_NAME_MAX_LEN; - DescriptionMaxLen get(description_max_len) config(): u32 = DEFAULT_DESCRIPTION_MAX_LEN; - WasmCodeMaxLen get(wasm_code_max_len) config(): u32 = DEFAULT_WASM_CODE_MAX_LEN; - - // Persistent state (always relevant, changes constantly): - - /// Count of all proposals that have been created. - ProposalCount get(proposal_count): u32; - - /// Get proposal details by its id. - Proposals get(proposals): map u32 => RuntimeUpgradeProposal, T::BlockNumber, T::Hash>; - - /// Ids of proposals that are open for voting (have not been finalized yet). - ActiveProposalIds get(active_proposal_ids): Vec = vec![]; - - /// Get WASM code of runtime upgrade by hash of its content. - WasmCodeByHash get(wasm_code_by_hash): map T::Hash => Vec; - - VotesByProposal get(votes_by_proposal): map u32 => Vec<(T::AccountId, VoteKind)>; - - // TODO Rethink: this can be replaced with: votes_by_proposal.find(|vote| vote.0 == proposer) - VoteByAccountAndProposal get(vote_by_account_and_proposal): map (T::AccountId, u32) => VoteKind; - - TallyResults get(tally_results): map u32 => TallyResult; - } -} - -decl_module! { - pub struct Module for enum Call where origin: T::Origin { - - fn deposit_event() = default; - - /// Use next code to create a proposal from Substrate UI's web console: - /// ```js - /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.createProposal(2500, "0x123", "0x456", "0x789") }).tie(console.log) - /// ``` - fn create_proposal( - origin, - stake: BalanceOf, - name: Vec, - description: Vec, - wasm_code: Vec - ) { - - let proposer = ensure_signed(origin)?; - ensure!(Self::is_member(proposer.clone()), MSG_ONLY_MEMBERS_CAN_PROPOSE); - ensure!(stake >= Self::min_stake(), MSG_STAKE_IS_TOO_LOW); - - ensure!(!name.is_empty(), MSG_EMPTY_NAME_PROVIDED); - ensure!(name.len() as u32 <= Self::name_max_len(), MSG_TOO_LONG_NAME); - - ensure!(!description.is_empty(), MSG_EMPTY_DESCRIPTION_PROVIDED); - ensure!(description.len() as u32 <= Self::description_max_len(), MSG_TOO_LONG_DESCRIPTION); - - ensure!(!wasm_code.is_empty(), MSG_EMPTY_WASM_CODE_PROVIDED); - ensure!(wasm_code.len() as u32 <= Self::wasm_code_max_len(), MSG_TOO_LONG_WASM_CODE); - - // Lock proposer's stake: - T::Currency::reserve(&proposer, stake) - .map_err(|_| MSG_STAKE_IS_GREATER_THAN_BALANCE)?; - - let proposal_id = Self::proposal_count() + 1; - >::put(proposal_id); - - // See in substrate repo @ srml/contract/src/wasm/code_cache.rs:73 - let wasm_hash = T::Hashing::hash(&wasm_code); - - let new_proposal = RuntimeUpgradeProposal { - id: proposal_id, - proposer: proposer.clone(), - stake, - name, - description, - wasm_hash, - proposed_at: Self::current_block(), - status: Active - }; - - if !>::exists(wasm_hash) { - >::insert(wasm_hash, wasm_code); - } - >::insert(proposal_id, new_proposal); - >::mutate(|ids| ids.push(proposal_id)); - Self::deposit_event(RawEvent::ProposalCreated(proposer.clone(), proposal_id)); - - // Auto-vote with Approve if proposer is a councilor: - if Self::is_councilor(&proposer) { - Self::_process_vote(proposer, proposal_id, Approve)?; - } - } - - /// Use next code to create a proposal from Substrate UI's web console: - /// ```js - /// post({ sender: runtime.indices.ss58Decode('F7Gh'), call: calls.proposals.voteOnProposal(1, { option: "Approve", _type: "VoteKind" }) }).tie(console.log) - /// ``` - fn vote_on_proposal(origin, proposal_id: u32, vote: VoteKind) { - let voter = ensure_signed(origin)?; - ensure!(Self::is_councilor(&voter), MSG_ONLY_COUNCILORS_CAN_VOTE); - - ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); - let proposal = Self::proposals(proposal_id); - - ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); - - let not_expired = !Self::is_voting_period_expired(proposal.proposed_at); - ensure!(not_expired, MSG_PROPOSAL_EXPIRED); - - let did_not_vote_before = !>::exists((voter.clone(), proposal_id)); - ensure!(did_not_vote_before, MSG_YOU_ALREADY_VOTED); - - Self::_process_vote(voter, proposal_id, vote)?; - } - - // TODO add 'reason' why a proposer wants to cancel (UX + feedback)? - /// Cancel a proposal by its original proposer. Some fee will be withdrawn from his balance. - fn cancel_proposal(origin, proposal_id: u32) { - let proposer = ensure_signed(origin)?; - - ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); - let proposal = Self::proposals(proposal_id); - - ensure!(proposer == proposal.proposer, MSG_YOU_DONT_OWN_THIS_PROPOSAL); - ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); - - // Spend some minimum fee on proposer's balance for canceling a proposal - let fee = Self::cancellation_fee(); - let _ = T::Currency::slash_reserved(&proposer, fee); - - // Return unspent part of remaining staked deposit (after taking some fee) - let left_stake = proposal.stake - fee; - let _ = T::Currency::unreserve(&proposer, left_stake); - - Self::_update_proposal_status(proposal_id, Cancelled)?; - Self::deposit_event(RawEvent::ProposalCanceled(proposer, proposal_id)); - } - - // Called on every block - fn on_finalise(n: T::BlockNumber) { - if let Err(e) = Self::end_block(n) { - print(e); - } - } - - /// Cancel a proposal and return stake without slashing - fn veto_proposal(proposal_id: u32) { - ensure!(>::exists(proposal_id), MSG_PROPOSAL_NOT_FOUND); - let proposal = Self::proposals(proposal_id); - ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); - - let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); - - Self::_update_proposal_status(proposal_id, Cancelled)?; - - Self::deposit_event(RawEvent::ProposalVetoed(proposal_id)); - } - - fn set_approval_quorum(new_value: u32) { - ensure!(new_value > 0, "approval quorom must be greater than zero"); - >::put(new_value); - } - } -} - -impl Module { - - fn current_block() -> T::BlockNumber { - >::block_number() - } - - // TODO This method should be moved to Membership module once it's created. - fn is_member(sender: T::AccountId) -> bool { - !T::Currency::free_balance(&sender).is_zero() - } - - fn is_councilor(sender: &T::AccountId) -> bool { - >::is_councilor(sender) - } - - fn councilors_count() -> u32 { - >::active_council().len() as u32 - } - - fn approval_quorum_seats() -> u32 { - (Self::approval_quorum() * Self::councilors_count()) / 100 - } - - fn is_voting_period_expired(proposed_at: T::BlockNumber) -> bool { - Self::current_block() >= proposed_at + Self::voting_period() - } - - fn _process_vote(voter: T::AccountId, proposal_id: u32, vote: VoteKind) -> Result { - let new_vote = (voter.clone(), vote.clone()); - if >::exists(proposal_id) { - // Append a new vote to other votes on this proposal: - >::mutate(proposal_id, |votes| votes.push(new_vote)); - } else { - // This is the first vote on this proposal: - >::insert(proposal_id, vec![new_vote]); - } - >::insert((voter.clone(), proposal_id), &vote); - Self::deposit_event(RawEvent::Voted(voter, proposal_id, vote)); - Ok(()) - } - - fn end_block(now: T::BlockNumber) -> Result { - - // TODO refactor this method - - // TODO iterate over not expired proposals and tally - - Self::tally()?; - // TODO approve or reject a proposal - - Ok(()) - } - - /// Get the voters for the current proposal. - pub fn tally(/* proposal_id: u32 */) -> Result { - - let councilors: u32 = Self::councilors_count(); - let quorum: u32 = Self::approval_quorum_seats(); - - for &proposal_id in Self::active_proposal_ids().iter() { - let votes = Self::votes_by_proposal(proposal_id); - let mut abstentions: u32 = 0; - let mut approvals: u32 = 0; - let mut rejections: u32 = 0; - let mut slashes: u32 = 0; - - for (_, vote) in votes.iter() { - match vote { - Abstain => abstentions += 1, - Approve => approvals += 1, - Reject => rejections += 1, - Slash => slashes += 1, - } - } - - let proposal = Self::proposals(proposal_id); - let is_expired = Self::is_voting_period_expired(proposal.proposed_at); - - // We need to check that the council is not empty because otherwise, - // if there is no votes on a proposal it will be counted as if - // all 100% (zero) councilors voted on the proposal and should be approved. - - let non_empty_council = councilors > 0; - let all_councilors_voted = non_empty_council && votes.len() as u32 == councilors; - let all_councilors_slashed = non_empty_council && slashes == councilors; - let quorum_reached = quorum > 0 && approvals >= quorum; - - // Don't approve a proposal right after quorum reached - // if not all councilors casted their votes. - // Instead let other councilors cast their vote - // up until the proposal's expired. - - let new_status: Option = - if all_councilors_slashed { - Some(Slashed) - } else if all_councilors_voted { - if quorum_reached { - Some(Approved) - } else { - Some(Rejected) - } - } else if is_expired { - if quorum_reached { - Some(Approved) - } else { - // Proposal has been expired and quorum not reached. - Some(Expired) - } - } else { - // Councilors still have time to vote on this proposal. - None - }; - - // TODO move next block outside of tally to 'end_block' - if let Some(status) = new_status { - Self::_update_proposal_status(proposal_id, status.clone())?; - let tally_result = TallyResult { - proposal_id, - abstentions, - approvals, - rejections, - slashes, - status, - finalized_at: Self::current_block(), - }; - >::insert(proposal_id, &tally_result); - Self::deposit_event(RawEvent::TallyFinalized(tally_result)); - } - } - - Ok(()) - } - - /// Updates proposal status and removes proposal from active ids. - fn _update_proposal_status(proposal_id: u32, new_status: ProposalStatus) -> Result { - let all_active_ids = Self::active_proposal_ids(); - let all_len = all_active_ids.len(); - let other_active_ids: Vec = all_active_ids - .into_iter() - .filter(|&id| id != proposal_id) - .collect(); - - let not_found_in_active = other_active_ids.len() == all_len; - if not_found_in_active { - // Seems like this proposal's status has been updated and removed from active. - Err(MSG_PROPOSAL_STATUS_ALREADY_UPDATED) - } else { - let pid = proposal_id.clone(); - match new_status { - Slashed => Self::_slash_proposal(pid)?, - Rejected | Expired => Self::_reject_proposal(pid)?, - Approved => Self::_approve_proposal(pid)?, - Active | Cancelled => { /* nothing */ }, - } - >::put(other_active_ids); - >::mutate(proposal_id, |p| p.status = new_status.clone()); - Self::deposit_event(RawEvent::ProposalStatusUpdated(proposal_id, new_status)); - Ok(()) - } - } - - /// Slash a proposal. The staked deposit will be slashed. - fn _slash_proposal(proposal_id: u32) -> Result { - let proposal = Self::proposals(proposal_id); - - // Slash proposer's stake: - let _ = T::Currency::slash_reserved(&proposal.proposer, proposal.stake); - - Ok(()) - } - - /// Reject a proposal. The staked deposit will be returned to a proposer. - fn _reject_proposal(proposal_id: u32) -> Result { - let proposal = Self::proposals(proposal_id); - let proposer = proposal.proposer; - - // Spend some minimum fee on proposer's balance to prevent spamming attacks: - let fee = Self::rejection_fee(); - let _ = T::Currency::slash_reserved(&proposer, fee); - - // Return unspent part of remaining staked deposit (after taking some fee): - let left_stake = proposal.stake - fee; - let _ = T::Currency::unreserve(&proposer, left_stake); - - Ok(()) - } - - /// Approve a proposal. The staked deposit will be returned. - fn _approve_proposal(proposal_id: u32) -> Result { - let proposal = Self::proposals(proposal_id); - let wasm_code = Self::wasm_code_by_hash(proposal.wasm_hash); - - // Return staked deposit to proposer: - let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); - - // Update wasm code of node's runtime: - >::set_code(wasm_code)?; - - Self::deposit_event(RawEvent::RuntimeUpdated(proposal_id, proposal.wasm_hash)); - - Ok(()) - } -} - -#[cfg(test)] -mod tests { - - use super::*; - use runtime_io::with_externalities; - use primitives::{H256, Blake2Hasher}; - // The testing primitives are very useful for avoiding having to work with signatures - // or public keys. `u64` is used as the `AccountId` and no `Signature`s are requried. - use runtime_primitives::{ - BuildStorage, - traits::{BlakeTwo256, OnFinalise, IdentityLookup}, - testing::{Digest, DigestItem, Header, UintAuthorityId} - }; - use system::{EventRecord, Phase}; - use srml_support::*; - - impl_outer_origin! { - pub enum Origin for Test {} - } - - // For testing the module, we construct most of a mock runtime. This means - // first constructing a configuration type (`Test`) which `impl`s each of the - // configuration traits of modules we want to use. - #[derive(Clone, Eq, PartialEq)] - pub struct Test; - - impl consensus::Trait for Test { - type SessionKey = UintAuthorityId; - type InherentOfflineReport = (); - type Log = DigestItem; - } - - impl system::Trait for Test { - type Origin = Origin; - type Index = u64; - type BlockNumber = u64; - type Hash = H256; - type Hashing = BlakeTwo256; - type Digest = Digest; - type AccountId = u64; - type Lookup = IdentityLookup; - type Header = Header; - type Event = (); - type Log = DigestItem; - } - - impl balances::Trait for Test { - type Balance = u64; - type OnFreeBalanceZero = (); - type OnNewAccount = (); - type EnsureAccountLiquid = (); - type Event = (); - } - - impl timestamp::Trait for Test { - type Moment = u64; - type OnTimestampSet = (); - } - - impl council::Trait for Test { - type Event = (); - type CouncilTermEnded = (); - } - - impl GovernanceCurrency for Test { - type Currency = balances::Module; - } - - impl Trait for Test { - type Event = (); - } - - type System = system::Module; - type Balances = balances::Module; - type Proposals = Module; - - const COUNCILOR1: u64 = 1; - const COUNCILOR2: u64 = 2; - const COUNCILOR3: u64 = 3; - const COUNCILOR4: u64 = 4; - const COUNCILOR5: u64 = 5; - - const PROPOSER1: u64 = 11; - const PROPOSER2: u64 = 12; - - const NOT_COUNCILOR: u64 = 22; - - const ALL_COUNCILORS: [u64; 5] = [ - COUNCILOR1, - COUNCILOR2, - COUNCILOR3, - COUNCILOR4, - COUNCILOR5 - ]; - - // TODO Figure out how to test Events in test... (low priority) - // mod proposals { - // pub use ::Event; - // } - // impl_outer_event!{ - // pub enum TestEvent for Test { - // balances,system,proposals, - // } - // } - - // This function basically just builds a genesis storage key/value store according to - // our desired mockup. - fn new_test_ext() -> runtime_io::TestExternalities { - let mut t = system::GenesisConfig::::default().build_storage().unwrap().0; - // We use default for brevity, but you can configure as desired if needed. - t.extend(balances::GenesisConfig::::default().build_storage().unwrap().0); - - let council_mock: council::Seats = - ALL_COUNCILORS.iter().map(|&c| council::Seat { - member: c, - stake: 0u64, - backers: vec![], - }).collect(); - - t.extend(council::GenesisConfig::{ - active_council: council_mock, - term_ends_at: 0, - }.build_storage().unwrap().0); - - // t.extend(GenesisConfig::{ - // // Here we can override defaults. - // }.build_storage().unwrap().0); - - t.into() - } - - /// A shortcut to get minimum stake in tests. - fn min_stake() -> u64 { - Proposals::min_stake() - } - - /// A shortcut to get cancellation fee in tests. - fn cancellation_fee() -> u64 { - Proposals::cancellation_fee() - } - - /// A shortcut to get rejection fee in tests. - fn rejection_fee() -> u64 { - Proposals::rejection_fee() - } - - /// Initial balance of Proposer 1. - fn initial_balance() -> u64 { - (min_stake() as f64 * 2.5) as u64 - } - - fn name() -> Vec { - b"Proposal Name".to_vec() - } - - fn description() -> Vec { - b"Proposal Description".to_vec() - } - - fn wasm_code() -> Vec { - b"Proposal Wasm Code".to_vec() - } - - fn _create_default_proposal() -> Result { - _create_proposal(None, None, None, None, None) - } - - fn _create_proposal( - origin: Option, - stake: Option, - name: Option>, - description: Option>, - wasm_code: Option> - ) -> Result { - Proposals::create_proposal( - Origin::signed(origin.unwrap_or(PROPOSER1)), - stake.unwrap_or(min_stake()), - name.unwrap_or(self::name()), - description.unwrap_or(self::description()), - wasm_code.unwrap_or(self::wasm_code()) - ) - } - - fn get_runtime_code() -> Option> { - storage::unhashed::get_raw(well_known_keys::CODE) - } - - macro_rules! assert_runtime_code_empty { - () => { assert_eq!(get_runtime_code(), None) } - } - - macro_rules! assert_runtime_code { - ($code:expr) => { assert_eq!(get_runtime_code(), Some($code)) } - } - - #[test] - fn check_default_values() { - with_externalities(&mut new_test_ext(), || { - assert_eq!(Proposals::approval_quorum(), DEFAULT_APPROVAL_QUORUM); - assert_eq!(Proposals::min_stake(), DEFAULT_MIN_STAKE); - assert_eq!(Proposals::cancellation_fee(), DEFAULT_CANCELLATION_FEE); - assert_eq!(Proposals::rejection_fee(), DEFAULT_REJECTION_FEE); - assert_eq!(Proposals::name_max_len(), DEFAULT_NAME_MAX_LEN); - assert_eq!(Proposals::description_max_len(), DEFAULT_DESCRIPTION_MAX_LEN); - assert_eq!(Proposals::wasm_code_max_len(), DEFAULT_WASM_CODE_MAX_LEN); - assert_eq!(Proposals::proposal_count(), 0); - assert!(Proposals::active_proposal_ids().is_empty()); - }); - } - - #[test] - fn member_create_proposal() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - assert_eq!(Proposals::active_proposal_ids().len(), 1); - assert_eq!(Proposals::active_proposal_ids()[0], 1); - - let wasm_hash = BlakeTwo256::hash(&wasm_code()); - let expected_proposal = RuntimeUpgradeProposal { - id: 1, - proposer: PROPOSER1, - stake: min_stake(), - name: name(), - description: description(), - wasm_hash, - proposed_at: 1, - status: Active - }; - assert_eq!(Proposals::proposals(1), expected_proposal); - - // Check that stake amount has been locked on proposer's balance: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - min_stake()); - assert_eq!(Balances::reserved_balance(PROPOSER1), min_stake()); - - // TODO expect event ProposalCreated(AccountId, u32) - }); - } - - #[test] - fn not_member_cannot_create_proposal() { - with_externalities(&mut new_test_ext(), || { - // In this test a proposer has an empty balance - // thus he is not considered as a member. - assert_eq!(_create_default_proposal(), - Err(MSG_ONLY_MEMBERS_CAN_PROPOSE)); - }); - } - - #[test] - fn cannot_create_proposal_with_small_stake() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_eq!(_create_proposal( - None, Some(min_stake() - 1), None, None, None), - Err(MSG_STAKE_IS_TOO_LOW)); - - // Check that balances remain unchanged afer a failed attempt to create a proposal: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - }); - } - - #[test] - fn cannot_create_proposal_when_stake_is_greater_than_balance() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_eq!(_create_proposal( - None, Some(initial_balance() + 1), None, None, None), - Err(MSG_STAKE_IS_GREATER_THAN_BALANCE)); - - // Check that balances remain unchanged afer a failed attempt to create a proposal: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - }); - } - - #[test] - fn cannot_create_proposal_with_empty_values() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - // Empty name: - assert_eq!(_create_proposal( - None, None, Some(vec![]), None, None), - Err(MSG_EMPTY_NAME_PROVIDED)); - - // Empty description: - assert_eq!(_create_proposal( - None, None, None, Some(vec![]), None), - Err(MSG_EMPTY_DESCRIPTION_PROVIDED)); - - // Empty WASM code: - assert_eq!(_create_proposal( - None, None, None, None, Some(vec![])), - Err(MSG_EMPTY_WASM_CODE_PROVIDED)); - }); - } - - #[test] - fn cannot_create_proposal_with_too_long_values() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - // Too long name: - assert_eq!(_create_proposal( - None, None, Some(too_long_name()), None, None), - Err(MSG_TOO_LONG_NAME)); - - // Too long description: - assert_eq!(_create_proposal( - None, None, None, Some(too_long_description()), None), - Err(MSG_TOO_LONG_DESCRIPTION)); - - // Too long WASM code: - assert_eq!(_create_proposal( - None, None, None, None, Some(too_long_wasm_code())), - Err(MSG_TOO_LONG_WASM_CODE)); - }); - } - - fn too_long_name() -> Vec { - vec![65; Proposals::name_max_len() as usize + 1] - } - - fn too_long_description() -> Vec { - vec![65; Proposals::description_max_len() as usize + 1] - } - - fn too_long_wasm_code() -> Vec { - vec![65; Proposals::wasm_code_max_len() as usize + 1] - } - - // ------------------------------------------------------------------- - // Cancellation - - #[test] - fn owner_cancel_proposal() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); - assert_eq!(Proposals::proposals(1).status, Cancelled); - assert!(Proposals::active_proposal_ids().is_empty()); - - // Check that proposer's balance reduced by cancellation fee and other part of his stake returned to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - cancellation_fee()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalCancelled(AccountId, u32) - }); - } - - #[test] - fn owner_cannot_cancel_proposal_if_its_finalized() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); - assert_eq!(Proposals::proposals(1).status, Cancelled); - - // Get balances updated after cancelling a proposal: - let updated_free_balance = Balances::free_balance(PROPOSER1); - let updated_reserved_balance = Balances::reserved_balance(PROPOSER1); - - assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1), - Err(MSG_PROPOSAL_FINALIZED)); - - // Check that proposer's balance and locked stake haven't been changed: - assert_eq!(Balances::free_balance(PROPOSER1), updated_free_balance); - assert_eq!(Balances::reserved_balance(PROPOSER1), updated_reserved_balance); - }); - } - - #[test] - fn not_owner_cannot_cancel_proposal() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::set_free_balance(&PROPOSER2, initial_balance()); - Balances::increase_total_stake_by(initial_balance() * 2); - assert_ok!(_create_default_proposal()); - assert_eq!(Proposals::cancel_proposal(Origin::signed(PROPOSER2), 1), - Err(MSG_YOU_DONT_OWN_THIS_PROPOSAL)); - }); - } - - // ------------------------------------------------------------------- - // Voting - - #[test] - fn councilor_vote_on_proposal() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - assert_ok!(_create_default_proposal()); - - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Approve)); - - // Check that a vote has been saved: - assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); - assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); - - // TODO expect event Voted(PROPOSER1, 1, Approve) - }); - } - - #[test] - fn councilor_cannot_vote_on_proposal_twice() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - assert_ok!(_create_default_proposal()); - - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Approve)); - assert_eq!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Approve), - Err(MSG_YOU_ALREADY_VOTED)); - }); - } - - #[test] - fn autovote_with_approve_when_councilor_creates_proposal() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&COUNCILOR1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - assert_ok!(_create_proposal( - Some(COUNCILOR1), None, None, None, None - )); - - // Check that a vote has been sent automatically, - // such as the proposer is a councilor: - assert_eq!(Proposals::votes_by_proposal(1), vec![(COUNCILOR1, Approve)]); - assert_eq!(Proposals::vote_by_account_and_proposal((COUNCILOR1, 1)), Approve); - }); - } - - #[test] - fn not_councilor_cannot_vote_on_proposal() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - assert_ok!(_create_default_proposal()); - assert_eq!(Proposals::vote_on_proposal( - Origin::signed(NOT_COUNCILOR), 1, Approve), - Err(MSG_ONLY_COUNCILORS_CAN_VOTE)); - }); - } - - #[test] - fn councilor_cannot_vote_on_proposal_if_it_has_been_cancelled() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - assert_ok!(_create_default_proposal()); - assert_ok!(Proposals::cancel_proposal(Origin::signed(PROPOSER1), 1)); - assert_eq!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Approve), - Err(MSG_PROPOSAL_FINALIZED)); - }); - } - - #[test] - fn councilor_cannot_vote_on_proposal_if_tally_has_been_finalized() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // All councilors vote with 'Approve' on proposal: - let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; - for &councilor in ALL_COUNCILORS.iter() { - expected_votes.push((councilor, Approve)); - assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Approve)); - assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Approve); - } - assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - - System::set_block_number(2); - Proposals::on_finalise(2); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Approved); - - // Try to vote on finalized proposal: - assert_eq!(Proposals::vote_on_proposal( - Origin::signed(COUNCILOR1), 1, Reject), - Err(MSG_PROPOSAL_FINALIZED)); - }); - } - - // ------------------------------------------------------------------- - // Tally + Outcome: - - #[test] - fn approve_proposal_when_all_councilors_approved_it() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // All councilors approved: - let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; - for &councilor in ALL_COUNCILORS.iter() { - expected_votes.push((councilor, Approve)); - assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Approve)); - assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Approve); - } - assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - - assert_runtime_code_empty!(); - - System::set_block_number(2); - Proposals::on_finalise(2); - - // Check that runtime code has been updated after proposal approved. - assert_runtime_code!(wasm_code()); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Approved); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: ALL_COUNCILORS.len() as u32, - rejections: 0, - slashes: 0, - status: Approved, - finalized_at: 2 - }); - - // Check that proposer's stake has been added back to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Approved) - }); - } - - #[test] - fn approve_proposal_when_all_councilors_voted_and_only_quorum_approved() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // Only a quorum of councilors approved, others rejected: - let councilors = Proposals::councilors_count(); - let approvals = Proposals::approval_quorum_seats(); - let rejections = councilors - approvals; - for i in 0..councilors as usize { - let vote = if (i as u32) < approvals { Approve } else { Reject }; - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, vote)); - } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, councilors); - - assert_runtime_code_empty!(); - - System::set_block_number(2); - Proposals::on_finalise(2); - - // Check that runtime code has been updated after proposal approved. - assert_runtime_code!(wasm_code()); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Approved); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: approvals, - rejections: rejections, - slashes: 0, - status: Approved, - finalized_at: 2 - }); - - // Check that proposer's stake has been added back to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Approved) - }); - } - - #[test] - fn approve_proposal_when_voting_period_expired_if_only_quorum_voted() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // Only quorum of councilors approved, other councilors didn't vote: - let approvals = Proposals::approval_quorum_seats(); - for i in 0..approvals as usize { - let vote = if (i as u32) < approvals { Approve } else { Slash }; - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, vote)); - } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - - assert_runtime_code_empty!(); - - let expiration_block = System::block_number() + Proposals::voting_period(); - System::set_block_number(2); - Proposals::on_finalise(2); - - // Check that runtime code has NOT been updated yet, - // because not all councilors voted and voting period is not expired yet. - assert_runtime_code_empty!(); - - System::set_block_number(expiration_block); - Proposals::on_finalise(expiration_block); - - // Check that runtime code has been updated after proposal approved. - assert_runtime_code!(wasm_code()); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Approved); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: approvals, - rejections: 0, - slashes: 0, - status: Approved, - finalized_at: expiration_block - }); - - // Check that proposer's stake has been added back to his balance: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Approved) - }); - } - - #[test] - fn reject_proposal_when_all_councilors_voted_and_quorum_not_reached() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // Less than a quorum of councilors approved, while others abstained: - let councilors = Proposals::councilors_count(); - let approvals = Proposals::approval_quorum_seats() - 1; - let abstentions = councilors - approvals; - for i in 0..councilors as usize { - let vote = if (i as u32) < approvals { Approve } else { Abstain }; - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, vote)); - } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, councilors); - - assert_runtime_code_empty!(); - - System::set_block_number(2); - Proposals::on_finalise(2); - - // Check that runtime code has NOT been updated after proposal slashed. - assert_runtime_code_empty!(); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Rejected); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: abstentions, - approvals: approvals, - rejections: 0, - slashes: 0, - status: Rejected, - finalized_at: 2 - }); - - // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - rejection_fee()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Rejected) - }); - } - - #[test] - fn reject_proposal_when_all_councilors_rejected_it() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // All councilors rejected: - let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; - for &councilor in ALL_COUNCILORS.iter() { - expected_votes.push((councilor, Reject)); - assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Reject)); - assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Reject); - } - assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - - assert_runtime_code_empty!(); - - System::set_block_number(2); - Proposals::on_finalise(2); - - // Check that runtime code has NOT been updated after proposal rejected. - assert_runtime_code_empty!(); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Rejected); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: 0, - rejections: ALL_COUNCILORS.len() as u32, - slashes: 0, - status: Rejected, - finalized_at: 2 - }); - - // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - rejection_fee()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Rejected) - }); - } - - #[test] - fn slash_proposal_when_all_councilors_slashed_it() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // All councilors slashed: - let mut expected_votes: Vec<(u64, VoteKind)> = vec![]; - for &councilor in ALL_COUNCILORS.iter() { - expected_votes.push((councilor, Slash)); - assert_ok!(Proposals::vote_on_proposal(Origin::signed(councilor), 1, Slash)); - assert_eq!(Proposals::vote_by_account_and_proposal((councilor, 1)), Slash); - } - assert_eq!(Proposals::votes_by_proposal(1), expected_votes); - - assert_runtime_code_empty!(); - - System::set_block_number(2); - Proposals::on_finalise(2); - - // Check that runtime code has NOT been updated after proposal slashed. - assert_runtime_code_empty!(); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Slashed); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: 0, - rejections: 0, - slashes: ALL_COUNCILORS.len() as u32, - status: Slashed, - finalized_at: 2 - }); - - // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - min_stake()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Slashed) - // TODO fix: event log assertion doesn't work and return empty event in every record - // assert_eq!(*System::events().last().unwrap(), - // EventRecord { - // phase: Phase::ApplyExtrinsic(0), - // event: RawEvent::ProposalStatusUpdated(1, Slashed), - // } - // ); - }); - } - - // In this case a proposal will be marked as 'Expired' - // and it will be processed in the same way as if it has been rejected. - #[test] - fn expire_proposal_when_not_all_councilors_voted_and_quorum_not_reached() { - with_externalities(&mut new_test_ext(), || { - Balances::set_free_balance(&PROPOSER1, initial_balance()); - Balances::increase_total_stake_by(initial_balance()); - - assert_ok!(_create_default_proposal()); - - // Less than a quorum of councilors approved: - let approvals = Proposals::approval_quorum_seats() - 1; - for i in 0..approvals as usize { - let vote = if (i as u32) < approvals { Approve } else { Slash }; - assert_ok!(Proposals::vote_on_proposal( - Origin::signed(ALL_COUNCILORS[i]), 1, vote)); - } - assert_eq!(Proposals::votes_by_proposal(1).len() as u32, approvals); - - assert_runtime_code_empty!(); - - let expiration_block = System::block_number() + Proposals::voting_period(); - System::set_block_number(expiration_block); - Proposals::on_finalise(expiration_block); - - // Check that runtime code has NOT been updated after proposal slashed. - assert_runtime_code_empty!(); - - assert!(Proposals::active_proposal_ids().is_empty()); - assert_eq!(Proposals::proposals(1).status, Expired); - assert_eq!(Proposals::tally_results(1), TallyResult { - proposal_id: 1, - abstentions: 0, - approvals: approvals, - rejections: 0, - slashes: 0, - status: Expired, - finalized_at: expiration_block - }); - - // Check that proposer's balance reduced by burnt stake: - assert_eq!(Balances::free_balance(PROPOSER1), initial_balance() - rejection_fee()); - assert_eq!(Balances::reserved_balance(PROPOSER1), 0); - - // TODO expect event ProposalStatusUpdated(1, Rejected) - }); - } -} diff --git a/runtime/src/governance/sealed_vote.rs b/runtime/src/governance/sealed_vote.rs deleted file mode 100644 index 324e0a50ba..0000000000 --- a/runtime/src/governance/sealed_vote.rs +++ /dev/null @@ -1,70 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] - -use srml_support::{ensure}; -use parity_codec::Encode; -use rstd::vec::Vec; - -#[derive(Clone, Copy, Encode, Decode, Default)] -pub struct SealedVote - where Vote: Encode, Hash: PartialEq, AccountId: PartialEq -{ - pub voter: AccountId, - pub commitment: Hash, // 32 bytes - salted hash of serialized Vote - pub stake: Stake, - vote: Option, // will be set when unsealing -} - -impl SealedVote - where Vote: Encode, Hash: PartialEq, AccountId: PartialEq -{ - pub fn new(voter: AccountId, stake: Stake, commitment: Hash) -> SealedVote { - SealedVote { - voter, - commitment, - stake, - vote: None, - } - } - - pub fn new_unsealed(voter: AccountId, stake: Stake, commitment: Hash, vote: Vote) -> SealedVote { - SealedVote { - voter, - commitment, - stake, - vote: Some(vote), - } - } - - pub fn unseal(&mut self, vote: Vote, salt: &mut Vec, hasher: fn(&[u8]) -> Hash) -> Result<(), &'static str> { - // only unseal once - ensure!(self.is_not_revealed(), "vote already unsealed"); - - // seralize the vote and append the salt - let mut payload = vote.encode(); - payload.append(salt); - - // hash the payload, if it matches the commitment it is a valid revealing of the vote - if self.commitment == hasher(&payload) { - self.vote = Some(vote); - Ok(()) - } else { - Err("invalid salt") - } - } - - pub fn get_vote(&self) -> &Option { - &self.vote - } - - pub fn is_owned_by(&self, someone: AccountId) -> bool { - someone == self.voter - } - - pub fn is_revealed(&self) -> bool { - self.vote.is_some() - } - - pub fn is_not_revealed(&self) -> bool { - self.vote.is_none() - } -} \ No newline at end of file diff --git a/runtime/src/governance/stake.rs b/runtime/src/governance/stake.rs deleted file mode 100644 index 299f3e4f84..0000000000 --- a/runtime/src/governance/stake.rs +++ /dev/null @@ -1,114 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] - -use rstd::cmp::Ordering; -use runtime_primitives::traits::{SimpleArithmetic}; - -#[derive(Encode, Decode, Clone, Copy, Default, Debug)] -pub struct Stake - where Balance: Copy + SimpleArithmetic, -{ - pub new: Balance, - pub transferred: Balance, -} - -impl Stake - where Balance: Copy + SimpleArithmetic, -{ - pub fn total(&self) -> Balance { - self.new + self.transferred - } - - pub fn add(&self, v: &Self) -> Self { - Self { - new: self.new + v.new, - transferred: self.transferred + v.transferred - } - } -} - -impl PartialOrd for Stake { - fn partial_cmp(&self, other: &Self) -> Option { - Some(self.cmp(&other)) - } -} - -impl Ord for Stake { - fn cmp(&self, other: &Self) -> Ordering { - self.total().cmp(&other.total()) - } -} - -impl PartialEq for Stake { - fn eq(&self, other: &Self) -> bool { - self.total() == other.total() - } -} - -impl Eq for Stake {} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn total() { - let a: u128 = 4; - let b: u128 = 5; - let s = Stake { - new: a, - transferred: b, - }; - assert_eq!(a + b, s.total()); - } - - #[test] - fn adding() { - let a1: u128 = 3; let b1: u128 = 2; - let a2: u128 = 5; let b2: u128 = 7; - - let s1 = Stake { - new: a1, - transferred: b1, - }; - - let s2 = Stake { - new: a2, - transferred: b2, - }; - - let sum = s1.add(&s2); - - assert_eq!(sum.new, 8); - assert_eq!(sum.transferred, 9); - } - - #[test] - fn equality() { - let a1: u128 = 3; let b1: u128 = 2; - let a2: u128 = 2; let b2: u128 = 3; - let a3: u128 = 10; let b3: u128 = 10; - - let s1 = Stake { - new: a1, - transferred: b1, - }; - - let s2 = s1; - - assert_eq!(s1, s2); - - let s3 = Stake { - new: a2, - transferred: b2, - }; - - assert_eq!(s1, s3); - - let s4 = Stake { - new: a3, - transferred: b3, - }; - - assert_ne!(s1, s4); - } -} \ No newline at end of file diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs deleted file mode 100644 index 77adf189ae..0000000000 --- a/runtime/src/lib.rs +++ /dev/null @@ -1,326 +0,0 @@ -//! The Substrate Node Template runtime. This can be compiled with `#[no_std]`, ready for Wasm. - -#![cfg_attr(not(feature = "std"), no_std)] -#![cfg_attr(not(feature = "std"), feature(alloc))] -// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. -#![recursion_limit="256"] - -#[cfg(feature = "std")] -#[macro_use] -extern crate serde_derive; - -use substrate_client as client; - -#[macro_use] -extern crate parity_codec_derive; - -pub mod governance; -use governance::{election, council, proposals}; -mod memo; - -use rstd::prelude::*; -#[cfg(feature = "std")] -use primitives::bytes; -use primitives::{Ed25519AuthorityId, OpaqueMetadata}; -use runtime_primitives::{ - ApplyResult, transaction_validity::TransactionValidity, Ed25519Signature, generic, - traits::{self, Convert, BlakeTwo256, Block as BlockT, StaticLookup}, create_runtime_str -}; -use client::{ - block_builder::api::{CheckInherentsResult, InherentData, self as block_builder_api}, - runtime_api, impl_runtime_apis -}; -use version::RuntimeVersion; -#[cfg(feature = "std")] -use version::NativeVersion; - -// A few exports that help ease life for downstream crates. -#[cfg(any(feature = "std", test))] -pub use runtime_primitives::BuildStorage; -pub use consensus::Call as ConsensusCall; -pub use timestamp::Call as TimestampCall; -pub use balances::Call as BalancesCall; -pub use runtime_primitives::{Permill, Perbill}; -pub use timestamp::BlockPeriod; -pub use srml_support::{StorageValue, construct_runtime}; - -/// Alias to Ed25519 pubkey that identifies an account on the chain. -pub type AccountId = primitives::H256; - -/// A hash of some data used by the chain. -pub type Hash = primitives::H256; - -/// Index of a block number in the chain. -pub type BlockNumber = u64; - -/// Index of an account's extrinsic in the chain. -pub type Nonce = u64; - -/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know -/// the specifics of the runtime. They can then be made to be agnostic over specific formats -/// of data like extrinsics, allowing for them to continue syncing the network through upgrades -/// to even the core datastructures. -pub mod opaque { - use super::*; - - /// Opaque, encoded, unchecked extrinsic. - #[derive(PartialEq, Eq, Clone, Default, Encode, Decode)] - #[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] - pub struct UncheckedExtrinsic(#[cfg_attr(feature = "std", serde(with="bytes"))] pub Vec); - impl traits::Extrinsic for UncheckedExtrinsic { - fn is_signed(&self) -> Option { - None - } - } - /// Opaque block header type. - pub type Header = generic::Header>; - /// Opaque block type. - pub type Block = generic::Block; - /// Opaque block identifier type. - pub type BlockId = generic::BlockId; - /// Opaque session key type. - pub type SessionKey = Ed25519AuthorityId; -} - -/// This runtime version. -pub const VERSION: RuntimeVersion = RuntimeVersion { - spec_name: create_runtime_str!("joystream-node"), - impl_name: create_runtime_str!("joystream-node"), - authoring_version: 3, - spec_version: 4, - impl_version: 0, - apis: RUNTIME_API_VERSIONS, -}; - -/// The version infromation used to identify this runtime when compiled natively. -#[cfg(feature = "std")] -pub fn native_version() -> NativeVersion { - NativeVersion { - runtime_version: VERSION, - can_author_with: Default::default(), - } -} - -impl system::Trait for Runtime { - /// The identifier used to distinguish between accounts. - type AccountId = AccountId; - /// The lookup mechanism to get account ID from whatever is passed in dispatchers. - type Lookup = Indices; - /// The index type for storing how many extrinsics an account has signed. - type Index = Nonce; - /// The index type for blocks. - type BlockNumber = BlockNumber; - /// The type for hashing blocks and tries. - type Hash = Hash; - /// The hashing algorithm used. - type Hashing = BlakeTwo256; - /// The header digest type. - type Digest = generic::Digest; - /// The header type. - type Header = generic::Header; - /// The ubiquitous event type. - type Event = Event; - /// The ubiquitous log type. - type Log = Log; - /// The ubiquitous origin type. - type Origin = Origin; -} - -impl aura::Trait for Runtime { - type HandleReport = aura::StakingSlasher; -} - -impl consensus::Trait for Runtime { - /// The identifier we use to refer to authorities. - type SessionKey = Ed25519AuthorityId; - // The aura module handles offline-reports internally - // rather than using an explicit report system. - type InherentOfflineReport = (); - /// The ubiquitous log type. - type Log = Log; -} - -/// Session key conversion. -pub struct SessionKeyConversion; -impl Convert for SessionKeyConversion { - fn convert(a: AccountId) -> Ed25519AuthorityId { - a.to_fixed_bytes().into() - } -} - -impl session::Trait for Runtime { - type ConvertAccountIdToSessionKey = SessionKeyConversion; - type OnSessionChange = (Staking, ); - type Event = Event; -} - -impl indices::Trait for Runtime { - /// The type for recording indexing into the account enumeration. If this ever overflows, there - /// will be problems! - type AccountIndex = u32; - /// Use the standard means of resolving an index hint from an id. - type ResolveHint = indices::SimpleResolveHint; - /// Determine whether an account is dead. - type IsDeadAccount = Balances; - /// The uniquitous event type. - type Event = Event; -} - -impl timestamp::Trait for Runtime { - /// A timestamp: seconds since the unix epoch. - type Moment = u64; - type OnTimestampSet = Aura; -} - -impl balances::Trait for Runtime { - /// The type for recording an account's balance. - type Balance = u128; - /// What to do if an account's free balance gets zeroed. - type OnFreeBalanceZero = Staking; - /// What to do if a new account is created. - type OnNewAccount = Indices; - /// Restrict whether an account can transfer funds. We don't place any further restrictions. - type EnsureAccountLiquid = Staking; - /// The uniquitous event type. - type Event = Event; -} - -impl fees::Trait for Runtime { - type TransferAsset = Balances; - type Event = Event; -} - -impl sudo::Trait for Runtime { - /// The uniquitous event type. - type Event = Event; - type Proposal = Call; -} - -impl staking::Trait for Runtime { - type Currency = balances::Module; - type OnRewardMinted = (); - type Event = Event; -} - -impl governance::GovernanceCurrency for Runtime { - type Currency = balances::Module; -} - -impl governance::proposals::Trait for Runtime { - type Event = Event; -} - -impl governance::election::Trait for Runtime { - type Event = Event; - type CouncilElected = (Council,); -} - -impl governance::council::Trait for Runtime { - type Event = Event; - type CouncilTermEnded = (CouncilElection,); -} - -impl memo::Trait for Runtime { - type Event = Event; -} - -construct_runtime!( - pub enum Runtime with Log(InternalLog: DigestItem) where - Block = Block, - NodeBlock = opaque::Block, - UncheckedExtrinsic = UncheckedExtrinsic - { - System: system::{default, Log(ChangesTrieRoot)}, - Timestamp: timestamp::{Module, Call, Storage, Config, Inherent}, - Consensus: consensus::{Module, Call, Storage, Config, Log(AuthoritiesChange), Inherent}, - Aura: aura::{Module, Inherent(Timestamp)}, - Indices: indices, - Balances: balances, - Session: session, - Staking: staking::{default, OfflineWorker}, - Fees: fees::{Module, Storage, Config, Event}, - Sudo: sudo, - Proposals: proposals::{Module, Call, Storage, Event, Config}, - CouncilElection: election::{Module, Call, Storage, Event, Config}, - Council: council::{Module, Call, Storage, Event, Config}, - Memo: memo::{Module, Call, Storage, Event}, - } -); - -/// The type used as a helper for interpreting the sender of transactions. -type Context = system::ChainContext; -/// The address format for describing accounts. -type Address = ::Source; -/// Block header type as expected by this runtime. -pub type Header = generic::Header; -/// Block type as expected by this runtime. -pub type Block = generic::Block; -/// BlockId type as expected by this runtime. -pub type BlockId = generic::BlockId; -/// Unchecked extrinsic type as expected by this runtime. -pub type UncheckedExtrinsic = generic::UncheckedMortalCompactExtrinsic; -/// Extrinsic type that has already been checked. -pub type CheckedExtrinsic = generic::CheckedExtrinsic; -/// Executive: handles dispatch to the various modules. -pub type Executive = executive::Executive; - -// Implement our runtime API endpoints. This is just a bunch of proxying. -impl_runtime_apis! { - impl runtime_api::Core for Runtime { - fn version() -> RuntimeVersion { - VERSION - } - - fn authorities() -> Vec { - Consensus::authorities() - } - - fn execute_block(block: Block) { - Executive::execute_block(block) - } - - fn initialise_block(header: &::Header) { - Executive::initialise_block(header) - } - } - - impl runtime_api::Metadata for Runtime { - fn metadata() -> OpaqueMetadata { - Runtime::metadata().into() - } - } - - impl block_builder_api::BlockBuilder for Runtime { - fn apply_extrinsic(extrinsic: ::Extrinsic) -> ApplyResult { - Executive::apply_extrinsic(extrinsic) - } - - fn finalise_block() -> ::Header { - Executive::finalise_block() - } - - fn inherent_extrinsics(data: InherentData) -> Vec<::Extrinsic> { - data.create_extrinsics() - } - - fn check_inherents(block: Block, data: InherentData) -> CheckInherentsResult { - data.check_extrinsics(&block) - } - - fn random_seed() -> ::Hash { - System::random_seed() - } - } - - impl runtime_api::TaggedTransactionQueue for Runtime { - fn validate_transaction(tx: ::Extrinsic) -> TransactionValidity { - Executive::validate_transaction(tx) - } - } - - impl consensus_aura::AuraApi for Runtime { - fn slot_duration() -> u64 { - Aura::slot_duration() - } - } -} diff --git a/runtime/src/memo.rs b/runtime/src/memo.rs deleted file mode 100644 index 43892a725e..0000000000 --- a/runtime/src/memo.rs +++ /dev/null @@ -1,41 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] - -use srml_support::{StorageMap, dispatch::Result, decl_module, decl_storage, decl_event, ensure}; -use srml_support::traits::{Currency}; -use runtime_primitives::traits::{Zero}; -use system::{self, ensure_signed}; -use rstd::prelude::*; -use crate::governance::GovernanceCurrency; - -pub trait Trait: system::Trait + GovernanceCurrency { - type Event: From> + Into<::Event>; -} - -decl_storage! { - trait Store for Module as Memo { - Memo get(memo) : map T::AccountId => Vec; - MaxMemoLength get(max_memo_length) : u32 = 4096; - } -} - -decl_event! { - pub enum Event where ::AccountId { - MemoUpdated(AccountId), - } -} - -decl_module! { - pub struct Module for enum Call where origin: T::Origin { - fn deposit_event() = default; - - fn update_memo(origin, memo: Vec) { - let sender = ensure_signed(origin)?; - - ensure!(!T::Currency::total_balance(&sender).is_zero(), "account must have a balance"); - ensure!(memo.len() as u32 <= Self::max_memo_length(), "memo too long"); - - >::insert(sender.clone(), memo); - Self::deposit_event(RawEvent::MemoUpdated(sender)); - } - } -} diff --git a/runtime/wasm/Cargo.toml b/runtime/wasm/Cargo.toml deleted file mode 100644 index 625bcaf2b7..0000000000 --- a/runtime/wasm/Cargo.toml +++ /dev/null @@ -1,22 +0,0 @@ -[profile.release] -lto = true -panic = 'abort' - -[workspace] -members = [] - -[lib] -crate-type = ['cdylib'] - -[features] -default = [] -std = ['joystream-node-runtime/std'] -[dependencies.joystream-node-runtime] -default-features = false -path = '..' - -[package] -authors = ['Joystream'] -edition = '2018' -name = 'joystream-node-runtime-wasm' -version = '1.0.1' diff --git a/runtime/wasm/build.sh b/runtime/wasm/build.sh deleted file mode 100755 index bf5d1b99e6..0000000000 --- a/runtime/wasm/build.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -set -e - -if cargo --version | grep -q "nightly"; then - CARGO_CMD="cargo" -else - CARGO_CMD="cargo +nightly" -fi -$CARGO_CMD build --target=wasm32-unknown-unknown --release -for i in joystream_node_runtime_wasm -do - wasm-gc target/wasm32-unknown-unknown/release/$i.wasm target/wasm32-unknown-unknown/release/$i.compact.wasm -done diff --git a/runtime/wasm/src/lib.rs b/runtime/wasm/src/lib.rs deleted file mode 100644 index 65d525ebb3..0000000000 --- a/runtime/wasm/src/lib.rs +++ /dev/null @@ -1,3 +0,0 @@ -#![cfg_attr(not(feature = "std"), no_std)] - -pub use joystream_node_runtime::*; diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 82ed4cfbb3..838b6e6c3d 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -1,11 +1,13 @@ -use primitives::{ed25519, sr25519, Pair}; +use hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ - AccountId, GenesisConfig, ConsensusConfig, TimestampConfig, BalancesConfig, - SudoConfig, IndicesConfig, SessionConfig, StakingConfig, Permill, Perbill, - CouncilConfig, CouncilElectionConfig, ProposalsConfig, FeesConfig, + AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, CouncilElectionConfig, + DataObjectTypeRegistryConfig, GenesisConfig, IndicesConfig, MembersConfig, Perbill, + ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, + ContentDirectoryConfig, DataObjectStorageRegistryConfig, DownloadSessionsConfig }; +use primitives::{crypto::UncheckedInto, ed25519, Pair}; use substrate_service; -use hex_literal::{hex, hex_impl}; +use substrate_telemetry::TelemetryEndpoints; use ed25519::Public as AuthorityId; @@ -20,20 +22,20 @@ pub type ChainSpec = substrate_service::ChainSpec; /// 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, - /// Staging testnet - StagingTestnet, - /// Testnet - the current live testnet - LiveTestnet, + /// Whatever the current runtime is, with just Alice as an auth. + Development, + /// Whatever the current runtime is, with simple Alice/Bob auths. + LocalTestnet, + /// Staging testnet + StagingTestnet, + /// Testnet - the current live testnet + LiveTestnet, } fn authority_key(s: &str) -> AuthorityId { - ed25519::Pair::from_string(&format!("//{}", s), None) - .expect("static values are valid; qed") - .public() + ed25519::Pair::from_string(&format!("//{}", s), None) + .expect("static values are valid; qed") + .public() } // New sr25519 for account keys @@ -45,127 +47,159 @@ fn authority_key(s: &str) -> AuthorityId { // Continue to use ed25519 for account keys for now fn account_key(s: &str) -> AccountId { - ed25519::Pair::from_string(&format!("//{}", s), None) - .expect("static values are valid; qed") - .public() + ed25519::Pair::from_string(&format!("//{}", s), None) + .expect("static values are valid; qed") + .public() } 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![ - authority_key("Alice") - ], vec![ - account_key("Alice") - ], - account_key("Alice") - ), - vec![], - None, - None, - None, - None - ), - Alternative::LocalTestnet => ChainSpec::from_genesis( - "Local Testnet", - "local_testnet", - || testnet_genesis(vec![ - authority_key("Alice"), - authority_key("Bob"), - ], vec![ - account_key("Alice"), - account_key("Bob"), - account_key("Charlie"), - account_key("Dave"), - account_key("Eve"), - account_key("Ferdie"), - ], - account_key("Alice"), - ), - vec![], - None, - None, - None, - None - ), - Alternative::StagingTestnet => staging_testnet_config(), - Alternative::LiveTestnet => live_testnet_config()?, - }) - } + /// 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![ + // stash, controller, authority + ( + account_key("Alice//stash"), + account_key("Alice"), + authority_key("Alice"), + ), + ], + vec![ + // endowed account + account_key("Alice"), + ], + // sudo key + account_key("Alice"), + ) + }, + vec![], + None, + None, + None, + None, + ), + Alternative::LocalTestnet => ChainSpec::from_genesis( + "Local Testnet", + "local_testnet", + || { + testnet_genesis( + vec![ + ( + account_key("Alice//stash"), + account_key("Alice"), + authority_key("Alice"), + ), + ( + account_key("Bob//stash"), + account_key("Bob"), + authority_key("Bob"), + ), + ], + vec![ + account_key("Alice"), + account_key("Bob"), + account_key("Charlie"), + account_key("Dave"), + account_key("Eve"), + account_key("Ferdie"), + ], + account_key("Alice"), + ) + }, + vec![], + None, + None, + None, + None, + ), + Alternative::StagingTestnet => staging_testnet_config(), + Alternative::LiveTestnet => live_testnet_config()?, + }) + } - pub(crate) fn from(s: &str) -> Option { - match s { - "dev" => Some(Alternative::Development), - "local" => Some(Alternative::LocalTestnet), - "staging" => Some(Alternative::StagingTestnet), - "" | "testnet" => Some(Alternative::LiveTestnet), - _ => None, - } - } + pub(crate) fn from(s: &str) -> Option { + match s { + "dev" => Some(Alternative::Development), + "local" => Some(Alternative::LocalTestnet), + "staging" => Some(Alternative::StagingTestnet), + "" | "testnet" => Some(Alternative::LiveTestnet), + _ => None, + } + } } /// LiveTestnet generator pub fn live_testnet_config() -> Result { - ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_1.json")) + ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_1.json")) } /// Staging testnet config pub fn staging_testnet_config() -> ChainSpec { - let boot_nodes = vec![ + let boot_nodes = vec![ String::from("/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi") ]; - ChainSpec::from_genesis( - "Joystream Staging Testnet", - "joystream_staging_3", - staging_testnet_config_genesis, - boot_nodes, - Some(STAGING_TELEMETRY_URL.into()), - None, - None, - None, - ) + ChainSpec::from_genesis( + "Joystream Staging Testnet", + "joystream_staging_3", + staging_testnet_config_genesis, + boot_nodes, + Some(TelemetryEndpoints::new(vec![( + STAGING_TELEMETRY_URL.to_string(), + 0, + )])), + None, + None, + None, + ) } -fn staging_testnet_config_genesis () -> GenesisConfig { - let initial_authorities = vec![ - hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].into(), - ]; - let endowed_accounts = vec![ - hex!["6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f"].into(), - ]; +fn staging_testnet_config_genesis() -> GenesisConfig { + let initial_authorities: Vec<(AccountId, AccountId, AuthorityId)> = vec![( + hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].unchecked_into(), // stash + hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].unchecked_into(), // controller (can it be same as stash?) + hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].unchecked_into(), // session key + )]; + let endowed_accounts = vec![hex![ + "6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f" + ] + .unchecked_into()]; - const CENTS: u128 = 1; - const DOLLARS: u128 = 100 * CENTS; + const CENTS: u128 = 1; + const DOLLARS: u128 = 100 * CENTS; - const SECS_PER_BLOCK: u64 = 6; - const MINUTES: u64 = 60 / SECS_PER_BLOCK; - const HOURS: u64 = MINUTES * 60; - const DAYS: u64 = HOURS * 24; + const SECS_PER_BLOCK: u64 = 6; + const MINUTES: u64 = 60 / SECS_PER_BLOCK; + const HOURS: u64 = MINUTES * 60; + const DAYS: u64 = HOURS * 24; + const STASH: u128 = 100 * DOLLARS; + const ENDOWMENT: u128 = 100_000_000 * DOLLARS; - GenesisConfig { + GenesisConfig { consensus: Some(ConsensusConfig { - code: include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), - authorities: initial_authorities.clone(), + code: include_bytes!("../substrate-runtime-joystream/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), + authorities: initial_authorities.iter().map(|x| x.2.clone()).collect(), }), system: None, timestamp: Some(TimestampConfig { period: SECS_PER_BLOCK / 2, // due to the nature of aura the slots are 2*period }), indices: Some(IndicesConfig { - ids: endowed_accounts.clone(), + ids: vec![], }), balances: Some(BalancesConfig { - balances: endowed_accounts.iter().map(|&k| (k, 100_000_000 * DOLLARS)).collect(), + balances: endowed_accounts.iter().cloned() + .map(|k| (k, ENDOWMENT)) + .chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH))) + .collect(), existential_deposit: 0, transfer_fee: 0, creation_fee: 0, vesting: vec![], - }), - fees: Some(FeesConfig { transaction_base_fee: 0, transaction_byte_fee: 0, }), @@ -173,22 +207,22 @@ fn staging_testnet_config_genesis () -> GenesisConfig { key: endowed_accounts[0].clone(), }), session: Some(SessionConfig { - validators: initial_authorities.iter().cloned().map(Into::into).collect(), + validators: initial_authorities.iter().map(|x| x.1.clone()).collect(), session_length: 10 * MINUTES, + keys: initial_authorities.iter().map(|x| (x.1.clone(), x.2.clone())).collect::>(), }), staking: Some(StakingConfig { current_era: 0, - intentions: initial_authorities.iter().cloned().map(Into::into).collect(), offline_slash: Perbill::from_millionths(10_000), // 1/ 100 => 1% session_reward: Perbill::from_millionths(1_000), // 1/1000 => 0.1% (min stake -> 1000 units for reward to be GT 0) - current_offline_slash: 0, current_session_reward: 0, validator_count: 10, sessions_per_era: 6, bonding_duration: 60 * MINUTES, offline_slash_grace: 4, minimum_validator_count: 1, - invulnerables: initial_authorities.iter().cloned().map(Into::into).collect(), + stakers: initial_authorities.iter().map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator)).collect(), + invulnerables: initial_authorities.iter().map(|x| x.1.clone()).collect(), }), council: Some(CouncilConfig { active_council: vec![], @@ -215,31 +249,54 @@ fn staging_testnet_config_genesis () -> GenesisConfig { description_max_len: 10_000, wasm_code_max_len: 2_000_000, }), - + members: Some(MembersConfig { + default_paid_membership_fee: 100u128, + first_member_id: 1, + }), + data_object_type_registry: Some(DataObjectTypeRegistryConfig { + first_data_object_type_id: 1, + }), + content_directory: Some(ContentDirectoryConfig{ + first_metadata_id: 1, + }), + data_object_storage_registry: Some(DataObjectStorageRegistryConfig{ + first_relationship_id: 1, + }), + downloads: Some(DownloadSessionsConfig{ + first_download_session_id: 1, + }), } } -fn testnet_genesis(initial_authorities: Vec, endowed_accounts: Vec, root_key: AccountId) -> GenesisConfig { - GenesisConfig { +fn testnet_genesis( + initial_authorities: Vec<(AccountId, AccountId, AuthorityId)>, + endowed_accounts: Vec, + root_key: AccountId, +) -> GenesisConfig { + const STASH: u128 = 100; + const ENDOWMENT: u128 = 100_000_000; + + GenesisConfig { consensus: Some(ConsensusConfig { - code: include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), - authorities: initial_authorities.clone(), + code: include_bytes!("../substrate-runtime-joystream/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), + authorities: initial_authorities.iter().map(|x| x.2.clone()).collect(), }), system: None, timestamp: Some(TimestampConfig { period: 3, // 3*2=6 second block time. }), indices: Some(IndicesConfig { - ids: endowed_accounts.clone(), + ids: vec![] }), balances: Some(BalancesConfig { existential_deposit: 500, transfer_fee: 0, creation_fee: 0, - balances: endowed_accounts.iter().map(|&k|(k, (1 << 60))).collect(), + balances: endowed_accounts.iter().cloned() + .map(|k| (k, ENDOWMENT)) + .chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH))) + .collect(), vesting: vec![], - }), - fees: Some(FeesConfig { transaction_base_fee: 0, transaction_byte_fee: 0, }), @@ -247,22 +304,22 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account key: root_key, }), session: Some(SessionConfig { - validators: initial_authorities.iter().cloned().map(Into::into).collect(), + validators: initial_authorities.iter().map(|x| x.1.clone()).collect(), session_length: 10, + keys: initial_authorities.iter().map(|x| (x.1.clone(), x.2.clone())).collect::>(), }), staking: Some(StakingConfig { current_era: 0, - intentions: initial_authorities.iter().cloned().map(Into::into).collect(), minimum_validator_count: 1, validator_count: 2, sessions_per_era: 5, bonding_duration: 2 * 60 * 12, offline_slash: Perbill::zero(), session_reward: Perbill::zero(), - current_offline_slash: 0, current_session_reward: 0, offline_slash_grace: 0, - invulnerables: initial_authorities.iter().cloned().map(Into::into).collect(), + stakers: initial_authorities.iter().map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator)).collect(), + invulnerables: initial_authorities.iter().map(|x| x.1.clone()).collect(), }), council: Some(CouncilConfig { active_council: vec![], @@ -289,5 +346,21 @@ fn testnet_genesis(initial_authorities: Vec, endowed_account description_max_len: 10_000, wasm_code_max_len: 2_000_000, }), + members: Some(MembersConfig { + default_paid_membership_fee: 100u128, + first_member_id: 1, + }), + data_object_type_registry: Some(DataObjectTypeRegistryConfig { + first_data_object_type_id: 1, + }), + content_directory: Some(ContentDirectoryConfig{ + first_metadata_id: 1, + }), + data_object_storage_registry: Some(DataObjectStorageRegistryConfig{ + first_relationship_id: 1, + }), + downloads: Some(DownloadSessionsConfig{ + first_download_session_id: 1, + }), } } diff --git a/src/cli.rs b/src/cli.rs index ab6259792f..391562e7e6 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,94 +1,104 @@ +use crate::chain_spec; use crate::service; -use futures::{future, Future, sync::oneshot}; +use futures::{future, sync::oneshot, Future}; +use log::info; use std::cell::RefCell; -use tokio::runtime::Runtime; -pub use substrate_cli::{VersionInfo, IntoExit, error}; -use substrate_cli::{informant, parse_and_execute, NoCustom}; -use substrate_service::{ServiceFactory, Roles as ServiceRoles}; -use crate::chain_spec; use std::ops::Deref; -use log::info; +pub use substrate_cli::{error, IntoExit, VersionInfo}; +use substrate_cli::{informant, parse_and_execute, NoCustom}; +use substrate_service::{Roles as ServiceRoles, ServiceFactory}; +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, +pub fn run(args: I, exit: E, version: VersionInfo) -> error::Result<()> +where + I: IntoIterator, + T: Into + Clone, + E: IntoExit, { - parse_and_execute::( - load_spec, &version, "joystream-node", args, exit, - |exit, _custom_args, 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))?; - let executor = runtime.executor(); - match config.roles { - ServiceRoles::LIGHT => run_until_exit( - runtime, - service::Factory::new_light(config, executor).map_err(|e| format!("{:?}", e))?, - exit - ), - _ => run_until_exit( - runtime, - service::Factory::new_full(config, executor).map_err(|e| format!("{:?}", e))?, - exit - ), - }.map_err(|e| format!("{:?}", e)) - } - ).map_err(Into::into).map(|_| ()) + parse_and_execute::( + load_spec, + &version, + "joystream-node", + args, + exit, + |exit, _custom_args, 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))?; + let executor = runtime.executor(); + match config.roles { + ServiceRoles::LIGHT => run_until_exit( + runtime, + service::Factory::new_light(config, executor) + .map_err(|e| format!("{:?}", e))?, + exit, + ), + _ => run_until_exit( + runtime, + service::Factory::new_full(config, executor).map_err(|e| format!("{:?}", e))?, + exit, + ), + } + .map_err(|e| format!("{:?}", e)) + }, + ) + .map_err(Into::into) + .map(|_| ()) } fn load_spec(id: &str) -> Result, String> { - Ok(match chain_spec::Alternative::from(id) { - Some(spec) => Some(spec.load()?), - None => None, - }) + Ok(match chain_spec::Alternative::from(id) { + Some(spec) => Some(spec.load()?), + None => None, + }) } -fn run_until_exit( - mut runtime: Runtime, - service: T, - e: E, -) -> error::Result<()> - where - T: Deref>, - C: substrate_service::Components, - E: IntoExit, +fn run_until_exit(mut runtime: Runtime, service: T, e: E) -> error::Result<()> +where + T: Deref>, + C: substrate_service::Components, + E: IntoExit, { - let (exit_send, exit) = exit_future::signal(); + let (exit_send, exit) = exit_future::signal(); - let executor = runtime.executor(); - informant::start(&service, exit.clone(), executor.clone()); + let executor = runtime.executor(); + informant::start(&service, exit.clone(), executor.clone()); - let _ = runtime.block_on(e.into_exit()); - exit_send.fire(); + let _ = runtime.block_on(e.into_exit()); + exit_send.fire(); - // we eagerly drop the service so that the internal exit future is fired, - // but we need to keep holding a reference to the global telemetry guard - let _telemetry = service.telemetry(); - drop(service); - Ok(()) + // we eagerly drop the service so that the internal exit future is fired, + // but we need to keep holding a reference to the global telemetry guard + let _telemetry = service.telemetry(); + drop(service); + Ok(()) } // handles ctrl-c pub struct Exit; impl IntoExit for Exit { - type Exit = future::MapErr, fn(oneshot::Canceled) -> ()>; - fn into_exit(self) -> Self::Exit { - // can't use signal directly here because CtrlC takes only `Fn`. - let (exit_send, exit) = oneshot::channel(); + type Exit = future::MapErr, fn(oneshot::Canceled) -> ()>; + fn into_exit(self) -> Self::Exit { + // can't use signal directly here because CtrlC takes only `Fn`. + let (exit_send, exit) = oneshot::channel(); - let exit_send_cell = RefCell::new(Some(exit_send)); - ctrlc::set_handler(move || { - if let Some(exit_send) = exit_send_cell.try_borrow_mut().expect("signal handler not reentrant; qed").take() { - exit_send.send(()).expect("Error sending exit notification"); - } - }).expect("Error setting Ctrl-C handler"); + let exit_send_cell = RefCell::new(Some(exit_send)); + ctrlc::set_handler(move || { + if let Some(exit_send) = exit_send_cell + .try_borrow_mut() + .expect("signal handler not reentrant; qed") + .take() + { + exit_send.send(()).expect("Error sending exit notification"); + } + }) + .expect("Error setting Ctrl-C handler"); - exit.map_err(drop) - } + exit.map_err(drop) + } } diff --git a/src/error.rs b/src/error.rs index a8aa94bf32..6d2eac6c01 100644 --- a/src/error.rs +++ b/src/error.rs @@ -3,11 +3,11 @@ use client; error_chain! { - foreign_links { - Io(::std::io::Error) #[doc="IO error"]; - Cli(::clap::Error) #[doc="CLI error"]; - } - links { - Client(client::error::Error, client::error::ErrorKind) #[doc="Client error"]; - } + foreign_links { + Io(::std::io::Error) #[doc="IO error"]; + Cli(::clap::Error) #[doc="CLI error"]; + } + links { + Client(client::error::Error, client::error::ErrorKind) #[doc="Client error"]; + } } diff --git a/src/main.rs b/src/main.rs index 36909bb958..1f28fc252d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,22 +4,22 @@ #![warn(unused_extern_crates)] mod chain_spec; -mod service; mod cli; +mod service; -pub use substrate_cli::{VersionInfo, IntoExit, error}; +pub use substrate_cli::{error, IntoExit, VersionInfo}; fn run() -> cli::error::Result<()> { - 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/", - }; - cli::run(::std::env::args(), cli::Exit, version) + 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/", + }; + cli::run(::std::env::args(), cli::Exit, version) } error_chain::quick_main!(run); diff --git a/src/service.rs b/src/service.rs index 8ae2e570a5..6264b306f2 100644 --- a/src/service.rs +++ b/src/service.rs @@ -2,24 +2,22 @@ #![warn(unused_extern_crates)] -use std::sync::Arc; -use transaction_pool::{self, txpool::{Pool as TransactionPool}}; -use log::info; -use joystream_node_runtime::{self, GenesisConfig, opaque::Block, RuntimeApi}; -use substrate_service::{ - FactoryFullConfiguration, LightComponents, FullComponents, FullBackend, - FullClient, LightClient, LightBackend, FullExecutor, LightExecutor, - TaskExecutor, -}; use basic_authorship::ProposerFactory; -use node_executor; -use consensus::{import_queue, start_aura, AuraImportQueue, SlotDuration, NothingExtra}; -use substrate_client as client; -use primitives::{ed25519::Pair, Pair as PairT}; +use consensus::{import_queue, start_aura, AuraImportQueue, NothingExtra, SlotDuration}; use inherents::InherentDataProviders; -use substrate_network::construct_simple_protocol; +use joystream_node_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; +use log::info; +use network::construct_simple_protocol; +use primitives::{ed25519::Pair, Pair as PairT}; +use std::sync::Arc; +use substrate_client as client; use substrate_executor::native_executor_instance; use substrate_service::construct_service_factory; +use substrate_service::{ + FactoryFullConfiguration, FullBackend, FullClient, FullComponents, FullExecutor, LightBackend, + LightClient, LightComponents, LightExecutor, TaskExecutor, +}; +use transaction_pool::{self, txpool::Pool as TransactionPool}; pub use substrate_executor::NativeExecutor; // Our native executor instance. @@ -27,87 +25,87 @@ native_executor_instance!( pub Executor, joystream_node_runtime::api::dispatch, joystream_node_runtime::native_version, - include_bytes!("../runtime/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm") + include_bytes!("../substrate-runtime-joystream/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm") ); #[derive(Default)] pub struct NodeConfig { - inherent_data_providers: InherentDataProviders, + inherent_data_providers: InherentDataProviders, } construct_simple_protocol! { - /// Demo protocol attachment for substrate. - pub struct NodeProtocol where Block = Block { } + /// Demo protocol attachment for substrate. + pub struct NodeProtocol where Block = Block { } } construct_service_factory! { - struct Factory { - Block = Block, - RuntimeApi = RuntimeApi, - NetworkProtocol = NodeProtocol { |config| Ok(NodeProtocol::new()) }, - RuntimeDispatch = node_executor::Executor, - FullTransactionPoolApi = transaction_pool::ChainApi, FullExecutor, Block, RuntimeApi>, Block> - { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, - LightTransactionPoolApi = transaction_pool::ChainApi, LightExecutor, Block, RuntimeApi>, Block> - { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, - Genesis = GenesisConfig, - Configuration = NodeConfig, - FullService = FullComponents - { |config: FactoryFullConfiguration, executor: TaskExecutor| - FullComponents::::new(config, executor) - }, - AuthoritySetup = { - |service: Self::FullService, executor: TaskExecutor, key: Option>| { - if let Some(key) = key { - info!("Using authority key {}", key.public()); - let proposer = Arc::new(ProposerFactory { - client: service.client(), - transaction_pool: service.transaction_pool(), - }); - let client = service.client(); - executor.spawn(start_aura( - SlotDuration::get_or_compute(&*client)?, - key.clone(), - client.clone(), - client, - proposer, - service.network(), - service.on_exit(), - service.config.custom.inherent_data_providers.clone(), - service.config.force_authoring, - )?); - } + struct Factory { + Block = Block, + RuntimeApi = RuntimeApi, + NetworkProtocol = NodeProtocol { |config| Ok(NodeProtocol::new()) }, + RuntimeDispatch = Executor, + FullTransactionPoolApi = transaction_pool::ChainApi, FullExecutor, Block, RuntimeApi>, Block> + { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, + LightTransactionPoolApi = transaction_pool::ChainApi, LightExecutor, Block, RuntimeApi>, Block> + { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, + Genesis = GenesisConfig, + Configuration = NodeConfig, + FullService = FullComponents + { |config: FactoryFullConfiguration, executor: TaskExecutor| + FullComponents::::new(config, executor) + }, + AuthoritySetup = { + |service: Self::FullService, executor: TaskExecutor, key: Option>| { + if let Some(key) = key { + info!("Using authority key {}", key.public()); + let proposer = Arc::new(ProposerFactory { + client: service.client(), + transaction_pool: service.transaction_pool(), + }); + let client = service.client(); + executor.spawn(start_aura( + SlotDuration::get_or_compute(&*client)?, + key.clone(), + client.clone(), + client, + proposer, + service.network(), + service.on_exit(), + service.config.custom.inherent_data_providers.clone(), + service.config.force_authoring, + )?); + } - Ok(service) - } - }, - LightService = LightComponents - { |config, executor| >::new(config, executor) }, - FullImportQueue = AuraImportQueue< - Self::Block, - > - { |config: &mut FactoryFullConfiguration , client: Arc>| - import_queue( - SlotDuration::get_or_compute(&*client)?, - client.clone(), - None, - client, - NothingExtra, - config.custom.inherent_data_providers.clone(), - ).map_err(Into::into) - }, - LightImportQueue = AuraImportQueue< - Self::Block, - > - { |config: &mut FactoryFullConfiguration, client: Arc>| - import_queue( - SlotDuration::get_or_compute(&*client)?, - client.clone(), - None, - client, - NothingExtra, - config.custom.inherent_data_providers.clone(), - ).map_err(Into::into) - }, - } + Ok(service) + } + }, + LightService = LightComponents + { |config, executor| >::new(config, executor) }, + FullImportQueue = AuraImportQueue< + Self::Block, + > + { |config: &mut FactoryFullConfiguration , client: Arc>| + import_queue::<_, _, _, Pair>( + SlotDuration::get_or_compute(&*client)?, + client.clone(), + None, + client, + NothingExtra, + config.custom.inherent_data_providers.clone(), + ).map_err(Into::into) + }, + LightImportQueue = AuraImportQueue< + Self::Block, + > + { |config: &mut FactoryFullConfiguration, client: Arc>| + import_queue::<_, _, _, Pair>( + SlotDuration::get_or_compute(&*client)?, + client.clone(), + None, + client, + NothingExtra, + config.custom.inherent_data_providers.clone(), + ).map_err(Into::into) + }, + } } From 180be0e2816325a6348b9e9bc85c5c3430fa9ffb Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 3 Apr 2019 22:59:35 +0300 Subject: [PATCH 189/350] substrate upgrade: use substrate v1.0.0rc1 --- Cargo.lock | 1087 +++++++++++++++++++++++++++------------------------- Cargo.toml | 26 +- 2 files changed, 580 insertions(+), 533 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b5a029c39..3bd9537eef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -217,7 +217,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bitmask" version = "0.5.0" -source = "git+https://github.com/paritytech/bitmask#a84e147be602631617badd18b6b9af83391db4a9" +source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "blake2" @@ -732,8 +732,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -838,11 +838,6 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "hash-db" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "hash-db" version = "0.12.2" @@ -850,7 +845,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hash256-std-hasher" -version = "0.11.0" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -865,6 +860,11 @@ dependencies = [ "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hashmap_core" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "heapsize" version = "0.4.2" @@ -1069,18 +1069,18 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1095,24 +1095,26 @@ dependencies = [ "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] @@ -1261,31 +1263,31 @@ dependencies = [ [[package]] name = "libp2p" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-core-derive 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-dns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-floodsub 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-identify 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-kad 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-mdns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-mplex 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-noise 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-ping 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-plaintext 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-ratelimit 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-secio 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-tcp 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-uds 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-websocket 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-yamux 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core-derive 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-dns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-floodsub 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-kad 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mdns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mplex 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-noise 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-plaintext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ratelimit 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-secio 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-tcp 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-uds 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-websocket 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-yamux 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1296,8 +1298,8 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1308,15 +1310,15 @@ dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "multistream-select 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "multistream-select 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1331,8 +1333,8 @@ dependencies = [ [[package]] name = "libp2p-core-derive" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1340,28 +1342,28 @@ dependencies = [ [[package]] name = "libp2p-dns" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-floodsub" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1372,15 +1374,15 @@ dependencies = [ [[package]] name = "libp2p-identify" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1393,21 +1395,22 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-identify 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "libp2p-ping 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1421,16 +1424,16 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1442,13 +1445,13 @@ dependencies = [ [[package]] name = "libp2p-mplex" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1458,13 +1461,13 @@ dependencies = [ [[package]] name = "libp2p-noise" -version = "0.3.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1476,15 +1479,15 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1495,22 +1498,22 @@ dependencies = [ [[package]] name = "libp2p-plaintext" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ratelimit" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1518,8 +1521,8 @@ dependencies = [ [[package]] name = "libp2p-secio" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1528,12 +1531,12 @@ dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1544,13 +1547,13 @@ dependencies = [ [[package]] name = "libp2p-tcp" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1558,26 +1561,26 @@ dependencies = [ [[package]] name = "libp2p-uds" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-websocket" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", - "rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "websocket 0.22.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1585,11 +1588,11 @@ dependencies = [ [[package]] name = "libp2p-yamux" -version = "0.5.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "yamux 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1682,10 +1685,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "memory-db" -version = "0.11.0" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1765,8 +1769,8 @@ dependencies = [ [[package]] name = "multistream-select" -version = "0.3.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1972,13 +1976,13 @@ dependencies = [ [[package]] name = "parity-multiaddr" version = "0.2.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1986,7 +1990,7 @@ dependencies = [ [[package]] name = "parity-multihash" version = "0.1.0" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2460,7 +2464,7 @@ dependencies = [ [[package]] name = "rw-stream-sink" version = "0.1.1" -source = "git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20#e8e6ccec7409aa19939230d6720035e3ed28dfd6" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2703,8 +2707,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2715,25 +2719,25 @@ dependencies = [ [[package]] name = "sr-io" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2741,230 +2745,230 @@ dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "sr-std" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-version" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-aura" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-balances" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-consensus" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-executive" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-indices" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-metadata" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-session" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-staking" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-sudo" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-support" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ - "bitmask 0.5.0 (git+https://github.com/paritytech/bitmask)", + "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-support-procedural" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2973,34 +2977,34 @@ dependencies = [ [[package]] name = "srml-system" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "srml-timestamp" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] @@ -3118,19 +3122,19 @@ dependencies = [ [[package]] name = "substrate-basic-authorship" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] @@ -3146,8 +3150,8 @@ dependencies = [ [[package]] name = "substrate-cli" -version = "0.3.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3163,16 +3167,16 @@ dependencies = [ "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3180,130 +3184,148 @@ dependencies = [ [[package]] name = "substrate-client" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-client-db" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-consensus-aura" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-aura-primitives" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-consensus-aura-slots" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-consensus-authorities" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +dependencies = [ + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", +] + [[package]] name = "substrate-consensus-common" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3314,44 +3336,44 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-inherents" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-keyring" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-keystore" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3360,19 +3382,19 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3382,19 +3404,19 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-peerset 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network-libp2p" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3402,7 +3424,7 @@ dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3410,7 +3432,7 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-peerset 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3419,9 +3441,36 @@ dependencies = [ ] [[package]] -name = "substrate-panic-handler" +name = "substrate-offchain" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +dependencies = [ + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-offchain-primitives" +version = "0.1.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +dependencies = [ + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", +] + +[[package]] +name = "substrate-panic-handler" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3429,12 +3478,12 @@ dependencies = [ [[package]] name = "substrate-peerset" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)", + "libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3446,14 +3495,14 @@ dependencies = [ [[package]] name = "substrate-primitives" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash256-std-hasher 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3467,7 +3516,7 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)", "tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3477,8 +3526,8 @@ dependencies = [ [[package]] name = "substrate-rpc" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3490,35 +3539,35 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc-servers" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-serializer" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3526,8 +3575,8 @@ dependencies = [ [[package]] name = "substrate-service" -version = "0.3.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3540,55 +3589,57 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-state-db" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-state-machine" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-telemetry" -version = "0.3.1" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3605,8 +3656,8 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3614,35 +3665,36 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-transaction-pool" -version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", - "substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] [[package]] name = "substrate-trie" -version = "0.4.0" -source = "git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a#2ba93e317c637ffee06153e15ca7c39f6812e88a" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" dependencies = [ - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "memory-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4001,23 +4053,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "trie-db" -version = "0.11.0" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "trie-root" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "trie-root" version = "0.12.2" @@ -4363,7 +4408,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ebecac13b3c745150d7b6c3ea7572d372f09d627c2077e893bf26c5c7f70d282" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" -"checksum bitmask 0.5.0 (git+https://github.com/paritytech/bitmask)" = "" +"checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" "checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" "checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" @@ -4425,7 +4470,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -4438,10 +4483,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" "checksum h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "910a5e7be6283a9c91b3982fa5188368c8719cce2a3cf3b86048673bf9d9c36b" -"checksum hash-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1b03501f6e1a2a97f1618879aba3156f14ca2847faa530c4e28859638bd11483" "checksum hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ba7fb417e5c470acdd61068c79767d0e65962e70836cf6c9dfd2409f06345ce0" -"checksum hash256-std-hasher 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f5c13dbac3cc50684760f54af18545c9e80fb75e93a3e586d71ebdc13138f6a4" +"checksum hash256-std-hasher 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f8b2027c19ec91eb304999abae7307d225cf93be42af53b0039f76e98ed5af86" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" +"checksum hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8e04cb7a5051270ef3fa79f8c7604d581ecfa73d520e74f554e45541c4b5881a" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" @@ -4478,24 +4523,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" "checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917" "checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" -"checksum libp2p 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-core 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-core-derive 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-dns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-floodsub 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-identify 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-kad 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-mdns 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-mplex 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-noise 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-ping 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-plaintext 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-ratelimit 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-secio 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-tcp 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-uds 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-websocket 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum libp2p-yamux 0.5.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f5b9cd37b1ca54fa2fd0bbf0486adf2f55f8994f2be9410b65265050b24709b2" +"checksum libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bf9c56e6f04cb649fdeb806e963d2da223e3ed17748d9e924fdb836c09f76307" +"checksum libp2p-core-derive 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "debea88a3d5de9fdaf7082bd6d238f2c4c6a0420f14bdf9e1c1083b3e7c69286" +"checksum libp2p-dns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "350d0018af3668d954f61ce7311e7d64ab7c40f19a8eb895e4750efe24c3455f" +"checksum libp2p-floodsub 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bfbcf36cc58ad5d0252d8ebe9c1a87190693fe2cdbe40fb01d8046779f9a75ad" +"checksum libp2p-identify 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82e98435973e958d7dea3f5074d7fca53d0dfce2e1ac6924119a21c2991fe443" +"checksum libp2p-kad 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92bb0153418eaf0ea549008d1e22748a956c9c36af9374fbe7189d44607c14be" +"checksum libp2p-mdns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc915d0cde68a05d26a0dcb125eddce7dd2a425e97c5172ac300c1ee8716f55a" +"checksum libp2p-mplex 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "355bb370dd12809792dc020638b280e7aaf8625318018abd311c51affd0a612d" +"checksum libp2p-noise 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e86291401f4a83f9fa81c03f8a7ccf0b03ce6aaa40cba058a7ec1026a65a6fe4" +"checksum libp2p-ping 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f3277f1f7eaadf5cdde6a76fb4afbf24e0eda6e2b04f288f526c6fa2e4293a6e" +"checksum libp2p-plaintext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4842a7ab54c12459b58b9e59cbeb03e3e1fd393fef48079472856f934352772" +"checksum libp2p-ratelimit 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "32ba52ee76aaa94af533526ce5a22fbfcc69a560174fccee82f4cdb557411d33" +"checksum libp2p-secio 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00f416e1e3d0214bd7df2be2b6be8ef61771d44292b973c9e02bfbbd7f62fe46" +"checksum libp2p-tcp 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "af47af9997d69fc70aa13e6e7cd0d766614ebe74005e69e763221a64d9a0a5ef" +"checksum libp2p-uds 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa72d81501aad6998d3b1b964f68f438ef99c3aaf54d921e144e0477fa87568" +"checksum libp2p-websocket 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "647bd8862afe6e912eb34b7614f731c0ff89e8777b57d9f2f5f0fd593ecc8d9a" +"checksum libp2p-yamux 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0dbb8d08cb536a964727e77b868a026c6d92993f08e387d49163565575a478d9" "checksum librocksdb-sys 5.17.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7dfb546562f9b450237bb8df7a31961849ee9fb1186d9e356db1d7a6b7609ff2" "checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" @@ -4507,7 +4552,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" "checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" -"checksum memory-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94da53143d45f6bad3753f532e56ad57a6a26c0ca6881794583310c7cb4c885f" +"checksum memory-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7623b01a4f1b7acb7cf8e3f678f05e15e6ae26cb0b738dfeb5cc186fd6b82ef4" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" "checksum merlin 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "83c2dda19c01176e8e7148f7bdb88bbdf215a8db0641f89fc40e4b81736aeda5" "checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" @@ -4515,7 +4560,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum multistream-select 0.3.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum multistream-select 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f989d40aab0ed0d83c1cdb4856b5790e980b96548d1a921f280e985eb049f38d" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" "checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" @@ -4538,8 +4583,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2edd80cdaf3b9c7b7f524299586bb4eae43cc5eb20c7b41aa0cd741200000e38" "checksum parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00a486fd383382ddcb2de928364b1f82571c1e48274fc43b7667a4738ee4056c" "checksum parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b9db194dfbcfe3b398d63d765437a5c7232d59906e203055f0e993f6458ff1" -"checksum parity-multiaddr 0.2.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" -"checksum parity-multihash 0.1.0 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "61ae6944d4435d41f4d0f12108c5cbb9207cbb14bc8f2b4984c6e930dc9c8e41" +"checksum parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e8eab0287ccde7821e337a124dc5a4f1d6e4c25d10cc91e3f9361615dd95076" "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" "checksum parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2fec5048fba72a2e01baeb0d08089db79aead4b57e2443df172fb1840075a233" "checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" @@ -4592,7 +4637,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum rw-stream-sink 0.1.1 (git+https://github.com/tomaka/libp2p-rs?branch=substrate-tmp-2019-03-20)" = "" +"checksum rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d548a40fe17c3a77d54b82457b79fcc9b8a288d509ca20fbf5aa1dac386d22d6" "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" @@ -4620,26 +4665,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" -"checksum sr-api-macros 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-io 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-std 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum sr-version 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-balances 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-consensus 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-executive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-indices 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-metadata 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-session 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-staking 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-sudo 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support-procedural 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support-procedural-tools 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-support-procedural-tools-derive 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-system 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum srml-timestamp 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" @@ -4654,34 +4699,37 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "528aeb7351d042e6ffbc2a6fb76a86f9b622fdf7c25932798e7a82cb03bc94c6" "checksum strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1810e25f576e7ffce1ff5243b37066da5ded0310b3274c20baaeccb1145b2806" "checksum strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "572a2f4e53dd4c3483fd79e5cc10ddd773a3acb1169bbfe8762365e107110579" -"checksum substrate-basic-authorship 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)" = "" -"checksum substrate-cli 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-client 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-client-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-consensus-aura 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-consensus-aura-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-consensus-aura-slots 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-consensus-common 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-executor 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-inherents 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-keyring 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-keystore 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-network-libp2p 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-panic-handler 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-peerset 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-rpc 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-rpc-servers 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-serializer 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-service 0.3.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-state-db 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-state-machine 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-telemetry 0.3.1 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-transaction-graph 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-transaction-pool 0.1.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" -"checksum substrate-trie 0.4.0 (git+https://github.com/joystream/substrate.git?rev=2ba93e317c637ffee06153e15ca7c39f6812e88a)" = "" +"checksum substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" "checksum syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)" = "66c8865bf5a7cbb662d8b011950060b3c8743dca141b054bf7195b20d314d8e2" @@ -4716,8 +4764,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" "checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" "checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" -"checksum trie-db 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7319e28ca295f27359d944a682f7f65b419158bf1590c92cadc0000258d788" -"checksum trie-root 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3c6fef2705af3258ec46a7e22286090394a44216201a1cf7d04b78db825e543" +"checksum trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1ba73747fd3a64ab531274c04cb588dfa9d30d972d62990831e63fbce2cfec59" "checksum trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cfa2e20c4f1418ac2e71ddc418e35e1b56e34022e2146209ffdbf1b2de8b1bd9" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" diff --git a/Cargo.toml b/Cargo.toml index 75ab21afe8..098f9a0a60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,12 +23,12 @@ trie-root = '0.12.0' [dependencies.basic-authorship] git = 'https://github.com/joystream/substrate.git' package = 'substrate-basic-authorship' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.consensus] git = 'https://github.com/joystream/substrate.git' package = 'substrate-consensus-aura' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.ctrlc] features = ['termination'] @@ -37,51 +37,51 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/joystream/substrate.git' package = 'substrate-inherents' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.network] git = 'https://github.com/joystream/substrate.git' package = 'substrate-network' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.joystream-node-runtime] # clone https://github.com/joystream/substrate-runtime-joystream to this path: -path = './substrate-runtime-joystream/' +path = 'substrate-runtime-joystream' [dependencies.primitives] git = 'https://github.com/joystream/substrate.git' package = 'substrate-primitives' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.sr-io] git = 'https://github.com/joystream/substrate.git' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.substrate-cli] git = 'https://github.com/joystream/substrate.git' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.substrate-client] git = 'https://github.com/joystream/substrate.git' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.substrate-executor] git = 'https://github.com/joystream/substrate.git' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.substrate-service] git = 'https://github.com/joystream/substrate.git' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.transaction-pool] git = 'https://github.com/joystream/substrate.git' package = 'substrate-transaction-pool' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [dependencies.substrate-telemetry] git = 'https://github.com/joystream/substrate.git' package = 'substrate-telemetry' -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' [profile.release] panic = 'unwind' From c29f3af85145252b29bf2b96c3995eab9bf3adee Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 3 Apr 2019 23:00:03 +0300 Subject: [PATCH 190/350] substrate upgrade: fix timestamp in chainspec, service factory --- src/chain_spec.rs | 4 ++-- src/service.rs | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 838b6e6c3d..6ea08b17ee 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -186,7 +186,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { }), system: None, timestamp: Some(TimestampConfig { - period: SECS_PER_BLOCK / 2, // due to the nature of aura the slots are 2*period + minimum_period: SECS_PER_BLOCK / 2, // due to the nature of aura the slots are 2*period }), indices: Some(IndicesConfig { ids: vec![], @@ -283,7 +283,7 @@ fn testnet_genesis( }), system: None, timestamp: Some(TimestampConfig { - period: 3, // 3*2=6 second block time. + minimum_period: 3, // 3*2=6 second block time. }), indices: Some(IndicesConfig { ids: vec![] diff --git a/src/service.rs b/src/service.rs index 6264b306f2..46f1af125a 100644 --- a/src/service.rs +++ b/src/service.rs @@ -61,6 +61,7 @@ construct_service_factory! { let proposer = Arc::new(ProposerFactory { client: service.client(), transaction_pool: service.transaction_pool(), + inherents_pool: service.inherents_pool(), }); let client = service.client(); executor.spawn(start_aura( @@ -92,6 +93,7 @@ construct_service_factory! { client, NothingExtra, config.custom.inherent_data_providers.clone(), + true, ).map_err(Into::into) }, LightImportQueue = AuraImportQueue< @@ -105,6 +107,7 @@ construct_service_factory! { client, NothingExtra, config.custom.inherent_data_providers.clone(), + true, ).map_err(Into::into) }, } From 9221a90eef2a2251963f0d27f10148d6a05bbea3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 4 Apr 2019 00:26:10 +0300 Subject: [PATCH 191/350] substrate upgrade: enable GRANDPA --- Cargo.lock | 93 +++++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 5 +++ src/chain_spec.rs | 12 ++++-- src/service.rs | 75 ++++++++++++++++++++++++++++++++------ 4 files changed, 171 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3bd9537eef..1e0d792d75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -699,6 +699,19 @@ dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "finality-grandpa" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "fixed-hash" version = "0.3.0" @@ -1075,6 +1088,7 @@ dependencies = [ "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", @@ -1103,6 +1117,8 @@ dependencies = [ "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", @@ -2837,6 +2853,41 @@ dependencies = [ "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", ] +[[package]] +name = "srml-finality-tracker" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", +] + +[[package]] +name = "srml-grandpa" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +dependencies = [ + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", +] + [[package]] name = "srml-indices" version = "1.0.0" @@ -3347,6 +3398,43 @@ dependencies = [ "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-finality-grandpa" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +dependencies = [ + "finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-finality-grandpa-primitives" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +dependencies = [ + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", +] + [[package]] name = "substrate-inherents" version = "1.0.0" @@ -4466,6 +4554,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" +"checksum finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d415e902db2b87bd5a7df7a2b2de97a4566727a23b95ff39e1bfec25a66d4d1c" "checksum fixed-hash 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a557e80084b05c32b455963ff565a9de6f2866da023d6671705c6aff6f65e01c" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" @@ -4674,6 +4763,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" @@ -4710,6 +4801,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" "checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" diff --git a/Cargo.toml b/Cargo.toml index 098f9a0a60..72ef9fa9dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -83,6 +83,11 @@ git = 'https://github.com/joystream/substrate.git' package = 'substrate-telemetry' rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +[dependencies.grandpa] +git = 'https://github.com/joystream/substrate.git' +package = 'substrate-finality-grandpa' +rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' + [profile.release] panic = 'unwind' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 6ea08b17ee..a6f387745a 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -1,9 +1,9 @@ use hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ - AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, CouncilElectionConfig, - DataObjectTypeRegistryConfig, GenesisConfig, IndicesConfig, MembersConfig, Perbill, + AccountId, BalancesConfig, ConsensusConfig, ContentDirectoryConfig, CouncilConfig, + CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, + DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, - ContentDirectoryConfig, DataObjectStorageRegistryConfig, DownloadSessionsConfig }; use primitives::{crypto::UncheckedInto, ed25519, Pair}; use substrate_service; @@ -224,6 +224,9 @@ fn staging_testnet_config_genesis() -> GenesisConfig { stakers: initial_authorities.iter().map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator)).collect(), invulnerables: initial_authorities.iter().map(|x| x.1.clone()).collect(), }), + grandpa: Some(GrandpaConfig { + authorities: initial_authorities.iter().map(|x| (x.2.clone(), 1)).collect(), + }), council: Some(CouncilConfig { active_council: vec![], term_ends_at: 1, @@ -321,6 +324,9 @@ fn testnet_genesis( stakers: initial_authorities.iter().map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator)).collect(), invulnerables: initial_authorities.iter().map(|x| x.1.clone()).collect(), }), + grandpa: Some(GrandpaConfig { + authorities: initial_authorities.iter().map(|x| (x.2.clone(), 1)).collect(), + }), council: Some(CouncilConfig { active_council: vec![], term_ends_at: 1, diff --git a/src/service.rs b/src/service.rs index 46f1af125a..a8ac49987e 100644 --- a/src/service.rs +++ b/src/service.rs @@ -4,12 +4,14 @@ use basic_authorship::ProposerFactory; use consensus::{import_queue, start_aura, AuraImportQueue, NothingExtra, SlotDuration}; +use grandpa; use inherents::InherentDataProviders; use joystream_node_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; use log::info; use network::construct_simple_protocol; use primitives::{ed25519::Pair, Pair as PairT}; use std::sync::Arc; +use std::time::Duration; use substrate_client as client; use substrate_executor::native_executor_instance; use substrate_service::construct_service_factory; @@ -28,11 +30,26 @@ native_executor_instance!( include_bytes!("../substrate-runtime-joystream/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm") ); -#[derive(Default)] -pub struct NodeConfig { +pub struct NodeConfig { + pub grandpa_import_setup: Option<( + Arc>, + grandpa::LinkHalfForService, + )>, inherent_data_providers: InherentDataProviders, } +impl Default for NodeConfig +where + F: substrate_service::ServiceFactory, +{ + fn default() -> NodeConfig { + NodeConfig { + grandpa_import_setup: None, + inherent_data_providers: InherentDataProviders::new(), + } + } +} + construct_simple_protocol! { /// Demo protocol attachment for substrate. pub struct NodeProtocol where Block = Block { } @@ -49,34 +66,60 @@ construct_service_factory! { LightTransactionPoolApi = transaction_pool::ChainApi, LightExecutor, Block, RuntimeApi>, Block> { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, Genesis = GenesisConfig, - Configuration = NodeConfig, + Configuration = NodeConfig, FullService = FullComponents { |config: FactoryFullConfiguration, executor: TaskExecutor| FullComponents::::new(config, executor) }, AuthoritySetup = { - |service: Self::FullService, executor: TaskExecutor, key: Option>| { - if let Some(key) = key { + |mut service: Self::FullService, executor: TaskExecutor, key: Option>| { + let (block_import, link_half) = service.config.custom.grandpa_import_setup.take() + .expect("Link Half and Block Import are present for Full Services or setup failed before. qed"); + + if let Some(ref key) = key { info!("Using authority key {}", key.public()); let proposer = Arc::new(ProposerFactory { client: service.client(), transaction_pool: service.transaction_pool(), inherents_pool: service.inherents_pool(), }); + let client = service.client(); executor.spawn(start_aura( SlotDuration::get_or_compute(&*client)?, key.clone(), - client.clone(), client, + block_import.clone(), proposer, service.network(), service.on_exit(), service.config.custom.inherent_data_providers.clone(), service.config.force_authoring, )?); + + info!("Running Grandpa session as Authority {}", key.public()); } + let key = if service.config.disable_grandpa { + None + } else { + key + }; + + executor.spawn(grandpa::run_grandpa( + grandpa::Config { + local_key: key, + // FIXME #1578 make this available through chainspec + gossip_duration: Duration::from_millis(333), + justification_period: 4096, + name: Some(service.config.name.clone()) + }, + link_half, + grandpa::NetworkBridge::new(service.network()), + service.config.custom.inherent_data_providers.clone(), + service.on_exit(), + )?); + Ok(service) } }, @@ -85,17 +128,27 @@ construct_service_factory! { FullImportQueue = AuraImportQueue< Self::Block, > - { |config: &mut FactoryFullConfiguration , client: Arc>| + { |config: &mut FactoryFullConfiguration , client: Arc>| { + let slot_duration = SlotDuration::get_or_compute(&*client)?; + let (block_import, link_half) = + grandpa::block_import::<_, _, _, RuntimeApi, FullClient>( + client.clone(), client.clone() + )?; + let block_import = Arc::new(block_import); + let justification_import = block_import.clone(); + + config.custom.grandpa_import_setup = Some((block_import.clone(), link_half)); + import_queue::<_, _, _, Pair>( - SlotDuration::get_or_compute(&*client)?, - client.clone(), - None, + slot_duration, + block_import, + Some(justification_import), client, NothingExtra, config.custom.inherent_data_providers.clone(), true, ).map_err(Into::into) - }, + }}, LightImportQueue = AuraImportQueue< Self::Block, > From 86b5cc75ec4bcf8455c7bd2ae3d02499cf2b5b37 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 4 Apr 2019 10:47:20 +0300 Subject: [PATCH 192/350] substrate upgrade: support AnySignature --- src/chain_spec.rs | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index a6f387745a..dd234707a7 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -5,7 +5,7 @@ use joystream_node_runtime::{ DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, }; -use primitives::{crypto::UncheckedInto, ed25519, Pair}; +use primitives::{crypto::UncheckedInto, ed25519, sr25519, Pair}; use substrate_service; use substrate_telemetry::TelemetryEndpoints; @@ -38,18 +38,12 @@ fn authority_key(s: &str) -> AuthorityId { .public() } -// New sr25519 for account keys -// fn account_key(s: &str) -> AccountId { -// sr25519::Pair::from_string(&format!("//{}", s), None) -// .expect("static values are valid; qed") -// .public() -// } - -// Continue to use ed25519 for account keys for now +// from_string for both signature schemes is identical. +// So we can use this method to create account keys for use with both schemes. fn account_key(s: &str) -> AccountId { - ed25519::Pair::from_string(&format!("//{}", s), None) - .expect("static values are valid; qed") - .public() + sr25519::Pair::from_string(&format!("//{}", s), None) + .expect("static values are valid; qed") + .public() } impl Alternative { From 2bd87a3b6cfabb960b9d70831ecb34a88c85e873 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 4 Apr 2019 15:48:47 +0300 Subject: [PATCH 193/350] remove inaccurate comment about deriving accountid from_string --- src/chain_spec.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index dd234707a7..3ae071c7ca 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -38,8 +38,6 @@ fn authority_key(s: &str) -> AuthorityId { .public() } -// from_string for both signature schemes is identical. -// So we can use this method to create account keys for use with both schemes. fn account_key(s: &str) -> AccountId { sr25519::Pair::from_string(&format!("//{}", s), None) .expect("static values are valid; qed") From 2196301d63df55872f9efc446a13969fd915b4c3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 5 Apr 2019 17:09:30 +0300 Subject: [PATCH 194/350] configure actors in genesisconfig --- src/chain_spec.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 3ae071c7ca..23d8e65220 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -4,6 +4,7 @@ use joystream_node_runtime::{ CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, + ActorsConfig, }; use primitives::{crypto::UncheckedInto, ed25519, sr25519, Pair}; use substrate_service; @@ -260,6 +261,11 @@ fn staging_testnet_config_genesis() -> GenesisConfig { downloads: Some(DownloadSessionsConfig{ first_download_session_id: 1, }), + actors: Some(ActorsConfig{ + enable_storage_role: true, + request_life_time: 300, + _genesis_phantom_data: Default::default(), + }) } } @@ -360,5 +366,10 @@ fn testnet_genesis( downloads: Some(DownloadSessionsConfig{ first_download_session_id: 1, }), + actors: Some(ActorsConfig{ + enable_storage_role: true, + request_life_time: 300, + _genesis_phantom_data: Default::default(), + }) } } From 0434a3c6eb46f1bb9c919ceae9afccdaa231fa43 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 8 Apr 2019 10:24:02 +0300 Subject: [PATCH 195/350] update substrate: track upstream v1.0 branch --- Cargo.lock | 774 ++++++++++++++++++++++++------------------------- Cargo.toml | 26 +- src/service.rs | 2 - 3 files changed, 400 insertions(+), 402 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e0d792d75..2273534522 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -746,7 +746,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1082,19 +1082,19 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1109,28 +1109,28 @@ dependencies = [ "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] @@ -2724,7 +2724,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2736,24 +2736,24 @@ dependencies = [ [[package]] name = "sr-io" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2761,15 +2761,15 @@ dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "sr-std" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2777,205 +2777,205 @@ dependencies = [ [[package]] name = "sr-version" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-aura" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-balances" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-consensus" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-executive" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-finality-tracker" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-grandpa" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-indices" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-metadata" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-session" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-staking" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-sudo" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-support" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2984,42 +2984,42 @@ dependencies = [ "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-support-procedural" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3029,33 +3029,33 @@ dependencies = [ [[package]] name = "srml-system" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "srml-timestamp" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] @@ -3174,18 +3174,18 @@ dependencies = [ [[package]] name = "substrate-basic-authorship" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] @@ -3202,7 +3202,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3218,16 +3218,16 @@ dependencies = [ "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3236,7 +3236,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3248,24 +3248,24 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-client-db" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -3274,90 +3274,90 @@ dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-consensus-aura" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-aura-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-consensus-aura-slots" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-authorities" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-consensus-common" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3366,17 +3366,17 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3387,13 +3387,13 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3401,67 +3401,67 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-finality-grandpa-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-inherents" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-keyring" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-keystore" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3470,19 +3470,19 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3492,19 +3492,19 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network-libp2p" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3520,7 +3520,7 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3531,34 +3531,34 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-panic-handler" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3567,7 +3567,7 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3584,7 +3584,7 @@ dependencies = [ [[package]] name = "substrate-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3604,7 +3604,7 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)", "tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3615,7 +3615,7 @@ dependencies = [ [[package]] name = "substrate-rpc" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3627,35 +3627,35 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc-servers" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-serializer" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3664,7 +3664,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3677,20 +3677,20 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3698,18 +3698,18 @@ dependencies = [ [[package]] name = "substrate-state-db" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-state-machine" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3717,9 +3717,9 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", "trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3727,7 +3727,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3745,7 +3745,7 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3753,30 +3753,30 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-transaction-pool" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", - "substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", ] [[package]] name = "substrate-trie" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7#59d5ec144704cec017a01f3e4dbb6b73c5542bf7" +source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" dependencies = [ "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4559,7 +4559,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -4754,28 +4754,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" -"checksum sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" @@ -4790,39 +4790,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "528aeb7351d042e6ffbc2a6fb76a86f9b622fdf7c25932798e7a82cb03bc94c6" "checksum strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1810e25f576e7ffce1ff5243b37066da5ded0310b3274c20baaeccb1145b2806" "checksum strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "572a2f4e53dd4c3483fd79e5cc10ddd773a3acb1169bbfe8762365e107110579" -"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" "checksum substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)" = "" -"checksum substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" -"checksum substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=59d5ec144704cec017a01f3e4dbb6b73c5542bf7)" = "" +"checksum substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" "checksum syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)" = "66c8865bf5a7cbb662d8b011950060b3c8743dca141b054bf7195b20d314d8e2" diff --git a/Cargo.toml b/Cargo.toml index 72ef9fa9dd..fee1cad5fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,12 +23,12 @@ trie-root = '0.12.0' [dependencies.basic-authorship] git = 'https://github.com/joystream/substrate.git' package = 'substrate-basic-authorship' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.consensus] git = 'https://github.com/joystream/substrate.git' package = 'substrate-consensus-aura' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.ctrlc] features = ['termination'] @@ -37,12 +37,12 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/joystream/substrate.git' package = 'substrate-inherents' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.network] git = 'https://github.com/joystream/substrate.git' package = 'substrate-network' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.joystream-node-runtime] # clone https://github.com/joystream/substrate-runtime-joystream to this path: @@ -51,42 +51,42 @@ path = 'substrate-runtime-joystream' [dependencies.primitives] git = 'https://github.com/joystream/substrate.git' package = 'substrate-primitives' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.sr-io] git = 'https://github.com/joystream/substrate.git' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.substrate-cli] git = 'https://github.com/joystream/substrate.git' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.substrate-client] git = 'https://github.com/joystream/substrate.git' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.substrate-executor] git = 'https://github.com/joystream/substrate.git' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.substrate-service] git = 'https://github.com/joystream/substrate.git' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.transaction-pool] git = 'https://github.com/joystream/substrate.git' package = 'substrate-transaction-pool' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.substrate-telemetry] git = 'https://github.com/joystream/substrate.git' package = 'substrate-telemetry' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [dependencies.grandpa] git = 'https://github.com/joystream/substrate.git' package = 'substrate-finality-grandpa' -rev = '59d5ec144704cec017a01f3e4dbb6b73c5542bf7' +rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' [profile.release] panic = 'unwind' diff --git a/src/service.rs b/src/service.rs index a8ac49987e..87447e7ef5 100644 --- a/src/service.rs +++ b/src/service.rs @@ -146,7 +146,6 @@ construct_service_factory! { client, NothingExtra, config.custom.inherent_data_providers.clone(), - true, ).map_err(Into::into) }}, LightImportQueue = AuraImportQueue< @@ -160,7 +159,6 @@ construct_service_factory! { client, NothingExtra, config.custom.inherent_data_providers.clone(), - true, ).map_err(Into::into) }, } From e9086d380250838c7136eb93c016451978bc36fa Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 8 Apr 2019 15:53:15 +0300 Subject: [PATCH 196/350] staging testnet --- src/chain_spec.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 23d8e65220..76b7bdc2f8 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -134,11 +134,12 @@ pub fn live_testnet_config() -> Result { /// Staging testnet config pub fn staging_testnet_config() -> ChainSpec { let boot_nodes = vec![ - String::from("/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi") + String::from("/dns4/bootnode1.joystream.org/tcp/30333/p2p/QmeDa8jASqMRpTh4YCkeVEuHo6nbMcFDzD9pkUxTr3WxhM"), + String::from("/dns4/bootnode2.joystream.org/tcp/30333/p2p/QmbjzmNMjzQUMHpzqcPHW5DnFeUjM3x4hbiDSMkYv1McD3"), ]; ChainSpec::from_genesis( "Joystream Staging Testnet", - "joystream_staging_3", + "joy_staging_4", staging_testnet_config_genesis, boot_nodes, Some(TelemetryEndpoints::new(vec![( @@ -153,12 +154,12 @@ pub fn staging_testnet_config() -> ChainSpec { fn staging_testnet_config_genesis() -> GenesisConfig { let initial_authorities: Vec<(AccountId, AccountId, AuthorityId)> = vec![( - hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].unchecked_into(), // stash - hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].unchecked_into(), // controller (can it be same as stash?) - hex!["313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4"].unchecked_into(), // session key + hex!["0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65"].unchecked_into(), // stash + hex!["609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339"].unchecked_into(), // controller + hex!["65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2"].unchecked_into(), // session key )]; let endowed_accounts = vec![hex![ - "6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f" + "0ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30" ] .unchecked_into()]; @@ -290,7 +291,7 @@ fn testnet_genesis( ids: vec![] }), balances: Some(BalancesConfig { - existential_deposit: 500, + existential_deposit: 0, transfer_fee: 0, creation_fee: 0, balances: endowed_accounts.iter().cloned() From 6e4ce5f37ae928b65e3d632db87424435d6830cb Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 10 Apr 2019 11:43:22 +0300 Subject: [PATCH 197/350] update for latest storage runtime --- src/chain_spec.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 76b7bdc2f8..b74f143307 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -1,6 +1,6 @@ use hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ - AccountId, BalancesConfig, ConsensusConfig, ContentDirectoryConfig, CouncilConfig, + AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, @@ -253,9 +253,6 @@ fn staging_testnet_config_genesis() -> GenesisConfig { data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), - content_directory: Some(ContentDirectoryConfig{ - first_metadata_id: 1, - }), data_object_storage_registry: Some(DataObjectStorageRegistryConfig{ first_relationship_id: 1, }), @@ -358,9 +355,6 @@ fn testnet_genesis( data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), - content_directory: Some(ContentDirectoryConfig{ - first_metadata_id: 1, - }), data_object_storage_registry: Some(DataObjectStorageRegistryConfig{ first_relationship_id: 1, }), From 7a0c74d776c883b8366ae9b6fc1ae34b1e9e9902 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 10 Apr 2019 13:03:33 +0300 Subject: [PATCH 198/350] ignore runtime folder symlink --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f96bd5d8a4..8b81eb1741 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ # JetBrains IDEs .idea -substrate-runtime-joystream/ +substrate-runtime-joystream From 5720c045fc7105d1937202ceb52cb7595a0995bc Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 14 Apr 2019 20:09:30 +0300 Subject: [PATCH 199/350] update latest substrate v1.0 branch --- Cargo.lock | 780 +++++++++++++++++++++++----------------------- Cargo.toml | 26 +- src/chain_spec.rs | 16 +- 3 files changed, 412 insertions(+), 410 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2273534522..b5b5ee10df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,3 +1,5 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. [[package]] name = "MacTypes-sys" version = "2.1.0" @@ -746,7 +748,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1078,23 +1080,23 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 4.1.0", + "joystream-node-runtime 5.1.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1102,35 +1104,35 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "4.1.0" +version = "5.1.0" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] @@ -2724,7 +2726,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2736,24 +2738,24 @@ dependencies = [ [[package]] name = "sr-io" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2761,15 +2763,15 @@ dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "sr-std" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2777,205 +2779,205 @@ dependencies = [ [[package]] name = "sr-version" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-aura" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-balances" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-consensus" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-executive" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-finality-tracker" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-grandpa" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-indices" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-metadata" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-session" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-staking" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-sudo" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-support" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2984,42 +2986,42 @@ dependencies = [ "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-support-procedural" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3029,33 +3031,33 @@ dependencies = [ [[package]] name = "srml-system" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "srml-timestamp" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] @@ -3174,18 +3176,18 @@ dependencies = [ [[package]] name = "substrate-basic-authorship" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] @@ -3202,7 +3204,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3218,16 +3220,16 @@ dependencies = [ "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3236,7 +3238,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3248,24 +3250,24 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-client-db" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -3274,90 +3276,90 @@ dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-consensus-aura" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-aura-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-consensus-aura-slots" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-authorities" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-consensus-common" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3366,17 +3368,17 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3387,13 +3389,13 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3401,67 +3403,67 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-finality-grandpa-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-inherents" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-keyring" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-keystore" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3470,19 +3472,19 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3492,19 +3494,19 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network-libp2p" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3520,7 +3522,7 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3531,34 +3533,34 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-panic-handler" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3567,7 +3569,7 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3584,7 +3586,7 @@ dependencies = [ [[package]] name = "substrate-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3604,7 +3606,7 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)", "tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3615,7 +3617,7 @@ dependencies = [ [[package]] name = "substrate-rpc" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3627,35 +3629,35 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc-servers" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-serializer" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3664,7 +3666,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3677,20 +3679,20 @@ dependencies = [ "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3698,18 +3700,18 @@ dependencies = [ [[package]] name = "substrate-state-db" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-state-machine" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3717,9 +3719,9 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3727,7 +3729,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3745,7 +3747,7 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3753,30 +3755,30 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-transaction-pool" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", - "substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] [[package]] name = "substrate-trie" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991#89bbb7b6d0e076f0eda736b330f5f792aa2e2991" +source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4559,7 +4561,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -4754,28 +4756,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" -"checksum sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" @@ -4790,39 +4792,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "528aeb7351d042e6ffbc2a6fb76a86f9b622fdf7c25932798e7a82cb03bc94c6" "checksum strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1810e25f576e7ffce1ff5243b37066da5ded0310b3274c20baaeccb1145b2806" "checksum strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "572a2f4e53dd4c3483fd79e5cc10ddd773a3acb1169bbfe8762365e107110579" -"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)" = "" -"checksum substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" -"checksum substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=89bbb7b6d0e076f0eda736b330f5f792aa2e2991)" = "" +"checksum substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" "checksum syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)" = "66c8865bf5a7cbb662d8b011950060b3c8743dca141b054bf7195b20d314d8e2" diff --git a/Cargo.toml b/Cargo.toml index fee1cad5fa..593cbc2c57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,12 +23,12 @@ trie-root = '0.12.0' [dependencies.basic-authorship] git = 'https://github.com/joystream/substrate.git' package = 'substrate-basic-authorship' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.consensus] git = 'https://github.com/joystream/substrate.git' package = 'substrate-consensus-aura' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.ctrlc] features = ['termination'] @@ -37,12 +37,12 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/joystream/substrate.git' package = 'substrate-inherents' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.network] git = 'https://github.com/joystream/substrate.git' package = 'substrate-network' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.joystream-node-runtime] # clone https://github.com/joystream/substrate-runtime-joystream to this path: @@ -51,42 +51,42 @@ path = 'substrate-runtime-joystream' [dependencies.primitives] git = 'https://github.com/joystream/substrate.git' package = 'substrate-primitives' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.sr-io] git = 'https://github.com/joystream/substrate.git' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.substrate-cli] git = 'https://github.com/joystream/substrate.git' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.substrate-client] git = 'https://github.com/joystream/substrate.git' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.substrate-executor] git = 'https://github.com/joystream/substrate.git' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.substrate-service] git = 'https://github.com/joystream/substrate.git' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.transaction-pool] git = 'https://github.com/joystream/substrate.git' package = 'substrate-transaction-pool' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.substrate-telemetry] git = 'https://github.com/joystream/substrate.git' package = 'substrate-telemetry' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [dependencies.grandpa] git = 'https://github.com/joystream/substrate.git' package = 'substrate-finality-grandpa' -rev = '89bbb7b6d0e076f0eda736b330f5f792aa2e2991' +rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' [profile.release] panic = 'unwind' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index b74f143307..378f73d65a 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -139,7 +139,7 @@ pub fn staging_testnet_config() -> ChainSpec { ]; ChainSpec::from_genesis( "Joystream Staging Testnet", - "joy_staging_4", + "joy_staging_5", staging_testnet_config_genesis, boot_nodes, Some(TelemetryEndpoints::new(vec![( @@ -170,7 +170,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { const MINUTES: u64 = 60 / SECS_PER_BLOCK; const HOURS: u64 = MINUTES * 60; const DAYS: u64 = HOURS * 24; - const STASH: u128 = 100 * DOLLARS; + const STASH: u128 = 50 * DOLLARS; const ENDOWMENT: u128 = 100_000_000 * DOLLARS; GenesisConfig { @@ -194,7 +194,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { transfer_fee: 0, creation_fee: 0, vesting: vec![], - transaction_base_fee: 0, + transaction_base_fee: 1, transaction_byte_fee: 0, }), sudo: Some(SudoConfig { @@ -210,7 +210,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { offline_slash: Perbill::from_millionths(10_000), // 1/ 100 => 1% session_reward: Perbill::from_millionths(1_000), // 1/1000 => 0.1% (min stake -> 1000 units for reward to be GT 0) current_session_reward: 0, - validator_count: 10, + validator_count: 20, sessions_per_era: 6, bonding_duration: 60 * MINUTES, offline_slash_grace: 4, @@ -226,7 +226,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { term_ends_at: 1, }), election: Some(CouncilElectionConfig { - auto_start: false, + auto_start: true, announcing_period: 3 * DAYS, voting_period: 1 * DAYS, revealing_period: 1 * DAYS, @@ -296,7 +296,7 @@ fn testnet_genesis( .chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH))) .collect(), vesting: vec![], - transaction_base_fee: 0, + transaction_base_fee: 1, transaction_byte_fee: 0, }), sudo: Some(SudoConfig { @@ -328,7 +328,7 @@ fn testnet_genesis( term_ends_at: 1, }), election: Some(CouncilElectionConfig { - auto_start: false, + auto_start: true, announcing_period: 50, voting_period: 50, revealing_period: 50, @@ -339,7 +339,7 @@ fn testnet_genesis( min_voting_stake: 10, }), proposals: Some(ProposalsConfig { - approval_quorum: 60, + approval_quorum: 66, min_stake: 100, cancellation_fee: 5, rejection_fee: 10, From 7e9b66c9641e91bb786b943562306bb8c2b80e09 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 14 Apr 2019 21:26:37 +0300 Subject: [PATCH 200/350] set bonding duration to reasonable number --- src/chain_spec.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 378f73d65a..e599646029 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -212,7 +212,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { current_session_reward: 0, validator_count: 20, sessions_per_era: 6, - bonding_duration: 60 * MINUTES, + bonding_duration: 1, // Number of ERAs offline_slash_grace: 4, minimum_validator_count: 1, stakers: initial_authorities.iter().map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator)).collect(), @@ -312,7 +312,7 @@ fn testnet_genesis( minimum_validator_count: 1, validator_count: 2, sessions_per_era: 5, - bonding_duration: 2 * 60 * 12, + bonding_duration: 1, // Number of Eras offline_slash: Perbill::zero(), session_reward: Perbill::zero(), current_session_reward: 0, From 09e4d7dbd22e0898ecb0fe62217521dfb56df431 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 14 Apr 2019 21:52:15 +0300 Subject: [PATCH 201/350] athens chainspec --- res/joy_testnet_1.json | 69 ------------------------------ res/joy_testnet_2.json | 96 ++++++++++++++++++++++++++++++++++++++++++ src/chain_spec.rs | 2 +- 3 files changed, 97 insertions(+), 70 deletions(-) delete mode 100644 res/joy_testnet_1.json create mode 100644 res/joy_testnet_2.json diff --git a/res/joy_testnet_1.json b/res/joy_testnet_1.json deleted file mode 100644 index c9784401b5..0000000000 --- a/res/joy_testnet_1.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Joystream Testnet v1", - "id": "joy_testnet_1", - "bootNodes": [ - "/dns4/testnet-boot.joystream.org/tcp/30333/p2p/QmRMZZQDsDDg2bsYRBFT9FiWsFXpWfgGHqJFYcRfz9Pfyi" - ], - "telemetryUrl": "wss://telemetry.polkadot.io/submit/", - "protocolId": null, - "consensusEngine": null, - "properties": { - "tokenDecimals": 0, - "tokenSymbol": "JOY" - }, - "genesis": { - "raw": { - "0x7b3279da6dfc5dcfbdd4098b0578c733": "0x0a000000000000000000000000000000", - "0x0b21b3456b23e90d061941ab416f5ea2": "0x00000000000000000000000000000000", - "0x3a617574683a6c656e": "0x01000000", - "0x2dce29f1a768624dc5343063cb77f77d": "0x0a000000", - "0x30503a949860f4244ab6e457807234c6": "0x8070000000000000", - "0x579ab55d37b1220812be3c3df29d4858": "0x0000000000000000", - "0xd9c94b41dc87728ebf0a966d2e9ad9c0": "0x6400000000000000", - "0x5278a9149ec1adfa8090a8ad336c881e": "0x0300000000000000", - "0x7d78893315c59fe96c583efc57f97a0f": "0x64000000000000000000000000000000", - "0xe9d19aa1c8f2c8eba1a85e4db92740c8": "0xe8030000000000000000000000000000", - "0xcc2719d196dc6b2ef83fd3399f9a8c7b": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0x45411b6c68791e09f4851417f7482619": "0xd0070000000000000000000000000000", - "0x92b3170bbdf31d1483495c9b06ba7d70": "0x10270000", - "0x3a617574683a00000000": "0x313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0x3b7d32346a3315a351084927a27d06a7": "0x00000000000000000000000000000000", - "0xf4039aa8ae697861be900c58239e96f7": "0x00000000000000000000000000000000", - "0x3a636f6465": "0x0061736d010000000191011760027f7f017f60037f7f7f017f60017f0060027f7f0060037f7f7f0060057f7f7f7f7f017f60047f7f7f7f017f60047f7f7f7f0060047f7f7e7f017f60017e0060017f017f60000060027f7e0060037e7f7f0060017f017e60037f7e7e0060047f7f7e7e0060037f7e7e017f60027f7f017e60027e7f017f60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e760c6578745f74776f785f313238000403656e76146578745f6765745f73746f726167655f696e746f000503656e760e6578745f626c616b65325f323536000403656e76126578745f656432353531395f766572696679000603656e760f6578745f7365745f73746f72616765000703656e76116578745f636c6561725f73746f72616765000303656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000803656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e76126578745f6578697374735f73746f72616765000003656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000703656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000203f901f7010b0b030a030103030303030303030c030202030303020d0e020303020b02020302040302030202010700000304040403020302020202070300040303020202020202020202020202030304030403030a030303030f001011030303040004030f0f0a10030203030a020303110f03030209090309030202020202020202020303030b020303030303030203030402030303070403020202020303030303030302030303030303030303030202000302020302020203020202070403121212030407000012120304030303121212030312121212000005130a0207020302020403020a02010a000e0601000000010001010101141415151604050170015c5c05030100110619037f01418080c0000b7f0041b8d5c2000b7f0041b8d5c2000b07f4020f066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00ca0110436f72655f617574686f72697469657300cb0112436f72655f657865637574655f626c6f636b00cc0115436f72655f696e697469616c6973655f626c6f636b00d201114d657461646174615f6d6574616461746100d3011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d9011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636b00da0120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300db011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300de0118426c6f636b4275696c6465725f72616e646f6d5f7365656400df012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00e00115417572614170695f736c6f745f6475726174696f6e00e10109a301010041010b5bf401d001e2013938e301d101f801f901fa01fc012d2ea901c301a701332a2c4b8b018c018a014243414c8501860184014d8801890187014ec501c601c4014fa501a601a40150bd01be0151c101c201c00152b901ae01ba015398019101a30154eb01e901ec015534323556a801bf018d01970196019501940193019201b701ab01b501ad01b801ac01aa01b601b401b301b201b101b001af01ea01f5010a89fa13f70105001010000b0a004184c6c2001024000b930c03057f017e027f230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020022034101460d00024020034102460d0020034103470d0220012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41003a00002001280200210620022001280208220136020c2002410c6a2002101320022802042205200428020022036b20014f0d05200320016a22042003490d1520054101742203200420042003491b22034100480d152005450d0a20022802002005200310142204450d0b0c180b200141086a280200210320012802042105410110122201450d0d20024101360204200241086a22042004280200220641016a36020020022001360200200120066a41033a00002005290300210720022802042205200428020022016b41084f0d02200141086a22042001490d1420054101742201200420042001491b22014100480d142005450d0520022802002005200110142204450d060c120b20012802042101410110122203450d0d20024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d02200341206a22042003490d1320054101742203200420042003491b22034100480d132005450d0620022802002005200310142204450d070c0f0b200141086a280200210320012802042101410110122204450d0d200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a200210132003450d1720034105742108200241086a220928020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d1720054101742204200320032004491b22044100480d172005450d01200228020020052004101422060d020c0e0b20022802002106200421030c020b200410122206450d0c0b200220043602042002200636020020092802002103200421050b2009200341206a2204360200200620036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200841606a22080d000c180b0b200228020021040c100b200228020021040c0d0b200228020021040c130b2001101222040d0c0b200141011015000b2003101222040d080b200341011015000b2003101222040d0d0b200341011015000b200441011015000b410141011015000b410141011015000b410141011015000b410141011015000b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a200737000002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110142204450d020c040b200228020021040c040b2001101222040d020b200141011015000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c020b2002200336020420022004360200200241086a28020021030b200241086a200320016a360200200420036a2006200110fe011a0b20002002290300370200200041086a200241086a280200360200200241106a24000b0700200010f0010b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410142203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010142203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2000101222030d0b0b200041011015000b200010122203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101422020d020c070b200128020021020c020b200010122202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011015000b200441011015000b200041011015000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000b0b0020002001200210f2010b0d004198a4c1004122100800000bef1004047f017e087f037e230041a0046b22022400200241186a200110170240024002400240024002400240024002402002280218450d00200241003a00880220024188026a2001280200220320012802042204410047220510fe011a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d008802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b20004203370370200241a0046a24000f0b200241b0016a2001101802400240024020022d00b0014102460d00200241b8036a41206a200241b0016a41206a280200360200200241b8036a41186a200241b0016a41186a290300370300200241b8036a41106a200241b0016a41106a290300370300200241b8036a41086a200241b0016a41086a290300370300200220022903b0013703b80320024188026a41386a2207420037030020024188026a41306a2208420037030020024188026a41286a2209420037030020024188026a41206a220a420037030020024188026a41186a220b420037030020024188026a41106a220c420037030020024188026a41086a220d4200370300200242003703880220024188026a20012802002203200141046a220e280200220441c000200441c000491b220510fe011a200e200420056b3602002001200320056a3602002004413f4d0d00200241e0036a41386a2007290300370300200241e0036a41306a2008290300370300200241e0036a41286a2009290300370300200241e0036a41206a200a290300370300200241e0036a41186a200b290300370300200241e0036a41106a200c290300370300200241e0036a41086a200d29030037030020022002290388023703e003200241086a200110192002280208450d002002290310210f200141046a220e2802002104200241003a00880220024188026a200128020022072004410047220510fe011a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310088022210500d01200241003a00880220024188026a20052003410047220410fe011a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310088024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024188016a41206a200241b8036a41206a28020036020020024188016a41186a200241b8036a41186a29030037030020024188016a41106a200241b8036a41106a29030037030020024188016a41086a200241b8036a41086a290300370300200241e0026a41086a200241e0036a41086a290300370300200241e0026a41106a200241e0036a41106a290300370300200241e0026a41186a200241e0036a41186a290300370300200241e0026a41206a200241e0036a41206a290300370300200241e0026a41286a200241e0036a41286a290300370300200241e0026a41306a200241e0036a41306a290300370300200241e0026a41386a200241e0036a41386a290300370300200220022903b80337038801200220022903e0033703e0020c030b20052004101a000b20052004101a000b20042003101a000b200241b0016a41206a220420024188016a41206a280200360200200241b0016a41186a220520024188016a41186a290300370300200241b0016a41106a220320024188016a41106a290300370300200241b0016a41086a220e20024188016a41086a29030037030020024188026a41086a2207200241e0026a41086a29030037030020024188026a41106a2208200241e0026a41106a29030037030020024188026a41186a2209200241e0026a41186a29030037030020024188026a41206a220a200241e0026a41206a29030037030020024188026a41286a220b200241e0026a41286a29030037030020024188026a41306a220c200241e0026a41306a29030037030020024188026a41386a220d200241e0026a41386a29030037030020022002290388013703b001200220022903e00237038802024020064202520d0020004203370370200241a0046a24000f0b200241e0006a41206a2004280200360200200241e0006a41186a2005290300370300200241e0006a41106a2003290300370300200241e0006a41086a200e290300370300200241206a41086a2007290300370300200241206a41106a2008290300370300200241206a41186a2009290300370300200241206a41206a200a290300370300200241206a41286a200b290300370300200241206a41306a200c290300370300200241206a41386a200d290300370300200220022903b00137036020022002290388023703200b20024188026a2001101b20022d0088022101200241e0026a20024188026a41017241d70010fe011a02402001410b470d0020004203370370200241a0046a24000f0b200241b0016a200241e0026a41d70010fe011a2000200f37030020002002290360370308200041106a200241e0006a41086a290300370300200041186a200241e0006a41106a290300370300200041206a200241e0006a41186a290300370300200041286a200241e0006a41206a2802003602002000200229032037022c200041346a200241206a41086a2903003702002000413c6a200241206a41106a290300370200200041c4006a200241206a41186a290300370200200041cc006a200241206a41206a290300370200200041d4006a200241206a41286a290300370200200041dc006a200241d0006a290300370200200041e4006a200241d8006a29030037020020004188016a20013a000020004180016a2010370300200020113703782000200637037020004189016a200241b0016a41d70010fe011a200241a0046a24000bcb0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000322034103712204450d00024020044101460d0020044102470d0241002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810fe011a200141046a200620086b3602002001200520086a36020020070d0520022f010c20022d000e411074724108742003724102762101410121040c050b200241003a000b2002410b6a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b20034102762101410121040c030b200341044f0d004100210420024100360204200241046a200520064104200641044922081b220310fe011a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004101a000b20042006101a000b8f0801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510fe011a0240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441f0014f0d01410121010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410fe011a200141046a200620046b3602002001200520046a36020041012101200641014d0d0441ef01210420022f015041ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410fe011a200141046a200620046b3602002001200520046a360200200641034d0d0441ffff03210441012101200228025041ffff034b0d08200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10fd011a200241d0006a2005200410fe011a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c020b200041023a0000200241f0006a24000f0b20052004101a000b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bc00503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510fe011a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d000822044103712203450d002004ad2107024020034101460d0020034102470d02200241003a0006200241003b0104200241046a200520064103200641034922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320023301042002310006421086844208862007844202882107420121080c050b200241003a0008200241086a20052006410047220410fe011a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b2004410276ad2107420121080c030b0240024020044102762204450d0020044104470d014200210820024200370308200241086a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0320022903082107420121080c040b20024100360208200241086a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d0120023502082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410fe011a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004101a000b20042006101a000b20042006101a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241dcc6c2003602082002200241046a360228200220023602202002200241206a360218200241086a41ecc6c200103a000b965a05057f027e017f047e087f230041c0056b22022400200241003a00f003200241f0036a2001280200220320012802042204410047220510fe011a0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d00f0032204410a4b0d0b024020040e0b00070405020809060b030a000b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d72200141046a200620046b3602002001200520046a3602002006450dab0120022d00f003450d0e0cab010b2000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22053602002006450d0a4105210420022d00f0032206450d1320064101460d1220064102470d14200241003a00f003200241f0036a20052003410047220610fe011a20032006490d7c200141046a200320066b3602002001200520066a3602002003450d1420022d00f00321014200210742002108410421040c170b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22053602002006450d0a4106210420022d00f003220641034b0d9801024020060e04001a1819000b200241f0036a2001107420022802f0032201450d980120022902f4032107410221040c9a010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002000410b3a0000200241c0056a24000f0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450d0c20022d00f0032204450d0b20044101470d0c200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0c20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241f8006a20011075410421042002290378a7450d24200241f8006a41106a29030021072002290380012108200241e0006a200110752002290360a7450d24200241f0006a290300210c2002290368210d200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410321040c250b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22043602002006450d6320022d00f003220541044b0d63024020050e05001d1a1b18000b200242003703f803200242003703f003200241f0036a20042003411020034110491b220510fe011a200141046a200320056b3602002001200420056a3602002003410f4d0d63200241f8036a290300210720022903f003210820024198026a20011017200228029802450d63200228029c022204417f4c0d9c012004450d61200410762206450d8a0120062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d8b012003200920056b3602002001200128020020056a36020020052004470d620c9b010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22043602002006450d6720022d00f003220641054b0d6741032109024020060e06009a0120211f22000b200241186a200110172002280218450d67200228021c2204417f4c0d9b012004450d58200410762205450d820120052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d83012003200920066b3602002001200128020020066a36020020062004470d590c98010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b220e3602002001200520046a22103602002006450d3320022d00f003220f410a4b0d33410221040240200f0e0b39002c2d2a2f302e332b31390b200241a0016a2001101720022802a001450d3320022802a40122054108762103410321040c350b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450d0a20022d00f0032204450d0920044101470d0a200241f0036a20011018200241c8046a41086a2205200241fc036a290200370300200241c8046a41106a220620024184046a290200370300200241c8046a41186a22032002418c046a290200370300200220022902f4033703c80420022d00f00322014102460d0a20022f00f10320022d00f303411074722104200241d0026a41186a2003290300370300200241d0026a41106a2006290300370300200241d0026a41086a2005290300370300200220022903c8043703d002410321050c1b0b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b3602002001200520046a3602002006450d940120022d00f003450d050c94010b200241003a00f003200241f0036a20052006410047220410fe011a20062004490d71200141046a200620046b22033602002001200520046a22113602002006450d4c4110210420022d00f003221241104b0d4c024020120e110040423d4447434b3f493c3e453b8c01413a000b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d4c200241f8036a290300210c20022903f003210a410221040c490b2000410b3a0000200241c0056a24000f0b42002107410521040c0a0b410621040c8d010b200241086a200110192002290308a7450d9c0120022903102107200041003a0000200041106a2007370300200041086a4202370300200241c0056a24000f0b200241a8026a2001101720022802a802450d8e0120022802ac022204417f4c0d92012004450d1f200410762206450d7520062001280200200141046a22032802002205200420052004491b220510fe011a200328020022092005490d762003200920056b3602002001200128020020056a36020020052004470d200c8a010b200241f0036a20011018200241c8046a41086a220420024190046a280200360200200220024188046a2903003703c80420022d00f00322054102470d0d0b200241f0036a41086a200241d0026a41086a280200360200200220022903d0023703f0030c87010b200241f0036a2001101b20022d00f0032104200241c8046a200241f0036a41017241d70010fe011a2004410b470d100b2000410b3a0000200241c0056a24000f0b20024190016a20011019410341052002280290011b210442002107200229039801210a420021080c030b200241f0036a20034120200341204922091b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a36020020090d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210120022800f303210520022900f703210a200228008704210620022900ff032108200241a4056a41046a220320042d00003a0000200220022f01b20522043b01aa05200220022802ac053602a405200241c8046a41046a20032d00003a0000200220043b01d002200220022802a4053602c80442002107410221040c030b420021070b420021080b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f01d0023b01b405200220022902c8043703f003024020044105470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b01b002200220022903f00337039803200041186a2008370000200041106a2007200a84370000200041096a20013a0000200041086a20043a0000200041043a0000200041206a20063600002000410c6a20053600002000410a6a20022f01b0023b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d10200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01be05200220022802ac053602d002410121090c110b200242003703f003200241f0036a20052003410820034108491b220610fe011a200141046a200320066b3602002001200520066a360200200341074d0d7f20022903f0032107410521040c80010b41002109200241f0036a2003412020034120491b22066a41004100412020066b2006411f4b1b10fd011a200241f0036a2005200610fe011a200141046a200320066b3602002001200520066a3602002003411f4d0d10200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210520022800f303210120022900f703210720022900ff0321082002280087042106200241d0026a41046a20032d00003a0000200220022f01b2053b01b002200220022802ac053602d002410121090c110b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4b20022802f0032106410621090c030b20022d00f303411074210320022f00f1032109200241fc036a290200210a20024184046a280200210620022902f403210b20024198036a41086a2004280200360200200220022903c80437039803200241c8006a200110752002290348a7450d22200241c8006a41106a290300210720022903502108200241d0026a41086a20024198036a41086a28020036020020022002290398033703d002410221040c230b200241003602f00341042109200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4920022802f00321060c010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b3602002001200420056a36020020060d4820022802f0032106410521090b200220022f01c8043b01f0030c88010b200241003602f003200241f0036a200420034104200341044922061b220510fe011a200141046a200320056b22033602002001200420056a220436020020060d4620022802f0032106200241003a00f003200241f0036a20042003410047220510fe011a20032005490d64200141046a200320056b3602002001200420056a3602002003450d4620022d00f003220141044f0d46410321090c86010b20024198036a200241c8046a41d70010fe011a41d80010122201450d60200120043a0000200141016a20024198036a41d70010fe011a20014108762104410221050b200241b0026a41186a2206200241d0026a41186a290300370300200241b0026a41106a2203200241d0026a41106a290300370300200241b0026a41086a2209200241d0026a41086a290300370300200220022903d0023703b002200041086a2004410874200141ff017172360000200041046a2005360000200041063a00002000410c6a20022903b002370000200041146a20092903003700002000411c6a2003290300370000200041246a2006290300370000200241c0056a24000f0b200241286a200110172002280228450d48200228022c2204417f4c0d7c2004450d35200410762205450d6520052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d662003200920066b3602002001200128020020066a36020020062004470d360c720b200241206a200110172002280220450d4720022802242204417f4c0d7b2004450d36200410762205450d6620052001280200200141046a22032802002206200420062004491b220610fe011a200328020022092006490d672003200920066b3602002001200128020020066a36020020062004470d370c700b200242003703f003200241f0036a20042003410820034108491b220510fe011a200141046a200320056b3602002001200420056a360200200341074d0d4620022903f0032107410521090c780b200241c0006a200110172002280240450d4520022802442213ad42187e2207422088a70d792007a72204417f4c0d792004450d382004101222050d39200441041015000b0b200920037221010c180b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01be053b01aa05200220022802d0023602a4052009450d6e200241b0026a41046a220420032d00003a0000200220022f01aa0522033b01bc05200220022802a4053602b002200241c8046a41046a20042d00003a0000200220033b019003200220022802b0023602c804410421040c700b0b200241a4056a41046a2203200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4052009450d6c200241b4056a41046a220420032d00003a0000200220022f01aa0522033b01ba05200220022802a4053602b405200241c8046a41046a20042d00003a0000200220033b019003200220022802b4053602c804410321040c6e0b4101210641002004460d6a0b2004450d6d2006101f0c6d0b200241d0016a20011017410d210420022802d001450d0a20022802d4012105200241c8016a2001101720022802c801450d0a20022802cc012106200241b0016a2001107520022903b001a7450d0a200241c0016a290300210720022903b801210820054108762103410621040c0d0b20024180026a20011017200228028002450d0820022802840222054108762103410b21040c0a0b200241f0036a20011018200241c8046a41086a220120024190046a280200360200200220024188046a2903003703c80420022d00f00322054102460d0720022f00f10320022d00f303411074722103200241fc036a290200210720024184046a280200210620022902f403210820024198036a41086a22042001280200360200200220022903c80437039803200241d0026a41086a200428020036020020022002290398033703d002410421040c0b0b200241a8016a2001101720022802a801450d0620022802ac0122054108762103410521040c080b200241f8016a2001101720022802f801450d0520022802fc0122054108762103410921040c070b200241d8016a200110194107410d20022802d8011b210420022903e00121080c020b200241e8016a200110194108410d20022802e8011b210420022903f00121080c010b200241f0036a2001107420022802f0032205450d022005410876210320022902f4032108410c21040b0c040b200241003a00f003200241f0036a2010200e410047220410fe011a200e2004490d4d200141046a200e20046b3602002001201020046a360200200e450d0020022d00f0032109410a21040c050b410d21040b0b0b0b0b200241f0036a41086a2201200241d0026a41086a280200360200200220022f01ac053b01b405200220022903d0023703f00302402004410d470d002000410b3a0000200241c0056a24000f0b200241b0026a41086a220e2001280200360200200220022f01b4053b01a405200220022903f0033703b002200041186a2007370000200041106a2008370000200041096a20093a0000200041086a20043a0000200041053a0000200041206a20063600002000410c6a2003410874200541ff0171723600002000410a6a20022f01a4053b0000200041246a20022903b0023700002000412c6a200e280200360000200241c0056a24000f0b410421040b200920037221010b200241f0036a41086a2203200241d0026a41086a280200360200200220022903d0023703f00320044104460d55200241b0026a41086a22092003280200360200200220022903f0033703b0022000410f6a20014110763a00002000410d6a20013b0000200041186a200a370000200041106a200b370000200041c8006a200c370000200041c0006a200d370000200041386a2007370000200041306a2008370000200041206a20063600002000410c6a20053a0000200041086a2004360000200041033a0000200041246a20022903b0023700002000412c6a2009280200360000200241c0056a24000f0b200241003a00f003200241f0036a20112003410047220410fe011a20032004490d4a200141046a200320046b3602002001201120046a3602002003450d1220022d00f003210e411221040c510b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a360200410f21042003410f4d0d11200241f8036a290300210c20022903f003210a0c0e0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d1020022903f003210a410c21040c0f0b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0f20022903f003210a410521040c0e0b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0e20022802f0032109410d21040c070b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0d20022903f003210a410a21040c0c0b4100210f200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a22043602002003411f4d0d18200241ac056a41046a2203200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210e20022800f303210920022900f703210a20022900ff03210c2002280087042106200241c8046a41046a20032d00003a0000200220022f01b2053b01d002200220022802ac053602c8044101210f0c190b411121040c0c0b4100210f200241f0036a2003412020034120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2011200410fe011a200141046a200320046b22053602002001201120046a22103602002003411f4d0d18200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003210e20022800f303210920022900f703210a20022900ff03210c2002280087042106200241d0026a41046a20042d00003a0000200220022f01b2053b01b002200220022802ac053602d0024101210f0c190b200242003703f00341082104200241f0036a20112003410820034108491b220510fe011a200141046a200320056b3602002001201120056a360200200341074b0d040c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0820022903f003210a410621040c070b200241003602f003200241f0036a201120034104200341044922051b220410fe011a200141046a200320046b3602002001201120046a36020020050d0720022802f0032109410e21040b0c090b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a36020041072104200341074d0d050b20022903f003210a0c030b200242003703f803200242003703f003200241f0036a20112003411020034110491b220410fe011a200141046a200320046b3602002001201120046a3602002003410f4d0d03200241f8036a290300210c20022903f003210a410b21040b0c040b200242003703f003200241f0036a20112003410820034108491b220410fe011a200141046a200320046b3602002001201120046a360200200341074d0d0120022903f003210a410921040b0c020b411321040b0b0b0c3b0b4101210541002004460d3c0b20040d100c110b4101210541002004460d390b20040d0e0c0f0b4101210541002004460d3f0b20040d0c0c0d0b410421050b024002402013450d00420021074100210f4100210441002109201321110340200241386a200110172002280238450d0c200228023c2203417f4c0d42024002402003450d00200310762210450d2420102001280200200141046a220e2802002206200320062003491b220610fe011a200e28020022142006490d25200e201420066b3602002001200128020020066a36020020062003460d010c0d0b4101211041002003470d0c0b200241306a200110172002280230450d0b20022802342206417f4c0d42024002402006450d00200610762214450d2220142001280200200141046a2212280200220e2006200e2006491b220e10fe011a20122802002215200e490d2320122015200e6b36020020012001280200200e6a360200200e2006460d010c0c0b4101211441002006470d0b0b200941016a210e024020092011470d00200f200e200e200f491b2211ad42187e2208422088a70d1e2008a722124100480d1e02402009450d00200520042012101422050d010c210b201210122205450d200b200520046a22092010360200200941146a2006360200200941106a20063602002009410c6a2014360200200941046a2003ad220842208620088437020020074280808080107c2107200f41026a210f200441186a2104200e2109200e2013490d000c020b0b41002111420021070b2005450d0b20072011ad842107410721090c3d0b4200210a4200210c0b200241a4056a41046a2203200241c8046a41046a2d00003a0000200220022f01d0023b01aa05200220022802c8043602a40502400240200f450d0020024198036a41046a20032d00003a0000200220022f01aa053b01b002200220022802a40536029803200242003703f803200242003703f003200241f0036a20042005411020054110491b220310fe011a200141046a200520036b3602002001200420036a3602002005410f4d0d00200241f8036a290300210820022903f003210720024190036a41046a20024198036a41046a2d00003a0000200220022f01b0023b019603200220022802980336029003410321040c010b411321040b0c310b4200210a4200210c0b200241a4056a41046a2204200241d0026a41046a2d00003a0000200220022f01b0023b01aa05200220022802d0023602a4050240200f450d00200241b4056a41046a20042d00003a0000200220022f01aa053b01ba05200220022802a4053602b405200241f0036a2005412020054120491b22046a41004100412020046b2004411f4b1b10fd011a200241f0036a2010200410fe011a200141046a200520046b3602002001201020046a3602002005411f4d0d00200241ac056a41046a2204200241f0036a411f6a2d00003a0000200220022f00f1033b01b2052002200228008b043602ac0520022d00f003211020022800f303211420022900f703210720022900ff032108200228008704210f200241d0026a41046a220520042d00003a0000200220022f01b20522043b01be05200220022802ac053602d002200241b0026a41046a20052d00003a0000200220043b01bc05200220022802d0023602b002200241a0026a200110174113210420022802a002450d2e20022802a4022203417f4c0d3c2003450d09200310762205450d2c20052001280200200141046a22122802002211200320112003491b221110fe011a201228020022132011490d2d2012201320116b3602002001200128020020116a36020020112003470d0a0c2f0b411321040c2d0b4101210641002004460d390b2004450d002006101f0b200220022f01c8043b01f0030c3e0b2006450d002014101f0b2003450d002010101f0b02402009450d002005210103400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200441686a22040d000b0b2011450d010b2005101f0b2000410b3a0000200241c0056a24000f0b4101210541002003460d250b2003450d232005101f0c230b20052004101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b20042006101a000b1010000b20062003101a000b201241041015000b200641011015000b200e2015101a000b200341011015000b20062014101a000b41d80041081015000b200441011015000b20052009101a000b20052003101a000b2004200e101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b200441011015000b20062009101a000b20042003101a000b200441011015000b20052009101a000b200341011015000b20112013101a000b0c010b4104210420024190036a41046a200241b4056a41046a2d00003a000020024188036a41046a200241b0026a41046a2d00003a0000200220022f01ba053b019603200220022802b40536029003200220022f01bc053b018e03200220022802b002360288032003ad220b422086200b84210b0b200241f0036a41046a220120024190036a41046a2d00003a0000200241c8046a41046a220320024188036a41046a2d00003a000020024198036a41026a221120024185036a41026a2d00003a0000200220022f0196033b01d00220022002280290033602f003200220022f018e033b01b00220022002280288033602c804200220022f0085033b019803024020044113470d002000410b3a0000200241c0056a24000f0b200241fc026a41046a221220012d00003a0000200241f4026a41046a220120032d00003a0000200241f0026a41026a220320112d00003a0000200220022f01d0023b018203200220022802f0033602fc02200220022f01b0023b01fa02200220022802c8043602f402200220022f0198033b01f002200041186a200c370000200041106a200a370000200041386a2008370000200041306a2007370000200041096a200e3a0000200041086a20043a0000200041083a0000200041206a20063600002000410c6a2009360000200041296a20103a0000200041c0006a200f3600002000412c6a20143600002000410a6a20022f0182033b0000200041246a20022802fc02360000200041286a20122d00003a00002000412a6a20022f01fa023b0000200041d0006a200b370000200041cc006a2005360000200041c8006a20012d00003a0000200041c4006a20022802f402360000200041c9006a20022f01f0023b0000200041cb006a20032d00003a0000200241c0056a24000f0b2004ad22074220862007842107410421090c080b2004ad22074220862007842107410621090c070b2000410b3a0000200241c0056a24000f0b2000410a3a0000200041086a2006360000200041046a41023600002000410c6a2004ad2207422086200784370000200241c0056a24000f0b0b0b200241f0036a41086a2203200241c8046a41086a280200360200200220022f0190033b01b405200220022902c8043703f003024020044106470d002000410b3a0000200241c0056a24000f0b20024198036a41086a22092003280200360200200220022f01b4053b018803200220022903f00337039803200041186a2008370000200041106a2007370000200041096a20053a0000200041086a20043a0000200041093a0000200041206a20063600002000410c6a20013600002000410a6a20022f0188033b0000200041246a2002290398033700002000412c6a2009280200360000200241c0056a24000f0b2000410b3a0000200241c0056a24000f0b2004ad22074220862007842107410221090b200041013a0000200041106a20073700002000410c6a2005360000200041086a2009360000200241c0056a24000f0b20024190026a200110170240200228029002450d002002280294022205417f4c0d010240024002402005450d00200510762203450d0520032001280200200141046a220e2802002209200520092005491b220910fe011a200e280200220f2009490d06200e200f20096b3602002001200128020020096a36020020092005460d010c020b4101210341002005470d010b20024188026a20011017200228028802450d00200228028c022209417f4c0d02024002402009450d0020091076220e450d07200e2001280200200141046a2210280200220f2009200f2009491b220f10fe011a20102802002214200f490d0820102014200f6b36020020012001280200200f6a360200200f2009470d010c090b4101210e41002009460d080b2009450d00200e101f0b2005450d002003101f0b02402004450d002006101f0b200220022f01c8043b01f0030c060b100f000b200541011015000b2009200f101a000b200941011015000b200f2014101a000b2009ad220a422086200a84210a410221090c010b2000410b3a0000200241c0056a24000f0b200220022f01c8043b01f0030b200220022f01f0033b019803200041386a2007370000200041306a2008370000200041096a20013a0000200041086a20093a0000200041073a0000200041286a200a370000200041246a200e360000200041206a20053600002000411c6a2005360000200041186a2003360000200041146a2004360000200041106a20043600002000410c6a20063600002000410a6a20022f0198033b0000200241c0056a24000f0b2000410b3a0000200241c0056a24000bc51505017f037e017f037e077f230041d0036b2202240002400240200129037022034202520d00200241086a20014188016a41d80010fe011a420021030c010b20024198016a200141e4006a29000037030020024190016a200141dc006a29000037030020024188016a200141d4006a29000037030020024180016a200141cc006a290000370300200241f8006a200141c4006a290000370300200241e0006a41106a2001413c6a290000370300200241e0006a41086a200141346a2900003703002002200129002c37036020012903002105200241a0016a41106a200141f0006a220641106a290300370300200241a0016a41086a200641086a290300370300200220062903003703a00120014180016a2903002107200129037821084200210920024180026a41086a22064200370300200242003703800241dd81c000410d20024180026a1000200241086a41086a2006290300370300200220022903800237030842002104024002400240024002400240024002400240200241086a411041e4a4c100410041001001417f460d002002420037038002200241086a411020024180026a41084100100141016a41084d0d0120022903800221040b024020034201520d002008500d032004200720072004541b2203200320077d2008827d21090b20024180026a2009101d200241d4016a41026a20022d0082023a0000200241086a41086a220620024193026a290000370300200241086a410d6a220a20024198026a290000370000200220022f0180023b01d4012002200229008b02370308200228008302210b200228008702210c200241b8016a410d6a200a290000370000200241b8016a41086a2006290300370300200220022903083703b8012001410c6a2802002106200141086a2d0000210d2001280210210a200241bc036a41026a220e2001410b6a2d00003a000020024180026a41086a220f2001411c6a29020037030020024180026a410d6a2210200141216a290000370000200220012f00093b01bc0320022001290214370380020240024002400240024002400240200d4101470d00200241c0036a2006410676101e20022802c8032006413f7122064d0d01200241b8036a41026a20022802c00320064105746a220641026a2d00003a0000200241a0036a200641136a290000370300200241a5036a200641186a290000370000200220062f00003b01b8032002200629000b370398032006280007210a200628000321064101210d20022802c4030d020c030b200241b8036a41026a200e2d00003a000020024198036a41086a200f29030037030020024198036a410d6a2010290000370000200220022f01bc033b01b8032002200229038002370398030c030b4100210d20022802c403450d010b20022802c003101f0b200d450d010b200241c0036a41026a200241b8036a41026a2d00003a000020024180026a41086a20024198036a41086a29030037030020024180026a410d6a20024198036a410d6a290000370000200220022f01b8033b01c0032002200229039803370380024100210d0c010b4101210d4115210a41d49bc10021060b200241fc016a41026a220e200241c0036a41026a2d00003a0000200241086a41086a220f20024180026a41086a2210290300370300200241086a41106a20024180026a41106a290300370300200220022f01c0033b01fc0120022002290380023703080240200d450d002000200636020420004101360200200041086a200a36020020014188016a1020200241d0036a24000f0b200241eb016a200f290300370000200241f0016a200241086a410d6a290000370000200220022f01fc013b01d8012002200a3600df01200220063600db01200220022903083700e3012002200e2d00003a00da012002200537038002201020014188016a41d80010fe01210e200241ff026a200c360000200241fb026a200b360000200241f0026a200241a0016a41106a290300370300200241e8026a2201200241a0016a41086a290300370300200241fa026a200241d4016a41026a2d00003a000020024183036a20022903b8013700002002418b036a200241b8016a41086a29030037000020024190036a200241b8016a410d6a290000370000200220022903a0013703e002200220022f01d4013b01f802200241003602102002420137030820024180026a200241086a1021200e200241086a102202400240024002400240024002400240024020022903e0024201520d0020012903002203420c882204420120044201561b22044200510d0c200241f0026a2903002004802104200228020c2206200241106a28020022016b41024f0d01200141026a220a2001490d0a20064101742201200a200a2001491b22014100480d0a2006450d05200228020820062001101422060d060c0e0b0240200228020c200241106a2802002201470d00200141016a22062001490d0a2001410174220a20062006200a491b220a4100480d0a2001450d0220022802082001200a101422060d030c0d0b200228020821060c030b200228020821060c050b200a10122206450d0a0b2002200a36020c20022006360208200241106a28020021010b200241106a200141016a360200200620016a41003a00000c030b200110122206450d080b2002200136020c20022006360208200241106a28020021010b200241106a200141026a360200200620016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b024002400240200228020c220b200241106a28020022016b41204f0d00200141206a22062001490d04200b4101742201200620062001491b220a4100480d04200b450d012002280208200b200a10142206450d020c090b200228020821060c090b200a101222060d070b200a41011015000b41de86c00041331023000b1010000b41d4c5c2001024000b41fcc9c1001024000b200a41011015000b200141011015000b2002200a36020c20022006360208200241106a2802002101200a210b0b200620016a220a200241f8026a220d290000370000200a41186a200d41186a290000370000200a41106a200d41106a290000370000200a41086a200d41086a290000370000024002400240200141206a2201418102490d00200241086a41186a220a4200370300200241086a41106a220d4200370300200241086a41086a220c42003703002002420037030820062001200241086a100220024198036a41186a200a29030037030020024198036a41106a200d29030037030020024198036a41086a200c290300370300200220022903083703980320024198036a4120200241e0006a200241d8016a10032101200b0d010c020b20062001200241e0006a200241d8016a10032101200b450d010b2006101f0b02402001450d00200041e99bc10036020420004101360200200041086a411a360200200e1020200241d0036a24000f0b20024198036a41186a200241d8016a41186a29030037030020024198036a41106a200241d8016a41106a29030037030020024198036a41086a200241d8016a41086a290300370300200220022903d801370398032002290380022104200241086a200e41d80010fe011a420121030b200041086a2003370300200041306a2004370300200041106a200229039803370300200041186a20024198036a41086a290300370300200041206a20024198036a41106a290300370300200041286a20024198036a41186a290300370300200041386a200241086a41d80010fe011a20004100360200200241d0036a24000bf60201037f230041306b2202240002400240411010122203450d00200341086a410029009482403700002003410029008c824037000020034110412010142203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1000200241086a2004290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010012204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241306a24000f0b41de86c00041331023000b411041011015000b412041011015000b890201027f230041306b22022400024002400240410f10122203450d00200341076a41002900e09540370000200341002900d995403700002003410f411e10142203450d012003200136000f200241206a41086a220142003703002002420037032020034113200241206a1000200241086a200129030037030020022002290320370300024002402002411041e4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b410f41011015000b411e41011015000b41de86c00041331023000b0700200010f1010b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a220028020010202000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510142204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010142204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101422040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101422070d0a0c110b2005101222040d130b200541011015000b200128020021040c050b200128020021070c070b2000101222040d0d0b200041011015000b200010122204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410122207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101422050d020c060b200128020021050c020b200810122205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011015000b4194bdc2001024000b2002200241086a360240200241e893c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4103360200200241106a41146a4103360200200241e4a4c1003602582002420137024c200241acbdc2003602482002410336022c20024203370214200241ecc5c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41b4bdc200103a000b200041011015000b200441011015000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000be9a40104047f017e067f017e230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022030d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00000240200041086a29030022064202520d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041106a20011021200041086a29030021060b2006a722034101460d012003450d0220002d000021030b200341ff01714101470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41b8dbc1001024000b41b8dbc1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41003a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41023a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a28020021030b024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41043a00002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d2320054101742204200720072004491b22044100480d232005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a200041086a28020021030b024020034107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d2320034101742205200420042005491b22044100480d232003450d0120012802002003200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101302402005450d002003200541186c6a2109200141046a210803402003280200210a2002200341086a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071014220b0d020c080b2001280200210b0c020b20071012220b450d060b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101302400240024002402008280200220b200428020022076b20054f0d00200720056a220c2007490d24200b4101742207200c200c2007491b22074100480d24200b450d012001280200200b20071014220b0d020c090b2001280200210b0c020b20071012220b450d070b2001200b36020020082007360200200428020021070b2004200720056a360200200b20076a200a200510fe011a200341186a22032009470d000b0b200041086a28020021030b20034101460d032003450d0420002d000021030b0240200341ff017122044103460d0020044102470d07200110774188dbc1001024000b024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1f20034101742205200420042005491b22054100480d1f2003450d0120012802002003200510142204450d020c070b200128020021040c070b2005101222040d050b200541011015000b200741011015000b200741011015000b41e4cac1001024000b41e4cac1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200041086a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110782002200041306a36020c2002410c6a2001106d200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a200110782002200041306a36020c2002410c6a2001106d2002200041c0006a36020c2002410c6a2001106d200041086a28020021030b20034101460d012003450d0220002d000021030b200341ff01714104470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41a0dbc1001024000b41a0dbc1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041106a20011021200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b200341ff017122034101460d012003450d0220002d000021030b200341ff01714105470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b4190b0c2001024000b4190b0c2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a00000240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a20011013200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002000410c6a20011078200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00002000410c6a20011013200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41043a00002000410c6a20011013200041206a200110132002200041106a36020c2002410c6a2001106d200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200041106a20011021200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200041106a20011021200041086a2d000021030b0240200341ff01714109470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41093a00002000410c6a20011013200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1320074101742204200a200a2004491b22044100480d132007450d01200128020020072004101422070d020c080b200128020021070c020b200410122207450d060b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff017122034101460d022003450d0320002d000021030b200341ff01714106470d05024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0e20034101742205200420042005491b22054100480d0e2003450d0120012802002003200510142204450d020c060b200128020021040c060b2005101222040d040b200541011015000b200441011015000b41949ac2001024000b41949ac2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240200041046a28020022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a28020020011022200041046a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a20011078200041046a28020021030b20034101460d012003450d0220002d000021030b200341ff01714107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41f8afc2001024000b41f8afc2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41073a00000240200041086a2d000022034107714107460d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e0714150002010403140b200141046a280200200141086a2802002203470d06200341016a22042003490d2120034101742205200420042005491b22054100480d212003450d0d20012802002003200510142204450d0e0c1d0b200141046a280200200141086a2802002203470d03200341016a22042003490d2020034101742205200420042005491b22054100480d202003450d0820012802002003200510142204450d090c1a0b200141046a280200200141086a2802002203470d03200341016a22042003490d1f20034101742205200420042005491b22054100480d1f2003450d0920012802002003200510142204450d0a0c170b200141046a280200200141086a2802002203470d04200341016a22042003490d1e20034101742205200420042005491b22054100480d1e2003450d0c20012802002003200510142204450d0d0c140b200141046a280200200141086a2802002203470d04200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0d20012802002003200510142204450d0e0c110b200128020021040c170b200128020021040c140b200128020021040c170b200128020021040c100b200128020021040c0d0b2005101222040d110b200541011015000b2005101222040d0d0b200541011015000b2005101222040d0f0b200541011015000b2005101222040d070b200541011015000b2005101222040d030b200541011015000b41989ec2001024000b41989ec2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0f20044101742203200520052003491b22034100480d0f2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c080b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c060b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a20073600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0b20012802002003200510142204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0620012802002003200510142204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0720012802002003200510142204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0a20012802002003200510142204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101222040d0b0b200541011015000b2005101222040d070b200541011015000b2005101222040d090b200541011015000b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a00000c0a0b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00000c080b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a00000c060b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a00000c040b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a280200210702400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a20073600000c020b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002106200041306a290300210d02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a220320063700082003200d3700002000410c6a28020021082002200041146a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041186a28020021082002200041206a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310fe011a200041246a280200210820022000412c6a280200220336020c2002410c6a2001101302400240024002400240200141046a2802002205200728020022046b20034f0d00200420036a22072004490d0720054101742204200720072004491b22044100480d072005450d0120012802002005200410142205450d020c030b200128020021050c030b2004101222050d010b200441011015000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2008200310fe011a0b20002d000021030b200341ff01714108470d0402400240024002400240200141046a2205280200200141086a22032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a00000240200041086a2d000022044102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0620044101742208200720072008491b22084100480d062004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041386a2903002106200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d0620074101742204200820082004491b22044100480d062007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b200441ff01714104470d0302400240024002400240200528020020032802002204470d00200441016a22072004490d0520044101742208200720072008491b22084100480d052004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41023a000002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d0320074101742204200820082004491b22044100480d032007450d0120012802002007200410142207450d020c040b200128020021070c040b2004101222070d020b200441011015000b1010000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200041096a220741186a290000370000200441106a200741106a290000370000200441086a200741086a290000370000200420072900003700000240024002400240024020052802002207200328020022046b41204f0d00200441206a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b200141086a220b200441206a360200200720046a220441186a200041296a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210a2002200041d4006a280200220436020c2002410c6a2001101302400240024002400240200141046a2802002208200b28020022076b20044f0d00200720046a220b2007490d1620084101742207200b200b2007491b22074100480d162008450d0120012802002008200710142208450d020c030b200128020021080c030b2007101222080d010b200741011015000b20012008360200200141046a2007360200200141086a28020021070b2003200720046a360200200820076a200a200410fe011a200041086a2d000021040b0240200441ff01714105470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021060240024002400240024020052802002207200328020022046b41084f0d00200441086a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a2006370000200041086a2d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a28020021080240024002400240024020052802002207200328020022046b41044f0d00200441046a220b2004490d1620074101742204200b200b2004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a2008360000200041086a2d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002106200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a22082004490d1620074101742204200820082004491b22044100480d162007450d0120012802002007200410142207450d020c030b200128020021070c030b2004101222070d010b200441011015000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420063700082004200d370000200041086a2d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410e3a0000200041086a2d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a410f3a0000200041086a2d000021040b0240200441ff01714112470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d1620044101742208200720072008491b22084100480d162004450d0120012802002004200810142207450d020c030b200128020021070c030b2008101222070d010b200841011015000b20012007360200200141046a2008360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d1620044101742207200520052007491b22074100480d162004450d0120012802002004200710142205450d020c030b200128020021050c030b2007101222050d010b200741011015000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200041096a2d00003a0000200041086a2d000021040b200441ff017122034101460d012003450d0220002d000021030b200341ff01714109470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41e4f8c1001024000b41e4f8c1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200041086a2d000022034102470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101302402004450d0020044105742108200141046a210b03400240024002400240200b2802002207200528020022046b41204f0d00200441206a220a2004490d1620074101742204200a200a2004491b22044100480d162007450d01200128020020072004101422070d020c070b200128020021070c020b200410122207450d050b20012007360200200b2004360200200528020021040b2005200441206a360200200720046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200841606a22080d000b0b200041086a2d000021030b200341ff01714103470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510142204450d020c040b200128020021040c040b2005101222040d020b200541011015000b200441011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0120012802002003200510142204450d020c030b200128020021040c030b2005101222040d010b200541011015000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210602400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1120044101742203200520052003491b22034100480d112004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2006370000200041086a2d000021030b200341077122034101460d012003450d0220002d000021030b200341ff0171410a470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b41ecbec2001024000b41ecbec2001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a0000200041046a28020022034102460d012003450d0220034101460d030b200241106a24000f0b024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510142204450d020c050b200128020021040c050b2005101222040d030b200541011015000b419cc0c1001024000b419cc0c1001024000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a28020021072002200041106a280200220036020c2002410c6a20011013024002400240200141046a2802002204200528020022036b20004f0d00200320006a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310142204450d020c040b200128020021040c040b2003101222040d020b200341011015000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200320006a360200200420036a2007200010fe011a200241106a24000b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410436022c20024201370214200241a0d5c2003602102002200241086a3602282002200241286a360220200241106a41a8d5c200103a000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a410036020020012004370318200141e4a4c100360210200142013702042001200141186a36020020012003370328200120023703202001200141206a103a000bd51701267f230041900d6b220324002003410036021041af82c0004110200341106a41041004200320003703f00c200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a410810042004420037030020034200370300418c83c0004111200310002005200429030037030020032003290300370310200341106a411020014120100402400240411010122204450d00200441086a410029009482403700002004410029008c824037000020044110412010142205450d0120052000427f7c370010200341086a22044200370300200342003703002005411820031000200341106a41086a2206200429030037030020032003290300370310200341106a41102001412010042005101f200442003703002003420037030041ea81c0004115200310002006200429030037030020032003290300370310200341106a4110200241201004200442003703002003420037030041dd81c000410d2003100020062004290300370300200320032903003703100240200341106a411041e4a4c100410041001001417f460d00200342003703f00c02400240200341106a4110200341f00c6a41084100100141016a41084d0d0020032903f00c4200510d02200341086a220442003703002003420037030041dd81c000410d20031000200341106a41086a20042903003703002003200329030037031041002107427f21000240200341106a411041e4a4c100410041001001417f460d00200342003703f00c200341106a4110200341f00c6a41084100100141016a41084d0d0220032903f00c427f7c21000b200341106a410041e00c10fd011a41002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200341f00c6a42002000427f7c2000501b2200101d200341106a202722014103704105746a220441186a200341f00c6a41186a290200370000200441106a200341f00c6a41106a290200370000200441086a200341f00c6a41086a290200370000200420032902f00c370000200141016a21274100210541002102024003402001200141036e2206417d6c6a4102470d01200341106a20056a220441df006a2d000022262004411f6a2d000022287120262028722004413f6a2d00007172211c200441de006a2d000022262004411e6a2d000022287120262028722004413e6a2d00007172211b200441dd006a2d000022262004411d6a2d000022287120262028722004413d6a2d00007172211a200441dc006a2d000022262004411c6a2d000022287120262028722004413c6a2d000071722119200441db006a2d000022262004411b6a2d000022287120262028722004413b6a2d000071722118200441da006a2d000022262004411a6a2d000022287120262028722004413a6a2d000071722117200441d9006a2d00002226200441196a2d00002228712026202872200441396a2d000071722116200441d8006a2d00002226200441186a2d00002228712026202872200441386a2d000071722115200441d7006a2d00002226200441176a2d00002228712026202872200441376a2d000071722114200441d6006a2d00002226200441166a2d00002228712026202872200441366a2d000071722113200441d5006a2d00002226200441156a2d00002228712026202872200441356a2d000071722112200441d4006a2d00002226200441146a2d00002228712026202872200441346a2d000071722111200441d3006a2d00002226200441136a2d00002228712026202872200441336a2d000071722110200441d2006a2d00002226200441126a2d00002228712026202872200441326a2d00007172210f200441d1006a2d00002226200441116a2d00002228712026202872200441316a2d00007172210e200441d0006a2d00002226200441106a2d00002228712026202872200441306a2d00007172210d200441cf006a2d000022262004410f6a2d000022287120262028722004412f6a2d00007172210c200441ce006a2d000022262004410e6a2d000022287120262028722004412e6a2d00007172210b200441cd006a2d000022262004410d6a2d000022287120262028722004412d6a2d00007172210a200441cc006a2d000022262004410c6a2d000022287120262028722004412c6a2d000071722109200441cb006a2d000022262004410b6a2d000022287120262028722004412b6a2d000071722108200441ca006a2d000022262004410a6a2d000022287120262028722004412a6a2d000071722107200441c9006a2d00002226200441096a2d00002228712026202872200441296a2d00007172211d200441c8006a2d00002226200441086a2d00002228712026202872200441286a2d00007172211e200441c7006a2d00002226200441076a2d00002228712026202872200441276a2d00007172211f200441c6006a2d00002226200441066a2d00002228712026202872200441266a2d000071722120200441c5006a2d00002226200441056a2d00002228712026202872200441256a2d000071722121200441c4006a2d00002226200441046a2d00002228712026202872200441246a2d000071722122200441c3006a2d00002226200441036a2d00002228712026202872200441236a2d000071722123200441c2006a2d00002226200441026a2d00002228712026202872200441226a2d000071722124200441c1006a2d00002226200441016a2d00002228712026202872200441216a2d000071722125200441c0006a2d0000222620042d00002228712026202872200441206a2d000071722126200541800c460d01200341106a20052006410574200141096e41e0006c6b6a6a220441ff006a201c3a0000200441fe006a201b3a0000200441fd006a201a3a0000200441fc006a20193a0000200441fb006a20183a0000200441fa006a20173a0000200441f9006a20163a0000200441f8006a20153a0000200441f7006a20143a0000200441f6006a20133a0000200441f5006a20123a0000200441f4006a20113a0000200441f3006a20103a0000200441f2006a200f3a0000200441f1006a200e3a0000200441f0006a200d3a0000200441ef006a200c3a0000200441ee006a200b3a0000200441ed006a200a3a0000200441ec006a20093a0000200441eb006a20083a0000200441ea006a20073a0000200441e9006a201d3a0000200441e8006a201e3a0000200441e7006a201f3a0000200441e6006a20203a0000200441e5006a20213a0000200441e4006a20223a0000200441e3006a20233a0000200441e2006a20243a0000200441e1006a20253a0000200441e0006a20263a0000200541e0006a210520062101200241016a22024111490d000b0b202741d100470d000b2003201c3a008f0d2003201b3a008e0d2003201a3a008d0d200320193a008c0d200320183a008b0d200320173a008a0d200320163a00890d200320153a00880d200320143a00870d200320133a00860d200320123a00850d200320113a00840d200320103a00830d2003200f3a00820d2003200e3a00810d2003200d3a00800d2003200c3a00ff0c2003200b3a00fe0c2003200a3a00fd0c200320093a00fc0c200320083a00fb0c200320073a00fa0c2003201d3a00f90c2003201e3a00f80c2003201f3a00f70c200320203a00f60c200320213a00f50c200320223a00f40c200320233a00f30c200320243a00f20c200320253a00f10c200320263a00f00c200341086a220442003703002003420037030041cc81c000411120031000200341106a41086a2205200429030037030020032003290300370310200341106a4110200341f00c6a41201004200442003703002003420037030041ff81c000410d200310002005200429030037030020032003290300370310200341106a41101005200341900d6a24000f0b41de86c00041331023000b41de86c00041331023000b41b4c0c1001024000b411041011015000b412041011015000bb00202027f017e230041206b2201240002400240411310122202450d002002410f6a41002800ab8240360000200241086a41002900a482403700002002410029009c824037000020024113413310142202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1000200141086a200029030037030020012001290310370300024002402001411041e4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021030b2002101f200141206a240020030f0b41de86c00041331023000b411341011015000b413341011015000b9f6a17067f017e127f017e047f037e037f017e017f017e027f017e027f077e097f017e017f017e047f027e017f047e047f230041b0046b2201240002400240024002400240024002400240024002400240024002400240024041af82c000411041e4a4c100410041001001417f460d002001410036020841af82c0004110200141086a41044100100141016a41044d0d0220012802082102410021030c010b410121030b4108210420014198016a41086a22054200370300200142003703980141ff81c000410d20014198016a1000200141f8006a41086a20052903003703002001200129039801370378024002400240200141f8006a411041e4a4c100410041001001417f460d002001421037028c012001200141f8006a36028801200120014188016a10282001280200450d0920012802042206ad42f8007e2207422088a70d042007a72205417f4c0d042005450d01200510122204450d052006450d020c060b41002117410021160c060b4108210420060d040b41002116410021172004450d060c040b41de86c00041331023000b100f000b200541081015000b200141f0036a41176a2108200141f0026a41176a210920014190036a41176a210a41c000210b20014188016a41086a210c200141086a41186a210d200141086a41106a210e20014180026a411b6a210f20014180026a41136a2110200141f0026a410c6a2111200141e6016a2112200141ee016a2113200141f2016a21144100211541002105200621160340200141003a0008200128028801200128028c01200141086a4101200c28020010012117200c200c280200201741016a41014b22186a22173602002018450d024101214d0240024020012d000822184101460d0020180d0420014100360208200c4100200128028801200128028c01200141086a41042017100122172017417f461b2218410420184104491b200c2802006a2217360200201841034d0d042001280208214e4100214d0c010b0b200141003a0008200128028801200128028c01200141086a4101201710012117200c200c280200201741016a221741014b6a221836020002400240024020174102490d00410b213420012d00082217410a4b0d010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020170e0b2b050203000607040901082b0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2c20012d00ff012217450d0f20174101460d0e20174102470d2c200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2c2019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d8012001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d2c2019290300211f20012903082120200141d0036a41146a201c360200200141d0036a41106a201b360200200141d0036a41186a201d360200200141d0036a411c6a201e3602002001201a3703d803200120073703d003201e4118762117200141d0036a410f6a2900002221422088a72122200141d0036a411b6a2800002123200141d0036a41176a280000212420012900d70321252021a7212641022119200721270c100b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2b20012d00ff0122174101460d0820170d2b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2b20012903082125410021190c090b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d1220012d00ff012217450d1020174101460d0f20174102470d12200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300211a200e280200211b200141086a41146a221e280200211c200d280200211d20012903082107200141d0036a411c6a200141086a411c6a22282802002229360200200141d0036a41186a201d360200200141d0036a41146a201c360200200141d0036a41106a201b3602002001201a3703d803200120073703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d122019290300212a20282802002128200d280200212b201e280200211e200e280200212c2001290308212d2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a22183602002017410f4d0d122019290300212e2001290308212f2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d12201929030021302001290308213120014190036a411c6a202836020020014190036a41186a202b36020020014190036a41146a201e360200200141b0036a411c6a2029360200200141b0036a41186a201d360200200141b0036a41146a201c360200200141b0036a41106a201b36020020014190036a41106a202c360200200141c8016a41086a200a41086a2d00003a00002001202d370390032001202a370398032001200a2900003703c801202d4208862029411876ad842132200120073703b0032001201a3703b8032007423888201a4208868421252007421888a72117200141b0036a411b6a2800002123200141b0036a41176a2800002124200141b0036a41136a2800002122200141b0036a410f6a280000212620014190036a410f6a290000211f20012900970321202007a7211841022119202f2121202e21330c110b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a22183602002017450d2920012d00080d2920014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2920012903082107200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b801200742088821272007a72119410321340c2a0b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2820012d00ff01221741064b0d28024020170e0700141315121617000b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d2820192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a20014180026a411c6a200141086a411c6a280200221c36020020014180026a41186a201b36020020014180026a41146a201936020020014180026a41106a201736020020014190046a411c6a201c36020020014190046a41186a221c201b36020020014190046a41146a201936020020014190046a41106a2219201736020020012007370388022001201a3703800220012007370398042001201a3703900420014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2820012802082118200141f0036a41186a201c290300370300200141f0036a41106a2019290300370300200141f0036a41086a20014190046a41086a29030037030020012001290390043703f003200141f0036a411f6a2d00002117200141f0036a411b6a280000212320082800002124200141f0036a41136a2800002122200141f0036a410f6a280000212620012900f703212520012800f303211b20012f00f103213520012d00f003211c410021190c180b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2720012d00ff010d27200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b22174120201741204922171b200c2802006a221836020020170d272019290300211a200e280200211b200141086a41146a280200211c200d280200211d20012903082107200141d8016a411c6a200141086a411c6a280200221e360200200141d8016a41186a201d360200200141d8016a41146a201c360200200141d8016a41106a201b3602002001201a3703e001200120073703d80120014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d2720012802082136200141b8016a41086a20192d00003a0000200120012903083703b801200742088821272007a7211941012134201c2122201e2123201d2124201a2125201b21260c280b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2620012d00ff010d2620014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221836020020170d262001280208211b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d26200141086a41086a2217290300212520012903082107200141b8016a41086a20172d00003a0000200120012902083703b801200742088821272007a7211941052134201b21260c270b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2520012d00ff012217450d0420174101470d25200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d2520192903002107200141086a411c6a2802002117200d280200211820012903082120200141d8016a41106a200e290300370300200141d8016a41186a2018360200200141d8016a411c6a2017360200200120073703e001200120203703d801201741107621172020421088a721362020420888a7213720122901002125201328010021262014280100212220012901de0121072020a72138410121390c050b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2420012d00080d24200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d24200141086a410f6a2900002125200141086a411f6a2d00002124200141086a411b6a2800002122200141086a41176a2800002126200128000b213620012d000a213720012d0009213820012d00082139200129000f2107200141b8016a41086a20192d00003a0000200120012900083703b801200742088821272007a72119410a21340c050b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a221741014b6a221836020020174102490d2020012d00ff012217410a4b0d2041002119024020170e0b20001819161b1c1a1d171f200b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d202001280208213a200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410121190c1f0b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d2220012903082125410121190b200141b8016a41086a200141086a41086a2d00003a0000200120012902083703b80141092134420021270c220b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d2020012d0008213841002139420021250b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801201741ffff03712124200742088821272007a72119410621340b0c1f0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1d20192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a22192017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a36020020170d1d2001280208211820014190036a41186a201c29030037030020014190036a41106a201929030037030020014190036a41086a200141b0036a41086a290300370300200120012903b003370390032001350290032001330194032001310096034210868442208684212720014190036a410f6a2900002207422088a7212220014198016a41086a290300211f20014190036a411f6a2d0000211720014190036a411b6a2800002123200a2800002124200129039801212020012900970321252007a72126410121190c010b2001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d1c200141086a41086a2903002207422088a7212220012903082125200141f0026a41186a290300211f200141f0026a41106a290300212020112802002118200141f0026a41086a280200211720012802f40221232007a7212641002119420021270b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b8012018ad4220862017ad842132410421340c0c0b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0220192903002120200e2802002117200141086a41146a2802002118200d280200213420012903082107200141f0026a411c6a200141086a411c6a2802002219360200200141f0026a41186a2034360200200141f0026a41146a2018360200200141f0026a41106a2017360200200141d0026a411c6a2019360200200141d0026a41186a2034360200200141d0026a41146a2018360200200141d0026a41106a2017360200200120203703f802200120073703f002200120203703d802200120073703d002200141c8016a41086a200141c7026a41086a2d00003a0000200120012900c7023703c801200742388820204208868421252007421888a721172019411876ad2132200141d0026a411b6a2800002123200141d0026a41176a2800002124200141d0026a41136a2800002122200141d0026a410f6a28000021262007a72118410121190c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a280200360200200141a0026a41186a221d201c360200200141a0026a41146a201b360200200141a0026a41106a221b2017360200200120073703a8022001201a3703a0022001420037031020014200370308200c4100200128028801200128028c01200141086a41102018100122172017417f461b2217411020174110491b200c2802006a3602002017410f4d0d012019290300211f2001290308212020014180026a41186a201d29030037030020014180026a41106a201b29030037030020014180026a41086a200141a0026a41086a290300370300200120012903a00237038002200141c8016a41086a20192d00003a0000200120012903083703c80120013502800222072001330184022001310086024210868442208684421888a7211720014180026a411f6a3100002132200f280000212320014180026a41176a28000021242010280000212220014180026a410f6a280000212620012900870221252007a72118410021190b200141086a41086a200141c8016a41086a2d000022343a0000200141b8016a41086a20343a0000200120012903c80122073703b801200120073703082017ad4218862018ad42ffffff0783842127410221344100213b0c190b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c170b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211c20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208211e20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d162001280208212820014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d1620012802082117200141003a00ff01200128028801200128028c01200141ff016a4101201810012118200c200c280200201841016a41014b22186a22193602002018450d1620012d00ff01221841054b0d1620014200370308200c4100200128028801200128028c01200141086a41082019100122192019417f461b2219410820194108491b200c2802006a360200201941074d0d162017411076213c2017410876211d200129030821254104211920282123201e2124201c2122201b21260c050b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2218360200201741034d0d152001280208211b200141003a00ff01200128028801200128028c01200141ff016a4101201810012117200c200c280200201741016a41014b22176a3602002017450d1520012d00ff01221c41064f0d15200141f0026a41186a2802002217411076213c2017410876211d200141f0026a411c6a2802002118200141f0026a41146a2802002123200141f0026a41106a280200212420112802002122200141f0026a41086a2802002126410221190c050b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d142019290300211a200e2802002117200141086a41146a2802002119200d280200211b20012903082107200141d0026a411c6a200141086a411c6a280200221c360200200141d0026a41186a201b360200200141d0026a41146a2019360200200141d0026a41106a20173602002001201a3703d802200120073703d00220014100360208200c4100200128028801200128028c01200141086a41042018100122182018417f461b22184104201841044922181b200c2802006a36020020180d1420012802082118200141a0026a411c6a201c360200200141a0026a41186a201b360200200141a0026a41146a2019360200200141a0026a41106a2017360200200120073703a0022001201a3703a8022007423888201a420886842125201c41187621172007421888a7211b2007420888a72135200141a0026a411b6a2800002123200141a0026a41176a2800002124200141a0026a41136a2800002122200141a0026a410f6a28000021262007a7211c410121190c040b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d1320192903002107200e2802002117200141086a41146a2802002119200d280200211b2001290308211a200141b0036a411c6a200141086a411c6a280200360200200141b0036a41186a221c201b360200200141b0036a41146a2019360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b00320014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b22174104201741044922171b200c2802006a221936020020170d1320012802082118200141003a00ff01200128028801200128028c01200141ff016a4101201910012117200c200c280200201741016a41014b22176a3602002017450d1320012d00ff01221d41044f0d1320014190036a41186a201c29030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200120012903b0033703900320014190036a411f6a2d0000211720014190036a411b6a2800002123200a280000212420014190036a41136a280000212220014190036a410f6a28000021262001290097032125200128009303211b20012f009103213520012d009003211c410321190c030b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a2219360200201741034d0d1220012802082118200d4200370300200e4200370300200141086a41086a221b420037030020014200370308200c4100200128028801200128028c01200141086a41202019100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d12201b2903002120200e2802002117200141086a41146a2802002134200d280200211920012903082107200141d0036a411c6a200141086a411c6a280200223b360200200141d0036a41186a2019360200200141d0036a41146a2034360200200141d0036a41106a2017360200200120203703d803200120073703d00320074238882020420886842125203b41187621172007421888a7211b2007420888a72135200141d0036a411b6a2800002123200141d0036a41176a2800002124200141d0036a41136a2800002122200141d0036a410f6a28000021262007a7211c410521190c020b20014100360208200c4100200128028801200128028c01200141086a41042018100122172017417f461b2217410420174104491b200c2802006a360200201741034d0d112001280208211b200141d8016a41186a2802002217411076213c2017410876211d200141d8016a411c6a2802002118200141d8016a41146a2802002123200141d8016a41106a2802002124200141d8016a410c6a2802002122200141d8016a41086a2802002126410621190b0b200141b8016a41086a200141086a41086a2d00003a0000200120012903083703b801201bad4218862035ad42ffff038342088684201cad42ff0183842127203cad42ffff0383421086201dad42ff0183420886842017ad42ff0183842018ad422086842132410721340b0c0f0b410421190c090b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0920192903002107200e2802002117200141086a41146a221e280200211b200d280200211c2001290308211a200141a0026a411c6a200141086a411c6a2228280200221d360200200141a0026a41186a201c360200200141a0026a41146a201b360200200141a0026a41106a201736020020014180026a411c6a201d36020020014180026a41186a221d201c36020020014180026a41146a201b36020020014180026a41106a221b2017360200200120073703a8022001201a3703a00220012007370388022001201a37038002200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0920192903002120200e2802002117201e2802002118200d280200213420012903082107200141f0036a411c6a2028280200360200200141f0036a41186a2034360200200141f0036a41146a2018360200200141f0036a41106a201736020020014190046a41086a20014180026a41086a29030037030020014190046a41106a201b29030037030020014190046a41186a201d290300370300200120203703f803200120073703f003200120012903800237039004200141c8016a41086a200841086a2d00003a0000200120082900003703c801200742088620014190046a411f6a31000084213d20012f01900420012d00920441107472213e200141f0036a410f6a290000213f20014190046a411b6a280000214020014190046a41176a280000214120014190046a41136a280000214220014190046a410f6a280000214320012900f70321442001290097042145200128009304213a410921190c060b410221190c070b410321190c060b20014200370308200c4100200128028801200128028c01200141086a41082018100122172017417f461b2217410820174108491b200c2802006a360200201741074d0d0620012903082145200141c8016a41086a200141086a41086a2d00003a0000200120012903083703c801410721190c050b410521190c040b410621190c030b200d4200370300200e4200370300200141086a41086a420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d0341082119200141086a41086a2903002120200e2802002117200141086a41146a22182802002134200d280200213b20012903082107200141086a411c6a224620462802002246360200200d203b36020020182034360200200e2017360200200141c8016a41086a200141c7026a41086a2d00003a00002001202037031020012007370308200120012900c7023703c801200742388820204208868421452007421888a7213a2046411876ad213d200141086a411b6a2800002140200141086a41176a2800002141200141086a41136a2800002142200141086a410f6a28000021432007a7213e0b0c010b200d4200370300200e4200370300200141086a41086a2219420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117200141086a41146a221d280200211b200d280200211c2001290308211a200141b0036a411c6a200141086a411c6a221e280200360200200141b0036a41186a2228201c360200200141b0036a41146a201b360200200141b0036a41106a221b2017360200200120073703b8032001201a3703b003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a22183602002017411f4d0d0120192903002107200e2802002117201d280200211c200d280200211d2001290308211a200141d0036a411c6a201e280200360200200141d0036a41186a221e201d360200200141d0036a41146a201c360200200141d0036a41106a221c2017360200200120073703d8032001201a3703d003200d4200370300200e42003703002019420037030020014200370308200c4100200128028801200128028c01200141086a41202018100122172017417f461b2217412020174120491b200c2802006a3602002017411f4d0d01200d2903002107200e29030021202001290308211f200141d8016a41086a20192903002221370300200141d8016a41106a2020370300200141d8016a41186a2007370300200141d0026a41086a2021370300200141d0026a41186a2007370300200141d0026a41106a20203703002001201f3703d8012001201f3703d00220014190036a41186a202829030037030020014190036a41106a201b29030037030020014190036a41086a200141b0036a41086a290300370300200141f0026a41086a200141d0036a41086a290300370300200141f0026a41106a201c290300370300200141f0026a41186a201e290300370300200120012903b00337039003200120012903d0033703f002200141c8016a41086a200941086a2d00003a0000200120092900003703c80120012f01d00220012d00d20241107472214b20012f01900320012d00920341107472213e20013502f00220013301f40220013100f602421086844220868442088620014190036a411f6a31000084213d200141f0026a410f6a290000213f200141d0026a410f6a2900002148200141d0026a411f6a310000214a200141d0026a41176a290000214920014190036a411b6a2800002140200a280000214120014190036a41136a280000214220014190036a410f6a280000214320012900f702214420012900d70221472001290097032145200128009303213a20012800d302214c410a21190b41082134200141086a41086a200141c8016a41086a2d000022173a0000200141b8016a41086a20173a0000200120012903c80122073703b80120012007370308203aad421886203ead42ffffff078384212720442120203f211f204721212048213320492131204a2130203d2132204221222040212320412124204b213b20452125204321260c040b200141086a41086a200141c8016a41086a2d00003a0000200120012903c8013703080c020b200141003a0008200128028801200128028c01200141086a4101201810012117200c200c280200201741016a41014b22176a3602002017450d0141002117024020012d00082218450d0020184101470d02410121170b200141b8016a41086a200141086a41086a2d00003a0000200120012901083703b801420021274200212520172139410021340c020b410b21340b204621190b200141086a41086a2218200141b8016a41086a2d00003a0000200120012903b8013703082034410b460d02200541016a2117200141a8016a41086a224620182d00003a0000200120012903083703a801201820462d00003a0000200120012903a801370308024020052016470d002015201720172015491b2216ad42f8007e2207422088a70d072007a722464100480d0702402005450d002004200b41406a2046101422040d010c060b204610122204450d050b2004200b6a220541686a2032370000200541646a2023360000200541606a20243600002005415c6a2022360000200541586a2026360000200541446a2036360000200541436a20373a0000200541426a20383a0000200541416a20393a0000200541406a20343a0000200541506a2025370000200541486a20274208862019ad42ff018384370000200541786a201f370000200541706a2020370000200541286a2030370000200541206a2031370000200541186a2033370000200541106a202137000020182d00002118200129030821072005410b6a203b4110763a0000200541096a203b3b0000200541346a204e360200200541306a204d3602002005410c6a204c360000200541086a20183a000020052007370000201541026a2115200b41f8006a210b201921462017210520172006490d000b0b200141086a200041f00010fe011a20162017470d03201741016a22052017490d042017410174220c20052005200c491b2216ad42f8007e2207422088a70d042007a722054100480d04024002402017450d002004201741f8006c200510142204450d010c050b2005101222040d040b200541081015000b2016450d002004101f0b41de86c00041331023000b204641081015000b2004201741f8006c220c6a200141086a41f00010fe01220541f4006a20023602002005200336027020014100360210200142013703082001201741016a2205360278200141f8006a200141086a101302402005450d00200c41f8006a2118200141106a210c2004210503400240024002400240024002400240024002400240200541f0006a2802004101470d00200141013a00ff01200128020c200c2802002217470d01201741016a220b2017490d0c20174101742234200b200b2034491b22344100480d0c2017450d032001280208201720341014220b0d040c0d0b200141003a00ff01200128020c200c2802002217470d01201741016a220b2017490d0b20174101742234200b200b2034491b22344100480d0b2017450d052001280208201720341014220b0d060c0d0b410121342001280208210b0c030b410021342001280208210b0c050b20341012220b450d090b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a00000c030b20341012220b450d070b2001203436020c2001200b360208200c280200211720012d00ff0121340b200c201741016a360200200b20176a20343a0000200541f4006a28020021340240024002400240200128020c220b200c28020022176b41044f0d00201741046a22152017490d07200b4101742217201520152017491b22174100480d07200b450d012001280208200b20171014220b0d020c0a0b2001280208210b0c020b20171012220b450d080b2001201736020c2001200b360208200c28020021170b200c201741046a360200200b20176a20343600000b2005200141086a1029200541f8006a2105201841887f6a22180d000b0b200141086a41086a220c2802002117200128020c21182001280208210520014198016a41086a220b4200370300200142003703980141ff81c000410d20014198016a1000200c200b2903003703002001200129039801370308200141086a411020052017100402402018450d002005101f0b02402016450d002004101f0b200141b0046a24000f0b1010000b203441011015000b203441011015000b201741011015000bca0301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081001210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f22064103712204450d0020044101460d0120044102470d0220024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100122012001417f461b22014103200141034922011b20042802006a36020020010d04200228020841027621040c050b20064102762104410121030c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510012104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641044f0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100122012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b8a8a0103057f027e017f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4420024101742204200320032004491b22044100480d442002450d1f20012802002002200410142203450d200c420b200141046a280200200141086a2802002202470d09200241016a22032002490d4320024101742204200320032004491b22044100480d432002450d1420012802002002200410142203450d150c3f0b200141046a280200200141086a2802002202470d09200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002202470d09200241016a22032002490d4120024101742204200320032004491b22044100480d412002450d1620012802002002200410142203450d170c360b200141046a280200200141086a2802002202470d09200241016a22032002490d4020024101742204200320032004491b22044100480d402002450d1720012802002002200410142203450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002202470d0a200241016a22032002490d3e20024101742204200320032004491b22044100480d3e2002450d1b20012802002002200410142203450d1c0c2d0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1c20012802002002200410142203450d1d0c2a0b200141046a2204280200200141086a22022802002203470d0a200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1d20012802002003200610142205450d1e0c270b200141046a280200200141086a2802002202470d0a200241016a22032002490d3b20024101742204200320032004491b22044100480d3b2002450d1e20012802002002200410142203450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3320024101742204200320032004491b22044100480d332002450d1f20012802002002200410142203450d200c210b200128020021030c360b200128020021030c300b200128020021030c2d0b200128020021030c2a0b200128020021030c270b200128020021030c330b200128020021030c230b200128020021030c200b200128020021050c1d0b200128020021030c1a0b200128020021030c170b2004101222030d2a0b200441011015000b2004101222030d230b200441011015000b2004101222030d1f0b200441011015000b2004101222030d1b0b200441011015000b2004101222030d170b200441011015000b2004101222030d220b200441011015000b2004101222030d110b200441011015000b2004101222030d0d0b200441011015000b2006101222050d090b200641011015000b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041086a2903004201520d0020032002470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0320012802002002200410142203450d040c090b20032002470d01200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0420012802002002200410142203450d050c060b200128020021030c080b200128020021030c050b2004101222030d050b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1720024101742200200320032000491b22004100480d172002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1520024101742200200320032000491b22004100480d152002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200141046a28020021032004280200210202400240024002400240024002400240024002400240200041016a2d00004101470d0020032002470d01200241016a22002002490d2020024101742203200020002003491b22034100480d202002450d0320012802002002200310142200450d040c090b20032002470d01200241016a22002002490d1f20024101742203200020002003491b22034100480d1f2002450d0420012802002002200310142200450d050c060b200128020021000c080b200128020021000c050b2003101222000d050b200341011015000b2003101222000d010b200341011015000b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41003a00000f0b20012000360200200141046a2003360200200141086a28020021020b200141086a200241016a360200200020026a41013a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341054b0d0002400240024002400240024020030e06000402030105000b200428020020022802002203470d09200341016a22052003490d3c20034101742206200520052006491b22064100480d3c2003450d1320012802002003200610142205450d140c270b200428020020022802002203470d05200341016a22052003490d3b20034101742206200520052006491b22064100480d3b2003450d0c20012802002003200610142205450d0d0c240b200428020020022802002203470d05200341016a22052003490d3a20034101742206200520052006491b22064100480d3a2003450d0d20012802002003200610142205450d0e0c210b200428020020022802002203470d05200341016a22052003490d3920034101742206200520052006491b22064100480d392003450d0e20012802002003200610142205450d0f0c1e0b200428020020022802002203470d06200341016a22052003490d3820034101742206200520052006491b22064100480d382003450d1120012802002003200610142205450d120c1b0b200428020020022802002203470d06200341016a22052003490d3720034101742206200520052006491b22064100480d372003450d1220012802002003200610142205450d130c180b200428020020022802002203470d06200341016a22052003490d3620034101742206200520052006491b22064100480d362003450d1320012802002003200610142205450d140c150b200128020021050c1f0b200128020021050c1c0b200128020021050c190b200128020021050c1e0b200128020021050c150b200128020021050c120b200128020021050c0f0b2006101222050d170b200641011015000b2006101222050d130b200641011015000b2006101222050d0f0b200641011015000b2006101222050d130b200641011015000b2006101222050d090b200641011015000b2006101222050d050b200641011015000b2006101222050d010b200641011015000b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41003a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d2420054101742203200620062003491b22034100480d242005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2420034101742200200420042000491b22004100480d242003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41063a00002000410c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d2220034101742200200420042000491b22004100480d222003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41023a00002000410c6a28020021050240024002400240024020042802002203200228020022026b41044f0d00200241046a22042002490d2020034101742202200420042002491b22024100480d202003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a2005360000200041096a2d0000200110580f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41043a0000200041186a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600002000411c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041206a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041246a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1e20054101742203200920092003491b22034100480d1e2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a2006360000200041286a28020021050240024002400240024020042802002204200228020022036b41044f0d00200341046a22062003490d1e20044101742203200620062003491b22034100480d1e2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a20053600002000412c6a2d000020011058200041106a290300210702400240024002400240200141046a2802002203200628020022006b41084f0d00200041086a22042000490d1e20034101742200200420042000491b22004100480d1e2003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041086a360200200320006a20073700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41033a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1c20054101742203200620062003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1c20054101742203200920092003491b22034100480d1c2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022004101460d00024020004102460d0020004103470d02200428020020022802002200470d05200041016a22032000490d2e20004101742204200320032004491b22044100480d2e2000450d0b20012802002000200410142203450d0c0c150b200428020020022802002200470d02200041016a22032000490d2d20004101742204200320032004491b22044100480d2d2000450d0620012802002000200410142203450d070c120b200428020020022802002200470d02200041016a22032000490d2c20004101742204200320032004491b22044100480d2c2000450d0720012802002000200410142203450d080c0f0b200428020020022802002200470d03200041016a22032000490d2b20004101742204200320032004491b22044100480d2b2000450d0a20012802002000200410142203450d0b0c0c0b200128020021030c100b200128020021030c0d0b200128020021030c100b200128020021030c090b2004101222030d0b0b200441011015000b2004101222030d070b200441011015000b2004101222030d090b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41013a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021000b2002200041016a360200200320006a41033a00000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41053a00002000412c6a28020021060240024002400240024020042802002205200228020022036b41044f0d00200341046a22092003490d1a20054101742203200920092003491b22034100480d1a2005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341046a360200200520036a20063600000240024002400240024020042802002204200228020022036b41204f0d00200341206a22052003490d1a20044101742203200520052003491b22034100480d1a2004450d0120012802002004200310142204450d020c030b200128020021040c030b2003101222040d010b200341011015000b20012004360200200141046a2003360200200141086a28020021030b2002200341206a360200200420036a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012005360200200141046a2006360200200141086a28020021030b2002200341016a360200200520036a41013a00000240024002400240024020042802002205200228020022036b41204f0d00200341206a22062003490d1820054101742203200620062003491b22034100480d182005450d0120012802002005200310142205450d020c030b200128020021050c030b2003101222050d010b200341011015000b20012005360200200141046a2003360200200141086a28020021030b2002200341206a360200200520036a220341186a200041096a220541186a290000370000200341106a200541106a290000370000200341086a200541086a290000370000200320052900003700002000412c6a28020021050240024002400240024020042802002203200228020022006b41044f0d00200041046a22042000490d1820034101742200200420042000491b22004100480d182003450d0120012802002003200010142203450d020c030b200128020021030c030b2000101222030d010b200041011015000b20012003360200200141046a2000360200200141086a28020021000b2002200041046a360200200320006a20053600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41063a0000200041026a2103200141046a2802002105200428020021020240024002400240024002400240024002400240024020002d00014101470d0020052002470d01200241016a22002002490d1c20024101742204200020002004491b22044100480d1c2002450d0320012802002002200410142200450d040c090b20052002470d01200241016a22002002490d1b20024101742204200020002004491b22044100480d1b2002450d0420012802002002200410142200450d050c060b200128020021000c080b200128020021000c050b2004101222000d050b200441011015000b2004101222000d010b200441011015000b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41003a000002400240024002400240200141046a28020020042802002200470d00200041016a22022000490d1820004101742204200220022004491b22044100480d182000450d0120012802002000200410142202450d020c030b200128020021020c030b2004101222020d010b200441011015000b20012002360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200220006a20032d00003a00000f0b20012000360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200020026a41013a000002400240024002400240200141046a2802002202200428020022006b41204f0d00200041206a22042000490d1620024101742200200420042000491b22004100480d162002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041206a360200200220006a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200120032900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d2020024101742204200320032004491b22044100480d202002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1f20024101742204200320032004491b22044100480d1f2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1e20024101742204200320032004491b22044100480d1e2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1820034101742202200420042002491b22024100480d182003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1820024101742200200320032000491b22004100480d182002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1620034101742202200420042002491b22024100480d162003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041d8006a2903002107200041d0006a290300210802400240024002400240200141046a2802002203200428020022026b41104f0d00200241106a22042002490d1420034101742202200420042002491b22024100480d142003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241106a360200200320026a2202200737000820022008370000200041e8006a2903002107200041e0006a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220241094b0d0002400240024002400240024002400240024020020e0a00060304010708050a02000b200141046a280200200141086a2802002202470d0f200241016a22032002490d4e20024101742204200320032004491b22044100480d4e2002450d1f20012802002002200410142203450d200c3f0b200141046a280200200141086a2802002200470d09200041016a22022000490d4d20004101742203200220022003491b22034100480d4d2000450d1420012802002000200310142202450d150c3c0b200141046a280200200141086a2802002202470d09200241016a22032002490d4520024101742204200320032004491b22044100480d452002450d1520012802002002200410142203450d160c390b200141046a280200200141086a2802002200470d09200041016a22022000490d4b20004101742203200220022003491b22034100480d4b2000450d1620012802002000200310142202450d170c360b200141046a280200200141086a2802002200470d09200041016a22022000490d4a20004101742203200220022003491b22034100480d4a2000450d1720012802002000200310142202450d180c330b200141046a280200200141086a2802002202470d09200241016a22032002490d4220024101742204200320032004491b22044100480d422002450d1820012802002002200410142203450d190c300b200141046a280200200141086a2802002200470d0a200041016a22022000490d4820004101742203200220022003491b22034100480d482000450d1b20012802002000200310142202450d1c0c2d0b200141046a280200200141086a2802002200470d0a200041016a22022000490d4720004101742203200220022003491b22034100480d472000450d1c20012802002000200310142202450d1d0c2a0b200141046a280200200141086a2802002202470d0a200241016a22032002490d3f20024101742204200320032004491b22044100480d3f2002450d1d20012802002002200410142203450d1e0c270b200141046a28020020042802002200470d0a200041016a22022000490d4520004101742203200220022003491b22034100480d452000450d1e20012802002000200310142202450d1f0c240b200141046a280200200141086a2802002202470d0a200241016a22032002490d3d20024101742204200320032004491b22044100480d3d2002450d1f20012802002002200410142203450d200c210b200128020021020c330b200128020021030c300b200128020021020c2d0b200128020021020c2a0b200128020021030c270b200128020021030c300b200128020021020c230b200128020021020c200b200128020021030c1d0b200128020021020c1a0b200128020021030c170b2003101222020d270b200341011015000b2004101222030d230b200441011015000b2003101222020d1f0b200341011015000b2003101222020d1b0b200341011015000b2004101222030d170b200441011015000b2004101222030d1f0b200441011015000b2003101222020d110b200341011015000b2003101222020d0d0b200341011015000b2004101222030d090b200441011015000b2003101222020d050b200341011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41093a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1f20034101742202200420042002491b22024100480d1f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041296a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41073a0000200041106a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d1b20024101742200200320032000491b22004100480d1b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41063a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41083a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1520034101742202200420042002491b22024100480d152003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041096a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041296a220341186a290000370000200241106a200341106a290000370000200241086a200341086a2900003700002002200329000037000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0f20034101742202200420042002491b22024100480d0f2003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041c9006a220041186a290000370000200141106a200041106a290000370000200141086a200041086a290000370000200120002900003700000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a00002000410c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0b20024101742200200420042000491b22004100480d0b2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d1c20024101742204200320032004491b22044100480d1c2002450d0720012802002002200410142203450d080c0f0b200141046a28020020042802002202470d01200241016a22032002490d1b20024101742204200320032004491b22044100480d1b2002450d0420012802002002200410142203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d1a20024101742204200320032004491b22044100480d1a2002450d0720012802002002200410142203450d080c090b200128020021030c0b0b200128020021030c0c0b200128020021030c070b2004101222030d070b200441011015000b2004101222030d070b200441011015000b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a2903002107200041106a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1420024101742200200320032000491b22004100480d142002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1220034101742202200420042002491b22024100480d122003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a290000370000200220032900003700002000412c6a280200210302400240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d1220024101742200200420042000491b22004100480d122002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41023a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d1020034101742202200420042002491b22024100480d102003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041096a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041386a2903002107200041306a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d1020024101742200200320032000491b22004100480d102002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0e20024101742204200320032004491b22044100480d0e2002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041086a290300210702400240024002400240200141046a2802002202200428020022006b41084f0d00200041086a22032000490d0e20024101742200200320032000491b22004100480d0e2002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200220006a20073700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a410a3a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0320034101742202200420042002491b22024100480d032003450d0120012802002003200210142203450d020c040b200128020021030c040b2002101222030d020b200241011015000b1010000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41053a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0720024101742204200320032004491b22044100480d072002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a0000200041186a280200210502400240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241046a360200200320026a2005360000200041106a2903002107200041086a290300210802400240024002400240200141046a2802002202200428020022006b41104f0d00200041106a22032000490d0720024101742200200320032000491b22004100480d072002450d0120012802002002200010142202450d020c030b200128020021020c030b2000101222020d010b200041011015000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041106a360200200220006a22012007370008200120083700000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a000002400240024002400240200141046a28020020042802002202470d00200241016a22032002490d0520024101742204200320032004491b22044100480d052002450d0120012802002002200410142203450d020c030b200128020021030c030b2004101222030d010b200441011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41003a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0520034101742202200420042002491b22024100480d052003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a2204200241206a360200200320026a220241186a200041086a220341186a290000370000200241106a200341106a290000370000200241086a200341086a29000037000020022003290000370000200041046a2802002103024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0320024101742200200420042000491b22004100480d032002450d0120012802002002200010142202450d020c040b200128020021020c040b2000101222020d020b200041011015000b1010000b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000b1300200041063602042000419884c0003602000bd40101037f230041306b2200240002400240024041af82c000411041e4a4c100410041001001417f460d00200041003602204101210141af82c0004110200041206a41044100100141016a41044d0d022000280220210241af82c000411010050c010b410021010b20002002410020011b36020c200041206a41086a2201420037030020004200370320418080c0004115200041206a1000200041106a41086a200129030037030020002000290320370310200041106a41102000410c6a41041004200041306a24000f0b41de86c00041331023000b13002000410b360204200041ccc0c1003602000b02000b3101017f0240410110122202450d00200042818080801037020420002002360200200241003a00000f0b410141011015000bf21305037f017e057f017e057f230041d0016b22012400200141b0016a41086a22024200370300200142003703b00141cc81c0004111200141b0016a1000200141f0006a41086a22032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001418080c0004115200141b0016a100020032002290300370300200120012903b001370370200141f0006a4110100520024200370300200142003703b001419580c0004117200141b0016a100020032002290300370300200120012903b001370370200141f0006a41101005200141dd81c000410d1030200129030821042001280200210520024200370300200142003703b001418c83c0004111200141b0016a100020032002290300370300200120012903b00137037002400240024002400240024002400240200141f0006a411041e4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010012202417f460d022002411f4d0d0220014190016a41186a2206200141b0016a41186a220329030037030020014190016a41106a2207200141b0016a41106a220829030037030020014190016a41086a2209200141b0016a41086a2202290300370300200120012903b0013703900120024200370300200142003703b001418c83c0004111200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a4110100520032006290300370300200820072903003703002002200929030037030020012001290390013703b001200141106a41186a2003290300370300200141106a41106a2008290300370300200141106a41086a2002290300370300200120012903b0013703100c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200220014190016a41086a29030037030020012001290390013703b001200141106a41186a4200370300200141106a41106a4200370300200141106a41086a4200370300200142003703100b200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b0013703704100210202400240200141f0006a411041e4a4c100410041001001417f460d0020014210370294012001200141f0006a36029001200141b0016a20014190016a103120012802b0012207450d0520012902b401210a200141b0016a41086a22024200370300200142003703b00141bf81c000410d200141b0016a1000200141f0006a41086a2002290300370300200120012903b001370370200141f0006a41101005200a422088a72102200aa721090c010b41042107410021090b200141b0016a41086a22034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b00137037002400240200141f0006a411041e4a4c100410041001001417f460d00200141c8016a4200370300200141b0016a41106a420037030020034200370300200142003703b001200141f0006a4110200141b0016a4120410010012203417f460d032003411f4d0d0320014190016a41186a220b200141b0016a41186a220829030037030020014190016a41106a220c200141b0016a41106a220629030037030020014190016a41086a220d200141b0016a41086a2203290300370300200120012903b0013703900120034200370300200142003703b00141ea81c0004115200141b0016a1000200141f0006a41086a2003290300370300200120012903b001370370200141f0006a411010052008200b2903003703002006200c2903003703002003200d29030037030020012001290390013703b001200141306a41186a2008290300370300200141306a41106a2006290300370300200141306a41086a2003290300370300200120012903b0013703300c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200320014190016a41086a29030037030020012001290390013703b001200141306a41186a4200370300200141306a41106a4200370300200141306a41086a4200370300200142003703300b200141f0006a41186a22034200370300200141f0006a41106a22084200370300200141f0006a41086a2206420037030020014200370370200141f0006a1006200141d0006a41186a2003290300370300200141d0006a41106a2008290300370300200141d0006a41086a200629030037030020012001290370370350200141b0016a41186a220b200141106a41186a290300370300200141b0016a41106a220c200141106a41106a290300370300200141b0016a41086a220d200141106a41086a290300370300200120012903103703b00120034200370300200842003703002006420037030020014200370370200141b0016a41202004420020051b2204427f7c200141f0006a1007450d0520014190016a41186a2205200329030037030020014190016a41106a220e200829030037030020014190016a41086a220f20062903003703002001200129037037039001200320052903003703002008200e2903003703002006200f2903003703002001200129039001370370200b2003290300370300200c2008290300370300200d2006290300370300200120012903703703b00120092002470d04200241016a22032002490d0220024101742208200320032008491b2209ad42247e220a422088a70d02200aa722034100480d02024002402002450d002007200241246c200310142207450d010c060b2003101222070d050b200341041015000b41de86c00041331023000b41de86c00041331023000b1010000b41de86c00041331023000b2007200241246c6a220341003a0000200341196a200141c8016a290300370000200341116a200141c0016a290300370000200341096a200141b8016a290300370000200320012903b001370001200341216a20012f0090013b0000200341236a20014192016a2d00003a0000200241016a21020b2000200129031037001420002004370300200020012903503700342000412c6a200141106a41186a290300370000200041246a200141106a41106a2903003700002000411c6a200141106a41086a2903003700002000413c6a200141d0006a41086a290300370000200041c4006a200141d0006a41106a290300370000200041cc006a200141d0006a41186a290300370000200041ec006a200141306a41186a290300370000200041e4006a200141306a41106a290300370000200041dc006a200141306a41086a29030037000020002001290330370054200041106a20023602002000410c6a200936020020002007360208200141d0016a24000bf50104017f017e017f017e230041206b2203240042002104200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310024002400240200341106a411041e4a4c100410041001001417f460d0020034200370300200341106a4110200341084100100141016a41084d0d0220032903002106200341086a22054200370300200342003703002001200220031000200341106a41086a200529030037030020032003290300370310200341106a41101005420121040c010b0b2000200437030020002006370308200341206a24000f0b41de86c00041331023000b9a1605027f017e137f017e0b7f23004190026b22022400200241086a2001102802400240024002400240024002400240024002400240024002402002280208450d00200228020c2203ad42247e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510122206450d032003450d020c040b2000410036020020024190026a24000f0b4104210620030d020b41002115410021130c020b200541041015000b200241b8016a41106a2105200241b8016a4101722107200241f8006a41116a2108200241c7016a2109200241106a410172210a200141046a210b200141086a210c2002418c026a41026a210d20024180026a210e200241f0016a210f410021104100211141002112200321130340200241003a00b8012001280200200b280200200241b8016a4101200c28020010012114200c200c280200201441016a41014b22146a22153602002014450d0320022d00b801221441034b0d030240024002400240024002400240024020140e0400030102000b2002200110282002280200450d0a20022802042214417f4c0d0d2014450d03201410762215450d0f200c201441002001280200200b28020020152014200c280200100122162016417f461b2216201620144b1b2216200c2802006a36020020162014460d040c090b200241b8016a41186a2216420037030020054200370300200241b8016a41086a22174200370300200242003703b801200c41002001280200200b280200200241b8016a41202015100122142014417f461b2214412020144120491b200c2802006a3602002014411f4d0d09200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf0121182008411f6a200241b8016a411f6a290000370000200841186a2016290000370000200841106a2005290000370000200841086a2017290000370000200820022900b801370000410121170c040b200242003703b801200c41002001280200200b280200200241b8016a41082015100122142014417f461b2214410820144108491b200c2802006a2215360200201441074d0d0820022903b8012104200f4200370300200241b8016a41306a4200370300200241b8016a41286a4200370300200241b8016a41206a4200370300200241b8016a41186a420037030020054200370300200241b8016a41086a4200370300200242003703b801200c41002001280200200b280200200241b8016a41c0002015100122142014417f461b221441c000201441c000491b200c2802006a3602002014413f4d0d08200241f8006a41086a200941086a290000370300200241f8006a41106a200941106a290000370300200241f8006a41186a200941186a290000370300200241f8006a41206a200941206a290000370300200241f8006a41286a200941286a290000370300200241f8006a41306a200941306a2d00003a0000200220022d00ba013a00b201200220022f01b8013b01b0012002200929000037037820022800bb01211520022900bf012118410221170c040b200241b8016a2001104020022802b8012215450d0720022902bc012118200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a2903003703002002200d2d00003a00b201200220022f008c023b01b001200220022903b801370378410021170c020b410121152001280200200b28020041014100200c28020010011a41002014470d050b200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a2005290300370300200241f8006a41186a200241b8016a41186a290300370300200241f8006a41206a200241b8016a41206a290300370300200241f8006a41286a200241b8016a41286a290300370300200241f8006a41306a200241b8016a41306a290300370300200220022f008c023b01b001200220022903b8013703782002200d2d00003a00b2012014ad22044220862004842118410321170b0b200d20022d00b2013a0000200241b8016a41086a2214200241f8006a41086a22192903003703002005200241f8006a41106a221a290300370300200241b8016a41186a2216200241f8006a41186a221b290300370300200241b8016a41206a221c200241f8006a41206a290300370300200241b8016a41286a221d200241f8006a41286a290300370300200241b8016a41306a221e200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241f4006a41026a221f200d2d00003a0000200241386a41086a22202014290300370300200241386a41106a22212005290300370300200241386a41186a22222016290300370300200241386a41206a2223201c290300370300200241386a41286a221c201d290300370300200241386a41306a221d201e290300370300200220022f018c023b0174200220022903b80137033820142018370300200720022f01743b0000200741026a201f2d00003a000020052002290338370000200541086a2020290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201c290300370000200541306a201d290300370000200220173a00b801200220153602bc01200e2004370300200241106a200241b8016a107920022d00102117200241b8016a411f6a221c200a411f6a2800003600002016200a41186a2900003703002005200a41106a2900003703002014200a41086a2900003703002002200a2900003703b80120174102460d04201241016a2115200241f8006a411f6a221d201c280000360000201b2016290300370300201a200529030037030020192014290300370300200220022903b801370378024020122013470d002010201520152010491b2213ad42247e2204422088a70d062004a722144100480d0602402012450d00200620112014101422060d010c090b201410122206450d080b200620116a221420173a0000201441206a201d280000360000201441196a201b290300370000201441116a201a290300370000201441096a2019290300370000201441016a2002290378370000201041026a2110201141246a21112015211220152003490d000b0b2000201336020420002006360200200041086a201536020020024190026a24000f0b2014450d002015101f0b2002418c026a41026a20022d00b2013a0000200241b8016a41086a2205200241f8006a41086a290300370300200241b8016a41106a2214200241f8006a41106a290300370300200241b8016a41186a220c200241f8006a41186a290300370300200241b8016a41206a200241f8006a41206a290300370300200241b8016a41286a200241f8006a41286a290300370300200241b8016a41306a200241f8006a41306a290300370300200220022f01b0013b018c02200220022903783703b801200241023a0010200241b8016a411f6a200a411f6a280000360000200c200a41186a2900003703002014200a41106a2900003703002005200a41086a2900003703002002200a2900003703b8010b2000410036020002402012450d00200621050340024020052d0000450d00200541086a280200450d00200541046a280200101f0b200541246a21052011415c6a22110d000b0b02402013450d002006101f0b20024190026a24000f0b1010000b100f000b201441041015000b201441011015000b130020004102360204200041e8c7c1003602000b3301017f0240410410122202450d0020004284808080c0003702042000200236020020024180203600000f0b410441011015000b130020004104360204200041ff85c0003602000b130020004101360204200041b8c9c1003602000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d02200420024120108002450d02200441206a22062002460d02200620024120108002450d02200441c0006a22062002460d02200620024120108002450d02200441e0006a22062002460d0220044180016a21042006200241201080020d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d02200420024120108002450d022006200441206a2204470d000b0b41000f0b20050b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41053602002004412c6a4102360200200441043602342004420237021c20044194cac1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a41a4cac100103a000bff1002177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b200021090c010b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d020b410221000240024002400240024002400240024002400240200d41776a220f411e4b0d0041f400210e0240200f0e1f09000303040303030303030303030303030303030303030303020303030302090b41ee00210e0c080b200d41dc00470d010b0c050b200d10e6010d03200d41ffff034b0d01200d4180fe0371410876211141b8a8c100211241002113410021000c020b41f200210e0c040b0240200d41ffff074b0d00200d4180fe0371410876211641f3adc100211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d0520134188a9c1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d01201021132014211220144188a9c100470d030c010b201021132014211220144188a9c100470d010b200d41ffff0371210e41b7abc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041f3adc100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d4c7c2001024000b200f410173210f200041f3adc100470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021049000b20132010101a000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841b5aec1006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441b5aec100470d030c010b2010211820142117201441b5aec100470d010b200d41ffff0371210e41d3afc10021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041d0b2c100460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41d4c7c2001024000b200f410173210f200041d0b2c100470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011049000b20182010101a000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c0240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b024020072802002004200a6a200b200a6b200828020028020c1101000d0002400340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d092019422088a741ff0171417f6a220041044b0d09024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c0008421190c030b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f832019428080808070838421190c010b201942ffffffff8f60834280808080108421190b410321000b2007280200200a2008280200280210110000450d000c020b0b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d030c040b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a10e701000b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a200310e801000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b110020012000280200200028020410f7010b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241acc6c200360204200241e4a4c100360200200210ef01000bdc0701067f230041106b220324002003200136020c2003410c6a2002101302400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101422060d020c070b200228020021060c020b200710122206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101422060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101422060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101422060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101422060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810122206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810122206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810122206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810122206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200841011015000b200841011015000b200841011015000b200841011015000b9f0204017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1000200341086a200529030037030020032003290310370300024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012201417f460d012001410f4d0d01200341186a290300210420032903102106200342003703182003420037031020034110200341106a4110411010012201417f460d012001410f4d0d0120032903102107200041206a200341186a290300370300200041186a2007370300200041106a200437030020002006370308420121040b20002004370300200341206a24000f0b41de86c00041331023000b9d0705017f017e047f017e027f230041d0006b2203240042002104200341c0006a41086a220542003703002003420037034020012002200341c0006a1000200341206a41086a20052903003703002003200329034037032002400240200341206a411041e4a4c100410041001001417f460d00200342103702342003200341206a360230200341186a200341306a10282003280218450d01200328021c2106200341003a0040200341386a2201200128020022012003280230220720032802342208200341c0006a41012001100141016a41014b22026a22013602002002450d01024002400240024020032d0040220541037122024102460d0020024101460d0120020d022005410276ad2104420021090c030b20034100360240200320053a0040200341386a2202410020072008200341c0006a41017241032001100122012001417f461b22014103200141034922011b20022802006a36020020010d042003280240410276ad2104420021090c020b200341003b0140200320053a0040200341386a200120072008200341c0006a41017241012001100141016a220241014b6a36020020024102490d0320032f0140410276ad2104420021090c010b024002400240024020054102762202450d0020024104460d012002410c470d032003420037034820034200370340200341306a41086a410020072008200341c0006a41102001100122022002417f461b22024110200241104922021b20016a36020020020d06200341c0006a41086a29030021090c020b20034100360240200341386a410020072008200341c0006a41042001100122022002417f461b22024104200241044922021b20016a36020020020d0520033502402104420021090c030b4200210920034200370340200341306a41086a410020072008200341c0006a41082001100122022002417f461b22024108200241084922021b20016a36020020020d040b200329034021040c010b200241046a220a41104b0d02200341306a41086a210b4200210442002109410021020340200341003a0040200b200120072008200341c0006a41012001100141016a41014b22056a22013602002005450d03200341086a20033100404200200241037441f80071108302200341086a41086a290300200984210920032903082004842104200241016a220241ff0171200a490d000b0b20002004370308200041106a2009370300200041186a2006360200420121040b20002004370300200341d0006a24000f0b41de86c00041331023000bac0201027f230041206b2202240002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200320013600060240024002402003410a41e4a4c100410041001001417f460d00200241186a4200370300200241106a4200370300200241086a4200370300200242003703002003410a20024120410010012201417f460d022001411f4d0d0220002002290300370000200041186a200241186a290300370000200041106a200241106a290300370000200041086a200241086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b2003101f200241206a24000f0b41de86c00041331023000b410641011015000b410c41011015000b8f0803037f017e067f230041c0006b22012400200141306a41086a220242003703002001420037033041ba88c000411d200141306a1000200141106a41086a200229030037030020012001290330370310024002400240024002400240024002400240200141106a411041e4a4c100410041001001417f460d00200142103702042001200141106a360200200141306a2001104020012802302202450d0402402001280234450d002002101f0b20002802002202450d01200041046a280200450d012002101f200141c0006a24000f0b0240024020002802002203450d00200029020421040c010b410610122200450d06200041046a41002f00a388403b00002000410028009f884036000020004106410c10142200450d07200041086a41002d00a788403a0000200041002f00a588403b0006024002402000410941e4a4c100410041001001417f460d00200141003602104101210320004109200141106a41044100100141016a41044d0d07200128021021052000101f2005450d012005ad4205862204422088a70d042004a722004100480d04200010122203450d0a41002102200321000340200141106a2002103e200041186a200141106a41186a290000370000200041106a200141106a41106a290000370000200041086a200141106a41086a29000037000020002001290010370000200041206a21002005200241016a2202470d000c020b0b2000101f41012103410021050b2005ad220442208620048421040b200141003602182001420137031020012004422088a72200360230200141306a200141106a1013024002402000450d00200041057421064100200141106a41086a28020022026b210720012802102108200128021421092003210003400240200920076a411f4b0d00200241206a22052002490d052009410174220a20052005200a491b22054100480d05024002402009450d00200820092005101422080d010c080b200510122208450d070b200521090b200820026a22052000290000370000200541186a200041186a290000370000200541106a200041106a290000370000200541086a200041086a290000370000200741606a2107200241206a2102200041206a2100200641606a22060d000b200141186a200236020020012009360214200120083602100c010b200141186a280200210220012802142109200128021021080b200141306a41086a220042003703002001420037033041ba88c000411d200141306a1000200141106a41086a200029030037030020012001290330370310200141106a411020082002100402402009450d002008101f0b2004a7450d002003101f0b200141c0006a24000f0b1010000b200541011015000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200041011015000bdc0403027f017e0d7f230041d0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001001220f200f417f461b220f4120200f4120491b20052802006a360200200f411f4d0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101422060d010c060b200e10122206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d002006101f0b200241d0006a24000f0b1010000b200e41011015000b13002000410636020420004194cbc1003602000b130020004109360204200041f68fc0003602000b130020004101360204200041dccec1003602000bd80101027f024002400240024002402000280200220141064b0d0020010e0704040104020403040b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041086a280200450d03200041046a280200101f0f0b200041086a280200450d022000280204101f0f0b200041086a280200450d012000280204101f0f0b200041086a280200450d002000280204101f0f0b0b8b2f09247f047e0f7f017e087f027e107f027e1a7f230041d0026b2204240002400240024020014115490d0041012105410221064103210741322108413021094108210a4158210b4150210c417f210d4138210e410b210f4128211041202111411821124110211341afe000211441807f2115410021164160211741682118417021194178211a41c000211b41c800211c41d000211d41d800211e4101211f41012120410021210c010b410021230c010b410121230b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024020230e020001010b20014102490d0c41a07f2158200041a07f6a21594101215a4100215b4130215c4108215d4158215e4150215f417f21604128216141182162412021634110216441a87f2165418801216641d8002167418001216841d000216941f800216a41c800216b41f000216c41c000216d41e800216e4138216f41e000217041012171410121210c010b02400240024020210e03000d01010b201f20207121220c010b2049204c20096c6a212302400340204b204c200d6a224c4f0d012023290300212a2023200a6a21252023200c6a22242123202a2045542025290300222a204454202a2044511b0d000c100b0b2000204537030020002044370308203d2046290300370300203f204729030037030020412048290300370300200020042903003703102001204b20056a2223490d082000202320096c6a2100200120236b22014115490d020b2003450d090240201f2005710d002000200110462003200d6a21030b2001200676222320076c21242023200574212541002126024020012008490d00200620052000202320096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b222c1b202c20282029202c1b2228202720096a290300222954202a202b202c1b222a2027200e6a290300222b54202a202b511b222d1b200020232023200d6a222e202c1b222f20096c6a222729030020292028202d1b542027200a6a2903002228202b202a202d1b222a542028202a511b22306a2000202520096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22316a2028202920311b222820002025200572223220096c6a2227290300222954202a202b20311b222a2027200a6a290300222b54202a202b511b22336a200020252025200d6a223420311b223520096c6a22272903002029202820331b542027200a6a2903002228202b202a20331b222a542028202a511b22366a2000202420096c6a2227200c6a290300222820272903002229542027200b6a290300222a2027200a6a290300222b54202a202b511b22376a2028202920371b2228202720096a290300222954202a202b20371b222a2027200e6a290300222b54202a202b511b22276a200020242024200d6a223820371b223920096c6a22262903002029202820271b542026200a6a2903002228202b202a20271b222a542028202a511b223a6a21262039202420056a2038202420371b20271b203a1b2124203520322034202520311b20331b20361b2125202f202320056a202e2023202c1b202d1b20301b21230b20262000202320096c6a222729030022282000202520096c6a222c2903002229542027200a6a290300222a202c200a6a290300222b54202a202b511b22276a2028202920271b22282000202420096c6a222c290300222954202a202b20271b222a202c200a6a290300222b54202a202b511b222c6a212602400240024020002025202320271b223920096c6a223129030020292028202c1b5a2031200a6a2903002228202b202a202c1b222a5a2028202a511b0d00202620056a2226200f4b0d0120264521230c020b20242023202520271b202c1b213920264521230c010b024020012005762224450d002000200120096c6a200c6a2123200021250340200441a0026a20106a2227202520106a222c290300370300200441a0026a20116a2226202520116a2231290300370300200441a0026a20126a2237202520126a222d290300370300200441a0026a20136a2233202520136a222e290300370300200441a0026a200a6a222f2025200a6a2230290300370300200420252903003703a0022023200a6a2232290300212a202320136a2234290300212b202320126a22352903002128202320116a223629030021292023290300213b202c202320106a223829030037030020312029370300202d2028370300202e202b3703002030202a3703002025203b370300203820272903003703002036202629030037030020352037290300370300203420332903003703002032202f290300370300202320042903a002370300202520096a21252023200c6a21232024200d6a22240d000b0b20012039200d736a2139410121230b02402022200d73202345722005710d002000200110470d0c0b024002402002450d00203920014f0d0a2000203920096c6a22232903002002290300542023200a6a2225290300222a2002200a6a290300222b54202a202b511b0d01200441a0026a20106a223c200020106a223d290300370300200441a0026a20116a223e200020116a223f290300370300200441a0026a20126a2240200020126a2241290300370300200441a0026a20136a2242200020136a2224290300370300200441a0026a200a6a22432000200a6a2227290300370300200420002903003703a0022025290300212a202320136a222c2903002144202320126a2226290300212b202320116a2231290300212820232903002145203d202320106a2237290300370300203f20283703002041202b370300202420443703002027202a370300200020453703002037203c2903003703002031203e29030037030020262040290300370300202c204229030037030020252043290300370300202320042903a0023703002027290300214420002903002145200420126a2246203d290300370300200420136a2247203f2903003703002004200a6a22482041290300370300200420242903003703002000200c6a2149200020096a214a4100214b41002001224c200d6a22254f0d040c100b2001450d070b203920014f0d05200441a0026a20106a2234200020106a224d290300370300200441a0026a20116a2235200020116a224e290300370300200441a0026a20126a2236200020126a224f290300370300200441a0026a20136a2238200020136a2250290300370300200441a0026a200a6a221f2000200a6a2251290300370300200420002903003703a0022000203920096c6a2223290300212a2023200a6a2225290300212b202320136a22242903002128202320126a22272903002129202320116a222c290300213b204d202320106a2226290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a37030020262034290300370300202c203529030037030020272036290300370300202420382903003703002025201f290300370300202320042903a0023703002051290300212a2000290300212b200420126a2252204d290300370300200420136a2253204e2903003703002004200a6a2254204f29030037030020042050290300370300200020096a21314100212002402001200d6a2224450d00203121230340202b20232903005a202a2023200a6a29030022285a202a2028511b0d01202320096a2123202020056a22202024490d000b0b2000200120096c6a21232024212502400340202321272025223a20204d0d01203a200d6a2125202b2027200c6a222329030054202a2027200b6a290300222854202a2028511b450d000b0b203a2020490d042024203a490d034180012130410021264100212e4100212c4100213341800121322031202020096c6a225521310340202720316b222320096e21250240024002400240024002400240202320144b22390d00202520156a2025202e2026492033202c4922247222371b21232037450d012032202320241b21322023203020241b21300b2033202c470d020c010b2023202320057622326b21302033202c470d010b2032450d0141002125200441206a2233212c203121230340202c20253a0000202c202b20232903005a202a2023200a6a29030022285a202a2028511b6a212c202320096a21232032202520056a2225470d000b0b202e2026470d020c010b200441206a222c2133202e2026470d010b02402030450d002027200c6a212341002125200441a0016a222e21260340202620253a00002026202b202329030054202a2023200a6a290300222854202a2028511b6a21262023200c6a21232030202520056a2225470d000c020b0b200441a0016a2226212e0b02402026202e6b2223202c20336b2225202520234b1b222f450d002034203120332d000020096c6a222320106a2903003703002035202320116a2903003703002036202320126a2903003703002038202320136a290300370300201f2023200a6a290300370300200420232903003703a002203120332d000020096c6a22232027202e2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703000240202f2005460d004100212403402027202e20246a22372d0000200d7320096c6a22232031203320246a20056a222d2d000020096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a2903003703002031202d2d000020096c6a22232027203720056a2d0000200d7320096c6a2225290300370300202320106a202520106a290300370300202320116a202520116a290300370300202320126a202520126a290300370300202320136a202520136a2903003703002023200a6a2025200a6a290300370300202420066a2123202420056a222521242023202f490d000b202e20256a212e203320256a21330b2027202e2d0000200d7320096c6a222320042903a002370300202320106a2034290300370300202320116a2035290300370300202320126a2036290300370300202320136a20382903003703002023200a6a201f290300370300202e20056a212e203320056a21330b2031203220096c6a20312033202c461b21312027201620306b20096c6a2027202e2026461b212720390d000b024002402033202c4f0d00034020342031202c200d6a222c2d000020096c6a222520106a22242903003703002035202520116a22262903003703002036202520126a22372903003703002038202520136a222d290300370300201f2025200a6a222e290300370300200420252903003703a0022027200c6a222329030021282027200b6a222f2903002129202720176a2230290300213b202720186a22322903002156202720196a2239290300215720242027201a6a22272903003703002026205737030020372056370300202d203b370300202e20293703002025202837030020272034290300370300203920352903003703002032203629030037030020302038290300370300202f201f290300370300202320042903a002370300202321272033202c490d000c020b0b20312123202e20264f0d0003402026200d6a22262d000021252034202320106a22242903003703002035202320116a222c2903003703002036202320126a22312903003703002038202320136a2237290300370300201f2023200a6a222d290300370300200420232903003703a00220272025200d7320096c6a222529030021282025200a6a22332903002129202520136a222f290300213b202520126a22302903002156202520116a223229030021572024202520106a2239290300370300202c2057370300203120563703002037203b370300202d202937030020232028370300203920342903003703002032203529030037030020302036290300370300202f20382903003703002033201f290300370300202520042903a002370300202320096a2123202e2026490d000b0b2000202a3703082000202b370300204d2052290300370300204e2053290300370300204f2054290300370300200020042903003703100240024002402001202320556b20096e20206a22254d0d002034204d2903003703002035204e2903003703002036204f29030037030020382050290300370300201f2051290300370300200420002903003703a0022000202520096c6a2223290300212a2023200a6a2224290300212b202320136a22272903002128202320126a222c2903002129202320116a2226290300213b204d202320106a2231290300370300204e203b370300204f2029370300205020283703002051202b3703002000202a3703002031203429030037030020262035290300370300202c2036290300370300202720382903003703002024201f290300370300202320042903a002370300200120256b2224450d0120242025202520244b1b21272001200776212c202320096a21260240024020252024200d6a22014f0d002000202520022003104520232102202621000c010b20262001202320031045202521010b2027202c4f211f203a20204d2120200141154f0d02410021230c160b41e0cfc100202520011048000b41f0cfc1001024000b41002121410121230c130b410121230c120b410021230c110b41022121410121230c100b203a20241049000b2020203a101a000b41e0cfc100203920011048000b41d0cfc100410041001048000b20232001101a000b4188d0c100203920011048000b20002001104a200441d0026a24000f0b2071205a6a2127024020002071205c6c6a2224205f6a2223290300202429030022285a2024205e6a290300222b2024205d6a2225290300222a5a202b202a511b0d00200420626a2231202420616a222c290300370300200420646a2237202420636a22262903003703002004205d6a222d202420626a2233290300370300200420242903103703002024202329030037030020252023205d6a290300370300202420646a202320646a2903003703002033202320626a2903003703002026202320636a290300370300202c202320616a2903003703002000207120606a222c205c6c6a21260240024002400240202c450d00205b212520592123202420586a29030020285a202420656a290300222b202a5a202b202a511b0d030340202320666a202320676a290300370300202320686a202320696a2903003703002023206a6a2023206b6a2903003703002023206c6a2023206d6a2903003703002023206e6a2023206f6a290300370300202320706a2023205c6a2903003703002025205a460d022023290300212b2023205d6a2124202520606a21252023205f6a2123202b2028542024290300222b202a54202b202a511b0d000c030b0b4100212c0c020b410021250b20002025205c6c6a21262025212c0b202620283703002026202a3703082000202c205c6c6a222320616a2031290300370300202320636a2037290300370300202320626a202d290300370300202320042903003703100b205b205a6a215b2059205c6a21592027217120272001470d010b200441d0026a24000f0b41012121410121230c060b203c204a204b20096c6a222320106a2225290300370300203e202320116a22272903003703002040202320126a222c2903003703002042202320136a222629030037030020432023200a6a2231290300370300200420232903003703a002202420096a2237290300212a2024200e6a222d290300212b2024201b6a223329030021282024201c6a222e29030021292024201d6a222f290300213b20252024201e6a22242903003703002027203b370300202c2029370300202620283703002031202b3703002023202a3703002024203c290300370300202f203e290300370300202e204029030037030020332042290300370300202d2043290300370300203720042903a002370300204b20056a224b204c200d6a22254f0d010b204a204b20096c6a212302400340202329030020455a2023200a6a290300222a20445a202a2044511b450d01202320096a2123204b20056a224b2025490d000b410221210c020b410221210c020b410221210c020b410121230c020b410121230c010b410121230c000b0b86090b107f017e017f017e017f017e017f017e017f017e017f230041306b22022400024002400240024020014108490d00200141017641feffffff07712203417f6a220420014f0d032001410d74200173220541117620057322054105742005732206417f2001417f6a677622077122054100200120052001491b6b220520014f0d01200241286a22082000200441306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e2903003703002013201029030037030020052002290300370300200320014f0d022006410d7420067322044111762004732204410574200473220620077122044100200120042001491b6b220520014f0d01200241286a22082000200341306c6a220441286a2209290300370300200241206a220a200441206a220b290300370300200241186a220c200441186a220d290300370300200241106a220e200441106a220f290300370300200241086a2210200441086a2211290300370300200220042903003703002000200541306c6a22052903002112200541086a22132903002114200541106a22152903002116200541186a22172903002118200541206a2219290300211a2009200541286a221b290300370300200b201a370300200d2018370300200f20163703002011201437030020042012370300201b20082903003703002019200a2903003703002017200c2903003703002015200e29030037030020132010290300370300200520022903003703002003410172220420014f0d032006410d742006732205411176200573220541057420057320077122054100200120052001491b6b220520014f0d01200241286a22032000200441306c6a220141286a2204290300370300200241206a2206200141206a2207290300370300200241186a2208200141186a2209290300370300200241106a220a200141106a220b290300370300200241086a220c200141086a220d290300370300200220012903003703002000200541306c6a22002903002112200041086a22052903002114200041106a220e2903002116200041186a220f2903002118200041206a2210290300211a2004200041286a22112903003703002007201a37030020092018370300200b2016370300200d2014370300200120123703002011200329030037030020102006290300370300200f2008290300370300200e200a2903003703002005200c290300370300200020022903003703000b200241306a24000f0b41e0cfc100200520011048000b200321040b41d0cfc100200420011048000bf30b05087f027e107f017e017f230041306b22022400200041c07e6a2103200041506a21044100210520014132492106410121070240024002400340024002400240200720014f0d002004200741306c6a210803402008290300200841306a220929030054200841086a290300220a200841386a290300220b54200a200b511b0d0220092108200741016a22072001490d000b0b410021082007200146210920060d030c010b410121082007200146210920060d020b20072001460d012007417f6a220920014f0d022008450d032000200941306c6a2208290300210a20082000200741306c220c6a2209290300370300200241286a220d200841286a220e290300370300200241206a220f200841206a2210290300370300200241186a2211200841186a2212290300370300200241106a2213200841106a2214290300370300200241086a2215200841086a22162903003703002016200941086a22172903003703002014200941106a22182903003703002012200941186a22192903003703002010200941206a221a290300370300200e200941286a221b2903003703002002200a370300201b200d290300370300201a200f29030037030020192011290300370300201820132903003703002017201529030037030020092002290300370300024020074102490d0020002007417e6a220f41306c6a220d2903002008290300221c5a200d41086a221d290300220b2016290300220a5a200b200a511b0d002008200d2903003703002016201d2903003703002008290310210b2014200d41106a2903003703002011200e29030037030020132010290300370300201520122903003703002012200d41186a2903003703002010200d41206a290300370300200e200d41286a2903003703002002200b3703000240024002400240200f450d0020002007417d6a221641306c6a2208290300201c5a200841086a290300220b200a5a200b200a511b0d032003200c6a2108034020084188016a200841d8006a29030037030020084180016a200841d0006a290300370300200841f8006a200841c8006a290300370300200841f0006a200841c0006a290300370300200841e8006a200841386a290300370300200841e0006a200841306a2903003703002016450d022008290300210b200841086a210d200841506a21082016417f6a2116200b201c54200d290300220b200a54200b200a511b0d000b201641016a210f0c020b4100210f0c020b4100210f0b2000200f41306c6a210d0b200d201c370300200d200a3703082000200f41306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b200541016a21050240200120076b220e4102490d002009290300221c20092903305a2017290300220a200941386a290300220b5a200a200b511b0d002009200941306a22162903003703002017201641086a2903003703002009290310210b2018201641106a2903003703002011201b2903003703002013201a290300370300201520192903003703002019201641186a290300370300201a201641206a290300370300201b201641286a2903003703002002200b370300410121100240200e4103490d00201c20092903605a200a200941e8006a290300220b5a200a200b511b0d00200941e0006a21084103210d41022117034020092017221041306c6a221641786a200841286a290300370300201641706a200841206a290300370300201641686a200841186a290300370300201641606a200841106a290300370300201641586a200841086a290300370300201641506a2008290300370300200d200e4f0d01200d41306c2108200d2117200d41016a210d201c200920086a220829030054200a200841086a290300220b54200a200b511b0d000b0b2016201c3703002016200a3703082009201041306c6a22082002290300370310200841286a2011290300370300200841206a2013290300370300200841186a20152903003703000b20054105490d000b410021090b200241306a240020090f0b41d0cfc100200920011048000b41e0cfc100200720011048000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41013602002003411c6a4102360200200341013602242003420237020c2003419cc6c200360208200320033602282003200341046a3602202003200341206a360218200341086a2000103a000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241bcc6c2003602082002200241046a360228200220023602202002200241206a360218200241086a41ccc6c200103a000bdd0b09167f017e037f017e017f017e017f027e0c7f230041306b2202240002400240024020014101762203450d00417f210441022105413021064108210741282108412021094118210a4110210b4100210c0c010b4100210d0c010b4101210d0b03400240024002400240024002400240024002400240024002400240200d0e020001010b4102212420014102490d01417f2125412821264120212741182128411021294108212a4130212b4101212c2001212d4101210c0c0b0b02400240200c0e020001010b200320046a2203210d0340200d410174221a41017221230240201a20056a221a20014f0d00202320014f0d06201a20232000201a20066c6a22172903002000202320066c6a221929030054201720076a2903002218201920076a290300221c542018201c511b1b21230b0240202320014f0d00200d20014f0d042000202320066c6a221a2903002000200d20066c6a220d2903005a201a20076a22192903002218200d20076a2217290300221c5a2018201c511b0d00200220086a220e200d20086a220f290300370300200220096a2210200d20096a22112903003703002002200a6a2212200d200a6a22132903003703002002200b6a2214200d200b6a2215290300370300200220076a221620172903003703002002200d29030037030020192903002118201a200b6a221b290300211c201a200a6a221d290300211e201a20096a221f2903002120201a2903002121200f201a20086a2222290300370300201120203703002013201e3703002015201c37030020172018370300200d20213703002022200e290300370300201f2010290300370300201d2012290300370300201b201429030037030020192016290300370300201a20022903003703002023210d0c010b0b20030d074100210d0c0c0b202d20256a222d20014f0d05200220266a220e200020266a221a290300370300200220276a220f200020276a2223290300370300200220286a2210200020286a2217290300370300200220296a2211200020296a22192903003703002002202a6a22122000202a6a2213290300370300200220002903003703002000202d202b6c6a220d2903002118200d202a6a2214290300211c200d20296a2215290300211e200d20286a22162903002120200d20276a221b2903002121201a200d20266a221d29030037030020232021370300201720203703002019201e3703002013201c37030020002018370300201d200e290300370300201b200f290300370300201620102903003703002015201129030037030020142012290300370300200d20022903003703004100210d0340200d202c74221a202c7221230240201a20246a221a202d4f0d002023202d4f0d06201a20232000201a202b6c6a221729030020002023202b6c6a2219290300542017202a6a29030022182019202a6a290300221c542018201c511b1b21230b02402023202d4f0d00200d202d4f0d0420002023202b6c6a221a2903002000200d202b6c6a220d2903005a201a202a6a22192903002218200d202a6a2217290300221c5a2018201c511b0d00200e200d20266a2213290300370300200f200d20276a22142903003703002010200d20286a22152903003703002011200d20296a2216290300370300201220172903003703002002200d29030037030020192903002118201a20296a221b290300211c201a20286a221d290300211e201a20276a221f2903002120201a29030021212013201a20266a2222290300370300201420203703002015201e3703002016201c37030020172018370300200d20213703002022200e290300370300201f200f290300370300201d2010290300370300201b201129030037030020192012290300370300201a20022903003703002023210d0c010b0b202d202c4b0d070b200241306a24000f0b41a8d0c100200d20011048000b41a8d0c100200d202d1048000b4198d0c100202320011048000b4198d0c1002023202d1048000b41e0cfc100202d20011048000b4100210c0c010b4101210c0c010b4101210d0c020b4101210d0c010b4101210d0c000b0b130020004102360204200041ecc4c2003602000b130020004100360204200041e4a4c1003602000b130020004101360204200041acdac1003602000b130020004103360204200041f0d8c1003602000b130020004101360204200041bcafc2003602000b130020004103360204200041b881c2003602000b13002000410136020420004180aec2003602000b130020004102360204200041c4aec2003602000b130020004107360204200041c49ac2003602000b13002000410b36020420004184e9c1003602000b1300200041023602042000418cbec2003602000b130020004101360204200041f0bfc1003602000bf60201057f230041206b220224000240024020002d0000220320012d0000470d00024020034101470d002000410c6a28020022042001410c6a280200470d012004450d02200041046a2802002203200141046a2802002205460d024100210603402003200541201080020d02200341206a2103200541206a2105200641016a22062004490d000c030b0b20002001460d01200041016a200141016a4120108002450d010b418c93c00041141008200041046a280200210520002d00002103200241186a22062000410c6a2802003602002002200341014736021020022005200041016a20034101461b3602142002200241106a1011200228020022002002280208100902402002280204450d002000101f0b200141046a280200210320012d0000210020062001410c6a2802003602002002200041014736021020022003200141016a20004101461b3602142002200241106a101120022802002200200228020810092002280204450d002000101f0b200241206a24000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310142202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310142202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310142202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310142202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310142202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310142202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101222020d140b200341011015000b2003101222020d100b200341011015000b2003101222020d0c0b200341011015000b2003101222020d100b200341011015000b2003101222020d060b200341011015000b2003101222020d020b200341011015000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000b92d8020b027f017e057f027e037f017e017f027e0c7f0d7e6a7f230041d0066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441094b0d00024020040e0a009e010402090805060307000b20034198046a41086a200141106a2903003703002003200141086a2903002205370398042005a7417e6a220441054b0d9f01200241086a2800002106200241046a280000210720022d00002102024020040e06002220211e23000b41012108200341a0046a2802002109200328029c04210a200241ff017122024101470d4102402009450d00200a101f0b41002107410121094101210a0c490b200141086a2903004202520d9f01412d21064101210741fe80c000410041fe80c00020022d000041ff017122024102461b20024103461b22040db202200141106a290300210520034190036a41086a22024200370300200342003703900341be93c000411320034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a4110100a0dab0120024200370300200342003703900341f594c000410d20034190036a10002007200229030037030020032003290390033703980420034198046a411041e4a4c100410041001001417f460da602200342003703900520034198046a411020034190056a41084100100141016a41084d0d9d01200329039005500da60220034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a220720022903003703002003200329039003370398044200210b024020034198046a411041e4a4c100410041001001417f460d00200342003703900520034198046a411020034190056a41084100100141016a41084d0da901200329039005210b0b200242003703002003420037039003418295c000411520034190036a10002007200229030037030020032003290390033703980420034198046a411041e4a4c100410041001001417f460d4a200342003703900520034198046a411020034190056a41084100100141016a41084d0da901200329039005200b7c2005560d4b0ca6020b200341b8036a41046a22082001410e6a2f01003b010020034190056a41086a2209200141206a29030037030020034190056a41106a220a200141286a29030037030020032001410a6a2801003602b8032003200141186a29030037039005200141096a2d00002107200141106a2903002105200141086a2d00002106200341d8036a41086a220d200241206a2d00003a00002003200241186a2900003703d80320022d0000210420064102460d0c20064103460d0a20064104470d9f014128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040da402200320073a009804200341f8036a41086a22024200370300200342003703f80341b1fec0004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410110040c0b0b20034192036a2001410b6a2d00003a0000200341f0026a41086a200141206a290300370300200341f0026a41106a200141286a2903003703002003200141096a2f00003b0190032003200141186a2903003703f002200141086a2d0000220e417e6a220441034b0d9f012001410c6a280200210f200141106a2903002210a7211120022d00002102024020040e04000f0d0e000b4100210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d294128210620110dad020cae020b200341d0026a41086a220d2001412c6a2d00003a00002003200141246a2902003703d002200141386a290300210b200141306a290300210c200141c8006a2903002112200141c0006a2903002113200141206a280200210a200141186a2902002105200141146a2802002106200141106a28020021142001410c6a2d00002115200141086a28020021042001410d6a2f000021072001410f6a2d00002108200341e0026a41086a2216200241206a2d00003a00002003200241186a2900003703e0022007200841107472210920022d0000210820044102460d0520044103470d9f01200341a0066a41086a2207200341d0026a41086a2d00003a0000200320032903d0023703a00641ac80c00041ac80c0004100200841ff017122021b20024103461b2204450d170ca1020b200141386a290300210b200141306a290300210c2001412c6a2802002117200141286a280200210d200141246a2802002114200141206a28020021182001411c6a2802002116200141186a2802002119200141146a280200211a200141106a28020021152001410c6a2802002107200141096a2d0000211b200141086a2d00002106200341f0026a41086a200241206a2d00003a00002003200241186a2900003703f0022006417e6a220641044b0d9f0120022f0001200241036a2d0000411074722104200241146a28000021082002410c6a2900002105200241086a2800002109200241046a280000210a20022d00002102024020060e050016131412000b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d23200341d8036a41086a220220062d00003a000020032003290390033703d80320034180066a41086a220620022d00003a0000200320032903d80337038006200341af056a20062d00003a0000200320083600a3052003200537009b0520032009360097052003200a3600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034190026a20034198046a105a20032903900220034190026a41086a29030084500d5742002105200341a0036a41086a22024200370300200342003703a00341b1f2c0004112200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d5f200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460db2012002410f4d0db201200341a0046a290300210520032903980421120c600b20034198046a200141086a41d00010fe011a20034190056a41206a200241206a2d00003a000020034190056a41186a200241186a29000037030020034190056a41106a200241106a29000037030020034190056a41086a200241086a2900003703002003200229000037039005200341b8026a20034198046a20034190056a105b20032802bc02210620032802b80221044100210941012107410121084101210a4101210d0cb1020b200141106a28020021062001410c6a2802002107200141086a2802002109200141046a280200210420034180066a41086a2208200241206a2d00003a00002003200241186a2900003703800620044102470d9e01200241036a2d0000210420022f0001210a200241146a280000210d2002410c6a2900002105200241086a2800002116200241046a280000211520022d0000210220034190036a41086a20082d00003a0000200320032903800637039003200241ff01714101470d03200341a0036a41086a220220034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220820022d00003a0000200320032903a00337039804200341af056a20082d00003a00002003200d3600a3052003200537009b052003201636009705200320153600930520032003290398043700a7052003200a20044110747222043b019005200320044110763a009205200341c0026a20034190056a105c20032903c002200341c0026a41086a29030084500d15200341f8036a41086a22044200370300200342003703f803419086c0004112200341f8036a100020022004290300370300200320032903f8033703a003200341a0036a411041e4a4c100410041001001417f460d1e2003410036029804200341a0036a411020034198046a41044100100141016a41044d0da10120062003280298044d0d1f0c9b020b200341e0026a41086a200141286a2d00003a00002003200141206a2902003703e0022001411c6a2802002116200141146a2902002105200141106a28020021062001410c6a2802002104200141086a2802002108200141046a2802002107200341f0026a41086a2209200241096a290000370300200341f0026a41106a220a200241116a290000370300200341f0026a41186a220d200241196a290000370300200320022900013703f00220022d0000210220074102460d0320074103470d9e01200341a0066a41086a200341e0026a41086a2d00003a0000200320032903e0023703a006200341f8036a41186a200341f0026a41186a290300370300200341f8036a41106a200341f0026a41106a290300370300200341f8036a41086a2207200341f0026a41086a290300370300200320032903f0023703f803200241ff01714101470d0c200341a0036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703a00320032900fb03210b200329008304210c200328008b04210920032f01f803210a20032d00fa03210d20034198046a41086a221520022d00003a0000200320032903a0033703980420034190056a411f6a20152d00003a00002003200d3a0092052003200a3b019005200320093600a3052003200c37009b052003200b3700930520032003290398043700a70520074200370300200342003703f80341ef8fc1004108200341f8036a100020022007290300370300200320032903f8033703a003200341a0036a411041e4a4c100410041001001417f460d2620034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460da5012002411f4d0da50120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2207200341f8036a41106a29030037030020034180066a41086a2209200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200729030037030020034198046a41086a20092903003703002003200329038006370398040c270b200341f0026a41086a2001412c6a2802003602002003200141246a2902003703f002200141186a290300210c200141206a28020021152001410c6a2802002108200141096a2d00002114200141106a2903002105200141086a2d00002107200341e0026a41086a200241206a2d00003a00002003200241186a2900003703e0022007417e6a2206410a4b0d9e0120022f0001200241036a2d00004110747221042005a72109200241146a280000210a2002410c6a290000210b200241086a280000210d200241046a280000211620022d00002102024020060e0b00312e2f2c323330352d34000b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d5020034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341af056a20062d00003a00002003200a3600a3052003200b37009b052003200d36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520034198046a20034190056a105d20032d0098044101470d6041f7e3c00021044123210620074104470df3010cf8010b200241036a2d0000210420022f0001211a200241146a28000021182002410c6a2900002112200241086a2800002117200241046a2800002119200341f0026a41086a200d2d00003a0000200320032903d0023703f00220034190036a41086a20162d00003a0000200320032903e0023703900341012107200841ff01714101470d0920034198046a41086a220720034190036a41086a2d00003a0000200320032903900337039804200341d8036a41086a220220072d00003a000020032003290398043703d803200341bf066a20022d00003a0000200320183600b306200320123700ab06200320173600a706200320193600a306200320032903d8033700b7062003201a20044110747222043b01a006200320044110763a00a2062002200341f0026a41086a2d00003a0000200320032903f0023703d803201541ff01714101470d1a20034198046a2014410676101e20032802a0042014413f7122024d0d3c200341c0036a20032802980420024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029c04450d8e020c8d020b20034198046a41086a200341a0036a41086a2d00003a0000200320032902a00337039804412a210641d480c000210420070d98020c99020b200341f8036a41186a200d290300370300200341f8036a41106a200a290300370300200341f8036a41086a2009290300370300200320032903f0023703f803200241ff01714101470d09200341d8036a41086a2202200341f8036a411f6a2d00003a00002003200329008f043703d80320032900fb032105200329008304210b200328008b04210620032f01f803210420032d00fa03210720034180066a41086a220920022d00003a0000200320032903d80337038006200341a0066a411f6a20092d00003a0000200320073a00a206200320043b01a006200320063600b3062003200b3700ab06200320053700a30620032003290380063700b706200341f8036a41086a22024200370300200342003703f80341ef8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411041e4a4c100410041001001417f460d2420034190046a4200370300200341f8036a41106a420037030020024200370300200342003703f803200341a0036a4110200341f8036a4120410010012202417f460da2012002411f4d0da20120034180066a41186a2202200341f8036a41186a29030037030020034180066a41106a2206200341f8036a41106a29030037030020034180066a41086a2204200341f8036a41086a290300370300200320032903f8033703800620034198046a41186a200229030037030020034198046a41106a200629030037030020034198046a41086a20042903003703002003200329038006370398040c250b4128210641ac80c00041ac80c0004100200441ff017122021b20024103461b22040d99022003200537039804200341f8036a41086a22024200370300200342003703f80341b084c1004119200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810040b0c85020b200241036a2d0000211620022f00012115200241146a28000021142002410c6a290000210b200241086a2800002106200241046a280000211920034197066a20092903003700002003419f066a200a2d00003a0000200320073a0080062003200537008706200320032802b80336008106200320032903900537008f06200320082f01003b00850620034190036a41086a200d2d00003a0000200320032903d80337039003200441ff01714101470d0f200341a0036a41086a220420034190036a41086a2d00003a000020032003290390033703a00320034198046a41086a220220042d00003a0000200320032903a00337039804200341f0026a41086a220420022d00003a000020032003290398043703f002200341a0066a41086a20042d00003a0000200320032903f0023703a00620034198046a41186a20034180066a41186a29030037030020034198046a41106a20034180066a41106a290300370300200220034180066a41086a290300370300200320032903800637039804411210122202450da001200241106a41002f00d984413b0000200241086a41002900d18441370000200241002900c9844137000020024112413210142202450da1012002201520164110747222043b0012200220143600252002200b37001d2002200636001920022019360015200220032903a006370029200241146a20044110763a0000200241316a200341a0066a41086a2d00003a0000412010122204450da2012004200329039804370000200441186a20034198046a41186a290300370000200441106a20034198046a41106a290300370000200441086a20034198046a41086a290300370000200341f8036a41086a22074200370300200342003703f80320024132200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a003200341a0036a41102004412010042004101f2002101f0c84020b200341b8036a41086a2209200341f0026a41086a290300370300200341b8036a41106a2215200341f0026a41106a2d00003a0000200320034192036a2d00003a00d203200320032f0190033b01d003200320032903f0023703b80341ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034197066a20092903003700002003419f066a20152d00003a000020032010370087062003200f36008306200320032d00d2033a008206200320032f01d0033b018006200320032903b80337008f0641b79dc100210420034180066a105e450d9e024108211c200341f8036a41086a22024200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0034100211d200341a0036a411041e4a4c100410041001001417f460d5a20034210370294052003200341a0036a3602900520034198046a20034190056a105f200328029804221c450db301200341a0046a280200211e200328029c04211d0c5b0b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0142002105200341f8036a41086a22024200370300200342003703f80341dd81c000410d200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a0030240200341a0036a411041e4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d9b0120032903980421050b411c2106200520105a0d442003201037039804200341f8036a41086a22024200370300200342003703f80341aa96c1004112200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a410810044100210241002104200e4102460d9e020ca0020b200341a7056a200341f0026a41086a290300370000200341af056a200341f0026a41106a2d00003a000020032010370097052003200f36009305200320032f0190033b019005200320032903f00237009f05200320034192036a2d00003a00920541ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d1b0b412821060c9e020b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d803412a210641d480c00021040c9f020b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040cf3010b20034180066a41086a200341d8036a41086a2d00003a0000200320032903d80337038006412a210641d480c00021040c1c0b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d02412921062007450d4b2003200736029804200341a0036a41086a22024200370300200342003703a00341a8f8c0004118200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cff010b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0f200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220620022d00003a0000200320032903a00337038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206411310122202450d9d012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d9e0120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d2c20034198046a20071060200341a0066a200341cc046a4120108002450d4e41caf7c0002104411c21060c730b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2a0b412821060cfc010b20034190036a41086a2206200341f0026a41086a2d00003a0000200320032903f00237039003200241ff01714101470d0e20034198046a41086a220220062d00003a000020032003290390033703980420034180066a41086a220620022d00003a0000200320032903980437038006200341bf066a20062d00003a0000200320083600b306200320053700ab06200320093600a7062003200a3600a30620032003290380063700b706200320043b01a006200320044110763a00a206200341a0066a105e450d37411310122202450da4012002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450da50120022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d2920034198046a2007106020032d008c05450d5c41baf6c0002104411d2106200341b8046a280200450dfa010cf9010b200341d8036a41086a20072d00003a0000200320032903a0063703d803201541ff01714101470d0f20034190056a2014410676101e2003280298052014413f7122024d0d37200341c0036a20032802900520024105746a2202411f6a2d00003a0000200320022900173703b80320022f0000200241026a2d00004110747221092002280013210a200229000b2105200228000721062002280003211441012102200328029405450df4010cf3010b41a286c0002104411b21062007450d87020c86020b41002107200341a0046a2802002106200328029c04210a41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d27410121092006450d05200a101f0c050b20034198046a41086a200341a0036a41086a2d00003a0000200320032903a00337039804412a210641d480c00021040c87020b41012108200341a0046a2802002109200328029c04210d200241ff017122024101470d1f02402009450d00200d101f0b4100210a41012109410121070c290b410121094101210741ac80c00041ac80c0004100200241ff017122021b20024103461b22040d0220034198046a41086a2903002105410810122202450d9b012002200537000041a490c000410a2002410810042002101f4100210441012108410121094101210a410121070c290b41fe80c000410041fe80c000200241ff017122024102461b20024103461b2104412d210641012108410121094101210a0c1e0b200341a4046a2802002107200341a0046a280200210a200328029c04210841ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d2402402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b4101210741002109200a450d002008101f0b41282106200328029804417e6a220241054b0d29024020020e06002e2b2a2c2d000b200341a0046a280200450d2d200328029c04101f0c2d0b200341b8036a41086a20022d00003a0000200320032903d8033703b8030cf4010b20064180204b0dfc010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a290300370300200320032903900537039804410910122202450d8b01200241086a41002d00d286403a0000200241002900ca864037000020024109412910142202450d8c012002200329039804370009200241216a200341b0046a290300370000200241196a200341a8046a290300370000200241116a200341a0046a290300370000200341003602a806200342013703a006200320063602f803200341f8036a200341a0066a101320032802a406220a20032802a80622086b20064f0d1b200820066a22042008490d8202200a410174220d20042004200d491b220d4100480d8202200a450d3920032802a006200a200d10142204450d3a0ce6010b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c020b20034180066a41086a200341d8036a41086a2d00003a0000200320032902d80337038006412a210641d480c0002104200d450de3010ce2010b20034180066a41086a20034198046a41086a2d00003a00002003200329039804370380060b412a210641d480c00021040ceb010b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b8030ce5010b2010422088a72202450d3020024105742206410575220aad4206862205422088a70dfd012005a722044100480dfd0120041012220d450d9101200f20066a2116200241057421044100200f6b2115200d2102200f2106034020034180066a41186a2207200641186a29000037030020034180066a41106a2208200641106a29000037030020034180066a41086a2209200641086a2900003703002003200629000037038006200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003702002002412c6a2008290300370200200241246a20092903003702002002411c6a200329038006370200200241c0006a2102200641206a2106200441606a22040d000b201620156a41606a41057641016a21022011450ddd010cdc010b20034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980441919dc100210420034198046a105e0dbb0141082107200341d8036a41086a220820034198046a41176a290000370300200341d8036a41106a220920034198046a411f6a2d00003a0000200320032d009a043a00f203200320032f0198043b01f003200320032900a7043703d803200328009b042102200329009f042105200341f8036a41086a22064200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2006290300370300200320032903f8033703a00341002104200341a0036a411041e4a4c100410041001001417f460d3e20034210370284062003200341a0036a36028006200341a0066a20034180066a105f20032802a0062207450d9601200341a0066a41086a280200210820032802a40621042003418f046a200341d8036a41086a29030037000020034197046a200341e8036a2d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a210620082004460d3f0cba010b200341b0046a4200370300200341a8046a4200370300200341a0046a420037030020034200370398040b024020034190056a20034198046a4120108002450d00419990c1002104413121060cd9010b200341d8036a41086a2202200341a0066a41086a2d00003a0000200320032903a0063703d803200841ff01714101470d2420034198046a2004410676101e20032802a0042004413f7122024d0d33200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132116200429000b2105200428000721062004280003210441012107200328029c04450dd5010cd4010b200341b0046a420037030020034198046a41106a420037030020034198046a41086a420037030020034200370398040b200341a0066a20034198046a4120108002450d0141f78fc1002104412221060b200810202008101f0cd5010b20034198046a200841d80010fe011a41002104200341003a00900520034188026a20034198046a20034190056a10592003200328028802453a009a04200341063b01980420034198046a10272008101f0cd4010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d21200341a0036a41086a220220062d00003a000020032003290390033703a00320034180066a41086a220720022d00003a0000200320032903a00337038006200341af056a20072d00003a00002003200a3600a3052003200b37009b052003200d36009705200320163600930520032003290380063700a705200320043b019005200320044110763a00920520024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460dcb01200342103702a406200320034190036a3602a00620034198046a200341a0066a10402003280298042202450d9001200328029c042106200220084105746a2204450d3e200341a0046a28020020084d0d3e20034190056a2004460d50200420034190056a41201080024521042006450dca010cc9010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d082003200836029804200341a0036a41086a22024200370300200342003703a00341eecec0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040ccb010b200341f8036a41086a2206200341f0026a41086a280200360200200320032903f0023703f80320034190036a41086a2214200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d2020034180066a41086a221920142d00003a0000200320032903900337038006200341d8036a41086a220220192d00003a000020032003290380063703d803200341bf066a20022d00003a00002003200a3600b3062003200b3700ab062003200d3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a206200220062d00003a0000200320032903f8033703d803200841ff01714101470d3020034198046a2009410676101e20032802a0042009413f7122024d0d41200341c0036a20032802980420024105746a2204411f6a2d00003a0000200320042900173703b80320042f0000200441026a2d000041107472210220042800132115200429000b210c20042800072106200428000321044101210a200328029c04450db5010cb4010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d2020034198046a41086a220220062d00003a0000200320032903900337039804200341d8036a41086a220620022d00003a000020032003290398043703d803200341a0066a411f6a20062d00003a00002003200a3600b3062003200b3700ab062003200d3600a706200320163600a306200320032903d8033700b706200320043b01a006200320044110763a00a20620034198046a200341a0066a105d20032d0098044101470d3020034180066a41086a2202200341b8046a2d00003a00002003200341b0046a29030037038006200341a4046a2902002105200341ac046a2802002106200329029c04210b20032f009904210420032d009b042107200341d8036a41086a220920022d00003a000020032003290380063703d80320034190056a411f6a20092d00003a0000200320073a009205200320043b019005200320063600a3052003200537009b052003200b37009305200320032903d8033700a70520034180066a20034190056a106120032802800621020240200328028806220420084d0d00200341a0066a200220084105746a2206460d4c2006200341a0066a4120108002450d4c0b0240200328028406450d002002101f0b41ade5c0002104411421060cc9010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d052003200836029804200341a0036a41086a22024200370300200342003703a00341a6e1c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41041004410021040cc8010b20034190036a41086a2206200341e0026a41086a2d00003a0000200320032903e00237039003200241ff01714101470d2020034190056a41086a220220062d00003a000020032003290390033703900520034180066a41086a220720022d00003a0000200320032903900537038006200341b7046a20072d00003a00002003200a3600ab042003200b3700a3042003200d36009f042003201636009b0420032003290380063700af04200320043b019804200320044110763a009a04200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020062002290300370300200320032903a003370390034100210220034190036a411041e4a4c100410041001001417f460d37200342103702a406200320034190036a3602a00620034190056a200341a0066a10402003280290052207450d8c0120034198056a280200210220032802940521060c380b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d032003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a003418ce1c000411a200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc6010b41ac80c00041ac80c0004100200241ff017122021b20024103461b22040d022003200542808080807083200542ffffffff0f838437039804200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a41081004410021040cc5010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d214128210620090dc0010cc4010b41ac80c00041ac80c0004100200241ff017122021b20024103461b2204450d210b412821060cc2010b200741d480c00020024101461b2104412a21064100210a02402009450d00200d101f0b410121090b410121070c090b200741d480c00020024101461b2104412a21064100210702402009450d00200a101f0b410121094101210a0c080b20032802a00621040ccb010b411310122202450d742002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d7520022007360013200341a0036a41086a22064200370300200342003703a00320024117200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f2006450d0020034198046a2007106020032d008c05450d2a41baf6c0002104411d2106200341b8046a2802000d2b0c2c0b4188f6c0002104411c21060cd1010b41fc89c0004105200a200341a4046a28020010044101210802402006450d00200a101f0b410021090c020b41002102200328029c040dd0010cd1010b0240200741186c2202450d00200820026a21062008210203402002280200200241086a2802002002410c6a280200200241146a2802001004200241186a22022006470d000b0b02402007450d00200741186c21062008210203400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200641686a22060d000b0b410121090240200a450d002008101f0b410021080b4101210a410121070b410021040b0240024002400240200328029804417e6a220241054b0d00024020020e06000b02010304000b2007450d0a200341a0046a280200450d0a200328029c04101f0c0a0b20034198046a10440c090b200a450d08200341a0046a280200450d08200328029c04101f0c080b2009450d07200341a0046a280200450d07200328029c04101f0c070b2008450d06024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d06200328029c04101f0c060b4205200b7c2005580ddb010b41d8d8c1001024000b20034198046a10440c030b200341a0046a280200450d02200328029c04101f0c020b2007450d01200341a0046a280200450d01200328029c04101f0c010b2009450d00024020034198046a410c6a2802002207450d00200328029c042102200741186c210703400240200241046a280200450d002002280200101f0b0240200241106a280200450d002002410c6a280200101f0b200241186a2102200741686a22070d000b0b200341a0046a280200450d00200328029c04101f0b41012108410021070ce2010b41e3f5c0002104412521060cc3010b410021022003280294050dbb010cbc010b200341b8036a41086a20022d00003a0000200320032903d8033703b803200841087621020cb1010b41f59cc100210441002102200e4102460dd9010cdb010b20034180066a41086a200341a0036a41086a2d00003a0000200320032903a003370380060c040b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803412a210641d480c000210420074104470da4010ca9010b200341d8036a41086a20034198046a41086a2d00003a000020032003290398043703d8030c020b20034180066a41086a20034198046a41086a2d00003a00002003200329029804370380060c010b20034180066a41086a20034190056a41086a2d00003a00002003200329029005370380060b412a210641d480c00021040ca5010b41e7f3c000210441202106200d0dae010caf010b4108210d4100210220110dab010cac010b20032005422088a73602a0042003200936029c0420032008360298042003411436029405200341c8cec0003602900520034198046a20034190056a106202402009450d002008101f0b410021040ca2010b200341a0036a41086a22024200370300200342003703a0034196d1c0004115200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900320034190036a411041e4a4c10041001004200320143a00980420024200370300200342003703a00341b1fec0004119200341a0036a100020062002290300370300200320032903a0033703900320034190036a411020034198046a41011004410021040ca1010b200d101222040dac010b200d41011015000b41fff7c00021040cb3010b41002107200328029c040da0010ca1010b42e40021120b02402012200c562005200b562005200b511b450d004187f4c000210441102106200d0da6010ca7010b201a450d10200341a0036a41086a22024200370300200342003703a00341c3f2c0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d1b200341003602980420034190036a411020034198046a41044100100141016a41044d0d57201a2003280298044d0d1c0c84010b20032d008c05450d1741baf6c0002104411d21060c240b200341b8036a41086a200341d8036a41086a2d00003a0000200320032903d8033703b803200841087621022005422088a72106200921040c85010b200341d8036a41086a20034180066a41086a2d00003a000020032003290380063703d803411a21064193e5c00021040c98010b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a003370390034100210d20034190036a411041e4a4c100410041001001417f460d15200342103702a406200320034190036a3602a00620034198046a200341a0066a1040200328029804220a450d5f200341a0046a280200210d200328029c0421160c160b4100211e0b201c201e41067422096a22810121022009450d0e20034198046a411c6a21820120034198046a41146a21094100211520034198046a41186a21830120034198046a41206a21840120034198046a41286a218501034020034198046a41086a228601201c20156a2202411c6a29020037030020034198046a41106a2214200241246a2902003703002083012002412c6a290200370300208401200241346a2902003703002085012002413c6a2802003602002003200241146a29020037039804200241106a280200221a450d0e20022903002110200241086a290300212420034190056a41286a22870120850128020036020020034190056a41206a22880120840129030037030020034190056a41186a22890120830129030037030020034190056a41106a228a01201429030037030020034190056a41086a228b012086012903003703002003200329039804370390052014201a3602002009200329039005370200200941086a208b01290300370200200941106a208a01290300370200200941186a208901290300370200200941206a208801290300370200200941286a208701280200360200200320243703a004200320103703980420820120034180066a41201080020d1202402009280200450d00201a101f0b201541c0006a2115200241c0006a208101470d000b2081012202208101470d0f0c100b200341f8036a41176a2008290300370000200341f8036a411f6a20092d00003a0000200320053700ff03200320023600fb03200320032d00f2033a00fa03200320032f01f0033b01f803200320032903d80337008704200341f8036a21060b200441016a22022004490dbc0120044101742208200220022008491b2209ad4206862205422088a70dbc012005a722024100480dbc012004450d0620072004410674200210142207450d070c790b200341cc046a20032903980420034198046a41086a2903001063412821062007410110642204450d15200341b8046a280200450d010b20032802b404101f0b200341c4046a280200450da50120032802c004101f0ca5010b41012107410021060b200341a0036a41086a22044200370300200342003703a00341decfc000411d200341a0036a100020034190036a41086a2004290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200341003602900520034190036a411020034190056a41044100100141016a41044d0d4220032802900521042006450d740c730b4104210420060d720c730b2006450d8c012002101f0c8c010b2002101222070d720b200241081015000b4197f4c000210441222106200d0d94010c95010b20032903a804210b200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a22062002290300370300200320032903a0033703900342002105024020034190036a411041e4a4c100410041001001417f460d00200342003703900520034190036a411020034190056a41084100100141016a41084d0d4320032903900521050b20024200370300200342003703a00341a4f6c0004116200341a0036a100020062002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0e200342003703900520034190036a411020034190056a41084100100141016a41084d0d432005200329039005200b7c5a0d1d0c680b4100210a200328029c040d720c730b200241c0006a21020b2002208101460d010b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b4100218c010240201d450d00201c101f0b4108218d01410821024100218e010cb0010b200341a0066a41286a2214200941286a280200360200200341a0066a41206a228301200941206a290200370300200341a0066a41186a228401200941186a290200370300200341a0066a41106a228501200941106a290200370300200341a0066a41086a228601200941086a290200370300200320092902003703a00620034198046a41286a2209201428020036020020034198046a41206a221420830129030037030020034198046a41186a22830120840129030037030020034198046a41106a22840120850129030037030020034198046a41086a228501208601290300370300200320032903a0063703980441c0001012228d01450d4d208d012010370300208d01201a360210208d01200329039804370214208d012024370308411c218201208d01411c6a2085012903003702004124218b01208d0141246a208401290300370200412c218a01208d01412c6a2083012903003702004134218901208d0141346a2014290300370200413c218801208d01413c6a2009280200360200201e41067441406a2015460d0a200241c0006a218f01411421900120034198046a41146a21094106219101201c201e4106746a41406a21920120034198046a411c6a21930141012194014110211441082115412821870120034198046a41286a2185014120211a20034198046a41206a218401411821860120034198046a41186a21830141c000219501420621244220211041002196014101218e014101218c01410121020caa010b4200210b200341a0036a41086a22024200370300200342003703a00341e6f7c0004119200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0a2003420037039805200342003703900520034190036a411020034190056a4110410010012202417f460d4b2002410f4d0d4b20034198056a290300210b20032903900521050c0b0b4101210a410021160b200a200d4105746a2104200a21020340200420026b41ff004d0d0d20034190056a2002460d0e200220034190056a4120108002450d0e200241206a220620034190056a460d0e200620034190056a4120108002450d0e200241c0006a220620034190056a460d0e200620034190056a4120108002450d0e200241e0006a220620034190056a460d0e20024180016a2102200620034190056a41201080020d000c0e0b0b201a41e4004b0d680b2018450d04200341a0036a41086a22024200370300200342003703a00341d7f2c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0e200341003602980420034190036a411020034198046a41044100100141016a41044d0d4520182003280298044d0d0f0c5c0b20034180066a41086a22072004417f6a2204360200200220044105746a220229000021052002290008210b2002290010210c200641186a200241186a2900003700002006200c3700102006200b3700082006200537000020034198046a41086a2007280200360200200320032903800637039804411510122202450d482002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d4920022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602fc03200320023602f80320034198046a200341f8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d4a200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d4b200220032903a0063700122002412a6a200341a0066a41186a2204290300370000200241226a200341a0066a41106a22072903003700002002411a6a200341a0066a41086a2208290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a411010052002101f20034198046a41186a200429030037030020034198046a41106a200729030037030020034198046a41086a2008290300370300200320032903a0063703980420064200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900342002105024020034190036a411041e4a4c100410041001001417f460d00200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3e20032903f80321050b200341a0036a41086a22024200370300200342003703a00341abd1c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0b200342003703f80320034190036a4110200341f8036a41084100100141016a41084d0d3e20032903f803210b410f2106410f10122202450d0c0c5a0b2003419c056a200736020020034190056a41086a41063a0000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d5c20032802c004101f410021040c91010b4101210420060d780c790b200341a0036a41086a22024200370300200342003703a003418295c0004115200341a0036a1000200341f8036a41086a2002290300370300200320032903a0033703f803200341f8036a411041e4a4c100410041001001417f460d0c2003420037039005200341f8036a411020034190056a41084100100141016a41084d0d40200329039005220c50450d0d41e4a9c2001024000b41c9f4c000210441292106200d0d83010c84010b4101218e014101218c012081012202208101470da2010ca3010b420521050b200341a0026a200341a0066a2005200b1065200341a0066a200329039804220c20057d20034198046a41086a290300200b7d200c200554ad7d1063412821062007410110642204450d010b024020034198046a41206a280200450d0020032802b404101f0b200341c4046a280200450d8a0120032802c004101f0c8a010b20034190056a41086a41013a000020034199056a20032903a00637000020034190056a412c6a2007360200200341a1056a200341a0066a41086a290300370000200341a9056a200341b0066a290300370000200341b1056a200341b8066a290300370000200341073a00900520034190056a10270240200341b8046a280200450d0020032802b404101f0b20034198046a412c6a280200450d5420032802c004101f410021040c89010b024020022004460d00034020034190056a2002460d02200220034190056a4120108002450d022004200241206a2202470d000b0b410f10122202450d44200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d45200220032903900537000f200241276a20034190056a41186a22062903003700002002411f6a20034190056a41106a2204290300370000200241176a20034190056a41086a22152903003700002003427f37039804200341a0036a41086a22144200370300200342003703a0032002412f200341a0036a100020034190036a41086a2014290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20034180066a41186a2214200629030037030020034180066a41106a2206200429030037030020034180066a41086a220420152903003703002003200329039005370380062016200d470d4f200d41016a2202200d490d9c01200d4101742216200220022016491b2216ad4205862205422088a70d9c012005a722024100480d9c01200d450d0b200a200d41057420021014220a450d0c0c4f0b419ae4c0002104411f21062016450d60200a101f20074104470d6d0c720b42e807210b410f2106410f101222020d4e0b200641011015000b20184190ce004b0d4d0b2017450d03200341a0036a41086a22024200370300200342003703a00341f2f2c0004118200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d04200341003602980420034190036a411020034198046a41044100100141016a41044d0d3d20172003280298044d0d050c490b4205210c0b20054280de34200c80200b7c540d4b0b41d7f6c0002104412a2106200341b8046a2802000d7e0c7f0b4189f5c000210441272106200d0d740c750b2017418089fa004b0d440b024020034190056a200c200b1066450d0041c4f5c0002104411f2106200d0d730c740b200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d02200341003602980420034190036a411020034198046a41044100100141016a41044d0d3b20032802980441016a21060c030b20021012220a0d430b200241011015000b410121060b200320063602980442002112200341a0036a41086a22024200370300200342003703a003418af3c0004117200341a0036a100020034190036a41086a221b2002290300370300200320032903a0033703900320034190036a411020034198046a4104100420034180066a41186a420037030020034180066a41106a420037030020034180066a41086a420037030020034200370380062014201720034180066a1002200341d0026a41026a220820032d0082063a0000200341a0066a41086a220920034180066a41176a290000370300200341a0066a41106a220a20034180066a411f6a2d00003a0000200320032f0180063b01d0022003200329008f063703a00620032800830621042003290087062105200341d8036a41086a20034190056a41176a290000370300200341d8036a41106a20034190056a411f6a2d00003a0000200341b8036a41086a2009290300370300200341b8036a41106a200a2d00003a0000200320032d0092053a00f203200320032f0190053b01f0032003200329009f053703d803200320032f01d0023b01d003200320082d00003a00d203200320032903a0063703b8032003280093052159200329009705211320024200370300200342003703a00341dd81c000410d200341a0036a1000201b2002290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d3520032903980421120b20034180066a41026a20082d00003a000020034198046a41086a200929030037030020034198046a41106a200a2d00003a0000200320032f01d0023b018006200320032903a00637039804411810122202450d38200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d39200220032f0180063b00182002200537001f2002200436001b20022003290398043700272002411a6a20034180066a41026a2d00003a00002002412f6a20034198046a41086a290300370000200241376a20034198046a41106a2d00003a0000200341a0036a41086a22084200370300200342003703a00320024138200341a0036a1000200341f8036a41086a2008290300370300200320032903a0033703f803200341f8036a4110100a21092002101f4101210820090d3e200341e0026a41026a200341d0026a41026a2d00003a000020034198046a41086a200341a0066a41086a29030037030020034198046a41106a200341a0066a41106a2d00003a0000200320032f01d0023b01e002200320032903a00637039804411810122202450d3a200241106a41002900b1f340370000200241086a41002900a9f340370000200241002900a1f34037000020024118413810142202450d3b200220032f01e0023b00182002200537001f2002200436001b20022003290398043700272002411a6a200341e2026a2d00003a00002002412f6a200341a0046a290300370000200241376a200341a8046a2d00003a000020034100360288062003420137038006200320173602f803200341f8036a20034180066a1013024002400240200328028406220a20032802880622096b20174f0d00200920176a22082009490d9001200a410174221b20082008201b491b221b4100480d9001200a450d01200328028006200a201b10142208450d020c3f0b20032802800621080c3f0b201b101222080d3d0b201b41011015000b41d0dbc1001024000b41de86c00041331023000b41b8cfc1001024000b41e8dbc1001024000b41b4bcc2001024000b41acc2c2001024000b41ece8c1001024000b41fca9c2001024000b41a0c9c1001024000b419cbcc2001024000b41ac9ac2001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41c0d8c1001024000b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b412041011015000b410941011015000b412941011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b411341011015000b412641011015000b41de86c00041331023000b41de86c00041331023000b410841011015000b41de86c00041331023000b200441081015000b411341011015000b412641011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41c00041081015000b411541011015000b413541011015000b411241011015000b413241011015000b41de86c00041331023000b41de86c00041331023000b410f41011015000b412f41011015000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b2003201b360284062003200836028006201b210a0b200820096a2014201710fe011a200341a0036a41086a221b4200370300200342003703a00320024138200341a0036a100020034190036a41086a201b290300370300200320032903a0033703900320034190036a41102008200920176a10040240200a450d002008101f0b2002101f0240200d450d002014101f0b410021080b200341c8046a2018360200200341c4046a2016360200200341bc046a201a360200200341b8046a2015360200200341ce046a20032d00f2033a0000200341d3046a201337000020034198046a41376a2059360000200341db046a20032903d803370000200341e3046a200341d8036a41086a290300370000200341eb046a200341d8036a41106a2d00003a00002003200c37039804200320193602c004200320073602b404200320063602b004200320123703a8042003200b3703a004200320032f01f0033b01cc04200341ef046a2004360000200341f3046a2005370000200341ee046a20032d00d2033a0000200341fb046a20032903b80337000020034183056a200341b8036a41086a2903003700002003418b056a200341b8036a41106a2d00003a0000200341003a008c05200320032f01d0033b01ec0402400240024002400240411310122202450d002002410f6a41002800c8f340360000200241086a41002900c1f340370000200241002900b9f34037000020024113412610142202450d01200220063600132003411736028406200320023602800620034198046a20034180066a10672002101f0240200341b8046a280200450d00200341b4046a280200101f0b0240200341c4046a280200450d00200341c0046a280200101f0b200341a0036a41086a22024200370300200342003703a00341ccf3c000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041e4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a10682003280298042204450d042003200329029c04220537029c0420032004360298042005a72005422088a72202460d010c060b200341003602a0042003420437039804410421040b200241016a22072002490d5320024101742209200720072009491b2209ad4202862205422088a70d532005a722074100480d53024002402002450d0020042002410274200710142204450d010c050b2007101222040d040b200741041015000b411341011015000b412641011015000b41de86c00041331023000b2003200936029c042003200436029804200341a0046a28020021020b20034198046a41086a2207200241016a360200200420024102746a20063602002003411b36028406200341ccf3c0003602800620034198046a20034180066a10690240200328029c04450d002004101f0b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2204290300370300200341f8036a41086a20034190056a41086a220929030037030020032003290390053703f803200741003a0000200341c4046a2006360200200341a1046a200329039005370000200341a9046a2009290300370000200341b1046a2004290300370000200341b9046a2002290300370000200341073a00980420034198046a1027024020034190056a105e450d0020034198046a41186a200229030037030020034198046a41106a200429030037030020034198046a41086a20034190056a41086a29030037030020032003290390053703980420034198046a20064101106a0b410021040240200d450d002008450d002014101f0b0c3a0b41b0f5c000210441142106200d0d2e0c2f0b200a200d4105746a2202200329038006370000200241186a2014290300370000200241106a2006290300370000200241086a20042903003700002003200d41016a3602a0042003201636029c042003200a36029804200341123602a406200341cccfc0003602a00620034198046a200341a0066a106202402016450d00200a101f0b410021040c110b41002104200241076a41002900d9c340370000200241002900d2c340370000024020022006412f10142202450d00200220032903980437000f200241276a200341b0046a2903003700002002411f6a20034198046a41106a290300370000200241176a20034198046a41086a2903003700002003200b20057c3703f803200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a4110200341f8036a410810042002101f0c230b412f41011015000b41f2f4c000210441172106200d0d2b0c2c0b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a00637039005412210122202450d01200241206a41002f00c8f7403b0000200241186a41002900c0f740370000200241106a41002900b8f740370000200241086a41002900b0f740370000200241002900a8f7403700002002412241c40010142202450d0220022003290390053700222002413a6a200341a8056a290300370000200241326a20034190056a41106a2903003700002002412a6a20034190056a41086a290300370000200241c40041880110142202450d0320022007360042200341a0036a41086a22064200370300200342003703a003200241c600200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f02402006450d004181f7c000210441272106200341b8046a2802000d340c350b20034190056a41186a200341a0066a41186a29030037030020034190056a41106a200341a0066a41106a29030037030020034190056a41086a200341a0066a41086a290300370300200320032903a0063703900520034190056a2007201b106a0240200341b8046a280200450d0020032802b404101f0b200341c4046a280200450d0020032802c004101f0b410021040c340b412241011015000b41c40041011015000b41880141011015000b2007101f0b0240200220044d0d0020034198046a2008106b2104410d21060c1b0b41c1e5c0002104413921060c1a0b20042108200921040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c200341003602a806200342013703a0062007200841016a2206200341a0066a106c20032802a406210920032802a806210a20032802a0062102200341f8036a41086a220d4200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a200d290300370300200320032903f8033703a003200341a0036a41102002200a100402402009450d002002101f0b02402006450d00200741106a2102200841067441c0006a210603400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b02402004450d002007101f0b410021040b4126210641002102200e4102460d450c470b41b9f4c000210441102106200d0d200c210b200328029804101f0b200a0d004101210a4115210641d49bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b803370398044100210a0b20034180066a41086a220d20034198046a41086a2d00003a0000200320032903980437038006200a0d00200341af056a200d2d00003a0000200320153600a3052003200c37009b052003200636009705200320043600930520032003290380063700a705200320023b019005200320024110763a00920520034198046a200341a0066a105d024020032d0098044101470d0041b9e4c00021044126210620074104470d0e0c130b200341a0036a41086a22024200370300200342003703a00341cccfc0004112200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003410021020240024020034190036a411041e4a4c100410041001001417f460d002003421037028406200320034190036a3602800620034198046a20034180066a1040200328029804220a450d0c200341a0046a2802002102200328029c04210d0c010b4101210a4100210d0b200a20024105746a2104200a21020340200420026b41ff004d0d02200341a0066a2002460d092002200341a0066a4120108002450d09200241206a2206200341a0066a460d032006200341a0066a4120108002450d04200241c0006a2206200341a0066a460d052006200341a0066a4120108002450d06200241e0006a2206200341a0066a460d0720024180016a21022006200341a0066a41201080020d000c080b0b20074104460d110c0c0b024020022004460d000340200341a0066a2002460d092002200341a0066a4120108002450d082004200241206a2202470d000b0b41002102200d0d090c0a0b200341a0066a21060b20062102200d0d070c080b200341a0066a21060b20062102200d0d050c060b200341a0066a21060b200621020b200d450d030c020b200341a0066a2102200d0d010c020b41de86c00041331023000b200a101f0b02402002450d0041dfe4c00021044122210620074104470d010c060b20034180066a20034190056a106120034198046a41186a200341a0066a41186a29030037030020034198046a41106a200341a0066a41106a29030037030020034198046a41086a200341a0066a41086a290300370300200320032903a00637039804024002400240024002402003280284062003280288062202470d00200241016a22062002490d3320024101742204200620062004491b2204ad4205862205422088a70d332005a7220a4100480d332002450d012003280280062002410574200a10142206450d020c030b20032802800621060c030b200a101222060d010b200a41011015000b200320043602840620032006360280060b20034180066a41086a2204200241016a360200200620024105746a2202200329039804370000200241186a20034198046a41186a290300370000200241106a20034198046a41106a290300370000200241086a20034198046a41086a220229030037000020022004280200360200200320032903800637039804024002400240024002400240411510122202450d002002410d6a41002900eec340370000200241086a41002900e9c340370000200241002900e1c34037000020024115413510142202450d0120022003290390053700152002412d6a200341a8056a290300370000200241256a200341a0056a2903003700002002411d6a20034198056a290300370000200341353602dc03200320023602d80320034198046a200341d8036a10622002101f0240200328029c04450d00200328029804101f0b411210122202450d02200241106a41002f0091e5403b0000200241086a4100290089e54037000020024100290081e54037000020024112413210142202450d03200220032903a0063700122002412a6a200341b8066a290300370000200241226a200341a0066a41106a2903003700002002411a6a200341a0066a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024132200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034190056a412010042002101f410f10122202450d0441002104200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d05200220032903a00637000f200241276a200341b8066a2903003700002002411f6a200341a0066a41106a290300370000200241176a200341a0066a41086a2903003700002003427f37039804200341a0036a41086a22064200370300200342003703a0032002412f200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411020034198046a410810042002101f20074104470d060c0b0b411541011015000b413541011015000b411241011015000b413241011015000b410f41011015000b412f41011015000b20074106460d04024002402007410c470d004100450d010c060b2007410c490d050b2009450d040b2008101f0c030b2002101f0b2004450d0020034198046a41186a20034190056a41186a29030037030020034198046a41106a20034190056a41106a29030037030020034198046a41086a20034190056a41086a2903003703002003200329039005370398042003200c3703a8062003200542808080807083200542ffffffff0f83843703a006200320153602b006411c10122202450d02200241186a4100280093d040360000200241106a410029008bd040370000200241086a4100290083d040370000200241002900fbcf403700002002411c413c10142202450d03200220032903980437001c200241346a200341b0046a2903003700002002412c6a20034198046a41106a290300370000200241246a20034198046a41086a29030037000020034100360288062003420137038006200341a0066a41106a20034180066a10132003200341a0066a3602f803200341f8036a20034180066a106d200328028406210420032802880621072003280280062106200341a0036a41086a22084200370300200342003703a0032002413c200341a0036a100020034190036a41086a2008290300370300200320032903a0033703900320034190036a411020062007100402402004450d002006101f0b2002101f410021040c010b41c2d1c0002104410d21060b41002108410121070c320b411c41011015000b413c41011015000b200328029804101f0b20070d00410121074115210641d49bc10021040c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021070b20034180066a41086a220820034198046a41086a2d00003a000020032003290398043703800620070d0020034190036a41086a20082d00003a00002003200329038006370390034200210b200341f8036a41086a22074200370300200342003703f80341ef8fc1004108200341f8036a1000200341a0036a41086a2007290300370300200320032903f8033703a00341002107024002400240200341a0036a411041e4a4c100410041001001417f460d0020034190046a4200370300200341f8036a41106a420037030020034180046a4200370300200342003703f803200341a0036a4110200341f8036a4120410010012207417f460d022007411f4d0d0220034180066a41186a200341f8036a41186a29030037030020034180066a41106a200341f8036a41106a29030037030020034180066a41086a200341f8036a41086a290300370300200320032903f80337038006200341d8036a41086a20034197066a290000370300200341d8036a41106a20034180066a411f6a2d00003a0000200320032d0082063a00f203200320032f0180063b01f0032003200329008f063703d8032003280083062107200329008706210b0c010b200341d8036a41106a41003a0000200341e0036a4200370300200341003a00f203200341003b01f003200342003703d8030b200341b8036a41086a2208200341d8036a41086a290300370300200341b8036a41106a2209200341d8036a41106a2d00003a0000200320032d00f2033a00d203200320032f01f0033b01d003200320032903d8033703b803200341a1046a200b370000200341a9046a20032903b803370000200341b1046a2008290300370000200341b9046a20092d00003a000020034186023b0198042003200736009d04200320032f01d0033b019a04200320032d00d2033a009c0420034198046a1027200341b7046a20034190036a41086a2d00003a0000200320163600ab04200320053700a3042003200636009f042003200436009b0420032003290390033700af04200320023b019804200320024110763a009a04200341f8036a41086a22024200370300200342003703f80341ef8fc1004108200341f8036a1000200341a0036a41086a2002290300370300200320032903f8033703a003200341a0036a411020034198046a41201004410021040c010b41de86c00041331023000b4100210a41012107410121080c2c0b200f101f0b200341003602a0042003420137039804200d200220034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b02402002450d0020024106742106200d41106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104410121020240200a450d00200d101f0b200e4102460d240c260b2014101f0b02402016450d002019101f0b2015450d092007101f0c090b2003200d3602a406200320043602a006200d210a0b200420086a2009200610fe011a200341f8036a41086a220d4200370300200342003703f80320024129200341f8036a1000200341a0036a41086a200d290300370300200320032903f8033703a003200341a0036a41102004200820066a10040240200a450d002004101f0b2002101f02402007450d002009101f0b200341a1046a20034198056a290300370000200341a9046a200341a0056a290300370000200341b1046a200341a8056a2903003700002003410a3a00980420032003290390053700990420034198046a1027410021040c150b200328029005101f0b20020d004101210241d49bc1002114411521060c010b20034190056a41086a200341b8036a41086a2d00003a0000200320032903b80337039005410021020b200341a0036a41086a220420034190056a41086a2d00003a000020032003290390053703a00320020d08200341b7046a20042d00003a00002003200a3600ab04200320053700a3042003200636009f042003201436009b04200320032903a0033700af04200320093b019804200320094110763a009a0420034198046a200c200b106e20034198046a20132012106f0b410021040c120b20032802b404101f0b200341c4046a280200450d0020032802c004101f0b4100210d41012107410121084101210a0c1f0b200328029804101f0b20020d004101210241d49bc1002114411521060c010b20034198046a41086a200341b8036a41086a2d00003a0000200320032903b80337039804410021020b200341a0036a41086a220420034198046a41086a2d00003a000020032003290398043703a00320020d00200341af056a20042d00003a00002003200a3600a3052003200537009b0520032006360097052003201436009305200320032903a0033700a705200320093b019005200320094110763a009205411410122202450d04200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d05200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a29030037000042002105200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d032006410f4d0d03200341a0046a290300211320032903980421052002101f41142106411410122202450d020c060b41012107410121084101210a4101210d4101210941012116410121152014210420012d0000220241094d0d1d0c1e0b420021132002101f411421064114101222020d040b200641011015000b41de86c00041331023000b411441011015000b413441011015000b200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad9540370000024002400240024002400240024002400240024020022006413410142202450d0020022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a0033703900302400240024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d022006410f4d0d02200341a0046a290300212020032903980421210c010b42002121420021200b2002101f200341a0036a41086a22024200370300200342003703a0030240024002400240202120208422224200510d004186afc0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d02200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d062002410f4d0d06200341a0046a29030021100c010b41f2aec0004114200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d01200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d082002410f4d0d08200341a0046a29030021100b20032903980421230c010b42002123420021100b0240200c20237c2224200c542202200b20107c2002ad7c2212200b542012200b511b450d0041ccb0c00021040c0f0b411010122202450d03200241086a41002900a2af403700002002410029009aaf4037000020024110413010142202450d04200220032903a006370010200241286a200341a0066a41186a290300370000200241206a200341a0066a41106a290300370000200241186a200341a0066a41086a29030037000020034198046a20024130103c20034198046a41206a290300212520034198046a41186a290300212620034198046a41106a290300212720032903a004212820032903980421292002101f4200212a4200212b0240024020294201520d00411410122202450d09200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0a200220032903a0063700142002412c6a200341b8066a290300370000200241246a200341a0066a41106a2903003700002002411c6a200341a0066a41086a2903003700004200212b200341a0036a41086a22064200370300200342003703a00320024134200341a0036a100020034190036a41086a2006290300370300200320032903a003370390030240024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012206417f460d0a2006410f4d0d0a200341a0046a2903002129200329039804212c0c010b4200212c420021290b2002101f200341a0036a41086a22024200370300200342003703a00341dd81c000410d200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200342003703980420034190036a411020034198046a41084100100141016a41084d0d02200329039804212b0b4200212a200341e8016a20254200202b4200108202200341f8016a202b420020264200108202200341d8016a42004200202642001082024200212b024020032903e00120032903f00184420052200341f8016a41086a290300222520032903d80120032903e8017c7c2226202554720d002027202620032903f801222a202854202620275420262027511b22021b20267d2028202a20021b2226202a54ad7d212b2026202a7d212a0b202b2029202c202a562029202b562029202b511b22021b212b202a202c20021b212a0b0240200520247d2226200556201320127d2005202454ad7d220520135620052013511b450d0041e3afc0002104411d21060c110b02402026202a542005202b542005202b511b450d0041bdafc0002104412621060c110b202250450d0b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411041e4a4c100410041001001417f460d0b200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d0a2002410f4d0d0a200329039804200c56200341a0046a2903002212200b562012200b511b450d0b41adb0c0002104411f21060c100b41de86c00041331023000b41de86c00041331023000b413441011015000b41de86c00041331023000b411041011015000b413041011015000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411e2106200341a0066a107022040d0402402021200c7c221320215422022020200b7c2002ad7c221220205420122020511b450d004180b0c0002104412d21060c050b024002400240200341a0066a20034190056a4120108002450d00200341a0066a20262005106e42002105200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024002400240024002400240024002400240024002400240024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200341a0046a290300212020032903980421050c010b420021200b0240200520237d2221200556202020107d2005202354ad7d220520205620052020511b0d002003202137039804200320053703a004200341a0036a41086a22024200370300200342003703a003419795c0004116200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900320034190036a411020034198046a411010040b200341a0036a41086a22024200370300200342003703a00341819bc000411b200341a0036a100020034190036a41086a2002290300370300200320032903a00337039003024020034190036a411041e4a4c100410041001001417f460d00200342003703a004200342003703980420034190036a411020034198046a4110410010012202417f460d022002410f4d0d02200329039804201358200341a0046a290300220520125820052012511b0d0020034190056a20132012106e0c0b0b411410122202450d03200241106a41002800bd9540360000200241086a41002900b59540370000200241002900ad954037000020024114413410142202450d0420022003290390053700142002412c6a200341a8056a290300370000200241246a20034190056a41106a2903003700002002411c6a20034190056a41086a290300370000200341a0036a41086a22064200370300200342003703a00320024134200341a0036a1000200341f8036a41086a2006290300370300200320032903a0033703f803200341f8036a4110100a21062002101f20060d09200341a0036a41086a22024200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2002290300370300200320032903a0033703900341002102024020034190036a411041e4a4c100410041001001417f460d00200341003602980420034190036a411020034198046a41044100100141016a41044d0d0320032802980421020b20034180066a200941067641ff07712204101e02400240024002402003280288062009413f7122064d0d00200341c8016a20032802800620064105746a2206105c20032903c801200341c8016a41086a290300844200510d010b0240200328028406450d00200328028006101f0b20034198046a2002101e024020032802a0042206413f4d0d00200341a0046a21040340200241016a21020240200328029c04450d00200328029804101f0b20034198046a2002101e2004280200220641c0004f0d000b0b2003280298042107200328029c04210420034198046a41186a220a20034190056a41186a29030037030020034198046a41106a220d20034190056a41106a29030037030020034198046a41086a221620034190056a41086a290300370300200320032903900537039804200641016a210820042006470d0a20064101742204200820082004491b2204ad4205862205422088a70d192005a722094100480d192006450d0120072006410574200910142207450d020c0a0b2006200329039005370000200641186a20034190056a41186a290300370000200641106a20034190056a41106a290300370000200641086a20034190056a41086a29030037000020034198046a41086a20034180066a41086a280200360200200320032903800637039804410f10122202450d07200241076a41002900e09540370000200241002900d995403700002002410f411e10142202450d082002200436000f200341133602fc03200320023602f80320034198046a200341f8036a10622002101f200328029c04450d0a200328029804101f0c0a0b2009101222070d080b200941011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b410f41011015000b411e41011015000b200720064105746a2209200329039804370000200941186a200a290300370000200941106a200d290300370000200941086a20162903003700000240200841c000470d002003200241016a36029804200341a0036a41086a22094200370300200342003703a00341aaafc0004113200341a0036a100020034190036a41086a2009290300370300200320032903a0033703900320034190036a411020034198046a410410040b200320083602a0042003200436029c042003200736029804410f10122208450d04200841076a41002900e09540370000200841002900d995403700002008410f411e10142208450d05200241067420066a21062008200236000f2003411336028406200320083602800620034198046a20034180066a10622008101f02402004450d002007101f0b20034180066a41186a20034190056a41186a220229030037030020034180066a41106a20034190056a41106a220429030037030020034180066a41086a20034190056a41086a220729030037030020032003290390053703800620034198046a41086a20032903900537030020034198046a41106a200729030037030020034198046a41186a2004290300370300200341b8046a20022903003703002003200636029c04200341013a00980420034198046a10270b200341f8036a41186a20034190056a41186a2202290300370300200341f8036a41106a20034190056a41106a2206290300370300200341f8036a41086a20034190056a41086a220429030037030020032003290390053703f803200341d0046a2012370300200341c8046a201337030020034198046a41086a41003a0000200341a1046a200329039005370000200341a9046a2004290300370000200341b1046a2006290300370000200341b9046a2002290300370000200341023a00980420034198046a10270b20034190056a20132012106e0b200329009705210520032900a7062112200341a0046a41023a0000200341a8046a2012370300200341a4046a2019360200200341a1046a20032f01a0063b0000200341a3046a20032d00a2063a0000200341b0046a20032900af06370300200341b8046a200341a0066a41176a290000370300200341c0046a200341a0066a411f6a2d00003a0000200341c1046a20032f0190053b0000200341c3046a20032d0092053a0000200341023a009804200341c8046a2005370300200341c4046a201436020020034180056a2010370300200341f8046a2023370300200341f0046a200b370300200341e8046a200c370300200341d0046a200329009f05370300200341d8046a20034190056a41176a290000370300200341e0046a20034190056a411f6a2d00003a000020034198046a10270b4100210441012107410121084101210a4101210d41012109410121164101211520012d0000220241094d0d190c1a0b410f41011015000b411e41011015000b41bd86c0002104410d21062007450d010b2009101f0b4100211541012107410121084101210a4101210d410121094101211620012d0000220241094d0d140c150b412821060b410121070c0c0b200320053703900520034190036a41086a22024200370300200342003703900341f594c000410d20034190036a100020034198046a41086a2207200229030037030020032003290390033703980420034198046a411020034190056a41081004200341013a00900520024200370300200342003703900341be93c000411320034190036a10002007200229030037030020032003290390033703980420034198046a411020034190056a41011004200742003703002003420037039804418295c000411520034198046a1000200341f8036a41086a200729030037030020032003290398043703f8030240024002400240024002400240200341f8036a411041e4a4c100410041001001417f460d002003420037039804200341f8036a411020034198046a41084100100141016a41084d0d02200329039804210c0c010b4205210c0b20034198046a41086a22024200370300200342003703980441a888c000411220034198046a1000200341a0036a41086a2208200229030037030020032003290398043703a0034101210702400240200341a0036a411041e4a4c100410041001001417f460d002003420037039804200341a0036a411020034198046a41084100100141016a41084d0d03200329039804210b4100210a0c010b4101210a0b200320053703900520024200370300200342003703980441a888c000411220034198046a10002008200229030037030020032003290398043703a003200341a0036a411020034190056a41081004200b500d10200a0d10427f200c200c7c22122012200c541b220c4200510d022005200c802205200b200c80220b580d032005200b42017c220c510d104200211220034198046a41086a22024200370300200342003703980441f3fec000411220034198046a1000200341a0036a41086a200229030037030020032003290398043703a00302400240200341a0036a411041e4a4c100410041001001417f460d0020034210370294052003200341a0036a3602900520034198046a20034190056a1040200328029804221f450d06200329029c0421120c010b4101211f0b2005200b427f857ca7222d450d0f2012422088a7222e202d4d0d0f200ca7212f200341a1046a2130410f213120034190056a410f6a2132200341f8036a410f6a2133200341a0066a410f6a21344100210a41052135410821084110211641182118420021054114213641c8cec000213741e4a4c1002138417f2139410121194112213a4132213b412a213c4122213d411a213e410421174119213f41eecec0002140410d214141dd81c0002142411721434187cfc00021444120210d4130214541502146420121204220210b411b214741b1cfc000214841ff0021494160214a41cccfc000214b411d214c41decfc000214d423f2123411c214e413c214f41342150412c21514124215241032153411521544196d1c000215541b1fec000215642102113200341d0046a215741582158415421594128211b4174215a416c215b4164215c415c215d417c215e4230210c410b215f410a216041272161411f216242ffffffff0f2121410721634102216441002165410021020c050b41de86c00041331023000b41de86c00041331023000b41b4cac1001024000b41cccac1001024000b41de86c00041331023000b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b201f2065202f6a202e702035746a2202290000212b200220086a2900002122200220166a2900002126200341a0066a20186a2266200220186a290000370300200341a0066a20166a22672026370300200341a0066a20086a226820223703002003202b3703a006200341f8036a20086a22692005370300200320053703f80320372036200341f8036a100020034190036a20086a226a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042202450d0e200328029c04216b200220034198046a20086a280200200341a0066a1036216c0240206b450d002002101f0b206c450d020c010b2019200a200341a0066a1036450d010b206520196a2265202d470d1f0c2c0b203a10122202450d0d200220166a200a2f00ecce40226d3b0000200220086a200a2900e4ce4022253700002002200a2900dcce4022283700002002203a203b10142202450d0e200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a206829030037000020692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0a200328029804216e2002101f203a101222020d010c110b4100216e2002101f203a10122202450d100b200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d10200220032903a0063700122002203c6a20662903003700002002203d6a20672903003700002002203e6a20682903003700002003206e20196a226f3602980420692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201710042002101f20692005370300200320053703f8032040203f200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0b20032802980421700c010b410021700b200341a0036a20086a2202203420086a290000370300200341a0036a20166a226b203420166a2d00003a0000200320032d00a2063a00d202200320032f01a0063b01d002200320342900003703a00320032800a306217120032900a706212a4200212920694200370300200342003703f80320422041200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d00200320053703980420034190036a201620034198046a2008200a100120196a20084d0d0820032903980421290b200341f0026a20086a22722002290300370300200341f0026a20166a2273206b2d00003a0000200320032d00d2023a00e202200320032f01d0023b01e002200320032903a0033703f00220692005370300200320053703f80320442043200341f8036a1000206a2069290300370300200320032903f8033703900302400240024002400240024020034190036a20162038200a200a10012039460d002003201337029c04200320034190036a36029804200341c0016a20034198046a102820032802c001450d0820032802c4012274ad200c7e222b200b88a70d12202ba7220220394c0d122002450d01200210122275450d1b2074450d030c020b4100217c4108217542002122410021020c040b410821752074450d010b20034198046a20086a2276280200217741002178200328029c042179200328029804217a4100216c410021022074217b034020034180066a20186a227c200537030020034180066a20166a227d200537030020034180066a20086a227e200537030020032005370380062076200a207a207920034180066a200d20771001226b206b2039461b226b200d206b200d491b20776a2277360200206b20624d0d05200341f8036a20186a207c290300370300200341f8036a20166a207d2903003703002069207e29030037030020032003290380063703f80320032005370390052076200a207a207920034190056a200820771001226b206b2039461b226b2008206b2008491b20776a2277360200206b20634d0d05200329039005212b2003200a360290052076200a207a207920034190056a201720771001226b206b2039461b226b2017206b2017491b20776a2277360200206b20534d0d05200220196a216b200328029005217c200341d8036a20086a227d203320086a290000370300200341d8036a20166a227e203320166a2d00003a0000200320032d00fa033a00f203200320032f01f8033b01f003200320332900003703d80320032800fb03217f20032900ff03212202402002207b470d002078206b206b2078491b227bad200c7e2226200b88a70d282026a7228001200a480d2802402002450d002075206c208001101422750d010c0c0b20800110122275450d0b0b2075206c6a2202202b370300200220086a20032f01f0033b010020032d00f203218001200220316a20223700002002205f6a207f360000200220606a2080013a0000200220616a207e2d00003a0000200220626a207d290300370000200220436a20032903d8033700002002201b6a207c360200207820646a2178206c20456a216c206b2102206b2074490d000c020b0b4100216b4100217b0b2075450d03206bad200b86207bad842222200b88a7217c2022a721020b20034198046a20086a2279207229030037030020034198046a20166a227e20732d00003a0000200320032d00e2023a008206200320032f01e0023b018006200320032903f002370398040240024002400240024002400240207c200d490d00207c20456c226b2045460d01207520456a2102206b20466a217a410021774101216c207521782075216b03402002206b206b29030020022903005622761b216b206c207720761b21772002207820761b2178206c20196a216c200220456a2102207a20466a227a0d000b206b450d182078450d182032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005207c20774b0d020c1f0b200341b8036a20086a226b2079290300370300200341b8036a20166a226c207e2d00003a0000200320032d0082063a00d203200320032f0180063b01d00320032003290398043703b80302402002207c470d00207c2019742202207c20196a227620762002491bad222b200c7e2226200b88a70d2a2026a72202200a480d2a207c450d032075207c20456c2002101422750d040c200b2022212b0c040b2032200329039804370000203220086a2079290300370000203220166a207e2d00003a00002003202a370097052003207136009305200320032d0082063a009205200320032f0180063b019005410021770b2075207720456c6a220220293703002002200d6a20034190056a20186a290300370300200220186a20034190056a20166a290300370300200220166a20034190056a20086a2903003703002002200329039005370308200220193602280c030b200210122275450d1c0b2022200b88a7217c0b2075207c20456c6a2202202937030020032d00d203217620032f01d0032177200220316a202a3700002002205f6a2071360000200220773b0108200220606a20763a0000200220616a206c2d00003a0000200220626a206b290300370000200220436a20032903b80337000020022019360228202b202183207c20196aad200b868421220b2079200a360200200320203703980420032022200b88a722023602900520034190056a20034198046a1013024002402002450d00200220456c217a2058207928020022026b2177200220516a2102200328029c04216c2075216b03400240024002400240206c20776a201b6a200d4f0d00200220596a2278200d6a22762078490d2a206c2019742278207620762078491b2278200a480d2a206c450d01200328029804206c2078101422760d020c0a0b20032802980421760c020b207810122276450d080b2003207836029c0420032076360298042078216c0b20792002205a6a227c360200207620026a2278205b6a206b200d6a2900003700002078205c6a206b20186a2900003700002078205d6a206b20166a290000370000207820596a206b20086a290000370000206b290300212b0240024002400240206c20776a227820086a20784f0d00207c20086a2278207c490d2a206c201974227c20782078207c491b2278200a480d2a206c450d012076206c2078101422760d020c0b0b206c21780c020b207810122276450d090b2003207836029c0420032076360298040b20792002205e6a226c360200207620026a205a6a202b370000206b201b6a280200217c0240024002400240207820776a20534b0d00206c20176a227d206c490d2a2078201974226c207d207d206c491b226c200a480d2a2078450d0120762078206c101422760d020c0c0b2078216c0c020b206c10122276450d0a0b2003206c36029c0420032076360298040b206b20456a216b20792002360200207620026a205e6a207c360000207720596a2177200220516a2102207a20466a227a0d000c020b0b200328029c04216c20032802980421760b2079280200210220692005370300200320053703f80320442043200341f8036a100020792069290300370300200320032903f8033703980420034198046a20162076200210040240206c450d002076101f0b02402022a7450d002075101f0b0240024002400240206f20704d0d004200212220694200370300200342003703f80320482047200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a200a10012039460d01200320053703a004200320053703980420034190036a201620034198046a2016200a100122022039460d16200220314d0d162079290300212a20032903980421270c020b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410121020c020b420021274200212a0b206e20197420706b216b206e20706b220220196a217a4200212b02400340206b216c2002207a4f0d010240200220494b0d00200341b0016a2027202a2002204971108302202b200341b0016a20086a2903007c202220032903b0017c22292022542276ad7c2226202b5121772026202b542178206c20196a216b200220196a2102202921222026212b2076207820771b450d010b0b20034198046a20186a226b2066290300370300207e206729030037030020792068290300370300200320032903a00637039804203a10122202450d18200220166a206d3b0000200220086a2025370000200220283700002002203a203b10142202450d1920022003290398043700122002203c6a206b2903003700002002203d6a207e2903003700002002203e6a20792903003700002003206c3602900520692005370300200320053703f8032002203b200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034190056a201710042002101f20034198046a200341a0066a106120792802002102200328029804216c200341a0016a200341a0066a105c200341a0016a20086a290300212b20032903a001212202402002450d002002203574216b206c2102034020034190016a2002105c20034190016a20086a290300202b7c200329039001222b20227c2222202b54ad7c212b2002200d6a2102206b204a6a226b0d000b0b200328029c04450d00206c101f0b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f803370390030240024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042276450d1d20792802002102200328029c04216b0c010b4100216b41012176410021020b20692005370300200320053703f803204d204c200341f8036a1000206a2069290300370300200320032903f8033703900302400240024020034190036a20162038200a200a10012039460d002003200a3602980420034190036a201620034198046a2017200a100120196a20174d0d0e200328029804216c206b450d020c010b4104216c206b450d010b2076101f0b02402002206c4d0d00200341f8006a200341a0066a2022202b10712003290378a72019470d00200341f8006a20166a290300212a200329038001212720034198046a200341a0066a10722003280298042176024020792802002202450d00420021262002203574226c216b42002129207621020340200341e8006a2002105c200341e8006a20086a29030020297c2003290368222920267c2226202954ad7c21292002200d6a2102206b204a6a226b0d000b2026202984500d00207621020340200341d8006a2002105c200341306a2003290358200341d8006a20086a2903002027202a108202200341206a2003290330200341306a20086a29030020262029108102200341c0006a20022003290320200341206a20086a29030010712002200d6a2102206c204a6a226c0d000b0b200328029c04450d002076101f0b204e10122202450d14200220186a200a280093d040360000200220166a200a29008bd040370000200220086a200a290083d0403700002002200a2900fbcf403700002002204e204f10142202450d15200220032903a00637001c200220506a2066290300370000200220516a2067290300370000200220526a206829030037000020034198046a2002204f103d20034198046a20186a2277280200216b20032903980421262002101f02400240206f20706b206b205320262020511b4b0d002022202388212a202b202086212720034198046a200341a0066a106120792802002102200328029804216c200341106a200341a0066a105c200341106a20086a29030021262003290310212902402002450d002002203574216b206c2102034020032002105c200320086a29030020267c2003290300222620297c2229202654ad7c21262002200d6a2102206b204a6a226b0d000b0b2027202a84212a202220208621270240200328029c04450d00206c101f0b2027202258202a202b58202a202b511b0d00202920275a2026202a5a2026202a511b0d010b20692005370300200320053703f803204b203a200341f8036a1000206a2069290300370300200320032903f80337039003024020034190036a20162038200a200a10012039460d002003201337029405200320034190036a3602900520034198046a20034190056a10402003280298042278450d1e200328029c04217a024020792802002202450d00200220357421764100216b20782102024003402077200220186a290000370300207e200220166a2900003703002079200220086a2900003703002003200229000037039804206b20034198046a200341a0066a200d108002226c200a476a216b206c450d012002200d6a21022076204a6a22760d000c020b0b200341a0066a206b106b22020d200b207a450d002078101f0b20692005370300200320053703f80320552054200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a20162038200a10042003200a3a00980420692005370300200320053703f8032056203f200341f8036a1000206a2069290300370300200320032903f8033703900320034190036a201620034198046a201910040b20034190056a20186a206629030037030020034190056a20166a206729030037030020034190056a20086a2068290300370300200320032903a00637039005410221020b2057202b37030020034198046a20456a2022370300207920023a0000203020032903900537000020034198046a20516a206e360200203020086a20034190056a20086a290300370000203020166a20034190056a20166a290300370000203020186a20034190056a20186a290300370000200320173a00980420034198046a1027206520196a2265202d470d1f0c2b0b208f012102024002400340200220146a280200216b200220156a290300212b2002290300212220850120022088016a28020036020020840120022089016a2902003703002083012002208a016a29020037030020034198046a20146a226c2002208b016a29020037030020034198046a20156a227620022082016a290200370300200320022090016a29020037039804206b450d0220034190056a2087016a228f0120850128020036020020034190056a201a6a227720840129030037030020034190056a2086016a227820830129030037030020034190056a20146a2279206c29030037030020034190056a20156a227a2076290300370300200320032903980437039005206c206b3602002009200329039005370200200920156a227c207a290300370200200920146a227a207929030037020020092086016a227920782903003702002009201a6a2278207729030037020020092087016a2277208f012802003602002003202b3703a0042003202237039804024020930120034180066a201a1080020d0002402009280200450d00206b101f0b20022095016a2202208101470d010c020b0b200341a0066a2087016a228f012077280200360200200341a0066a201a6a22772078290200370300200341a0066a2086016a22782079290200370300200341a0066a20146a2279207a290200370300200341a0066a20156a227a207c290200370300200320092902003703a006208501208f0128020036020020840120772903003703002083012078290300370300206c20792903003703002076207a290300370300200320032903a006370398040240208c01208e01470d00208e012094016a228c01208e01490d24208e0120940174228f01208c01208c01208f01491b228c01ad2024862226201088a70d242026a7228f01209601480d240240208e01450d00208d01208e0120910174208f011014228d010d010c200b208f011012228d01450d1f0b20022095016a218f01208d01208e01209101746a2277202b370308207720223703002077206b36021020772088016a20850128020036020020772089016a2084012903003702002077208a016a2083012903003702002077208b016a206c29030037020020772082016a207629030037020020772090016a200329039804370200208e012094016a218e012092012002470d210b2081012202208101470d240c250b200241c0006a2202208101460d240c230b207b450d002075101f0b41de86c00041331023000b207841011015000b207841011015000b206c41011015000b20800141081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b100f000b411241011015000b413241011015000b411241011015000b413241011015000b419ecfc00041131023000b41de86c00041331023000b411c41011015000b413c41011015000b200241081015000b411241011015000b413241011015000b419089c2002077207c1048000b200241081015000b41de86c00041331023000b41de86c00041331023000b4197d0c00041ff002002410d1037000b208f0141081015000b410021020c020b410021020c010b410121020c000b0b1010000b1010000b201c201e4106746a21070340200241106a2802002204450d01200241c0006a21060240200241146a280200450d002004101f0b2006210220072006470d000b0b0240201d450d00201c101f0b208d0121020b200341003602a00420034201370398042002208e0120034198046a106c200328029c04210420032802a00421072003280298042106200341f8036a41086a22084200370300200342003703f803419596c1004115200341f8036a1000200341a0036a41086a2008290300370300200320032903f8033703a003200341a0036a411020062007100402402004450d002006101f0b0240208e01450d00208e014106742106200241106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200641406a22060d000b0b41002104208c01450d00208d01101f0b411a210641002102200e4102470d020b20020d012011450d010b200f101f0b4100211641012107410121084101210a4101210d410121090c060b2012a7450d00201f101f0b410121080b4101210a0b4101210d0b410121090b410121160b4101211520012d0000220241094b0d010b02400240024002400240024020020e0a07020707070004030501070b2008450d06200141086a2d0000410c490d06200141106a280200450d062001410c6a280200101f0c060b2016450d05200141086a2d00004102470d05200141106a280200450d052001410c6a280200101f0c050b2007450d04200141086a10440c040b200d450d03200141086a2d00004102470d030240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d03200141246a280200101f0c030b200a450d02200141046a10730c020b2009450d01200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b2015450d00200141046a2802004102490d002001410c6a280200450d00200141086a280200101f0b2000200636020420002004360200200341d0066a24000bdc0202027f027e230041206b2202240002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b2003101f2000200537030820002004370300200241206a24000f0b41de86c00041331023000b411441011015000b413441011015000b9d840104037f027e087f0b7e230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417e6a220541104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210520022d0000210420034180036a41026a2209200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220044101470d14200341c0036a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01c003200320032903900637038805410021020c150b4100210941ac80c00041ac80c000410020022d000022021b20024103461b22050d10200320012d00013a008805200341b0066a41086a22024200370300200342003703b00641f4b0c0004119200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410110040c88010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0f200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1d2003421037028c05200320034180036a3602880520034188026a20034188056a108f012003290388024203510d5a200342083703e8044100210c200341003602f004200341b0066a41086a22024200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d31200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220d450d63200328028c05210c20034190056a2802002202450d320c95010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0e200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1d2003421037028c05200320034180036a36028805200341d8016a20034188056a108f0120032903d8014203520d1741de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0d200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5420032903880521060b41e2bcc0002109411f2108200620075a0d1720032007370390052003420237038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c080b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0c200141046a2802002105200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a22082002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341e8016a20034188056a108f0120032903e8014203520d1541de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d0b200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1c2003421037028c05200320034180036a36028805200341b8016a20034188056a108f0120032903b8014203520d1441de86c00041331023000b200341a0026a41186a200141196a290000370300200341a0026a41106a200141116a290000370300200341a0026a41086a200141096a290000370300200320012900013703a002200341c0026a41186a200141396a290000370300200341c0026a41106a200141316a290000370300200341c0026a41086a200141296a2900003703002003200141216a2900003703c002200141c4006a280200210a200141c8006a2802002109200141cc006a280200210b200241086a2800002108200241046a280000210520022d0000210420034180036a41026a220f200241036a2d00003a000020034190066a41086a220e200241146a29000037030020034190066a410d6a220c200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210120044101470d0b200341e8046a41026a200f2d00003a000020034188056a41086a200e29030037030020034188056a410d6a200c290000370000200320032f0180033b01e804200320032903900637038805410021010c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d09200341b0066a41086a22024200370300200342003703b006419596c1004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1b200342103702e403200320034180036a3602e00320034188056a200341e0036a105f2003280288052202450d552003200329028c0537028c0520032002360288050c1c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d08200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d5020032903880521060b41e2bcc0002109411f2108200620075a0d1220032007370390052003420037038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010c030b41ac80c00041ac80c000410020022d000022021b20024103461b22050d07200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1b2003421037028c05200320034180036a3602880520034198016a20034188056a108f012003290398014203520d1041de86c00041331023000b200141306a2903002106200141286a2903002107200341d8036a200141196a290000370300200341c0036a41106a200141116a290000370300200341c0036a41086a200141096a290000370300200320012900013703c003200241086a2800002108200241046a280000210920022d0000210520034180036a41026a2204200241036a2d00003a000020034190066a41086a220a200241146a29000037030020034190066a410d6a220b200241196a290000370000200320022f00013b01800320032002410c6a290000370390064101210220054101470d0b200341e8046a41026a20042d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0180033b01e804200320032903900637038805410021020c0c0b41ac80c00041ac80c000410020022d000022021b20024103461b22050d05200141086a290300210742002106200341b0066a41086a22024200370300200342003703b00641dd81c000410d200341b0066a100020034180036a41086a2002290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d00200342003703880520034180036a411020034188056a41084100100141016a41084d0d4e20032903880521060b41e2bcc0002109411f2108200620075a0d0f20032007370390052003420137038805200341153602e403200341c5b2c0003602e00320034188056a200341e0036a108e010b4100210920012d00004104460d91010c92010b41ac80c00041ac80c000410020022d000022021b20024103461b22050d03200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341f8016a20034188056a108f0120032903f8014203520d0c41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d02200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d182003421037028c05200320034180036a3602880520034188016a20034188056a108f012003290388014203520d0b41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b22050d01200141086a2903002106200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d182003421037028c05200320034180036a36028805200341c8016a20034188056a108f0120032903c8014203520d0a41de86c00041331023000b41ac80c00041ac80c000410020022d000022021b20024103461b2205450d080b4128210820044104470d8e01200141c8006a280200450d8e01200141c4006a280200101f0c8e010b412a210841d480c00021050b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00302402001450d0020090d230c8d010b200341fc026a41026a200341c0066a41026a2d00003a0000200341e0026a41086a200341e0036a41086a290300370300200341e0026a410d6a200341e0036a410d6a290000370000200320032f01c0063b01fc02200320032903e0033703e002200b41204d0d0841d4bcc0002105410e210820090d220c8c010b41d480c0002105412a21080b200341c0066a41026a200341c0036a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01c0033b01c00620032003290388053703e0032002450d022005210920012d00004104460d88010c89010b412a210841d480c00021090b200341c0066a41026a200341e8046a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01e8043b01c00620032003290388053703e00320020d03200341a0026a41026a2202200341c0066a41026a2d00003a0000200341a0036a41086a2205200341e0036a41086a290300370300200341a0036a410d6a2204200341e0036a410d6a290000370000200320032f01c0063b01a002200320032903e0033703a0032003419b056a2005290300370000200341a0056a20042900003700002003200836008f052003200936008b05200320022d00003a008a05200320032f01a0023b018805200320032903a00337009305200341d8006a20034188056a105a2003290358200341d8006a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d132003421037028c05200320034180036a36028805200341c8006a20034188056a108f01200329034822104203520d1441de86c00041331023000b200341a0036a41026a2202200341c0066a41026a2d00003a0000200341e8046a41086a2204200341e0036a41086a290300370300200341e8046a410d6a2209200341e0036a410d6a290000370000200320032f01c0063b01a003200320032903e0033703e8042003419b056a2004290300370000200341a0056a20092900003700002003200836008f052003200536008b05200320022d00003a008a05200320032f01a0033b018805200320032903e80437009305200341286a20034188056a105a2003290328200341286a41086a29030084500d05200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341186a20034188056a108f01200329031822104203520d1541de86c00041331023000b200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d0f2003421037028c05200320034180036a36028805200341a8016a20034188056a108f0120032903a8014203510d440b4181bdc0002109412421080b20012d00004104470d83010c82010b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d142003421037028c05200320034180036a36028805200341f8006a20034188056a108f01200329037822064203520d1541de86c00041331023000b4194bac00021094126210820012d00004104460d80010c81010b41b8b8c00021094127210820012d00004104460d7f0c80010b41d5bec00021090c7b0b2005450d17200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d1e200341003602880520034180036a411020034188056a41044100100141016a41044d0d3a20032802880520054f0d1f0c740b20024200370300200342003703b00641f1bfc000411b200341b0066a100020082002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d17200341003602880520034180036a411020034188056a41044100100141016a41044d0d3820032802880520054d0d180c720b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c770b200341003602900520034208370388050b20034198026a20034188056a108301200328029c022108200328029802210920012d00004104460d790c7a0b2006500d042003200637038805200341b0066a41086a22024200370300200342003703b00641f9bec000411c200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c620b20032006370390052003200737038805200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a411010040c730b2006500d022003200637038805200341b0066a41086a22024200370300200342003703b00641d2b4c0004120200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c600b2006500d122003200637038805200341b0066a41086a22024200370300200342003703b00641b4bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5f0b2006500d002003200637038805200341b0066a41086a22024200370300200342003703b0064195bfc000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410810040c5e0b41a5bdc000210920012d00004104460d730c740b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d022003421037028c05200320034180036a36028805200341386a20034188056a108f0120032903384203510d3220104203510d332010a74101470d0342002110200341b0066a41086a22024200370300200342003703b00641eabac000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d102003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d392002410f4d0d3920034190056a290300211020032903880521110c110b420321100b200341b0066a41086a22024200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341086a20034188056a108f0120032903084203510d3220104203510d332010a7450d0841dfb8c00021090c0d0b419db9c00021090c630b41babac0002109411c210820012d00004104460d6d0c6e0b420321060b200341b0066a41086a22014200370300200342003703b00641c5b2c0004115200341b0066a100020034180036a41086a2001290300370300200320032903b00637038003024020034180036a411041e4a4c100410041001001417f460d002003421037028c05200320034180036a36028805200341e8006a20034188056a108f0120032903684203510d3120064203510d322006a74102470d032003419c036a41026a200341fc026a41026a2d00003a000020034180036a41086a200341e0026a41086a29030037030020034180036a410d6a200341e0026a410d6a290000370000200320032f01fc023b019c03200320032903e00237038003200341a0036a41186a200341a0026a41186a290300370300200341a0036a41106a200341a0026a41106a290300370300200341a0036a41086a200341a0026a41086a290300370300200320032903a0023703a003200341c0036a41186a200341c0026a41186a290300370300200341c0036a41106a200341c0026a41106a290300370300200341c0036a41086a200341c0026a41086a290300370300200320032903c0023703c003411510122201450d352001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d36200120032903a0033700152001412d6a200341b8036a290300370000200141256a200341a0036a41106a2903003700002001411d6a200341a0036a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d0f200341e0036a200341a0036a10990120032d00c0044101470d1041e4bbc00021014115210220090d5d0c5e0b419db9c00021054114210820090d030c6d0b4101210d4100210241000d630b410021054108210e200c0d630c640b41b5bcc0002105411f21082009450d6a0b200a101f0c690b411f10122202450d31200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d32200220032f01a0033b001f2002200836002620022005360022200220032903e80437002a200241216a200341a2036a22092d00003a0000200241326a200341e8046a41086a290300370000200241376a200341f5046a220a290000370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d0e200341b0066a41086a22024200370300200342003703b00641b1b9c000411f200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411041e4a4c100410041001001417f460d0c2003420037039005200342003703880520034180036a411020034188056a4110410010012202417f460d372002410f4d0d3720034190056a290300211020032903880521110c0d0b41dabdc0002109411b210820012d00004104460d650c660b410a20054b0d5a0b2003200536028805200341b0066a41086a22024200370300200342003703b00641d3bfc000411e200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c4d0b41babdc00021090b4120210820012d00004104460d610c620b420a21110b02402011200756201020065620102006511b450d0041d6bac00021090c550b200341fb046a200341a0036a41086a290300370000200341e8046a41186a200341a0036a410d6a290000370000200320083600ef04200320093600eb04200320032f01a0023b01e804200320032903a0033700f3042003200341a2026a2d00003a00ea0420034190066a41186a200341c0036a41186a220229030037030020034190066a41106a200341c0036a41106a220529030037030020034190066a41086a200341c0036a41086a2204290300370300200320032903c0033703900620034188056a41186a200229030037030020034188056a41106a200529030037030020034188056a41086a2004290300370300200320032903c00337038805411510122202450d2e2002410d6a4100290095bb40370000200241086a4100290090bb4037000020024100290088bb4037000020024115413510142202450d2f20022003290388053700152002412d6a200341a0056a290300370000200241256a20034188056a41106a2903003700002002411d6a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1000200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a4110100a21052002101f2005450d0441bcbbc00021090c540b41142005490d550b2003200536028805200341b0066a41086a22024200370300200342003703b00641f1bfc000411b200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a411020034188056a410410040c470b41d0bbc00021014114210220090d4d0c4e0b2003419b056a20034188036a290300370000200341a0056a2003418d036a2900003700002003200836008f052003200536008b05200320032f019c033b01880520032003290380033700930520032003419e036a2d00003a008a0520034188056a200341e0036a41206a4120108002450d0441f9bbc0002101411a21020c4b0b412210122202450d2c200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d2d200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a29030037000020034188056a200241c200103c20034188056a41106a290300211220034188056a41186a290300211020034188056a41206a2903002111200329039005211320032903880521142002101f200341e8046a200720104200201442015122021b2214200720142007542011420020021b221020065420102006511b22051b22117d221520062010200620051b22167d2007201154ad7d2206107a450d04200341e8046a201520061066450d07419dbbc0002109411f210820012d00004104460d5a0c5b0b4200211042e40021110b2011200756201020065620102006511b450d0041ffb8c0002109411e210820012d00004104460d580c590b200341f3036a200341e8046a41086a290300370000200341e0036a41186a200a290000370000200320083600e703200320053600e303200320032f01a0033b01e003200320032903e8043700eb03200320092d00003a00e203412210122202450d24200241206a41002f00bbb4403b0000200241186a41002900b3b440370000200241106a41002900abb440370000200241086a41002900a3b4403700002002410029009bb4403700002002412241c40010142202450d25200220032903e0033700222002413a6a200341e0036a41186a290300370000200241326a200341e0036a41106a2903003700002002412a6a200341e8036a29030037000020034188056a200241c200103c20034188056a41186a290300211220034188056a41206a290300211320034188056a41106a2903002110200329039005211120032903880521142002101f41d0b9c0002109200341e0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22041b22117d221520062010200620041b22167d2007201154ad7d2206107a450d0241f2b9c0002109200341e0036a2015200610660d02411f10122204450d2b200441176a41002900a4b140370000200441106a410029009db140370000200441086a4100290095b1403700002004410029008db1403700002004411f413f10142204450d2c200420032903e00337001f200441376a200341e0036a41186a2903003700002004412f6a200341e0036a41106a290300370000200441276a200341e0036a41086a29030037000020034188056a2004413f103c20034188056a41106a290300210720034188056a41206a290300211720034188056a41186a29030021182003290390052119200329038805211a2004101f412210122204450d2d200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d2e200420032903e0033700222004413a6a200341f8036a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000200341b0066a41086a22094200370300200342003703b006200441c200200341b0066a1000200341c0066a41086a2009290300370300200320032903b0063703c006200341c0066a4110100a21092004101f02402009450d00412210122204450d34200441206a41002f00bbb4403b0000200441186a41002900b3b440370000200441106a41002900abb440370000200441086a41002900a3b4403700002004410029009bb4403700002004412241c40010142204450d35200420032903e0033700222004413a6a200341e0036a41186a290300370000200441326a200341e0036a41106a2903003700002004412a6a200341e0036a41086a290300370000411010122209450d362009201420117d3700002009201020167d2014201154ad7d37000820094110412010142209450d3720092012420020021b370010200941186a2013420020021b370000200341b0066a41086a22024200370300200342003703b006200441c200200341b0066a100020034180036a41086a2002290300370300200320032903b0063703800320034180036a41102009412010042009101f2004101f0b411f10122202450d2f200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d30200220032903e00337001f200241376a200341e0036a41186a22092903003700002002412f6a200341e0036a41106a290300370000200241276a200341e0036a41086a290300370000200341b0066a41086a22044200370300200342003703b0062002413f200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042002101f20040d40200341b0066a41086a22024200370300200342003703b00641e6b3c000411a200341b0066a100020034180036a41086a2002290300370300200320032903b006370380034100210420034180036a411041e4a4c100410041001001417f460d072003421037029406200320034180036a3602900620034188056a20034190066a10402003280288052202450d382003200329028c0522103702940620032002360290062010422088a7210a2010a721040c080b411f10122201450d30200141176a41002900a4b140370000200141106a410029009db140370000200141086a4100290095b1403700002001410029008db1403700002001411f413f10142201450d31200120032903c00337001f200141376a200341d8036a2903003700002001412f6a200341c0036a41106a290300370000200141276a200341c0036a41086a290300370000200341b0066a41086a22024200370300200342003703b0062001413f200341b0066a1000200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a4110100a21022001101f2002450d02200b450d04200b101222010d05200b41011015000b41d0b9c00021090b4122210820012d00004104460d540c550b4193bcc00021014122210220090d440c450b200341b0066a41086a22054200370300200342003703b0064180b4c000411b200341b0066a100020034180036a41086a2005290300370300200320032903b006370380034100210420034180036a411041e4a4c100410041001001417f460d04200342103702e403200320034180036a3602e00320034188056a200341e0036a1040200328028805220a450d342003200329028c0522073702e4032003200a3602e0032007422088a721052007a721040c050b410121010b2001200a200b10fe01210f200341e8046a41186a2201200341c0036a41186a290300370300200341e8046a41106a2204200341c0036a41106a290300370300200341e8046a41086a220e200341c0036a41086a290300370300200320032903c0033703e804412010122202450d30200220032903e804370000200241186a2001290300370000200241106a2004290300370000200241086a200e29030037000002400240200b450d00200b41206a2201200b490d50200141c000200141c0004b1b22044100480d50200241202004101422020d01200441011015000b41202104200b41206a21010b200241206a200f200b10fe011a20034188056a41186a220e420037030020034188056a41106a220c420037030020034188056a41086a220d420037030020034200370388052002200120034188056a100220034190066a41186a200e29030037030020034190066a41106a200c29030037030020034190066a41086a200d290300370300200320032903880537039006418383c10021010240200341a0046a20034190066a41201080020d00200341c1046a20032903e804370000200341c0046a41013a0000200341c9046a200341e8046a41086a290300370000200341d1046a200341e8046a41106a290300370000200341d9046a200341e8046a41186a290300370000410021010b02402004450d002002101f0b02402001450d00410c2102200b450d41200f101f20090d420c430b20034190066a41186a200341a0036a41186a29030037030020034190066a41106a200341a0036a41106a29030037030020034190066a41086a200341a0036a41086a290300370300200320032903a0033703900620034188056a200341e0036a41880110fe011a411510122201450d332001410d6a4100290095bb40370000200141086a4100290090bb4037000020014100290088bb4037000020014115413510142201450d3420012003290390063700152001412d6a200341a8066a290300370000200141256a200341a0066a2903003700002001411d6a20034198066a290300370000200341353602ec04200320013602e80420034188056a200341e8046a109a012001101f0240200b450d00200f101f0b4100210102402009450d00200a101f0b41000d430c440b20034100360298062003420137039006410121024100210a0b20034188056a41186a220f200341e0036a41186a29030037030020034188056a41106a220e200341e0036a41106a29030037030020034188056a41086a220c200341e0036a41086a290300370300200320032903e003370388050240200a2004470d00200441016a220b2004490d4d2004410174220d200b200b200d491b220bad4205862210422088a70d4d2010a7220d4100480d4d2004450d0320022004410574200d10142202450d040c360b2004210b0c360b200341003602e803200342013703e0034101210a410021050b20034188056a41186a220f20034190066a41186a29030037030020034188056a41106a220e20034190066a41106a29030037030020034188056a41086a220c20034190066a41086a29030037030020032003290390063703880520042005470d32200541016a22042005490d4a2005410174220b20042004200b491b2204ad4205862207422088a70d4a2007a7220b4100480d4a2005450d02200a2005410574200b1014220a450d030c310b200d101222020d320b200d41011015000b200b1012220a0d2e0b200b41011015000b41fcf8c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41d4c7c2001024000b41de86c00041331023000b41d4c7c2001024000b41de86c00041331023000b41d4c7c2001024000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411541011015000b413541011015000b41de86c00041331023000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412041011015000b41de86c00041331023000b41de86c00041331023000b411541011015000b413541011015000b200320043602e4032003200a3602e0030b200a20054105746a220b200329038805370000200b41186a200f290300370000200b41106a200e290300370000200b41086a200c290300370000200341e0036a41086a200541016a3602002003411b36028c0520034180b4c00036028805200341e0036a20034188056a106202402004450d00200a101f0b200341e0036a41186a20034190066a41186a2205290300370300200341e0036a41106a20034190066a41106a2204290300370300200341e0036a41086a20034190066a41086a220a29030037030020032003290390063703e00320034188056a41186a2016370300200341c0056a200341e8046a41186a290300370300200341b8056a200341e8046a41106a290300370300200341b0056a200341e8046a41086a290300370300200341d0056a200a290300370300200341d8056a2004290300370300200341e0056a2005290300370300200320113703980520032006370390052003201537038805200341003a00e805200320032903e8043703a80520032003290390063703c80502400240024002400240024002400240411510122205450d002005410d6a4100290095bb40370000200541086a4100290090bb4037000020054100290088bb4037000020054115413510142205450d01200520032903e0033700152005412d6a200341e0036a41186a290300370000200541256a200341e0036a41106a2903003700002005411d6a200341e0036a41086a290300370000200341353602c402200320053602c00220034188056a200341c0026a109a012005101f412210122205450d02200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d03200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a1000200341c0066a41086a2004290300370300200320032903b0063703c006200341c0066a4110100a21042005101f02402004450d00412210122205450d05200541206a41002f00bbb4403b0000200541186a41002900b3b440370000200541106a41002900abb440370000200541086a41002900a3b4403700002005410029009bb4403700002005412241c40010142205450d06200520032903e8043700222005413a6a200341e8046a41186a290300370000200541326a200341e8046a41106a2903003700002005412a6a200341e8046a41086a290300370000411010122204450d0720042013420020021b37000020042012420020021b37000820044110412010142202450d082002201420117d370010200241186a201020167d2014201154ad7d370000200341b0066a41086a22044200370300200342003703b006200541c200200341b0066a100020034180036a41086a2004290300370300200320032903b0063703800320034180036a41102002412010042002101f2005101f0b20034188056a41106a200836020020034194056a200936020020034188056a41096a20032f01a0023b000020034193056a200341a2026a2d00003a00002003419c056a20032903a003370200200341a9056a200341ad036a290000370000200341b1056a20032903c003370000200341c1056a200341c0036a41106a290300370000200341c9056a200341c0036a41186a290300370000200341083a00880520034188056a41086a41093a0000200341a4056a200341a0036a41086a290300370200200341b9056a200341c0036a41086a29030037000020034188056a10270c0b0b411541011015000b413541011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b2003200b3602940620032002360290060b200241206a2002200a41057410ff011a2002200329038805370000200241186a200f290300370000200241106a200e290300370000200241086a200c29030037000020034190066a41086a200a41016a3602002003411a36028c05200341e6b3c0003602880520034190066a20034188056a1062200b450d002002101f0b20034188056a41186a200929030037030020034188056a41106a200341e0036a41106a29030037030020034188056a41086a200341e0036a41086a290300370300200320032903e00337038805411f10122202450d02200241176a41002900a4b140370000200241106a410029009db140370000200241086a4100290095b1403700002002410029008db1403700002002411f413f10142202450d03200220032903880537001f200241376a200341a0056a2903003700002002412f6a20034188056a41106a290300370000200241276a20034190056a290300370000411010122204450d04200420194200201a42015122091b221020157c221437000020042007420020091b20067c2014201054ad7c37000820044110412010142204450d0520042018420020091b220620117c2207370010200441186a2017420020091b20167c2007200654ad7c370000200341b0066a41086a22094200370300200342003703b0062002413f200341b0066a100020034180036a41086a2009290300370300200320032903b0063703800320034180036a41102004412010042004101f2002101f20034188056a41086a41083a000020034188056a41106a200836020020034194056a200536020020034191056a20032f01a0033b000020034193056a200341a2036a2d00003a00002003419c056a20032903e804370200200341a4056a200341e8046a41086a290300370200200341a9056a200341f5046a290000370000200341083a00880520034188056a10270b410021090b20012d00004104460d140c150b411f41011015000b413f41011015000b411041011015000b412041011015000b2009450d010b200a101f0b2001450d010b20022108200121050c0e0b20034191056a20032f01fc023b000020034188056a41106a200836020020034194056a20053602002003419c056a20032903e002370200200341b1056a20032903a002370000200341083a00880520034188056a41086a410a3a000020034193056a200341fe026a2d00003a0000200341a9056a200341ed026a290000370000200341c1056a200341a0026a41106a290300370000200341c9056a200341a0026a41186a290300370000200341a4056a200341e0026a41086a290300370200200341b9056a200341a0026a41086a290300370000200341e9056a200341c0026a41186a290300370000200341e1056a200341c0026a41106a290300370000200341d9056a200341c0026a41086a290300370000200341d1056a20032903c00237000020034188056a1027410021050c0d0b4114210820012d00004104460d0a0c0b0b41a5bec00021090c010b41f5bdc00021090b4130210820012d00004104460d070c080b20024105742109410021044108210e4100210541002108200d2102034020034190066a41186a200241186a220a29000037030020034190066a41106a200241106a220b29000037030020034190066a41086a200241086a220f2900003703002003200229000037039006200341e0036a41186a200a290000370300200341e0036a41106a200b290000370300200341e0036a41086a200f290000370300200320022900003703e00320034188056a200341e0036a109901024020082005470d00200541016a220a2005490d062005410174220b200a200a200b491b220aad4288017e2206422088a70d062006a7220b4100480d06024002402005450d00200e20054188016c200b1014220e0d010c090b200b1012220e450d080b200a21050b200241206a2102200e20046a20034188056a41880110fe011a20044188016a2104200841016a2108200941606a22090d000b200341f0046a20083602002003200e3602e804200320053602ec04200c450d010b200d101f0b200342003702e403200341e893c1003602e003200341e8046a200341e0036a4100109b0120032802e803210a20032802e00321020240024020032802e4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341a4056a20022f0106360200200341a0056a41003602002003419c056a20023602002003200a3602a805200341003602980520034200370390052003200836028c05200341003602880520034188056a109c012005450d00200e101f0b410021090b4124210820012d00004104460d020c030b1010000b200b41081015000b200141c8006a280200450d00200141c4006a280200101f0b200921050b2000200836020420002005360200200341d0066a24000bb20504027f017e017f037e230041206b22022400024002400240411410122203450d00200341106a41002800bd9540360000200341086a41002900b59540370000200341002900ad954037000020034114413410142203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1000200241086a2005290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012205417f460d022005410f4d0d02200241186a2903002106200229031021042003101f411810122203450d010c050b420021062003101f4118101222030d040b411841011015000b41de86c00041331023000b411441011015000b413441011015000b200341106a41002900d19540370000200341086a41002900c99540370000200341002900c19540370000024020034118413810142203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1000200241086a2001290300370300200220022903103703000240024002402002411041e4a4c100410041001001417f460d00200242003703182002420037031020024110200241106a4110410010012201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b2003101f2000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41de86c00041331023000b413841011015000be30301047f230041d0006b2202240002400240411210122203450d00200341106a41002f0091e5403b0000200341086a4100290089e54037000020034100290081e54037000020034112413210142203450d01200320012900003700122003412a6a200141186a290000370000200341226a200141106a2900003700002003411a6a200141086a290000370000200241306a41086a220142003703002002420037033020034132200241306a1000200241206a41086a200129030037030020022002290330370320024002400240200241206a411041e4a4c100410041001001417f460d00200241306a41186a4200370300200241306a41106a4200370300200241386a420037030020024200370330200241206a4110200241306a4120410010012201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b2003101f200241d0006a24000f0b41de86c00041331023000b411241011015000b413241011015000bd20301087f230041306b2201240041082102200141206a41086a2203420037030020014200370320419596c1004115200141206a1000200141086a200329030037030020012001290320370300410021040240024002402001411041e4a4c100410041001001417f460d002001421037021420012001360210200141206a200141106a105f20012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d02200820004120108002450d02200341dc006a22082000460d02200820004120108002450d022003419c016a22082000460d02200820004120108002450d02200341dc016a22082000460d0220034180026a21032008200041201080020d000c020b0b024020032006460d000340410121072003411c6a22032000460d02200320004120108002450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d002000280200101f0b200041c0006a2100200341406a22030d000b0b02402005450d002002101f0b200141306a240020070f0b41de86c00041331023000bb00b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001102802400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510122206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081015000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001001220e200e417f461b220e4120200e412049220e1b20052802006a220f360200200e0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1001220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d2903002113200229035021142002200110282002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10122216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081015000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001001220f200f417f461b220f4120200f412049220f1b20052802006a221a360200200f0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1001220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101422160d010c090b201a10122216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101422060d010c080b200510122206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d002016101f0b200041003602000240200b450d00200641106a210503400240200541046a280200450d002005280200101f0b200541c0006a2105200a41406a220a0d000b0b0240200c450d002006101f0b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081015000b200541081015000b100f000b8c1105087f027e067f017e017f230041b0016b220224000240024002400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1000200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a411041e4a4c100410041001001417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100122032003417f461b22034104200341044922031b20022802286a220136022820030d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22094100200241106a411020024190016a41202001100122032003417f461b2203412020034120491b20092802006a22013602002003411f4d0d01200241f0006a41186a22032006290300370300200241f0006a41106a22092007290300370300200241f0006a41086a220620082903003703002002200229039001370370200241d0006a41186a2003290300370300200241d0006a41106a2009290300370300200241d0006a41086a200629030037030020022002290370370350410121030c020b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b410021030b20024190016a41186a2209200241d0006a41186a29030037030020024190016a41106a2206200241d0006a41106a29030037030020024190016a41086a2207200241d0006a41086a29030037030020022002290350370390012003450d03200241306a41186a2009290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903900137033020024200370398012002420037039001200241206a41086a22094100200241106a411020024190016a41102001100122032003417f461b2203411020034110491b20092802006a3602002003410f4d0d0320024198016a290300210a200229039001210b200241086a200241206a10282002280208450d03200228020c2203417f4c0d04024002402003450d0020031076220c450d09200241286a22012003410020022802202002280224200c20032001280200100122092009417f461b2209200920034b1b220920012802006a36020020092003460d010c040b4101210c2002280220200228022441014100200241286a28020010011a41002003470d030b2002200241206a10282002280200450d0220022802042201417f4c0d04024002402001450d0020011076220d450d0a200241286a220920092802002207200141002002280220220920022802242206200d20012007100122072007417f461b2207200720014b1b22086a220736020020082001460d010c030b4101210d200228022022092002280224220641014100200241286a280200220710011a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002009200620024190016a41202007100122082008417f461b2208412020084120491b20076a22073602002008411f4d0d01200241f0006a41186a2208200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2008290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002009200620024190016a41082007100122082008417f461b2208410820084108491b20076a2207360200200841074d0d012002290390012112200241003a009001200241286a20072009200620024190016a41012007100141016a41014b22096a3602002009450d0120022d009001220641064f0d0120024190016a41186a2207200241306a41186a29030037030020024190016a41106a2208200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22092d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2008290300370200200041cc006a200729030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200920132d00003a0000200220022f01303b0150200020063a0074200020022f01503b0075200041f7006a20092d00003a00000b2004101f200241b0016a24000f0b2001450d00200d101f0b2003450d00200c101f0b41de86c00041331023000b100f000b411341011015000b412641011015000b200341011015000b200141011015000bcb0201027f230041306b22022400024002400240411510122203450d002003410d6a41002900eec340370000200341086a41002900e9c340370000200341002900e1c34037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241206a41086a220142003703002002420037032020034135200241206a1000200241086a200129030037030020022002290320370300024002402002411041e4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411541011015000b413541011015000b41de86c00041331023000bc10301077f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004105742104200241106a41086a2802002100200228021021052002280214210603400240024002400240200620006b41204f0d00200041206a22072000490d0720064101742208200720072008491b22084100480d072006450d01200520062008101422050d020c080b200041206a21070c020b200810122205450d060b200821060b200520006a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020072100200341206a2103200441606a22040d000b200241186a200736020020022006360214200220053602100c010b200241186a280200210720022802142106200228021021050b2001280204210320012802002100200241106a41086a220442003703002002420037031020002003200241106a1000200241086a2004290300370300200220022903103703002002411020052007100402402006450d002005101f0b200241206a24000f0b1010000b200841011015000be70504027f017e017f047e230041206b22032400024002400240411810122204450d00200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021052004101f41142106411410122204450d010c050b420021072004101f411421064114101222040d040b200641011015000b41de86c00041331023000b411841011015000b413841011015000b200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad9540370000024020042006413410142204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101f20002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c106e2000200520017d200720027d2005200154ad7d106f200341206a24000f0b41de86c00041331023000b413441011015000be110020b7f037e230041d0026b22022400200241b0026a41086a22034200370300200242003703b00241ccf3c000411b200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a00241002104024002400240024002400240200241a0026a411041e4a4c100410041001001417f460d002002421037023c2002200241a0026a360238200241a8016a200241386a106820022802a8012205450d02200241b0016a280200210420022802ac0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041012220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d012005101f4100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031014220b0d010c020b20031012220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041015000b02402006450d002005101f0b200a2004470d050c040b4100210c41002004460d030c040b1010000b41de86c00041331023000b410441041015000b0240200c450d00200b101f0b200241d0026a240041d6f8c0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241a8016a20001060200241d0006a200241f4016a290200370300200241386a41106a200241ec016a290200370300200241386a41086a200241e4016a290200370300200220022902dc013703384200210d200241b0026a41086a22034200370300200242003703b00241c0f8c0004116200241b0026a1000200241a0026a41086a2003290300370300200220022903b0023703a002200241a0026a411041e4a4c100410041001001417f460d02200242003703c802200242003703c002200241a0026a4110200241c0026a4110410010012203417f460d082003410f4d0d08200241c8026a290300210d20022903c002210e0c030b200241a8016a20001060200241386a41186a20024194026a290200370300200241386a41106a2002418c026a290200370300200241386a41086a20024184026a290200370300200220022902fc01370338411810122203450d0841002107200341106a41002900b1f340370000200341086a41002900a9f340370000200341002900a1f34037000020034118413810142203450d0920032002290338370018200341306a200241d0006a290300370000200341286a200241386a41106a290300370000200341206a200241386a41086a290300370000200241b0026a41086a22094200370300200242003703b00220034138200241b0026a1000200241c0026a41086a2009290300370300200220022903b0023703c002200241c0026a411041e4a4c100410041001001417f460d03200242103702b4022002200241c0026a3602b002200241186a200241b0026a10282002280218450d0c200228021c2208417f4c0d0a2008450d04200810762207450d0d200241b8026a2209200928020022092008410020022802b00220022802b402200720082009100122092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241a8016a20001060200241206a200241dc016a20022903a801200241b0016a29030010650240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0520022802d001101f0c050b420a210e0b2002200241386a200e200d1065200241386a20022903a801220f200e7d200241b0016a290300200d7d200f200e54ad7d10630240200241c8016a280200450d0020022802c401101f0b200241d4016a280200450d0320022802d001101f0c030b0c010b4101210720022802b00220022802b40241014100200241b8026a28020010011a41002008470d060b200241fc016a21092003101f200241dc016a20022903a801200241a8016a41086a290300106341fc89c00041052007410120071b22042008410020071b2203100402402003450d002004101f0b200241386a41086a41053a0000200241c1006a2009290000370000200241386a412c6a2000360200200241c9006a200941086a290000370000200241d1006a200941106a290000370000200241d9006a200941186a290000370000200241073a0038200241386a10270240200241c8016a280200450d0020022802c401101f0b200241a8016a412c6a280200450d0020022802d001101f0b2002200a3602b0012002200c3602ac012002200b3602a8012002411b36023c200241ccf3c000360238200241a8016a200241386a10690240200c450d00200b101f0b200241a8016a20001060200220013a009c0202400240411310122203450d002003410f6a41002800c8f340360000200341086a41002900c1f340370000200341002900b9f34037000020034113412610142203450d01200320003600132002411736023c20022003360238200241a8016a200241386a10672003101f0240200241c8016a280200450d0020022802c401101f0b0240200241d4016a280200450d0020022802d001101f0b200241b4016a2000360200200241b1016a20013a0000200241b0016a41023a0000200241073a00a801200241a8016a1027200241d0026a240041000f0b411341011015000b412641011015000b41de86c00041331023000b411841011015000b413841011015000b100f000b2008450d002007101f0b41de86c00041331023000b200841011015000bf10504027f017e017f067e230041306b2204240002400240411810122205450d00200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054138200441206a1000200441106a41086a2007290300370300200420042903203703100240024002400240200441106a411041e4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012207417f460d022007410f4d0d02200441286a2903002108200429032021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106f200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a20012903003703002004200429032037031002400240200441106a411041e4a4c100410041001001417f460d002004420037032820044200370320200441106a4110200441206a4110410010012201417f460d032001410f4d0d03200441286a290300210c200429032021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37030020042006370308200441206a41086a2201420037030020044200370320419795c0004116200441206a1000200441106a41086a200129030037030020042004290320370310200441106a41102004411010040b20002002200a7d370308200041106a2003200b7d2002200a54ad7d37030020002009200254200820035420051bad370300200441306a24000f0b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000bec0506027f017e017f027e017f027e230041206b2203240002400240024002400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044134200341106a1000200341086a2006290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012206417f460d022006410f4d0d02200341186a2903002107200329031021050c010b420021070b2004101f419c9bc00021040240024020052001542206200720025420072002511b0d00200010702204450d010b200341206a240020040f0b411810122204450d04200441106a41002900d19540370000200441086a41002900c99540370000200441002900c1954037000020044118413810142204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341106a41086a220942003703002003420037031020044138200341106a1000200341086a200929030037030020032003290310370300024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012209417f460d052009410f4d0d05200341186a290300210a200329031021080c010b4200210a0b2004101f2000200820017c220b200a20027c200b200854ad7c106f2000200520017d200720027d2006ad7d106e200341206a240041000f0b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411841011015000b413841011015000bed0803037f027e057f230041206b2202240020024100360218200242013703102000280218210302400240024002400240024002400240410410122204450d0020024284808080c000370214200220043602102004200336000020044104412410142204450d01200242a4808080c004370214200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436021041000d05200041086a2903002105200029030021062004412441c80010142204450d02200420063700242004412c6a2005370000200241186a22034134360200200241c80036021420022004360210200028021c21072002200041246a28020022043602002002200241106a101302400240024020022802142208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802102008200910142208450d020c060b200228021021080c060b2009101222080d040b200941011015000b410441011015000b412441011015000b41c80041011015000b20022009360214200220083602100b200241186a2209200320046a360200200820036a2007200410fe011a2000280228210a2002200041306a28020022073602002002200241106a10130240024002400240024020022802142203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802102003200810142204450d020c030b200228021021040c030b2008101222040d010b200841011015000b2002200836021420022004360210200821030b200241106a41086a220b200920076a2208360200200420096a200a200710fe011a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710142204450d020c030b200321070c030b2007101222040d010b200741011015000b20022007360214200220043602100b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22092003490d0320074101742208200920092008491b22084100480d032007450d0120042007200810142204450d020c040b200841286a21090c040b2008101222040d020b200841011015000b1010000b20022008360214200220043602100b200241106a41086a22082009360200200420036a200537000020002d0074200241106a10582008280200210420022802142103200228021021002001280204210720012802002109200842003703002002420037031020092007200241106a1000200241086a2008290300370300200220022903103703002002411020002004100402402003450d002000101f0b200241206a24000bc40303027f017e097f230041106b2202240020022001102802400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041015000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100122052005417f461b22054104200541044922051b20072802006a36020020050d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101422060d010c060b200d10122206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d002006101f0b200241106a24000f0b1010000b200d41041015000b920301097f230041206b220224002002410036021820024201370310200028020021032002200028020822003602002002200241106a101302400240024002402000450d0020004102742104200241186a22052802002100200228021421060340200328020021070240024002400240200620006b41044f0d00200041046a22082000490d0720064101742209200820082009491b220a4100480d072006450d0120022802102006200a101422090d020c080b200041046a2108200228021021090c020b200a10122209450d060b2002200a36021420022009360210200a21060b200341046a210320052008360200200920006a2007360000200821002004417c6a22040d000c020b0b200241186a280200210820022802142106200228021021090b2001280204210020012802002103200241106a41086a220442003703002002420037031020032000200241106a1000200241086a2004290300370300200220022903103703002002411020092008100402402006450d002009101f0b200241206a24000f0b1010000b200a41011015000ba80e03057f017e037f230041b0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910122204450d00200441186a41002d0096f9403a0000200441106a410029008ef940370000200441086a4100290086f940370000200441002900fef84037000020044119413210142204450d0120042001360019200341a0016a41086a22054200370300200342003703a0012004411d200341a0016a100020034190016a41086a2005290300370300200320032903a0013703900120034190016a4110100a21052004101f02400240024002402005450d0020034190016a2001108101200341206a41186a200341186a290300370300200341206a41106a200341106a290300370300200341206a41086a200341086a2903003703002003200329030037032020032802940122062003280298012204470d01200441016a22072004490d0620044101742205200720072005491b2206ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910142205450d030c0a0b412110122204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910122205450d07200541186a41002d0096f9403a0000200541106a410029008ef940370000200541086a4100290086f940370000200541002900fef84037000020054119413210142205450d0820052001360019200341003602282003420137032020044101200341206a103b200328022421062003280228210920032802202107200341a0016a41086a220a4200370300200342003703a0012005411d200341a0016a1000200341206a41086a200a290300370300200320032903a001370320200341206a411020072009100402402006450d002007101f0b2005101f2004101f0c0b0b200441016a210720032802900121050c090b2009101222050d070b200941011015000b411941011015000b413241011015000b1010000b412141011015000b411941011015000b413241011015000b200320063602940120032005360290010b20034190016a41086a20073602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910122204450d01200441186a41002d0096f9403a0000200441106a410029008ef940370000200441086a4100290086f940370000200441002900fef84037000020044119413210142204450d0220042001360019200341003602282003420137032020052007200341206a103b200328022421092003280228210a20032802202107200341a0016a41086a220b4200370300200342003703a0012004411d200341a0016a1000200341206a41086a200b290300370300200320032903a001370320200341206a41102007200a100402402009450d002007101f0b2004101f2006450d002005101f0b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210122204450d00200441206a41002f00c8f7403b0000200441186a41002900c0f740370000200441106a41002900b8f740370000200441086a41002900b0f740370000200441002900a8f7403700002004412241c40010142204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341286a290300370000200441c40041880110142204450d0220042001360042024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110122205450d09200541033a00000c030b410110122205450d09200541023a00000c020b410110122205450d09200541013a00000c010b410110122205450d09200541003a00000b200341a0016a41086a22074200370300200342003703a001200441c600200341a0016a100020034190016a41086a2007290300370300200320032903a0013703900120034190016a41102005410110042005101f2004101f200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a1027200341b0016a24000f0b412241011015000b41c40041011015000b41880141011015000b411941011015000b413241011015000b410141011015000b410141011015000b410141011015000b410141011015000bcd0a02057f037e230041306b22022400200241106a41086a220342003703002002420037031041cccfc0004112200241106a1000200241206a41086a20032903003703002002200229031037032002400240024002400240024002400240200241206a411041e4a4c100410041001001417f460d00200242103702042002200241206a360200200241106a2002104020022802102203450d02200228021421040240200320014105746a2205450d00200241186a280200220620014d0d0020002005460d02200520004120108002450d020b02402004450d002003101f0b200241306a240041c2d1c0000f0b200241306a240041c2d1c0000f0b20032006417f6a22064105746a220529000021072005290008210820052900102109200320014105746a220141186a200541186a29000037000020012009370010200120083700082001200737000020022006360228200220043602242002200336022020024112360214200241cccfc000360210200241206a200241106a106202402004450d002003101f0b411c10122201450d01200141186a4100280093d040360000200141106a410029008bd040370000200141086a4100290083d040370000200141002900fbcf403700002001411c413c10142201450d022001200029000037001c200141346a200041186a2900003700002001412c6a200041106a290000370000200141246a200041086a290000370000200241106a41086a22034200370300200242003703102001413c200241106a1000200241206a41086a200329030037030020022002290310370320200241206a411010052001101f411210122201450d03200141106a41002f00ecce403b0000200141086a41002900e4ce40370000200141002900dcce4037000020014112413210142201450d04200120002900003700122001412a6a200041186a290000370000200141226a200041106a2900003700002001411a6a200041086a290000370000200241106a41086a220342003703002002420037031020014132200241106a1000200241206a41086a2204200329030037030020022002290310370320200241206a411010052001101f200342003703002002420037031041dd81c000410d200241106a1000200420032903003703002002200229031037032042002107024002400240200241206a411041e4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d01200229031021070b200241106a41086a220142003703002002420037031041abd1c0004117200241106a1000200241206a41086a20012903003703002002200229031037032002400240200241206a411041e4a4c100410041001001417f460d0020024200370310200241206a4110200241106a41084100100141016a41084d0d0320022903102108410f2103410f10122201450d010c090b42e8072108410f2103410f101222010d080b200341011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b200141076a41002900d9c340370000200141002900d2c340370000024020012003412f10142201450d002001200029000037000f200141276a200041186a2900003700002001411f6a200041106a290000370000200141176a200041086a2900003700002002200820077c370300200241106a41086a22004200370300200242003703102001412f200241106a1000200241206a41086a200029030037030020022002290310370320200241206a41102002410810042001101f200241306a240041000f0b412f41011015000bb20703067f027e027f230041106b2203240020032001360208200341086a200210130240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c090b200228020021070c020b200110122207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101422070d020c0a0b200228020021070c020b200110122207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101302402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c090b200228020021080c020b200710122208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101422080d020c0a0b200228020021080c020b200710122208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011015000b200741011015000b200141011015000b200141011015000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610142205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010142205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101422050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101422080d0a0c110b2006101222050d130b200641011015000b200128020021050c050b200128020021080c070b2000101222050d0d0b200041011015000b200010122205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510122208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101422060d020c060b200128020021060c020b200910122206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011015000b41c4bdc2001024000b20022002360240200241e894c100360244200241c8006a41146a4100360200200241286a41146a4102360200200241346a4106360200200241106a41146a4103360200200241e4a4c1003602582002420137024c200241acbdc2003602482002410636022c20024203370214200241ecc5c2003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41dcbdc200103a000b200041011015000b200541011015000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000b911107017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441142107411410122205450d010c030b42002106411421074114101222050d020b200741011015000b41de86c00041331023000b200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000002400240024002400240024002400240024002400240024002400240024020052007413410142205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0d411410122205450d04200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411410122205450d06200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d07200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f410f10122205450d08200541076a41002900d9c340370000200541002900d2c3403700002005410f412f10142205450d092005200029000037000f200541276a200041186a2900003700002005411f6a200041106a290000370000200541176a200041086a29000037000020034180016a41086a2207420037030020034200370380012005412f20034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411810122205450d0a200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0b20052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0f0c0d0b410121072005101f4100410171450d0c0c0e0b413441011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000b411441011015000b413441011015000b410f41011015000b412f41011015000b411841011015000b413841011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000bcc0f07017f017e017f017e017f017e047f23004190016b220324004200210420034180016a41086a22054200370300200342003703800141819bc000411b20034180016a1000200341f0006a41086a200529030037030020032003290380013703700240024002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d022005410f4d0d02200341086a29030021062003290300210441182107411810122205450d010c030b42002106411821074118101222050d020b200741011015000b41de86c00041331023000b200541106a41002900d19540370000200541086a41002900c99540370000200541002900c19540370000024002400240024002400240024002400240024002400240024020052007413810142205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200320013703002003200237030820034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a20072903003703002003200329038001370370200341f0006a41102003411010042005101f2004200158200620025820062002511b0d0b411810122205450d04200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0520052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a2900003700004200210220034180016a41086a2207420037030020034200370380012005413820034180016a1000200341f0006a41086a2007290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d032007410f4d0d03200341086a2903002104200329030021060c010b42002106420021040b2005101f20034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a2005290300370300200320032903800137037002400240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012205417f460d042005410f4d0d04200341086a2903002101200329030021020c010b420021010b0240200220067d2208200256200120047d2002200654ad7d220220015620022001511b0d00200320083703002003200237030820034180016a41086a220542003703002003420037038001419795c000411620034180016a1000200341f0006a41086a20052903003703002003200329038001370370200341f0006a41102003411010040b411810122205450d06200541106a41002900d19540370000200541086a41002900c99540370000200541002900c1954037000020054118413810142205450d0720052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413820034180016a1000200341086a200729030037030020032003290380013703002003411010052005101f411410122205450d08200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d09200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034180016a41086a2207420037030020034200370380012005413420034180016a1000200341f0006a41086a200729030037030020032003290380013703700240200341f0006a411041e4a4c100410041001001417f460d002003420037030820034200370300200341f0006a411020034110410010012207417f460d042007410f4d0d04200341086a290300210220032903002101410021072005101f2001200284504101710d0d0c0b0b410121072005101f4100410171450d0a0c0c0b413841011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411841011015000b413841011015000b411841011015000b413841011015000b411441011015000b413441011015000b20070d010b20034190016a24000f0b02400240411310122205450d002005410f6a41002800ab8240360000200541086a41002900a482403700002005410029009c824037000020054113413310142205450d01200520002900003700132005412b6a200041186a2207290000370000200541236a200041106a22092900003700002005411b6a200041086a220a29000037000020034180016a41086a220b420037030020034200370380012005413320034180016a1000200341086a220c200b29030037030020032003290380013703002003411010052005101f200c41013a0000200341096a2000290000370000200341116a200a290000370000200341196a2009290000370000200341216a2007290000370000200341023a00002003102720034190016a24000f0b411341011015000b413341011015000baf0304027f017e017f017e230041206b2201240002400240410f10122202450d00200241076a41002900d9c340370000200241002900d2c3403700002002410f412f10142202450d012002200029000037000f200241276a200041186a2900003700002002411f6a200041106a290000370000200241176a200041086a29000037000042002103200141106a41086a22004200370300200142003703102002412f200141106a1000200141086a2204200029030037030020012001290310370300420021050240024002402001411041e4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d01200129031021050b2002101f200042003703002001420037031041dd81c000410d200141106a1000200420002903003703002001200129031037030002402001411041e4a4c100410041001001417f460d002001420037031020014110200141106a41084100100141016a41084d0d02200129031021030b200141206a240041b4c3c000410020052003561b0f0b41de86c00041331023000b41de86c00041331023000b410f41011015000b412f41011015000bb40604027f017e017f067e230041d0006b2204240002400240411410122205450d00200541106a41002800bd9540360000200541086a41002900b59540370000200541002900ad954037000020054114413410142205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441c0006a41086a220742003703002004420037034020054134200441c0006a1000200441206a41086a2007290300370300200420042903403703200240024002400240200441206a411041e4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d022007410f4d0d02200441c8006a2903002108200429034021090c010b42002109420021080b2005101f200120092002200920092002562008200356200820035122051b22071b220a7d20082003200820071b220b7d2009200a54ad7d106e200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a20072903003703002004200429034037032002400240200441206a411041e4a4c100410041001001417f460d002004420037034820044200370340200441206a4110200441c0006a4110410010012207417f460d032007410f4d0d03200441c8006a290300210c200429034021060c010b4200210c0b02402006200a7d220d200656200c200b7d2006200a54ad7d2206200c562006200c511b0d002004200d37033020042006370338200441c0006a41086a2207420037030020044200370340419795c0004116200441c0006a1000200441206a41086a200729030037030020042004290340370320200441206a4110200441306a411010040b02400240200920025a200820035a20051b0d00200441086a20012002200a7d2003200b7d2002200a54ad7d1065200441186a290300210820042903102109200429030821030c010b420021030b2000200937030820002003370300200041106a2008370300200441d0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bda0201027f230041306b22022400024002400240411c10122203450d00200341186a41002800e7d140360000200341106a41002900dfd140370000200341086a41002900d7d140370000200341002900cfd1403700002003411c413c10142203450d012003200129000037001c200341346a200141186a2900003700002003412c6a200141106a290000370000200341246a200141086a290000370000200241206a41086a22014200370300200242003703202003413c200241206a1000200241086a200129030037030020022002290320370300024002402002411041e4a4c100410041001001417f460d002002421037021420022002360210200241206a200241106a104020022802202201450d0420002002290224370204200020013602000c010b20004100360208200042013702000b2003101f200241306a24000f0b411c41011015000b413c41011015000b41de86c00041331023000bc90201027f024020002802004102470d0002400240024002400240024002400240200028020422012d0000220241094b0d0020020e0a07010707070203040506070b200141046a2802004102490d062001410c6a280200450d06200141086a280200101f0c060b200141086a10440c050b200141086a2d0000410c490d04200141106a280200450d042001410c6a280200101f0c040b200141046a10730c030b200141086a2d00004102470d020240200141106a280200450d002001410c6a280200101f0b02402001411c6a280200450d00200141186a280200101f0b200141286a280200450d02200141246a280200101f0c020b200141086a2d00004104470d01200141d0006a280200450d01200141cc006a280200101f0c010b200141086a2d00004102470d00200141106a280200450d002001410c6a280200101f0b200041046a280200101f0b0bd60403027f017e0e7f230041d0006b22022400200241086a2001101702400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510122206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011015000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110fe011a200a200520116b3602002001200f20116a36020020100d02200d41016a2105200241106a41186a22112007290300370300200241106a41106a220f2008290300370300200241106a41086a22102009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101422060d010c060b201210122206450d050b2006200c6a220d2002290310370000200d41186a2011290300370000200d41106a200f290300370000200d41086a2010290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d002006101f0b200241d0006a24000f0b1010000b201241011015000bce0603067f037e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510fe011a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d002022034103712204450d00024020044101460d0020044102470d02200241003a001e200241003b011c2002411c6a200520064103200641034922071b220410fe011a200141046a200620046b3602002001200520046a36020020070d0320022f011c20022d001e41107472410874200372410276ad21080c080b200241003a0020200241206a20052006410047220410fe011a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21080c070b2003410276ad21080c060b0240024020034102762204450d00024020044104460d002004410c470d024200210a2002420037032820024200370320200241206a200520064110200641104922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d04200241286a2903002109200229032021084201210a0c090b4200210a20024200370320200241206a200520064108200641084922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d03200229032021080c070b20024100360220200241206a200520064104200641044922031b220410fe011a200141046a200620046b3602002001200520046a36020020030d01200235022021080c060b200441046a220b41104b0d00200141046a210c200241106a210d4200210842002109410021030340200241003a0020200241206a20052006410047220410fe011a20062004490d04200c200620046b22073602002001200520046a22053602002006450d01200241086a20023100204200200341037441f80071108302200d2903002009842109200229030820088421084201210a20072106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004101a000b20042006101a000b20042006101a000b420021094201210a0b200020083703082000200a370300200041106a2009370300200241306a24000b0700200010f3010bb10101037f024002400240024002400240200041046a280200200041086a2802002201470d00200141016a22022001490d0320014101742203200220022003491b22034100480d032001450d0120002802002001200310142202450d020c040b200028020021020c040b2003101222020d020b200341011015000b1010000b20002002360200200041046a2003360200200041086a28020021010b200041086a200141016a360200200220016a41023a00000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410142203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410142203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101422030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101422030d0a0c0d0b2004101222030d0e0b200441011015000b200128020021030c050b200128020021030c070b2004101222030d0c0b200441011015000b200410122203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410122203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101422030d020c060b200128020021030c020b200010122203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011015000b200441011015000b200041011015000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210142203450d020c030b200128020021030c030b2002101222030d010b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010142203450d020c040b200128020021030c040b2000101222030d020b200041011015000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b900a02067f017e230041e0006b2202240002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0e0c0d0b200241cb006a2001410c6a280000360000200041013a00002002200141046a29000037004320002002290040370001200041086a200241c7006a2900003700002003450d020b20034101460d0c20030d09200141086a280200450d0c200141046a280200101f200241e0006a24000f0b20034103470d0920022001410c6a280200220336021c2002200141046a2802002204360218200241003a0040200241c0006a20042003410047220510fe011a20032005490d022002200320056b220636021c2002200420056a22053602182003450d09024020022d004022034101460d0020030d0a200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b220436021c2002200520036a220336021802402006450d0020022d0040450d030b410021060c060b200241003a0040200241c0006a20052006410047220310fe011a20062003490d042002200620036b36021c2002200520036a3602182006450d0920022d00400d09200241c0006a200241186a107420022802402203450d0920022902442108200241146a41026a200241206a41026a2d00003a0000200241086a200241c0006a41086a290200370300200241106a200241c0006a41106a280200360200200220022f00203b011420022002290240370300410121060c070b41000d090c0a0b41002106200241c0006a20044120200441204922071b22056a41004100412020056b2005411f4b1b10fd011a200241c0006a2003200510fe011a2002200420056b36021c2002200320056a36021820070d03200241386a41026a200241c0006a41026a2d00003a0000200241286a200241d7006a290000370300200241306a200241c0006a411f6a2d00003a0000200220022f00403b01382002200229004f3703202002280043210320022900472108410121060c040b20052003101a000b20032006101a000b20032006101a000b0b2002413c6a41026a2205200241386a41026a2d00003a0000200241c0006a41086a2204200241206a41086a290300370300200241c0006a41106a2207200241206a41106a2d00003a0000200220022f01383b013c200220022903203703402006450d02200241146a41026a20052d00003a0000200241086a2004290300370300200241106a20072d00003a0000200220022f013c3b011420022002290340370300200241136a200241c0006a41026a2d00003a0000200220022f00403b0011410021060b200241206a41026a2205200241146a41026a2d00003a0000200241c0006a41086a2204200241086a290300370300200241c0006a41106a2207200241106a280200360200200220022f01143b012020022002290300370340200020063a0000200041086a2008370000200041046a2003360000200020022f01203b0001200041036a20052d00003a0000200041106a2002290340370000200041186a2004290300370000200041206a20072802003600000b200141086a280200450d02200141046a280200101f0c020b41a093c000411e1023000b200141086a280200450d00200141046a280200101f200241e0006a24000f0b200241e0006a24000bf20202027f027e230041206b22032400024020001070450d00200341206a240041000f0b02400240411410122204450d00200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1000200341086a2000290300370300200320032903103703000240024002402003411041e4a4c100410041001001417f460d00200342003703182003420037031020034110200341106a4110410010012200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b2004101f200341206a2400200520015a200620025a20062002511b0f0b41de86c00041331023000b411441011015000b413441011015000bbd0504027f017e017f037e230041c0006b2203240020032000105c024002400240024002402003290300200341086a29030084500d00411410122204450d03200441106a41002800bd9540360000200441086a41002900b59540370000200441002900ad954037000020044114413410142204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341306a41086a220642003703002003420037033020044134200341306a1000200341206a41086a20062903003703002003200329033037032002400240200341206a411041e4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012206417f460d032006410f4d0d03200341386a2903002107200329033021080c010b42002108420021070b2004101f2000200820017c2209200720027c2009200854ad7c106e200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a20002903003703002003200329033037032002400240200341206a411041e4a4c100410041001001417f460d002003420037033820034200370330200341206a4110200341306a4110410010012200417f460d042000410f4d0d04200341386a2903002108200329033021050c010b420021080b200520017c22012005542200200820027c2000ad7c220520085420052008511b0d002003200137031020032005370318200341306a41086a2200420037030020034200370330419795c0004116200341306a1000200341206a41086a200029030037030020032003290330370320200341206a4110200341106a411010040b200341c0006a24000f0b41de86c00041331023000b41de86c00041331023000b411441011015000b413441011015000bc30609047f017e017f017e037f017e047f017e017f23004180066b22022400200241c8026a2001107d200241d8026a280200210320022802d402210420022802d002210520022903c802210620024190056a200241dc026a41e40010fe011a024002400240024002400240024002400240024002402005450d00200241086a20024190056a41e40010fe011a2002200110172002280200450d0820022802042207ad42e0017e2208422088a70d032008a72209417f4c0d032009450d0120091012220a450d042007450d020c050b2000410036020820024180066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081015000b200241c8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241c8026a2001101620024190056a200241c8026a41f00010fe011a200241c8026a41f0006a2903002108200241a8046a200b41e80010fe011a20084203510d02200e41016a2110200241d8016a20024190056a41f00010fe011a200241f0006a200241a8046a41e80010fe011a0240200e200f470d00200d20102010200d491b220fad42e0017e2211422088a70d052011a722124100480d050240200e450d00200a200920121014220a0d010c070b20121012220a450d060b200a20096a200241d8016a41f00010fe01220e41f0006a2008370300200e41f8006a200241f0006a41e80010fe011a200c4280808080107c210c200d41026a210d200941e0016a21092010210e20102007490d000b200a450d020b200241c8026a200241086a41e40010fe011a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241c8026a41e40010fe011a200041fc006a200c200fad84370200200041f8006a200a36020020024180066a24000f0b0240200e450d00200a4188016a211003402010107e201041e0016a2110200941a07e6a22090d000b0b200f450d00200a101f0b2000410036020802402003450d00200341246c2110200521090340024020092d0000450d00200941086a280200450d00200941046a280200101f0b200941246a21092010415c6a22100d000b0b02402004450d002005101f0b20024180066a24000f0b1010000b201241081015000b9a2107077f017e037f017e0a7f027e0b7f23004180036b22022400200241a8026a41186a22034200370300200241a8026a41106a22044200370300200241a8026a41086a22054200370300200242003703a802200241a8026a2001280200220620012802042207412020074120491b220810fe011a2001200720086b3602042001200620086a360200024002402007411f4d0d00200241e8016a41186a22072003290300370300200241e8016a41106a22082004290300370300200241e8016a41086a22062005290300370300200220022903a8023703e801200241a8016a41186a2007290300370300200241a8016a41106a2008290300370300200241a8016a41086a2006290300370300200220022903e8013703a801410121070c010b410021070b200241a8026a41186a2208200241a8016a41186a290300370300200241a8026a41106a2206200241a8016a41106a290300370300200241a8026a41086a2203200241a8016a41086a290300370300200220022903a8013703a80202400240024002400240024002400240024002400240024002400240024002400240024002402007450d00200241206a41186a2008290300370300200241206a41106a2006290300370300200241206a41086a2003290300370300200220022903a802370320200241106a200110192002290310a7450d0120022903182109200241a8026a41186a22054200370300200241a8026a41106a220a4200370300200241a8026a41086a220b4200370300200242003703a802200241a8026a20012802002204200141046a22032802002207412020074120491b220610fe011a2003200720066b22083602002001200420066a22063602002007411f4d0d02200241e8016a41186a22072005290300370300200241e8016a41106a2204200a290300370300200241e8016a41086a2205200b290300370300200220022903a8023703e801200241c0006a41186a2007290300370300200241c0006a41106a2004290300370300200241c0006a41086a2005290300370300200220022903e801370340200241a8026a2008412020084120491b22076a41004100412020076b2007411f4b1b10fd011a200241a8026a2006200710fe011a2003200820076b3602002001200620076a3602002008411f4d0d03200241e8016a41186a2207200241a8026a41186a290300370300200241e8016a41106a2208200241a8026a41106a290300370300200241e8016a41086a2206200241a8026a41086a290300370300200220022903a8023703e801200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2006290300370300200220022903e801370360200241086a200110172002280208450d0c200228020c220cad42247e220d422088a70d0f200da72207417f4c0d0f2007450d0420071012220e450d06200c450d050c070b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b2000410036020820024180036a24000f0b4104210e200c0d020b410021164200210d0c020b200741041015000b200241a8026a41106a2107200241a8026a410172210f200241e8016a41116a2110200241b7026a211120024180016a4101722103200141046a210b200241fc026a41026a2112200241f0026a2113200241a8026a41076a21144200210d41002115410021084100210a200c21160340200b2802002106200241003a00a802200241a8026a200128020022172006410047220410fe011a20062004490d06200b200620046b22053602002001201720046a22043602002006450d0320022d00a802220641034b0d030240024002400240024002400240024020060e0400030102000b2002200110172002280200450d0a20022802042206417f4c0d0f2006450d03200610762205450d1120052001280200200b2802002204200620042006491b220410fe011a200b28020022172004490d12200b201720046b3602002001200128020020046a36020020042006460d040c090b200241a8026a2005412020054120491b22066a41004100412020066b2006411f4b1b10fd011a200241a8026a2004200610fe011a200b200520066b3602002001200420066a3602002005411f4d0d09200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a2d00003a0000200220022f00a8023b01a002200220112900003703e8012002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021182010411f6a200241a8026a411f6a290000370000201041186a200241a8026a41186a290000370000201041106a2007290000370000201041086a200241a8026a41086a290000370000201020022900a802370000410121170c040b200242003703a802200241a8026a20042005410820054108491b220610fe011a200b200520066b22173602002001200420066a2204360200200541074d0d0820022903a8022119200241a8026a201741c000201741c000491b22066a4100410041c00020066b2006413f4b1b10fd011a200241a8026a2004200610fe011a200b201720066b3602002001200420066a3602002017413f4d0d08200241e8016a41086a201141086a290000370300200241e8016a41106a201141106a290000370300200241e8016a41186a201141186a290000370300200241e8016a41206a201141206a290000370300200241e8016a41286a201141286a290000370300200241e8016a41306a201141306a2d00003a0000200220022f00a8023b01a002200220112900003703e801410221172002200241a8026a41026a2d00003a00a202200241a8026a41036a2800002105201429000021180c040b200241a8026a2001107420022802a8022205450d0720022902ac022118200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220122d00003a00a202200220022f00fc023b01a002200220022903a8023703e801410021170c020b4101210541002006470d050b200241e8016a41086a200241a8026a41086a290300370300200241e8016a41106a2007290300370300200241e8016a41186a200241a8026a41186a290300370300200241e8016a41206a200241a8026a41206a290300370300200241e8016a41286a200241a8026a41286a290300370300200241e8016a41306a200241a8026a41306a290300370300200220022f00fc023b01a002200220022903a8023703e801200220122d00003a00a2022006ad22194220862019842118410321170b0b201220022d00a2023a0000200241a8026a41086a2206200241e8016a41086a221a2903003703002007200241e8016a41106a221b290300370300200241a8026a41186a2204200241e8016a41186a221c290300370300200241a8026a41206a221d200241e8016a41206a290300370300200241a8026a41286a221e200241e8016a41286a290300370300200241a8026a41306a221f200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241e4016a41026a222020122d00003a0000200241a8016a41086a22212006290300370300200241a8016a41106a22222007290300370300200241a8016a41186a22232004290300370300200241a8016a41206a2224201d290300370300200241a8016a41286a221d201e290300370300200241a8016a41306a221e201f290300370300200220022f01fc023b01e401200220022903a8023703a80120062018370300200f20022f01e4013b0000200f41026a20202d00003a0000200720022903a801370000200741086a2021290300370000200741106a2022290300370000200741186a2023290300370000200741206a2024290300370000200741286a201d290300370000200741306a201e290300370000200220173a00a802200220053602ac022013201937030020024180016a200241a8026a107920022d0080012117200241a8026a411f6a221d2003411f6a2800003600002004200341186a2900003703002007200341106a2900003703002006200341086a290000370300200220032900003703a80220174102460d04200a41016a2105200241e8016a411f6a221e201d280000360000201c2004290300370300201b2007290300370300201a2006290300370300200220022903a8023703e8010240200a2016470d002015200520052015491b2216ad42247e2219422088a70d082019a722064100480d080240200a450d00200e200820061014220e0d010c0b0b20061012220e450d0a0b200e20086a220620173a0000200641206a201e280000360000200641196a201c290300370000200641116a201b290300370000200641096a201a290300370000200641016a20022903e801370000200d4280808080107c210d201541026a2115200841246a21082005210a2005200c490d000b0b200e450d03200241a8026a41186a2201200241206a41186a290300370300200241a8026a41106a2207200241206a41106a290300370300200241a8026a41086a2208200241206a41086a290300370300200241e8016a41086a2206200241c0006a41086a290300370300200241e8016a41106a2203200241c0006a41106a290300370300200241e8016a41186a2204200241c0006a41186a290300370300200241a8016a41086a2205200241e0006a41086a290300370300200241a8016a41106a220a200241e0006a41106a290300370300200241a8016a41186a220b200241e0006a41186a290300370300200220022903203703a802200220022903403703e801200220022903603703a8012000200d2016ad8437020c2000200e36020820002009370300200041146a20022903a8023702002000411c6a2008290300370200200041246a20072903003702002000412c6a2001290300370200200041346a20022903e8013702002000413c6a2006290300370200200041c4006a2003290300370200200041cc006a2004290300370200200041ec006a200b290300370200200041e4006a200a290300370200200041dc006a2005290300370200200041d4006a20022903a80137020020024180036a24000f0b2006450d002005101f0b200241fc026a41026a20022d00a2023a0000200241a8026a41086a2201200241e8016a41086a290300370300200241a8026a41106a2207200241e8016a41106a290300370300200241a8026a41186a2206200241e8016a41186a290300370300200241a8026a41206a200241e8016a41206a290300370300200241a8026a41286a200241e8016a41286a290300370300200241a8026a41306a200241e8016a41306a290300370300200220022f01a0023b01fc02200220022903e8013703a802200241023a008001200241a8026a411f6a2003411f6a2800003600002006200341186a2900003703002007200341106a2900003703002001200341086a290000370300200220032900003703a8020b0240200a450d00200e21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012008415c6a22080d000b0b2016450d00200e101f0b2000410036020820024180036a24000f0b20042006101a000b1010000b100f000b200641041015000b200641011015000b20042017101a000b990401027f0240024002400240024002400240024002400240024020002d0000220141094b0d0020010e0a0a010a0a0a02030405060a0b200041046a2802004102490d092000410c6a280200450d09200041086a280200101f0f0b200041086a280200220141064b0d05024020010e0709090009070908090b200041106a280200450d082000410c6a280200101f0f0b200041086a2d0000410c490d07200041106a280200450d072000410c6a280200101f0f0b200041046a2802004102470d06200041086a2200280200107e2000280200101f0f0b200041086a2d00004102470d050240200041106a280200450d002000410c6a280200101f0b02402000411c6a280200450d00200041186a280200101f0b200041286a280200450d05200041246a280200101f0f0b200041086a2d00004104470d04200041d0006a280200450d04200041cc006a280200101f0f0b200041086a2d00004102470d03200041106a280200450d032000410c6a280200101f0f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d002001280200101f0b0240200141106a280200450d002001410c6a280200101f0b200141186a2101200241686a22020d000b0b200041106a280200450d022000410c6a280200101f0f0b200041106a280200450d012000410c6a280200101f0f0b200041106a280200450d002000410c6a280200101f0f0b0b9b2f07047f017e037f017e087f017e0f7f230041a0026b22012400200141b0016a41086a22024200370300200142003703b00141be93c0004113200141b0016a1000200141386a41086a2002290300370300200120012903b001370338024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141386a411041e4a4c100410041001001417f460d00200141003a00b001200141386a4110200141b0016a41014100100141016a41014d0d0220012d00b0012102200141b0016a41086a22034200370300200142003703b00141be93c0004113200141b0016a1000200141086a41086a2003290300370300200120012903b001370308200141086a411010052002450d00200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141386a41086a200229030037030020012001290318370338200141386a411041e4a4c100410041001001417f460d0c2001421037021c2001200141386a360218200141b0016a200141186a104020012802b0012204450d0320012902b4012105200141186a41086a220242003703002001420037031841ba88c000411d200141186a1000200141086a41086a200229030037030020012001290318370308200141086a41101005410610122202450d04200241046a41002f00a388403b00002002410028009f884036000020024106410c10142202450d05200241086a41002d00a788403a0000200241002f00a588403b0006024002402002410941e4a4c100410041001001417f460d00200141003602384101210620024109200141386a41044100100141016a41044d0d03200128023821072002101f20074521082007450d012007ad4205862209422088a70d0f2009a722024100480d0f200210122206450d0841002103200621020340200141386a2003103e200241186a200141386a41186a290000370000200241106a200141386a41106a290000370000200241086a200141386a41086a29000037000020022001290038370000200241206a21022007200341016a2203470d000c020b0b2002101f4101210841002107410121060b024020072005422088a7220a470d000240200a450d0020042006460d004100210b200621022004210303402002200341201080020d02200241206a2102200341206a2103200b41016a220b200a490d000b0b20080d0b2006101f2005a70d0c0c0d0b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141b0016a41086a22032002290300370300200120012903083703b0014100210c02400240200141b0016a411041e4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a10312001280238220d450d09200129023c2109200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a200141b0016a41086a290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b200141386a21022009422088a7220e2009a7220c460d010c0b0b200141c4006a2007360200200141386a41086a2007360200200141386a41106a20012902b001370300200141d0006a2003290200370300200141d8006a200141b0016a41106a280200360200200141013a00382001200636023c200120012f00283b003920012001412a6a2d00003a003b4104210d200141386a21020b200c41016a2203200c490d0d200c4101742207200320032007491b2207ad42247e2209422088a70d0d2009a722034100480d0d02400240200c450d00200d200c41246c20031014220d450d010c0a0b20031012220d0d090b200341041015000b41a8d8c1001024000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410641011015000b410c41011015000b200241011015000b41de86c00041331023000b200c210e2007210c0b200d200e41246c22076a22032002290200370200200341206a200241206a280200360200200341186a200241186a290200370200200341106a200241106a290200370200200341086a200241086a29020037020020014100360210200142013703082001200e41016a220f360238200141386a200141086a101302400240200f450d00200741246a2108200d210203400240024020022d00004101470d002002410c6a2802002103200241046a28020021074100210b0c010b4101210b200241016a21070b200141386a41086a20033602002001200736023c2001200b360238200141186a200141386a10112001280218210a0240024002400240200128020c220b200141086a41086a221028020022036b200141186a41086a28020022074f0d00200320076a22062003490d0a200b4101742211200620062011491b22114100480d0a200b450d012001280208200b2011101422060d020c1a0b200128020821060c020b201110122206450d180b2001201136020c200120063602082011210b0b2010200320076a2211360200200620036a200a200710fe011a0240200128021c450d00200a101f0b200241246a21022008415c6a22080d000c020b0b200141086a41086a2802002111200128020c210b200128020821060b200141086a41086a220242003703002001420037030841bf81c000410d200141086a1000200141186a41086a200229030037030020012001290308370318200141186a41102006201110040240200b450d002006101f0b0240200f450d00200e41246c41246a2103200d21020340024020022d0000450d00200241086a280200450d00200241046a280200101f0b200241246a21022003415c6a22030d000b0b200c450d00200d101f0b2005a7450d010b2004101f0b2000108001200141186a41086a2202420037030020014200370318418080c0004115200141186a1000200141386a41086a2002290300370300200120012903183703380240200141386a411041e4a4c100410041001001417f460d00200141003602b001200141386a4110200141b0016a41044100100141016a41044d0d1020012802b001220a450d0041002107034020072103411a10122202450d14200241186a41002f009dff403b0000200241106a4100290095ff40370000200241086a410029008dff4037000020024100290085ff403700002002411a413410142202450d132002200336001a200141b0016a41086a22074200370300200142003703b0012002411e200141b0016a1000200141086a41086a2007290300370300200120012903b00137030802400240200141086a411041e4a4c100410041001001417f460d002001420037034020014200370338200141086a4110200141386a411041001001220b417f460d17200b410f4d0d17200141386a41086a29030021052001290338210920074200370300200142003703b0012002411e200141b0016a1000200141186a41086a2007290300370300200120012903b001370318200141186a41101005420121120c010b420021120b200341016a21072002101f02402009200584500d002012a7450d00200141386a41106a2005370300200141386a41086a2009370300200141386a41186a2003360200200141053a0038200141386a10270b200a2007470d000b0b4108210742002105200141086a41086a2202420037030020014200370308419596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0e200129023c21050b02402005422088a72213450d0020134106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841a8f8c0004118200141086a1000200141186a41086a20022903003703002001200129030837031802400240200141186a411041e4a4c100410041001001417f460d0020014100360238200141186a4110200141386a41044100100141016a41044d0d102001280238210a0c010b413c210a0b4108210742002105200141086a41086a2202420037030020014200370308419596c1004115200141086a1000200141186a41086a2002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a105f20012802382207450d0d200129023c21050b02402005422088a7220b450d00200b4106742103200741106a210203400240200241046a280200450d002002280200101f0b200241c0006a2102200341406a22030d000b0b02402005a7450d002007101f0b200141086a41086a220242003703002001420037030841ccf3c000411b200141086a1000200141186a41086a20022903003703002001200129030837031841002102200a200b6c220341e4006e2114024002400240024002400240200141186a411041e4a4c100410041001001417f460d00200142103702b4012001200141186a3602b001200141386a200141b0016a106820012802382215450d11200128023c2116200141c0006a28020022020d010c020b41042115410021164100450d010b201520024102746a2117200141dd016a2118200141286a41086a2119200341e3004b211a200141386a41206a211b200141386a412c6a211c200141386a41286a211d200141386a411c6a211e200141d4016a211f200141c8016a2120201521110340200141286a201128020022101081012001280228210f4100210a410021064100210b4100210802402019280200220d450d00200d41216c2107200f41206a2102410021084100210b410021064100210a03400240024020022d000022034101460d00024020034102460d0020034103470d02200a41016a210a200241216a21022007415f6a22070d030c040b200641016a2106200241216a21022007415f6a22070d020c030b200b41016a210b200241216a21022007415f6a22070d010c020b200841016a2108200241216a21022007415f6a22070d000b0b200141386a20101060200141386a41106a290300210942002105200141086a41086a220242003703002001420037030841dd81c000410d200141086a1000200141186a41086a220320022903003703002001200129030837031802400240024002400240024002400240024002400240200141186a411041e4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0120012903b00121050b200242003703002001420037030841a4f6c0004116200141086a100020032002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0220012903b00121122013450d050c060b2002420037030020014200370308418295c0004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041e4a4c100410041001001417f460d0020014200370318200141b0016a4110200141186a41084100100141016a41084d0d0320012903182212500d044280de34201280211220130d060c050b4280de34420580211220130d050c040b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41e4a9c2001024000b201a200b20144f7121070c010b4105210c200a2013460d02201a200b20144f712107200d2013470d004104210c20070d010c020b2005201220097c540d024102210c2007450d010b4103210c0b2010200c106422070d0342002105200242003703002001420037030841dd81c000410d200141086a100020032002290300370300200120012903083703180240200141186a411041e4a4c100410041001001417f460d00200142003703b001200141186a4110200141b0016a41084100100141016a41084d0d0620012903b00121050b411610122203450d072003410e6a41002900a5f940370000200341086a410029009ff94037000020034100290097f94037000020034116412c1014220d450d08200d2010360016200141b0016a41086a22034100360200200142013703b001410410122207450d0920014284808080c0003702b401200120073602b0012007201036000020074104410810142207450d0a2001428880808080013702b40120072008360004200120073602b00120074108411010142207450d0b20014290808080c0013702b4012007200b3600082007200636000c20034110360200200120073602b00120074110412010142207450d0c2007200a360010200142a0808080c0023702b401200120073602b001200c200141b0016a1058024002400240024020012802b40122042003280200220e6b41084f0d00200e41086a2207200e490d0a20044101742221200720072021491b22214100480d0a2004450d0120012802b00120042021101422070d020c120b20012802b00121070c020b202110122207450d100b200120213602b401200120073602b001202121040b2007200e6a20053700002002420037030020014200370308200d411a200141086a100020032002290300370300200120012903083703b001200141b0016a41102007200e41086a100402402004450d002007101f0b200d101f200141b0016a412c6a200c3a0000200141b0016a41286a200a360200201f2006360200200141b0016a41206a200b360200200141b0016a411c6a200836020020202010360200200141b0016a41106a2005370300200341043a0000201820012f00183b0000201841026a200141186a41026a2d00003a0000200141073a00b001200141b0016a10270b0240201b280200450d00201e280200101f0b0240201c280200450d00201d280200101f0b201141046a21110240200128022c450d00200f101f0b20112017470d000b0b2016450d012015101f0c010b0240200141d8006a280200450d00200141d4006a280200101f0b0240200141e4006a280200450d00200141e0006a280200101f0b0240200128022c450d00200f101f0b02402016450d002015101f0b2007412810080b2000108201200141086a41086a220242003703002001420037030841aa96c1004112200141086a1000200141186a41086a200229030037030020012001290308370318024002400240200141186a411041e4a4c100410041001001417f460d0020014200370338200141186a4110200141386a41084100100141016a41084d0d0b20012903382000510d010c020b42012000520d010b200141386a41106a2000370300200141386a41086a4200370300200141093a0038200141386a1027200141086a41086a220242003703002001420037030841f4b0c0004119200141086a1000200141b0016a41086a2002290300370300200120012903083703b0010240200141b0016a411041e4a4c100410041001001417f460d00200141003a0038200141b0016a4110200141386a41014100100141016a41014d0d0c20012d0038450d010b200141086a41086a2202420037030020014200370308419596c1004115200141086a1000200141b0016a41086a2002290300370300200120012903083703b00102400240200141b0016a411041e4a4c100410041001001417f460d002001421037021c2001200141b0016a360218200141386a200141186a105f20012802382202450d0e2001200129023c37023c200120023602380c010b20014100360240200142083703380b2001200141386a1083010b200141a0026a24000f0b41de86c00041331023000b1010000b411641011015000b412c41011015000b410441011015000b410841011015000b411041011015000b412041011015000b41de86c00041331023000b202141011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b201141011015000b413441011015000b411a41011015000b41de86c00041331023000bc3520d037f027e017f017e017f037e0d7f027e037f027e017f027e127f230041c0036b2201240020014190026a41086a220242003703002001420037039002418484c100411820014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240024002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b20024200370300200142003703900241defec000411520014190026a10002003200229030037030020012001290390023703b00202400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00222054200520d0141a8b0c2001024000b42e80721050b20014190026a41086a22024200370300200142003703900241b1fec000411920014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200020047d20058221050240200141b0026a411041e4a4c100410041001001417f460d00200141003a00d002200141b0026a4110200141d0026a41014100100141016a41014d0d0320012d00d002210220014190026a41086a22034200370300200142003703900241b1fec000411920014190026a1000200141b0026a41086a200329030037030020012001290390023703b002200141b0026a41101005200241004721060c040b20054200520d04410121060c030b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b4200210720014190026a41086a22024200370300200142003703900241f594c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002400240024002400240024002400240024002400240024002400240024002400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221000b200242003703002001420037039002419c84c100411420014190026a10002003200229030037030020012001290390023703b0020240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0220012903d00221070b20014190026a41086a22024200370300200142003703900241cafec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00202400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0420012903d00242017c21040c010b420121040b200141d0026a41086a2004370300200141033a00d002200141d0026a1027200120043703d00220024200370300200142003703900241cafec000411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200120003703d002200242003703002001420037039002419c84c100411420014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a41081004200141e0016a41b084c1004119103002400240024020012903e001a74101470d00200120012903e8013703d00220014190026a41086a22024200370300200142003703900241defec000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040c010b2005500d010b20014190026a41086a22024200370300200142003703900241dd81c000410d20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b002420021040240200141b0026a411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0520012903d00221040b200120043703d002200242003703002001420037039002418484c100411820014190026a10002003200229030037030020012001290390023703b002200141b0026a4110200141d0026a410810040b0240024002402006450d0020014190026a41086a220242003703002001420037039002418295c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411041e4a4c100410041001001417f460d01200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0720012903d00221040c020b200141b0026a21080c090b420521040b20014190026a41086a22024200370300200142003703900241defec000411520014190026a1000200141d0026a41086a200229030037030020012001290390023703d00202400240200141d0026a411041e4a4c100410041001001417f460d00200142003703b002200141d0026a4110200141b0026a41084100100141016a41084d0d074200210920012903b00220047e22044200510d010c0a0b4200210942e80720047e22044200520d090b20014190026a41086a220220093703002001200937039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240200141b0026a411041e4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d072002410f4d0d07200141d8026a290300210a20012903d00221090c0a0b4200210a0c090b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b410121020c070b200020077d2200200420042000541b22002009510d0220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b0022004421086200080210402400240200141b0026a411041e4a4c100410041001001417f460d00200142003703d802200142003703d002200141b0026a4110200141d0026a4110410010012202417f460d032002410f4d0d03200141d8026a290300210020012903d00221050c010b42002105420021000b200141d0016a200520002004420010820220012903d001421088200141d0016a41086a29030022044230868421092004421088210a0b4200210b20014190026a41086a22024200370300200142003703900241f3fec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240200141b0026a411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d002220c450d0420012902d402210b0c010b4101210c0b4105210d200b422088a74105742202450d03200c20026a210e4120210f411c211041182111410021124110211341082114413c211541342116412c211741242118420121194200211a4160211b200c211c4100211d0c040b41de86c00041331023000b41d499c2001024000b41de86c00041331023000b410021020c010b410221020b0240024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024020020e03000102020b200141e8026a200a370300200141e0026a2009370300200141d8026a41003a0000200141043a00d002200141d0026a1027200141d0026a41b7e0c0004112103c200141b0026a2108200ba7450d0c200c101f410121020c100b20014190026a41086a22024200370300200142003703900241cafec000411420014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210402400240024002400240024002400240024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0120012903d00221040b2002420037030020014200370390024196d1c000411520014190026a10002003200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d0020014190026a41086a2202420037030020014200370390024196d1c000411520014190026a1000200141b0026a41086a200229030037030020012001290390023703b002200141b0026a411010050c010b20014190026a41086a22024200370300200142003703900241c9e0c000411b20014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b0024200210002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0620012903d00221000b20024200370300200142003703900241e4e0c000411620014190026a10002003200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00222054200520d0141ec99c2001024000b42e80721050b200420007d2005824200520d210b20014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0320012903d00242017c21040c010b420121040b200120043703d00220014190026a41086a22024200370300200142003703900241fae0c000411220014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a41081004200242003703002001420037039002418ce1c000411a20014190026a10002003200229030037030020012001290390023703b00202402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d03200120012903d00222043703f00120014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d06200420012903d002520d010c020b200442e807510d010b200120043703d00220014190026a41086a22024200370300200142003703900241e4e0c000411620014190026a1000200141b0026a41086a2203200229030037030020012001290390023703b00220084110200141d0026a4108100420024200370300200142003703900241cafec000411420014190026a10002003200229030037030020012001290390023703b0024200210402402008411041e4a4c100410041001001417f460d00200142003703d002200141b0026a4110200141d0026a41084100100141016a41084d0d0820012903d00221040b200120043703d00220024200370300200142003703900241c9e0c000411b20014190026a10002003200229030037030020012001290390023703b00220084110200141d0026a410810040b20014190026a41086a22024200370300200142003703900241cccfc000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202400240024002402008411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022223450d0b20012802d40221244105210341002125200141d8026a2802004105742202450d020c010b4101212341002124410521034100212541004105742202450d010b20022003752226ad42307e2204422088a70d1c2004a722034100480d1c200310122227450d0a202320026a22282023470d010c0c0b4108212741002126202320026a22282023460d0b0b41002125411821294110212a4108212b4120212c4128212d4101212e4130212f410521304160213120272132202321334101211d0c160b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200341081015000b02400240201d0e020001010b201c450d0a201010122202450d02200220116a2012280093d040360000200220136a201229008bd040370000200220146a2012290083d040370000200220122900fbcf4037000020022010201510142202450d032002201c29000037001c200220166a201c20116a290000370000200220176a201c20136a290000370000200220186a201c20146a290000370000200141d0026a20022015103d200141d0026a20146a22032903002100200141d0026a20136a290300210520012903d00221072002101f420021040240024002400240200920004200200720195122021b2200200920002009542005420020021b2200200a542000200a511b22021b221e7d2205200a2000200a20021b221f7d2009201e54ad7d220784500d00200141d0026a201c10722003280200210220012802d0022120200141c0016a201c105c200141c0016a20146a290300210420012903c00121002002450d012002200d7422032106202021020340200141b0016a2002105c200141b0016a20146a29030020047c20012903b001220420007c2200200454ad7c21042002200f6a21022006201b6a22060d000b2004201a20002019562004201a522004501b22021b21042000201920021b2100202021020340200141a0016a2002105c20014190016a20012903a001200141a0016a20146a2903002005200710820220014180016a20012903900120014190016a20146a29030020002004108102200220012903800120014180016a20146a290300107b2002200f6a21022003201b6a22030d000b200141f0006a201c105c2000200484201a510d09200141f0006a20146a2903002121200129037021220c020b420021000c020b200141e0006a201c105c2004201a20002019562004201a522004501b22021b21042000201920021b2100200141e0006a20146a2903002121200129036021220b200141d0006a2022202120052007108202200141c0006a2001290350200141d0006a20146a29030020002004108102200141c0006a20146a29030021002001290340210420012802d402450d002020101f0b201c2004201e7c22052000201f7c2005200454ad7c107b201c200f6a2202211c2002200e470d08410021020c0f0b200141d0026a20296a221d203320296a290000370300200141d0026a202a6a22202033202a6a290000370300200141d0026a202b6a22342033202b6a290000370300200120332900003703d00220014190026a200141d0026a106120014190026a202b6a28020021022001280290022106200141306a200141d0026a105c200141306a202b6a29030021042001290330210002402002450d0020022030742103200621020340200141206a2002105c200141206a202b6a29030020047c2001290320220420007c2200200454ad7c21042002202c6a2102200320316a22030d000b0b2033202c6a21330240200128029402450d002006101f0b200141b0026a20296a2202201d290300370300200141b0026a202a6a22032020290300370300200141b0026a202b6a22062034290300370300200120012903d0023703b00220322004370308203220003703002032202d6a20022903003703002032202c6a2003290300370300203220296a2006290300370300203220012903b0023703102025202e6a21252032202f6a213220332028470d080b02402024450d002023101f0b20014190026a41086a22024200370300200142003703900241decfc000411d20014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d04202520012802d0024f0d010c160b20254104490d150b4100212b20272025410041202025676b104520014190026a41086a22024200370300200142003703900241a6e1c000411620014190026a1000200141b0026a41086a200229030037030020012001290390023703b00202402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0520012802d002212b0b024002402025450d0020252025202b202b20254b1b417f6a22024d0d07202741086a29030021042027200241306c6a22022903002105200241086a29030021002027290300210741102114411010122202450d010c100b42002107420021044200210542002100411021144110101222020d0f0b201441011015000b411c41011015000b413c41011015000b41de86c00041331023000b41d499c2001024000b41de86c00041331023000b41849ac200200220251048000b4100211d0c030b4101211d0c040b410021020c040b410121020c030b410221020c020b410221020c010b410221020c000b0b200220073700002002200437000820022014412010142202450d0120022005370010200241186a200037000020014190026a41086a22144200370300200142003703900241b7e0c000411220014190026a1000200141b0026a41086a201429030037030020012001290390023703b002200841102002412010042002101f02400240202b450d0041002132202b2027202541306c6a221420276b41306d22022002202b4b1b2223450d012023ad4205862204422088a70d022004a722024100480d02200210122233450d04202b450d060c050b4100212341012133410021320c050b4101213341002123202b0d030c040b1010000b412041011015000b200241011015000b20142027460d00202541306c2131200141d0026a41106a21034101210f20332114202721020340200141d0026a41286a200241286a290300370300200141d0026a41206a200241206a290300370300200141d0026a41186a200241186a2903003703002003200241106a290300370300200141d0026a41086a200241086a29030037030020022903002104200141b0026a41086a221b200341086a290300370300200141b0026a41106a2206200341106a290300370300200141b0026a41186a222c200341186a290300370300200120043703d002200120032903003703b002201441186a202c290300370000201441106a2006290300370000201441086a201b290300370000201420012903b002370000202b200f2232460d01200241306a2102203241016a210f201441206a2114203141506a22310d000b0b02402026450d002027101f0b4200210720014190026a41086a22024200370300200142003703900241f3fec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b0020240024002402008411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022225450d0220012902d40221070c010b410121250b024002400240024002402007422088a7410574222c450d0020252114034002400240024002400240411c10122202450d00200241186a41002800e7d140360000200241106a41002900dfd140370000200241086a41002900d7d140370000200241002900cfd1403700002002411c413c10142202450d012002201429000037001c200241346a201441186a220f2900003700002002412c6a201441106a221b290000370000200241246a201441086a220629000037000020014190026a41086a222b420037030020014200370390022002413c20014190026a1000200141b0026a41086a2203202b29030037030020012001290390023703b002200141b0026a411010052002101f411210122202450d02200241106a41002f00ecce4022313b0000200241086a41002900e4ce402204370000200241002900dcce40220037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a200629000037000020034200370300200142003703b00220024132200141b0026a1000200141d0026a41086a2003290300370300200120012903b0023703d002024002400240200141d0026a411041e4a4c100410041001001417f460d00200141003602b002200141d0026a4110200141b0026a41044100100141016a41044d0d0220012802b002211c20034200370300200142003703b00220024132200141b0026a1000202b2003290300370300200120012903b0023703900220014190026a411010052002101f201c410041011b221c4102490d010c070b2002101f4100410041001b221c41024f0d060b201441206a2114202c41606a222c0d060c070b41de86c00041331023000b411c41011015000b413c41011015000b411241011015000b413241011015000b411210122202450d02200241106a20313b0000200241086a20043700002002200037000020024112413210142202450d03200220142900003700122002412a6a200f290000370000200241226a201b2900003700002002411a6a20062900003700002001201c417f6a3602d002202b420037030020014200370390022002413220014190026a10002003202b29030037030020012001290390023703b00220084110200141d0026a410410042002101f201441206a2114202c41606a222c0d000b0b02402007a7450d002025101f0b02400240024002402032450d0020324105742103203321020340200141d0026a20021061411c10122214450d03201441186a41002800e7d140360000201441106a41002900dfd140370000201441086a41002900d7d140370000201441002900cfd1403700002014411c413c10142214450d042014200229000037001c201441346a200241186a2900003700002014412c6a200241106a290000370000201441246a200241086a2900003700002001413c3602b402200120143602b002200141d0026a200141b0026a10622014101f024020012802d402450d0020012802d002101f0b200241206a2102200341606a22030d000b2033203210bc010c010b2033410010bc010b20014190026a41086a22024200370300200142003703900241bce1c000411420014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0620013502d00221040c010b42c0843d21040b200141106a2005420020044200108202200142003703d80220014289f48bdcc4002001290310428094ebdc038020012903184200521b3703d00220014190026a41086a22024200370300200142003703900241b1cfc000411b20014190026a1000200141b0026a41086a2214200229030037030020012001290390023703b00220084110200141d0026a4110100420024200370300200142003703900241d0e1c000411520014190026a10002014200229030037030020012001290390023703b002024002402008411041e4a4c100410041001001417f460d00200141003602d002200141b0026a4110200141d0026a41044100100141016a41044d0d0720013502d00221040c010b423c21040b20012005420020044200108202200142003703d80220014289f48bdcc4002001290300428094ebdc038020012903084200521b3703d00220014190026a41086a220242003703002001420037039002419be0c000411c20014190026a1000200141b0026a41086a200229030037030020012001290390023703b00220084110200141d0026a411010042023450d082033101f0c080b411c41011015000b413c41011015000b411241011015000b413241011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b2026450d002027101f0b20014190026a41086a22024200370300200142003703900241f3fec000411220014190026a1000200141b0026a41086a200229030037030020012001290390023703b002024002400240200141b0026a411041e4a4c100410041001001417f460d0020014210370294022001200141b0026a36029002200141d0026a20014190026a104020012802d0022229450d1020012802d4022127200141d8026a280200410574221b0d010c020b41012129410021274100410574221b450d010b202921144100212b0340411210122202450d05200241106a41002f00d984413b0000200241086a41002900d18441370000200241002900c9844137000020024112413210142202450d06200220142900003700122002412a6a201441186a290000370000200241226a201441106a2900003700002002411a6a201441086a29000037000020014190026a41086a2203420037030020014200370390022002413220014190026a1000200141b0026a41086a220f200329030037030020012001290390023703b002024002400240200141b0026a411041e4a4c100410041001001417f460d00200141d0026a41186a22064200370300200141d0026a41106a222c4200370300200141d0026a41086a22084200370300200142003703d002200141b0026a4110200141d0026a4120410010012231417f460d062031411f4d0d06200141f0016a41186a22312006290300370300200141f0016a41106a221c202c290300370300200141f0016a41086a22322008290300370300200120012903d0023703f0012003420037030020014200370390022002413220014190026a1000200f200329030037030020012001290390023703b002200141b0026a411010052002101f20014190026a41186a2223203129030037030020014190026a41106a221d201c29030037030020032032290300370300200120012903f00137039002410610122202450d0b200241046a41002f00a3884022313b00002002410028009f8840221c36000020024106410c10142202450d0c2002202b3600062002410a41e4a4c100410041001001417f460d01200141b0026a41186a22324200370300200141b0026a41106a22334200370300200f4200370300200142003703b0022002410a200141b0026a4120410010012225417f460d0a2025411f4d0d0a20062032290300370300202c20332903003703002008200f290300370300200120012903b0023703d0020c020b2002101f201441206a2114202b41016a212b201b41606a221b0d020c030b20064200370300202c420037030020084200370300200142003703d0020b2002101f02400240200141d0026a20014190026a4120108002450d00200141003602b002200141b0026a103f410610122202450d0c200241046a20313b00002002201c36000020024106410c10142202450d0d200241086a41002d00a788403a0000200241002f00a588403b00062002410941e4a4c100410041001001417f460d01200141003602b00220024109200141b0026a41044100100141016a41044d0d0620012802b002210f2002101f200f202b4d0d00410610122202450d0e200241046a20313b00002002201c36000020024106410c1014220f450d0f200f202b360006412010122202450d102002200129039002370000200241186a2023290300370000200241106a201d290300370000200241086a2003290300370000200f410a2002412010042002101f200f101f0b201441206a2114202b41016a212b201b41606a221b0d010c020b2002101f201441206a2114202b41016a212b201b41606a221b0d000b0b2027450d002029101f0b200141c0036a24000f0b41de86c00041331023000b41de86c00041331023000b411241011015000b413241011015000b41de86c00041331023000b410641011015000b410c41011015000b410641011015000b410c41011015000b410641011015000b410c41011015000b412041011015000b41de86c00041331023000bbb0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910122203450d00200341186a41002d0096f9403a0000200341106a410029008ef940370000200341086a4100290086f940370000200341002900fef84037000020034119413210142204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1000200241106a41086a2003290300370300200220022903503703100240024002400240200241106a411041e4a4c100410041001001417f460d00200242103702242002200241106a360220200241086a200241206a10282002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310122207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011015000b413241011015000b200341011015000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100122112011417f461b2211412020114120491b20096a22093602002011411f4d0d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082009200b200a200241d0006a41012009100141016a41014b22116a22093602002011450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101422070d010c080b201210122207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b2004101f200241f0006a24000f0b200f450d002007101f0b41de86c00041331023000b1010000b201241011015000b85c10125027f027e097f017e187f027e077f027e0c7f027e087f017e107f037e177f027e0e7f017e0d7f097e287f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e0e7f23004190036b22012400200141e0026a41086a22024200370300200142003703e00241c5b2c0004115200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041e4a4c100410041001001417f460d00200142103702d4012001200141286a3602d001200141086a200141d0016a108f01024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200129030822034203510d0020012903102104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a0028200141286a41086a220541063a0000200141286a10272001420837031820014100360220200141e0026a41086a22024200370300200142003703e0024180b4c000411b200141e0026a100020052002290300370300200120012903e002370328200141286a411041e4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012206450d0f20012802d401210741082108200141d8016a2802004105742209450d050c140b20042000520d1f200141083a0028200141286a41086a224441043a0000200141286a1027200141e0026a41086a22054200370300200142003703e0024195bfc000411f200141e0026a100020442005290300370300200120012903e002370328200141286a411041e4a4c100410041001001417f460d01200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0820012903d001210e0c020b20042000520d1e200141083a0028200141286a41086a220241023a0000200141286a1027200141e0026a41086a220a4200370300200142003703e00241e6b3c000411a200141e0026a10002002200a290300370300200120012903e00237032841002145200141286a411041e4a4c100410041001001417f460d04200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012246450d0e200141d8016a280200214720012802d40121450c050b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041e4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0720012903d00121480b20012048200e7c37033020014202370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541053a0000200141286a102720014190036a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012146410021470b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d05204720012802d0014f0d010c0d0b2047410a490d0c0b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0720012802d00121020c010b410a21020b200141e0026a41086a220a4200370300200142003703e00241d3bfc000411e200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602d001200141286a4110200141d0016a41044100100141016a41044d0d0820012802d001210a0c010b4114210a0b41e4a4c1002165410021664100210b41e4a4c100216720472002200a200a2002491b22684d0d160240204741144b0d00204741014d0d162047417e6a2144204620474105746a41406a210541022102034020472044490d0620052002109f01200541606a2105200241016a21022044417f6a2244417f470d000c170b0b2047410176226aad2248421b88a70d132048420586a72202417f4c0d134101216b4101216c02402002450d0020021012226c450d0a0b4160216d204641606a216e204641a07f6a216f4100217041042171417f217242032173422021744103217541022176417d217741052178411f21794117217a4110217b41082167413f217c4137217d4118217e412f217f41272180014120218101200141286a41206a218201420021484201218301417e218401417421850141642186014138218701413021880141282189014109218a01410a218b014104218c014100218d014100218e012047218f01410221360c0a0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b20442047101a000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200241011015000b410121020c070b10900120450d0b0c0c0b4100210a41002105410021022006210b0340200141286a200b109901024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101422080d010c060b200c10122208450d050b200d21050b200b41206a210b2008200a6a200141286a41880110fe011a200a4188016a210a200241016a2102200941606a22090d000b200141206a2002360200200120083602182001200536021c2007450d010b2006101f0b4200210e200142003702c401200141e893c1003602c0012002450d01418801210f200820024188016c6a2110200141c4006a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a4119211b4111211c4109211d411f211e4117211f41002120413f212141372122412f21234127212441202125200141e0026a41206a2126420821274201212841142129200141d0016a41146a212a4106212b41e802212c4138212d4130212e4128212f4230213042202131410421324160213341987d213420082135410021360c020b200c41081015000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141b0016a41086a200141c0016a41086a280200360200200120012903c0013703b001200141e0026a41086a2202200e3703002001200e3703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328024002400240200141286a411041e4a4c100410041001001417f460d00200142103702e4022001200141286a3602e002200141d0016a200141e0026a104020012802d0012241450d0220012802d401214241052143200141d8016a28020041057422020d010c230b41012141410021424105214341004105742202450d220b204120026a2149200141c4006a214a4120214b4108214c417f214d4102214e41a808214f4118215041102151411f21524117215341002154413f215541372156412f215741272158420821594201215a4200215b200141e4016a215c4106215d41987d215e4160215f4101216020412161410121360c020b41de86c00041331023000b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020360e09000102030405060708080b20352d0060450d41203520126a223720136a213820012802c0012239213a20012802c401223b213c0c1c0b20612262204b6a2161200141b0016a216320012802b40121640c1c0b02400240024002400240024002400240208f0122900120726a228f01450d00207910122202450d162002207a6a20702900a4b14022003700002002207b6a207029009db1402203370000200220676a2070290095b14022043700002002207029008db140223e37000020022079207c10142202450d1720022046208f012078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c208201290300219101200141286a207e6a220b290300213f200141286a207b6a2209290300219201200141286a20676a220c29030021930120012903282194012002101f207910122202450d182002207a6a20003700002002207b6a2003370000200220676a20043700002002203e37000020022079207c10142202450d19200220462090012084016a22062078746a220a29000037001f2002207d6a200a207e6a2900003700002002207f6a200a207b6a29000037000020022080016a200a20676a290000370000200141286a2002207c103c2082012903002195012009290300219601200b290300219701200c29030021980120012903282199012002101f203f2093017c229301204820940120485222021b2097012098017c229401204820990120830151220a1b542091012092017c209301203f54ad7c204820021b223f2095012096017c20940120970154ad7c2048200a1b22970154203f209701511b450d01206f20900120787422066a21020340208f01206b460d0320791012220a450d10200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d14200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d15200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d16200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102208f0120726a218f01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b542091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b22970154203f209701511b0d000c040b0b4101210d4100218f01208d01208e01470d060c050b206f2090012078746a21024100218f014100219a01024003402006209a01460d0120791012220a450d0e200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d10200a207d6a20022087016a290000370000200a207f6a20022088016a290000370000200a2080016a20022089016a290000370000200a20022081016a29000037001f200141286a200a207c103c208201290300219101200b290300213f2009290300219201200c2903002193012001290328219401200a101f20791012220a450d11200a207a6a2000370000200a207b6a2003370000200a20676a2004370000200a203e370000200a2079207c1014220a450d12200a200229000037001f200a207d6a2002207e6a290000370000200a207f6a2002207b6a290000370000200a2080016a200220676a290000370000200141286a200a207c103c2082012903002195012009290300219601200b290300219701200c2903002198012001290328219901200a101f2002206d6a2102209a01206b6a219a01203f2093017c2293012048209401204852220a1b2097012098017c229401204820990120830151220d1b5a2091012092017c209301203f54ad7c2048200a1b223f2095012096017c20940120970154ad7c2048200d1b2297015a203f209701511b0d000b209a01206b6a210d209001209a016b20726a228f01450d040c030b209001210d208d01208e01460d040c050b4100218f010b209001208f01490d1720900120474b0d1a0240209001208f016b220d206b76229a01450d00206e20066a21022046208f012078746a210a0340200b200a207e6a22062900003703002009200a207b6a2207290000370300200c200a20676a22402900003703002001200a290000370328200220676a229b0129000021002002207b6a229c0129000021032002290000210420062002207e6a229d012900003700002007200337000020402000370000200a200437000020022001290328370000209b01200c290300370000209c012009290300370000209d01200b2903003700002002206d6a2102200a2081016a210a209a0120726a229a010d000b0b208f01450d010b200d208a014b0d0020900120474b0d17209001208f016b210d208f0120726a2102206e208f012078746a210a03402090012002490d19200a200d206b6a220d109f01200220726a210b02402002450d00200a206d6a210a200b2102200d208b01490d010b0b200b206b6a218f01208d01208e01470d020c010b208d01208e01470d010b208d01206b6a2202208d01490d43208d01206b74220a20022002200a491b2202ad2073862200207488a70d432000a7220a2070480d4302400240208d01450d00208c01208d01207574200a1014228c010d010c150b200a1012228c01450d140b2002218d010b208c01208e012075746a2202200d3602042002208f01360200208e01206b6a229a01218e01209a012076490d334103213d0c290b200141286a20a8016a20b30120a8016a290000370300200141286a20a9016a20b30120a9016a290000370300200141286a20aa016a20b30120aa016a290000370300200120b30129000037032820b30120ab016a21b30120a60121b40120a70121b5010c1b0b200128029002220228020021c801200228020421c9014105213d0c290b024020f00122f10120d6016a2202450d0020f10120e8016a21f20120b601200220dc01746a21f30120012802e002280200280200220228020022f40121f501200228020422f60121f7010c1b0b410121fa01410021f00120ee0120ef01460d200c210b209f0220dd016a210a209f022f0106220c20dc017421024100210b024002400240024003402002450d01209d02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a102450d0120a10220d6016a21a102209f02200c20da01746a20de016a280200219f02410621360c170b209f0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20990220d2016a220b209d02209e0220a40220035420a30220005420a3022000511b220a1b220229000037000020990220e0016a200220df016a29000037000020990220e2016a200220e1016a29000037000020990220e3016a200220dd016a290000370000209a02209e02200a1b219a02209602209d02209c02200a1b229c024f0d1a200b21990220d10121a50220d101209a02490d210c1c0b20a70220dd016a210a20a7022f0106220c20dc017421024100210b024002400240024003402002450d0120a502200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a902450d0120a90220d6016a21a90220a702200c20da01746a20de016a28020021a702410721360c170b20a70220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b209c0220980220a50220ac0220035420ab0220005420ab022000511b220a1b2202290000370000209c0220df016a200220df016a290000370000209c0220e1016a200220e1016a290000370000209c0220dd016a200220dd016a29000037000020a50220a50220446a200a1b21a502209c0220446a219c0220980220446a209802200a1b2298022099024f0d1c209a0220a5024b0d210c1a0b20cf0222d00220af026a21cf0220012802900222d10228020421d20220d10221d3020c1c0b411f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b200a41041015000b208f01209001101a000b209001208f01417f6a22024f0d010b2002209001101a000b20900120471049000b410121020c280b410121020c270b410121020c260b4100213d0c0c0b4102213d0c0c0b4104213d0c0d0b4106213d0c0e0b410d213d0c0e0b410e213d0c0e0b410e213d0c0e0b410e213d0c0e0b410f213d0c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b02400240024002400240024002400340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20ee0120d0016a220220ee01490d860120ee0120d00174220a20022002200a491b2202ad20d70186220020d80188a70d86012000a7220a20d401480d86010240024020ee01450d0020ed0120ee0120d90174200a101422ed010d010c050b200a101222ed01450d040b200221ee01410121020c6f0b20ed0120ef0120d901746a220220fa01360204200220f00136020020ef0120d0016a228e0221ef01208e0220da01490d04410a213d0c550b209c0220d2016a219d02209a0220d2016a219e02209b022802002802002202280200229f0221a002200228020422a10221a2020c430b20a602280200280200220228020022a70221a802200228020422a90221aa020c430b200a41041015000b024002400240024002400240024002400240024002400240024002400240024002400240024002400240203d0e110001020304050708090a0d0e1013141819190b203a20146a210a203a2f0106220c20157421024100210b02400240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203c450d01203c20166a213c203a200c2017746a20186a280200213a4100213d0c5a0b203a200b202b746a2034470d500b20014190026a20196a203820196a220a29000037030020014190026a201a6a2038201a6a220b29000037030020014190026a20146a203820146a22092900003703002001203829000037039002200141b8026a20196a220c2037201b6a290000370300200141b8026a201a6a223d2037201c6a290000370300200141b8026a20146a220d2037201d6a290000370300200120372900013703b802201e10122202450d2a2002201f6a20202900a4b1403700002002201a6a202029009db140370000200220146a2020290095b1403700002002202029008db1403700002002201e202110142202450d2b2002203829000037001f200220226a200a290000370000200220236a200b290000370000200220246a2009290000370000200141e0026a20022021103c20262903002103200141e0026a201a6a2903002104200141e0026a20196a2903002100200141e0026a20146a290300213e20012903e002213f2002101f200141286a20196a2020360200200141286a201a6a2027370300201120196a200c2903003700002011201a6a203d290300370000201120146a200d290300370000201120012903b80237000020012000203e7c223e200e203f20285122021b3703282001200320047c203e200054ad7c200e20021b370330200141d0016a200141c0016a20014190026a200141286a10a0010240200141d0016a201a6a2802002202450d00202a280200450d002002101f0b20012802c001213920012802c401213b0c4e0b203920146a210a20392f0106220c20157421024100210b0240024003402002450d012038200a20251080022209450d02200220336a2102200b20136a210b200a20256a210a200920164a0d000b200b20166a210c0b203b450d9201203b20166a213b2039200c2017746a20186a28020021394101213d0c590b2039202c6a200b202b746a2202450d9101200141286a20196a220c2035202d6a290000370300200141286a201a6a220d2035202e6a290000370300200141286a20146a22062035202f6a29000037030020012035290020370328203520146a2903002103203520196a29030021042035290300213e20352903102100200220196a210b2002201a6a210902400240024002402002280218220a200220296a280200470d00200a20136a2202200a490d9801200a2013742207200220022007491b2207ad20307e223f203188a70d9801203fa722402020480d9801200a450d012009280200200a202e6c2040101422020d020c2f0b200928020021020c020b204010122202450d2d0b20092002360200200920326a2007360200200b280200210a0b2002200a202e6c6a220220012903283703102002200420037c2000203e7c2203200054ad7c370308200220033703002002202f6a200c290300370300200220256a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c91010b2063280200220c204c6a210a200c2f0106220d20437421024100210b024002400240024003402002450d012062200a204b1080022209450d022002205f6a2102200b20606a210b200a204b6a210a2009204d4a0d000b200b204d6a210d0b2064450d012064204d6a2164200c200d204e746a204f6a21634102213d0c5d0b200c200b205d746a205e470d010b20014190026a20506a206220506a220a29000037030020014190026a20516a206220516a220b29000037030020014190026a204c6a2062204c6a22092900003703002001206229000037039002200141b8026a20506a220c200a290000370300200141b8026a20516a220d200b290000370300200141b8026a204c6a22362009290000370300200120622900003703b802205210122202450d27200220536a20542900a4b140370000200220516a205429009db1403700002002204c6a2054290095b1403700002002205429008db14037000020022052205510142202450d282002206229000037001f200220566a200a290000370000200220576a200b290000370000200220586a2009290000370000200141e0026a20022055103c200141e0026a204b6a2903002103200141e0026a20516a2903002104200141e0026a20506a2903002100200141e0026a204c6a290300213e20012903e002213f2002101f200141286a20506a2054360200200141286a20516a2059370300204a20506a200c290300370000204a20516a200d290300370000204a204c6a2036290300370000204a20012903b80237000020012000203e7c223e205b203f205a5122021b3703282001200320047c203e200054ad7c205b20021b370330200141d0016a200141b0016a20014190026a200141286a10a001200141d0016a20516a2802002202450d00205c280200450d002002101f0b20612049470d330c87010b02400240024002400240208c01209a01229c0120726a229a012075746a2202280200450d00208c01209c012075746a220c2085016a28020022092002280204220a4d0d004102218e01209c0141024d0d8801208c01209c0120776a22022075746a280204220b200a20096a4d0d014103218e01209c0141034d0d8801200c2086016a280200200b20096a4d0d010c040b209c012075490d012002280204210a208c01209c0120776a22022075746a280204210b0b200b200a490d010b209c012084016a21020b209c012002206b6a229e014d0d24209c0120024d0d25208c0120022075746a229001280204229f012090012802006a2202208c01209e012075746a22a00128020022a101490d22200220474b0d23204620a1012078746a229b0120a001280204229d01207874220a6a210b2002207874210902400240024002400240200220a1016b220c209d016b2202209d014f0d00206c200b2002207874220a10fe012206200a6a210d209d01206b480d012002206b480d01206e20096a2109200b210a0340207910122202450d202002207a6a20702900a4b14022033700002002207b6a207029009db1402204370000200220676a2070290095b140223e3700002002207029008db140223f37000020022079207c10142202450d212002200d206d6a220b29000037001f2002207d6a200b207e6a2900003700002002207f6a200b207b6a29000037000020022080016a200b20676a290000370000200141286a2002207c103c208201290300219701200141286a207e6a228e012903002100200141286a207b6a2207290300219101200141286a20676a224029030021920120012903282193012002101f207910122202450d222002207a6a20033700002002207b6a2004370000200220676a203e3700002002203f37000020022079207c10142202450d232002200a206d6a220c29000037001f2002207d6a200c207e6a2900003700002002207f6a200c207b6a29000037000020022080016a200c20676a290000370000200141286a2002207c103c20820129030021042007290300213e208e0129030021032040290300213f20012903282194012002101f2009200c200b20002092017c229201204820930120485222021b2003203f7c223f204820940120830151228e011b542097012091017c209201200054ad7c204820021b22002004203e7c203f200354ad7c2048208e011b22035420002003511b228e011b22022900003700002009207e6a2002207e6a2900003700002009207b6a2002207b6a290000370000200920676a200220676a290000370000200d200b208e011b210d209b01200c200a208e011b220a4f0d042009206d6a2109200621022006200d490d000c050b0b206c209b01200a10fe012202200a6a210d209d01206b480d01200c209d014c0d01204620096a210720022102209b01210a0340207910122209450d232009207a6a20702900a4b14022033700002009207b6a207029009db1402204370000200920676a2070290095b140223e3700002009207029008db140223f37000020092079207c10142209450d242009200b29000037001f2009207d6a200b207e6a2900003700002009207f6a200b207b6a29000037000020092080016a200b20676a290000370000200141286a2009207c103c208201290300219701200141286a207e6a220c2903002100200141286a207b6a228e01290300219101200141286a20676a220629030021920120012903282193012009101f207910122209450d252009207a6a20033700002009207b6a2004370000200920676a203e3700002009203f37000020092079207c10142209450d262009200229000037001f2009207d6a2002207e6a2900003700002009207f6a2002207b6a29000037000020092080016a200220676a290000370000200141286a2009207c103c2082012903002104208e01290300213e200c29030021032006290300213f20012903282194012009101f200a200b200220002092017c229201204820930120485222091b2003203f7c223f204820940120830151220c1b542097012091017c209201200054ad7c204820091b22002004203e7c203f200354ad7c2048200c1b22035420002003511b220c1b2209290000370000200a207e6a2009207e6a290000370000200a207b6a2009207b6a290000370000200a20676a200920676a290000370000200220022081016a200c1b2102200a2081016a210a200b2081016a200b200c1b220b20074f0d04200d20024b0d000c040b0b200b210a0c010b209b01210a0b206c21020b200a2002200d20026b206d7110fe011a20900120716a209f01209d016a36020020900120a10136020020a00120a00120676a209e01207273209c016a20757410ff011a209a01218e01209a01206b4b0d4e0c84010b209c01218e01208f010d330c84010b20b40120aa016a210a20b4012f0106220c20a4017421024100210b024002400240024003402002450d01200141286a200a20ab011080022209450d02200220b1016a2102200b20b2016a210b200a20ab016a210a200920ac014a0d000b200b20ac016a210c0b20b501450d0120b50120ac016a21b50120b401200c20ad01746a20ae016a28020021b4014104213d0c5d0b20b401200b20af01746a20b001470d010b20b30120a501470d340c87010b200141e0026a41186a2202200141286a41186a290300370300200141e0026a41106a220a200141286a41106a290300370300200141e0026a41086a220b200141286a41086a290300370300200120012903283703e0024120101222b601450d2e20b60120012903e00237000020b60141186a200229030037000020b60141106a200a29030037000020b60141086a200b29030037000020b30120a501460d01410121b701411821b801411021b901410821ba01412021bb01410521bc01417f21bd01410221be0141a80821bf01410621c00141987d21c101420521c201422021c301410021c401416021c501410121c601410121c701410421360c400b200141286a20b8016a22ca0120b30120b8016a290000370300200141286a20b9016a22cb0120b30120b9016a290000370300200141286a20ba016a22cc0120b30120ba016a290000370300200120b30129000037032820b30120bb016a21b30120c80121cd0120c90121ce010c6b0b410121c601410121c7010c790b20f50120dd016a210a20f5012f0106220c20dc017421024100210b024002400240024003402002450d0120f301200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20f701450d0120f70120d6016a21f70120f501200c20da01746a20de016a28020021f5014106213d0c5b0b20f50120e5016a200b20e401746a2202450d00200220dd016a29030021f801200229030021f9012002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020f8017c2002290300220020f9017c22f901200054ad7c21f801200220e6016a2102200a20e7016a220a0d000c020b0b420021f901420021f8010b20b60120f20120dc01746a21fb0120f40121fc0120f60121fd010c4a0b20fc0120dd016a210a20fc012f0106220c20dc017421024100210b024002400240024003402002450d0120fb01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20fd01450d0120fd0120d6016a21fd0120fc01200c20da01746a20de016a28020021fc014107213d0c5c0b20fc0120e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b20f90120035420f80120005420f8012000511b450d4a4108213d0c5a0b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21fe0120f40121ff0120f6012180020c680b20f20122f001450d0120f00120d6016a21f20120b60120f00120dc01746a21860220f40121870220f6012188020c680b410021f0010c690b410021f00120f10121fa010c6a0b024002400240024020ed01208e02228f0220d6016a228e0220d901746a2202280200450d0020ed01208f0220d901746a220c20e9016a28020022092002280204220a4d0d00410221ef01208f0241024d0d0b20ed01208f0220db016a220220d901746a280204220b200a20096a4d0d01410321ef01208f0241034d0d0b200c20ea016a280200200b20096a4d0d010c0c0b208f0220d901490d012002280204210a20ed01208f0220db016a220220d901746a280204210b0b200b200a490d010b208f0220e8016a21020b208f02200220d0016a2290024d0d20208f0220024d0d2120ed01200220d901746a2291022802042292022091022802006a220220ed0120900220d901746a229302280200229402490d22200220c6014b0d2320910220d5016a21950220b60120940220dc01746a22960220930228020422970220dc0174220a6a21980220b601200220dc01746a21990220022094026b220b2097026b22022097024f0d0120d101209802200220dc0174220a10fe01200a6a219a0220970220d001480d03200220d001480d0320012802e002219b02209802219c02410221020c710b20a00220dd016a210a20a0022f0106220c20dc017421024100210b02400240024003402002450d01209e02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20a202450d0120a20220d6016a21a20220a002200c20da01746a20de016a28020021a002410b213d0c5b0b20a00220e5016a200b20e401746a2202450d00200220dd016a29030021a302200229030021a4022002280218220a450d2d20022802102102200a20e6016c210a0340200220dd016a29030020a3027c2002290300220020a4027c22a402200054ad7c21a302200220e6016a2102200a20e7016a220a0d000c300b0b420021a402420021a3020c2d0b20d101209602200a10fe012202200a6a219a0220970220d001480d02200b2097024c0d0220012802e00221a602200221a502209602219c02410321020c6f0b20a80220dd016a210a20a8022f0106220c20dc017421024100210b02400240024003402002450d01209802200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b20aa02450d0120aa0220d6016a21aa0220a802200c20da01746a20de016a28020021a802410c213d0c5b0b20a80220e5016a200b20e401746a2202450d00200220dd016a29030021ab02200229030021ac022002280218220a450d2e20022802102102200a20e6016c210a0340200220dd016a29030020ab027c2002290300220020ac027c22ac02200054ad7c21ab02200220e6016a2102200a20e7016a220a0d000c310b0b420021ac02420021ab020c2e0b209802219c020c450b209602219c02410d213d0c590b20d10121a502410e213d0c590b209c0220a502209a0220a5026b20d2017110fe011a2095022092022097026a36020020910220940236020020930220930220dd016a20900220d60173208f026a20d9017410ff011a208e0221ef01208e0220d0014b0d3f0b20f0010d230c010b208f0221ef0120f0010d230b024020ee01450d0020ed01101f0b20cf01450d6920d101101f0c690b20d30228020022d4022f0106220c20ad027421024100210b20d40220b0026a220d210a0240024003402002450d0120d002200a20af021080022209450d02200220cc026a2102200b20b4026a210b200a20af026a210a200920b1024a0d000b200b20b1026a210c0b20d202450d0420d20220b1026a21d20220d402200c20b202746a20b3026a21d302410f213d0c560b20d10220d10228020820b1026a3602080240024020d202450d0020d40220b6026a200b20b502746a210920d402200b20ad02746a20b0026a210c20d402200b20b202746a20c1026a2802002102024020d20220b402460d0020b40220d2026b210a034020022802a8082102200a20b4026a220a0d000b0b200220c20220022f01061b22d402290008210020d40220ba026a290000210320d40220bb026a290000210420d40220af026a290000213e20d40220b0026a20d40220bc026a20d4022f0106220220ad027420cc026a10ff011a20d40220c8026a290300213f20d4022903880321970120d40220c5026a29030021910120d40220c4026a29030021920120d40220c3026a29030021930120d4022903e80221940120d40220c9026a29030021950120d40220c7026a29030021960120d40220b6026a20d40220ca026a200220b5027420cd026a10ff011a20d402200220b1026a3b0106200c20bb026a203e370000200c2004370010200c2003370008200c2000370000200920bb026a209601370300200920b0026a2095013703002009209401370300200920be026a209301370200200920bd026a209201370200200920bc026a2091013702002009209701370220200920ba026a220229030021002002203f3703002000a721d502200020ce0288a721d60220d4022f010620b8024d0d010c030b200d200b20ad02746a200d200b20b4026a220a20ad02746a200b20b10273220920d4022f01066a20ad027410ff011a20d40220b6026a220c200b20b502746a220220b7026a28020021d602200228021021d5022002200c200a20b502746a200920d4022f01066a20b5027410ff011a20d40220d4022f010620b1026a3b010620d4022f010620b8024b0d020b410021d7024110213d0c560b20d4022802002209450d000240024020d4022f01042202450d00200220b1026a210b410121070c010b4100210b4100210720092f0106450d190b024002400240024002400240024002400240200920b3026a229001200b20b4026a220c20b2027422a1016a22a001280200220a2f0106220d209001200b20b2027422d8026a220228020022062f010622406a20b9024f0d0020d70220b4026a21d70220a001280200229b012f010621072002280200220d2f01062140200141286a20b0026a2206200920b0026a220a200b20ad02746a220220b0026a290000370300200141286a20ba026a229c01200220ba026a290000370300200141286a20bb026a229d01200220bb026a290000370300200120022900003703282002200a200c20ad02746a200b20b10273229e0120092f01066a20ad027410ff011a200d20b0026a220a204020ad02746a220220bb026a209d01290300370000200220ba026a209c01290300370000200220b0026a200629030037000020022001290328370000200a204020b4026a220220ad02746a209b0120b0026a200720ad027410fe011a2006200920b6026a229f01200b20b502746a220a20b0026a290300370300209c01200a20ba026a290300370300209d01200a20bb026a290300370300200141286a20af026a22d902200a20af026a290300370300200141286a20bc026a22da02200a20bc026a290300370300200141286a20bd026a22db02200a20bd026a290300370300200141286a20be026a22dc02200a20be026a2903003703002001200a290300370328200a209f01200c20b502746a209e0120092f01066a20b5027410ff011a200d20b6026a229e01204020b502746a220a20be026a20dc02290300370300200a20bd026a20db02290300370300200a20bc026a20da02290300370300200a20af026a20d902290300370300200a20bb026a209d01290300370300200a20ba026a209c01290300370300200a20b0026a2006290300370300200a2001290328370300209e01200220b502746a209b0120b6026a200720b5027410fe011a20a001209001200b20b2026a220a20b202746a20bf0220a1016b10ff01210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920d8026a20c0026a210b0340200b280200220c200a3b0104200c2009360200200b20b8026a210b2006200a20b4026a220a470d000b0b200920092f010620b1026a3b0106200d2007200d2f01066a20b4026a3b0106024020d70220b202490d00200d200220b202746a20b3026a209b0120b3026a200720b2027420b8026a10fe011a2002204020076a20b2026a4f0d00200720b4026a210b200d204020b202746a20c1026a210a0340200a280200220c20023b0104200c200d360200200a20b8026a210a200220b4026a2102200b20b1026a220b0d000b0b209b01101f20092f01062202450d01200921d402200220ad02490d470c090b2007450d012006204020b1026a220a20b502746a220220c3026a2903002100200220c4026a2903002103200220c5026a2903002104200220c6026a290300213e200220c7026a290300213f200220c8026a290300219701200220c9026a290300219101200220b6026a2903002192012006200a20ad02746a220220af026a290000219301200220bb026a290000219401200220ba026a290000219501200220b0026a29000021960120d702450d022006204020b202746a20b3026a280200220a20c2023602000c030b20d10220d10228020022022802a808220a36020020d10220d10228020420b1026a360204200a20c2023602002002101f20d5020d080c090b200a20af026a2900002100200a20bb026a2900002103200a20ba026a2900002104200a290008213e200a20b0026a200a20bc026a200d20ad027420cc026a10ff011a200a20c3026a290300213f200a20c4026a290300219701200a20c5026a290300219101200a20c7026a290300219201200a20c8026a290300219301200a20c9026a290300219401200a29038803219501200a2903e802219601200a20b6026a200a20ca026a200a2f010620b5027420cd026a10ff011a20d702450d02200a2802a8082107200a20b3026a220c200a20c1026a200d20b2027410ff011a200720c202360200200d450d03410021360340200c280200220620363b01042006200a360200200c20b8026a210c200d203620b4026a2236470d000c040b0b4100210a0b200620062f010620b1026a3b01062009200b20ad02746a220220af026a220c290000219801200c209301370000200220bb026a220c290000219301200c209401370000200220ba026a220c290000219401200c209501370000200220b0026a220229000021950120022096013700002009200b20b502746a220220c7026a220b290300219601200b203f370300200220c8026a220b290300213f200b209701370300200220c9026a220b290300219701200b209101370300200220b6026a220b290300219101200b209201370300200220c3026a220b290200219201200b2000370200200220c4026a220b2902002100200b2003370200200220c5026a220b2902002103200b2004370200200220c6026a220229020021042002203e37020020a001280200210b20d702450d02200a450d1e200b20bc026a200b20b0026a200b2f0106220220ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200220b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b20c6026a2004370300200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b20c1026a200b20b3026a2202200b2f010620b2027420b8026a10ff011a200b200a3602a808200b200b2f010620b4026a220a3b0106200a20cb027120b4026a210c4100210a034020022802002209200a3b01042009200b360200200220b8026a2102200c200a20b4026a220a470d000c050b0b410021070b200a20b5026a220a200a2f010020b1026a3b01002009200b20ad02746a220a20af026a220c290000219801200c2000370000200a20bb026a220c2900002100200c2003370000200a20ba026a220c2900002103200c2004370000200a20b0026a220a2900002104200a203e3700002009200b20b502746a220a20c7026a220b290300213e200b209201370300200a20c8026a220b290300219201200b209301370300200a20c9026a220b290300219301200b209401370300200a20b6026a220b290300219401200b209601370300200a20c3026a220b290200219601200b203f370200200a20c4026a220b290200213f200b209701370200200a20c5026a220b290200219701200b209101370200200a20c6026a220a290200219101200a2095013702002002280200210220d702450d012007450d1d200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c7026a203e370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a2094013703002002200b20b4026a220a20b202746a20b3026a220b2007360200200220022f010620b4026a3b0106200b280200220b200a3b0104200b200236020020d5020d030c040b200b20bc026a200b20b0026a200b2f010620ad027410ff011a200b20af026a209801370000200b20bb026a209301370000200b20ba026a209401370000200b209501370008200b20ca026a200b20b6026a200b2f010620b5027410ff011a200b20c3026a209201370300200b20c4026a2000370300200b20c5026a2003370300200b200437038803200b20c7026a209601370300200b20c8026a203f370300200b20c9026a209701370300200b2091013703e802200b200b2f010620b4026a3b010620d5020d020c030b200220022f0106220b20ad02746a220a20af026a209801370000200a20bb026a2000370000200a20ba026a2003370000200a20b0026a20043700002002200b20b502746a220a20c3026a209601370300200a20c4026a203f370300200a20c5026a209701370300200a20c6026a209101370300200a20c8026a209201370300200a20c9026a209301370300200a20b6026a209401370300200a20c7026a203e370300200220022f010620b4026a3b01060b20d502450d010b20d602450d0020d502101f0b20cf0220ae02470d240c650b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b20a1012002101a000b200220471049000b41ecbdc200209e01209c011048000b41ecbdc2002002209c011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b204041081015000b41ecbdc200209002208f021048000b41ecbdc2002002208f021048000b2094022002101a000b200220c6011049000b41dcc0c2001024000b412041011015000b41d4c7c2001024000b41d4c7c2001024000b410121360c0b0b410221360c0b0b410321360c0b0b410521360c0c0b410521360c0c0b410621360c0c0b410621360c0c0b410621360c0c0b410721360c0c0b410721360c0c0b410721360c0c0b410821360c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b4101213d0c0b0b4101213d0c0b0b4103213d0c0c0b4107213d0c0e0b4109213d0c100b410a213d0c100b410b213d0c110b410c213d0c120b410d213d0c130b4110213d0c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20cd0120ba016a210a20cd012f0106220c20bc017421024100210b024002400240024003402002450d01200141286a200a20bb011080022209450d02200220c5016a2102200b20b7016a210b200a20bb016a210a200920bd014a0d000b200b20bd016a210c0b20ce01450d0120ce0120bd016a21ce0120cd01200c20be01746a20bf016a28020021cd01410021020c110b20cd01200b20c001746a20c101470d010b20b30120a501470d070c1b0b200141e0026a20b8016a220220ca01290300370300200141e0026a20b9016a220a20cb01290300370300200141e0026a20ba016a220b20cc01290300370300200120012903283703e00220ca01200229030037030020cb01200a29030037030020cc01200b290300370300200120012903e002370328024020c70120c601470d0020c60120b7016a220220c601490d3120c60120b70174220a20022002200a491b22c701ad20c20186220020c30188a70d312000a7220220c401480d31024020c601450d0020b60120c60120bc01742002101422b6010d010c060b2002101222b601450d050b20b60120c60120bc01746a22022001290328370000200220b8016a20ca01290300370000200220b9016a20cb01290300370000200220ba016a20cc0129030037000020c60120b7016a21c60120b30120a501470d050c1a0b20ff0120dd016a210a20ff012f0106220c20dc017421024100210b024002400240024003402002450d0120fe01200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208002450d0120800220d6016a21800220ff01200c20da01746a20de016a28020021ff01410121020c100b20ff0120e5016a200b20e401746a2202450d00200220dd016a29030021810220022903002182022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002081027c200229030022002082027c228202200054ad7c218102200220e6016a2102200a20e7016a220a0d000c020b0b420021820242002181020b20b60120f20120dc01746a21830220f40121840220f6012185020c0b0b20840220dd016a210a2084022f0106220c20dc017421024100210b024002400240024003402002450d01208302200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208502450d0120850220d6016a218502208402200c20da01746a20de016a280200218402410221020c0f0b20840220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b2082022003542081022000542081022000511b0d050c0d0b20870220dd016a210a2087022f0106220c20dc017421024100210b024002400240024003402002450d01208602200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208802450d0120880220d6016a218802208702200c20da01746a20de016a280200218702410321020c0e0b20870220e5016a200b20e401746a2202450d00200220dd016a2903002189022002290300218a022002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a2903002089027c20022903002200208a027c228a02200054ad7c218902200220e6016a2102200a20e7016a220a0d000c020b0b4200218a0242002189020b20b60120f20120dc01746a218b0220f401218c0220f601218d020c0a0b208c0220dd016a210a208c022f0106220c20dc017421024100210b024002400240024003402002450d01208b02200a20441080022209450d02200220d2016a2102200b20d0016a210b200a20446a210a200920d6014a0d000b200b20d6016a210c0b208d02450d01208d0220d6016a218d02208c02200c20da01746a20de016a280200218c02410421020c0d0b208c0220e5016a200b20e401746a2202450d00200220dd016a2903002100200229030021032002280218220a450d0120022802102102200a20e6016c210a0340200220dd016a29030020007c2002290300220020037c2203200054ad7c2100200220e6016a2102200a20e7016a220a0d000c020b0b42002103420021000b208a0220035a20890220005a2089022000511b0d0420f10120f0016b21fa0120f0010d0c0c0d0b200241011015000b41042136410121020c280b4105213d0c020b4108213d0c020b4109213d0c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20f10120f001490d0220f10120c6014b0d05024020f10120f0016b22fa0120d00176220a450d0020b60120f00120dc01746a21020340200141286a20df016a220b200220df016a2209290000370300200141286a20e1016a220c200220e1016a220d290000370300200141286a20dd016a2206200220dd016a22072900003703002001200229000037032820f30120dd016a2240290000210020f30120e1016a229b01290000210320f3012900002104200920f30120df016a229c01290000370000200d2003370000200720003700002002200437000020f301200129032837000020402006290300370000209b01200c290300370000209c01200b29030037000020f30120d2016a21f301200220446a2102200a20d6016a220a0d000b0b20f001450d010b20fa0120eb014b0d0020f10120c6014b0d0220f10120f0016b21fa0120f00120d6016a210220d30120f00120dc01746a210a034020f1012002490d04200a20fa0120d0016a22fa01200141e0026a10a101200220d6016a210b02402002450d00200a20d2016a210a200b210220fa0120ec01490d010b0b200b20d0016a21f00120ee0120ef01460d060c070b20ee0120ef01470d04410021020c070b20f00120f101101a000b20f10120f001417f6a22024f0d010b200220f101101a000b20f10120c6011049000b410121020c020b410021020c010b410121020c000b0b024020a201450d0020a301101f0b20c60120694d0d01200120014190026a3602b8022001200141b8026a3602e002024020c60141144b0d0020c60141014d0d0120c601417e6a210220b60120c6014105746a41406a210a4102210b034020c6012002490d04200a200b200141e0026a10a101200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20c60141017622cf01ad2200421b88a70d142000420586a72244417f4c0d14410121d001410121d10102402044450d002044101222d101450d040b416021d20120b60141606a21d301410021d401410421d501417f21d601420321d701422021d801410321d901410221da01417d21db01410521dc01410821dd0141a80821de01411821df01417821e001411021e101417021e201416821e30141202144410621e40141e80221e501413021e601415021e701417e21e801417421e901416421ea01410921eb01410a21ec01410421ed01410021ee01410021ef0120c60121f001410521360c040b20c60120696b2202450d00410521ad0220b60120024105746a21ae02412021af02410821b002417f21b102410221b20241a80821b302410121b402410621b50241e80221b602411421b702410421b802410b21b902411021ba02411821bb02412821bc02413021bd02413821be02412c21bf0241b00821c00241ac0821c102410021c20241a00321c30241980321c40241900321c50241880321c60241800321c70241f80221c80241f00221c90241a80321ca0241ffff0321cb02416021cc02414021cd02422021ce0220b60121cf02410821360c040b20c701450d0920b601101f0c090b200220c601101a000b204441011015000b410121020c0e0b410121020c0d0b208f010d010b0240208d01450d00208c01101f0b206a450d0e206c101f0c0e0b41022136410121020c0a0b02402042450d002041101f0b20012802b8012102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d04200220012802e002470d010c030b2002410a460d020b200141b0016a41086a2802002102200141e0026a41086a220a4200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a200a290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d05200220012802e0024b0d010c030b2002410a4d0d020b200141e0026a41086a22024200370300200142003703e00241f1bfc000411b200141e0026a1000200141286a41086a2002290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200141003602e002200141286a4110200141e0026a41044100100141016a41044d0d0620012802e00221690c010b410a21690b200141b0016a41086a28020021022001200141b0016a36029002200220694d0d01200141e0026a41086a22024200370300200142003703e00241e6b3c000411a200141e0026a1000200141286a41086a2002290300370300200120012903e002370328410021a20102400240200141286a411041e4a4c100410041001001417f460d00200142103702bc022001200141286a3602b802200141e0026a200141b8026a104020012802e00222a301450d0820012802e40221a201410521a401200141e8026a28020041057422020d010c020b410121a301410521a40141004105742202450d010b20a30120026a21a501200128029002220228020021a601200228020421a701411821a801411021a901410821aa01412021ab01417f21ac01410221ad0141a80821ae01410621af0141987d21b001416021b101410121b20120a30121b301410321360c070b20a201450d0020a301101f0b200141186a200141b0016a4101109b01200141b8016a280200210b20012802b00121440240024020012802b40122d001450d0020d001210a20442102034020022802a8082102200a417f6a220a0d000b0340204420442f01064102746a41a8086a280200214420d001417f6a22d0010d000c020b0b204421020b200141ac026a20442f0106360200410021d00120014190026a41186a4100360200200141a4026a20443602002001200b3602b002200141003602a002200142003703980220012002360294022001410036029002200141286a20014190026a10a2010240024002400240024002400240024020012802582202450d00200141e0026a41086a2244200141e4006a290200370300200141e0026a41106a22d001200141ec006a290200370300200141e0026a41186a220a200141f4006a290200370300200141e0026a41206a220b200141fc006a290200370300200141e0026a41286a22d20120014184016a2802003602002001200129025c3703e002200141286a41286a22d601290300210e200129034821830120d60120d201280200360200200141286a41206a200b290300370300200141286a41186a200a290300370300200141286a41106a20d001290300370300200141286a41086a2044290300370300200120012903e002370328417f20014190026a41206a280200224441016a22d00120d0012044491b220cad2248421a88a70d102048420686a72244417f4c0d102044450d0120441012223d450d0b203d21670c020b20014190026a109c014108213d4100210c410821670c020b4108213d410821670b2067208301370300206720023602102067200e370308206741146a20012903283702002067411c6a200141286a41086a290300370200206741246a200141286a41106a227b2903003702002067412c6a200141286a41186a2209290300370200206741346a200141286a41206a220b2903003702002067413c6a200141286a41286a22d201280200360200200141b8026a41206a22e70120014190026a41206a280200360200200141b8026a41186a20014190026a41186a290300370300200141b8026a41106a20014190026a41106a290300370300200141b8026a41086a20014190026a41086a29030037030020012001290390023703b802200141286a200141b8026a10a201024002402001280258227c450d00200141286a41346a2102200141d8006a21e601410221d60141c000210a410121d0010340200141e0026a41086a2244200241086a290200370300200141e0026a41106a2279200241106a290200370300200141e0026a41186a227e200241186a290200370300200141e0026a41206a22dd01200241206a290200370300200141e0026a41286a22ee01200241286a280200360200200120022902003703e00220d2012903002148200b290300210e20d20120ee01280200360200200b20dd012903003703002009207e290300370300207b2079290300370300200141286a41086a22792044290300370300200120012903e002370328024020d001200c470d0020d001417f20e701280200224441016a226720672044491b6a224420d001490d1220d6012044204420d601491b220cad420686228301422088a70d12208301a722444100480d120240024020d001450d00203d200a20441014223d0d010c070b20441012223d450d060b203d21670b2067200a6a224420483703082044200e370300204441106a207c3602002044413c6a20d201280200360200204441346a200b2903003702002044412c6a2009290300370200204441246a207b2903003702002044411c6a2079290300370200204441146a200129032837020020d60141026a21d601200a41c0006a210a20d00141016a21d001200141286a200141b8026a10a20120e601280200227c0d000c020b0b410121d0010b200141b8026a109c010b200141e0026a41086a22444200370300200142003703e00241b4bfc000411f200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a411041e4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e0022183010c010b42e8072183010b2001410036023020014201370328206720d001200141286a106c200128022c21022001280230210a20012802282144200141e0026a41086a220b4200370300200142003703e002419596c1004115200141e0026a1000200141286a41086a200b290300370300200120012903e002370328200141286a41102044200a100402402002450d002044101f0b024020d001450d0020d0014106742102206741106a214403400240204441046a280200450d002044280200101f0b204441c0006a2144200241406a22020d000b0b0240200c450d00203d101f0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22022044290300370300200120012903e0023703284200210e0240200141286a411041e4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0320012903e002210e0b2001200e2083017c220e3703b80220444200370300200142003703e00241aa96c1004112200141e0026a100020022044290300370300200120012903e002370328200141286a4110200141b8026a41081004200141286a41106a200e37030020024201370300200141093a0028200141286a102720444200370300200142003703e00241dd81c000410d200141e0026a100020022044290300370300200120012903e0023703280240200141286a411041e4a4c100410041001001417f460d00200142003703e002200141286a4110200141e0026a41084100100141016a41084d0d0420012903e00221480b200141386a2048370300200141083a0028200141286a41086a41073a0000200141286a10272005450d112008101f0c110b204441081015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b204441081015000b41de86c00041331023000b410121020c010b02402035200f6a22352010470d00410021020c010b41002136410121020c000b0b100f000b1010000b204720686b210b204621670b2067200b109d01200141e0026a41086a22444200370300200142003703e00241f9bec000411c200141e0026a1000200141286a41086a2044290300370300200120012903e00237032802400240200141286a41102065206620661001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d001210e0c010b42e400210e0b42002148200141e0026a41086a22444200370300200142003703e00241dd81c000410d200141e0026a1000200141286a41086a22052044290300370300200120012903e0023703280240200141286a411041e4a4c100410041001001417f460d00200142003703d001200141286a4110200141d0016a41084100100141016a41084d0d0420012903d00121480b20012048200e7c37033020014201370328200141153602d401200141c5b2c0003602d001200141286a200141d0016a108e01200141083a0028200541033a0000200141286a10272045450d010b2046101f20014190036a24000f0b20014190036a24000f0b41de86c00041331023000b41de86c00041331023000bc92007107f017e027f027e017f097e027f230041f0016b22022400200241e0016a41086a22034200370300200242003703e00141c5b2c0004115200241e0016a1000200241f0006a41086a22042003290300370300200220022903e0013703700240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241f0006a411041e4a4c100410041001001417f460d00200242103702542002200241f0006a3602502002200241d0006a108f0120022903004203510d0141feb2c0002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703e00141dab2c0004124200241e0016a100020042003290300370300200220022903e0013703700240200241f0006a411041e4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0c200241d8006a280200210302402002280254450d002004101f2003450d010c130b20030d120b200241e0016a41086a22034200370300200242003703e00141e6b3c000411a200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041e4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0e200241d8006a280200210302402002280254450d002004101f2003450d010c120b20030d110b200241e0016a41086a22034200370300200242003703e0014180b4c000411b200241e0016a1000200241f0006a41086a2003290300370300200220022903e0013703700240200241f0006a411041e4a4c100410041001001417f460d00200242103702342002200241f0006a360230200241d0006a200241306a104020022802502204450d0f200241d8006a280200210302402002280254450d002004101f2003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b02400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210122203450d12200341206a41002f00bbb44022173b0000200341186a41002900b3b4402218370000200341106a41002900abb4402219370000200341086a41002900a3b440221a3700002003410029009bb440221b3700002003412241c40010142203450d13200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241e0016a41086a22014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21062003101f4122101221030240024002402006450d002003450d18200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d19200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0006a200341c200103c200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f200229037021202003101f412210122203450d1a200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1b200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122204450d1c2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010142204450d1d2004201e4200202042015122071b370010200441186a201f420020071b37000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102004412010042004101f2003101f2012422088a741306c22030d010c020b2003450d1d200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010142203450d1e200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000411010122206450d1f200620163700002006201537000820064110412010142206450d2020064200370010200641186a420037000020014200370300200242003703e001200341c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102006412010042006101f2003101f200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d0f200e4101742204200320032004491b220fad4205862215422088a70d0f2015a722034100480d0f0240200e450d002010200e4105742003101422100d010c240b200310122210450d230b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210122204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a4110100a21222004101f41221012210402402022450d002004450d09200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0a200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000200241f0006a200441c200103c200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f200229037021202004101f412210122204450d0b200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d0c200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122207450d0d2007201e4200202042015122051b3700002007201f420020051b37000820074110412010142207450d0e2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c37000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102007412010042007101f2004101f200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010142204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a2006290300370000411010122222450d11202242003700082022420037000020224110412010142222450d1220222016370010202241186a201537000020014200370300200242003703e001200441c200200241e0016a100020112001290300370300200220022903e001370370200241f0006a41102022412010042022101f2004101f200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d0f200e4101742207200420042007491b220fad4205862215422088a70d0f2015a722044100480d0f0240200e450d002010200e4105742004101422100d010c150b200410122210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d002013101f0b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d002004101f0b2003211420012003470d000b0b0240200b450d002008101f0b2002200e3602782002200f3602742002201036027020024124360254200241dab2c000360250200241f0006a200241d0006a10620240200f450d002010101f0b200241083a007041002105200241f0006a41086a41003a0000200241f0006a10271090010c240b412241011015000b41c40041011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b1010000b412241011015000b41c40041011015000b411041011015000b412041011015000b200441011015000b412241011015000b41c40041011015000b41de86c00041331023000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b41de86c00041331023000b200341011015000b41de86c00041331023000b41de86c00041331023000b41cdb3c00021054119210620012802002107200128020822030d020c030b41b5b3c00021054118210620012802002107200128020822030d010c020b419ab3c0002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d002003280200101f0b200341c0006a2103200441406a22040d000b0b200141046a280200450d002007101f0b2000200636020420002005360200200241f0016a24000b130020004100360204200041e4a4c1003602000b130020004107360204200041b19bc0003602000b13002000410236020420004180dcc1003602000b130020004102360204200041c8ddc1003602000b130020004108360204200041a69dc0003602000b130020004107360204200041a8dfc1003602000b130020004101360204200041bce5c1003602000b130020004109360204200041d0adc0003602000b130020004103360204200041c0e6c1003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242053700000f0b410841011015000bca0203027f017e017f230041206b22022400024002400240024002400240024002400240200028020022034101460d0020034102470d01410110122203450d03200341023a00002000290308210420034101410910142200450d04200020043700010c020b410110122203450d04200341013a00002000290308210420034101410910142200450d05200020043700010c010b410110122203450d05200341003a00002000290308210420034101410910142200450d06200020043700010b2001280204210320012802002101200241106a41086a220542003703002002420037031020012003200241106a1000200241086a200529030037030020022002290310370300200241102000410910042000101f200241206a24000f0b410141011015000b410941011015000b410141011015000b410941011015000b410141011015000b410941011015000b970302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081001210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d00082203450d0120034101460d0220034102470d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420221050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420021050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100122012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000bfe0402047f027e23004190016b22002400200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a200129030037030020002000290308370378024002400240200041f8006a411041e4a4c100410041001001417f460d0020004100360208200041f8006a4110200041086a41044100100141016a41044d0d02200028020841016a21020c010b410121020b2000200236028c01200041086a41086a220142003703002000420037030841bdb4c0004115200041086a1000200041f8006a41086a2203200129030037030020002000290308370378200041f8006a41102000418c016a41041004200142003703002000420037030841d2b4c0004120200041086a100020032001290300370300200020002903083703780240024002400240200041f8006a411041e4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821040c010b42e40021040b200041086a41086a220142003703002000420037030841dd81c000410d200041086a1000200041f8006a41086a200129030037030020002000290308370378420021050240200041f8006a411041e4a4c100410041001001417f460d0020004200370308200041f8006a4110200041086a41084100100141016a41084d0d02200029030821050b2000200520047c370310200042003703082000411536027c200041c5b2c000360278200041086a200041f8006a108e01200041146a2002360200200041083a0008200141013a0000200041086a102720004190016a24000f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b13002000411136020420004198edc1003602000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241143600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011015000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011015000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010122206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010142206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110142206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011015000b41c00041011015000b41800141011015000b6101017f02400240411010122202450d00200242003700082002420037000020024110412010142202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011015000b412041011015000b3101017f0240410110122202450d00200042818080801037020420002002360200200241013a00000f0b410141011015000b13002000410f360204200041d8b7c0003602000b821103077f047e0a7f230041c0026b2202240002400240411510122203450d002003410d6a4100290095bb40370000200341086a4100290090bb4037000020034100290088bb4037000020034115413510142203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1000200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a411041e4a4c100410041001001417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22044200370300200242003703284100210502404100200241b0016a4110200241286a41204100100122012001417f461b2201411f4d0d00200241186a2205200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200429030037030020022002290328370300200241a0026a41186a2005290300370300200241a0026a41106a2006290300370300200241a0026a41086a2007290300370300200220022903003703a002410121050b200241186a2204200241a0026a41186a290300370300200241106a2206200241a0026a41106a290300370300200241086a2207200241a0026a41086a290300370300200220022903a0023703002005450d02200241e0016a41186a2004290300370300200241e0016a41106a2006290300370300200241e0016a41086a2007290300370300200220022903003703e001200241286a41186a4200370300200241286a41106a4200370300200241286a41086a4200370300200242003703284100200241b0016a4110200241286a41202001412020014120491b2205100122012001417f461b2201411f4d0d02200241186a2204200241286a41186a290300370300200241106a2206200241286a41106a290300370300200241086a2207200241286a41086a22082903003703002002200229032837030020024180026a41186a200429030037030020024180026a41106a200629030037030020024180026a41086a2007290300370300200220022903003703800220024200370330200242003703284100200241b0016a4110200241286a41102001412020014120491b20056a2205100122012001417f461b2201410f4d0d02200829030021092002290328210a20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20056a2205100122012001417f461b2201410f4d0d02200241306a290300210b2002290328210c200241003a0028200241b0016a4110200241286a41012001411020014110491b20056a2201100141016a22054102490d024100210d024020022d00282204450d0020044101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a41202001200541014b6a10012201417f460d0320014120490d03200241a0026a41186a200241286a41186a290300370300200241a0026a41106a200241286a41106a290300370300200241a0026a41086a200241286a41086a290300370300200220022903283703a0024101210d0b200241286a41186a220e200241a0026a41186a220f290300370300200241286a41106a2210200241a0026a41106a2211290300370300200241286a41086a2212200241a0026a41086a2213290300370300200220022903a002370328200f200241e0016a41186a22012903003703002011200241e0016a41106a22052903003703002013200241e0016a41086a2204290300370300200241c0016a41086a221420024180026a41086a2206290300370300200241c0016a41106a221520024180026a41106a2207290300370300200241c0016a41186a221620024180026a41186a2208290300370300200220022903e0013703a00220022002290380023703c001200241cb006a200241036a280000360000200220022800003602482008200f2903003703002007201129030037030020062013290300370300200420142903003703002005201529030037030020012016290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200e2903003703002002411f6a2210200241286a411f6a290000370000200220022903a00237038002200220022903c0013703e00120022002290328370300200e200b370300200241286a41286a2006290300370300200241286a41306a2007290300370300200241286a41386a2008290300370300200241286a41c8006a2004290300370300200241286a41d0006a2005290300370300200241286a41d8006a20012903003703002002200c370338200220093703302002200a3703282002200229038002370348200220022903e001370368200041186a200b3703002000200c370310200020093703082000200a370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a20102900003700002000200229038002370320200041286a2006290300370300200041306a2007290300370300200041386a20082903003703002002200d3a0088012000200d3a0060200041d8006a2001290300370300200041d0006a2005290300370300200041c8006a2004290300370300200020022903e00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010fd011a0b2003101f200241c0026a24000f0b41de86c00041331023000b411541011015000b413541011015000bf80303027f027e027f230041206b220224000240024002400240412010122203450d0020032000290020370000200341186a200041386a290000370000200341106a200041306a290000370000200341086a200041286a2900003700002003412041c00010142203450d0120032000290040370020200341386a200041d8006a290000370000200341306a200041d0006a290000370000200341286a200041c8006a290000370000200041086a290300210420002903002105200341c00041800110142203450d0220032005370040200341c8006a200437000020032000290310370050200341d8006a200041186a2903003700000240024020002d00604101470d00200341e0006a41013a0000200341800141800210142203450d05200341f9006a200041f9006a290000370000200341f1006a200041f1006a290000370000200341e9006a200041e9006a2900003700002003200041e1006a29000037006141810121000c010b200341e0006a41003a000041e10021000b2001280204210620012802002101200241106a41086a220742003703002002420037031020012006200241106a1000200241086a200729030037030020022002290310370300200241102003200010042003101f200241206a24000f0b412041011015000b41c00041011015000b41800141011015000b41800241011015000b85260b1a7f027e087f067e017f027e017f037e1e7f027e0b7f230041e0006b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b41c200211c4201211d4200211e4100211f0c010b410021000c010b410121000b034002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341086a41086a20002903003703002003200329033037030802400240024002400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402234450d03200328024421350240200341c0006a41086a22362802002200450d0020004105742137203421040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411510122200450d032000410d6a4100290095bb40370000200041086a4100290090bb4037000020004100290088bb4037000020004115413510142200450d04200441206a2104200020032903083700152000412d6a2025290300370000200041256a20262903003700002000411d6a2038290300370000200341306a41086a222542003703002003420037033020004135200341306a10002036202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2035450d002034101f0b200341306a41086a22004200370300200342003703304180b4c000411b200341306a1000200341c0006a41086a200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a20002903003703002003200329033037030802400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402239450d052003280244213a4105213b200341c8006a28020041057422000d010c0c0b410121394100213a4105213b41004105742200450d0b0b203920006a213c2001280200213d2001280204213e4118213f411021404108214141202137417f21384102214241a80821434106214441987d21454160213441012136203921354101211f0c050b411541011015000b413541011015000b41de86c00041331023000b41de86c00041331023000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a203f6a2035203f6a290000370300200341086a20406a203520406a290000370300200341086a20416a203520416a29000037030020032035290000370308203520376a2135203d2146203e21470c030b200341086a204a6a225a2035204a6a290000370300200341086a204b6a225b2035204b6a290000370300200341086a204c6a225c2035204c6a290000370300200320352900003703082035204d6a2135203d215d203e215e0c030b410121000c0f0b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d012020200420101080022226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204620416a210420462f01062224203b7421004100212502400240024003402000450d01200341086a200420371080022226450d02200020346a2100202520366a2125200420376a2104202620384a0d000b202520386a21240b2047450d01204720386a2147204620242042746a20436a2802002146410121000c030b204620252044746a2045460d002035203c470d090c100b200341c0006a41186a2200200341086a41186a290300370300200341c0006a41106a2204200341086a41106a290300370300200341c0006a41086a2225200341086a41086a29030037030020032003290308370340412010122248450d0720482003290340370000204841186a2000290300370000204841106a2004290300370000204841086a20252903003700002035203c460d03410121494118214a4110214b4108214c4120214d4105214e417f214f4102215041a80821514205215242202153410021544106215541987d21564160215741012158410121594102211f0c0e0b205d204c6a2104205d2f01062224204e742100410021250240024003402000450d01200341086a2004204d1080022226450d02200020576a2100202520496a21252004204d6a21042026204f4a0d000b2025204f6a21240b205e450d02205e204f6a215e205d20242050746a20516a280200215d410221000c010b0b205d20252055746a2056460d002035203c470d070c020b200341c0006a204a6a2200205a290300370300200341c0006a204b6a2204205b290300370300200341c0006a204c6a2225205c29030037030020032003290308370340205a2000290300370300205b2004290300370300205c202529030037030020032003290340370308024020592058470d00205820496a22002058490d0320582049742204200020002004491b2259ad2052862227205388a70d032027a722002054480d0302402058450d0020482058204e742000101422480d010c050b200010122248450d040b20482058204e746a220020032903083700002000204a6a205a2903003700002000204b6a205b2903003700002000204c6a205c290300370000205820496a21582035203c470d070c010b41012158410121590b0240203a450d002039101f0b20482058109d012059450d0b2048101f0c0b0b1010000b200041011015000b412041011015000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c0e0b410121000c0d0b410121000c0c0b410121000c0b0b0240203a450d002039101f0b41014100109d010b200341306a41086a220042003703002003420037033041e6b3c000411a200341306a1000200341086a41086a2000290300370300200320032903303703080240024002400240024002400240024002400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d07200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308411f10122200450d04200041176a41002900a4b140370000200041106a410029009db140370000200041086a4100290095b1403700002000410029008db1403700002000411f413f10142200450d03200441206a21042000200329030837001f200041376a20252903003700002000412f6a2026290300370000200041276a2038290300370000200341306a41086a22254200370300200342003703302000413f200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a222542003703002003420037033041e6b3c000411a200341306a1000200341c0006a41086a202529030037030020032003290330370340200341c0006a4110100502402002450d00202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a20252903003703002003200329033037030841002126024002400240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a104020032802402238450d0c20032802442126200341c8006a28020041057422370d010c020b4101213841004105742237450d010b203821040340412210122200450d07200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341086a200041c200103c200341086a41186a290300211e200341086a41086a290300211d200341086a41206a2903002127200341086a41106a2903002128200329030821532000101f0240201e4200205342015122001b221e201d420020001b221d842027420020001b22272028420020001b22288484500d002004201e201d7c221d202720287c201d201e54ad7c10630b200441206a2104203741606a22370d000b0b2026450d002038101f0b202542003703002003420037033041dab2c0004124200341306a1000200341086a41086a2025290300370300200320032903303703080240200341086a411041e4a4c100410041001001417f460d00200342103702342003200341086a360230200341c0006a200341306a10402003280240224d450d08200328024421360240200341c0006a41086a22102802002200450d0020004105742137204d21040340200341086a41186a2225200441186a290000370300200341086a41106a2226200441106a290000370300200341086a41086a2238200441086a29000037030020032004290000370308412210122200450d05200041206a41002f00bbb4403b0000200041186a41002900b3b440370000200041106a41002900abb440370000200041086a41002900a3b4403700002000410029009bb4403700002000412241c40010142200450d06200441206a2104200020032903083700222000413a6a2025290300370000200041326a20262903003700002000412a6a2038290300370000200341306a41086a2225420037030020034200370330200041c200200341306a10002010202529030037030020032003290330370340200341c0006a411010052000101f203741606a22370d000b0b2036450d00204d101f0b200341306a41086a220042003703002003420037033041dab2c0004124200341306a1000200341c0006a41086a2204200029030037030020032003290330370340200341c0006a41101005200042003703002003420037033041c5b2c0004115200341306a10002004200029030037030020032003290330370340200341c0006a41101005200341e0006a24000f0b413f41011015000b411f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b200620106a21000240200629030022272006200b6a290300222884500d0020002027202810630b2006290310200620146a222529030084500d00201510122204450d01200420106a20162f00bbb44022263b0000200420146a20162900b3b4402229370000200420176a20162900abb440222a3700002004200b6a20162900a3b440222b3700002004201629009bb440222c37000020042015201810142204450d0220042000290000370022200420196a200020146a22242900003700002004201a6a200020176a22232900003700002004201b6a2000200b6a222d290000370000200341086a2004201c103c200341086a20106a290300212e200341086a20146a290300212f200341086a200b6a22302903002131200341086a20176a2903002132200329030821272004101f20252903002133200620176a2903002128201510122204450d03200420106a20263b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810142204450d0420042000290000370022200420196a20242900003700002004201a6a20232900003700002004201b6a202d290000370000201710122200450d0520002031201e2027201d5122251b37000020002032201e20251b37000820002017201010142200450d0620002028202f201e2027201e5222251b7c2227370010200020146a2033202e201e20251b7c2027202854ad7c370000200341306a200b6a2225201e3703002003201e3703302004201c200341306a10002030202529030037030020032003290330370308200341086a20172000201010042000101f2004101f0b200620056a22062007470d06410021000c070b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000b4100211f410121000c000b0bb30101047f230041e0006b220124002001200010a2010240200141306a22022802002203450d00200141346a2104034002402004280200450d002003101f0b2001200010a201200228020022030d000b0b02402000280204220341e893c100460d00200328020021022003101f2002450d00200228020021002002101f2000450d00024020002802002203450d0003402000101f2003210020032802002202210320020d000b0b2000101f0b200141e0006a24000bd5100a097f017e017f067e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041e6b3c000411a200241e0006a1000200241206a41086a20002903003703002002200229036037032041002101024002400240024002400240024002400240024002400240024002400240024002400240200241206a411041e4a4c100410041001001417f460d002002421037024c2002200241206a360248200241e0006a200241c8006a104020022802602200450d02200241e8006a2802002101200228026421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a109e01024002400240024020022d00204101470d00412010122204450d0520042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a109e0120022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d042005200120012005491b2207ad420586220b422088a70d04200ba722014100480d0402402006450d00200420032001101422040d010c060b200110122204450d050b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a109e0120022d00200d000b2002280250220020022802542201460d070c060b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d002002280208101f0b4100210720022802042201450d080c070b41012106410121072002280250220020022802542201470d040c050b1010000b200141011015000b41de86c00041331023000b412041011015000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d002002280248101f0b20022802042201450d010b200228020021002001410574210c0340411f10122201450d02200141176a41002900a4b140220d370000200141106a410029009db140220e370000200141086a4100290095b140220f3700002001410029008db14022103700002001411f413f10142201450d032001200029000037001f200141376a200041186a22032900003700002001412f6a200041106a2205290000370000200141276a200041086a2208290000370000200241206a2001413f103c200241206a41106a220a2903002111200241206a41086a22092903002112200241206a41186a22132903002114200241206a41206a221529030021162002290320210b2001101f20164200200b42015122011b21162014420020011b211402402012201184500d00200b500d0020002012201110630b02402014201684500d00412210122201450d07200141206a41002f00bbb44022173b0000200141186a41002900b3b4402211370000200141106a41002900abb4402212370000200141086a41002900a3b44022183700002001410029009bb44022193700002001412241c40010142201450d08200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a2008290000370000200241206a200141c200103c200a290300211a2009290300211b2013290300211c2015290300211d2002290320210b2001101f412210122201450d09200141206a20173b0000200141186a2011370000200141106a2012370000200141086a2018370000200120193700002001412241c40010142201450d0a200120002900003700222001413a6a2003290000370000200141326a20052900003700002001412a6a200829000037000041101012220a450d0b200a201b4200200b42005222131b221120147c2214370000200a201a420020131b20167c2014201154ad7c370008200a411041201014220a450d0c200a201c4200200b42015122131b370010200a41186a201d420020131b370000200241e0006a41086a2213420037030020024200370360200141c200200241e0006a10002009201329030037030020022002290360370320200241206a4110200a41201004200a101f2001101f0b411f10122201450d04200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10142201450d052001200029000037001f200141376a20032900003700002001412f6a2005290000370000200141276a2008290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a10002009200329030037030020022002290360370320200241206a411010052001101f200041206a2100200c41606a220c0d000b0b2002200636022820022007360224200220043602202002411a360264200241e6b3c000360260200241206a200241e0006a106202402007450d002004101f0b20024180016a24000f0b411f41011015000b413f41011015000b411f41011015000b413f41011015000b412241011015000b41c40041011015000b412241011015000b41c40041011015000b411041011015000b412041011015000ba30303067f037e027f230041206b220224000240024020012802082203200128020c2204460d002001280210220541046a21060340200141086a2003220741206a2203360200200741086a2900002108200741106a29000021092007290000210a200241186a200741186a290000370300200241106a2009370300200241086a20083703002002200a3703002005280200220720062802004105746a210b024002400340200b20076b41ff004d0d0120022007460d02200720024120108002450d02200741206a220c2002460d02200c20024120108002450d02200741c0006a220c2002460d02200c20024120108002450d02200741e0006a220c2002460d0220074180016a2107200c200241201080020d000c020b0b2007200b460d03034020022007460d01200720024120108002450d01200b200741206a2207470d000c040b0b20032004470d000b0b200041003a0000200241206a24000f0b20002002290300370001200041013a0000200041196a200241186a290300370000200041116a200241106a290300370000200041096a200241086a290300370000200241206a24000b9c0f05027f057e017f057e087f230041d0006b220224000240024002400240024002400240024002400240024002400240024020014102490d00411f10122203450d06200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d072003200029002037001f200341376a200041386a2900003700002003412f6a200041306a290000370000200341276a200041286a290000370000200241286a2003413f103c200241286a41206a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082003101f411f10122203450d08200341176a41002900a4b140370000200341106a410029009db140370000200341086a4100290095b1403700002003410029008db1403700002003411f413f10142203450d092003200029000037001f200341376a200041186a22092900003700002003412f6a200041106a290000370000200341276a200041086a290000370000200241286a2003413f103c200241286a41206a290300210a200241286a41106a290300210b200241286a41186a290300210c2002290330210d2002290328210e2003101f200520077c22074200200842005222031b200c200d7c22084200200e420151220f1b5a200420067c2007200554ad7c420020031b2205200a200b7c2008200c54ad7c4200200f1b220c5a2005200c511b0d00200029000021052000200041206a2203290000370000200241086a41186a2009290000370300200241086a41106a2210200041106a220f290000370300200241086a41086a2211200041086a22122900003703002012200341086a290000370000200f200341106a2900003700002009200341186a29000037000020022005370308200041206a2103024020014103490d00411f10122209450d0b200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0c2009200029004037001f200941376a200041d8006a2900003700002009412f6a200041d0006a290000370000200941276a200041c8006a290000370000200241286a2009413f103c200241c8006a2903002104200241c0006a2903002105200241286a41106a290300210620022903302107200229032821082009101f411f10122209450d0d200941176a41002900a4b140370000200941106a410029009db140370000200941086a4100290095b1403700002009410029008db1403700002009411f413f10142209450d0e2009200229030837001f200941376a200241086a41186a22132903003700002009412f6a200241086a41106a290300370000200941276a200241086a41086a290300370000200241286a2009413f103c200241286a41206a220f290300210a200241286a41106a290300210b200241286a41186a2212290300210c2002290330210d2002290328210e2009101f200520077c22074200200842005222091b200c200d7c22084200200e42015122141b5a200420067c2007200554ad7c420020091b2205200a200b7c2008200c54ad7c420020141b220c5a2005200c511b0d00200041c0006a211441012109034020142103200920014f0d03200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200941026a20014f0d01411f10122200450d04200041176a41002900a4b140220c370000200041106a410029009db1402204370000200041086a4100290095b14022063700002000410029008db14022073700002000411f413f10142200450d05200041376a200341386a2900003700002000412f6a200341306a290000370000200041276a200341286a2900003700002000200341206a221429000037001f200241286a2000413f103c200f290300210820122903002105200241286a41106a2215290300210a200241286a41086a2216290300210b2002290328210d2000101f411f10122200450d06200041176a200c370000200041106a2004370000200041086a2006370000200020073700002000411f413f10142200450d072000200229030837001f200041376a20132903003700002000412f6a200241086a41106a290300370000200041276a200241086a41086a290300370000200241286a2000413f103c200f2903002104201529030021062012290300210c201629030021072002290328210e2000101f200941016a21092005200b7c220b4200200d42005222001b200c20077c22074200200e42015122151b542008200a7c200b200554ad7c420020001b2205200420067c2007200c54ad7c420020151b220c542005200c511b0d000b0b20032002290308370000200341186a200241086a41186a290300370000200341106a2010290300370000200341086a20112903003700000b200241d0006a24000f0b41fcbdc200200920011048000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000b411f41011015000b413f41011015000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541e893c100460d00200128020421060c010b41a80810122205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810fe011a20014100360204200120053602000b0c010b41a80841081015000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a20084120108002220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410ff011a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410ff011a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081012221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810fe012108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410fe012108201d41e8026a200541a8066a200241067410fe012111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410ff011a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410ff011a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410ff011a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401012220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210fe0121082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410fe01216e200a20536a200d20526a200220107410fe01216f200a20556a200d20546a200920566a220e200f7410fe012170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410ff011a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410ff011a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410ff011a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410ff011a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410ff011a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410ff011a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810122202450d03200241003b010620024100360200200241086a200441b0036a41d00810fe0121092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410ff011a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410ff011a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410ff011a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081015000b41a80841081015000b41d80841081015000b410121020c000b0b20004100360210200441800c6a24000bae0c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b4120108002220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b2015108002220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a2900003700002003201837030041202120200041206a212120014103490d02410221224101212341052124417f212541a80821264178212741702128416821294160212a4106212b41e802212c4130212d4150212e4102212f410221050c080b202f20236a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352022746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b2020108002220d450d022005202a6a2105200c20236a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2022746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000203121212030212f20302001490d020b202120032903003700002021201a6a201b2903003700002021201c6a201d2903003700002021201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b2006101f2011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b2003101f2011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010fe011a200241c0016a24000b13002000411136020420004194f9c1003602000b13002000410b360204200041f482c2003602000b130020004107360204200041c1cec0003602000b130020004117360204200041a089c2003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021013200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241003600000f0b410441011015000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242003700000f0b410841011015000b7001017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a10132002200241086a36022c2002412c6a200241206a106d200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810122202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011015000b3401017f0240410410122202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011015000b3201017f0240410410122202450d0020004284808080c00037020420002002360200200241043600000f0b410441011015000b13002000410f360204200041b09ec2003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410122203450d0020024284808080c000370204200220033602002003410036000020034104410810142203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610142203450d020c050b200421060c050b2006101222030d030b200641011015000b410441011015000b410841011015000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410142203450d020c030b200621040c030b2004101222030d010b200441011015000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710142203450d010c020b2007101222030d010b200741011015000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002105802400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410142206450d020c040b200341086a2105200228020021060c040b2004101222060d020b200441011015000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410122203450d0020024284808080c000370244200220033602402003410036000020034104412410142203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010142203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a10132002410036024c200241cc006a200241c0006a10132002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710142203450d020c060b200521070c060b2007101222030d040b200741011015000b410441011015000b412441011015000b41c80041011015000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410142203450d020c040b200641286a21060c040b2004101222030d020b200441011015000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a1058200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410122202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011015000b3401017f0240410410122202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011015000b3301017f0240410410122202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011015000bf50103027f017e017f230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a200329030037030020022002290310370300024002400240024002402002411041e4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d0220022903102204500d0341082105410810122203450d010c040b42052104410821054108101222030d030b200541011015000b41de86c00041331023000b41e4a9c2001024000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010122202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011015000b3901017f0240411010122202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011015000b3a01017f0240411010122202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011015000b3201017f0240410410122202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011015000b130020004109360204200041e1eac0003602000b13002000410536020420004194aac2003602000bcb0e04027f047e017f037e230041e0006b22022400200241306a41086a2203420037030020024200370330418f83c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240024002400240024002400240024002400240024002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d022003410f4d0d02200241d8006a2903002104200229035021050c010b42002105420021040b200241106a200442002001ad22064200108202200241206a20054200200642001082022002420042002005420010820241bd83c100210102402002290318200229030884420052200241206a41086a2903002205200229031020022903007c7c2206200554720d002002290320210742002104200241306a41086a220342003703002002420037033041a683c1004117200241306a1000200241c0006a41086a20032903003703002002200229033037034002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012203417f460d052003410f4d0d05200241d8006a2903002105200229035021040c010b420021050b200420077c22072004542203200520067c2003ad7c220420055420042005511b4101460d0002400240024041af82c000411041e4a4c100410041001001417f460d002002410036025041af82c0004110200241d0006a41044100100141016a41044d0d0520022802502103411a10122201450d08200141186a41002f009dff403b0000200141106a4100290095ff40370000200141086a410029008dff4037000020014100290085ff403700002001411a413410142201450d092001200336001a42002106200241306a41086a22084200370300200242003703302001411e200241306a1000200241c0006a41086a200829030037030020022002290330370340200241c0006a411041e4a4c100410041001001417f460d012002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d072008410f4d0d07200241d8006a2903002105200229035021060c020b200241e0006a240041cf83c1000f0b420021050b2001101f41e783c1002101200620077c22092006542208200520047c2008ad7c220620055420062005511b0d002000107022010d00411410122201450d08200141106a41002800bd9540360000200141086a41002900b59540370000200141002900ad954037000020014114413410142201450d09200120002900003700142001412c6a200041186a290000370000200141246a200041106a2900003700002001411c6a200041086a2900003700004200210a200241306a41086a220842003703002002420037033020014134200241306a1000200241c0006a41086a20082903003703002002200229033037034002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012208417f460d092008410f4d0d09200241d8006a29030021052002290350210a0c010b420021050b2001101f41d193c0002101200a2007542208200520045420052004511b0d002000200a20077d200520047d2008ad7d106e42002105200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a20012903003703002002200229033037034002400240200241c0006a411041e4a4c100410041001001417f460d002002420037035820024200370350200241c0006a4110200241d0006a4110410010012201417f460d0c2001410f4d0d0c200241d8006a290300210a200229035021050c010b4200210a0b0240200520077d220b200556200a20047d2005200754ad7d2205200a562005200a511b0d002002200b37035020022005370358200241306a41086a2201420037030020024200370330419795c0004116200241306a1000200241c0006a41086a200129030037030020022002290330370340200241c0006a4110200241d0006a411010040b411a10122200450d0b41002101200041186a41002f009dff403b0000200041106a4100290095ff40370000200041086a410029008dff4037000020004100290085ff403700002000411a413410142200450d0c2000200336001a2002200637035820022009370350200241306a41086a22034200370300200242003703302000411e200241306a1000200241c0006a41086a200329030037030020022002290330370340200241c0006a4110200241d0006a411010042000101f0b200241e0006a240020010f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411a41011015000b413441011015000b41de86c00041331023000b411441011015000b413441011015000b41de86c00041331023000b411a41011015000b413441011015000b9e0d03017f017e077f230041306b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002402001ad2203421b88a70d002003420586a72204417f4c0d00024002402004450d002004101222050d01200441011015000b410121050b200520002001410574220610fe0121042002200136021820022001360214200220043602102002411236020c200241f3fec000360208200241106a200241086a1062024002402001450d002004101f20064100480d05200610122207450d03200641606a4105762108410021040340200720046a2205200020046a2209290000370000200541186a200941186a290000370000200541106a200941106a290000370000200541086a200941086a2900003700002006200441206a2204470d000b200841016a210041062105410610122204450d010c040b4100210041012107410621054106101222040d030b200541011015000b100f000b200641011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d01200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941e4a4c100410041001001417f460d00200241003602104101210820044109200241106a41044100100141016a41044d0d01200228021021092004101f200945210a02402009450d002009ad4205862203422088a70d032003a722044100480d03200410122208450d0541002105200821040340200241106a2005103e200441186a200241106a41186a290000370000200441106a200241106a41106a290000370000200441086a200241106a41086a29000037000020042002290010370000200441206a21042009200541016a2205470d000b0b20092000470d060c050b2004101f4101210a410021094101210841002000460d040c050b41de86c00041331023000b1010000b410c41011015000b200441011015000b024020082007460d002000450d0041002106200821042007210503402004200541201080020d02200441206a2104200541206a2105200641016a22062000490d000b0b200a0d012008101f20010d020c030b200241106a41086a20093602002002200936021420022008360210200241106a103f0240024002400240024002402000450d002000410574210041002106200721050340410610122204450d03200441046a41002f00a388403b00002004410028009f884036000020044106410c10142209450d0420092006360006412010122204450d0520042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a2900003700002009410a2004412010042004101f2009101f200641016a2106200541206a2105200041606a22000d000b41062105410610122204450d010c050b41002106410621054106101222040d040b200541011015000b410641011015000b410c41011015000b412041011015000b200441046a41002f00a388403b00002004410028009f884036000020042005410c10142204450d09200441086a41002d00a788403a0000200441002f00a588403b0006024002402004410941e4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d082002280210210a2004101f200a20064d0d01200621050340410610122204450d07200441046a41002f00a3884022093b00002004410028009f8840220036000020044106410c10142204450d08200441086a41002d00a788403a0000200441002f00a588403b000602402004410941e4a4c100410041001001417f460d002002410036021020044109200241106a41044100100141016a41044d0d07200228021021082004101f0240200820054d0d00410610122204450d0c200441046a20093b00002004200036000020044106410c10142204450d0d200420053600062004410a10052004101f0b200a200541016a2205470d010c030b2004101f200a200541016a2205470d000c020b0b2004101f0b410610122204450d0a200441046a41002f00a388403b00002004410028009f884036000020044106410c10142204450d0b200441086a41002d00a788403a0000200441002f00a588403b00062002200636021020044109200241106a410410042004101f0b2001450d010b2007101f0b200241306a24000f0b41de86c00041331023000b410641011015000b410c41011015000b41de86c00041331023000b410641011015000b410c41011015000b410c41011015000b410641011015000b410c41011015000b130020004104360204200041e885c1003602000b130020004103360204200041c0b0c2003602000b3901017f0240411010122202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011015000b130020004102360204200041e4b2c2003602000b1300200041043602042000419d89c1003602000b130020004101360204200041ecb3c2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010122206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011015000b130020004103360204200041c8b4c2003602000b130020004107360204200041c58bc1003602000b130020004108360204200041b4b6c2003602000bcc0403037f017e047f23004180026b220424000240024020012d000d450d0041f790c1002102413121050c010b2001280200200141046a2205280200200141086a220628020010c80120054200370200200141e893c100360200200420022900002207370310024002400240024041e40110122208450d00200841003b010620084100360200200841086a200441206a41dc0110fe011a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a4108108002220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101302402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1014220b450d030c060b2004280210210b0c060b41ca90c1002102412d21050c060b200a1012220b0d030b200a41011015000b41e40141041015000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210fe011a200441086a200a28020036020020042004290310370300200441206a200410c90120014180023b010c410021020b200020053602042000200236020020044180026a24000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b2000101f2005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b2001101f2005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d002004101f0b20020d000b0b0240200041e893c100460d00200028020021012000101f2001450d00200128020021042001101f2004450d00024020042802002201450d0003402004101f2001210420012802002200210120000d000b0b2004101f0b0bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410ff011a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10ff011a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011012220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110fe012107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410fe012107200a41e0006a200041b4016a2001410c6c10fe01210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410ff011a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10ff011a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410ff011a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10ff011a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210122207450d03200741003b010620074100360200200741086a200241d0006a418c0210fe012103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410fe012116200741e0006a200941b4016a2000410c6c10fe012117200741e4016a20094180026a2001417a6a220e41027410fe012118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410ff011a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10ff011a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410ff011a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410ff011a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10ff011a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410ff011a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210122200450d03200041003b010620004100360200200041086a200241d0006a418c0210fe0121012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410ff011a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10ff011a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410ff011a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041015000b41e40141041015000b41940241041015000b200241e0026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210130240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142203450d020c030b2004410e6a2105200228020021030c030b2006101222030d010b200641011015000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a41002900c79240370000200441002900c192403700002002410e36020c2002410c6a200210130240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610142204450d020c030b200228020021040c030b2006101222040d010b200641011015000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a41002900c79240370000200741002900c1924037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710142204450d020c030b200341126a21030c030b2007101222040d010b200741011015000b20022007360204200220043602000b200241086a22052003360200200420066a4103360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710142204450d010c020b2007101222040d010b200741011015000b20022007360204200220043602000b2005200341046a360200200420036a41033600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610142205450d020c030b200228020021050c030b2006101222050d010b200641011015000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410536020c2002410c6a200210132008280200210641d092c00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101422030d020c060b200641086a2104200228020021030c020b200910122203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101422030d010c060b200610122203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a2207418c93c000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011015000b200641011015000bde0503057f017e067f230041306b22022400024002400240410610122203450d00200341046a41002f00a388403b00002003410028009f884036000020034106410c10142203450d01200341086a41002d00a788403a0000200341002f00a588403b0006024002400240024002402003410941e4a4c100410041001001417f460d00200241003602104101210420034109200241106a41044100100141016a41044d0d04200228021021052003101f20054521062005450d012005ad4205862207422088a70d022007a722034100480d02200310122204450d0741002108200421030340200241106a2008103e200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a29000037000020032002290010370000200341206a21032005200841016a2208470d000c020b0b2003101f4101210641002105410121040b20024100360218200242013703102002200536020c2002410c6a200241106a1013024002402006450d00200241186a2802002103200228021021090c010b2005410574210a4100200241106a41086a280200220b6b210c200228021021092002280214210d4100210303400240200d200c6a411f4b0d00200b20036a220541206a22082005490d03200d4101742205200820082005491b22084100480d0302400240200d450d002009200d2008101422090d010c060b200810122209450d050b2008210d0b2009200b6a20036a2208200420036a2205290000370000200841186a200541186a290000370000200841106a200541106a290000370000200841086a200541086a290000370000200c41606a210c200a200341206a2203470d000b200241186a200b20036a22033602002002200d3602142002200936021020060d002004101f0b200241306a24002003ad4220862009ad840f0b1010000b200841011015000b41de86c00041331023000b410641011015000b410c41011015000b200341011015000bd31203027f017e087f230041d0086b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b20022001360204200241f0066a2002107c024002400240024002400240024020022802f806450d00200241086a200241f0066a41880110fe011a20024190016a200241086a41880110fe011a200229039001200241a4016a2201200241e4016a2203102502400240024002402002290390012204500d00200241f0066a2004427f7c101d200241f0066a200141201080020d0041002105200228028802210002400240024020024190026a280200220141e0016c41e001490d002001410c6c220610122207450d0b2001210820010d010c020b41042107410021082001450d010b200141e0016c2106200141057441606a21092007210103402002200036028004200241f0066a20024180046a10cd01200141086a200241f0066a41086a280200360200200120022903f0063702002001410c6a2101200041e0016a2100200641a07e6a22060d000b200941057641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001012220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241f0066a200a200610ce010240200b450d00200a101f0b02402005450d002005410c6c21002007210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b02402008450d002007101f0b02402003200241f0066a4120108002450d0041bba2c100410e1008200341201009200241f0066a412010090b2003200241f0066a41201080020d052002418c026a280200210520024190016a41f8006a280200210720024190026a280200210620024198026a20024190016a41f80010fe011a2007200641e0016c6a210020072101024002400240024002402006450d0020024180046a41f8006a2109200241f0066a41086a210c20072101034020024190036a200141f00010fe011a200141f0006a290300210420024188066a200141f8006a41e80010fe011a20044203510d0220024180046a20024190036a41f00010fe011a20024180046a41f0006a2004370300200920024188066a41e80010fe011a200220024180046a3602e005200241f0066a200241e0056a10cd01200c2802002106024020022802f406450d0020022802f006101f0b200241f0066a20024180046a41e00110fe011a200241003602f005200241e0056a200241f0066a2006200241f0056a10cf0120022802e0054101460d05024020022802e4052206450d002006200241e0056a41086a28020010080b200141e0016a22012000470d000b200021010b20012000470d010c020b200141e0016a22012000460d010b200241f8076a2106200241f0066a41f8006a21090340200241f0066a200141f00010fe011a200141f0006a290300210420024190036a200141f8006a41e80010fe011a20044203510d0120024180046a200241f0066a41f00010fe011a20024188066a20024190036a41e80010fe011a200241f0066a20024180046a41f00010fe011a200241f0066a41f0006a2004370300200920024188066a41e80010fe011a2006107e200141e0016a22012000470d000b0b02402005450d002007101f0b102b200229039802107f200241f0066a102f200220024198026a41106a28020022053602800620022802a002210c2002200241f0066a41106a28020022013602840620052001470d0720022802f806210a024002402005450d000240200c200a460d00410021070340200c200741246c22006a2201200a20006a2200105720012d0000220620002d0000470d030240024020064101470d002001410c6a28020022092000410c6a280200470d052009450d01200141046a2802002201200041046a2802002200460d014100210603402001200041201080020d06200141206a2101200041206a2100200641016a22062009490d000c020b0b200141016a200041016a41201080020d040b200741016a22072005490d000c020b0b200521010340200c200c1057200c41246a210c2001417f6a22010d000b0b20024180046a41186a2201420037030020024180046a41106a2200420037030020024180046a41086a22064200370300200242003703800420024180046a100620024190036a41186a200129030037030020024190036a41106a200029030037030020024190036a41086a20062903003703002002200229038004370390030240200241cc026a220120024190036a4120108002450d0041bba2c100410e100820014120100920024190036a412010090b200120024190036a41201080020d0902402005450d00200541246c2100200a21010340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241fc066a280200450d00200a101f0b0240200241a8026a2802002200450d0020024198026a41086a2802002101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241a4026a280200450d00200241a0026a280200101f0b200241d0086a240042010f0b41acc0c2001024000b20022802e4052202450d0120024103460d0220024104460d0341b4bfc2001024000b4184bfc2001024000b41e4bfc2001024000b41ccbfc2001024000b41fcbfc2001024000b20024194046a41013602002002410436029401200241ccbcc200360290012002420137028404200241d4bcc20036028004200220024190016a3602900420024180046a41dcbcc200103a000b419cbfc2001024000b200220024180066a3602f005200220024184066a3602e00520024180046a41146a410036020020024190036a41146a41023602002002419c036a410736020020024188066a41146a4103360200200241e4a4c10036029004200242013702840420024194c0c2003602800420024107360294032002420337028c06200241ecc5c20036028806200220024180046a3602a0032002200241e0056a360298032002200241f0056a36029003200220024190036a3602980620024188066a419cc0c200103a000b41c4c0c2001024000b200641041015000b1010000b200041041015000b8b1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041e20110122203450d00200242e20137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410142201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410142201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a2002107802400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110142204450d020c060b200228020021040c060b2001101222040d040b200141011015000b41e20141011015000b410441011015000b410441011015000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c37000020032002102102400240024002400240024002400240024002400240200341f0006a2903004201520d00200341f8006a2903002206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110142204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510142204450d030c070b200228020021040c070b200228020021040c080b2005101222040d040b200541011015000b2001101222040d040b200141011015000b41fcc9c1001024000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a20021022200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a1013024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101422010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410142203450d020c110b4100210b2005450d120c110b2004101222030d0f0b200441011015000b200228020021010c020b200c10122201450d070b2002200c360204200220013602000b200120056a200141026a200a10ff011a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031012220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b41a081c2001024000b200341011015000b200c41011015000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101422030d020c060b200228020021030c020b200110122203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10ff011a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c101f0b200a450d060c050b1010000b200141011015000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10ff011a0b20012003200a6a3602000b02402009450d002008101f0b20002002290300370200200041086a200241086a280200360200200241206a24000bcb03010b7f230041206b22032400024002402002450d0020024102742204101222050d01200441041015000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1014220a0d020c080b200820046a21070c020b200d1012220a450d060b200d210b0b200a20046a200c200810fe011a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a101f0b02402002450d002005101f0b200341206a24000f0b1010000b200d41011015000b871605017f017e037f017e067f230041e0056b22042400200441a0036a200141e00110fe011a20044190026a200441a0036a101c0240024002402004280290024101470d00200041086a2004290294023702002000420137020020032802002200450d020c010b20044190026a41086a290300210520044190016a20044190026a41106a41800110fe011a20042005370308200441086a41086a20044190016a41800110fe01210620044190016a41086a220142003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200129030037030020042004290390013703a00341002101024002400240024002400240024002400240024002400240024002400240200441a0036a411041e4a4c100410041001001417f460d002004410036029002200441a0036a411020044190026a41044100100141016a41044d0d0120042802900221010b41042107200120026a41808080024b0d0d410021080240200441106a410020042903084201511b2201450d002001450d0002400240024020011026220520012903202209520d00410321072001200210bb010d11411310122207450d0d2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c824037000020074113413310142207450d0e200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a29000037000020044190016a41086a220a420037030020044200370390012007413320044190016a1000200441a0036a41086a200a29030037030020042004290390013703a003200441a0036a411041e4a4c100410041001001417f460d012004420037039002200441a0036a411020044190026a41084100100141016a41084d0d0820042903900242017c21052007101f4113210a4113101222070d020c0f0b4101410220092005541b21070c100b420121052007101f4113210a411310122207450d0d0b2007410f6a41002800ab8240360000200741086a41002900a482403700002007410029009c82403700002007200a413310142207450d0d200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200420053703900220044190016a41086a2201420037030020044200370390012007413320044190016a1000200441a0036a41086a200129030037030020042004290390013703a003200441a0036a411020044190026a410810042007101f0b024020032802002207450d00200341086a28020021012003280204210b4100210c024041af82c000411041e4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0520042802a003210c0b411410122208450d06200841106a41002800bb8140360000200841086a41002900b38140370000200841002900ab81403700002008411441281014220a450d07200a200c360014200441003602a803200442013703a003200420013602900220044190026a200441a0036a1013024002400240024020042802a403220d20042802a803220c6b20014f0d00200c20016a2208200c490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0120042802a003200d200e101422080d020c0d0b20042802a00321080c020b200e10122208450d0b0b2004200e3602a403200420083602a003200e210d0b2008200c6a2007200110fe011a20044190016a41086a220e42003703002004420037039001200a411820044190016a1000200441a0036a41086a200e29030037030020042004290390013703a003200441a0036a41102008200c20016a10040240200d450d002008101f0b200a101f41012108200b450d002007101f0b20042903082105200441a0036a200441306a41e00010fe011a20044190026a200441a0036a41086a41d80010fe011a20044190016a41186a220a200641186a29030037030020044190016a41106a220c200641106a29030037030020044190016a41086a220d200641086a290300370300200420062903003703900141002101024020054201520d00200441a0056a41186a200a290300370300200441a0056a41106a200c290300370300200441a0056a41086a200d29030037030020042004290390013703a005410121010b20044190016a20044190026a41d80010fe011a200441c0056a41186a2206200441a0056a41186a220a290300370300200441c0056a41106a220c200441a0056a41106a220d290300370300200441c0056a41086a220b200441a0056a41086a220e290300370300200420042903a0053703c00520044190026a20044190016a41d80010fe011a20044180056a41186a220f200629030037030020044180056a41106a2206200c29030037030020044180056a41086a220c200b290300370300200420042903c00537038005200441a0036a20044190026a41d80010fe011a200a200f290300370300200d2006290300370300200e200c29030037030020042004290380053703a0054102210602402001450d00200441c0056a41186a200441a0056a41186a290300370300200441c0056a41106a200441a0056a41106a290300370300200441c0056a41086a200441a0056a41086a290300370300200420042903a0053703c005410121060b20044199016a200441c0056a41086a290300370000200441a1016a200441c0056a41106a290300370000200441a9016a200441d8056a290300370000200420063a009001200420042903c005370091012004200441a0036a20044190016a10592004280204210620042802002101200441003a00a003200420014100473a00a103200441a0036a10270240024041af82c000411041e4a4c100410041001001417f460d00200441003602a00341af82c0004110200441a0036a41044100100141016a41044d0d0320042802a00341016a210a0c010b4101210a0b20044190016a41086a220c42003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200c29030037030020042004290390013703a00302400240200441a0036a411041e4a4c100410041001001417f460d002004410036029001200441a0036a411020044190016a41044100100141016a41044d0d04200428029001210c0c010b4100210c0b2004200a3602a00341af82c0004110200441a0036a410410042004417f2002200c6a220a200a2002491b3602c00520044190016a41086a220242003703002004420037039001419580c000411720044190016a1000200441a0036a41086a200229030037030020042004290390013703a003200441a0036a4110200441c0056a410410040240024002402001450d0002402006411b470d00200141f99ac100460d02200141f99ac100411b108002450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c120b20004100360204200041086a200636020020004100360200200745200872450d010c110b200041046a4104360200200041013602002007452008720d100b200341046a280200450d0f2007101f0c0f0b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b41de86c00041331023000b411441011015000b412841011015000b1010000b200e41011015000b411341011015000b413341011015000b200a41011015000b413341011015000b2000410136020020002007360204200441386a102020032802002200450d010b200341046a280200450d002000101f200441e0056a24000f0b200441e0056a24000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10fb012100200241206a240020000bc20201037f23004180016b22022400200028020021000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000ba70201017f23004180026b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b2002200136020420024180016a2002107d0240200228028801450d00200241086a20024180016a41f80010fe011a20022903082002411c6a200241dc006a10250240200241186a2802002200450d0020022802102101200041246c21000340024020012d0000450d00200141086a280200450d00200141046a280200101f0b200141246a21012000415c6a22000d000b0b0240200241146a280200450d00200241106a280200101f0b20024180026a240042010f0b2002411c6a4101360200200241043602fc01200241ecbcc2003602f8012002420137020c200241d4bcc2003602082002200241f8016a360218200241086a41dcbcc200103a000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410122203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410142205450d020c040b200228021021050c040b2004101222050d020b200441011015000b410441011015000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41013a0000410e200241106a10d4014100210302400340200341bcd0c1006a280200200341c0d0c1006a280200200241106a10d50102400240024002400240024002400240024002400240024002400240024002400240200341c4d0c1006a2802004101470d00200341c8d0c1006a280200200341ccd0c1006a280200200241106a10d501200341d0d0c1006a22062802004102460d010c020b2002200341c8d0c1006a28020011020020022802002002280204200241106a10d501200341d0d0c1006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101422060d020c040b200228021021060c020b200710122206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341e0d0c1006a22062802004102470d020c030b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101422070d020c0d0b200228021021070c020b200810122207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d601200341e0d0c1006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101422070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101422060d050c0a0b200228021021060c050b200810122207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d701200341f0d0c1006a22062802004102460d030c080b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341f0d0c1006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101422060d020c070b200228021021060c020b200710122206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341f007470d050c060b200841011015000b200841011015000b200741011015000b200741011015000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101422070d020c070b200228021021070c020b200810122207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d801200341c8006a220341f007470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101302400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810142205450d020c050b2002280210220520046a2006200310fe011a200420036a21032007450d060c050b2008101222050d030b200841011015000b1010000b200841011015000b2002200836021420022005360210200520046a2006200310fe011a200420036a21032007450d010b2006101f0b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410142203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210142203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101422030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101422030d0a0c0e0b2004101222030d110b200441011015000b200128020021030c050b200128020021030c070b2002101222030d0b0b200241011015000b200210122203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410122203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101422030d020c070b200128020021030c020b200210122203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011015000b200441011015000b200241011015000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510142204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310142204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101422040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101422040d0a0c0d0b2005101222040d100b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0a0b200341011015000b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510122204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101422040d020c060b200228020021040c020b200310122204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310142204450d020c040b200228020021040c040b2003101222040d020b200341011015000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110fe011a0bfb0f01097f230041206b2202240002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d01200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d132009410174220a20072007200a491b220a4100480d132009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c030b2009200041c0006a280200200110ed012004200541cc006a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d00200041cc006c2104410021050340200320056a220041046a280200200041086a280200200110d501200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240024002400240024002400240200041c8006a2d00004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0a0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0a0b200128020021070c030b200128020021070c050b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10122207450d040b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b200628020021072008280200210902400240024002400240024002400240024002402000410c6a2802004101470d0020072009470d01200941016a22072009490d122009410174220a20072007200a491b220a4100480d122009450d0320012802002009200a101422070d040c0c0b20072009470d01200941016a22072009490d112009410174220a20072007200a491b220a4100480d112009450d0520012802002009200a101422070d060c0c0b200128020021070c030b200128020021070c050b200a10122207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a0000200041146a280200200041186a280200200110d501200041206a280200200041246a280200200110d501200041286a2802004101460d030c080b200a10122207450d060b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a0000200041146a280200200041186a280200200110d501200041286a2802004101470d050b2000412c6a280200200041346a280200200110d5010c050b200a41011015000b200a41011015000b200a41011015000b200a41011015000b200241106a2000412c6a280200200041306a28020028020c11030020022802102209200241106a41086a280200200110d5012002280214450d002009101f0b2000413c6a28020021090240200041386a2802004101470d002009200041c4006a280200200110ed012004200541cc006a2205470d010c020b2009200041c0006a280200200110ed012004200541cc006a2205470d000b0b200241206a24000f0b1010000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d5012000410c6a200110ee01200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d4012000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c030b2006200041246a280200200110ed0120042005412c6a2205470d000c020b0b200241086a200041046a28020011020020022802082103200228020c2200200110d4012000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d501200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110ed010c010b2006200041146a280200200110ed010b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110ed0120042005412c6a2205470d010c020b2006200041246a280200200110ed0120042005412c6a2205470d000b0b200241106a24000be20301017f230041e0056b22022400024002402001450d00200220003602080c010b200241e4a4c1003602080b2002200136020c200241f0036a200241086a101602400240024002400240024020022903e0044203510d00200241106a200241f0036a41e00110fe011a200241f0016a200241106a41e00110fe011a2002200241f0016a3602f003200241d0036a200241f0036a10cd0120022802d8032101200241f0036a200241f0016a41e00110fe011a200241d8056a20022802d803360200200220022903d0033703d005200241e0036a200241f0036a2001200241d0056a10cf010240024020022802e0034101470d004280828898f01f20022802e403410374ad88a7210041011012210141010d010c050b20022802e40341004721004101101221014100450d040b2001450d01200141013a000020014101410210142201450d020c040b20024184026a410136020020024104360214200241f4bcc200360210200242013702f401200241d4bcc2003602f0012002200241106a36028002200241f0016a41dcbcc200103a000b410141011015000b410241011015000b2001450d01200141003a0000200141014102101422010d00410241011015000b200120003a0001200241e0056a24002001ad428080808020840f0b410141011015000bf71203027f017e0a7f230041c0016b22022400102b20024180016a41086a22034200370300200242003703800141dd81c000410d20024180016a1000200241086a41086a20032903003703002002200229038001370308420021040240024002400240024002400240024002400240024002400240200241086a411041e4a4c100410041001001417f460d002002420037038001200241086a411020024180016a41084100100141016a41084d0d0120022903800121040b2004107f200241b0016a41086a22034200370300200242003703b001418080c0004115200241b0016a1000200241a0016a41086a2003290300370300200220022903b0013703a0010240024002400240024002400240200241a0016a411041e4a4c100410041001001417f460d0041002105200241003602084104210641012107200241a0016a4110200241086a41044100100141016a41044d0d0920022802082208450d012008ad420c7e2204422088a70d0f2004a722034100480d0f200310122206450d0c20062109410021050340411410122203450d03200341106a41002800bb8140360000200341086a41002900b38140370000200341002900ab81403700002003411441281014220a450d04200a200536001420024180016a41086a220b42003703002002420037038001200a411820024180016a1000200241086a41086a200b290300370300200220022903800137030802400240200241086a411041e4a4c100410041001001417f460d0020024210370284012002200241086a36028001200220024180016a10282002280200450d0920022802042203417f4c0d07024002402003450d0020031076220c450d0d200b200b280200220d20034100200228028001200228028401200c2003200d1001220d200d417f461b220d200d20034b1b220d6a360200200d2003460d010c0a0b4101210c20022802800120022802840141014100200b28020010011a41002003470d090b200b42003703002002420037038001200a411820024180016a1000200241b0016a41086a200b29030037030020022002290380013703b001200241b0016a41101005200c0d010b4101210c410021030b200a101f200941086a2003360200200941046a20033602002009200c3602002009410c6a21092008200541016a2205470d000b41002107200821050c010b4100210541012107410421060b410421084100210a4100210d02402005410c6c2203410c490d002003410c6e220d41037422094100480d0e200910122208450d0a0b0240200620036a220c2006460d004100210a200821032006210903402009280200210b200341046a200941086a2802003602002003200b360200200341086a2103200a41016a210a2009410c6a2209200c470d000b0b20024180016a2008200a10ce010240200d450d002008101f0b02402005450d002005410c6c21092006210303400240200341046a280200450d002003280200101f0b2003410c6a2103200941746a22090d000b0b024020070d002006101f0b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a22034200370300200242003703b00141ea81c0004115200241b0016a1000200241a0016a41086a220a2003290300370300200220022903b0013703a001200241a0016a4110200241086a41201004200241086a102f200241003602a801200242013703a001412010122203450d08200242a080808080043702a401200220033602a0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241a0016a102102400240024020022802a4012209200a280200220b6b41204f0d00200b41206a2203200b490d102009410174220a20032003200a491b220c4100480d102009450d0120022802a0012009200c1014220a450d020c0e0b200b41206a210320022802a001210a0c0e0b200c1012220a0d0c0b200c41011015000b411441011015000b412841011015000b100f000b2003450d00200c101f0b41de86c00041331023000b41de86c00041331023000b200341011015000b41de86c00041331023000b412041011015000b200941041015000b200341041015000b2002200c3602a4012002200a3602a001200c21090b200241a0016a41086a220c2003360200200a200b6a220b41086a200241c4006a290200370000200b41106a200241cc006a290200370000200b41186a200241d4006a290200370000200b200229023c3700000240200920036b411f4b0d00200341206a220b2003490d0120094101742205200b200b2005491b220b4100480d010240024002402009450d00200a2009200b1014220a450d010c020b200b1012220a0d010b200b41011015000b2002200b3602a4012002200a3602a0010b200c200341206a360200200a20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a28020022073602800120024180016a200241a0016a101302402007450d00200741246c2105200e210303400240024020032d00004101470d002003410c6a2802002109200341046a280200210a4100210b0c010b4101210b200341016a210a0b20024180016a41086a20093602002002200a360284012002200b36028001200241b0016a20024180016a101120022802b001210b024002400240024020022802a401220c200241a0016a41086a220828020022096b200241b0016a41086a280200220a4f0d002009200a6a220d2009490d06200c4101742206200d200d2006491b220d4100480d06200c450d0120022802a001200c200d1014220c0d020c070b20022802a001210c0c020b200d1012220c450d050b2002200d3602a4012002200c3602a0010b20082009200a6a220d360200200c20096a200b200a10fe011a024020022802b401450d00200b101f0b200341246a21032005415c6a22050d000b02402007450d00200741246c2109200e21030340024020032d0000450d00200341086a280200450d00200341046a280200101f0b200341246a21032009415c6a22090d000b0b200241146a280200450d040c030b200241a8016a280200210d20022802a001210c200241146a2802000d020c030b1010000b200d41011015000b200e101f0b200241c0016a2400200dad422086200cad840ba90a03017f037e087f230041f0016b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b20022001360204200241286a200210dc010240024002402002280228450d00200241086a41086a2201200241286a41086a220028020036020020022002290328370308200241186a41086a20012802003602002002200229030837031820024180016a200241186a10dd012002280280014101460d0120024180016a41086a2201290300210320014200370300200242003703800141f594c000410d20024180016a100020002001290300370300200220022903800137032842002104024002400240200241286a411041e4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d0120022903800121040b20024180016a41086a220142003703002002420037038001418295c000411520024180016a1000200241286a41086a2001290300370300200220022903800137032802400240200241286a411041e4a4c100410041001001417f460d002002420037038001200241286a411020024180016a41084100100141016a41084d0d03200229038001210541e001210041e00110122201450d010c060b4205210541e001210041e001101222010d050b200041081015000b41de86c00041331023000b41de86c00041331023000b20024194016a410136020020024104360274200241fcbcc2003602702002420137028401200241d4bcc200360280012002200241f0006a3602900120024180016a41dcbcc200103a000b41d99ac000412820022802840120024180016a41086a2802001037000b200120024180016a41f00010fe0122064202370370200641003a00880120064202370390012006200229037037037820064180016a200241f0006a41086a29030037030020062002280069360089012006418c016a200241e9006a41036a28000036000020062003200520047c220420042003541b37039801200620022903283703a001200641a8016a200241286a41086a290300370300200641b0016a200241386a290300370300200641b8016a200241c0006a290300370300200641c0016a200241c8006a290300370300200641c8016a200241d0006a290300370300200641d0016a200241d8006a290300370300200641d8016a200241e0006a290300370300200228021822072108200228021c2209210a0340200841086a210020082f0106220c4103742101417f210b02400240024003402001450d01419c8cc00020004108108002220d450d03200141786a2101200b41016a210b200041086a2100200d417f4a0d000b200a0d010c020b200c210b200a450d010b200a417f6a210a2008200b4102746a41e4016a28020021080c010b0b20072009200228022010c8012002410036023020024201370328200241013602800120024180016a200241286a1013200228022c210b200228023021012002200636027020024180016a200241f0006a10cd012002280280012108024002400240024002400240200b20016b200228028801220d4f0d002001200d6a22002001490d03200b410174220a20002000200a491b220a4100480d03200b450d012002280228200b200a1014220b450d020c040b2001200d6a21002002280228210b0c040b200a1012220b0d020b200a41011015000b1010000b2002200a36022c2002200b3602280b200241306a2000360200200b20016a2008200d10fe011a0240200228028401450d002008101f0b20064188016a107e2006101f200241f0016a24002000ad422086200bad840bec0d06027f017e0a7f017e067f017e230041a0026b22022400200241186a200110170240024002400240024002400240024002400240024002402002280218450d00200228021c2203ad2204421d88a70d0a2004420386a72205417f4c0d0a024002400240024002400240024002400240024002400240024002402005450d00200510122206450d022003450d010c030b4101210620030d020b410021054100210b2006450d0c0c020b200541011015000b200141046a210741002108410021094100210a2003210b034020024200370340200241c0006a2001280200220c2007280200220541082005410849220d1b220e10fe011a20072005200e6b3602002001200c200e6a360200200d0d02200a41016a2105200229034021040240200a200b470d002008200520052008491b220bad420386220f422088a70d13200fa7220e4100480d130240200a450d0020062009200e101422060d010c070b200e10122206450d060b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0a0b2005ad422086200bad84210f200241106a200110172002280210450d0720022802142203ad420c7e2204422088a70d132004a72205417f4c0d132005450d0120051012220c450d042003450d020c050b200b0d070c080b4104210c20030d030b410021094100210b200c450d040c030b200e41011015000b200541041015000b410021084100210a4100210e2003210b0340200241086a2001101702400240024002402002280208450d00200228020c2205417f4c0d12024002402005450d00200510762207450d0320072001280200200141046a220d2802002209200520092005491b220910fe011a200d28020022102009490d04200d201020096b3602002001200128020020096a36020020092005470d010c050b4101210741002005460d040b2005450d002007101f0b0240200e450d00200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b200b450d05200c101f0c050b200541011015000b20092010101a000b200e41016a21090240200e200b470d002008200920092008491b220bad420c7e2204422088a70d0c2004a7220d4100480d0c0240200e450d00200c200a200d1014220c0d010c0e0b200d1012220c450d0d0b200c200a6a220e2007360200200e41046a2005ad2204422086200484370200200841026a2108200a410c6a210a2009210e20092003490d000b200c450d010b2009200f422088a7470d0320024200370224200241e893c100360220200c2009410c6c6a211020094103742205450d04200620056a2111200241206a41086a2112200241d4006a2113200241d0006a2114200c2108200621030340200822052010460d062005410c6a210820052802002215450d0720052902042104200220032900002216370330024002402002280220220e41e893c100460d00200228022421070c010b41e4011012220e450d0d41002107200e41003b0106200e4100360200200e41086a200241c0006a41dc0110fe011a200241003602242002200e3602200b200341086a210302400340200e41086a210a200e2f0106220d410374210541002109024003402005450d01200241306a200a41081080022201450d03200541786a2105200941016a2109200a41086a210a2001417f4a0d000b2009417f6a210d0b02402007450d002007417f6a2107200e200d4102746a41e4016a280200210e0c010b0b2013201637020020142012360200200241c0006a410c6a200d360200200241c0006a41086a200241206a3602002002200e360244200241003602402002200437023420022015360230200241c0006a200241306a10c90120032011470d010c080b200e2009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d002005101f0b20032011470d000c070b0b200fa7450d010b2006101f0b200041003602000c0a0b2000410036020002402009450d002009410c6c210a200c210503400240200541046a280200450d002005280200101f0b2005410c6a2105200a41746a220a0d000b0b0240200b450d00200c101f0b200fa7450d092006101f200241a0026a24000f0b200c2108200fa70d020c030b201021080b200fa7450d010b2006101f0b024020082010460d00034020082802002205450d010240200841046a280200450d002005101f0b2008410c6a22082010470d000b0b0240200b450d00200c101f0b200241c0006a41086a2205200241206a41086a28020036020020022002290320370340200041086a200528020036020020002002290340370200200241a0026a24000f0b1010000b200d41041015000b41e40141041015000b100f000b200241a0026a24000bad0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141eba0c100200641081080022208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2201450d00200128020821062001280200210120024200370308200241086a200120064108200641084922071b10fe011a20070d01200041086a2002290308370300410021010c030b200041f3a0c100360204200041086a41283602000c010b2000419ba1c100360204200041086a41293602000b410121010b20002001360200200241106a24000bac3a190c7f017e037f017e097f027e017f017e077f037e027f017e057f027e027f037e067f027e037f017e0c7f027e0e7f027e107f230041d0026b22022400024002402001450d00200220003602100c010b200241e4a4c1003602100b20022001360214200241f0006a200241106a107c0240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10dc012002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241e893c100360250200241d0006a41086a210a2004450d0241e001210b2008200441e0016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f2120410221214178212241f594c000212341e4a4c100212441152125418295c0002126423c2127428080808070212842252129418801212a41ff01212b427f212c419ea0c100212d41e000212e4107212f20082130410021310c030b2002412c6a41013602002002410436025420024184bdc2003602502002420137021c200241d4bcc2003602182002200241d0006a360228200241186a41dcbcc200103a000b20024184016a41013602002002410436025420024184bdc20036025020024201370274200241d4bcc2003602702002200241d0006a36028001200241f0006a41dcbcc200103a000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b412f411e2072205c410c6c6a41a07f4622451b214641a48cc00041c4a1c10020451b21450c010b02400240024002400240024020310e06000501020304040b2030200d6a290300200e520d13024020302d0088012201450d002001202b712201450d230c540b203029039001200e520d212030290398012132200241f0006a200241c0006a10dd010240024020022802704101470d00200f3502002133200228027421344101213520112d0000450d010c0d0b200f290300213642002133200f42003703002002420037037020232010200241f0006a10002009200f290300370300200220022903703703180240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0a200229037021330b200f42003703002002420037037020262025200241f0006a10002009200f29030037030020022002290370370318024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d0d200229037021372032203620277c580d020c010b420521372032203620277c580d010b203820288320298421334101213541b49ac000213420112d0000450d010c0d0b410021352032203720337c22335a0d2120112d00000d0c0b024002402035450d0020022802502002280254200a28020010c80120024200370254200241e893c100360250200220123703180c010b2002280250213920022012370318203941e893c100460d002002280254213a0c200b201310122239450d0a4100213a203941003b010620394100360200203941086a200241f0006a201410fe011a20024100360254200220393602500c1e0b20482050204e204f6a22012001204e491b6a22012048490d4e2048204f742200200120012000491b2249ad2051862232205288a70d4e2032a722012053480d4e02402048450d00204a204820547420011014224a0d0f0c060b20011012224a450d05410321310c170b204a20482054746a204d3602002048204f6a2148204e450d270240204c20462f01064f0d002046204c2055746a20566a214d204c204f6a214c204e20506a214e20492048460d0c0c0d0b41012101024020462f01042200204628020022462f0106490d004101210103402001204f6a210120462f01042200204628020022462f01064f0d000b0b204620002055746a20566a214d204620002054746a20576a28020021464100214c2001204f460d25204f20016b2101034020462802e40121462001204f6a22010d000c260b0b20592060205f20586a22012001205f491b6a22012059490d4c20592058742200200120012000491b225aad2061862232206288a70d4c2032a722012063480d4c02402059450d00205b205920647420011014225b0d100c050b20011012225b450d04410521310c190b205b20592064746a205e360200205920586a21590240205f450d000240205d20452f01064f0d002045205d20656c6a20666a215e205d20586a215d205f20606a215f205a2059460d0e0c0f0b41012101024020452f01042200204528020022452f0106490d00410121010340200120586a210120452f01042200204528020022452f01064f0d000b0b2045200020656c6a20666a215e204520002064746a20676a28020021454100215d20012058460d23205820016b2101034020452802e4012145200120586a22010d000c240b0b205b215c2048413f4b0d370c280b2069280200227220686a210020722f0106223e206b7421014100215c024003402001450d01206f20002068108002223d450d11200120706a2101205c20716a215c200020686a2100203d206c4a0d000b205c206c6a213e0b0240206a450d00206a206c6a216a2072203e206d746a206e6a2169410121310c110b412f214641a48cc00021450b2002204636026420022045360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c701200228020022460d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c220b200141041015000b200141041015000b41de86c00041331023000b41de86c00041331023000b41e40141041015000b41a891c100412241f790c10041311037000b41a891c1004122204620022802041037000b410221310c080b410321310c080b410321310c090b410421310c090b410521310c090b410521310c0a0b410021010c460b410121010c450b410221010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b4100213c0c040b4100213c0c040b410021010c040b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b2030202a6a2d0000202b7122010d34410121010c060b203029039001200e520d34203029039801213f200f42003703002002420037037020262025200241f0006a10002009200f290300370300200220022903703703180240024002400240200241186a20172024201b201b10012020460d0020024200370370200241186a2017200241f0006a4108201b100141016a41084d0d02200229037021320c010b420521320b202c203220327c224020402032541b2240500d01200241c0006a2141200228024421420c030b41de86c00041331023000b41fccac1001024000b0240024002400240024002400240024002400240024002400240203c0e020001010b203941086a210020392f0106223b20157421014100213d024003402001450d01200241186a20004108108002223e450d08200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a213b0b0240203a450d00203a20206a213a2039203b2021746a20136a28020021394100213c0c0e0b201620123702002018200a360200201a203b360200200f200241d0006a360200200220393602742002201b3602702009201b3602002002201c3703184101101221010240024002400240024002402035450d002001450d0d200141013a00002002201d37021c2002200136021820022033a72201360260200241e0006a200241186a1013200228021c223d200928020022006b20014f0d01200020016a223e2000490d40203d410174223b203e203e203b491b223e201b480d40203d450d022002280218203d203e1014223d0d030c0e0b2001450d0e2001201b3a00002002201d37021c2002200136021820014101201e10142201450d0f200120333700012002201f37021c200220013602180c040b2002280218213d0c020b203e1012223d450d0b0b2002203e36021c2002203d3602180b2009200020016a360200203d20006a2034200110fe011a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10c901201120353a0000200241d0006a20196a201b3a00002033213820350d01410021010c100b2041280200223b41086a2100203b2f0106224320157421014100213d02400240024003402001450d01202d20004108108002223e450d02200120226a2101203d41016a213d200041086a2100203e20204a0d000b203d20206a21430b2042450d01204220206a2142203b20432021746a20136a21414101213c0c100b203b202e6a203d20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10fe011a2001202f4d0d02203f20408020022903702244520d040c3f0b204442808080807083421c84213241cfa0c10021460c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b204442808080807083422984213241a6a0c10021460b2032a721450c010b4131214541eb8bc00021460b2002204536026420022046360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c701200228020822460d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41a891c100412241ca90c100412d1037000b410141011015000b203e41011015000b410141011015000b410941011015000b41a891c10041222046200228020c1037000b4101213c0c010b410221010c020b410221010c010b410221010c000b0b205f20606a215f024002400240205a2059470d00410421310c010b410521310c010b410221010c340b410221010c330b204e20506a214e02400240024020492048470d00410221310c010b410321310c010b410221010c330b410221010c320b20022802402002280244200228024810c80102402006450d00200641246c2145200321460340024020462d0000450d00204641086a280200450d00204641046a280200101f0b204641246a21462045415c6a22450d000b0b02402007450d002003101f0b02402004450d00200441e0016c214520084188016a214603402046107e204641e0016a2146204541a07e6a22450d000b0b02402005450d002008101f0b410110122246450d05204620022d007c3a000020464101410210142247450d06204720022d007d3a0001200228027022452146024020022802742200450d002045214620002101034020462802e40121462001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782231450d002031417f6a214820462f0106450d01204641086a213d410121000c020b410021494104214a4104214b4100214820000d030c040b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a213d204620004102746a41e8016a28020021464100210020014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b417f204841016a220120012048491b2249ad2232421e88a70d042032420286a72201417f4c0d04024002400240024002402001450d0020011012224a450d0d204a203d3602002048450d020c010b4104214a4104203d3602002048450d010b200020462f01064f0d01200041016a214c204620004103746a41086a214d0c020b410121480c020b0240024020462f01042200204628020022462f01064f0d00410121010c010b410121010340200141016a210120462f01042200204628020022462f01064f0d000b0b204620004103746a41086a214d204620004102746a41e8016a28020021464100214c20014101460d00410120016b2101034020462802e4012146200141016a22010d000b0b2031417e6a214e4101214f417f215042022151422021524100215341022154410321554108215641e80121574101214820494101470d0b0c0a0b204a214b2002280270214520022802742200450d010b20002101034020452802e40121452001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002258450d002058417f6a215920452f0106450d01204541e0006a2131410121000c020b4100215a4104215b4104215c410021592048413f4d0d020c110b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a2131204520004102746a41e8016a28020021454100210020014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b417f205941016a220120012059491b225aad2232421e88a70d012032420286a72201417f4c0d01024002400240024002402001450d0020011012225b450d0b205b20313602002059450d020c010b4104215b410420313602002059450d010b200020452f01064f0d01200041016a215d20452000410c6c6a41e0006a215e0c020b41012159205b215c2048413f4b0d110c020b0240024020452f01042200204528020022452f01064f0d00410121010c010b410121010340200141016a210120452f01042200204528020022452f01064f0d000b0b20452000410c6c6a41e0006a215e204520004102746a41e8016a28020021454100215d20014101460d00410120016b2101034020452802e4012145200141016a22010d000b0b2058417e6a215f41012158417f216042022161422021624100216341022164410c216541e000216641e801216741012159205a4101470d0a0c090b41012104410110122258450d03205820484102743a000020484102742245450d140c0f0b100f000b410141011015000b410241011015000b410141011015000b200141041015000b200141041015000b410221310c030b410321310c030b410421310c030b410521310c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402048418080014f0d0041022104410210122258450d02205820484102744101723b0000204841027422450d010c060b024020484180808080044f0d0041042104410410122258450d0320582048410274410272360000204841027422450d010c060b410110122246450d03204641033a00004105210420464101410510142258450d042058204836000120484102742245450d050b410020046b21462004214802400340204b28020021010240200420466a41074b0d00204841086a22002048490d152004410174224f20002000204f491b22004100480d15024002402004450d00205820042000101422580d010c040b200010122258450d030b200021040b204b41046a214b205820486a2001290000370000204641786a2146204841086a21482045417c6a22450d000b2059413f4b0d070c060b200041011015000b410241011015000b410441011015000b410141011015000b410541011015000b200421482059413f4b0d010b4101214541011012224b450d08204b20594102743a00004101210120590d010c020b02402059418080014f0d004102214541021012224b450d07204b20594102744101723b00000c010b024020594180808080044f0d004104214541041012224b450d06204b20594102744102723600000c010b410110122246450d04204641033a0000410521452046410141051014224b450d03204b20593600010b2059410274214f204521010340205c28020022462802002159024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020462802082246413f4b0d0020452001470d01204541016a22012045490d2120454101742200200120012000491b22004100480d212045450d05204b204520001014224b0d060c0f0b2046418080014f0d01204520016b41014b0d02200141026a22002001490d2020454101742268200020002068491b22004100480d202045450d0b204b204520001014224b0d0c0c0f0b204521000c050b20464180808080044f0d01204520016b41034b0d05200141046a22002001490d1e20454101742268200020002068491b22004100480d1e024020450d0020001012224b450d100c070b204b204520001014224b0d060c0f0b204521000c090b20452001470d05204541016a22012045490d1c20454101742200200120012000491b22004100480d1c0240024020450d0020001012224b450d100c010b204b204520001014224b450d0f0b204521010c060b20001012224b450d090b204521010b204b20016a20464102743a00002000200141016a22016b20464f0d060c0c0b204521000b204b20016a20464102744102723600002000200141046a22016b2046490d0a0c040b204521000b204b20016a41033a000002402000200141016a22456b41034b0d00204541046a22682045490d1620004101742231206820682031491b22684100480d16024002402000450d00204b200020681014224b0d010c080b20681012224b450d070b206821000b204b20456a20463600002000200141056a22016b2046490d080c020b20001012224b450d030b204b20016a20464102744101723b00002000200141026a22016b2046490d060b200021450c060b200041011015000b200041011015000b206841011015000b200041011015000b200041011015000b200120466a22452001490d0c20004101742268204520452068491b22454100480d0c02402000450d00204b200020451014224b0d010c040b20451012224b450d030b205c41046a215c204b20016a2059204610fe011a200120466a2101204f417c6a224f0d000b0b024002400240200420486b20014f0d00204820016a22462048490d0c20044101742200204620462000491b22004100480d0c2004450d0120582004200010142258450d020c090b204820016a2146205820486a204b200110fe011a2045450d0a0c090b2000101222580d070b200041011015000b204541011015000b410541011015000b410141011015000b410441011015000b410241011015000b410141011015000b20002104205820486a204b200110fe011a2045450d010b204b101f0b0240205a450d00205b101f0b02402049450d00204a101f0b02402046450d00204641026a22452046490d0120454104204541044b1b22014100480d0120474102200110142247450d02204741026a2058204610fe011a2004450d040c030b204641026a2145204741026a2058204610fe011a20040d020c030b1010000b200141011015000b2058101f0b20022802702002280274200241f8006a28020010c801200241d0026a24002045ad4220862047ad840f0b20014101470d002030280290012015460d010b2030200b6a2230200c470d01410021010c050b200241c0006a21692002280244216a410821684103216b417f216c4102216d41e401216e419c8cc000216f41782170410121710c010b410021310c010b410121310c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a220342003703002002420037033041cc81c0004111200241306a1000200241206a41086a2003290300370300200220022903303703200240024002400240200241206a411041e4a4c100410041001001417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010012203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010122203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101222030d020b200441011015000b41de86c00041331023000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bfb1404047f017e087f017e230041c0076b22022400024002402001450d00200220003602000c010b200241e4a4c1003602000b20022001360204200241e0056a20021016024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903d0064203510d00200241086a200241e0056a41e00110fe011a200241e8016a200241086a41e00110fe011a2002200241e8016a3602d004200241e0056a200241d0046a10cd0120022802e8052103024020022802e405450d0020022802e005101f0b200241e0056a200241e8016a41e00110fe011a200241d0046a200241e0056a101c024002400240024002400240024020022802d0044101470d0020022802d404210120022802d8042200411a460d0120004115470d024102210441f6012100200141d49bc100460d0f200141d49bc10041151080020d020c0f0b200241c8036a200241d0046a41086a41880110fe011a410021040240200241c8036a41086a410020022903c8034201511b2201450d002001450d00410321002001200310bb01450d03410021040c0e0b4176416c20011b21000c0d0b41002100200141e99bc100460d0241002104200141e99bc100411a108002450d0d0b4100210441810121000c0c0b200141206a410020011b210c2001102621064101210041002104200c290300220f2006540d0a4102210041022104200f20064280027c560d0a2006200f5a0d014100210b41002105410021074100210e410421090340412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142200450d062000200637002002402007200e470d00200741016a220a2007490d20200b200a200a200b491b220ead420c7e220f422088a70d20200fa7220a4100480d2002402007450d0020092005200a101422090d010c090b200a10122209450d080b200920056a220a2000360200200a41046a42c08080808005370200200b41026a210b2005410c6a2105200741016a2107200642017c2206200c290300220f540d000c030b0b410021040c0a0b41042109410021074100210e0b410c1012220d450d04412010122200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010142201450d062003ad21062001200f370020200d42c08080808005370204200d2001360200200241f8036a1020200241003602e805200242013703e00541012104410121014101101222000d090c140b200241fc016a41013602002002410436020c2002418cbdc200360208200242013702ec01200241d4bcc2003602e8012002200241086a3602f801200241e8016a41dcbcc200103a000b412041011015000b41c00041011015000b200a41041015000b410c41041015000b412041011015000b41c00041011015000b200241f8036a10200b200241003602e805200242013703e005024020044101460d0020044102470d02410110122201450d0d200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41023a000020022802e40520032802002201470d04200141016a22032001490d1320014101742205200320032005491b22054100480d132001450d0820022802e0052001200510142203450d090c160b41012101410110122200450d0b0b200241e0056a41086a22032003280200220520016a360200200220013602e405200220003602e005200020056a20013a000020022802e4052200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802e0052000200110142200450d050c0f0b410110122201450d0b200241013602e405200241e8056a22032003280200220541016a360200200220013602e005200120056a41003a000020022802e40520032802002201470d02200141016a22032001490d1020014101742205200320032005491b22054100480d102001450d0720022802e0052001200510142203450d080c0c0b20022802e00521000c0e0b20022802e00521030c120b20022802e00521030c0a0b2001101222000d0a0b200141011015000b2005101222030d0d0b200541011015000b2005101222030d040b200541011015000b200120011015000b410141011015000b410141011015000b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000c070b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2205200141086a360200200020016a2006370000200220073602e801200241e8016a200241e0056a101302400240024002402007450d0020092007410c6c6a21082009210303402003280200210a2002200341086a28020022013602e801200241e8016a200241e0056a1013024002400240024020022802e405220b200528020022006b20014f0d00200020016a220c2000490d09200b4101742200200c200c2000491b22004100480d09200b450d0120022802e005200b20001014220b0d020c060b20022802e005210b0c020b20001012220b450d040b200220003602e4052002200b3602e005200528020021000b2005200020016a360200200b20006a200a200110fe011a2003410c6a22032008470d000b0b200241013602e801200241e8016a200241e0056a1013200d280200210b2002200d28020822013602e801200241e8016a200241e0056a101302400240024020022802e4052203200528020022006b20014f0d00200020016a22052000490d0620034101742200200520052000491b22004100480d062003450d0120022802e0052003200010142203450d020c040b20022802e00521030c040b2000101222030d020b200041011015000b200041011015000b200220003602e405200220033602e005200241e8056a28020021000b200241e0056a41086a2205200020016a360200200320006a200b200110fe011a02400240024020022802e4052200200528020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802e0052000200110142200450d020c040b20022802e00521000c040b2001101222000d020b200141011015000b1010000b200220013602e405200220003602e005200241e8056a28020021010b200241e0056a41086a2203200141086a360200200020016a427f3700002003280200210320022802e005210520044101470d0302402007450d002007410c6c21002009210103400240200141046a280200450d002001280200101f0b2001410c6a2101200041746a22000d000b0b0240200e450d002009101f0b0240200d41046a280200450d00200d280200101f0b200d101f0c030b200220053602e405200220033602e005200241e8056a28020021010b200241e8056a200141016a360200200320016a20003a00000b200241e8056a280200210320022802e00521050b200241c0076a24002003ad4220862005ad840be90104027f017e017f017e230041206b22022400200241106a41086a2203420037030020024200370310418295c0004115200241106a1000200241086a20032903003703002002200229031037030002400240024002402002411041e4a4c100410041001001417f460d002002420037031020024110200241106a41084100100141016a41084d0d022002290310210441082105410810122203450d010c030b42052104410821054108101222030d020b200541011015000b41de86c00041331023000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840bc90202027f017e23004180016b22022400200028020021000240024002400240200128020022034110710d002000290300210420034120710d012004200110e501210020024180016a240020000f0b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141c2a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141c2a7c1004102200220006a41800120006b10e401210020024180016a240020000f0b2000418001101a000b2000418001101a000b860605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce0042001081022002200229031022072006290300220842f0b17f427f108202200241206a20006a2203417c6a200520022903007ca7220941e4006e220a4101744196a5c1006a2f00003b00002003417e6a200a419c7f6c20096a4101744196a5c1006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b2007a7220341e3004a0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d03200141c2a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d03200141c2a7c1004102200241206a20006a41800120006b10e4012100200241a0016a240020000f0b412721002005a7220341e3004c0d030b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff03714101744196a5c1006a2f00003b0000200941094a0d030c040b2000418001101a000b2000418001101a000b2003220941094c0d010b200241206a2000417e6a22006a20094101744196a5c1006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141e4a4c1004100200241206a20006a412720006b10e4012100200241a0016a240020000bc80601077f20002802002205410171220620046a2107024002400240024020054104710d0041002101412b418080c40020061b210620002802084101460d010c020b4100210902402002450d002002210a200121080340200920082d000041c00171418001466a2109200841016a2108200a417f6a220a0d000b0b200720026a20096b2107412b418080c40020061b210620002802084101470d010b02400240024002400240024002400240024002402000410c6a280200220920074d0d0020054108710d01200920076b2108410120002d0030220920094103461b2209410371450d0220094102460d034100210b200821090c040b41012108200020062001200210f6010d0a2000280218200320042000411c6a28020028020c1101000f0b41012108200041013a003020004130360204200020062001200210f6010d09200920076b21084101200041306a2d0000220920094103461b2209410371450d0320094102460d0441002107200821090c050b410021092008210b0c010b20084101762109200841016a410176210b0b417f2108200041046a210a200041186a21072000411c6a210502400340200841016a220820094f0d012007280200200a2802002005280200280210110000450d000b41010f0b200041046a280200210a41012108200020062001200210f6010d06200041186a2209280200200320042000411c6a220228020028020c1101000d0620092802002100417f2109200228020041106a21020340200941016a2209200b4f0d04410121082000200a2002280200110000450d000c070b0b41002109200821070c010b20084101762109200841016a41017621070b417f2108200041046a210a200041186a21022000411c6a210102400340200841016a220820094f0d012002280200200a2802002001280200280210110000450d000b41010f0b200041046a280200210a41012108200041186a2209280200200320042000411c6a220228020028020c1101000d0320092802002100417f2109200228020041106a21020340200941016a220920074f0d02410121082000200a2002280200110000450d000c040b0b41000f0b41000f0b41012108200020062001200210f6010d002000280218200320042000411c6a28020028020c1101000f0b20080bd20203037f017e027f230041306b220224004127210302400240024020004290ce00540d00412721030340200241096a20036a2204417c6a200020004290ce0080220542f0b17f7e7ca7220641e4006e22074101744196a5c1006a2f00003b00002004417e6a2007419c7f6c20066a4101744196a5c1006a2f00003b00002003417c6a2103200042ffc1d72f5621042005210020040d000b2005a7220441e3004c0d020c010b20002205a7220441e3004c0d010b200241096a2003417e6a22036a2005a7220641ffff037141e4006e2204419c7f6c20066a41ffff03714101744196a5c1006a2f00003b00000b02400240200441094a0d00200241096a2003417f6a22036a200441306a3a00000c010b200241096a2003417e6a22036a20044101744196a5c1006a2f00003b00000b200141e4a4c1004100200241096a20036a412720036b10e4012103200241306a240020030b960201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141d8c8c2006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141f0cac2006a2d0000220141c9004b0d03200141037441f0b2c1006a21010c010b2000410c7641706a22014180024f0d03200141d0d2c2006a2d00004106742000410676413f7172220141ff034b0d04200141c0b7c1006a2d0000220141364b0d05200141037441c0bbc1006a21010b200129030042012000413f71ad86834200520f0b41d0d4c200200141e0071048000b41e0d4c200200141ca001048000b41f0d4c20020014180021048000b4180d5c20020014180041048000b4190d5c200200141371048000b2701017f2000280200220128020020012802042000280204280200200028020828020010e801000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c200441e4a4c10041c4a7c10020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4104360200200441e4006a4104360200200441c8006a41146a4108360200200441d4006a4109360200200441306a41146a4105360200200420023602582004410136024c20044205370234200441ecc7c2003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a4194c8c200103a000b20042002200320081b360228200441c8006a41146a4104360200200441d4006a4104360200200441306a41146a41033602002004410136024c20044203370234200441fcc6c2003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a4194c7c200103a000b200441e4006a4104360200200441c8006a41146a4104360200200441d4006a4101360200200441306a41146a41043602002004410136024c20044204370234200441a4c7c2003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41c4c7c200103a000b41d4c7c2001024000b130020004102360204200041f4c0c2003602000b3201017f0240410810122202450d0020004288808080800137020420002002360200200242013700000f0b410841011015000b130020004107360204200041ee9cc1003602000b130020004104360204200041c4c2c2003602000be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510142204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310142204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101422040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101422040d0a0c0e0b2005101222040d110b200541011015000b200228020021040c050b200228020021040c070b2003101222040d0b0b200341011015000b200310122204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510122204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101422040d020c070b200228020021040c020b200310122204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011015000b200541011015000b200341011015000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d501200041086a22002001470d000b0b0bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d4012000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d4012000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d5012000417c6a2802002000280200200110d501200041186a2100200341686a22030d000b0b0b2700200028020c200041106a2802001008200041146a350200100c200041186a350200100c00000b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10fe011a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010fd011a0b20010b0c002000350200200110e5010b0d0042f18afdd3f88ff29bfb000b5501017f024002402001418080c400460d0041012104200028021820012000411c6a2802002802101100000d010b02402002450d002000280218200220032000411c6a28020028020c1101000f0b410021040b20040b8008010b7f200028021021030240024002400240024002400240024002400240200028020822044101470d0020030d010c020b2003450d070b02402002450d00200120026a2105200041146a280200417f732106410021072001210320012108024002400340200341016a21090240024020032c0000220a4100480d00200a41ff0171210a20092103200641016a22060d010c030b02400240024020092005460d0020092d0000413f71210b200341026a22032109200a411f71210c200a41ff0171220a41e001490d010c020b4100210b20052103200a411f71210c200a41ff0171220a41e0014f0d010b200b200c41067472210a20092103200641016a22060d010c030b02400240024020032005460d00200341016a2209210d20032d0000413f71200b41067472210b200a41f001490d010c020b2005210d4100200b41067472210b200a41f0014f0d010b200b200c410c7472210a20092103200641016a22060d010c030b02400240200d2005460d00200d41016a2103200d2d0000413f71210a0c010b4100210a200921030b200b410674200c411274418080f0007172200a72220a418080c400460d03200641016a2206450d020b200720086b20036a21072003210820052003470d000c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b2004450d020c010b410021022004450d010b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200220096b2000410c6a28020022064f0d014100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2109410020002d0030220320034103461b2203410371450d0220034102460d03410021080c040b2000280218200120022000411c6a28020028020c1101000f0b2000280218200120022000411c6a28020028020c1101000f0b20092108410021090c010b200941016a4101762108200941017621090b417f2103200041046a210a200041186a21062000411c6a210702400340200341016a220320094f0d012006280200200a2802002007280200280210110000450d000b41010f0b200041046a280200210941012103200041186a220a280200200120022000411c6a220628020028020c1101000d01200a280200210a417f2103200628020041106a210602400340200341016a220320084f0d01200a20092006280200110000450d000b41010f0b41000f0b2000280218200120022000411c6a28020028020c11010021030b20030b7c01017f230041306b22022400200241146a410a3602002002410a36020c200220003602082002200041046a3602102001411c6a2802002100200128021821012002412c6a41023602002002420237021c200241a4c8c2003602182002200241086a36022820012000200241186a10fb012101200241306a240020010b9e0c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b200310e601450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641b8a8c1002107410021084102210941b002210a4188a9c100210b4188a9c100210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe0371410876211341f3adc10021144100211541022116419f01211741b5aec100211841b5aec1002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041b7abc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41f3adc100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241f3adc100470d000b0b41012102200f410171450d0c0c0e0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff0371210041d3afc10021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41d0b2c100460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241d0b2c100470d000b0b41012102200f410171450d0b0c0d0b20082011101a000b201141af021049000b20152011101a000b2011419e011049000b41d4c7c2001024000b41d4c7c2001024000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e0340024002400240024002400240024020024101460d00024020024102460d0020024103470d062005422088a741ff0171417f6a220241044b0d06024020020e050006040503000b200542ffffffff8f6083210541fd002100410321020c070b41dc002100410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c00084210541dc002100410321020c040b200542ffffffff8f608342808080802084210541fb002100410321020c030b200542ffffffff8f608342808080803084210541f5002100410321020c020b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f83200542808080807083842105410321020c020b200542ffffffff8f6083428080808010842105410321020c010b200141186a28020041272001411c6a28020028021011000021020c020b200f2802002000200e280200280210110000450d000b41010f0b20020bbb0201037f23004180016b220224000240024002400240200128020022034110710d002000280200210420034120710d012004ad200110e501210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141c2a7c1004102200220006a4180016a410020006b10e401210020024180016a240020000f0b2004418001101a000b2004418001101a000b9709010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a3602002003428080808080043703082003200036022041002106200341003602182003410036021020032005360230200320053602280240024002400240024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2100200341346a2101200341306a210b4101210603402000200741206a2d00003a00002003200741086a28020036020c20032007410c6a280200360208410021020240024002400240200741186a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b2007411c6a280200220c200128020022044f0d0a200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b2007411c6a28020021040b410121020b200341086a410c6a2004360200200341086a41086a2002360200410021020240024002400240200741106a28020022044101460d00024020044103460d0020044102470d02200341086a41206a2204280200220c200341086a41246a280200460d002004200c41086a360200200c280204410b470d04200c28020028020021040c030b0c030b200741146a280200220c200128020022044f0d0b200b280200200c4103746a220c280204410b470d02200c28020028020021040c010b200741146a28020021040b410121020b200341086a41146a2004360200200341086a41106a20023602000240024020072802004101470d00200741046a2802002202200128020022044f0d07200b28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d072004200241086a3602000b2002280200200341086a200241046a2802001100000d032006200a4f0d02200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d000c030b0b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000f0b41c4c8c200200220041048000b41d4c7c2001024000b41b4c8c200200c20041048000b41b4c8c200200c20041048000b0c002000350200200110e5010b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b22052400200520012002200320044100108502200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa7108402200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff0071108302200641106a20012002200741ff0071108402200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bcdd5020200418080c0000bf0bf0153797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e53797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d204576656e747353797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63653a65787472696e7369635f696e6465784d656d6f557064617465642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6d656d6f2e727353797374656d20506172656e7448617368426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d4163636f756e744e6f6e6365543a3a496e64657845787472696e736963436f756e74416c6c45787472696e736963734c656e426c6f636b4861736845787472696e7369634461746152616e646f6d536565644e756d626572506172656e744861736845787472696e73696373526f6f74446967657374543a3a4469676573744576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e4d656d6f4d61784d656d6f4c656e6774684d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f7570646174655f6d656d6f73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c69642074797065000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72737372632f6c6962636f72652f726573756c742e72733a203a617574683a6c656e41757261204c61737454696d657374616d70436f6e73656e737573204f726967696e616c417574686f7269746965734175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e72734f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e3a636f64652f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f636f6e73656e7375732f7372632f6c69622e7273000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c6f66666c726570304e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e742064617461217265706f72745f6d69736265686176696f726e6f74655f6f66666c696e6572656d61726b7365745f686561705f70616765737365745f636f64657365745f73746f726167652053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f7465207468652070726576696f757320626c6f636b27732076616c696461746f72206d6973736564207468656972206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f75722e5f7265706f7274436f6e73656e7375734f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a68656170706167657300002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f736f72742e7273617373657274696f6e206661696c65643a206d6964203c3d206c656e00000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727373797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e676665657370726f706f73616c73656c656374696f6e636f756e63696c6d656d6f6a6f7973747265616d2d6e6f646500df6acb689907609b0100000037e397fc7c91f5e40100000040fe3ad401f8959a02000000d2bc9897eed08f1501000000dd718d5cc53262d4010000004469676573744974656d206e6f7420657175616c6e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d6554696d657374616d70204469645570646174656163636f756e742068617320746f6f206665772066756e647354696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f74696d657374616d702f7372632f6c69622e727354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f6442616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e6365496e646963657320456e756d53657454696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c426c6f636b506572696f643e206265747765656e2073657175656e7469616c20626c6f636b734e65774163636f756e745265617065644163636f756e745472616e73666572205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e20416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e4e65774163636f756e74496e6465782041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465782f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f696e64696365732f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f62616c616e6365732f7372632f6c69622e727354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e74206461746142616c616e636573204578697374656e7469616c4465706f7369746e6f7420656e6f75676820667265652066756e6473496e64696365734e657874456e756d536574543a3a4163636f756e74496e646578456e756d5365742054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e7472616e736665727365745f62616c616e636520536574207468652062616c616e636573206f66206120676976656e206163636f756e742e77686f66726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572207374616b65722e6465737476616c756542616c616e636573546f74616c49737375616e6365543a3a42616c616e63654578697374656e7469616c4465706f7369745472616e736665724665654372656174696f6e46656556657374696e6756657374696e675363686564756c653c543a3a42616c616e63653e4672656542616c616e6365526573657276656442616c616e63652054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e20285468697320697320646966666572656e7420616e642077686f6c6c7920756e72656c6174656420746f207468652060426f6e64616765602073797374656d207573656420696e20746865207374616b696e67206d6f64756c652e29205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420697320616c6f6e65207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865726d6f72652c20604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e75702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e204174206c6561737420617320626967206173205265636c61696d5265626174652e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420616c6c6f77656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20616d6f756e74206f66207374616b65206f6e207468652073797374656d2e73657420536574207468652063757272656e742074696d652e2045787472696e736963207769746820746869732063616c6c2073686f756c6420626520706c616365642061742074686520737065636966696320706f736974696f6e20696e20746865206561636820626c6f636b2028737065636966696564206279207468652054726169743a3a54494d455354414d505f5345545f504f534954494f4e29207479706963616c6c7920617420746865207374617274206f6620746865206561636820626c6f636b2e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e74207370656369666965642062792060626c6f636b5f706572696f64602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d704e6f77426c6f636b506572696f6444696455706461746520446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d2028616e6420616476697365642920706572696f64206265747765656e20626c6f636b732e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e42616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656542616c616e6365732056657374696e67496e6469636573204e657874456e756d53657476657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c756562616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e74676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c7565436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573456c656374696f6e53746172746564416e6e6f756e63696e6753746172746564416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465644170706c69656452657665616c65642041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f644175746f53746172745374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e526f756e644578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e436f6d6d69746d656e74735665633c543a3a486173683e566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e416e6e6f756e63696e67506572696f6452657665616c696e67506572696f64436f756e63696c53697a6543616e6469646163794c696d69744d696e436f756e63696c5374616b654e65775465726d4475726174696f6e4d696e566f74696e675374616b65436f756e63696c456c656374696f6e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e72734f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167656d696e696d756d207374616b65206d7573742062652070726f7669646564656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b65214f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e67207374616765766f74696e67207374616b6520746f6f206c6f77436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e6720737461676573616c7420746f6f206c617267656d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f70706564436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a656170706c7972657665616c7365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f647365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b657365745f706172616d5f6e65775f7465726d5f6475726174696f6e7365745f706172616d5f636f756e63696c5f73697a657365745f706172616d5f63616e6469646163795f6c696d69747365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f7374617274666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747372632f6c6962616c6c6f632f7665632e7273617373657274696f6e206661696c65643a20656e64203c3d206c656e63616e6e6f74207472616e7366657220696c6c69717569642066756e64735374616b696e6720426f6e646167655374616b696e67204e6f6d696e61746f7273466f725265776172644f66666c696e655761726e696e674f66666c696e65536c617368204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e42616c616e6365204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e756e7374616b656e6f6d696e617465756e6e6f6d696e61746572656769737465725f707265666572656e6365737365745f73657373696f6e735f7065725f6572617365745f626f6e64696e675f6475726174696f6e7365745f76616c696461746f725f636f756e74666f7263655f6e65775f6572617365745f6f66666c696e655f736c6173685f67726163657365745f696e76756c6e657261626c657320536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e205365742074686520676976656e206163636f756e74277320707265666572656e636520666f7220736c617368696e67206265686176696f75722073686f756c64207468657920626520612076616c696461746f722e20416e206572726f7220286e6f2d6f7029206966206053656c663a3a696e74656e74696f6e7328295b696e74656e74696f6e735f696e6465785d20213d206f726967696e602e696e74656e74696f6e735f696e646578707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2057696c6c2070616e69632069662063616c6c6564207768656e20736f757263652069736e27742063757272656e746c79206e6f6d696e6174696e67207461726765742e2055706461746573204e6f6d696e6174696e672c204e6f6d696e61746f7273466f7220616e64204e6f6d696e6174696f6e42616c616e63652e7461726765745f696e6465787461726765742052657472616374207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e204465636c617265207468652064657369726520746f207374616b6520666f7220746865207472616e736163746f722e5374616b696e675374616b696e6720496e76756c657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b207165645374616b696e672043757272656e744f66666c696e65536c6173685374616b696e6720496e74656e74696f6e735374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672056616c696461746f72507265666572656e636573706f73206465726976656420636f72726563746c792066726f6d2053656c663a3a696e74656e74696f6e7328293b206170706c795f756e7374616b652063616e206f6e6c79206661696c20696620706f732077726f6e673b2053656c663a3a696e74656e74696f6e73282920646f65736e2774206368616e67653b207165645374616b696e6720466f7263696e674e65774572615374616b696e6720426f6e64696e674475726174696f6e496e76616c696420696e6465785374616b696e672043757272656e744e6f6d696e61746f7273466f7200000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727356616c696461746f72436f756e744d696e696d756d56616c696461746f72436f756e7453657373696f6e7350657245726153657373696f6e52657761726450657262696c6c4f66666c696e65536c6173684772616365426f6e64696e674475726174696f6e496e76756c657261626c657343757272656e7445726156616c696461746f72507265666572656e636573496e74656e74696f6e734e6f6d696e6174696e674e6f6d696e61746f7273466f7243757272656e744e6f6d696e61746f7273466f7243757272656e7453657373696f6e52657761726443757272656e744f66666c696e65536c6173684e65787453657373696f6e735065724572614c6173744572614c656e6774684368616e67655374616b6552616e6765506169724f663c42616c616e63654f663c543e3e426f6e64616765536c617368436f756e74466f7263696e674e65774572612829526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520626c6f636b20617420776869636820746865206077686f6027732066756e6473206265636f6d6520656e746972656c79206c69717569642e20546865206869676865737420616e64206c6f77657374207374616b65642076616c696461746f7220736c61736861626c652062616c616e6365732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e742e20416c6c206e6f6d696e61746f72202d3e206e6f6d696e65652072656c6174696f6e73686970732e20416c6c20746865206163636f756e7473207769746820612064657369726520746f207374616b652e20507265666572656e636573207468617420612076616c696461746f72206861732e205468652063757272656e742065726120696e6465782e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c65206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c69736520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e5265776172645374616b696e67205374616b6552616e67655374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e735065724572615374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204f66666c696e65536c6173685374616b696e672053657373696f6e5265776172640000000000000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7374616b696e672f7372632f6c69622e727343616e6e6f74207374616b6520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74207374616b6520696620616c7265616479207374616b65642e43616e6e6f74206e6f6d696e61746520696620616c7265616479206e6f6d696e6174696e672e43616e6e6f74206e6f6d696e61746520696620616c7265616479207374616b65642e5374616b696e67204e6f6d696e6174696e674163636f756e74206d757374206265206e6f6d696e6174696e67496e76616c69642074617267657420696e64657863616e6e6f7420756e7374616b65207768656e2074686572652061726520746f6f20666577207374616b6564207061727469636970616e747350726f706f73616c4372656174656450726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564566f74656454616c6c7946696e616c697a656452756e74696d655570646174656450726f706f73616c5665746f656420526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e4861736854616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e2f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e7273417070726f76616c51756f72756d4d696e5374616b6542616c616e63654f663c543e43616e63656c6c6174696f6e46656552656a656374696f6e466565566f74696e67506572696f644e616d654d61784c656e4465736372697074696f6e4d61784c656e5761736d436f64654d61784c656e50726f706f73616c436f756e7450726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e41637469766550726f706f73616c4964735665633c7533323e5761736d436f6465427948617368543a3a486173685665633c75383e566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c207533322954616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e20476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e466565617070726f76616c2071756f726f6d206d7573742062652067726561746572207468616e207a65726f50726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732052656a656374696f6e46656550726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c732054616c6c79526573756c74736372656174655f70726f706f73616c766f74655f6f6e5f70726f706f73616c63616e63656c5f70726f706f73616c7665746f5f70726f706f73616c7365745f617070726f76616c5f71756f72756d6e65775f76616c75652043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f672920606060766f746520706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67297374616b656e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f7273466565732043757272656e745472616e73616374696f6e46656543686172676564204665652063686172676564202865787472696e7369635f696e6465782c206665655f616d6f756e7429753332416d6f756e7453756469644b65794368616e67656420546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e4163636f756e7449642041207375646f206a75737420746f6f6b20706c6163652e626f6f6c4e657753657373696f6e204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f7375646f2f7372632f6c69622e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f73657373696f6e2f7372632f6c69622e7273696e76616c69642073616c7446656573205472616e73616374696f6e4279746546656546656573205472616e73616374696f6e42617365466565627974657320666565206f766572666c6f776e6f2065787472696e73696320696e64657820666f756e6466656520676f74206f766572666c6f772061667465722063686172676553657373696f6e204c6173744c656e6774684368616e676553657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e67746853657373696f6e204e6578744b6579466f720000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f6f70732f61726974682e7273466565735472616e73616374696f6e4261736546656541737365744f663c543e5472616e73616374696f6e4279746546656543757272656e745472616e73616374696f6e46656520546865206065787472696e7369635f696e646578203d3e20616363756d756c617465645f6665657360206d61702c20636f6e7461696e696e67207265636f72647320746f20747261636b20746865206f766572616c6c2063686172676564206665657320666f722065616368207472616e73616374696f6e2e20416c6c207265636f7264732073686f756c642062652072656d6f7665642061742066696e616c6973652073746167652e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e7375646f7365745f6b65796e65773c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636570726f706f73616c426f783c543a3a50726f706f73616c3e5375646f4b65797365745f6c656e677468666f7263655f6e65775f73657373696f6e20466f726365732061206e65772073657373696f6e2e6170706c795f72657761726473205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e436f6d706163743c543a3a426c6f636b4e756d6265723e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e56616c696461746f727353657373696f6e4c656e67746843757272656e74496e64657843757272656e745374617274543a3a4d6f6d656e74466f7263696e674e657753657373696f6e4c6173744c656e6774684368616e67654e6578744b6579466f724e65787453657373696f6e4c656e67746820546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206973207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b6579496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165642f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b696e697469616c6973655f626c6f636b6170706c795f65787472696e736963696e686572656e745f65787472696e73696373636865636b5f696e686572656e747376616c69646174655f7472616e73616374696f6e2f55736572732f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e302e302f7372632f636f6465632e727300000000000000000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000000000000000000000000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000000000002f72757374632f363333643735616331376661316131626461663539323338393565366435623766333034306339322f7372632f6c6962616c6c6f632f736c6963652e7273436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e64734174436f756e63696c5465726d456e6465644e6577436f756e63696c5465726d53746172746564426c6f636b4e756d626572696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64652f55736572732f6d6f6b687461722f7061726974792f7375627374726174652d6e6f64652d6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e727353746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e45787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e6365626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e646578626164207369676e617475726520696e2065787472696e7369637372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e7273416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e5465726d456e64734174543a3a426c6f636b4e756d626572436f756e63696c6d757374207365742066757475726520626c6f636b206e756d62657263616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f725f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e7365745f636f756e63696c6164645f636f756e63696c5f6d656d62657272656d6f76655f636f756e63696c5f6d656d6265727365745f7465726d5f656e64735f61742053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f7665543a3a4163636f756e74496420416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e74735665633c543a3a4163636f756e7449643e61757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e4578706c69636974207265706f7274696e67206e6f7420616c6c6f77656445787472696e7369635375636365737345787472696e7369634661696c656420416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e48617368206e6f7420657175616c00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f316361346363302f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e7273617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a2052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e676361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e72730000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839397372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d7372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f66206000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e85927372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f6620600041f0bfc1000bc89501000000003f0110000b00000000000000ac9710000100000000000000000000006452100000000000000000006c4b1000280000004a011000420000001b000000010000009d0110001e000000bb0110005d0000004e01000003000000000000001e0210000c0000000100000000000000794f10000c000000000000002a021000080000000000000064521000a063100000000000000000006452100000000000000000000100000000000000320210000e0000000000000000000000d03f1000030000000000000000000000000000000000000064521000906310000000000000000000645210000000000000000000000000000000000040021000100000000000000000000000d03f1000030000000000000000000000000000000000000064521000906310000000000000000000645210000000000000000000000000000000000050021000090000000100000000000000604e10000e00000000000000dc351000070000000000000064521000b863100000000000000000006452100000000000000000000100000000000000590210000d0000000100000000000000d03f10000300000000000000e33510000700000000000000645210008064100000000000000000006452100000000000000000000100000000000000660210000a0000000000000000000000dc351000070000000000000000000000000000000000000064521000b86310000000000000000000645210000000000000000000010000000000000070021000060000000000000000000000604e10000e0000000000000000000000000000000000000064521000a06310000000000000000000b063100001000000000000000100000000000000760210000a0000000000000000000000dc351000070000000000000000000000000000000000000064521000b863100000000000000000006452100000000000000000000100000000000000800210000e0000000000000000000000dc351000070000000000000000000000000000000000000064521000b8631000000000000000000064521000000000000000000001000000000000008e02100006000000000000000000000094021000090000000000000000000000000000000000000064521000c8631000000000000000000064521000000000000000000001000000000000009d021000060000000000000000000000a30210001a0000000000000000000000000000000000000064521000d86310000000000000000000645210000000000000000000010000000c00000000000000010000000d0000000c00000000000000010000000e000000bd021000420000000c00000000000000010000000f0000000c0000000000000001000000100000000c00000000000000010000001000000000000000ff021000040000000100000000000000794f10000c00000000000000e33510000700000000000000645210008064100000000000000000006452100000000000000000000100000000000000030310000d0000000000000000000000d03f1000030000000000000000000000000000000000000064521000906410000000000000000000645210000000000000000000010000000c0000000000000001000000100000000c000000000000000100000011000000d14e1000230000004a011000420000001b0000000100000000000000530310000b00000000000000e4641000010000000000000000000000645210000000000000000000000000003d0910000400000000000000e335100007000000a003100019000000c003100048000000bb0100002d00000064521000000000001d041000020000000804100015000000e5030000050000005704100022000000790410005b000000b500000003000000d404100028000000790410005b000000bb000000030000006c4b1000280000000105100060000000b8000000010000007005100019000000900510005b000000ef0000001e000000000000005306100012000000000000009c661000010000000000000000000000b4661000010000000000000000000000650610000c00000000000000bc661000010000000000000000000000d4661000010000000000000000000000710610000600000000000000dc661000010000000000000000000000f4661000010000000000000000000000770610000e00000000000000fc661000010000000000000000000000146710000100000000000000000000008506100008000000000000001c671000010000000000000000000000346710000100000000000000000000008d0610000b000000000000003c67100001000000000000000000000054671000010000000000000000000000ef0710000700000000000000e335100007000000d50710001a00000000000000910710000700000000000000980710003d000000400710005100000000000000390710000700000000000000e3351000070000001e0710001b000000000000001607100005000000000000001b07100003000000d70610003f000000000000005f4410000300000000000000e335100007000000c50610001200000000000000b30610000500000000000000b80610000d000000980610001b00000000000000ff07100013000000000000000000000012081000120000000000000000000000000000000000000064521000a86710000000000000000000645210000000000000000000000000000c00000000000000010000000d000000d14e1000230000000105100060000000b800000001000000a008100048000000b001000023000000a008100048000000b101000023000000790810001c0000005e53100018000000e40300000d0000003008100049000000870200001d00000030081000490000009d0000003a0000003008100049000000a40000003000000000000000e80810000600000000000000120000000000000000000000130000000000000000000000020000000000000000000000000000000000000014000000000000000000000000000000ee0810000900000000000000150000000000000000000000160000000000000000000000000000001700000000000000000000000200000000000000000000000000000000000000f70810000900000000000000180000000000000000000000190000000000000000000000000000001a000000000000000000000002000000000000000000000000000000000000000009100004000000000000001b00000000000000020000000000000000000000000000000200000000000000000000000000000002000000000000000000000000000000000000000409100007000000000000001c00000000000000000000001d0000000000000000000000000000001e0000000000000000000000000000001f0000000000000000000000000000000b09100008000000000000002000000000000000000000002100000000000000000000000000000022000000000000000000000000000000230000000000000000000000000000001309100007000000000000002400000000000000000000002500000000000000000000000000000026000000000000000000000000000000270000000000000000000000000000001a0910000700000000000000280000000000000000000000290000000000000000000000000000002a0000000000000000000000000000002b0000000000000000000000000000002109100004000000000000002c00000000000000000000002d000000000000000000000002000000000000000000000000000000000000002e0000000000000000000000000000005444100004000000000000002f00000000000000000000003000000000000000000000000000000031000000000000000000000000000000320000000000000000000000000000002509100009000000000000003300000000000000000000003400000000000000000000000000000035000000000000000000000000000000360000000000000000000000000000002e091000080000000000000037000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a0000000000000000000000000000003609100007000000000000003b00000000000000000000003c0000000000000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003d09100004000000000000003f00000000000000000000004000000000000000000000000000000041000000000000000000000000000000420000000000000000000000ea0910002b000000150a100060000000b400000004000000e80a100030000000150a100060000000a800000004000000180b10004c000000150a100060000000a90000000400000000000000640b10000a000000000000005c811000020000000000000000000000f46c10000100000000000000000000006e0b10000d00000000000000ac971000010000000000000000000000fc6c10000100000000000000000000007b0b10000800000000000000046d1000040000000000000000000000246d10000100000000000000c60b10001b000000af0b1000170000002440100009000000244010000900000061221000070000006122100007000000830b10002c00000000000000e10b10000f00000000000000586d1000020000000000000000000000686d1000040000000000000024401000090000006b0c10000c000000f00b1000220000006452100000000000120c100041000000530c1000180000006c4b100028000000770c10005e00000048000000010000006c4b100028000000d50c10005f000000a8000000010000006c4b100028000000150a1000600000009c00000001000000d14e100023000000770c10005e0000004800000001000000d14e100023000000150a1000600000009c0000000100000000000000b80d10000b0000000000000000000000c30d10000f0000000000000000000000000000000000000064521000986e10000000000000000000a86e100001000000000000000100000000000000d20d1000070000000100000000000000c30d10000f000000000000000d501000110000000000000064521000b06e10000000000000000000c06e10000100000000000000010000000c000000000000000100000043000000ef0d10001f0000000c000000000000000100000010000000d90d100016000000000000000e0e10000800000000000000206f1000020000000000000000000000506f1000010000000000000000000000160e10000b00000000000000586f1000030000000000000000000000a06f10000100000000000000000000009d0e10000400000000000000624410002300000000000000a10e100005000000000000004d0e100013000000680e10003500000000000000460e10000300000000000000624410002300000000000000490e100004000000000000004d0e10001300000000000000600e100008000000000000004d0e100013000000210e10002500000000000000ae0e10000d0000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000bc71100001000000000000000100000000000000c50e1000120000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000c471100001000000000000000100000000000000d70e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000cc71100001000000000000000100000000000000e20e10000b0000000000000000000000bb0e10000a00000000000000000000000000000000000000645210004c7210000000000000000000d471100001000000000000000100000000000000ed0e1000070000000100000000000000794f10000c00000000000000f40e10001b0000000000000064521000dc7110000000000000000000ec711000010000000000000000000000000000000f0f10000b0000000100000000000000794f10000c00000000000000bb0e10000a00000000000000645210004c7210000000000000000000f47110000b0000000000000001000000000000001a0f10000f0000000100000000000000794f10000c00000000000000bb0e10000a00000000000000645210004c72100000000000000000005c7210000c0000000000000001000000dc14100029000000a81410003400000083141000250000003a141000490000000c00000000000000010000000d0000000414100036000000d0111000270000006452100000000000f7111000530000004a1210005a000000a412100055000000f91210004f000000481310005000000098131000150000006452100000000000ad131000570000008b111000450000000c000000000000000100000044000000290f10005d000000860f1000270000006452100000000000ad0f10005b000000081010005c000000641010004a0000006452100000000000ae1010005d0000000b1110002d000000645210000000000038111000530000008b1110004500000000000000051510000300000000000000e872100001000000000000000000000000731000080000000000000000000000bb1610000300000000000000be16100012000000081510001600000064521000000000001e15100055000000731510005b000000ce1510005d0000002b1610002f00000064521000000000005a1610006100000000000000d9161000030000000000000000000000fb4510000900000000000000000000000000000000000000645210002474100000000000000000003474100001000000000000000100000000000000dc1610000b0000000000000000000000fb4510000900000000000000000000000000000000000000645210003c74100000000000000000004c74100001000000000000000100000000000000e716100009000000000000000000000045401000040000000000000000000000000000000000000064521000547410000000000000000000647410000100000000000000010000000c00000000000000010000000e0000004e171000240000000c0000000000000001000000450000001d171000310000000c00000000000000010000000d000000f01610002d000000d14e100023000000d50c10005f000000a80000000100000000000000ac1810000f000000000000006452100000000000000000000000000068761000010000000000000000000000bb1810001100000000000000088f100001000000000000000000000064521000000000000000000000000000cc1810000f000000000000006452100000000000000000000000000064521000000000000000000000000000db1810000d000000000000006452100000000000000000000000000064521000000000000000000000000000e81810000b000000000000006452100000000000000000000000000064521000000000000000000000000000f318100010000000000000006452100000000000000000000000000064521000000000000000000000000000031910000e000000000000006452100000000000000000000000000064521000000000000000000000000000111910000e00000000000000649f1000010000000000000000000000645210000000000000000000000000001f1910000700000000000000ac971000010000000000000000000000645210000000000000000000000000002e33100005000000000000007076100002000000000000000000000064521000000000000000000000000000261910000800000000000000807610000300000000000000000000006452100000000000000000002e191000170000002440100009000000a3331000040000002440100009000000a333100004000000244010000900000000000000721a100009000000000000000000000045401000040000000000000000000000000000000000000064521000a47b1000000000000000000064521000000000000000000001000000000000007b1a1000050000000000000000000000801a10001d0000000000000000000000000000000000000064521000b47b1000000000000000000064521000000000000000000000000000000000009d1a1000050000000000000000000000d03f1000030000000000000000000000000000000000000064521000c47b100000000000000000006452100000000000000000000100000000000000a21a10001400000000000000000000000d501000110000000000000000000000000000000000000064521000e47b100000000000000000006452100000000000000000000100000000000000b61a1000120000000100000000000000794f10000c00000000000000c81a10001f0000000000000064521000d47b100000000000000000006452100000000000000000000100000000000000e71a10000a00000000000000000000000d501000110000000000000000000000000000000000000064521000e47b100000000000000000006452100000000000000000000100000000000000f11a10000f0000000100000000000000794f10000c00000000000000001b1000130000000000000064521000d47b100000000000000000006452100000000000000000000100000000000000131b10000b00000000000000000000001e1b10000c0000000000000000000000000000000000000064521000e47b1000000000000000000064521000000000000000000001000000000000002a1b1000050000000100000000000000dc35100007000000000000002f1b1000450000000000000064521000f47b100000000000000000006452100000000000000000000100000000000000741b1000100000000000000000000000604e10000e0000000000000000000000000000000000000064521000047c1000000000000000000064521000000000000000000001000000000000001f3510000c0000000000000000000000604e10000e0000000000000000000000000000000000000064521000047c100000000000000000006452100000000000000000000100000000000000841b10000f0000000000000000000000604e10000e0000000000000000000000000000000000000064521000047c100000000000000000006452100000000000000000000100000000000000931b10000b0000000000000000000000d03f1000030000000000000000000000000000000000000064521000147c1000000000000000000064521000000000000000000001000000000000009e1b10000e0000000000000000000000d03f1000030000000000000000000000000000000000000064521000247c100000000000000000006452100000000000000000000100000000000000ac1b10000f0000000000000000000000f83410000c0000000000000000000000000000000000000064521000347c100000000000000000006452100000000000000000000100000000000000bb1b10000f0000000000000000000000604e10000e0000000000000000000000000000000000000064521000447c100000000000000000006452100000000000000000000100000000000000ca1b10000e0000000000000000000000f83410000c0000000000000000000000000000000000000064521000547c10000000000000000000645210000000000000000000010000000c0000000000000001000000460000000c00000000000000010000000d0000000c0000000000000001000000430000000c0000000000000001000000470000000c0000000000000001000000100000000c0000000000000001000000480000000c0000000000000001000000490000000c00000000000000010000004a0000000c00000000000000010000004b0000000c00000000000000010000004c0000000c00000000000000010000004d0000000c00000000000000010000004e0000006c4b100028000000e71b1000510000008102000001000000d14e100023000000e71b1000510000008102000001000000000000000c2010000500000000000000807f100001000000000000000000000064521000000000000000000000000000833e10000400000000000000987f100002000000000000000000000064521000000000000000000000000000112010000600000000000000c87f1000030000000000000000000000645210000000000000000000000000001720100014000000000000004ca21000010000000000000000000000645210000000000000000000000000002b20100013000000000000004ca21000010000000000000000000000645210000000000000000000000000003e20100010000000000000004ca21000010000000000000000000000645210000000000000000000000000004e2010001b0000000000000010801000010000000000000000000000645210000000000000000000000000006920100017000000000000001080100001000000000000000000000064521000000000000000000000000000802010001a0000000000000010801000010000000000000000000000645210000000000000000000000000009a2010001b000000000000002880100001000000000000000000000064521000000000000000000000000000b52010001b000000000000004080100001000000000000000000000064521000000000000000000000000000d020100016000000000000005880100001000000000000000000000064521000000000000000000000000000e620100019000000000000007080100001000000000000000000000064521000000000000000000000000000ff2010001a00000000000000288010000100000000000000000000006452100000000000000000000000000019211000130000000000000064521000000000000000000000000000645210000000000000000000000000002c21100014000000000000006452100000000000000000000000000064521000000000000000000000000000402110000e000000000000008880100001000000000000000000000064521000000000000000000000000000143f10000500000000000000f83410000c00000000000000772110000a00000000000000dc3510000700000000000000143f10000500000000000000f83410000c00000000000000772110000a00000000000000dc3510000700000000000000833e10000400000000000000794f10000c00000000000000812110000400000000000000e33510000700000000000000712110000600000000000000604e10000e000000000000006b2110000600000000000000f83410000c00000000000000632110000800000000000000604e10000e00000000000000572110000c00000000000000d03f10000300000000000000522110000500000000000000d03f100003000000000000004e21100004000000000000004540100004000000982110001c0000008521100013000000770400000900000000000000f621100006000000000000003c81100001000000000000000000000044811000010000000000000000000000fc2110000e00000000000000788e10000200000000000000000000004c8110000200000000000000000000000a2210000c000000000000005c8110000200000000000000000000006c8110000100000000000000612210000700000002231000380000006822100055000000bd2210004500000024401000090000006122100007000000162210004b00000000000000143f1000050000000000000064521000000000000000000000000000588310000300000000000000000000003a23100007000000000000007083100001000000000000000000000088831000030000000000000000000000412310000800000000000000a083100001000000000000000000000064521000000000000000000000000000492310000a00000000000000b8831000010000000000000000000000d0831000020000000000000000000000532310001400000000000000e083100002000000000000000000000010841000030000000000000000000000672310001400000000000000f49a1000010000000000000000000000288410000100000000000000000000007b2310001400000000000000f49a1000010000000000000000000000308410000100000000000000000000008f23100013000000000000003884100001000000000000000000000050841000010000000000000000000000a22310000d00000000000000149b100001000000000000000000000058841000020000000000000000000000af23100017000000000000003884100001000000000000000000000068841000010000000000000000000000c623100011000000000000007084100001000000000000000000000088841000010000000000000011271000300000006452100000000000da2610003700000000000000ea2510001000000000000000f02410000c000000aa261000300000006452100000000000da2610003700000000000000a42610000600000000000000624410002300000000000000982610000c00000000000000f02410000c0000001b261000440000005f2610003900000000000000ea2510001000000000000000f02410000c00000000000000fa2510000500000000000000ff2510001c0000004e251000560000006452100000000000a4251000460000002825100026000000fc2410002c000000000000005f4410000300000000000000f02410000c000000d024100020000000382410004f00000087241000490000001424100024000000000000000a2410000a000000000000000d50100011000000d723100033000000f028100048000000f10900000e00000000000000382910000e0000000000000000000000d03f10000300000000000000000000000000000000000000645210008c8c10000000000000000000748b10000100000000000000010000000000000046291000150000000000000000000000d03f10000300000000000000000000000000000000000000645210007c8b100000000000000000008c8b1000010000000000000001000000000000005b2910000e0000000000000000000000604e10000e0000000000000000000000000000000000000064521000d48b10000000000000000000948b100001000000000000000100000000000000692910000d0000000000000000000000762910000700000000000000000000000000000000000000645210009c8b10000000000000000000ac8b1000010000000000000001000000000000000a2210000c000000000000000000000076291000070000000000000000000000000000000000000064521000b48b10000000000000000000c48b1000010000000000000001000000000000007d291000110000000000000000000000d03f10000300000000000000000000000000000000000000645210008c8c10000000000000000000cc8b1000010000000000000001000000000000008e2910000f0000000000000000000000604e10000e0000000000000000000000000000000000000064521000d48b10000000000000000000e48b1000010000000000000001000000000000009d2910000c00000000000000000000000d501000110000000000000000000000000000000000000064521000bc8c10000000000000000000ec8b100002000000000000000100000000000000a92910000a0000000000000000000000604e10000e0000000000000000000000000000000000000064521000748c10000000000000000000fc8b100001000000000000000100000000000000b3291000140000000100000000000000794f10000c00000000000000ff2510001c0000000000000064521000048c10000000000000000000148c100001000000000000000100000000000000c72910000a00000000000000000000000d501000110000000000000000000000000000000000000064521000bc8c100000000000000000001c8c100001000000000000000100000000000000d12910000a0000000100000000000000794f10000c00000000000000794f10000c0000000000000064521000a48c10000000000000000000248c100001000000000000000000000000000000db2910000d0000000100000000000000794f10000c000000000000000d501000110000000000000064521000bc8c100000000000000000002c8c100001000000000000000100000000000000e8291000140000000100000000000000794f10000c000000000000000d501000110000000000000064521000bc8c10000000000000000000348c100001000000000000000100000000000000fc291000140000000000000000000000f83410000c00000000000000000000000000000000000000645210003c8c10000000000000000000ac8b100001000000000000000100000000000000102a1000130000000000000000000000f83410000c00000000000000000000000000000000000000645210003c8c10000000000000000000c48b100001000000000000000100000000000000232a1000120000000000000000000000604e10000e0000000000000000000000000000000000000064521000a48c100000000000000000004c8c100001000000000000000000000000000000352a1000130000000000000000000000604e10000e0000000000000000000000000000000000000064521000748c10000000000000000000548c100001000000000000000100000000000000482a10000a0000000000000000000000522a10001400000000000000000000000000000000000000645210005c8c100000000000000000006c8c100001000000000000000100000000000000662a1000070000000100000000000000794f10000c00000000000000604e10000e0000000000000064521000748c10000000000000000000848c1000010000000000000001000000000000006d2a10000a0000000100000000000000794f10000c00000000000000d03f10000300000000000000645210008c8c100000000000000000009c8c100001000000000000000100000000000000772a10000d0000000000000000000000842a1000020000000000000000000000000000000000000064521000a48c10000000000000000000b48c100001000000000000000000000000000000862a10000f0000000000000000000000952a1000280000000000000000000000000000000000000064521000bc8c10000000000000000000cc8c1000010000000000000001000000f12f10002a0000000c00000000000000010000004f000000a12f100050000000782f1000290000000c000000000000000100000050000000302f1000480000000c000000000000000100000051000000dc2e1000540000008e2e10004e0000000c00000000000000010000004d000000602e10002e0000008c2d100069000000f52d10006b000000752d1000170000000c000000000000000100000052000000532d1000220000002a2d100029000000022d100028000000dd2c1000250000009c2c1000410000000c000000000000000100000044000000782c100024000000402c1000380000000c000000000000000100000047000000042c10003c0000000c00000000000000010000000e000000c72b10003d0000000c000000000000000100000043000000532b1000740000000c00000000000000010000000d000000392b10001a0000000c000000000000000100000010000000bd2a10007c00000080311000190000003031100048000000bb0100002d000000f0301000390000003031100048000000100200002d000000f028100048000000eb0900000a0000006c4b100028000000993110005e0000005300000001000000d14e100023000000993110005e000000530000000100000000000000fa3210000f00000000000000788e1000020000000000000000000000888e1000030000000000000000000000093310001000000000000000788e100002000000000000000000000064521000000000000000000000000000193310001500000000000000a08e1000020000000000000000000000645210000000000000000000000000002e3310000500000000000000b08e1000030000000000000000000000c88e1000040000000000000000000000333310000e00000000000000e88e100001000000000000000000000064521000000000000000000000000000413310000e00000000000000f08e1000020000000000000000000000008f10000100000000000000000000004f3310000e00000000000000088f1000010000000000000000000000108f100001000000000000002440100009000000d03f100003000000bf3310000800000029341000270000005034100040000000d03f1000030000001b3410000e0000002440100009000000d03f1000030000001334100008000000bf33100008000000c733100028000000ef331000140000000334100010000000a733100018000000d03f100003000000a333100004000000753310002e000000d03f1000030000005d331000180000006c4b1000280000009034100052000000ce0000000100000000000000e23410000e0000000000000000000000d03f1000030000000000000000000000000000000000000064521000a49310000000000000000000b493100002000000000000000100000000000000f0341000080000000000000000000000f83410000c0000000000000000000000000000000000000064521000c49310000000000000000000d493100001000000000000000100000000000000043510000f0000000000000000000000f83410000c0000000000000000000000000000000000000064521000dc9310000000000000000000ec93100001000000000000000100000000000000133510000c0000000000000000000000f83410000c0000000000000000000000000000000000000064521000f4931000000000000000000004941000010000000000000001000000000000001f3510000c0000000000000000000000604e10000e00000000000000000000000000000000000000645210000c94100000000000000000001c941000010000000000000001000000000000002b3510000a0000000000000000000000d03f1000030000000000000000000000000000000000000064521000249410000000000000000000645210000000000000000000010000000000000035351000110000000000000000000000d03f10000300000000000000000000000000000000000000645210003494100000000000000000006452100000000000000000000100000000000000463510000e0000000000000000000000d03f10000300000000000000000000000000000000000000645210004494100000000000000000006452100000000000000000000100000000000000543510000d0000000000000000000000d03f1000030000000000000000000000000000000000000064521000549410000000000000000000649410000100000000000000010000000000000061351000090000000100000000000000d03f100003000000000000006a3510004b00000000000000645210006c94100000000000000000007c94100001000000000000000100000000000000b5351000110000000000000000000000c63510000800000000000000000000000000000000000000645210008494100000000000000000009494100001000000000000000100000000000000ce3510000e0000000100000000000000dc3510000700000000000000e33510000700000000000000645210009c9410000000000000000000ac94100001000000000000000100000000000000ea3510000f0000000100000000000000d03f10000300000000000000f93510001d0000000000000064521000b494100000000000000000006452100000000000000000000100000000000000163610001800000001000000000000002e361000130000000000000013341000080000000000000064521000c494100000000000000000006452100000000000000000000100000000000000413610000c0000000100000000000000d03f100003000000000000004d3610001b0000000000000064521000d49410000000000000000000645210000000000000000000010000000c000000000000000100000050000000d038100032000000023910002f0000000c00000000000000010000004c0000008a381000460000000c0000000000000001000000530000003e3810004c0000000c00000000000000010000004e000000023810003c0000000c00000000000000010000005400000039371000510000000c0000000000000001000000550000000c0000000000000001000000560000000c0000000000000001000000570000000c0000000000000001000000430000000a3710002f0000000c000000000000000100000058000000ea361000200000000c000000000000000100000010000000a1361000490000000c00000000000000010000001000000068361000390000000c0000000000000001000000100000000c00000000000000010000000d0000000c0000000000000001000000590000009037100019000000b037100052000000b000000020000000d14e1000230000009034100052000000ce0000000100000000000000ad3c10000f00000000000000f095100004000000000000000000000050961000040000000000000000000000bc3c1000100000000000000070961000020000000000000000000000a0961000040000000000000000000000cc3c10000f00000000000000c0961000010000000000000000000000d8961000010000000000000000000000db3c10000d00000000000000c0961000010000000000000000000000e0961000010000000000000000000000e83c10001300000000000000e896100001000000000000000000000064521000000000000000000000000000143f10000500000000000000f83410000c00000000000000193f10000400000000000000e335100007000000000000001d3f10000b00000000000000e33510000700000000000000283f10000900000000000000e3351000070000009c3d100044000000e03d100006000000873e10008d0000007f3e10000400000000000000913d10000b00000000000000d03f10000300000000000000833e1000040000000000000013341000080000009c3d100044000000e03d100006000000e63d1000990000007f3e10000400000000000000913d10000b00000000000000d03f100003000000383d100059000000043d10003400000000000000fb3c10000900000000000000d03f100003000000000000009f3f100007000000000000002c9710000200000000000000000000003c9710000100000000000000d03f100003000000d33f100006000000a63f10002a00000000000000d93f100005000000000000009c971000010000000000000000000000a4971000010000000000000000000000de3f10000a00000000000000ac971000010000000000000000000000b4971000010000000000000045401000040000002d401000180000002440100009000000e83f10003c00000000000000494010000a00000000000000649f1000010000000000000000000000e897100002000000000000005340100055000000a8401000220000006c4b100028000000ca4010005b00000023000000010000006c4b100028000000254110005e0000003b000000010000006042100039000000a042100048000000100200002d00000000000000ec421000120000000000000000000000fe4210000a0000000000000000000000000000000000000064521000349910000000000000000000249910000100000000000000010000000000000008431000120000000000000000000000fe4210000a00000000000000000000000000000000000000645210003499100000000000000000002c991000010000000000000001000000000000001a431000150000000100000000000000d03f10000300000000000000fe4210000a0000000000000064521000349910000000000000000000449910000400000000000000010000001d44100037000000da431000430000000c0000000000000001000000440000002f4310004500000074431000350000006452100000000000a94310003100000000000000544410000400000000000000bc99100001000000000000000000000064521000000000000000000000000000584410000700000000000000d4991000010000000000000000000000645210000000000000000000000000008544100008000000000000008d44100010000000000000005f4410000300000000000000624410002300000000000000a1441000030000000000000000000000794f10000c0000000000000000000000000000000000000064521000389a10000000000000000000645210000000000000000000010000000c00000000000000010000000f00000000000000584410000700000000000000cc9a1000010000000000000000000000e49a1000020000000000000000000000a44410000a00000000000000f49a10000100000000000000000000000c9b1000010000000000000000000000ae4410001100000000000000149b10000100000000000000000000002c9b1000010000000000000000000000b54510000300000000000000b84510000d0000005445100058000000ac45100009000000000000005f44100003000000000000003d45100017000000e24410005b00000000000000d54410000d000000000000004540100004000000bf4410001600000000000000cc4510000a00000000000000000000000d501000110000000000000000000000000000000000000064521000949d10000000000000000000a49d100001000000000000000100000000000000d64510000d0000000000000000000000604e10000e0000000000000000000000000000000000000064521000ac9d10000000000000000000bc9d100001000000000000000100000000000000e34510000c0000000000000000000000604e10000e0000000000000000000000000000000000000064521000cc9d10000000000000000000c49d100001000000000000000100000000000000ef4510000c0000000000000000000000fb451000090000000000000000000000000000000000000064521000cc9d10000000000000000000dc9d1000010000000000000001000000000000000446100011000000000000000000000045401000040000000000000000000000000000000000000064521000049e10000000000000000000e49d10000200000000000000000000000000000015461000100000000000000000000000604e10000e0000000000000000000000000000000000000064521000049e10000000000000000000f49d100001000000000000000000000000000000254610000a0000000100000000000000794f10000c00000000000000b84510000d0000000000000064521000049e10000000000000000000fc9d1000010000000000000000000000000000002f461000110000000000000000000000604e10000e0000000000000000000000000000000000000064521000049e10000000000000000000149e10000100000000000000000000000c000000000000000100000010000000d04710001f0000000c00000000000000010000004d000000b14710001f000000934710001e0000000c00000000000000010000000e0000006b47100028000000ad4610005e0000000b471000600000007d4610003000000059461000240000000c00000000000000010000000d0000004046100019000000d14e100023000000ca4010005b0000002300000001000000d14e100023000000254110005e0000003b00000001000000264910000d0000000b4910001b000000ca481000410000000c010000010000003349100010000000434910000f0000005249100013000000654910000f00000074491000140000002d4a100036000000884910005e0000004e01000005000000f04910003d000000884910005e00000055010000050000002d4a100036000000884910005e0000006901000005000000884910005e0000007001000005000000804a100048000000eb0900000a000000d04a100045000000c702000036000000000000003c4b10001000000000000000649f1000010000000000000000000000645210000000000000000000000000004c4b10001500000000000000649f1000010000000000000000000000645210000000000000000000614b10000b0000006c4b100028000000944b1000500000004500000001000000b84d10001c0000000c4c1000600000005100000003000000944d1000240000000c4c10006000000059000000030000004d4d10002c0000000c4c100060000000930000004c000000154d1000380000000c4c100060000000910000002a000000ed4c1000280000000c4c1000600000009200000032000000c54c1000280000000c4c100060000000940000002c000000934c1000320000000c4c100060000000c8000000030000006c4c1000270000000c4c100060000000d000000004000000e44b1000280000000c4c100060000000d6000000030000006c4b100028000000034e100025000000c30900002300000000000000284e10000d0000000000000000000000354e10002100000000000000000000000000000000000000645210000ca1100000000000000000006452100000000000000000000100000000000000564e10000a0000000000000000000000604e10000e00000000000000000000000000000000000000645210001ca110000000000000000000645210000000000000000000010000000c0000000000000001000000100000000c00000000000000010000005a000000d14e100023000000944b100050000000450000000100000000000000f44e10000b00000000000000f4a110000100000000000000000000000ca21000010000000000000000000000ff4e1000120000000000000014a210000100000000000000000000002ca21000010000000000000000000000114f1000150000000000000034a2100001000000000000000000000064521000000000000000000000000000264f100010000000000000004ca2100001000000000000000000000064a210000100000000000000000000000550100008000000000000000d50100011000000ae4f10005700000000000000a74f10000700000000000000794f10000c000000854f10002200000000000000684f10001100000000000000794f10000c00000000000000614f10000700000000000000604e10000e000000364f10002b00000000000000e2501000100000000000000064521000000000000000000000000000c4a21000010000000000000000000000f25010000f0000000000000064521000000000000000000000000000cca210000100000000000000165110002500000001511000150000005051100019000000705110006c0000005500000022000000dc5110002d000000095210000c00000015521000030000003a521000110000004b52100017000000ea02000005000000645210002000000084521000120000000c00000000000000010000005b00000076531000060000007c531000220000005e531000180000006d090000050000009e53100016000000b45310000d0000005e531000180000007309000005000000df5310000b000000da5f100016000000c153100001000000c953100016000000da07000009000000b85f10000e000000c65f100004000000ca5f100010000000c153100001000000c953100016000000de07000005000000785f10002b000000a35f1000150000005901000015000000df5310000b000000ea5310002600000010541000080000001854100006000000c153100001000000c953100016000000eb0700000500000064521000000000003654100002000000205410001600000054040000110000002054100016000000480400002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20705910004a000000c05b100000020000c05d10003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202505910002000000027000000190000005059100020000000280000002000000050591000200000002a0000001900000050591000200000002b0000001800000050591000200000002c000000200000006452100000000000a35f1000150000000e0400000500000000f2a901046e616d6501e9a9018602000c6578745f74776f785f31323801146578745f6765745f73746f726167655f696e746f020e6578745f626c616b65325f32353603126578745f656432353531395f766572696679040f6578745f7365745f73746f7261676505116578745f636c6561725f73746f7261676506106578745f73746f726167655f726f6f7407186578745f73746f726167655f6368616e6765735f726f6f74080e6578745f7072696e745f75746638090d6578745f7072696e745f6865780a126578745f6578697374735f73746f726167650b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f4b3c616c6c6f633a3a7261775f7665633a3a5261775665633c542c20413e3e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303937643231396233663138343832631034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a68343965646138323365313438356637361180013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c27612c20486173682c20417574686f7269747949643e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6832346531323437313961393032393134120c5f5f727573745f616c6c6f6313673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865353132666539376466303230613530140e5f5f727573745f7265616c6c6f631508727573745f6f6f6d16b8013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831613962616633656535373331666437175d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686530366365316237616538343533643818733c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861383438636135646431353766636335195d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313562393735396563323463303731621a36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68646162663734306166653461666664641b583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68663838613537353461373763303230331cc5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c20496e6465782c2043616c6c2c205369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a68663032363365653639623335383664621d373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a626c6f636b5f686173683a3a68663236623930303266316637376538631e363c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a656e756d5f7365743a3a68353935663062356236353733306661381f0e5f5f727573745f6465616c6c6f632030636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a686365623666373462366635656364613121673c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c207536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865366138363530666437393236393561225b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862383466343863643035646433326331232e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68383533643435306638346666323862332429636f72653a3a70616e69636b696e673a3a70616e69633a3a683563663961666461383036363031366525373c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a696e697469616c6973653a3a6836393366303835623230366433393239263a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6163636f756e745f6e6f6e63653a3a6862373731623630373630626264366463273a3c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6465706f7369745f6576656e743a3a6864396266383336313161656563373963285d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68383865613533393835323434646563612992016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68663933343235626333616661323237382a403c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68666261353763626638346332373163302b453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a68316361623739313438386466356662322c453c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68363934653133663262306534323836652d30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68303065343633313339663739316263392e703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68613761393333353137343236663766622f353c73726d6c5f73797374656d3a3a4d6f64756c653c543e3e3a3a66696e616c6973653a3a6830376430363638393765373233666438306d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6830616438616139626166393332383437314e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686630363538623734313666363166316132563c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839643362613663653333643238383634337e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686230376636316536653637353430663434513c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6834373132623030393765386462663939354c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68616434313963323739396633323933663634636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a6830343838323434326432343338623538372e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a686566633733373364636532393332333238303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686336376564666338373334633534636539323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68343936396430363331643330643766373a2d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a68356562656632303632656463303539303b423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68303931613465386235373839343266333c6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68323737363338613335366162373765313d6c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a6765743a3a68613761326230306564363363366563623e4473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a68383937643637396436366364663961313f493c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6863623739623935353262643436373862404e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832326133643234383737383862326532413e3c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a683732343831633661376161643462316242433c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a683365646433373562353163373566626343483c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68303333393862613761343661316362344430636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6831626138303633623863643038656365452d636f72653a3a736c6963653a3a736f72743a3a726563757273653a3a68366233613239303338626636326435344634636f72653a3a736c6963653a3a736f72743a3a627265616b5f7061747465726e733a3a6864336335306161376633353563376665473c636f72653a3a736c6963653a3a736f72743a3a7061727469616c5f696e73657274696f6e5f736f72743a3a68373264643532616563326638343335304836636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68633536336465343134643138666337614934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68343237383139336437353464326633654a2e636f72653a3a736c6963653a3a736f72743a3a68656170736f72743a3a68313564663739343438326230326437644b4a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68366439653433353733333238363230624c39636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a68613164333366373266663864353534664d4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a68313236363830306235623333616436394e4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68363531366266333064366439663530394f4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a6862373636316532393430356130646166504b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a686233336339613133326436653933343051486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666565733a3a683436363239353337613363363230353152486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6833323465353438343735356365663837534d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6862343361663437646562343466653237544c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6838373761343962616662383661666332554b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a686162623832646633323634323539643256486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a683164626662333632306161666561393557483c492061732073725f7072696d6974697665733a3a7472616974733a3a436865636b457175616c3e3a3a636865636b5f657175616c3a3a683962653465636161316432323364333958d2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a683838616165653434656431343739373459633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68656266666438313565313931336234355a83013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68363564616135386639653036313363665b7c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68323139633837376333613461373939645c84013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68366565363032623335316137323631315db1013c73726d6c5f7374616b696e673a3a4e6f6d696e6174696e673c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a68333264376266326339626666383737635e593c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a69735f636f756e63696c6f723a3a68393664346661333837363730643037665f4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683238633261303661306363353236313660b9033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c203c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970652c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a6838643066633361333136353462636135613c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6e6f6d696e61746f72735f666f723a3a6837353332353337633932613231363636623d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68323838393534313639663637393163666380013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a686338623132663837333965383434376564663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68613236363230323363363432646130316585013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a6831376533646638373038363831343261667e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a6830313635346635323633323839666430673d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6865343032613237316366643366336333684e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863323437346335333731646337646438693d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68326134313536343161643032383832376a5c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a5f70726f636573735f766f74653a3a68373937313338643730386362376337616b3b3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a6170706c795f756e7374616b653a3a68613333313364396533313236643766396c423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68383466316562393731326631393436646d683c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c27612c20753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68656635313232636230633932313134326e3f3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f667265655f62616c616e63653a3a68623363363164383963393430316633376f433c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a7365745f72657365727665645f62616c616e63653a3a68383464363262646363353636303137667096013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a456e737572654163636f756e744c69717569643c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f6163636f756e745f6c69717569643a3a6837353039316339326230613036363137717c3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a686430666530626435353337636231613472443c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63757272656e745f6e6f6d696e61746f72735f666f723a3a68663938636130616532653364646630387330636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6863663036353438386461373764613963744e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834643336633364616232343061333232755e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683737653763393832363937383833326676135f5f727573745f616c6c6f635f7a65726f656477397061726974795f636f6465633a3a636f6465633a3a4f75747075743a3a707573685f627974653a3a686435383737383736373837303439306578763c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c204163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686162663638663561353139313237343379c8013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c207375627374726174655f7072696d6974697665733a3a617574686f726974795f69643a3a45643235353139417574686f7269747949643e3e3e3a3a66726f6d3a3a68383233663366383138323439666236637a82013c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a68663961373032636536663666303061337b7d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7265776172643a3a68353361343830346662313632306337637cb00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c2045787472696e7369633e3e3a3a6465636f64653a3a68313733383437373463626165656365627d7c3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c20486173682c204469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343039303164333036313766343937617e30636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68636562366637346236663565636461317f763c284e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861643433663530356633666263656161800186013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a6861666563383566303963333732636637810182023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c20616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a68313364303065383234373835323537668201a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c6973653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c6973653a3a683931376634313134333231386662326283015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746172745f656c656374696f6e3a3a683131663663393835346265346363643584013c3c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68613437633363646131356664656533338501413c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68313566336132303538336635353436658601463c73726d6c5f696e64696365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683435623531613334343638366132653587013d3c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68393438323163353135383839346331648801423c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633330373739623665643635353738318901473c73726d6c5f62616c616e6365733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68663230363739386364396136663734338a013e3c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a68373930366236316137636230656234358b01433c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68633863383433373336623638666134308c01483c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68666137636133376138303063383665618d016e3c73726d6c5f74696d657374616d703a3a5f5f47657442797465537472756374426c6f636b506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636331373535393733323930363063638e013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343030373738653632306539393434618f01d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68663930333463366636306562626635329001663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a68646361623537363230616531313537639101663c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683231636134353334323135373939343692018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683665323731633435383030633936366293018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683036373336373761616132653262373594018d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834353162396464636139623366636461950186013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832616631366333373937653935316662960190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683137383436623534363265633339393297018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623262323033313462333538396163329801613c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a68343536306335613330303363343066339901f6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a41726974686d65746963547970653e3a3a547970653e2c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c203c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a68646661626238326466326563303033629a013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68653530633637393239323837323138309b015f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a74656172646f776e5f656c656374696f6e3a3a68623733616133343333656262343138309c01623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68336530343138623064653265366461379d015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a64726f705f6170706c6963616e74733a3a68663432613333376263663062333763389e01673c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c20503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68316266313761633066343664633036639f012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6864343161356261616361353939383034a0014b3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e3e3a3a696e736572743a3a6836313533303765663535353934363038a1012c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6835666436393434326333353133303637a201733c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c20563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6836656236353033646438323132396431a3015c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6865633531616135663433366666333762a4013c3c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6863323764393236323532373735663939a501413c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6863616438623766623036616539663532a601463c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863313065663463366461373734643936a701703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837313935643330343231323130316265a801723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864653534323233303263303436656639a901743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838383033626239663637316265326433aa01753c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72507265666572656e6365733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396165376531383634383434616262ab01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864376432353439363231303964393336ac016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834386664386230316537646266313461ad01763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833346133373665343963343930333761ae01673c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6830316461613961346266316664333834af018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863356362663732396662366366346263b0018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839613761333133373363343966303738b10190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831306233643463623962613239656339b20193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839353430343162653261666631316363b3018c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833396639653836393330343836383566b4018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839383538356230303266633639306230b5018e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861616134343039356630356535356439b60191013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862333031323964396633646131633162b7018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863343136616632633337646430323763b80190013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866373535356236323037656533323163b901623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6864306636616331376266623765333365ba015d3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6834326532633266336238316466626563bb018f013c73726d6c5f666565733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a43686172676542797465734665653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6368617267655f626173655f62797465735f6665653a3a6838616239323966373534373433323931bc013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a7365745f76616c696461746f72733a3a6836393166633934643661333334373061bd013e3c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6831653331353636313862663061363432be01433c73726d6c5f666565733a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6865373734656464363636323165663531bf01703c73726d6c5f666565733a3a5f5f476574427974655374727563745472616e73616374696f6e426173654665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830346163613038663166373630303564c001393c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6838373563313739653138356439396161c1013e3c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6862633663653436663333633935613035c201433c73726d6c5f7375646f3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6866336639303531623866663934303439c301613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863323839646239633764356532636234c4013c3c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866313638333963343464636361353635c501413c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6837396262343730303361613739343763c601463c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839663638653630633566386164363638c701477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6866623337343535666564336564326664c801623c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c20563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830373531383239613932323033323465c901523c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c27612c204b2c20563e3e3a3a696e736572743a3a6830356136646435356461336666646430ca010c436f72655f76657273696f6ecb0110436f72655f617574686f726974696573cc0112436f72655f657865637574655f626c6f636bcd014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6866643337616665343561313865306132ce016c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6838633764323066386435393966616134cf01753c73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c20426c6f636b2c20436f6e746578742c205061796d656e742c20416c6c4d6f64756c65733e3e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6837353763343730336233613232396433d001483c636f72653a3a666d743a3a417267756d656e74733c275f3e20617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6865316465313661646637653161303132d101303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862363266656434353033623836383436d20115436f72655f696e697469616c6973655f626c6f636bd301114d657461646174615f6d65746164617461d401603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835313137303230316435376330623930d501433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6865646565323965656465663066646164d601633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834393039313963363138396531663739d701633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6836336564353565623166313739363337d801633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834366162623930643330333530653030d9011c426c6f636b4275696c6465725f6170706c795f65787472696e736963da011b426c6f636b4275696c6465725f66696e616c6973655f626c6f636bdb0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373dc015d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838323432633461616530623565313366dd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6831313638656666333065383466376537de011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473df0118426c6f636b4275696c6465725f72616e646f6d5f73656564e0012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ee10115417572614170695f736c6f745f6475726174696f6ee201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6863346261633263326133613632383863e301303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839633163616533383831633638356363e40135636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a6837636339316532326362396664303931e5012f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a6839393761656138626132613165386261e6013d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a6837366164306134326463396364643435e7018001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a6835383261663432346337616638336636e8012e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a6839333938326463383963326433306633e901653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837313435646263306438393733353030ea018a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837646236666334363737646535393962eb01603c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a73746f72655f6d657461646174615f6e616d653a3a6830393132336537386130613730303366ec015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3e3a3a63616c6c5f66756e6374696f6e733a3a6866653432646231396336356337636633ed01423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862376233663765643464616530366662ee01633c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c204f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333930623839626139393733633830ef0111727573745f626567696e5f756e77696e64f0010a5f5f72675f616c6c6f63f1010c5f5f72675f6465616c6c6f63f2010c5f5f72675f7265616c6c6f63f301115f5f72675f616c6c6f635f7a65726f6564f4014e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6862363365636566363335323262356137f501313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6866323035616464396235666434323661f60143636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a6862373839383664393965363163626236f7012c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6863393639333233396661336330376339f8014a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6837633935363262633930336261666566f901323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862353765363333353432643165666462fa0149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6863333337366132313537383338373132fb0123636f72653a3a666d743a3a77726974653a3a6864633965303262643431393466643037fc0134636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6866666434343232643837336134346233fd01066d656d736574fe01066d656d637079ff01076d656d6d6f76658002066d656d636d708102095f5f756469767469338202085f5f6d756c74693383023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a686238306662333930663030636262333584023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a686437653131386565363366623935306185020c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33342e302d6e696768746c79202836333364373561633120323031392d30322d323129", - "0x9de7647cf9f9d6bbc4078dc693fbe19e": "0x8013030000000000", - "0x9a20141d973fa6385716ae951301f106": "0x00", - "0xb9b861cab4bbce870c811515bd5f33d7": "0x00", - "0x9624db8f7f825714be29f5be7ef5a76f": "0x0c000000", - "0x784006f2a1a409c65c0059c57eaed7a6": "0x00000000000000000000000000000000", - "0xdade128e67a5ed110063f56a01ab6bbf": "0x0000000000000000", - "0x24b2518f9a9ee24ab0b62346d83d90b0": "0x40420f00", - "0x0e0cdac0d4de97c54f3ae216b003fa81": "0x5802000000000000", - "0xd437fe93b0bd0a5d67d30d85d010edc2": "0x80969800", - "0x8b54f94e652e79e757faa813e395199d": "0x19000000", - "0xb7b6ec0f25eb1ed8b91d05f697d7a874": "0x0600000000000000", - "0x2196ccc1c9c70e1c05f6229d8b36f461": "0xc0a8000000000000", - "0xe86aadd06aa1443b2e0485fbe6c75d79": "0x4038000000000000", - "0x30f81b445b20a0cacb485475146b9c2e": "0x00020000", - "0x78f4ad73d6b7279f8d06f359e363c829": "0xd0eb0b54020000000000000000000000", - "0x50a63a871aced22e88ee6466fe5aa5d9": "0x6b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", - "0x6ca8e0c58adf9d1f3105b0888d39bf2d": "0x00000000000000000000000000000000", - "0xf9f84510feb5ef56aaead09aab1619c9": "0x4038000000000000", - "0x51dc7d6b960dbce5de1de96c88afc3d8": "0x0100000000000000", - "0x7be03dc7a23a09ed0b3f2b21c864cc98": "0x00e40b54020000000000000000000000", - "0x040ff70c23416b89ce6afb75ee0d362e": "0x00000000", - "0x329586a7b97f2ac15f6c26a02c3c5621": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0x4664fb5d4e16f894df23cadb3faaa9a6": "0x04000000", - "0x052864eeea9f485c498882d7367582d3": "0xc8000000000000000000000000000000", - "0x0e4944cfd98d6f4cc374d16f5a4e3f9c": "0x0000000000000000", - "0x8b00d7280647603efa998c64c5a3d9aa": "0x80841e00", - "0xdfaac108e0d4bc78fc9419a7fcfa84dc": "0x04313ef1233684209e8b9740be3da31ac588874efae4b59771863afd44c2b620c4", - "0x43854a3fb0f68847558aa8942fff6d9b": "0x42000000", - "0x62f532424b7b1c52f522857315040f27": "0x00000000000000000000000000000000", - "0x7c1f36e9b2a83a7f2b42d97ec0f18d9c": "0x046b7f25c05e367cbb8224681f9f8652f13e7de2953b4706f32e6daf42219ad31f", - "0xb8f48a8c01f629d6dc877f64892bed49": "0x0000000000000000", - "0x3fb2474c4125721e4f9b6d33231cc646": "0x64000000000000000000000000000000", - "0x90e2849b965314409e8bc00011f3004f": "0x01000000", - "0x8366297e853b97a38cca0f62019a717b": "0x00000000000000000000000000000000" - } - } -} \ No newline at end of file diff --git a/res/joy_testnet_2.json b/res/joy_testnet_2.json new file mode 100644 index 0000000000..3b83a2fd13 --- /dev/null +++ b/res/joy_testnet_2.json @@ -0,0 +1,96 @@ +{ + "name": "Joystream Testnet v2", + "id": "joy_testnet_2", + "bootNodes": [ + "/dns4/bootnode1.joystream.org/tcp/30333/p2p/QmeDa8jASqMRpTh4YCkeVEuHo6nbMcFDzD9pkUxTr3WxhM", + "/dns4/bootnode2.joystream.org/tcp/30333/p2p/QmbjzmNMjzQUMHpzqcPHW5DnFeUjM3x4hbiDSMkYv1McD3" + ], + "telemetryEndpoints": [ + [ + "wss://telemetry.polkadot.io/submit/", + 0 + ] + ], + "protocolId": null, + "consensusEngine": null, + "properties": { + "tokenDecimals": 0, + "tokenSymbol": "JOY" + }, + "genesis": { + "raw": { + "0x934302c5ec4cb4f73a395e2184ab0aa6": "0x00000000000000000000000000000000", + "0x92b3170bbdf31d1483495c9b06ba7d70": "0x10270000", + "0xf9f84510feb5ef56aaead09aab1619c9": "0x4038000000000000", + "0x0d16d2d988ae32ef287cca0bf668e00a": "0x0100000000000000", + "0xd368b9d9bb1cc910c9a2b8e5d0f5f2fc": "0x88130000000000000000000000000000", + "0x2196ccc1c9c70e1c05f6229d8b36f461": "0xc0a8000000000000", + "0x3a617574683a00000000": "0x65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2", + "0x9ab62105ea598fe35e62747706899867": "0x0100000000000000", + "0xa62601bb840b2ee9ae90cbc8aefa0d01": "0x0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65", + "0x8b00d7280647603efa998c64c5a3d9aa": "0x80841e00", + "0xff64fc011ebf64c9924fe908795e4253": "0x0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65214e214e00", + "0x4664fb5d4e16f894df23cadb3faaa9a6": "0x04000000", + "0x59fb36df8bf4440dd9ceb5e3c5228b14": "0x00", + "0x3b7d32346a3315a351084927a27d06a7": "0x00000000000000000000000000000000", + "0xc1fdc3d212357bc2fa98f2a77b941f0c": "0x040610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65", + "0x50a63a871aced22e88ee6466fe5aa5d9": "0x0ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30", + "0x579ab55d37b1220812be3c3df29d4858": "0x0000000000000000", + "0x040ff70c23416b89ce6afb75ee0d362e": "0x00000000", + "0x8366297e853b97a38cca0f62019a717b": "0x00000000000000000000000000000000", + "0xaf2eb693c0fb909a37de0415e6f3804e": "0x047374616b696e672088130000000000000000000000000000ffffffffffffffff0f", + "0x3fb2474c4125721e4f9b6d33231cc646": "0x64000000000000000000000000000000", + "0x7e6064dc0e78ffebb59b3053826a9467": "0x04609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339", + "0x56a8690adda9fc81f051cfae8b36fb7f": "0x0100000000000000", + "0x78f4ad73d6b7279f8d06f359e363c829": "0x88f70b54020000000000000000000000", + "0x3a6772616e6470613a617574683a6c656e": "0x01000000", + "0xdfaac108e0d4bc78fc9419a7fcfa84dc": "0x04609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339", + "0xe9c5ea8161960f37de92851df355287b": "0x0c000000", + "0x4c4cbf22c23da51465d830549fd17801": "0xb80b0000000000000000000000000000050000000a0000000a0000000000000000000000000000005802000000000000580200000000000058020000000000005802000000000000580200000000000032000000000000000000000000000000", + "0x0352a63cf1ad55dfd67fdc8869920392": "0x0100000000000000", + "0x9a20141d973fa6385716ae951301f106": "0x01", + "0x2f17f5add44fa12b1b002caac64f4b3a": "0x0100000000000000", + "0x30f81b445b20a0cacb485475146b9c2e": "0x00020000", + "0x8b54f94e652e79e757faa813e395199d": "0x19000000", + "0x24b2518f9a9ee24ab0b62346d83d90b0": "0x40420f00", + "0x7b3279da6dfc5dcfbdd4098b0578c733": "0x0a000000000000000000000000000000", + "0x30503a949860f4244ab6e457807234c6": "0x8070000000000000", + "0x34f0b32e59d36f2a46ec74f601105a9e": "0x0000000000000000640000000000000000000000000000006044656661756c742050616964205465726d20544f532e2e2e", + "0x9624db8f7f825714be29f5be7ef5a76f": "0x0c000000", + "0x1da5c452800e88ba1014b0ae27e8c629": "0x0100000000000000", + "0xd9c94b41dc87728ebf0a966d2e9ad9c0": "0x6400000000000000", + "0xe86aadd06aa1443b2e0485fbe6c75d79": "0x4038000000000000", + "0x43854a3fb0f68847558aa8942fff6d9b": "0x42000000", + "0x70aa3421507b5d00bc7392e7f8de8b83": "0x65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2", + "0xd437fe93b0bd0a5d67d30d85d010edc2": "0x80969800", + "0x0e0cdac0d4de97c54f3ae216b003fa81": "0x0100000000000000", + "0x90e2849b965314409e8bc00011f3004f": "0x01000000", + "0xf541ffd8c90d7124a5298d6c1e2c0d40": "0x0300000000000000", + "0x3a6772616e6470613a617574683a00000000": "0x65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d20100000000000000", + "0xb7b6ec0f25eb1ed8b91d05f697d7a874": "0x0600000000000000", + "0x2b89d3b6f46fc8a3aee48c9cb06d7670": "0x01000000000000000000000000000000", + "0xe9d19aa1c8f2c8eba1a85e4db92740c8": "0xe8030000000000000000000000000000", + "0x9de7647cf9f9d6bbc4078dc693fbe19e": "0x8013030000000000", + "0x0f9ebfa8ca7dde015c460cfec0279c79": "0x0400", + "0xf4039aa8ae697861be900c58239e96f7": "0x00000000000000000000000000000000", + "0x6ed2fcf74773d8e9b4aa2a956adb907f": "0x00e40b54020000000000000000000000", + "0x088d3a8051b2e822572ca47ce014d22f": "0x609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339", + "0x3a636f6465": "0x0061736d0100000001c1011e60027f7f017f60037f7f7f017f60027f7f0060017f0060057f7f7f7f7f017f60047f7f7f7f0060037f7f7f0060047f7f7e7f017f60047f7f7f7f017f60017e0060017f017f60000060047f7e7e7e0060027e7f017f60047f7f7e7e0060037f7e7e0060027f7e0060027e7f0060047f7f7e7f0060037f7e7f0060037f7e7e017f60037f7f7f017e60057f7f7f7e7e0060057f7f7e7e7e0060017f017e60037e7f7f0060027f7f017e60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e76146578745f6765745f73746f726167655f696e746f000403656e760f6578745f7365745f73746f72616765000503656e760c6578745f74776f785f313238000603656e76116578745f636c6561725f73746f72616765000203656e760e6578745f626c616b65325f323536000603656e76106578745f73746f726167655f726f6f74000303656e76186578745f73746f726167655f6368616e6765735f726f6f74000703656e76126578745f737232353531395f766572696679000803656e76126578745f656432353531395f766572696679000803656e760e6578745f7072696e745f75746638000203656e760d6578745f7072696e745f686578000203656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000503656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000303f102ef020b0b02020a020103020202020a020202020202020202020202060202020202030c030303030303000a03020305000d0400000201060b0002030303020203020202020202020202020306020302000e030f03030303031003031103030303030303030303030303030303030303030202020206061206060f0f020a02100202020a03020503101313130602030202140b15140e0616020202030603020202020202020202020b03020303030f101703000610030202020202020203021110030202020202030202020206030005060603030303030202020303020203020202020202020202021102020e0c03030e02030603020202060b020302020202020203021406030209020506020305021800030303101903030b0302020303030203030302030303030302020202030303020902030906030303030303051a1a061a1a1a02060202021a1a1a02021a1a1a1a1a1a1a1a1a02020603020a03010a001808010000000100010101011b1b1c1c1d04070170018601860105030100120619037f01418080c0000b7f0041c89bc4000b7f0041c89bc4000b07a20414066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00ca0212436f72655f657865637574655f626c6f636b00cb0215436f72655f696e697469616c697a655f626c6f636b00cd0210436f72655f617574686f72697469657300ce02114d657461646174615f6d6574616461746100cf021c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d5021b426c6f636b4275696c6465725f66696e616c697a655f626c6f636b00d60220426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300d7021c426c6f636b4275696c6465725f636865636b5f696e686572656e747300da0218426c6f636b4275696c6465725f72616e646f6d5f7365656400db022b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00dc02214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b657200dd02214772616e6470614170695f6772616e6470615f70656e64696e675f6368616e676500de02204772616e6470614170695f6772616e6470615f666f726365645f6368616e676500df021e4772616e6470614170695f6772616e6470615f617574686f72697469657300e00215417572614170695f736c6f745f6475726174696f6e00e1021a417574686f7269746965734170695f617574686f72697469657300e20209dc01010041010b8501ec0245f002f102be013c40da01363ff40232ec01eb01ac02a802565554535251504f4e4df001ed01a402a6026abb02bc02ba02c402c502c3026b3435336cb402b502b3026d6364626ee701ea01e6016fdf01e001de0170aa0230312e71574c61728e028702990273ad02ab02ae0274b102af02b20275c901c101cd0176e201e10177b701b501bd0178676669799f029e02a0027ac702c602c8027b4847497cb601c801c701c6018d02c501c401c301c201f201f101ef01ee01b602fe01d601f701ff018c028b028a0289028802a702b002bd02ed020ac9f820ef0205001010000b0a0041dcf0c3001038000bdc0403027f017e0d7f230041d0006b22022400200241086a2001101202400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011014000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001000220f200f417f461b220f4120200f4120491b20052802006a360200200f411f4d0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101522060d010c060b200e10132206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d00200610160b200241d0006a24000f0b1010000b200e41011014000bc90301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081000210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f220641037122044102460d0020044101460d0120040d0220064102762104410121030c050b20024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100022012001417f461b22014103200141034922011b20042802006a36020020010d03200228020841027621040c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510002104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641034b0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100022012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b0700200010e8020b0e0041b8f0c300412210e70200000b0b0020002001200210ea020b0700200010e9020bc10602087f017e230041106b2202240020024100360208200242013703002000280200210320022000280208220036020c2002410c6a20021018024002400240024002400240024002402000450d00200041306c2104200241086a220528020021062002280204210003400240024002400240200020066b41204f0d00200641206a22072006490d0620004101742208200720072008491b22094100480d062000450d01200228020020002009101522080d020c070b200641206a2107200228020021080c020b200910132208450d050b2002200936020420022008360200200921000b20052007360200200820066a220641186a200341206a290000370000200641106a200341186a290000370000200641086a200341106a2900003700002006200341086a2900003700002003290300210a0240024002400240200020076b41084f0d00200741086a22062007490d0620004101742209200620062009491b22094100480d062000450d01200820002009101522080d020c080b200741086a21060c020b200910132208450d060b2002200936020420022008360200200921000b20052006360200200820076a200a370000024020002006470d00200641016a22002006490d0320064101742207200020002007491b22004100480d03024002402006450d00200820062000101522080d010c080b200010132208450d070b20022000360204200220083602000b2005200641016a360200200820066a41003a0000200341286a290300210a024002400240024020022802042200200528020022086b41084f0d00200841086a22062008490d0620004101742207200620062007491b22064100480d062000450d01200228020020002006101522070d020c0a0b200228020021070c020b200610132207450d080b2002200636020420022007360200200621000b200341306a21032005200841086a2206360200200720086a200a370000200441506a22040d000b200128020020012802042007200610012000450d070c060b200228020421002001280200200128020420022802002207200241086a280200100120000d050c060b1010000b200941011014000b200941011014000b200041011014000b200641011014000b200710160b200241106a24000b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410152203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010152203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101522030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101522030d0a0c0e0b2004101322030d110b200441011014000b200128020021030c050b200128020021030c070b2000101322030d0b0b200041011014000b200010132203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410132203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101522020d020c070b200128020021020c020b200010132202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011014000b200441011014000b200041011014000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000bd90403027f017e0a7f230041106b22022400200241086a2001101a0240024002400240024002400240024002402002280208450d00200228020c2203ad420c7e2204422088a70d082004a72205417f4c0d082005450d01200510132206450d032003450d020c040b20004100360200200241106a24000f0b4104210620030d020b4100210d4100210a0c020b200541041014000b4100210741002108410021092003210a034020022001101a02400240024002402002280200450d0020022802042205417f4c0d08024002402005450d002005101b220b450d03200b2001280200200141046a220c280200220d2005200d2005491b220d10f6021a200c280200220e200d490d04200c200e200d6b36020020012001280200200d6a360200200d2005470d010c050b4101210b41002005460d040b2005450d00200b10160b2000410036020002402009450d002006210503400240200541046a280200450d00200528020010160b2005410c6a2105200841746a22080d000b0b0240200a450d00200610160b200241106a24000f0b200541011014000b200d200e101c000b200941016a210d02402009200a470d002007200d200d2007491b220aad420c7e2204422088a70d032004a7220c4100480d0302402009450d0020062008200c101522060d010c050b200c10132206450d040b200620086a2209200b360200200941046a2005ad2204422086200484370200200741026a21072008410c6a2108200d2109200d2003490d000b0b2000200a36020420002006360200200041086a200d360200200241106a24000f0b1010000b200c41041014000b100f000bca0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510f6021a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d0003220341037122044102460d00024020044101460d0020040d0220034102762101410121040c050b200241003a000b2002410b6a20052006410047220410f6021a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b41002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810f6021a200141046a200620086b3602002001200520086a36020020070d0320022f010c20022d000e411074724108742003724102762101410121040c030b200341034b0d004100210420024100360204200241046a200520064104200641044922081b220310f6021a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004101c000b20042006101c000b0700200010eb020b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c20024198f4c3003602082002200241046a360228200220023602202002200241206a360218200241086a41a8f4c3001046000bdc0504027f017e0f7f017e230041d0006b22022400200241086a200110120240024002400240024002400240024002402002280208450d00200228020c2203ad42287e2204422088a70d032004a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4108210620030d030b4100210f4100210d0c030b100f000b200541081014000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d024003402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001000220f200f417f461b220f4120200f412049220f1b20052802006a2210360200200f0d01200241106a41186a22112007290300370300200241106a41106a22122008290300370300200241106a41086a2213200e29030037030020022002290330370310200242003703302005410020012802002009280200200241306a410820101000220f200f417f461b220f4108200f4108491b20052802006a360200200f41074d0d01200c41016a210f200229033021042007201129030037030020082012290300370300200e2013290300370300200220022903103703300240200c200d470d00200a200f200f200a491b220dad42287e2214422088a70d042014a722054100480d040240200c450d002006200b2005101522060d010c060b200510132206450d050b2006200b6a22052002290330370300200541186a2007290300370300200541106a2008290300370300200541086a200e290300370300200541206a2004370300200a41026a210a200b41286a210b200f210c200f2003490d000c020b0b200041003602000240200d450d00200610160b200241d0006a24000f0b2000200d36020420002006360200200041086a200f360200200241d0006a24000f0b1010000b200541081014000bc10304027f017e087f017e230041106b2202240020022001101202400240024002400240024002400240024002402002280200450d0020022802042203ad2204421d88a70d032004420386a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241106a24000f0b4108210620030d030b410021054100210b0c030b100f000b200541081014000b200141046a210741002108410021094100210a2003210b034020024200370308200141086a2205410020012802002007280200200241086a410820052802001000220c200c417f461b220c4108200c4108491b20052802006a360200200c41074d0d02200a41016a2105200229030821040240200a200b470d002008200520052008491b220bad420386220d422088a70d04200da7220c4100480d040240200a450d0020062009200c101522060d010c060b200c10132206450d050b200620096a2004370300200841026a2108200941086a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d00200610160b200241106a24000f0b1010000b200c41081014000bd70403027f017e0e7f230041d0006b22022400200241086a2001101a02400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011014000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a2802002205412020054120491b221010f6021a200a200520106b3602002001200f20106a3602002005411f4d0d02200d41016a2105200241106a41186a22102007290300370300200241106a41106a220f2008290300370300200241106a41086a22112009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101522060d010c060b201210132206450d050b2006200c6a220d2002290310370000200d41186a2010290300370000200d41106a200f290300370000200d41086a2011290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d00200610160b200241d0006a24000f0b1010000b201241011014000bb20b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001101202400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510132206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081014000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001000220e200e417f461b220e4120200e4120491b20052802006a220f360200200e411f4d0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1000220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d2903002113200229035021142002200110122002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10132216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081014000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001000220f200f417f461b220f4120200f4120491b20052802006a221a360200200f411f4d0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1000220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101522160d010c090b201a10132216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101522060d010c080b200510132206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d00201610160b200041003602000240200b450d00200641106a210503400240200541046a280200450d00200528020010160b200541c0006a2105200a41406a220a0d000b0b0240200c450d00200610160b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081014000b200541081014000b100f000bc01905027f017e157f017e097f230041f0026b22022400200241186a20011012024002400240024002400240024002400240024002402002280218450d00200228021c2203ad42287e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510132206450d032003450d020c040b20004100360200200241f0026a24000f0b4108210620030d020b41002116410021130c020b200541081014000b200241ec016a2105200241d8016a41086a2107200241d8016a41047221082002419d016a2109200241d8016a41076a210a200241206a410172210b200241a0026a210c200241eb016a220d41056a210e20024190026a210f410021104100211141002112200321130340200241003a00d8012001280200200141046a2214280200200241d8016a4101200141086a22152802001000211620152015280200201641016a41014b22166a22173602002016450d0220022d00d801221641044b0d0202400240024002400240024002400240024002400240024002400240024020160e050004020301000b200241086a200110122002280208450d10200228020c2216417f4c0d142016450d042016101b2218450d0a20152016410020012802002014280200201820162015280200100022142014417f461b2214201420164b1b221420152802006a36020020142016460d050c090b20142802002116200241003602d8012015410020012802002016200241d8016a41042017100022162016417f461b22164104201641044922161b20152802006a36020020160d0f20022802d8012116200241106a200110122002280210450d0f20022802142217417f4c0d132017450d062017101b2219450d0a20152017410020012802002014280200201920172015280200100022142014417f461b2214201420174b1b221420152802006a36020020142017470d070c0b0b200241d8016a41186a221b4200370300200241d8016a41106a2219420037030020074200370300200242003703d8012015410020012802002014280200200241d8016a41202017100022162016417f461b2216412020164120491b20152802006a3602002016411f4d0d0e200241c8016a41086a200a41086a2800003602002002200a2900003703c8012002200d290000370390012002200e2900003700950120022f01d801211520022d00da01211620022800db0121182009411f6a200241d8016a411f6a290000370000200941186a201b290000370000200941106a2019290000370000200941086a2007290000370000200920022900d8013700002018410876211b20152016411074722116410121190c0b0b200242003703d8012015410020012802002014280200200241d8016a41082017100022162016417f461b2216410820164108491b20152802006a2217360200201641074d0d0d20022903d8012104200f4200370300200241d8016a41306a4200370300200241d8016a41286a4200370300200241d8016a41206a4200370300200241d8016a41186a4200370300200241d8016a41106a420037030020074200370300200242003703d8012015410020012802002014280200200241d8016a41c0002017100022162016417f461b221641c000201641c000491b20152802006a3602002016413f4d0d0d200241c8016a41086a200a41086a28000036020020024190016a41086a200d41086a29000037030020024190016a41106a200d41106a29000037030020024190016a41186a200d41186a29000037030020024190016a41206a200d41206a29000037030020024190016a41256a200d41256a2900003700002002200a2900003703c8012002200d2900003703900120022800db012218410876211b20022f01d80120022d00da01411074722116410221190c0a0b200241a8026a2001101120022802a8022218450d0c20022902ac022104200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220043703c80120022008290200370390012018410876211b410021190c020b410121182001280200201428020041014100201528020010001a41002016470d040b200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220082902003703900120022016ad22044220862004843703c8012018410876211b410421190b0c060b410121192001280200201428020041014100201528020010001a41002017460d040b2017450d07201910160c070b2016450d06201810160c060b201641011014000b201741011014000b2019450d032016411876211820022017ad221a422086201a843702cc01200220193602c801410321190b200241e0026a41086a221c200241c8016a41086a280200360200200241a8026a41086a221520024190016a41086a290300370300200241a8026a41106a221420024190016a41106a290300370300200241a8026a41186a221720024190016a41186a290300370300200241a8026a41206a221d20024190016a41206a290300370300200241a8026a41286a221e20024190016a41286a290300370300200241a8026a41306a221f20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a80220024180016a41086a2220201c280200360200200241c8006a41086a221c2015290300370300200241c8006a41106a22212014290300370300200241c8006a41186a22222017290300370300200241c8006a41206a2223201d290300370300200241c8006a41286a221d201e290300370300200241c8006a41306a221e201f280200360200200220022903e00237038001200220022903a8023703482007200229038001370000200741086a202028020036000020052002290348370000200541086a201c290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201d290300370000200541306a201e2802003600002002201b410874201841ff0171723602dc01200220193a00d801200220163b00d901200220164110763a00db01200c2004370300200241206a200241d8016a102220022d00202118200241a8026a411f6a2219200b411f6a2900003700002017200b41186a2900003703002014200b41106a2900003703002015200b41086a2900003703002002200b2900003703a80220184103460d03201241016a2116200241d8016a411f6a221c2019290000370000200241d8016a41186a22192017290300370300200241d8016a41106a2217201429030037030020072015290300370300200220022903a8023703d801024020122013470d002010201620162010491b2213ad42287e221a422088a70d05201aa722154100480d0502402012450d00200620112015101522060d010c070b201510132206450d060b200620116a221520183a0000201541206a201c290000370000201541196a2019290300370000201541116a2017290300370000201541096a2007290300370000201541016a20022903d801370000201041026a2110201141286a21112016211220162003490d000b0b2000201336020420002006360200200041086a2016360200200241f0026a24000f0b200241e0026a41086a200241c8016a41086a280200360200200241a8026a41086a220520024190016a41086a290300370300200241a8026a41106a220120024190016a41106a290300370300200241a8026a41186a221520024190016a41186a290300370300200241a8026a41206a20024190016a41206a290300370300200241a8026a41286a20024190016a41286a290300370300200241a8026a41306a20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a802200241033a0020200241a8026a411f6a200b411f6a2900003700002015200b41186a2900003703002001200b41106a2900003703002005200b41086a2900003703002002200b2900003703a8020b2000410036020002402012450d00200621050340024020052d00002201450d00024020014101470d00200541086a280200450d01200541046a2802001016200541286a2105201141586a22110d020c030b200541106a280200450d002005410c6a28020010160b200541286a2105201141586a22110d000b0b02402013450d00200610160b200241f0026a24000f0b1010000b201541081014000b100f000bad0b03057f047e017f230041c0006b22022400024002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0f0c0e0b2002412b6a2001410c6a280000360000200041013a00002002200141046a29000037002320002002290020370001200041086a200241276a2900003700002003450d020b20034101460d0d20030d05200141086a280200450d0d200141046a2802001016200241c0006a24000f0b20034104470d0720022001410c6a28020022043602142002200141046a2802002205360210200241003a0020200241206a20052004410047220610f6021a20042006490d052002200420066b22033602142002200520066a22063602102004450d0720022d002022044102460d0220044101460d0120040d07200241003a0020200241206a20062003410047220410f6021a20032004490d082002200320046b22053602142002200620046a22063602102003450d0620022d00200d0641002103200241206a2005412020054120491b22046a41004100412020046b2004411f4b1b10f5021a200241206a2006200410f6021a2002200520046b3602142002200620046a3602102005411f4d0d062002411c6a41026a2206200241206a41026a22052d00003a0000200220022f00203b011c20022800232104200229002f210720022900372108200231003f21092002290027210a200520062d000022063a00002002410c6a41026a20063a0000200220022f011c22063b010c200220063b0120200a422088a72106200aa721050c030b41000d0a0c0b0b200241003a0020200241206a20062003410047220410f6021a20032004490d072002200320046b3602142002200620046a3602102003450d0520022d00200d05200241206a200241106a101f20022802202204450d05200229022421072002410c6a41026a200241206a41026a2d00003a0000200220022f00203b010c2007422088a721062007a72105410121030c010b200241003a0020200241206a20062003410047220510f6021a20032005490d072002200320056b22043602142002200620056a22063602102003450d040240024020022d002022034101460d0020030d0620024200370320200241206a20062004410820044108491b220310f6021a2002200420036b3602142002200620036a360210200441074d0d0620022903202108200241206a200241106a102320022802202206450d0620022902242107410021050c010b20024200370320200241206a20062004410820044108491b220510f6021a2002200420056b22033602142002200620056a2206360210200441074d0d052002290320210820024200370320200241206a20062003410820034108491b220410f6021a2002200320046b3602142002200620046a360210200341074d0d0520022903202109200241206a200241106a102320022802202206450d0520022902242107410121050b410221032002410c6a41026a200241206a41026a2d00003a0000200220022f00203b010c0b200241206a41026a220b2002410c6a41026a2d00003a0000200220022f010c3b0120200020033a0000200041206a2009370000200041186a2008370000200041106a2007370000200041086a2006ad4220862005ad84370000200041046a2004360000200020022f01203b0001200041036a200b2d00003a00000b200141086a280200450d07200141046a28020010160c070b20062004101c000b200241206a41026a2002411c6a41026a2d00003a0000200220022f001c3b01200b41c4f5c000411e1029000b20042003101c000b20042003101c000b20052003101c000b200141086a280200450d00200141046a2802001016200241c0006a24000f0b200241c0006a24000bd00504027f017e0f7f017e230041d0006b22022400200241086a2001101a0240024002400240024002400240024002402002280208450d00200228020c2203ad42287e2204422088a70d032004a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4108210620030d030b410021114100210e0c030b100f000b200541081014000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e0240034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110f6021a200a200520116b22053602002001200f20116a221136020020100d01200241106a41186a22102007290300370300200241106a41106a22122008290300370300200241106a41086a221320092903003703002002200229033037031020024200370330200241306a20112005410820054108491b220f10f6021a200a2005200f6b36020020012011200f6a360200200541074d0d01200d41016a211120022903302104200720102903003703002008201229030037030020092013290300370300200220022903103703300240200d200e470d00200b20112011200b491b220ead42287e2214422088a70d042014a722054100480d040240200d450d002006200c2005101522060d010c060b200510132206450d050b2006200c6a22052002290330370300200541186a2007290300370300200541106a2008290300370300200541086a2009290300370300200541206a2004370300200b41026a210b200c41286a210c2011210d20112003490d000c020b0b200041003602000240200e450d00200610160b200241d0006a24000f0b2000200e36020420002006360200200041086a2011360200200241d0006a24000f0b1010000b200541081014000bd81805027f017e147f017e097f230041f0026b22022400200241186a2001101a024002400240024002400240024002400240024002402002280218450d00200228021c2203ad42287e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510132206450d032003450d020c040b20004100360200200241f0026a24000f0b4108210620030d020b41002116410021120c020b200541081014000b200241ec016a2105200241d8016a41086a2107200241d8016a41047221082002419d016a2109200241d8016a41076a210a200241206a410172210b200241a0026a210c200241eb016a220d41056a210e4100210f4100211041002111200321120340200141046a22132802002114200241003a00d801200241d8016a200128020022152014410047221610f6021a024002400240024002400240024020142016490d002013201420166b22173602002001201520166a22163602002014450d0920022d00d801221441044b0d090240024002400240024002400240024002400240024020140e050004020301000b200241086a2001101a2002280208450d13200228020c2214417f4c0d172014450d042014101b2215450d0b2015200128020020132802002216201420162014491b221610f6021a201328020022172016490d0c2013201720166b3602002001200128020020166a36020020162014460d050c090b200241003602d801200241d8016a201620174104201741044922151b221410f6021a2013201720146b3602002001201620146a36020020150d1220022802d8012116200241106a2001101a2002280210450d1220022802142214417f4c0d162014450d062014101b2217450d0c2017200128020020132802002215201420152014491b221510f6021a201328020022182015490d0d2013201820156b3602002001200128020020156a36020020152014470d070c0e0b200241d8016a2017412020174120491b22146a41004100412020146b2014411f4b1b10f5021a200241d8016a2016201410f6021a2013201720146b3602002001201620146a3602002017411f4d0d11200241c8016a41086a200a41086a2800003602002002200a2900003703c8012002200d290000370390012002200e2900003700950120022f01d801211420022d00da01211620022800db0121152009411f6a200241d8016a411f6a290000370000200941186a200241d8016a41186a290000370000200941106a200241d8016a41106a290000370000200941086a2007290000370000200920022900d8013700002015410876211a20142016411074722116410121180c0e0b200242003703d801200241d8016a20162017410820174108491b221410f6021a2013201720146b22153602002001201620146a2216360200201741074d0d1020022903d8012104200241d8016a201541c000201541c000491b22146a4100410041c00020146b2014413f4b1b10f5021a200241d8016a2016201410f6021a2013201520146b3602002001201620146a3602002015413f4d0d10200241c8016a41086a200a41086a28000036020020024190016a41086a200d41086a29000037030020024190016a41106a200d41106a29000037030020024190016a41186a200d41186a29000037030020024190016a41206a200d41206a29000037030020024190016a41256a200d41256a2900003700002002200a2900003703c8012002200d2900003703900120022800db012215410876211a20022f01d80120022d00da01411074722116410221180c0d0b200241a8026a2001101f20022802a8022215450d0f20022902ac022104200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220043703c80120022008290200370390012015410876211a410021180c020b4101211541002014470d040b200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220082902003703900120022014ad22044220862004843703c8012015410876211a410421180b0c090b4101211741002014460d070b2014450d0a201710160c0a0b2014450d09201510160c090b20162014101c000b201441011014000b20162017101c000b201441011014000b20152018101c000b2017450d032016411876211520022014ad22194220862019843702cc01200220173602c801410321180b200241e0026a41086a221b200241c8016a41086a280200360200200241a8026a41086a221420024190016a41086a290300370300200241a8026a41106a221320024190016a41106a290300370300200241a8026a41186a221720024190016a41186a290300370300200241a8026a41206a221c20024190016a41206a290300370300200241a8026a41286a221d20024190016a41286a290300370300200241a8026a41306a221e20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a80220024180016a41086a221f201b280200360200200241c8006a41086a221b2014290300370300200241c8006a41106a22202013290300370300200241c8006a41186a22212017290300370300200241c8006a41206a2222201c290300370300200241c8006a41286a221c201d290300370300200241c8006a41306a221d201e280200360200200220022903e00237038001200220022903a8023703482007200229038001370000200741086a201f28020036000020052002290348370000200541086a201b290300370000200541106a2020290300370000200541186a2021290300370000200541206a2022290300370000200541286a201c290300370000200541306a201d2802003600002002201a410874201541ff0171723602dc01200220183a00d801200220163b00d901200220164110763a00db01200c2004370300200241206a200241d8016a102220022d00202115200241a8026a411f6a2218200b411f6a2900003700002017200b41186a2900003703002013200b41106a2900003703002014200b41086a2900003703002002200b2900003703a80220154103460d03201141016a2116200241d8016a411f6a221b2018290000370000200241d8016a41186a22182017290300370300200241d8016a41106a2217201329030037030020072014290300370300200220022903a8023703d801024020112012470d00200f20162016200f491b2212ad42287e2219422088a70d052019a722144100480d0502402011450d00200620102014101522060d010c070b201410132206450d060b200620106a221420153a0000201441206a201b290000370000201441196a2018290300370000201441116a2017290300370000201441096a2007290300370000201441016a20022903d801370000200f41026a210f201041286a21102016211120162003490d000b0b2000201236020420002006360200200041086a2016360200200241f0026a24000f0b200241e0026a41086a200241c8016a41086a280200360200200241a8026a41086a220520024190016a41086a290300370300200241a8026a41106a220120024190016a41106a290300370300200241a8026a41186a221420024190016a41186a290300370300200241a8026a41206a20024190016a41206a290300370300200241a8026a41286a20024190016a41286a290300370300200241a8026a41306a20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a802200241033a0020200241a8026a411f6a200b411f6a2900003700002014200b41186a2900003703002001200b41106a2900003703002005200b41086a2900003703002002200b2900003703a8020b2000410036020002402011450d00200621050340024020052d00002201450d00024020014101470d00200541086a280200450d01200541046a2802001016200541286a2105201041586a22100d020c030b200541106a280200450d002005410c6a28020010160b200541286a2105201041586a22100d000b0b02402012450d00200610160b200241f0026a24000f0b1010000b201441081014000b100f000bb90704027f017e0f7f027e230041f0006b22022400200241086a200110120240024002400240024002400240024002402002280208450d00200228020c2203ad42307e2204422088a70d032004a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241f0006a24000f0b4108210620030d030b4100210f4100210d0c030b100f000b200541081014000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b4100210c2003210d024003402007420037030020084200370300200241d0006a41086a220e420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001000220f200f417f461b220f4120200f412049220f1b20052802006a2210360200200f0d01200241306a41186a22112007290300370300200241306a41106a22122008290300370300200241306a41086a2213200e29030037030020022002290350370330200242003703502005410020012802002009280200200241d0006a410820101000220f200f417f461b220f4108200f4108491b20052802006a2210360200200f41074d0d0120022903502104200241003a005020012802002009280200200241d0006a410120101000210f20052005280200200f41016a41014b220f6a2210360200200f450d0120022d00500d01200242003703502005410020012802002009280200200241d0006a410820101000220f200f417f461b220f4108200f4108491b20052802006a360200200f41074d0d01200c41016a210f20022903502114200241106a41186a22052011290300370300200241106a41106a22102012290300370300200241106a41086a22112013290300370300200220022903303703102007200529030037030020082010290300370300200e2011290300370300200220022903103703500240200c200d470d00200a200f200f200a491b220dad42307e2215422088a70d042015a722054100480d040240200c450d002006200b2005101522060d010c060b200510132206450d050b2006200b6a22052004370300200541206a2007290300370300200541186a2008290300370300200541106a200e290300370300200541086a2002290350370300200541286a2014370300200a41026a210a200b41306a210b200f210c200f2003490d000c020b0b200041003602000240200d450d00200610160b200241f0006a24000f0b2000200d36020420002006360200200041086a200f360200200241f0006a24000f0b1010000b200541081014000bc50303027f017e097f230041106b2202240020022001101202400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041014000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100022052005417f461b2205410420054104491b20072802006a360200200541034d0d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101522060d010c060b200d10132206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d00200610160b200241106a24000f0b1010000b200d41041014000bd60403017f017e0c7f230041d0006b22022400024002400240024002402001450d002001ad42287e2203422088a70d032003a722044100480d03200410132205450d04200241086a2106200241306a41186a2107200241306a41106a2108200521044100210903402002410e360234200241b384c00036023020022009200241306a10280240024002402002280200220a2006280200220b41acf1c300410041001000417f470d00420021032007420037030020084200370300200241306a41086a420037030020024200370330200941016a210920022802040d010c020b2007420037030020084200370300200241306a41086a220c420037030020024200370330200a200b200241306a412041001000220d417f460d05200d4120490d05200241106a41186a220d2007290300370300200241106a41106a220e2008290300370300200241106a41086a220f200c2903003703002002200229033037031020024200370330200a200b200241306a41084120100041016a41084d0d05200229033021032007200d2903003703002008200e290300370300200c200f29030037030020022002290310370330200941016a21092002280204450d010b200a10160b20042002290330370300200441186a2007290300370300200441106a2008290300370300200441086a200241306a41086a290300370300200441206a2003370300200441286a210420012009470d000b200121040c010b41002104410821050b200020043602082000200136020420002005360200200241d0006a24000f0b41b6e7c20041331029000b1010000b200441081014000bb20101037f024002400240024020022802042203417f4c0d004101210402402003450d0020022802002102200310132204450d0320042002200310f6021a0b20034101742205200341046a220220022005491b22054100480d01024002402003450d0020042003200510152204450d010c050b2005101322040d040b200541011014000b100f000b1010000b200341011014000b200020023602082000200536020420002004360200200420036a20013600000b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410236022c20024201370214200241b09bc4003602102002200241086a3602282002200241286a360220200241106a41b89bc4001046000b870403077f037e027f230041c0006b2202240041002103024020012802082204200128020c2205460d002001280210220641046a21070340200141086a2004220841206a2204360200200841086a2900002109200841106a290000210a2008290000210b200241206a41186a200841186a290000370300200241206a41106a200a370300200241206a41086a20093703002002200b3703202006280200220820072802004105746a210c0240024002400340200c20086b41ff004d0d012008200241206a460d022008200241206a412010f802450d02200841206a220d200241206a460d02200d200241206a412010f802450d02200841c0006a220d200241206a460d02200d200241206a412010f802450d02200841e0006a220d200241206a460d0220084180016a2108200d200241206a412010f8020d000c020b0b2008200c460d010340200241206a2008460d012008200241206a412010f802450d01200c200841206a2208470d000c020b0b20042005470d010c020b0b200241186a2208200241206a41186a290300370300200241106a220d200241206a41106a290300370300200241086a220c200241206a41086a29030037030020022002290320370300200041196a2008290300370000200041116a200d290300370000200041096a200c29030037000020002002290300370001410121030b200020033a0000200241c0006a24000b9e0903067f037e087f23004180016b2202240002400240200141086a28020022032001410c6a2802002204460d0002400240200241e0006a200128021022054622060d000340200141086a200341206a2207360200200341086a2900002108200341106a29000021092003290000210a200241e0006a41186a200341186a290000370300200241e0006a41106a2009370300200241e0006a41086a20083703002002200a370360200241e0006a2005412010f8020d042007210320042007470d000c020b0b200141086a20043602000b200421030b2000410036020820004201370200024020032004460d00200141086a2003200420036b41606a4160716a41206a3602000b02402001280204450d00200128020010160b20024180016a24000f0b200241206a41186a2207200241e0006a41186a290300370300200241206a41106a220b200241e0006a41106a290300370300200241206a41086a220c200241e0006a41086a29030037030020022002290360370320200241186a220d2007290300370300200241106a2207200b290300370300200241086a220b200c29030037030020022002290320370300200241c0006a41186a220c200d290300370300200241c0006a41106a220d2007290300370300200241c0006a41086a2207200b290300370300200220022903003703400240024002400240024041201013220b450d00200b2002290340370000200b41186a200c290300370000200b41106a200d290300370000200b41086a20072903003700002001280204210e2001280200210f4101210c024002400240200441606a2003460d0020060d02200341206a2101200441606a21104101210c4101210d03402001210302400340200241e0006a41186a2207200341186a290000370300200241e0006a41106a2201200341106a290000370300200241e0006a41086a2206200341086a29000037030020022003290000370360200241e0006a2005412010f8020d012004200341206a2203470d000c040b0b200241206a41186a22112007290300370300200241206a41106a22072001290300370300200241206a41086a2201200629030037030020022002290360370320200241c0006a41186a22062011290300370300200241c0006a41106a22112007290300370300200241c0006a41086a2207200129030037030020022002290320370340200241186a22122006290300370300200241106a22062011290300370300200241086a22112007290300370300200220022903403703000240200d200c470d00200c41016a2207200c490d06200c4101742201200720072001491b220dad4205862208422088a70d062008a722074100480d060240200c450d00200b200c41057420071015220b0d010c080b20071013220b450d070b200341206a2101200b200c4105746a22072002290300370000200741186a2012290300370000200741106a2006290300370000200741086a2011290300370000200c41016a210c20102003470d000c020b0b4101210d0b200e450d050c040b4101210d200e0d030c040b412041011014000b1010000b200741011014000b200f10160b2000200c3602082000200d3602042000200b36020020024180016a24000bc10306037f017e017f027e017f027e230041106b22022400200242003703002001410020012802002001280204200241082001280208100022032003417f461b2203410820034108491b20012802086a22043602080240024002400240200341074d0d002002290300210520024200370300200141086a220641002001280200200141046a280200200241082004100022032003417f461b2203410820034108491b20062802006a360200200341074d0d002002290300210720022001101d20022802002204450d0020022902042108200241003a00002001280200200141046a28020020024101200141086a22032802001000210620032003280200200641016a41014b22066a22093602002006450d0120022d00004101470d014200210a20024200370300200141086a220341002001280200200141046a280200200241082009100022012001417f461b2201410820014108491b20032802006a360200200141074d0d022002290300210b4201210a0c030b20004202370310200241106a24000f0b4200210a0b0b2000200b3703182000200a3703102000200737030820002005370300200041246a2008370200200041206a2004360200200241106a24000bc20201017f024002400240412010132202450d0020022000290018370000200241186a200041306a290000370000200241106a200041286a290000370000200241086a200041206a2900003700002002412041c00010152202450d0120022000290038370020200241386a200041d0006a290000370000200241306a200041c8006a290000370000200241286a200041c0006a290000370000200241c00041800110152202450d0220022000290058370040200220002903003700602002200029030837006820022000290310370071200241d8006a200041f0006a290000370000200241d0006a200041e8006a290000370000200241c8006a200041e0006a290000370000200220002d00784101463a007020012802002001280204200241f9001001200210160f0b412041011014000b41c00041011014000b41800141011014000b130020004101360204200041dc8cc0003602000bb40d03017f017e097f230041d0006b2204240042002105200441206a41086a220642003703002004420037032041888dc000411d200441206a1002200441086a220720062903003703002004200429032037030002400240024002400240024002400240024002402004411041acf1c300410041001000417f460d002004421037021420042004360210200441206a200441106a102c20042903304202510d0102402004280244450d00200441c0006a28020010160b200041046a280200450d0920002802001016200441d0006a24000f0b2006420037030020044200370320419be8c200410d200441206a100220072006290300370300200420042903203703000240024002402004411041acf1c300410041001000417f460d002004420037032020044110200441206a41084100100041016a41084d0d01200429032021050b02402002a74101470d00200441206a41086a220642003703002004420037032041a58dc000411a200441206a1002200441086a20062903003703002004200429032037030002402004411041acf1c300410041001000417f460d002004420037032020044110200441206a41084100100041016a41084d0d0320042903202005580d00200041046a280200450d0c20002802001016200441d0006a24000f0b200441206a41086a220642003703002004420037032041a58dc000411a200441206a1002200441086a2006290300370300200420042903203703002004200142018620057c37032020044110200441206a410810010b200028020821062000280204210820002802002109200441206a41086a220042003703002004420037032041888dc000411d200441206a1002200441086a2000290300370300200420042903203703002004410036022820044201370320410810132200450d03200442888080808001370224200420003602202000200537000020004108411010152200450d04200442908080808002370224200020013700082004200036022020042006360210200441106a200441206a101802400240024002402006450d002009200641286c6a210a200441206a41086a220b280200210c2004280224210720092100034002400240024002402007200c6b41204f0d00200c41206a2206200c490d062007410174220d20062006200d491b220e4100480d062007450d0120042802202007200e1015220d0d020c070b200c41206a21062004280220210d0c020b200e1013220d450d050b2004200e3602242004200d360220200e21070b200b2006360200200d200c6a220c41186a200041186a290000370000200c41106a200041106a290000370000200c41086a200041086a290000370000200c2000290000370000200041206a29030021050240200720066b41074b0d00200641086a220c2006490d032007410174220e200c200c200e491b220c4100480d03024002402007450d00200d2007200c1015220d0d010c070b200c1013220d450d060b2004200c3602242004200d360220200c21070b200b200641086a220c360200200d20066a2005370000200a200041286a2200470d000b0b200441286a28020021002004280224210702400240024002400240024002400240024002400240024020024201520d0020072000470d01200041016a22062000490d0c20004101742207200620062007491b22074100480d0c2000450d03200428022020002007101522060d040c140b20072000470d01200041016a22062000490d0b20004101742207200620062007491b22074100480d0b2000450d05200428022020002007101522060d060c140b200428022021060c030b20042802202106200721070c050b200710132206450d100b20042007360224200420063602200b200441206a41086a220b200041016a220d360200200620006a41013a000002402007200d6b41074b0d00200d41086a220c200d490d072007410174220e200c200c200e491b220c4100480d072007450d0420062007200c101522060d050c110b2007210c0c050b200710132206450d0e0b20042007360224200420063602200b200441286a200041016a220d360200200620006a41003a0000200441102006200d10012007450d0f0c0e0b200c10132206450d0c0b2004200c360224200420063602200b200b200041096a22003602002006200d6a200337000020044110200620001001200c0d0b0c0c0b1010000b200e41011014000b200c41011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410841011014000b411041011014000b200741011014000b200741011014000b200c41011014000b200610160b2008450d00200910160b200441d0006a24000b13002000410f360204200041bf8dc0003602000b130020004102360204200041d08dc0003602000b02000b130020004100360204200041acf1c3003602000b130020004107360204200041e18fc0003602000b130020004102360204200041e88fc0003602000b9e1102177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024002400240024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b2000210941022100200d41776a220f411e4d0d010c020b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d0841022100200d41776a220f411e4b0d010b41f400210e024002400240200f0e1f07010505000505050505050505050505050505050505050505040505050504070b41f200210e0c010b41ee00210e0b0c040b200d41dc00470d010b0c010b0240200d10370d0002400240200d41ffff034b0d00200d4180fe0371410876211141a8f7c300211241002113410021000c010b0240200d41ffff074b0d00200d4180fe0371410876211641e3fcc300211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d05201341f8f7c3006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d012010211320142112201441f8f7c300470d030c010b2010211320142112201441f8f7c300470d010b200d41ffff0371210e41a7fac30021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041e3fcc300460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41bcf5c3001038000b200f410173210f200041e3fcc300470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021039000b20132010101c000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841a5fdc3006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441a5fdc300470d030c010b2010211820142117201441a5fdc300470d010b200d41ffff0371210e41c3fec30021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041c081c400460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41bcf5c3001038000b200f410173210f200041c081c400470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011039000b20182010101c000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c02400240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b20072802002004200a6a200b200a6b200828020028020c1101000d010340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d062019422088a741ff0171417f6a220041044b0d06024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c000842119410321000c040b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f83201942808080807083842119410321000c020b201942ffffffff8f6083428080808010842119410321000c010b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d050c060b2007280200200a2008280200280210110000450d000b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a103a000b200241206a240041010f0b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a2003103b000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b9b0201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141c081c4006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141d883c4006a2d0000220141c9004b0d03200141037441b08ec4006a21010c010b2000410c7641706a22014180024f0d03200141b88bc4006a2d00004106742000410676413f7172220141ff034b0d042001418093c4006a2d0000220141364b0d052001410374418097c4006a21010b200129030042012000413f71ad86834200520f0b41b88dc400200141e00710a801000b41c88dc400200141ca0010a801000b41d88dc400200141800210a801000b41e88dc400200141800410a801000b41f88dc4002001413710a801000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a410036020020012004370318200141acf1c300360210200142013702042001200141186a36020020012003370328200120023703202001200141206a1046000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241b8f3c3003602082002200241046a360228200220023602202002200241206a360218200241086a41c8f3c3001046000b2601017f20002802002201280200200128020420002802042802002000280208280200103b000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c200441acf1c30041def4c30020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4102360200200441e4006a4102360200200441c8006a41146a4103360200200441d4006a4104360200200441306a41146a4105360200200420023602582004410136024c20044205370234200441d4f5c3003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a41fcf5c3001046000b20042002200320081b360228200441c8006a41146a4102360200200441d4006a4102360200200441306a41146a41033602002004410136024c20044203370234200441e4f4c3003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a41fcf4c3001046000b200441e4006a4102360200200441c8006a41146a4102360200200441d4006a4101360200200441306a41146a41043602002004410136024c200442043702342004418cf5c3003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41acf5c3001046000b41bcf5c3001038000bc60202027f017e23004180016b22022400200028020021000240024002400240200128020022034110710d002000290300210420034120710d0120042001103d210020024180016a240020000f0b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141dcf4c3004102200220006a41800120006b103e210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141dcf4c3004102200220006a41800120006b103e210020024180016a240020000f0b2000418001101c000b2000418001101c000bd10203037f017e027f230041306b220224004127210302400240024020004290ce00540d00412721030340200241096a20036a2204417c6a200020004290ce0080220542f0b17f7e7ca7220641e4006e220741017441eef1c3006a2f00003b00002004417e6a2007419c7f6c20066a41017441eef1c3006a2f00003b00002003417c6a2103200042ffc1d72f5621042005210020040d000b2005a7220441e3004c0d020c010b20002205a7220441e3004c0d010b200241096a2003417e6a22036a2005a7220641ffff037141e4006e2204419c7f6c20066a41ffff037141017441eef1c3006a2f00003b00000b02400240200441094a0d00200241096a2003417f6a22036a200441306a3a00000c010b200241096a2003417e6a22036a200441017441eef1c3006a2f00003b00000b200141acf1c3004100200241096a20036a412720036b103e2103200241306a240020030bcd0601077f20002802002205410171220620046a2107024002400240024020054104710d0041002101412b418080c40020061b210620002802084101460d010c020b4100210902402002450d002002210a200121080340200920082d000041c00171418001466a2109200841016a2108200a417f6a220a0d000b0b200720026a20096b2107412b418080c40020061b210620002802084101470d010b0240024002400240024002400240024002400240024002402000410c6a280200220920074d0d0020054108710d01200920076b2108410120002d0030220920094103461b2209410371450d0220094102460d034100210b200821090c040b41012108200020062001200210ee020d0c2000280218200320042000411c6a28020028020c1101000f0b41012108200041013a003020004130360204200020062001200210ee020d0b200920076b21084101200041306a2d0000220920094103461b2209410371450d0320094102460d0441002107200821090c050b410021092008210b0c010b20084101762109200841016a410176210b0b417f2108200041046a210a200041186a21072000411c6a210502400340200841016a220820094f0d012007280200200a2802002005280200280210110000450d000c050b0b200041046a280200210a41012108200020062001200210ee020d08200041186a2209280200200320042000411c6a220228020028020c1101000d0820092802002100417f2109200228020041106a21020340200941016a2209200b4f0d06410121082000200a2002280200110000450d000c090b0b41002109200821070c010b20084101762109200841016a41017621070b417f2108200041046a210a200041186a21022000411c6a21010340200841016a220820094f0d022002280200200a2802002001280200280210110000450d000b0b410121080c040b200041046a280200210a41012108200041186a2209280200200320042000411c6a220228020028020c1101000d0320092802002100417f2109200228020041106a21020340200941016a220920074f0d02410121082000200a2002280200110000450d000c040b0b41000f0b41000f0b41012108200020062001200210ee020d002000280218200320042000411c6a28020028020c1101000f0b20080bbf0201037f23004180016b22022400200028020021000240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103d210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b2004418001101c000b2004418001101c000b830605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce00420010f9022002200229031022072006290300220842f0b17f427f10fa02200241206a20006a2203417c6a200520022903007ca7220941e4006e220a41017441eef1c3006a2f00003b00002003417e6a200a419c7f6c20096a41017441eef1c3006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b2007a7220341e3004a0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d03200141dcf4c3004102200241206a20006a41800120006b103e2100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d03200141dcf4c3004102200241206a20006a41800120006b103e2100200241a0016a240020000f0b412721002005a7220341e3004c0d030b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff037141017441eef1c3006a2f00003b0000200941094a0d030c040b2000418001101c000b2000418001101c000b2003220941094c0d010b200241206a2000417e6a22006a200941017441eef1c3006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141acf1c3004100200241206a20006a412720006b103e2100200241a0016a240020000b9c0601067f230041e0006b220224002002413c6a41026a2203200141036a2d00003a0000200241206a41086a2204200141106a290200370300200241206a41106a2205200141186a290200370300200241206a41186a2206200141206a280200360200200220012f00013b013c2002200141086a290200370320200141046a28020021070240024002400240024002400240024002400240024020012d00004101470d00410f10132201450d03200141076a41002900c09240370000200141002900b992403700002001410f411e10152201450d042001200741067636000f200241086a22034200370300200242003703002001411320021002200241c0006a41086a200329030037030020022002290300370340200241c0006a411041acf1c300410041001000417f460d01200242103702542002200241c0006a3602502002200241d0006a101120022802002203450d05200241086a2802002105200228020421060c020b200241c0006a41026a20032d00003a0000200241086a2004290300370300200241106a2005290300370300200241186a20062d00003a0000200220022f013c3b0140200220022903203703000c070b4101210341002105410021060b2001101641002101024020052007413f7122044d0d000240200320044105746a2205450d00200241c0006a41026a200541026a2d00003a0000200241086a200320044105746a2201410f6a290000370300200241106a200141176a290000370300200241186a2001411f6a2d00003a0000200220052f00003b01402002200129000737030020012800032107410121010b2006450d050c040b20060d030c040b410f41011014000b411e41011014000b41b6e7c20041331029000b200310160b2001450d010b200020022f01403b0001200041046a2007360000200041086a2002290300370000200041036a200241c2006a2d00003a0000200041106a200241086a290300370000200041186a200241106a290300370000200041206a200241186a2d00003a0000410021010c010b200041086a4115360200200041046a41e8d5c200360200410121010b200020013a0000200241e0006a24000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d0220042002412010f802450d02200441206a22062002460d0220062002412010f802450d02200441c0006a22062002460d0220062002412010f802450d02200441e0006a22062002460d0220044180016a210420062002412010f8020d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d0220042002412010f802450d022006200441206a2204470d000b0b41000f0b20050bdc0701067f230041106b220324002003200136020c2003410c6a2002101802400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101522060d020c070b200228020021060c020b200710132206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101522060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101522060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101522060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101522060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810132206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810132206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810132206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810132206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011014000b200841011014000b200841011014000b200841011014000b200841011014000b4d01017f230041206b22002400200041146a41013602002000410236021c200041c8d7c30036021820004201370204200041d0d7c3003602002000200041186a360210200041fc86c0001046000b110020012000280200200028020410ef020b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241acf1c300360204200241acf1c300360200200210e602000b130020004103360204200041c892c0003602000b130020004110360204200041c495c0003602000b130020004102360204200041a097c0003602000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310152202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310152202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310152202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310152202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310152202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310152202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101322020d140b200341011014000b2003101322020d100b200341011014000b2003101322020d0c0b200341011014000b2003101322020d100b200341011014000b2003101322020d060b200341011014000b2003101322020d020b200341011014000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000ba60803037f027e057f230041106b2202240020024100360208200242013703002000280218210302400240024002400240024002400240410410132204450d0020024284808080c000370204200220043602002004200336000020044104412410152204450d01200242a4808080c004370204200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436020041000d05200041086a2903002105200029030021062004412441c80010152204450d02200420063700242004412c6a2005370000200241086a22034134360200200241c80036020420022004360200200028021c21072002200041246a280200220436020c2002410c6a2002101802400240024020022802042208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802002008200910152208450d020c060b200228020021080c060b2009101322080d040b200941011014000b410441011014000b412441011014000b41c80041011014000b20022009360204200220083602000b200241086a2209200320046a360200200820036a2007200410f6021a2000280228210a2002200041306a280200220736020c2002410c6a200210180240024002400240024020022802042203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802002003200810152204450d020c030b200228020021040c030b2008101322040d010b200841011014000b2002200836020420022004360200200821030b200241086a220b200920076a2208360200200420096a200a200710f6021a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710152204450d020c030b200321070c030b2007101322040d010b200741011014000b20022007360204200220043602000b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22082003490d0320074101742209200820082009491b22094100480d032007450d0120042007200910152204450d020c040b200841286a21080c040b2009101322040d020b200941011014000b1010000b20022009360204200220043602000b200241086a22072008360200200420036a200537000020002d00742002104a2002280204210020012802002001280204200228020022042007280200100102402000450d00200410160b200241106a24000b13002000410f36020420004188a0c0003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410132203450d0020024284808080c000370204200220033602002003410036000020034104410810152203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610152203450d020c050b200421060c050b2006101322030d030b200641011014000b410441011014000b410841011014000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410152203450d020c030b200621040c030b2004101322030d010b200441011014000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710152203450d010c020b2007101322030d010b200741011014000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002104a02400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410152206450d020c040b200341086a2105200228020021060c040b2004101322060d020b200441011014000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410132203450d0020024284808080c000370244200220033602402003410036000020034104412410152203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010152203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a10182002410036024c200241cc006a200241c0006a10182002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710152203450d020c060b200521070c060b2007101322030d040b200741011014000b410441011014000b412441011014000b41c80041011014000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410152203450d020c040b200641286a21060c040b2004101322030d020b200441011014000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a104a200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410132202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011014000b3401017f0240410410132202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011014000b3301017f0240410410132202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011014000bf80103027f017e017f230041206b22022400200241106a41086a2203420037030020024200370310419095c3004117200241106a1002200241086a200329030037030020022002290310370300024002400240024002402002411041acf1c300410041001000417f460d002002420037031020024110200241106a41084100100041016a41084d0d0220022903104201862204500d0341082105410810132203450d010c040b42062104410821054108101322030d030b200541011014000b41b6e7c20041331029000b41bcb3c0001038000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010132202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011014000b3901017f0240411010132202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011014000b3a01017f0240411010132202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011014000b3201017f0240410410132202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011014000b130020004109360204200041a0aec0003602000ba80e03057f017e017f230041c0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910132204450d00200441186a41002d00c7be403a0000200441106a41002900bfbe40370000200441086a41002900b7be40370000200441002900afbe4037000020044119413210152204450d0120042001360019200341b0016a41086a22054200370300200342003703b0012004411d200341b0016a1002200341206a41086a22062005290300370300200320032903b001370320200341206a411041acf1c30041004100100021052004101602400240024002402005417f460d0020034190016a20011059200341206a41186a200341186a290300370300200341206a41106a200341106a2903003703002006200341086a2903003703002003200329030037032020032802940122072003280298012204470d01200441016a22062004490d0620044101742205200620062005491b2207ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910152205450d030c0a0b412110132204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910132205450d07200541186a41002d00c7be403a0000200541106a41002900bfbe40370000200541086a41002900b7be40370000200541002900afbe4037000020054119413210152205450d0820052001360019200341b0016a41086a22064200370300200342003703b0012005411d200341b0016a1002200341a0016a41086a2006290300370300200320032903b0013703a001200341003602282003420137032020044101200341206a104320032802242106200341a0016a4110200328022022072003280228100102402006450d00200710160b20051016200410160c0b0b200441016a210620032802900121050c090b2009101322050d070b200941011014000b411941011014000b413241011014000b1010000b412141011014000b411941011014000b413241011014000b200320073602940120032005360290010b20034190016a41086a20063602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910132204450d01200441186a41002d00c7be403a0000200441106a41002900bfbe40370000200441086a41002900b7be40370000200441002900afbe4037000020044119413210152204450d0220042001360019200341b0016a41086a22094200370300200342003703b0012004411d200341b0016a1002200341a0016a41086a2009290300370300200320032903b0013703a001200341003602282003420137032020052006200341206a104320032802242106200341a0016a4110200328022022092003280228100102402006450d00200910160b200410162007450d00200510160b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210132204450d00200441206a41002f0096bc403b0000200441186a410029008ebc40370000200441106a4100290086bc40370000200441086a41002900febb40370000200441002900f6bb403700002004412241c40010152204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341206a41086a290300370000200441c40041880110152204450d0220042001360042200341b0016a41086a22054200370300200342003703b001200441c600200341b0016a1002200341a0016a41086a2005290300370300200320032903b0013703a001024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110132205450d09200541033a00000c030b410110132205450d09200541023a00000c020b410110132205450d09200541013a00000c010b410110132205450d09200541003a00000b200341a0016a41102005410110012005101620041016200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a105a200341c0016a24000f0b412241011014000b41c40041011014000b41880141011014000b411941011014000b413241011014000b410141011014000b410141011014000b410141011014000b410141011014000bba0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910132203450d00200341186a41002d00c7be403a0000200341106a41002900bfbe40370000200341086a41002900b7be40370000200341002900afbe4037000020034119413210152204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1002200241106a41086a2003290300370300200220022903503703100240024002400240200241106a411041acf1c300410041001000417f460d00200242103702242002200241106a360220200241086a200241206a10122002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310132207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011014000b413241011014000b200341011014000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100022112011417f461b22114120201141204922121b20096a221136020020120d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082011200b200a200241d0006a41012011100041016a41014b22156a22093602002015450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101522070d010c080b201210132207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b20041016200241f0006a24000f0b200f450d00200710160b41b6e7c20041331029000b1010000b201241011014000b870f03067f017e0a7f23004180036b220124000240024002400240024002400240024002400240024002400240024041f9e6c200411041acf1c300410041001000417f460d00200141003602a00141f9e6c2004110200141a0016a41044100100041016a41044d0d0220012802a0012102410021030c010b410121030b41082104200141a0016a41086a22054200370300200142003703a0014182e9c200410d200141a0016a1002200141106a41086a2005290300370300200120012903a001370310024002400240200141106a411041acf1c300410041001000417f460d00200142103702242001200141106a360220200141086a200141206a10122001280208450d07200128020c2206ad42f8007e2207422088a70d042007a72205417f4c0d042005450d01200510132204450d052006450d020c060b4100210e4100210c0c070b4108210420060d040b4100210c4100210e2004450d040c050b41b6e7c20041331029000b100f000b200541081014000b200141a0016a4101722108200141286a21094100210a410021054100210b2006210c02400340200141003a0090022001280220200128022420014190026a410120092802001000210d20092009280200200d41016a41014b220d6a220e360200200d450d014101210f024020012d009002220d4101460d00200d0d02200141003602a0012009410020012802202001280224200141a0016a4104200e1000220d200d417f461b220d4104200d4104491b20092802006a360200200d41034d0d0220012802a00121104100210f0b200141a0016a200141206a107f20012d00a001210d20014190026a200841ef0010f6021a200d4112460d01200b41016a210e200141316a20014190026a41ef0010f6021a200141a0016a200141316a41ef0010f6021a0240200b200c470d00200a200e200e200a491b220cad42f8007e2207422088a70d072007a722114100480d070240200b450d00200420052011101522040d010c060b201110132204450d050b200420056a220b200d3a0000200b41016a200141a0016a41ef0010f6021a200b41f4006a2010360200200b41f0006a200f360200200a41026a210a200541f8006a2105200e210b200e2006490d000c030b0b0240200b450d00200421010340024020012d00004106470d00200141086a280200450d00200141046a28020010160b200141f8006a2101200541887f6a22050d000b0b200c450d00200410160b41b6e7c20041331029000b200141a0016a200041f00010f6021a200c200e470d01200e41016a2205200e490d02200e4101742209200520052009491b220cad42f8007e2207422088a70d022007a722054100480d0202400240200e450d002004200e41f8006c200510152204450d010c030b2005101322040d020b200541081014000b201141081014000b2004200e41f8006c220b6a200141a0016a41f00010f602220541f4006a200236020020052003360270200141a0016a41086a22094200370300200142003703a0014182e9c200410d200141a0016a1002200141106a41086a2009290300370300200120012903a001370310200141003602a801200142013703a0012001200e41016a22063602900220014190026a200141a0016a101802402006450d00200b41f8006a210a2004210503400240024002400240024002400240024002400240200541f0006a2802004101470d00200141013a00900220012802a4012009280200220b470d01200b41016a220d200b490d0c200b410174220f200d200d200f491b220f4100480d0c200b450d0320012802a001200b200f1015220d0d040c0d0b200141003a00900220012802a4012009280200220b470d01200b41016a220d200b490d0b200b410174220f200d200d200f491b220f4100480d0b200b450d0520012802a001200b200f1015220d0d060c0d0b4101210f20012802a001210d0c030b4100210f20012802a001210d0c050b200f1013220d450d090b2001200f3602a4012001200d3602a0012009280200210b20012d009002210f0b2009200b41016a360200200d200b6a200f3a00000c030b200f1013220d450d070b2001200f3602a4012001200d3602a0012009280200210b20012d009002210f0b2009200b41016a360200200d200b6a200f3a0000200541f4006a280200210f024002400240024020012802a401220d2009280200220b6b41044f0d00200b41046a2210200b490d07200d410174220b20102010200b491b220b4100480d07200d450d0120012802a001200d200b1015220d0d020c0a0b20012802a001210d0c020b200b1013220d450d080b2001200b3602a4012001200d3602a0012009280200210b0b2009200b41046a360200200d200b6a200f3600000b2005200141a0016a108001200541f8006a2105200a41887f6a220a0d000b0b20012802a4012105200141106a411020012802a001220b2009280200100102402005450d00200b10160b02402006450d00200e41f8006c41f8006a2109200421050340024020052d00004106470d00200541086a280200450d00200541046a28020010160b200541f8006a2105200941887f6a22090d000b0b0240200c450d00200410160b20014180036a24000f0b1010000b200f41011014000b200f41011014000b200b41011014000bd90f05087f027e067f017e017f230041b0016b220224000240024002400240411310132203450d002003410f6a4100280096b840360000200341086a410029008fb84037000020034100290087b84037000020034113412610152204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1002200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a411041acf1c300410041001000417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100022032003417f461b2203410420034104491b20022802286a2201360228200341034d0d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22034100200241106a411020024190016a41202001100022012001417f461b2201412020014120491b20032802006a22093602002001411f4d0d06200241f0006a41186a22012006290300370300200241f0006a41106a22062007290300370300200241f0006a41086a220720082903003703002002200229039001370370200241306a41186a2001290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903703703302002420037039801200242003703900120034100200241106a411020024190016a41102009100022012001417f461b2201411020014110491b20032802006a3602002001410f4d0d0620024198016a290300210a200229039001210b200241086a200241206a10122002280208450d06200228020c2203417f4c0d072003450d012003101b220c450d0a200241286a22012003410020022802202002280224200c20032001280200100022062006417f461b2206200620034b1b220620012802006a36020020062003460d020c050b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b4101210c2002280220200228022441014100200241286a28020010001a41002003470d030b2002200241206a10122002280200450d0220022802042201417f4c0d04024002402001450d002001101b220d450d0a200241286a220620062802002208200141002002280220220620022802242207200d20012008100022082008417f461b2208200820014b1b22096a220836020020092001460d010c030b4101210d200228022022062002280224220741014100200241286a280200220810001a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002006200720024190016a41202008100022092009417f461b2209412020094120491b20086a22083602002009411f4d0d01200241f0006a41186a2209200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2009290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002006200720024190016a41082008100022092009417f461b2209410820094108491b20086a2208360200200941074d0d012002290390012112200241003a009001200241286a20082006200720024190016a41012008100041016a41014b22066a3602002006450d0120022d009001220741064f0d0120024190016a41186a2208200241306a41186a29030037030020024190016a41106a2209200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22062d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2009290300370200200041cc006a200829030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200620132d00003a0000200220022f01303b0150200020073a0074200020022f01503b0075200041f7006a20062d00003a00000b20041016200241b0016a24000f0b2001450d00200d10160b2003450d00200c10160b41b6e7c20041331029000b100f000b411341011014000b412641011014000b200341011014000b200141011014000b9b12020b7f037e230041f0026b22022400200241e0026a41086a22034200370300200242003703e002419ab8c000411b200241e0026a1002200241d0026a41086a2003290300370300200220022903e0023703d00241002104024002400240024002400240200241d0026a411041acf1c300410041001000417f460d002002421037026c2002200241d0026a360268200241d8016a200241e8006a102620022802d8012205450d02200241e0016a280200210420022802dc0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041013220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d01200510164100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031015220b0d010c020b20031013220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041014000b02402006450d00200510160b200a2004470d050c040b4100210c41002004460d030c040b1010000b41b6e7c20041331029000b410441041014000b0240200c450d00200b10160b200241f0026a240041f1bdc0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241d8016a2000105b200241e0006a200241a4026a290200370300200241c8006a41106a2002419c026a290200370300200241c8006a41086a20024194026a2902003703002002200229028c023703484200210d200241e0026a41086a22034200370300200242003703e0024199bec0004116200241e0026a1002200241d0026a41086a2003290300370300200220022903e0023703d002200241d0026a411041acf1c300410041001000417f460d022002420037037020024200370368200241d0026a4110200241e8006a4110410010002203417f460d082003410f4d0d08200241f0006a290300210d2002290368210e0c030b200241d8016a2000105b200241e8006a41186a200241c4026a290200370300200241e8006a41106a200241bc026a290200370300200241e8006a41086a200241b4026a290200370300200220022902ac02370368411810132203450d0841002107200341106a41002900ffb740370000200341086a41002900f7b740370000200341002900efb74037000020034118413810152203450d0920032002290368370018200341306a20024180016a290300370000200341286a200241e8006a41106a290300370000200341206a200241e8006a41086a290300370000200241e0026a41086a22094200370300200242003703e00220034138200241e0026a1002200241d0026a41086a2009290300370300200220022903e0023703d002200241d0026a411041acf1c300410041001000417f460d032002421037024c2002200241d0026a360248200241206a200241c8006a10122002280220450d0c20022802242208417f4c0d0a2008450d042008101b2207450d0d200241d0006a220920092802002209200841002002280248200228024c200720082009100022092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241d8016a2000105b200241286a2002418c026a20022903d801200241d8016a41086a290300105d200241e8006a41186a200241286a41186a290300370300200220022903383703782002200241286a41086a29030037037020022002290328370368200241e8006a105e0240200241f8016a280200450d0020022802f40110160b20024184026a280200450d0520022802800210160c050b420a210e0b2002200241c8006a200e200d105d200241e8006a41186a200241186a290300370300200220022903103703782002200241086a29030037037020022002290300370368200241e8006a105e200241c8006a20022903d801220f200e7d200241d8016a41086a290300200d7d200f200e54ad7d105f0240200241f8016a280200450d0020022802f40110160b20024184026a280200450d0320022802800210160c030b0c010b410121072002280248200228024c41014100200241d0006a28020010001a41002008470d060b200241ac026a2109200310162002418c026a20022903d801200241d8016a41086a290300105f4180c9c30041052007410120071b22042008410020071b2203100102402003450d00200410160b200241e8006a41086a41053a0000200241f1006a2009290000370000200241e8006a412c6a2000360200200241f9006a200941086a29000037000020024181016a200941106a29000037000020024189016a200941186a290000370000200241073a0068200241e8006a105a0240200241f8016a280200450d0020022802f40110160b200241d8016a412c6a280200450d0020022802800210160b2002200a3602e0012002200c3602dc012002200b3602d801200241d8016a10600240200c450d00200b10160b200241d8016a2000105b200220013a00cc0202400240411310132203450d002003410f6a4100280096b840360000200341086a410029008fb84037000020034100290087b84037000020034113412610152203450d0120032000360013200241e0026a41086a22074200370300200242003703e00220034117200241e0026a1002200241d0026a41086a2007290300370300200220022903e0023703d0022002411036026c2002200241d0026a360268200241d8016a200241e8006a104b200310160240200241f8016a280200450d0020022802f40110160b024020024184026a280200450d0020022802800210160b200241e4016a2000360200200241e1016a20013a0000200241e0016a41023a0000200241073a00d801200241d8016a105a200241f0026a240041000f0b411341011014000b412641011014000b41b6e7c20041331029000b411841011014000b413841011014000b100f000b2008450d00200710160b41b6e7c20041331029000b200841011014000bb20304027f017e017f037e230041206b2204240002400240411810132205450d00200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441106a41086a220742003703002004420037031020054138200441106a1002200441086a2007290300370300200420042903103703000240024002402004411041acf1c300410041001000417f460d00200442003703182004420037031020044110200441106a4110410010002207417f460d022007410f4d0d02200441186a2903002108200429031021060c010b420021080b2005101620012006200220062006200256200820035620082003511b22051b22097d20082003200820051b220a7d2006200954ad7d108701200041186a2003200a7d2002200954ad7d3703002000200220097d3703102000200a37030820002009370300200441206a24000f0b41b6e7c20041331029000b411841011014000b413841011014000bc80202047f047e230041206b22012400200141106a41086a220242003703002001420037031041a795c3004116200141106a1002200141086a22032002290300370300200120012903103703000240024002402001411041acf1c300410041001000417f460d00200142003703182001420037031020014110200141106a4110410010002204417f460d022004410f4d0d02200141186a2903002105200129031021060c010b42002106420021050b200041086a290300210720002903002108200242003703002001420037031041a795c3004116200141106a1002200320022903003703002001200129031037030020014200200520077d2006200854ad7d2207200620087d2208200656200720055620072005511b22021b37031820014200200820021b37031020014110200141106a41101001200141206a24000f0b41b6e7c20041331029000be90504027f017e017f047e230041206b22032400024002400240411810132204450d00200441106a41002900b29643370000200441086a41002900aa9643370000200441002900a2964337000020044118413810152204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1002200341086a2006290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002206417f460d022006410f4d0d02200341186a2903002107200329031021052004101641142106411410132204450d010c050b4200210720041016411421064114101322040d040b200641011014000b41b6e7c20041331029000b411841011014000b413841011014000b200441106a410028009e9643360000200441086a410029009696433700002004410029008e9643370000024020042006413410152204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1002200341086a2006290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101620002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c1086012000200520017d200720027d2005200154ad7d108701200341206a24000f0b41b6e7c20041331029000b413441011014000b880301097f230041306b22012400200141206a41086a2202420037030020014200370320419ab8c000411b200141206a1002200141086a41086a20022903003703002001200129032037030820014100360228200142013703202000280200210320012000280208220036021c2001411c6a200141206a101802400240024002402000450d002000410274210420022802002100200128022421050340200328020021060240024002400240200520006b41044f0d00200041046a22072000490d0720054101742208200720072008491b22094100480d072005450d01200128022020052009101522080d020c080b200041046a2107200128022021080c020b200910132208450d060b2001200936022420012008360220200921050b200341046a210320022007360200200820006a2006360000200721002004417c6a22040d000c020b0b2002280200210720012802242105200128022021080b200141086a411020082007100102402005450d00200810160b200141306a24000f0b1010000b200941011014000b130020004105360204200041e0bec0003602000b130020004103360204200041c4cbc0003602000b13002000410736020420004182cfc0003602000b1300200041083602042000418ccfc0003602000b9b0501087f230041c0006b220224000240024002400240412610132203450d002003411e6a41002900e9dd40370000200341186a41002900e3dd40370000200341106a41002900dbdd40370000200341086a41002900d3dd40370000200341002900cbdd403700002003412641cc0010152204450d0120042001370026200241286a41086a22034200370300200242003703282004412e200241286a1002200241106a41086a200329030037030020022002290328370310024002400240024002400240200241106a411041acf1c300410041001000417f460d002002421037022c2002200241106a360228200241086a200241286a10122002280208450d05200228020c2203417f4c0d082003450d012003101b2205450d09200241306a2206200628020022062003410020022802282207200228022c2208200520032006100022062006417f461b2206200620034b1b22066a220936020020062003460d020c040b20041016200041f4c9c00036020441012106412d21030c020b4101210520022802282207200228022c220841014100200241306a280200220910001a41002003470d020b41002106200241003a003c200241306a2009200720082002413c6a41012009100041016a41014b22076a3602002007450d0120022d003c2107200241246a41026a22082002413c6a41026a22092d00003a0000200220022f003c3b0124200920082d00003a0000200220022f01243b013c20041016200041106a20073a00002000410c6a200336020020002005360204200020022f013c3b0011200041136a20092d00003a00000b20002006360200200041086a2003360200200241c0006a24000f0b2003450d00200510160b41b6e7c20041331029000b412641011014000b41cc0041011014000b100f000b200341011014000b130020004103360204200041f4ddc0003602000b1300200041163602042000419ce1c0003602000bd00401087f230041306b220224000240024002400240024002400240412610132203450d002003411e6a41002900e9dd40370000200341186a41002900e3dd40370000200341106a41002900dbdd40370000200341086a41002900d3dd40370000200341002900cbdd403700002003412641cc0010152204450d0120042000370026200241206a41086a22034200370300200242003703202004412e200241206a1002200241086a41086a20032903003703002002200229032037030820024100360228200242013703202001280200210520022001280208220636021c2002411c6a200241206a101802400240024020022802242203200228022822076b20064f0d00200720066a22082007490d0720034101742209200820082009491b22094100480d072003450d0120022802202003200910152208450d020c050b200228022021080c050b2009101322080d030b200941011014000b412641011014000b41cc0041011014000b2002200936022420022008360220200921030b200241286a200720066a2209360200200820076a2005200610f6021a02400240024020032009470d00200341016a22062003490d0320034101742207200620062007491b22064100480d032003450d0120082003200610152208450d020c040b200321060c040b2006101322080d020b200641011014000b1010000b20022006360224200220083602200b200820096a2001410c6a2d00003a0000200241086a41102008200941016a100102402006450d00200810160b200410160240200141046a280200450d00200510160b200241306a24000b130020004104360204200041fce2c0003602000b130020004102360204200041c0ebc3003602000b130020004100360204200041acf1c3003602000b130020004101360204200041c082c0003602000b130020004103360204200041e48ec3003602000b130020004101360204200041e8c7c0003602000b130020004103360204200041a8c8c1003602000b130020004102360204200041e8b9c1003602000b130020004101360204200041b881c0003602000b130020004107360204200041b499c0003602000b13002000410b360204200041e49ec2003602000b130020004102360204200041bcecc2003602000b130020004101360204200041ccedc2003602000b1300200041043602042000418092c1003602000b130020004101360204200041e4bbc1003602000b13002000410336020420004184f8c0003602000b130020004102360204200041a4cac0003602000b130020004105360204200041eccdc2003602000b130020004104360204200041e4cac3003602000b130020004102360204200041cc8bc0003602000bd90f03047f017e037f230041206b2202240002400240024020012d000022034101460d0020030d0241012103200141016a21010c010b2001410c6a2802002104200141046a2802002101410021030b200241106a20043602002002200136020c200220033602082000200241086a107e200241206a24000f0b2002410036021020024201370308024002400240024002400240024002400240410110132203450d002002410136020c200241086a41086a22042004280200220541016a36020020022003360208200320056a41023a00000240024002400240024002400240200141086a2802004101470d00200228020c20042802002203470d01200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0320022802082003200510152204450d040c0a0b200228020c20042802002203470d01200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0420022802082003200510152204450d050c070b200228020821040c090b200228020821040c060b2005101322040d060b200541011014000b2005101322040d020b200541011014000b410141011014000b2002200536020c20022004360208200241106a28020021030b200241086a41086a2205200341016a360200200420036a41003a0000200141186a290300210602400240024002400240200228020c2204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120022802082004200310152204450d020c030b200228020821040c030b2003101322040d010b200341011014000b2002200336020c20022004360208200241106a28020021030b200241086a41086a2207200341086a360200200420036a20063700002001410c6a28020021032002200141146a280200220136021c2002411c6a200241086a10182001450d022003200141286c6a21080240024003400240024002400240200228020c2204200728020022096b41204f0d00200941206a22012009490d0a20044101742205200120012005491b22014100480d0a2004450d01200228020820042001101522050d020c050b200228020821050c020b200110132205450d030b2002200136020c2002200536020820072802002109200121040b2007200941206a2201360200200520096a220941186a200341186a290000370000200941106a200341106a290000370000200941086a200341086a29000037000020092003290000370000200341206a29030021060240200420016b41074b0d00200141086a22092001490d0720044101742201200920092001491b22014100480d07024002402004450d00200520042001101522050d010c050b200110132205450d040b2002200136020c20022005360208200728020021010b2007200141086a360200200520016a20063700002008200341286a2203470d000c050b0b200141011014000b200141011014000b2002200536020c20022004360208200241106a28020021030b200241086a41086a2205200341016a360200200420036a41013a0000200141186a290300210602400240024002400240200228020c2204200528020022036b41084f0d00200341086a22052003490d0620044101742203200520052003491b22034100480d062004450d0120022802082004200310152204450d020c030b200228020821040c030b2003101322040d010b200341011014000b2002200336020c20022004360208200241106a28020021030b200241086a41086a2205200341086a360200200420036a2006370000200141206a290300210602400240024002400240200228020c2204200528020022036b41084f0d00200341086a22052003490d0620044101742203200520052003491b22034100480d062004450d0120022802082004200310152204450d020c030b200228020821040c030b2003101322040d010b200341011014000b2002200336020c20022004360208200241106a28020021030b200241086a41086a2207200341086a360200200420036a20063700002001410c6a28020021032002200141146a280200220136021c2002411c6a200241086a10182001450d002003200141286c6a210803400240024002400240200228020c2204200728020022096b41204f0d00200941206a22012009490d0620044101742205200120012005491b22014100480d062004450d01200228020820042001101522050d020c070b200228020821050c020b200110132205450d050b2002200136020c2002200536020820072802002109200121040b2007200941206a2201360200200520096a220941186a200341186a290000370000200941106a200341106a290000370000200941086a200341086a29000037000020092003290000370000200341206a29030021060240200420016b41074b0d00200141086a22092001490d0320044101742201200920092001491b22014100480d03024002402004450d00200520042001101522050d010c070b200110132205450d060b2002200136020c20022005360208200728020021010b2007200141086a360200200520016a20063700002008200341286a2203470d000b0b200228020c210120022802082103200241106a220420042802003602002002200336020c200241043602082000200241086a107e02402001450d00200310160b200241206a24000f0b1010000b200141011014000b200141011014000bcd0f02077f017e230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001280200417f6a220341034b0d00024020030e0400040203000b20012802042101410110132203450d1120024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d06200341206a22042003490d1c20054101742203200420042003491b22034100480d1c2005450d0c20022802002005200310152204450d0d0c1f0b200141086a280200210320012802042101410110132204450d11200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a200210182003450d2020034105742106200241086a220728020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d2020054101742204200320032004491b22044100480d202005450d01200228020020052004101522080d020c140b20022802002108200421030c020b200410132208450d120b200220043602042002200836020020072802002103200421050b2007200341206a2204360200200820036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200641606a22060d000c210b0b2001410c6a2802002103200141086a280200210820012802042106410110132201450d1120024101360204200241086a22042004280200220541016a36020020022001360200200120056a41043a000020022802042205200428020022016b41044f0d02200141046a22042001490d1a20054101742201200420042001491b22014100480d1a2005450d0620022802002005200110152204450d070c180b200141086a280200210320012802042108410110132201450d1120024101360204200241086a22042004280200220541016a36020020022001360200200120056a41003a00002002200336020c2002410c6a2002101820022802042205200428020022016b20034f0d02200120036a22042001490d1920054101742201200420042001491b22014100480d192005450d0720022802002005200110152204450d080c150b200141086a280200210320012802042105410110132201450d1120024101360204200241086a22042004280200220841016a36020020022001360200200120086a41033a00002005290300210920022802042205200428020022016b41084f0d03200141086a22042001490d1820054101742201200420042001491b22014100480d182005450d0a20022802002005200110152204450d0b0c120b200228020021040c160b200228020021040c130b200228020021040c190b200228020021040c0f0b2001101322040d110b200141011014000b2001101322040d0d0b200141011014000b2003101322040d120b200341011014000b2001101322040d070b200141011014000b200441011014000b410141011014000b410141011014000b410141011014000b410141011014000b410141011014000b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a20093700000240024002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110152204450d020c030b200228020021040c030b2001101322040d010b200141011014000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c090b2002200136020420022004360200200241086a28020021010b200241086a200120036a360200200420016a2008200310f6021a0c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141046a360200200420016a20062800003600002002200336020c2002410c6a2002101802400240024020022802042204200528020022016b20034f0d00200120036a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110152204450d020c040b200228020021040c040b2001101322040d020b200141011014000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200120036a360200200420016a2008200310f6021a0c020b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000b20002002290300370200200041086a200241086a280200360200200241106a24000bfbb40108057f027e047f017e037f017e077f067e230041d0026b22022400200241003a000820012802002001280204200241086a410120012802081000210320012001280208200341016a41014b22036a22043602080240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402003450d0020022d0008220341114b0d04024020030e1200060708090a0b0c0d0e0f02101103120413000b41002105200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22012001280200200341016a41014b22016a3602002001450d17024020022d00082201450d004101210520014101470d180b200020053a0001200041003a0000200041026a200241086a41ee0010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d2f20022d009801220341034b0d2f024020030e04002b2c2e000b20024200370308200141086a220341002001280200200141046a2205280200200241086a41082004100022042004417f461b2204410820044108491b20032802006a2206360200200441074d0d2f20022903082107200241b0016a420037030020024198016a41106a2204420037030020024198016a41086a42003703002002420037039801200341002001280200200528020020024198016a41202006100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d2f200241b8026a41106a2004290300370300200241b8026a41086a20024198016a41086a29030037030020022002290398013703b80220022903b001210820024198026a41086a2204200241c7026a29000037030020024198026a41106a200241cf026a2d00003a0000200220083700a902200220022900bf02370398022008423088a7210120022800bb02210320022d00ba02210920022d00b902210a20022d00b802210b20042d0000210420022900a702210820022800a302210520022d00a202210620022d00a102210c200229039802210d4100210e0c2e0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1820022d00980122034101460d1620030d184200210720024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d18200229030821080c170b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d3320022d009801220341034b0d33024020030e04002f3031000b20024200370308200141086a220341002001280200200141046a2205280200200241086a41082004100022042004417f461b2204410820044108491b20032802006a2206360200200441074d0d332002290308210d20024190016a420037030020024188016a220f4200370300200241f8006a41086a4200370300200242003703782003410020012802002005280200200241f8006a41202006100022042004417f461b2204412020044120491b20032802006a22093602002004411f4d0d33200228008b01210e2002280087012110200229007f2107200228007b210420022d007a210520022d0079210620022d0078210c20022d008f012103200220022903900137009902200220033a009802200f4200370300200241f8006a41086a42003703002002420037039001200242003703784100210f200141086a220341002001280200200141046a280200200241f8006a41202009100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d3320022d0078210120022d0079210320022d007a2109200228007b210a200229007f2108200229008701211120022d008f01210b20022002290390013703b001200241086a41086a2212200241b7016a2d00003a00002002200b3a00af01200220113700a7012002200837009f012002200a36009b01200220093a009a01200220033a009901200220013a009801200220022900af013703082011422088a7210b20122d00002113200228020c21142002280208211520022d00a0022116200228029c02211720022802980221182011a721120c320b200041123a0000200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0d20022d0098010d0d20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d0d200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210720022d008f012106200228008b01210c200228008701210e200229007f2108200228007b210f20022d007a210920022d0079210a20022d0078210b20102802002103200241003602082005410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d0d20022802082101200041013a0000200041206a20073700002000411f6a20063a00002000411b6a200c360000200041176a200e3600002000410f6a20083700002000410b6a200f3600002000410a6a20093a0000200041096a200a3a0000200041086a200b3a0000200041046a2001360000200020022f0098013b0001200041036a2002419a016a2d00003a0000200041286a200241086a41c80010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d334103210920022d009801220341034b0d33024020030e0400323352000b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a220928020020024198016a41202004100022042004417f461b2204412020044120491b20032802006a220a3602002004411f4d0d33200241f8006a41186a22042005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c2903003703002002200229039801370378200228008b0121052002280087012106200229007f2107200228007b210f20022d007a210e20022d0079210c20022d0078211020022d008f01210b20022004290300370099022002200b3a00980220024200370310200242003703082003410020012802002009280200200241086a4110200a100022012001417f461b2201411020014110491b20032802006a3602002001410f4d0d33200241106a29030021192002290308211a20022d00a0022113200228029c0221142002280298022115410021090c510b200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0d20022d00080d0d20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0d20022903082107200041033a0000200041086a20073703002000200228009801360001200041046a20024198016a41036a280000360000200041106a200241086a41e00010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1f20022d00980122034102460d1d20034101460d1c20030d1f200242003703102002420037030841002103200141086a220541002001280200200141046a280200200241086a41102004100022012001417f461b2201411020014110491b20052802006a3602002001410f4d0d1f200241086a41086a290300210720022903082108200220022f01b8013b0176200241c9016a290000210d20022900c101211120022f01ba01210e20022d00bc01211020022800bd01210f0c1e0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1420022d00980122034101460d1220030d1441002103200241003a00082001280200200141046a280200200241086a4101200410002104200141086a22012001280200200441016a41014b22016a3602002001450d1420022d000821010c130b200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22042004280200200341016a41014b22036a3602002003450d4e20022d0008450d0d0c4e0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d3d20022d009801220341064b0d3d024020030e0700363738393a3b000b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a221041002001280200200141046a220f28020020024198016a41202004100022032003417f461b2203412020034120491b20102802006a22093602002003411f4d0d3d200241f8006a41186a22032005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c29030037030020022002290398013703782003290300210820022d008f01210a200228008b01210e2002280087012105200229007f2107200228007b210320022d007a210620022d0079210c20022d00782104200f280200210f20024100360208201041002001280200200f200241086a41042009100022012001417f461b2201410420014104491b20102802006a360200200141034d0d3d2002280208210f2002200a3a00980220022008370099022008423888a721092008421888a7210b200228029802210a41002110410021120c3c0b41002105200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d4720022d0098012218410a4b0d47024020180e0b4b003e3f404142444546474b0b200141046a280200210320024100360208200141086a2205410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d472002280208210e410121050c4a0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1320022d00980122034101460d1120030d134200210720024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d13200229030821080c120b200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0720022d00080d07200241086a41186a22054200370300200241086a41106a22064200370300200241086a41086a220c420037030020024200370308200141086a220341002001280200200141046a280200200241086a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d0720024198016a41186a2201200529030037030020024198016a41106a2203200629030037030020024198016a41086a2204200c29030037030020022002290308370398012000410a3a00002000200229039801370001200041096a2004290300370000200041116a2003290300370000200041196a2001290300370000200041216a200241086a41cf0010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0420022d0098010d0420024200370308200141086a220541002001280200200141046a2206280200200241086a41082004100022032003417f461b2203410820034108491b20052802006a2204360200200341074d0d042002290308210720062802002103200241003602082005410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d04200228020821012000410c3a0000200041106a2001360200200041086a20073703002000200228009801360001200041046a20024198016a41036a280000360000200041146a200241086a41dc0010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1a20022d00980122034102460d1820034101460d1920030d1a20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d1a200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210820022f0178210320022d007a2106200228007b210c200229007f210720022d008f01210e200241176a200229008701220d370000200220083700c9012002200e3a00c8012002411f6a20022903c801370000200241086a411f6a200241b8016a41186a2d00003a0000200220073703b8012002200d3703c0012002200c36000b200220063a000a200220033b01082002200737000f200241003a0098012001280200201028020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d1a20022d0098010d1a2002290320210720022d001f2101200228001b210320022800172104200229000f2108200228000b210c20022d000a210e20022d0009210f20022d00082109410021050c450b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d2e20022d009801220341044b0d2e024020030e05002a2b2c2d000b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d2e200228008b0121032002280087012104200229007f2107200228007b210520022d007a210620022d0079210c20022d0078210e20022d008f0121122002200229039001220d370009200220123a0008200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d2e20022d0078210120022d0079211020022d007a210f200228007b2109200229007f2108200228008701210a200228008b01210b20022d008f012112200220022903900122113703b001200220123a00af012002200b3600ab012002200a3600a7012002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a0098012011423888a721122011421888a72113200d421888a72114200d423888a7211520022800af01211620022802082117410021180c2d0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1120022d00980122034101460d0f20030d1120024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e4200370300200242003703980141002105200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d11200241f8006a41186a2006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e290300370300200220022903980137037820024188026a41086a200241f8006a411f6a2d00003a00002002200229008f01220837038802200228007b210320022d007a210420022d0079210620022d0078210c200229007f21072002280087012101200228008b01210e200220083c00f8012002200e3602f401200220013602f001200220073703e801200220022900890222083700f9012001411076210e2001410876211020022900f701210d20022800f301210f0c100b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200241086a2001101d20022802082201450d40200229020c2107200041063a0000200041086a2007370000200041046a2001360000200020022f0098013b0001200041036a2002419a016a2d00003a0000200041106a200241086a41e00010f6021a200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082108420121070b20002002280098013600012000410e3a0000200041106a2008370300200041086a2007370300200041046a2002419b016a280000360000200041186a200241086a41d80010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d01200241f8006a41186a22012005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c29030037030020022002290398013703782001290300210820022d008f012104200228008b0121052002280087012106200229007f2107200228007b210c20022d007a211020022d0079210e20022d00782101410121030b200020033a0001200041053a00002000411a6a2008370000200041196a20043a0000200041156a2005360000200041116a2006360000200041096a2007370000200041056a200c360000200041046a20103a0000200041036a200e3a0000200041026a20013a0000200041226a200241086a41ce0010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082108420121070b2000200228009801360001200041093a0000200041106a2008370300200041086a2007370300200041046a2002419b016a280000360000200041186a200241086a41d80010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210820022f0178210320022d007a2106200228007b210c200229007f2107200229008701210d200220022d008f013a00cf022002200d3700c702200220073700bf022002200c3600bb02200220063a00ba02200220033b01b802200242003703082005410020012802002010280200200241086a41082004100022012001417f461b2201410820014108491b20052802006a360200200141074d0d012002290308211120024198026a41086a2205200241b8026a410772220141086a29000037030020024198026a41106a200141106a2d00003a0000200220083700a902200220012900003703980220022800bb02210320022d00ba02210420022d00b902210620022d00b802210c20052d0000210120022900a702210d20022800a302210f20022d00a202210e20022d00a10221102002290398022107410121050b2000200228009801360001200041113a0000200041306a20113700002000412f6a41003a0000200041276a20084230883e00002000411f6a200d3700002000411b6a200f3600002000411a6a200e3a0000200041196a20103a0000200041186a20013a0000200041106a20073700002000410c6a20033600002000410b6a20043a00002000410a6a20063a0000200041096a200c3a0000200041086a20053a0000200041046a2002419b016a280000360000200041e8006a200241086a41306a290300370300200041e0006a200241306a290300370300200041d8006a200241286a290300370300200041d0006a200241086a41186a290300370300200041c8006a200241086a41106a290300370300200041c0006a200241086a41086a290300370300200041386a2002290308370300200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a220e28020020024198016a41202004100022042004417f461b2204412020044120491b20032802006a22103602002004411f4d0d02200241f8006a41186a220f2005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c2903003703002002200229039801370378200228007b210c20022d007a210520022d0079210420022d00782106200229007f2107200229008701210820022d008f0121092002200f29030037008902200241e8016a41186a20024188026a41086a2d00003a0000200220093a008802200220083703f001200220073703e80120022002290388023703f801200e280200210e20024100360208200341002001280200200e200241086a41042010100022012001417f461b2201410420014104491b20032802006a360200200141034d0d022002280208210f200241d8016a41086a200241e8016a41106a220141086a2d00003a0000200220012902003703d801200241e8016a41086a290300210720022903e8012108200220022f00df013b017620022800db01210920022d00da01211220022d00d901210b20022d00d801210a410121034100210e0c010b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300211b20022f0178210320022d007a2106200228007b210c200229007f21072002290087012108200220022d008f013a00cf02200220083700c702200220073700bf022002200c3600bb02200220063a00ba02200220033b01b80220024200370310200242003703082005410020012802002010280200200241086a41102004100022012001417f461b2201411020014110491b20052802006a3602002001410f4d0d01200241086a41086a290300210d2002290308211120024198026a41086a2203200241b8026a410772220141086a29000037030020024198026a41106a220e200141106a2d00003a000020022001290000370398022002201b3700a90220022800bb02210c20022d00ba02210520022d00b902210420022d00b8022106200220022f00af023b0176201b421088a72109201b420888a7211220032903002107200e2d0000210a2002290398022108201ba7210b410221034100210e4100210f0b200220022f017622013b0108200220013b0178200041186a2007370000200041106a2008370000200041386a200d370000200041306a2011370000200041043a0000200041236a2009360000200041226a20123a0000200041216a200b3a0000200041206a200a3a00002000410c6a200c3600002000410b6a20053a00002000410a6a20043a0000200041096a20063a0000200041086a20033a00002000412c6a200f3600002000412b6a20103a0000200041296a200e3b00002000200228009801360001200041046a2002419b016a280000360000200041276a20022f01783b0000200041e8006a200241306a290300370300200041e0006a200241086a41206a290300370300200041d8006a200241086a41186a290300370300200041d0006a200241086a41106a290300370300200041c8006a200241086a41086a290300370300200041c0006a2002290308370300200241d0026a24000f0b200220022f01763b0108200041123a0000200241d0026a24000f0b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210720022f0178210320022d007a2106200228007b210c200229007f2108200229008701210d200220022d008f013a00cf022002200d3700c702200220083700bf022002200c3600bb02200220063a00ba02200220033b01b802200241003a0098012001280200201028020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d0120022d0098010d0120024198026a41086a2203200241b8026a410772220141086a29000037030020024198026a41106a2204200141106a2d00003a0000200220073700a902200220012900003703980220022800bb02210c20022d00ba02210e20022d00b902210f20022d00b802210920042d000021012003280200210420022802a40221032002290398022108410221050c2c0b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d00200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e2903003703002002200229039801370378200228007b210c20022d007a210e20022d0079210f20022d00782109200229007f2107200229008701210820022d008f0121062002200329030037008902200241e8016a41186a20024188026a41086a2d00003a0000200220063a008802200220083703f001200220073703e80120022002290388023703f801200241003a0098012001280200201028020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d0020022d009801450d2a0b200041123a0000200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d042002290308210d4101210e0c010b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d032002290308210d4102210e0b0c010b2002420037030841002103200141086a220541002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20052802006a360200200141074d0d012002290308210d200229039001210720022d008f012110200228008b01210f2002280087012101200229007f2108200228007b210520022d007a210620022d0079210c20022d007821044103210e0b20002002280098013600012000410b3a0000200041306a20073700002000412f6a20103a00002000412b6a200f360000200041276a20013600002000411f6a20083700002000411b6a20053600002000411a6a20063a0000200041196a200c3a0000200041186a20043a0000200041106a200d3700002000410c6a20033600002000410b6a20093a00002000410a6a200a3a0000200041096a200b3a0000200041086a200e3a0000200041046a2002419b016a280000360000200041e8006a200241086a41306a290300370300200041e0006a200241306a290300370300200041d8006a200241286a290300370300200041d0006a200241086a41186a290300370300200041c8006a200241086a41106a290300370300200041c0006a200241086a41086a290300370300200041386a2002290308370300200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a2205280200200241086a41082004100022042004417f461b2204410820044108491b20032802006a2206360200200441074d0d0420022903082107200241003a00084101210f20012802002005280200200241086a410120061000210120032003280200200141016a41014b22016a3602002001450d0420022d0008210c0c020b200241f8006a41186a4200370300200241f8006a41106a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a220341002001280200200141046a220a280200200241f8006a41202004100022042004417f461b2204412020044120491b20032802006a220b3602002004411f4d0d0320022f0178210420022d007a2105200228007b210620022d008f01210c200229007f21072002290087012108200241086a41186a220e200229039001220d370300200220083700a7012002200737009f01200241086a41086a20024198016a41086a2903003703002002200c3a00af01200241086a41106a20024198016a41106a2903003703002002200636009b01200220053a009a01200220043b0198012002200d3703b0012002200229039801370308200e290300210d20022d001f2113200228001b210e20022800172110200229000f2107200228000b210420022d000a210520022d0009210620022d0008210c200f420037030020094200370300200242003703900120024200370378200341002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d0320024187016a28000021122002418b016a280000210b2002418f016a2d0000210f200228007b210a20022d007a210920022d0079210320022d00782101200229007f2108200220024190016a29030022113700c9012002200f3a00c8012002200b3602c401200220123602c001200220083703b80120022802c8012115200220133a0098022011423888a721132011421888a721142002200d37009902200d423888a72116200d421888a7211720022802980221184102210f0c010b200241f8006a41186a4200370300200241f8006a41106a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a220341002001280200200141046a220a280200200241f8006a41202004100022042004417f461b2204412020044120491b20032802006a220b3602002004411f4d0d0220022d0078210c20022d0079210620022d007a2105200228007b2104200229007f210720022d008f01210e200229039001210820024198026a41086a2210200229008701220d370300200220083703b00120024198026a41186a221220024198016a411f6a2d00003a00002002200e3a00af0120024198026a41106a220e20022900af013703002002200737009f012002200436009b01200220053a009a01200220063a0099012002200c3a0098012002200d3700a701200220073703980220024188026a41086a20122d00003a00002002200e290300370388022010280200211020022802a402210e2002290398022107200f420037030020094200370300200242003703900120024200370378200341002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d0220024190016a290300210d2002418f016a2d0000210f20022d0078210120022d0079210320022d007a2109200228007b210a200229007f2108200220024187016a29000022113700c702200220083700bf022002200a3600bb02200220093a00ba02200220033a00b902200220013a00b8022002200f3a00cf022002200d3700d9012002200f3a00d8012002200e3602f401200220103602f001200220073703e80120022002290388023703f801200220024190026a2d00003a008002200d423888a72113200d421888a721142011422088a7210b20022802d801211520022d008002211620022802fc01211720022802f80121182011a721124103210f0b0b2000200228009801360001200041103a0000200041cf006a42003c0000200041cb006a42003e0000200041d0006a200d370000200041c9006a41003b0000200041c8006a20133a0000200041c4006a2014360000200041c0006a20153600002000413c6a200b360000200041386a2012360000200041306a20083700002000412c6a200a3600002000412b6a20093a00002000412a6a20033a0000200041296a20013a0000200041286a20163a0000200041246a2017360000200041206a20183600002000411c6a200e360000200041186a2010360000200041106a20073700002000410c6a20043600002000410b6a20053a00002000410a6a20063a0000200041096a200c3a0000200041086a200f3a0000200041046a2002419b016a280000360000200041e8006a200241086a41106a290300370300200041e0006a200241086a41086a290300370300200041d8006a2002290308370300200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d01200241f8006a41186a22012005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c290300370300200220022903980137037820022d0078211020022d0079210c20022d007a210e200228007b210f2002290087012107200229007f210820022d008f012103200220012903003700c901200220033a00c801200220083703b801200220073703c0012002200f36000b2002200e3a000a2002200c3a0009200220103a00082002200837000f20022007370017200220022903c80137001f2002200241b8016a41186a2d00003a002720022d0027211320022800232114200228001f2115200228001b210520022800172106200229000f2107410121090c1f0b20024198016a41186a2209420037030020024198016a41106a220a420037030020024198016a41086a220b42003703002002420037039801200141086a220341002001280200200141046a221228020020024198016a41202004100022042004417f461b2204412020044120491b20032802006a22133602002004411f4d0d00200241f8006a41186a22042009290300370300200241f8006a41106a200a290300370300200241f8006a41086a200b2903003703002002200229039801370378200228007b210f20022d007a210e20022d0079210c20022d00782110200229007f21072002280087012106200228008b01210520022d008f012114200220042903003700a90220024188026a41086a20024198026a41186a2d00003a0000200220143a00a802200220053602a402200220063602a0022002200737039802200220022903a8023703880220094200370300200a4200370300200b42003703002002420037039801200341002001280200201228020020024198016a41202013100022042004417f461b2204412020044120491b20032802006a22093602002004411f4d0d00200241f8006a41186a220320024198016a41186a290300370300200241f8006a41106a20024198016a41106a290300370300200241f8006a41086a20024198016a41086a290300370300200220022903980137037820032903002108200241f8006a410f6a290000210d20022f0178210320022d007a2104200228007b210a200229007f211120022002418f016a2d00003a00cf022002200d3700c702200220113700bf022002200a3600bb02200220043a00ba02200220033b01b8022002420037031020024200370308200141086a220441002001280200200141046a220a280200200241086a41102009100022032003417f461b2203411020034110491b20042802006a22093602002003410f4d0d00200241086a41086a29030021112002290308210d2002420037031020024200370308200441002001280200200a280200200241086a41102009100022012001417f461b2201411020014110491b20042802006a3602002001410f4d0d00200241086a41086a290300211c2002290308211b200220053602f401200220063602f001200220073703e801200220083700d90120022002290388023703f801200220024188026a41086a2d00003a0080022002200241cf026a2d00003a00d801200241c7026a290000211920022900bf02211a20022d00b802211220022d00b902210a20022d00ba02210b20022800bb02211620022d00d801211720022d008002211320022802fc01211420022802f8012115410221090c1e0b200041123a0000200241d0026a24000f0b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d04200228008b0121032002280087012104200229007f2107200228007b210520022d007a210620022d0079210c20022d0078210e20022d008f0121122002200229039001220d370009200220123a0008200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d0420022d0078210120022d0079211020022d007a210f200228007b2109200229007f2108200228008701210a200228008b01210b20022d008f012112200220022903900122113703b001200220123a00af012002200b3600ab012002200a3600a7012002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a0098012011423888a721122011421888a72113200d421888a72114200d423888a7211520022800af01211620022802082117410121180c030b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d03200228008b0121032002280087012104200229007f2107200228007b210520022d007a210620022d0079210c20022d0078210e20022d008f012112200220022903900137009902200220123a009802200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d0320022d0078210120022d0079211020022d007a210f200228007b2109200229007f2108200229008701210d20022d008f01210a20022002290390013703b001200241106a2212200241b7016a2d00003a00002002200a3a00af012002200d3700a7012002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a009801200220022900af01370308200d422088a7210b20122d00002112200228020c21132002280208211620022d00a0022115200228029c0221142002280298022117200da7210a410221180c020b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d0220022d0078210e20022d0079210c20022d007a2106200228007b2105200229007f21072002280087012104200228008b01210320022d008f0121142002200229039001220d370320200220143a001f2002200336001b200220043600172002200737000f2002200536000b200220063a000a2002200c3a00092002200e3a0008200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d0220022d0078210120022d0079211020022d007a210f200228007b2109200229007f210820022d008f01210a2002290390012111200241c0016a220b200229008701221b370300200220113703b001200241d0016a2212200241b7016a2d00003a00002002200a3a00af01200241c8016a220a20022900af013703002002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a0098012002201b3700a701200220083703b80120122d00002112200a2802002116200b280200210a20022802cc01211320022802c401210b20022903b8012108200220143a0098022002200d37009902200d423888a72115200d421888a721142002280298022117410321180c010b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d01200228007b210520022d007a210620022d0079210c20022d0078210e200229007f21072002280087012104200228008b01210320022d008f012112200220022903900122083700a902200220123a00a802200220033602a402200220043602a00220022007370398022002200837008902200220123a008802200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d01200229039001210d20022f0178210120022d007a2110200228007b210f20022d008f012109200229007f210820022002290087013700a7012002200837009f01200241b8026a41086a20024198016a41086a290300370300200220093a00af01200241b8026a41106a20024198016a41106a2903003703002002200f36009b01200220103a009a01200220013b0198012002200d3703b00120022002290398013703b8022002200d3700d901200220022d00cf023a00d801200241c7026a290000211120022900bf02210820022800bb02210920022d00ba02210f20022d00b902211020022d00b8022101200220033602f401200220043602f001200220073703e80120022002290388023703f801200220024188026a41086a2d00003a008002200d423888a72112200d421888a721132011422088a7210b20022802d801211620022d008002211520022802fc01211420022802f80121172011a7210a410421180b200020183a00012000410f3a0000200041c1006a20123a00002000413d6a2013360000200041396a2016360000200041356a200b360000200041316a200a360000200041296a2008370000200041256a2009360000200041246a200f3a0000200041236a20103a0000200041226a20013a0000200041216a20153a00002000411d6a2014360000200041196a2017360000200041156a2003360000200041116a2004360000200041096a2007370000200041056a2005360000200041046a20063a0000200041036a200c3a0000200041026a200e3a0000200041e8006a2002412e6a290100370100200041e2006a200241286a290100370100200041da006a200241206a290100370100200041d2006a200241186a290100370100200041ca006a200241106a290100370100200041c2006a2002290108370100200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a221041002001280200200141046a220f28020020024198016a41202004100022032003417f461b2203412020034120491b20102802006a22093602002003411f4d0d07200241f8006a41186a220a2005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c2903003703002002200229039801370378200228008b01210e2002280087012105200229007f2107200228007b210320022d007a210620022d0079210c20022d0078210420022d008f01210b2002200a290300370099022002200b3a009802200f280200210f20024100360208201041002001280200200f200241086a41042009100022012001417f461b2201410420014104491b20102802006a360200200141034d0d072002280208210f20022d00a0022109200228029c02210b200228029802210a41012112410021100c060b200141046a220628020021032002410036029801200141086a220541002001280200200320024198016a41042004100022032003417f461b2203410420034104491b20052802006a2204360200200341034d0d062002280298012103200241003a0098012001280200200628020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d0620022d009801220441054b0d06200228022022094180807c712110200941087621012002280224210f200228021c210b2002280218210a2002280214210e2002280210210520022903082107410221120c050b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a220f3602002003411f4d0d05200241f8006a41186a22092006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e2903003703002002200229039801370378200228007b210320022d007a210620022d0079210c20022d00782104200229007f2107200229008701210820022d008f01210e200220092903003700f901200241d8016a41086a200241e8016a41186a2d00003a00002002200e3a00f801200220083703f001200220073703e801200220022903f8013703d8012010280200210e20024100360208200541002001280200200e200241086a4104200f1000220e200e417f461b220e4104200e4104491b20052802006a2210360200200e41034d0d052002280208210f200241003a0098012001280200200141046a28020020024198016a4101201010002105200141086a22012001280200200541016a41014b22016a3602002001450d0520022d009801220141044f0d05200220073703b801200220022903d8013703c8012002200241e0016a2d00003a00d001200220083703c0012008422088a7210e20022d00d001210920022802cc01210b20022802c801210a2008a7210541032112410021100c040b200141046a220c280200210320024100360208200141086a2206410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d0420022802082105200c2802002103200241003602082006410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d042002280208210e200141046a220c280200210320024100360208200141086a2206410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d042002280208210a200c2802002103200241003602082006410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d042002280208210b200141046a220c280200210320024100360208200141086a2206410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d0420022802082109200241003a0098012001280200200c28020020024198016a410120041000210320062006280200200341016a41014b22036a22043602002003450d0420022d009801220f41054b0d04200242003703084104211241002103200141086a220641002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20062802006a360200200141074d0d0420094180807c71211020094108762101200229030821070c020b200141046a2206280200210320024100360208200141086a2205410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20052802006a2204360200200341034d0d032002280208210f20024198016a41186a2203420037030020024198016a41106a220c420037030020024198016a41086a42003703002002420037039801200541002001280200200628020020024198016a41202004100022012001417f461b2201412020014120491b20052802006a3602002001411f4d0d03200241f8006a41186a2003290300370300200241f8006a41106a200c290300370300200241f8006a41086a20024198016a41086a290300370300200220022903980137037820024198026a41086a220120024187016a29000037030020024198026a41106a22052002418f016a29000037030020024198026a41186a200241f8006a411f6a2d00003a00002002200229007f37039802200228007b210320022d007a210620022d0079210c20022d00782104200220022900a902220737008902200220052d00003a0088022007423888a721092007421888a7210b20012802002105200229039802210720022802a402210e200228028802210a41052112410021100c020b200141046a28020021034100211020024100360208200141086a2205410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d022002280208210320022802cc02210b20022802c802210a20022802c402210e20022802c002210520022903b802210741062112410021014100210f0b0b2000200228009801360001200041073a00002000412c6a200f360000200041246a200b360000200041206a200a3600002000411c6a200e360000200041186a2005360000200041106a20073700002000410c6a20033600002000410b6a20063a00002000410a6a200c3a0000200041096a20043a0000200041086a20123a0000200041306a2002290308370300200041046a2002419b016a280000360000200041386a200241086a41086a290300370300200041c0006a200241086a41106a290300370300200041c8006a200241086a41186a290300370300200041d0006a200241086a41206a290300370300200041d8006a200241086a41286a290300370300200041e0006a200241086a41306a290300370300200041e8006a200241086a41386a290300370300200041286a2010200141ff017141087472200941ff017172360000200241d0026a24000f0b200041123a0000200241d0026a24000f0b410221050c040b410321050c030b410421050c020b410521050c010b410621050b0c070b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a36020041072105200141074d0d03200229030821080c060b20024198016a41186a2206420037030020024198016a41106a220c42003703004108210520024198016a41086a220e42003703002002420037039801200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d02200241f8006a41186a22012006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e2903003703002002200229039801370378200228008b01210f2002280087012109200229007f2108200228007b210e20022d007a210620022d0079210320022d0078210c20022d008f01210420022001290300220737009902200220043a0098022007423888a721152007421888a7211620022802980221100c050b20024198016a41186a220a420037030020024198016a41106a220b420037030020024198016a41086a221242003703002002420037039801200141086a220541002001280200200141046a221328020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a2210200a290300370300200241f8006a41106a200b290300370300200241f8006a41086a20122903003703002002200229039801370378200228008b01210f2002280087012109200229007f2108200228007b210e20022d007a210620022d0079210320022d0078210c20022d008f01211420022010290300220737009902200220143a0098022002280298022110200a4200370300200b4200370300201242003703002002420037039801200541002001280200201328020020024198016a41202004100022012001417f461b2201412020014120491b20052802006a3602002001411f4d0d01200241f8006a41186a220120024198016a41186a290300370300200241f8006a41106a20024198016a41106a290300370300200241f8006a41086a20024198016a41086a29030037030020022002290398013703782007421888a721162007423888a721152001290300211a2002418f016a2d0000211720024187016a290000211d200229007f2119200228007b211320022d007a210b20022d0079210a20022d00782112410921050c040b20024198016a41186a2210420037030020024198016a41106a220f420037030020024198016a41086a220942003703002002420037039801200141086a220541002001280200200141046a220a28020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d00200241f8006a41186a220b2010290300370300200241f8006a41106a200f290300370300200241f8006a41086a20092903003703002002200229039801370378200228007b210e20022d007a210620022d0079210320022d0078210c200229007f2107200229008701210820022d008f0121122002200b29030037008902200241e8016a41186a20024188026a41086a2d00003a0000200220123a008802200220083703f001200220073703e80120022002290388023703f80120104200370300200f4200370300200942003703002002420037039801200541002001280200200a28020020024198016a41202004100022042004417f461b2204412020044120491b20052802006a22103602002004411f4d0d00200241f8006a41186a220420024198016a41186a2205290300370300200241f8006a41106a220f20024198016a41106a2209290300370300200241f8006a41086a221420024198016a41086a22152903003703002002200229039801370378200241b8026a41106a200f290300370300200241b8026a41086a2014290300370300200220022903783703b8022004290300210720024198026a41086a2217200241b8026a410f6a29000037030020024198026a41106a2218200241b8026a41176a2d00003a0000200220073700a902200220022900bf023703980220022800bb02211320022d00ba02210b20022d00b902210a20022d00b80221122005420037030020094200370300201542003703002002420037039801200141086a221641002001280200200141046a28020020024198016a41202010100022012001417f461b2201412020014120491b20162802006a3602002001411f4d0d0020042005290300370300200f2009290300370300201420152903003703002002200229039801370378200241f8006a410f6a2900002107200241f8006a41176a2d000021012004290300210820022f0178210420022d007a2105200228007b2110200229007f210d200241d8016a41086a2209200241e8016a41106a220f41086a2d00003a0000200241b8016a41086a22142017290300370300200241b8016a41106a22152018290300370300200241b8016a41186a20024198026a41186a2d00003a000020022008370320200220013a001f200220073700172002200d37000f2002201036000b200220053a000a200220043b01082002200f2902003703d80120022002290398023703b80120022903e8012108200235010a200231000e422086842107200241e8016a41086a290300221e422088a7210f200241086a411f6a31000021112014290300211d20152d0000211720092d00002115200229001f210d2002290017211c200229000f211b20022903b801211920022f0108211420022900c901211a20022802dc01211620022802d8012110201ea72109410a21050c030b200041123a0000200241d0026a24000f0b200241d8016a41086a200241e8016a41106a220141086a2d00003a0000200220012902003703d801200241e8016a41086a290300220d422088a7210320022903e801210820022900d901210720022d00d8012101200da72104410121050b200020053a00012000410d3a00002000411a6a2007370000200041196a20013a0000200041156a2003360000200041116a2004360000200041096a2008370000200041056a200c360000200041046a200e3a0000200041036a200f3a0000200041026a20093a0000200041226a200241086a41ce0010f6021a200241d0026a24000f0b20002002280008360001200041083a0000200041cf006a20074220883c0000200041cb006a20073e0000200041e8006a2011370000200041e0006a200d370000200041d8006a201c370000200041d0006a201b370000200041386a201d370000200041306a2019370000200041c9006a20143b0000200041c1006a201a370000200041c0006a20173a00002000412c6a20133600002000412b6a200b3a00002000412a6a200a3a0000200041296a20123a0000200041286a20153a0000200041246a2016360000200041206a20103600002000411c6a200f360000200041186a2009360000200041106a20083700002000410c6a200e3600002000410b6a20063a00002000410a6a20033a0000200041096a200c3a0000200041086a20053a0000200041046a2002410b6a280000360000200241d0026a24000f0b20002002280008360001200041023a0000200041e8006a201c370000200041e0006a201b370000200041d8006a2011370000200041d0006a200d370000200041386a2019370000200041306a201a370000200041c9006a41003b0000200041c1006a2008370000200041c0006a20173a00002000412c6a20163600002000412b6a200b3a00002000412a6a200a3a0000200041296a20123a0000200041286a20133a0000200041246a2014360000200041206a20153600002000411c6a2005360000200041186a2006360000200041106a20073700002000410c6a200f3600002000410b6a200e3a00002000410a6a200c3a0000200041096a20103a0000200041086a20093a0000200041046a2002410b6a280000360000200241d0026a24000f0b200041123a0000200241d0026a24000bd2f10104067f017e017f017e230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220341104b0d0002400240024002400240024002400240024002400240024020030e11000b0709040d0f0a11061003050e020801000b200141046a280200200141086a2802002203470d1b200341016a22042003490d7120034101742205200420042005491b22054100480d712003450d3720012802002003200510152204450d380c6f0b200141046a280200200141086a2802002203470d10200341016a22042003490d6b20034101742205200420042005491b22054100480d6b2003450d2220012802002003200510152204450d230c690b200141046a280200200141086a2802002203470d10200341016a22042003490d6520034101742205200420042005491b22054100480d652003450d2320012802002003200510152204450d240c630b200141046a280200200141086a2802002203470d10200341016a22042003490d6420034101742205200420042005491b22054100480d642003450d2420012802002003200510152204450d250c600b200141046a280200200141086a2802002203470d10200341016a22042003490d6d20034101742205200420042005491b22054100480d6d2003450d2520012802002003200510152204450d260c5d0b200141046a280200200141086a2802002203470d10200341016a22042003490d6220034101742205200420042005491b22054100480d622003450d2620012802002003200510152204450d270c5a0b200141046a280200200141086a2802002203470d10200341016a22042003490d6120034101742205200420042005491b22054100480d612003450d2720012802002003200510152204450d280c570b200141046a280200200141086a2802002203470d10200341016a22042003490d6a20034101742205200420042005491b22054100480d6a2003450d2820012802002003200510152204450d290c540b200141046a280200200141086a2802002203470d10200341016a22042003490d5f20034101742205200420042005491b22054100480d5f2003450d2920012802002003200510152204450d2a0c510b200141046a280200200141086a2802002203470d10200341016a22042003490d6820034101742205200420042005491b22054100480d682003450d2a20012802002003200510152204450d2b0c4e0b200141046a280200200141086a2802002203470d10200341016a22042003490d6720034101742205200420042005491b22054100480d672003450d2b20012802002003200510152204450d2c0c4b0b200141046a280200200141086a2802002203470d11200341016a22042003490d6620034101742205200420042005491b22054100480d662003450d2e20012802002003200510152204450d2f0c480b200141046a280200200141086a2802002203470d11200341016a22042003490d6520034101742205200420042005491b22054100480d652003450d2f20012802002003200510152204450d300c450b200141046a280200200141086a2802002203470d11200341016a22042003490d6420034101742205200420042005491b22054100480d642003450d3020012802002003200510152204450d310c420b200141046a280200200141086a2802002203470d11200341016a22042003490d5920034101742205200420042005491b22054100480d592003450d3120012802002003200510152204450d320c3f0b200141046a2205280200200141086a22032802002204470d11200441016a22062004490d6220044101742207200620062007491b22074100480d622004450d3220012802002004200710152206450d330c3c0b200141046a280200200141086a2802002203470d11200341016a22042003490d5720034101742205200420042005491b22054100480d572003450d3320012802002003200510152204450d340c390b200141046a280200200141086a2802002203470d11200341016a22042003490d5620034101742205200420042005491b22054100480d562003450d3420012802002003200510152204450d350c360b200128020021040c590b200128020021040c530b200128020021040c500b200128020021040c4d0b200128020021040c4a0b200128020021040c470b200128020021040c440b200128020021040c410b200128020021040c3e0b200128020021040c3b0b200128020021040c540b200128020021040c370b200128020021040c340b200128020021040c310b200128020021040c2e0b200128020021060c2b0b200128020021040c280b200128020021040c250b2005101322040d460b200541011014000b2005101322040d3f0b200541011014000b2005101322040d3b0b200541011014000b2005101322040d370b200541011014000b2005101322040d330b200541011014000b2005101322040d2f0b200541011014000b2005101322040d2b0b200541011014000b2005101322040d270b200541011014000b2005101322040d230b200541011014000b2005101322040d1f0b200541011014000b2005101322040d370b200541011014000b2005101322040d190b200541011014000b2005101322040d150b200541011014000b2005101322040d110b200541011014000b2005101322040d0d0b200541011014000b2007101322060d090b200741011014000b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000200141046a28020021042005280200210302400240024002400240024002400240024002400240200041086a2903004201520d0020042003470d01200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0320012802002003200510152204450d040c090b20042003470d01200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0420012802002003200510152204450d050c060b200128020021040c080b200128020021040c050b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2520044101742203200020002003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2320044101742203200020002003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d3320034101742205200420042005491b22054100480d332003450d0b20012802002003200510152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d3220034101742205200420042005491b22054100480d322003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d3120034101742205200420042005491b22054100480d312003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d3020034101742205200420042005491b22054100480d302003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d090b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041306a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d2720044101742203200520052003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200837000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2720044101742203200520052003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2520044101742203200020002003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2320044101742203200020002003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2120044101742203200020002003491b22034100480d212004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220441054b0d0002400240024002400240024020040e06000402030105000b200528020020032802002204470d09200441016a22062004490d4d20044101742207200620062007491b22074100480d4d2004450d1320012802002004200710152206450d140c270b200528020020032802002204470d05200441016a22062004490d4c20044101742207200620062007491b22074100480d4c2004450d0c20012802002004200710152206450d0d0c240b200528020020032802002204470d05200441016a22062004490d4b20044101742207200620062007491b22074100480d4b2004450d0d20012802002004200710152206450d0e0c210b200528020020032802002204470d05200441016a22062004490d4a20044101742207200620062007491b22074100480d4a2004450d0e20012802002004200710152206450d0f0c1e0b200528020020032802002204470d06200441016a22062004490d4920044101742207200620062007491b22074100480d492004450d1120012802002004200710152206450d120c1b0b200528020020032802002204470d06200441016a22062004490d4820044101742207200620062007491b22074100480d482004450d1220012802002004200710152206450d130c180b200528020020032802002204470d06200441016a22062004490d4720044101742207200620062007491b22074100480d472004450d1320012802002004200710152206450d140c150b200128020021060c1f0b200128020021060c1c0b200128020021060c190b200128020021060c1e0b200128020021060c150b200128020021060c120b200128020021060c0f0b2007101322060d170b200741011014000b2007101322060d130b200741011014000b2007101322060d0f0b200741011014000b2007101322060d130b200741011014000b2007101322060d090b200741011014000b2007101322060d050b200741011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41003a00000240024002400240024020052802002206200328020022046b41204f0d00200441206a22072004490d3520064101742204200720072004491b22044100480d352006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441206a360200200620046a220441186a200041096a220641186a290000370000200441106a200641106a290000370000200441086a200641086a290000370000200420062900003700002000412c6a28020021060240024002400240024020052802002200200328020022046b41044f0d00200441046a22052004490d3520004101742204200520052004491b22044100480d352000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441046a360200200020046a2006360000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41063a00002000410c6a28020021060240024002400240024020052802002200200328020022046b41044f0d00200441046a22052004490d3320004101742204200520052004491b22044100480d332000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441046a360200200020046a2006360000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41023a00002000410c6a28020021060240024002400240024020052802002204200328020022036b41044f0d00200341046a22052003490d3120044101742203200520052003491b22034100480d312004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2006360000200041096a2d00002001104a200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41043a0000200041186a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a20073600002000411c6a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a2007360000200041206a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a2007360000200041246a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a2007360000200041286a28020021060240024002400240024020052802002205200328020022046b41044f0d00200441046a22072004490d2f20054101742204200720072004491b22044100480d2f2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200441046a360200200520046a20063600002000412c6a2d00002001104a200041106a290300210802400240024002400240200141046a2802002200200728020022046b41084f0d00200441086a22052004490d2f20004101742204200520052004491b22044100480d2f2000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441086a360200200020046a2008370000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41033a00000240024002400240024020052802002206200328020022046b41204f0d00200441206a22072004490d2d20064101742204200720072004491b22044100480d2d2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441206a360200200620046a220441186a200041096a220641186a290000370000200441106a200641106a290000370000200441086a200641086a290000370000200420062900003700002000412c6a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2d20064101742204200920092004491b22044100480d2d2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a20073600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022044101460d00024020044102460d0020044103470d02200528020020032802002204470d05200441016a22002004490d3f20044101742205200020002005491b22054100480d3f2004450d0b20012802002004200510152200450d0c0c150b200528020020032802002204470d02200441016a22002004490d3e20044101742205200020002005491b22054100480d3e2004450d0620012802002004200510152200450d070c120b200528020020032802002204470d02200441016a22002004490d3d20044101742205200020002005491b22054100480d3d2004450d0720012802002004200510152200450d080c0f0b200528020020032802002204470d03200441016a22002004490d3c20044101742205200020002005491b22054100480d3c2004450d0a20012802002004200510152200450d0b0c0c0b200128020021000c100b200128020021000c0d0b200128020021000c100b200128020021000c090b2005101322000d0b0b200541011014000b2005101322000d070b200541011014000b2005101322000d090b200541011014000b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41003a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41013a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41023a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41033a0000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41053a00002000412c6a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2b20064101742204200920092004491b22044100480d2b2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a20073600000240024002400240024020052802002205200328020022046b41204f0d00200441206a22062004490d2b20054101742204200620062004491b22044100480d2b2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41013a00000240024002400240024020052802002206200328020022046b41204f0d00200441206a22072004490d2920064101742204200720072004491b22044100480d292006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441206a360200200620046a220441186a200041096a220641186a290000370000200441106a200641106a290000370000200441086a200641086a290000370000200420062900003700002000412c6a28020021060240024002400240024020052802002200200328020022046b41044f0d00200441046a22052004490d2920004101742204200520052004491b22044100480d292000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441046a360200200020046a2006360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410e3a0000200141046a28020021042005280200210302400240024002400240024002400240024002400240200041086a2903004201520d0020042003470d01200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0320012802002003200510152204450d040c090b20042003470d01200341016a22042003490d2220034101742205200420042005491b22054100480d222003450d0420012802002003200510152204450d050c060b200128020021040c080b200128020021040c050b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d1f20044101742203200020002003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d1d20044101742203200020002003491b22034100480d1d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2520034101742205200420042005491b22044100480d252003450d0120012802002003200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041046a280200210320022000410c6a280200220036020c2002410c6a200110180240024002402000450d002003200041286c6a2109200141046a21050340024002400240024020052802002206200428020022006b41204f0d00200041206a22072000490d2820064101742200200720072000491b22004100480d282006450d01200128020020062000101522060d020c060b200128020021060c020b200010132206450d040b2001200636020020052000360200200428020021000b2004200041206a360200200620006a220041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020002003290000370000200341206a2903002108024002400240024020052802002206200428020022006b41084f0d00200041086a22072000490d2820064101742200200720072000491b22004100480d282006450d01200128020020062000101522060d020c070b200128020021060c020b200010132206450d050b2001200636020020052000360200200428020021000b2004200041086a360200200620006a20083700002009200341286a2203470d000b0b200241106a24000f0b200041011014000b200041011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200141046a28020021042005280200210302400240024002400240024002400240024002400240200041016a2d00004101470d0020042003470d01200341016a22042003490d2920034101742200200420042000491b22004100480d292003450d0320012802002003200010152204450d040c090b20042003470d01200341016a22042003490d2820034101742200200420042000491b22004100480d282003450d0420012802002003200010152204450d050c060b200128020021040c080b200128020021040c050b2000101322040d050b200041011014000b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d3320034101742200200420042000491b22004100480d332003450d0b20012802002003200010152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d3220034101742205200420042005491b22054100480d322003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d3120034101742205200420042005491b22054100480d312003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d3020034101742205200420042005491b22054100480d302003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2000101322040d090b200041011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2720044101742203200520052003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041386a2903002108200041306a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d2720044101742203200020002003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2520044101742203200520052003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041296a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041d8006a2903002108200041d0006a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341106a360200200420036a220320083700082003200a370000200041e8006a2903002108200041e0006a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d2320044101742203200020002003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41033a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341094b0d0002400240024002400240024002400240024020030e0a00060304010708050a02000b200141046a280200200141086a2802002203470d0f200341016a22042003490d5b20034101742205200420042005491b22054100480d5b2003450d1f20012802002003200510152204450d200c3f0b200141046a280200200141086a2802002203470d09200341016a22042003490d5020034101742200200420042000491b22004100480d502003450d1420012802002003200010152204450d150c3c0b200141046a280200200141086a2802002203470d09200341016a22042003490d4f20034101742205200420042005491b22054100480d4f2003450d1520012802002003200510152204450d160c390b200141046a280200200141086a2802002203470d09200341016a22042003490d5820034101742200200420042000491b22004100480d582003450d1620012802002003200010152204450d170c360b200141046a280200200141086a2802002203470d09200341016a22042003490d5720034101742200200420042000491b22004100480d572003450d1720012802002003200010152204450d180c330b200141046a280200200141086a2802002203470d09200341016a22042003490d4c20034101742205200420042005491b22054100480d4c2003450d1820012802002003200510152204450d190c300b200141046a280200200141086a2802002203470d0a200341016a22042003490d5520034101742200200420042000491b22004100480d552003450d1b20012802002003200010152204450d1c0c2d0b200141046a280200200141086a2802002203470d0a200341016a22042003490d4a20034101742200200420042000491b22004100480d4a2003450d1c20012802002003200010152204450d1d0c2a0b200141046a280200200141086a2802002203470d0a200341016a22042003490d4920034101742205200420042005491b22054100480d492003450d1d20012802002003200510152204450d1e0c270b200141046a28020020052802002203470d0a200341016a22042003490d5220034101742200200420042000491b22004100480d522003450d1e20012802002003200010152204450d1f0c240b200141046a280200200141086a2802002203470d0a200341016a22042003490d4720034101742205200420042005491b22054100480d472003450d1f20012802002003200510152204450d200c210b200128020021040c330b200128020021040c300b200128020021040c2d0b200128020021040c2a0b200128020021040c270b200128020021040c300b200128020021040c230b200128020021040c200b200128020021040c1d0b200128020021040c1a0b200128020021040c170b2000101322040d270b200041011014000b2005101322040d230b200541011014000b2000101322040d1f0b200041011014000b2000101322040d1b0b200041011014000b2005101322040d170b200541011014000b2005101322040d1f0b200541011014000b2000101322040d110b200041011014000b2000101322040d0d0b200041011014000b2005101322040d090b200541011014000b2000101322040d050b200041011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2920044101742203200520052003491b22034100480d292004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2920044101742203200520052003491b22034100480d292004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2520044101742203200020002003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41023a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41043a0000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41033a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1920044101742203200520052003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1920044101742203200520052003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041296a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1920044101742203200520052003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041c9006a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210002400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d0020034102470d01200141046a280200200141086a2802002203470d03200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0720012802002003200510152204450d080c0f0b200141046a28020020052802002203470d01200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0420012802002003200510152204450d050c0c0b200141046a280200200141086a2802002203470d02200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0720012802002003200510152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2005101322040d070b200541011014000b2005101322040d070b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041186a2903002108200041106a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d2120044101742203200020002003491b22034100480d212004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a290000370000200320042900003700002000412c6a280200210002400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1d20044101742203200520052003491b22034100480d1d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041386a2903002108200041306a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d1d20044101742203200020002003491b22034100480d1d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41103a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0b20012802002003200510152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d2120034101742205200420042005491b22054100480d212003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d2020034101742205200420042005491b22054100480d202003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d090b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041d0006a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200837000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1520044101742203200520052003491b22034100480d152004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200837000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1620044101742203200520052003491b22034100480d162004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1620044101742203200520052003491b22034100480d162004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d1920044101742203200020002003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a29000037000020012000290001370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410d3a00000240024002400240024002400240024002400240024002400240024002400240024020002d000122034101460d0020034102470d01200141046a280200200141086a2802002203470d03200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0720012802002003200510152204450d080c0f0b200141046a28020020052802002203470d01200341016a22042003490d1620034101742205200420042005491b22054100480d162003450d0420012802002003200510152204450d050c0c0b200141046a280200200141086a2802002203470d02200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0720012802002003200510152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2005101322040d070b200541011014000b2005101322040d070b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0f20044101742203200520052003491b22034100480d0f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0f20034101742200200420042000491b22004100480d0f2003450d0120012802002003200010152204450d020c030b200128020021040c030b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0d20034101742200200420042000491b22004100480d0d2003450d0120012802002003200010152204450d020c030b200128020021040c030b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0b20034101742200200420042000491b22004100480d0b2003450d0120012802002003200010152204450d020c030b200128020021040c030b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a0000200041026a2104200141046a2802002106200528020021030240024002400240024002400240024002400240024020002d00014101470d0020062003470d01200341016a22002003490d1920034101742205200020002005491b22054100480d192003450d0320012802002003200510152200450d040c090b20062003470d01200341016a22002003490d1820034101742205200020002005491b22054100480d182003450d0420012802002003200510152200450d050c060b200128020021000c080b200128020021000c050b2005101322000d050b200541011014000b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200020036a41003a000002400240024002400240200141046a28020020052802002203470d00200341016a22002003490d1520034101742205200020002005491b22054100480d152003450d0120012802002003200510152200450d020c030b200128020021000c030b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200020036a20042d00003a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200020036a41013a000002400240024002400240200141046a2802002200200528020022036b41204f0d00200341206a22052003490d1320004101742203200520052003491b22034100480d132000450d0120012802002000200310152200450d020c030b200128020021000c030b2003101322000d010b200341011014000b20012000360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200020036a220141186a200441186a290000370000200141106a200441106a290000370000200141086a200441086a29000037000020012004290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410c3a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2008370000200041106a280200210002400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410f3a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0001417f6a220341034b0d00024020030e0400040203000b200141046a280200200141086a2802002203470d07200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0f20012802002003200510152204450d100c1b0b200141046a28020020052802002203470d03200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0820012802002003200510152204450d090c180b200141046a280200200141086a2802002203470d03200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0920012802002003200510152204450d0a0c150b200141046a280200200141086a2802002203470d03200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0a20012802002003200510152204450d0b0c120b200141046a280200200141086a2802002203470d04200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0d20012802002003200510152204450d0e0c0f0b200128020021040c150b200128020021040c120b200128020021040c0f0b200128020021040c140b200128020021040c0b0b2005101322040d0f0b200541011014000b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d0b0b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310152204450d020c040b200128020021040c040b2003101322040d020b200341011014000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41113a0000200041096a210302400240024002400240024002400240024002400240200041086a2d00004101470d00200141046a28020020052802002204470d01200441016a22052004490d0b20044101742206200520052006491b22064100480d0b2004450d0320012802002004200610152205450d040c090b200141046a28020020052802002204470d01200441016a22002004490d0a20044101742205200020002005491b22054100480d0a2004450d0420012802002004200510152200450d050c060b200128020021050c080b200128020021000c050b2006101322050d050b200641011014000b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200020046a41003a000002400240024002400240200141046a2802002200200528020022046b41204f0d00200441206a22052004490d0720004101742204200520052004491b22044100480d072000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200020046a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41013a000002400240024002400240200141046a2802002205200628020022046b41204f0d00200441206a22062004490d0520054101742204200620062004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200441206a360200200520046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200041306a2903002108024002400240200141046a2802002204200628020022036b41084f0d00200341086a22002003490d0320044101742203200020002003491b22034100480d032004450d0120012802002004200310152204450d020c040b200128020021040c040b2003101322040d020b200341011014000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041086a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041046a2802002100024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310152204450d020c040b200128020021040c040b2003101322040d020b200341011014000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000b86a50413027f017e137f017e017f037e037f037e037f047e397f027e097f017e067f017e0f7f0a7e117f230041b0096b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001280200417f6a220441124b0d0002400240024002400240024002400240024020040e13009c020f0a0e0d0708050c030b019d020206100411000b200341f0056a41086a200141106a2903003703002003200141086a29030022053703f0052005a7417f6a220441064b0da202200241086a2800002106200241046a280000210720022d00002102024020040e07004240413f4445000b41012108200341f8056a280200210920032802f405210a200241ff01714101462202450d7e02402009450d00200a10160b41002107410121094101210a4101210b0c92010b200341b2076a2001410b6a2d00003a0000200320012f00093b01b0072001410c6a2802002108200141106a2802002107200141146a280200210c200141186a280200210a2001411c6a280200210d200141206a280200210e200141246a280200210b200141286a280200210f2001412c6a2802002110200141386a28020021112001413c6a2802002112200141c0006a2802002113200141c4006a2802002114200141c8006a2802002115200141cc006a2802002116200141306a2903002105200141086a2d00002109200341d0076a41086a200241096a290000370300200341d0076a41106a200241116a290000370300200341d0076a41186a200241196a290000370300200320022900013703d0072009417f6a220641064b0da2022005a7211720022d00002102024020060e07003b393a383c3d000b20034190086a41186a2206200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012113200241ff01714101470d73200341c2046a20032d0092083a0000200341b0086a41086a200341a3086a290000370300200341bd086a2006290000370000200320032f0190083b01c0042003200329009b083703b00841002113200328009708210620032800930821040c740b200341b0086a200141086a41e80010f6021a200341f0056a41206a200241206a2d00003a0000200341f0056a41186a200241186a290000370300200341f0056a41106a200241106a290000370300200341f0056a41086a200241086a290000370300200320022900003703f005200341e8026a200341b0086a200341f0056a10820120032802ec02210620032802e80221040cda030b20034192076a2001410b6a2d00003a0000200341b0076a41086a200141206a290300370300200341b0076a41106a200141286a290300370300200320012f00093b0190072003200141186a2903003703b007200141086a2d00002218417f6a220441034b0da1022001410c6a2802002114200141106a2903002219a7211a20022d00002102024020040e04001c1a1b000b200241ff0171450d5541a7e6c200210441282106201a0de8030ce9030b20034188056a41086a2209200141206a29030037030020034188056a41106a220a200141286a290300370300200320012800093602900720032001410c6a280000360093072003200141186a29030037038805200141106a2903002105200141086a2d00002107200341d0056a41026a220b200241036a2d00003a0000200341e0046a41086a220c200241146a290000370300200341e0046a410d6a220d200241196a290000370000200320022f00013b01d00520032002410c6a2900003703e00441012108200241086a2800002106200241046a280000210420022d0000210220074101460d1420074102460d1320074103470da102200341b0086a41086a2006360200200341bc086a20032903e004370200200341c4086a200341e0046a41086a290300370200200341c9086a200341ed046a290000370000200320023a00b008200320043602b408200320032f01d0053b00b1082003200341d2056a2d00003a00b30820034190036a200341b0086a20054100108301200328029403210620032802900321040cd8030b200141386a2903002105200141306a290300211b2001412c6a2802002111200141286a2802002109200141246a280200210c200141206a28020021102001411c6a280200210a200141186a280200210d200141146a280200210f200141106a280200210b2001410c6a2802002108200141086a2d0000210620012d00092114200341b2076a200241036a2d00003a000020034188056a41086a200241146a29000037030020034195056a200241196a290000370000200320022f00013b01b00720032002410c6a290000370388052006417f6a220741044b0da102200241086a2800002106200241046a280000210420022d00002102024020070e05002e2b2c2a000b200341c0056a41026a2214200341b0076a41026a2d00003a0000200341a0046a41086a220e20034188056a41086a290300370300200341a0046a410d6a221220034188056a410d6a290000370000200320032f01b0073b01c00520032003290388053703a00441012107200241ff01714101470d4f200341f0066a41026a20142d00003a0000200341c0046a41086a200e290300370300200341c0046a410d6a2012290000370000200320032f01c0053b01f006200320032903a0043703c004410021070c500b20034198036a41086a200141186a2802003602002003200141106a29030037039803200141086a280200417f6a220641034b0da1022001410c6a280200210720022d00002102024020060e0400201b1c000b2003280298032108200241ff0171450d5841a7e6c20021044128210620080d5a0cac030b4189e7c2002104412d21064101210720022d00004102470de703200141086a29030021054200211b20034180046a41086a22024200370300200342003703800441cde8c200411020034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f470dae0220034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d970220032903b008211b0b201b2005540daf0220034180046a41086a22024200370300200342003703800441cde8c200411020034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200320053703b008200341f0066a4110200341b0086a41081001410021040ce7030b41012107200141086a28020021092001280204210a20022d00004101462206450d09200241086a280000210602402009450d00200a10160b41002108410121094101210a4101210b4101210c4101210d41012110410121114101210f41012114410021040cf0030b41004189e7c20020022d000022024102461b2104412d21064101210720024102470de503200141086a2903002105200341f0036a41086a22024200370300200342003703f00341d08ec3004113200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f470dae02200341f0036a41086a22024200370300200342003703f00341ee94c300410d200341f0036a1002200341b0086a41086a2002290300370300200320032903f0033703b008200341b0086a411041acf1c300410041001000417f460dd803200342003703f005200341b0086a4110200341f0056a41084100100041016a41084d0d950220032903f005500dd803200341f0036a41086a22024200370300200342003703f00341ee94c300410d200341f0036a1002200341b0086a41086a22072002290300370300200320032903f0033703b0084200211b0240200341b0086a411041acf1c300410041001000417f460d00200342003703f005200341b0086a4110200341f0056a41084100100041016a41084d0d980220032903f005211b0b20024200370300200342003703f003419095c3004117200341f0036a100220072002290300370300200320032903f0033703b008200341b0086a411041acf1c300410041001000417f460d63200342003703f005200341b0086a4110200341f0056a41084100100041016a41084d0d980220032903f005201b7c2005560d640cd8030b200341e0046a41046a220a2001410e6a2f01003b0100200341f0056a41086a220b200141206a290300370300200341f0056a41106a220c200141286a2903003703002003200128010a3602e0042003200141186a2903003703f005200141106a2903002105200141086a2d0000210620012d00092109200341b0076a41026a220d200241036a2d00003a000020034188056a41086a220f200241146a29000037030020034188056a410d6a2210200241196a290000370000200320022f00013b01b00720032002410c6a290000370388054101210820022d0000210720064101460d1120064102460d0f20064103470d9e02200741ff01710d10200320093a00b00820034180046a41086a22024200370300200342003703800441cdc7c000411920034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a4110200341b0086a41011001410021040cc7030b200241086a2800002106200241046a28000021042001410c6a2802002107200141086a28020021082001280204210a20022d00002109200341c0056a41026a220b200241036a2d00003a0000200341a0046a41086a220c200241146a290000370300200341a0046a410d6a220d200241196a290000370000200320022f00013b01c00520032002410c6a2900003703a0044101210220094101470d0720034180046a41026a200b2d00003a0000200341f0066a41086a200c290300370300200341f0066a410d6a200d290000370000200320032f01c0053b018004200320032903a0043703f006410021020c080b200341b0086a200141086a41d00010f6021a200341f0056a41206a200241206a2d00003a0000200341f0056a41186a200241186a290000370300200341f0056a41106a200241106a290000370300200341f0056a41086a200241086a290000370300200320022900003703f005200341f8016a200341b0086a200341f0056a10840120032802fc01210620032802f80121044100210c41012107410121094101210a410121084101210b0ce7030b200341b0076a41086a200141146a290200370300200341b0076a41106a2001411c6a290200370300200341b0076a41186a200141246a29020037030020032001410c6a2902003703b007200141086a280200210720012802042106200341e0046a41086a2204200241096a290000370300200341e0046a41106a2209200241116a290000370300200341e0046a41186a220a200241196a290000370300200320022900013703e0044101210820022d0000210220064101460d0720064102470d9c0220034188056a41186a200341b0076a41186a29030037030020034188056a41106a200341b0076a41106a29030037030020034188056a41086a200341b0076a41086a290300370300200320032903b00737038805200341f0076a41186a2206200341e0046a41186a290300370300200341f0076a41106a200341e0046a41106a290300370300200341f0076a41086a200341e0046a41086a290300370300200320032903e0043703f00741012108200241ff01714101470d1620034182046a20032d00f2073a0000200341f0066a41086a20034183086a290000370300200341fd066a2006290000370000200320032f01f0073b018004200320032900fb073703f0064100210820032800f707210620032800f30721040c170b200341b0086a41306a200141386a290300370300200341b0086a41286a200141306a290300370300200341b0086a41206a200141286a290300370300200341b0086a41186a200141206a290300370300200341b0086a41106a200141186a290300370300200341b0086a41086a200141106a2903003703002003200141086a2903003703b008200341f0056a41206a200241206a2d00003a0000200341f0056a41186a200241186a290000370300200341f0056a41106a200241106a290000370300200341f0056a41086a200241086a290000370300200320022900003703f005200341b8016a200341b0086a200341f0056a10850120032802bc01210620032802b801210441002109410121070ce1030b20034188056a41086a2209200141146a29020037030020034188056a41106a220a2001411c6a29020037030020034188056a41186a220b200141246a29020037030020034188056a41206a220c2001412c6a28020036020020032001410c6a29020037038805200141386a2903002105200141306a290300211b200141c8006a290300211c200141c0006a290300211d200141086a2802002106200341d0076a41026a220d200241036a2d00003a0000200341f0076a41086a220f200241146a290000370300200341f0076a410d6a2210200241196a290000370000200320022f00013b01d00720032002410c6a2900003703f0074101210820022d0000210720064101460d0620064102470d9b0220034198036a41206a220220034188056a41206a28020036020020034198036a41186a220620034188056a41186a29030037030020034198036a41106a220420034188056a41106a29030037030020034198036a41086a220820034188056a41086a290300370300200320032903880537039803200741ff01710d0b200341b0086a41206a2002280200360200200341b0086a41186a2006290300370300200341b0086a41106a2004290300370300200341b0086a41086a200829030037030020032003290398033703b008200341f0056a200341b0086a104120034182046a220220032d00f3053a0000200341f0066a41086a20034184066a290200370300200341f0066a41106a2003418c066a290200370300200320032f00f1053b0180042003200341fc056a2902003703f00641012107200341f0056a41086a280200210620032802f405210420032d00f0054101460ddf03200341f3046a200341f8066a290300370000200341f8046a200341fd066a290000370000200320032f0180043b01e004200320063600e704200320043600e304200320032903f0063700eb04200320022d00003a00e204200341e0046a201b2005108601200341e0046a201d201c108701410021040cdf030b200341ec036a41026a2001410b6a2d00003a0000200341b0076a41086a200141206a290300370300200341b0076a41106a200141286a290300370300200320012f00093b01ec032003200141186a2903003703b0072001410c6a280200210b200141106a280200210a200141146a2802002109200141306a2903002105200141386a290300211b200141c0006a280200210d200141c4006a2802002110200141cc006a280200210c200141d0006a280200210f200141d4006a2802002114200141d8006a2d00002111200141086a2d00002107200341c8036a41026a200241036a2d00003a0000200341d0056a41086a200241146a290000370300200341dd056a200241196a290000370000200320022f00013b01c80320032002410c6a2900003703d0052007417f6a220841064b0d9b02200241086a2800002106200241046a280000210420022d00002102024020080e07003a3839333b3c000b20034190076a41026a200341ec036a41026a2d00003a000020034188056a41086a200341b0076a41086a29030037030020034188056a41106a200341b0076a41106a2d00003a0000200320032f01ec033b019007200320032903b00737038805200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a220c200341d0056a41086a290300370300200341a0046a410d6a220d200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d75200341f0076a41026a20082d00003a0000200341b0086a41086a200c290300370300200341b0086a410d6a200d290000370000200320032f01c0053b01f007200320032903a0043703b008410021070c760b20034198036a41086a2209200141286a29030037030020034198036a41106a200141306a29030037030020034198036a41186a200141386a29030037030020034198036a41206a200141c0006a29030037030020034198036a41286a200141c8006a2d00003a0000200320012800093602c80320032001410c6a2800003600cb032003200141206a29030037039803200141106a2903002105200141186a290300211b200141086a2d00002107200341ec036a41026a220a200241036a2d00003a0000200341d0036a41086a220b200241146a290000370300200341d0036a410d6a220c200241196a290000370000200320022f00013b01ec0320032002410c6a2900003703d00341012108200241086a2800002106200241046a280000210420022d0000210220074101460d0520074102470d9b02200341c0056a41026a2208200341ec036a41026a2d00003a0000200341a0046a41086a2209200341d0036a41086a290300370300200341a0046a410d6a220a200341d0036a410d6a290000370000200320032f01ec033b01c005200320032903d0033703a00441012107200241ff01714101470d1920034180046a41026a20082d00003a0000200341f0066a41086a2009290300370300200341f0066a410d6a200a290000370000200320032f01c0053b018004200320032903a0043703f006410021070c1a0b200241046a28000041cfe6c20020061b2104412a21064100210802402009450d00200a10160b410121094101210a0cdf030b412a210641cfe6c20021040b200341f0036a41026a20034180046a41026a2d00003a0000200341b0086a41086a200341f0066a41086a290300370300200341b0086a41106a200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820020dca0320034183066a200341b0086a41086a29030037000020034188066a200341bd086a290000370000200320032f01f0033b01f005200320063600f705200320043600f305200320032903b0083700fb052003200341f2036a2d00003a00f20520034180026a200341f0056a10880120032903800220034180026a41086a29030084500d1f20034180046a41086a22024200370300200342003703800441b88dc300411220034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d3c200341003602b008200341f0036a4110200341b0086a41044100100041016a41044d0d9902200720032802b0084d0d3d0cc9030b2003200736028805200341f0076a41186a200a290300370300200341f0076a41106a2009290300370300200341f0076a41086a2004290300370300200320032903e0043703f007200241ff01714101470d11200341ca056a20032d00f2073a0000200341c8046a20034183086a290000370300200341cd046a20034188086a290000370000200320032f01f0073b01c805200320032900fb073703c0044100210820032800f707210620032800f30721040c120b200241086a2800002106200241046a280000210420034198036a41206a200c28020036020020034198036a41186a200b29030037030020034198036a41106a200a29030037030020034198036a41086a2009290300370300200320032903880537039803200341c0056a41026a200d2d00003a0000200341a0046a41086a200f290300370300200341a0046a410d6a2010290000370000200320032f01d0073b01c005200320032903f0073703a004200741ff01714101470d12200341f0036a41026a200341c0056a41026a2d00003a0000200341b0086a41086a200341a0046a41086a290300370300200341b0086a410d6a200341a0046a410d6a290000370000200320032f01c0053b01f003200320032903a0043703b008410021080c130b200341af086a20092d00003a00002003201b37009f082003200537009708200320032800cb0336009308200320032802c8033602900820032003290398033700a708200341e0046a41186a200341b9036a290000370300200341e0046a41106a20034198036a41196a290000370300200341e0046a41086a200341a9036a290000370300200320032900a1033703e004200341c0056a41026a200a2d00003a0000200341a0046a41086a200b290300370300200341a0046a410d6a200c290000370000200320032f01ec033b01c005200320032903d0033703a004200241ff01714101470d15200341f0036a41026a200341c0056a41026a2d00003a0000200341b0086a41086a200341a0046a41086a290300370300200341b0086a410d6a200341a0046a410d6a290000370000200320032f01c0053b01f003200320032903a0043703b008410021080c160b200341b0086a41086a2006360200200341bc086a20032903e004370200200341c4086a200341e0046a41086a290300370200200341c9086a200341ed046a290000370000200320023a00b008200320043602b408200320032f01d0053b00b1082003200341d2056a2d00003a00b3084101210720034188036a200341b0086a20054101108301200328028c03210620032802880321040cd6030b20034190086a41086a200929030037030020034190086a41106a200a2d00003a000020032003280093073600b30720032003280290073602b007200320032903880537039008200341c0056a41026a200b2d00003a0000200341a0046a41086a200c290300370300200341a0046a410d6a200d290000370000200320032f01d0053b01c005200320032903e0043703a004200241ff01714101470d1b20034180046a41026a200341c0056a41026a2d00003a0000200341f0066a41086a200341a0046a41086a290300370300200341f0066a410d6a200341a0046a410d6a290000370000200320032f01c0053b018004200320032903a0043703f006410021080c1c0b200741ff0171450d330b41a7e6c2002104412821060cc1030b200241086a2800002106200241046a2800002104200341a7086a200b290300370000200341af086a200c2d00003a0000200320093a0090082003200537009708200320032802e00436009108200320032903f00537009f082003200a2f01003b009508200341c0056a41026a200d2d00003a0000200341a0046a41086a200f290300370300200341a0046a410d6a2010290000370000200320032f01b0073b01c00520032003290388053703a004200741ff01714101470d1a20034180046a41026a200341c0056a41026a2d00003a0000200341f0066a41086a200341a0046a41086a290300370300200341f0066a410d6a200341a0046a410d6a290000370000200320032f01c0053b018004200320032903a0043703f006410021080c1b0b200341e7076a200341b0076a41086a290300370000200341ef076a200341b0076a41106a2d00003a0000200320193700d707200320143600d307200320032f0190073b01d007200320032903b0073700df07200320034192076a2d00003a00d207200241ff01710d0220034190086a41186a200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841e985c300210420034190086a108901450dcb034108211e20034180046a41086a2202420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200229030037030020032003290380043703f0034100211f200341f0036a411041acf1c300410041001000417f460d9f01200342103702f4052003200341f0036a3602f005200341b0086a200341f0056a102020032802b008221e450dc702200341b8086a280200212020032802b408211f0ca0010b200241ff01710d014200210520034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003410021020240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d950220032903b00821050b419486c3002104411c2106200520195a0dcb0320034180046a41086a22024200370300200342003703800441a8ecc200411220034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320193703b008200341f0036a4110200341b0086a41081001410021024100210420184101460dcc030cce030b2003419f056a200341b0076a41086a290300370000200341a7056a200341b0076a41106a2d00003a00002003201937008f052003201436008b05200320032f0190073b018805200320032903b00737009705200320034192076a2d00003a008a05200241ff0171450d3a0b41a7e6c2002104412821060ccc030b200241ff01710d01200341b0086a2003290398032205106520032802b0084101470d75200341b8086a28020021060c3a0b200241ff0171450d380b41a7e6c2002104412821060c8f030b412a210641cfe6c20021040b200341f0036a41026a220220034180046a41026a2d00003a0000200341b0086a41086a200341f0066a41086a290300370300200341b0086a41106a200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820080da201200341ab036a200341b0086a41086a220829030037000020034198036a41186a200341bd086a290000370000200320032f01f0033b0198032003200636009f032003200436009b03200320032903b0083700a303200320022d00003a009a0320034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d37200341f0076a41186a4200370300200341f0076a41106a4200370300200341f0076a41086a4200370300200342003703f007200341f0036a4110200341f0076a4120410010002202417f460d93022002411f4d0d930220034190086a41186a2202200341f0076a41186a29030037030020034190086a41106a2206200341f0076a41106a29030037030020034190086a41086a2204200341f0076a41086a290300370300200320032903f00737039008200341b0086a41186a2002290300370300200341b0086a41106a2006290300370300200341b0086a41086a200429030037030020032003290390083703b0080c380b2003280298032108200241ff0171450d3941a7e6c20021044128210620080d3a0c8c030b41cfe6c2002104412a21060b200341f0066a41026a2202200341c8056a41026a2d00003a000020034190076a41086a2209200341c0046a41086a29030037030020034190076a41106a200341c0046a41106a290300370300200320032f01c8053b01f006200320032903c0043703900720080d3c200341ab036a200929030037000020034198036a41186a2003419d076a290000370000200320032f01f0063b0198032003200636009f032003200436009b0320032003290390073700a303200320022d00003a009a0320034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d3a200341f0076a41186a4200370300200341f0076a41106a4200370300200341f8076a4200370300200342003703f007200341f0036a4110200341f0076a4120410010002202417f460d91022002411f4d0d910220034190086a41186a2202200341f0076a41186a29030037030020034190086a41106a2206200341f0076a41106a29030037030020034190086a41086a2204200341f0076a41086a290300370300200320032903f00737039008200341b0086a41186a2002290300370300200341b0086a41106a2006290300370300200341b0086a41086a200429030037030020032003290390083703b0080c3b0b41cfe6c2002104412a21060b200341c8056a41026a2202200341f0036a41026a2d00003a0000200341c0046a41086a2207200341b0086a41086a2209290300370300200341c0046a41106a200341b0086a41106a220a290300370300200320032f01f0033b01c805200320032903b0083703c00420080db20320034190086a41136a200729030037000020034190086a41186a200341c0046a410d6a290000370000200320032f01c8053b01900820032006360097082003200436009308200320032903c00437009b08200320022d00003a009208200341b0086a41206a20034198036a41206a280200360200200341b0086a41186a20034198036a41186a290300370300200a20034198036a41106a290300370300200920034198036a41086a29030037030020032003290398033703b008200341f0056a200341b0086a104120034180046a41026a20032d00f3053a0000200341f0066a41086a200341f0056a41146a290200370300200341f0066a41106a2003418c066a290200370300200320032f00f1053b0180042003200341fc056a2902003703f00641012107200341f0056a41086a280200210620032802f405210420032d00f0054101460dc403200341e0046a41136a200341f0066a41086a290300370000200341e0046a41186a200341f0066a410d6a290000370000200320032f0180043b01e004200320063600e704200320043600e304200320032903f0063700eb04200320034182046a2d00003a00e204411410132202450d9a02200241106a410028009e9643360000200241086a410029009696433700002002410029008e964337000020024114413410152202450d9b0220022003290390083700142002412c6a200341a8086a290300370000200241246a20034190086a41106a2903003700002002411c6a20034190086a41086a2903003700004200211c200341f0036a41086a22064200370300200342003703f00320024134200341f0036a1002200341f0066a41086a2006290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d6f200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002206417f460d97022006410f4d0d9702200341b8086a290300211d20032903b008211c2002101641142106411410132202450d700cb0030b41cfe6c2002104412a21060b200341c8056a41026a20034180046a41026a2d00003a0000200341c0046a41086a200341f0066a41086a290300370300200341c0046a41106a200341f0066a41106a290300370300200320032f0180043b01c805200320032903f0063703c00420070db003200341e3056a200341c0046a41086a290300370000200341d0056a41186a200341cd046a290000370000200320032f01c8053b01d005200320063600d705200320043600d305200320032903c0043700db052003200341ca056a2d00003a00d205412110132202450d8e02200241206a41002d00be96403a0000200241186a41002900b69640370000200241106a41002900ae9640370000200241086a41002900a696403700002002410029009e96403700002002412141c20010152202450d8f022002200537002120034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d3a20034190086a41186a2206420037030020034190086a41106a2204420037030020034190086a41086a420037030020034200370390084100200341f0036a411020034190086a41204100100022072007417f461b2207411f4d0df301200341e0046a41186a22092006290300370300200341e0046a41106a220a2004290300370300200341e0046a41086a220b20034190086a41086a220829030037030020032003290390083703e00420034180046a41186a200929030037030020034180046a41106a200a29030037030020034180046a41086a200b290300370300200320032903e0043703800420064200370300200442003703002008420037030020034200370390084100200341f0036a411020034190086a41202007412020074120491b2209100022062006417f461b2206411f4d0df301200320032d0092083a00c204200320032f0190083b01c004200329009308211c200329009b08211d20032900a308212320032800ab082104200320032d00af083a00ef07200320043600eb07200320233700e3072003201d3700db072003201c3700d307200320032d00c2043a00d207200320032f01c0043b01d007200341a0046a41186a200341d0076a41186a2204290300370300200341a0046a41106a200341d0076a41106a2207290300370300200341a0046a41086a200341d0076a41086a290300370300200320032903d0073703a00420034190086a41186a220a420037030020034190086a41106a220b42003703002008420037030020034200370390084100200341f0036a411020034190086a41202006412020064120491b20096a2208100022062006417f461b2206411f4d0df301200341f0076a41186a2209200a290300370300200341f0076a41106a220a200b290300370300200341f0076a41086a220b20034190086a41086a29030037030020032003290390083703f007200420092903003703002007200a290300370300200341d0076a41086a2209200b290300370300200320032903f0073703d007200341c0046a41186a2004290300370300200341c0046a41106a2007290300370300200341c0046a41086a2009290300370300200320032903d0073703c004200342003703b0084100200341f0036a4110200341b0086a41082006412020064120491b20086a2204100022062006417f461b220641074d0df30120032903b008211c200342003703b0084100200341f0036a4110200341b0086a41082006410820064108491b20046a2204100022062006417f461b220641074d0df30120032903b0082123200341003a00b008200341f0036a4110200341b0086a41012006410820064108491b20046a2206100041016a41014b2207450df30141002104024020032d00b0082208450d004101210420084101470df4010b200342003703b008200341f0036a4110200341b0086a4108200620076a100041016a41084d0df30120032903b008211d200341b0086a41186a220620034180046a41186a290300370300200341b0086a41106a220720034180046a41106a290300370300200341b0086a41086a220820034180046a41086a29030037030020034188056a41086a2209200341a0046a41086a29030037030020034188056a41106a220a200341a0046a41106a29030037030020034188056a41186a220b200341a0046a41186a290300370300200341e0046a41086a220c200341c0046a41086a290300370300200341e0046a41106a220d200341c0046a41106a290300370300200341e0046a41186a220f200341c0046a41186a29030037030020032003290380043703b008200320032903a00437038805200320032903c0043703e0042003200341cb056a2800003600c304200320032800c8053602c00420034190086a41186a2210200629030037030020034190086a41106a2211200729030037030020034190086a41086a22142008290300370300200341f0076a41086a220e2009290300370300200341f0076a41106a2212200a290300370300200341f0076a41186a2215200b290300370300200341d0076a41086a2217200c290300370300200341d0076a41106a2213200d290300370300200341d0076a41186a2216200f290300370300200320032903b0083703900820032003290388053703f007200320032903e0043703d007200320032800c3043600c305200320032802c0043602c005200210162006201029030037030020072011290300370300200820142903003703002009200e290300370300200a2012290300370300200b2015290300370300200c2017290300370300200d2013290300370300200f201629030037030020032003290390083703b008200320032903f00737038805200320032903d0073703e004200320032800c3053600bb05200320032802c0053602b805201c422088a72107201ca72106410021020c3b0b41cfe6c2002104412a21060b200341c8056a41026a2202200341f0036a41026a2d00003a0000200341c0046a41086a2207200341b0086a41086a290300370300200341c0046a41106a200341b0086a41106a290300370300200320032f01f0033b01c805200320032903b0083703c00420080dae03200341f0066a41026a20022d00003a0000200341f0076a41086a2007290300370300200341f0076a410d6a200341c0046a410d6a290000370000200320032f01c8053b01f006200320032903c0043703f00720034188056a20034190086a108a01200328028805220c200328029005220d4103746a210a200c21020240200d4104490d00200341b0086a41206a2107200341f0056a41c0006a2108200c21020340200341f0056a2002290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200341f0056a200241086a290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200341f0056a200241106a290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200341f0056a200241186a290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200a200241206a22026b411f4b0d000b0b4100210f2002200a460d21200c200d4103746a210a200341b0086a41206a2108200341f0056a41c0006a21090340200341f0056a2002290300108b01024020092d000022074102460d00200341b0086a41c0006a20073a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002008200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082008200341e0046a412010f802210b2007450d00200b450d220b200a200241086a2202470d000c220b0b200241ff01710d02412921062008450d8401200341f0036a41086a22024200370300200342003703f00341cdbcc0004118200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200320083602b008200341f0066a4110200341b0086a41041001410021040c9e030b200341c0056a41026a2209200341b0076a41026a2d00003a0000200341a0046a41086a220a20034188056a41086a290300370300200341a0046a410d6a220b20034188056a410d6a290000370000200320032f01b0073b01c00520032003290388053703a00441012107200241ff01714101470d2220034180046a41026a20092d00003a0000200341f0066a41086a200a290300370300200341f0066a410d6a200b290000370000200320032f01c0053b018004200320032903a0043703f006410021070c230b200241ff0171450d390b41a7e6c2002104412821060c9b030b200341c0056a41026a2209200341b0076a41026a2d00003a0000200341a0046a41086a220a20034188056a41086a290300370300200341a0046a410d6a220b20034188056a410d6a290000370000200320032f01b0073b01c00520032003290388053703a00441012107200241ff01714101470d23200341f0036a41026a20092d00003a0000200341b0086a41086a200a290300370300200341b0086a410d6a200b290000370000200320032f01c0053b01f003200320032903a0043703b008410021070c240b41ca8dc3002104411b2106410021104101210720080dab030cac030b41cfe6c2002104412a21060b200341f0036a41026a220220034180046a41026a2d00003a0000200341b0086a41086a2207200341f0066a41086a290300370300200341b0086a41106a200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820080da603200341ab036a2007290300370000200341b0036a200341bd086a290000370000200320032f01f0033b0198032003200636009f032003200436009b03200320032903b0083700a303200320022d00003a009a03200341b0086a20034198036a108c0120032903b0084201520d3220034187066a20034190086a41086a290300370000411f2106200341f0056a411f6a20034190086a41106a2d00003a0000200320053700f705200320032800b3073600f305200320032802b0073602f00520032003290390083700ff05200341b0086a200341f0056a108d014185c9c300210420032d0090094103460da603200341f0036a41086a22024200370300200342003703f00341cde2c300412c200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d9401200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d860220032903b008211b0c95010b41cfe6c2002104412a21060b200341f0036a41026a220720034180046a41026a2d00003a0000200341b0086a41086a2202200341f0066a41086a290300370300200341b0086a41106a2209200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820080da403200341c8056a41026a220820072d00003a0000200341f0076a41086a22072002290300370300200341f0076a410d6a220a200341b0086a410d6a290000370000200320032f01f0033b01c805200320032903b0083703f007200341d0076a41026a20082d00003a000020034198036a41086a200729030037030020034198036a410d6a200a290000370000200320032f01c8053b01d007200320032903f00737039803200341b0086a41186a20034190086a41186a290300370300200920034190086a41106a290300370300200220034190086a41086a29030037030020032003290390083703b008411210132202450d8602200241106a41002f00f2c9403b0000200241086a41002900eac940370000200241002900e2c94037000020024112413210152202450d8702200220032f01d0073b00122002200636001920022004360015200220032903980337001d200241146a200341d2076a2d00003a0000200241256a20034198036a41086a2903003700002002412a6a200341a5036a29000037000020034180046a41086a2204420037030020034200370380042002413220034180046a1002200341f0036a41086a200429030037030020032003290380043703f003412010132204450d8802200420032903b008370000200441186a200341b0086a41186a290300370000200441106a200341b0086a41106a290300370000200441086a200341b0086a41086a290300370000200341f0036a41102004412010012004101620021016410021040ca4030b20034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d3520034182046a20032d0092083a0000200341b0086a41086a200341a3086a290000370300200341bd086a2004290000370000200320032f0190083b0180042003200329009b083703b00841002106200328009708210220032800930821040c360b2003200c360290052003200736028c05200320083602880520034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d36200341ca056a20032d0092083a000020034190076a41086a200341a3086a2900003703002003419d076a2004290000370000200320032f0190083b01c8052003200329009b083703900741002106200328009708210220032800930821040c370b20034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d37200341f2036a20032d0092083a0000200341c0046a41086a200341a3086a290000370300200341cd046a2004290000370000200320032f0190083b01f0032003200329009b083703c00441002106200328009708210220032800930821040c380b2003200c360290052003200736028c05200320083602880520034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d3a200341f2066a20032d0092083a0000200341e0046a41086a200341a3086a290000370300200341ed046a2004290000370000200320032f0190083b01f0062003200329009b083703e00441002106200328009708210220032800930821040c3b0b2003200f3a00ff042003200b3600fb042003200e3600f7042003200d3600f3042003200a3600ef042003200c3600eb04200320073600e704200320083600e304200320032f01b0073b01e0042003200341b0076a41026a2d00003a00e20420034190086a41186a2206200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012107200241ff01714101470d3d200341c0056a41026a20032d0092083a0000200341f0066a41086a200341a3086a290000370300200341fd066a2006290000370000200320032f0190083b01c0052003200329009b083703f00641002107200328009708210620032800930821040c3e0b200320032f01b0073b01c0042003200341b0076a41026a2d00003a00c204200241ff0171450d4d41a7e6c2002104412821060c8c030b200341f8056a280200210620032802f4052104200241ff0171450d4d410021074101210802402006450d00200410160b410121090c070b41012108200341f8056a280200210920032802f405210a200241ff01714101462202450d3c02402009450d00200a10160b4100210b410121094101210a410121070c520b200241ff0171450d4c0c97030b41004189e7c200200241ff01714102461b2104412d210641012108410121094101210a4101210b0c3b0b2003419f056a200341b0076a41086a290300370000200341a7056a200341b0076a41106a2d00003a000020032009360093052003200a36008f052003200b36008b05200320032f01ec033b018805200320032903b007370097052003200341ec036a41026a2d00003a008a05200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a2209200341d0056a41086a290300370300200341a0046a410d6a220a200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d3c20034180046a41026a20082d00003a0000200341f0066a41086a2009290300370300200341f0066a410d6a200a290000370000200320032f01c0053b018004200320032903a0043703f006410021070c3d0b200341fc056a2802002104200341f8056a280200210a20032802f4052107200241ff0171450d4a02402004450d00200441186c21062007210203400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200641686a22060d000b0b4100210941012108200a450d01200710160c010b200341f0056a410c6a2802002104200341f8056a280200210a20032802f4052107200241ff0171450d4a02402004450d002004410c6c21062007210203400240200241046a280200450d00200228020010160b2002410c6a2102200641746a22060d000b0b4101210941002108200a450d00200710160b410121070b20032802f005417f6a220241064b0d910341a7e6c200210441282106024020020e070093035a92035c5d5b000b200341f8056a280200450d920320032802f40510160c92030b20034188056a41026a200341ec036a41026a2d00003a000020034198036a41086a200341b0076a41086a29030037030020034198036a41106a200341b0076a41106a2d00003a0000200320032f01ec033b018805200320032903b00737039803200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a220c200341d0056a41086a290300370300200341a0046a410d6a220d200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d39200341c8056a41026a20082d00003a0000200341c0046a41086a200c290300370300200341c0046a410d6a200d290000370000200320032f01c0053b01c805200320032903a0043703c004410021070c3a0b200341af036a200341b0076a41086a290300370000200341b7036a200341b0076a41106a2d00003a0000200320093600a3032003200a36009f032003200b36009b03200320032f01ec033b019803200320032903b0073700a7032003200341ec036a41026a2d00003a009a03200341c0056a41026a2209200341c8036a41026a2d00003a0000200341a0046a41086a220e200341d0056a41086a290300370300200341a0046a410d6a2212200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012108200241ff01714101470d3a200341f0036a41026a20092d00003a0000200341b0086a41086a200e290300370300200341b0086a410d6a2012290000370000200320032f01c0053b01f003200320032903a0043703b008410021080c3b0b20034188056a41026a200341ec036a41026a2d00003a000020034198036a41086a200341b0076a41086a29030037030020034198036a41106a200341b0076a41106a2d00003a0000200320032f01ec033b018805200320032903b00737039803200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a220c200341d0056a41086a290300370300200341a0046a410d6a220d200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d3d200341f0066a41026a20082d00003a000020034190076a41086a200c29030037030020034190076a410d6a200d290000370000200320032f01c0053b01f006200320032903a00437039007410021070c3e0b200241ff01710d0120034180046a41086a22024200370300200342003703800441f9dec200412320034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200341003602b808200342013703b008200320093602f005200341f0056a200341b0086a101820032802b408220420032802b80822066b20094f0d6c200620096a22022006490dcf0220044101742207200220022007491b22074100480dcf022004450d8d0120032802b0082004200710152202450d8e010c87030b200241ff0171450d480b0240200a450d00200b10160b41a7e6c2002104412821060c8a030b20034180046a41086a2202420037030020034200370380044184dbc000411920034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320053703b008200341f0036a4110200341b0086a410810010c82030b4101210f0b0240200328028c05450d00200c10160b0240200f450d0020034180046a41086a22024200370300200342003703800441f895c000412620034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d4c200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0ddf0120032903b008211c0c4d0b41888bc000210441c20021060c8c030b20074180204b0d8c030b200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b008410910132202450df001200241086a41002d00fa8d433a0000200241002900f28d4337000020024109412910152202450df101200220032903b008370009200241216a200341c8086a290300370000200241196a200341c0086a290300370000200241116a200341b0086a41086a29030037000020034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341003602a0032003420137039803200320073602880520034188056a20034198036a1018200328029c03220920032802a00322046b20074f0d17200420076a22062004490d92032009410174220b20062006200b491b220b4100480d92032009450d5f2003280298032009200b10152206450d600cfc020b412a210641cfe6c20021040b200341c8056a41026a20034180046a41026a2d00003a000020034190076a41086a200341f0066a41086a29030037030020034190076a41106a200341f0066a41106a290300370300200320032f0180043b01c805200320032903f0063703900720070df90220034198036a41136a20034190076a41086a290300370000200341b0036a2003419d076a290000370000200320032f01c8053b0198032003200636009f032003200436009b0320032003290390073700a3032003200341ca056a2d00003a009a03411310132202450df4012002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450df50120022008360013200341f0036a41086a22064200370300200342003703f00320024117200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c3004100410010002106200210162006417f460d17200341b0086a2008105b20034198036a200341e4086a412010f802450d654198bcc0002104411c21060ca1010b41cfe6c2002104412a21060b200341d0036a41026a200341f0066a41026a2d00003a000020034190076a41086a200341c0046a41086a29030037030020034190076a41106a200341c0046a41106a290300370300200320032f01f0063b01d003200320032903c0043703900720070d3420034183066a20034190076a41086a290300370000200341f0056a41186a22022003419d076a290000370000200320032f01d0033b01f005200320063600f705200320043600f30520032003290390073700fb052003200341d2036a2d00003a00f205200341b0086a41186a2002290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b008200341c8016a200341b0086a108e0120032903c801200341c8016a41086a290300844200510d33200341b0086a108f01450d334200211c200341f0036a41086a22024200370300200342003703f00341ffb6c0004112200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d7a200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d88022002410f4d0d8802200341b8086a290300211c20032903b008211d0c7b0b412a210641cfe6c20021040b200341c8056a41026a200341f0036a41026a2d00003a000020034190076a41086a200341b0086a41086a29030037030020034190076a41106a200341b0086a41106a290300370300200320032f01f0033b01c805200320032903b0083703900720070df50220034198036a41136a20034198076a290300370000200341b0036a2003419d076a290000370000200320032f01c8053b0198032003200636009f032003200436009b0320032003290390073700a3032003200341ca056a2d00003a009a0320034198036a108901450d3d411310132202450dfd012002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450dfe0120022008360013200341f0036a41086a22064200370300200342003703f00320024117200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c3004100410010002106200210162006417f460d13200341b0086a2008105b20032d00a409450d7a4188bbc0002104411d2106200341d0086a280200450df4020cf3020b410021022019422088a722044105742206450d542006410575220bad4206862205422088a70d8b032005a722074100480d8b0320071013220a0d55200741081014000b200341b0086a41186a20034188056a41186a290300370300200341b0086a41106a20034188056a41106a290300370300200341b0086a41086a20034188056a41086a29030037030020032003290388053703b00841c385c3002104200341b0086a1089010dcf02200320032d00b2083a00c204200320032f01b0083b01c00420032800b308210220032800b708210620032800bb08210920032800bf08210a20032800c308210b20032800c708210c20032800cb08210d20032d00cf08210f4108210720034180046a41086a2204420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200429030037030020032003290380043703f00341002104200341f0036a411041acf1c300410041001000417f460d642003421037029c032003200341f0036a36029803200341f0056a20034198036a102020032802f0052207450d8b02200341f8056a280200210820032802f40521042003200f3a008f082003200d36008b082003200c360087082003200b360083082003200a3600ff07200320093600fb07200320063600f707200320023600f307200320032d00c2043a00f207200320032f01c0043b01f007200341f0076a210620082004460d650cce020b200341b0086a2003290398032205106520032802b0084101470d3c200341b8086a28020021060b20032802b40821040cd6020b200341b0086a41186a4200370300200341b0086a41106a420037030020084200370300200342003703b0080b20034198036a200341b0086a412010f802450d0341edbfc1002104413121060c690b200329029c03210520034180046a41086a22024200370300200342003703800441b2e1c000412b20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d50200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0dd40120032903b008211b2005a72202417f4a0d510c84030b200329029c032105200341b0086a200141206a290300221b106520032802b0084101470d38200341b8086a280200210620032802b40821042008450dd2020b200710160cd1020b200341b0086a410c6a20034188056a41086a290300370200200341b0086a41146a20034188056a41106a290300370200200341b0086a411c6a200341a0056a290300370200200320073602b00820032003290388053702b408200341f0056a200341b0086a1041200341f0066a41026a220220032d00f3053a000020034190076a41086a2207200341f0056a41146a29020037030020034190076a41106a200341f0056a411c6a290200370300200320032f00f1053b01f0062003200341f0056a410c6a29020037039007200341f0056a41086a280200210620032802f405210420032d00f0054101460d65200341c0056a41026a20022d00003a0000200341a0046a41086a2007290300370300200341a0046a410d6a20034190076a410d6a290000370000200320032f01f0063b01c00520032003290390073703a00420034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f00341002102200341f0036a411041acf1c300410041001000417f460d6220034188086a4200370300200341f0076a41106a4200370300200341f8076a4200370300200342003703f007200341f0036a4110200341f0076a4120410010002202417f460ded012002411f4d0ded0120034190086a41186a200341f0076a41186a29030037030020034190086a41106a200341f0076a41106a29030037030020034190086a41086a200341f0076a41086a290300370300200320032903f00737039008200320032d0092083a00c204200320032f0190083b01c00420032800930821072003280097082108200328009b082109200328009f08210a20032800a308210b20032800a708210c20032800ab08210d20032d00af0821020c630b200341b0086a41186a4200370300200341c0086a4200370300200341b8086a4200370300200342003703b0080b20034198036a200341b0086a412010f802450d0141c3bfc1002104412221060b20034188056a1090010c620b200341b0086a200741f00010f6021a41002104200341003a00f005200341c0016a200341b0086a200341f0056a108101200320032802c001453a00b208200341053b01b008200341b0086a105a200710160c600b2002101641012102412d2106410221040b200341b0076a41186a2208200341b0086a41186a290300370300200341b0076a41106a2209200341b0086a41106a290300370300200341b0076a41086a220a200341b0086a41086a29030037030020034190076a41086a220b20034188056a41086a29030037030020034190076a41106a220c20034188056a41106a29030037030020034190076a41186a220d20034188056a41186a290300370300200341f0066a41086a220f200341e0046a41086a290300370300200341f0066a41106a2210200341e0046a41106a290300370300200341f0066a41186a2211200341e0046a41186a290300370300200320032903b0083703b007200320032903880537039007200320032903e0043703f006200320032800bb053600b305200320032802b8053602b00502402002450d0041c489c00021040cf5020b200341f0056a41206a200a29030037030020034198066a2009290300370300200341a0066a2008290300370300200341b0066a200b290300370300200341b8066a200c290300370300200341c0066a200d2903003703002003201d37038006200320233703f805200320073602f405200320063602f005200320032903b0073703880620032003290390073703a806200341e0066a2011290300370300200341d8066a2010290300370300200341d0066a200f290300370300200341ec066a20032800b305360000200320043a00e806200320032903f0063703c806200320032802b0053600e9062004450d3541f189c0002104413521060cf4020b41dac9c300210441c40021060cf3020b20032802980321060ce5020b411310132202450de0012002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450de10120022008360013200341f0036a41086a22064200370300200342003703f00320024117200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c3004100410010002106200210162006417f460d00200341b0086a2008105b20032d00a409450d564188bbc0002104411d2106200341d0086a2802000d570c580b41d6bac0002104411c21060ce1020b4203201b7c2005580df4020b418894c3001038000b412a210241cfe6c20021040b200341f0076a41026a220920034180046a41026a2d00003a000020034198036a41086a200341b0086a41086a29030037030020034198036a41106a200341b0086a41106a290300370300200320032f0180043b01f007200320032903b0083703980302402006450d0041002109410121104100210c2002210620070dbd020cbe020b200341d0036a41026a221120092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a221420034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a2014290000370000200320023600f705200320043600f305200320112d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d3420032802b40821042005a721060c350b412a210241cfe6c20021040b200341f0076a41026a2209200341c8056a41026a2d00003a000020034198036a41086a20034190076a41086a29030037030020034198036a41106a20034190076a41106a290300370300200320032f01c8053b01f00720032003290390073703980302402006450d002002210620070dd7020cd9020b200341d0036a41026a220a20092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a220b20034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a200b290000370000200320023600f705200320043600f3052003200a2d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d3420032802b40821042005a7210620070dd6020cd8020b412a210241cfe6c20021040b200341f0076a41026a2209200341f0036a41026a2d00003a000020034198036a41086a200341c0046a41086a29030037030020034198036a41106a200341c0046a41106a290300370300200320032f01f0033b01f007200320032903c0043703980302402006450d002002210620070dd5020cd7020b200341d0036a41026a220a20092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a220b20034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a200b290000370000200320023600f705200320043600f3052003200a2d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d3320032802b40821042005a7210620070dd4020cd6020b41cfe6c2002104412a21060b200341f0076a41026a2202200341c0046a41026a2d00003a000020034198036a41086a200341b0086a41086a29030037030020034198036a41106a200341b0086a41106a290300370300200320032f01c0043b01f007200320032903b008370398032013450d020cc7020b412a210241cfe6c20021040b200341f0076a41026a2209200341f0066a41026a2d00003a000020034198036a41086a200341e0046a41086a29030037030020034198036a41106a200341e0046a41106a290300370300200320032f01f0063b01f007200320032903e004370398032006450d012002210620070dd0020cd2020b2003419b056a20034198036a41086a2213290300370000200341a0056a200341a5036a290000370000200320032f01f0073b0188052003200636008f052003200436008b05200320032903980337009305200320022d00003a008a05200341f0056a41086a22024200370300200342003703f00541caaac1004120200341f0056a100220132002290300370300200320032903f00537039803024020034198036a411041acf1c300410041001000417f460d00200341003a00b00820034198036a4110200341b0086a41014100100041016a41014d0de00120032d00b008450d500b411e10132202450dd801200241166a41002900f89141370000200241106a41002900f29141370000200241086a41002900ea9141370000200241002900e291413700002002411e413e10152202450dd901200220032903880537001e200241366a200341a0056a2903003700002002412e6a20034188056a41106a290300370000200241266a20034188056a41086a290300370000200341f0056a41086a22064200370300200342003703f0052002413e200341f0056a1002200341b0086a41086a2006290300370300200320032903f0053703b008200341b0086a411041acf1c3004100410010002106200210162006417f460d4141abacc1002104412c210620080dc5020cc6020b200341d0036a41026a220a20092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a220b20034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a200b290000370000200320023600f705200320043600f3052003200a2d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d2e20032802b40821042005a7210620070dce020cd0020b412a210641cfe6c20021040b200341f0076a41026a200341c0056a41026a2d00003a000020034198036a41086a200341f0066a41086a29030037030020034198036a41106a200341f0066a41106a290300370300200320032f01c0053b01f007200320032903f0063703980320070dc5022003419b056a20034198036a41086a220229030037000020034188056a41186a200341a5036a290000370000200320032f01f0073b0188052003200636008f052003200436008b052003200329039803370093052003200341f2076a2d00003a008a05200341f0056a41086a22064200370300200342003703f00541b9adc100411d200341f0056a100220022006290300370300200320032903f0053703980320034198036a411041acf1c300410041001000417f460d3820034190086a41186a420037030020034190086a41106a420037030020034190086a41086a4200370300200342003703900820034198036a411020034190086a4120410010002202417f460dce012002411f4d0dce01200341f0076a41186a220220034190086a41186a290300370300200341f0076a41106a220620034190086a41106a290300370300200341f0076a41086a220420034190086a41086a29030037030020032003290390083703f007200341b0086a41186a2002290300370300200341b0086a41106a2006290300370300200341b0086a41086a2004290300370300200320032903f0073703b00820034188056a200341b0086a412010f802450d4d41d6adc1002104410c210620100dc6020cc7020b200741cfe6c20020021b2104412a21064100210b02402009450d00200a10160b410121094101210a0b410121070c150b200741cfe6c20020021b2104412a21064100210702402009450d00200a10160b410121094101210a4101210b0c140b412a210641cfe6c20021040b200341d0036a41026a20034180046a41026a2d00003a0000200341e0046a41086a200341f0066a41086a290300370300200341e0046a41106a200341f0066a41106a290300370300200320032f0180043b01d003200320032903f0063703e00402402007450d0020062102200d0dbb020cbc020b4113210220034198036a41136a200341e8046a290300370000200341b0036a200341ed046a290000370000200320032f01d0033b0198032003200636009f032003200436009b03200320032903e0043700a3032003200341d2036a2d00003a009a0320034198036a108f01450d280240200c0d0041e6dec200210420054201520d2a0b412110132202450de901200241206a41002d00dbdc423a0000200241186a41002900d3dc42370000200241106a41002900cbdc42370000200241086a41002900c3dc42370000200241002900bbdc423700002002412141c20010152202450dea012002200329038805370021200241396a20034188056a41186a290300370000200241316a20034188056a41106a290300370000200241296a20034188056a41086a29030037000020034180046a41086a220642003703002003420037038004200241c10020034180046a1002200341f0066a41086a200629030037030020032003290380043703f006200341f0066a411041acf1c300410041001000417f460d60200342103702e4042003200341f0066a3602e004200341d0076a41186a22044200370300200341d0076a41106a22074200370300200341d0076a41086a22084200370300200342003703d00720034100200341f0066a4110200341d0076a41204100100022062006417f461b2206412020064120491b20032802e8046a22093602e8042006411f4d0d6d20034190086a41186a2206200429030037030020034190086a41106a2204200729030037030020034190086a41086a22072008290300370300200320032903d00737039008200341f0076a41186a2006290300370300200341f0076a41106a2004290300370300200341f0076a41086a200729030037030020032003290390083703f007200342003703b008200341e0046a41086a22044100200341f0066a4110200341b0086a41082009100022062006417f461b2206410820064108491b20042802006a2204360200200641074d0d6d20032903b008211d200342003703b008200341e0046a41086a4100200341f0066a4110200341b0086a41082004100022062006417f461b2206410820064108491b20046a360200200641074d0d6d20032903b0082123200341b0086a200341e0046a101120032802b0082209450d6d20032902b408211c41002107200341003a00b008200341e8046a22062006280200220620032802e004220420032802e404220a200341b0086a41012006100041016a41014b220b6a2206360200201ca72108200b450d6c024020032d00b008220b450d0041012107200b4101470d6d0b200342003703b008200341e0046a41086a41002004200a200341b0086a41082006100022042004417f461b2204410820044108491b20066a360200200441074d0d6c20032903b008212120034180036a200341e0046a1012200328028003450d6c2003280284032206417f4c0def012006450d6a2006101b2204450df601200341e8046a220a200a280200220a2006410020032802e00420032802e40420042006200a1000220a200a417f461b220a200a20064b1b220a6a360200200a2006470d6b0cb7020b412a210641cfe6c20021040b200341d0036a41026a200341c8056a41026a2d00003a0000200341e0046a41086a200341c0046a41086a290300370300200341e0046a41106a200341c0046a41106a290300370300200320032f01c8053b01d003200320032903c0043703e00420070dd40220034183066a200341e0046a41086a29030037000020034188066a2202200341e0046a410d6a290000370000200320032f01d0033b01f005200320063600f705200320043600f305200320032903e0043700fb052003200341d0036a41026a2d00003a00f205200341c7086a20034198036a41086a2206290300370000200341cf086a20034198036a41106a22072d00003a0000200320093600bb082003200a3600b7082003200b3600b308200320034188056a41026a22082d00003a00b208200320032f0188053b01b00820032003290398033700bf08200341f8026a200341f0056a200341b0086a410210920120032802f8022204450d3220032802fc0221060cd4020b412a210641cfe6c20021040b200341d0036a41026a200341f0036a41026a2d00003a0000200341e0046a41086a200341b0086a41086a290300370300200341e0046a41106a200341b0086a41106a290300370300200320032f01f0033b01d003200320032903b0083703e00402402008450d0041012108200d0da6020ca7020b20034183066a200341e8046a29030037000020034188066a200341ed046a290000370000200320032f01d0033b01f005200320063600f705200320043600f305200320032903e0043700fb052003200341d2036a2d00003a00f20541012108200341f0056a108f01450d26412110132202450dda01200241206a41002d00dbdc423a0000200241186a41002900d3dc42370000200241106a41002900cbdc42370000200241086a41002900c3dc42370000200241002900bbdc423700002002412141c20010152202450ddb012002200329039803370021200241396a20034198036a41186a290300370000200241316a20034198036a41106a290300370000200241296a20034198036a41086a29030037000020034180046a41086a220642003703002003420037038004200241c10020034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c3004100410010002106200210162006417f460d484188ddc2002104412b2106200d0da5020ca6020b41cfe6c2002104412a21060b200341e0046a41026a200341f0076a41026a2d00003a000020034198036a41086a200341b0086a41086a29030037030020034198036a41106a200341b0086a41106a290300370300200320032f01f0073b01e004200320032903b0083703980320070dd00220034183066a200341a0036a29030037000020034188066a200341a5036a290000370000200320032f01e0043b01f005200320063600f705200320043600f30520032003290398033700fb052003200341e2046a2d00003a00f205200341f0056a108f01450d25200341b0086a2005106520032802b0084101470d340cb0020b412a210641cfe6c20021040b200341d0036a41026a200341f0066a41026a2d00003a0000200341e0046a41086a20034190076a41086a290300370300200341e0046a41106a20034190076a41106a290300370300200320032f01f0063b01d00320032003290390073703e00420070dce0220034183066a200341e0046a41086a29030037000020034188066a2202200341e0046a410d6a290000370000200320032f01d0033b01f005200320063600f705200320043600f305200320032903e0043700fb052003200341d0036a41026a2d00003a00f205200341c7086a20034198036a41086a2206290300370000200341cf086a20034198036a41106a22072d00003a0000200320093600bb082003200a3600b7082003200b3600b308200320034188056a41026a22082d00003a00b208200320032f0188053b01b00820032003290398033700bf08200341f0026a200341f0056a200341b0086a410110920120032802f0022204450d2d20032802f40221060cce020b41b5b8c0002104412021060b2009450dab020caa020b200341b0086a41026a20032d00c2043a0000200320032f01c0043b01b008200341f0056a41086a22024200370300200342003703f00541b9adc100411d200341f0056a100220034198036a41086a2002290300370300200320032903f00537039803412010132202450dc701200220032f01b0083b00002002200f3a001f2002200b36001b2002200e3600172002200d3600132002200a36000f2002200c36000b2002200736000720022008360003200241026a200341b0086a41026a2d00003a000020034198036a411020024120100120021016410021040cbe020b4180c9c30041052004200341fc056a28020010014101210802402006450d00200410160b4100210a410121090c040b200341f0056a41086a2903002105410810132202450dc6012002200537000041bdd7c300410a200241081001200210164100210441012108410121094101210a4101210b410121070c050b0240200441186c2202450d00200720026a21062007210203402002280200200241086a2802002002410c6a280200200241146a2802001001200241186a22022006470d000b0b02402004450d00200441186c21062007210203400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200641686a22060d000b0b410121080240200a450d00200710160b410021090c010b02402004410c6c2202450d00200720026a21062007210203402002280200200241086a28020010032002410c6a22022006470d000b0b02402004450d002004410c6c21062007210203400240200241046a280200450d00200228020010160b2002410c6a2102200641746a22060d000b0b410121090240200a450d00200710160b410021080b4101210a0b4101210b410121070b410021040b02400240024020032802f005417f6a220241064b0d0002400240024020020e0700cb020103040502000b2007450dca02200341f8056a280200450dca0220032802f40510160cca020b200b450dc902200341f8056a280200450dc90220032802f40510160cc9020b2008450dc8020240200341f0056a410c6a2802002207450d0020032802f40521022007410c6c210703400240200241046a280200450d00200228020010160b2002410c6a2102200741746a22070d000b0b200341f8056a280200450dc80220032802f40510160cc8020b200341f0056a1093010cc7020b200a450dc602200341f8056a280200450dc60220032802f40510160cc6020b2009450dc5020240200341f0056a410c6a2802002207450d0020032802f4052102200741186c210703400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200741686a22070d000b0b200341f8056a280200450dc50220032802f40510160cc5020b20034180046a41086a220242003703002003420037038004419cdfc200412420034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200341003602b808200342013703b008200320093602f005200341f0056a200341b0086a101820032802b408220420032802b80822066b20094f0d23200620096a22022006490d850220044101742207200220022007491b22074100480d85022004450d4520032802b0082004200710152202450d460c9e020b41b1bac0002104412521060cb7020b200341f0056a41086a2202200341bc086a280200360200200341c2056a2206200341c3086a2d00003a0000200320032902b4083703f0052003200341c1086a2f00003b01c005200341b0086a41086a22042002280200360200200341bf086a20062d00003a0000200341013a00bc08200320032903f0053703b008200320032f01c0053b00bd082005200341b0086a1068200341c0086a2005370300200442013703002003410e3a00b008200341b0086a105a410021040c9a020b200341f0056a41086a2202200341bc086a280200360200200341c2056a2206200341c3086a2d00003a0000200320032902b4083703f0052003200341c1086a2f00003b01c005200341b0086a41086a22072002280200360200200341bf086a20062d00003a000041002104200341003a00bc08200320032903f0053703b008200320032f01c0053b00bd082005200341b0086a1068200341c0086a2005370300200742013703002003410e3a00b008200341b0086a105a0c99020b20034182046a200341c3086a2d00003a0000200320032f00c1083b0180042005a72202417f4c0dca02200341b8086a280200210420032802b40821092002450d27200210132206450dcd0120062007200210f6021a2004450d96020c95020b4200211d20021016411421064114101322020dc0020b200641011014000b4201211c0b200341f0056a41186a20034190086a41186a290300370300200341f0056a41106a20034190086a41106a290300370300200341f0056a41086a20034190086a41086a29030037030020034188056a41086a200341e0046a41086a29030037030020034188056a41106a200341e0046a41106a29030037030020034188056a41186a200341e0046a41186a29030037030020032003290390083703f005200320032903e004370388054200210520034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0036a41086a2207200229030037030020032003290380043703f0034200211b0240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d930120032903b008211b0b20024200370300200342003703800441ee94c300410d20034180046a10022007200229030037030020032003290380043703f0030240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d940120032903b00821050b200341ef086a2006360000200341eb086a2004360000200341b0086a41206a200341f0056a41086a290300370300200341d8086a200341f0056a41106a290300370300200341e0086a200341f0056a41186a290300370300200341ea086a200341f2066a2d00003a0000200341f3086a20032903f007370000200341fb086a200341f0076a41086a29030037000020034180096a200341fd076a290000370000200342003703c008200320053703b8082003201b3703b008200320032903f0053703c808200320032f01f0063b01e808200341a0096a20034188056a41186a29030037030020034198096a20034188056a41106a29030037030020034190096a20034188056a41086a290300370300200341003a00a809200320032903880537038809412110132202450da901200241206a41002d00be96403a0000200241186a41002900b69640370000200241106a41002900ae9640370000200241086a41002900a696403700002002410029009e96403700002002412141c20010152202450daa012002201c37002120034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a2204200629030037030020032003290380043703f0032003200341f0036a3602d007200341103602d407200341b0086a200341d0076a102d2002101620064200370300200342003703800441f895c000412620034180046a10022004200629030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d01200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d940120032903b00842017c21050c020b4138210641a68ac0002104200341f0056a41386a200341d0056a412010f8020dbe0241de8ac0002104412a2106201d201b5a0dbe02200341a0056a200341a0066a29030037030020034198056a20034198066a29030037030020034190056a20034190066a290300370300200320032903880637038805200341b0086a20034188056a108d0120032d0090094103470d4b4185c9c3002104411f21060cbe020b420221050b20034180046a41086a22024200370300200342003703800441f895c000412620034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320053703b008200341f0036a4110200341b0086a4108100141002104200341b0086a41086a41003a0000200341b9086a200329039008370000200341c9086a20034190086a41106a290300370000200341d1086a200341a8086a29030037000020034190086a41086a2903002105200341113a00b008200341b0086a41116a2005370000200341b0086a105a0cb1020b200341f8056a280200450db80220032802f40510160cb8020b2008450db7020240200341f0056a410c6a2802002207450d0020032802f40521022007410c6c210703400240200241046a280200450d00200228020010160b2002410c6a2102200741746a22070d000b0b200341f8056a280200450db70220032802f40510160cb7020b2007450db602200341f8056a280200450db60220032802f40510160cb6020b2009450db5020240200341f0056a410c6a2802002207450d0020032802f4052102200741186c210703400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200741686a22070d000b0b200341f8056a280200450db50220032802f40510160cb5020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f802450d270b41012110410145210c41014521092007450d87020c86020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f8020da002200341c0026a200520034188056a10950120032802c0022204450d3020032802c402210620070da1020ca3020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f8020d9f022003200c3602b808200320073602b408200320083602b008200341c8026a2005200341b0086a10960120032802c8022204450dea0120032802cc0221060ca2020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f8020d9e02200341b8026a200520034188056a10970120032802b8022204450d2e20032802bc02210620070d9f020ca1020b41f2ddc2002104412f21020b200d450d91020c90020b41dcdcc2002104412c2106200d450dff010cfe010b41e3ccc2002104412721060caa020b4108210a4100210b0b0240201420066a220c2014460d0020044105742104410020146b210d200a210220142106034020034190086a41186a2207200641186a29000037030020034190086a41106a2208200641106a29000037030020034190086a41086a2209200641086a2900003703002003200629000037039008200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003700002002412c6a2008290300370000200241246a20092903003700002002411c6a200329039008370000200241c0006a2102200641206a2106200441606a22040d000b200c200d6a41606a41057641016a21020b0240201a450d00201410160b20034180046a41086a2206420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341003602b808200342013703b008200a2002200341b0086a10980120032802b4082106200341f0036a411020032802b008220420032802b808100102402006450d00200410160b02402002450d0020024106742106200a41106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b41002104410121020240200b450d00200a10160b20184101460dbb020cbd020b4201211b2005a72202417f4c0db3020b024002402002450d00200210132206450da10120062007200210f6021a0c010b410121060b200320023602b808200320023602b408200320063602b008200320054220883c00bc08201b200341b0086a106820034180046a41086a22024200370300200342003703800441b2e1c000412b20034180046a1002200341f0036a41086a200229030037030020032003290380043703f00302400240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d850120032903b00842017c21050c010b420221050b20034180046a41086a22024200370300200342003703800441b2e1c000412b20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320053703b008200341f0036a4110200341b0086a41081001200341b0086a41106a201b370300200341b0086a41086a42003703002003410e3a00b008200341b0086a105a410021042008450d80020cff010b200b101322060d9c020b200b41011014000b41f8bcc00021040c99020b41e2adc1002104411e210620100d8d020c8e020b200341b0086a410d6a2009360000200341b9086a200a360000200341c1086a200329039803370000200341d2086a20032903f005370100200341c9086a2006290300370000200341d1086a20072d00003a0000200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341ea086a20022903003701002003418f043b01b0082003200b3600b508200320032f0188053b01b208200320082d00003a00b408200341b0086a105a410021040ca0020b200341b0086a410d6a2009360000200341b9086a200a360000200341c1086a200329039803370000200341d2086a20032903f005370100200341c9086a2006290300370000200341d1086a20072d00003a0000200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341ea086a20022903003701002003418f023b01b0082003200b3600b508200320032f0188053b01b208200320082d00003a00b408200341b0086a105a410021040c9f020b20032802b00821020c9b020b20032802b00821020cfb010b20032d00a409450d234188bbc0002104411d21060c3b0b411710132202450dad012002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450dae0120022003290388053700172002412f6a200341a0056a290300370000200241276a20034188056a41106a2903003700002002411f6a20034188056a41086a290300370000200341f0066a41086a22064200370300200342003703f00620024137200341f0066a1002200341b0086a41086a2006290300370300200320032903f0063703b008200341b0086a411041acf1c3004100410010002106200210162006417f460d2541eeabc10021044126210620080d83020c84020b200341c0086a2d00002102200341b8086a280200450d2620032802b4081016200241ff01710d270cfb010b410021200b201e202041067422086a22920121022008450d16200341cc086a219301200341b0086a41186a21084100210a0340200341e0046a41086a220b201e200a6a220241206a290200370300200341e0046a41106a220c200241286a290200370300200341e0046a41186a2212200241306a290200370300200341e0046a41206a229401200241386a2902003703002003200241186a2902003703e004200241106a2802002209450d1620022903002119200241086a290300212a200341b0086a41146a200241146a280200229501360200200341b0086a41106a2009360200200820032903e004370200200841086a229601200b290300370200200841106a220b200c290300370200200841186a220c2012290300370200200841206a22122094012903003702002003202a3703b808200320193703b0080240024020930120034190086a412010f802450d0020034198036a41206a201229020037030020034198036a41186a200c29020037030020034198036a41106a200b29020037030020034198036a41086a209601290200370300200320082902003703980320950121970120192164202a21650c010b0240209501450d00200910160b410021090b20034188056a41206a20034198036a41206a29030037030020034188056a41186a20034198036a41186a29030037030020034188056a41106a20034198036a41106a29030037030020034188056a41086a20034198036a41086a29030037030020032003290398033703880520090d1f200a41c0006a210a200241c0006a209201470d000b2092012202209201470d170c180b2003200f3a008f082003200d36008b082003200c360087082003200b360083082003200a3600ff07200320093600fb07200320063600f707200320023600f307200320032d00c2043a00f207200320032f01c0043b01f007200341f0076a21060b200441016a22022004490da40220044101742208200220022008491b2202ad4206862205422088a70da4022005a722084100480da4022004450d0e20072004410674200810152207450d0f0ce7010b4101210620040ded010cee010b200341e4086a20032903b008200341b0086a41086a290300105f4128210620084101105c2204450d22200341d0086a280200450d010b20032802cc0810160b200341dc086a280200450d890220032802d80810160c89020b200341003a00c204200341003b01c0044100210d4100210c4100210b4100210a4100210941002108410021070b200320032d00c2043a00d207200320032f01c0043b01d007200320023a00ef072003200d3600eb072003200c3600e7072003200b3600e3072003200a3600df07200320093600db07200320083600d707200320073600d307200341ba086a200341d0076a41086a290300370100200341c2086a200341d0076a41106a290300370100200341ca086a200341d0076a41186a29030037010020034185023b01b008200320032903d0073701b208200341b0086a105a200341f0056a41026a2207200341c0056a41026a2d00003a0000200341b0086a41086a2208200341a0046a41086a290300370300200341b0086a410d6a2209200341a0046a410d6a290000370000200320032f01c0053b01f005200320032903a0043703b00820034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f003412010132202450d9101200220032f01f0053b00002002200636000720022004360003200220032903b00837000b200241026a20072d00003a0000200241136a2008290300370000200241186a2009290000370000200341f0036a411020024120100120021016410021040b0b4100210a41012107410121090ca8020b4194acc10021044117210620080df5010cf6010b200341f0056a41086a22024200370300200342003703f00541caaac1004120200341f0056a100220034198036a41086a2002290300370300200320032903f00537039803024020034198036a411041acf1c300410041001000417f460d00200341003a00b00820034198036a4110200341b0086a41014100100041016a41014d0dab0120032d00b008450d260b411e10132202450da201200241166a41002900f89141370000200241106a41002900f29141370000200241086a41002900ea9141370000200241002900e291413700002002411e413e10152202450da301200220032903e00437001e200241366a200341f8046a2903003700002002412e6a200341e0046a41106a290300370000200241266a200341e0046a41086a290300370000200341f0056a41086a22064200370300200342003703f0052002413e200341f0056a1002200341b0086a41086a2006290300370300200320032903f0053703b008200341b0086a411041acf1c3004100410010002106200210162006417f460d1d41abacc1002104412c210620100df8010cf9010b4201211b0b200341f0056a41086a20034190086a41086a290300370300200341f0056a41106a20034190086a41106a2d00003a0000200341b0086a41086a20034198036a41086a290300370300200341b0086a41106a20034198036a41106a290300370300200341b0086a41186a20034198036a41186a290300370300200320032800b3073600f307200320032802b0073602f00720032003290390083703f00520032003290398033703b008412710132202450d8d012002411f6a41002900b4d943370000200241186a41002900add943370000200241106a41002900a5d943370000200241086a410029009dd94337000020024100290095d9433700002002412741ce0010152206450d8e012006201b37002720034180046a41086a2202420037030020034200370380042006412f20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003412010132202450d8f01200220032802f00736000020022005370007200220032903f00537000f200241036a20032800f307360000200241176a200341f0056a41086a2903003700002002411f6a200341f0056a41106a2d00003a00002002412041c00010152202450d9001200220032903b008370020200241386a200341c8086a290300370000200241306a200341b0086a41106a290300370000200241286a200341b0086a41086a290300370000200241c00041800110152202450d9101200241003a0040200341f0036a4110200241c10010012002101620061016200341f0036a41086a22024200370300200342003703f00341cde2c300412c200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f00602400240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d7320032903b00842017c211c0c010b4202211c0b200341f0036a41086a22024200370300200342003703f00341cde2c300412c200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f0062003201c3703b008200341f0066a4110200341b0086a41081001200341c7086a20034190086a41086a290300370000200341cf086a20034190086a41106a2d00003a0000200320053700b708200320032800b3073600b308200320032802b0073602b00820032003290390083700bf08200341f0076a200341b0086a108a01024020032802f40720032802f8072202470d00200241016a22062002490dcf0120024101742204200620062004491b2204ad420386221c422088a70dcf01201ca722074100480dcf012002450d1320032802f0072002410374200710152206450d140cda010b20032802f00721060cda010b4101210941012102200a450d2b2003200e3602b8082003200d3602b4082003200a3602b008200341e0026a2005200341b0086a10950120032802e0022204450d2a20032802e40221060240200d450d00200a10160b41012110410045210c410145210920070ddf010ce0010b2005500d1841102106200c41c5ddc200200c1b2104200c450d2b200341c0046a41186a200341f0056a41186a290300370300200341c0046a41106a200341f0056a41106a290300370300200341c0046a41086a200341f0056a41086a290300370300200320032903f0053703c0044200210520034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0066a41086a2206200229030037030020032003290380043703f0064200211c0240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d950120032903b008211c0b20024200370300200342003703800441ee94c300410d20034180046a10022006200229030037030020032003290380043703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d960120032903b00821050b200341dc086a2014360200200341d8086a200f4110200c1b36020041002102200341d0086a4100360200200341e8086a200341c0046a41086a290300370300200341f0086a200341c0046a41106a290300370300200341f8086a200341c0046a41186a290300370300200320043602d408200342013703c8082003201b3703c008200320053703b8082003201c3703b008200320032903c0043703e0082003201141ff01714102472011713a00800920034198036a200341b0086a10990120034180046a41086a22064200370300200342003703800441d5ddc200411d20034180046a1002200341f0066a41086a200629030037030020032003290380043703f006200341f0066a411041acf1c300410041001000417f460d2e2003421037028c052003200341f0066a36028805200341b0086a20034188056a101120032802b0082212450daf01200341b0086a41086a280200210420032802b408210220034188056a41186a20034198036a41186a29030037030020034188056a41106a20034198036a41106a29030037030020034188056a41086a20034198036a41086a29030037030020032003290398033703880520034188056a21062002211520042002460d2f0ccb010b2008101322070dd8010b200841081014000b42e400211d0b0240201d201b56201c200556201c2005511b450d0041d5b8c00021044110210620090de4010ce5010b200f450d13200341f0036a41086a22024200370300200342003703f0034191b7c0004114200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d1e200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d8f01200f20032802b0084d0d1f0cd2010b20032903c008211b200341f0036a41086a22024200370300200342003703f003419be8c200410d200341f0036a1002200341f0066a41086a22062002290300370300200320032903f0033703f006420021050240200341f0066a411041acf1c300410041001000417f460d00200342003703f005200341f0066a4110200341f0056a41084100100041016a41084d0d7b20032903f00521050b20024200370300200342003703f00341f2bac0004116200341f0036a100220062002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d15200342003703f005200341f0066a4110200341f0056a41084100100041016a41084d0d7b200520032903f005201b7c5a0d310ccb010b200241c0006a21020b2002209201460d010b201e20204106746a210b20034188056a41086a21040340200241146a2802002107200241106a280200210620034188056a41206a2208200241386a29020037030020034188056a41186a2209200241306a29020037030020034188056a41106a220a200241286a2902003703002004200241206a2902003703002003200241186a290200370388052006450d01200241c0006a2102200341e0046a41206a2008290300370300200341e0046a41186a2009290300370300200341e0046a41106a200a290300370300200341e0046a41086a200429030037030020032003290388053703e00402402007450d00200610160b200b2002470d000b0b41002198010240201f450d00201e10160b4108219901410821024100219a010c90020b410021042007450dc501200810160cc5010b2007101322020df9010b200741011014000b2007101322020dd8010b200741011014000b200341f0056a41206a220820034188056a41206a290300370300200341f0056a41186a220b20034188056a41186a290300370300200341f0056a41106a220c20034188056a41106a290300370300200341f0056a41086a221220034188056a41086a29030037030020032003290388053703f005200341b0086a41206a2293012008290300370300200341b0086a41186a2208200b290300370300200341b0086a41106a220b200c290300370300200341b0086a41086a220c2012290300370300200320032903f0053703b00841c0001013229901450d98012099012064370300209901209701360214209901200936021020990120032903b008370318209901206537030820990141206a200c290300370300412821960120990141286a200b290300370300413021950120990141306a2008290300370300413821940120990141386a209301290300370300202041067441406a200a460d15200241c0006a219b014106219c01201e20204106746a41406a219d01200341cc086a219e014118210b200341b0086a41186a210c4101219f0141142112411021094108210a4120210841c0002193014206212a42202119410021a0014101219a014101219801410121020c85020b4200211b200341f0036a41086a22024200370300200342003703f00341b4bcc0004119200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d15200342003703f805200342003703f005200341f0066a4110200341f0056a4110410010002202417f460d95012002410f4d0d9501200341f8056a290300211b20032903f00521050c160b2007101322060dc6010b200741081014000b200341f0056a41086a22024200370300200342003703f00541eaaac1004124200341f0056a100220034198036a41086a2002290300370300200320032903f0053703980320034198036a411041acf1c300410041001000417f460d19200342103702f405200320034198036a3602f005200341b0086a200341f0056a101e20032802b0082216450d9901200341b8086a280200210220032802b40821250c1a0b2002101641012106411f2102410221070cd7010b200241ff0171450dd4010b20034198036a41026a20034190076a41026a2d00003a0000200341b0086a41086a20034188056a41086a290300370300200341b0086a41106a20034188056a41106a2d00003a0000200320032f0190073b01980320032003290388053703b008412310132202450d8d012002411f6a41002800e8cd42360000200241186a41002900e1cd42370000200241106a41002900d9cd42370000200241086a41002900d1cd42370000200241002900c9cd423700002002412341c60010152202450d8e01200220032f0198033b00232002200936002e2002200a36002a2002200b360026200220032903b008370032200241256a2003419a036a2d00003a00002002413a6a200341b0086a41086a290300370000200241c2006a200341b0086a41106a2d00003a000020034180046a41086a220642003703002003420037038004200241c30020034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c3004100410010002106200210162006417f460d06418ddcc2002104412e21060cf3010b200341fc056a2008360200200341f0056a41086a41063a0000200341073a00f005200341f0056a105a0240200341d0086a280200450d0020032802cc0810160b200341dc086a280200450dba0120032802d80810160cba010b41e5b8c00021044122210620090dcf010cd0010b41b3ddc200210441122106200d0dc3010cc4010b411710132202450d93012002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d9401200220032903e0043700172002412f6a200341f8046a290300370000200241276a200341e0046a41106a2903003700002002411f6a200341e0046a41086a29030037000020034180046a41086a2206420037030020034200370380042002413720034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c3004100410010002106200210162006417f460d1941eeabc10021044126210620100dda010cdb010b200341f0036a41086a22024200370300200342003703f003419095c3004117200341f0036a100220034180046a41086a2002290300370300200320032903f0033703800420034180046a411041acf1c300410041001000417f460d19200342003703f00520034180046a4110200341f0056a41084100100041016a41084d0d7e20032903f005420186221c50450d1a41bcb3c0001038000b20032903c808221c201b540df201200341e8066a201c201b513a0000200341f0056a41106a201b37030020034188056a41186a200341f0056a41186a220241186a29000037030020034188056a41106a200241106a29000037030020034188056a41086a200241086a2900003703002003200229000037038805200341b0086a200341f0056a41800110f6021a412110132202450d9801200241206a41002d00be96403a0000200241186a41002900b69640370000200241106a41002900ae9640370000200241086a41002900a696403700002002410029009e96403700002002412141c20010152202450d99012002200537002120034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341103602e4042003200341f0036a3602e004200341b0086a200341e0046a102d20021016201c201b520de601200341b0086a41086a41013a0000200341b9086a200329038805370000200341e0086a201b37030020034188056a41086a2903002105200341113a00b008200341b0086a41116a2005370000200341c9086a20034188056a41106a290300370000200341d1086a200341a0056a290300370000200341b0086a105a410021040ce7010b20034198036a109a0120032802a0032206450d1c20034180046a41086a220242003703002003420037038004418ae8c200411120034180046a1002200341f0036a41086a200229030037030020032003290380043703f00341002102200341f0036a411041acf1c300410041001000417f460d21200341e8076a4200370300200341d0076a41106a4200370300200341d0076a41086a4200370300200342003703d007200341f0036a4110200341d0076a4120410010002202417f460d93012002411f4d0d930120032d00d707410774210220032d00d607410674210420032d00d507410574210720032d00d407410474210820032d00d307410374210c20032d00d207410274210d20032d00d107410174210f20032d00d00721100c220b4101210420032802e00420032802e40441014100200341e8046a28020010001a41002006460dcc010b2006450d00200410160b2008450d00200910160b41b6e7c20041331029000b4194acc10021044117210620100dd2010cd3010b200f41e4004b0db3010b2010450d0e200341f0036a41086a22024200370300200342003703f00341a5b7c000411b200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d18200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d8401201020032802b0084d0d190caa010b4101219a0141012198012092012202209201470df2010cf3010b420521050b200341d8016a20034198036a2005201b105d200341f0056a41186a200341d8016a41186a290300370300200320032903e801370380062003200341d8016a41086a2903003703f805200320032903d8013703f005200341f0056a105e20034198036a20032903b008221c20057d200341b0086a41086a290300201b7d201c200554ad7d105f4128210620084101105c2204450d010b0240200341b0086a41206a280200450d0020032802cc0810160b200341dc086a280200450dd70120032802d80810160cd7010b200341f0056a41086a41013a0000200341f9056a200329039803370000200341f0056a412c6a200836020020034181066a20034198036a41086a29030037000020034189066a200341a8036a29030037000020034191066a20034198036a41186a290300370000200341073a00f005200341f0056a105a0240200341d0086a280200450d0020032802cc0810160b200341b0086a412c6a280200450da80120032802d80810160ca8010b41002102200d450d00200a10160b200b450d06200320103602b8082003200f3602b4082003200b3602b008200341d8026a2005200341b0086a10970120032802d8022204450d0520032802dc0221060240200f450d00200b10160b41012110200245210c410045210920070db3010cb4010b41002108200d0db0010cb1010b410810132216450d85012016420037030041012125410121020b2016200241037422066a2113201621020340201320026b411f4d0d0a20022903002005510d0b200241086a2903002005510d0b200241106a2903002005510d0b200641606a2106200241186a2104200241206a210220042903002005520d000c0b0b0b20034188056a41186a20034198036a41186a29030037030020034188056a41106a20034198036a41106a29030037030020034188056a41086a20034198036a41086a2903003703002003200329039803370388054101211220034188056a21060b200241016a22042002490d9c0120024101742208200420042008491b2215ad4205862205422088a70d9c012005a722084100480d9c012002450d0a2002210420122002410574200810152212450d0b0c9b010b41002109200f450d00200b10160b02402008450d002003200c3602b808200320073602b408200320083602b008200341d0026a2005200341b0086a10960120032802d0022204450d0020032802d402210641002110200245210c200945210920070dad010cae010b0240200d450d00200a450d002002450d00200a10160b41002104200f450d9d01200b450d9d012009450d9d01200b10160cca010b4197b9c00021044129210620090db4010cb5010b200341f0056a41206a20163602002003418c066a201536020020034184066a2013360200200341f0056a41106a2012360200200341f0056a41086a2005422088a73602002003201436028806200320113602fc05200320173602f405200320103602f005200341b0086a200341f0056a109b0120032802b0084101470d0e200341b0086a41086a280200210620032802b40821040cc8010b4206211c0b20054280de34201c80201b7c540d9a010b41a5bbc0002104412a2106200341d0086a2802000dc6010cc7010b03402006450d0c200641786a21062002290300211b200241086a2102201b2005520d000b0b412210132202450d71200241206a41002f00aeab413b0000200241186a41002900a6ab41370000200241106a410029009eab41370000200241086a4100290096ab413700002002410029008eab413700002002412241c40010152206450d7220062005370022200341f0056a41086a22024200370300200342003703f0052006412a200341f0056a100220034198036a41086a2002290300370300200320032903f0053703980302400240024020034198036a411041acf1c300410041001000417f460d00200320034198036a3602f005200341103602f405200342003703b0082003410020034198036a4110200341b0086a41084100100022022002417f461b22024108200241084922041b22023602f80520040d9101200342003703b808200342003703b008200341f0056a41086a410020034198036a4110200341b0086a41102002100022042004417f461b2204411020044110491b20026a3602002004410f4d0d9101200341b8086a290300211b20032903b008211c200341b0026a200341f0056a101220032802b002450d910120032802b4022202417f4c0ddf012002450d012002101b2213450d7d200341f8056a2204200428020022042002410020032802f00520032802f405201320022004100022042004417f461b2204200420024b1b22046a36020020042002470d020c90010b200610164126210641b0abc100210420250d0d0cb8010b4101211320032802f00520032802f40541014100200341f8056a28020010001a41002002460d8e010b2002450d8e01201310160c8e010b413521064188f7c000210441012102200328029c030d060c070b200221042008101322120d90010b200841011014000b20104190ce004b0d91010b2011450d07200341f0036a41086a22024200370300200342003703f00341c0b7c0004118200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d09200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d73201120032802b0084d0d0a0c87010b4100210441002107410021084100210c4100210d4100210f410021100b20034190086a41026a2003280298032002200420072008200c200d200f20106a6a6a6a6a6a6a2006704105746a220241026a2d00003a0000200341b8086a200241136a290000370300200341bd086a200241186a290000370000200320022f00003b0190082003200229000b3703b008200228000721062002280003210441002102200328029c03450d010b20032802980310160b200341d0036a41026a220720034190086a41026a2d00003a0000200341e0046a41086a2208200341b0086a41086a290300370300200341e0046a41106a200341b0086a41106a290300370300200320032f0190083b01d003200320032903b0083703e00420020dc701200341c0046a41026a20072d00003a0000200341f0076a41086a2008290300370300200341f0076a410d6a200341e0046a410d6a290000370000200320032f01d0033b01c004200320032903e0043703f0074200211c20034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f0064200211d0240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d5f20032903b008211d0b20034180046a41086a22024200370300200342003703800441ee94c300410d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d6020032903b008211c0b200341f7086a2006360000200341f3086a2004360000200341d8086a200341f0056a41086a290300370300200341e0086a200341f0056a41106a290300370300200341e8086a200341f0056a41186a290300370300200341f2086a200341c2046a2d00003a00002003201b3703c808200320053703c0082003201c3703b8082003201d3703b008200320032903f0053703d008200320032f01c0043b01f00820034188096a200341fd076a29000037000020034183096a200341f0076a41086a290300370000200341fb086a20032903f007370000200341003a009009412310132202450d742002411f6a41002800e8cd42360000200241186a41002900e1cd42370000200241106a41002900d9cd42370000200241086a41002900d1cd42370000200241002900c9cd423700002002412341c60010152202450d75200220032f0190073b00232002200936002e2002200a36002a2002200b3600262002200329038805370032200241256a20034192076a22062d00003a00002002413a6a20034188056a41086a2204290300370000200241c2006a20034188056a41106a22072d00003a000020034180046a41086a220842003703002003420037038004200241c30020034180046a1002200341f0066a41086a200829030037030020032003290380043703f0062003411036029c032003200341f0066a36029803200341b0086a20034198036a109c0120021016200341bd086a2009360000200341b9086a200a360000200341c1086a200329038805370000200341c9086a2004290300370000200341d1086a20072d00003a0000200341d2086a20032903f005370100200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341b0086a413a6a20034188066a2903003701002003410f3b01b0082003200b3600b508200320032f0190073b01b208200320062d00003a00b408200341b0086a105a410021040cc6010b20034198036a41206a200341b0086a410472220241206a28020036020020034198036a41186a200241186a29020037030020034198036a41106a200241106a29020037030020034198036a41086a200241086a2902003703002003200229020037039803411210132202450d76200241106a41002f00a4ad413b0000200241086a410029009cad4137000020024100290094ad4137000020034292808080a0023702b408200320023602b0082003280298032108200320032802a00322023602f005200341f0056a200341b0086a101820032802b408220720032802b80822046b20024f0d03200420026a22062004490dd30120074101742209200620062009491b22094100480dd3012007450d0620032802b0082007200910152206450d070c7f0b4118210641d6abc10021042025450dab010b2016101620080dab010cac010b41d7b9c00021044127210620090da1010ca2010b20032802b00821060c7c0b2011418089fa004b0d7d0b0240200341f0056a201b2005109d01450d004192bac0002104411f210620090d9f010ca0010b200341f0036a41086a22024200370300200342003703f00341d8b7c0004117200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d02200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d7120032802b00841016a21060c030b2009101322060d780b200941011014000b410121060b4200211c200341f0036a41086a22024200370300200342003703f00341d8b7c0004117200341f0036a1002200341f0066a41086a22252002290300370300200320032903f0033703f006200320063602b008200341f0066a4110200341b0086a4104100120034190086a41186a420037030020034190086a41106a420037030020034190086a41086a42003703002003420037039008200c201120034190086a1004200341d0076a41026a221620032d0092083a0000200320032f0190083b01d00720032800930821042003280097082107200328009b082114200328009f08210e20032800a308211220032800a708211520032800ab08211720032d00af082113200341f0076a41186a200341f0056a41186a290300370300200341f0076a41106a200341f0056a41106a290300370300200341f0076a41086a200341f0056a41086a290300370300200320032903f0053703f007200320032f01d0073b01c004200320162d00003a00c20420024200370300200342003703f003419be8c200410d200341f0036a100220252002290300370300200320032903f0033703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d6c20032903b008211c0b200341b0086a41026a20162d00003a0000200320032f01d0073b01b008411810132202450d6e200241106a41002900ffb740370000200241086a41002900f7b740370000200241002900efb74037000020024118413810152202450d6f200220032f01b0083b0018200220133a0037200220173600332002201536002f2002201236002b2002200e360027200220143600232002200736001f2002200436001b2002411a6a200341b0086a41026a2d00003a0000200341f0036a41086a22164200370300200342003703f00320024138200341f0036a100220034180046a41086a2016290300370300200320032903f0033703800420034180046a411041acf1c300410041001000212520021016410121162025417f470d74200341e0046a41026a200341d0076a41026a2d00003a0000200320032f01d0073b01e004411810132202450d70200241106a41002900ffb740370000200241086a41002900f7b740370000200241002900efb74037000020024118413810152202450d71200220032f01e0043b0018200220133a0037200220173600332002201536002f2002201236002b2002200e360027200220143600232002200736001f2002200436001b2002411a6a200341e2046a2d00003a0000200341f0036a41086a22164200370300200342003703f00320024138200341f0036a1002200341f0066a41086a2016290300370300200320032903f0033703f006200341003602b808200342013703b008200320113602980320034198036a200341b0086a101802400240024020032802b408222620032802b80822256b20114f0d00202520116a22162025490dcc012026410174221a20162016201a491b221a4100480dcc012026450d0120032802b0082026201a10152216450d020c750b20032802b00821160c750b201a101322160d730b201a41011014000b1044000b109e01000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41d8d7c3001046000b200341b0086a41146a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a4180aec1001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a418486c3001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41fce2c3001046000b200341b0086a41146a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41e8bcc0001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41e0e1c0001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41a8dcc0001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41a0c0c1001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41d8c7c3001046000b200341b0086a41146a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41c0dfc2001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41c096c0001046000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41a4e9c2001038000b41d4eac2001038000b41c093c3001038000b41b6e7c20041331029000b41b6e7c20041331029000b412141011014000b41c20041011014000b41b6e7c20041331029000b41b6e7c20041331029000b411241011014000b413241011014000b412041011014000b41b6e7c20041331029000b410941011014000b412941011014000b411441011014000b413441011014000b412141011014000b41c20041011014000b411341011014000b412641011014000b41b6e7c20041331029000b411341011014000b412641011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b411e41011014000b413e41011014000b412041011014000b410841011014000b411341011014000b412641011014000b412041011014000b41b6e7c20041331029000b412741011014000b41ce0041011014000b412041011014000b41c00041011014000b41800141011014000b41b6e7c20041331029000b412141011014000b41c20041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b41b6e7c20041331029000b411741011014000b413741011014000b412141011014000b41c20041011014000b411e41011014000b413e41011014000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b412341011014000b41c60041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41c00041081014000b41b6e7c20041331029000b200641011014000b412241011014000b41c40041011014000b41b6e7c20041331029000b411741011014000b413741011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410841081014000b200241011014000b412141011014000b41c20041011014000b412341011014000b41c60041011014000b41b6e7c20041331029000b411241011014000b41b6e7c20041331029000b411841011014000b413841011014000b411841011014000b413841011014000b2003201a3602b408200320163602b008201a21260b201620256a200c201110f6021a200341f0066a41102016202520116a100102402026450d00201610160b2002101602402009450d00200c10160b410021160b200341e0086a2010360200200341dc086a200a360200200341d4086a200f360200200341d0086a200b36020020034186096a20032d00c2043a0000200341ec086a200341f0076a41086a290300370200200341f4086a20034180086a290300370200200341fc086a20034188086a2903003702002003201b3703b0082003200d3602d808200320083602cc08200320063602c8082003201c3703c008200320053703b808200320032903f0073702e408200320032f01c0043b018409200341a3096a20133a00002003419f096a20173600002003419b096a201536000020034197096a201236000020034193096a200e3600002003418f096a20143600002003418b096a200736000020034187096a2004360000200341a7096a200341c8056a41026a2d00003a0000200341003a00a409200320032f01c8053b00a50902400240024002400240411310132202450d002002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450d0120022006360013200341f0036a41086a22044200370300200342003703f00320024117200341f0036a1002200341f0066a41086a2004290300370300200320032903f0033703f0062003411036029c032003200341f0066a36029803200341b0086a20034198036a104b200210160240200341d0086a280200450d00200341cc086a28020010160b0240200341dc086a280200450d00200341d8086a28020010160b200341f0036a41086a22024200370300200342003703f003419ab8c000411b200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f0064100210202400240200341f0066a411041acf1c300410041001000417f460d002003421037029c032003200341f0066a36029803200341b0086a20034198036a102620032802b0082204450d04200320032902b40822053702b408200320043602b0082005a72005422088a72202460d010c060b200341003602b808200342043703b008410421040b200241016a22072002490d5920024101742208200720072008491b2207ad4202862205422088a70d592005a722084100480d59024002402002450d0020042002410274200810152204450d010c050b2008101322040d040b200841041014000b411341011014000b412641011014000b41b6e7c20041331029000b200320073602b408200320043602b008200341b8086a28020021020b200341b0086a41086a2207200241016a360200200420024102746a2006360200200341b0086a1060024020032802b408450d00200410160b200741003a0000200341dc086a2006360200200341b9086a20032903f005370000200341c1086a200341f0056a41086a290300370000200341c9086a200341f0056a41106a2202290300370000200341d1086a200341f0056a41186a2204290300370000200341073a00b008200341b0086a105a0240200341f0056a108901450d00200341b0086a41186a2004290300370300200341b0086a41106a2002290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b008200341b0086a2006410110580b410021042009450d102016450d10200c10160c100b200320093602b408200320063602b008200921070b200620046a2008200210f6021a200341f0056a41086a22094200370300200342003703f0052006200420026a200341f0056a1002200341b0086a41086a2009290300370300200320032903f0053703b008200341b0086a411041acf1c300410041001000210202402007450d00200610160b02402002417f460d000240200328029c03450d00200810160b0240200341a8036a280200450d0020032802a40310160b0240200341b4036a280200450d0020032802b00310160b41d7acc1002104411921060c390b200341c9086a220220034188056a41186a290300370000200341c1086a220620034188056a41106a290300370000200341b9086a220420034188056a41086a290300370000200341013a00b00820032003290388053700b108200341e0046a20034198036a200341b0086a109f012105200341b0086a41086a41003a0000200341e0086a2005370300200420032903e0043700002006200341e0046a41086a2903003700002002200341e0046a41106a290300370000200341d1086a200341e0046a41186a2903003700002003410b3a00b008200341b0086a105a0240200328029c03450d00200810160b024020034198036a41106a280200450d0020032802a40310160b200341b4036a280200450d0020032802b00310160b410021040c370b41feb9c00021044114210620090d210c220b2013450d002006101602402025450d00201610160b024020034188056a201c201b10a001450d00200341f0056a41206a20103602002003418c066a200f36020020034184066a200e360200200341f0056a41106a200d360200200341f0056a41086a200c3602002003200b360288062003200a3602fc05200320073602f405200320083602f005200341b0086a200341f0056a109b0120032802b0084101470d02200341b0086a41086a280200210620032802b40821044100210c20020d030c040b41f0acc1002104412421064101210c2002450d030c020b41b6e7c20041331029000b20034198036a41206a200341b0086a410472220641206a28020036020020034198036a41186a200641186a29020037030020034198036a41106a200641106a29020037030020034198036a41086a200641086a2902003703002003200629020037039803024002400240411210132206450d00200641106a41002f00a4ad413b0000200641086a410029009cad4137000020064100290094ad4137000020034292808080a0023702b408200320063602b0082003280298032116200320032802a00322063602f005200341f0056a200341b0086a101802400240024020032802b408220e20032802b808220c6b20064f0d00200c20066a2204200c490d53200e4101742225200420042025491b22254100480d53200e450d0120032802b008200e202510152204450d020c040b20032802b00821040c040b2025101322040d020b202541011014000b411241011014000b200320253602b408200320043602b0082025210e0b2004200c6a2016200610f6021a200341f0056a41086a22254200370300200342003703f0052004200c20066a200341f0056a1002200341b0086a41086a2025290300370300200320032903f0053703b008200341b0086a411041acf1c30041004100100021060240200e450d00200410160b02402006417f460d000240200328029c03450d00201610160b0240200341a8036a280200450d0020032802a40310160b0240200341b4036a280200450d0020032802b00310160b41d7acc1002104411921064100210c20020d010c020b20034190026a20034188056a201c201b10a101200341b0086a41186a20034190026a41186a290300370300200320032903a0023703c008200320034190026a41086a2903003703b80820032003290390023703b008200341b0086a105e200341b0086a41086a22062005370300200341003a00b00820034188056a20034198036a200341b0086a109f012105200641003a0000200341e0086a2005370300200341b9086a200329038805370000200341c1086a20034188056a41086a290300370000200341c9086a20034188056a41106a290300370000200341d1086a20034188056a41186a2903003700002003410b3a00b008200341b0086a105a0240200328029c03450d00201610160b024020034198036a41106a280200450d0020032802a40310160b0240200341b4036a280200450d0020032802b00310160b02402002450d00201310160b410021040c290b201310160b200c0d240c270b2012200441057422086a22022006290000370000200241186a200641186a290000370000200241106a200641106a290000370000200241086a200641086a29000037000020034180046a41086a22024200370300200342003703800441d5ddc200411d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200341003602b808200342013703b0082003200441016a22023602880520034188056a200341b0086a1018024002402002450d00200841206a21114100200341b0086a41086a28020022066b210820032802b008211420032802b40821092012210203400240200920086a411f4b0d00200641206a22042006490d042009410174220e20042004200e491b22044100480d04024002402009450d00201420092004101522140d010c070b200410132214450d060b200421090b201420066a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200841606a2108200641206a2106200241206a2102201141606a22110d000b200341b8086a2006360200200320093602b408200320143602b0080c010b200341b0086a41086a280200210620032802b408210920032802b00821140b200341f0066a411020142006100102402009450d00201410160b02402015450d00201210160b200341d2086a20032903f005370100200341ba086a20034198036a41086a290300370100200341c2086a20034198036a41106a290300370100200341ca086a20034198036a41186a290300370100200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341ea086a200341f0056a41186a2903003701002003418f063b01b00820032003290398033701b208200341b0086a105a0240200d450d002010450d00200d10160b41002104024002402007417f6a220241064b0d00024020020e0740404040020000400b4100210441000d3e0b200a0d3c0c3d0b0240200d450d002010450d00200d10160b200c450d3c200f0d200c3c0b1010000b200441011014000b41c0b9c00021044117210620090d180c190b0c2c0b200341f0056a41186a20034198036a41186a290300370300200341f0056a41106a20034198036a41106a290300370300200341f0056a41086a20034198036a41086a29030037030020032003290398033703f005412210132202450d02200241206a41002f0096bc403b0000200241186a410029008ebc40370000200241106a4100290086bc40370000200241086a41002900febb40370000200241002900f6bb403700002002412241c40010152202450d03200220032903f0053700222002413a6a20034188066a290300370000200241326a200341f0056a41106a2903003700002002412a6a200341f0056a41086a290300370000200241c40041880110152202450d0420022008360042200341f0036a41086a22064200370300200342003703f003200241c600200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c30041004100100021062002101602402006417f460d0041cfbbc000210441272106200341d0086a2802000d2d0c2e0b200341f0056a41186a20034198036a41186a290300370300200341f0056a41106a20034198036a41106a290300370300200341f0056a41086a20034198036a41086a29030037030020032003290398033703f005200341f0056a2008201410580240200341d0086a280200450d0020032802cc0810160b200341dc086a280200450d0020032802d80810160b410021040b0c2c0b412241011014000b41c40041011014000b41880141011014000b4187b9c00021044110210620090d100c110b200320043602f407200320063602f0070b200341f0076a41086a2204200241016a360200200620024103746a201b370300200341b0086a41086a20034190086a41086a290300370300200341b0086a41106a20034190086a41106a2d00003a0000200320032800b3073600d307200320032802b0073602d00720032003290390083703b008200341f0056a41086a2004280200360200200320032903f0073703f00502400240413210132202450d00200241306a41002f00ecd9433b0000200241286a41002900e4d943370000200241206a41002900dcd943370000200241186a41002900d4d943370000200241106a41002900ccd943370000200241086a41002900c4d943370000200241002900bcd9433700002002413241e40010152202450d01200220032802d00736003220022005370039200220032903b008370041200241356a20032800d307360000200241c9006a200341b0086a41086a2206290300370000200241d1006a200341b0086a41106a22072d00003a0000200241d200200341f0056a10a20120021016024020032802f405450d0020032802f00510160b41002104200641003a0000200341b9086a20032802b007360000200341bc086a20032800b307360000200341b0086a41186a200329039008370300200341d0086a20034190086a41086a290300370300200341d9086a200329039803370000200341e1086a20034198036a41086a290300370000200341f1086a20034198036a41186a290300370000200341103a00b00820072005370300200341d8086a20034190086a41106a2d00003a0000200341e9086a20034198036a41106a29030037000020034180096a201b370300200341b0086a105a0c360b413241011014000b41e40041011014000b20042108200221040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c20034180046a41086a2202420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341003602f805200342013703f0052007200841016a2202200341f0056a10980120032802f4052106200341f0036a411020032802f005220920032802f805100102402006450d00200910160b02402002450d00200741106a2102200841067441c0006a210603400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b02402004450d00200710160b410021040b412621064100210220184101460d400c420b2010450d00200d10160b200f450d2b200c450d2b20084101730d2b200c10160c2b0b2008450d002010450d00200810160b0240200d450d00200a45200c720d00200a10160b200f450d1c200b452009720d1c0c1b0b200910160b200341bf086a20034182046a2d00003a0000200320023602b808200320023602b408200320063602b008200320054220883c00bc08200320032f0180043b00bd08201b200341b0086a1068200341c0086a201b370300200341b8086a42013703002003410e3a00b008200341b0086a105a410021042008450d010b200710160b0b4100210f41012107410121094101210a410121084101210b4101210c4101210d41012110410121110c440b200320073602b408200320023602b008200721040b200220066a200b200910f6021a200341f0066a41102002200620096a10012004450d1f200210160c1f0b200c10160b0240200a450d00200d10160b200b450d16200810160c160b418acdc2002104413f21060c1f0b201c422088a7210a200320032d00f2073a00c204200320032f01f0073b01c00420032800f307210b20032800f707210e20032800fb07211220032800ff07211520032800830821172003280087082113200328008b08211620032d008f082125200320032d00c2043a009208200320032f01c0043b019008200320032800c8053602b0082003200341cb056a2800003600b308200320032d0092083a00f207200320032f0190083b01f007200320032802b0083602c005200320032800b3083600c30520021016200320032d00f2073a00b208200320032f01f0073b01b008200320032802c0053602b805200320032800c3053600bb052006ad221c422086201c84211c201d422088a72126201da72102410021060b200320032d00b2083a009207200320032f01b0083b019007200320032802b8053602b005200320032800bb053600b30502402006450d0041c7dec2002104200d0d020c030b20034198066a201c370300200341f0056a41206a200a3602002003418c066a2008360200200341a2066a20032d0092073a0000200341bf066a20253a0000200341bb066a2016360000200341b7066a2013360000200341b3066a2017360000200341af066a2015360000200341ab066a2012360000200341a7066a200e360000200341a3066a200b360000200320043602940620032009360288062003202137038006200320233703f805200320263602f405200320023602f005200320032f0190073b01a006200320073a00c006200341c4066a20032800b305360000200320032802b0053600c106200341b0086a41186a20034198036a41186a290300370300200341b0086a41106a20034198036a41106a290300370300200341b0086a41086a20034198036a41086a29030037030020032003290398033703b008201ca721020240200341a0066a200341b0086a412010f802450d0002402008450d002009101620034198066a28020021020b02402002450d0020034194066a28020010160b41a1dec200210441262102200d0d020c030b024020054201520d0020034180066a201b3703000b02400240200c450d0002402002450d00200410160b2003419c066a201436020020034198066a200f36020020034194066a200c360200410121020c010b410021020b0240201141ff01714102460d00200341c0066a20114101713a00000b200341b0086a200341f0056a41d80010f6021a20034188056a200341b0086a109901200341ba086a20034188056a41086a290300370100200341c2086a20034188056a41106a290300370100200341ca086a20034188056a41186a290300370100200341d2086a200329039803370100200341da086a20034198036a41086a290300370100200341e2086a20034198036a41106a290300370100200341ea086a20034198036a41186a2903003701002003418f083b01b00820032003290388053701b208200341b0086a105a0240200d450d002010450d00200d10160b41002104200f450d1c200c452002720d1c0b200c10160c1b0b2010450d00200d10160b0240200c450d00200f450d00200c1016200221060c1b0b200221060c1a0b2008450d010b2007450d00200810160b0240200a450d00200d450d00200a10160b200b450d00200f450d00200b10160b2009417e6a220241044b0d09024020020e050006040501000b4100450d060c090b2010450d010b2017450d00201010160b02402011450d002012450d00201110160b2014450d062015450d06201410160c060b4100450d020c050b02402008450d002007450d00200810160b0240200a450d00200d450d00200a10160b200b450d04200f0d030c040b41000d030b2007450d020b200810160c010b200b10160b4100211141012107410121094101210a410121084101210b4101210c4101210d410121100c2b0b20032802cc0810160b200341dc086a280200450d0020032802d80810160b4100210b41012107410121094101210a410121080c240b2003200b36029c032003200636029803200b21090b200620046a200a200710f6021a200341f0036a41102006200420076a100102402009450d00200610160b2002101602402008450d00200a10160b200341b9086a200341f8056a290300370000200341c1086a20034180066a290300370000200341c9086a20034188066a2903003700002003410a3a00b008200320032903f0053700b108200341b0086a105a4100211041012107410121094101210a410121084101210b4101210c4101210d410121114101210f41012114410021040c280b410021040b0c0a0b200320073602b408200320023602b008200721040b200220066a200b200910f6021a200341f0066a41102002200620096a10012004450d002002101641002104200a0d010c020b41002104200a450d010b200b10160b0b4100211441012107410121094101210a410121084101210b4101210c4101210d41012110410121114101210f0c200b200341f0056a10930141a7e6c2002104412821060b41012109410021070c150b200241106a410028009e9643360000200241086a410029009696433700002002410029008e96433700000240024002400240024020022006413410152202450d00200220032903e0043700142002412c6a200341f8046a290300370000200241246a200341e0046a41106a2903003700002002411c6a200341e0046a41086a290300370000200341f0036a41086a22064200370300200342003703f00320024134200341f0036a1002200341f0066a41086a2006290300370300200320032903f0033703f006024002400240200341f0066a411041acf1c300410041001000417f460d00200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002206417f460d022006410f4d0d02200341b8086a290300212120032903b00821220c010b42002122420021210b20021016200341f0036a41086a22024200370300200342003703f0030240024002400240202220218422194200510d0041b1c6c3004114200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d02200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d062002410f4d0d06200341b8086a29030021270c010b419dc6c3004114200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d01200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d062002410f4d0d06200341b8086a29030021270b20032903b00821280c010b42002128420021270b0240201b20287c2229201b542202200520277c2002ad7c222320055420232005511b450d0041aec7c3002104412821060c080b0240201c20297d222a201c56201d20237d201c202954ad7d221c201d56201c201d511b450d004191c7c3002104411d21060c080b20194200520d05200341f0036a41086a22024200370300200342003703f00341bd95c300411b200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d05200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d042002410f4d0d0420032903b008201b56200341b8086a290300221d200556201d2005511b450d0541f2c6c3002104411f21060c070b41b6e7c20041331029000b413441011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200341b0016a20034190086a4102202a201c10a301024020032802b0012204450d0020032802b40121060c020b02402022201b7c22232022542202202120057c2002ad7c221d202154201d2021511b450d0041c5c6c3002104412d21060c020b02400240024020034190086a200341e0046a412010f802450d0020034190086a202a201c108601411410132202450d01200241106a410028009e9643360000200241086a410029009696433700002002410029008e964337000020024114413410152202450d02200220032903e0043700142002412c6a200341e0046a41186a2206290300370000200241246a200341e0046a41106a2903003700002002411c6a200341e0046a41086a290300370000200341f0036a41086a22044200370300200342003703f00320024134200341f0036a100220034180046a41086a2004290300370300200320032903f0033703800420034180046a411041acf1c30041004100100021042002101602402004417f470d00200341e8086a201d370300200341e0086a2023370300200341b0086a41086a41003a0000200341b9086a20032903e004370000200341c1086a200341e0046a41086a290300370000200341c9086a200341f0046a290300370000200341d1086a2006290300370000200341023a00b008200341b0086a105a0b200341e0046a2023201d108601200320273703b808200320283703b008200341b0086a105e200341b0086a41086a41023a0000200341b9086a200329039008370000200341c1086a20034190086a41086a290300370000200341c9086a20034190086a41106a290300370000200341d1086a20034190086a41186a290300370000200341d9086a20032903e004370000200341e1086a200341e0046a41086a290300370000200341e9086a200341e0046a41106a290300370000200341f1086a2006290300370000200341023a00b00820034198096a202737030020034190096a202837030020034188096a200537030020034180096a201b370300200341b0086a105a0b410021040c020b411441011014000b413441011014000b41012107410121094101210a410121084101210b4101210c4101210d41012110410121114101210f410121140c1c0b410121070c110b41e58dc3002104410d21060b41002110410121072008450d010b200a10160b410121094101210a410121084101210b4101210c4101210d0c140b200341f0036a41086a22024200370300200342003703f00341ee94c300410d200341f0036a1002200341b0086a41086a22072002290300370300200320032903f0033703b008200320053703f005200341b0086a4110200341f0056a41081001200341013a00f00520024200370300200342003703f00341d08ec3004113200341f0036a100220072002290300370300200320032903f0033703b008200341b0086a4110200341f0056a4101100120024200370300200342003703f003419095c3004117200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f00602400240024002400240024002400240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d0220032903b008211b0c010b4203211b0b200341f0036a41086a22024200370300200342003703f00341c184c0004112200341f0036a100220034180046a41086a220d2002290300370300200320032903f00337038004410121070240024020034180046a411041acf1c300410041001000417f460d00200342003703b00820034180046a4110200341b0086a41084100100041016a41084d0d0320032903b008211c4100210f0c010b4101210f0b20024200370300200342003703f00341c184c0004112200341f0036a1002200d2002290300370300200320032903f00337038004200320053703b00820034180046a4110200341b0086a41081001201c500d12200f0d12427f201b201b7c221d201d201b541b221b4200510d022005201b802205201c201b80221b580d032005201b42017c221c510d124200211d200341f0036a41086a22024200370300200342003703f00341d0c9c0004112200341f0036a100220034180046a41086a2002290300370300200320032903f003370380040240024020034180046a411041acf1c300410041001000417f460d00200342103702f405200320034180046a3602f005200341b0086a200341f0056a101120032802b0082224450d0620032902b408211d0c010b410121240b2005201b427f857ca7222b450d11201d422088a7222c202b4d0d11201ca7212d200341d9086a212e4109212f200341b0086a41096a21304104211520034198036a410472213141282132200341f0056a41286a21334100210f410521344118210e411021104108210d4101211741202111200341f0056a41206a213541242136200341f0056a41246a213742002105411521384196e9c100213941acf1c300213a417f213b4112213c4132213d412a213e4122213f411a21404119214141bde9c1002142410d2143419be8c20021444117214541d6e9c1002146423021214220211b4130212642ffffffff0f21274201211c411421474190eac1002148428094ebdc0321294289f48bdcc400212841ff00214941a4eac100214a41cdc7c000214b427f2123200341e8086a214c412c214d200341b0086a412c6a214e4102214f42102122415821504154212541742116416c215141642152415c2153417c2113410321544150215541072156200341fb076a2157200341ff076a215820034183086a21592003418b086a215a2003418f086a215b4169215c4173215d4171215e4111215f410c216041782161410021620c050b41b6e7c20041331029000b41b6e7c20041331029000b41ec87c0001038000b418489c0001038000b41b6e7c20041331029000b410021020b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b20034190076a200e6a20242062202d6a202c702034746a2202200e6a29000037030020034190076a20106a200220106a29000037030020034190076a200d6a2002200d6a2900003703002003200229000037039007200341f0056a20034190076a10a40102402035280200229101450d0020034198036a200d6a2033200d6a29030037030020034198036a20106a203320106a29030037030020034198036a200e6a2033200e6a29030037030020034198036a20116a203320116a28020036020020032033290300370398032037280200219001200341b0076a200e6a22662031200e6a290000370300200341b0076a20106a2267203120106a290000370300200341b0076a200d6a22682031200d6a290000370300200320312900003703b007200341f0036a200d6a22692005370300200320053703f00320392038200341f0036a1002200341f0066a200d6a226a2069290300370300200320032903f0033703f0060240024002400240200341f0066a2010203a200f200f1000203b470d002017200f200341b0076a10420d020c010b2003202237028c052003200341f0066a36028805200341b0086a20034188056a101120032802b0082202450d1020032802b40821632002200341b0086a200d6a280200200341b0076a1042216e02402063450d00200210160b206e0d010b203c10132202450d10200220106a200f2f00bbe94122633b00002002200d6a200f2900b3e94122643700002002200f2900abe94122653700002002203c203d10152202450d11200220032903b0073700122002203e6a20662903003700002002203f6a2067290300370000200220406a206829030037000020692005370300200320053703f0032002203d200341f0036a1002206a2069290300370300200320032903f0033703f00602400240200341f0066a2010203a200f200f1000203b460d002003200f3602b008200341f0066a2010200341b0086a2015200f100020176a20154d0d0d20032802b008216b20021016203c101322020d010c140b4100216b20021016203c10132202450d130b200220106a20633b00002002200d6a2064370000200220653700002002203c203d10152202450d13200220032903b0073700122002203e6a20662903003700002002203f6a2067290300370000200220406a206829030037000020692005370300200320053703f0032002203d200341f0036a1002206a2069290300370300200320032903f0033703f0062003206b20176a226c3602b008200341f0066a2010200341b0086a201510012002101620692005370300200320053703f00320422041200341f0036a1002206a2069290300370300200320032903f0033703f00602400240200341f0066a2010203a200f200f1000203b460d002003200f3602b008200341f0066a2010200341b0086a2015200f100020176a20154d0d0e20032802b008216d0c010b4100216d0b20034180046a200e6a2202206629030037030020034180046a20106a2263206729030037030020034180046a200d6a226e2068290300370300200320032903b007370380044200216f20694200370300200342003703f00320442043200341f0036a1002206a2069290300370300200320032903f0033703f0060240200341f0066a2010203a200f200f1000203b460d00200320053703b008200341f0066a2010200341b0086a200d200f100020176a200d4d0d0b20032903b008216f0b200341a0046a200e6a22702002290300370300200341a0046a20106a22712063290300370300200341a0046a200d6a2272206e29030037030020032003290380043703a00420692005370300200320053703f00320462045200341f0036a1002206a2069290300370300200320032903f0033703f006024002400240024002400240200341f0066a2010203a200f200f1000203b460d00200320223702b4082003200341f0066a3602b008200341a8016a200341b0086a101220032802a801450d0b20032802ac012273ad20217e2264201b88a70d242064a72202203b4c0d242002450d012002101322740d020c1e0b200341c0046a200e6a22022070290300370300200341c0046a20106a2263207129030037030041082174200341c0046a41086a226e200341a0046a41086a290300370300200320032903a0043703c004200341d0076a200e6a2002290300370300200341d0076a20106a2063290300370300200341d0076a41086a206e290300370300200320032903c0043703d00741002175420021760c020b410821740b024002402073450d00200341b0086a200d6a227728020021754117216e4100217820032802b408217920032802b008217a410021022073217b034020034190086a200e6a227c200537030020034190086a20106a227d200537030020034190086a200d6a227e200537030020032005370390082077200f207a207920034190086a20112075100022632063203b461b226320112063201149227f1b20756a2263360200207f0d0a200341f0076a200e6a207c290300370300200341f0076a20106a207d290300370300200341f0076a200d6a207e29030037030020032003290390083703f00720032005370388052077200f207a207920034188056a200d2063100022752075203b461b2275200d2075200d491b20636a2263360200207520564d0d0a20032903880521642003200f360288052077200f207a207920034188056a20152063100022752075203b461b227c2015207c2015491b20636a2275360200207c20544d0d0a200220176a2163200328028805217c200320032d00f2073a00c204200320032f01f0073b01c0042057280000217d2058280000217e2059280000217f200341f0076a20456a280000218001205a280000218101205b2d000021820120032800f30721830120032800f70721840102402002207b470d002078206320632078491b227bad20217e2265201b88a70d262065a7228501200f480d2602402002450d002074206e205c6a208501101522740d010c110b20850110132274450d100b2074206e6a2202205c6a20643703002002205d6a20032d00c2043a00002002205e6a20032f01c0043b01002002205f6a207c360200200220106a2082013a0000200220606a2081013600002002200d6a208001360000200220156a207f3600002002207e360000200220136a207d360000200220616a208401360000200220166a2083013600002078204f6a2178206e20266a216e2063210220632073490d000c020b0b410021634100217b0b2074450d08200341c0046a200e6a22782070290300370300200341c0046a20106a22792071290300370300200341c0046a200d6a227a2072290300370300200320032903a0043703c00402402063ad201b86207bad842276201b88a722752011490d0041302102207541306c21772074ad201b862165420121642074216e03400240206e290300207420026a2263290300580d002063ad201b8620648421652063216e0b2064201c7c21642077200220266a2202470d000b206e450d1a20652027580d1a20034188056a200e6a2263207829030037030020034188056a20106a226e207929030037030020034188056a200d6a2277207a290300370300200320032903c0043703880520752065a722024d0d1d2074200220266c6a2202206f370300200220116a20632903003703002002200e6a206e290300370300200220106a20772903003703002002200329038805370308200220173602280c030b200341d0076a200e6a2078290300370300200341d0076a20106a2079290300370300200341d0076a200d6a207a290300370300200320032903c0043703d0072076a72075470d010b20752017742202207520176a226320632002491bad226420217e2265201b88a70d212065a72202200f480d21024002402075450d002074207520266c2002101522740d010c1b0b200210132274450d1a0b2076201b88a72175206421760b2074207520266c6a2202206f370300200220116a200341d0076a200e6a2903003703002002200e6a200341d0076a20106a290300370300200220106a200341d0076a200d6a290300370300200220032903d007370308200220173602282076202783207520176aad201b868421760b20692005370300200320053703f00320462045200341f0036a1002206a2069290300370300200320032903f0033703f006200341b0086a200d6a2279200f3602002003201c3703b00820032076201b88a722023602880520034188056a200341b0086a1018024002402002450d00200220266c217a2050207928020022026b21752002204d6a210220032802b408216e2074216303400240024002400240206e20756a20326a20114f0d00200220256a227820116a22772078490d26206e2017742278207720772078491b2278200f480d26206e450d0120032802b008206e2078101522770d020c0d0b20032802b00821770c020b207810132277450d0b0b200320783602b408200320773602b0082078216e0b2079200220166a227c360200207720026a227820516a206320116a290000370000207820526a2063200e6a290000370000207820536a206320106a290000370000207820256a2063200d6a290000370000206329030021640240024002400240206e20756a2278200d6a20784f0d00207c200d6a2278207c490d26206e201774227c20782078207c491b2278200f480d26206e450d012077206e2078101522770d020c0e0b206e21780c020b207810132277450d0c0b200320783602b408200320773602b0080b2079200220136a226e360200207720026a20166a2064370000206320326a280200217c0240024002400240207820756a20544b0d00206e20156a227d206e490d262078201774226e207d207d206e491b226e200f480d262078450d0120772078206e101522770d020c0f0b2078216e0c020b206e10132277450d0d0b2003206e3602b408200320773602b0080b206320266a216320792002360200207720026a20136a207c360000207520256a21752002204d6a2102207a20556a227a0d000c020b0b20032802b408216e20032802b00821770b200341f0066a20102077207928020010010240206e450d00207710160b02402076a7450d00207410160b203c10132202450d14200220106a200f2f00d5cc413b00002002200d6a200f2900cdcc413700002002200f2900c5cc413700002002203c203d10152202450d15200220032903b0073700122002203e6a20662903003700002002203f6a2067290300370000200220406a206829030037000020692005370300200320053703f0032002203d200341f0036a1002206a2069290300370300200320032903f0033703f006024002400240200341f0066a2010203a200f200f1000203b460d00200320223702b4082003200341f0066a3602b008200341a0016a200341b0086a101220032802a001450d1120032802a401216320034188016a200341b0086a10a501200328028801450d1120021016410a21022063202f4d0d010c020b20021016410321630b206321020b0240024002400240206c2002206d6a4d0d00200341b0086a200341b0076a10a6012079290300216420032903b00821650240200341b0086a20366a2277280200450d00200341b0086a20116a28020010160b20692005370300200320053703f00320482047200341f0036a1002206a2069290300370300200320032903f0033703f006200341f0066a2010203a200f200f1000203b460d012003200f3602b008200341f0066a2010200341b0086a2015200f100020176a20154d0d1120033502b00821760c020b200341e0046a200e6a2066290300370300200341e0046a20106a2067290300370300200341e0046a200d6a2068290300370300200320032903b0073703e004410121020c020b42c0843d21760b200341c8006a206520052076200510fa02200341d8006a2028200329034820298020032903502005521b2005200210fb02200341d8006a200d6a29030021762003290358216f200341b0086a200341b0076a10a601200341e8006a200341b0076a20032903b0082286012065206f200220494b2065206f54206420765420642076511b7222021b2287012086012087015420792903002288012064207620021b22890154208801208901511b22021b226f200341b0086a20106a290300228a01208a01206f56200341b0086a200e6a290300228b0120880120890120021b227656208b012076511b22021b228c012076208b0120021b228d0110a101200341e8006a200d6a29030021642003290368216502402003290378228e01208c017d228f01206f7c226f200341e8006a200e6a290300208d017d208e01208c0154ad7d20767c206f208f0154ad7c228c0184500d00208601208a017d228d01208801208b017d208601208a0154ad7d22880184500d00200341b0086a20326a2802002263450d00200341b0086a20116a2802002202206320266c6a216e0340200341186a20022903002002200d6a290300206f208c0110fa02200341086a2003290318200341186a200d6a290300208d0120880110f902200341286a200220106a2003290308200341086a200d6a29030010a10120232064200341286a200d6a2903007c206520032903287c22762065542263ad7c22652063206520645420652064511b22631b21642023207620631b2165200220266a2202206e470d000b0b2003206537038805200320643703900520034188056a105e02402077280200450d00200341b0086a20116a28020010160b200341b0076a10a70120692005370300200320053703f003204a2038200341f0036a1002206a2069290300370300200320032903f0033703f006200341f0066a2010203a200f10012003200f3a00b00820692005370300200320053703f003204b2041200341f0036a1002206a2069290300370300200320032903f0033703f006200341f0066a2010200341b0086a20171001200341e0046a200e6a2066290300370300200341e0046a20106a2067290300370300200341e0046a200d6a2068290300370300200320032903b0073703e004410221020b204c208901370300200341b0086a20266a208701370300207920023a0000203020032903e004370000202e20032f01c0053b0000204e206b3602002030200d6a200341e0046a200d6a290300370000203020106a200341e0046a20106a2903003700002030200e6a200341e0046a200e6a290300370000202e204f6a200341c0056a204f6a2d00003a0000200320153a00b008200341b0086a105a2090010d010c020b209001450d010b20910110160b206220176a2262202b470d180c250b209b012102024002400340200220126a280200219b01200220096a28020021632002200a6a290300216420022903002165200341e0046a20086a226e20022094016a290200370300200341e0046a200b6a227720022095016a290200370300200341e0046a20096a227520022096016a290200370300200341e0046a200a6a2278200220086a29020037030020032002200b6a2902003703e0042063450d02200341b0086a20126a209b01360200200341b0086a20096a227a2063360200200c20032903e004370200200c200a6a22792078290300370200200c20096a22782075290300370200200c200b6a22752077290300370200200c20086a2277206e290300370200200320643703b808200320653703b00802400240209e0120034190086a200810f802450d0020034198036a20086a207729020037030020034198036a200b6a207529020037030020034198036a20096a207829020037030020034198036a200a6a20792902003703002003200c29020037039803209b01219701206521762064216f0c010b0240209b01450d00206310160b410021630b20034188056a20086a229b0120034198036a20086a29030037030020034188056a200b6a226e20034198036a200b6a29030037030020034188056a20096a227720034198036a20096a29030037030020034188056a200a6a227520034198036a200a6a290300370300200320032903980337038805024020630d0020022093016a2202209201470d010c020b0b200341f0056a20086a2278209b01290300370300200341f0056a200b6a229b01206e290300370300200341f0056a20096a226e2077290300370300200341f0056a200a6a2277207529030037030020032003290388053703f005200341b0086a20086a22752078290300370300200c209b01290300370300207a206e290300370300200341b0086a200a6a22782077290300370300200320032903f0053703b0080240209801209a01470d00209a01209f016a229801209a01490d1e209a01209f0174229b01209801209801209b01491b229801ad202a862264201988a70d1e2064a7229b0120a001480d1e0240209a01450d00209901209a01209c0174209b0110152299010d010c1a0b209b011013229901450d190b20022093016a219b01209901209a01209c01746a226e206f370308206e2076370300206e2063360210206e20126a209701360200206e2094016a2075290300370200206e2095016a200c290300370200206e2096016a207a290300370200206e20086a2078290300370200206e200b6a20032903b008370200209a01209f016a219a01209d012002470d1a0b2092012202209201470d1d0c1e0b200241c0006a2202209201460d1d0c1c0b207b450d00207410160b41b6e7c20041331029000b207841011014000b207841011014000b206e41011014000b20850141081014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411241011014000b413241011014000b411241011014000b413241011014000b411241011014000b413241011014000b41ede9c10041131029000b200241081014000b200241081014000b4180eac1002002207510a801000b209b0141081014000b410021020c010b410121020c000b0b100f000b1010000b201e20204106746a210b20034188056a41086a21040340200241146a2802002107200241106a280200210620034188056a41206a2208200241386a29020037030020034188056a41186a2209200241306a29020037030020034188056a41106a220a200241286a2902003703002004200241206a2902003703002003200241186a290200370388052006450d01200241c0006a2102200341e0046a41206a2008290300370300200341e0046a41186a2009290300370300200341e0046a41106a200a290300370300200341e0046a41086a200429030037030020032003290388053703e00402402007450d00200610160b200b2002470d000b0b0240201f450d00201e10160b20990121020b20034180046a41086a2206420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341003602b808200342013703b0082002209a01200341b0086a10980120032802b4082106200341f0036a411020032802b008220420032802b808100102402006450d00200410160b0240209a01450d00209a014106742106200241106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b41002104209801450d0020990110160b411a2106410021020b20184101470d020b20020d01201a450d010b201410160b4100210d41012107410121094101210a410121084101210b4101210c0c070b201da7450d00202410160b410121090b4101210a0b410121080b4101210b0b4101210c0b4101210d0b410121100b410121110b4101210f0b410121140b02402001280200417f6a220241104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e110015151506051504020307080a15150901000b2007450d14200141086a1093010c140b2014450d13200141086a2d0000220241064b0d0f024020020e0714141414001112140b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d13200141d0006a280200450d13200210160c130b200b450d12200141086a2d00004101470d120240200141106a280200450d002001410c6a28020010160b02402001411c6a280200450d00200141186a28020010160b200141286a280200450d12200141246a28020010160c120b200c450d11200141086a2d00004103470d11200141d0006a280200450d11200141cc006a28020010160c110b2008450d10200141086a280200450d10200128020410160c100b200a450d0f200141046a10a9010c0f0b2009450d0e200141086a2d00002202410e4b0d0d20024106470d0e200141106a280200450d0e2001410c6a28020010160c0e0b200d450d0d200141086a2d00004101470d0d200141106a280200450d0d2001410c6a28020010160c0d0b2010450d0c200141086a280200450d0c200128020410160c0c0b200f450d0b200141086a28020022024102460d0120024101470d0b200141106a280200450d0b2001410c6a28020010160c0b0b2011450d0a200141086a2d0000417f6a220241054b0d0a024020020e06000503040206000b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d0a200141286a280200450d0a200210160c0a0b200141106a280200450d092001410c6a28020010160c090b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d08200141286a280200450d08200210160c080b200141106a280200450d072001410c6a28020010160c070b200141106a280200450d062001410c6a28020010160c060b200141106a280200450d052001410c6a28020010160c050b02402001412c6a2802002202450d00200141306a280200450d00200210160b0240200141386a2802002202450d002001413c6a280200450d00200210160b200141c4006a2802002202450d04200141c8006a280200450d04200210160c040b200141106a280200450d032001410c6a28020010160c030b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d02200141d0006a280200450d02200210160c020b200141106a280200450d012001410c6a28020010160c010b200141106a280200450d002001410c6a28020010160b2000200636020420002004360200200341b0096a24000b976d05027f017e047f0a7e0c7f230041f0036b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441074b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020040e080005020301060704000b200141086a2903002105200241086a2800002101200241046a280000210420022d00002106200341dc026a41026a2207200241036a2d00003a0000200341e0026a41086a2208200241146a290000370300200341e0026a410d6a2209200241196a290000370000200320022f00013b01dc0220032002410c6a2900003703e0024101210220064101470d0a200341c0016a41026a20072d00003a0000200341e8016a41086a2008290300370300200341e8016a410d6a2009290000370000200320032f01dc023b01c001200320032903e0023703e801410021020c0b0b200341c0036a41086a22042001410c6a2802003602002003200141046a2902003703c00320022d00000d06200341e8016a41086a2004280200360200200320032903c0033703e801200341e8016a10b801410021040c590b20034188016a200141196a290000370300200341f0006a41106a200141116a290000370300200341f0006a41086a200141096a29000037030020032001290001370370200241086a2800002106200241046a280000210420022d00002101200341dc026a41026a2207200241036a2d00003a0000200341e0026a41086a2208200241146a290000370300200341e0026a410d6a2209200241196a290000370000200320022f00013b01dc0220032002410c6a2900003703e0024101210220014101470d06200341c0036a41026a20072d00003a0000200341e8016a41086a2008290300370300200341e8016a410d6a2009290000370000200320032f01dc023b01c003200320032903e0023703e801410021020c070b4128210641a7e6c200210420022d00000d57200141d8006a2903002105200141d0006a290300210a200141206a290300210b200141186a290300210c200141106a290300210d200141086a290300210e200141e4006a2802002104200141e0006a2802002106200141c8006a290300210f200141c0006a2903002110200141386a2903002111200141306a2903002112200141286a2903002113411110132202450d3b200241106a41002d00c28a413a0000200241086a41002900ba8a41370000200241002900b28a4137000020024111412210152201450d3c200141003a001120034190036a41086a2202420037030020034200370390032001411220034190036a1002200341e0026a41086a200229030037030020032003290390033703e002411010132202450d3d2002200e3700002002200d37000820024110412010152202450d3e20022004360014200220063600102002412041c00010152202450d3f2002200c370018200220113700382002201237003020022013370028200241206a200b370000200241c00041800110152202450d402002200a3700502002200f37004820022010370040200241d8006a2005370000200341e0026a4110200241e00010012002101620011016410021040c570b200341f0006a41186a2204200141196a290000370300200341f0006a41106a2206200141116a290000370300200341f0006a41086a2207200141096a2900003703002003200129000137037020022d00000d03200341a0016a41186a2004290300370300200341a0016a41106a2006290300370300200341a0016a41086a2007290300370300200320032903703703a001200341e8016a200341a0016a109101200341e8016a41086a290300210520032802e8014101470d0e20032802ec0121042005a721060c560b200341b8016a200141196a290000370300200341a0016a41106a200141116a290000370300200341a0016a41086a200141096a290000370300200320012900013703a001200241086a2800002106200241046a280000210420022d00002101200341dc026a41026a2207200241036a2d00003a0000200341e0026a41086a2208200241146a290000370300200341e0026a410d6a2209200241196a290000370000200320022f00013b01dc0220032002410c6a2900003703e0024101210220014101470d07200341c0036a41026a20072d00003a0000200341e8016a41086a2008290300370300200341e8016a410d6a2009290000370000200320032f01dc023b01c003200320032903e0023703e801410021020c080b20022d00000d0120034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d13200342103702ec012003200341e0026a3602e801200341e0006a200341e8016a10122003280260450d2e20032802642206450d12200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2d20032d0090030d2e200141016a22012006490d000b200341f0016a200236020020010d520c140b20022d0000450d080b41a7e6c2002104412821060c520b412a210641cfe6c20021040b20034194016a41026a200341c0036a41026a2d00003a000020034190036a41086a200341e8016a41086a29030037030020034190036a41106a200341e8016a41106a290300370300200320032f01c0033b019401200320032903e8013703900320020d50200341b3016a20034190036a41086a290300370000200341b8016a2003419d036a290000370000200320032f0194013b01a001200320063600a701200320043600a30120032003290390033700ab01200320034196016a2d00003a00a201200341e8016a200341a0016a109101200341e8016a41086a290300210520032802e8014101470d0620032802ec0121042005a721060c500b41cfe6c2002104412a21010b20034194016a41026a200341c0016a41026a2d00003a000020034190036a41086a200341e8016a41086a29030037030020034190036a41106a200341e8016a41106a290300370300200320032f01c0013b019401200320032903e801370390032002450d02200121060c4e0b41cfe6c2002104412a21060b20034194016a41026a200341c0036a41026a2d00003a000020034190036a41086a200341e8016a41086a29030037030020034190036a41106a200341e8016a41106a290300370300200320032f01c0033b019401200320032903e8013703900320020d4c200341d3016a20034190036a41086a2202290300370000200341c0016a41186a2003419d036a290000370000200320032f0194013b01c001200320063600c701200320043600c30120032003290390033700cb01200320034196016a2d00003a00c201200341e8016a200341c0016a109101200341e8016a41086a290300210520032802e8014101470d0320032802ec0121042005a721060c4c0b41132106200341c0036a41136a20034198036a290300370000200341d8036a2003419d036a290000370000200320032f0194013b01c003200320013600c703200320043600c30320032003290390033700cb03200320034196016a2d00003a00c203200341e8016a200341c0036a10910141ff87c100210420032802e8014101470d4b411710132202450d352002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d36200220032903c0033700172002412f6a200341d8036a290300370000200241276a200341c0036a41106a2903003700002002411f6a200341c0036a41086a29030037000020034190036a41086a2201420037030020034200370390032002413720034190036a1002200341e8016a41086a200129030037030020032003290390033703e801200341e8016a411041acf1c3004100410010002101200210162001417f460d080c4a0b20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e0020240200341e0026a411041acf1c300410041001000417f460d00200342103702ec012003200341e0026a3602e801200341e8006a200341e8016a10122003280268450d28200328026c2206450d00200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2720032d0090030d28200141016a22012006490d000b200341f0016a20023602000b41002104200341003602f00120034281808080703703e801200341e8016a10b8010c4a0b200341e8016a200341f0006a108c0120032903e8014201520d02200341c0036a41086a2202200341e8016a41186a290300370300200341c0036a41106a2201200341e8016a41206a290300370300200341c0036a41186a220420034190026a290300370300200341c0036a41206a220620034198026a2903003703002003200341e8016a41106a2903003703c00320032903f0012005520d0b200341e0026a41206a22072006290300370300200341e0026a41186a22062004290300370300200341e0026a41106a22042001290300370300200341e0026a41086a22012002290300370300200320032903c0033703e002200341c0016a41206a22022007290300370300200341c0016a41186a22072006290300370300200341c0016a41106a22062004290300370300200341c0016a41086a22042001290300370300200320032903e0023703c00120034190036a41206a200229030037030020034190036a41186a200729030037030020034190036a41106a200629030037030020034190036a41086a2004290300370300200320032903c00137039003200341e8016a10b90120032903e8014201520d19200341a0026a290300210a200341e8016a41186a200341b0036a2202290300370300200341e8016a41106a20034190036a41186a2201290300370300200341f0016a20034190036a41106a220429030037030020032003290398033703e801200341e8016a2005200a10ba01200341f2016a2004290300370100200341fa016a200129030037010020034182026a20022903003701002003418d043b01e80120032003290398033701ea01200341e8016a105a410021040c490b20024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341e0026a411041acf1c300410041001000417f460d04200342103702c4032003200341e0026a3602c003200341e8016a200341c0036a102520032802e8012209450d372009200341e8016a41086a28020041306c22016a210420032802ec012114200921020240200141c001490d00200341086a2108200341386a2107200341e8006a210620034198016a21012009210203400240024020012002460d00200241086a200341a0016a412010f8020d010b20022903002005510d0c0b0240024020062002460d00200241386a200341a0016a412010f8020d010b200241306a2903002005510d0c0b0240024020072002460d00200241e8006a200341a0016a412010f8020d010b200241e0006a2903002005510d0c0b0240024020082002460d0020024198016a200341a0016a412010f8020d010b20024190016a2903002005510d0c0b2004200241c0016a22026b41bf014b0d000b0b024020022004460d00034002400240200241086a2201200341a0016a460d002001200341a0016a412010f8020d010b20022903002005510d0c0b200141286a22022004470d000b0b419589c1002104411d21062014450d48200910160c480b200341e8016a200341a0016a108c0120032903e8014201520d01200341c0036a41086a2202200341e8016a41186a290300370300200341c0036a41106a2201200341e8016a41206a290300370300200341c0036a41186a220420034190026a290300370300200341c0036a41206a220620034198026a2903003703002003200341e8016a41106a2903003703c00320032903f0012005520d0b200341e0026a41206a22072006290300370300200341e0026a41186a22062004290300370300200341e0026a41106a22042001290300370300200341e0026a41086a22012002290300370300200320032903c0033703e002200341c0016a41206a22022007290300370300200341c0016a41186a22072006290300370300200341c0016a41106a22062004290300370300200341c0016a41086a22042001290300370300200320032903e0023703c00120034190036a41206a200229030037030020034190036a41186a200729030037030020034190036a41106a200629030037030020034190036a41086a2004290300370300200320032903c00137039003200341e8016a10b90120032903e8014201520d17200341a0026a290300210a200341e8016a41186a200341b0036a290300370300200341e8016a41106a20034190036a41186a290300370300200341f0016a20034190036a41106a29030037030020032003290398033703e801200341e8016a2005200a10ba01410021040c470b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010c010b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010b418d8ac1002104410c21060c440b419589c1002104411d21060c430b20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d0d200342103702ec012003200341e0026a3602e801200341286a200341e8016a10122003280228450d25200328022c2206450d0c200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2420032d0090030d25200141016a22012006490d000b200341f0016a200236020020010d0e0c130b410021020b20020d3e0b20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341e0026a411041acf1c300410041001000417f460d02200342103702ec012003200341e0026a3602e801200341d8006a200341e8016a10122003280258450d1f200328025c2206450d06200341f0016a28020021024200210520032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d1e20032d0090030d1f20054280808080107c2105200141016a22012006490d000b200341f0016a20023602000c070b02402014450d00200910160b200341e8016a200341a0016a10910120032802e8014101470d04411710132202450d302002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d31200220032903a0013700172002412f6a200341b8016a290300370000200241276a200341a0016a41106a2903003700002002411f6a200341a0016a41086a29030037000020034190036a41086a2201420037030020034200370390032002413720034190036a1002200341e8016a41086a200129030037030020032003290390033703e801200341e8016a411041acf1c3004100410010002101200210162001417f470d3d20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d0c200342103702ec012003200341e0026a3602e801200341d0006a200341e8016a10122003280250450d2c20032802542206450d0b200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2b20032d0090030d2c200141016a22012006490d000b200341f0016a200236020020010d0d0c0f0b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010c020b200341003602f00120034281808080703703e801410121020c050b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010b41998ac1002104411921060c3a0b41ff87c1002104411321060c390b420021050b200320052006ad843702ec01200341013602e8012005422088a72202417f460d2e200241016a21020b200341f0016a2002360200200341e8016a10b801410021040c360b410021020b2002450d050b200341e8016a10b90120032903e8014201520d03024002400240200341c0036a200341b8026a290300220a200341c0026a290300220b10a001450d00200341086a200341c0036a200a200b10a101200341e8016a41186a200341086a41186a290300370300200320032903183703f801410821012003200341086a41086a2903003703f001200320032903083703e801200341e8016a105e20034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d0120034210370294032003200341e0026a36029003200341e8016a20034190036a102520032802e8012201450d2a200320032902ec01220a3702c401200320013602c001200a422088a7220641016a2107200aa721020c020b41a688c1002104412121060c350b200341003602c801200342083703c00141012107410021060b20034190036a41086a220442003703002003420037039003419be8c200410d20034190036a1002200341e0026a41086a2208200429030037030020032003290390033703e0024200210a0240200341e0026a411041acf1c300410041001000417f460d00200342003703e801200341e0026a4110200341e8016a41084100100041016a41084d0d2420032903e801210a0b20044200370300200342003703900341ff88c100411620034190036a10022008200429030037030020032003290390033703e00202400240200341e0026a411041acf1c300410041001000417f460d00200342003703e801200341e0026a4110200341e8016a41084100100041016a41084d0d2620032903e801210b0c010b42ac02210b0b200341e8016a41186a2208200341c0036a41186a290300370300200341e8016a41106a2209200341c0036a41106a290300370300200341e8016a41086a2214200341c0036a41086a290300370300200320032903c0033703e801024020022006470d00200241016a22042002490d2b20024101742215200420042015491b2204ad42307e220c422088a70d2b200ca722154100480d2b2002450d062001200241306c201510152201450d070c300b200221040c300b410021020b2002450d020b200341e8016a10b90120032903e8014201520d00200341fc016a350200210b20032902f401210a20032802f001210120032802cc022102200341f0006a109a01200328027820024f0d04200341c0006a200341a0016a108e012003290340200a4220862001ad845a200341c0006a41086a290300220c200b422086200a42208884220a5a200c200a511b0d0641c189c1002104411b210620032802740d050c300b41d488c1002104411621060c2f0b41c788c1002104410d21060c2e0b2015101322010d290b201541081014000b41b289c1002104410f21062003280274450d2b0b200328027010160c2a0b200341c0036a109a01200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a290300370300200341e8016a41086a200341a0016a41086a290300370300200320032903a0013703e80102400240024020032802c403221620032802c8032202470d00200241016a22012002490d2320024101742204200120012004491b2216ad420586220a422088a70d23200aa722014100480d232002450d0120032802c0032002410574200110152217450d020c210b20032802c00321170c210b2001101322170d1f0b200141011014000b200341fc016a4101360200200341023602c403200341c8d7c3003602c003200342013702ec01200341d0d7c3003602e8012003200341c0036a3602f801200341e8016a41c48ac1001046000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b411141011014000b412241011014000b411041011014000b412041011014000b41c00041011014000b41800141011014000b411741011014000b413741011014000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411741011014000b413741011014000b41b6e7c20041331029000b200320163602c403200320173602c0030b200341c0036a41086a200241016a2204360200201720024105746a220120032903e801370000200141186a200341e8016a41186a290300370000200141106a200341e8016a41106a290300370000200141086a200341e8016a41086a2903003700000240024002400240411710132201450d002001410f6a41002900e3f740370000200141086a41002900dcf740370000200141002900d4f74037000020014117412e10152215450d01201541003a001720034190036a41086a2201420037030020034200370390032015411820034190036a1002200341e0026a41086a200129030037030020032003290390033703e002200341003602f001200342013703e801200320043602900320034190036a200341e8016a10180240024002402004450d00200241057441206a21084100200341e8016a41086a28020022016b210620032802e801210920032802ec0121072017210203400240200720066a411f4b0d00200141206a22042001490d0920074101742214200420042014491b22044100480d09024002402007450d00200920072004101522090d010c060b200410132209450d050b200421070b200920016a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200641606a2106200141206a2101200241206a2102200841606a22080d000b200341f0016a2001360200200320073602ec01200320093602e8010c010b200341e8016a41086a280200210120032802ec01210720032802e80121090b200341e0026a411020092001100102402007450d00200910160b2015101602402016450d00201710160b200341c0036a200510bb01200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a290300370300200341e8016a41086a200341a0016a41086a290300370300200320032903a0013703e80102400240024020032802c403221620032802c8032201470d00200141016a22022001490d0820014101742204200220022004491b2216ad420586220a422088a70d08200aa722024100480d082001450d0120032802c0032001410574200210152217450d020c060b20032802c00321170c060b2002101322170d040b200241011014000b200441011014000b411741011014000b412e41011014000b200320163602c403200320173602c0030b200341c0036a41086a200141016a2204360200201720014105746a220220032903e801370000200241186a200341e8016a41186a290300370000200241106a200341e8016a41106a290300370000200241086a200341e8016a41086a2903003700000240024002400240024002400240024002400240411b10132202450d00200241176a41002800f38941360000200241106a41002900ec8941370000200241086a41002900e48941370000200241002900dc89413700002002411b413610152215450d012015200537001b20034190036a41086a2202420037030020034200370390032015412320034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341003602f001200342013703e801200320043602900320034190036a200341e8016a101802400240024002402004450d00200141057441206a21084100200341e8016a41086a28020022016b210620032802e801210920032802ec0121072017210203400240200720066a411f4b0d00200141206a22042001490d1020074101742214200420042014491b22044100480d10024002402007450d00200920072004101522090d010c060b200410132209450d050b200421070b200920016a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200641606a2106200141206a2101200241206a2102200841606a22080d000b200341f0016a2001360200200320073602ec01200320093602e8010c010b200341e8016a41086a280200210120032802ec01210720032802e80121090b200341e0026a411020092001100102402007450d00200910160b2015101602402016450d00201710160b200341306a200341a0016a108e01200342f2deb1abf6eb9cbaeb003703980120034198016a200341a0016a2003290330200341306a41086a290300427f10bc01200341e8016a41186a2202200341a0016a41186a290300370300200341e8016a41106a2201200341a0016a41106a290300370300200341e8016a41086a2204200341a0016a41086a290300370300200320032903a0013703e8014200210a20034190036a41086a220642003703002003420037039003419be8c200410d20034190036a1002200341e0026a41086a200629030037030020032003290390033703e0020240200341e0026a411041acf1c300410041001000417f460d00200342003703c003200341e0026a4110200341c0036a41084100100041016a41084d0d0220032903c003210a0b200341c0036a41186a2002290300370300200341c0036a41106a2001290300370300200341c0036a41086a2004290300370300200320032903e8013703c003411710132202450d042002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d05200220032903a0013700172002412f6a200341b8016a290300370000200241276a200341a0016a41106a2903003700002002411f6a200341a0016a41086a29030037000020034190036a41086a2201420037030020034200370390032002413720034190036a1002200341e0026a41086a200129030037030020032003290390033703e002410810132201450d0620012005370000200341003a00900320014108411010152201450d07200120032d0090033a000820014110412910152201450d08200120032903c003370009200141216a200341d8036a290300370000200141196a200341c0036a41106a290300370000200141116a200341c0036a41086a2903003700002001412941d20010152201450d092001200a370029200341e0026a4110200141311001200110162002101620034190036a41086a22024200370300200342003703900341f789c100411620034190036a1002200341e0026a41086a200229030037030020032003290390033703e0024100210202400240200341e0026a411041acf1c300410041001000417f460d00200342103702c4032003200341e0026a3602c003200341e8016a200341c0036a101120032802e8012215450d0c200341e8016a41086a2204280200210120032802ec012102200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a2903003703002004200341a0016a41086a290300370300200320032903a0013703e8012002211720012002460d010c0d0b200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a290300370300200341e8016a41086a200341a0016a41086a290300370300200320032903a0013703e801410121150b200241016a22012002490d0c20024101742204200120012004491b2217ad4205862205422088a70d0c2005a722044100480d0c024002402002450d002002210120152002410574200410152215450d010c0d0b200221012004101322150d0c0b200441011014000b200441011014000b41b6e7c20041331029000b411b41011014000b413641011014000b411741011014000b413741011014000b410841011014000b411041011014000b412941011014000b41d20041011014000b41b6e7c20041331029000b2015200141057422066a220220032903e801370000200241186a200341e8016a41186a290300370000200241106a200341e8016a41106a290300370000200241086a200341e8016a41086a220229030037000020034190036a41086a22044200370300200342003703900341f789c100411620034190036a1002200341e0026a41086a200429030037030020032003290390033703e002200341003602f001200342013703e8012003200141016a22013602c003200341c0036a200341e8016a1018024002402001450d00200641206a21084100200228020022016b210620032802e801210920032802ec0121072015210203400240200720066a411f4b0d00200141206a22042001490d0420074101742214200420042014491b22044100480d04024002402007450d00200920072004101522090d010c070b200410132209450d060b200421070b200920016a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200641606a2106200141206a2101200241206a2102200841606a22080d000b200341f0016a2001360200200320073602ec01200320093602e8010c010b2002280200210120032802ec01210720032802e80121090b200341e0026a411020092001100102402007450d00200910160b02402017450d00201510160b4108210620034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e0024100210902400240024002400240024002400240200341e0026a411041acf1c300410041001000417f460d00200342103702c4032003200341e0026a3602c003200341e8016a200341c0036a102520032802e8012206450d0a20032802ec01211841302107200341f0016a280200220941306c22080d010c020b4100211841302107410041306c2208450d010b200341e8016a41086a2104410021010340200341e8016a41286a200620016a220241286a290300370300200341e8016a41206a200241206a290300370300200341e8016a41186a200241186a290300370300200341e8016a41106a200241106a2903003703002004200241086a290300370300200320022903003703e8012004200341a0016a412010f8020d022008200120076a2201470d000b0b41082115410021162018450d0120061016410021170c040b200341c0036a41286a2204200341e8016a41286a290300370300200341c0036a41206a2207200341e8016a41206a290300370300200341c0036a41186a2208200341e8016a41186a290300370300200341c0036a41106a2214200341e8016a41106a290300370300200341c0036a41086a2215200341e8016a41086a290300370300200320032903e8013703c00320034190036a41286a2217200429030037030020034190036a41206a2204200729030037030020034190036a41186a2207200829030037030020034190036a41106a2208201429030037030020034190036a41086a22142015290300370300200320032903c00337039003200341e0026a41286a22162017290300370300200341e0026a41206a22172004290300370300200341e0026a41186a22042007290300370300200341e0026a41106a22072008290300370300200341e0026a41086a2208201429030037030020032003290390033703e002413010132215450d08201520032903e002370300201541286a2016290300370300201541206a2017290300370300201541186a2004290300370300201541106a2007290300370300201541086a2008290300370300200941306c41506a2001460d01200241306a21192006200941306c6a221441506a211a200341e8016a41086a2101410121164101211703402019210202400340200341e8016a41286a2204200241286a290300370300200341e8016a41206a2207200241206a290300370300200341e8016a41186a2208200241186a290300370300200341e8016a41106a2209200241106a2903003703002001200241086a290300370300200320022903003703e8012001200341a0016a412010f8020d012014200241306a2202470d000c050b0b200341c0036a41286a221b2004290300370300200341c0036a41206a22192007290300370300200341c0036a41186a221c2008290300370300200341c0036a41106a221d2009290300370300200341c0036a41086a221e2001290300370300200320032903e8013703c00320034190036a41286a221f201b29030037030020034190036a41206a221b201929030037030020034190036a41186a2219201c29030037030020034190036a41106a221c201d29030037030020034190036a41086a221d201e290300370300200320032903c003370390032004201f2903003703002007201b290300370300200820192903003703002009201c2903003703002001201d29030037030020032003290390033703e801024020172016470d00201641016a22172016490d062016410174221b20172017201b491b2217ad42307e2205422088a70d062005a7221b4100480d0602402016450d002015201641306c201b101522150d010c0a0b201b10132215450d090b200241306a21192015201641306c6a221b20032903e801370300201b41286a2004290300370300201b41206a2007290300370300201b41186a2008290300370300201b41106a2009290300370300201b41086a2001290300370300201641016a2116201a2002470d000c030b0b410021170c020b41012116410121170b2018450d00200610160b200320163602f001200320173602ec01200320153602e80120034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341103602c4032003200341e0026a3602c003200341e8016a200341c0036a101702402017450d00201510160b200341f2016a200341a0016a41086a290300370100200341fa016a200341a0016a41106a29030037010020034182026a200341a0016a41186a2903003701002003418d023b01e801200320032903a0013701ea01200341e8016a105a2003280274450d07200328027010160c070b1010000b200441011014000b41b6e7c20041331029000b201b41081014000b413041081014000b200320043602c401200320013602c0010b2001200641306c6a22022005370300200220032903e801370308201429030021052009290300210c2008290300210d2002200b200a7c370328200241206a200d370300200241186a200c370300200241106a2005370300200341c0016a41086a200736020020034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341103602ec012003200341e0026a3602e801200341c0016a200341e8016a101702402004450d00200110160b200341f2016a200341c8036a290300370100200341fa016a200341d0036a29030037010020034182026a200341d8036a2903003701002003410d3b01e801200320032903c0033701ea01200341e8016a105a410021040c020b410021040c010b419288c1002104411421060b2000200636020420002004360200200341f0036a24000bb50d01077f230041e0026b22042400200141086a2800002105200141046a280000210620012d00002107200441f0006a41026a2208200141036a2d00003a0000200441b0016a41086a2209200141146a290000370300200441b0016a410d6a220a200141196a290000370000200420012f00013b017020042001410c6a2900003703b001410121010240024020074101470d00200441ec016a41026a20082d00003a0000200441f0016a41086a2009290300370300200441f0016a410d6a200a290000370000200420042f01703b01ec01200420042903b0013703f001410021010c010b41cfe6c2002106412a21050b200441ac016a41026a200441ec016a41026a2d00003a0000200441286a41086a200441f0016a41086a290300370300200441286a41106a200441f0016a41106a290300370300200420042f01ec013b01ac01200420042903f00137032802400240024002400240024020010d00200441086a41136a200441286a41086a290300370000200441086a41186a200441356a290000370000200420042f01ac013b01082004200536000f2004200636000b200420042903283700132004200441ac016a41026a22012d00003a000a200441f0016a2002108b010240024020042d00b0024102470d00410121074136210541a4c9c30021060c010b200441ec016a41026a20042d00f2013a0000200441b0016a41086a200441f0016a41136a290000370300200441c0016a2004418b026a290000370300200441b0016a41186a20044193026a290000370300200441d0016a2004419b026a290000370300200441d8016a200441a3026a290000370300200441de016a200441a9026a290000370100200420042f01f0013b01ec01200420042900fb013703b0014100210720042800f701210520042800f30121060b2001200441ec016a41026a2d00003a0000200441f0006a41086a200441b0016a41086a290300370300200441f0006a41106a2201200441b0016a41106a290300370300200441f0006a41186a200441b0016a41186a290300370300200441f0006a41206a2208200441b0016a41206a290300370300200441f0006a41286a2209200441b0016a41286a290300370300200441f0006a41306a200441b0016a41306a290300370300200420042f01ec013b01ac01200420042903b00137037020070d002004413b6a200441f0006a41086a290300370000200441c3006a2001290300370000200441cb006a200441f0006a41186a290300370000200441d3006a2008290300370000200441db006a2009290300370000200441e1006a2004419e016a290100370000200420042f01ac013b01282004200536002f2004200636002b200420042903703700332004200441ae016a2d00003a002a0240200441286a41206a200441086a412010f802450d00419ecac300210641c50021050c010b200420033a0068200441f0016a41386a200441286a41386a290300370300200441f0016a41306a200441286a41306a290300370300200441f0016a41286a200441286a41286a290300370300200441f0016a41206a200441286a41206a290300370300200441f0016a41186a200441286a41186a290300370300200441f0016a41106a200441286a41106a290300370300200441f0016a41086a200441286a41086a290300370300200420042903283703f001412710132201450d012001411f6a41002900b4d943370000200141186a41002900add943370000200141106a41002900a5d943370000200141086a410029009dd94337000020014100290095d9433700002001412741ce0010152205450d0220052002370027200441b0016a41086a22014200370300200442003703b0012005412f200441b0016a1002200441f0006a41086a2001290300370300200420042903b001370370412010132201450d03200120042903f001370000200141186a200441f0016a41186a290300370000200141106a200441f0016a41106a290300370000200141086a200441f0016a41086a2903003700002001412041c00010152201450d042001200429039002370020200141386a200441f0016a41386a290300370000200141306a200441f0016a41306a290300370000200141286a200441f0016a41286a290300370000200141c00041800110152201450d05200120033a0040200441f0006a4110200141c10010012001101620051016200441f0016a41106a2002370300200441f8016a4181023b0100200441103a00f001200441f0016a105a410021060b2000200536020420002006360200200441e0026a24000f0b412741011014000b41ce0041011014000b412041011014000b41c00041011014000b41800141011014000bdb8a0104037f027e087f0b7e230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417f6a220541104b0d00024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210520022d0000210420034188036a41026a2209200241036a2d00003a0000200341e8046a41086a220a200241146a290000370300200341e8046a410d6a220b200241196a290000370000200320022f00013b01880320032002410c6a2900003703e8044101210220044101470d14200341c0036a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0188033b01c003200320032903e80437038805410021020c150b20022d00000d10200320012d00013a008805200341b0066a41086a22024200370300200342003703b00641aa9ec2004119200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411020034188056a410110010c95010b20022d00000d0f200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d1a2003421037028c052003200341c0066a3602880520034188026a20034188056a1083022003290388024203510d55200342083703e8044100210c200341003602f004200341b0066a41086a22024200370300200342003703b00641e2a5c200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d28200342103702e4032003200341c0066a3602e00320034188056a200341e0036a1011200328028805220d450d5a200328028c05210c20034190056a2802002202450d290c8e010b20022d00000d0e200141046a2802002105200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d1a2003421037028c052003200341c0066a36028805200341d8016a20034188056a10830220032903d8014203520d1641b6e7c20041331029000b20022d00000d0d200141086a290300210742002106200341b0066a41086a22024200370300200342003703b006419be8c200410d200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003420037038805200341c0066a411020034188056a41084100100041016a41084d0d4f20032903880521060b41a8bec2002105411f2108200620075a0d1620032007370390052003420237038805200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602e4032003200341c0066a3602e00320034188056a200341e0036a1081020c080b20022d00000d0c200141046a2802002105200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a22082002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d192003421037028c052003200341c0066a36028805200341e8016a20034188056a10830220032903e8014203520d1441b6e7c20041331029000b20022d00000d0b200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00641002105200341c0066a411041acf1c300410041001000417f460d192003421037028c052003200341c0066a36028805200341b8016a20034188056a10830220032903b8014203520d1341b6e7c20041331029000b200341a0026a41186a200141196a290000370300200341a0026a41106a200141116a290000370300200341a0026a41086a200141096a290000370300200320012900013703a002200341c0026a41186a200141396a290000370300200341c0026a41106a200141316a290000370300200341c0026a41086a200141296a2900003703002003200141216a2900003703c002200141c4006a280200210a200141c8006a2802002104200141cc006a280200210b200241086a2800002108200241046a280000210520022d0000210920034188036a41026a220f200241036a2d00003a0000200341e8046a41086a220e200241146a290000370300200341e8046a410d6a220c200241196a290000370000200320022f00013b01880320032002410c6a2900003703e8044101210120094101470d0b20034190066a41026a200f2d00003a000020034188056a41086a200e29030037030020034188056a410d6a200c290000370000200320032f0188033b019006200320032903e80437038805410021010c0c0b20022d00000d09200341b0066a41086a22024200370300200342003703b0064193ecc2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d18200342103702e4032003200341c0066a3602e00320034188056a200341e0036a10202003280288052202450d502003200329028c0537028c0520032002360288050c190b20022d00000d08200141086a290300210742002106200341b0066a41086a22024200370300200342003703b006419be8c200410d200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003420037038805200341c0066a411020034188056a41084100100041016a41084d0d4b20032903880521060b41a8bec2002105411f2108200620075a0d1120032007370390052003420037038805200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602e4032003200341c0066a3602e00320034188056a200341e0036a1081020c030b20022d00000d07200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d182003421037028c052003200341c0066a3602880520034198016a20034188056a1083022003290398014203520d0f41b6e7c20041331029000b200141306a2903002106200141286a2903002107200341b8036a200141196a290000370300200341a0036a41106a200141116a290000370300200341a0036a41086a200141096a290000370300200320012900013703a003200241086a2800002108200241046a280000210520022d0000210420034188036a41026a2209200241036a2d00003a0000200341e8046a41086a220a200241146a290000370300200341e8046a410d6a220b200241196a290000370000200320022f00013b01880320032002410c6a2900003703e8044101210220044101470d0b20034190066a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0188033b019006200320032903e80437038805410021020c0c0b20022d00000d05200141086a290300210742002106200341b0066a41086a22024200370300200342003703b006419be8c200410d200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003420037038805200341c0066a411020034188056a41084100100041016a41084d0d4920032903880521060b41a8bec2002105411f2108200620075a0d0e20032007370390052003420137038805200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602e4032003200341c0066a3602e00320034188056a200341e0036a1081020b4100210520012d00004103460d8a010c8b010b20022d00000d03200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00641002105200341c0066a411041acf1c300410041001000417f460d152003421037028c052003200341c0066a36028805200341f8016a20034188056a10830220032903f8014203520d0b41b6e7c20041331029000b20022d00000d02200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d152003421037028c052003200341c0066a3602880520034188016a20034188056a1083022003290388014203520d0a41b6e7c20041331029000b20022d00000d01200141086a2903002106200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d152003421037028c052003200341c0066a36028805200341c8016a20034188056a10830220032903c8014203520d0941b6e7c20041331029000b20022d0000450d070b41a7e6c20021054128210820044103470d8601200141c8006a280200450d8601200141c4006a28020010160c86010b412a210841cfe6c20021050b200341c0036a41026a20034190066a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f0190063b01c00320032003290388053703e00302402001450d0020040d1a0c85010b20034184036a41026a200341c0036a41026a2d00003a0000200341e8026a41086a200341e0036a41086a290300370300200341e8026a410d6a200341e0036a410d6a290000370000200320032f01c0033b018403200320032903e0033703e802200b41204d0d0741f7bcc2002105410e210820040d190c84010b41cfe6c2002105412a21080b200341e4026a41026a200341c0036a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01c0033b01e40220032003290388053703e00320020d04200341a3066a200341e0036a41086a290300370000200341a8066a200341ed036a290000370000200320032f01e4023b01900620032008360097062003200536009306200320032903e00337009b062003200341e6026a2d00003a009206200341286a20034190066a108e0141dbb8c2002105412721082003290328200341286a41086a29030084500d0420034190066a108f01450d04200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a22052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d182003421037028c052003200341c0066a36028805200341186a20034188056a108302200329031822104203520d1941b6e7c20041331029000b412a210841cfe6c20021050b200341e4026a41026a20034190066a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f0190063b01e40220032003290388053703e00320020d02200341d3036a200341e0036a41086a290300370000200341d8036a200341ed036a290000370000200320032f01e4023b01c003200320083600c703200320053600c303200320032903e0033700cb032003200341e6026a2d00003a00c203200341d8006a200341c0036a108e0141b7bac2002105412621082003290358200341d8006a41086a29030084500d02200341c0036a108f01450d02200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a22052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d182003421037028c052003200341c0066a36028805200341c8006a20034188056a108302200329034822104203520d1941b6e7c20041331029000b200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0d2003421037028c052003200341c0066a36028805200341a8016a20034188056a10830220032903a8014203510d400b41c7bec2002105412421080b20012d00004103460d7c0c7d0b200341b0066a41086a22014200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2001290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0c2003421037028c052003200341c0066a36028805200341f8006a20034188056a108302200329037822064203520d0d41b6e7c20041331029000b419bc0c20021050c760b2005450d15200341b0066a41086a22024200370300200342003703b00641dfbdc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d1c2003410036028805200341c0066a411020034188056a41044100100041016a41044d0d3820032802880520054f0d1d0c700b20024200370300200342003703b00641fdbdc200411b200341b0066a100220082002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d152003410036028805200341c0066a411020034188056a41044100100041016a41044d0d3620032802880520054d0d160c6e0b200341b0066a41086a22024200370300200342003703b00641d4b9c200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00620032006370390052003200737038805200341c0066a411020034188056a411010010c730b200341003602900520034208370388050b20034198026a20034188056a108202200328029c022108200328029802210520012d00004103460d750c760b2006500d04200341b0066a41086a22024200370300200342003703b0064185bdc200411c200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c730b200341b0066a41086a22024200370300200342003703b006418dbbc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00620032006370390052003200737038805200341c0066a411020034188056a411010010c6f0b2006500d02200341b0066a41086a22024200370300200342003703b00641b4a6c2004120200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c710b2006500d10200341b0066a41086a22024200370300200342003703b00641c0bdc200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c700b2006500d00200341b0066a41086a22024200370300200342003703b00641a1bdc200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c6f0b41ebbec200210520012d00004103460d6f0c700b420321060b200341b0066a41086a22014200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2001290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003421037028c052003200341c0066a36028805200341e8006a20034188056a10830220032903684203510d3120064203510d322006a74102470d03200341e4026a41026a20034184036a41026a2d00003a000020034188036a41086a200341e8026a41086a29030037030020034188036a410d6a200341e8026a410d6a290000370000200320032f0184033b01e402200320032903e80237038803200341a0036a41186a200341a0026a41186a290300370300200341a0036a41106a200341a0026a41106a290300370300200341a0036a41086a200341a0026a41086a290300370300200320032903a0023703a003200341c0036a41186a200341c0026a41186a290300370300200341c0036a41106a200341c0026a41106a290300370300200341c0036a41086a200341c0026a41086a290300370300200320032903c0023703c003411510132201450d382001410d6a41002900b8bb42370000200141086a41002900b3bb42370000200141002900abbb4237000020014115413510152201450d39200120032903a0033700152001412d6a200341b8036a290300370000200141256a200341a0036a41106a2903003700002001411d6a200341a0036a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002102200110162002417f460d13200341e0036a200341a0036a108f0220032d00c0044101470d144187bcc20021014115210220040d5f0c600b41c0b9c20021054114210820040d030c6e0b4101210d4100210241000d650b410021054108210e200c0d650c660b41d8bcc2002105411f21082004450d6b0b200a10160c6a0b420321100b20024200370300200342003703b00641a7a4c2004115200341b0066a100220052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d022003421037028c052003200341c0066a36028805200341086a20034188056a10830220032903084203510d2d20104203510d2e2010a7450d094182b9c20021050c070b420321100b20024200370300200342003703b00641a7a4c2004115200341b0066a100220052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d002003421037028c052003200341c0066a36028805200341386a20034188056a10830220032903384203510d2d20104203510d2e2010a74101470d0642002110200341b0066a41086a22024200370300200342003703b006418dbbc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0c20034200370390052003420037038805200341c0066a411020034188056a4110410010002202417f460d312002410f4d0d3120034190056a290300211020032903880521110c0d0b41c0b9c20021050c590b41a0bfc2002105411b210820012d00004103460d630c640b410a20054b0d580b200341b0066a41086a22024200370300200342003703b00641dfbdc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200536028805200341c0066a411020034188056a410410010c600b4180bfc20021050b4120210820012d00004103460d5f0c600b41ddbac2002105411c210820012d00004103460d5e0c5f0b411f10132202450d2a200241176a41002900da9e42370000200241106a41002900d39e42370000200241086a41002900cb9e42370000200241002900c39e423700002002411f413f10152202450d2b200220032903900637001f200241376a20034190066a41186a22082903003700002002412f6a20034190066a41106a290300370000200241276a20034190066a41086a290300370000200341b0066a41086a22054200370300200342003703b0062002413f200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002105200210162005417f470d0a200341b0066a41086a22024200370300200342003703b00641d4b9c200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0820034200370390052003420037038805200341c0066a411020034188056a4110410010002202417f460d302002410f4d0d3020034190056a290300211020032903880521110c090b41142005490d530b200341b0066a41086a22024200370300200342003703b00641fdbdc200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200536028805200341c0066a411020034188056a410410010c5a0b41f3bbc20021014114210220040d4b0c4c0b2003419b056a20034190036a290300370000200341a0056a20034195036a2900003700002003200836008f052003200536008b05200320032f01e4023b0188052003200329038803370093052003200341e6026a2d00003a008a0520034188056a200341e0036a41206a412010f802450d02419cbcc2002101411a21020c490b420a21110b02402011200756201020065620102006511b450d0041f9bac20021050c4d0b200341e8046a41186a200341c0036a41186a290300370300200341e8046a41106a200341c0036a41106a290300370300200341e8046a41086a200341c0036a41086a290300370300200320032903c0033703e80420034190066a41186a200341a0036a41186a220229030037030020034190066a41106a200341a0036a41106a220529030037030020034190066a41086a200341a0036a41086a2208290300370300200320032903a0033703900620034188056a41186a200229030037030020034188056a41106a200529030037030020034188056a41086a2008290300370300200320032903a00337038805411510132202450d282002410d6a41002900b8bb42370000200241086a41002900b3bb42370000200241002900abbb4237000020024115413510152202450d2920022003290388053700152002412d6a200341a0056a290300370000200241256a20034188056a41106a2903003700002002411d6a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002105200210162005417f460d0141dfbbc20021050c4c0b411f10132201450d2a200141176a41002900da9e42370000200141106a41002900d39e42370000200141086a41002900cb9e42370000200141002900c39e423700002001411f413f10152201450d2b200120032903c00337001f200141376a200341d8036a2903003700002001412f6a200341c0036a41106a290300370000200141276a200341c0036a41086a290300370000200341b0066a41086a22024200370300200342003703b0062001413f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002102200110162002417f460d06200b450d07200b10132209450d352009200a200b10f6021a0c080b412210132202450d2b200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d2c200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c00620034188056a200341c0066a411010840220034188056a41106a290300211220034188056a41186a290300211020034188056a41206a29030021112003290390052113200329038805211420021016200341e8046a2007201042002014420151220e1b22142007201420075420114200200e1b221020065420102006511b22021b22117d221520062010200620021b22167d2007201154ad7d2206109002450d03200341e8046a20152006109d01450d0841c0bbc2002105411f210820012d00004103460d550c560b4200211042e40021110b2011200756201020065620102006511b450d0041a2b9c2002105411e210820012d00004103460d530c540b200341e0036a41186a2008290300370300200341e0036a41106a20034190066a41106a290300370300200341e0036a41086a20034190066a41086a29030037030020032003290390063703e003412210132202450d21200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d22200220032903e0033700222002413a6a200341e0036a41186a290300370000200241326a200341e0036a41106a2903003700002002412a6a200341e0036a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c00620034188056a200341c0066a411010840220034188056a41186a290300211220034188056a41206a290300211320034188056a41106a2903002110200329039005211120032903880521142002101641f3b9c2002105200341e0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22081b22117d221520062010200620081b22167d2007201154ad7d2206109002450d014195bac2002105200341e0036a20152006109d010d01411f10132205450d2b200541176a41002900da9e42370000200541106a41002900d39e42370000200541086a41002900cb9e42370000200541002900c39e423700002005411f413f10152205450d2c200520032903e00337001f200541376a200341e0036a41186a2903003700002005412f6a200341e0036a41106a290300370000200541276a200341e0036a41086a290300370000200341b0066a41086a22084200370300200342003703b0062005413f200341b0066a1002200341c0066a41086a2008290300370300200320032903b0063703c00620034188056a200341c0066a411010840220034188056a41106a290300210720034188056a41206a290300211720034188056a41186a29030021182003290390052119200329038805211a20051016412210132205450d2d200541206a41002f009da6423b0000200541186a4100290095a642370000200541106a410029008da642370000200541086a4100290085a642370000200541002900fda5423700002005412241c40010152205450d2e200520032903e0033700222005413a6a200341f8036a290300370000200541326a200341e0036a41106a2903003700002005412a6a200341e0036a41086a290300370000200341b0066a41086a22084200370300200342003703b006200541c200200341b0066a1002200341c0066a41086a2008290300370300200320032903b0063703c006200341c0066a411041acf1c30041004100100021082005101602402008417f460d00412210132205450d33200541206a41002f009da6423b0000200541186a4100290095a642370000200541106a410029008da642370000200541086a4100290085a642370000200541002900fda5423700002005412241c40010152205450d34200520032903e0033700222005413a6a200341e0036a41186a290300370000200541326a200341e0036a41106a2903003700002005412a6a200341e0036a41086a290300370000200341b0066a41086a22084200370300200342003703b006200541c200200341b0066a1002200341c0066a41086a2008290300370300200320032903b0063703c006411010132208450d352008201420117d3700002008201020167d2014201154ad7d37000820084110412010152208450d3620082012420020021b370010200841186a2013420020021b370000200341c0066a411020084120100120081016200510160b411f10132202450d2f200241176a41002900da9e42370000200241106a41002900d39e42370000200241086a41002900cb9e42370000200241002900c39e423700002002411f413f10152202450d30200220032903e00337001f200241376a200341e0036a41186a220c2903003700002002412f6a200341e0036a41106a290300370000200241276a200341e0036a41086a290300370000200341b0066a41086a22054200370300200342003703b0062002413f200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002105200210162005417f470d3c200341b0066a41086a22024200370300200342003703b00641c8a5c200411a200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d06200342103702ec042003200341c0066a3602e80420034188056a200341e8046a1011200328028805220e450d38200329028c0521100c070b41f3b9c20021050b4122210820012d00004103460d500c510b41b6bcc20021014122210220040d400c410b410121090b200341e8046a41186a2201200341c0036a41186a290300370300200341e8046a41106a220f200341c0036a41106a290300370300200341e8046a41086a220e200341c0036a41086a290300370300200320032903c0033703e804412010132202450d25200220032903e804370000200241186a2001290300370000200241106a200f290300370000200241086a200e29030037000002400240200b450d00200b41206a2201200b490d4c200141c000200141c0004b1b220f4100480d4c20024120200f101522020d01200f41011014000b4120210f200b41206a21010b200241206a2009200b10f6021a20034188056a41186a220e420037030020034188056a41106a220c420037030020034188056a41086a220d420037030020034200370388052002200120034188056a100420034190066a41186a200e29030037030020034190066a41106a200c29030037030020034190066a41086a200d29030037030020032003290388053703900641c0bbc10021010240200341a0046a20034190066a412010f8020d00200341c1046a20032903e804370000200341c0046a41013a0000200341c9046a200341e8046a41086a290300370000200341d1046a200341e8046a41106a290300370000200341d9046a200341e8046a41186a290300370000410021010b0240200f450d00200210160b02402001450d00410c2102200b450d3e2009101620040d3f0c400b20034190066a41186a200341a0036a41186a29030037030020034190066a41106a200341a0036a41106a29030037030020034190066a41086a200341a0036a41086a290300370300200320032903a0033703900620034188056a200341e0036a41880110f6021a411510132201450d312001410d6a41002900b8bb42370000200141086a41002900b3bb42370000200141002900abbb4237000020014115413510152201450d3220012003290390063700152001412d6a200341a8066a290300370000200141256a20034190066a41106a2903003700002001411d6a20034190066a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602ec042003200341c0066a3602e80420034188056a200341e8046a10cf01200110160240200b450d00200910160b4100210102402004450d00200a10160b41000d400c410b200341b0066a41086a22024200370300200342003703b00641e2a5c200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00641002102200341c0066a411041acf1c300410041001000417f460d02200342103702e4032003200341c0066a3602e00320034188056a200341e0036a1011200328028805220c450d3320034188056a41086a22052802002108200328028c05210220034188056a41186a20034190066a41186a29030037030020034188056a41106a20034190066a41106a290300370300200520034190066a41086a29030037030020032003290390063703880520034188056a21052002210d20082002460d030c340b4101210e420021100b20034188056a41186a2205200341e0036a41186a29030037030020034188056a41106a2208200341e0036a41106a29030037030020034188056a41086a2204200341e0036a41086a290300370300200320032903e003370388052010422088a722022010a7470d33200241016a22092002490d472002410174220a20092009200a491bad22104205862214422088a70d472014a722094100480d472002450d02200e200241057420091015220e450d030c330b20034188056a41186a20034190066a41186a29030037030020034188056a41106a20034190066a41106a29030037030020034188056a41086a20034190066a41086a2903003703002003200329039006370388054101210c20034188056a21050b200241016a22082002490d4520024101742204200820082004491b220dad4205862207422088a70d452007a722044100480d45024002402002450d0020022108200c200241057420041015220c450d010c320b2002210820041013220c0d310b200441011014000b20091013220e0d300b200941011014000b2003419c056a4101360200200341023602e403200341c8d7c3003602e0032003420137028c05200341d0d7c300360288052003200341e0036a3602980520034188056a4198bec2001046000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41bcf5c3001038000b41b6e7c20041331029000b41b6e7c20041331029000b41bcf5c3001038000b41b6e7c20041331029000b41bcf5c3001038000b411541011014000b413541011014000b41b6e7c20041331029000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b411541011014000b413541011014000b41b6e7c20041331029000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b412041011014000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b411f41011014000b413f41011014000b200b41011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b411541011014000b413541011014000b41b6e7c20041331029000b41b6e7c20041331029000b200c200841057422046a22022005290000370000200241186a200541186a290000370000200241106a200541106a290000370000200241086a200541086a290000370000200341b0066a41086a22024200370300200342003703b00641e2a5c200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341003602900520034201370388052003200841016a22023602e003200341e0036a20034188056a1018024002400240024002400240024002400240024002402002450d00200441206a210a410020034188056a41086a28020022056b2104200328028805210b200328028c052109200c210203400240200920046a411f4b0d00200541206a22082005490d212009410174220f20082008200f491b22084100480d21024002402009450d00200b200920081015220b0d010c060b20081013220b450d050b200821090b200b20056a22082002290000370000200841186a200241186a290000370000200841106a200241106a290000370000200841086a200241086a290000370000200441606a2104200541206a2105200241206a2102200a41606a220a0d000b20034190056a20053602002003200936028c052003200b360288050c010b20034188056a41086a2802002105200328028c052109200328028805210b0b200341c0066a4110200b2005100102402009450d00200b10160b0240200d450d00200c10160b200341e0036a41186a20034190066a41186a2202290300370300200341e0036a41106a20034190066a41106a2205290300370300200341e0036a41086a20034190066a41086a220829030037030020032003290390063703e00320034188056a41186a2016370300200341c0056a200341e8046a41186a290300370300200341b8056a200341e8046a41106a290300370300200341b0056a200341e8046a41086a290300370300200341d0056a2008290300370300200341d8056a2005290300370300200341e0056a2002290300370300200320113703980520032006370390052003201537038805200341003a00e805200320032903e8043703a80520032003290390063703c805411510132202450d012002410d6a41002900b8bb42370000200241086a41002900b3bb42370000200241002900abbb4237000020024115413510152202450d02200220032903e0033700152002412d6a200341e0036a41186a290300370000200241256a200341e0036a41106a2903003700002002411d6a200341e0036a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341103602c4022003200341c0066a3602c00220034188056a200341c0026a10cf0120021016412210132202450d03200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d04200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c30041004100100021052002101602402005417f460d00412210132202450d06200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d07200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006411010132205450d08200520134200200e1b370000200520124200200e1b37000820054110412010152205450d092005201420117d370010200541186a201020167d2014201154ad7d370000200341c0066a411020054120100120051016200210160b20034188056a41096a20032903c003370000200341a1056a200341c0036a41106a290300370000200341a9056a200341c0036a41186a290300370000200341b1056a20032903a003370000200341c1056a200341a0036a41106a290300370000200341c9056a200341a0036a41186a290300370000200341083a00880520034188056a41086a41093a000020034199056a200341c0036a41086a290300370000200341b9056a200341a0036a41086a29030037000020034188056a105a0c1f0b200841011014000b411541011014000b413541011014000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b200e41206a200e2002410574220910f7021a200e41186a2005290300370000200e41106a2008290300370000200e41086a2004290300370000200e200329038805370000200341b0066a41086a22054200370300200342003703b00641c8a5c200411a200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341003602900520034201370388052003200241016a22023602e804200341e8046a20034188056a1018024002402002450d00200941206a210a410020034188056a41086a28020022056b2104200328028805210b200328028c052109200e210203400240200920046a411f4b0d00200541206a22082005490d172009410174220f20082008200f491b22084100480d17024002402009450d00200b200920081015220b0d010c070b20081013220b450d060b200821090b200b20056a22082002290000370000200841186a200241186a290000370000200841106a200241106a290000370000200841086a200241086a290000370000200441606a2104200541206a2105200241206a2102200a41606a220a0d000b20034190056a20053602002003200936028c052003200b360288050c010b20034190056a2802002105200328028c052109200328028805210b0b200341c0066a4110200b2005100102402009450d00200b10160b2010a7450d00200e10160b20034188056a41186a200c29030037030020034188056a41106a200341e0036a41106a29030037030020034188056a41086a200341e0036a41086a290300370300200320032903e00337038805411f10132202450d01200241176a41002900da9e42370000200241106a41002900d39e42370000200241086a41002900cb9e42370000200241002900c39e423700002002411f413f10152202450d02200220032903880537001f200241376a200341a0056a2903003700002002412f6a20034188056a41106a290300370000200241276a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b0062002413f200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006411010132205450d03200520194200201a42015122081b221020157c221437000020052007420020081b20067c2014201054ad7c37000820054110412010152205450d0420052018420020081b220620117c2207370010200541186a2017420020081b20167c2007200654ad7c370000200341c0066a4110200541201001200510162002101620034188056a41086a41083a000020034191056a20032903900637000020034199056a20034190066a41086a290300370000200341a1056a20034190066a41106a290300370000200341a9056a20034190066a41186a290300370000200341083a00880520034188056a105a0c140b200841011014000b411f41011014000b413f41011014000b411041011014000b412041011014000b2004450d010b200a10160b2001450d010b20022108200121050c0d0b20034191056a20032f0184033b000020034188056a41106a200836020020034194056a20053602002003419c056a20032903e802370200200341b1056a20032903a002370000200341083a00880520034188056a41086a410a3a000020034193056a20034186036a2d00003a0000200341a9056a200341f5026a290000370000200341c1056a200341a0026a41106a290300370000200341c9056a200341a0026a41186a290300370000200341a4056a200341e8026a41086a290300370200200341b9056a200341a0026a41086a290300370000200341e9056a200341c0026a41186a290300370000200341e1056a200341c0026a41106a290300370000200341d9056a200341c0026a41086a290300370000200341d1056a20032903c00237000020034188056a105a410021050c0c0b4114210820012d00004103460d0a0c0b0b41ebbfc20021050c010b41bbbfc20021050b4130210820012d00004103460d070c080b20024105742109410021044108210e4100210541002108200d2102034020034190066a41186a200241186a220a29000037030020034190066a41106a200241106a220b29000037030020034190066a41086a200241086a220f2900003703002003200229000037039006200341e0036a41186a200a290000370300200341e0036a41106a200b290000370300200341e0036a41086a200f290000370300200320022900003703e00320034188056a200341e0036a108f02024020082005470d00200541016a220a2005490d052005410174220b200a200a200b491b220aad4288017e2206422088a70d052006a7220b4100480d05024002402005450d00200e20054188016c200b1015220e0d010c080b200b1013220e450d070b200a21050b200241206a2102200e20046a20034188056a41880110f6021a20044188016a2104200841016a2108200941606a22090d000b200341f0046a20083602002003200e3602e804200320053602ec04200c450d010b200d10160b200342003702e403200341b894c1003602e003200341e8046a200341e0036a410010910220032802e803210a20032802e00321020240024020032802e4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341a4056a20022f0106360200200341a0056a41003602002003419c056a20023602002003200a3602a805200341003602980520034200370390052003200836028c05200341003602880520034188056a10920202402005450d00200e10160b410021050b4124210820012d00004103460d030c040b1010000b200b41081014000b4100210520012d00004103470d010b200141c8006a280200450d00200141c4006a28020010160b2000200836020420002005360200200341d0066a24000bfcc2010b037f027e047f017e027f037e017f027e027f017e0d7f230041f0046b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417f6a2205410e4b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e0f00090607030a0c080f050d02040b01000b200141306a2903002106200141286a290300210720012d00012108200341e8006a200141246a280200360200200341c8006a41186a2001411c6a290200370300200341c8006a41106a200141146a290200370300200341c8006a41086a2001410c6a2902003703002003200141046a29020037034820022d0000210520034198016a41186a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d17200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c180b200141086a280200210a200141046a280200210b20022d0000450d2041002109200a450d0c200b101620012d000021040c0c0b4101210920022d00000d0b200141046a2802002102200341e0046a41086a22054200370300200342003703e00441e796c2004116200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200320023602e003200341d0036a4110200341e0036a410410010c8d010b200141106a2903002106200141086a2903002107200141186a280200210820022d0000210520034198016a41186a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0c200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c0d0b4101210920022d00000d0920012d00012104200341e0046a41086a22054200370300200342003703e00441a4eac1004115200341e0046a1002200341d0036a41086a22092005290300370300200320032903e0043703d00341002102200341d0036a411041acf1c30041001001200320043a00e00320054200370300200342003703e00441cdc7c0004119200341e0046a100220092005290300370300200320032903e0043703d00341012109200341d0036a4110200341e0036a410110014101210820012d00002204410f4d0d9a010c9b010b4101210920022d00000d08200141086a2903002106200341e0046a41086a22024200370300200342003703e00441cd96c200411a200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200320063703e003200341d0036a4110200341e0036a410810010c8a010b200141106a2903002106200141086a290300210c20022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0b200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c0c0b20022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0c200341ca006a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b0148200320032900a3013703e00341002104200328009f012105200328009b0121020c0d0b20012d0001210820022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0d200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c0e0b200141106a2903002106200141086a290300210720022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d10200341ca006a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b0148200320032900a3013703e00341002104200328009f012105200328009b0121020c110b2001410c6a2802002109200141086a280200210d200141046a280200210e20022d00002105200341b0016a2208200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d11200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2008290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c120b4101210920022d00000d02200141046a2802002102200341e0046a41086a22054200370300200342003703e00441bde9c1004119200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200320023602e003200341d0036a4110200341e0036a410410010c84010b20022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d11200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c120b4101210920022d0000450d150b41a7e6c200210241282105200441ff01712204410f4b0d1a410120047441beff01710d920120044106460d1b2004410f470d1a2009450d9201200141086a280200450d9201200141046a28020010160c92010b200341c0006a200141246a280200360200200341206a41186a2001411c6a290200370300200341206a41106a200141146a290200370300200341206a41086a2001410c6a2902003703002003200141046a29020037032020022d0000210520034198016a41186a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d10200341ca006a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b0148200320032900a3013703e00341002104200328009f012105200328009b0121020c110b412a210541cfe6c20021020b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d8001200341c3036a20034190036a41086a290300370000200341b0036a41186a2003419d036a290000370000200320032f01e0043b01b003200320053600b703200320023600b30320032003290390033700bb03200320092d00003a00b203200341e0036a200341b0036a10a4012003280280042202450d1420034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a220e200341e0036a41c4006a2902003703002003200341e0036a412c6a29020037039801200341ac046a280200210d200341e0036a41286a280200210a200341e0036a410c6a350200210f200341e0036a41186a290300210c20032802e003210b20032902e403211020032903f00321112003280284042105200341c8006a41186a2212200e290300370300200341c8006a41106a220e2009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a200c370300200341e0016a410c6a200f3e0200200341e0016a41286a200a36020020034184026a2005360200200341e0016a41346a2009290300370200200341e0016a413c6a200e290300370200200341e0016a41c4006a2012290300370200200320113703f001200320103702e40120032002360280022003200b3602e0012003200d3602ac022003200329034837028c022008410a4d0d1c02402005450d00200210160b41e89bc2002102411b21050c80010b41cfe6c2002102412a21050b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d7e200341336a20034190036a41086a290300370000200341206a41186a2003419d036a290000370000200320032f01e0043b01202003200536002720032002360023200320032903900337002b200320092d00003a0022200341e0036a200341206a10a4012003280280042205450d1220034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a2208200341e0036a41c4006a29020037030020032003418c046a29020037039801200341ac046a280200210e200341e0036a41286a280200210d200341e0036a410c6a3502002110200341e0036a41186a290300210720032802e003210a20032902e403211120032903f003210f2003280284042102200341c8006a41186a220b2008290300370300200341c8006a41106a22082009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a2007370300200341e0016a410c6a20103e0200200341e0016a41286a200d36020020034184026a2002360200200341e0016a41346a2009290300370200200341e0016a413c6a2008290300370200200341e0016a41c4006a200b2903003702002003200f3703f001200320113702e40120032005360280022003200a3602e0012003200e3602ac022003200329034837028c02200f200c200f200c54200720065420072006511b22051b220c2007200620051b220684500d7b200341e0016a41106a200f200c7d370300200341f8016a200720067d200f200c54ad7d370300200341e0046a41086a22024200370300200342003703e00441bd95c300411b200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d0030240200341d0036a411041acf1c300410041001000417f460d00200342003703e803200342003703e003200341d0036a4110200341e0036a4110410010002202417f460d442002410f4d0d44200341f0016a2202290300220f20032903e0035a200341f8016a22052903002207200341e8036a29030022105a20072010511b0d002005420037030020024200370300200720067c200f200c7c220c200f54ad7c21060b200341e0046a41086a22024200370300200342003703e00441bb96c2004112200341e0046a1002200341d0036a41086a22052002290300370300200320032903e0043703d003420021070240200341d0036a411041acf1c300410041001000417f460d00200342003703e003200341d0036a4110200341e0036a41084100100041016a41084d0d3e20032903e00321070b20024200370300200342003703e00441d19bc2004117200341e0046a100220052002290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d23200342003703e003200341d0036a4110200341e0036a41084100100041016a41084d0d3e20032903e003210f0c240b41cfe6c2002102412a21050b200341e0046a41026a2209200341c8006a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01483b01e004200320032903e0033703900320040d7c200341f3016a20034190036a41086a290300370000200341e0016a41186a2003419d036a290000370000200320032f01e0043b01e001200320053600e701200320023600e30120032003290390033700eb01200320092d00003a00e201200341e0036a200341e0016a10a4012003280280042208450d1020034198016a41086a220220034194046a29020037030020034198016a41106a22052003419c046a29020037030020034198016a41186a2204200341a4046a29020037030020032003418c046a29020037039801200341e0036a41186a290300211320034188046a280200210e200341ec036a350200210620032903f0032114200328028404210a20033502e003210f20032902e4032107200341f0026a41186a2004290300370300200341f0026a41106a2005290300370300200341f0026a41086a200229030037030020032003290398013703f00242002110200341e0046a41086a22024200370300200342003703e00441bb96c2004112200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d0030240200341d0036a411041acf1c300410041001000417f460d00200342003703e003200341d0036a4110200341e0036a41084100100041016a41084d0d3b20032903e00321100b200642208620074220888421062007422086200f8421070240200e41186c2202450d00200820026a2109200241686a2105200821020340200241086a290300210c2002290300210f2010200241106a2903002211540d1e42002006200c7d2007200f54ad7d220c2007200f7d220f200756200c200656200c2006511b22041b21064200200f20041b2107200541686a2105200241186a22022009470d000b0b410821044100210e200a450d1d200810164100210d0c260b412a210541cfe6c20021020b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d7a200341db006a20034190036a41086a290300370000200341c8006a41186a20034190036a410d6a290000370000200320032f01e0043b01482003200536004f2003200236004b2003200329039003370053200320092d00003a004a200341e0036a200341c8006a10a4012003280280042205450d0e20034198016a41086a220220034194046a29020037030020034198016a41106a22042003419c046a29020037030020034198016a41186a2209200341a4046a29020037030020032003418c046a29020037039801200328028404210e200341e0016a41186a2009290300370300200341e0016a41106a2004290300370300200341e0016a41086a200229030037030020032003290398013703e001410d10132202450d3d200241056a41002900d69942370000200241002900d199423700002002410d412d10152202450d3e200220032903e00137000d200241256a200341f8016a2903003700002002411d6a200341e0016a41106a290300370000200241156a200341e0016a41086a290300370000200341e0046a41086a22044200370300200342003703e0042002412d200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d003200341103602e4032003200341d0036a3602e0032008200341e0036a10e40120021016200e450d78200510160c780b41cfe6c2002102412a21050b200341f0026a41026a2209200341e0016a41026a2d00003a0000200341b0036a41086a200341e0036a41086a290300370300200341b0036a41106a200341e0036a41106a290300370300200320032f01e0013b01f002200320032903e0033703b00320040d78200341336a200341b8036a290300370000200341386a200341bd036a290000370000200320032f01f0023b01202003200536002720032002360023200320032903b00337002b200320092d00003a0022410e10132202450d39200241066a41002900abcc41370000200241002900a5cc413700002002410e412e10152202450d3a2002200329032037000e200241266a200341206a41186a2903003700002002411e6a200341206a41106a290300370000200241166a200341206a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341e0036a41086a22042005290300370300200320032903e0043703e003200341e0036a411041acf1c3004100410010002105200210162005417f460d1241a29bc2002102411421050c780b41cfe6c2002102412a21050b20034190036a41026a2209200341c8006a41026a2d00003a0000200341e0016a41086a200341e0036a41086a290300370300200341e0016a41106a200341e0036a41106a290300370300200320032f01483b019003200320032903e0033703e00120040d76200341d3046a200341e0016a41086a290300370000200341d8046a200341e0016a410d6a290000370000200320032f0190033b01c004200320053600c704200320023600c304200320032903e0013700cb04200320092d00003a00c204200341e0036a200341c0046a10e9014101210420032d00e0034101470d08200341e2046a20032d00e3033a000020034190036a41086a200341f4036a29020037030020034190036a410d6a200341f9036a290000370000200320032f00e1033b01e0042003200341ec036a29020037039003200341e0036a41086a28020021054100210420032802e40321020c090b412a210541cfe6c20021020b200341e0046a41026a2208200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d7e200341c3036a20034190036a41086a290300370000200341b0036a41186a2003419d036a290000370000200320032f01e0043b01b003200320053600b703200320023600b30320032003290390033700bb03200320082d00003a00b203200341e0036a200341b0036a10a401200328028004220b450d0d20034198016a41086a2202200341e0036a41346a29020037030020034198016a41106a2205200341e0036a413c6a29020037030020034198016a41186a2204200341e0036a41c4006a2902003703002003200341e0036a412c6a29020037039801200341ac046a2802002108200341e0036a41286a280200210a200341e0036a410c6a3502002106200341e0036a41186a290300210720032802e003211520032902e403210f20032903f003210c2003280284042112200341e0016a41186a22162004290300370300200341e0016a41106a22042005290300370300200341e0016a41086a2205200229030037030020032003290398013703e001200341c8006a41186a2007370300200341c8006a410c6a20063e0200200341c8006a41286a200a360200200341c8006a41246a2012360200200341c8006a41346a2005290300370200200341c8006a413c6a2004290300370200200341c8006a41c4006a20162903003702002003200c3703582003200f37024c2003200b360268200320153602482003200836029401200320032903e0013702742009450d13200e200941246c22026a21082002450d16200341a0016a2202200e41096a290000370300200341a8016a2205200e41116a290000370300200341b0016a220a200e41196a290000370300200341b7016a2215200e41206a2800003600002003200e29000137039801200e41246a2104200e2d000022164102460d17200341e0036a41096a2002290300370000200341e0036a41116a2005290300370000200341e0036a41196a200a290300370000200341e0036a41206a2015280000360000200320163a00e00320032003290398013700e103200341e0016a200341e0036a104120032d00e00122024102460d1820024101470d23200341e8016a280200210841012102410021164100210520032802e401220a0d730c760b412a210541cfe6c20021020b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d72200341336a20034190036a41086a290300370000200341206a41186a2003419d036a290000370000200320032f01e0043b01202003200536002720032002360023200320032903900337002b200320092d00003a0022200341e0036a200341206a10a4012003280280042202450d0620034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a2208200341e0036a41c4006a2902003703002003200341e0036a412c6a29020037039801200341ac046a280200210e200341e0036a41286a280200210d200341e0036a410c6a3502002106200341e0036a41186a290300210720032802e003210a20032902e403210f20032903f003210c2003280284042105200341c8006a41186a220b2008290300370300200341c8006a41106a22082009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a2007370300200341e0016a410c6a20063e0200200341e0016a41286a200d36020020034184026a2005360200200341e0016a41346a2009290300370200200341e0016a413c6a2008290300370200200341e0016a41c4006a200b2903003702002003200c3703f0012003200f3702e40120032002360280022003200a3602e0012003200e3602ac022003200329034837028c02200341e0016a412c6a220410a70120041080022005450d70200210160c700b412a210541cfe6c20021020b200341c0046a41026a2209200341c8006a41026a2d00003a0000200341e0016a41086a200341e0036a41086a290300370300200341e0016a41106a200341e0036a41106a290300370300200320032f01483b01c004200320032903e0033703e00120040d70200341c3026a200341e0016a41086a2208290300370000200341c8026a200341e0016a410d6a290000370000200320032f01c0043b01b002200320053600b702200320023600b302200320032903e0013700bb02200320092d00003a00b202200341e0036a200341b0026a10e9014101210420032d00e0034101470d05200341f2026a20032d00e3033a0000200341b0036a41086a200341f4036a290200370300200341b0036a410d6a200341f9036a290000370000200320032f00e1033b01f0022003200341ec036a2902003703b003200341e0036a41086a28020021054100210420032802e40321020c060b2001410c6a2802002102200341e0046a41086a22054200370300200342003703e0044196e9c1004115200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200341003602e803200342013703e003200320023602e001200341e0016a200341e0036a10182002450d0c20024105742108200341e0036a41086a280200210520032802e003210e20032802e4032109200b210203400240024002400240200920056b41204f0d00200541206a22042005490d792009410174220d20042004200d491b220d4100480d792009450d01200e2009200d1015220e0d020c310b200541206a21040c020b200d1013220e450d2f0b200d21090b200e20056a22052002290000370000200541186a200241186a290000370000200541106a200241106a290000370000200541086a200241086a29000037000020042105200241206a2102200841606a22080d000b200341e8036a2004360200200320093602e4032003200e3602e0030c0d0b200141086a2903002106200341e0046a41086a22024200370300200342003703e00441d19bc2004117200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200320063703e003200341d0036a4110200341e0036a410810010c6c0b410b210541b69bc20021020b200341f0026a41026a2209200341e0046a41026a2d00003a0000200341b0036a41086a20034190036a41086a290300370300200341b0036a41106a20034190036a41106a290300370300200320032f01e0043b01f00220032003290390033703b00320040d6c200341336a200341b0036a41086a290300370000200341206a41186a200341bd036a290000370000200320032f01f0023b01202003200536002720032002360023200320032903b00337002b200320092d00003a0022200341e0036a200341206a10a4012003280280042205450d0020034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a2208200341e0036a41c4006a29020037030020032003418c046a29020037039801200341ac046a280200210e200341e0036a41286a280200210d200341e0036a410c6a350200210f200341e0036a41186a290300211020032802e003210a20032902e403210c20032903f00321112003280284042102200341c8006a41186a220b2008290300370300200341c8006a41106a22082009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a2010370300200341e0016a410c6a200f3e0200200341e0016a41286a200d36020020034184026a22042002360200200341e0016a41346a2009290300370200200341e0016a413c6a2008290300370200200341e0016a41c4006a200b290300370200200320113703f0012003200c3702e40120032005360280022003200a3602e0012003200e3602ac022003200329034837028c02200341106a200341c0046a108e0102402003290310220f20032903e00122137d2214200f56200341106a41086a290300220c200341e0016a41086a29030022177d200f201354ad7d220f200c56200f200c511b0d00200341e0016a41106a200720142014200756200f200656200f2006511b22021b220720117c220c370300200341f8016a2006200f20021b220620107c200c200754ad7c3703002003200720137c220f3703e0012003200620177c200f200754ad7c3703e801200341206a200341e0016a10fd01200428020021020b2002450d6a20034180026a28020010160c6a0b41c19bc2002102411021050c6b0b410b210541b69bc20021020b20034190036a41026a2209200341f0026a41026a2d00003a00002008200341b0036a41086a290300370300200341e0016a41106a200341b0036a41106a290300370300200320032f01f0023b019003200320032903b0033703e00120040d69200341d0026a41136a200341e0016a41086a2204290300370000200341d0026a41186a200341e0016a410d6a290000370000200320032f0190033b01d002200320053600d702200320023600d302200320032903e0013700db02200320092d00003a00d202200341e0036a41206a200341206a41206a280200360200200341e0036a41186a200341206a41186a290300370300200341e0036a41106a200341206a41106a290300370300200341e0036a41086a200341206a41086a290300370300200320032903203703e003200341e0016a200341e0036a1041200341e0046a41026a20032d00e3013a000020034190036a41086a2208200341f4016a29020037030020034190036a41106a200341fc016a290200370300200320032f00e1013b01e0042003200341ec016a29020037039003410121092004280200210520032802e401210220032d00e0014101460d6a200341f0026a41136a2008290300370000200341f0026a41186a20034190036a410d6a290000370000200320032f01e0043b01f002200320053600f702200320023600f30220032003290390033700fb022003200341e2046a2d00003a00f202410e10132202450d31200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d32200220032903f00237000e200241266a20034188036a2903003700002002411e6a200341f0026a41106a290300370000200241166a200341f0026a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341e0036a41086a2005290300370300200320032903e0043703e003200341e0036a411041acf1c3004100410010002105200210162005417f470d04200341f0026a200341d0026a412010f802450d67410e10132202450d42200241066a41002900abcc41370000200241002900a5cc413700002002410e412e10152202450d43200220032903b00237000e200241266a200341b0026a41186a2903003700002002411e6a200341b0026a41106a290300370000200241166a200341b0026a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003412010132205450d44200520032903f002370000200541186a200341f0026a41186a290300370000200541106a200341f0026a41106a290300370000200541086a200341f0026a41086a290300370000200341d0036a41102005412010012005101620021016410e10132202450d4541002105200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d46200220032903d00237000e200241266a200341d0026a41186a2903003700002002411e6a200341d0026a41106a290300370000200241166a200341d0026a41086a290300370000200341e0046a41086a22044200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d0030240200341d0036a411041acf1c300410041001000417f460d00200342103702e4042003200341d0036a3602e004200341e0036a200341e0046a10e8012003280280042205450d4a200341c0046a41186a200341e0036a41186a290300370300200341c0046a41106a200341e0036a41106a290300370300200341c0046a41086a200341e0036a41086a290300370300200341e0016a41086a2003418c046a290200370300200341e0016a41106a20034194046a290200370300200341e0016a41186a2003419c046a29020037030020034180026a200341a4046a29020037030020034188026a200341ac046a280200360200200320032903e0033703c00420032003290284043703e001200341d0036a411010030b200341b0036a41186a200341c0046a41186a290300370300200341b0036a41106a200341c0046a41106a290300370300200341b0036a41086a200341c0046a41086a290300370300200341c8006a41086a200341e0016a41086a290300370300200341c8006a41106a200341e0016a41106a290300370300200341c8006a41186a200341e0016a41186a290300370300200341c8006a41206a2204200341e0016a41206a290300370300200341c8006a41286a2209200341e0016a41286a280200360200200320032903c0043703b003200320032903e0013703482005450d1b20034190036a41186a2208200341b0036a41186a29030037030020034190036a41106a220e200341b0036a41106a29030037030020034190036a41086a220d200341b0036a41086a29030037030020034198016a41086a220a200341c8006a41086a29030037030020034198016a41106a220b200341c8006a41106a29030037030020034198016a41186a2212200341c8006a41186a29030037030020034198016a41206a2215200429030037030020034198016a41286a22042009280200360200200320032903b00337039003200320032903483703980120021016200341e0036a41186a2008290300370300200341e0036a41106a200e290300370300200341e0036a41086a200d29030037030020034184046a2003290398013702002003418c046a200a29030037020020034194046a200b2903003702002003419c046a2012290300370200200341a4046a2015290300370200200341ac046a2004280200360200200320053602800420032003290390033703e003410e10132202450d4a200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d4b200220032903f00237000e200241266a20034188036a2903003700002002411e6a200341f0026a41106a290300370000200241166a200341f0026a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200341103602e4012003200341d0036a3602e001200341e0036a200341e0016a10e5012002101620034184046a280200450d6720034180046a28020010160c670b200141086a280200450d77200141046a28020010160c770b200141086a280200450d76200141046a28020010160c760b4110210541c19bc20021024100210841012109200d0d710c720b200341e0036a41206a200341c8006a41206a280200360200200341e0036a41186a200341c8006a41186a290300370300200341e0036a41106a200341c8006a41106a2903003703002004200341c8006a41086a290300370300200320032903483703e003200341e0016a200341e0036a1041200341e2046a220420032d00e3013a000020034190036a41086a200341f4016a29020037030020034190036a41106a200341fc016a290200370300200320032f00e1013b01e0042003200341ec016a29020037039003200341e0016a41086a280200210520032802e401210220032d00e0014101460d65200341ab016a20034198036a290300370000200341b0016a2003419d036a290000370000200320032f01e0043b0198012003200536009f012003200236009b0120032003290390033700a301200320042d00003a009a01410e10132202450d32200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d33200220032903980137000e200241266a20034198016a41186a22042903003700002002411e6a20034198016a41106a2209290300370000200241166a20034198016a41086a220e290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341e0036a41086a220d2005290300370300200320032903e0043703e003200341e0036a411041acf1c3004100410010002105200210162005417f460d120b41899bc2002102411921050c640b200341e0016a412c6a2205108002200320063703d802200320073703d002200320083602e002411210132202450d29200241106a41002f00d5cc413b0000200241086a41002900cdcc41370000200241002900c5cc4137000020024112413210152202450d2a200220052900003700122002412a6a200541186a290000370000200241226a200541106a2900003700002002411a6a200541086a290000370000200341e0046a41086a22044200370300200342003703e00420024132200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d0a2003421037024c2003200341d0036a360248200341e0036a200341c8006a10d70120032d00f80322094102460d2f200341f0026a41186a20034191046a290000370300200341f0026a41106a20034189046a290000370300200341f0026a41086a20034181046a29000037030020034190036a41086a200341a2046a29010037030020034190036a41106a200341aa046a29010037030020034190036a41186a200341b2046a290100370300200320032900f9033703f00220032003419a046a2901003703900320034199046a2d0000210e0c570b200341e8036a280200210420032802e403210920032802e003210e0b200341d0036a4110200e2004100102402009450d00200e10160b410121080240200a450d00200b10160b410021090c650b41a29dc200210241172105410121042012450d690c680b411810132204450d2a2004200f370300200420113703102004200c3703082005450d07200241186a21052008200e41186c6a41686a21124101210e4101210d03402005210202400340200241086a290300210c2002290300210f2010200241106a2903002211540d0142002006200c7d2007200f54ad7d220c2007200f7d220f200756200c200656200c2006511b22051b21064200200f20051b2107200241186a22022009470d000c0b0b0b0240200d200e470d00200e41016a2205200e490d66200e410174220d20052005200d491b220dad42187e2217422088a70d662017a722054100480d660240200e450d002004200e41186c2005101522040d010c2c0b200510132204450d2b0b200241186a21052004200e41186c6a220b200c370308200b200f370300200b2011370310200e41016a210e20122002470d000c090b0b4100210d0c080b200821040b200341023a00e0010b4100210a4101210241002116410021054100450d5d0c5a0b42e807210f0b024020034188026a280200220220034184026a280200470d00200241016a22052002490d5f20024101742204200520052004491b2204ad42187e2210422088a70d5f2010a722094100480d5f2002450d0520034180026a280200200241186c200910152205450d060c550b20034180026a28020021050c550b200341e0046a41086a22044200370300200342003703e004418cebc100411a200341e0046a1002200341d0036a41086a22092004290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d06200341b0016a420037030020034198016a41106a420037030020034198016a41086a42003703002003420037039801200341d0036a411020034198016a4120410010002204417f460d272004411f4d0d27200341e0036a41186a220420034198016a41186a290300370300200341e0036a41106a220920034198016a41106a290300370300200341e0036a41086a220820034198016a41086a29030037030020032003290398013703e003200341c0046a41186a220e2004290300370300200341c0046a41106a22042009290300370300200341c0046a41086a22092008290300370300200320032903e0033703c004200341206a41186a200e290300370300200341206a41106a2004290300370300200341206a41086a2009290300370300200320032903c004370320411210132204450d28200441106a41002f00d5cc413b0000200441086a41002900cdcc41370000200441002900c5cc4137000020044112413210152204450d29200420032903203700122004412a6a200341386a290300370000200441226a200341206a41106a2903003700002004411a6a200341206a41086a290300370000200341e0046a41086a22094200370300200342003703e00420044132200341e0046a1002200341d0036a41086a2009290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d2a2003421037029c012003200341d0036a36029801200341e0036a20034198016a10d70120032d00f80322094102460d2b200341e0036a41086a290300210620032802f003210820032903e0032107200341c8006a200341f9036a41c70010f6021a20034198016a200341c8006a41c10010f6021a200320093a00e003200341e0036a41017220034198016a41c10010f6021a200341e4006a20034182046a410020032d0081044101461b36020020032006370350200320073703482003200536026020032008360258200341e0046a41086a22094200370300200342003703e00420044132200341e0046a1002200341d0036a41086a2009290300370300200320032903e0043703d003200341003602a0012003420137039801200341d8006a20034198016a10182003200341c8006a3602b002200341b0026a20034198016a10b301200328029c01210920032802a00121082003280260220a450d0820092008470d09200841016a22092008490d5d2008410174220e20092009200e491b22094100480d5d2008450d0f200328029801200820091015220e450d100c3e0b4101210e4101210d0b200a450d00200810160b200341e0036a41186a201337030020034188046a200e36020020034184046a2202200d360200200341a4046a200341f0026a41186a2903003702002003419c046a20034180036a29030037020020034194046a200341f8026a290300370200200320143703f003200320073703e003200320032903f00237028c042003200436028004200320063703e803200341e0016a200341e0036a10fd012002280200450d5320034180046a28020010160c530b2009101322050d4f0b200941081014000b200341e0036a41186a2004290300370300200341e0036a41106a2009290300370300200d200e29030037030020032003290398013703e003410e10132202450d26200241066a41002900abcc41370000200241002900a5cc413700002002410e412e10152202450d272002200329032037000e200241266a200341206a41186a2903003700002002411e6a200341206a41106a290300370000200241166a200341206a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003412010132205450d28200520032903e003370000200541186a200341e0036a41186a290300370000200541106a200341e0036a41106a290300370000200541086a200341e0036a41086a290300370000200341d0036a41102005412010012005101620021016410d10132202450d29200241056a41002900d69942370000200241002900d199423700002002410d412d10152202450d2a2002200329032037000d200241256a200341206a41186a22052903003700002002411d6a200341206a41106a2204290300370000200241156a200341206a41086a2209290300370000200341e0046a41086a220e4200370300200342003703e0042002412d200341e0046a1002200341d0036a41086a200e290300370300200320032903e0043703d003200341103602e4032003200341d0036a3602e0032008200341e0036a10e401200210162003200341206a108e01200341086a290300210f2003290300210c20034188046a4100360200200341e0036a41186a200f2006200c200754200f200654200f2006511b22021b2206370300200341a4046a20052903003702002003419c046a200429030037020020034194046a200929030037020020034208370380042003200c200720021b22073703f003200320063703e803200320073703e0032003200329032037028c0420034198016a200341e0036a10fd0120034184046a280200450d5020034180046a28020010160c500b20044200370300200342003703e004418cebc100411a200341e0046a100220092004290300370300200320032903e0043703d003412010132204450d2f20042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a290000370000200341d0036a4110200441201001200410164100210e0c440b200341206a41186a2205200341f9016a290000370300200341206a41106a220a200341f1016a290000370300200341206a41086a2215200341e9016a290000370300200320032900e101370320412010132202450d2f20022003290320370000200241186a2005290300370000200241106a200a290300370000200241086a201529030037000020082004460d03200341a0016a2205200e412d6a290000370300200341a8016a220a200e41356a290000370300200341b0016a2215200e413d6a290000370300200341b7016a2216200e41c4006a2800003600002003200e29002537039801200e41c8006a2104200e41246a2d000022184102460d04200341e9036a2005290300370000200341f1036a200a290300370000200341f9036a201529030037000020034180046a2016280000360000200320183a00e00320032003290398013700e103200341e0016a200341e0036a104120032d00e00122054102460d0520054101470d0b200341e8016a2802002108410121164101210520032802e401220a0d4f0c520b20092008470d05200841016a22092008490d542008410174220e20092009200e491b22094100480d542008450d08200328029801200820091015220e450d090c330b200328029801210e0c350b200210160c4b0b200821040b200341023a00e0010b4100210a410121164101210541000d490c4c0b200328029801210e0c2e0b20091013220e0d2e0b200941011014000b20091013220e0d2a0b200941011014000b200341206a41186a2219200341f9016a290000370300200341206a41106a221a200341f1016a290000370300200341206a41086a221b200341e9016a290000370300200320032900e101370320200941246c41b87f6a211c200341e0016a410172211d200341e0036a410172211820034198016a411f6a211e4102211f4120212041022116410021154101210502400240024002400340200341e0036a41186a22212019290300370300200341e0036a41106a2222201a290300370300200341e0036a41086a2223201b290300370300200320032903203703e00302402016417f6a2005470d00201f20162016201f491b2205ad4205862206422088a70d4f2006a7220a4100480d4f20022020200a10152202450d2d0b200220206a220a20032903e003370000200a41186a2021290300370000200a41106a2022290300370000200a41086a2023290300370000201541f803460d03201c2015460d0120034198016a41086a2221200e20156a220a41d1006a29000037030020034198016a41106a2222200a41d9006a29000037030020034198016a41186a2223200a41e1006a290000370300201e200a41e8006a2800003600002003200a41c9006a29000037039801200a41c8006a2d000022244102460d022018200329039801370000201841086a2021290300370000201841106a2022290300370000201841186a20232903003700002018411f6a201e280000360000200320243a00e003200341e0016a200341e0036a104120032d00e00122214102460d04024020214101460d00200441246a21042019201d41186a290000370300201a201d41106a290000370300201b201d41086a2900003703002003201d290000370320201f41026a211f202041206a2120201641016a2116201541246a21150c010b0b200a41ec006a2104200341e8016a280200210820032802e401220a0d470c4a0b200821040c010b200a41ec006a21040b200341023a00e0014100210a41000d440c470b200a41ec006a21044100210a41000d430c460b200341f4036a4101360200200341023602e401200341c8d7c3003602e001200342013702e403200341d0d7c3003602e0032003200341e0016a3602f003200341e0036a41bc9dc2001046000b200d41011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410e41011014000b412e41011014000b410d41011014000b412d41011014000b41b6e7c20041331029000b411241011014000b413241011014000b410e41011014000b412e41011014000b200541081014000b411841081014000b41b6e7c20041331029000b410e41011014000b412e41011014000b41b6e7c20041331029000b411241011014000b413241011014000b41839cc200419f011029000b41b6e7c20041331029000b410e41011014000b412e41011014000b412041011014000b410d41011014000b412d41011014000b410e41011014000b412e41011014000b412041011014000b410e41011014000b412e41011014000b412041011014000b412041011014000b41b6e7c20041331029000b410e41011014000b412e41011014000b200a41011014000b2003200936029c012003200e360298010b200341a0016a200841016a220d360200200e20086a41003a0000200341e4006a28020022080d020c030b2003200936029c012003200e360298010b20034198016a41086a220b200841016a360200200e20086a41013a000002400240024002400240200328029c01220d200b28020022086b411f4b0d00200841206a22092008490d22200d4101742212200920092012491b22094100480d22200d450d01200e200d20091015220e450d020c030b200d21090c030b20091013220e0d010b200941011014000b2003200936029c012003200e360298010b200b200841206a220d360200200e20086a220841086a200a41086a290000370000200841106a200a41106a290000370000200841186a200a41186a2900003700002008200a290000370000200341e4006a2802002208450d010b2009200d470d08200941016a220a2009490d1c2009410174220b200a200a200b491b220a4100480d1c2009450d01200e2009200a1015220e450d020c070b2009200d470d05200941016a22082009490d1b2009410174220a20082008200a491b22084100480d1b2009450d02200e200920081015220e450d030c040b200a1013220e0d050b200a41011014000b20081013220e0d010b200841011014000b2003200836029c012003200e360298010b200341a0016a2209200d41016a360200200e200d6a41003a00002009280200210a200328029c01210e20032802980121090c020b2003200a36029c012003200e360298010b200341a0016a2209200d41016a360200200e200d6a41013a000002400240024002400240200328029c01220e2009280200220d6b41204f0d00200d41206a2209200d490d18200e410174220a20092009200a491b220a4100480d18200e450d01200328029801200e200a10152209450d020c030b20032802980121090c030b200a101322090d010b200a41011014000b2003200a36029c012003200936029801200a210e0b20034198016a41086a200d41206a220a3602002009200d6a220d41086a200841086a290000370000200d41106a200841106a290000370000200d41186a200841186a290000370000200d20082900003700000b200341d0036a41102009200a10010240200e450d00200910160b20041016200341e0046a41086a22044200370300200342003703e004418cebc100411a200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d003412010132204450d0220042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a290000370000200341d0036a41102004412010012004101620034190036a41186a200341206a41186a29030037030020034190036a41106a200341206a41106a29030037030020034190036a41086a200341206a41086a29030037030020032003290320370390034101210e0b410021090b200341e0036a41186a200341f0026a41186a290300370300200341e0036a41106a200341f0026a41106a290300370300200341e0036a41086a200341f0026a41086a290300370300200341c8006a41086a20034190036a41086a290300370300200341c8006a41106a20034190036a41106a290300370300200341c8006a41186a20034190036a41186a290300370300200320032903f0023703e0032003200329039003370348200341e0046a41086a22054200370300200342003703e00420024132200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200341003602a0012003420137039801200341d0026a41106a20034198016a10182003200341d0026a360220200341206a20034198016a10b301200328029c01210520032802a0012104024002400240024002400240024020094101470d0020052004470d01200441016a22052004490d1720044101742209200520052009491b22054100480d172004450d032003280298012004200510152209450d040c0a0b20052004470d01200441016a22052004490d1620044101742209200520052009491b22054100480d162004450d042003280298012004200510152209450d050c070b20032802980121090c090b20032802980121090c060b2005101322090d060b200541011014000b2005101322090d020b200541011014000b412041011014000b2003200536029c0120032009360298010b200341a0016a200441016a2208360200200920046a41003a00000c020b2003200536029c0120032009360298010b20034198016a41086a220d200441016a360200200920046a41013a000002400240024002400240200328029c012208200d28020022046b411f4b0d00200441206a22052004490d102008410174220a20052005200a491b22054100480d102008450d0120092008200510152209450d020c030b200821050c030b2005101322090d010b200541011014000b2003200536029c0120032009360298010b200d200441206a2208360200200920046a220441086a200341e0036a41086a290300370000200441106a200341e0036a41106a290300370000200441186a200341e0036a41186a290300370000200420032903e0033700000b0240024002400240024002400240024002400240200e41ff01714101470d0020052008470d08200541016a22042005490d142005410174220e20042004200e491b22044100480d142005450d0120092005200410152209450d020c070b20052008470d05200541016a22042005490d132005410174220e20042004200e491b22044100480d132005450d0220092005200410152209450d030c040b2004101322090d050b200441011014000b2004101322090d010b200441011014000b2003200436029c0120032009360298010b200341a0016a2205200841016a360200200920086a41003a000020052802002109200328029c01210420032802980121050c020b2003200436029c0120032009360298010b200341a0016a2205200841016a360200200920086a41013a000002400240024002400240200328029c012204200528020022086b41204f0d00200841206a22052008490d1020044101742209200520052009491b22094100480d102004450d012003280298012004200910152205450d020c030b20032802980121050c030b2009101322050d010b200941011014000b2003200936029c012003200536029801200921040b20034198016a41086a200841206a2209360200200520086a220841086a200341c8006a41086a290300370000200841106a200341c8006a41106a290300370000200841186a200341c8006a41186a290300370000200820032903483700000b200341d0036a411020052009100102402004450d00200510160b2002101620034184026a280200450d0320034180026a28020010160c030b20034184026a200436020020034180026a200536020020034188026a28020021020b2005200241186c6a220220063703082002200c3703002002200f20077c37031020034188026a2202200228020041016a360200200341206a200341e0016a10fd0120034184026a28020021020b2002450d0020034180026a28020010160b4100210241012109410121080c0d0b4101211502402005450d00200210160b200a2102200821050c030b410121090b4101210820012d00002204410f4d0d0b0c0c0b410021150b200341c8006a412c6a210a200e200941246c6a21080240034020082004460d0120042d00002109200441246a210420094102470d000b0b0240200d450d00200e10160b02402015450d004100210420120d050c060b200a10a701200320163602d802200320053602d402200320023602d00202400240024002400240024002400240024002400240411210132202450d00200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc413700002002411241321015220b450d01200b200a290000370012200b412a6a200a41186a290000370000200b41226a200a41106a290000370000200b411a6a200a41086a290000370000200341e0046a41086a22024200370300200342003703e004200b4132200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200341e0016a200341d0036a10d5010240024002400240024020032d00ec0122024102470d00200341e0046a41086a22024200370300200342003703e004419a97c200411a200341e0046a1002200341d0036a41086a22052002290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d01200341b0016a420037030020034198016a41106a420037030020034198016a41086a42003703002003420037039801200341d0036a411020034198016a4120410010002202417f460d072002411f4d0d07200341e0036a41186a220220034198016a41186a290300370300200341e0036a41106a220520034198016a41106a290300370300200341e0036a41086a220420034198016a41086a29030037030020032003290398013703e003200341c0046a41186a22092002290300370300200341c0046a41106a22022005290300370300200341c0046a41086a22052004290300370300200320032903e0033703c004200341206a41186a2009290300370300200341206a41106a2002290300370300200341206a41086a2005290300370300200320032903c004370320411210132202450d08200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc4137000020024112413210152212450d09201220032903203700122012412a6a200341386a290300370000201241226a200341306a2903003700002012411a6a200341206a41086a290300370000200341e0046a41086a22024200370300200342003703e00420124132200341e0046a1002200341d0036a41086a22052002290300370300200320032903e0043703d003200341e0036a200341d0036a10d50120032d00ec034102460d0a20032802e403211620032802e003211520032802e803210420034198016a200341ec036a41c20010f6021a200341e0036a20034198016a41c20010f6021a20032d008104211820024200370300200342003703e00420124132200341e0046a100220052002290300370300200320032903e0043703d0032003420137039801200341003602a001200320043602b002200341b0026a20034198016a101820032802a00121052004450d022004410574210d410020056b2104200328029c0121092015210203400240024002400240200920046a41204f0d00200541206a22082005490d162009410174220e20082008200e491b220e4100480d162009450d012003280298012009200e101522080d020c090b20032802980121080c020b200e10132208450d070b2003200e36029c012003200836029801200e21090b20034198016a41086a200541206a220e360200200820056a220541086a200241086a290000370000200541106a200241106a290000370000200541186a200241186a29000037000020052002290000370000200441606a2104200e2105200241206a2102200d41606a220d0d000c040b0b200341f0026a41086a200341f5016a290000370300200341f0026a41106a200341fd016a290000370300200341f0026a41186a20034185026a29000037030020034190036a41086a20034196026a29010037030020034190036a41106a2003419e026a29010037030020034190036a41186a200341a6026a2901003703002003200341ed016a2900003703f00220032003418e026a290100370390032003418d026a2d0000210520032802e401450d0e20032802e00110160c0e0b20024200370300200342003703e004419a97c200411a200341e0046a100220052002290300370300200320032903e0043703d003412010132202450d092002200a290000370000200241186a200a41186a290000370000200241106a200a41106a290000370000200241086a200a41086a290000370000200341d0036a411020024120100120021016410021050c0c0b2005210e0b024002400240200328029c01200e470d00200e41016a2202200e490d10200e4101742205200220022005491b22054100480d10200e450d01200328029801200e200510152202450d020c0b0b20032802980121020c0b0b2005101322020d090b200541011014000b200e41011014000b411241011014000b413241011014000b41b6e7c20041331029000b411241011014000b413241011014000b41839cc200419f011029000b412041011014000b2003200536029c0120032002360298010b20034198016a41086a2209200e41016a3602002002200e6a41013a000002400240024002400240200328029c012208200928020022046b411f4b0d00200441206a22052004490d082008410174220e20052005200e491b22054100480d082008450d0120022008200510152202450d020c030b200821050c030b2005101322020d010b200541011014000b2003200536029c0120032002360298010b2009200441206a220e360200200220046a220941086a200a41086a290000370000200941106a200a41106a290000370000200941186a200a41186a2900003700002009200a290000370000024002400240024002400240024002400240024002400240200341e0036a41226a410020184101461b2209450d002005200e470d01200541016a22082005490d0f2005410174220d20082008200d491b22084100480d0f2005450d0320022005200810152202450d040c090b2005200e470d01200541016a22092005490d0e20054101742208200920092008491b220d4100480d0e2005450d0420022005200d10152202450d050c060b200521080c080b2005210d0c050b2008101322020d050b200841011014000b200d101322020d010b200d41011014000b2003200d36029c0120032002360298010b200341a0016a200441216a22043602002002200e6a41003a00000c020b2003200836029c0120032002360298010b20034198016a41086a2218200441216a22053602002002200e6a41013a000002400240024002400240200820056b411f4b0d00200541206a220e2005490d092008410174220d200e200e200d491b220d4100480d092008450d0120022008200d10152202450d020c030b2008210d0c030b200d101322020d010b200d41011014000b2003200d36029c0120032002360298010b2018200441c1006a2204360200200220056a220541086a200941086a290000370000200541106a200941106a290000370000200541186a200941186a290000370000200520092900003700000b200341d0036a41102002200410010240200d450d00200210160b02402016450d00201510160b20121016200341e0046a41086a22024200370300200342003703e004419a97c200411a200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003412010132202450d052002200a290000370000200241186a200a41186a290000370000200241106a200a41106a290000370000200241086a200a41086a290000370000200341d0036a41102002412010012002101620034190036a41186a200341206a41186a29030037030020034190036a41106a200341206a41106a29030037030020034190036a41086a200341206a41086a2903003703002003200329032037039003410121050b410021020b20034185046a20053a0000200341ed036a200341f0026a41086a290300370000200341f5036a200341f0026a41106a290300370000200341fd036a200341f0026a41186a29030037000020034186046a2003290390033701002003418e046a20034190036a41086a29030037010020034196046a20034190036a41106a2903003701002003419e046a20034190036a41186a290300370100200320023a00e403200320032903f0023700e5032003200341d0026a3602e003200341e0046a41086a22024200370300200342003703e004200b4132200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200341003602e801200342013703e00120032802d00221022003200341d0026a41086a28020022053602980120034198016a200341e0016a101802402005450d002005410574210e4100200341e0016a41086a28020022056b210920032802e001210d20032802e401210803400240200820096a411f4b0d00200541206a22042005490d042008410174220a20042004200a491b22044100480d04024002402008450d00200d200820041015220d0d010c070b20041013220d450d060b200421080b200d20056a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200941606a2109200541206a2105200241206a2102200e41606a220e0d000b200341e8016a2005360200200320083602e4012003200d3602e0010b200341e0036a410472200341e0016a10f40120032802e4012102200341d0036a411020032802e0012205200341e0016a41086a280200100102402002450d00200510160b200b1016024020032802d402450d0020032802d00210160b0240200341ec006a280200450d00200341e8006a28020010160b41002108410121090b4100210220012d00002204410f4d0d080c090b1010000b200441011014000b412041011014000b200b10160b20040d00410021084101210920012d00002204410f4d0d030c040b4100210841012109200d450d010b200e101620012d00002204410f4d0d010c020b20012d00002204410f4b0d010b410120047441beff01710d01024020044106460d002004410f470d012009450d02200141086a280200450d02200141046a28020010160c020b2008450d01200141086a280200450d01200141046a28020010160c010b200141086a280200450d00200141046a28020010160b2000200536020420002002360200200341f0046a24000bfe1605017f017e017f017e067f230041d0016b220324004200210420034190016a41086a22054200370300200342003703900141bd95c300411b20034190016a1002200341a0016a41086a200529030037030020032003290390013703a0010240024002400240200341a0016a411041acf1c300410041001000417f460d002003420037032820034200370320200341a0016a4110200341206a4110410010002205417f460d022005410f4d0d02200341286a29030021062003290320210441142107411410132205450d010c030b42002106411421074114101322050d020b200741011014000b41b6e7c20041331029000b200541106a410028009e9643360000200541086a410029009696433700002005410029008e9643370000024002400240024002400240024002400240024002400240024020052007413410152205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413420034190016a1002200341a0016a41086a200729030037030020032003290390013703a0012003200137032020032002370328200341a0016a4110200341206a41101001200510162004200158200620025820062002511b0d0b411410132205450d02200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d03200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200341086a2005413410dc01200341086a41106a2903002102200329031021012003280208210820051016410e10132205450d04200541066a410029008fa04337000020054100290089a0433700002005410e412e10152205450d052005200029000037000e200541266a200041186a2900003700002005411e6a200041106a290000370000200541166a200041086a29000037000020034190016a41086a2207420037030020034200370390012005412e20034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a411010032005101602402001200284500d002008450d002003200137032020032002370328200341206a105e0b410e10132205450d06200541066a41002900abcc41370000200541002900a5cc413700002005410e412e10152205450d072005200029000037000e200541266a200041186a2900003700002005411e6a200041106a290000370000200541166a200041086a29000037000020034190016a41086a2207420037030020034200370390012005412e20034190016a1002200341c0016a41086a200729030037030020032003290390013703c00102400240200341c0016a411041acf1c300410041001000417f460d00200341206a41186a4200370300200341206a41106a4200370300200341206a41086a420037030020034200370320200341c0016a4110200341206a4120410010002207417f460d032007411f4d0d03200341a0016a41186a2207200341206a41186a2208290300370300200341a0016a41106a2209200341206a41106a220a290300370300200341a0016a41086a220b200341206a41086a220c290300370300200320032903203703a001200341c0016a411010032005101620082007290300370300200a2009290300370300200c200b290300370300200320032903a001370320410e10132205450d0a200541066a41002900ddcc41370000200541002900d7cc413700002005410e412e10152205450d0b2005200329032037000e200541266a200341386a2903003700002005411e6a200341206a41106a290300370000200541166a200341206a41086a29030037000020034190016a41086a2207420037030020034200370390012005412e20034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016410d2107410d10132205450d010c0c0b20051016410d2107410d101322050d0b0b200741011014000b413441011014000b41b6e7c20041331029000b411441011014000b413441011014000b410e41011014000b412e41011014000b410e41011014000b412e41011014000b410e41011014000b412e41011014000b200541056a41002900d69942370000200541002900d199423700000240024002400240024002400240024020052007412d10152205450d002005200029000037000d200541256a200041186a2900003700002005411d6a200041106a290000370000200541156a200041086a29000037000020034190016a41086a2207420037030020034200370390012005412d20034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016411210132205450d01200541106a41002f00bbe9413b0000200541086a41002900b3e941370000200541002900abe94137000020054112413210152205450d02200520002900003700122005412a6a200041186a290000370000200541226a200041106a2900003700002005411a6a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413220034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016200010a7012000108002411210132205450d03200541106a41002f00f2c9403b0000200541086a41002900eac940370000200541002900e2c94037000020054112413210152205450d04200520002900003700122005412a6a200041186a290000370000200541226a200041106a2900003700002005411a6a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413220034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016411810132205450d05200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0620052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413820034190016a1002200341a0016a41086a200729030037030020032003290390013703a00102400240200341a0016a411041acf1c300410041001000417f460d002003420037032820034200370320200341a0016a4110200341206a4110410010002207417f460d012007410f4d0d01200341286a29030021022003290320210141002107200510162001200284504101710d0b0c090b41012107200510164100410171450d080c0a0b41b6e7c20041331029000b412d41011014000b411241011014000b413241011014000b411241011014000b413241011014000b411841011014000b413841011014000b20070d010b200341d0016a24000f0b02400240411310132205450d002005410f6a410028009ee942360000200541086a4100290097e9423700002005410029008fe94237000020054113413310152205450d01200520002900003700132005412b6a200041186a2208290000370000200541236a200041106a22092900003700002005411b6a200041086a220a290000370000200341206a41086a220742003703002003420037032020054133200341206a1002200341a0016a41086a2007290300370300200320032903203703a001200341a0016a4110100320051016200741013a0000200341296a2000290000370000200341316a200a290000370000200341396a2009290000370000200341c1006a2008290000370000200341023a0020200341206a105a200341d0016a24000f0b411341011014000b413341011014000bdb0a05017f017e017f017e047f230041a0016b2203240042002104200341206a41086a220542003703002003420037032041bd95c300411b200341206a100220034190016a41086a20052903003703002003200329032037039001024002400240024020034190016a411041acf1c300410041001000417f460d00200342003703282003420037032020034190016a4110200341206a4110410010002205417f460d022005410f4d0d02200341286a29030021062003290320210441182107411810132205450d010c030b42002106411821074118101322050d020b200741011014000b41b6e7c20041331029000b200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000002400240024002400240024002400240024020052007413810152205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200341206a41086a220742003703002003420037032020054138200341206a100220034190016a41086a20072903003703002003200329032037039001200320013703202003200237032820034190016a4110200341206a41101001200510162004200158200620025820062002511b0d07411810132205450d02200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0320052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200341086a2005413810dc01200341086a41106a290300210220032802082107200329031021012005101602402001200284500d002007450d002003200137032020032002370328200341206a105e0b411410132205450d04200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200341206a41086a220742003703002003420037032020054134200341206a100220034190016a41086a20072903003703002003200329032037039001024020034190016a411041acf1c300410041001000417f460d00200342003703282003420037032020034190016a4110200341206a4110410010002207417f460d022007410f4d0d02200341286a29030021022003290320210141002107200510162001200284504101710d090c070b41012107200510164100410171450d060c080b413841011014000b41b6e7c20041331029000b411841011014000b413841011014000b411441011014000b413441011014000b20070d010b200341a0016a24000f0b02400240411310132205450d002005410f6a410028009ee942360000200541086a4100290097e9423700002005410029008fe94237000020054113413310152205450d01200520002900003700132005412b6a200041186a2208290000370000200541236a200041106a22092900003700002005411b6a200041086a220a290000370000200341206a41086a220742003703002003420037032020054133200341206a100220034190016a41086a2007290300370300200320032903203703900120034190016a4110100320051016200741013a0000200341296a2000290000370000200341316a200a290000370000200341396a2009290000370000200341c1006a2008290000370000200341023a0020200341206a105a200341a0016a24000f0b411341011014000b413341011014000bb20504027f017e017f037e230041206b22022400024002400240411410132203450d00200341106a410028009e9643360000200341086a410029009696433700002003410029008e964337000020034114413410152203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1002200241086a2005290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703182002420037031020024110200241106a4110410010002205417f460d022005410f4d0d02200241186a29030021062002290310210420031016411810132203450d010c050b42002106200310164118101322030d040b411841011014000b41b6e7c20041331029000b411441011014000b413441011014000b200341106a41002900b29643370000200341086a41002900aa9643370000200341002900a29643370000024020034118413810152203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1002200241086a2001290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703182002420037031020024110200241106a4110410010002201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b200310162000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41b6e7c20041331029000b413841011014000bd20301087f230041306b2201240041082102200141206a41086a22034200370300200142003703204193ecc2004115200141206a1002200141086a200329030037030020012001290320370300410021040240024002402001411041acf1c300410041001000417f460d002001421037021420012001360210200141206a200141106a102020012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d0220082000412010f802450d02200341dc006a22082000460d0220082000412010f802450d022003419c016a22082000460d0220082000412010f802450d02200341dc016a22082000460d0220034180026a210320082000412010f8020d000c020b0b024020032006460d000340410121072003411c6a22032000460d0220032000412010f802450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d00200028020010160b200041c0006a2100200341406a22030d000b0b02402005450d00200210160b200141306a240020070f0b41b6e7c20041331029000b8c0301027f230041306b22022400024002400240413210132203450d00200341306a41002f00ecd9433b0000200341286a41002900e4d943370000200341206a41002900dcd943370000200341186a41002900d4d943370000200341106a41002900ccd943370000200341086a41002900c4d943370000200341002900bcd9433700002003413241e40010152203450d0120032001290000370032200341ca006a200141186a290000370000200341c2006a200141106a2900003700002003413a6a200141086a290000370000200241206a41086a2201420037030020024200370320200341d200200241206a1002200241086a200129030037030020022002290320370300024002402002411041acf1c300410041001000417f460d002002421037021420022002360210200241206a200241106a101e20022802202201450d0420002002290224370204200020013602000c010b20004100360208200042083702000b20031016200241306a24000f0b413241011014000b41e40041011014000b41b6e7c20041331029000bda09010d7f230041d0016b2202240002400240412710132203450d002003411f6a41002900b4d943370000200341186a41002900add943370000200341106a41002900a5d943370000200341086a410029009dd94337000020034100290095d9433700002003412741ce0010152203450d0120032001370027200241d0006a41086a22044200370300200242003703502003412f200241d0006a1002200241c0006a41086a200429030037030020022002290350370340024002400240200241c0006a411041acf1c300410041001000417f460d00200241d0006a41186a22054200370300200241d0006a41106a22064200370300200241d0006a41086a22074200370300200242003703504100210802404100200241c0006a4110200241d0006a41204100100022042004417f461b2204411f4d0d00200241186a22082005290300370300200241106a22052006290300370300200241086a2206200729030037030020022002290350370300200241b0016a41186a2008290300370300200241b0016a41106a2005290300370300200241b0016a41086a2006290300370300200220022903003703b001410121080b200241d0006a41186a2205200241b0016a41186a290300370300200241d0006a41106a2206200241b0016a41106a290300370300200241d0006a41086a2207200241b0016a41086a290300370300200220022903b0013703502008450d0220024190016a41186a200529030037030020024190016a41106a200629030037030020024190016a41086a2007290300370300200220022903503703900120054200370300200642003703002007420037030020024200370350200241c0006a4110200241d0006a41202004412020044120491b220710002204417f460d022004411f4d0d02200241186a2204200241d0006a41186a2208290300370300200241106a2205200241d0006a41106a2209290300370300200241086a2206200241d0006a41086a220a29030037030020022002290350370300200241b0016a41186a220b2004290300370300200241b0016a41106a220c2005290300370300200241b0016a41086a220d2006290300370300200220022903003703b001200241003a0050200241c0006a4110200241d0006a4101200741206a100041016a41014d0d0220022d00502107200820024190016a41186a290300370300200920024190016a41106a290300370300200a20024190016a41086a290300370300200241d0006a41286a220e200d290300370300200241d0006a41306a220d200c290300370300200241d0006a41386a220c200b2903003703002002200229039001370350200220022903b001370370200241386a220b200c290300370300200241306a220c200d290300370300200241286a220d200e290300370300200241206a220e200229037037030020042008290300370300200520092903003703002006200a29030037030020022002290350370300200041386a200b290300370000200041306a200c290300370000200041286a200d290300370000200041206a200e290300370000200041186a2004290300370000200041106a2005290300370000200041086a2006290300370000200020022903003700000c010b410221070b200020073a004020031016200241d0016a24000f0b41b6e7c20041331029000b412741011014000b41ce0041011014000bde0504027f017e067f017e230041d0006b2202240002400240411710132203450d002003410f6a41002900ccf740370000200341086a41002900c5f740370000200341002900bdf74037000020034117413710152203450d01200320012900003700172003412f6a200141186a290000370000200341276a200141106a2900003700002003411f6a200141086a290000370000200241306a41086a220142003703002002420037033020034137200241306a1002200241086a2001290300370300200220022903303703000240024002402002411041acf1c300410041001000417f460d0020024200370330410020024110200241306a41084100100022012001417f461b220141074d0d0220022903302104200241003a003020024110200241306a41012001410820014108491b2201100041016a41014b2205450d0220022d00300d02200241c8006a4200370300200241306a41106a4200370300200241386a42003703002002420037033020024110200241306a4120200120056a220610002201417f460d022001411f4d0d02200241106a41186a2201200241306a41186a2207290300370300200241106a41106a2205200241306a41106a2208290300370300200241106a41086a2209200241306a41086a220a290300370300200220022903303703102002420037033020024110200241306a41082006412072100041016a41084d0d022002290330210b2007200129030037030020082005290300370300200a20092903003703002002200229031037033020012007290300370300200520082903003703002009200a29030037030020022002290330370310200041106a200b3703002000200437030820004201370300200041186a2002290310370300200041206a2009290300370300200041286a2005290300370300200041306a20012903003703000c010b200042003703000b20031016200241d0006a24000f0b41b6e7c20041331029000b411741011014000b413741011014000ba40c03067f047e027f230041b0016b2202240002400240412310132203450d002003411f6a41002800e8cd42360000200341186a41002900e1cd42370000200341106a41002900d9cd42370000200341086a41002900d1cd42370000200341002900c9cd423700002003412341c60010152203450d01200320012900003700232003413b6a200141186a290000370000200341336a200141106a2900003700002003412b6a200141086a29000037000020024190016a41086a220142003703002002420037039001200341c30020024190016a1002200241086a200129030037030020022002290390013703000240024002402002411041acf1c300410041001000417f460d0020024190016a41186a2204420037030020024190016a41106a2205420037030020024190016a41086a22064200370300200242003703900141002002411020024190016a41204100100022012001417f461b2201411f4d0d02200241f0006a41186a22072004290300370300200241f0006a41106a22042005290300370300200241f0006a41086a220520062903003703002002200229039001370370200241d0006a41186a22062007290300370300200241d0006a41106a22072004290300370300200241d0006a41086a2204200529030037030020022002290370370350200241106a41186a2006290300370300200241106a41106a2007290300370300200241106a41086a200429030037030020022002290350370310200242003703900141002002411020024190016a41082001412020014120491b2204100022012001417f461b220141074d0d022002290390012108200242003703900141002002411020024190016a41082001410820014108491b20046a2204100022012001417f461b220141074d0d022002290390012109200242003703900141002002411020024190016a41082001410820014108491b20046a2204100022012001417f461b220141074d0d02200229039001210a200242003703900141002002411020024190016a41082001410820014108491b20046a2204100022012001417f461b220141074d0d02200229039001210b200241a8016a420037030020024190016a41106a420037030020024190016a41086a420037030020024200370390012002411020024190016a41202001410820014108491b20046a220110002204417f460d0220044120490d02200241f0006a41186a220420024190016a41186a290300370300200241f0006a41106a220520024190016a41106a290300370300200241f0006a41086a220620024190016a41086a2903003703002002200229039001370370200241d0006a41186a22072004290300370300200241d0006a41106a22042005290300370300200241d0006a41086a2205200629030037030020022002290370370350200241306a41186a2007290300370300200241306a41106a2004290300370300200241306a41086a200529030037030020022002290350370330200241003a0090012002411020024190016a4101200141206a100041016a41014d0d0220022d009001220141034f0d0220024190016a41186a2204200241106a41186a29030037030020024190016a41106a2205200241106a41106a29030037030020024190016a41086a2206200241106a41086a290300370300200241f0006a41086a2207200241306a41086a290300370300200241f0006a41106a220c200241306a41106a290300370300200241f0006a41186a220d200241306a41186a2903003703002002200229031037039001200220022903303703702002200241d0006a41036a280000360033200220022800503602302000200b3703182000200a37031020002009370308200020083703002000200229039001370320200041286a2006290300370300200041306a2005290300370300200041386a200429030037030020002002290370370340200041c8006a2007290300370300200041d0006a200c290300370300200041d8006a200d2903003703002002200228003336005320022002280230360250200020013a006020002002280250360061200041e4006a20022800533600000c010b200041033a00600b20031016200241b0016a24000f0b41b6e7c20041331029000b412341011014000b41c60041011014000bdc0202027f027e230041206b2202240002400240411410132203450d00200341106a410028009e9643360000200341086a410029009696433700002003410029008e964337000020034114413410152203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1002200241086a2001290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703182002420037031020024110200241106a4110410010002201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b200310162000200537030820002004370300200241206a24000f0b41b6e7c20041331029000b411441011014000b413441011014000bdd0101017f23004180026b2201240020014188016a200010910102402001280288014101470d002001200129028c0137020c2001410136020820014180026a240041000f0b200141086a20014188016a41086a29030010c001024020012802084101470d0020014180026a240041000f0b20014188016a200141086a41086a41f80010f6021a20012d00fc0121000240200141dc016a280200450d0020012802d80110160b0240200141e8016a280200450d0020012802e40110160b0240200141f4016a280200450d0020012802f00110160b20014180026a24002000450bff0b01037f024020002802002201280200417f6a220241104b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e11001a1a1a01021a0304050607081a1a090a000b200141086a280200220241064b0d10024020020e071a001a121a13141a0b200141106a280200450d192001410c6a2802001016200028020010160f0b200141086a2d00002202410e4b0d1720024106470d18200141106a280200450d182001410c6a2802001016200028020010160f0b20012802044101470d17200141086a109001200028020010160f0b200141086a280200450d1620012802041016200028020010160f0b200141086a2d00004101470d150240200141106a280200450d002001410c6a28020010160b02402001411c6a280200450d00200141186a28020010160b200141286a280200450d15200141246a2802001016200028020010160f0b200141086a2d00004103470d14200141d0006a280200450d14200141cc006a2802001016200028020010160f0b200141086a2d00004101470d13200141106a280200450d132001410c6a2802001016200028020010160f0b200141086a280200450d1220012802041016200028020010160f0b200141086a2d0000417f6a220241054b0d11024020020e06000405060708000b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d11200141286a280200450d1120021016200028020010160f0b200141086a28020022024102460d0120024101470d10200141106a280200450d102001410c6a2802001016200028020010160f0b200141086a2d0000220241064b0d0a20020e070f0f0f0f0b0c0d0f0b200141106a280200450d0e2001410c6a2802001016200028020010160f0b200141106a280200450d0d2001410c6a2802001016200028020010160f0b200141106a280200450d0c2001410c6a2802001016200028020010160f0b200141106a280200450d0b2001410c6a2802001016200028020010160f0b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d0a200141286a280200450d0a20021016200028020010160f0b02402001412c6a2802002202450d00200141306a280200450d00200210160b0240200141386a2802002202450d002001413c6a280200450d00200210160b200141c4006a2802002202450d09200141c8006a280200450d0920021016200028020010160f0b0240200141146a2802002203450d002001410c6a28020021022003410c6c210303400240200241046a280200450d00200228020010160b2002410c6a2102200341746a22030d000b0b200141106a280200450d082001410c6a2802001016200028020010160f0b200141106a280200450d072001410c6a2802001016200028020010160f0b200141106a280200450d062001410c6a2802001016200028020010160f0b0240200141146a2802002203450d002001410c6a2802002102200341186c210303400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200341686a22030d000b0b200141106a280200450d052001410c6a2802001016200028020010160f0b200141106a280200450d042001410c6a2802001016200028020010160f0b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d03200141d0006a280200450d0320021016200028020010160f0b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d02200141d0006a280200450d0220021016200028020010160f0b200141106a280200450d012001410c6a2802001016200028020010160f0b200141106a280200450d002001410c6a2802001016200028020010160f0b200028020010160bef0202027f017e230041206b2202240002400240411e10132203450d00200341166a41002900f89141370000200341106a41002900f29141370000200341086a41002900ea9141370000200341002900e291413700002003411e413e10152203450d012003200129000037001e200341366a200141186a2900003700002003412e6a200141106a290000370000200341266a200141086a290000370000200241106a41086a22014200370300200242003703102003413e200241106a1002200241086a2001290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703104100210120024110200241106a41084100100041016a41084d0d022002290310210420031016200041086a20043703000c010b20031016200041086a4120360200200041a491c100360204410121010b20002001360200200241206a24000f0b41b6e7c20041331029000b411e41011014000b413e41011014000bb40401027f230041e0026b22042400200441d8016a2002108d01024002400240024020042d00b8024103470d004185c9c3002101411f21020c010b20042802d8012105200441f0006a200441d8016a41047241e40010f6021a20042005360208200441086a410472200441f0006a41e40010f6021a0240200441c8006a22052001460d0020052001412010f802450d0041acccc2002101413721020c010b200420033a0068200441f0006a41186a200241186a290000370300200441f0006a41106a200241106a290000370300200441f0006a41086a200241086a29000037030020042002290000370370200441d8016a200441086a41e80010f6021a412310132202450d01410021012002411f6a41002800e8cd42360000200241186a41002900e1cd42370000200241106a41002900d9cd42370000200241086a41002900d1cd42370000200241002900c9cd423700002002412341c60010152202450d02200220042903703700232002413b6a20044188016a290300370000200241336a200441f0006a41106a2903003700002002412b6a200441f0006a41086a290300370000200441d0026a41086a22034200370300200442003703d002200241c300200441d0026a1002200441c0026a41086a2003290300370300200420042903d0023703c002200441103602d4022004200441c0026a3602d002200441d8016a200441d0026a109c01200210160b2000200236020420002001360200200441e0026a24000f0b412341011014000b41c60041011014000bb70201027f0240024002400240024002402000280200220141064b0d0020010e0705010502050304050b02402000410c6a2802002202450d00200028020421012002410c6c210203400240200141046a280200450d00200128020010160b2001410c6a2101200241746a22020d000b0b200041086a280200450d04200041046a28020010160f0b200041086a280200450d03200028020410160f0b200041086a280200450d02200028020410160f0b200041086a280200450d01200028020410160f0b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d00200128020010160b0240200141106a280200450d002001410c6a28020010160b200141186a2101200241686a22020d000b0b200041086a280200450d00200041046a28020010160f0b0b910301037f230041306b2202240002400240411e10132203450d00200341166a41002900da9141370000200341106a41002900d49141370000200341086a41002900cc9141370000200341002900c491413700002003411e413c10152203450d012003200137001e200241106a41086a220442003703002002420037031020034126200241106a1002200241086a2004290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200241286a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010002204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031016200241306a24000f0b41b6e7c20041331029000b411e41011014000b413c41011014000b880503047f017e077f230041e0016b22032400200341d0006a200110c0010240024020032802504101470d0020032802582104200328025421050c010b2003200341d0006a41086a220641d00010f602220441c8016a2903002107200441c4016a2802002108200441c0016a2802002109200441b8016a280200210a200441b4016a280200210b200441b0016a280200210c200441ac016a280200210d200441a8016a280200210e200241086a2802002105200642003703002004420037035041c4afc100411d200441d0006a1002200441d0016a41086a2006290300370300200420042903503703d00102400240024002400240024002400240200441d0016a411041acf1c300410041001000417f460d0020044100360250200441d0016a4110200441d0006a41044100100041016a41044d0d02200428025020054f0d010c070b4180082005490d060b2005417f4c0d0102402005450d0020022802002106200510132202450d0320022006200510f6021a200a450d050c040b41012102200a0d030c040b41b6e7c20041331029000b100f000b200541011014000b200b10160b200441e0006a2001370300200441d8006a41023a00002004410b3a0050200441d0006a105a200441d0006a200441d00010f6021a200441c0016a2007370300200441bc016a2008360200200441b4016a2005360200200441b0016a2005360200200441a8016a200c360200200441a4016a200d360200200420093602b801200420023602ac012004200e3602a0012001200441d0006a10cb01410021050c010b0240200d450d00200e10160b0240200a450d00200b10160b02402008450d00200910160b41b1afc1002105411321040b2000200436020420002005360200200341e0016a24000bda0c03047f017e0c7f230041e0016b22032400200341d0006a200110c00102400240024020032802504101470d002003280258210420032802542105200241046a2802000d010c020b2003200341d0006a41086a220641d00010f602220441c8016a2903002107200441c4016a2802002108200441c0016a2802002109200441bc016a280200210a200441b8016a280200210b200441b4016a280200210c200441b0016a280200210d200441ac016a280200210e200441a8016a280200210f200241086a2802002105200642003703002004420037035041fdaec100411a200441d0006a1002200441d0016a41086a2006290300370300200420042903503703d001024002400240024002400240024002400240024002400240024002400240200441d0016a411041acf1c300410041001000417f460d0020044100360250200441d0016a4110200441d0006a41044100100041016a41044d0d02200428025020054d0d010c0c0b410520054b0d0b0b200441d0006a41086a22064200370300200442003703504197afc100411a200441d0006a1002200441d0016a41086a2006290300370300200420042903503703d00102400240200441d0016a411041acf1c300410041001000417f460d0020044100360250200441d0016a4110200441d0006a41044100100041016a41044d0d03200428025020054f0d010c0b0b41282005490d0a0b411210132206450d03200641106a41002f00a4ad413b0000200641086a410029009cad4137000020064100290094ad4137000020044292808080a0023702542004200636025020022802002110200420053602d001200441d0016a200441d0006a1018024002400240024020042802542211200428025822126b20054f0d00201220056a22062012490d0620114101742213200620062013491b22134100480d062011450d01200428025020112013101522060d020c080b200428025021060c020b201310132206450d060b2004201336025420042006360250201321110b200620126a2010200510f6021a200441d0006a41086a22134200370300200442003703502006201220056a200441d0006a1002200441d0016a41086a2013290300370300200420042903503703d001200441d0016a411041acf1c300410041001000211202402011450d00200610160b02402012417f460d0041d7acc100210541192104200e0d0c0c0d0b411210132206450d05200641106a41002f00a4ad413b0000200641086a410029009cad4137000020064100290094ad4137000020044292808080a002370254200420063602502004200d3602d001200441d0016a200441d0006a1018024002400240024020042802542211200428025822126b200d4f0d002012200d6a22062012490d0620114101742213200620062013491b22134100480d062011450d01200428025020112013101522060d020c0c0b200428025021060c020b201310132206450d0a0b2004201336025420042006360250201321110b200620126a200f200d10f6021a200441d0006a41086a221342003703002004420037035020062012200d6a200441d0006a1002200441d0016a41086a2013290300370300200420042903503703d001200441d0016a4110100302402011450d00200610160b2005417f4c0d06024002402005450d00200510132206450d0920062010200510f6021a0c010b410121060b200420053602582004200536025420042006360250200441d0006a200110cc01200228020421020240200e450d00200f10160b200441e0006a2001370300200441d8006a41033a00002004410b3a0050200441d0006a105a200441d0006a200441d00010f6021a200441c0016a2007370300200441bc016a2008360200200441b4016a200a360200200441b0016a200b360200200441a8016a2005360200200441a4016a2002360200200420093602b8012004200c3602ac01200420103602a0012001200441d0006a10cb01410021050c0e0b41b6e7c20041331029000b41b6e7c20041331029000b1010000b411241011014000b201341011014000b411241011014000b100f000b200541011014000b201341011014000b410f210441eeaec1002105200e0d010c020b4110210441deaec1002105200e450d010b200f10160b0240200b450d00200c10160b02402008450d00200910160b200241046a280200450d010b200228020010160b2000200436020420002005360200200341e0016a24000bff0303027f017e037f23004180026b22032400200341f0006a200110c0010240024020032802704101470d0020032802782104200328027421020c010b200341086a200341f8006a41e80010f6021a024002400240024020022802082204417f4c0d00200341e8016a2903002105200341e4016a2802002106200341e0016a2802002107024002402004450d0020022802002108200410132202450d0320022008200410f6021a0c010b410121020b200341f0006a41086a220842003703002003420037037041e1afc100411d200341f0006a1002200341f0016a41086a2008290300370300200320032903703703f00102400240200341f0016a411041acf1c300410041001000417f460d0020034100360270200341f0016a4110200341f0006a41044100100041016a41044d0d01200328027022082004200420084b1b21082006450d050c040b418010200420044180104b1b210820060d030c040b41b6e7c20041331029000b100f000b200441011014000b200710160b20034180016a2001370300200341f8006a41013a00002003410b3a0070200341f0006a105a200341f0006a200341086a41e80010f6021a200341e0016a2005428080808070832008ad84370300200341dc016a2004360200200320023602d8012001200341f0006a10cb01410021020b200020043602042000200236020020034180026a24000bb20703067f027e027f230041106b2203240020032001360208200341086a200210180240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101522070d020c090b200228020021070c020b200110132207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101522070d020c0a0b200228020021070c020b200110132207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101802402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101522080d020c090b200228020021080c020b200710132208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101522080d020c0a0b200228020021080c020b200710132208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011014000b200741011014000b200141011014000b200141011014000bce0d03067f017e027f230041306b22022400024002400240024002400240024002400240412110132203450d00200341206a41002d00dbdc423a0000200341186a41002900d3dc42370000200341106a41002900cbdc42370000200341086a41002900c3dc42370000200341002900bbdc423700002003412141c20010152204450d0120042000290000370021200441396a200041186a290000370000200441316a200041106a290000370000200441296a200041086a290000370000200241186a41086a2203420037030020024200370318200441c100200241186a1002200241086a41086a2003290300370300200220022903183703082002410036022020024201370318412010132203450d022002412036021c200241186a41086a22052005280200220641206a220736020020022003360218200320066a220041086a200141386a290000370000200041106a200141c0006a290000370000200041186a200141c8006a29000037000020002001290030370000200129030021080240410020066b41074b0d00200741086a22002007490d07200041c000200041c0004b1b22004100480d0720034120200010152203450d042002200036021c20022003360218200241206a28020021070b2005200741086a2200360200200320076a200837000020012903082108024002400240200228021c220320006b41084f0d00200041086a22072000490d0920034101742200200720072000491b22004100480d092003450d0120022802182003200010152203450d020c070b200228021821030c070b2000101322030d050b200041011014000b412141011014000b41c20041011014000b412041011014000b200041011014000b2002200036021c20022003360218200241206a28020021000b200241186a41086a2209200041086a360200200320006a2008370000200128021821032002200141206a280200220036022c2002412c6a200241186a1018024002400240024002400240024002402000450d002000410574210a20092802002107200228021c210503400240024002400240200520076b41204f0d00200741206a22002007490d0d20054101742207200020002007491b22074100480d0d2005450d01200228021820052007101522060d020c070b20022802182106200721000c020b200710132206450d050b2002200736021c2002200636021820092802002100200721050b2009200041206a2207360200200620006a220041086a200341086a290000370000200041106a200341106a290000370000200041186a200341186a29000037000020002003290000370000200341206a2103200a41606a220a0d000c020b0b200928020021070b200228021c2103024002400240024002400240024020012d00504101470d0020032007470d01200741016a22032007490d0d20074101742200200320032000491b22034100480d0d2007450d0320022802182007200310152205450d040c0a0b20032007470d01200741016a22032007490d0c20074101742200200320032000491b22034100480d0c2007450d0420022802182007200310152205450d050c070b200228021821050c090b200228021821050c060b2003101322050d060b200341011014000b2003101322050d020b200341011014000b200741011014000b2002200336021c20022005360218200241206a28020021070b200241206a200741016a2200360200200520076a41003a00000c020b2002200336021c200220053602180b200241206a200741016a2200360200200520076a41013a00000b200129031021080240200320006b41074b0d00200041086a22072000490d0120034101742206200720072006491b22074100480d010240024002402003450d0020052003200710152205450d010c020b2007101322050d010b200741011014000b2002200736021c200220053602180b200241186a41086a2206200041086a360200200520006a20083700002001280224210720022001412c6a280200220336022c2002412c6a200241186a1018024002400240200228021c2205200628020022006b20034f0d00200020036a22062000490d0320054101742200200620062000491b22004100480d032005450d0120022802182005200010152205450d020c040b200228021821050c040b2000101322050d020b200041011014000b1010000b2002200036021c20022005360218200241206a28020021000b200241206a2206200020036a360200200520006a2007200310f6021a200228021c2103200241086a4110200228021822002006280200100102402003450d00200010160b2004101602402001411c6a280200450d00200141186a28020010160b0240200141286a280200450d00200710160b200241306a24000b980201037f230041306b22012400024002400240411710132202450d002002410f6a41002900e3f740370000200241086a41002900dcf740370000200241002900d4f74037000020024117412e10152202450d01200241003a0017200141206a41086a220342003703002001420037032020024118200141206a1002200141086a200329030037030020012001290320370300024002402001411041acf1c300410041001000417f460d002001421037021420012001360210200141206a200141106a101120012802202203450d0420002001290224370204200020033602000c010b20004100360208200042013702000b20021016200141306a24000f0b411741011014000b412e41011014000b41b6e7c20041331029000bc609010c7f230041206b220224002001280204412b200128020022031b210420034195b0c10020031b2105024002400240024002400240024002400240024002400240024002400240024002402003450d00200141086a2802002103200241106a41086a220642003703002002420037031041fdaec100411a200241106a1002200241086a2006290300370300200220022903103703002002411041acf1c300410041001000417f460d012002410036021020024110200241106a41044100100041016a41044d0d03200228021020034d0d020c0b0b2000200536020420004101360200200041086a2004360200200128020c2200450d0d0c0c0b410520034b0d090b200241106a41086a22064200370300200242003703104197afc100411a200241106a1002200241086a200629030037030020022002290310370300024002402002411041acf1c300410041001000417f460d002002410036021020024110200241106a41044100100041016a41044d0d03200228021020034f0d010c090b41282003490d080b024002400240024020012802182207450d00200141206a2802002206417f4c0d072001411c6a28020021082006450d01200610132209450d084100210a2007210b0c030b4101210a4101210741002108410021064101210b0c010b4101210a410021062007210b0b410121090b2009200b200610f602210c200241106a41086a220b42003703002002420037031041e1afc100411d200241106a1002200241086a200b2903003703002002200229031037030002402002411041acf1c300410041001000417f460d002002410036021020024110200241106a41044100100041016a41044d0d032002280210210b2008450d070c060b418010210b20080d050c060b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b200641011014000b200710160b200141106a2802002107200141146a2802002108200128020c2101200241106a41086a220942003703002002420037031041c4afc100411d200241106a1002200241086a2009290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d002002410036021020024110200241106a41044100100041016a41044d0d02200228021021090c010b41800821090b2007410020011b21072001410120011b210d024020092008410020011b22014f0d0020004101360200200041086a4113360200200041046a41b1afc10036020002402007450d00200d10160b0240200a0d00200c10160b2004450d0820051016200241206a24000f0b20004100360200200041246a200b20062006200b4b1b360200200041206a20063602002000411c6a200c360200200041186a2001360200200041146a2007360200200041106a200d3602002000410c6a2003360200200041086a2004360200200041046a2005360200200241206a24000f0b41b6e7c20041331029000b410f210341eeaec10021060c010b4110210341deaec10021060b2000200636020420004101360200200041086a200336020002402004450d00200510160b200128020c2200450d010b200141106a280200450d0020001016200128021822000d010c020b20012802182200450d010b2001411c6a280200450d00200010160b200241206a24000bbd0202017f017e024002400240412010132202450d0020022000290020370000200241186a200041386a290000370000200241106a200041306a290000370000200241086a200041286a290000370000200029030021032002412041c00010152202450d0120022003370020200220002903083700282002200029031037003020022000290318370038200241c00041800110152202450d0220022000290040370040200241d8006a200041d8006a290000370000200241d0006a200041d0006a290000370000200241c8006a200041c8006a29000037000002400240024020002d006022004101460d0020004102470d01200241023a00600c020b200241013a00600c010b200241003a00600b20012802002001280204200241e1001001200210160f0b412041011014000b41c00041011014000b41800141011014000b910604027f017e017f037e230041306b2203240002400240024002400240411410132204450d00200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341206a41086a220642003703002003420037032020044134200341206a1002200341106a41086a200629030037030020032003290320370310024002400240200341106a411041acf1c300410041001000417f460d002003420037032820034200370320200341106a4110200341206a4110410010002206417f460d022006410f4d0d02200341286a2903002107200329032021050c010b420021070b2004101641a3c5c30021040240024020052001542206200720025420072002511b0d00200341086a20004104200520017d2205200720027d2006ad7d220710a30120032802082204450d010b200341306a240020040f0b411810132204450d04200441106a41002900b29643370000200441086a41002900aa9643370000200441002900a2964337000020044118413810152204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341206a41086a220642003703002003420037032020044138200341206a1002200341106a41086a20062903003703002003200329032037031002400240200341106a411041acf1c300410041001000417f460d002003420037032820034200370320200341106a4110200341206a4110410010002206417f460d052006410f4d0d05200341286a2903002109200329032021080c010b420021090b200410162000200820017c2201200920027c2001200854ad7c108701200020052007108601200341306a240041000f0b41b6e7c20041331029000b411441011014000b413441011014000b41b6e7c20041331029000b411841011014000b413841011014000b4d01017f230041206b22002400200041146a41013602002000410236021c200041c8d7c30036021820004201370204200041d0d7c3003602002000200041186a360210200041a8bcc1001046000b910f07027f017e067f017e017f017e037f230041a0016b2203240020034190016a41086a22044200370300200342003703900141feafc100411720034190016a100220034180016a41086a2004290300370300200320032903900137038001024002400240024002400240024002400240024002400240024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d012003290308210520012802082204417f4c0d030c020b4201210520012802082204417f4a0d010c020b41b6e7c20041331029000b20012802002106024002402004450d00200410132207450d0820072006200410f6021a0c010b410121070b200141146a2802002208417f4c0d00024002402008450d00200128020c210920081013220a450d09200a2009200810f6021a0c010b4101210a0b200141206a2802002209417f4c0d00024002402009450d002001280218210120091013220b450d0a200b2001200910f6021a0c010b4101210b0b4200210c20034190016a41086a220142003703002003420037039001419be8c200410d20034190016a100220034180016a41086a220d20012903003703002003200329039001370380014200210e024002400240024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d012003290308210e0b20014200370300200342003703900141ee94c300410d20034190016a1002200d2001290300370300200320032903900137038001024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d022003290308210c0b200341086a41186a200041186a290000370300200341086a41106a200041106a290000370300200341086a41086a200041086a29000037030020032000290000370308411e10132201450d04200141166a41002900f89141370000200141106a41002900f29141370000200141086a41002900ea9141370000200141002900e291413700002001411e413e10152201450d052001200329030837001e200141366a200341086a41186a220d2903003700002001412e6a200341086a41106a220f290300370000200141266a200341086a41086a221029030037000020034190016a41086a2211420037030020034200370390012001413e20034190016a100220034180016a41086a2011290300370300200320032903900137038001200320053703900120034180016a411020034190016a4108100120011016200d200041186a290000370300200f200041106a2900003703002010200041086a29000037030020032000290000370308411e10132200450d06200041166a41002900da9141370000200041106a41002900d49141370000200041086a41002900cc9141370000200041002900c491413700002000411e413c10152201450d072001200537001e20034190016a41086a2200420037030020034200370390012001412620034190016a100220034180016a41086a2000290300370300200320032903900137038001412010132200450d0820002003290308370000200041186a200341086a41186a290300370000200041106a200341086a41106a290300370000200041086a200341086a41086a29030037000020034180016a41102000412010012000101620011016200341f8006a2009360200200341f4006a2009360200200341ec006a2008360200200341e8006a2008360200200341e0006a2004360200200341dc006a2004360200200341086a41206a200241086a290300370300200341306a200241106a290300370300200341386a200241186a290300370300200341c0006a200241206a2903003703002003200c3703182003200e37031020032005370308200341003a007c2003200b3602702003200a360264200320073602582003420037034820032002290300370320200341ff006a200341076a2d00003a0000200320032f00053b007d2005200341086a10cb01024002402004450d00200410132200450d0e20002006200410f6021a0c010b410121000b200320043602102003200436020c20032000360208200341086a200510cc0120034190016a41086a22044200370300200342003703900141feafc100411720034190016a100220034180016a41086a20042903003703002003200329039001370380010240024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d04200329030842017c210c0c010b4202210c0b20034190016a41086a22044200370300200342003703900141feafc100411720034190016a100220034180016a41086a20042903003703002003200329039001370380012003200c37030820034180016a4110200341086a41081001200341a0016a240020050f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b411e41011014000b413e41011014000b411e41011014000b413c41011014000b412041011014000b200441011014000b200841011014000b200941011014000b200441011014000bde0202027f027e230041206b2203240002400240411410132204450d00200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1002200341086a2000290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b20041016200341206a2400200520015a200620025a20062002511b0f0b41b6e7c20041331029000b411441011014000b413441011014000be10604027f017e017f057e230041206b2204240002400240024002400240411410132205450d00200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441106a41086a220742003703002004420037031020054134200441106a1002200441086a2007290300370300200420042903103703000240024002402004411041acf1c300410041001000417f460d00200442003703182004420037031020044110200441106a4110410010002207417f460d022007410f4d0d02200441186a2903002108200429031021090c010b42002109420021080b2005101620012009200220092009200256200820035620082003511b22051b220a7d20082003200820051b220b7d2009200a54ad7d10860102400240024002402002200a7d22092003200b7d2002200a54ad7d220c84500d00411810132205450d08200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0920052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002102200441106a41086a220742003703002004420037031020054138200441106a1002200441086a2007290300370300200420042903103703002004411041acf1c300410041001000417f460d01200442003703182004420037031020044110200441106a4110410010002207417f460d072007410f4d0d07200441186a2903002103200429031021020c020b4200210c0c020b420021030b20051016200120022009200220022009562003200c562003200c511b22051b22087d2003200c200320051b22067d2002200854ad7d108701200c20067d2009200854ad7d210c2006200b7c2008200a7c2202200854ad7c2103200920087d21060b2000200637031020002002370300200041186a200c37030020002003370308200441206a24000f0b41b6e7c20041331029000b411441011014000b413441011014000b41b6e7c20041331029000b411841011014000b413841011014000b890303047f017e027f230041306b22032400200341206a41086a220442003703002003420037032020002001200341206a1002200341086a41086a20042903003703002003200329032037030820034100360228200342013703202002280200210120032002280208220236021c2003411c6a200341206a101802400240024002402002450d002002410374210520042802002102200328022421060340200129030021070240024002400240200620026b41084f0d00200241086a22002002490d0720064101742208200020002008491b22094100480d072006450d01200328022020062009101522080d020c080b200241086a2100200328022021080c020b200910132208450d060b2003200936022420032008360220200921060b200141086a210120042000360200200820026a200737000020002102200541786a22050d000c020b0b2004280200210020032802242106200328022021080b200341086a411020082000100102402006450d00200810160b200341306a24000f0b1010000b200941011014000ba90404027f017e027f017e230041d0006b220524000240024002400240200241ff017122064102460d0020064104470d02200541106a200110b8022005290310200356200541186a290300220720045620072004511b0d010c020b2005200110b8022005290300200358200541086a290300220720045820072004511b0d010b41ceb8c3002101412621060c010b200541206a200110b902024002400240024002402005280228450d0042002107200541c0006a41086a2206420037030020054200370340419be8c200410d200541c0006a1002200541306a41086a2006290300370300200520052903403703300240200541306a411041acf1c300410041001000417f460d0020054200370340200541306a4110200541c0006a41084100100041016a41084d0d03200529034021070b200541c0006a200110b9022005280244210820052802402109024020052802482201450d00200141286c210620092101034002402007200141106a2903005a0d002001290300200358200141086a290300220a200458200a2004511b0d00200141206a2d000020027141ff0171200241ff0171460d040b200141286a2101200641586a22060d000b0b410021012008450d040c030b02402005280224450d00200528022010160b410021010c040b41f4b8c300210120080d010c020b41b6e7c20041331029000b200910160b02402005280224450d00200528022010160b413121060b2000200636020420002001360200200541d0006a24000bc80401077f230041a0016b22022400024002400240410e10132203450d00200341066a41002900ddcc41370000200341002900d7cc413700002003410e412e10152203450d012003200129000037000e200341266a200141186a2900003700002003411e6a200141106a290000370000200341166a200141086a290000370000200241d0006a41086a22014200370300200242003703502003412e200241d0006a1002200241306a41086a20012903003703002002200229035037033002400240200241306a411041acf1c300410041001000417f460d00200242103702442002200241306a360240200241d0006a200241c0006a10e80120022802702201450d0420002002290350370300200041186a200241d0006a41186a290300370300200041106a200241d0006a41106a290300370300200041086a200241d0006a41086a290300370300200241086a2204200241d0006a412c6a290200370300200241106a2205200241d0006a41346a290200370300200241186a2206200241d0006a413c6a290200370300200241206a2207200241d0006a41c4006a290200370300200241286a2208200241d0006a41cc006a2802003602002002200229027437030020002001360220200020022903003702242000412c6a2004290300370200200041346a20052903003702002000413c6a2006290300370200200041c4006a2007290300370200200041cc006a20082802003602000c010b200041003602200b20031016200241a0016a24000f0b410e41011014000b412e41011014000b41b6e7c20041331029000bcc0603047f037e037f230041206b22022400200241003a001020012802002001280204200241106a410120012802081000210320012001280208200341016a41014b22036a22043602080240024002402003450d000240024002400240024020022d0010220541037122034102460d0020034101460d0120030d022005410276ad21060c030b20024100360210200220053a0010200141086a220341002001280200200141046a280200200241106a41017241032004100022012001417f461b22014103200141034922011b20032802006a36020020010d042002280210410276ad21060c020b200241003b0110200220053a00102001280200200141046a280200200241106a4101724101200410002103200141086a22012001280200200341016a220141014b6a36020020014102490d0320022f0110410276ad21060c010b0240024020054102762203410c460d0020034104460d0120030d03200141046a280200210320024100360210200141086a2205410020012802002003200241106a41042004100022012001417f461b22014104200141044922011b20052802006a36020020010d04200235021021060c020b420021072002420037031820024200370310200141086a220341002001280200200141046a280200200241106a41102004100022012001417f461b22014110200141104922011b20032802006a36020020010d04200241106a41086a290300210820022903102106420121070c050b4200210720024200370310200141086a220341002001280200200141046a280200200241106a41082004100022012001417f461b22014108200141084922011b20032802006a36020020010d03200229031021060b42002108420121070c030b200341046a220941104b0d00200141046a210a200141086a21054200210642002108410021030340200241003a00102001280200200a280200200241106a410120041000210420052005280200200441016a41014b220b6a2204360200200b450d01200220023100104200200341037441f8007110fb02200241086a29030020088421082002290300200684210642012107200341016a220341ff01712009490d000c030b0b420021070b0b2000200637030820002007370300200041106a2008370300200241206a24000be50806037f047e017f017e0a7f037e230041b0016b220224000240024002400240024002400240024002400240410f10132203450d00200341076a41002900adeb41370000200341002900a6eb413700002003410f412f10152204450d012004200129000037000f200441276a200141186a2900003700002004411f6a200141106a290000370000200441176a200141086a29000037000020024190016a41086a2201420037030020024200370390012004412f20024190016a1002200241d0006a41086a200129030037030020022002290390013703500240024002400240200241d0006a411041acf1c300410041001000417f460d00200242103702642002200241d0006a360260200241386a200241e0006a10a5012002290338a7450d0b200241386a41106a290300210520022903402106200241206a200241e0006a10a5012002290320a7450d0b200241306a290300210720022903282108200241186a200241e0006a10122002280218450d0b200228021c2209ad42307e220a422088a70d03200aa72201417f4c0d032001450d0120011013220b450d062009450d020c070b2000420037030020004208370320200041186a4200370300200041106a4200370300200041086a4200370300200041286a41003602000c080b4108210b20090d050b4100210f4200210a200b450d080c050b100f000b410f41011014000b412f41011014000b200141081014000b20024190016a41186a210320024190016a41106a210c4200210a4100210d4100210e410021012009210f034020034200370300200c420037030020024190016a41086a221042003703002002420037039001200241e0006a41086a22112011280200221141002002280260200228026420024190016a41202011100022112011417f461b2211412020114120491b6a3602002011411f4d0d03200241f0006a41186a22122003290300370300200241f0006a41106a2213200c290300370300200241f0006a41086a2214201029030037030020022002290390013703702002200241e0006a10a5012002290300a7450d03200141016a2111200241106a29030021152002290308211620032012290300370300200c201329030037030020102014290300370300200220022903703703900102402001200f470d00200d20112011200d491b220fad42307e2217422088a70d062017a722124100480d0602402001450d00200b200e20121015220b0d010c080b20121013220b450d070b200b200e6a2201201537030820012016370300200141286a2003290300370300200141206a200c290300370300200141186a2010290300370300200141106a200229039001370300200a4280808080107c210a200d41026a210d200e41306a210e2011210120112009490d000b200b450d030b200020083703102000200537030820002006370300200041246a200a200fad843702002000200b360220200041186a20073703000b20041016200241b0016a24000f0b200f450d00200b10160b41b6e7c20041331029000b1010000b201241081014000bec1201077f230041b0036b220124000240024002400240024002400240024002400240024002400240024002400240411210132202450d00200241106a41002f00d5cc413b0000200241086a41002900cdcc41370000200241002900c5cc4137000020024112413210152202450d01200220002900003700122002412a6a200041186a290000370000200241226a200041106a2900003700002002411a6a200041086a290000370000200141e8016a41086a22004200370300200142003703e80120024132200141e8016a1002200141b0026a41086a2000290300370300200120012903e8013703b00202400240200141b0026a411041acf1c300410041001000417f460d002001421037026c2001200141b0026a360268200141d0026a200141e8006a10d70120012d00e80222034102460d0420014188016a41186a20014181036a29000037030020014188016a41106a200141f9026a29000037030020014188016a41086a200141f1026a290000370300200141e8016a41086a20014192036a290100370300200141e8016a41106a2001419a036a290100370300200141e8016a41186a200141a2036a290100370300200120012900e9023703880120012001418a036a2901003703e80120014189036a2d00002104200141b0026a411010030c010b410221030b200141286a41186a20014188016a41186a290300370300200141286a41106a220020014188016a41106a290300370300200141286a41086a220520014188016a41086a290300370300200141086a41086a2206200141e8016a41086a290300370300200141086a41106a2207200141e8016a41106a290300370300200141086a41186a200141e8016a41186a2903003703002001200129038801370328200120012903e8013703082002101620034102460d0f200141e8006a41186a200141286a41186a290300370300200141e8006a41106a2000290300370300200141e8006a41086a2005290300370300200141c8006a41086a2006290300370300200141c8006a41106a2007290300370300200141c8006a41186a200141086a41186a2903003703002001200129032837036820012001290308370348410021020240200441ff01714101470d00411210132202450d06200241106a41002f00d5cc413b0000200241086a41002900cdcc41370000200241002900c5cc4137000020024112413210152202450d07200220012903483700122002412a6a200141e0006a290300370000200241226a200141c8006a41106a2903003700002002411a6a200141c8006a41086a2903003700000b0240024020034101470d00411210132200450d09200041106a41002f00d5cc413b0000200041086a41002900cdcc41370000200041002900c5cc4137000020004112413210152200450d0a200020012903683700122000412a6a20014180016a290300370000200041226a200141e8006a41106a2903003700002000411a6a200141e8006a41086a290300370000200141e8016a41086a22054200370300200142003703e80120004132200141e8016a1002200141b0026a41086a2005290300370300200120012903e8013703b002200141b0026a411041acf1c300410041001000417f460d0b200142103702c4022001200141b0026a3602c002200141d0026a200141c0026a10d70120012d00e80222054102460d0c20014188016a41106a200141d0026a41106a29030037030020014188016a41086a200141d0026a41086a290300370300200120012903d00237038801200141e8016a200141d0026a41196a41c70010f6021a200120053a00a00120014188016a41196a200141e8016a41c70010f6021a200141c1016a20043a0000200141c2016a2001290348370100200141ca016a200141c8006a41086a290300370100200141d2016a200141c8006a41106a290300370100200141da016a200141e0006a290300370100200141e8016a41086a22044200370300200142003703e80120004132200141e8016a1002200141b0026a41086a2004290300370300200120012903e8013703b002200141103602d4022001200141b0026a3602d00220014188016a200141d0026a10e301200010164101210420020d010c0e0b0240200441ff01714101470d00200141e8016a41086a22004200370300200142003703e801418cebc100411a200141e8016a1002200141b0026a41086a2000290300370300200120012903e8013703b002412010132200450d0d20002001290348370000200041186a200141c8006a41186a290300370000200041106a200141c8006a41106a290300370000200041086a200141c8006a41086a290300370000200141b0026a411020004120100120001016410021004100210420020d010c0e0b200141e8016a41086a22004200370300200142003703e801418cebc100411a200141e8016a1002200141d0026a41086a2000290300370300200120012903e8013703d002200141d0026a4110100341002100410021042002450d0d0b200141e8016a41086a22054200370300200142003703e80120024132200141e8016a1002200141b0026a41086a2005290300370300200120012903e8013703b002200141b0026a411041acf1c300410041001000417f460d03200142103702c4022001200141b0026a3602c002200141d0026a200141c0026a10d70120012d00e8024102460d0420014188016a41106a200141d0026a41106a29030037030020014188016a41086a200141d0026a41086a290300370300200120012903d00237038801200141e8016a200141d0026a41196a41c70010f6021a20014188016a41196a200141e8016a41c70010f6022001290368370000200141a9016a200141e8006a41086a290300370000200141b1016a200141e8006a41106a290300370000200141b9016a20014180016a290300370000200120033a00a001200141e8016a41086a22034200370300200142003703e80120024132200141e8016a1002200141b0026a41086a2003290300370300200120012903e8013703b002200141103602d4022001200141b0026a3602d00220014188016a200141d0026a10e30120021016410121032004200045720d0e0c0d0b411241011014000b413241011014000b41b6e7c20041331029000b41b9eac10041d3001029000b41b6e7c20041331029000b411241011014000b413241011014000b411241011014000b413241011014000b41b9eac10041d3001029000b41b6e7c20041331029000b412041011014000b410021032004200045720d010b200010160b2002452003720d00200210160b200141b0036a24000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41013602002003411c6a4102360200200341013602242003420237020c2003419cf1c300360208200320033602282003200341046a3602202003200341206a360218200341086a20001046000bb00801027f024020002802004101470d00024020002802042201280200417f6a220241104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e11001515150102150304050607081515090a000b200141086a1093010c140b200141086a2d00002202410e4b0d1220024106470d13200141106a280200450d132001410c6a28020010160c130b200141046a10a9010c120b200141086a280200450d11200128020410160c110b200141086a2d00004101470d100240200141106a280200450d002001410c6a28020010160b02402001411c6a280200450d00200141186a28020010160b200141286a280200450d10200141246a28020010160c100b200141086a2d00004103470d0f200141d0006a280200450d0f200141cc006a28020010160c0f0b200141086a2d00004101470d0e200141106a280200450d0e2001410c6a28020010160c0e0b200141086a280200450d0d200128020410160c0d0b200141086a2d0000417f6a220241054b0d0c024020020e06000405060708000b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d0c200141286a280200450d0c200210160c0c0b200141086a28020022024102460d0120024101470d0b200141106a280200450d0b2001410c6a28020010160c0b0b200141086a2d0000220241064b0d06024020020e070b0b0b0b0008090b0b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d0a200141d0006a280200450d0a200210160c0a0b200141106a280200450d092001410c6a28020010160c090b200141106a280200450d082001410c6a28020010160c080b200141106a280200450d072001410c6a28020010160c070b200141106a280200450d062001410c6a28020010160c060b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d05200141286a280200450d05200210160c050b02402001412c6a2802002202450d00200141306a280200450d00200210160b0240200141386a2802002202450d002001413c6a280200450d00200210160b200141c4006a2802002202450d04200141c8006a280200450d04200210160c040b200141106a280200450d032001410c6a28020010160c030b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d02200141d0006a280200450d02200210160c020b200141106a280200450d012001410c6a28020010160c010b200141106a280200450d002001410c6a28020010160b200041046a28020010160b0bde9e010a067f027e027f037e017f017e0a7f027e017f037e230041d0066b22022400200241003a00f004200241f0046a2001280200220320012802042204410047220510f6021a0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d00f004220441134b0d0d024020040e14000c080a050f110b1407130406100309020d1215000b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc401200141046a200620046b3602002001200520046a3602002006450daa0220022d00f004450d180caa020b20004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d890220022d00f004220541034b0d8902024020050e04002c2a2b000b20024198036a2001101a200228029803450d8902200228029c032205417f4c0d9e022005450d84012005101b2204450dea0120042001280200200141046a22072802002206200520062005491b220610f6021a200728020022032006490deb012007200320066b22033602002001200128020020066a220736020020062005460d85010c86010b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a36020020004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d2e20022d00f004220541034b0d2e024020050e04002d2b2c000b200241f0046a2001101f20022802f0042201450d2e20022902f4042108410121050c2d0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d2020022d00f00422054102460d1e20054101460d1d20050d20200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d2020022d008f052101200228008b052104200228008705210520022900ff04210820022900f704210920022800f304210620022f00f104210320022d00f00421074101210a0c1f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a3602002006450da30220022d00f004450d100ca3020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450daa0120022d00f004220541044b0daa01024020050e0500322e2f2d000b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0daa01200241f8046a290300210820022903f0042109200241e0026a2001101a20022802e002450daa0120022802e4022205417f4c0d99022005450da8012005101b2206450dfd0120062001280200200141046a22032802002204200520042005491b220410f6021a200328020022072004490dfe012003200720046b3602002001200128020020046a36020020042005470da9010c98020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a36020020004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d4c20022d00f004220541074b0d4c024020050e08004a4748464b4c49000b200241003a00f004200241f0046a20042003410047220510f6021a20032005490ddd01200141046a200320056b22063602002001200420056a22043602002003450d4c20022d00f0040d4c200242003703f004200241f0046a20042006410820064108491b220510f6021a200141046a200620056b3602002001200420056a360200200641074d0d4c20022903f0042108410121010c9d010b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a3602002006450d1220022d00f00422044101460d1020040d12200241f0046a200110ab0120022d00f00422044102460d1220022d00f304210320022f00f1042107200241fc046a29020021082002418c056a290200210920024188056a280200210520024184056a280200210620022902f404210c200241c0006a200110ac012002280240450d1220072003411074722101200241c0006a41106a290300210d410121032002290348210e0c110b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a3602002006450d930220022d00f004450d0c0c93020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22073602002006450db30120022d00f004220541064b0db30141022106024020050e070092023236303c3e000b200241106a2001101a2002280210450db30120022802142205417f4c0d94022005450d83012005101b2204450de60120042001280200200141046a22032802002206200520062005491b220610f6021a200328020022072006490de7012003200720066b3602002001200128020020066a36020020062005470d84010c90020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22053602002006450d084108210420022d00f004220641064b0d8b02024020060e0700393437303e3f000b200241f0046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f5021a200241f0046a2005200610f6021a200141046a220f200320066b220b3602002001200520066a22063602002003411f4d0d8b02200231008f052108200229008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a200242003703f00441082104200241f0046a2006200b4108200b4108491b220310f6021a200f200b20036b22113602002001200620036a2206360200200b41074d0d3720022903f0042109200242003703f00441082104200241f0046a20062011410820114108491b220310f6021a200141046a201120036b3602002001200620036a360200201141074d0d3720022903f004210e410121040c8d020b20004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc20141042103200141046a200620046b22073602002001200520046a22113602002006450dab0120022d00f004220f410e4b0dab010240200f0e0f005457aa014f5b5e596253604d525c4c000b200241f0046a200110ab0120022d00f00422054102460dab0120022d00f304210f20022f00f1042111200241fc046a29020021082002418c056a290200210920024188056a280200210a20024184056a280200210420022902f404210c20024198016a200110ac01200229039801a7450dab0120024198016a41106a290300210e20022903a001210d200141046a22072802002106200241003a00f004200241f0046a2001280200220b2006410047220310f6021a20062003490df8012007200620036b3602002001200b20036a3602002006450dab0120022d00f004220641024b0dab012011200f41107472210b410121030ca9010b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450d8a0120022d00f004220541064b0d8a01024020050e07003933372f3d3e000b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d8a0120022903f0042108200241f0046a200110ad014101210120022802f0044101470d8a012008422088a7210f200241f0046a41086a2903002209422088a7210420024180056a280200211120024184056a280200211220024188056a28020021062002418c056a280200210320024190056a280200210720024194056a280200211320022802f40421052008a721142009a721150c2f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b3602002001200520046a3602002006450d0d20022d00f00422044101460d0c20040d0d200241f0046a200110aa0120022802f0042104200241e0056a200241f0046a41047241ec0010f6021a20044114460d0d20024180046a200241e0056a41ec0010f6021a41f00010132201450dcc0120012004360200200141046a20024180046a41ec0010f6021a20014108762105410121040c290b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450d1820022d00f00422054102460d1520054101460d1420050d18200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d1820022d008f052101200228008b052104200228008705210520022900ff04210820022900f704210920022800f304210620022f00f104210320022d00f00421074101210a0c170b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450daf0120022d00f004220641104b0daf01410f2105024020060e1100656762696c686f646d61636a60fb01665f000b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0daf01200241f8046a290300210920022903f004210c410121050c6d0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b3602002001200520046a3602002006450d870220022d00f004450d050c87020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450d0c20022d00f00422054101460d0a20050d0c200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a2207200320056b22063602002001200420056a22053602002003411f4d0d0c200241f0046a411f6a310000210d200241ff046a2900002108200229008705210920022900f704210c20022800f304210320022f00f104210a20022d00f004210b200241f0046a2006412020064120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a2007200620046b3602002001200520046a3602002006411f4d0d0c41012101200241f0046a41016a2f000041087420022d00f00472410874200da741ff0171722104200c422088a7210520022900ff04220d422088a721062009422088a721072008422088a7210f200241f7046a290000220e422088a7211120024187056a2800002112200241f3046a280000211320022d008f052114200228008b052115200ca72116200da721172009a721182008a72119200ea7211a0c0b0b410821040c82020b200241f0026a2001101a20022802f002450d920220022802f4022204417f4c0d89022004450d3f2004101b2206450dc90120062001280200200141046a22032802002205200420052004491b220510f6021a200328020022072005490dca012003200720056b3602002001200128020020056a36020020052004470d400c80020b200241b8026a200110ae0120022903b802a7450d860220022903c002210820004107360200200041086a2008370300200241d0066a24000f0b2002200110ae012002290300a7450d91022002290308210820004100360200200041086a2008370300200241d0066a24000f0b200241c8026a2001101a20022802c802450d810220022802cc022204417f4c0d86022004450d3e2004101b2206450dc80120062001280200200141046a22032802002205200420052004491b220510f6021a200328020022072005490dc9012003200720056b3602002001200128020020056a36020020052004470d3f0cfc010b200241f0046a200110ab0120022d00f00422044102460d0120022d00f304210320022f00f1042107200241fc046a29020021082002418c056a290200210920024188056a280200210520024184056a280200210620022902f404210c200241f0006a200110ac012002290370a7450d01200241f0006a41106a290300210d2002290378210e200241d8006a200110ac012002290358a7450d0120072003411074722101200241e8006a290300211b20022903602110410221030b200020013b000d200041033602002000410f6a20014110763a0000200041c8006a201b370200200041c0006a2010370200200041386a200d370200200041306a200e370200200041186a2008370000200041106a200c370000200041286a2009370000200041246a2005360000200041206a20063600002000410c6a20043a0000200041086a2003360200200241d0066a24000f0b20004114360200200241d0066a24000f0b200241f0046a200110ab01200241e0056a41086a2206200241fc046a290200370300200241e0056a41106a220320024184056a290200370300200241e0056a41186a22072002418c056a290200370300200220022902f4043703e0054102210420022d00f00422014102470d1b0b20004114360200200241d0066a24000f0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a2207200320056b22063602002001200420056a2204360200200341074d0d0120022903f0042108200242003703f004200241f0046a20042006410820064108491b220510f6021a2007200620056b3602002001200420056a360200200641074d0d0120022903f0042209422088a7210f2008422088a721052009a721192008a72116410221010b2000200a3b000a2000200b3a000920004113360200200041c8006a2014360200200041c4006a2015360200200041c0006a20123602002000413c6a2006360200200041386a2017360200200041346a2011360200200041306a201a3602002000412c6a2013360200200041286a2004360200200041246a2007360200200041206a20183602002000411c6a200f360200200041186a2019360200200041146a2005360200200041106a20163602002000410c6a2003360200200041086a20013a0000200241d0066a24000f0b20004114360200200241d0066a24000f0b20024188016a200110ae01200228028801450d024102210a20022903900121090c010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490db601200141046a200320056b3602002001200420056a3602002003450d0120022d00f00421074103210a0b200220022800e0053602f0042002200241e3056a2800003600f304200220022802f00436028004200220022800f30436008304200041286a20013a0000200041246a2004360000200041206a2005360000200041186a2008370000200041106a20093700002000410c6a2006360000200020033b000a200020073a0009200041086a200a3a00002000410436020020002002280280043600292000412c6a200228008304360000200241d0066a24000f0b200220022800e0053602f0042002200241e3056a2800003600f30420004114360200200241d0066a24000f0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d0320022903f00421094102210a0c010b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d0220022903f00421094103210a0b0b200220022800e0053602f0042002200241e3056a2800003600f304200220022802f00436028004200220022800f30436008304200041286a20013a0000200041246a2004360000200041206a2005360000200041186a2008370000200041106a20093700002000410c6a2006360000200020033b000a200020073a0009200041086a200a3a000020002002280280043600292000412c6a20022800830436000020004112360200200241d0066a24000f0b200220022800e0053602f0042002200241e3056a2800003600f30420004114360200200241d0066a24000f0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0ddf0120022903f0042109410321050c81010b200242003703f004200241f0046a20042003410820034108491b220610f6021a41042105200141046a200320066b3602002001200420066a360200200341074d0dde0120022903f00421090c80010b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0ddd0120022903f0042108200241a0036a2001101a20022802a003450ddd0120022802a4032206417f4c0df2012006450d7d2006101b2204450dd40120042001280200200141046a22072802002205200620052006491b220510f6021a200728020022032005490dd5012007200320056b22033602002001200128020020056a220736020020052006460d7e0c80010b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d0320022d008f052103200228008b052106200228008705210420022900ff04210920022900f704210820022800f304210120022f00f104210720022d00f004210a410321050c020b200242003703f004200241f0046a20042003410820034108491b220610f6021a41042105200141046a200320066b3602002001200420066a360200200341074d0d0220022903f00421080c010b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d0120022d008f052103200228008b052106200228008705210420022900ff04210920022900f704210820022800f304210120022f00f104210720022d00f004210a410221050b200220022800e0053602f0042002200241e3056a2800003600f304200220022802f00436028004200220022800f30436008304200041286a20033a0000200041246a2006360000200041206a2004360000200041186a2009370000200041106a20083700002000410c6a2001360000200020073b000a2000200a3a0009200041086a20053a00002000410b36020020002002280280043600292000412c6a200228008304360000200241d0066a24000f0b200220022800e0053602f0042002200241e3056a2800003600f30420004114360200200241d0066a24000f0b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d7d20022802f0042106410521070c030b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a36020041032107200341034d0d7c0c010b200241003602f00441042107200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d7b0b20022802f00421060b200220022f01e0053b01f0040cf0010b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b22073602002001200420056a2204360200200341034d0d7820022802f0042106200241003a00f004200241f0046a20042007410047220510f6021a20072005490db201200141046a200720056b3602002001200420056a3602002007450d7820022d00f004220141044f0d78410221070cee010b20022f00f10420022d00f304411074722105200241d8036a41186a2007290300370300200241d8036a41106a2003290300370300200241d8036a41086a2006290300370300200220022903e0053703d8030b200241b8036a41186a2206200241d8036a41186a290300370300200241b8036a41106a2203200241d8036a41106a290300370300200241b8036a41086a2207200241d8036a41086a290300370300200220022903d8033703b803200041086a2005410874200141ff01717236020020002004360204200041063602002000410c6a20022903b803370200200041146a20072903003702002000411c6a2003290300370200200041246a2006290300370200200241d0066a24000f0b200241206a2001101a2002280220450d830120022802242205417f4c0de4012005450d4f2005101b2204450db80120042001280200200141046a22032802002206200520062005491b220610f6021a200328020022072006490db9012003200720066b3602002001200128020020066a36020020062005470d500cd9010b200241f0046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f5021a200241f0046a2005200610f6021a200141046a200320066b3602002001200520066a3602002003411f4d0d1f200231008f052108200235008705210c20022900f704211020022800f304210520022f00f104210720022d00f004210a20022900ff04210d200235008b05211b200241f0046a200110af0141082104200241e0056a41086a2201200241f0046a41186a290300370300200241e0056a41106a2206200241f0046a41206a290300370300200241e0056a41186a220320024198056a2903003703002002200241f0046a41106a2903003703e00520022903f00422094202520d4c0cd6010b200241186a2001101a2002280218450d8101200228021c2205417f4c0de2012005450d4f2005101b2204450db80120042001280200200141046a22032802002206200520062005491b220610f6021a200328020022072006490db9012003200720066b3602002001200128020020066a36020020062005470d500cd6010b200241f0046a200110ad0120022802f0044101470d5b200241f8046a2903002208422088a7210420024180056a280200211120024184056a280200211220024188056a28020021062002418c056a280200210320024190056a280200210720024194056a280200211320022802f40421052008a72115410521010b0c580b200241f0046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a200141046a200320046b3602002001200520046a3602002003411f4d0d1d200235008b054220862108200231008f052109200235008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a4200210e410321044200211b4200211c0c1e0b200242003703f004200241f0046a20072003410820034108491b220410f6021a41042106200141046a200320046b3602002001200720046a360200200341074d0d7d20022903f00421080cdb010b20024180036a2001101a200228028003450d572002280284032204417f4c0ddd012004450d4e2004101b2205450db50120052001280200200141046a22032802002206200420062004491b220610f6021a200328020022072006490db6012003200720066b3602002001200128020020066a36020020062004460d4f0c560b200241f0046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f5021a200241f0046a2005200610f6021a200141046a200320066b3602002001200520066a3602002003411f4d0dd401200231008f052108200235008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a200235008b05211b200241f0046a200110af0141082104200241e0056a41086a2201200241f0046a41186a290300370300200241e0056a41106a2206200241f0046a41206a290300370300200241e0056a41186a220320024198056a2903003703002002200241f0046a41106a2903003703e00520022903f00422094202520d460b0cce010b200241f0046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a200141046a200320046b3602002001200520046a3602002003411f4d0d1d200235008b054220862108200231008f052109200235008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a4200210e410221044200211b4200211c0c1e0b20024188036a2001101a200228028803450d53200228028c032204417f4c0dd9012004450d4c2004101b2205450db30120052001280200200141046a22032802002206200420062004491b220610f6021a200328020022072006490db4012003200720066b3602002001200128020020066a36020020062004470d520c4d0b200241386a2001101a2002280238450d77200228023c2214ad42187e2208422088a70dd8012008a72205417f4c0dd8012005450d552005101322040d56200541041014000b200241f8026a2001101a20022802f802450d5120022802fc022204417f4c0dd7012004450d4c2004101b2205450db30120052001280200200141046a22032802002206200420062004491b220610f6021a200328020022072006490db4012003200720066b3602002001200128020020066a36020020062004470d500c4d0b200241f0046a2001101920022802f0042204450d7520022902f4042108410721060cd3010b200241a8036a2001101a20022802a803450dcd0120022802ac032206417f4c0dd5012006450d502006101b2205450db30120052001280200200141046a22072802002203200620032006491b220310f6021a2007280200220a2003490db4012007200a20036b3602002001200128020020036a36020020032006470d510cc6010b200241b0036a2001101a20022802b003450dcc0120022802b4032206417f4c0dd4012006450d532006101b2205450db40120052001280200200141046a22072802002203200620032006491b220310f6021a2007280200220a2003490db5012007200a20036b3602002001200128020020036a36020020032006470d540cc4010b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d4d20022d008f052107200228008b052103200228008705210620022900f704210820022800f304210520022f00f104210b20022d00f004210a20022900ff042109200241f0046a200110ad0120022802f0044101470d4d2009422088a7211220024194056a2802002116200241f0046a41206a28020021172002418c056a280200211820024188056a280200211920024184056a280200211a20024180056a280200211d20022802f40421132009a72111200241f8046a2903002209422088a7210f2008422088a721042009a721142008a72115410621010c4b0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d4c20022900f7042208422088a7210420022900ff042209422088a7211220022d008f052107200228008b052103200228008705210620022800f304210520022f00f104210b20022d00f004210a2008a721152009a72111410721010c4a0b20024190036a2001101a200228029003450d06200228029403220a450d55200141046a220b28020021042001280200210642002108410021030340200241003a00f004200241f0046a20062004410047220510f6021a20042005490d8b01200b200420056b22073602002001200620056a22063602002004450d0720022d00f0040d0720084280808080107c210820072104200341016a2203200a490d000c570b0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d05200231008f05210c200229008705210d20022900ff04210920022900f704210820022800f304210620022f00f104210320022d00f0042107410321010cbe010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9601200141046a200320056b22063602002001200420056a22043602002003450d0420022d00f0040d04200242003703f804200242003703f004200241f0046a20042006411020064110491b220310f6021a200141046a2207200620036b22053602002001200420036a22043602002006410f4d0d04200241f8046a290300210920022903f0042108200241003602f004200241f0046a20042005410420054104491b220310f6021a2007200520036b22063602002001200420036a2203360200200541034d0d0420022802f0042104200241003602f004200241f0046a20032006410420064104491b220510f6021a200141046a220a200620056b22073602002001200320056a2203360200200641034d0d0420022802f0042105200242003703f804200242003703f004200241f0046a20032007411020074110491b220b10f6021a200a2007200b6b220636020020012003200b6a22033602002007410f4d0d04200241f0046a41086a290300210c20022903f004210d200242003703f004200241f0046a20032006410820064108491b220a10f6021a200141046a220b2006200a6b220736020020012003200a6a2203360200200641074d0d0420022903f004210e200242003703f004200241f0046a20032007410820074108491b220a10f6021a200b2007200a6b220636020020012003200a6a2203360200200741074d0d0420022903f0042110200242003703f004200241f0046a20032006410820064108491b220a10f6021a200141046a220b2006200a6b220736020020012003200a6a2203360200200641074d0d0420022903f004211b200242003703f004200241f0046a20032007410820074108491b220a10f6021a200b2007200a6b220636020020012003200a6a2203360200200741074d0d0420022903f004211c200242003703f004200241f0046a20032006410820064108491b220a10f6021a200141046a220b2006200a6b220736020020012003200a6a2203360200200641074d0d0420022903f004211e200242003703f804200242003703f004200241f0046a20032007411020074110491b220610f6021a200b200720066b3602002001200320066a3602002007410f4d0d04200241f8046a290300211f20022903f004212041012106410421010c590b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d03200231008f05210c200229008705210d20022900ff04210920022900f704210820022800f304210620022f00f104210320022d00f0042107410821010cbc010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9501200141046a200320056b22063602002001200420056a22043602002003450d0220022d00f0040d02200241f0046a2006412020064120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200620056b3602002001200420056a3602002006411f4d0d02200231008f05210c200229008705210d20022900ff04210920022900f704210820022800f304210620022f00f104210320022d00f0042107410221010cbb010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9501200141046a200320056b3602002001200420056a3602002003450d0120022d00f0040d01410621010c540b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9501200141046a200320056b3602002001200420056a3602002003450d0020022d00f004450d520b20004114360200200241d0066a24000f0b4101210641002004460dc0010b2004450dd101200610160cd1010b4101210641002004460dbd010b2004450dc101200610160cc1010b200241f0046a2001101f20022802f0042205450d5f2005410876210b20022902f404210c410f21030c590b200241a8026a2001101a20022802a802450d5e20022802ac022205410876210b410c21030c0f0b420021100cbc010b200241f8016a2001101a20022802f801450d5c20022802fc012104200241e0016a200110ac0120022903e001a7450d5c200241f0016a290300210820022903e801210c410521030c590b4200210c410821044200210e420021084200211b4200211c420021090b200c200884201c84210c200e201b8420098421080cb3010b200241003a00f004200241f0046a20112007410047220410f6021a20072004490d8d01200141046a200720046b3602002001201120046a3602002007450d5920022d00f0042106410d21030c070b20024188026a200110ae01200228028802450d58410a2103200229039002210c0c0d0b200241b0016a200110ac0120022903b001a7450d57200241c0016a290300210820022903b801210c410221030c030b4200210c410821044200210e420021084200211b4200211c420021090b200c200884201c84210c200e201b8420098421080cae010b200241c8016a200110ac0120022903c801a7450d54200241d8016a290300210820022903d001210c410321030b0c4f0b200241003a00f004200241f0046a20112007410047220410f6021a20072004490d8701200141046a200720046b3602002001201120046a3602002007450d5220022d00f004220641034f0d52410821030b0c4f0b20024180026a2001101a200228028002450d502002280284022214ad42247e2208422088a70db6012008a72204417f4c0db6012004450d482004101322050d49200441041014000b200241b0026a2001101a20022802b002450d4f20022802b4022205410876210b410e21030b0c010b410721030b0c480b20024198026a200110ae01200228029802450d4b410b210320022903a002210c0b0c450b200241f0046a200110ab0120022d00f00422054102460d49200241fc046a290200210820022902f404210c20022f00f10420022d00f30441107472210b20024184056a280200210420024188056a280200210a2002418c056a2902002109410921030c460b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d7f200141046a200320056b3602002001200420056a3602002003450d5020022d00f004210b411121050c9b010b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0d4f200241f8046a290300210920022903f004210c410e21050c0d0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4e20022903f004210c410b21050c0f0b200242003703f004200241f0046a20042003410820034108491b220610f6021a41042105200141046a200320066b3602002001200420066a360200200341074d0d4d0c0d0b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d4c20022802f004210a410c21050c070b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4b20022903f004210c410921050c0c0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a220f200320056b22063602002001200420056a22043602002003411f4d0d4a200231008f052108200235008705210d20022900ff04210920022900f704210c20022800f304210a20022f00f104210720022d00f004210b200235008b05210e200242003703f804200242003703f004200241f0046a20042006411020064110491b220510f6021a200f200620056b3602002001200420056a3602002006410f4d0d4a200d200e42208684210d200241f8046a290300211c20022903f004211b410221050c95010b411021050c0b0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a220f200320056b22063602002001200420056a22053602002003411f4d0d48200231008f052108200229008705210d20022900ff04210920022900f704210c20022800f304210a20022f00f104210720022d00f004210b200241f0046a2006412020064120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a200f200620046b3602002001200520046a3602002006411f4d0d48200231008f052110200229008705210e20022900ff04211c20022900f704211b20022800f304211220022f00f104211320022d00f0042111200241e8026a2001101a20022802e802450d4820022802ec022204417f4c0da6012004450d462004101b220f450d8e01200f2001280200200141046a22062802002205200420052004491b220510f6021a200628020022032005490d8f012006200320056b3602002001200128020020056a36020020052004470d470c92010b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a36020041072105200341074d0d470c070b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4620022903f004210c410521050c070b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d4520022802f004210a410d21050b0c070b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4320022903f004210c410621050c040b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0d42200241f8046a290300210920022903f004210c410a21050b0c030b200242003703f00441082105200241f0046a20042003410820034108491b220610f6021a200141046a200320066b3602002001200420066a360200200341074d0d400b20022903f004210c0b0b0b0c87010b200141046a2802002103200128020021074101210441002005470d010b200241003a00e005200241e0056a20072003410047220610f6021a20032006490d68200141046a200320066b3602002001200720066a3602002003450d0020022d00e005210120024180046a41026a200241f0046a41026a2d00003a0000200220022f00f0043b0180042005ad22084220862008842109410121050c250b2005450d82010c81010b20022903f804210e20024180046a41186a200329030037030020024180046a41106a200629030037030020024180046a41086a2001290300370300200220022903e00537038004200c201b42208684210c200d42808080807083200d42ffffffff0f8384210d410521040c90010b20022903f804210e20024180046a41186a200329030037030020024180046a41106a200629030037030020024180046a41086a2001290300370300200220022903e00537038004200c201b42208684210c410421040c8f010b4101210441002005460d89010b20050d310c320b4101210441002005460d86010b20050d2f0c300b4101210441002005460d8c010b20050d2d0c2e0b4101210541002004470d070b410321010c040b4101210541002004470d050b410421010c020b4101210541002004470d030b410221010b200421150b2000200b3b000a2000200a3a00092000410d360200200041cc006a2016360200200041c8006a2017360200200041c4006a2018360200200041c0006a20193602002000413c6a201a360200200041386a201d360200200041346a200f360200200041306a20143602002000412c6a2013360200200041286a2007360200200041246a2003360200200041206a20063602002000411c6a2012360200200041186a2011360200200041146a2004360200200041106a20153602002000410c6a2005360200200041086a20013a0000200241d0066a24000f0b2004450d00200510160b20004114360200200241d0066a24000f0b4101210541002006460d750b20060d040c7b0b410421040b2014450d03420021084100210b4100210541002107201421120340200241306a2001101a2002280230450d1f20022802342203417f4c0d8201024002402003450d002003101b220f450d48200f2001280200200141046a220a2802002206200320062003491b220610f6021a200a28020022112006490d49200a201120066b3602002001200128020020066a36020020062003460d010c200b4101210f41002003470d1f0b200241286a2001101a2002280228450d1e200228022c2206417f4c0d8201024002402006450d002006101b2211450d4220112001280200200141046a2213280200220a2006200a2006491b220a10f6021a20132802002215200a490d4320132015200a6b36020020012001280200200a6a360200200a2006460d010c1f0b4101211141002006470d1e0b200741016a210a024020072012470d00200b200a200a200b491b2212ad42187e2209422088a70d3b2009a722134100480d3b02402007450d00200420052013101522040d010c400b201310132204450d3f0b200420056a2207200f360200200741146a2006360200200741106a20063602002007410c6a2011360200200741046a2003ad220942208620098437020020084280808080107c2108200b41026a210b200541186a2105200a2107200a2014490d000c050b0b4101210541002006460d700b2006450d770b200510160c760b41002112420021080b2004450d1b20082012ad842108410621060c790b420021080b2008200aad84210841012106410521010b0c020b410721010b0b0b0c640b200141046a2802002103200128020021074101210441002006470d020b200241003a00e005200241e0056a20072003410047220510f6021a20032005490d59200141046a200320056b3602002001200720056a3602002003450d0120022d00e00521014102210520024180046a41026a200241f0046a41026a2d00003a0000200220022f00f0043b0180042006ad220942208620098421090b200241e0056a41026a20024180046a41026a2d000022063a0000200241d8036a41026a220320063a0000200220022f01800422063b01d803200220063b01e005200041186a20013a0000200041106a20093702002000410c6a2004360200200041086a200536020020004110360200200041206a2008370200200020022f01d8033b00192000411b6a20032d00003a0000200241d0066a24000f0b20060d5b0c5c0b4101210641002005460d6f0b2005450d00200610160b200220022f01e0053b01f0040c740b410421050b024002402014450d0042002108200241f0046a410c6a2115200241f0046a411c6a2116200241f0046a41186a2117200241f0046a41146a2118410021074100210341002104201421130340200241f0046a200110ab0120022d00f004220a4102460d08200441016a210620022d00f304210b20022f00f104210f201529020021092016290200210c201728020021112018280200211220022902f404210d024020042013470d002007200620062007491b2213ad42247e220e422088a70d28200ea722194100480d2802402004450d00200520032019101522050d010c2c0b201910132205450d2b0b200520036a2204200a3a0000200441036a200f200b41107472220a4110763a0000200441016a200a3b00002004410c6a2009370000200441046a200d3700002004411c6a200c370000200441186a2011360000200441146a201236000020084280808080107c2108200741026a2107200341246a21032006210420062014490d000c020b0b41002113420021080b2005450d0620082013ad84210c2005410876210b410621030b0b0b0b0b200220022f01e00522013b01f004200220013b018004200041386a200e370000200041306a200d370000200020063a0009200041086a20033a000020004105360200200041286a2009370000200041246a200a360000200041206a20043600002000411c6a20084220883e0000200041186a20083e0000200041106a200c3700002000410c6a200b410874200541ff017172360000200020022f0180043b000a200241d0066a24000f0b2013450d00200510160b200220022f01e0053b01f00420004114360200200241d0066a24000f0b2006450d00201110160b2003450d00200f10160b02402007450d002004210103400240200141046a280200450d00200128020010160b0240200141106a280200450d002001410c6a28020010160b200141186a2101200541686a22050d000b0b2012450d010b200410160b20004114360200200241d0066a24000f0b4101210f41002004460d4b0b2004450d00200f10160b200241f0046a41026a200241e0056a41026a2d00003a0000200220022f00e0053b01f00420004114360200200241d0066a24000f0b20052004101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b1010000b20052004101c000b20052003101c000b201941041014000b201341041014000b41f00041081014000b200641011014000b200a2015101c000b200441011014000b20052007101c000b200441011014000b20052007101c000b200341011014000b20062011101c000b20052003101c000b20052003101c000b20052003101c000b20052003101c000b20052003101c000b20052007101c000b200541011014000b20062003101c000b20042007101c000b20042007101c000b20062003101c000b20052003101c000b200541011014000b20062007101c000b200541011014000b20062007101c000b200541011014000b20062007101c000b200441011014000b20062007101c000b200441011014000b20062007101c000b200441011014000b20062007101c000b200641011014000b2003200a101c000b200641011014000b2003200a101c000b200641011014000b20052003101c000b200541011014000b20042007101c000b20052003101c000b20032006101c000b200441011014000b20052003101c000b200410160b200241e0056a41026a20024180046a41026a2d00003a0000200220022f0180043b01e00520004114360200200241d0066a24000f0b2004ad221e422086201e84211e410321050b200241f0046a41026a200241e0056a41026a2d000022013a000020024180046a41026a220420013a0000200220022f00e00522013b018004200220013b01f004200041c8006a20103c0000200041c0006a200e370000200041386a201c370000200041306a201b370000200041286a20083c0000200041206a200d370000200041186a2009370000200041106a200c3700002000412c6a2012360000200020133b002a200020113a00292000410c6a200a360000200020073b000a2000200b3a0009200041086a20053a00002000410a360200200041d0006a201e370000200041cc006a200f360000200020022f0180043b0049200041cb006a20042d00003a0000200241d0066a24000f0b0b200020033b000a200020073a00092000410f360200200041e0006a201f370000200041d8006a2020370000200041286a200c370000200041206a200d370000200041186a2009370000200041106a2008370000200041ec006a2005360000200041e8006a2004360000200041d0006a201e370000200041c8006a201c370000200041c0006a201b370000200041386a2010370000200041306a200e3700002000410c6a2006360000200041086a20013a0000200241d0066a24000f0b2006ad22084220862008842110410721040c010b2006ad22084220862008842110410621040b0b0c060b2005ad22084220862008842108410321060c080b2005ad22084220862008842108410521060c070b2006450d042000200636020420004108360200200041086a2004ad2208422086200884370200200241d0066a24000f0b2006450d11200020063602042000410c360200200041086a2004ad2208422086200884370200200241d0066a24000f0b0b0b200241f0046a41086a220120024180046a41086a290300370300200241f0046a41106a220620024180046a41106a290300370300200241f0046a41186a220320024180046a41186a2903003703002002200241bb036a2800003600e305200220022800b8033602e00520022002290380043703f004024020044108470d0020004114360200200241d0066a24000f0b200241d8036a41086a220b2001290300370300200241d8036a41106a22012006290300370300200241d8036a41186a22062003290300370300200220022800e3053600fb03200220022802e0053602f803200220022903f0043703d803200041286a20083c0000200041206a200c370000200041186a200d370000200041106a20103700002000410c6a2005360000200020073b000a2000200a3a0009200041086a20043a000020004111360200200041386a200e370000200041306a2009370000200020022802f8033600292000412c6a20022800fb03360000200041c0006a20022903d803370000200041c8006a200b290300370000200041d0006a2001290300370000200041d8006a2006290300370000200241d0066a24000f0b20004114360200200241d0066a24000f0b2005ad22084220862008842108410121060b20004101360200200041106a20083702002000410c6a2004360200200041086a2006360200200241d0066a24000f0b20004114360200200241d0066a24000f0b200241d8026a2001101a024020022802d802450d0020022802dc022204417f4c0d010240024002402004450d002004101b2203450d0520032001280200200141046a220a2802002207200420072004491b220710f6021a200a280200220b2007490d06200a200b20076b3602002001200128020020076a36020020072004460d010c020b4101210341002004470d010b200241d0026a2001101a20022802d002450d0020022802d4022207417f4c0d02024002402007450d002007101b220a450d07200a2001280200200141046a220f280200220b2007200b2007491b220b10f6021a200f2802002211200b490d08200f2011200b6b36020020012001280200200b6a360200200b2007470d010c090b4101210a41002007460d080b2007450d00200a10160b2004450d00200310160b02402005450d00200610160b200220022f01e0053b01f0040c060b100f000b200441011014000b2007200b101c000b200741011014000b200b2011101c000b2007ad220c422086200c84210c410121070c010b20004114360200200241d0066a24000f0b200220022f01e0053b01f0040b200220022f01f0043b018004200041386a2008370000200041306a2009370000200020013a0009200041086a20073a000020004109360200200041286a200c370000200041246a200a360000200041206a20043600002000411c6a2004360000200041186a2003360000200041106a2005ad22084220862008843700002000410c6a2006360000200020022f0180043b000a200241d0066a24000f0b20004114360200200241d0066a24000f0b20004114360200200241d0066a24000b870801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510f6021a02400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441ef014b0d010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410f6021a200141046a200620046b3602002001200520046a360200200641014d0d0420022f0150220441ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410f6021a200141046a200620046b3602002001200520046a360200200641034d0d04410121012002280250220441ffff034b0d09200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10f5021a200241d0006a2005200410f6021a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c030b200041023a0000200241f0006a24000f0b20052004101c000b410121010b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bd00605057f017e017f027e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510f6021a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d0020220341037122044102460d00024020044101460d0020040d022003410276ad21070c080b200241003a0020200241206a20052006410047220410f6021a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21070c070b200241003a001e200241003b011c2002411c6a200520064103200641034922081b220410f6021a200141046a200620046b3602002001200520046a36020020080d0120022f011c20022d001e41107472410874200372410276ad21070c060b0240024020034102762204410c460d00024020044104460d0020040d0220024100360220200241206a200520064104200641044922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d03200235022021070c080b4200210a20024200370320200241206a200520064108200641084922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d03200229032021070c070b4200210a2002420037032820024200370320200241206a200520064110200641104922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d02200241286a2903002109200229032021074201210a0c070b200441046a220b41104b0d00200141046a210c200241106a210d4200210742002109410021030340200241003a0020200241206a20052006410047220410f6021a20062004490d04200c200620046b22083602002001200520046a22053602002006450d01200241086a20023100204200200341037441f8007110fb02200d2903002009842109200229030820078421074201210a20082106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004101c000b20042006101c000b20042006101c000b420021094201210a0b200020073703082000200a370300200041106a2009370300200241306a24000bdc0201097f230041106b220224002002200110ca01024002400240024020022802004101470d002002410c6a22032802002104200241086a22052802002106200228020421072002200110ca0120022802004101470d012003280200210820052802002105200228020421032002200110ca0120022802004101470d022002410c6a2802002101200241086a28020021092002280204210a2000200736020420004101360200200041246a2001360200200041206a20093602002000411c6a200a360200200041186a2008360200200041146a2005360200200041106a20033602002000410c6a2004360200200041086a2006360200200241106a24000f0b200041003602000c020b200041003602002006450d012007450d0120071016200241106a24000f0b2000410036020002402003450d002005450d00200310160b2006450d002007450d0020071016200241106a24000f0b200241106a24000bbe0503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510f6021a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d0020022d00082204ad210702400240200441037122034102460d00024020034101460d0020030d022004410276ad2107420121080c050b200241003a0008200241086a20052006410047220410f6021a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b200241003a0006200241003b0104200241046a200520064103200641034922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d0120023301042002310006421086844208862007844202882107420121080c030b02400240200441027622044104460d0020040d0120024100360208200241086a200520064104200641044922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d0220023502082107420121080c040b4200210820024200370308200241086a200520064108200641084922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d0220022903082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410f6021a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004101c000b20042006101c000b20042006101c000bb60a04067f017e0a7f037e230041d0006b22022400200241003a0030200241306a2001280200220320012802042204410047220510f6021a02400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a22053602002004450d0702400240024020022d00302204450d0020044101470d0a200241086a2001101a2002280208450d0a200228020c2207ad2208421b88a70d042008420586a72204417f4c0d042004450d01200410132209450d052007450d020c060b410021094100210e0c070b4101210920070d040b410021044100210f2009450d070c040b20052004101c000b100f000b200441011014000b200241306a41186a210a200241306a41106a210b200241306a41086a210c200141046a210d4100210e41002106410021052007210f0340200a4200370300200b4200370300200c420037030020024200370330200241306a20012802002210200d2802002204412020044120491b220310f6021a200d200420036b3602002001201020036a3602002004411f4d0d03200541016a2104200241106a41186a2203200a290300370300200241106a41106a2210200b290300370300200241106a41086a2211200c2903003703002002200229033037031002402005200f470d00200e20042004200e491b220fad4205862208422088a70d092008a722124100480d0902402005450d00200920062012101522090d010c0b0b201210132209450d0a0b200920066a22052002290310370000200541186a2003290300370000200541106a2010290300370000200541086a2011290300370000200e41026a210e200641206a21062004210520042007490d000b2009450d030b2004ad422086200fad842108200141046a2802002106200128020021052009210e0b200241003a0030200241306a20052006410047220410f6021a20062004490d072008a7210d200141046a200620046b22033602002001200520046a2204360200024002402006450d0020022d00302205450d0120054101470d00200241003a0030200241306a20042003410047220510f6021a20032005490d0b200141046a200320056b22063602002001200420056a22043602002003450d0020022d00302205450d044101210a20054101460d050b20004202370300200e450d0c0c0b0b4102210a0c040b200f450d00200910160b200042023703000c090b4100210a0b200621030b200241003a0030200241306a20042003410047220510f6021a20032005490d03200141046a200320056b22063602002001200420056a22043602000240024002402003450d0020022d00302205450d0120054101470d0020024200370330200241306a20042006410820064108491b220510f6021a200141046a200620056b3602002001200420056a360200200641074d0d0020022903302113420121140c020b20004202370300200e0d070c080b420021140b200241306a200110ca01024020022802304101470d00200241386a290300211520022802342101200041286a200a3a0000200041246a20154220883e0200200041206a20153e02002000200136021c200041186a2008422088a7360200200041146a200d360200200041106a20093602002000201337030820002014370300200020022800303600292000412c6a200241336a280000360000200241d0006a24000f0b20004202370300200e0d050c060b1010000b201241011014000b20042006101c000b20052003101c000b20052003101c000b200d450d0020091016200241d0006a24000f0b200241d0006a24000b9f860305067f017e047f017e017f230041106b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002203450d0020034101470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a200110b101200028020022034101460d010b20034102470d010c030b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d1820054101742204200620062004491b22044100480d182005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200041086a28020021030b024020034102470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41023a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d1820054101742204200620062004491b22044100480d182005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41043a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d1820054101742204200620062004491b22044100480d182005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200041086a28020021030b02400240024002400240024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1d20034101742205200420042005491b22044100480d1d2003450d0120012802002003200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101802402005450d002003200541186c6a2109200141046a210703402003280200210a2002200341086a280200220536020c2002410c6a2001101802400240024002402007280200220b200428020022066b20054f0d00200620056a220c2006490d1e200b4101742206200c200c2006491b22064100480d1e200b450d012001280200200b20061015220b0d020c070b2001280200210b0c020b20061013220b450d050b2001200b36020020072006360200200428020021060b2004200620056a360200200b20066a200a200510f6021a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101802400240024002402007280200220b200428020022066b20054f0d00200620056a220c2006490d1e200b4101742206200c200c2006491b22064100480d1e200b450d012001280200200b20061015220b0d020c080b2001280200210b0c020b20061013220b450d060b2001200b36020020072006360200200428020021060b2004200620056a360200200b20066a200a200510f6021a200341186a22032009470d000b0b200041086a28020021030b20034107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0120012802002003200510152204450d020c050b200128020021040c050b2005101322040d030b200541011014000b200641011014000b200641011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41063a00002000410c6a28020021052002200041146a280200220336020c2002410c6a200110182003450d0020052003410c6c6a2109200141046a210a03402005280200210b2002200541086a280200220336020c2002410c6a200110180240024002400240200a2802002207200628020022046b20034f0d00200420036a220c2004490d1820074101742204200c200c2004491b22044100480d182007450d01200128020020072004101522070d020c070b200128020021070c020b200410132207450d050b20012007360200200a2004360200200628020021040b2006200420036a360200200720046a200b200310f6021a2005410c6a22052009470d000b0b200028020022034102460d020b20034103470d020c030b200441011014000b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a0000200028020022034103460d010b4104210420034104470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240200041086a2802004101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1420034101742206200420042006491b22064100480d142003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110b2012002200041306a36020c2002410c6a200110b301200041086a2802004102470d010b02400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a200110b2012002200041306a36020c2002410c6a200110b3012002200041c0006a36020c2002410c6a200110b3010b41042104200028020022034104460d010b20034105470d010c020b02400240024002400240200120046a280200200141086a2802002203470d00200341016a22042003490d1020034101742205200420042005491b22054100480d102003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a22032d000022044101470d0002400240024002400240200141046a28020020052802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41003a000002400240024002400240200141046a2802002205200628020022046b41204f0d00200441206a22062004490d1120054101742204200620062004491b22044100480d112005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200520046a220441186a200341196a290000370000200441106a200341116a290000370000200441086a200341096a2900003700002004200329000137000020032d000021040b0240200441ff01714102470d0002400240024002400240200141046a280200200141086a2802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a200441016a360200200520046a41013a0000200041106a200110b10120032d000021040b0240200441ff01714103470d0002400240024002400240200141046a280200200141086a2802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41023a000002400240024002400240200141046a28020020062802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a200441016a360200200520046a200341016a2d00003a00000b200028020022034105460d010b20034106470d010c030b02400240024002400240200141046a220b280200200141086a22052802002203470d00200341016a22042003490d0e20034101742206200420042006491b22064100480d0e2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41053a00000240200041086a2d000022034101470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110b2012002200041306a36020c2002410c6a200110b301024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d0020034102470d01200b28020020052802002203470d03200341016a22042003490d1c20034101742206200420042006491b22064100480d1c2003450d0720012802002003200610152204450d080c0f0b200b28020020052802002203470d01200341016a22042003490d1b20034101742206200420042006491b22064100480d1b2003450d0420012802002003200610152204450d050c0c0b200b28020020052802002203470d02200341016a22042003490d1a20034101742206200420042006491b22064100480d1a2003450d0720012802002003200610152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2006101322040d070b200641011014000b2006101322040d070b200641011014000b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41003a00000c040b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41013a00000c020b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41023a00000b200041086a2d000021030b0240200341ff01714102470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002002200041106a36020c2002410c6a200110b301200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002002200041106a36020c2002410c6a200110b301200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41033a0000200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41043a0000200041206a200110182002200041106a36020c2002410c6a200110b301200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41053a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101802402004450d00200441246c210403402003200110b201200341246a21032004415c6a22040d000b0b200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41063a0000200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41073a000002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d0020034102470d01200b28020020052802002203470d03200341016a22042003490d1b20034101742206200420042006491b22064100480d1b2003450d0720012802002003200610152204450d080c0f0b200b28020020052802002203470d01200341016a22042003490d1a20034101742206200420042006491b22064100480d1a2003450d0420012802002003200610152204450d050c0c0b200b28020020052802002203470d02200341016a22042003490d1920034101742206200420042006491b22064100480d192003450d0720012802002003200610152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2006101322040d070b200641011014000b2006101322040d070b200641011014000b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41003a00000c040b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41013a00000c020b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41023a00000b0240200041086a2d000022034109470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41083a00002000410c6a200110b201200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41093a0000200041106a200110b101200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a410a3a0000200041106a200110b101200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a410b3a00002000410c6a20011018200041086a2d000021030b0240200341ff0171410d470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a410c3a000002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410e470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a410d3a00002000410c6a20011018200041086a2d000021030b0240200341ff0171410f470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a220c200341016a360200200420036a410e3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a200110182004450d0020044105742107200141046a210903400240024002400240200b2802002206200528020022046b41204f0d00200441206a220a2004490d0f20064101742204200a200a2004491b22044100480d0f2006450d01200128020020062004101522060d020c070b200128020021060c020b200410132206450d050b2001200636020020092004360200200c28020021040b2005200441206a360200200620046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200741606a22070d000b0b200028020022034106460d020b20034107470d020c030b200441011014000b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0b20034101742205200420042005491b22054100480d0b2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240024020002802044101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0d20034101742206200420042006491b22064100480d0d2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a280200200110b001200041046a2802004102470d010b02400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a200110b2010b200028020022034107460d010b4108210420034108470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0920034101742205200420042005491b22054100480d092003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0920034101742205200420042005491b22054100480d092003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a200110b10141082104200028020022034108460d010b20034109470d010c020b02400240024002400240200141046a280200200120046a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a0000200041046a280200210720022000410c6a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200028020022034109460d010b2003410a470d040c050b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341034b0d00024002400240024020030e0400030102000b200141046a280200200141086a2802002203470d06200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0d20012802002003200510152204450d0e0c1b0b200141046a280200200141086a2802002203470d03200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0820012802002003200510152204450d090c180b200141046a280200200141086a2802002203470d03200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0920012802002003200510152204450d0a0c150b200141046a280200200141086a2802002203470d04200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0c20012802002003200510152204450d0d0c120b200141046a28020020052802002203470d04200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0d20012802002003200510152204450d0e0c0f0b200128020021040c150b200128020021040c120b200128020021040c150b200128020021040c0e0b200128020021040c0b0b2005101322040d0f0b200541011014000b2005101322040d0b0b200541011014000b2005101322040d0d0b200541011014000b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a200636000020002802002203410a470d0b0c0c0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0b20012802002003200510152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d090b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a000020002802002203410a470d0f0c100b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a000020002802002203410a470d0d0c0e0b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a000020002802002203410a470d0b0c0c0b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a000020002802002203410a470d090c0a0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a200636000020002802002203410a470d070c080b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a200636000020002802002203410a460d060c050b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002108200041306a290300210d02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341106a360200200420036a220320083700082003200d3700002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0520054101742204200620062004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a200041186a28020021072002200041206a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0520054101742204200620062004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a200041246a280200210720022000412c6a280200220336020c2002410c6a20011018024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0320054101742204200620062004491b22044100480d032005450d0120012802002005200410152205450d020c040b200128020021050c040b2004101322050d020b200441011014000b1010000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a20002802002203410a460d010b2003410b470d010c020b02400240024002400240200141046a2205280200200141086a22032802002204470d00200441016a22062004490d0b20044101742207200620062007491b22074100480d0b2004450d0120012802002004200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a410a3a00000240200041086a22062d000022044101470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002108200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff01714102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200641196a290000370000200441106a200641116a290000370000200441086a200641096a29000037000020042006290001370000200041386a2903002108200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41023a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200641196a290000370000200441106a200641116a290000370000200441086a200641096a290000370000200420062900013700000240024002400240024020052802002207200328020022046b41204f0d00200441206a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b200141086a220a200441206a360200200720046a220441186a200641216a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210c2002200041d4006a280200220436020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022076b20044f0d00200720046a220a2007490d0c200b4101742207200a200a2007491b22074100480d0c200b450d012001280200200b20071015220b450d020c030b2001280200210b0c030b20071013220b0d010b200741011014000b2001200b360200200141046a2007360200200141086a28020021070b2003200720046a360200200b20076a200c200410f6021a20062d000021040b0240200441ff01714104470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714105470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002108200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a280200210b0240024002400240024020052802002207200328020022046b41044f0d00200441046a220a2004490d0c20074101742204200a200a2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a200b36000020062d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a280200210b0240024002400240024020052802002207200328020022046b41044f0d00200441046a220a2004490d0c20074101742204200a200a2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a200b36000020062d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002108200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410e3a000020062d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410f3a000020062d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d0c20044101742207200520052007491b22074100480d0c2004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200641016a2d00003a00000b20002802002203410b460d010b2003410c470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0920034101742205200420042005491b22054100480d092003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a000002400240024002400240200041086a220c2d000022034101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0e20034101742205200420042005491b22054100480d0e2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101802402004450d0020044105742107200141046a210b03400240024002400240200b2802002206200528020022046b41204f0d00200441206a220a2004490d0f20064101742204200a200a2004491b22044100480d0f2006450d01200128020020062004101522060d020c070b200128020021060c020b200410132206450d050b20012006360200200b2004360200200528020021040b2005200441206a360200200620046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200741606a22070d000b0b200c2d000021030b200341ff01714102470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0b20034101742205200420042005491b22054100480d0b2003450d0120012802002003200510152204450d020c040b200128020021040c040b2005101322040d020b200541011014000b200441011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0a20044101742203200520052003491b22034100480d0a2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200c41196a290000370000200341106a200c41116a290000370000200341086a200c41096a2900003700002003200c290001370000200c2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0a20034101742205200420042005491b22054100480d0a2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0a20044101742203200520052003491b22034100480d0a2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200c41196a290000370000200341106a200c41116a290000370000200341086a200c41096a2900003700002003200c290001370000200c2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0a20034101742205200420042005491b22054100480d0a2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0a20044101742203200520052003491b22034100480d0a2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a20083700000b20002802002203410c460d010b2003410d470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410c3a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a0000200041046a280200210720022000410c6a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a20002802002203410d460d010b2003410e470d060c070b02400240024002400240200141046a280200200141086a22042802002203470d00200341016a22052003490d0520034101742206200520052006491b22064100480d052003450d0120012802002003200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021030b2004200341016a360200200520036a410d3a00000240200041086a22052d000022034101470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41003a0000200041306a290300210802400240024002400240200141046a2802002206200728020022036b41084f0d00200341086a22072003490d0620064101742203200720072003491b22034100480d062006450d0120012802002006200310152206450d020c030b200128020021060c030b2003101322060d010b200341011014000b20012006360200200141046a2003360200200141086a28020021030b200141086a2207200341086a360200200620036a2008370000200141046a2802002106200728020021030240024002400240024002400240024002400240024002402000410c6a2802002207450d0020062003470d01200341016a22062003490d0d2003410174220b20062006200b491b220b4100480d0d2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0c20034101742207200620062007491b22074100480d0c2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d07200b4101742206200a200a2006491b22064100480d07200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041186a2802002207450d0020062003470d01200341016a22062003490d0d2003410174220b20062006200b491b220b4100480d0d2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0c20034101742207200620062007491b22074100480d0c2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041206a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d07200b4101742206200a200a2006491b22064100480d07200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041246a2802002207450d0020062003470d01200341016a22062003490d0d2003410174220b20062006200b491b220b4100480d0d2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0c20034101742207200620062007491b22074100480d0c2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a000020022000412c6a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d07200b4101742206200a200a2006491b22064100480d07200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b20052d000021030b0240200341ff01714102470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a220b200341016a360200200620036a41013a00002000410c6a280200210a2002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002207200b28020022066b20034f0d00200620036a220b2006490d0620074101742206200b200b2006491b22064100480d062007450d0120012802002007200610152207450d020c030b200128020021070c030b2006101322070d010b200641011014000b20012007360200200141046a2006360200200141086a28020021060b2004200620036a360200200720066a200a200310f6021a20052d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a220b200341016a360200200620036a41023a00002000410c6a280200210a2002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002207200b28020022066b20034f0d00200620036a220b2006490d0620074101742206200b200b2006491b22064100480d062007450d0120012802002007200610152207450d020c030b200128020021070c030b2006101322070d010b200641011014000b20012007360200200141046a2006360200200141086a28020021060b2004200620036a360200200720066a200a200310f6021a20052d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a220b200341016a360200200620036a41033a00002000410c6a280200210a2002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002207200b28020022066b20034f0d00200620036a220b2006490d0620074101742206200b200b2006491b22064100480d062007450d0120012802002007200610152207450d020c030b200128020021070c030b2006101322070d010b200641011014000b20012007360200200141046a2006360200200141086a28020021060b2004200620036a360200200720066a200a200310f6021a20052d000021030b200341ff01714105470d0402400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0520034101742207200620062007491b22074100480d052003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41043a0000200141046a2802002106200728020021030240024002400240024002400240024002400240024002402000410c6a2802002207450d0020062003470d01200341016a22062003490d0c2003410174220b20062006200b491b220b4100480d0c2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0b20034101742207200620062007491b22074100480d0b2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d06200b4101742206200a200a2006491b22064100480d06200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a280200210302400240024002400240024002400240024002400240200041186a2802002207450d0020062003470d01200341016a22062003490d0b2003410174220b20062006200b491b220b4100480d0b2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1720034101742207200620062007491b22074100480d172003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c050b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041206a280200220336020c2002410c6a20011018024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d03200b4101742206200a200a2006491b22064100480d03200b450d012001280200200b20061015220b450d020c040b2001280200210b0c040b20061013220b0d020b200641011014000b1010000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041246a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a000020022000412c6a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b20052d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0e20034101742207200620062007491b22074100480d0e2003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41053a000002400240024002400240200141046a2802002206200728020022036b41204f0d00200341206a22072003490d0e20064101742203200720072003491b22034100480d0e2006450d0120012802002006200310152206450d020c030b200128020021060c030b2003101322060d010b200341011014000b20012006360200200141046a2003360200200141086a28020021030b200141086a2207200341206a360200200620036a220341186a200541196a290000370000200341106a200541116a290000370000200341086a200541096a29000037000020032005290001370000200141046a2802002106200728020021030240024002400240024002400240024002400240024002402000412c6a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041346a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041386a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041c0006a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041c4006a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041cc006a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b20052d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0e20034101742207200620062007491b22074100480d0e2003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41063a000002400240024002400240200141046a2802002206200728020022036b41204f0d00200341206a22072003490d0e20064101742203200720072003491b22034100480d0e2006450d0120012802002006200310152206450d020c030b200128020021060c030b2003101322060d010b200341011014000b20012006360200200141046a2003360200200141086a28020021030b2004200341206a360200200620036a220341186a200541196a290000370000200341106a200541116a290000370000200341086a200541096a290000370000200320052900013700000b20002802002203410e460d010b2003410f470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0b20034101742205200420042005491b22054100480d0b2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a410e3a000020002802002203410f460d010b20034110470d010c020b02400240024002400240200141046a2206280200200141086a22042802002203470d00200341016a22052003490d0920034101742207200520052007491b22074100480d092003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a410f3a00000240200041086a220a2d000022034101470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200041106a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200a2d000021030b0240200341ff01714102470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41013a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a00000240024002400240024020062802002205200428020022036b41204f0d00200341206a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341206a360200200520036a220341186a200a41196a290000370000200341106a200a41116a290000370000200341086a200a41096a2900003700002003200a290001370000200a2d000021030b0240200341ff01714103470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41023a00000240024002400240024020062802002205200428020022036b41204f0d00200341206a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341206a360200200520036a220341186a200a41196a290000370000200341106a200a41116a290000370000200341086a200a41096a2900003700002003200a290001370000200a2d000021030b0240200341ff01714104470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41033a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200041186a2903002108200041106a290300210d0240024002400240024020062802002205200428020022036b41104f0d00200341106a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341106a360200200520036a220320083700082003200d370000200041e8006a28020021070240024002400240024020062802002205200428020022036b41044f0d00200341046a220b2003490d0a20054101742203200b200b2003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341046a360200200520036a2007360000200041ec006a28020021070240024002400240024020062802002205200428020022036b41044f0d00200341046a220b2003490d0a20054101742203200b200b2003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341046a360200200520036a2007360000200041286a2903002108200041206a290300210d0240024002400240024020062802002205200428020022036b41104f0d00200341106a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341106a360200200520036a220320083700082003200d370000200041306a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041386a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041c0006a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041c8006a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041d0006a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041e0006a2903002108200041d8006a290300210d0240024002400240024020062802002205200428020022036b41104f0d00200341106a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341106a360200200520036a220320083700082003200d370000200a2d000021030b02400240024002400240200341ff01714105470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0e20034101742207200520052007491b22074100480d0e2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b200141086a220c200341016a360200200520036a41043a00002002200041146a280200220736020c2002410c6a2001101802402007450d00200141046a210903400240024002400240200628020020042802002203470d00200341016a22052003490d0f2003410174220b20052005200b491b220b4100480d0f2003450d0120012802002003200b101522050d020c070b200128020021050c020b200b10132205450d050b200120053602002009200b360200200c28020021030b2004200341016a360200200520036a41003a00002007417f6a22070d000b0b200a2d000021030b200341ff01714106470d03024002400240200628020020042802002203470d00200341016a22052003490d0b20034101742207200520052007491b22074100480d0b2003450d0120012802002003200710152205450d020c040b200128020021050c040b2007101322050d020b200741011014000b200b41011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41053a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200a2d000021030b0240200341ff01714107470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41063a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200a2d000021030b0240200341ff01714108470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41073a00000240024002400240024020062802002205200428020022036b41204f0d00200341206a22062003490d0a20054101742203200620062003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341206a360200200520036a220341186a200a41196a290000370000200341106a200a41116a290000370000200341086a200a41096a2900003700002003200a2900013700000b200028020022034110460d010b20034111470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41103a00000240200041086a28020022034101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0820054101742204200620062004491b22044100480d082005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a02400240024002400240200141046a28020020062802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041186a2d00003a0000200041086a28020021030b024020034102470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041206a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341086a360200200420036a20083700002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0820054101742204200620062004491b22044100480d082005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a02400240024002400240200141046a28020020062802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041186a2d00003a0000200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a20083700000b200028020022034111460d010b20034112470d0a0c0b0b02400240024002400240200141046a2206280200200141086a22032802002204470d00200441016a22052004490d0520044101742207200520052007491b22074100480d052004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41113a00000240200041086a220b2d000022044101470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000200041306a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a2008370000200041386a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a2008370000200b2d000021040b0240200441ff01714102470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000200b2d000021040b0240200441ff01714103470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41023a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000200b2d000021040b200441ff01714104470d0802400240024002400240200628020020032802002204470d00200441016a22052004490d0520044101742207200520052007491b22074100480d052004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41033a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0520054101742204200720072004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000024002400240024002400240024002400240024002400240024002400240200041c0006a2802002204450d00200628020020032802002205470d01200541016a22072005490d0f2005410174220a20072007200a491b220a4100480d0f2005450d0320012802002005200a10152207450d040c090b200628020020032802002204470d01200441016a22052004490d0e20044101742207200520052007491b22074100480d0e2004450d0420012802002004200710152205450d050c060b200128020021070c080b200128020021050c050b200a101322070d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012007360200200141046a200a360200200141086a28020021050b200141086a2209200541016a360200200720056a41013a00002002200041c8006a280200220536020c2002410c6a200110182005450d002005410574210a200141046a210e0340024002400240024020062802002207200328020022056b41204f0d00200541206a220c2005490d0920074101742205200c200c2005491b22054100480d092007450d01200128020020072005101522070d020c060b200128020021070c020b200510132207450d040b20012007360200200e2005360200200928020021050b2003200541206a360200200720056a220541186a200441186a290000370000200541106a200441106a290000370000200541086a200441086a29000037000020052004290000370000200441206a2104200a41606a220a0d000b0b20062802002105200328020021040240024002400240024002400240200041d8006a2d000022074102470d0020052004470d01200441016a22052004490d1620044101742207200520052007491b22074100480d162004450d0320012802002004200710152205450d040c0f0b20052004470d01200441016a22052004490d092004410174220a20052005200a491b220a4100480d092004450d0420012802002004200a10152205450d050c070b200128020021050c0e0b200128020021050c060b2007101322050d0b0b200741011014000b200a101322050d020b200a41011014000b200541011014000b20012005360200200141046a200a360200200141086a28020021040b2003200441016a360200200520046a41013a00002006280200210520032802002104024002400240024002400240024020074101470d0020052004470d01200441016a22052004490d1320044101742207200520052007491b22074100480d132004450d0320012802002004200710152205450d040c0a0b20052004470d01200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0420012802002004200710152205450d050c070b200128020021050c090b200128020021050c060b2007101322050d060b200741011014000b2007101322050d020b200741011014000b1010000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c040b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000b024002400240024002400240024002400240024002400240200041306a2903004201520d00200628020020032802002204470d01200441016a22052004490d1020044101742207200520052007491b22074100480d102004450d0320012802002004200710152205450d040c090b200628020020032802002204470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b2007101322050d050b200741011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a0000200041386a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0a20054101742204200720072004491b22044100480d0a2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a20083700000b2006280200210520032802002104024002400240024002400240024002400240024002400240200041cc006a2802002207450d0020052004470d01200441016a22052004490d102004410174220a20052005200a491b220a4100480d102004450d0320012802002004200a10152205450d040c090b20052004470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b200a101322050d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a200a360200200141086a28020021040b200141086a220c200441016a360200200520046a41013a00002002200041d4006a280200220436020c2002410c6a2001101802400240024002400240200141046a280200220a200c28020022056b20044f0d00200520046a220c2005490d0a200a4101742205200c200c2005491b22054100480d0a200a450d012001280200200a20051015220a450d020c030b2001280200210a0c030b20051013220a0d010b200541011014000b2001200a360200200141046a2005360200200141086a28020021050b2003200520046a360200200a20056a2007200410f6021a0b200b2d000021040b0240200441ff01714105470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0920044101742207200520052007491b22074100480d092004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41043a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0920054101742204200720072004491b22044100480d092005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000024002400240024002400240024002400240024002400240024002400240024002400240200041c0006a2802002204450d00200628020020032802002205470d01200541016a22072005490d162005410174220a20072007200a491b220a4100480d162005450d0320012802002005200a10152207450d040c090b200628020020032802002204470d01200441016a22052004490d1520044101742207200520052007491b22074100480d152004450d0420012802002004200710152205450d050c060b200128020021070c080b200128020021050c050b200a101322070d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012007360200200141046a200a360200200141086a28020021050b200141086a2209200541016a360200200720056a41013a00002002200041c8006a280200220536020c2002410c6a200110182005450d002005410574210a200141046a210e0340024002400240024020062802002207200328020022056b41204f0d00200541206a220c2005490d1020074101742205200c200c2005491b22054100480d102007450d01200128020020072005101522070d020c060b200128020021070c020b200510132207450d040b20012007360200200e2005360200200928020021050b2003200541206a360200200720056a220541186a200441186a290000370000200541106a200441106a290000370000200541086a200441086a29000037000020052004290000370000200441206a2104200a41606a220a0d000b0b20062802002105200328020021040240024002400240024002400240200041d8006a2d000022074102470d0020052004470d01200441016a22052004490d1120044101742207200520052007491b22074100480d112004450d0320012802002004200710152205450d040c0a0b20052004470d01200441016a22052004490d102004410174220a20052005200a491b220a4100480d102004450d0420012802002004200a10152205450d050c070b200128020021050c090b200128020021050c060b2007101322050d060b200741011014000b200a101322050d020b200a41011014000b200541011014000b20012005360200200141046a200a360200200141086a28020021040b2003200441016a360200200520046a41013a000020062802002105200328020021040240024002400240024002400240024002400240024020074101470d0020052004470d01200441016a22052004490d1220044101742207200520052007491b22074100480d122004450d0320012802002004200710152205450d040c090b20052004470d01200441016a22052004490d1120044101742207200520052007491b22074100480d112004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b2007101322050d050b200741011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c040b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000b024002400240024002400240024002400240024002400240200041306a2903004201520d00200628020020032802002204470d01200441016a22052004490d1020044101742207200520052007491b22074100480d102004450d0320012802002004200710152205450d040c090b200628020020032802002204470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b2007101322050d050b200741011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a0000200041386a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0a20054101742204200720072004491b22044100480d0a2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a20083700000b2006280200210520032802002104024002400240024002400240024002400240024002400240200041cc006a2802002207450d0020052004470d01200441016a22052004490d102004410174220a20052005200a491b220a4100480d102004450d0320012802002004200a10152205450d040c090b20052004470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b200a101322050d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a200a360200200141086a28020021040b200141086a220c200441016a360200200520046a41013a00002002200041d4006a280200220436020c2002410c6a2001101802400240024002400240200141046a280200220a200c28020022056b20044f0d00200520046a220c2005490d0a200a4101742205200c200c2005491b22054100480d0a200a450d012001280200200a20051015220a450d020c030b2001280200210a0c030b20051013220a0d010b200541011014000b2001200a360200200141046a2005360200200141086a28020021050b2003200520046a360200200a20056a2007200410f6021a0b200b2d000021040b0240200441ff01714106470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0920044101742207200520052007491b22074100480d092004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b200141086a220a200441016a360200200520046a41053a00002000410c6a280200210c2002200041146a280200220436020c2002410c6a2001101802400240024002400240200141046a2802002207200a28020022056b20044f0d00200520046a220a2005490d0920074101742205200a200a2005491b22054100480d092007450d0120012802002007200510152207450d020c030b200128020021070c030b2005101322070d010b200541011014000b20012007360200200141046a2005360200200141086a28020021050b2003200520046a360200200720056a200c200410f6021a200b2d000021040b0240200441ff01714107470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0920044101742206200520052006491b22064100480d092004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2207200441016a360200200520046a41063a00002000410c6a280200210b2002200041146a280200220436020c2002410c6a2001101802400240024002400240200141046a2802002206200728020022056b20044f0d00200520046a22072005490d0920064101742205200720072005491b22054100480d092006450d0120012802002006200510152206450d020c030b200128020021060c030b2005101322060d010b200541011014000b20012006360200200141046a2005360200200141086a28020021050b2003200520046a360200200620056a200b200410f6021a0b200028020022034112460d010b20034113470d050c010b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0620034101742205200420042005491b22054100480d062003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41123a00000240200041086a22032d000022044101470d0002400240024002400240200141046a28020020052802002204470d00200441016a22052004490d0720044101742206200520052006491b22064100480d072004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41003a000002400240024002400240200141046a2802002205200628020022046b41204f0d00200441206a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200520046a220441186a200341196a290000370000200441106a200341116a290000370000200441086a200341096a2900003700002004200329000137000020032d000021040b0240200441ff01714102470d0002400240024002400240200141046a280200200141086a2802002204470d00200441016a22052004490d0720044101742206200520052006491b22064100480d072004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41013a0000200041106a290300210802400240024002400240200141046a2802002205200628020022046b41084f0d00200441086a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200441086a360200200520046a200837000020032d000021040b0240200441ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a20083700000b20002802004113470d040b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41133a00000240200041086a22032d00004101470d0002400240024002400240200141046a28020020052802002204470d00200441016a22062004490d0620044101742207200620062007491b22074100480d062004450d0120012802002004200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021040b200141086a2207200441016a360200200620046a41003a000002400240024002400240200141046a2802002206200728020022046b41204f0d00200441206a22072004490d0620064101742204200720072004491b22044100480d062006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b200141086a2207200441206a360200200620046a220441186a200341196a290000370000200441106a200341116a290000370000200441086a200341096a2900003700002004200329000137000002400240024002400240200141046a2802002206200728020022046b41204f0d00200441206a22072004490d0620064101742204200720072004491b22044100480d062006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200620046a220441186a200341216a220641186a290000370000200441106a200641106a290000370000200441086a200641086a2900003700002004200629000037000020032d00004102470d040b02400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2008370000200041186a2903002108024002400240200141046a2802002203200528020022006b41084f0d00200041086a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010152203450d020c040b200128020021030c040b2000101322030d020b200041011014000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200320006a20083700000b200241106a24000bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510152204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010152204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101522040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101522070d0a0c110b2005101322040d130b200541011014000b200128020021040c050b200128020021070c070b2000101322040d0d0b200041011014000b200010132204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410132207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101522050d020c060b200128020021050c020b200810132205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011014000b41a094c1001038000b2002200241086a360240200241b894c100360244200241c8006a41146a4100360200200241286a41146a4105360200200241346a4106360200200241106a41146a4103360200200241acf1c3003602582002420137024c200241c094c1003602482002410636022c20024203370214200241e4efc3003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41c894c1001046000b200041011014000b200441011014000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410152203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410152203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101522030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101522030d0a0c0d0b2004101322030d0e0b200441011014000b200128020021030c050b200128020021030c070b2004101322030d0c0b200441011014000b200410132203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410132203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101522030d020c060b200128020021030c020b200010132203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011014000b200441011014000b200041011014000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210152203450d020c030b200128020021030c030b2002101322030d010b200241011014000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010152203450d020c040b200128020021030c040b2000101322030d020b200041011014000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610152205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010152205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101522050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101522080d0a0c110b2006101322050d130b200641011014000b200128020021050c050b200128020021080c070b2000101322050d0d0b200041011014000b200010132205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510132208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101522060d020c060b200128020021060c020b200910132206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011014000b41cc95c1001038000b20022002360240200241e895c100360244200241c8006a41146a4100360200200241286a41146a4105360200200241346a4107360200200241106a41146a4103360200200241acf1c3003602582002420137024c200241c094c1003602482002410736022c20024203370214200241e4efc3003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41f895c1001046000b200041011014000b200541011014000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000b0a0041f0f4c0001038000b130020004108360204200041bcf9c0003602000b3301017f0240410810132202450d0020004288808080800137020420002002360200200242ac023700000f0b410841011014000b130020004106360204200041f987c1003602000be70201067f230041306b22012400200141206a41086a220242003703002001420037032041ea88c1004115200141206a1002200141086a41086a200229030037030020012001290320370308200141003602282001420137032020012000280208220336021c2001411c6a200141206a101802400240024002402003450d0020022802002100200128022421040340024002400240024020002004470d00200441016a22052004490d0720044101742206200520052006491b22064100480d072004450d01200128022020042006101522050d020c080b200128022021050c020b200610132205450d060b2001200636022420012005360220200621040b2002200041016a2206360200200520006a41003a0000200621002003417f6a22030d000c020b0b2002280200210620012802242104200128022021050b200141086a411020052006100102402004450d00200510160b200141306a24000f0b1010000b200641011014000bc80704037f027e037f087e230041206b2201240002400240411110132202450d00200241106a41002d00c28a413a0000200241086a41002900ba8a41370000200241002900b28a4137000020024111412210152202450d01200241003a0011200141106a41086a220342003703002001420037031020024112200141106a1002200141086a2003290300370300200120012903103703000240024002402001411041acf1c300410041001000417f460d002001420037031820014200370310410020014110200141106a41104100100022032003417f461b2203410f4d0d02200141186a29030021042001290310210520014100360210410020014110200141106a41042003411020034110491b2206100022032003417f461b220341034d0d022001280210210720014100360210410020014110200141106a41042003410420034104491b20066a2206100022032003417f461b220341034d0d02200128021021082001420037031820014200370310410020014110200141106a41102003410420034104491b20066a2206100022032003417f461b2203410f4d0d02200141106a41086a29030021092001290310210a20014200370310410020014110200141106a41082003411020034110491b20066a2206100022032003417f461b220341074d0d022001290310210b20014200370310410020014110200141106a41082003410820034108491b20066a2206100022032003417f461b220341074d0d022001290310210c20014200370310410020014110200141106a41082003410820034108491b20066a2206100022032003417f461b220341074d0d022001290310210d20014200370310410020014110200141106a41082003410820034108491b20066a2206100022032003417f461b220341074d0d022001290310210e2001420037031020014110200141106a41082003410820034108491b20066a2203100041016a41084d0d022001290310210f200142003703182001420037031020014110200141106a4110200341086a10002203417f460d022003410f4d0d0220012903102110200041d8006a200141186a290300370300200041d0006a2010370300200041206a2009370300200041186a200a370300200041106a200437030020002005370308200041e4006a2008360200200041e0006a2007360200200041c8006a200f370300200041c0006a200e370300200041386a200d370300200041306a200c370300200041286a200b370300200042013703000c010b200042003703000b20021016200141206a24000f0b41b6e7c20041331029000b411141011014000b412241011014000be41303017f037e0a7f23004190016b2203240020032000108e01200341086a2903002104200329030021054200210620034180016a41086a220742003703002003420037038001419be8c200410d20034180016a1002200341d8006a41086a20072903003703002003200329038001370358024002400240024002400240024002400240200341d8006a411041acf1c300410041001000417f460d0020034200370310200341d8006a4110200341106a41084100100041016a41084d0d01200329031021060b200342f2deb1abf6eb9cbaeb00370330200341306a200020052004200620027c10bc01200341106a41186a200041186a290000370300200341106a41106a200041106a290000370300200341106a41086a200041086a29000037030020032000290000370310200341d8006a109a01200328025c210720032003280258220020032802604105746a360264200320003602602003200736025c200320003602582003200341106a360268200341386a200341d8006a102b20032802402107200328023c210820032802382109411710132200450d012000410f6a41002900e3f740370000200041086a41002900dcf740370000200041002900d4f74037000020004117412e1015220a450d02200a41003a001720034180016a41086a220042003703002003420037038001200a411820034180016a1002200341d8006a41086a200029030037030020032003290380013703582003410036028801200342013703800120032007360270200341f0006a20034180016a10180240024002400240024002402007450d002007410574210b20034180016a41086a2802002107200328028001210c200328028401210d2009210003400240024002400240200d20076b41204f0d00200741206a220e2007490d07200d410174220f200e200e200f491b220f4100480d07200d450d01200c200d200f1015220c0d020c080b200741206a210e0c020b200f1013220c450d060b200f210d0b200c20076a22072000290000370000200741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a290000370000200e2107200041206a2100200b41606a220b0d000b20034188016a200e3602002003200d360284012003200c360280010c010b20034188016a280200210e200328028401210d200328028001210c0b200341d8006a4110200c200e10010240200d450d00200c10160b200a101602402008450d00200910160b200341d8006a200110bb01200328025c210720032003280258220020032802604105746a360264200320003602602003200736025c200320003602582003200341106a360268200341c8006a200341d8006a102b20032802502107200328024c211020032802482108411b10132200450d07200041176a41002800f38941360000200041106a41002900ec8941370000200041086a41002900e48941370000200041002900dc89413700002000411b413610152209450d082009200137001b20034180016a41086a2200420037030020034200370380012009412320034180016a1002200341d8006a41086a200029030037030020032003290380013703582003410036028801200342013703800120032007360270200341f0006a20034180016a1018024002402007450d002007410574210c410020034180016a41086a28020022076b210d200328028001210f200328028401210b2008210003400240200b200d6a411f4b0d00200741206a220e2007490d04200b410174220a200e200e200a491b220e4100480d0402400240200b450d00200f200b200e1015220f0d010c080b200e1013220f450d070b200e210b0b200f20076a220e2000290000370000200e41186a200041186a290000370000200e41106a200041106a290000370000200e41086a200041086a290000370000200d41606a210d200741206a2107200041206a2100200c41606a220c0d000b20034188016a20073602002003200b360284012003200f360280010c010b20034188016a2802002107200328028401210b200328028001210f0b200341d8006a4110200f200710010240200b450d00200f10160b2009101602402010450d00200810160b20034180016a41086a22004200370300200342003703800141f789c100411620034180016a1002200341d8006a41086a200029030037030020032003290380013703584100210702400240200341d8006a411041acf1c300410041001000417f460d00200342103702742003200341d8006a36027020034180016a200341f0006a10112003280280012200450d0d20034188016a2802002107200328028401210e0c010b410121004100210e0b200320003602602003200e36025c200320003602582003200020074105746a3602642003200341106a360268200341f0006a200341d8006a102b20032802742108200328027021092003280278210020034180016a41086a22074200370300200342003703800141f789c100411620034180016a1002200341d8006a41086a20072903003703002003200329038001370358200341003602880120034201370380012003200036027c200341fc006a20034180016a1018024002402000450d002000410574210c4100200728020022076b210d200328028001210f200328028401210b2009210003400240200b200d6a411f4b0d00200741206a220e2007490d04200b410174220a200e200e200a491b220e4100480d0402400240200b450d00200f200b200e1015220f0d010c090b200e1013220f450d080b200e210b0b200f20076a220e2000290000370000200e41186a200041186a290000370000200e41106a200041106a290000370000200e41086a200041086a290000370000200d41606a210d200741206a2107200041206a2100200c41606a220c0d000b20034188016a20073602002003200b360284012003200f360280010c010b20072802002107200328028401210b200328028001210f0b200341d8006a4110200f200710010240200b450d00200f10160b02402008450d00200910160b411710132200450d092000410f6a41002900ccf740370000200041086a41002900c5f740370000200041002900bdf74037000020004117413710152200450d0a200020032903103700172000412f6a200341286a290300370000200041276a200341106a41106a2903003700002000411f6a200341106a41086a29030037000020034180016a41086a2207420037030020034200370380012000413720034180016a1002200341d8006a41086a20072903003703002003200329038001370358200341d8006a411010032000101620034190016a24000f0b1010000b200f41011014000b200e41011014000b200e41011014000b41b6e7c20041331029000b411741011014000b412e41011014000b411b41011014000b413641011014000b411741011014000b413741011014000b41b6e7c20041331029000ba70201037f230041306b22022400024002400240411b10132203450d00200341176a41002800f38941360000200341106a41002900ec8941370000200341086a41002900e48941370000200341002900dc89413700002003411b413610152203450d012003200137001b200241206a41086a220442003703002002420037032020034123200241206a1002200241086a200429030037030020022002290320370300024002402002411041acf1c300410041001000417f460d002002421037021420022002360210200241206a200241106a101120022802202204450d0420002002290224370204200020043602000c010b20004100360208200042013702000b20031016200241306a24000f0b411b41011014000b413641011014000b41b6e7c20041331029000bca1b0f017f017e027f017e057f017e0a7f037e077f037e027f027e027f027e027f230041a0016b2205240042002106200541f8006a41086a2207420037030020054200370378419be8c200410d200541f8006a1002200541e8006a41086a20072903003703002005200529037837036802400240024002400240024002400240024002400240024002400240200541e8006a411041acf1c300410041001000417f460d0020054200370308200541e8006a4110200541086a41084100100041016a41084d0d01200529030821060b200541086a41106a2003370300200541086a41286a410f3a0000200541086a41186a2004370300200541286a22082000290000370300200520023703104201210920054201370308200541f8006a200110b9022005280278210a200528027c210b200528028001220c450d02200541f8006a41186a220d2000460d01200c41286c210e42012109200a21070340200741086a2903002104200741106a2903002102200741186a29030021032007290300210f200541f8006a41206a200741206a290300370300200541f8006a41186a2003370300200541f8006a41106a22102002370300200541f8006a41086a20043703002005200f3703780240024002400240200d2900002000290000510d0020102903002006580d01200541e8006a41086a200d41086a2903003703002005200d2903003703682010290300210220052903800121032005290378210f42014201520d030c020b200541e8006a41086a200841086a29030037030020052903082104420021092005420037030820052008290300370368200541086a41186a2903002102200529031821032005290310210f20044201510d010c020b42004201520d010b200741286a2110200921040c050b200741286a2107200e41586a220e0d000c030b0b41b6e7c20041331029000b200c41286c2107200a41286a2110200541206a2903002102200529031821032005290310210f200529030821090340200541e8006a41086a200841086a29030037030042002104200542003703082005200829030037036820094201510d02201041286a211042002109200741586a22070d000b0b4100210d0240200b450d00200a10160b410821114100211220094201510d010c020b200541d8006a41086a2207200541e8006a41086a29030037030020052005290368370358200541c8006a41086a220e200729030037030020052005290358370348200541386a41086a2207200e290300370300200520052903483703380240024002400240412810132211450d00201120052903383703182011200f37030020112003370308201141206a2007290300370300201141106a2002370300024002402010200a200c41286c6a460d00200541f8006a41186a220e2000460d0141282113200a200c41286c6a221441586a2115410121164120211741102118410821194201211a4228211b4220211c4100211d4101210d41012112410021070c030b4101210d41012112200b0d030c040b41282121200a200c41286c6a222241586a2123200541086a41186a29030021242005290318212520052903102126200529030821044101212741082128420021294201212a4110212b200541f8006a41106a212c4228212d4220212e4100212f412021304101210d41012112410121070c010b412841081014000b03400240024002400240024020070e020001010b201021070340200541f8006a20176a221e200720176a290300370300200e200741186a290300370300200541f8006a20186a220c200720186a290300370300200541f8006a20196a221f200720196a290300370300200520072903003703780240024002400240200e2900002000290000510d00200c2903002006580d01200541e8006a20196a200e20196a2903003703002005200e290300370368200c290300210220052903800121032005290378210f4201201a520d030c020b200541e8006a20196a200820196a29030037030020052903082109420021042005420037030820052008290300370368200541086a41186a2903002102200529031821032005290310210f2009201a510d010c020b4200201a520d010b200541d8006a20196a2210200541e8006a20196a29030037030020052005290368370358200541c8006a20196a2220201029030037030020052005290358370348200c2002370300200e2005290348370300200e20196a202029030037030020052003370380012005200f37037802402012200d470d00200d20166a2210200d490d0c200d2016742212201020102012491b2212ad201b7e2202201c88a70d0c2002a72210201d480d0c0240200d450d002011200d20136c2010101522110d010c060b201010132211450d050b200720136a21102011200d20136c6a22202005290378370300202020176a201e290300370300202041186a200e290300370300202020186a200c290300370300202020196a201f290300370300200d20166a210d20152007460d03410021070c060b2014200720136a2207470d000c020b0b2010210702400340200541e8006a20286a2210200820286a29030037030020052029370308200520082903003703682004202a510d01420021042022200720216a2207470d000c020b0b200541d8006a20286a220c201029030037030020052005290368370358200541c8006a20286a2210200c29030037030020052005290358370348202c2024370300200e2005290348370300200e20286a201029030037030020052025370380012005202637037802402012200d470d00200d20276a2210200d490d09200d202774220c20102010200c491b2212ad202d7e2204202e88a70d092004a72210202f480d090240200d450d002011200d20216c2010101522110d010c030b201010132211450d020b200720216a21102011200d20216c6a220c2005290378370300200c20306a200541f8006a20306a290300370300200c41186a200e290300370300200c202b6a202c290300370300200c20286a200541f8006a20286a290300370300200d20276a210d4200210420232007470d020b200b450d040c030b201041081014000b410121070c000b0b200a10160b20044201520d010b200541f8006a41206a200541086a41086a220741206a290300370300200541f8006a41186a200741186a290300370300200541f8006a41106a200741106a290300370300200541f8006a41086a200741086a2903003703002005200729030037037802402012200d470d00200d41016a2207200d490d02200d4101742208200720072008491b2212ad42287e2204422088a70d022004a722074100480d0202400240200d450d002011200d41286c200710152211450d010c020b2007101322110d010b200741081014000b2011200d41286c6a22072005290378370300200741206a200541f8006a41206a290300370300200741186a200541f8006a41186a290300370300200741106a200541f8006a41106a290300370300200741086a200541f8006a41086a290300370300200d41016a210d0b410e10132207450d05200741066a410029008fa04337000020074100290089a0433700002007410e412e10152218450d062018200129000037000e201841266a200141186a2900003700002018411e6a200141106a290000370000201841166a200141086a290000370000200541f8006a41086a22194200370300200542003703782018412e200541f8006a1002200541e8006a41086a2019290300370300200520052903783703682005410036028001200542013703782005200d360258200541d8006a200541f8006a101802400240200d450d00200d41286c210d20192802002100200528027c21072011210e03400240024002400240200720006b41084f0d00200041086a22082000490d0720074101742210200820082010491b22104100480d072007450d01200528027820072010101522080d020c080b200528027821080c020b201010132208450d060b2005201036027c20052008360278201021070b2019200041086a2210360200200820006a200e41186a290000370000200e41086a2903002104200e29030021020240024002400240200720106b41104f0d00201041106a22002010490d0720074101742228200020002028491b22284100480d072007450d01200820072028101522080d020c090b200041186a21000c020b202810132208450d070b2005202836027c20052008360278202821070b200820106a221020043700082010200237000020192000360200200e41106a29030021040240200720006b41074b0d00200041086a22102000490d0420074101742228201020102028491b22104100480d04024002402007450d00200820072010101522080d010c090b201010132208450d080b2005201036027c200520083602780b2019200041086a360200200820006a20043700000240024002400240200528027c220720192802002208470d00200841016a22072008490d0720084101742200200720072000491b22074100480d072008450d01200528027820082007101522100d020c0b0b200528027821100c020b200710132210450d090b2005200736027c200520103602780b2019200841016a2200360200201020086a200e41206a2d00003a0000200e41286a210e200d41586a220d0d000c020b0b20192802002100200528027c2107200528027821100b200541e8006a411020102000100102402007450d00201010160b2018101602402012450d00201110160b200541a0016a24000f0b1010000b201041011014000b202841011014000b201041011014000b200741011014000b410e41011014000b412e41011014000b1300200041083602042000419c8bc1003602000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10f3022100200241206a240020000bc70101037f024002400240024020022802042203417f4c0d004101210402402003450d0020022802002102200310132204450d0320042002200310f6021a0b20034101742205200341036a220220022005491b22054100480d01024002402003450d0020042003200510152204450d010c050b2005101322040d040b200541011014000b100f000b1010000b200341011014000b200020023602082000200536020420002004360200200420036a220320012f00003b0000200341026a200141026a2d00003a00000bb31809077f017e047f027e017f017e017f017e037f23004190026b2202240002400240024002400240024002400240024002400240411810132203450d00200341106a41002900989641370000200341086a4100290090964137000020034100290088964137000020034118413010152204450d0120042001370018200241f0016a41086a22034200370300200242003703f00120044120200241f0016a1002200241e8006a41086a2003290300370300200220022903f0013703680240024002400240200241e8006a411041acf1c300410041001000417f460d002002421037027c2002200241e8006a360278200242003703f00120024100200241e8006a4110200241f0016a41084100100022032003417f461b2203410820034108491b2002280280016a36028001200341074d0d0e20022903f0012101200241106a200241f8006a10122002280210450d0e20022802142203417f4c0d032003450d012003101b2205450d0620024180016a2206200341002002280278200228027c200520032006280200100022072007417f461b2207200720034b1b220720062802006a36020020072003460d020c0c0b200410164101210441182108420221090c090b410121052002280278200228027c4101410020024180016a28020010001a41002003470d0a0b200241086a200241f8006a10122002280208450d09200228020c2206417f4c0d000240024002402006450d002006101b220a450d0720024180016a2207200641002002280278200228027c200a200620072802001000220b200b417f461b220b200b20064b1b220b20072802006a360200200b2006460d010c020b4101210a2002280278200228027c4101410020024180016a28020010001a41002006470d010b2002200241f8006a10122002280200450d0020022802042207417f4c0d01024002402007450d002007101b220c450d0820024180016a220b200741002002280278200228027c200c2007200b280200100022082008417f461b2208200820074b1b2208200b2802006a36020020082007470d010c090b4101210c2002280278200228027c4101410020024180016a28020010001a41002007460d080b2007450d00200c10160b2006450d09200a10162003450d0b0c0a0b100f000b411841011014000b413041011014000b200341011014000b200641011014000b200741011014000b200242003703f001200241f8006a41086a220b41002002280278200228027c200241f0016a4108200b280200100022082008417f461b2208410820084108491b200b2802006a220d360200200841074d0d0120022903f001210e200242003703f001200b41002002280278200228027c200241f0016a4108200d100022082008417f461b2208410820084108491b200b2802006a220d360200200841074d0d0120022903f001210f200241003a00f0012002280278200228027c200241f0016a4101200d1000210b20024180016a22082008280200200b41016a41014b220b6a22083602000240024002400240200b450d004102210b20022d00f001220d4101460d01200d0d02200242003703f001200241f8006a41086a221041002002280278200228027c200241f0016a41082008100022082008417f461b220d4108200d4108491b20102802006a2208360200200d41074d0d0220022903f0012111200241a8016a41086a200241f0016a41086a290300370300200241a8016a41106a200241f0016a41106a2903003703002002200241cb016a2800003600c301200220022800c8013602c001200220022903f0013703a8014100210b0c030b4102210b0c010b20024188026a4200370300200241f0016a41106a4200370300200241f0016a41086a4200370300200242003703f00141002110200241f8006a41086a221241002002280278200228027c200241f0016a41202008100022082008417f461b220d4120200d4120491b20122802006a220836020002400240200d411f4d0d00200241c8016a41086a20024187026a290000370300200241c8016a41106a200241f0016a411f6a2d00003a0000200220022800f3013600e301200220022802f0013602e001200220022900ff013703c80120022900f7012111410121100c010b0b200241f0016a41086a220d200241c8016a41086a290300370300200241f0016a41106a2212200241c8016a41106a2d00003a0000200220022800e3013600eb01200220022802e0013602e801200220022903c8013703f0012010450d00200241a8016a41086a200d290300370300200241a8016a41106a20122d00003a0000200220022800eb013600c301200220022802e8013602c001200220022903f0013703a801200241bc016a200241f3016a280000360000200220022800f0013600b9014101210b0c010b0b200241f0016a41086a220d200241a8016a41086a290300370300200241f0016a41106a2210200241a8016a41106a290300370300200220022800c3013600cb01200220022802c0013602c801200220022903a8013703f001200b4102460d0120024188016a41086a200d29030037030020024188016a41106a2010290300370300200220022800cb013600a301200220022802c8013602a001200220022903f00137038801200241003a00f0012002280278200228027c200241f0016a4101200810002108200241f8006a41086a220d200d280200200841016a41014b22086a220d3602002008450d0120022d00f0012110200241003a00f0012002280278200228027c200241f0016a4101200d1000210820024180016a220d200d280200200841016a41014b22086a220d3602002008450d010240024020022d00f0012208450d0020084101470d03200242003703f001200241f8006a41086a221241002002280278200228027c200241f0016a4108200d100022082008417f461b2208410820084108491b20122802006a360200200841074d0d0320022903f0012113420121090c010b420021090b200241f0016a41086a220820024188016a41086a290300370300200241f0016a41106a220d20024188016a41106a290300370300200220022800a3013600cb01200220022802a0013602c80120022002290388013703f001200241e8016a41026a2212200241a8016a41026a2d00003a0000200220022f00a8013b01e801200241a8016a41086a22142008290300370300200241a8016a41106a2215200d290300370300200241e0016a41026a221620122d00003a0000200220022800cb0136008b01200220022802c80136028801200220022903f0013703a801200220022f01e8013b01e0012004101620082014290300370300200d2015290300370300200241e8006a41026a20162d00003a00002002200228008b013600cb0120022002280288013602c801200220022903a8013703f001200220022f01e0013b01682001422088a7210d2001a72108410021040b200241c8006a41086a2212200241f0016a41086a290300370300200241c8006a41106a2214200241f0016a41106a290300370300200241c4006a41026a2215200241e8006a41026a2d00003a0000200220022800cb01360063200220022802c801360260200220022903f001370348200220022f01683b0144024002402004450d00200041a096c100360204200041086a2008360200410121030c010b200241206a41086a22042012290300370300200241206a41106a221220142903003703002002411c6a41026a221420152d00003a00002002200228006336003f2002200228026036023c20022002290348370320200220022f01443b011c200041206a200b3a0000200041186a200f370200200041106a200e3702002000410c6a200d360200200041086a2008360200200041286a2011370200200041fc006a20103a0000200041f8006a2007360200200041f4006a2007360200200041f0006a200c360200200041ec006a2006360200200041e8006a2006360200200041e4006a200a360200200041e0006a2003360200200041dc006a2003360200200041d8006a2005360200200041d0006a2013370300200041c8006a20093703002000200228023c360021200041246a200228003f360000200041306a2002290320370200200041386a2004290300370200200041c0006a2012290300370200200041ff006a20142d00003a0000200020022f011c3b007d410021030b2000200336020020024190026a24000f0b0240024020070d0020060d010c020b200c10162006450d010b200a101620030d010c020b2003450d010b200510160b41b6e7c20041331029000b13002000410f360204200041c896c1003602000b3301017f0240410410132202450d0020004284808080c0003702042000200236020020024180103600000f0b410441011014000b3301017f0240410410132202450d0020004284808080c0003702042000200236020020024180083600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241283600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241053600000f0b410441011014000bee0101057f230041106b2202240020024100360208200242013703002002410136020c2002410c6a2002101802400240024002400240024020022802042203200228020822046b41084f0d00200441086a22052004490d0320034101742206200520052006491b22064100480d032003450d0120022802002003200610152203450d020c040b200441086a2105200228020021030c040b2006101322030d020b200641011014000b1010000b20022006360204200220033602000b200241086a22062005360200200320046a4200370000200041086a200628020036020020002002290300370200200241106a24000b7801047f230041106b2202240020024100360208200242013703000240410110132203450d00200220033602002002410136020420002002290300370200200241086a22042004280200220441016a2205360200200320046a41003a0000200041086a2005360200200241106a24000f0b410141011014000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010132206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011014000b13002000410a360204200041c0aac1003602000be90202077f017e230041106b22022400200241003a000f2002410f6a2001280200220320012802042204410047220510f6021a02400240024002400240024020042005490d00200141046a200420056b3602002001200320056a360200024002402004450d004100210420022d000f22054101460d0120050d0720004100360204410121040c070b410021040c060b20022001101a2002280200450d0520022802042205417f4c0d01024002402005450d002005101b2206450d0420062001280200200141046a22072802002203200520032005491b220310f6021a200728020022082003490d052007200820036b3602002001200128020020036a36020020032005470d010c060b4101210641002005460d050b2005450d05200610160c050b20052004101c000b100f000b200541011014000b20032008101c000b20002006360204200041086a2005ad2209422086200984370200410121040b20002004360200200241106a24000bd01501097f230041306b22022400024002400240024002400240024002400240411810132203450d00200341106a41002900989641370000200341086a4100290090964137000020034100290088964137000020034118413010152204450d0120042000370018200241186a41086a220342003703002002420037031820044120200241186a1002200241086a41086a200329030037030020022002290318370308200241003602202002420137031820012903002100410810132203450d022002410836021c200241186a41086a22052005280200220641086a36020020022003360218200320066a2000370000200128025021062002200141d8006a280200220336022c2002412c6a200241186a1018024002400240200228021c2207200528020022056b20034f0d00200520036a22082005490d0820074101742205200820082005491b22054100480d082007450d0120022802182007200510152207450d020c060b200228021821070c060b2005101322070d040b200541011014000b411841011014000b413041011014000b410841011014000b2002200536021c20022007360218200241206a28020021050b200241206a2209200520036a360200200720056a2006200310f6021a200128025c21072002200141e4006a280200220336022c2002412c6a200241186a101802400240024002400240200228021c2208200928020022056b20034f0d00200520036a22092005490d0520084101742205200920092005491b22054100480d052008450d0120022802182008200510152208450d020c030b200228021821080c030b2005101322080d010b200541011014000b2002200536021c20022008360218200241206a28020021050b200241206a220a200520036a360200200820056a2007200310f6021a200128026821082002200141f0006a280200220336022c2002412c6a200241186a101802400240024002400240200228021c2209200a28020022056b20034f0d00200520036a220a2005490d0520094101742205200a200a2005491b22054100480d052009450d0120022802182009200510152209450d020c030b200228021821090c030b2005101322090d010b200541011014000b2002200536021c20022009360218200241206a28020021050b200241186a41086a220a200520036a360200200920056a2008200310f6021a2001290308210002400240024002400240200228021c2205200a28020022036b41084f0d00200341086a22092003490d0520054101742203200920092003491b22034100480d052005450d0120022802182005200310152205450d020c030b200228021821050c030b2003101322050d010b200341011014000b2002200336021c20022005360218200241206a28020021030b200241186a41086a2209200341086a360200200520036a20003700002001290310210002400240024002400240200228021c2205200928020022036b41084f0d00200341086a22092003490d0520054101742203200920092003491b22034100480d052005450d0120022802182005200310152205450d020c030b200228021821050c030b2003101322050d010b200341011014000b2002200336021c20022005360218200241206a28020021030b200241186a41086a2209200341086a360200200520036a20003700000240024002400240024002400240024002400240024002400240024020012d00184101470d00200228021c20092802002203470d01200341016a22052003490d0e20034101742209200520052009491b22094100480d0e2003450d0320022802182003200910152205450d040c090b200228021c20092802002203470d01200341016a22052003490d0d20034101742209200520052009491b22094100480d0d2003450d0420022802182003200910152205450d050c060b200228021821050c080b200228021821050c050b2009101322050d050b200941011014000b2009101322050d010b200941011014000b2002200936021c20022005360218200241206a28020021030b200241186a41086a2209200341016a360200200520036a41003a0000200141206a290300210002400240024002400240200228021c2205200928020022036b41084f0d00200341086a22092003490d0a20054101742203200920092003491b22034100480d0a2005450d0120022802182005200310152205450d020c030b200228021821050c030b2003101322050d010b200341011014000b2002200336021c20022005360218200241206a28020021030b200241186a41086a2209200341086a360200200520036a2000370000200228021c220320092802002205470d020c030b2002200936021c20022005360218200241206a28020021030b200241206a2209200341016a360200200520036a41013a000002400240024002400240200228021c2203200928020022096b41204f0d00200941206a22052009490d0820034101742209200520052009491b22054100480d082003450d012002280218200320051015220a450d020c030b2002280218210a0c030b20051013220a0d010b200541011014000b2002200536021c2002200a360218200241206a2802002109200521030b200241186a41086a200941206a2205360200200a20096a220941086a200141216a290000370000200941106a200141296a290000370000200941186a200141316a2900003700002009200141196a29000037000020032005460d010b200228021821030c010b200341016a22052003490d0120034101742209200520052009491b22054100480d010240024002402003450d0020022802182003200510152203450d010c020b2005101322030d010b200541011014000b2002200536021c20022003360218200241206a28020021050b200241206a2209200541016a360200200320056a200141f4006a2d00003a00000240024002400240024002400240024002400240024020012903404201520d00200228021c20092802002203470d01200341016a22052003490d0b20034101742209200520052009491b22094100480d0b2003450d0320022802182003200910152205450d040c090b200228021c20092802002203470d01200341016a22052003490d0a20034101742209200520052009491b22094100480d0a2003450d0420022802182003200910152205450d050c060b200228021821050c080b200228021821050c050b2009101322050d050b200941011014000b2009101322050d010b200941011014000b2002200936021c20022005360218200241206a28020021030b200241206a200341016a360200200520036a41003a00000c050b2002200936021c20022005360218200241206a28020021030b200241186a41086a2209200341016a360200200520036a41013a0000200141c8006a2903002100024002400240200228021c2205200928020022036b41084f0d00200341086a22092003490d0320054101742203200920092003491b22034100480d032005450d0120022802182005200310152205450d020c040b200228021821050c040b2003101322050d020b200341011014000b1010000b2002200336021c20022005360218200241206a28020021030b200241186a41086a200341086a360200200520036a20003700000b200228021c2103200241086a411020022802182205200241206a280200100102402003450d00200510160b200410160240200141d4006a280200450d00200610160b0240200141e0006a280200450d00200710160b0240200141ec006a280200450d00200810160b200241306a24000b860301077f230041206b220224000240024002400240411210132203450d00200341106a41002f00a4ad413b0000200341086a410029009cad4137000020034100290094ad4137000020024292808080a00237021420022003360210200028020021042002200028020822033602002002200241106a101802400240024020022802142205200228021822066b20034f0d00200620036a22072006490d0420054101742208200720072008491b22084100480d042005450d0120022802102005200810152207450d020c050b200228021021070c050b2008101322070d030b200841011014000b411241011014000b1010000b2002200836021420022007360210200821050b200720066a2004200310f6021a200241106a41086a22084200370300200242003703102007200620036a200241106a1002200241086a2008290300370300200220022903103703002002200137031020024110200241106a4108100102402005450d00200710160b0240200041046a280200450d00200410160b200241206a24000b130020004107360204200041c0b0c1003602000bda0805077f017e027f017e027f230041d0016b22022400200241b0016a41186a22034200370300200241b0016a41106a22044200370300200241b0016a41086a22054200370300200242003703b001200241b0016a2001280200220620012802042207412020074120491b220810f6021a2001200720086b3602042001200620086a360200024002400240024002402007411f4d0d00200241d0006a41186a2003290300370300200241d0006a41106a2004290300370300200241d0006a41086a2005290300370300200220022903b0013703502002200110ae012002290300a7450d0120022903082109200241b0016a41186a22054200370300200241b0016a41106a220a4200370300200241b0016a41086a220b4200370300200242003703b001200241b0016a20012802002203200141046a220628020022074120200741204922041b220810f6021a2006200720086b22073602002001200320086a220336020020040d02200241f0006a41186a2005290300370300200241f0006a41106a200a290300370300200241f0006a41086a200b290300370300200220022903b001370370200241b0016a2007412020074120491b22086a41004100412020086b2008411f4b1b10f5021a200241b0016a2003200810f6021a2006200720086b3602002001200320086a3602002007411f4d0d0320024190016a41186a2203200241b0016a41186a220729030037030020024190016a41106a2204200241b0016a41106a220829030037030020024190016a41086a2205200241b0016a41086a2206290300370300200220022903b00137039001200241b0016a2001102420022802b0012201450d0420022902b401210c2007200241d0006a41186a2903003703002008200241d0006a41106a2903003703002006200241d0006a41086a290300370300200241306a41086a220a200241f0006a41086a290300370300200241306a41106a220b200241f0006a41106a290300370300200241306a41186a220d200241f0006a41186a290300370300200241106a41086a220e2005290300370300200241106a41106a22052004290300370300200241106a41186a22042003290300370300200220022903503703b0012002200229037037033020022002290390013703102000200c37020c2000200136020820002009370300200041146a20022903b0013702002000411c6a2006290300370200200041246a20082903003702002000412c6a2007290300370200200041346a20022903303702002000413c6a200a290300370200200041c4006a200b290300370200200041cc006a200d290300370200200041ec006a2004290300370200200041e4006a2005290300370200200041dc006a200e290300370200200041d4006a2002290310370200200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000ba60302017f027e0240024002400240412010132202450d0020022000290020370000200241186a200041386a290000370000200241106a200041306a290000370000200241086a200041286a2900003700002002412041c00010152202450d0120022000290040370020200241386a200041d8006a290000370000200241306a200041d0006a290000370000200241286a200041c8006a290000370000200041086a290300210320002903002104200241c00041800110152202450d0220022004370040200241c8006a200337000020022000290310370050200241d8006a200041186a2903003700000240024020002d00604101470d00200241e0006a41013a0000200241800141800210152202450d05200241f9006a200041f9006a290000370000200241f1006a200041f1006a290000370000200241e9006a200041e9006a2900003700002002200041e1006a29000037006141810121000c010b200241e0006a41003a000041e10021000b20012802002001280204200220001001200210160f0b412041011014000b41c00041011014000b41800141011014000b41800241011014000b8e1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041fa0110132203450d00200242fa0137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410152201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410152201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a200210b20102400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110152204450d020c060b200228020021040c060b2001101322040d040b200141011014000b41fa0141011014000b410441011014000b410441011014000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c3700002003200210b10102400240024002400240024002400240024002400240200341f0006a2903004201520d00200341f8006a2903002206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110152204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510152204450d030c070b200228020021040c070b200228020021040c080b2005101322040d040b200541011014000b2001101322040d040b200141011014000b41d484c0001038000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a200210b001200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a1018024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101522010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410152203450d020c110b4100210b2005450d120c110b2004101322030d0f0b200441011014000b200228020021010c020b200c10132201450d070b2002200c360204200220013602000b200120056a200141026a200a10f7021a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031013220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b419480c0001038000b200341011014000b200c41011014000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101522030d020c060b200228020021030c020b200110132203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10f7021a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c10160b200a450d060c050b1010000b200141011014000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10f7021a0b20012003200a6a3602000b02402009450d00200810160b20002002290300370200200041086a200241086a280200360200200241206a24000bfc0609047f017e017f017e037f017e047f017e017f230041d0066b22022400200241e8026a200110ce01200241f8026a280200210320022802f402210420022802f002210520022903e8022106200241e0046a200241fc026a41e40010f6021a024002400240024002400240024002400240024002402005450d00200241106a200241e0046a41e40010f6021a200241086a2001101a2002280208450d08200228020c2207ad42f8017e2208422088a70d032008a72209417f4c0d032009450d0120091013220a450d042007450d020c050b20004100360208200241d0066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081014000b200241e8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241e8026a200110d201200241e0056a200241e8026a41f00010f6021a200241e8026a41f0006a2903002108200241e0046a200b41800110f6021a20084203510d02200e41016a2110200241f8016a200241e0056a41f00010f6021a200241f8006a200241e0046a41800110f6021a0240200e200f470d00200d20102010200d491b220fad42f8017e2211422088a70d052011a722124100480d050240200e450d00200a200920121015220a0d010c070b20121013220a450d060b200a20096a200241f8016a41f00010f602220e41f0006a2008370300200e41f8006a200241f8006a41800110f6021a200c4280808080107c210c200d41026a210d200941f8016a21092010210e20102007490d000b200a450d020b200241e8026a200241106a41e40010f6021a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241e8026a41e40010f6021a200041fc006a200c200fad84370200200041f8006a200a360200200241d0066a24000f0b0240200e450d00200a4188016a21100340201010d301201041f8016a2110200941887e6a22090d000b0b200f450d00200a10160b2000410036020802402003450d00200341286c2110200521090340024020092d0000220e450d000240200e4101470d00200941086a280200450d01200941046a2802001016200941286a2109201041586a22100d020c030b200941106a280200450d002009410c6a28020010160b200941286a2109201041586a22100d000b0b02402004450d00200510160b200241d0066a24000f0b1010000b201241081014000bef1004047f017e087f037e230041e0046b22022400200241106a2001101a0240024002400240024002400240024002402002280210450d00200241003a00980220024198026a2001280200220320012802042204410047220510f6021a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d009802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241e0046a24000f0b20004203370370200241e0046a24000f0b20004203370370200241e0046a24000f0b200241a8016a200110ab0102400240024020022d00a8014102460d00200241f8036a41206a200241a8016a41206a280200360200200241f8036a41186a200241a8016a41186a290300370300200241f8036a41106a200241a8016a41106a290300370300200241f8036a41086a200241a8016a41086a290300370300200220022903a8013703f80320024198026a41386a2207420037030020024198026a41306a2208420037030020024198026a41286a2209420037030020024198026a41206a220a420037030020024198026a41186a220b420037030020024198026a41106a220c420037030020024198026a41086a220d4200370300200242003703980220024198026a20012802002203200141046a220e280200220441c000200441c000491b220510f6021a200e200420056b3602002001200320056a3602002004413f4d0d00200241a0046a41386a2007290300370300200241a0046a41306a2008290300370300200241a0046a41286a2009290300370300200241a0046a41206a200a290300370300200241a0046a41186a200b290300370300200241a0046a41106a200c290300370300200241a0046a41086a200d29030037030020022002290398023703a0042002200110ae012002280200450d002002290308210f200141046a220e2802002104200241003a00980220024198026a200128020022072004410047220510f6021a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310098022210500d01200241003a00980220024198026a20052003410047220410f6021a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310098024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024180016a41206a200241f8036a41206a28020036020020024180016a41186a200241f8036a41186a29030037030020024180016a41106a200241f8036a41106a29030037030020024180016a41086a200241f8036a41086a29030037030020024188036a41086a200241a0046a41086a29030037030020024188036a41106a200241a0046a41106a29030037030020024188036a41186a200241a0046a41186a29030037030020024188036a41206a200241a0046a41206a29030037030020024188036a41286a200241a0046a41286a29030037030020024188036a41306a200241a0046a41306a29030037030020024188036a41386a200241a0046a41386a290300370300200220022903f80337038001200220022903a004370388030c030b20052004101c000b20052004101c000b20042003101c000b200241a8016a41206a220420024180016a41206a280200360200200241a8016a41186a220520024180016a41186a290300370300200241a8016a41106a220320024180016a41106a290300370300200241a8016a41086a220e20024180016a41086a29030037030020024198026a41086a220720024188036a41086a29030037030020024198026a41106a220820024188036a41106a29030037030020024198026a41186a220920024188036a41186a29030037030020024198026a41206a220a20024188036a41206a29030037030020024198026a41286a220b20024188036a41286a29030037030020024198026a41306a220c20024188036a41306a29030037030020024198026a41386a220d20024188036a41386a29030037030020022002290380013703a801200220022903880337039802024020064202520d0020004203370370200241e0046a24000f0b200241d8006a41206a2004280200360200200241d8006a41186a2005290300370300200241d8006a41106a2003290300370300200241d8006a41086a200e290300370300200241186a41086a2007290300370300200241186a41106a2008290300370300200241186a41186a2009290300370300200241186a41206a200a290300370300200241186a41286a200b290300370300200241186a41306a200c290300370300200241186a41386a200d290300370300200220022903a80137035820022002290398023703180b20024198026a200110aa01200228029802210120024188036a20024198026a41047241ec0010f6021a024020014114470d0020004203370370200241e0046a24000f0b200241a8016a20024188036a41ec0010f6021a2000200f37030020002002290358370308200041106a200241d8006a41086a290300370300200041186a200241d8006a41106a290300370300200041206a200241d8006a41186a290300370300200041286a200241d8006a41206a2802003602002000200229031837022c200041346a200241186a41086a2903003702002000413c6a200241186a41106a290300370200200041c4006a200241186a41186a290300370200200041cc006a200241186a41206a290300370200200041d4006a200241186a41286a290300370200200041dc006a200241c8006a290300370200200041e4006a200241d0006a29030037020020004188016a200136020020004180016a201037030020002011370378200020063703702000418c016a200241a8016a41ec0010f6021a200241e0046a24000bd00a01027f02402000280200417f6a220141104b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e11001a1a1a01021a0304050607081a1a090a000b200041086a280200220141064b0d10024020010e071a001a121a13141a0b200041106a280200450d192000410c6a28020010160f0b200041086a2d00002201410e4b0d1720014106470d18200041106a280200450d182000410c6a28020010160f0b20002802044101470d17200041086a220028020010d301200028020010160f0b200041086a280200450d16200028020410160f0b200041086a2d00004101470d150240200041106a280200450d002000410c6a28020010160b02402000411c6a280200450d00200041186a28020010160b200041286a280200450d15200041246a28020010160f0b200041086a2d00004103470d14200041d0006a280200450d14200041cc006a28020010160f0b200041086a2d00004101470d13200041106a280200450d132000410c6a28020010160f0b200041086a280200450d12200028020410160f0b200041086a2d0000417f6a220141054b0d11024020010e06000405060708000b02402000410c6a2802002201450d00200041106a280200450d00200110160b0240200041186a2802002201450d002000411c6a280200450d00200110160b200041246a2802002201450d11200041286a280200450d11200110160f0b200041086a28020022014102460d0120014101470d10200041106a280200450d102000410c6a28020010160f0b200041086a2d0000220141064b0d0a20010e070f0f0f0f0b0c0d0f0b200041106a280200450d0e2000410c6a28020010160f0b200041106a280200450d0d2000410c6a28020010160f0b200041106a280200450d0c2000410c6a28020010160f0b200041106a280200450d0b2000410c6a28020010160f0b02402000410c6a2802002201450d00200041106a280200450d00200110160b0240200041186a2802002201450d002000411c6a280200450d00200110160b200041246a2802002201450d0a200041286a280200450d0a200110160f0b02402000412c6a2802002201450d00200041306a280200450d00200110160b0240200041386a2802002201450d002000413c6a280200450d00200110160b200041c4006a2802002201450d09200041c8006a280200450d09200110160f0b0240200041146a2802002202450d002000410c6a28020021012002410c6c210203400240200141046a280200450d00200128020010160b2001410c6a2101200241746a22020d000b0b200041106a280200450d082000410c6a28020010160f0b200041106a280200450d072000410c6a28020010160f0b200041106a280200450d062000410c6a28020010160f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d00200128020010160b0240200141106a280200450d002001410c6a28020010160b200141186a2101200241686a22020d000b0b200041106a280200450d052000410c6a28020010160f0b200041106a280200450d042000410c6a28020010160f0b0240200041c0006a2802002201450d00200041c4006a280200450d00200110160b200041cc006a2802002201450d03200041d0006a280200450d03200110160f0b0240200041c0006a2802002201450d00200041c4006a280200450d00200110160b200041cc006a2802002201450d02200041d0006a280200450d02200110160f0b200041106a280200450d012000410c6a28020010160f0b200041106a280200450d002000410c6a28020010160f0b0bc60603037f047e037f23002202210320024180026b416071220224002001411c6a22042902002105200420022903b801370200200141146a22042902002106200420022903b0013702002001410c6a22042902002107200420022903a801370200200241003a00a00120012902042108200120022903a00137020420022005370358200220063703502002200737034820022008370340200141246a2d00002109200241a0016a41176a22042002290058370000200241a0016a41106a220a2002290051370300200241a0016a41086a220b2002290049370300200220022900413703a00102400240024002402008a741ff01714101470d00200241106a41176a2004290000370000200241106a41106a200a290300370300200241106a41086a200b290300370300200220022903a001370310411210132204450d01200441106a41002f00c3cc413b0000200441086a41002900bbcc41370000200441002900b3cc4137000020044112413210152204450d0220042002290310370012200420093a0031200441296a200241106a41176a220a290000370000200441226a200241106a41106a2903003700002004411a6a200241106a41086a290300370000200241a0016a41086a220b4200370300200242003703a00120044132200241a0016a1002200241c0006a41086a200b290300370300200220022903a001370340200241a0016a200241c0006a10d50120022d00ac014102460d03200241c0006a200241a0016a41d00010f6021a200241306a41086a220b200241c0006a41086a28020036020020022002290340370330200241a0016a200241cc006a41c20010f6021a200141046a220141206a200241e1016a2d00003a0000200141186a200241d9016a290000370000200141106a200241d1016a290000370000200141086a200241a0016a41296a290000370000200120022900c10137000020002002290310370000200041086a200241106a41086a290300370000200041106a200241106a41106a290300370000200041176a200a290000370000200020093a001f200041286a200b2802003602002000200229033037022020041016200324000f0b20004100360220200324000f0b411241011014000b413241011014000b41b3bec10041d7001029000bea0101047f230041b0016b220224000240024002402001411041acf1c300410041001000417f460d002002421037020c20022001360208200241d8006a200241086a101120022802582201450d02200241e0006a2802002103200228025c2104200241e8006a200241086a10f30120022d006822054102460d01200241156a200241e8006a41017241c10010f6021a200020053a000c2000200336020820002004360204200020013602002000410d6a200241156a41c30010f6021a200241b0016a24000f0b200041023a000c200241b0016a24000f0b2004450d00200110160b41b6e7c20041331029000bff0603037f047e037f23002202210320024180026b416071220224002001411c6a22042902002105200420022903b801370200200141146a22042902002106200420022903b0013702002001410c6a22042902002107200420022903a801370200200241003a00a00120012902042108200120022903a00137020420022005370338200220063703302002200737032820022008370320200141246a2d00002109200241a0016a41176a22042002290038370000200241a0016a41106a220a2002290031370300200241a0016a41086a220b2002290029370300200220022900213703a001024002400240024002402008a741ff01714101470d00200241176a2004290000370000200241106a200a290300370300200241086a200b290300370300200220022903a001370300411210132204450d01200441106a41002f00d5cc413b0000200441086a41002900cdcc41370000200441002900c5cc4137000020044112413210152204450d0220042002290300370012200420093a0031200441296a200241176a290000370000200441226a200241106a2903003700002004411a6a200241086a290300370000200241a0016a41086a220a4200370300200242003703a00120044132200241a0016a100220024180016a41086a200a290300370300200220022903a0013703800120024180016a411041acf1c300410041001000417f460d032002421037029401200220024180016a36029001200241a0016a20024190016a10d70120022d00b8014102460d04200241a0016a41086a290300210820022802b001210a20022903a0012105200241206a200241b9016a41c70010f6021a200241a0016a200241206a41c10010f6021a200241206a200241a0016a41c10010f6021a200141246a200241e0006a2d00003a00002001411c6a200241206a41386a290000370000200141146a200241206a41306a2900003700002001410c6a200241206a41286a2900003700002001200229004037000420002002290300370008200041106a200241086a290300370000200041186a200241106a2903003700002000411f6a200241176a290000370000200041306a2008370300200041286a2005370300200041386a200a360200200020093a00272000420137030020041016200324000f0b20004200370300200324000f0b411241011014000b413241011014000b41b3bec10041d7001029000b41b6e7c20041331029000bf00a03027f027e077f230041e0016b22022400200241186a20011012024002402002280218450d00200228021c21032002200110a5012002290300a7450d00200241106a29030021042002290308210541002106200241003a00c00120012802002001280204200241c0016a410120012802081000210720012001280208200741016a41014b22076a22083602082007450d01024020022d00c0012207450d0020074101470d02200241c0016a41186a22094200370300200241c0016a41106a220a4200370300200241c0016a41086a220b4200370300200242003703c001200141086a220641002001280200200141046a280200200241c0016a41202008100022072007417f461b2207412020074120491b20062802006a22083602002007411f4d0d02200241a0016a41186a22072009290300370300200241a0016a41106a2206200a290300370300200241a0016a41086a2209200b290300370300200220022903c0013703a00120024180016a41186a220a200729030037030020024180016a41106a2207200629030037030020024180016a41086a22062009290300370300200220022903a00137038001200241e0006a41186a200a290300370300200241e0006a41106a2007290300370300200241e0006a41086a20062903003703002002200229038001370360410121060b200241c0006a41186a200241e0006a41186a290300370300200241c0006a41106a200241e0006a41106a290300370300200241c0006a41086a200241e0006a41086a2903003703002002200229036037034041002109200241003a00c0012001280200200141046a280200200241c0016a4101200810002107200141086a22082008280200200741016a41014b22076a22083602002007450d01024020022d00c0012207450d0020074101470d02200241c0016a41186a22094200370300200241c0016a41106a220a4200370300200241c0016a41086a220b4200370300200242003703c001200141086a220741002001280200200141046a280200200241c0016a41202008100022012001417f461b2201412020014120491b20072802006a3602002001411f4d0d02200241a0016a41186a22012009290300370300200241a0016a41106a2207200a290300370300200241a0016a41086a2208200b290300370300200220022903c0013703a00120024180016a41186a2209200129030037030020024180016a41106a2201200729030037030020024180016a41086a22072008290300370300200220022903a00137038001200241e0006a41186a2009290300370300200241e0006a41106a2001290300370300200241e0006a41086a20072903003703002002200229038001370360410121090b200241c0016a41186a2201200241e0006a41186a290300370300200241c0016a41106a2207200241e0006a41106a290300370300200241c0016a41086a2208200241e0006a41086a290300370300200220022903603703c001200241206a41186a220a200241c0006a41186a290300370300200241206a41106a220b200241c0006a41106a290300370300200241206a41086a220c200241c0006a41086a290300370300200220022903403703202000200437030820002005370300200020063a001820002003360210200041396a20093a000020002002290320370019200041216a200c290300370000200041296a200b290300370000200041316a200a2903003700002000413a6a20022903c001370100200041c2006a2008290300370100200041ca006a2007290300370100200041d2006a2001290300370100200041de006a200241a4016a2f01003b0100200041da006a20022801a001360100200241e0016a24000f0b200041023a0018200241e0016a24000f0b200041023a0018200241e0016a24000be20504017f037e057f017e230041b0016b22032400200241106a290300210420024188016a290300210520022903082106200228020021072003200241186a41f00010f60221022001280200210820024190016a41186a2209200241e8006a29030037030020024190016a41106a220a200241e0006a29030037030020024190016a41086a220b200241d8006a290300370300200220022903503703900102400240024041d00010132201450d00200142003703002001410036022420012007360220200141003a0048200141186a4200370300200141106a4200370300200141086a42003703002001200241d0006a2203290300370328200141306a200341086a290300370300200141386a200341106a290300370300200141c0006a200341186a290300370300200241f0006a41086a200b290300370300200241f0006a41106a200a290300370300200241f0006a41186a200929030037030020022002290390013703700240024002400240200841046a28020020082802082203470d00200341016a22072003490d0320034101742209200720072009491b2209ad42d0007e220c422088a70d03200ca7220a4100480d032003450d012008280200200341d0006c200a10152207450d020c050b200828020021070c050b200a101322070d030b200a41081014000b1010000b41d00041081014000b20082007360200200841046a2009360200200841086a28020021030b2007200341d0006c6a220342003703102003420037030820032006427f2004428080808010541b370300200320013602202003200229037037022c200341186a4200370300200341246a428180808010370200200341c4006a200241f0006a41186a2903003702002003413c6a200241f0006a41106a290300370200200341346a200241f0006a41086a290300370200200841086a2201200128020041016a3602002000200437030820002006370300200041106a200241f00010f6021a2000200537038001200241b0016a24000b7d01017f230041c0006b220124002001412e36020c2001418780c300360208200120003602142001413c6a41083602002001412c6a4102360200200141023602342001420237021c2001418cbfc1003602182001200141146a3602382001200141086a3602302001200141306a360228200141186a419cbfc1001046000bb80201037f23004180016b220224000240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103d210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b2004418001101c000b2004418001101c000b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41093602002004412c6a4102360200200441023602342004420237021c2004418cbfc1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a419cbfc1001046000bde0104017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1002200341086a2005290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002201417f460d022001410f4d0d02200341186a290300210620032903102107200341101003420121040c010b0b2000200437030020002007370308200041106a2006370300200341206a24000f0b41b6e7c20041331029000bbd0104017f017e017f017e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1002200341086a2005290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d002003420037031020034110200341106a41084100100041016a41084d0d0220032903102106200341101003420121040c010b0b2000200437030020002006370308200341206a24000f0b41b6e7c20041331029000b1300200041023602042000418cc1c1003602000b130020004104360204200041c7c4c1003602000b130020004101360204200041ccc4c1003602000b130020004101360204200041f0c5c1003602000b1300200041093602042000419ec8c1003602000bfa0801067f230041106b220224002002410036020820024201370300200041106a200210182002200036020c2002410c6a200210b30120022802042103200228020821040240024002400240024002400240024002400240024002400240024002400240024020002d00184101470d0020032004470d01200441016a22032004490d0c20044101742205200320032005491b22034100480d0c2004450d0320022802002004200310152205450d040c090b20032004470d01200441016a22032004490d0b20044101742205200320032005491b22034100480d0b2004450d0420022802002004200310152205450d050c060b200228020021050c080b200228020021050c050b2003101322050d050b200341011014000b2003101322050d010b200341011014000b20022003360204200220053602000b200241086a200441016a2206360200200520046a41003a00000c020b20022003360204200220053602000b200241086a2206200441016a360200200520046a41013a00000240024002400240024020022802042203200628020022046b41204f0d00200441206a22062004490d0620034101742207200620062007491b22074100480d062003450d0120052003200710152205450d020c030b200441206a21060c030b2007101322050d010b200741011014000b2002200736020420022005360200200721030b200241086a2006360200200520046a220441086a200041216a290000370000200441106a200041296a290000370000200441186a200041316a2900003700002004200041196a2900003700000b024002400240024002400240024002400240200041396a2d00004101470d0020032006470d08200341016a22042003490d0920034101742207200420042007491b22044100480d092003450d0120052003200410152205450d020c070b20032006470d05200341016a22002003490d0820034101742204200020002004491b22004100480d082003450d0220052003200010152205450d030c040b2004101322050d050b200441011014000b2000101322050d010b200041011014000b20022000360204200220053602000b200241086a2200200641016a360200200520066a41003a0000200228020421042001280200200128020420022802002203200028020010012004450d060c050b20022004360204200220053602000b200241086a2203200641016a360200200520066a41013a000002400240024020022802042205200328020022046b41204f0d00200441206a22032004490d0320054101742206200320032006491b22064100480d032005450d0120022802002005200610152203450d020c040b200228020021030c040b2006101322030d020b200641011014000b1010000b2002200636020420022003360200200621050b200241086a200441206a2206360200200320046a220441086a200041c2006a290000370000200441106a200041ca006a290000370000200441186a200041d2006a29000037000020042000413a6a290000370000200128020020012802042003200610012005450d010b200310160b200241106a24000b860100024002400240024002400240200041ff017122004101460d0020004102470d01410110132200450d03200041023a00000c020b410110132200450d03200041013a00000c010b410110132200450d03200041003a00000b20012802002001280204200041011001200010160f0b410141011014000b410141011014000b410141011014000bb20201027f230041106b2202240020024100360208200242013703000240412010132203450d002003200029002c370000200341086a200041346a290000370000200341106a2000413c6a290000370000200341186a200041c4006a290000370000200242a08080808004370204200220033602002002200036020c2002410c6a200210b3012002200041106a36020c2002410c6a200210b301200028022021032002200041286a280200220036020c2002410c6a2002101802402000450d002003200041186c6a210003402002200336020c2002410c6a200210b301200341106a200210b1012000200341186a2203470d000b0b200228020421032001280200200128020420022802002200200241086a280200100102402003450d00200010160b200241106a24000f0b412041011014000b13002000410f360204200041e8ccc1003602000b1300200041073602042000418fe9c1003602000b930c08057f047e017f017e057f027e027f017e23004190016b22022400200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a22054200370300200242003703702001410020012802002001280204200241f0006a41202001280208100022062006417f461b2206412020064120491b20012802086a3602080240024002400240024002400240024002400240024002402006411f4d0d00200241d0006a41186a2003290300370300200241d0006a41106a2004290300370300200241d0006a41086a200529030037030020022002290370370350200241386a200110a5012002290338a7450d01200241386a41106a290300210720022903402108200241206a200110a5012002290320a7450d02200241306a29030021092002290328210a200241186a200110122002280218450d09200228021c220bad42187e220c422088a70d05200ca72206417f4c0d052006450d0320061013220d450d06200b450d040c070b2000410036022020024190016a24000f0b2000410036022020024190016a24000f0b2000410036022020024190016a24000f0b4108210d200b0d030b410021114200210c200d450d040c030b100f000b200641081014000b200241f0006a410172210e200241106a210f200141046a2110200141086a210641002103200b2111024003402002200110a5012002290300a7450d01200f290300211220022903082113200241003a007020012802002010280200200241f0006a410120062802001000210420062006280200200441016a41014b22056a22043602002005450d01024002400240024020022d0070221441037122054102460d00024020054101460d0020050d022014410276ad210c200341016a210420112003460d030c040b200241003b0170200220143a007020012802002010280200200e410120041000210420062006280200200441016a220441014b6a36020020044102490d0520022f0170410276ad210c200341016a210420112003460d020c030b20024100360270200220143a00702006410020012802002010280200200e41032004100022042004417f461b22044103200441034922041b20062802006a36020020040d042002280270410276ad210c200341016a210420112003460d010c020b02400240201441027622054104460d0020050d0120102802002105200241003602702006410020012802002005200241f0006a41042004100022042004417f461b22044104200441044922041b20062802006a36020020040d052002350270210c200341016a210420112003460d020c030b200242003703702006410020012802002010280200200241f0006a41082004100022042004417f461b22044108200441084922041b20062802006a36020020040d042002290370210c200341016a210420112003460d010c020b200541046a221541084b0d03410021054200210c0340200241003a007020012802002010280200200241f0006a410120041000210420062006280200200441016a41014b22146a22043602002014450d0420023100702005410374413871ad86200c84210c200541016a220541ff01712015490d000b200341016a210420112003470d010b20034101742205200420042005491b2211ad42187e2216422088a70d052016a722054100480d0502402003450d00200d200341186c20051015220d0d010c070b20051013220d450d060b200d200341186c6a22032012370308200320133703002003200c370310200421032004200b490d000b2004ad422086210c200d0d010c020b2011450d01200d10160c010b200241f0006a41186a2201200241d0006a41186a290300370300200241f0006a41106a2206200241d0006a41106a290300370300200241f0006a41086a2203200241d0006a41086a29030037030020022002290350370370200041186a20093703002000200a37031020002007370308200020083703002000200c2011ad843702242000200d3602202000412c6a2002290370370200200041346a20032903003702002000413c6a2006290300370200200041c4006a200129030037020020024190016a24000f0b2000410036022020024190016a24000f0b1010000b200541081014000bd10301047f230041d0006b2202240002400240410e10132203450d00200341066a41002900abcc41370000200341002900a5cc413700002003410e412e10152203450d012003200129000037000e200341266a200141186a2900003700002003411e6a200141106a290000370000200341166a200141086a290000370000200241306a41086a22014200370300200242003703302003412e200241306a1002200241206a41086a200129030037030020022002290330370320024002400240200241206a411041acf1c300410041001000417f460d00200241306a41186a4200370300200241306a41106a42003703002001420037030020024200370330200241206a4110200241306a4120410010002201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b20031016200241d0006a24000f0b41b6e7c20041331029000b410e41011014000b412e41011014000b13002000411836020420004188ecc1003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021018200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241003600000f0b410441011014000b3201017f0240410810132202450d0020004288808080800137020420002002360200200242003700000f0b410841011014000bf30301087f230041c0006b22022400200241186a4200370300200241106a22034200370300200241086a4200370300200241286a22044100360200200242003703002002420837032020024100360238200242013703302002200236023c2002413c6a200241306a10b3012002200336023c2002413c6a200241306a10b3012002280220210320022004280200220436023c2002413c6a200241306a10180240024002402004450d00200441306c2105200241306a41086a21060340024002400240024020022802342207200628020022046b41204f0d00200441206a22082004490d0620074101742209200820082009491b22094100480d062007450d01200228023020072009101522070d020c070b200441206a2108200228023021070c020b200910132207450d050b20022009360234200220073602300b20062008360200200720046a220441086a200341186a290000370000200441106a200341206a290000370000200441186a200341286a2900003700002004200341106a2900003700002002200336023c2002413c6a200241306a10b301200341306a2103200541506a22050d000b0b20002002290330370200200041086a200241306a41086a2802003602000240200241246a280200450d00200241206a28020010160b200241c0006a24000f0b1010000b200941011014000b7101017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a10182002200241086a36022c2002412c6a200241206a10b301200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810132202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011014000b3401017f0240410410132202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241043600000f0b410441011014000bd10901087f230041a0016b2202240041002103200241003a0080012001280200200128020420024180016a410120012802081000210420012001280208200441016a41014b22046a2205360208024002402004450d00024020022d0080012204450d0020044101470d0120024180016a41186a2206420037030020024180016a41106a2207420037030020024180016a41086a220842003703002002420037038001200141086a220341002001280200200141046a28020020024180016a41202005100022042004417f461b2204412020044120491b20032802006a22053602002004411f4d0d01200241e0006a41186a22042006290300370300200241e0006a41106a22032007290300370300200241e0006a41086a220620082903003703002002200229038001370360200241c0006a41186a22072004290300370300200241c0006a41106a22042003290300370300200241c0006a41086a2203200629030037030020022002290360370340200241206a41186a2007290300370300200241206a41106a2004290300370300200241206a41086a200329030037030020022002290340370320410121030b200241186a200241206a41186a290300370300200241106a200241206a41106a290300370300200241086a200241206a41086a2903003703002002200229032037030041002106200241003a0080012001280200200141046a28020020024180016a4101200510002104200141086a22052005280200200441016a41014b22046a22053602002004450d01024020022d0080012204450d0020044101470d0220024180016a41186a2206420037030020024180016a41106a2207420037030020024180016a41086a220842003703002002420037038001200141086a220441002001280200200141046a28020020024180016a41202005100022012001417f461b2201412020014120491b20042802006a3602002001411f4d0d02200241e0006a41186a22012006290300370300200241e0006a41106a22042007290300370300200241e0006a41086a220520082903003703002002200229038001370360200241c0006a41186a22062001290300370300200241c0006a41106a22012004290300370300200241c0006a41086a2204200529030037030020022002290360370340200241206a41186a2006290300370300200241206a41106a2001290300370300200241206a41086a200429030037030020022002290340370320410121060b200241e0006a41186a2201200241206a41186a290300370300200241e0006a41106a2204200241206a41106a290300370300200241e0006a41086a2205200241206a41086a2903003703002002200229032037036020024180016a41186a2207200241186a29030037030020024180016a41106a2208200241106a29030037030020024180016a41086a2209200241086a2903003703002002200229030037038001200020033a0000200041216a20063a00002000200229038001370001200041096a2009290300370000200041116a2008290300370000200041196a2007290300370000200041226a20022903603700002000412a6a2005290300370000200041326a20042903003700002000413a6a2001290300370000200241a0016a24000f0b200041023a0000200241a0016a24000f0b200041023a0000200241a0016a24000bf90801037f200141046a2802002102200141086a280200210302400240024002400240024002400240024002400240024002400240024020002d00004101470d0020022003470d01200341016a22022003490d0c20034101742204200220022004491b22044100480d0c2003450d0320012802002003200410152202450d040c090b20022003470d01200341016a22022003490d0b20034101742204200220022004491b22044100480d0b2003450d0420012802002003200410152202450d050c060b200128020021020c080b200128020021020c050b2004101322020d050b200441011014000b2004101322020d010b200441011014000b20012002360200200141046a2004360200200141086a28020021030b200141086a200341016a360200200220036a41003a00000c020b20012002360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200220036a41013a000002400240024002400240200141046a2802002202200428020022036b41204f0d00200341206a22042003490d0620024101742203200420042003491b22034100480d062002450d0120012802002002200310152202450d020c030b200128020021020c030b2003101322020d010b200341011014000b20012002360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200220036a220341186a200041196a290000370000200341106a200041116a290000370000200341086a200041096a290000370000200320002900013700000b200141046a2802002102200141086a28020021030240024002400240024002400240024002400240024020002d00214101470d0020022003470d01200341016a22022003490d0b20034101742204200220022004491b22044100480d0b2003450d0320012802002003200410152202450d040c090b20022003470d01200341016a22002003490d0a20034101742202200020002002491b22024100480d0a2003450d0420012802002003200210152200450d050c060b200128020021020c080b200128020021000c050b2004101322020d050b200441011014000b2002101322000d010b200241011014000b20012000360200200141046a2002360200200141086a28020021030b200141086a200341016a360200200020036a41003a00000f0b20012002360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200220036a41013a0000024002400240200141046a2802002202200428020022036b41204f0d00200341206a22042003490d0320024101742203200420042003491b22034100480d032002450d0120012802002002200310152202450d020c040b200128020021020c040b2003101322020d020b200341011014000b1010000b20012002360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200220036a220141186a2000413a6a290000370000200141106a200041326a290000370000200141086a2000412a6a2900003700002001200041226a2900003700000be698012d017f027e027f037e0d7f017e027f017e037f017e027f027e1b7f027e027f037e1c7f027e027f027e1d7f027e057f017e087f037e0e7f047e017f017e187f017e027f027e037f027e0a7f017e087f017e047f027e0b7f027e027f23004190086b2202240002400240024002400240024002400240024002402001450d00200241a8036a41086a22014200370300200242003703a803419095c3004117200241a8036a1002200241b8066a41086a2001290300370300200220022903a8033703b8060240024002400240024002400240200241b8066a411041acf1c300410041001000417f460d00200242003703b005200241b8066a4110200241b0056a41084100100041016a41084d0d0220022903b00521030c010b420321030b200241a8036a41086a22014200370300200242003703a80341bbc9c0004115200241a8036a1002200241b8066a41086a2001290300370300200220022903a8033703b80602400240200241b8066a411041acf1c300410041001000417f460d00200242003703b005200241b8066a4110200241b0056a41084100100041016a41084d0d034200210420022903b00520037e22034200510d010c050b4200210442e80720037e22034200520d040b200241a8036a41086a22012004370300200220043703a80341fc94c200411c200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002201417f460d032001410f4d0d03200241c0066a290300210320022903b80621040c050b420021030c040b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b2000200320032000541b22002004510d0442002104200241a8036a41086a22014200370300200242003703a80341fc94c200411c200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b0042003421086200080210002400240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002201417f460d052001410f4d0d05200241c0066a290300210320022903b80621040c010b420021030b200241e0026a200420032000420010fa0220022903e002421088200241e8026a2903002200423086842104200042108821030b200241a8036a41086a22014200370300200242003703a80341b095c2004118200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002206417f460d032006410f4d0d03200241c0066a290300210720022903b80621000c010b42002100420021070b20014200370300200242003703a80341b095c2004118200241a8036a100220052001290300370300200220022903a8033703b0042002200020047c22043703b8062002200720037c2004200054ad7c3703c006200241b0046a4110200241b8066a411010010b200241a8036a41086a22014200370300200242003703a80341a7c9c0004114200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004420021040240024002400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0120022903b80621040b20014200370300200242003703a80341a4eac1004115200241a8036a100220052001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200241b0046a411010030c070b200241a8036a41086a22014200370300200242003703a80341c895c200411b200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004420021000240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0220022903b80621000b20014200370300200242003703a80341e395c2004116200241a8036a100220052001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0420022903b80622034200520d0141fc95c2001038000b42e80721030b200420007d2003824200520d070c060b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b419895c2001038000b200241c8026a41b095c200411810dc01024002400240024020022903d0022208200241c8026a41106a290300220984500d0020022802c802450d01200241a8036a41086a22014200370300200242003703a803419496c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b00402400240024002400240200241b0046a411041acf1c300410041001000417f460d00200242103702b4052002200241b0046a3602b005200241b8066a200241b0056a101120022802b806220a450d0220022802bc06210b200241c0066a28020041057422010d010c040b4101210a4100210b41004105742201450d020b200a20016a210c4120210d4112210e4110210f410021104108211141322112412a21134118211441222115411a21164200211741acf1c3002118417f21194201211a200241e0066a211b4130211c200241dc066a211d4210211e200a211f410021200c050b41b6e7c20041331029000b410021010c040b410021010c030b410121010c020b410121010c010b410321010b03400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e0400010210100b200241d0066a2009370300200241b8066a41106a2008370300200241b8066a41086a41003a0000200241043a00b806200241b8066a105a200241a8036a41086a22014200370300200242003703a80341aa96c2004111200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002201417f460d0e2001410f4d0d0e0b200b450d10200a1016410121010c3a0b200241a8036a41086a22014200370300200242003703a80341bb96c2004112200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0320022903b80642017c21040c010b420121040b200241a8036a41086a22014200370300200242003703a80341bb96c2004112200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004200220043703b806200241b0046a4110200241b8066a4108100120014200370300200242003703a80341cd96c200411a200241a8036a100220052001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d03200220022903b80622043703b005200241a8036a41086a22014200370300200242003703a80341e395c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d06200420022903b806520d010c020b200442e807510d010b200241a8036a41086a22014200370300200242003703a80341e395c2004116200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004200220043703b806200241b0046a4110200241b8066a4108100120014200370300200242003703a80341a7c9c0004114200241a8036a100220052001290300370300200220022903a8033703b004420021040240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0820022903b80621040b20014200370300200242003703a80341c895c200411b200241a8036a100220052001290300370300200220022903a8033703b004200220043703b806200241b0046a4110200241b8066a410810010b200241a8036a41086a22014200370300200242003703a80341e796c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004410021230240200241b0046a411041acf1c300410041001000417f460d00200241003602b806200241b0046a4110200241b8066a41044100100041016a41044d0d0520022802b80621230b200241a8036a41086a22014200370300200242003703a80341fd96c200411d200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004024002400240200241b0046a411041acf1c300410041001000417f460d00200241003602b80641012124200241b0046a4110200241b8066a41044100100041016a41044d0d0820022802b806220141024f0d010c020b410421010b200121240b200241a8036a41086a22014200370300200242003703a803418cebc100411a200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004410021050240200241b0046a411041acf1c300410041001000417f460d00200241d0066a4200370300200241b8066a41106a4200370300200241b8066a41086a4200370300200242003703b806200241b0046a4110200241b8066a4120410010002201417f460d082001411f4d0d08200241b0056a41186a2201200241b8066a41186a2205290300370300200241b0056a41106a2206200241b8066a41106a2225290300370300200241b0056a41086a2226200241b8066a41086a2227290300370300200220022903b8063703b005200520012903003703002025200629030037030020272026290300370300200220022903b0053703b806410121050b412810132201450d0a200120053a0004200141acf1c300360200200120022903b806370005200120022f00e8073b00252001410d6a200241b8066a41086a2206290300370000200141156a200241b8066a41106a22252903003700002001411d6a200241d0066a2226290300370000200141276a200241ea076a2d00003a0000200241a8036a41086a22054200370300200242003703a803419a97c200411a200241a8036a1002200241b0046a41086a2005290300370300200220022903a8033703b004410021050240200241b0046a411041acf1c300410041001000417f460d00202642003703002025420037030020064200370300200242003703b806200241b0046a4110200241b8066a4120410010002205417f460d092005411f4d0d09200241b0056a41186a2205200241b8066a41186a2206290300370300200241b0056a41106a2225200241b8066a41106a2226290300370300200241b0056a41086a2227200241b8066a41086a2228290300370300200220022903b8063703b005200620052903003703002026202529030037030020282027290300370300200220022903b0053703b806410121050b412810132225450d0b202520053a0004202541acf1c300360200202520022903b806370005202520022f00e8073b00252025410d6a200241c0066a290300370000202541156a200241b8066a41106a2903003700002025411d6a200241b8066a41186a290300370000202541276a200241e8076a41026a2d00003a000020024100360288032002420837038003200241c8076a41186a20024188086a360200200241003602d807200241b497c2003602cc07200220013602c807200220024180036a3602dc07200220024188086a3602d407200220024188086a3602d007200241b8066a200241c8076a10f601024002400240024020022d00b80722054102470d00200241023a00b0060c010b200241b0046a200241b8066a41800110f6021a2002200241b8066a4184016a2800003600a303200220022800b9073602a003200241b8066a41046a200241b0046a41800110f6022120200241c8076a41106a4101360200200241a8036a200241b8066a41840110f6021a200241003602b806200241b8066a410472200241a8036a41840110f6021a200241b8066a4188016a20053a0000200241c1076a20022802a003360000200241c4076a20022800a303360000200241b0056a200241dc076a200241b8066a10d80120022d00b0064102470d010b4100212920024100360298032002420837039003200110164108212a4108212b4108212c410021270c010b200241b8066a200241b0056a41880110f6021a200241a8036a200110f7014188011013222a450d0e202a200241b8066a41880110f6021a200241e8076a41186a200241c8076a41186a280200360200200241e8076a41106a222d200241c8076a41106a290300370300200241e8076a41086a200241c8076a41086a290300370300200220022903c8073703e807200241b8066a200241e8076a10f601024002400240024020022d00b80722274102470d0041012127410121290c010b200241c1076a2128200241b8066a410472212b200241fc076a212e200241b9076a212c202d280200212f41022106418801210541002101410121290340200241b0046a200241b8066a41800110f6021a2002202c41036a2800003600a3032002202c2800003602a0032020200241b0046a41800110f6021a202d202f20016a222641016a360200200241a8036a200241b8066a41840110f6021a200220263602b806202b200241a8036a41840110f6021a200241b8066a4188016a20273a0000202820022802a003360000202841036a20022800a303360000200241b0056a202e200241b8066a10d801200241b0056a4180016a2d00004102460d02200241b8066a200241b0056a41880110f6021a0240200141016a22262029470d00200241a8036a20022802e80720022802ec07280210110200202641016a22272026490d412006202720272006491b2229ad4288017e2204422088a70d412004a722274100480d4102402001417f460d00202a200520271015222a0d010c100b20271013222a450d0f0b202a20056a200241b8066a41880110f6021a200641026a210620054188016a2105200241b8066a200241e8076a10f60120262101200241b8066a4180016a2d000022274102470d000b202641016a21270b202a212b200241b0066a41023a00000c010b200141016a2127202a212b0b20022802e807220520022802ec07220128020011030002402001280204450d00200510160b200220273602980320022029360294032002202a36029003202b212c0b200241b0056a202510d40120022802d005222e450d204188012130202c20274188016c22316a213241012133200241a8036a410172213441282135200241b0056a41286a213641242137200241b0056a41246a2138411821394110213a4108213b4120213c200241b8066a41206a213d42d000213e4220213f417f214041052141428080808010214242002143427f21444100214541d000214641342147413c214841c400214941a004214a41a07f214b41987e214c41907d214d41887c214e41e000214f41e80121504102215141f00221524103215341f803215441042155419f04215641c800215741c0002158413821594130215a41cc00215b410121200c120b20a001450d2020a0012093016a21a00120a10120756a210120a101206d6a226a21a10120012d00000d0f206a2093016a22a10120786a21a201206a209f01470d150c140b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b202741081014000b412841041014000b412841041014000b41b6e7c20041331029000b41880141081014000b024002400240024002400240024002400240024002400240024002400240024002400240024020200e050001020304040b201f450d11200e10132201450d0a2001200f6a20102f00d5cc413b0000200120116a20102900cdcc41370000200120102900c5cc413700002001200e201210152201450d0b2001201f290000370012200120136a201f20146a290000370000200120156a201f200f6a290000370000200120166a201f20116a290000370000200241a8036a20116a22052017370300200220173703a80320012012200241a8036a1002200241b0046a20116a2005290300370300200220022903a8033703b00402400240200241b0046a200f20182010201010002019460d002002201e3702bc062002200241b0046a3602b806200241c0026a200241b8066a101220022802c002450d0b200241a8026a200241b8066a10a50120022903a802a7450d0b200241a8026a200f6a290300210420022903b00221030c010b42002103420021040b2001101642002100200242003703b805200242003703b005024002402008200320082003200854200420095420042009511b22011b22217d220320092004200920011b22227d2008202154ad7d220784500d00200241b8066a201f10a601200241b8066a20116a2903002204201720022903b8062200201a5620042017522004501b22011b21042000201a20011b2100200241b8066a200d6a28020021060240201b2802002201450d002000200484500d1020062001201c6c6a210520062101034020024180026a2001290300200120116a2903002003200710fa02200241f0016a20022903800220024180026a20116a2903002000200410f90220024190026a2001200f6a20022903f001200241f0016a20116a29030010f801200241b0056a20022903900220022903980220024190026a200f6a29030010f9012001201c6a22012005470d000b0b20002004842017510d0e200241e0016a200241b8066a200f6a290300200241b8066a20146a2903002003200710fa02200241d0016a20022903e001200241e0016a20116a2903002000200410f902200241d0016a20116a290300210420022903d0012100201d280200450d01200610160c010b420021040b200241b8016a201f200020217c2203200420227c2003200054ad7c10f801200241b0056a20022903b80120022903c001200241b8016a200f6a29030010f90120022903b00521042002200241b0056a20116a2903003703c006200220043703b806200241b8066a10fa01201f200d6a2201211f2001200c470d0f410021010c3c0b2036280200215c2038280200215d200241e8076a20396a225e200241b0056a20396a290300370300200241e8076a203a6a225f200241b0056a203a6a290300370300200241e8076a203b6a2260200241b0056a203b6a290300370300200220022903b0053703e807200241a8036a200241e8076a10e90102400240024020022d00a8032033470d00200241b0046a20396a203420396a290000370300200241b0046a203a6a2034203a6a290000370300200241b0046a203b6a2034203b6a290000370300200220342900003703b004200241b8066a200241b0046a10a401203d2802002201450d01200241b8066a203b6a290300216120022903b8062162200241b8066a20376a280200450d02200110160c020b203d20453602000b42002162420021610b205cad203e7e2204203f88a70d2a2004a7220120404c0d2a0240024002402001450d00200110132263450d09205c2041742201450d020c010b41082163205c2041742201450d010b202e20016a21642062204420612042541b21654200216641002167202e2168410021690c1a0b42002166410021670c210b02402027450d00202b20756a2101206e21050340024020012d0000450d002001206d6a210120052093016a22050d010c020b20012098016a290300220420950120042095015620012097016a2903002204209401522004501b22061b2200200420940120061b220484209401510d04200241a8016a2096012096012000200410f90220012099016a200241a8016a20716a29030037030020012092016a20022903a8013703002001206d6a210120052093016a22050d000b0b200228028003229b012072280200229c0120736c6a219d01209c01450d15209b01219e01410121690c190b20ae012802282201450d1e20ae0128022022cf01200120ad016c6a21d00120ae0120b0016a21d101410321690c190b20f50120d6016a290300210420f5012903002100200241b0056a20da016a222d20f50120e2016a290000370300200241b0056a20db016a22a90120f50120e3016a290000370300200241b0056a20d6016a22ab0120f50120e4016a290000370300200220f5012900603703b00520f5012802282228ad20e5017e220320e60188a70d272003a7220520e7014c0d2720f50120da016a290300210320f501290310210720f501280220210102400240024002402005450d00200510132220450d082028450d020c010b410821202028450d010b2001202820d8016c6a212641002106202021050340200520012903003703002005200120d6016a290300370308200520d9016a200120d9016a290300370300200520d3016a200120d3016a290300370300200520da016a200120da016a290300370300200520db016a200120db016a290300370300200520d8016a2105200620d5016a2106200120d8016a22012026470d000c020b0b410021060b200241b8066a20da016a200337030020e101200737030020e801200636020020e901202836020020ea012020360200200220003703b806200220043703c00620eb0110132201450d01200120ec016a20ed012900adeb41370000200120ed012900a6eb41370000200120eb0120ee011015222f450d02202f20022903b00537000f202f20ef016a202d290300370000202f20f0016a20a901290300370000202f20f1016a20ab01290300370000200241a8036a20d6016a222620f201370300200220f2013703a803202f20ee01200241a8036a1002200241b0046a20d6016a2026290300370300200220022903a8033703b004202620ed01360200200220f3013703a8032002200241b8066a3602c807200241c8076a200241a8036a10b301200220e1013602c807200241c8076a200241a8036a10b30120ea012802002101200220e80128020022053602c807200241c8076a200241a8036a1018024002402005450d00200520d8016c21280340024002400240024020022802ac032206202628020022056b20d3014f0d00200520d3016a22202005490d41200620d50174222d20202020202d491b222020ed01480d412006450d0120022802a80320062020101522060d020c060b20022802a80321060c020b202010132206450d040b200220203602ac03200220063602a8030b2026200520d3016a360200200620056a220520d6016a200120da016a290000370000200520db016a200120d3016a290000370000200520da016a200120d9016a2900003700002005200120db016a290000370000200220013602c807200241c8076a200241a8036a10b301200120d8016a2101202820f4016a22280d000b0b200020d701542101200420e001512105200420e00154210620022802ac032128200241b0046a20db0120022802a80322202026280200100102402028450d00202010160b2001200620051b210120f50120de016a21f501202f1016024020e901280200450d0020ea0128020010160b200420e00120011b21e001200020d70120011b21d70120f50120df01470d0d200241a8036a41086a226a4200370300200242003703a80341aa96c2004111200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b004200220e0013703c006200220d7013703b806200241b0046a4110200241b8066a4110100120dc014188016c226a4188016d217f02400240206a450d00207fad4205862204422088a70d3d2004a722014100480d3d2001101322db01450d0d20dc01450d010c1d0b410121db014100217f20dc010d1c0b4100217820dd010d1c0c1d0b202041011014000b41c4eec3001038000b410f41011014000b412f41011014000b200141081014000b200541081014000b41b6e7c20041331029000b411241011014000b413241011014000b419895c2001038000b419895c2001038000b200141011014000b410021200c040b410421200c050b410021010c2a0b410121010c290b410221010c280b410321010c270b410321010c260b410321010c250b410021010c050b410221010c040b410121010c030b410321010c020b410321010c010b410321010b03400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e0400010204040b209a0120706a219a01202c2027206d6c6a219f01206e21a001202c216a02400240024002400340206a21a101209f01206a6b20744d0d0720a10120756a2d0000450d0120a10120766a2d0000450d0220a10120796a2d0000450d0320a001207b6a21a00120a101207c6a216a20a101207d6a2d00000d000b410321010c030b20a10120786a21a20120a101206d6a226a209f01470d170c160b20a10120776a216a410121010c010b20a101207a6a216a410221010b20a1012001206d6c6a22a10120786a21a201206a209f01460d12410121010c1c0b20a20120716a290300210420a20129030021000340206a206d6a21010240206a20756a2d0000450d002001216a206f2001470d010c160b206a208a016a29030022032004206a20786a2903002207200054200320045420032004511b22051b21042007200020051b2100206a20a10120051b21a1012001216a206f2001470d000b410221010c1b0b20a10120703a008001209c01450d0220a101208a016a21a30120a1012091016a21a401410221690c170b410221010c380b02400240024020690e0400010204040b2068450d1f02400240024002400240024002402031204a490d002068204b6a21062068204c6a21262068204d6a21282068204e6a212d41002105202c2101034020062001460d072001204f6a2068203c10f802450d0720262001460d04200120506a2068203c10f802450d0420282001460d05200120526a2068203c10f802450d05202d2001460d06200120546a2068203c10f802450d06200520556a210520322001204a6a22016b20564b0d000b20012032470d010c020b41002105202c22012032460d010b2068204b6a2106034020062001460d052001204f6a2068203c10f802450d05200520336a21052032200120306a2201470d000b0b2068203c6a22682064470d0f0c230b200520336a21050c020b200520516a21050c010b200520536a21050b202c200520306c6a220120576a22062044200629030022032001290340220420657c22002004542206ad7c220720062007200354200020045a1b22061b37030020012044200020061b370340200241b8066a20396a2206206820396a290000370300200241b8066a203a6a22262068203a6a290000370300200241b8066a203b6a22282068203b6a290000370300200220682900003703b8060240205c2067470d00205c20336a2201205c490d3c205c203374222d20012001202d491b2201ad203e7e2204203f88a70d3c2004a7222d2045480d3c02400240205c450d002063205c20466c202d101522630d010c0a0b202d10132263450d090b2001215c0b2063206720466c6a220120453602242001200536022020012043370300200120396a20433703002001203a6a20433703002001203b6a204337030020282903002104202629030021002006290300210320022903b8062107200120453a0048200120586a2003370300200120596a20003703002001205a6a2004370300200120073703282001205b6a20022800a303360000200120022802a003360049206720336a21672068203c6a22682064470d0c0c1f0b0240209e012802282201450d00200120736c2106209e012802202090016a210103402027200128020022054d0d050240202c2005206d6c6a22052d0080010d002005290340220420052088016a290300220084500d00200241d8006a209501209401209e01290300220320940110fa02200241e8006a209e0120716a290300220720940120940120940110fa0220024198016a200320940120940120940110fa0220024188016a20960120022903980120072002290370842002290360842094015220024198016a20716a2903002203200229036820022903587c7c22072003547222261b209601200720261b2004200010f902200241f8006a209e01207f6a29030020940120022903880120024188016a20716a29030010fa022005208a016a222620960120262903002204200241f8006a20716a2903007c2005290330220020022903787c22032000542226ad7c22002026200020045420002004511b22261b3703002005209601200320261b3703300b200120736a210120062092016a22060d000b0b209e0120736a229e01209d01470d0c410021010c190b209b0120736a212d0240209b012802282205450d00209b012802202101200520736c21050340024020a3012001460d002001208c016a20a40120900110f802450d00200120736a210120052092016a22050d010c020b209b01207f6a2206290300210420a3012903002100200120a10120786a22262903002203209b012081016a222829030022077d3703002001200020047d2003200754ad7d37030820262903002104200620a30129030037030020282004370300200120736a210120052092016a22050d000b0b202d219b01202d209d01470d0c0b200241b8066a207f6a222d20a101207e6a29030037030020820120a1012080016a290300370300200241b8066a20716a222b20a1012083016a290300370300200220a1012903603703b80620a1012802282228ad2084017e220420850188a70d252004a722052086014c0d2520a101207f6a290300210420a10120716a290300210020a101280220210120a101290310210320a101290300210702400240024002402005450d00200510132220450d092028450d020c010b410821202028450d010b2001202820786c6a212641002106202021050340200520012903003703002005200120716a2903003703082005208c016a2001208c016a29030037030020052090016a20012090016a2903003703002005207f6a2001207f6a29030037030020052081016a20012081016a290300370300200520786a2105200620706a2106200120786a22012026470d000c020b0b410021060b20a10120756a2d0000212f20a1012087016a290300212120a10120736a290300212220a1012088016a29030021a50120a1012089016a29030021a60120a101208a016a29030021a70120a10120786a29030021a801024002400240024020022802f402200241f0026a20716a22052802002201470d00200120706a22262001490d3c200120707422a9012026202620a901491b22a901ad208b017e22aa0120850188a70d3c20aa01a722ab01206c480d3c2001450d0120022802f0022001206d6c20ab01101522260d020c0a0b20022802f00221260c020b20ab0110132226450d080b200220a9013602f402200220263602f002200528020021010b20262001206d6c6a22012022370350200120a601370340200120a80137033020012003370310200120003703082001200737030020012020360220200120022903b8063703602001202f206c473a008001200120022800b0053600810120012087016a202137030020012088016a20a5013703002001208a016a20a7013703002001207f6a20043703002001208c016a20063602002001208d016a202836020020012083016a202b29030037030020012080016a2082012903003703002001207e6a202d2903003703002001208e016a208f012800003600002005200528020020706a360200202c212b209a01206b490d070c1e0b20cf01222820b1016a212f202820b2016a21a901202820b3016a21ab01202820b4016a21d201202820b5016a2105202820ad016a21cf0120022802f002222620b60128020020b7016c22066a212d02400240024002400240034020262101202d20266b20b8014d0d03202f2001460d04200120b9016a200520ba0110f802450d0420a9012001460d01200120bb016a200520ba0110f802450d0120ab012001460d02200120bd016a200520ba0110f802450d02024020d2012001460d00200120be016a2126200620c1016a2106200120c0016a200520ba0110f8020d010b0b200120bf016a21010c030b200120b7016a21010c020b200120bc016a21010c010b2001212603402006450d020240202620b9016a222d2005460d0041002101202d200520ba0110f802450d00202620b7016a2126200620ce016a21064100450d010c020b20262101202620b7016a2126200620ce016a21062001450d000b0b202820c2013a0048200241286a20ae0120ac016a290300220020c3012028290300220420c30110fa02200241386a202820ac016a290300220320c30120ae01290300220720c30110fa02200241c8006a200720c301200420c30110fa0220ae0120c5016a290300220420c601200420c6015620ae0120c4016a290300220420c301522004501b22051b2207200420c30120051b220484500d02200241186a20c7012002290348200020c30152200320c3015271200229033020c3015272200229034020c3015272200241c8006a20ac016a2903002200200229032820022903387c7c22032000547222051b20c701200320051b2007200410f902202820c4016a2206200241186a20ac016a2903002200370300202820022903182203370310200120c8016a220520c7012000200529030022047c2003200129035022007c22032000542205ad7c22002005200020045420002004511b22051b370300200120c701200320051b37035020d101200120b9016a2205460d00200520d10120ba0110f802450d00200120ac016a220520c701200529030022042006290300220020c301202820c5016a2205290300220320c7015220c9012000501b22261b7c20012903002200200320c70120261b7c22032000542226ad7c22002026200020045420002004511b22261b370300200120c701200320261b370300200241b8066a20c4016a20d10120c4016a2900002203370300200241b8066a20c5016a20d10120c5016a2900002207370300200241b8066a20ac016a20d10120ac016a2900002221370300200220d10129000022223703b8062006290300210420052903002100200241b0056a20c4016a22262003370300200241b0056a20c5016a22282007370300200241b0056a20ac016a222d2021370300200220223703b005024002400240024020012802282205200120ca016a222f280200470d00200520c2016a22062005490d3c200520c2017422a9012006200620a901491b22a901ad20cb017e220320cc0188a70d3c2003a722ab0120c901480d3c2005450d01200120ba016a280200200520cd016c20ab01101522060d020c070b200120ba016a28020021060c020b20ab0110132206450d050b202f20a901360200200120ba016a2006360200200120b5016a28020021050b2006200520cd016c6a220520022903b0053703102005200420c301200020c7015220c9012004501b22061b3703082005200020c70120061b370300200520b5016a2026290300370300200520ba016a2028290300370300200520c4016a202d290300370300200120b5016a2201200128020020c2016a3602000b20cf0120d001470d0b0c1a0b4180bdc1002005202710a801000b4190bdc1001038000b20ab0141081014000b202d41081014000b200541081014000b20ab0141081014000b41022120410321010c2e0b410021690c080b410021690c080b410121690c080b410221690c090b410321690c090b410221010c090b410221010c080b410121010c070b410221010c060b410321010c050b410321010c040b410321010c030b410321010c020b410321010c010b410321010c000b0b20d401206a6a218c0120dc014188016c210520d4014180016a216a200241f0066a21a1014100217820db012101024002400340206a41a47f6a280200216d206a41a07f6a28020021da01200241b0056a206a41a87f6a41d80010f6021a206a2d00004102460d01200241b8066a200241b0056a41d80010f6021a200241a8036a41186a227520a10141186a290000370300200241a8036a41106a226f20a10141106a290000370300200241a8036a41086a22d30120a10141086a290000370300200220a1012900003703a8030240206d450d0020da0110160b200120022903a803370000200141186a2075290300370000200141106a206f290300370000200141086a20d301290300370000206a4188016a216a207841016a2178200141206a2101200541f87e6a22050d000c020b0b206a41086a226a208c01460d0020d40120dc014188016c6a21a1010340206a4180016a2d00004102460d01206a4188016a21010240206a41246a280200450d00206a41206a28020010160b2001216a20a1012001470d000b0b20dd01450d010b20d40110160b200241b8066a41086a226a4200370300200242003703b806419496c2004116200241b8066a1002200241a8036a41086a206a290300370300200220022903b8063703a803200241003602c006200242013703b806200220783602b005200241b0056a200241b8066a101802400240024002400240024002402078450d00207841057421754100206a28020022016b210520022802b806216f20022802bc06216d20db01216a03400240206d20056a411f4b0d00200141206a22a1012001490d26206d41017422d30120a10120a10120d301491b22a1014100480d2602400240206d450d00206f206d20a1011015226f0d010c060b20a1011013226f450d050b20a101216d0b206f20016a22a101206a29000037000020a10141186a206a41186a29000037000020a10141106a206a41106a29000037000020a10141086a206a41086a290000370000200541606a2105200141206a2101206a41206a216a207541606a22750d000b200241c0066a20013602002002206d3602bc062002206f3602b8060c010b206a280200210120022802bc06216d20022802b806216f0b200241a8036a4110206f200110010240206d450d00206f10160b41002105024002402078410574226a450d00206a410575228c01ad4205862204422088a70d242004a722014100480d242001101322d301450d0320db01206a6a20db01470d010c040b410121d3014100218c0120db01206a6a20db01460d030b207841057422a10141606a410576216d200241b8066a410172210520d301216a20db0121010340200241b0056a41186a200141186a290000370300200241b0056a41106a200141106a290000370300200241b0056a41086a200141086a290000370300200220012900003703b005200241b8066a200241b0056a10e9010240024020022d00b8064101470d00200241a8036a41186a200541186a290000370300200241a8036a41106a200541106a290000370300200241a8036a41086a200541086a290000370300200220052900003703a8030c010b200241a8036a41186a4200370300200241a8036a41106a4200370300200241a8036a41086a4200370300200242003703a8030b200141206a2101206a20022903a803370000206a41186a200241a8036a41186a290300370000206a41106a200241a8036a41106a290300370000206a41086a200241a8036a41086a290300370000206a41206a216a20a10141606a22a1010d000b206d41016a2105207f0d030c040b20a10141011014000b200141011014000b207f450d010b20db0110160b2005ad2204421b88a70d0a2004420586a7226a417f4c0d0a0240024002400240206a450d00206a101322da01450d034100216d410021db014100216a20050d010c020b410121da014100216d410021db014100216a2005450d010b200541057421a101416020d3016b217520da01216a20d30121010340206a2001290000370000206a41186a200141186a290000370000206a41106a200141106a290000370000206a41086a200141086a290000370000206a41206a216a200141206a210120a10141606a22a1010d000b20d30120054105746a20756a41057641016a216a200521db010b200241a8036a41086a22014200370300200242003703a80341d0c9c0004112200241a8036a1002200241b8066a41086a2001290300370300200220022903a8033703b8062002206d3602b805200242013703b0052002206a3602a803200241a8036a200241b0056a1018024002400240206a450d00206a41057421754100200241b0056a41086a28020022016b210520022802b005216f20022802b405216d20da01216a03400240206d20056a411f4b0d00200141206a22a1012001490d23206d410174227820a10120a1012078491b22a1014100480d2302400240206d450d00206f206d20a1011015226f0d010c060b20a1011013226f450d050b20a101216d0b206f20016a22a101206a29000037000020a10141186a206a41186a29000037000020a10141106a206a41106a29000037000020a10141086a206a41086a290000370000200541606a2105200141206a2101206a41206a216a207541606a22750d000b200241b8056a20013602002002206d3602b4052002206f3602b0050c010b200241b0056a41086a280200210120022802b405216d20022802b005216f0b200241b8066a4110206f200110010240206d450d00206f10160b024020db01450d0020da0110160b208c01450d0b20d30110160c0b0b20a10141011014000b206a41011014000b20ae0120ad016a22ae0120af01460d0341032120410321010c1a0b200241c8076a20396a2201205e290300370300200241c8076a203a6a2205205f290300370300200241c8076a203b6a22062060290300370300200220022903e8073703c8070240205d450d00202e10160b2063450d00200241b8066a20396a22262001290300370300200241b8066a203a6a22282005290300370300200241b8066a203b6a22202006290300370300200220022903c8073703b806024020024180036a203b6a22062802002205200228028403470d00200241b0056a202510f70120022802840322012006280200222d6b204020022802b005222e20336a222f202f202e491b222e4f0d00202d202e6a222e202d490d1c2001203374222d202e202e202d491b222ead203e7e2204203f88a70d1c2004a7222d2045480d1c024002402001450d00200228028003200120466c202d101522010d010c140b202d10132201450d130b2002202e3602840320022001360280030b200228028003200520466c6a22012063360220200120022903b80637022c200120356a2067360200200120376a205c360200200120433703102001206620432061204254222d1b370308200120622044202d1b370300200120396a2043370300200120476a2020290300370200200120486a2028290300370200200120496a20262903003702002006200520336a360200200241b0056a202510d401200241b0056a203c6a280200222e0d150b202510160240202720244f0d0002402027450d0020274188016c2101202b41206a216a03400240206a41046a280200450d00206a28020010160b206a4188016a216a200141f87e6a22010d000b0b02402029450d00202a10160b024020024188036a280200226a450d00206a41d0006c210120022802800341206a216a03400240206a41046a280200450d00206a28020010160b206a41d0006a216a200141b07f6a22010d000b0b200228028403450d0320022802800310160c030b2027202320272023491b226bad4288017e2204422088a70d072004a72201417f4c0d07024002402001450d002001101322050d01200141081014000b410821050b4100216c200241003602f8022002206b3602f402200220053602f002206b450d00418801216d202c20274188016c226e6a216f410121704108217120024180036a41086a217241d0002173419f042174418001217541880221764190022177413021784190032179419803217a41e07b217b41a004217c419804217d41f800217e4118217f41f0002180014110218101200241b8066a41106a21820141e80021830142302184014220218501417f21860141d80021870141c80021880141c0002189014138218a01428801218b014128218c014124218d01418401218e01200241b3056a218f01412021900141e00021910141b07f21920141f87e21930142002194014201219501427f2196014148219701414021980141b87f2199014100219a01410221200c150b410821ac0120024180036a41086a2802002201450d0041d00021ad0120022802800322ae01200141d0006c6a21af01412c21b001414821b10141c07e21b20141b87d21b30141b07c21b401412821b501200241f0026a41086a21b60141880121b701419f0421b80141e00021b901412021ba0141e80121bb0141900221bc0141f00221bd0141a00421be0141980321bf0141f80321c00141e07b21c101410121c201420021c301411821c401411021c501420121c601427f21c70141d80021c801410021c901412421ca01423021cb01422021cc01413021cd0141f87e21ce01410321200c150b20022802900321d30120022902f402210320022802f00221d401024020024190036a20ac016a2802002201450d0020014188016c210520d30141206a210103400240200141046a280200450d00200128020010160b20014188016a2101200541f87e6a22050d000b0b0240200228029403450d0020d30110160b024020024188036a2802002201450d00200141d0006c210520022802800341206a210103400240200141046a280200450d00200128020010160b200141d0006a2101200541b07f6a22050d000b0b0240200228028403450d0020022802800310160b20d401450d00200220d4013602e807200220033702ec07200241a8036a41086a22014200370300200242003703a803419496c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004200241b0046a411041acf1c300410041001000417f460d01200242103702b4052002200241b0046a3602b005200241b8066a200241b0056a101120022802b8062228450d1120022802bc0621d501200241c0066a28020041057422d6010d020c030b420021d701200241a8036a41086a226a4200370300200242003703a80341aa96c2004111200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b004200241b0046a411041acf1c300410041001000417f460d03200242003703c006200242003703b806200241b0046a4110200241b8066a411041001000226a417f460d0e206a410f4d0d0e20022903b80621d7010c030b41012128410021d501410041057422d601450d010b202821010340410f10132205450d05200541076a41002900adeb41370000200541002900a6eb413700002005410f412f10152205450d062005200129000037000f200541276a200141186a22d8012900003700002005411f6a200141106a2206290000370000200541176a200141086a22d901290000370000200241a8036a41086a22d3014200370300200242003703a8032005412f200241a8036a1002200241b8066a41086a22da0120d301290300370300200220022903a8033703b806200241b8066a4110100320051016411210132205450d07200541106a41002f00bbe94122263b0000200541086a41002900b3e9412204370000200541002900abe941220037000020054112413210152205450d08200520012900003700122005412a6a20d801290000370000200541226a20062900003700002005411a6a20d90129000037000020d3014200370300200242003703a80320054132200241a8036a100220da0120d301290300370300200220022903a8033703b806410021da010240200241b8066a411041acf1c300410041001000417f460d00200241003602b005200241b8066a4110200241b0056a41044100100041016a41044d0d0520022802b00521db01200241b8066a41101003410121da010b20051016024020db01410020da011b22da0141014d0d00411210132205450d0a200541106a20263b0000200541086a20043700002005200037000020054112413210152205450d0b200520012900003700122005412a6a20d801290000370000200541226a20062900003700002005411a6a20d90129000037000020d3014200370300200242003703a80320054132200241a8036a1002200241b0046a41086a20d301290300370300200220022903a8033703b004200220da01417f6a3602b806200241b0046a4110200241b8066a41041001200510160b200141206a210120d60141606a22d6010d000b0b2003422088a721dc01024020d501450d00202810160b20dc01450d0c2003a721dd0141880121de0120d40120dc014188016c6a21df01410821d60120d40141086a29030021e00120d40129030021d701411021db01200241b8066a41106a21e10141f80021e201411821da0141f00021e30141e80021e401423021e501422021e601417f21e701413021d801412821d901200241b8066a41286a21e801200241dc066a21e901412021d301200241b8066a41206a21ea01410f21eb01410721ec01410021ed01412f21ee01412721ef01411f21f001411721f101420021f201420121f301410121d501415021f40120d40121f501410421200c110b200241a8036a41086a226a4200370300200242003703a80341bc99c2004115200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200241003602b806200241b0046a4110200241b8066a41044100100041016a41044d0d0a20023502b80621040c010b423c21040b200241086a20d70142002004420010fa02200241a8036a41086a226a4200370300200242003703a80341fc94c200411c200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b004200242003703c00620024289f48bdcc4002002290308428094ebdc038020022903104200521b3703b806200241b0046a4110200241b8066a411010010c120b100f000b41b6e7c20041331029000b410f41011014000b412f41011014000b411241011014000b413241011014000b411241011014000b413241011014000b41b6e7c20041331029000b202d41081014000b41b6e7c20041331029000b41ac99c2004100410010a801000b41b6e7c20041331029000b41012120410321010c030b410321010c020b410321010c010b410321010c000b0b200241b8066a10fb0120022802b806210520022802bc06216d024020022802c006226a450d00206a410574220141057522d301ad42287e2204422088a70d012004a722a1014100480d0120a1011013226f450d02200520016a2175206a41057421a101206f216a200521010340200141086a2900002104200141106a290000210020012900002103206a41186a200141186a290000370000206a41106a2000370000206a41086a2004370000206a2003370000206a41206a4201370300206a41286a216a200141206a210120a10141606a22a1010d000b207520056b41606a41057641016a2175206d450d040c030b410021d3014108216f41002175206d0d020c030b1010000b20a10141081014000b200510160b2002410e3602ac03200241b384c0003602a803200241b8066a41fdc8c300200241a8036a10bf014100216a0240024020022802b806220120022802c00622a10141acf1c300410041001000417f460d00200241003602a803200120a101200241a8036a41044100100041016a41044d0d0120022802a803216a0b024020022802bc06450d00200110160b200241b0056a206a102720022802b0052178024002400240207520022802b805470d002078206f460d01417f21a101206f216a20782101034020a10141016a22a10120754f0d02206a2001412010f8020d01200141206a2105206a41206a216d206a41286a216a200141286a2101206d2903002005290300510d000b0b200220753602c006200220d3013602bc062002206f3602b806200241b8066a420042002004102f20022802b405450d012078101620024190086a24000f0b024020022802b405450d00207810160b20d301450d00206f10160b20024190086a24000f0b41b6e7c20041331029000bf50a040c7f037e027f077e23004190036b22022400200241086a2001280200200128020428020c1102000240024020022903084201520d00200241e4016a41046a2103200241a0026a41106a2104200241a0016a4101722105200241086a41086a2106200241a0026a41206a2107200241c4026a21082002419c026a21090340200241f8016a41186a220a200641186a290000370300200241f8016a41106a220b200641106a290000370300200241f8016a41086a220c200641086a290000370300200220062900003703f801200241a0016a200241f8016a10e90102400240024020022d00a0014101470d00200241f0026a41186a200541186a290000370300200241f0026a41106a200541106a290000370300200241f0026a41086a200541086a290000370300200220052900003703f002200241a0026a200241f0026a10a4012007280200220d450d01200241a0026a41086a290300210e20022903a002210f2008280200450d02200d10160c020b200741003602000b4200210f4200210e0b4200211020034200370200200341086a4200370200200241f0026a41186a220d200a290300370300200241f0026a41106a220a200b290300370300200241f0026a41086a2211200c290300370300200220022903f8013703f002200241a0026a41086a22124200370300200b200241e4016a41106a280200360200200c200241e4016a41086a290200370300200420022903f002370300200441086a2011290300370300200441106a200a290300370300200441186a200d290300370300200242003703a002200220022902e4013703f801427f2113024002400240200e42ffffffff0f560d00200f2113200f500d010b200241d0016a41106a200b280200360200200241d0016a41086a200c290300370300200241a0016a41086a2012290300370300200241a0016a41106a2004290300370300200241a0016a41186a200241a0026a41186a290300370300200241a0016a41206a2007290300370300200241a0016a41286a200241a0026a41286a290300370300200220022903f8013703d001200220022903a0023703a0012002200928000036009b012002200228009902360298014100210b200f2114200e21150c010b4102210b2016210f2017210e20182113201921100b20024180016a41106a200241d0016a41106a28020036020020024180016a41086a200241d0016a41086a290300370300200241d0006a41086a200241a0016a41086a290300370300200241d0006a41106a200241a0016a41106a290300370300200241d0006a41186a200241a0016a41186a290300370300200241d0006a41206a200241a0016a41206a290300370300200241d0006a41286a200241a0016a41286a290300370300200220022903d00137038001200220022903a0013703502002200228009b0136004b2002200228029801360248200b4102470d02200241086a2001280200200141046a28020028020c110200200f2116200e2117201321182010211920022903084201510d000b0b200041023a00800120024190036a24000f0b200020143703102000200f370300200020133703402000410036022820004208370320200020022903800137022c20002002290350370350200041186a20153703002000200e370308200041c8006a2010370300200041346a20024180016a41086a2903003702002000413c6a20024180016a41106a280200360200200041d8006a200241d0006a41086a290300370300200041e0006a200241d0006a41106a290300370300200041e8006a200241d0006a41186a290300370300200041f0006a200241f0006a290300370300200041f8006a200241f8006a2903003703002000200b3a008001200020022802483600810120004184016a200228004b36000020024190036a24000b0900200042003702000be10c04037f017e1b7f027e230041f0026b2204240002400240410d10132205450d00200541056a41002900d69942370000200541002900d199423700002005410d412d10152205450d012005200129000037000d200541256a200141186a2900003700002005411d6a200141106a290000370000200541156a200141086a290000370000200441a0026a41086a22064200370300200442003703a0022005412d200441a0026a1002200441e0016a41086a2006290300370300200420042903a0023703e001024002400240024002400240200441e0016a411041acf1c300410041001000417f460d00200441003a00a002200441e0016a4110200441a0026a41014100100041016a41014d0d0520042d00a002220641034f0d052005101620064101460d0320064102470d01200441a0026a200110e90120042d00a0024101470d02200441f8016a200441b9026a290000370300200441e0016a41106a200441b1026a290000370300200441e0016a41086a200441a9026a290000370300200420042900a1023703e001200441386a200441e0016a2002200310fc0120043502384201852102200441386a41106a2903002103200441386a41086a29030021070c040b200510160b200441f8006a200110e90120042d00784101470d00200441a0016a41186a20044191016a2205290000370300200441a0016a41106a20044189016a2206290000370300200441a0016a41086a20044181016a2208290000370300200420042900793703a001200441a0026a200441a0016a10a401200441c0016a41186a22092005290000370300200441c0016a41106a220a2006290000370300200441c0016a41086a220b2008290000370300200420042900793703c00120042802c002220c450d00200441e0016a41186a220d2009290300370300200441e0016a41106a220e200a290300370300200441e0016a41086a220f200b290300370300200441e0016a41286a2205200441a0026a41086a2206290300370300200441e0016a41306a2208200441a0026a41106a2209290300370300200441e0016a41386a2210200441a0026a41186a2211290300370300200441086a41086a2212200441cc026a2213290200370300200441086a41106a2214200441d4026a2215290200370300200441086a41186a2216200441dc026a2217290200370300200441086a41206a2218200441e4026a2219290200370300200441086a41286a221a200441ec026a221b280200360200200420042903c0013703e001200420042903a00237038002200420042902c402370308200441386a41386a221c2010290300370300200441386a41306a221d2008290300370300200441386a41286a221e2005290300370300200441386a41206a221f200429038002370300200441386a41186a2220200d290300370300200441386a41106a2221200e290300370300200441386a41086a2222200f290300370300200420042903e0013703382010201c2903003703002008201d2903003703002005201e290300370300200441e0016a41206a221c201f290300370300200d2020290300370300200e2021290300370300200f2022290300370300200420042903383703e001200441f8006a41186a2020290300370300200441f8006a41106a2021290300370300200441f8006a41086a202229030037030020042004290338370378201120102903003703002009200829030037030020062005290300370300200441c4026a2205200429030837020020132012290300370200201520142903003702002017201629030037020020192018290300370200201b201a2802003602002004200c3602c0022004201c2903003703a00220092009290300220720027c22233703002011201129030020037c2023200754ad7c37030020062903002107200420042903a002222320027c22243703a0022006200720037c2024202354ad7c370300200441c0016a20012002200310fc0120043502c0012102200a2903002103200b2903002107200441f8006a200441a0026a10fd0102402005280200450d00200441a0026a41206a28020010160b200242018521020c020b420021020c010b200441a0026a20012002200310fc0120043502a0024201852102200441b0026a2903002103200441a8026a29030021070b2000200737030820002002370300200041106a2003370300200441f0026a24000f0b41b6e7c20041331029000b410d41011014000b412d41011014000bd20503027f037e017f230041206b220424004101210502402001a74101470d00200041086a2205427f2005290300220620037c2000290300220720027c22082007542205ad7c22072005200720065420072006511b22051b3703002000427f200820051b370300410021050b0240024002400240024002400240024020014201510d004200210620014200510d03200441106a41086a220042003703002004420037031041a795c3004116200441106a1002200441086a22052000290300370300200420042903103703002004411041acf1c300410041001000417f460d01200442003703182004420037031020044110200441106a4110410010002209417f460d062009410f4d0d06200441186a2903002101200429031021060c020b2005450d02200441106a41086a220042003703002004420037031041a795c3004116200441106a1002200441086a22052000290300370300200420042903103703002004411041acf1c300410041001000417f460d03200442003703182004420037031020044110200441106a4110410010002209417f460d062009410f4d0d06200441186a2903002101200429031021060c040b420021010b200042003703002004420037031041a795c3004116200441106a100220052000290300370300200420042903103703002004427f200120037c200620027c22032006542200ad7c22022000200220015420022001511b22001b3703182004427f200320001b37031020044110200441106a411010010b200441206a24000f0b42002106420021010b200042003703002004420037031041a795c3004116200441106a100220052000290300370300200420042903103703002004427f200120037c200620027c22032006542200ad7c22022000200220015420022001511b22001b3703182004427f200320001b37031020044110200441106a41101001200441206a24000f0b41b6e7c20041331029000b41b6e7c20041331029000bc70202047f047e230041206b22012400200141106a41086a220242003703002001420037031041a795c3004116200141106a1002200141086a22032002290300370300200120012903103703000240024002402001411041acf1c300410041001000417f460d00200142003703182001420037031020014110200141106a4110410010002204417f460d022004410f4d0d02200141186a2903002105200129031021060c010b42002106420021050b200041086a290300210720002903002108200242003703002001420037031041a795c3004116200141106a100220032002290300370300200120012903103703002001427f200520077c200620087c22072006542202ad7c22062002200620055420062005511b22021b3703182001427f200720021b37031020014110200141106a41101001200141206a24000f0b41b6e7c20041331029000be40203047f017e017f230041306b220124002001410636020c200141f7c8c300360208200141106a41fdc8c300200141086a10bf01410021020240024002400240200128021022032001280218220441acf1c300410041001000417f460d002001410036020820032004200141086a41044100100041016a41044d0d01200128020821020b02402001280214450d00200310160b024002402002450d002002ad4205862205422088a70d032005a722034100480d03200310132206450d0441002104200621030340200141106a200410bf02200341186a200141106a41186a290000370000200341106a200141106a41106a290000370000200341086a200141106a41086a29000037000020032001290010370000200341206a21032002200441016a2204470d000c020b0b410121060b200020023602082000200236020420002006360200200141306a24000f0b41b6e7c20041331029000b1010000b200341011014000bcc0304027f017e017f027e230041306b220424002004200110880102400240024002400240024002402004290300200441086a290300844200510d00411410132205450d05200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d06200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054134200441206a1002200441106a41086a200729030037030020042004290320370310200441106a411041acf1c300410041001000417f460d012004420037032820044200370320200441106a4110200441206a4110410010002207417f460d042007410f4d0d04200441286a2903002108200429032021060c020b200041c191c300360204200041086a4122360200410121010c020b420021080b200510162001200620027c2209200820037c2009200654ad7c108601200041106a2003370300200041086a2002370300410021010b20002001360200200441306a24000f0b41b6e7c20041331029000b411441011014000b413441011014000b990201027f230041306b22022400200242f3e885db96cddbb320370308200241086a2001412c6a2001290300200141086a290300427f10bc0102400240410e10132203450d00200341066a41002900ddcc41370000200341002900d7cc413700002003410e412e10152203450d012003200029000037000e200341266a200041186a2900003700002003411e6a200041106a290000370000200341166a200041086a290000370000200241206a41086a22004200370300200242003703202003412e200241206a1002200241106a41086a200029030037030020022002290320370310200241103602242002200241106a3602202001200241206a10e50120031016200241306a24000f0b410e41011014000b412e41011014000b02000bec0301087f23004180016b22032400200341c0006a200110d6010240024020032903404201520d002002417f732104200341c0006a41086a21020340200341086a41306a2205200241306a290300370300200341086a41286a2206200241286a290300370300200341086a41206a2207200241206a290300370300200341086a41186a2208200241186a290300370300200341086a41106a2209200241106a290300370300200341086a41086a220a200241086a29030037030020032002290300370308200341c0006a41306a2005290300370300200341c0006a41286a2006290300370300200341c0006a41206a2007290300370300200341c0006a41186a2008290300370300200341c0006a41106a20092903003703002002200a29030037030020032003290308370340200441016a2204450d02200341c0006a200110d60120032903404201510d000b0b2000420037030020034180016a24000f0b2000200329034037030820004201370300200041386a200341c0006a41306a290300370300200041306a200341c0006a41286a290300370300200041286a200341c0006a41206a290300370300200041206a200341c0006a41186a290300370300200041186a200341c0006a41106a290300370300200041106a200341c8006a29030037030020034180016a24000bd716010e7f230041c0026b22012400024002400240024002400240024002400240024002400240024002400240411210132202450d00200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc4137000020024112413210152202450d01200220002900003700122002412a6a200041186a290000370000200241226a200041106a2900003700002002411a6a200041086a29000037000020014190026a41086a2200420037030020014200370390022002413220014190026a100220014180026a41086a20002903003703002001200129039002370380020240024020014180026a411041acf1c300410041001000417f460d002001421037029402200120014180026a36029002200141c0006a20014190026a101120012802402203450d0520012802442104200141b0016a20014190026a10f30120012d00b00122054102460d04200141e0006a41186a200141c9016a290000370300200141e0006a41106a200141c1016a290000370300200141e0006a41086a200141b9016a290000370300200141a0026a41086a200141da016a290100370300200141a0026a41106a200141e2016a290100370300200141a0026a41186a200141ea016a290100370300200120012900b1013703602001200141d2016a2901003703a002200141d1016a2d0000210020014180026a411010030c010b410221050b200141206a41186a200141e0006a41186a290300370300200141206a41106a2206200141e0006a41106a290300370300200141206a41086a2207200141e0006a41086a290300370300200141086a2208200141a0026a41086a2209290300370300200141106a220a200141a0026a41106a220b290300370300200141186a200141a0026a41186a29030037030020012001290360370320200120012903a0023703002002101620054102460d0e200141a0026a41186a200141206a41186a290300370300200b200629030037030020092007290300370300200141c0006a41086a2008290300370300200141c0006a41106a200a290300370300200141c0006a41186a200141186a290300370300200120012903203703a002200120012903003703404100210c0240200041ff01714101470d00411210132202450d06200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc413700002002411241321015220c450d07200c2001290340370012200c412a6a200141d8006a290300370000200c41226a200141c0006a41106a290300370000200c411a6a200141c0006a41086a2903003700000b0240024002400240024020054101470d00411210132202450d0c200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc413700002002411241321015220d450d0d200d20012903a002370012200d412a6a200141a0026a41186a290300370000200d41226a200141a0026a41106a290300370000200d411a6a200141a0026a41086a29030037000020014190026a41086a220242003703002001420037039002200d413220014190026a100220014180026a41086a2002290300370300200120012903900237038002200141b0016a20014180026a10d50120012d00bc014102460d0e200141e0006a200141b0016a41d00010f6021a2001418d016a20003a00002001418e016a200129034037010020014196016a200141c0006a41086a2903003701002001419e016a200141c0006a41106a290300370100200141a6016a200141c0006a41186a29030037010020014190026a41086a220242003703002001420037039002200d413220014190026a100220014180026a41086a2002290300370300200120012903900237038002200141003602b801200142013703b0012001280260210e2001200128026822023602900220014190026a200141b0016a101802402002450d00200241057421094100200141b0016a41086a28020022006b210720012802b001210a20012802b4012108200e210203400240200820076a411f4b0d00200041206a22062000490d052008410174220b20062006200b491b22064100480d05024002402008450d00200a200820061015220a0d010c090b20061013220a450d080b200621080b200a20006a22062002290000370000200641186a200241186a290000370000200641106a200241106a290000370000200641086a200241086a290000370000200741606a2107200041206a2100200241206a2102200941606a22090d000b200141b8016a2000360200200120083602b4012001200a3602b0010b200141ec006a200141b0016a10f40120012802b401210220014180026a411020012802b0012200200141b0016a41086a280200100102402002450d00200010160b02402001280264450d00200e10160b200d10164101210e200c0d010c100b0240200041ff01714101470d0020014190026a41086a220242003703002001420037039002419a97c200411a20014190026a100220014180026a41086a2002290300370300200120012903900237038002412010132202450d0f20022001290340370000200241186a200141c0006a41186a290300370000200241106a200141c0006a41106a290300370000200241086a200141c0006a41086a29030037000020014180026a4110200241201001200210164100210d4100210e200c0d010c100b20014190026a41086a220242003703002001420037039002419a97c200411a20014190026a1002200141b0016a41086a200229030037030020012001290390023703b001200141b0016a411010034100210d4100210e200c450d0f0b20014190026a41086a220242003703002001420037039002200c413220014190026a100220014180026a41086a22002002290300370300200120012903900237038002200141b0016a20014180026a10d50120012d00bc014102460d07200141e0006a200141b0016a41d00010f6021a200141ed006a20012903a002370000200141f5006a200141a0026a41086a290300370000200141fd006a200141a0026a41106a29030037000020014185016a200141a0026a41186a290300370000200120053a006c200242003703002001420037039002200c413220014190026a100220002002290300370300200120012903900237038002200141003602b801200142013703b001200128026021052001200128026822023602900220014190026a200141b0016a101802402002450d00200241057421094100200141b0016a41086a28020022006b210720012802b001210a20012802b40121082005210203400240200820076a411f4b0d00200041206a22062000490d032008410174220b20062006200b491b22064100480d03024002402008450d00200a200820061015220a0d010c060b20061013220a450d050b200621080b200a20006a22062002290000370000200641186a200241186a290000370000200641106a200241106a290000370000200641086a200241086a290000370000200741606a2107200041206a2100200241206a2102200941606a22090d000b200141b8016a2000360200200120083602b4012001200a3602b0010b200141ec006a200141b0016a10f40120012802b401210220014180026a411020012802b0012200200141b8016a280200100102402002450d00200010160b02402001280264450d00200510160b200c101641012102200e200d45720d100c0f0b1010000b200641011014000b200641011014000b411241011014000b413241011014000b2004450d00200310160b41b6e7c20041331029000b41b9eac10041d3001029000b411241011014000b413241011014000b411241011014000b413241011014000b41b9eac10041d3001029000b412041011014000b41002102200e200d45720d010b200d10160b02400240200c45200272450d002004450d020c010b200c10162004450d010b200310160b200141c0026a24000bf80102017f017e024002400240024002400240024002400240200028020022024101460d0020024102470d01410110132202450d03200241023a00002000290308210320024101410910152200450d04200020033700010c020b410110132202450d04200241013a00002000290308210320024101410910152200450d05200020033700010c010b410110132202450d05200241003a00002000290308210320024101410910152200450d06200020033700010b20012802002001280204200041091001200010160f0b410141011014000b410941011014000b410141011014000b410941011014000b410141011014000b410941011014000bf02407107f017e027f027e017f097e027f23004180026b22022400200241f0016a41086a22034200370300200242003703f00141a7a4c2004115200241f0016a1002200241e0016a41086a22042003290300370300200220022903f0013703e0010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241e0016a411041acf1c300410041001000417f460d00200242103702742002200241e0016a3602702002200241f0006a10830220022903004203510d0141e0a4c2002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703f00141bca4c2004124200241f0016a100220042003290300370300200220022903f0013703e0010240200241e0016a411041acf1c300410041001000417f460d00200242103702542002200241e0016a360250200241f0006a200241d0006a101120022802702204450d0c200241f8006a280200210302402002280274450d00200410162003450d010c130b20030d120b200241f0016a41086a22034200370300200242003703f00141c8a5c200411a200241f0016a1002200241e0016a41086a2003290300370300200220022903f0013703e0010240200241e0016a411041acf1c300410041001000417f460d00200242103702542002200241e0016a360250200241f0006a200241d0006a101120022802702204450d0e200241f8006a280200210302402002280274450d00200410162003450d010c120b20030d110b200241f0016a41086a22034200370300200242003703f00141e2a5c200411b200241f0016a1002200241e0016a41086a2003290300370300200220022903f0013703e0010240200241e0016a411041acf1c300410041001000417f460d00200242103702542002200241e0016a360250200241f0006a200241d0006a101120022802702204450d0f200241f8006a280200210302402002280274450d00200410162003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b024002400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210132203450d12200341206a41002f009da64222173b0000200341186a4100290095a6422218370000200341106a410029008da6422219370000200341086a4100290085a642221a370000200341002900fda542221b3700002003412241c40010152203450d14200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0016a41086a22014200370300200242003703f001200341c200200241f0016a100220112001290300370300200220022903f001370370200241f0006a411041acf1c3004100410010002106200310164122101321030240024002402006417f460d002003450d19200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010152203450d1a200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a200529030037000020014200370300200242003703f001200341c200200241f0016a1002200241e0016a41086a22062001290300370300200220022903f0013703e001200241f0006a200241e0016a4110108402200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f2002290370212020031016412210132203450d1b200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010152203450d1c200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a200529030037000020014200370300200242003703f001200341c200200241f0016a100220062001290300370300200220022903f0013703e001411010132204450d1d2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010152204450d1e2004201e4200202042015122071b370010200441186a201f420020071b370000200241e0016a411020044120100120041016200310162012422088a741306c22030d010c020b2003450d1e200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010152203450d1f200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a200529030037000020014200370300200242003703f001200341c200200241f0016a1002200241e0016a41086a2001290300370300200220022903f0013703e001411010132206450d20200620163700002006201537000820064110412010152206450d2120064200370010200641186a4200370000200241e0016a41102006412010012006101620031016200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d09200e4101742204200320032004491b220fad4205862215422088a70d092015a722034100480d090240200e450d002010200e4105742003101522100d010c250b200310132210450d240b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210132204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a100220112001290300370300200220022903f001370370200241f0006a411041acf1c30041004100100021222004101641221013210402402022417f460d002004450d0a200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d0b200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a1002200241e0016a41086a22222001290300370300200220022903f0013703e001200241f0006a200241e0016a4110108402200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f2002290370212020041016412210132204450d0c200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d0d200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a100220222001290300370300200220022903f0013703e001411010132207450d0e2007201e4200202042015122051b3700002007201f420020051b37000820074110412010152207450d0f2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c370000200241e0016a41102007412010012007101620041016200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a1002200241e0016a41086a2001290300370300200220022903f0013703e001411010132222450d11202242003700082022420037000020224110412010152222450d1220222016370010202241186a2015370000200241e0016a41102022412010012022101620041016200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d09200e4101742207200420042007491b220fad4205862215422088a70d092015a722044100480d090240200e450d002010200e4105742004101522100d010c150b200410132210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d00201310160b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d00200410160b2003211420012003470d000b0b0240200b450d00200810160b200241f0016a41086a22034200370300200242003703f00141bca4c2004124200241f0016a1002200241e0016a41086a2003290300370300200220022903f0013703e00120024100360278200242013703702002200e360250200241d0006a200241f0006a101802400240200e450d00200e41057421064100200241f0006a41086a28020022046b210720022802702117200228027421052010210303400240200520076a411f4b0d00200441206a22012004490d0620054101742211200120012011491b22014100480d06024002402005450d00201720052001101522170d010c150b200110132217450d140b200121050b201720046a22012003290000370000200141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200741606a2107200441206a2104200341206a2103200641606a22060d000b200241f8006a200436020020022005360274200220173602700c010b200241f0006a41086a280200210420022802742105200228027021170b200241e0016a411020172004100102402005450d00201710160b0240200f450d00201010160b200241083a007041002105200241f0006a41086a41003a0000200241f0006a105a1085020c250b412241011014000b41c40041011014000b1010000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b200441011014000b412241011014000b200141011014000b41c40041011014000b41b6e7c20041331029000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b41b6e7c20041331029000b200341011014000b41b6e7c20041331029000b41b6e7c20041331029000b41afa5c20021054119210620012802002107200128020822030d020c030b4197a5c20021054118210620012802002107200128020822030d010c020b41fca4c2002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d00200328020010160b200341c0006a2103200441406a22040d000b0b200141046a280200450d00200710160b200020063602042000200536020020024180026a24000b960302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081000210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d000822034102460d0120034101460d0220030d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420021050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420221050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000be20102027f037e230041106b220324000240024002402001200241acf1c300410041001000417f460d0020034200370308200342003703002001200220034110410010002204417f460d022004410f4d0d02200341086a29030021052003290300210620034200370308200342003703002001200220034110411010002201417f460d022001410f4d0d0220032903002107200041206a200341086a290300370300200041186a2007370300200041106a200537030020002006370308420121050c010b420021050b20002005370300200341106a24000f0b41b6e7c20041331029000bb00502047f027e23004190016b22002400200041106a41086a2201420037030020004200370310419fa6c2004115200041106a100220004180016a41086a2001290300370300200020002903103703800102400240024020004180016a411041acf1c300410041001000417f460d002000410036021020004180016a4110200041106a41044100100041016a41044d0d02200028021041016a21020c010b410121020b200041106a41086a2201420037030020004200370310419fa6c2004115200041106a100220004180016a41086a2203200129030037030020002000290310370380012000200236021020004180016a4110200041106a41041001200142003703002000420037031041b4a6c2004120200041106a1002200320012903003703002000200029031037038001024002400240024020004180016a411041acf1c300410041001000417f460d002000420037031020004180016a4110200041106a41084100100041016a41084d0d02200029031021040c010b42e40021040b200041106a41086a2201420037030020004200370310419be8c200410d200041106a100220004180016a41086a22032001290300370300200020002903103703800142002105024020004180016a411041acf1c300410041001000417f460d002000420037031020004180016a4110200041106a41084100100041016a41084d0d02200029031021050b2000200520047c37030820004200370300200142003703002000420037031041a7a4c2004115200041106a100220032001290300370300200020002903103703800120004110360214200020004180016a3602102000200041106a1081022000411c6a2002360200200141013a0000200041083a0010200041106a105a20004190016a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000bee0202027f057e230041c0006b2202240002400240411f10132203450d00200341176a41002900da9e42370000200341106a41002900d39e42370000200341086a41002900cb9e42370000200341002900c39e423700002003411f413f10152203450d012003200129000037001f200341376a200141186a2900003700002003412f6a200141106a290000370000200341276a200141086a290000370000200241086a41086a22014200370300200242003703082003413f200241086a1002200241306a41086a200129030037030020022002290308370330200241086a200241306a4110108402200241086a41106a2903002104200241086a41186a2903002105200241286a2903002106200229031021072002290308210820031016200041186a20064200200842015122031b37030020002005420020031b37031020002004420020031b37030820002007420020031b370300200241c0006a24000f0b411f41011014000b413f41011014000b130020004111360204200041d4a6c2003602000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241143600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011014000b3301017f0240410810132202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011014000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010132206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010152206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110152206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011014000b41c00041011014000b41800141011014000b6101017f02400240411010132202450d00200242003700082002420037000020024110412010152202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011014000b412041011014000b3101017f0240410110132202450d00200042818080801037020420002002360200200241013a00000f0b410141011014000b13002000410f360204200041ccb8c2003602000bd41003097f047e087f230041c0026b2202240002400240411510132203450d002003410d6a41002900b8bb42370000200341086a41002900b3bb42370000200341002900abbb4237000020034115413510152203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1002200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a411041acf1c300410041001000417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22014200370300200242003703284100200241b0016a4110200241286a41204100100022042004417f461b2204411f4d0d02200241186a2205200241286a41186a2206290300370300200241106a2207200241286a41106a2208290300370300200241086a2209200129030037030020022002290328370300200241a0026a41186a220a2005290300370300200241a0026a41106a22052007290300370300200241a0026a41086a22072009290300370300200220022903003703a002200241c0016a41186a200a290300370300200241c0016a41106a2005290300370300200241c0016a41086a2007290300370300200220022903a0023703c001200642003703002008420037030020014200370300200242003703284100200241b0016a4110200241286a41202004412020044120491b2201100022042004417f461b220441204922050d02200241e0016a41186a2006290300370300200241e0016a41106a2008290300370300200241e0016a41086a200241286a41086a2206290300370300200220022903283703e00120024200370330200242003703284100200241b0016a4110200241286a41102004412020051b20016a2204100022012001417f461b2201410f4d0d022006290300210b2002290328210c20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20046a2204100022012001417f461b2201410f4d0d02200241306a290300210d2002290328210e41002109200241003a0028200241b0016a4110200241286a41012001411020014110491b20046a2201100041016a41014b2204450d02024020022d00282206450d0020064101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a4120200120046a10002201417f460d032001411f4d0d03200241186a2201200241286a41186a290300370300200241106a2204200241286a41106a290300370300200241086a2206200241286a41086a29030037030020022002290328370300200241a0026a41186a22082001290300370300200241a0026a41106a22012004290300370300200241a0026a41086a22042006290300370300200220022903003703a00220024180026a41186a200829030037030020024180026a41106a200129030037030020024180026a41086a2004290300370300200220022903a00237038002410121090b200241286a41186a220a20024180026a41186a220f290300370300200241286a41106a221020024180026a41106a2211290300370300200241286a41086a221220024180026a41086a22132903003703002002200229038002370328200241a0026a41186a2214200241c0016a41186a2201290300370300200241a0026a41106a2215200241c0016a41106a2204290300370300200241a0026a41086a2216200241c0016a41086a22062903003703002013200241e0016a41086a22082903003703002011200241e0016a41106a2205290300370300200f200241e0016a41186a2207290300370300200220022903c0013703a002200220022903e00137038002200241cb006a200241036a2800003600002002200228000036024820072014290300370300200520152903003703002008201629030037030020062013290300370300200420112903003703002001200f290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200a2903003703002002411f6a2210200241286a411f6a290000370000200220022903a0023703e00120022002290380023703c00120022002290328370300200a200d370300200241286a41286a2008290300370300200241286a41306a2005290300370300200241286a41386a2007290300370300200241286a41c8006a2006290300370300200241286a41d0006a2004290300370300200241286a41d8006a20012903003703002002200e3703382002200b3703302002200c370328200220022903e001370348200220022903c001370368200041186a200d3703002000200e3703102000200b3703082000200c370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a2010290000370000200020022903e001370320200041286a2008290300370300200041306a2005290300370300200041386a2007290300370300200220093a008801200020093a0060200041d8006a2001290300370300200041d0006a2004290300370300200041c8006a2006290300370300200020022903c00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010f5021a0b20031016200241c0026a24000f0b41b6e7c20041331029000b411541011014000b413541011014000b9f0304027f017e017f027e230041306b2203240002400240411410132204450d00200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341206a41086a220642003703002003420037032020044134200341206a1002200341106a41086a200629030037030020032003290320370310024002400240200341106a411041acf1c300410041001000417f460d002003420037032820034200370320200341106a4110200341206a4110410010002206417f460d022006410f4d0d02200341286a2903002107200329032021050c010b420021070b20041016410021040240200520017d2208200556200720027d2005200154ad7d220520075620052007511b0d00200341086a200041042008200510a30120032802084521040b200341306a240020040f0b41b6e7c20041331029000b411441011014000b413441011014000bef280b197f017e017f017e087f067e037f057e1f7f027e0b7f23004190016b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b4200211c41c200211d4201211e4100211f0c010b200341d0006a2135410021000c010b410121000b03400240024002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341f0006a41086a220042003703002003420037037041e2a5c200411b200341f0006a1002200341d0006a41086a200029030037030020032003290370370350024002400240024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a101120032802082236450d03200328020c21370240200341086a41086a22382802002200450d0020004105742125203621040340200341086a41186a2226200441186a290000370300200341086a41106a2239200441106a2900003703002038200441086a29000037030020032004290000370308411510132200450d032000410d6a41002900b8bb42370000200041086a41002900b3bb42370000200041002900abbb4237000020004115413510152200450d04200441206a2104200020032903083700152000412d6a2026290300370000200041256a20392903003700002000411d6a2038290300370000200341f0006a41086a222642003703002003420037037020004135200341f0006a1002200341d0006a41086a202629030037030020032003290370370350200341d0006a4110100320001016202541606a22250d000b0b2037450d00203610160b200341f0006a41086a220042003703002003420037037041e2a5c200411b200341f0006a1002200341d0006a41086a2204200029030037030020032003290370370350200341d0006a41101003200042003703002003420037037041c8a5c200411a200341f0006a10022004200029030037030020032003290370370350024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a10112003280208223a450d05200328020c213b4105213c200341106a28020041057422000d010c0c0b4101213a4100213b4105213c41004105742200450d0b0b203a20006a213d2001280200213e2001280204213f41182140411021414108214241202138417f21394102214341a80821444106214541987d21464160213741012136203a21474101211f0c050b411541011014000b413541011014000b41b6e7c20041331029000b41b6e7c20041331029000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a20406a204720406a290000370300200341086a20416a204720416a290000370300200341086a20426a204720426a29000037030020032047290000370308204720386a2147203e2148203f21490c030b200341086a204c6a225c2047204c6a290000370300200341086a204d6a225d2047204d6a290000370300200341086a204e6a225e2047204e6a290000370300200320472900003703082047204f6a2147203e215f203f21600c030b410121000c110b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d0120202004201010f8022226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204820426a210420482f01062224203c7421004100212502400240024003402000450d01200341086a2004203810f8022226450d02200020376a2100202520366a2125200420386a2104202620394a0d000b202520396a21240b2049450d01204920396a2149204820242043746a20446a2802002148410121000c030b204820252045746a2046460d002047203d470d090c100b200341d0006a41186a2200200341086a41186a290300370300200341d0006a41106a2204200341086a41106a290300370300200341d0006a41086a2225200341086a41086a29030037030020032003290308370350200341306a41186a22262000290300370300200341306a41106a22002004290300370300200341306a41086a2204202529030037030020032003290350370330200341f0006a41186a22252026290300370300200341f0006a41106a22262000290300370300200341f0006a41086a220020042903003703002003200329033037037041201013224a450d07204a2003290370370000204a41186a2025290300370000204a41106a2026290300370000204a41086a20002903003700002047203d460d034101214b4118214c4110214d4108214e4120214f41052150417f21514102215241a80821534205215442202155410021564106215741987d2158416021594101215a4101215b4102211f0c0e0b205f204e6a2104205f2f010622242050742100410021250240024003402000450d01200341086a2004204f10f8022226450d02200020596a21002025204b6a21252004204f6a2104202620514a0d000b202520516a21240b2060450d02206020516a2160205f20242052746a20536a280200215f410221000c010b0b205f20252057746a2058460d002047203d470d070c020b200341d0006a204c6a2200205c290300370300200341d0006a204d6a2204205d290300370300200341d0006a204e6a2225205e29030037030020032003290308370350200341f0006a204c6a22262000290300370300200341f0006a204d6a22002004290300370300200341f0006a204e6a2204202529030037030020032003290350370370200341306a204c6a22252026290300370300200341306a204d6a22262000290300370300200341306a204e6a221f2004290300370300200320032903703703300240205b205a470d00205a204b6a2200205a490d03205a204b742204200020002004491b225bad2054862227205588a70d032027a722002056480d030240205a450d00204a205a20507420001015224a0d010c050b20001013224a450d040b204a205a2050746a220020032903303700002000204c6a20252903003700002000204d6a20262903003700002000204e6a201f290300370000205a204b6a215a2047203d470d070c010b4101215a4101215b0b0240203b450d00203a10160b204a205a109302205b450d0b204a10160c0b0b1010000b200041011014000b412041011014000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c100b410121000c0f0b410121000c0e0b410121000c0d0b0240203b450d00203a10160b410141001093020b200341f0006a41086a220042003703002003420037037041c8a5c200411a200341f0006a1002200341d0006a41086a20002903003703002003200329037037035002400240024002400240024002400240024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a101120032802082210450d07200328020c214f0240200341086a41086a22382802002200450d0020004105742125201021040340200341086a41186a2226200441186a290000370300200341086a41106a2239200441106a2900003703002038200441086a29000037030020032004290000370308411f10132200450d04200041176a41002900da9e42370000200041106a41002900d39e42370000200041086a41002900cb9e42370000200041002900c39e423700002000411f413f10152200450d03200441206a21042000200329030837001f200041376a20262903003700002000412f6a2039290300370000200041276a2038290300370000200341f0006a41086a22264200370300200342003703702000413f200341f0006a1002200341d0006a41086a202629030037030020032003290370370350200341d0006a4110100320001016202541606a22250d000b0b204f450d00201010160b200341f0006a41086a222642003703002003420037037041c8a5c200411a200341f0006a1002200341d0006a41086a2239202629030037030020032003290370370350200341d0006a4110100302402002450d00202642003703002003420037037041bca4c2004124200341f0006a10022039202629030037030020032003290370370350410021100240024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a10112003280208224f450d0c200328020c2110200341106a28020041057422380d010c020b4101214f41004105742238450d010b204f21040340412210132200450d07200041206a41002f009da6423b0000200041186a4100290095a642370000200041106a410029008da642370000200041086a4100290085a642370000200041002900fda5423700002000412241c40010152200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341f0006a41086a2225420037030020034200370370200041c200200341f0006a1002200341d0006a41086a202529030037030020032003290370370350200341086a20354110108402200341086a41186a290300211c200341086a41086a290300211e200341086a41206a2903002127200341086a41106a290300212820032903082155200010160240201c4200205542015122001b221c201e420020001b221e842027420020001b22272028420020001b22288484500d002004201c201e7c221e202720287c201e201c54ad7c105f0b200441206a2104203841606a22380d000b0b2010450d00204f10160b202642003703002003420037037041bca4c2004124200341f0006a1002203920262903003703002003200329037037035002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a101120032802082210450d08200328020c214f0240200341086a41086a22382802002200450d0020004105742125201021040340200341086a41186a2226200441186a290000370300200341086a41106a2239200441106a2900003703002038200441086a29000037030020032004290000370308412210132200450d05200041206a41002f009da6423b0000200041186a4100290095a642370000200041106a410029008da642370000200041086a4100290085a642370000200041002900fda5423700002000412241c40010152200450d06200441206a2104200020032903083700222000413a6a2026290300370000200041326a20392903003700002000412a6a2038290300370000200341f0006a41086a2226420037030020034200370370200041c200200341f0006a1002200341d0006a41086a202629030037030020032003290370370350200341d0006a4110100320001016202541606a22250d000b0b204f450d00201010160b200341f0006a41086a220042003703002003420037037041bca4c2004124200341f0006a1002200341d0006a41086a2204200029030037030020032003290370370350200341d0006a41101003200042003703002003420037037041a7a4c2004115200341f0006a10022004200029030037030020032003290370370350200341d0006a4110100320034190016a24000f0b413f41011014000b411f41011014000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200620106a21000240200629030022272006200b6a290300222884500d00200020272028105f0b2006290310200620146a222629030084500d00201510132204450d01200420106a20162f009da64222243b0000200420146a2016290095a6422229370000200420176a201629008da642222a3700002004200b6a2016290085a642222b370000200420162900fda542222c37000020042015201810152204450d0220042000290000370022200420196a200020146a22232900003700002004201a6a200020176a222d2900003700002004201b6a2000200b6a222e290000370000200341f0006a200b6a2225201c3703002003201c3703702004201d200341f0006a1002200341d0006a200b6a222f202529030037030020032003290370370350200341086a200341d0006a2017108402200341086a20106a2903002130200341086a20146a2903002131200341086a200b6a2903002132200341086a20176a2903002133200329030821272004101620262903002134200620176a2903002128201510132204450d03200420106a20243b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810152204450d0420042000290000370022200420196a20232900003700002004201a6a202d2900003700002004201b6a202e2900003700002025201c3703002003201c3703702004201d200341f0006a1002202f202529030037030020032003290370370350201710132200450d0520002032201c2027201e5122251b37000020002033201c20251b37000820002017201010152200450d06200020282031201c2027201c5222251b7c2227370010200020146a20342030201c20251b7c2027202854ad7c370000200341d0006a201720002010100120001016200410160b200620056a22062007470d06200341d0006a21350c070b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b4100211f0c010b410021000c010b410121000c000b0bb30101047f230041e0006b22012400200120001098020240200141306a22022802002203450d00200141346a2104034002402004280200450d00200310160b20012000109802200228020022030d000b0b02402000280204220341b894c100460d0020032802002102200310162002450d0020022802002100200210162000450d00024020002802002203450d000340200010162003210020032802002202210320020d000b0b200010160b200141e0006a24000bb6140e097f017e017f047e017f017e017f017e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041c8a5c200411a200241e0006a1002200241c8006a41086a2000290300370300200220022903603703484100210102400240024002400240024002400240024002400240024002400240024002400240024002400240200241c8006a411041acf1c300410041001000417f460d00200242103702642002200241c8006a360260200241206a200241e0006a101120022802202200450d02200241286a2802002101200228022421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a102a02400240024020022d00204101470d00412010132204450d0420042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a102a20022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d0b2005200120012005491b2207ad420586220b422088a70d0b200ba722014100480d0b02402006450d00200420032001101522040d010c050b200110132204450d040b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a102a20022d00200d000b2002280250220020022802542201460d060c050b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d00200228020810160b4100210720022802042201450d070c060b41012106410121072002280250220020022802542201470d030c040b200141011014000b41b6e7c20041331029000b412041011014000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d00200228024810160b20022802042201450d010b200228020021002001410574210c0340411f10132201450d03200141176a41002900da9e42220d370000200141106a41002900d39e42220e370000200141086a41002900cb9e42220f370000200141002900c39e4222103700002001411f413f10152201450d042001200029000037001f200141376a200041186a22052900003700002001412f6a200041106a2208290000370000200141276a200041086a2209290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a1002200241c8006a41086a220a200329030037030020022002290360370348200241206a200241c8006a4110108402200241206a41106a22112903002112200241206a41086a22132903002114200241206a41186a22152903002116200241206a41206a221729030021182002290320210b2001101620184200200b42015122011b21182016420020011b211602402014201284500d00200b500d00200020142012105f0b02402016201884500d00412210132201450d08200141206a41002f009da64222193b0000200141186a4100290095a6422212370000200141106a410029008da6422214370000200141086a4100290085a642221a370000200141002900fda542221b3700002001412241c40010152201450d09200120002900003700222001413a6a2005290000370000200141326a20082900003700002001412a6a20092900003700002003420037030020024200370360200141c200200241e0006a1002200a200329030037030020022002290360370348200241206a200241c8006a41101084022011290300211c2013290300211d2015290300211e2017290300211f2002290320210b20011016412210132201450d0a200141206a20193b0000200141186a2012370000200141106a2014370000200141086a201a3700002001201b3700002001412241c40010152201450d0b200120002900003700222001413a6a2005290000370000200141326a20082900003700002001412a6a20092900003700002003420037030020024200370360200141c200200241e0006a1002200a20032903003703002002200229036037034841101013220a450d0c200a201d4200200b42005222111b221220167c2216370000200a201c420020111b20187c2016201254ad7c370008200a411041201015220a450d0d200a201e4200200b42015122111b370010200a41186a201f420020111b370000200241c8006a4110200a41201001200a1016200110160b411f10132201450d05200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10152201450d062001200029000037001f200141376a20052900003700002001412f6a2008290000370000200141276a200929000037000020034200370300200242003703602001413f200241e0006a10022013200329030037030020022002290360370320200241206a4110100320011016200041206a2100200c41606a220c0d000b0b200241e0006a41086a220042003703002002420037036041c8a5c200411a200241e0006a1002200241c8006a41086a200029030037030020022002290360370348200241003602282002420137032020022006360260200241e0006a200241206a1018024002402006450d00200641057421094100200241206a41086a28020022016b21052002280220210a200228022421082004210003400240200820056a411f4b0d00200141206a22032001490d0420084101742213200320032013491b22034100480d04024002402008450d00200a200820031015220a0d010c110b20031013220a450d100b200321080b200a20016a22032000290000370000200341186a200041186a290000370000200341106a200041106a290000370000200341086a200041086a290000370000200541606a2105200141206a2101200041206a2100200941606a22090d000b200241286a2001360200200220083602242002200a3602200c010b200241206a41086a2802002101200228022421082002280220210a0b200241c8006a4110200a2001100102402008450d00200a10160b02402007450d00200410160b20024180016a24000f0b1010000b411f41011014000b413f41011014000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b200341011014000ba7b70124027f027e097f017e157f027e077f027e0b7f027e187f037e167f027e137f017e277f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e067f067e097f017e230041e0056b22012400200141b0056a41086a22024200370300200142003703b00541a7a4c2004115200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f804024002400240200141f8046a411041acf1c300410041001000417f460d00200142103702ec022001200141f8046a3602e802200141c8026a200141e8026a10830202400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012903c80222034203510d0020012903d0022104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a00e802200141e8026a41086a41063a0000200141e8026a105a200142083703d802200141003602e002200141b0056a41086a22054200370300200142003703b00541e2a5c200411b200141b0056a1002200141f8046a41086a2005290300370300200120012903b0053703f804200141f8046a411041acf1c300410041001000417f460d0420014210370294042001200141f8046a36029004200141e8026a20014190046a101120012802e8022206450d0f20012802ec02210741082108200141f0026a2802004105742209450d050c140b20042000520d1f200141083a00e802200141e8026a41086a41043a0000200141e8026a105a200141b0056a41086a22404200370300200142003703b00541a1bdc200411f200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f804200141f8046a411041acf1c300410041001000417f460d01200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0820012903e80221000c020b20042000520d1e200141083a00e802200141e8026a41086a41023a0000200141e8026a105a200141b0056a41086a22024200370300200142003703b00541c8a5c200411a200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80441002141200141f8046a411041acf1c300410041001000417f460d0420014210370294042001200141f8046a36029004200141e8026a20014190046a101120012802e8022242450d0e200141f0026a280200214320012802ec0221410c050b42e40021000b200141b0056a41086a22404200370300200142003703b005419be8c200410d200141b0056a1002200141f8046a41086a22052040290300370300200120012903b0053703f8044200210e0240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0720012903e802210e0b2001200e20007c3703f002200142023703e80220404200370300200142003703b00541a7a4c2004115200141b0056a100220052040290300370300200120012903b0053703f80420014110360294042001200141f8046a36029004200141e8026a20014190046a108102200141e8026a41086a41053a0000200141083a00e802200141e8026a105a200141e0056a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012142410021430b200141b0056a41086a22024200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d05204320012802e8024f0d010c0d0b2043410a490d0c0b200141b0056a41086a22024200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d0720012802e80221020c010b410a21020b200141b0056a41086a220a4200370300200142003703b00541dfbdc200411e200141b0056a1002200141f8046a41086a200a290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d0820012802e802210a0c010b4114210a0b41acf1c3002160410021614100210b41acf1c300210920432002200a200a2002491b22624d0d160240204341144b0d00204341014d0d162043417e6a2140204220434105746a41406a210541022102034020432040490d0620052002109502200541606a2105200241016a21022040417f6a2240417f470d000c170b0b20434101762264ad2200421b88a70d132000420586a72202417f4c0d13410121654101216602402002450d00200210132266450d0a0b41602167204241606a2168204241a07f6a21694100216a4104216b417f216c4203216d4220216e4103216f41022170417d21714105217241082173411821744110217541202176417e217741742178416421794140217a4109217b410a217c4104217d4100217e4100217f2043218001410221330c0a0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b20402043101c000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b410121020c070b10850220410d0b0c0c0b4100210a41002105410021022006210b0340200141e8026a200b108f02024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101522080d010c060b200c10132208450d050b200d21050b200b41206a210b2008200a6a200141e8026a41880110f6021a200a4188016a210a200241016a2102200941606a22090d000b200141e0026a2002360200200120083602d802200120053602dc022007450d010b200610160b4200210e2001420037028404200141b894c100360280042002450d01418801210f200820024188016c6a211020014184036a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a411f211b4117211c4100211d413f211e4137211f412f21204127212141202122200141b0056a41206a212342082124420121254114212620014190046a41146a21274106212841e80221294138212a4130212b4128212c4230212d4220212e4104212f4160213041987d213120082132410021330c020b200c41081014000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141f0036a41086a20014180046a41086a28020036020020012001290380043703f003200141b0056a41086a2202200e3703002001200e3703b00541c8a5c200411a200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f804024002400240200141f8046a411041acf1c300410041001000417f460d0020014210370294042001200141f8046a36029004200141e8026a20014190046a101120012802e802223d450d0220012802ec02213e4105213f200141f0026a28020041057422020d010c230b4101213d4100213e4105213f41004105742202450d220b203d20026a214420014184036a21454120214641082147417f21484102214941a808214a4118214b4110214c411f214d4117214e4100214f413f215041372151412f215241272153420021544208215542012156200141a4046a21574106215841987d21594160215a4101215b203d215c410121330c020b41b6e7c20041331029000b0240024002400240024002400240024002400240024002400240024020330e09000102030405060708080b20322d0060450d35203220126a20136a213420012802800422352136200128028404223721380c100b205c225d20466a215c200141f0036a215e20012802f403215f0c100b024002400240024002400240024002400240208001228101206c6a228001450d00200141a8026a20422080012072746a108602200141a8026a20746a2903002103200141a8026a20736a290300210420012903b802210020012903a802213a20014188026a2042208101207274220a6a207a6a1086022000203a7c223a200129039802223b2001290388027c22820154200320047c203a200054ad7c220020014188026a20746a29030020014188026a20736a2903007c208201203b54ad7c22035420002003511b450d012069200a6a210203402080012065460d03200141a8016a200220766a108602200141a8016a20746a2903002103200141a8016a20736a290300210420012903b801210020012903a801213a20014188016a2002108602200220676a2102208001206c6a2180012000203a7c223a200129039801223b2001290388017c22820154200320047c203a200054ad7c220020014188016a20746a29030020014188016a20736a2903007c208201203b54ad7c22035420002003511b0d000c040b0b4101210b4100218001207e207f470d070c060b20810120776a210b2069200a6a210241002180014100210a0340200b200a460d05200141e8016a200220766a108602200141e8016a20746a2903002103200141e8016a20736a290300210420012903f801210020012903e801213a200141c8016a2002108602200220676a2102200a20656a210a2000203a7c223a20012903d801223b20012903c8017c2282015a200320047c203a200054ad7c2200200141c8016a20746a290300200141c8016a20736a2903007c208201203b54ad7c22035a20002003511b0d000b200a20656a210b208101200a6b206c6a228001450d030c020b41002180010b208101208001490d0c20810120434b0d0f02402081012080016b220b2065762209450d002068200a6a210220422080012072746a210a0340200141d0046a20746a220c200a20746a220d290000370300200141d0046a20756a228301200a20756a2206290000370300200141d0046a20736a2207200a20736a223c2900003703002001200a2900003703d004200220736a2284012900002100200220756a228501290000210320022900002104200d200220746a22860129000037000020062003370000203c2000370000200a2004370000200220012903d0043700002084012007290300370000208501208301290300370000208601200c290300370000200220676a2102200a20766a210a2009206c6a22090d000b0b208001450d010b200b207b4b0d0020810120434b0d0c2081012080016b210b208001206c6a210220682080012072746a210a03402081012002490d0e200a200b20656a220b1095022002206c6a210902402002450d00200a20676a210a20092102200b207c490d010b0b200920656a218001207e207f470d030c020b207e207f460d010c020b208101210b207e207f470d010b207e20656a2202207e490d37207e206574220a20022002200a491b2202ad206d862200206e88a70d372000a7220a206a480d3702400240207e450d00207d207e206f74200a1015227d0d010c090b200a1013227d450d080b2002217e0b207d207f206f746a2202200b3602042002208001360200207f20656a228301217f2083012070490d27410321390c1d0b200141e8026a2090016a209b012090016a290000370300200141e8026a2091016a209b012091016a290000370300200141e8026a2092016a209b012092016a2900003703002001209b012900003703e802209b012093016a219b01208e01219c01208f01219d010c0f0b200128028004220228020021b001200228020421b101410521390c1d0b024020d80122d90120be016a2202450d0020d90120d0016a21da01209e01200220c401746a21db0120012802e802280200280200220228020022dc0121dd01200228020422de0121df010c0f0b410121e201410021d80120d60120d701460d140c150b20870220c5016a210a2087022f0106220c20c4017421024100210b024002400240024003402002450d01208502200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b208902450d0120890220be016a218902208702200c20c201746a20c6016a280200218702410621330c0b0b20870220cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20810220ba016a220b208502208602208c02200354208b02200054208b022000511b220a1b220229000037000020810220c8016a200220c7016a29000037000020810220ca016a200220c9016a29000037000020810220cb016a200220c5016a290000370000208202208602200a1b21820220fe01208502208402200a1b2284024f0d0e200b21810220b901218d0220b901208202490d150c100b208f0220c5016a210a208f022f0106220c20c4017421024100210b024002400240024003402002450d01208d02200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b209102450d0120910220be016a219102208f02200c20c201746a20c6016a280200218f02410721330c0b0b208f0220cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b208402208002208d022094022003542093022000542093022000511b220a1b220229000037000020840220c7016a200220c7016a29000037000020840220c9016a200220c9016a29000037000020840220c5016a200220c5016a290000370000208d02208d0220406a200a1b218d0220840220406a21840220800220406a208002200a1b2280022081024f0d10208202208d024b0d150c0e0b20b70222b8022097026a21b70220012802800422b90228020421ba0220b90221bb020c100b200a41041014000b208001208101101c000b208101208001417f6a22024f0d010b2002208101101c000b20810120431039000b410121020c280b410121020c270b410121020c260b410021390c0c0b410221390c0c0b410421390c0d0b410621390c0e0b410d21390c0e0b410e21390c0e0b410e21390c0e0b410e21390c0e0b410f21390c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20d60120b8016a220220d601490d7e20d60120b80174220a20022002200a491b2202ad20bf0186220020c00188a70d7e2000a7220a20bc01480d7e0240024020d601450d0020d50120d60120c10174200a101522d5010d010c050b200a101322d501450d040b200221d601410121020c670b20d50120d70120c101746a220220e201360204200220d80136020020d70120b8016a22f60121d70120f60120c201490d04410a21390c4d0b20840220ba016a21850220820220ba016a21860220830228020028020022022802002287022188022002280204228902218a020c3b0b208e022802002802002202280200228f0221900220022802042291022192020c3b0b200a41041014000b02400240024002400240024002400240024002400240024002400240024002400240024002400240024020390e110001020304050708090a0d0e1013141819190b203620146a210a20362f0106220c20157421024100210b02400240024003402002450d012034200a202210f8022209450d02200220306a2102200b20136a210b200a20226a210a200920164a0d000b200b20166a210c0b2038450d01203820166a21382036200c2017746a20186a2802002136410021390c520b2036200b2028746a2031470d480b200141d0046a20196a203420196a220a290000370300200141d0046a201a6a2034201a6a220b290000370300200141d0046a20146a203420146a2209290000370300200120342900003703d00420014188056a20196a220c200a29000037030020014188056a201a6a2239200b29000037030020014188056a20146a220d20092900003703002001203429000037038805201b10132202450d222002201c6a201d2900da9e423700002002201a6a201d2900d39e42370000200220146a201d2900cb9e423700002002201d2900c39e423700002002201b201e10152202450d232002203429000037001f2002201f6a200a290000370000200220206a200b290000370000200220216a2009290000370000200141b0056a20146a220a200e3703002001200e3703b0052002201e200141b0056a1002200141f8046a20146a200a290300370300200120012903b0053703f804200141b0056a200141f8046a201a10840220232903002103200141b0056a201a6a2903002104200141b0056a20196a2903002100200a290300213a20012903b005213b20021016200141e8026a20196a201d360200200141e8026a201a6a2024370300201120196a200c2903003700002011201a6a2039290300370000201120146a200d290300370000201120012903880537000020012000203a7c223a200e203b20255122021b3703e8022001200320047c203a200054ad7c200e20021b3703f00220014190046a20014180046a200141d0046a200141e8026a109602024020014190046a201a6a2802002202450d002027280200450d00200210160b200128028004213520012802840421370c460b203520146a210a20352f0106220c20157421024100210b0240024003402002450d012034200a202210f8022209450d02200220306a2102200b20136a210b200a20226a210a200920164a0d000b200b20166a210c0b2037450d8a01203720166a21372035200c2017746a20186a2802002135410121390c510b203520296a200b2028746a2202450d8901200141e8026a20196a220c2032202a6a290000370300200141e8026a201a6a220d2032202b6a290000370300200141e8026a20146a22062032202c6a290000370300200120322900203703e802203220146a2903002103203220196a29030021042032290300213a20322903102100200220196a210b2002201a6a210902400240024002402002280218220a200220266a280200470d00200a20136a2202200a490d9001200a2013742207200220022007491b2207ad202d7e223b202e88a70d9001203ba7223c201d480d9001200a450d012009280200200a202b6c203c101522020d020c270b200928020021020c020b203c10132202450d250b200920023602002009202f6a2007360200200b280200210a0b2002200a202b6c6a220220012903e8023703102002200420037c2000203a7c2203200054ad7c370308200220033703002002202c6a200c290300370300200220226a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c89010b205e280200220c20476a210a200c2f0106220d203f7421024100210b024002400240024003402002450d01205d200a204610f8022209450d022002205a6a2102200b205b6a210b200a20466a210a200920484a0d000b200b20486a210d0b205f450d01205f20486a215f200c200d2049746a204a6a215e410221390c550b200c200b2058746a2059470d010b200141d0046a204b6a205d204b6a220a290000370300200141d0046a204c6a205d204c6a220b290000370300200141d0046a20476a205d20476a22092900003703002001205d2900003703d00420014188056a204b6a220c200a29000037030020014188056a204c6a220d200b29000037030020014188056a20476a223320092900003703002001205d29000037038805204d10132202450d1f2002204e6a204f2900da9e423700002002204c6a204f2900d39e42370000200220476a204f2900cb9e423700002002204f2900c39e423700002002204d205010152202450d202002205d29000037001f200220516a200a290000370000200220526a200b290000370000200220536a2009290000370000200141b0056a20476a220a2054370300200120543703b00520022050200141b0056a1002200141f8046a20476a200a290300370300200120012903b0053703f804200141b0056a200141f8046a204c108402200141b0056a20466a2903002103200141b0056a204c6a2903002104200141b0056a204b6a2903002100200a290300213a20012903b005213b20021016200141e8026a204b6a204f360200200141e8026a204c6a20553703002045204b6a200c2903003700002045204c6a200d290300370000204520476a2033290300370000204520012903880537000020012000203a7c223a2054203b20565122021b3703e8022001200320047c203a200054ad7c205420021b3703f00220014190046a200141f0036a200141d0046a200141e8026a10960220014190046a204c6a2802002202450d002057280200450d00200210160b205c2044470d2b0c7f0b02400240024002400240207d208301223c206c6a228301206f746a2202280200450d00207d203c206f746a220c20786a28020022092002280204220a4d0d004102217f203c41024d0d8001207d203c20716a2202206f746a280204220b200a20096a4d0d014103217f203c41034d0d8001200c20796a280200200b20096a4d0d010c040b203c206f490d012002280204210a207d203c20716a2202206f746a280204210b0b200b200a490d010b203c20776a21020b203c200220656a2287014d0d1a203c20024d0d1b207d2002206f746a2285012802042288012085012802006a2202207d208701206f746a228601280200228101490d1c200220434b0d1d208501206b6a21890120422081012072746a2207208601280204228401207274220a6a21092002207274210b0240024002400240024020022081016b220d2084016b22022084014f0d00206620092002207274220a10f6022206200a6a210c2084012065480d0120022065480d012068200b6a210b200921020340200141286a200c20676a2209108602200141286a20736a2903002103200141286a20746a29030021042001290328213a20012903382100200141086a200220676a220d108602200b200d20092000203a7c223a2001290318223b20012903087c22820154200420037c203a200054ad7c2200200141086a20746a290300200141086a20736a2903007c208201203b54ad7c22035420002003511b227f1b220a290000370000200b20746a200a20746a290000370000200b20756a200a20756a290000370000200b20736a200a20736a290000370000200c2009207f1b210c2007200d2002207f1b22024f0d04200b20676a210b2006210a2006200c490d000c050b0b20662007200a10f6022202200a6a210c2084012065480d01200d2084014c0d012042200b6a217f2002210a200721020340200141e8006a2009108602200141e8006a20736a2903002103200141e8006a20746a29030021042001290368213a20012903782100200141c8006a200a10860220022009200a2000203a7c223a2001290358223b20012903487c22820154200420037c203a200054ad7c2200200141c8006a20746a290300200141c8006a20736a2903007c208201203b54ad7c22035420002003511b220d1b220b290000370000200220746a200b20746a290000370000200220756a200b20756a290000370000200220736a200b20736a290000370000200a200a20766a200d1b210a200220766a2102200920766a2009200d1b2209207f4f0d04200c200a4b0d000c040b0b200921020c010b200721020b2066210a0b2002200a200c200a6b20677110f6021a2089012088012084016a36020020850120810136020020860120860120736a208701206c73203c6a206f7410f7021a208301217f20830120654b0d460c7c0b203c217f2080010d2b0c7c0b209c012092016a210a209c012f0106220c208c017421024100210b024002400240024003402002450d01200141e8026a200a20930110f8022209450d0220022099016a2102200b209a016a210b200a2093016a210a20092094014a0d000b200b2094016a210c0b209d01450d01209d012094016a219d01209c01200c209501746a2096016a280200219c01410421390c550b209c01200b209701746a209801470d010b209b01208d01470d2c0c7f0b200141b0056a41186a2202200141e8026a41186a290300370300200141b0056a41106a220a200141e8026a41106a290300370300200141b0056a41086a220b200141e8026a41086a290300370300200120012903e8023703b00520014188056a41186a2209200229030037030020014188056a41106a2202200a29030037030020014188056a41086a220a200b290300370300200120012903b00537038805200141d0046a41186a220b2009290300370300200141d0046a41106a22092002290300370300200141d0046a41086a2202200a29030037030020012001290388053703d00441201013229e01450d26209e0120012903d004370000209e0141186a200b290300370000209e0141106a2009290300370000209e0141086a2002290300370000209b01208d01460d014101219f01411821a001411021a101410821a201412021a301410521a401417f21a501410221a60141a80821a701410621a80141987d21a901420521aa01422021ab01410021ac01416021ad01410121ae01410121af01410421330c380b200141e8026a20a0016a22b201209b0120a0016a290000370300200141e8026a20a1016a22b301209b0120a1016a290000370300200141e8026a20a2016a22b401209b0120a2016a2900003703002001209b012900003703e802209b0120a3016a219b0120b00121b50120b10121b6010c630b410121ae01410121af010c710b20dd0120c5016a210a20dd012f0106220c20c4017421024100210b024002400240024003402002450d0120db01200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20df01450d0120df0120be016a21df0120dd01200c20c201746a20c6016a28020021dd01410621390c530b20dd0120cd016a200b20cc01746a2202450d00200220c5016a29030021e001200229030021e1012002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020e0017c2002290300220020e1017c22e101200054ad7c21e001200220ce016a2102200a20cf016a220a0d000c020b0b420021e101420021e0010b209e0120da0120c401746a21e30120dc0121e40120de0121e5010c420b20e40120c5016a210a20e4012f0106220c20c4017421024100210b024002400240024003402002450d0120e301200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20e501450d0120e50120be016a21e50120e401200c20c201746a20c6016a28020021e401410721390c540b20e40120cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20e10120035420e00120005420e0012000511b450d42410821390c520b20da0122d801450d0120d80120be016a21da01209e0120d80120c401746a21e60120dc0121e70120de0121e8010c600b20da0122d801450d0120d80120be016a21da01209e0120d80120c401746a21ee0120dc0121ef0120de0121f0010c600b410021d8010c610b410021d80120d90121e2010c620b024002400240024020d50120f60122f70120be016a22f60120c101746a2202280200450d0020d50120f70120c101746a220c20d1016a28020022092002280204220a4d0d00410221d70120f70141024d0d0b20d50120f70120c3016a220220c101746a280204220b200a20096a4d0d01410321d70120f70141034d0d0b200c20d2016a280200200b20096a4d0d010c0c0b20f70120c101490d012002280204210a20d50120f70120c3016a220220c101746a280204210b0b200b200a490d010b20f70120d0016a21020b20f701200220b8016a22f8014d0d1820f70120024d0d1920d501200220c101746a22f90128020422fa0120f9012802006a220220d50120f80120c101746a22fb0128020022fc01490d1a200220ae014b0d1b20f90120bd016a21fd01209e0120fc0120c401746a22fe0120fb0128020422ff0120c40174220a6a218002209e01200220c401746a218102200220fc016b220b20ff016b220220ff014f0d0120b901208002200220c40174220a10f602200a6a21820220ff0120b801480d03200220b801480d0320012802e802218302208002218402410221020c690b20880220c5016a210a2088022f0106220c20c4017421024100210b02400240024003402002450d01208602200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b208a02450d01208a0220be016a218a02208802200c20c201746a20c6016a280200218802410b21390c530b20880220cd016a200b20cc01746a2202450d00200220c5016a290300218b022002290300218c022002280218220a450d2520022802102102200a20ce016c210a0340200220c5016a290300208b027c20022903002200208c027c228c02200054ad7c218b02200220ce016a2102200a20cf016a220a0d000c280b0b4200218c024200218b020c250b20b90120fe01200a10f6022202200a6a21820220ff0120b801480d02200b20ff014c0d0220012802e802218e022002218d0220fe01218402410321020c670b20900220c5016a210a2090022f0106220c20c4017421024100210b02400240024003402002450d01208002200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b209202450d0120920220be016a219202209002200c20c201746a20c6016a280200219002410c21390c530b20900220cd016a200b20cc01746a2202450d00200220c5016a29030021930220022903002194022002280218220a450d2620022802102102200a20ce016c210a0340200220c5016a2903002093027c200229030022002094027c229402200054ad7c219302200220ce016a2102200a20cf016a220a0d000c290b0b420021940242002193020c260b2080022184020c3d0b20fe01218402410d21390c510b20b901218d02410e21390c510b208402208d02208202208d026b20ba017110f6021a20fd0120fa0120ff016a36020020f90120fc0136020020fb0120fb0120c5016a20f80120be017320f7016a20c1017410f7021a20f60121d70120f60120b8014b0d370b20d8010d1b0c010b20f70121d70120d8010d1b0b024020d601450d0020d50110160b20b701450d6120b90110160c610b20bb0228020022bc022f0106220c2095027421024100210b20bc022098026a220d210a0240024003402002450d0120b802200a20970210f8022209450d02200220b4026a2102200b209c026a210b200a2097026a210a20092099024a0d000b200b2099026a210c0b20ba02450d0420ba022099026a21ba0220bc02200c209a02746a209b026a21bb02410f21390c4e0b20b90220b9022802082099026a3602080240024020ba02450d0020bc02209e026a200b209d02746a210920bc02200b209502746a2098026a210c20bc02200b209a02746a20a9026a2802002102024020ba02209c02460d00209c0220ba026b210a034020022802a8082102200a209c026a220a0d000b0b200220aa0220022f01061b22bc02290008210020bc0220a2026a290000210320bc0220a3026a290000210420bc022097026a290000213a20bc022098026a20bc0220a4026a20bc022f010622022095027420b4026a10f7021a20bc0220b0026a290300213b20bc022903880321820120bc0220ad026a29030021bd0220bc0220ac026a29030021be0220bc0220ab026a29030021bf0220bc022903e80221c00220bc0220b1026a29030021c10220bc0220af026a29030021c20220bc02209e026a20bc0220b2026a2002209d027420b5026a10f7021a20bc0220022099026a3b0106200c20a3026a203a370000200c2004370010200c2003370008200c2000370000200920a3026a20c20237030020092098026a20c102370300200920c002370300200920a6026a20bf02370200200920a5026a20be02370200200920a4026a20bd023702002009208201370220200920a2026a220229030021002002203b3703002000a721c302200020b60288a721c40220bc022f010620a0024d0d010c030b200d200b209502746a200d200b209c026a220a209502746a200b20990273220920bc022f01066a2095027410f7021a20bc02209e026a220c200b209d02746a2202209f026a28020021c402200228021021c3022002200c200a209d02746a200920bc022f01066a209d027410f7021a20bc0220bc022f01062099026a3b010620bc022f010620a0024b0d020b410021c502411021390c4e0b20bc022802002209450d000240024020bc022f01042202450d0020022099026a210b4101213c0c010b4100210b4100213c20092f0106450d110b0240024002400240024002400240024002402009209b026a2206200b209c026a220c209a02742286016a228501280200220a2f0106220d2006200b209a027422c6026a220228020022072f01062284016a20a1024f0d0020c502209c026a21c5022085012802002284012f010621072002280200220d2f0106213c200141d0046a2098026a220a20092098026a228101200b209502746a22022098026a290000370300200141d0046a20a2026a228701200220a2026a290000370300200141d0046a20a3026a228801200220a3026a290000370300200120022900003703d0042002208101200c209502746a200b2099027322810120092f01066a2095027410f7021a200d2098026a228901203c209502746a220220a3026a208801290300370000200220a2026a20870129030037000020022098026a200a290300370000200220012903d004370000208901203c209c026a2202209502746a2084012098026a20072095027410f6021a200141e8026a2098026a2287012009209e026a228801200b209d02746a220a2098026a290300370300200141e8026a20a2026a228901200a20a2026a290300370300200141e8026a20a3026a22c702200a20a3026a290300370300200141e8026a2097026a22c802200a2097026a290300370300200141e8026a20a4026a22c902200a20a4026a290300370300200141e8026a20a5026a22ca02200a20a5026a290300370300200141e8026a20a6026a22cb02200a20a6026a2903003703002001200a2903003703e802200a208801200c209d02746a20810120092f01066a209d027410f7021a200d209e026a228101203c209d02746a220a20a6026a20cb02290300370300200a20a5026a20ca02290300370300200a20a4026a20c902290300370300200a2097026a20c802290300370300200a20a3026a20c702290300370300200a20a2026a208901290300370300200a2098026a208701290300370300200a20012903e8023703002081012002209d02746a208401209e026a2007209d027410f6021a2085012006200b209a026a220a209a02746a20a7022086016b10f702210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920c6026a20a8026a210b0340200b280200220c200a3b0104200c2009360200200b20a0026a210b2006200a209c026a220a470d000b0b200920092f01062099026a3b0106200d2007200d2f01066a209c026a3b0106024020c502209a02490d00200d2002209a02746a209b026a208401209b026a2007209a027420a0026a10f6021a2002203c20076a209a026a4f0d002007209c026a210b200d203c209a02746a20a9026a210a0340200a280200220c20023b0104200c200d360200200a20a0026a210a2002209c026a2102200b2099026a220b0d000b0b208401101620092f01062202450d01200921bc022002209502490d3f0c090b203c450d0120072084012099026a220a209d02746a220220ab026a2903002100200220ac026a2903002103200220ad026a2903002104200220ae026a290300213a200220af026a290300213b200220b0026a290300218201200220b1026a29030021bd022002209e026a29030021be022007200a209502746a22022097026a29000021bf02200220a3026a29000021c002200220a2026a29000021c10220022098026a29000021c20220c502450d022007208401209a02746a209b026a280200220a20aa023602000c030b20b90220b90228020022022802a808220a36020020b90220b9022802042099026a360204200a20aa023602002002101620c3020d080c090b200a2097026a2900002100200a20a3026a2900002103200a20a2026a2900002104200a290008213a200a2098026a200a20a4026a200d2095027420b4026a10f7021a200a20ab026a290300213b200a20ac026a290300218201200a20ad026a29030021bd02200a20af026a29030021be02200a20b0026a29030021bf02200a20b1026a29030021c002200a2903880321c102200a2903e80221c202200a209e026a200a20b2026a200a2f0106209d027420b5026a10f7021a20c502450d02200a2802a8082107200a209b026a220c200a20a9026a200d209a027410f7021a200720aa02360200200d450d03410021330340200c280200220620333b01042006200a360200200c20a0026a210c200d2033209c026a2233470d000c040b0b4100210a0b200720072f01062099026a3b01062009200b209502746a22022097026a220c29000021cc02200c20bf02370000200220a3026a220c29000021bf02200c20c002370000200220a2026a220c29000021c002200c20c10237000020022098026a220229000021c102200220c2023700002009200b209d02746a220220af026a220b29030021c202200b203b370300200220b0026a220b290300213b200b208201370300200220b1026a220b290300218201200b20bd023703002002209e026a220b29030021bd02200b20be02370300200220ab026a220b29020021be02200b2000370200200220ac026a220b2902002100200b2003370200200220ad026a220b2902002103200b2004370200200220ae026a220229020021042002203a370200208501280200210b20c502450d02200a450d16200b20a4026a200b2098026a200b2f010622022095027410f7021a200b2097026a20cc02370000200b20a3026a20bf02370000200b20a2026a20c002370000200b20c102370008200b20b2026a200b209e026a2002209d027410f7021a200b20ab026a20be02370300200b20ac026a2000370300200b20ad026a2003370300200b20ae026a2004370300200b20af026a20c202370300200b20b0026a203b370300200b20b1026a208201370300200b20bd023703e802200b20a9026a200b209b026a2202200b2f0106209a027420a0026a10f7021a200b200a3602a808200b200b2f0106209c026a220a3b0106200a20b30271209c026a210c4100210a034020022802002209200a3b01042009200b360200200220a0026a2102200c200a209c026a220a470d000c050b0b410021070b200a209d026a220a200a2f01002099026a3b01002009200b209502746a220a2097026a220c29000021cc02200c2000370000200a20a3026a220c2900002100200c2003370000200a20a2026a220c2900002103200c2004370000200a2098026a220a2900002104200a203a3700002009200b209d02746a220a20af026a220b290300213a200b20be02370300200a20b0026a220b29030021be02200b20bf02370300200a20b1026a220b29030021bf02200b20c002370300200a209e026a220b29030021c002200b20c202370300200a20ab026a220b29020021c202200b203b370200200a20ac026a220b290200213b200b208201370200200a20ad026a220b290200218201200b20bd02370200200a20ae026a220a29020021bd02200a20c1023702002002280200210220c502450d012007450d15200220022f0106220b209502746a220a2097026a20cc02370000200a20a3026a2000370000200a20a2026a2003370000200a2098026a20043700002002200b209d02746a220a20ab026a20c202370300200a20ac026a203b370300200a20ad026a208201370300200a20ae026a20bd02370300200a20af026a203a370300200a20b0026a20be02370300200a20b1026a20bf02370300200a209e026a20c0023703002002200b209c026a220a209a02746a209b026a220b2007360200200220022f0106209c026a3b0106200b280200220b200a3b0104200b200236020020c3020d030c040b200b20a4026a200b2098026a200b2f01062095027410f7021a200b2097026a20cc02370000200b20a3026a20bf02370000200b20a2026a20c002370000200b20c102370008200b20b2026a200b209e026a200b2f0106209d027410f7021a200b20ab026a20be02370300200b20ac026a2000370300200b20ad026a2003370300200b200437038803200b20af026a20c202370300200b20b0026a203b370300200b20b1026a208201370300200b20bd023703e802200b200b2f0106209c026a3b010620c3020d020c030b200220022f0106220b209502746a220a2097026a20cc02370000200a20a3026a2000370000200a20a2026a2003370000200a2098026a20043700002002200b209d02746a220a20ab026a20c202370300200a20ac026a203b370300200a20ad026a208201370300200a20ae026a20bd02370300200a20b0026a20be02370300200a20b1026a20bf02370300200a209e026a20c002370300200a20af026a203a370300200220022f0106209c026a3b01060b20c302450d010b20c402450d0020c30210160b20b702209602470d1c0c5d0b4180d6c200208701203c10a801000b4180d6c2002002203c10a801000b2081012002101c000b200220431039000b411f41011014000b413f41011014000b411f41011014000b413f41011014000b203c41081014000b4180d6c20020f80120f70110a801000b4180d6c200200220f70110a801000b20fc012002101c000b200220ae011039000b41b8c5c3001038000b412041011014000b41bcf5c3001038000b41bcf5c3001038000b410121330c0b0b410221330c0b0b410321330c0b0b410521330c0c0b410521330c0c0b410621330c0c0b410621330c0c0b410621330c0c0b410721330c0c0b410721330c0c0b410721330c0c0b410821330c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b410121390c0b0b410121390c0b0b410321390c0c0b410721390c0e0b410921390c100b410a21390c100b410b21390c110b410c21390c120b410d21390c130b411021390c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20b50120a2016a210a20b5012f0106220c20a4017421024100210b024002400240024003402002450d01200141e8026a200a20a30110f8022209450d02200220ad016a2102200b209f016a210b200a20a3016a210a200920a5014a0d000b200b20a5016a210c0b20b601450d0120b60120a5016a21b60120b501200c20a601746a20a7016a28020021b501410021020c110b20b501200b20a801746a20a901470d010b209b01208d01470d070c1b0b200141b0056a20a0016a220220b201290300370300200141b0056a20a1016a220a20b301290300370300200141b0056a20a2016a220b20b401290300370300200120012903e8023703b005200141d0046a20a0016a22092002290300370300200141d0046a20a1016a2202200a290300370300200141d0046a20a2016a220a200b290300370300200120012903b0053703d00420014188056a20a0016a220b200929030037030020014188056a20a1016a2209200229030037030020014188056a20a2016a220c200a290300370300200120012903d00437038805024020af0120ae01470d0020ae01209f016a220220ae01490d3120ae01209f0174220a20022002200a491b22af01ad20aa0186220020ab0188a70d312000a7220220ac01480d31024020ae01450d00209e0120ae0120a4017420021015229e010d010c060b20021013229e01450d050b209e0120ae0120a401746a2202200129038805370000200220a0016a200b290300370000200220a1016a2009290300370000200220a2016a200c29030037000020ae01209f016a21ae01209b01208d01470d050c1a0b20e70120c5016a210a20e7012f0106220c20c4017421024100210b024002400240024003402002450d0120e601200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20e801450d0120e80120be016a21e80120e701200c20c201746a20c6016a28020021e701410121020c100b20e70120cd016a200b20cc01746a2202450d00200220c5016a29030021e901200229030021ea012002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020e9017c2002290300220020ea017c22ea01200054ad7c21e901200220ce016a2102200a20cf016a220a0d000c020b0b420021ea01420021e9010b209e0120da0120c401746a21eb0120dc0121ec0120de0121ed010c0b0b20ec0120c5016a210a20ec012f0106220c20c4017421024100210b024002400240024003402002450d0120eb01200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20ed01450d0120ed0120be016a21ed0120ec01200c20c201746a20c6016a28020021ec01410221020c0f0b20ec0120cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20ea0120035420e90120005420e9012000511b0d050c0d0b20ef0120c5016a210a20ef012f0106220c20c4017421024100210b024002400240024003402002450d0120ee01200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20f001450d0120f00120be016a21f00120ef01200c20c201746a20c6016a28020021ef01410321020c0e0b20ef0120cd016a200b20cc01746a2202450d00200220c5016a29030021f101200229030021f2012002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020f1017c2002290300220020f2017c22f201200054ad7c21f101200220ce016a2102200a20cf016a220a0d000c020b0b420021f201420021f1010b209e0120da0120c401746a21f30120dc0121f40120de0121f5010c0a0b20f40120c5016a210a20f4012f0106220c20c4017421024100210b024002400240024003402002450d0120f301200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20f501450d0120f50120be016a21f50120f401200c20c201746a20c6016a28020021f401410421020c0d0b20f40120cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20f20120035a20f10120005a20f1012000511b0d0420d90120d8016b21e20120d8010d0c0c0d0b200241011014000b41042133410121020c280b410521390c020b410821390c020b410921390c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20d90120d801490d0220d90120ae014b0d05024020d90120d8016b22e20120b80176220a450d00209e0120d80120c401746a21020340200141d0046a20c7016a220b200220c7016a2209290000370300200141d0046a20c9016a220c200220c9016a220d290000370300200141d0046a20c5016a2206200220c5016a2207290000370300200120022900003703d00420db0120c5016a223c290000210020db0120c9016a228401290000210320db012900002104200920db0120c7016a228501290000370000200d2003370000200720003700002002200437000020db0120012903d004370000203c2006290300370000208401200c290300370000208501200b29030037000020db0120ba016a21db01200220406a2102200a20be016a220a0d000b0b20d801450d010b20e20120d3014b0d0020d90120ae014b0d0220d90120d8016b21e20120d80120be016a210220bb0120d80120c401746a210a034020d9012002490d04200a20e20120b8016a22e201200141e8026a109702200220be016a210b02402002450d00200a20ba016a210a200b210220e20120d401490d010b0b200b20b8016a21d80120d60120d701460d060c070b20d60120d701470d04410021020c070b20d80120d901101c000b20d90120d801417f6a22024f0d010b200220d901101c000b20d90120ae011039000b410121020c020b410021020c010b410121020c000b0b0240208a01450d00208b0110160b20ae0120634d0d01200120014180046a3602b0052001200141b0056a3602e802024020ae0141144b0d0020ae0141014d0d0120ae01417e6a2102209e0120ae014105746a41406a210a4102210b034020ae012002490d04200a200b200141e8026a109702200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20ae0141017622b701ad2200421b88a70d142000420586a72240417f4c0d14410121b801410121b90102402040450d002040101322b901450d040b416021ba01209e0141606a21bb01410021bc01410421bd01417f21be01420321bf01422021c001410321c101410221c201417d21c301410521c401410821c50141a80821c601411821c701417821c801411021c901417021ca01416821cb0141202140410621cc0141e80221cd01413021ce01415021cf01417e21d001417421d101416421d201410921d301410a21d401410421d501410021d601410021d70120ae0121d801410521330c040b20ae0120636b2202450d004105219502209e0120024105746a21960241202197024108219802417f2199024102219a0241a808219b024101219c024106219d0241e802219e024114219f02410421a002410b21a102411021a202411821a302412821a402413021a502413821a602412c21a70241b00821a80241ac0821a902410021aa0241a00321ab0241980321ac0241900321ad0241880321ae0241800321af0241f80221b00241f00221b10241a80321b20241ffff0321b302416021b402414021b502422021b602209e0121b702410821330c040b20af01450d09209e0110160c090b200220ae01101c000b204041011014000b410121020c0e0b410121020c0d0b2080010d010b0240207e450d00207d10160b2064450d0e206610160c0e0b41022133410121020c0a0b0240203e450d00203d10160b20012802f8032102200141b0056a41086a220a4200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a200a290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d04200220012802e802470d010c030b2002410a460d020b200141f0036a41086a2802002102200141b0056a41086a220a4200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a200a290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d05200220012802e8024b0d010c030b2002410a4d0d020b200141b0056a41086a22024200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d0620012802e80221630c010b410a21630b200141f0036a41086a28020021022001200141f0036a36028004200220634d0d01200141b0056a41086a22024200370300200142003703b00541c8a5c200411a200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f8044100218a0102400240200141f8046a411041acf1c300410041001000417f460d00200142103702b4052001200141f8046a3602b005200141e8026a200141b0056a101120012802e802228b01450d0820012802ec02218a014105218c01200141f0026a28020041057422020d010c020b4101218b014105218c0141004105742202450d010b208b0120026a218d012001280280042202280200218e012002280204218f014118219001411021910141082192014120219301417f219401410221950141a808219601410621970141987d21980141602199014101219a01208b01219b01410321330c070b208a01450d00208b0110160b200141d8026a200141f0036a4101109102200141f8036a280200210b20012802f00321400240024020012802f40322b801450d0020b801210a20402102034020022802a8082102200a417f6a220a0d000b0340204020402f01064102746a41a8086a280200214020b801417f6a22b8010d000c020b0b204021020b200141ec046a20402f0106360200410021b801200141d0046a41186a4100360200200141e4046a20403602002001200b3602f004200141003602e004200142003703d804200120023602d404200141003602d004200141e8026a200141d0046a109802024002400240024002400240024002402001280298032202450d00200141b0056a41086a2240200141a4036a290200370300200141b0056a41106a22b801200141ac036a290200370300200141b0056a41186a220a200141b4036a290200370300200141b0056a41206a220b200141bc036a290200370300200141b0056a41286a22ba01200141c4036a2802003602002001200129029c033703b005200141e8026a41286a22be01290300210e200129038803210020be0120ba01280200360200200141e8026a41206a200b290300370300200141e8026a41186a200a290300370300200141e8026a41106a20b801290300370300200141e8026a41086a2040290300370300200120012903b0053703e802417f200141d0046a41206a280200224041016a22b80120b8012040491b22cf01ad22f101421a88a70d1020f101420686a72240417f4c0d102040450d01204010132267450d0b206721090c020b200141d0046a10920241082167410021cf01410821090c020b41082167410821090b20092000370300200920023602102009200e370308200941146a20012903e8023702002009411c6a200141e8026a41086a290300370200200941246a200141e8026a41106a22732903003702002009412c6a200141e8026a41186a2274290300370200200941346a200141e8026a41206a220b2903003702002009413c6a200141e8026a41286a22ba0128020036020020014188056a41206a22a301200141d0046a41206a28020036020020014188056a41186a200141d0046a41186a29030037030020014188056a41106a200141d0046a41106a29030037030020014188056a41086a200141d0046a41086a290300370300200120012903d00437038805200141e8026a20014188056a1098020240024020012802980322c501450d00200141e8026a41346a210220014198036a2175410221be0141c000210a410121b8010340200141b0056a41086a2240200241086a290200370300200141b0056a41106a22d601200241106a290200370300200141b0056a41186a220c200241186a290200370300200141b0056a41206a2239200241206a290200370300200141b0056a41286a22ce01200241286a280200360200200120022902003703b00520ba01290300210e200b290300210020ba0120ce01280200360200200b20392903003703002074200c290300370300207320d601290300370300200141e8026a41086a22d6012040290300370300200120012903b0053703e802024020b80120cf01470d0020b801417f20a301280200224041016a220920092040491b6a224020b801490d1220be012040204020be01491b22cf01ad42068622f101422088a70d1220f101a722404100480d120240024020b801450d002067200a2040101522670d010c070b204010132267450d060b206721090b2009200a6a2240200e37030820402000370300204041106a20c5013602002040413c6a20ba01280200360200204041346a200b2903003702002040412c6a2074290300370200204041246a20732903003702002040411c6a20d601290300370200204041146a20012903e80237020020be0141026a21be01200a41c0006a210a20b80141016a21b801200141e8026a20014188056a109802207528020022c5010d000c020b0b410121b8010b20014188056a1092020b200141b0056a41086a22404200370300200142003703b00541c0bdc200411f200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0320012903e80221f1010c010b42e80721f1010b200141b0056a41086a22404200370300200142003703b0054193ecc2004115200141b0056a1002200141e8026a41086a2040290300370300200120012903b0053703e802200141003602b805200142013703b005200920b801200141b0056a10980120012802b4052140200141e8026a411020012802b005220220012802b805100102402040450d00200210160b024020b801450d0020b8014106742102200941106a214003400240204041046a280200450d00204028020010160b204041c0006a2140200241406a22020d000b0b024020cf01450d00206710160b4200210e200141b0056a41086a22404200370300200142003703b005419be8c200410d200141b0056a1002200141e8026a41086a22022040290300370300200120012903b0053703e802420021000240200141e8026a411041acf1c300410041001000417f460d00200142003703b005200141e8026a4110200141b0056a41084100100041016a41084d0d0320012903b00521000b20404200370300200142003703b00541a8ecc2004112200141b0056a100220022040290300370300200120012903b0053703e8022001200020f1017c22003703b005200141e8026a4110200141b0056a41081001200141e8026a41106a200037030020024201370300200141093a00e802200141e8026a105a20404200370300200142003703b005419be8c200410d200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f8040240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0420012903e802210e0b200141f8026a200e370300200141083a00e802200141e8026a41086a41073a0000200141e8026a105a2005450d11200810160c110b204041081014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b204041081014000b41b6e7c20041331029000b410121020c010b02402032200f6a22322010470d00410021020c010b41002133410121020c000b0b100f000b1010000b204320626b210b204221090b2009200b109302200141b0056a41086a22404200370300200142003703b0054185bdc200411c200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f80402400240200141f8046a41102060206120611000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0420012903e80221000c010b42e40021000b200141b0056a41086a22404200370300200142003703b005419be8c200410d200141b0056a1002200141f8046a41086a22052040290300370300200120012903b0053703f8044200210e0240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0420012903e802210e0b2001200e20007c3703f002200142013703e80220404200370300200142003703b00541a7a4c2004115200141b0056a100220052040290300370300200120012903b0053703f80420014110360294042001200141f8046a36029004200141e8026a20014190046a108102200141e8026a41086a41033a0000200141083a00e802200141e8026a105a2041450d010b20421016200141e0056a24000f0b200141e0056a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b9d0603027f067e047f230041e0016b22022400024020014102490d00200241a0016a200041206a2203108602200241a0016a41186a2903002104200241a0016a41086a290300210520022903b001210620022903a001210720024180016a2000108602200620077c220720022903900122082002290380017c22095a200420057c2007200654ad7c220620024180016a41186a29030020024180016a41086a2903007c2009200854ad7c22045a20062004511b0d002000290000210620002003290000370000200241c0016a41186a200041186a220a290000370300200241c0016a41106a220b200041106a220c290000370300200241c0016a41086a200041086a220d290000370300200d200341086a290000370000200c200341106a290000370000200a200341186a290000370000200220063703c0014101210d024020014103490d00200241e0006a200041c0006a2203108602200241e0006a41086a2903002104200241e0006a41186a29030021052002290360210720022903702106200241c0006a200241c0016a108602200620077c22072002290350220820022903407c22095a200520047c2007200654ad7c2206200241c0006a41186a290300200241c0006a41086a2903007c2009200854ad7c22045a20062004511b0d004102210a02400340200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200a41016a220c20014f0d01200241206a200341206a2203108602200241206a41086a2903002104200241206a41186a290300210520022903202107200229033021062002200241c0016a108602200a210d200c210a200620077c22072002290310220820022903007c22095a200520047c2007200654ad7c2206200241186a290300200241086a2903007c2009200854ad7c22045a20062004511b450d000c020b0b200a210d0b2000200d4105746a220320022903c001370000200341186a200241c0016a41186a290300370000200341106a200b290300370000200341086a200241c0016a41086a2903003700000b200241e0016a24000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541b894c100460d00200128020421060c010b41a80810132205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810f6021a20014100360204200120053602000b0c010b41a80841081014000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a2008412010f802220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410f7021a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410f7021a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081013221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810f6022108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410f6022108201d41e8026a200541a8066a200241067410f6022111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410f7021a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410f7021a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410f7021a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410f7021a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401013220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210f60221082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410f602216e200a20536a200d20526a200220107410f602216f200a20556a200d20546a200920566a220e200f7410f6022170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410f7021a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410f7021a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410f7021a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410f7021a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410f7021a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410f7021a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810132202450d03200241003b010620024100360200200241086a200441b0036a41d00810f60221092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410f7021a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410f7021a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410f7021a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081014000b41a80841081014000b41d80841081014000b410121020c000b0b20004100360210200441800c6a24000bb70c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b412010f802220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b201510f802220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a290000370000200320183703004101212120014103490d02410121224102212341052124417f212541a80821264178212741702128416821294160212a412021204106212b41e802212c4130212d4150212e4102212f41012121410221050c080b202f20226a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b202010f802220d450d022005202a6a2105200c20226a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352023746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b202010f802220d450d022005202a6a2105200c20226a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2023746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000202f21212030212f20302001490d020b200020214105746a220520032903003700002005201a6a201b2903003700002005201c6a201d2903003700002005201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f6021a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b200610162011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b200310162011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f6021a200241c0016a24000b13002000411136020420004190c1c2003602000b8b1605017f017e037f017e067f230041c0066b22042400200441e8036a200141f80110f6021a200441c0026a200441e8036a109b0202400240024020042802c0024101470d00200041086a20042902c4023702002000420137020020032802002200450d020c010b200441c0026a41086a2903002105200441a8016a200441c0026a41106a41980110f6021a20042005370308200441086a41086a200441a8016a41980110f6022106200441a8016a41086a22014200370300200442003703a8014190e6c2004117200441a8016a1002200441e8036a41086a2001290300370300200420042903a8013703e80341002101024002400240024002400240024002400240024002400240024002400240200441e8036a411041acf1c300410041001000417f460d00200441003602c002200441e8036a4110200441c0026a41044100100041016a41044d0d0120042802c00221010b41042107200120026a41808080024b0d0d410021080240200441106a410020042903084201511b2201450d002001450d000240024002402001109c02220520012903202209520d004103210720012002109d020d11411310132207450d0d2007410f6a410028009ee942360000200741086a4100290097e9423700002007410029008fe94237000020074113413310152207450d0e200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200441a8016a41086a220a4200370300200442003703a80120074133200441a8016a1002200441e8036a41086a200a290300370300200420042903a8013703e803200441e8036a411041acf1c300410041001000417f460d01200442003703c002200441e8036a4110200441c0026a41084100100041016a41084d0d0820042903c00242017c2105200710164113210a4113101322070d020c0f0b4101410220092005541b21070c100b42012105200710164113210a411310132207450d0d0b2007410f6a410028009ee942360000200741086a4100290097e9423700002007410029008fe9423700002007200a413310152207450d0d200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200441a8016a41086a22014200370300200442003703a80120074133200441a8016a1002200441e8036a41086a2001290300370300200420042903a8013703e803200420053703c002200441e8036a4110200441c0026a41081001200710160b024020032802002207450d00200341086a28020021012003280204210b4100210c024041f9e6c200411041acf1c300410041001000417f460d00200441003602e80341f9e6c2004110200441e8036a41044100100041016a41044d0d0520042802e803210c0b411410132208450d06200841106a41002800f9e742360000200841086a41002900f1e742370000200841002900e9e7423700002008411441281015220a450d07200a200c360014200441a8016a41086a22084200370300200442003703a801200a4118200441a8016a1002200441e8036a41086a2008290300370300200420042903a8013703e803200441003602c802200442013703c002200420013602a801200441a8016a200441c0026a1018024002400240024020042802c402220d20042802c802220c6b20014f0d00200c20016a2208200c490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0120042802c002200d200e101522080d020c0d0b20042802c00221080c020b200e10132208450d0b0b2004200e3602c402200420083602c002200e210d0b2008200c6a2007200110f6021a200441e8036a41102008200c20016a10010240200d450d00200810160b200a101641012108200b450d00200710160b20042903082105200441e8036a200441306a41f80010f6021a200441c0026a200441e8036a41086a41f00010f6021a200441a8016a41186a220a200641186a290300370300200441a8016a41106a220c200641106a290300370300200441a8016a41086a220d200641086a290300370300200420062903003703a80141002101024020054201520d0020044180066a41186a200a29030037030020044180066a41106a200c29030037030020044180066a41086a200d290300370300200420042903a80137038006410121010b200441a8016a200441c0026a41f00010f6021a200441a0066a41186a220620044180066a41186a220a290300370300200441a0066a41106a220c20044180066a41106a220d290300370300200441a0066a41086a220b20044180066a41086a220e29030037030020042004290380063703a006200441c0026a200441a8016a41f00010f6021a200441e0056a41186a220f2006290300370300200441e0056a41106a2206200c290300370300200441e0056a41086a220c200b290300370300200420042903a0063703e005200441e8036a200441c0026a41f00010f6021a200a200f290300370300200d2006290300370300200e200c290300370300200420042903e005370380064102210602402001450d00200441a0066a41186a20044180066a41186a290300370300200441a0066a41106a20044180066a41106a290300370300200441a0066a41086a20044180066a41086a29030037030020042004290380063703a006410121060b200441b1016a200441a0066a41086a290300370000200441b9016a200441a0066a41106a290300370000200441c1016a200441b8066a290300370000200420063a00a801200420042903a0063700a9012004200441e8036a200441a8016a1081012004280204210620042802002101200441003a00e803200420014100473a00e903200441e8036a105a0240024041f9e6c200411041acf1c300410041001000417f460d00200441003602e80341f9e6c2004110200441e8036a41044100100041016a41044d0d0320042802e80341016a210a0c010b4101210a0b200441a8016a41086a220c4200370300200442003703a8014190e6c2004117200441a8016a1002200441e8036a41086a200c290300370300200420042903a8013703e80302400240200441e8036a411041acf1c300410041001000417f460d00200441003602a801200441e8036a4110200441a8016a41044100100041016a41044d0d0420042802a801210c0c010b4100210c0b2004200a3602e80341f9e6c2004110200441e8036a41041001200441a8016a41086a220a4200370300200442003703a8014190e6c2004117200441a8016a1002200441e8036a41086a200a290300370300200420042903a8013703e8032004417f2002200c6a220a200a2002491b3602a801200441e8036a4110200441a8016a410410010240024002402001450d0002402006411b470d002001418dd5c200460d022001418dd5c200411b10f802450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c120b20004100360204200041086a200636020020004100360200200745200872450d010c110b200041046a4104360200200041013602002007452008720d100b200341046a280200450d0f200710160c0f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411441011014000b412841011014000b1010000b200e41011014000b411341011014000b413341011014000b200a41011014000b413341011014000b2000410136020020002007360204200441386a10d30120032802002200450d010b200341046a280200450d0020001016200441c0066a24000f0b200441c0066a24000bd31205017f037e017f037e097f230041e0036b2202240002400240200129037022034202520d00200220014188016a41f00010f6021a420021030c010b200241a8016a200141e4006a290000370300200241a0016a200141dc006a29000037030020024198016a200141d4006a29000037030020024190016a200141cc006a29000037030020024188016a200141c4006a290000370300200241f0006a41106a2001413c6a290000370300200241f0006a41086a200141346a2900003703002002200129002c37037020012903002105200241b0016a41106a200141f0006a220641106a290300370300200241b0016a41086a200641086a290300370300200220062903003703b00120014180016a2903002107200129037821084200210920024190026a41086a220642003703002002420037039002419be8c200410d20024190026a1002200241086a20062903003703002002200229039002370300420021040240024002400240024002400240024002400240024002402002411041acf1c300410041001000417f460d0020024200370390022002411020024190026a41084100100041016a41084d0d0120022903900221040b024020034201520d002008500d022004200720072004541b2203200320077d2008827d21090b20024190026a200910a102200241e4016a41026a220a20022d0092023a0000200241086a220b20024190026a41136a2900003703002002410d6a220620024190026a41186a220c290000370000200220022f0190023b01e4012002200229009b02370300200228009302210d200228009702210e200241c8016a410d6a220f2006290000370000200241c8016a41086a2210200b290300370300200220022903003703c80120024190026a41206a200141086a220641206a280200360200200c200641186a29020037030020024190026a41106a200641106a29020037030020024190026a41086a220c200641086a2902003703002002200629020037039002200220024190026a10412002418c026a41026a221120022d00033a0000200241c0036a41086a2212200241146a290200370300200241c0036a41106a2002411c6a290200370300200220022f00013b018c0220022002410c6a2902003703c003200b28020021062002280204210b024020022d00004101470d002000200b36020420004101360200200041086a200636020020014188016a10d301200241e0036a24000f0b200241e8016a41136a2012290300370000200241e8016a41186a200241c0036a410d6a290000370000200220022f018c023b01e801200220063600ef012002200b3600eb01200220022903c0033700f301200220112d00003a00ea012002200537039002200c20014188016a41f00010f6022111200241a7036a200e360000200241a3036a200d36000020024190026a4188016a200241b0016a41106a29030037030020024190036a2201200241b0016a41086a290300370300200241a2036a200a2d00003a0000200241ab036a20022903c801370000200241b3036a2010290300370000200241b8036a200f290000370000200220022903b00137038803200220022f01e4013b01a003200241003602082002420137030020024190026a200210b1012011200210b0010240024002400240024002402002290388034201520d0020012903002203420c882204420120044201561b22044200510d0820024198036a290300200480210420022802042206200241086a28020022016b41024f0d01200141026a220b2001490d0e20064101742201200b200b2001491b22014100480d0e2006450d0420022802002006200110152206450d050c0b0b02402002280204200241086a2802002201470d00200141016a22062001490d0e2001410174220b20062006200b491b220b4100480d0e2001450d0220022802002001200b10152206450d030c090b200228020021060c090b200228020021060c0a0b200b101322060d060b200b41011014000b2001101322060d060b200141011014000b41b6e7c20041331029000b419ceec3001038000b41d484c0001038000b2002200b36020420022006360200200241086a28020021010b200241086a200141016a360200200620016a41003a00000c020b2002200136020420022006360200200241086a28020021010b200241086a200141026a360200200620016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b0240024002402002280204220a200241086a28020022016b41204f0d00200141206a22062001490d03200a4101742201200620062001491b220b4100480d03200a450d012002280200200a200b10152206450d020c040b200228020021060c040b200b101322060d020b200b41011014000b1010000b2002200b36020420022006360200200241086a2802002101200b210a0b200620016a220b200241a0036a220c290000370000200b41186a200c41186a290000370000200b41106a200c41106a290000370000200b41086a200c41086a2900003700000240024002400240200141206a2201418102490d00200241186a220b4200370300200241106a220c4200370300200241086a220d4200370300200242003703002006200120021004200241c0036a41186a200b290300370300200241c0036a41106a200c290300370300200241c0036a41086a200d290300370300200220022903003703c003200241c0036a4120200241f0006a200241e8016a1007450d01200241c0036a4120200241f0006a200241e8016a1008452101200a0d020c030b20062001200241f0006a200241e8016a1007450d0020062001200241f0006a200241e8016a1008452101200a0d010c020b41012101200a450d010b200610160b02402001450d00200241c0036a41186a200241e8016a41186a290300370300200241c0036a41106a200241e8016a41106a290300370300200241c0036a41086a200241e8016a41086a290300370300200220022903e8013703c00320022903900221042002201141f00010f6021a420121030c010b200041aa81c30036020420004101360200200041086a411a360200201110d301200241e0036a24000f0b200041086a2003370300200041306a2004370300200041106a20022903c003370300200041186a200241c0036a41086a290300370300200041206a200241c0036a41106a290300370300200041286a200241c0036a41186a290300370300200041386a200241f00010f6021a20004100360200200241e0036a24000bb00202027f017e230041206b2201240002400240411310132202450d002002410f6a410028009ee942360000200241086a4100290097e9423700002002410029008fe94237000020024113413310152202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1002200141086a200029030037030020012001290310370300024002402001411041acf1c300410041001000417f460d002001420037031020014110200141106a41084100100041016a41084d0d01200129031021030b20021016200141206a240020030f0b41b6e7c20041331029000b411341011014000b413341011014000b950804017f017e037f067e230041c0006b2202240042002103200241306a41086a220442003703002002420037033041d895c300411b200241306a1002200241206a41086a220520042903003703002002200229033037032002400240024002400240024002400240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002206417f460d022006410f4d0d02200241386a2903002107200229033021080c010b42002108420021070b200442003703002002420037033041f395c300411b200241306a1002200520042903003703002002200229033037032002400240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002204417f460d032004410f4d0d03200241386a2903002109200229033021030c010b420021090b200241106a200320092001ad420010fa02200241106a41086a290300210a2002290310210b411410132204450d03200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002103200241306a41086a220142003703002002420037033020044134200241306a1002200241206a41086a20012903003703002002200229033037032002400240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002201417f460d042001410f4d0d04200241386a2903002109200229033021030c010b420021090b2004101641e391c3002104024002402003200b20087c22087d220c2003562009200a20077c2008200b54ad7c220b7d2003200854ad7d220320095620032009511b0d00200241306a41086a220442003703002002420037033041bd95c300411b200241306a1002200241206a41086a2004290300370300200220022903303703200240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002204417f460d082004410f4d0d08418092c3002104200c2002290330542003200241386a29030022095420032009511b0d010b200241086a20004101200c200310a30120022802082204450d010b200241c0006a240020040f0b2000200c20031086012002200b37033820022008370330200241306a105e200241c0006a240041000f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411441011014000b413441011014000b41b6e7c20041331029000b130020004105360204200041d8d6c2003602000b13002000410d36020420004180dcc2003602000b130020004107360204200041a4e0c2003602000bf60201037f230041306b2202240002400240411010132203450d00200341086a41002900fae842370000200341002900f2e84237000020034110412010152203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1002200241086a2004290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010002204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031016200241306a24000f0b41b6e7c20041331029000b411041011014000b412041011014000be21701267f230041900d6b220324002003410036020041f9e6c2004110200341041001200341800d6a41086a22044200370300200342003703800d419be8c200410d200341800d6a1002200341086a22052004290300370300200320032903800d370300200320003703e00c20034110200341e00c6a4108100120044200370300200342003703800d4183eec2004111200341800d6a100220052004290300370300200320032903800d3703002003411020014120100102400240411010132204450d00200441086a41002900fae842370000200441002900f2e84237000020044110412010152205450d0120052000427f7c370010200341800d6a41086a22044200370300200342003703800d20054118200341800d6a1002200341086a22062004290300370300200320032903800d370300200341102001412010012005101620044200370300200342003703800d41a8e8c2004115200341800d6a100220062004290300370300200320032903800d3703002003411020024120100120044200370300200342003703800d419be8c200410d200341800d6a100220062004290300370300200320032903800d37030002402003411041acf1c300410041001000417f460d00200342003703e00c0240024020034110200341e00c6a41084100100041016a41084d0d0020032903e00c4200510d02200341800d6a41086a22044200370300200342003703800d419be8c200410d200341800d6a1002200341086a2004290300370300200320032903800d37030041002107427f210002402003411041acf1c300410041001000417f460d00200342003703e00c20034110200341e00c6a41084100100041016a41084d0d0220032903e00c427f7c21000b2003410041e00c10f502210641002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200641e00c6a42002000427f7c2000501b220010a10220062027220541ff01714103704105746a220320062902e00c370000200341186a200641e00c6a41186a290200370000200341106a200641e00c6a41106a290200370000200341086a200641e00c6a41086a290200370000200541016a21274100210441002102024003402005200541036e2201417d6c6a4102470d01200620046a220341df006a2d000022072003411f6a2d000022287120072028722003413f6a2d000071722126200341de006a2d000022072003411e6a2d000022287120072028722003413e6a2d000071722125200341dd006a2d000022072003411d6a2d000022287120072028722003413d6a2d000071722124200341dc006a2d000022072003411c6a2d000022287120072028722003413c6a2d000071722123200341db006a2d000022072003411b6a2d000022287120072028722003413b6a2d000071722122200341da006a2d000022072003411a6a2d000022287120072028722003413a6a2d000071722121200341d9006a2d00002207200341196a2d00002228712007202872200341396a2d000071722120200341d8006a2d00002207200341186a2d00002228712007202872200341386a2d00007172211f200341d7006a2d00002207200341176a2d00002228712007202872200341376a2d00007172211e200341d6006a2d00002207200341166a2d00002228712007202872200341366a2d00007172211d200341d5006a2d00002207200341156a2d00002228712007202872200341356a2d00007172211c200341d4006a2d00002207200341146a2d00002228712007202872200341346a2d00007172211b200341d3006a2d00002207200341136a2d00002228712007202872200341336a2d00007172211a200341d2006a2d00002207200341126a2d00002228712007202872200341326a2d000071722119200341d1006a2d00002207200341116a2d00002228712007202872200341316a2d000071722118200341d0006a2d00002207200341106a2d00002228712007202872200341306a2d000071722117200341cf006a2d000022072003410f6a2d000022287120072028722003412f6a2d000071722116200341ce006a2d000022072003410e6a2d000022287120072028722003412e6a2d000071722115200341cd006a2d000022072003410d6a2d000022287120072028722003412d6a2d000071722114200341cc006a2d000022072003410c6a2d000022287120072028722003412c6a2d000071722113200341cb006a2d000022072003410b6a2d000022287120072028722003412b6a2d000071722112200341ca006a2d000022072003410a6a2d000022287120072028722003412a6a2d000071722111200341c9006a2d00002207200341096a2d00002228712007202872200341296a2d000071722110200341c8006a2d00002207200341086a2d00002228712007202872200341286a2d00007172210f200341c7006a2d00002207200341076a2d00002228712007202872200341276a2d00007172210e200341c6006a2d00002207200341066a2d00002228712007202872200341266a2d00007172210d200341c5006a2d00002207200341056a2d00002228712007202872200341256a2d00007172210c200341c4006a2d00002207200341046a2d00002228712007202872200341246a2d00007172210b200341c3006a2d00002207200341036a2d00002228712007202872200341236a2d00007172210a200341c2006a2d00002207200341026a2d00002228712007202872200341226a2d000071722109200341c1006a2d00002207200341016a2d00002228712007202872200341216a2d000071722108200341c0006a2d0000220720032d00002228712007202872200341206a2d000071722107200441800c460d01200620042001410574200541096e41e0006c6b6a6a220341ff006a20263a0000200341fe006a20253a0000200341fd006a20243a0000200341fc006a20233a0000200341fb006a20223a0000200341fa006a20213a0000200341f9006a20203a0000200341f8006a201f3a0000200341f7006a201e3a0000200341f6006a201d3a0000200341f5006a201c3a0000200341f4006a201b3a0000200341f3006a201a3a0000200341f2006a20193a0000200341f1006a20183a0000200341f0006a20173a0000200341ef006a20163a0000200341ee006a20153a0000200341ed006a20143a0000200341ec006a20133a0000200341eb006a20123a0000200341ea006a20113a0000200341e9006a20103a0000200341e8006a200f3a0000200341e7006a200e3a0000200341e6006a200d3a0000200341e5006a200c3a0000200341e4006a200b3a0000200341e3006a200a3a0000200341e2006a20093a0000200341e1006a20083a0000200341e0006a20073a0000200441e0006a210420012105200241016a22024111490d000b0b202741d100470d000b200620263a00ff0c200620253a00fe0c200620243a00fd0c200620233a00fc0c200620223a00fb0c200620213a00fa0c200620203a00f90c2006201f3a00f80c2006201e3a00f70c2006201d3a00f60c2006201c3a00f50c2006201b3a00f40c2006201a3a00f30c200620193a00f20c200620183a00f10c200620173a00f00c200620163a00ef0c200620153a00ee0c200620143a00ed0c200620133a00ec0c200620123a00eb0c200620113a00ea0c200620103a00e90c2006200f3a00e80c2006200e3a00e70c2006200d3a00e60c2006200c3a00e50c2006200b3a00e40c2006200a3a00e30c200620093a00e20c200620083a00e10c200620073a00e00c200641800d6a41086a22034200370300200642003703800d418ae8c2004111200641800d6a1002200641086a22042003290300370300200620062903800d37030020064110200641e00c6a4120100120034200370300200642003703800d4182e9c200410d200641800d6a100220042003290300370300200620062903800d370300200641101003200641900d6a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b4194eec2001038000b411041011014000b412041011014000b9e0905027f017e037f027e097f230041d0006b220124004108210242002103200141186a41086a220442003703002001420037031841fde7c200410d200141186a1002200141086a41086a2004290300370300200120012903183703084100210502400240024002400240024002400240024002400240200141086a411041acf1c300410041001000417f460d00200142103702442001200141086a360240200141186a200141c0006a102120012802182202450d05200129021c2103200141186a41206a200041206a290300370300200141186a41186a200041186a290300370300200141186a41106a200041106a290300370300200141186a41086a200041086a290300370300200120002903003703182003422088a722052003a7470d02200141186a210020052003a7460d010c070b200141186a41206a200041206a290300370300200141186a41186a200041186a290300370300200141186a41106a200041106a2903003703002004200041086a29030037030020012000290300370318200141186a210041004200a7470d060b200541016a22042005490d0720054101742206200420042006491bad220742287e2208422088a70d072008a722044100480d072005450d012002200541286c200410152202450d020c040b200141186a21000c050b2004101322020d020b200441081014000b41b6e7c20041331029000b20034280808080708320078421030b2003422088a721050b2002200541286c22066a22042000290300370300200441206a200041206a290300370300200441186a200041186a290300370300200441106a200041106a290300370300200441086a200041086a290300370300200141186a41086a220942003703002001420037031841fde7c200410d200141186a1002200141086a41086a20092903003703002001200129031837030820014100360248200142013703402001200541016a220a360218200141186a200141c0006a101802400240200a450d00200641286a210b200141c0006a41086a220c28020021002001280244210d200221060340200141186a2006107d2001280218210e0240024002400240200d20006b2009280200220f4f0d002000200f6a22042000490d07200d4101742210200420042010491b22114100480d07200d450d012001280240200d2011101522100d020c080b2000200f6a2104200128024021100c020b201110132210450d060b20012011360244200120103602402011210d0b200c2004360200201020006a200e200f10f6021a0240200128021c450d00200e10160b200641286a210620042100200b41586a220b0d000c020b0b200141c0006a41086a28020021042001280244210d200128024021100b200141086a41102010200410010240200d450d00201010160b0240200a450d00200541286c41286a2104200221000340024020002d00002206450d00024020064101470d00200041086a280200450d01200041046a2802001016200041286a2100200441586a22040d020c030b200041106a280200450d002000410c6a28020010160b200041286a2100200441586a22040d000b0b02402003a7450d00200210160b200141d0006a24000f0b1010000b201141011014000b130020004106360204200041a7efc2003602000bce0101047f230041206b2200240002400240024041f9e6c200411041acf1c300410041001000417f460d00200041003602104101210141f9e6c2004110200041106a41044100100041016a41044d0d022000280210210241f9e6c200411010030c010b410021010b200041106a41086a220342003703002000420037031041fbe5c2004115200041106a1002200041086a20032903003703002000200029031037030020002002410020011b36021020004110200041106a41041001200041206a24000f0b41b6e7c20041331029000b13002000410b360204200041b0efc2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010132206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011014000b3101017f0240410110132202450d00200042818080801037020420002002360200200241003a00000f0b410141011014000bd21206037f017e057f017e037f027e230041d0016b22012400200141b0016a41086a22024200370300200142003703b001418ae8c2004111200141b0016a100220014190016a41086a22032002290300370300200120012903b0013703900120014190016a4110100320024200370300200142003703b00141fbe5c2004115200141b0016a100220032002290300370300200120012903b0013703900120014190016a4110100320024200370300200142003703b0014190e6c2004117200141b0016a100220032002290300370300200120012903b0013703900120014190016a411010032001419be8c200410d10dd01200129030821042001280200210520024200370300200142003703b0014183eec2004111200141b0016a1002200141f0006a41086a2002290300370300200120012903b001370370024002400240024002400240024002400240200141f0006a411041acf1c300410041001000417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010002202417f460d022002411f4d0d0220014190016a41186a2206200141b0016a41186a220229030037030020014190016a41106a2207200141b0016a41106a220329030037030020014190016a41086a2208200141b0016a41086a2209290300370300200120012903b00137039001200141f0006a4110100320022006290300370300200320072903003703002009200829030037030020012001290390013703b001200141106a41186a2002290300370300200141106a41106a2003290300370300200141106a41086a2009290300370300200120012903b0013703100c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a2903003703002002200329030037030020012001290390013703b001200141106a41186a4200370300200141106a41106a4200370300200141106a41086a4200370300200142003703100b410821064200210a200141b0016a41086a22024200370300200142003703b00141fde7c200410d200141b0016a1002200141f0006a41086a2002290300370300200120012903b0013703700240200141f0006a411041acf1c300410041001000417f460d0020014210370294012001200141f0006a36029001200141b0016a20014190016a102120012802b0012206450d0420012902b401210a200141f0006a411010030b200141b0016a41086a22024200370300200142003703b00141a8e8c2004115200141b0016a1002200141f0006a41086a2002290300370300200120012903b00137037002400240200141f0006a411041acf1c300410041001000417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010002202417f460d032002411f4d0d0320014190016a41186a2207200141b0016a41186a220229030037030020014190016a41106a2208200141b0016a41106a220329030037030020014190016a41086a220b200141b0016a41086a2209290300370300200120012903b00137039001200141f0006a4110100320022007290300370300200320082903003703002009200b29030037030020012001290390013703b001200141306a41186a2002290300370300200141306a41106a2003290300370300200141306a41086a2009290300370300200120012903b0013703300c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200220014190016a41086a29030037030020012001290390013703b001200141306a41186a4200370300200141306a41106a4200370300200141306a41086a4200370300200142003703300b200141f0006a41186a22024200370300200141f0006a41106a22034200370300200141f0006a41086a2209420037030020014200370370200141f0006a1005200141d0006a41186a2002290300370300200141d0006a41106a2003290300370300200141d0006a41086a200929030037030020012001290370370350200141b0016a41186a2207200141106a41186a290300370300200141b0016a41106a2208200141106a41106a290300370300200141b0016a41086a220b200141106a41086a290300370300200120012903103703b00120024200370300200342003703002009420037030020014200370370200141b0016a41202004420020051b2204427f7c200141f0006a1006450d0620014190016a41186a2205200229030037030020014190016a41106a220c200329030037030020014190016a41086a220d20092903003703002001200129037037039001200220052903003703002003200c2903003703002009200d29030037030020012001290390013703702007200229030037030020082003290300370300200b2009290300370300200120012903703703b001024002400240200a422088220ea72202200aa7470d00200241016a22032002490d05200ea74101742209200320032009491bad220f42287e220e422088a70d05200ea722034100480d052002450d012006200241286c200310152206450d020c070b200a210f0c070b2003101322060d050b200341081014000b41b6e7c20041331029000b41b6e7c20041331029000b1010000b41b6e7c20041331029000b200a422088220ea721020b2006200241286c6a220241003a0000200241196a200141c8016a290300370000200241116a200141c0016a290300370000200241096a200141b8016a290300370000200220012903b001370001200241216a200128009001360000200241246a20014193016a280000360000200f42ffffffff0f83200e4220864280808080107c84210a0b2000200129031037001420002004370300200020012903503700342000412c6a200141106a41186a290300370000200041246a200141106a41106a2903003700002000411c6a200141106a41086a2903003700002000413c6a200141d0006a41086a290300370000200041c4006a200141d0006a41106a290300370000200041cc006a200141d0006a41186a290300370000200041ec006a200141306a41186a290300370000200041e4006a200141306a41106a290300370000200041dc006a200141306a41086a290300370000200020012903303700542000410c6a200a37020020002006360208200141d0016a24000b130020004101360204200041c481c3003602000b1300200041023602042000419883c3003602000b3201017f0240410810132202450d0020004288808080800137020420002002360200200242013700000f0b410841011014000b130020004107360204200041bc85c3003602000b1300200041043602042000418087c3003602000b130020004102360204200041bc8bc3003602000b3301017f0240410410132202450d0020004284808080c0003702042000200236020020024180203600000f0b410441011014000b130020004104360204200041848dc3003602000b130020004101360204200041fc8dc3003602000b1300200041023602042000418897c3003602000b13002000410836020420004197a0c3003602000b13002000410a360204200041a0a0c3003602000b3901017f0240411010132202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011014000bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410f7021a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10f7021a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011013220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110f6022107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410f6022107200a41e0006a200041b4016a2001410c6c10f602210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410f7021a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10f7021a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410f7021a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10f7021a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210132207450d03200741003b010620074100360200200741086a200241d0006a418c0210f6022103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410f6022116200741e0006a200941b4016a2000410c6c10f6022117200741e4016a20094180026a2001417a6a220e41027410f6022118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410f7021a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10f7021a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410f7021a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410f7021a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10f7021a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410f7021a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210132200450d03200041003b010620004100360200200041086a200241d0006a418c0210f60221012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410f7021a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10f7021a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410f7021a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041014000b41e40141041014000b41940241041014000b200241e0026a24000bea0704027f017e017f077e230041f0006b2202240002400240024002400240411010132203450d00200341086a41002900adb943370000200341002900a5b94337000020034110413010152203450d0120032001290000370010200341286a200141186a290000370000200341206a200141106a290000370000200341186a200141086a29000037000042002104200241386a41086a220542003703002002420037033820034130200241386a1002200241e0006a41086a200529030037030020022002290338370360200241386a200241e0006a4110108402200241386a41206a2903002106200241386a41186a2903002107200241386a41106a2903002108200229034021092002290338210a200310164200210b02400240200a4201520d00411410132203450d05200341106a410028009e9643360000200341086a410029009696433700002003410029008e964337000020034114413410152203450d06200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241386a41086a220142003703002002420037033820034134200241386a1002200241e0006a41086a20012903003703002002200229033837036002400240200241e0006a411041acf1c300410041001000417f460d002002420037034020024200370338200241e0006a4110200241386a4110410010002201417f460d062001410f4d0d06200241c0006a290300210b2002290338210c0c010b4200210c4200210b0b20031016200241386a41086a2201420037030020024200370338419be8c200410d200241386a1002200241e0006a41086a2001290300370300200220022903383703600240200241e0006a411041acf1c300410041001000417f460d0020024200370338200241e0006a4110200241386a41084100100041016a41084d0d02200229033821040b4200210a200241086a420042002007420010fa02200241186a200642002004420010fa02200241286a200442002007420010fa024200210402404200420052200642005271200229031042005272200229032042005272200241286a41086a2903002207200229030820022903187c7c2206200754720d002008200620022903282207200954200620085420062008511b22011b20067d2009200720011b2206200754ad7d2104200620077d210a0b2004200b200c200a56200b200456200b2004511b22011b210b200a200c20011b21040b200020043703002000200b370308200241f0006a24000f0b41b6e7c20041331029000b411041011014000b413041011014000b41b6e7c20041331029000b411441011014000b413441011014000b870807047f017e097f047e017f017e017f230041c0006b220224000240024002400240024002400240024002400240410e10132203450d00200341066a410029008fa04337000020034100290089a0433700002003410e412e10152204450d012004200129000037000e200441266a200141186a2900003700002004411e6a200141106a290000370000200441166a200141086a290000370000200241306a41086a22014200370300200242003703302004412e200241306a1002200241086a41086a2001290300370300200220022903303703080240024002400240200241086a411041acf1c300410041001000417f460d002002421037021c2002200241086a3602182002200241186a10122002280200450d0b20022802042205ad42287e2206422088a70d032006a72201417f4c0d032001450d01200110132207450d062005450d020c070b20004100360208200042083702000c080b4108210720050d050b4100210e420021062007450d080c050b100f000b410e41011014000b412e41011014000b200141081014000b200241186a41086a22032802002108200228021c21092002280218210a200241336a210b420021064100210c4100210d410021012005210e03402002420037033020034100200a2009200241306a410820081000220f200f417f461b220f4108200f4108491b20086a2208360200200f41074d0d0320022903302110200242003703382002420037033020034100200a2009200241306a411020081000220f200f417f461b220f4110200f4110491b20086a2208360200200f410f4d0d03200241306a41086a2903002111200229033021122002420037033020034100200a2009200241306a410820081000220f200f417f461b220f4108200f4108491b20086a2208360200200f41074d0d0320022903302113200241003a003020032008200a2009200241306a41012008100041016a41014b220f6a2208360200200f450d03200141016a210f20022d003021142002200b28000036002b200220022800303602282002200228002b3600332002200228022836023002402001200e470d00200c200f200f200c491b220ead42287e2215422088a70d062015a722164100480d0602402001450d002007200d2016101522070d010c080b201610132207450d070b2007200d6a220141206a20143a00002001201137030820012012370300200141186a2010370300200141106a2013370300200141246a2002280033360000200141216a200228023036000020064280808080107c2106200c41026a210c200d41286a210d200f2101200f2005490d000b2007450d030b20002006200ead84370204200020073602000b20041016200241c0006a24000f0b200e450d00200710160b41b6e7c20041331029000b1010000b201641081014000b130020004101360204200041b8b9c3003602000b13002000410936020420004190bdc3003602000b1300200041043602042000419cbdc3003602000b3201017f0240410810132202450d0020004288808080800137020420002002360200200242033700000f0b410841011014000bd36e1f037f017e027f017e047f027e047f037e017f027e037f027e027f017e027f037e0e7f017e047f017e017f017e0b7f047e117f017e017f017e047f017e0b7f23004180036b22012400200141386a41086a220242003703002001420037033841d08ec3004113200141386a1002200141e8006a41086a20022903003703002001200129033837036802400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141e8006a411041acf1c300410041001000417f460d00200141003a00e001200141e8006a4110200141e0016a41014100100041016a41014d0d0220012d00e0012102200141e8006a411010032002450d00200141386a41086a2202420037030020014200370338418acec300411d200141386a1002200141e0026a41086a2002290300370300200120012903383703e0020240200141e0026a411041acf1c300410041001000417f460d00200142103702e4012001200141e0026a3602e001200141e8006a200141e0016a101120012802682203450d04200129026c2104200141e0026a41101003200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf01410021050240200128026822022001280270220641acf1c300410041001000417f460d00200141003602e00120022006200141e0016a41044100100041016a41044d0d0320012802e00121050b0240200128026c450d00200210160b024002402005450d002005ad4205862207422088a70d252007a722024100480d25200210132208450d0841002106200821020340200141e0016a200610bf02200241186a200141e0016a41186a290000370000200241106a200141e0016a41106a290000370000200241086a200141e0016a41086a290000370000200220012900e001370000200241206a21022005200641016a2206470d000c020b0b410121080b2004a7210902400240024020052004422088a7220a470d000240200a450d0020032008460d004100210b2008210220032106034020022006412010f8020d02200241206a2102200641206a2106200b41016a220b200a490d000b0b2005450d012008101620090d020c030b200141f4006a2005360200200141f0006a20053602002001200836026c200141013a0068200141e8006a10a3020b2009450d010b200310160b200141386a41086a220242003703002001420037033841bfdac0004118200141386a1002200141e0026a41086a22062002290300370300200120012903383703e00242002104024002400240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d01200129036821040b200242003703002001420037033841bbc9c0004115200141386a100220062002290300370300200120012903383703e00202400240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d03200129036822074200520d0141d8dac0001038000b42e80721070b200141386a41086a220242003703002001420037033841cdc7c0004119200141386a1002200141e0026a41086a2002290300370300200120012903383703e002200020047d200782210c0240200141e0026a411041acf1c300410041001000417f460d00200141003a0068200141e0026a4110200141e8006a41014100100041016a41014d0d0720012d00682102200141e0026a41101003200241004721050c090b200c4200520d09410121050c080b41b6e7c20041331029000b41b6e7c20041331029000b419c92c3001038000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b4200210d200141386a41086a220242003703002001420037033841ee94c300410d200141386a1002200141e0026a41086a22062002290300370300200120012903383703e002420021040240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0a200129036821040b200242003703002001420037033841f0dac0004114200141386a100220062002290300370300200120012903383703e0020240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0b2001290368210d0b200141386a41086a220242003703002001420037033841a7c9c0004114200141386a1002200141e0026a41086a22062002290300370300200120012903383703e00202400240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0d200129036842017c21070c010b420121070b200141e8006a41086a2007370300200141033a0068200141e8006a105a200242003703002001420037033841a7c9c0004114200141386a100220062002290300370300200120012903383703e00220012007370368200141e0026a4110200141e8006a41081001200242003703002001420037033841f0dac0004114200141386a100220062002290300370300200120012903383703e00220012004370368200141e0026a4110200141e8006a41081001200141286a4184dbc000411910dd010240024002402001290328a74101470d0020012903302107200141386a41086a220242003703002001420037033841bbc9c0004115200141386a1002200141e0026a41086a2002290300370300200120012903383703e00220012007370368200141e0026a4110200141e8006a410810010c010b200c500d010b200141386a41086a2202420037030020014200370338419be8c200410d200141386a1002200141e0026a41086a22062002290300370300200120012903383703e002420021070240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0e200129036821070b200242003703002001420037033841bfdac0004118200141386a100220062002290300370300200120012903383703e00220012007370368200141e0026a4110200141e8006a410810010b2004200d7d200510f501200141386a41086a220242003703002001420037033841d0c9c0004112200141386a1002200141e0026a41086a2002290300370300200120012903383703e0024100210302400240200141e0026a411041acf1c300410041001000417f460d00200142103702e4012001200141e0026a3602e001200141e8006a200141e0016a10112001280268220e450d15200141f0006a2802002103200128026c210f0c010b4101210e4100210f0b4100210820014100360268200141e8006a10c002200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf010240200128026822022001280270220641acf1c300410041001000417f460d00200141003602e00120022006200141e0016a41044100100041016a41044d0d0e20012802e00121080b0240200128026c450d00200210160b0240200820034d0d00200141f0006a210a200321020340200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf0141002105024020012802682206200a280200220b41acf1c300410041001000417f460d00200141003602e0012006200b200141e0016a41044100100041016a41044d0d0420012802e00121050b0240200128026c450d00200610160b200241016a21060240200520024d0d00200141063602e401200141f7c8c3003602e001200141e8006a2002200141e0016a102820012802682202200a2802001003200128026c450d00200210160b2006210220082006470d000b0b200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf012001280270210620012802682102200120033602e00120022006200141e0016a410410010240200128026c450d00200210160b024020034105742208450d0041002105200e21060340200141c8006a41186a220b200641186a290000370300200141c8006a41106a220a200641106a290000370300200141c8006a41086a2203200641086a29000037030020012006290000370348411210132202450d07200241106a41002f00f2c9403b0000200241086a41002900eac940370000200241002900e2c94037000020024112413210152202450d08200220012903483700122002412a6a200b290300370000200241226a200a2903003700002002411a6a2003290300370000200141386a41086a220b42003703002001420037033820024132200141386a1002200141e0026a41086a220a200b290300370300200120012903383703e00202400240200141e0026a411041acf1c300410041001000417f460d00200141e8006a41186a22034200370300200141e8006a41106a22094200370300200141e8006a41086a2210420037030020014200370368200141e0026a4110200141e8006a4120410010002211417f460d072011411f4d0d07200141e0016a41186a22112003290300370300200141e0016a41106a22032009290300370300200141e0016a41086a22092010290300370300200120012903683703e00120021016200141e0026a41186a2011290300370300200141e0026a41106a2003290300370300200a2009290300370300200120012903e0013703e0020c010b20021016200141e0026a41186a4200370300200141e0026a41106a4200370300200a4200370300200142003703e0020b2001410636026c200141f7c8c300360268200141386a2005200141e8006a102802400240024020012802382202200b280200220b41acf1c300410041001000417f470d00200141e8006a41186a4200370300200141e8006a41106a4200370300200141e8006a41086a420037030020014200370368200128023c0d010c020b200141e0016a41186a22034200370300200141e0016a41106a22094200370300200141e0016a41086a22104200370300200142003703e0012002200b200141e0016a412041001000220b417f460d08200b411f4d0d08200141e8006a41186a2003290300370300200141e8006a41106a2009290300370300200141e8006a41086a2010290300370300200120012903e001370368200128023c450d010b200210160b0240200141e8006a200141e0026a412010f802450d0041002102200141003602e001200141e0016a10c0022001410636023c200141f7c8c300360238200141e0016a41fdc8c300200141386a10bf01024020012802e001220b200141e0016a41086a2209280200220341acf1c300410041001000417f460d0020014100360238200b2003200141386a41044100100041016a41044d0d06200128023821020b024020012802e401450d00200b10160b200220054d0d002001410636023c200141f7c8c300360238200141e0016a2005200141386a10282009280200210320012802e001210b412010132202450d0b200220012903e002370000200241186a200141e0026a41186a290300370000200241106a200141e0026a41106a290300370000200241086a200a290300370000200b20032002412010012002101620012802e401450d00200b10160b200541016a2105200641206a2106200841606a22080d000b0b200f450d00200e10160b200141186a41cde8c200411010dd012001290320210420012802182106200141e0026a41086a22024200370300200142003703e00241a2ffc2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e00102400240200141e0016a411041acf1c300410041001000417f460d00200141003a0068200141e0016a4110200141e8006a41014100100041016a41014d0d0f20012d00680d010b410810132202450d1120024200370300200142818080801037026c2001200236026841dde8c2004115200141e8006a10a20120021016410810132202450d1220024200370300200142818080801037026c2001200236026841b7ffc2004116200141e8006a10a20120021016200141e0026a41086a22024200370300200142003703e00241bde8c2004110200141e0026a1002200141e0016a41086a22052002290300370300200120012903e0023703e00120014200370368200141e0016a4110200141e8006a41081001200141013a006820024200370300200142003703e00241a2ffc2004115200141e0026a100220052002290300370300200120012903e0023703e001200141e0016a4110200141e8006a410110010b4108211142002112200141e0026a41086a22024200370300200142003703e00241dde8c2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a101e20012802682211450d0f200129026c21120b4108210542002113200141e0026a41086a22024200370300200142003703e00241b7ffc2004116200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a101e20012802682205450d10200129026c21130b200141e0026a41086a22024200370300200142003703e00241cdffc2004114200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d0020014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d074201200129036822072007501b21142012422088a7210f20060d150c140b42e50021142012422088a7210f2006450d130c140b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411241011014000b413241011014000b41b6e7c20041331029000b412041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410841081014000b410841081014000b41b6e7c20041331029000b200f417f6a2202200f4b0d012002200f4f0d01201120024103746a2202450d01200229030021040b4100200f41016a22022014a76b2206200620024b1b220e200f4b0d012011200e4103746a2115200e450d0242202116201342208821174108211841012119417f211a428080808070211b427f211c2011211d4100211e0c030b41e1ffc20041261029000b419480c0001038000b410021020c010b410121020b03400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b201242ffffffff0f8321070240200f200e6b2202450d000240200e450d0020112015200241037410f7021a0b2002ad42208620078421070b41002102024002400240024002400240024002400240024002402013422088220da72208450d00024020084101460d004100210220082106034020022006410176220b20026a220a20042005200a4103746a290300541b21022006200b6b220641014b0d000b0b200220022004200520024103746a290300220c566a2004200c511b220220084b0d010b02400240024002400240024002400240024002400240024002400240024020082013a7470d00200841016a22062008490d42200da7220a410174220b20062006200b491bad2213420386220c422088a70d42200ca722064100480d4202402008450d002005200a410374200610152205450d020c010b200610132205450d010b200520024103746a220641086a2006200820026b41037410f7021a200620043703002007a72007422088220ca72202470d02200241016a22062002490d412002410174220b20062006200b491bad2207420386221f422088a70d41201fa722064100480d412002450d0120112002410374200610152211450d030c020b200641081014000b200610132211450d010b201120024103746a2004370300200d42017c221fa72202450d082002410176220620024f0d09200520064103746a290300210d024020024101710d002006417f6a220620024f0d11200520064103746a290300200d7c420188210d0b201342ffffffff0f83201f42208684211f2001200c42017c220c422086200742ffffffff0f838437026c2001201136026841dde8c2004115200141e8006a10a20102402007a7450d00201110160b2001201f37026c2001200536026841b7ffc2004116200141e8006a10a20102402013a7450d00200510160b200141e0026a41086a220a4200370300200142003703e00241bde8c2004110200141e0026a1002200141e0016a41086a2208200a290300370300200120012903e0023703e0012001200d370368200141e0016a4110200141e8006a41081001200c42ffffffff0f832014520d03200a4200370300200142003703e002419be8c200410d200141e0026a10022008200a290300370300200120012903e0023703e001420021070240200141e0016a411041acf1c300410041001000417f460d0020014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d05200129036821070b200141e0026a41086a22024200370300200142003703e00241d080c3004117200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001200141e0016a411041acf1c300410041001000417f460d0120014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d052001290368210c0c020b200641081014000b42e807210c0b200d20144201887c200c7c2007560d00200141e8006a10fb0120012802682103200128026c210902400240024020012802702202450d00200241057422064105752210ad42287e2207422088a70d3e2007a7220b4100480d3e200b1013221e450d12200320066a21202002410574210b201e2102200321060340200641086a2900002107200641106a290000210d2006290000210c200241186a200641186a290000370000200241106a200d370000200241086a20073700002002200c370000200241206a4201370300200241286a2102200641206a2106200b41606a220b0d000b202020036b41606a41057641016a21062009450d020c010b410021104108211e410021062009450d010b200310160b42002107200141e0026a41086a22024200370300200142003703e00241bde8c2004110200141e0026a1002200141386a41086a2002290300370300200120012903e0023703380240200141386a411041acf1c300410041001000417f460d0020014200370368200141386a4110200141e8006a41084100100041016a41084d0d04200129036821070b200120063602702001201036026c2001201e360268200141e8006a2014427f7c42012007102f0b200a4200370300200142003703e00241888dc000411d200141e0026a10022008200a290300370300200120012903e0023703e00102400240024002400240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a102c200129037822074202510d0d20014190016a28020021032001418c016a280200212120014188016a280200212020012903702122024002400240024002400240200129036822232000520d002003ad42287e220d422088a74100472106200da721020240024002400240024020074201520d0020060d132002417f4c0d1320012903800121242002450d01200210132208450d1f2003450d030c020b20060d122002417f4c0d122002450d05200210132208450d1f4100211e4100210b20030d060c070b410821082003450d010b200341286c210a4100210b20082102202021060340200641086a2903002107200641106a290300210d200641186a290300210c2006290300211f200241206a200641206a290300370300200241186a200c370300200241106a200d370300200241086a20073703002002201f370300200241286a2102200b41016a210b200641286a2106200a41586a220a0d000c020b0b4100210b0b20014188016a202237030020014180016a2024370300200141fc006a200b360200200141f8006a2003360200200141f4006a2008360200200141f0006a4101360200200141023a0068200141e8006a10a3020b202220237c2000520d040c030b410821084100211e4100210b2003450d010b200341286c210a4100210b20082102202021060340200641086a2903002107200641106a290300210d200641186a290300210c2006290300211f200241206a200641206a290300370300200241186a200c370300200241106a200d370300200241086a20073703002002201f370300200241286a2102200b41016a210b200641286a2106200a41586a220a0d000b0b20014180016a2022370300200141fc006a200b360200200141f8006a2003360200200141f4006a2008360200200141f0006a201e360200200141023a0068200141e8006a10a302202220237c2000520d010b2003ad42287e2207422088a70d092007a72202417f4c0d090240024002402002450d0020021013221e450d164100210b4100210a20030d010c020b4108211e4100210b4100210a2003450d010b200341286c21084100210a201e2102202021060340200641086a2903002107200641106a290300210d200641186a290300210c2006290300211f200241206a200641206a290300370300200241186a200c370300200241106a200d370300200241086a20073703002002201f370300200241286a2102200a41016a210a200641286a2106200841586a22080d000b0b200141f4006a200a360200200141e8006a41086a220820033602002001201e36026c200141063a0068200141e8006a105a02402003450d002020200341286c6a21104100210b202021020340200141e8006a41186a2203200241186a290300370300200141e8006a41106a221e200241106a2903003703002008200241086a29030037030020012002290300370368200241206a29030021072001410e3602e402200141b384c0003602e002200141e0016a200b200141e0026a1028200141e0016a41086a280200210920012802e001210a412010132206450d0520062001290368370000200641186a2003290300370000200641106a201e290300370000200641086a20082903003700002006412041c00010152206450d0620062007370020200a200920064128100120061016024020012802e401450d00200a10160b200b41016a210b200241286a22022010470d000b0b02402021450d00202010160b2001410e3602e401200141b384c0003602e001200141e8006a41fdc8c300200141e0016a10bf014100211e0240200128026822022001280270220641acf1c300410041001000417f460d00200141003602e00120022006200141e0016a41044100100041016a41044d0d0d20012802e001211e0b0240200128026c450d00200210160b0240201e200b4d0d00200141f0006a2103200b210203402001410e3602e401200141b384c0003602e001200141e8006a41fdc8c300200141e0016a10bf014100210a0240200128026822062003280200220841acf1c300410041001000417f460d00200141003602e00120062008200141e0016a41044100100041016a41044d0d0520012802e001210a0b0240200128026c450d00200610160b200241016a21060240200a20024d0d002001410e3602e401200141b384c0003602e001200141e8006a2002200141e0016a10282001280268220220032802001003200128026c450d00200210160b20062102201e2006470d000b0b2001410e3602e401200141b384c0003602e001200141e8006a41fdc8c300200141e0016a10bf0120012802702106200128026821022001200b3602e00120022006200141e0016a410410010240200128026c450d00200210160b200141e0026a41086a22024200370300200142003703e00241888dc000411d200141e0026a1002200141386a41086a2002290300370300200120012903e002370338200141386a411010030c010b2021450d00202010160b4108210b42002107200141e0026a41086a22024200370300200142003703e0024193ecc2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a10202001280268220b450d0e200129026c21070b02402007422088a72221450d0020214106742106200b41106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b02402007a7450d00200b10160b200141e0026a41086a22024200370300200142003703e00241cdbcc0004118200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e00102400240200141e0016a411041acf1c300410041001000417f460d0020014100360268200141e0016a4110200141e8006a41044100100041016a41044d0d05200128026821080c010b413c21080b4108210b42002107200141e0026a41086a22024200370300200142003703e0024193ecc2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a10202001280268220b450d0f200129026c21070b02402007422088a7220a450d00200a4106742106200b41106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b02402007a7450d00200b10160b200141e0026a41086a22024200370300200142003703e002419ab8c000411b200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001410021022008200a6c220641e4006e212502400240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a102620012802682220450d11200128026c2126200141f0006a28020022020d010c180b41042120410021264100450d170b41022127202020024102746a21282001418d026a21294104212a4108212b200141c8006a41086a212c4110212d410d212e419be8c200212f4100213041acf1c3002131417f2132420021334116213441f2bac000213541172136419095c30021374280de342138410121394201213a200641e3004b213b4120213c200141e8006a41206a213d412c213e200141e8006a412c6a213f41282140200141e8006a41286a2141411c2142200141e8006a411c6a2143410e2144411a21454284808080c00021464288808080800121474290808080c001214842a0808080c002214920014184026a214a200141f8016a214b4107214c4121214d415f214e4103214f202021504101211e0c390b41b6e7c20041331029000b412041011014000b41c00041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b41b880c3001038000b4190ebc2002006200210a801000b41b6e7c20041331029000b41c880c0001038000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b4190ebc2002006200210a801000b200241081014000b200b41081014000b200241081014000b200241081014000b02400240201e0e03000105050b201d29030021074100210202402017a722062019460d002006450d0d41002102034020022006201976220b20026a220a20072005200a4103746a290300541b21022006200b6b220620194b0d000b0b2007200520024103746a2206290300220d520d0d20172002ad580d0e2006200620186a2002201a732017a76a41037410f7021a201342ffffffff0f832017201686201b7c8421132017201c7c2117201d20186a221d2015470d20410021020c280b200141c8006a2050280200220910592001280248215141002108410021034100210a4100211e0240202c2802002252450d002052204d6c210b2051203c6a21024100211e4100210a410021034100210803400240024020022d000022062039460d00024020062027460d002006204f470d02200820396a21082002204d6a2102200b204e6a220b0d030c040b200320396a21032002204d6a2102200b204e6a220b0d020c030b200a20396a210a2002204d6a2102200b204e6a220b0d010c020b201e20396a211e2002204d6a2102200b204e6a220b0d000b0b200141e8006a2009105b200141e8006a202d6a290300210d42002107200141e0026a202b6a22024200370300200142003703e002202f202e200141e0026a1002200141e0016a202b6a22062002290300370300200120012903e0023703e0010240200141e0016a202d20312030203010002032460d00200120333703e002200141e0016a202d200141e0026a202b2030100020396a202b4d0d0820012903e00221070b20022033370300200120333703e00220352034200141e0026a100220062002290300370300200120012903e0023703e0010240024002400240024002400240200141e0016a202d20312030203010002032460d00200120333703e002200141e0016a202d200141e0026a202b2030100020396a202b4d0d0f20012903e002210c2021450d020c010b20022033370300200120333703e00220372036200141e0026a1002200141386a202b6a2002290300370300200120012903e0023703380240200141386a202d20312030203010002032460d00200120333703e001200141386a202d200141e0016a202b2030100020396a202b4d0d1120012903e001203a86220c500d232038200c80210c20210d010c020b2038420680210c2021450d010b4105211020082021460d03203b200a20254f71210b20522021470d0141042110200b0d020c030b203b200a20254f71210b0b2007200c200d7c540d0241022110200b450d010b410321100b20092010105c220b0d024200210720024200370300200142003703e002202f202e200141e0026a100220062002290300370300200120012903e0023703e0010240200141e0016a202d20312030203010002032460d00200120333703e002200141e0016a202d200141e0026a202b2030100020396a202b4d0d0b20012903e00221070b20341013220b450d15200b20446a20302900d6be40370000200b202b6a20302900d0be40370000200b20302900c8be40370000200b2034203e10152252450d162052200936001620022033370300200120333703e00220522045200141e0026a100220062002290300370300200120012903e0023703e001200220303602002001203a3703e002202a1013220b450d17200120463702e4022001200b3602e002200b2009360000200b202a202b1015220b450d18200120473702e402200b201e3600042001200b3602e002200b202b202d1015220b450d19200120483702e402200b200a360008200b200336000c2002202d3602002001200b3602e002200b202d203c1015220b450d1a200b2008360010200120493702e4022001200b3602e0022010200141e0026a104a024002400240024020012802e40222532002280200220b6b202b4f0d00200b202b6a2202200b490d2d20532039742254200220022054491b22542030480d2d2053450d0120012802e00220532054101522020d020c200b20012802e00221020c020b205410132202450d1e0b200120543602e402200120023602e002205421530b2002200b6a2007370000200141e0016a202d2002200b202b6a100102402053450d00200210160b20521016200141e0016a203e6a20103a0000200141e0016a20406a2008360200204a2003360200200141e0016a203c6a200a360200200141e0016a20426a201e360200204b2009360200200141e0016a202d6a20073703002006202a3a0000202920012f00e0023b0000202920276a200141e0026a20276a2d00003a00002001204c3a00e001200141e0016a105a0b0240203d280200450d00204328020010160b0240203f280200450d00204128020010160b2050202a6a21500240200128024c450d00205110160b20502028470d200b2026450d01202010160c010b024020014188016a280200450d0020014184016a28020010160b024020014194016a280200450d0020014190016a28020010160b0240200128024c450d00205110160b02402026450d00202010160b200b412810090b2000109402200141e0026a41086a22024200370300200142003703e00241a8ecc2004112200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001024002400240200141e0016a411041acf1c300410041001000417f460d0020014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d1a20012903682000510d010c020b42012000520d010b200141e8006a41106a2000370300200141e8006a41086a4200370300200141093a0068200141e8006a105a200141e0026a41086a22024200370300200142003703e00241aa9ec2004119200141e0026a1002200141386a41086a2002290300370300200120012903e0023703380240200141386a411041acf1c300410041001000417f460d00200141003a0068200141386a4110200141e8006a41014100100041016a41014d0d1c20012d0068450d010b200141e0026a41086a22024200370300200142003703e0024193ecc2004115200141e0026a1002200141386a41086a2002290300370300200120012903e00237033802400240200141386a411041acf1c300410041001000417f460d00200142103702e4012001200141386a3602e001200141e8006a200141e0016a102020012802682202450d1e2001200129026c37026c200120023602680c010b20014100360270200142083703680b200141106a200141e8006a1082020b200141e0026a41086a22024200370300200142003703e00241ea88c1004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001410021060240200141e0016a411041acf1c300410041001000417f460d002001421037026c2001200141e0016a360268200141086a200141e8006a10122001280208450d10200128020c220a450d02200141f0006a2802002102200128026c210820012802682103410021060340200141003a00e002200220032008200141e0026a41012002100041016a41014b220b6a2102200b450d0f20012d00e0020d10200641016a2206200a490d000b200141f0006a20023602000b41012155200641016a22564101460d030c020b200141e8006a10b90102402001290368205b520d00205c290300220d205d510d102000200d82205d520d00205f290300210c2061290300211f200141d0026a109a0120012802d402210920012802d002211e02400240200141d0026a20586a2802002202450d002002206374210b201e21020340200141e0026a20606a200220606a290000370300200141e0026a20646a200220646a2900003703002059200220586a290000370300200120022900003703e002200141e0016a200141e0026a108c0120012903e00122072062510d02024002402007205b520d00200141e0016a20646a290300200d7c20005a0d00200141e0016a20586a2903002107206510132206450d10200620666a20672900da9141370000200620646a20672900d49141370000200620586a20672900cc9141370000200620672900c4914137000020062065206810152206450d112006200737001e2059205d3703002001205d3703e00220062069200141e0026a1002200141386a20586a2059290300370300200120012903e002370338200141386a2064206a206720671000210a20061016200a205a460d00200141e0016a2007109401206b20012d00e2013a0000200141c8006a20586a2206205720586a220a290000370300200141c8006a206c6a22082057206c6a2203290000370000200120012f01e0013b01382001205729000037034820012900e301210720572001290348370000200a200629030037000020032008290000370000200120073700e3012001206b2d00003a00e201200120012f01383b01e001200141e0026a200141e0016a201f200c10fc0120012802e002450d010b2002205e6a2102200b206d6a220b0d010c020b205910fa012002205e6a2102200b206d6a220b0d000b0b200120623703e0010b2009450d00201e10160b2056205a6a22562055470d1d0c020b41012155410041016a22564101460d010b200141eb016a215741082158200141e0026a41086a2159417f215a4201215b20014190016a215c4200215d4120215e200141e8006a41206a215f41182160200141e8006a41186a2161420221624105216341102164411e21654116216641002167413c21684126216941acf1c300216a2001413a6a216b410d216c4160216d4102211e0c1f0b20014180036a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410010d901000b20022007200d566a10d901000b418081c0001038000b411e41011014000b413c41011014000b200141f0006a200236020041b6e7c20041331029000b200141f0006a20023602000b41b6e7c20041331029000b41e4f5c0001038000b411641011014000b412c41011014000b410441011014000b410841011014000b411041011014000b412041011014000b41b6e7c20041331029000b205441011014000b41bcb3c0001038000b41b6e7c20041331029000b41b6e7c20041331029000b4100211e0c020b4101211e0c030b4102211e0c040b410121020c040b410121020c030b410121020c020b410121020c010b410121020c000b0b1010000ba50201027f230041306b2202240020024106360214200241f7c8c30036021020022001200241106a10280240024002400240200228020022012002280208220341acf1c300410041001000417f460d00200241286a4200370300200241206a4200370300200241186a42003703002002420037031020012003200241106a4120410010002203417f460d012003411f4d0d0120002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700002002280204450d030c020b20004200370000200041186a4200370000200041106a4200370000200041086a420037000020022802040d010c020b41b6e7c20041331029000b200110160b200241306a24000bd00703057f017e057f230041c0006b22012400200141206a41086a2202420037030020014200370320418acec300411d200141206a1002200141086a20022903003703002001200129032037030002400240024002400240024002402001411041acf1c300410041001000417f460d002001421037021420012001360210200141206a200141106a101120012802202202450d0102402001280224450d00200210160b20002802002202450d06200041046a280200450d0620021016200141c0006a24000f0b024002400240024020002802002203450d00200041086a2802002104200028020421050c010b20014106360204200141f7c8c300360200200141206a41fdc8c300200110bf01410021040240200128022022002001280228220241acf1c300410041001000417f460d002001410036020020002002200141044100100041016a41044d0d05200128020021040b02402001280224450d00200010160b02402004450d002004ad4205862206422088a70d022006a722004100480d02200010132203450d0641002102200321000340200141206a200210bf02200041186a200141206a41186a290000370000200041106a200141206a41106a290000370000200041086a200141206a41086a29000037000020002001290020370000200041206a21002004200241016a2202470d000b200421050c010b4101210341002104410021050b200141206a41086a2200420037030020014200370320418acec300411d200141206a1002200141086a200029030037030020012001290320370300200141003602282001420137032020012004360210200141106a200141206a101802402004450d00200441057421074100200028020022026b2108200128022021092001280224210a2003210003400240200a20086a411f4b0d00200241206a22042002490d03200a410174220b20042004200b491b22044100480d0302400240200a450d002009200a2004101522090d010c060b200410132209450d050b2004210a0b200920026a22042000290000370000200441186a200041186a290000370000200441106a200041106a290000370000200441086a200041086a290000370000200841606a2108200241206a2102200041206a2100200741606a22070d000b200141286a20023602002001200a3602242001200936022020014110200920021001200a450d070c060b2001280224210220014110200128022022092000280200100120020d050c060b1010000b200441011014000b41b6e7c20041331029000b41b6e7c20041331029000b200041011014000b200910160b2005450d00200310160b200141c0006a24000bd41704017f017e117f047e230041b0016b22012400200141fb94c300411510dd01024020012802004101470d002001290308210220014188016a41086a220342003703002001420037038801419095c300411720014188016a1002200141e0006a41086a220420032903003703002001200129038801370360200141e0006a411041acf1c300410041001000417f470d00200342003703002001420037038801419095c300411720014188016a10022004200329030037030020012001290388013703602001200237038801200141e0006a411020014188016a410810010b20014188016a41086a22034200370300200142003703880141ccbbc100411520014188016a1002200141e0006a41086a2003290300370300200120012903880137036002400240024002400240024002400240200141e0006a411041acf1c300410041001000417f460d002001410036028801200141e0006a411020014188016a41044100100041016a41044d0d022001280288010d010b20014188016a41086a22034200370300200142003703880141ccbbc100411520014188016a1002200141e0006a41086a200329030037030020012001290388013703602001410136028801200141e0006a411020014188016a410410010b0240200042e400824200520d004108210520014188016a41086a22034200370300200142003703880141ebf7c000411820014188016a1002200141e0006a41086a200329030037030020012001290388013703604100210602400240024002400240024002400240200141e0006a411041acf1c300410041001000417f460d002001421037023c2001200141e0006a36023820014188016a200141386a10252001280288012205450d0a200128028c0121074130210820014190016a280200220641306c22090d010c020b4100210741302108410041306c2209450d010b410021040340200520046a220341286a290300210220014188016a41206a200341206a29030037030020014188016a41186a200341186a29030037030020014188016a41106a200341106a29030037030020014188016a41086a200341086a290300370300200120032903003703880120022000540d022009200420086a2204470d000b0b4108210a4100210b2007450d01200510164100210c0c040b200141e0006a41206a220820014188016a41206a290300370300200141e0006a41186a220920014188016a41186a290300370300200141e0006a41106a220d20014188016a41106a290300370300200141e0006a41086a220a20014188016a41086a2903003703002001200129038801370360200141386a41206a220c2008290300370300200141386a41186a22082009290300370300200141386a41106a2209200d290300370300200141386a41086a220d200a29030037030020012001290360370338200141106a41206a220b200c290300370300200141106a41186a220c2008290300370300200141106a41106a22082009290300370300200141106a41086a2209200d2903003703002001200129033837031041301013220a450d09200a2001290310370300200a2002370328200a41206a200b290300370300200a41186a200c290300370300200a41106a2008290300370300200a41086a2009290300370300200641306c41506a2004460d01200341306a210e2005200641306c6a220d41506a210f4101210b4101210c0340200e210302400340200341286a290300210220014188016a41206a2204200341206a29030037030020014188016a41186a2208200341186a29030037030020014188016a41106a2209200341106a29030037030020014188016a41086a2206200341086a290300370300200120032903003703880120022000540d01200d200341306a2203470d000c050b0b200141e0006a41206a22102004290300370300200141e0006a41186a220e2008290300370300200141e0006a41106a22112009290300370300200141e0006a41086a221220062903003703002001200129038801370360200141386a41206a22132010290300370300200141386a41186a2210200e290300370300200141386a41106a220e2011290300370300200141386a41086a221120122903003703002001200129036037033820042013290300370300200820102903003703002009200e2903003703002006201129030037030020012001290338370388010240200c200b470d00200b41016a220c200b490d09200b4101742210200c200c2010491b220cad42307e2214422088a70d092014a722104100480d090240200b450d00200a200b41306c20101015220a0d010c0b0b20101013220a450d0a0b200341306a210e200a200b41306c6a22102001290388013703002006290300211420092903002115200829030021162004290300211720102002370328201041206a2017370300201041186a2016370300201041106a2015370300201041086a2014370300200b41016a210b200f2003470d000c030b0b4100210c0c020b4101210b4101210c0b2007450d00200510160b2001200b3602402001200c36023c2001200a36023820014188016a41086a22034200370300200142003703880141ebf7c000411820014188016a1002200141e0006a41086a200329030037030020012001290388013703602001411036028c012001200141e0006a36028801200141386a20014188016a1017200c450d00200a10160b200141e0006a41086a220342003703002001420037036041cde2c000412c200141e0006a100220014188016a41086a2003290300370300200120012903603703880102400240024020014188016a411041acf1c300410041001000417f460d002001420037036020014188016a4110200141e0006a41084100100041016a41084d0d022001290360210041262104412610132203450d010c080b42012100412621044126101322030d070b200441011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b1010000b201041081014000b413041081014000b2003411e6a41002900e9dd40370000200341186a41002900e3dd40370000200341106a41002900dbdd40370000200341086a41002900d3dd40370000200341002900cbdd40370000024002402003200441cc0010152203450d0020032000370026200141e0006a41086a22044200370300200142003703602003412e200141e0006a100220014188016a41086a2004290300370300200120012903603703880120014188016a411041acf1c30041004100100021042003101602402004417f460d00200141b0016a24000f0b413510132203450d012003412d6a41002900c3dd40370000200341286a41002900bedd40370000200341206a41002900b6dd40370000200341186a41002900aedd40370000200341106a41002900a6dd40370000200341086a410029009edd4037000020034100290096dd40370000200141e0006a41086a220442003703002001420037036041b2e1c000412b200141e0006a100220014188016a41086a20042903003703002001200129036037038801024002400240024020014188016a411041acf1c300410041001000417f460d002001420037036020014188016a4110200141e0006a41084100100041016a41084d0d02200129036021000c010b420121000b20014197016a2001413a6a2d00003a0000200141013a009401200142b5808080d00637028c012001200336028801200120012f00383b009501200020014188016a1068200141e0006a41086a220342003703002001420037036041b2e1c000412b200141e0006a100220014188016a41086a200329030037030020012001290360370388010240024020014188016a411041acf1c300410041001000417f460d002001420037036020014188016a4110200141e0006a41084100100041016a41084d0d03200129036042017c21000c010b420221000b200141e0006a41086a220342003703002001420037036041b2e1c000412b200141e0006a100220014188016a41086a200329030037030020012001290360370388012001200037036020014188016a4110200141e0006a41081001200141b0016a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b41cc0041011014000b413541011014000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b200010162005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b200110162005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d00200410160b20020d000b0b0240200041b894c100460d0020002802002101200010162001450d0020012802002104200110162004450d00024020042802002201450d000340200410162001210420012802002200210120000d000b0b200410160b0b130020004107360204200041a8cec3003602000b130020004109360204200041a8d6c3003602000b130020004101360204200041b4d6c3003602000b130020004107360204200041f0d9c3003602000b130020004119360204200041b4e2c3003602000b130020004103360204200041ece3c3003602000bcc0403037f017e047f23004180026b220424000240024020012d000d450d00419ae6c3002102413121050c010b2001280200200141046a2205280200200141086a220628020010c20220054200370200200141b894c100360200200420022900002207370310024002400240024041e40110132208450d00200841003b010620084100360200200841086a200441206a41dc0110f6021a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a410810f802220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101802402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1015220b450d030c060b2004280210210b0c060b41ede5c3002102412d21050c060b200a1013220b0d030b200a41011014000b41e40141041014000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210f6021a200441086a200a28020036020020042004290310370300200441206a200410b70220014180023b010c410021020b200020053602042000200236020020044180026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210180240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610152203450d020c030b2004410e6a2105200228020021030c030b2006101322030d010b200641011014000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a4100290088f44037000020044100290082f4403700002002410e36020c2002410c6a200210180240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610152204450d020c030b200228020021040c030b2006101322040d010b200641011014000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a4100290088f44037000020074100290082f44037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710152204450d020c030b200341126a21030c030b2007101322040d010b200741011014000b20022007360204200220043602000b200241086a22052003360200200420066a4105360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710152204450d010c020b2007101322040d010b200741011014000b20022007360204200220043602000b2005200341046a360200200420036a41013600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610152205450d020c030b200228020021050c030b2006101322050d010b200641011014000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410836020c2002410c6a20021018200828020021064190f4c00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101522030d020c060b200641086a2104200228020021030c020b200910132203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101522030d010c060b200610132203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a220741f0f4c000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011014000b200641011014000bc61a05027f017e087f017e027f230041a0096b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241a8076a200241086a10d101024002400240024002400240024020022802b007450d00200241106a200241a8076a41880110f6021a20024198016a200241106a41880110f6021a200229039801200241ac016a2201200241ec016a220310a20220022903980110c10202400240024002402002290398012204500d00200241a8076a2004427f7c10a102200241a8076a2001412010f8020d0041002105200228029002210002400240024020024198026a280200220141f8016c41f801490d002001410c6c220610132207450d0b2001210820010d010c020b41042107410021082001450d010b200141f8016c2106200141037441786a21092007210103402002200036029804200241a8076a20024198046a10d001200141086a200241a8076a41086a280200360200200120022903a8073702002001410c6a2101200041f8016a2100200641887e6a22060d000b200941037641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001013220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241a8076a200a200610cc020240200b450d00200a10160b02402005450d002005410c6c21002007210103400240200141046a280200450d00200128020010160b2001410c6a2101200041746a22000d000b0b02402008450d00200710160b02402003200241a8076a412010f802450d0041b4eec300410e100920034120100a200241a8076a4120100a0b2003200241a8076a412010f8020d0520024194026a280200210520024198016a41f8006a280200210720024198016a4180016a2802002106200241a0026a20024198016a41f80010f6021a2007200641f8016c6a210020022903a002210d20072101024002400240024002402006450d0020024198046a41f8006a2109200241a8076a41086a210c200721010340200241b8066a200141f00010f6021a200141f0006a290300210420024198036a200141f8006a41800110f6021a20044203510d0220024198046a200241b8066a41f00010f6021a20024198046a41f0006a2004370300200920024198036a41800110f6021a200220024198046a36029006200241a8076a20024190066a10d001200c2802002106024020022802ac07450d0020022802a80710160b200241a8076a20024198046a41f80110f6021a200241003602a00620024190066a200241a8076a2006200241a0066a109a022002280290064101460d0502402002280294062206450d00200620024190066a41086a28020010090b200141f8016a22012000470d000b200021010b20012000470d010c020b200141f8016a22012000460d010b200241b0086a2106200241a8076a41f8006a2109034020024198036a200141f00010f6021a200141f0006a2903002104200241a8076a200141f8006a41800110f6021a20044203510d01200241b8066a20024198036a41f00010f6021a20024198046a200241a8076a41800110f6021a200241a8076a200241b8066a41f00010f6021a200241a8076a41f0006a2004370300200920024198046a41800110f6021a200610d301200141f8016a22012000470d000b0b02402005450d00200710160b10a502200d10be02200241a8076a10a9022002200241a0026a41106a280200220b3602b00620022802a80221032002200241a8076a41106a28020022013602b406200b2001470d0720022802b007210a02400240200b450d00410021050340024002402003200541286c22006a22012d00002206200a20006a22002d0000470d0002400240024020064101460d0020064102470d01200141086a2802002209200041086a280200470d03200141186a210c2009450d02200c290300200041186a290300520d03200141206a290300200041206a290300520d03200141146a280200220e200041146a280200470d032001410c6a28020022092000410c6a280200220c460d04417f21070340200741016a2207200e4f0d052009200c412010f8020d04200c41206a2108200941206a210f200941286a2109200c41286a210c200f2903002008290300510d000c040b0b2001410c6a28020022082000410c6a280200470d022008450d03200141046a2802002209200041046a280200220c460d034100210703402009200c412010f8020d03200941206a2109200c41206a210c200741016a22072008490d000c040b0b2003200a460d02200141016a200041016a412010f8020d010c020b200c290300200041186a290300520d00200141146a280200220e200041146a280200470d002001410c6a28020022092000410c6a280200220c460d01417f21070340200741016a2207200e4f0d022009200c412010f8020d01200c41206a2108200941206a210f200941286a2109200c41286a210c200f2903002008290300510d000b0b41b0f5c0004114100920024198046a2001107d200228029804220920024198046a41086a2206280200100a0240200228029c04450d00200910160b20024198046a2000107d20022802980422092006280200100a0240200228029c04450d00200910160b20012d000020002d00002206470d030b024002400240024020064101460d0020064102470d01200141086a2802002206200041086a280200470d06200141186a21092006450d022009290300200041186a290300520d06200141206a290300200041206a290300520d06200141146a2802002207200041146a280200470d062001410c6a28020022012000410c6a2802002200460d03417f21060340200641016a220620074f0d0420012000412010f8020d07200041206a2109200141206a210c200141286a2101200041286a2100200c2903002009290300510d000c070b0b2001410c6a28020022092000410c6a280200470d052009450d02200141046a2802002201200041046a2802002200460d0241002106034020012000412010f8020d06200141206a2101200041206a2100200641016a22062009490d000c030b0b2003200a460d01200141016a200041016a412010f802450d010c040b2009290300200041186a290300520d03200141146a2802002207200041146a280200470d032001410c6a28020022012000410c6a2802002200460d00417f21060340200641016a220620074f0d0120012000412010f8020d04200041206a2109200141206a210c200141286a2101200041286a2100200c2903002009290300510d000c040b0b200541016a2205200b490d000b0b20024198046a41186a2201420037030020024198046a41106a2200420037030020024198046a41086a22064200370300200242003703980420024198046a100520024198036a41186a200129030037030020024198036a41106a200029030037030020024198036a41086a20062903003703002002200229039804370398030240200241d4026a220120024198036a412010f802450d0041b4eec300410e100920014120100a20024198036a4120100a0b200120024198036a412010f8020d090240200b450d00200b41286c2100200a21010340024020012d00002206450d00024020064101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b0240200241b4076a280200450d00200a10160b0240200241a0026a41106a2802002200450d00200241a0026a41086a2802002101200041286c21000340024020012d00002206450d00024020064101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b0240200241ac026a280200450d00200241a8026a28020010160b200241a0096a240042010f0b41c8d1c2001038000b2002280294062202450d0120024103460d0220024104460d034198d1c2001038000b41a0d0c2001038000b41e8d0c2001038000b41d0d0c2001038000b4180d1c2001038000b200241ac046a41013602002002410236029c012002419ce7c300360298012002420137029c04200241a4e7c30036029804200220024198016a3602a80420024198046a41ace7c3001046000b41b8d0c2001038000b2002200241b0066a3602a0062002200241b4066a3602900620024198046a41146a410036020020024198036a41146a4105360200200241a4036a410a360200200241b8066a41146a4103360200200241acf1c3003602a8042002420137029c04200241b0d1c200360298042002410a36029c03200242033702bc06200241e4efc3003602b806200220024198046a3602a803200220024190066a3602a0032002200241a0066a36029803200220024198036a3602c806200241b8066a41b8d1c2001046000b41e0d1c2001038000b200641041014000b1010000b200041041014000bcb03010b7f230041206b22032400024002402002450d0020024102742204101322050d01200441041014000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1015220a0d020c080b200820046a21070c020b200d1013220a450d060b200d210b0b200a20046a200c200810f6021a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a10160b02402002450d00200510160b200341206a24000f0b1010000b200d41011014000be70201027f23004180026b22022400024002402001450d00200220003602000c010b200241acf1c3003602000b2002200136020420024180016a200210ce010240200228028801450d00200241086a20024180016a41f80010f6021a20022903082002411c6a200241dc006a10a202200229030810c1020240200241086a41106a2802002200450d0020022802102101200041286c21000340024020012d00002203450d00024020034101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b0240200241146a280200450d00200241106a28020010160b20024180026a240042010f0b2002411c6a4101360200200241023602fc01200241a4e8c3003602f8012002420137020c200241a4e7c3003602082002200241f8016a360218200241086a41ace7c3001046000b060010b401000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410132203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410152205450d020c040b200228021021050c040b2004101322050d020b200441011014000b410441011014000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41033a00004116200241106a10d00241002103024003402003418ce6c0006a28020020034190e6c0006a280200200241106a10d1020240024002400240024002400240024002400240024002400240024002400240024020034194e6c0006a2802004101470d0020034198e6c0006a2802002003419ce6c0006a280200200241106a10d102200341a0e6c0006a22062802004102460d010c020b200220034198e6c0006a28020011030020022802002002280204200241106a10d102200341a0e6c0006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101522060d020c040b200228021021060c020b200710132206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341b0e6c0006a22062802004102470d020c030b200741011014000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101522070d020c0d0b200228021021070c020b200810132207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d202200341b0e6c0006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101522070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101522060d050c0a0b200228021021060c050b200810132207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d302200341c0e6c0006a22062802004102460d030c080b200710132206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c0e6c0006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101522060d020c070b200228021021060c020b200710132206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341b00c470d050c060b200841011014000b200841011014000b200741011014000b200741011014000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101522070d020c070b200228021021070c020b200810132207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d402200341c8006a220341b00c470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101802400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810152205450d020c050b2002280210220520046a2006200310f6021a200420036a21032007450d060c050b2008101322050d030b200841011014000b1010000b200841011014000b2002200836021420022005360210200520046a2006200310f6021a200420036a21032007450d010b200610160b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410152203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210152203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101522030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101522030d0a0c0e0b2004101322030d110b200441011014000b200128020021030c050b200128020021030c070b2002101322030d0b0b200241011014000b200210132203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410132203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101522030d020c070b200128020021030c020b200210132203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011014000b200441011014000b200241011014000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510152204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310152204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101522040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101522040d0a0c0d0b2005101322040d100b200541011014000b200228020021040c050b200228020021040c070b2003101322040d0a0b200341011014000b200310132204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510132204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101522040d020c060b200228020021040c020b200310132204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011014000b200541011014000b200341011014000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310152204450d020c040b200228020021040c040b2003101322040d020b200341011014000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110f6021a0bff0901097f230041206b22022400024002400240024002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d0022000450d01200041e4006c2104410021050340200320056a220041046a280200200041086a280200200110d102200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240200041e0006a2d00004101470d0020072009470d01200941016a22072009490d0d2009410174220a20072007200a491b220a4100480d0d2009450d0320012802002009200a101522070d040c0e0b20072009470d01200941016a22072009490d0c2009410174220a20072007200a491b220a4100480d0c2009450d0520012802002009200a101522070d060c0e0b200128020021070c030b200128020021070c050b200a10132207450d0a0b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10132207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b2000410c6a200110e40202400240200041c0006a2802004101470d00200041c4006a280200200041cc006a280200200110d1020c010b200241106a200041c4006a280200200041c8006a28020028020c11020020022802102209200241106a41086a280200200110d1022002280214450d00200910160b200041d4006a28020021090240200041d0006a2802004101470d002009200041dc006a280200200110e5022004200541e4006a2205470d010c030b2009200041d8006a280200200110e5022004200541e4006a2205470d000c020b0b200241086a200041046a28020011030020022802082103200228020c2200200110d0022000450d00200041e4006c2104410021050340200320056a220041046a280200200041086a280200200110d102200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240200041e0006a2d00004101470d0020072009470d01200941016a22072009490d0c2009410174220a20072007200a491b220a4100480d0c2009450d0320012802002009200a101522070d040c0f0b20072009470d01200941016a22072009490d0b2009410174220a20072007200a491b220a4100480d0b2009450d0520012802002009200a101522070d060c0f0b200128020021070c030b200128020021070c050b200a10132207450d0b0b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10132207450d090b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b2000410c6a200110e40202400240200041c0006a2802004101470d00200041c4006a280200200041cc006a280200200110d1020c010b200241106a200041c4006a280200200041c8006a28020028020c11020020022802102209200241106a41086a280200200110d1022002280214450d00200910160b200041d4006a28020021090240200041d0006a2802004101470d002009200041dc006a280200200110e5022004200541e4006a2205470d010c020b2009200041d8006a280200200110e5022004200541e4006a2205470d000b0b200241206a24000f0b1010000b200a41011014000b200a41011014000b200a41011014000b200a41011014000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d0022000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d1022000410c6a200110e302200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c030b2006200041246a280200200110e50220042005412c6a2205470d000c020b0b200241086a200041046a28020011030020022802082103200228020c2200200110d0022000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d1022000410c6a200110e302200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c020b2006200041246a280200200110e50220042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d0022000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d102200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e5020c010b2006200041146a280200200110e5020b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c030b2006200041246a280200200110e50220042005412c6a2205470d000c020b0b200241086a200041046a28020011030020022802082103200228020c2200200110d0022000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d102200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e5020c010b2006200041146a280200200110e5020b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c020b2006200041246a280200200110e50220042005412c6a2205470d000b0b200241106a24000be00301017f230041a0066b22022400024002402001450d00200220003602000c010b200241acf1c3003602000b2002200136020420024198046a200210d2010240024002400240024002402002290388054203510d00200241086a20024198046a41f80110f6021a20024180026a200241086a41f80110f6021a200220024180026a36029804200241f8036a20024198046a10d001200228028004210120024198046a20024180026a41f80110f6021a20024198066a200228028004360200200220022903f8033703900620024188046a20024198046a200120024190066a109a02024002402002280288044101470d004280828898f01f200228028c04410374ad88a7210041011013210141010d010c050b200228028c0441004721004101101321014100450d040b2001450d01200141013a000020014101410210152201450d020c040b20024194026a41013602002002410236020c200241bce8c3003602082002420137028402200241a4e7c300360280022002200241086a3602900220024180026a41ace7c3001046000b410141011014000b410241011014000b2001450d01200141003a0000200141014102101522010d00410241011014000b200120003a0001200241a0066a24002001ad428080808020840f0b410141011014000bb71203027f017e0b7f230041c0016b2202240010a502200241086a41086a2203420037030020024200370308419be8c200410d200241086a100220024180016a41086a20032903003703002002200229030837038001420021040240024002400240024002400240024020024180016a411041acf1c300410041001000417f460d002002420037030820024180016a4110200241086a41084100100041016a41084d0d01200229030821040b200410be02200241b0016a41086a22034200370300200242003703b00141fbe5c2004115200241b0016a1002200241a0016a41086a2003290300370300200220022903b0013703a001200241a0016a411041acf1c300410041001000417f460d01410021052002410036020841042106410121070240200241a0016a4110200241086a41044100100041016a41044d0d0020022802082208450d032008ad420c7e2204422088a70d042004a722034100480d040240200310132206450d00200621094100210a03400240024002400240024002400240411410132203450d00200341106a41002800f9e742360000200341086a41002900f1e742370000200341002900e9e7423700002003411441281015220b450d01200b200a360014200241b0016a41086a22034200370300200242003703b001200b4118200241b0016a1002200241086a41086a2003290300370300200220022903b001370308200241086a411041acf1c300410041001000417f460d0520024210370284012002200241086a36028001200220024180016a101202402002280200450d0020022802042203417f4c0d03024002402003450d002003101b220c450d0620024180016a41086a22052005280200220520034100200228028001200228028401200c20032005100022052005417f461b2205200520034b1b22056a36020020052003470d010c070b4101210c2002280280012002280284014101410020024180016a41086a28020010001a41002003460d060b2003450d00200c10160b41b6e7c20041331029000b411441011014000b412841011014000b100f000b200341011014000b200241086a41101003200c0d010b4101210c410021030b200b1016200941086a2003360200200941046a20033602002009200c3602002009410c6a21092008200a41016a220a470d000b41002107200821050c040b200341041014000b41b6e7c20041331029000b41b6e7c20041331029000b4101210741002105410421060b410421084100210b4100210d02400240024002402005410c6c2203410c490d002003410c6e220d41037422094100480d04200910132208450d010b0240200620036a220a2006460d004100210b200821032006210903402009280200210c200341046a200941086a2802003602002003200c360200200341086a2103200b41016a210b2009410c6a2209200a470d000b0b20024180016a2008200b10cc020240200d450d00200810160b02402005450d002005410c6c21092006210303400240200341046a280200450d00200328020010160b2003410c6a2103200941746a22090d000b0b024020070d00200610160b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a220b4200370300200242003703b00141a8e8c2004115200241b0016a1002200241a0016a41086a200b290300370300200220022903b0013703a001200241a0016a4110200241086a41201001200241086a10a902200241003602b801200242013703b0010240412010132203450d00200242a080808080043702b401200220033602b0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241b0016a10b10102400240024020022802b4012209200b280200220c6b41204f0d00200c41206a2203200c490d072009410174220b20032003200b491b220a4100480d072009450d0120022802b0012009200a1015220b450d020c050b200c41206a210320022802b001210b0c050b200a1013220b0d030b200a41011014000b412041011014000b200941041014000b2002200a3602b4012002200b3602b001200a21090b200241b0016a41086a220a2003360200200b200c6a220c41086a200241c4006a290200370000200c41106a200241cc006a290200370000200c41186a200241d4006a290200370000200c200229023c3700000240200920036b411f4b0d00200341206a220c2003490d0120094101742208200c200c2008491b220c4100480d010240024002402009450d00200b2009200c1015220b450d010c020b200c1013220b0d010b200c41011014000b2002200c3602b4012002200b3602b0010b200a200341206a360200200b20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a280200220f3602800120024180016a200241b0016a10180240200f450d00200f41286c2106200241b0016a41086a2207280200210320022802b401210a200e210b034020024180016a200b107d20022802800121080240024002400240200a20036b20024180016a41086a280200220c4f0d002003200c6a22092003490d06200a4101742205200920092005491b220d4100480d06200a450d0120022802b001200a200d101522050d020c070b2003200c6a210920022802b00121050c020b200d10132205450d050b2002200d3602b401200220053602b001200d210a0b20072009360200200520036a2008200c10f6021a0240200228028401450d00200810160b200b41286a210b20092103200641586a22060d000b0240200f450d00200f41286c210b200e21030340024020032d0000220c450d000240200c4101470d00200341086a280200450d01200341046a2802001016200341286a2103200b41586a220b0d020c030b200341106a280200450d002003410c6a28020010160b200341286a2103200b41586a220b0d000b0b200241146a280200450d040c030b200241b8016a280200210920022802b0012105200241146a2802000d020c030b1010000b200d41011014000b200e10160b200241c0016a24002009ad4220862005ad840b9e0f03017f037e117f23004190026b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241306a200241086a10d8020240024002402002280230450d00200241106a41086a2201200241306a41086a220028020036020020022002290330370310200241206a41086a200128020036020020022002290310370320200241a0016a200241206a10d90220022802a0014101460d01200241a0016a41086a2201290300210320014200370300200242003703a00141ee94c300410d200241a0016a100220002001290300370300200220022903a00137033042002104024002400240200241306a411041acf1c300410041001000417f460d00200242003703a001200241306a4110200241a0016a41084100100041016a41084d0d0120022903a00121040b200241a0016a41086a22014200370300200242003703a001419095c3004117200241a0016a1002200241306a41086a2001290300370300200220022903a00137033002400240200241306a411041acf1c300410041001000417f460d00200242003703a001200241306a4110200241a0016a41084100100041016a41084d0d0320022903a001210541f801210141f80110132206450d010c060b4203210541f801210141f801101322060d050b200141081014000b41b6e7c20041331029000b41b6e7c20041331029000b200241b4016a41013602002002410236029401200241d4e8c30036029001200242013702a401200241a4e7c3003602a001200220024190016a3602b001200241a0016a41ace7c3001046000b41df96c300412820022802a401200241a0016a41086a28020010db01000b2006200241a0016a41f00010f602220742023703702007410036028801200720022903900137037820074180016a20024190016a41086a29030037030020072003200520047c220420042003541b3703900120074198016a200241306a41e00010f6021a2002280220220821092002280224220a210b41002101037e02400240024020010e020001010b200941086a210020092f0106220d4103742101417f210c02400240024003402001450d0141e5e5c3002000410810f802220e450d03200141786a2101200c41016a210c200041086a2100200e417f4a0d000b200b0d010c020b200d210c200b450d010b200b417f6a210b2009200c4102746a41e4016a2802002109410021010c030b4108210f41032110417f21114102211241e401211341c7c8c300211441782115410121160c010b2008200f6a210020082f0106220d20107421014100210c02400240024002400240024003402001450d0120142000200f10f802220e450d02200120156a2101200c20166a210c2000200f6a2100200e20114a0d000b200c20116a210d0b200a450d01200a20116a210a2008200d2012746a20136a2802002108410121010c060b200841e0006a200c410c6c6a2200450d002000280208210120002802002100200242003703a001200241a0016a20002001410820014108491b10f6021a200141074d0d0120022903a0012103200241a0016a41086a22014200370300200242003703a00141dde8c2004115200241a0016a1002200241306a41086a2001290300370300200220022903a0013703304100210102400240200241306a411041acf1c300410041001000417f460d0020024210370294012002200241306a36029001200241a0016a20024190016a101e20022802a001220f450d04200241a8016a280200210120022802a401210c0c010b4108210f4100210c0b4100210002402001417f6a220e20014b0d00200e20014f0d00200f200e4103746a2201450d00200129030020035221000b0240200c450d00200f10160b024002402000450d00200741f80141f00310152206450d05200641f8016a200241a0016a41f00010f6021a200642023703e8022006200337038803200641073602800320062002290390013703f002200641f8026a20024198016a29030037030020064190036a200241306a41e00010f6021a410221090c010b410121090b20022802202002280224200228022810c2022002410036023820024201370330200220093602a001200941f8016c2115200241a0016a200241306a10182002280234210e20022802382101200241a0016a41086a21084100210f02400240034020022006200f6a36029001200241a0016a20024190016a10d00120022802a00121110240024002400240200e20016b2008280200220c4f0d002001200c6a22002001490d05200e4101742214200020002014491b22164100480d05200e450d012002280230200e2016101522140d020c060b2001200c6a2100200228023021140c020b201610132214450d040b20022016360234200220143602302016210e0b200241306a41086a2000360200201420016a2011200c10f6021a024020022802a401450d00201110160b200021012015200f41f8016a220f470d000b200941f8016c210f410021010340200620016a4188016a10d301200f200141f8016a2201470d000b2006101620024190026a24002000ad4220862014ad840f0b1010000b201641011014000b41e8ebc200412b41cfc8c300412810db01000b41e8ebc200412b4181eac300412910db01000b41b6e7c20041331029000b41f00341081014000b410121010c000b0b870a06027f017e097f017e077f017e23004190026b22022400200241086a2001101a024002402002280208450d000240024002400240024002400240024002400240024002400240024002400240200228020c2203ad2204421d88a70d002004420386a72205417f4c0d00024002402005450d00200510132206450d032003450d010c040b4101210620030d030b410021054100210b2006450d100c030b100f000b200541011014000b200141046a210741002108410021094100210a2003210b034020024200370330200241306a2001280200220c20072802002205410820054108491b220d10f6021a20072005200d6b3602002001200c200d6a360200200541074d0d02200a41016a2105200229033021040240200a200b470d002008200520052008491b220bad420386220e422088a70d09200ea7220d4100480d090240200a450d0020062009200d101522060d010c0b0b200d10132206450d0a0b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0d0b2005ad422086200bad84210e200241306a200110192002280230220f450d0120022802342110200241306a41086a2802002205200e422088a7470d0220024200370214200241b894c100360210200f2005410c6c6a210320054103742205450d03200620056a2111200241106a41086a2112200241c4006a2113200241c0006a2114200f21012006210b0340200122052003460d062005410c6a210120052802002215450d05200529020421042002200b2900002216370320024002402002280210220841b894c100460d00200228021421070c010b41e40110132208450d0a41002107200841003b010620084100360200200841086a200241306a41dc0110f6021a20024100360214200220083602100b200b41086a210b02400340200841086a210a20082f0106220c410374210541002109024003402005450d01200241206a200a410810f802220d450d03200541786a2105200941016a2109200a41086a210a200d417f4a0d000b2009417f6a210c0b02402007450d002007417f6a21072008200c4102746a41e4016a28020021080c010b0b2013201637020020142012360200200241306a410c6a200c360200200241306a41086a200241106a36020020022008360234200241003602302002200437022420022015360220200241306a200241206a10b702200b2011470d010c060b20082009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d00200510160b200b2011470d000c050b0b200b450d0b0c0a0b200ea70d090c0a0b2000410036020002402005450d002005410c6c210a200f210503400240200541046a280200450d00200528020010160b2005410c6a2105200a41746a220a0d000b0b02402010450d00200f10160b200ea7450d0a2006101620024190026a24000f0b200f21010b200ea7450d050c040b20032101200ea70d030c040b1010000b200d41011014000b41e40141041014000b200610160b024020012003460d00034020012802002205450d010240200141046a280200450d00200510160b2001410c6a22012003470d000b0b02402010450d00200f10160b200241306a41086a2205200241106a41086a28020036020020022002290310370330200041086a20052802003602002000200229033037020020024190026a24000f0b200610160b200041003602000b20024190026a24000bae0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141c6eac3002006410810f8022208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2206450d00200628020821012006280200210620024200370308200241086a20062001410820014108491b10f6021a200141074d0d01200041086a2002290308370300410021010c030b200041f7eac300360204200041086a41283602000c010b200041ceeac300360204200041086a41293602000b410121010b20002001360200200241106a24000baa3a170c7f017e037f017e097f027e017f017e087f047e057f027e027f037e067f027e037f017e187f027e0d7f027e057f230041d0026b22022400024002402001450d00200220003602100c010b200241acf1c3003602100b20022001360214200241f0006a200241106a10d1010240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10d8022002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241b894c100360250200241d0006a41086a210a2004450d0241f801210b2008200441f8016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f21204102212141782122418801212341ee94c300212441acf1c300212541172126419095c3002127423c212842808080807021294225212a427f212b41f9e9c300212c41e000212d4107212e2008212f410021300c030b2002412c6a410136020020024102360254200241f0e8c3003602502002420137021c200241a4e7c3003602182002200241d0006a360228200241186a41ace7c3001046000b20024184016a410136020020024102360254200241f0e8c30036025020024201370274200241a4e7c3003602702002200241d0006a36028001200241f0006a41ace7c3001046000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b204f2050410c6c6a41a07f460d01411e2144419febc30021510c020b02400240024002400240024020300e06000102030405050b202f200d6a290300200e520d140240202f280288012201450d002001450d230c540b202f290390012131200241f0006a200241c0006a10d9020240024020022802704101470d00200f3502002132200228027421334101213420112d0000450d010c0d0b200f290300213542002132200f42003703002002420037037020242010200241f0006a10022009200f290300370300200220022903703703180240200241186a20172025201b201b10002020460d0020024200370370200241186a2017200241f0006a4108201b100041016a41084d0d0b200229037021320b200f42003703002002420037037020272026200241f0006a10022009200f29030037030020022002290370370318024002400240200241186a20172025201b201b10002020460d0020024200370370200241186a2017200241f0006a4108201b100041016a41084d0d0e200229037021362031203520287c580d020c010b420321362031203520287c580d010b2037202983202a8421324101213441ba96c300213320112d0000450d010c0d0b410021342031203620327c22325a0d2220112d00000d0c0b024002402034450d0020022802502002280254200a28020010c20220024200370254200241b894c100360250200220123703180c010b2002280250213820022012370318203841b894c100460d00200228025421390c210b201310132238450d0c41002139203841003b010620384100360200203841086a200241f0006a201410f6021a20024100360254200220383602500c1f0b2045280200224f20476a2100204f2f0106223d204874210141002150024003402001450d01204c2000204710f802223c450d162001204d6a21012050204e6a2150200020476a2100203c20494a0d000b205020496a213d0b2046450d04204620496a2146204f203d204a746a204b6a2145410121300c150b2053205b2059205a6a220120012059491b6a22012053490d4d2053205a742200200120012000491b2254ad205c862231205d88a70d4d2031a72201205e480d4d02402053450d0020552053205f742001101522550d0f0c060b200110132255450d05410321300c170b20552053205f746a20583602002053205a6a21532059450d260240205720442f01064f0d00204420572060746a20616a21582057205a6a21572059205b6a215920542053460d0c0c0d0b41012101024020442f01042200204428020022442f0106490d004101210103402001205a6a210120442f01042200204428020022442f01064f0d000b0b204420002060746a20616a215820442000205f746a20626a2802002144410021572001205a460d24205a20016b2101034020442802e40121442001205a6a22010d000c250b0b2064206a206920636a220120012069491b6a22012064490d4b20642063742200200120012000491b2265ad206b862231206c88a70d4b2031a72201206d480d4b02402064450d0020662064206e742001101522660d100c050b200110132266450d04410521300c190b20662064206e746a2068360200206420636a216402402069450d000240206720512f01064f0d0020512067206f6c6a20706a2168206720636a21672069206a6a216920652064460d0e0c0f0b41012101024020512f01042200205128020022512f0106490d00410121010340200120636a210120512f01042200205128020022512f01064f0d000b0b20512000206f6c6a20706a216820512000206e746a20716a28020021514100216720012063460d22206320016b2101034020512802e4012151200120636a22010d000c230b0b206621502053413f4b0d360c270b412f214441ede6c30021510b2002204436026420022051360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c902200228020022440d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c210b200141041014000b200141041014000b41b6e7c20041331029000b41b6e7c20041331029000b41cbe6c3004122419ae6c300413110db01000b41e40141041014000b41cbe6c30041222044200228020410db01000b410221300c080b410321300c080b410321300c090b410421300c090b410521300c090b410521300c0a0b410021010c450b410121010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b410221010c3b0b4100213b0c030b4100213b0c030b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b202f20236a28020022010d34410121010c060b202f29039001213e200f42003703002002420037037020272026200241f0006a10022009200f290300370300200220022903703703180240024002400240200241186a20172025201b201b10002020460d0020024200370370200241186a2017200241f0006a4108201b100041016a41084d0d02200229037021310c010b420321310b202b203120317c223f203f2031541b223f500d01200241c0006a2140200228024421410c030b41b6e7c20041331029000b41d885c0001038000b0240024002400240024002400240024002400240024002400240203b0e020001010b203841086a210020382f0106223a20157421014100213c024003402001450d01200241186a2000410810f802223d450d08200120226a2101203c41016a213c200041086a2100203d20204a0d000b203c20206a213a0b02402039450d00203920206a21392038203a2021746a20136a28020021384100213b0c0e0b201620123702002018200a360200201a203a360200200f200241d0006a360200200220383602742002201b3602702009201b3602002002201c3703184101101321010240024002400240024002402034450d002001450d0f200141013a00002002201d37021c2002200136021820022032a72201360260200241e0006a200241186a1018200228021c223c200928020022006b20014f0d01200020016a223d2000490d40203c410174223a203d203d203a491b223d201b480d40203c450d022002280218203c203d1015223c0d030c100b2001450d0c2001201b3a00002002201d37021c2002200136021820014101201e10152201450d0d200120323700012002201f37021c200220013602180c040b2002280218213c0c020b203d1013223c450d0d0b2002203d36021c2002203c3602180b2009200020016a360200203c20006a2033200110f6021a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10b702201120343a0000200241d0006a20196a201b3a00002032213720340d01410021010c100b2040280200223a41086a2100203a2f0106224220157421014100213c02400240024003402001450d01202c2000410810f802223d450d02200120226a2101203c41016a213c200041086a2100203d20204a0d000b203c20206a21420b2041450d01204120206a2141203a20422021746a20136a21404101213b0c100b203a202d6a203c20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10f6021a2001202e4d0d02203e203f8020022903702243520d040c3f0b204342808080807083421c84213141aaeac30021440c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b20434280808080708342298421314181eac30021440b2031a721510c010b4131215141cb86c00021440b2002205136026420022044360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c902200228020822440d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41cbe6c300412241ede5c300412d10db01000b410141011014000b410941011014000b410141011014000b203d41011014000b41cbe6c30041222044200228020c10db01000b4101213b0c010b410221010c020b410221010c010b410221010c000b0b2069206a6a216902400240024020652064470d00410421300c010b410521300c010b410221010c340b410221010c330b2059205b6a215902400240024020542053470d00410221300c010b410321300c010b410221010c330b410221010c320b20022802402002280244200228024810c20202402006450d00200641286c2151200321440340024020442d00002201450d00024020014101470d00204441086a280200450d01204441046a2802001016204441286a2144205141586a22510d020c030b204441106a280200450d002044410c6a28020010160b204441286a2144205141586a22510d000b0b02402007450d00200310160b02402004450d00200441f8016c215120084188016a21440340204410d301204441f8016a2144205141887e6a22510d000b0b02402005450d00200810160b410110132244450d05204420022d007c3a000020444101410210152252450d06205220022d007d3a0001200228027022512144024020022802742200450d002051214420002101034020442802e40121442001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782230450d002030417f6a215320442f0106450d01204441086a213c410121000c020b4100215441042155410421564100215320000d030c040b0240024020442f01042200204428020022442f01064f0d00410121010c010b410121010340200141016a210120442f01042200204428020022442f01064f0d000b0b204420004103746a41086a213c204420004102746a41e8016a28020021444100210020014101460d00410120016b2101034020442802e4012144200141016a22010d000b0b417f205341016a220120012053491b2254ad2231421e88a70d042031420286a72201417f4c0d04024002400240024002402001450d00200110132255450d0d2055203c3602002053450d020c010b410421554104203c3602002053450d010b200020442f01064f0d01200041016a2157204420004103746a41086a21580c020b410121530c020b0240024020442f01042200204428020022442f01064f0d00410121010c010b410121010340200141016a210120442f01042200204428020022442f01064f0d000b0b204420004103746a41086a2158204420004102746a41e8016a28020021444100215720014101460d00410120016b2101034020442802e4012144200141016a22010d000b0b2030417e6a21594101215a417f215b4202215c4220215d4100215e4102215f410321604108216141e80121624101215320544101470d0b0c0a0b205521562002280270215120022802742200450d010b20002101034020512802e40121512001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002263450d002063417f6a216420512f0106450d01205141e0006a2130410121000c020b410021654104216641042150410021642053413f4d0d020c110b0240024020512f01042200205128020022512f01064f0d00410121010c010b410121010340200141016a210120512f01042200205128020022512f01064f0d000b0b20512000410c6c6a41e0006a2130205120004102746a41e8016a28020021514100210020014101460d00410120016b2101034020512802e4012151200141016a22010d000b0b417f206441016a220120012064491b2265ad2231421e88a70d012031420286a72201417f4c0d01024002400240024002402001450d00200110132266450d0b206620303602002064450d020c010b41042166410420303602002064450d010b200020512f01064f0d01200041016a216720512000410c6c6a41e0006a21680c020b41012164206621502053413f4b0d110c020b0240024020512f01042200205128020022512f01064f0d00410121010c010b410121010340200141016a210120512f01042200205128020022512f01064f0d000b0b20512000410c6c6a41e0006a2168205120004102746a41e8016a28020021514100216720014101460d00410120016b2101034020512802e4012151200141016a22010d000b0b2063417e6a216941012163417f216a4202216b4220216c4100216d4102216e410c216f41e000217041e80121714101216420654101470d0a0c090b41012104410110132263450d03206320534102743a000020534102742251450d140c0f0b100f000b410141011014000b410241011014000b410141011014000b200141041014000b200141041014000b410221300c030b410321300c030b410421300c030b410521300c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402053418080014f0d0041022104410210132263450d02206320534102744101723b0000205341027422510d010c060b024020534180808080044f0d0041042104410410132263450d0320632053410274410272360000205341027422510d010c060b410110132244450d03204441033a00004105210420444101410510152263450d042063205336000120534102742251450d050b410020046b21442004215302400340205628020021010240200420446a41074b0d00205341086a22002053490d152004410174225a20002000205a491b22004100480d15024002402004450d00206320042000101522630d010c040b200010132263450d030b200021040b205641046a2156206320536a2001290000370000204441786a2144205341086a21532051417c6a22510d000b2064413f4b0d070c060b200041011014000b410241011014000b410441011014000b410141011014000b410541011014000b200421532064413f4b0d010b41012151410110132256450d08205620644102743a00004101210120640d010c020b02402064418080014f0d0041022151410210132256450d07205620644102744101723b00000c010b024020644180808080044f0d0041042151410410132256450d06205620644102744102723600000c010b410110132244450d04204441033a00004105215120444101410510152256450d03205620643600010b2064410274215a205121010340205028020022442802002164024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020442802082244413f4b0d0020512001470d01205141016a22012051490d2120514101742200200120012000491b22004100480d212051450d05205620512000101522560d060c0f0b2044418080014f0d01205120016b41014b0d02200141026a22002001490d2020514101742247200020002047491b22004100480d202051450d0b205620512000101522560d0c0c0f0b205121000c050b20444180808080044f0d01205120016b41034b0d05200141046a22002001490d1e20514101742247200020002047491b22004100480d1e024020510d00200010132256450d100c070b205620512000101522560d060c0f0b205121000c090b20512001470d05205141016a22012051490d1c20514101742200200120012000491b22004100480d1c0240024020510d00200010132256450d100c010b20562051200010152256450d0f0b205121010c060b200010132256450d090b205121010b205620016a20444102743a00002000200141016a22016b20444f0d060c0c0b205121000b205620016a20444102744102723600002000200141046a22016b2044490d0a0c040b205121000b205620016a41033a000002402000200141016a22516b41034b0d00205141046a22472051490d1620004101742230204720472030491b22474100480d16024002402000450d00205620002047101522560d010c080b204710132256450d070b204721000b205620516a20443600002000200141056a22016b2044490d080c020b200010132256450d030b205620016a20444102744101723b00002000200141026a22016b2044490d060b200021510c060b200041011014000b200041011014000b204741011014000b200041011014000b200041011014000b200120446a22512001490d0c20004101742247205120512047491b22514100480d0c02402000450d00205620002051101522560d010c040b205110132256450d030b205041046a2150205620016a2064204410f6021a200120446a2101205a417c6a225a0d000b0b024002400240200420536b20014f0d00205320016a22442053490d0c20044101742200204420442000491b22004100480d0c2004450d0120632004200010152263450d020c090b205320016a2144206320536a2056200110f6021a2051450d0a0c090b2000101322630d070b200041011014000b205141011014000b410541011014000b410141011014000b410441011014000b410241011014000b410141011014000b20002104206320536a2056200110f6021a2051450d010b205610160b02402065450d00206610160b02402054450d00205510160b02402044450d00204441026a22512044490d0120514104205141044b1b22014100480d0120524102200110152252450d02205241026a2063204410f6021a2004450d040c030b204441026a2151205241026a2063204410f6021a20040d020c030b1010000b200141011014000b206310160b20022802702002280274200241f8006a28020010c202200241d0026a24002051ad4220862052ad840f0b20014101470d00202f280290012021460d010b202f200b6a222f200c470d01410021010c050b200241c0006a2145200228024421464108214741032148417f21494102214a41e401214b41e5e5c300214c4178214d4101214e0c010b410021300c010b410121300c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a2203420037030020024200370330418ae8c2004111200241306a1002200241206a41086a2003290300370300200220022903303703200240024002400240200241206a411041acf1c300410041001000417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010002203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010132203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101322030d020b200441011014000b41b6e7c20041331029000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bf91405037f017e017f017e087f230041c0086b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241c8066a200241086a10d20102400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903b8074203510d00200241106a200241c8066a41f80110f6021a20024188026a200241106a41f80110f6021a200220024188026a3602a005200241c8066a200241a0056a10d00120022802d0062103024020022802cc06450d0020022802c80610160b200241c8066a20024188026a41f80110f6021a200241a0056a200241c8066a109b0202400240024002400240024020022802a0054101470d0020022802a405210120022802a8052200411a460d0120004115470d024102210441f6012100200141e8d5c200460d0d200141e8d5c200411510f8020d020c0d0b20024180046a200241a0056a41086a41a00110f6021a0240024020024180046a41086a41002002290380044201511b2201450d002001450d00410021044103210020012003109d020d012001109c02210541012100200141206a410020011b220629030022072005540d014102210041022104200720054280027c560d01200520075a0d0541002108410021094100210a4100210b4104210c0340412010132200450d0920002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010152200450d0a200020053700200240200a200b470d00200a41016a220d200a490d232008200d200d2008491b220bad420c7e2207422088a70d232007a7220d4100480d230240200a450d00200c2009200d1015220c0d010c0d0b200d1013220c450d0c0b200c20096a220d2000360200200d41046a42c08080808005370200200841026a21082009410c6a2109200a41016a210a200542017c220520062903002207540d000c070b0b4176416c20011b2100410021040b200241b0046a10d3010c0c0b41002100200141aa81c300460d0141002104200141aa81c300411a10f802450d0b0b4100210441810121000c0a0b410021040c090b4104210c4100210a4100210b0b410c1013220f450d04412010132200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010152201450d062003ad210520012007370020200f42c08080808005370204200f2001360200200241b0046a10d301200241003602d006200242013703c80641012104410121014101101322000d080c130b2002419c026a41013602002002410236021420024188e9c3003602102002420137028c02200241a4e7c300360288022002200241106a3602980220024188026a41ace7c3001046000b412041011014000b41c00041011014000b200d41041014000b410c41041014000b412041011014000b41c00041011014000b200241003602d006200242013703c806024020044101460d0020044102470d02410110132201450d0d200241013602cc06200241d0066a22032003280200220941016a360200200220013602c806200120096a41023a000020022802cc0620032802002201470d04200141016a22032001490d1320014101742209200320032009491b22094100480d132001450d0820022802c8062001200910152203450d090c160b41012101410110132200450d0b0b200241c8066a41086a22032003280200220920016a360200200220013602cc06200220003602c806200020096a20013a000020022802cc062200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802c8062000200110152200450d050c0f0b410110132201450d0b200241013602cc06200241d0066a22032003280200220941016a360200200220013602c806200120096a41003a000020022802cc0620032802002201470d02200141016a22032001490d1020014101742209200320032009491b22094100480d102001450d0720022802c8062001200910152203450d080c0c0b20022802c80621000c0e0b20022802c80621030c120b20022802c80621030c0a0b2001101322000d0a0b200141011014000b2009101322030d0d0b200941011014000b2009101322030d040b200941011014000b200120011014000b410141011014000b410141011014000b200220093602cc06200220033602c806200241d0066a28020021010b200241d0066a200141016a360200200320016a20003a00000c070b200220013602cc06200220003602c806200241d0066a28020021010b200241c8066a41086a2209200141086a360200200020016a20053700002002200a3602880220024188026a200241c8066a10180240024002400240200a450d00200c200a410c6c6a210e200c210303402003280200210d2002200341086a28020022013602880220024188026a200241c8066a1018024002400240024020022802cc062208200928020022006b20014f0d00200020016a22062000490d0920084101742200200620062000491b22004100480d092008450d0120022802c80620082000101522080d020c060b20022802c80621080c020b200010132208450d040b200220003602cc06200220083602c806200928020021000b2009200020016a360200200820006a200d200110f6021a2003410c6a2203200e470d000b0b200241013602880220024188026a200241c8066a1018200f28020021082002200f28020822013602880220024188026a200241c8066a101802400240024020022802cc062203200928020022006b20014f0d00200020016a22092000490d0620034101742200200920092000491b22004100480d062003450d0120022802c8062003200010152203450d020c040b20022802c80621030c040b2000101322030d020b200041011014000b200041011014000b200220003602cc06200220033602c806200241d0066a28020021000b200241c8066a41086a2209200020016a360200200320006a2008200110f6021a02400240024020022802cc062200200928020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802c8062000200110152200450d020c040b20022802c80621000c040b2001101322000d020b200141011014000b1010000b200220013602cc06200220003602c806200241d0066a28020021010b200241c8066a41086a2203200141086a360200200020016a427f3700002003280200210320022802c806210920044101470d030240200a450d00200a410c6c2100200c210103400240200141046a280200450d00200128020010160b2001410c6a2101200041746a22000d000b0b0240200b450d00200c10160b0240200f41046a280200450d00200f28020010160b200f10160c030b200220093602cc06200220033602c806200241d0066a28020021010b200241d0066a200141016a360200200320016a20003a00000b200241d0066a280200210320022802c80621090b200241c0086a24002003ad4220862009ad840b6101017f230041206b220224000240200141074d0d00200241206a240042010f0b200241146a41013602002002410236021c200241a4e9c30036021820024201370204200241a4e7c3003602002002200241186a360210200241ace7c3001046000b890c07027f017e057f017e027f037e037f230041306b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241106a200241086a10240240024002400240024002400240024020022802102203450d00200320022902142204422088a7220541286c6a21062004a72107200322012100024002400240024002400240034002400240024002400240200620006b419f014d0d00024020012d00004102470d00200141286a2100200141086a22082802004101460d050c070b200141286a2d00004102460d02200141d0006a2d00004102460d03200141f8006a2109200141a0016a2200210120092d00004102470d050c010b034020062001460d0720012d00002109200141286a2200210120094102470d000b0b200041606a22082802004101460d020c040b200141d0006a2100200141306a22082802004101460d010c030b200141f8006a2100200141d8006a22082802004101470d020b200021010c000b0b200828020421012008290310210a4108210b410021094100210c0240200828020c220641286c22004128490d0020004100480d032006ad42287e422088a74100470d0320001013220b450d092006210c0b2001200120006a460d01200641286c210641002109200b21000340200141086a2903002104200141106a290300210d200141186a290300210e2001290300210f200041206a200141206a290300370300200041186a200e370300200041106a200d370300200041086a20043703002000200f370300200041286a2100200941016a2109200141286a2101200641586a22060d000c020b0b4100210b0b20024100360218200242013703104101101321060240024002400240200b450d002006450d08200242818080801037021420022006360210200641013a000020022009360228200241286a200241106a1018200241106a41086a221028020021002002280214210602402009450d00200b200941286c6a2111200b210103400240024002400240200620006b41204f0d00200041206a22092000490d0a20064101742208200920092008491b22124100480d0a2006450d01200228021020062012101522080d020c0b0b200041206a2109200228021021080c020b201210132208450d090b2002201236021420022008360210201221060b20102009360200200820006a220041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a29000037000020002001290000370000200141206a29030021040240024002400240200620096b41084f0d00200941086a22002009490d0a20064101742212200020002012491b22124100480d0a2006450d01200820062012101522080d020c0c0b200941086a21000c020b201210132208450d0a0b2002201236021420022008360210201221060b20102000360200200820096a20043700002011200141286a2201470d000b0b200620006b41084f0d01200041086a22012000490d0420064101742209200120012009491b22014100480d042006450d0220022802102006200110152206450d030c0b0b2006450d08200242818080801037021420022006360210200641003a0000428080808010210420050d0c0c0d0b200228021021060c0a0b2001101322060d080b200141011014000b1010000b201241011014000b201241011014000b200241246a41013602002002410236022c200241bce9c30036022820024201370214200241a4e7c3003602102002200241286a360220200241106a41ace7c3001046000b410141011014000b410141011014000b200041081014000b20022001360214200220063602100b200241106a41086a200041086a2201360200200620006a200a3700002001ad42208621040240200b450d00200c450d00200b10160b2005450d010b200541286c2100200321010340024020012d00002209450d00024020094101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b02402007450d00200310160b200241306a240020042006ad840bbc0c07027f017e047f027e027f037e047f230041306b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241106a200241086a102402400240024002400240024002400240024020022802102203450d00200320022902142204422088a7220541286c6a21062004a72107200322012100024002400240024002400240034002400240024002400240200620006b419f014d0d00024020012d00004102470d00200141286a2100200141086a22082802004101470d050c070b200141286a2d00004102460d02200141d0006a2d00004102460d03200141f8006a2108200141a0016a2200210120082d00004102470d050c010b034020062001460d0720012d00002108200141286a2200210120084102470d000b0b200041606a22082802004101470d020c040b200141d0006a2100200141306a22082802004101470d010c030b200141f8006a2100200141d8006a22082802004101460d020b200021010c000b0b20082802042101200829031821092008290310210a4108210b410021064100210c0240200828020c220841286c22004128490d0020004100480d032008ad42287e422088a74100470d0320001013220b450d0a2008210c0b2001200120006a460d01200841286c210841002106200b21000340200141086a2903002104200141106a290300210d200141186a290300210e2001290300210f200041206a200141206a290300370300200041186a200e370300200041106a200d370300200041086a20043703002000200f370300200041286a2100200641016a2106200141286a2101200841586a22080d000c020b0b4100210b0b20024100360218200242013703100240024002400240200b450d00410110132201450d08200242818080801037021420022001360210200141013a000020014101410910152201450d09200242898080809001370214200220013602102001200a37000120022006360228200241286a200241106a1018200241106a41086a221028020021112002280214210802402006450d00200b200641286c6a2112200b210103400240024002400240200820116b41204f0d00201141206a22002011490d0a20084101742206200020002006491b22134100480d0a2008450d01200228021020082013101522060d020c0b0b201141206a2100200228021021060c020b201310132206450d090b2002201336021420022006360210201321080b20102000360200200620116a221141186a200141186a290000370000201141106a200141106a290000370000201141086a200141086a29000037000020112001290000370000200141206a29030021040240200820006b41074b0d00200041086a22112000490d0720084101742213201120112013491b22114100480d07024002402008450d00200620082011101522060d010c0b0b201110132206450d0a0b2002201136021420022006360210201121080b2010200041086a2211360200200620006a20043700002012200141286a2201470d000b0b200820116b41084f0d01201141086a22012011490d0420084101742200200120012000491b22014100480d042008450d0220022802102008200110152206450d030c0c0b410110132206450d09200242818080801037021420022006360210200641003a0000428080808010210420050d0d0c0e0b200228021021060c0b0b2001101322060d090b200141011014000b1010000b201341011014000b201141011014000b200241246a41013602002002410236022c200241dce9c30036022820024201370214200241a4e7c3003602102002200241286a360220200241106a41ace7c3001046000b410141011014000b410941011014000b410141011014000b200041081014000b20022001360214200220063602100b200241106a41086a201141086a2201360200200620116a20093700002001ad42208621040240200b450d00200c450d00200b10160b2005450d010b200541286c2100200321010340024020012d00002208450d00024020084101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b02402007450d00200310160b200241306a240020042006ad840ba205020a7f017e230041206b220224002002410e360204200241b384c000360200200241106a41fdc8c300200210bf01410021030240024002400240200228021022042002280218220541acf1c300410041001000417f460d002002410036020020042005200241044100100041016a41044d0d01200228020021030b02402002280214450d00200410160b20022003102720024100360218200242013703102002280200210620022002280208220336020c2002410c6a200241106a101802400240024002402003450d002006200341286c6a2107200241106a41086a22082802002104200228021421092006210303400240024002400240200920046b41204f0d00200441206a22052004490d062009410174220a20052005200a491b220b4100480d062009450d0120022802102009200b1015220a0d020c070b200441206a21052002280210210a0c020b200b1013220a450d050b2002200b3602142002200a360210200b21090b20082005360200200a20046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a290300210c0240024002400240200920056b41084f0d00200541086a22042005490d062009410174220b20042004200b491b220b4100480d062009450d01200a2009200b1015220a0d020c080b200541086a21040c020b200b1013220a450d060b2002200b3602142002200a360210200b21090b20082004360200200a20056a200c3700002007200341286a2203470d000b2002280204450d060c050b200241186a28020021042002280210210a20022802040d040c050b1010000b200b41011014000b200b41011014000b41b6e7c20041331029000b200610160b200241206a24002004ad422086200aad840be90104027f017e017f017e230041206b22022400200241106a41086a2203420037030020024200370310419095c3004117200241106a1002200241086a20032903003703002002200229031037030002400240024002402002411041acf1c300410041001000417f460d002002420037031020024110200241106a41084100100041016a41084d0d022002290310210441082105410810132203450d010c030b42032104410821054108101322030d020b200541011014000b41b6e7c20041331029000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840b8b0301097f230041206b22022400200210fb0120024100360218200242013703102002280200210320022002280208220436021c2002411c6a200241106a1018024002400240024002402004450d0020044105742105200241106a41086a280200210620022802102107200228021421082003210403400240024002400240200820066b41204f0d00200641206a22092006490d062008410174220a20092009200a491b220a4100480d062008450d0120072008200a101522070d020c070b200641206a21090c020b200a10132207450d050b200a21080b200720066a22062004290000370000200641186a200441186a290000370000200641106a200441106a290000370000200641086a200441086a29000037000020092106200441206a2104200541606a22050d000b200241186a200936020020022008360214200220073602102002280204450d040c030b200241186a28020021092002280210210720022802040d020c030b1010000b200a41011014000b200310160b200241206a24002009ad4220862007ad840bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d0022000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d1022000417c6a2802002000280200200110d102200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d0022000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d1022000417c6a2802002000280200200110d102200041186a2100200341686a22030d000b0b0bd90601037f0240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d0f20024101742204200320032004491b22044100480d0f2002450d0720012802002002200410152203450d080c120b200141046a280200200141086a2802002202470d01200241016a22032002490d0e20024101742204200320032004491b22044100480d0e2002450d0420012802002002200410152203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d0d20024101742204200320032004491b22044100480d0d2002450d0720012802002002200410152203450d080c090b200128020021030c0b0b200128020021030c0f0b200128020021030c070b2004101322030d070b200441011014000b2004101322030d0a0b200441011014000b2004101322030d010b200441011014000b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a41003a0000200041086a2802002000410c6a280200200110d1020f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200041086a2802002000410c6a280200200110d102200041146a280200200041186a280200200110d102024002400240200141046a28020020042802002202470d00200241016a22032002490d0320024101742204200320032004491b22044100480d032002450d0120012802002002200410152203450d020c040b200128020021030c040b2004101322030d020b200441011014000b1010000b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a200041016a2d00003a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a41023a0000200041086a2802002000410c6a280200200110d102200041146a280200200041186a280200200110d102200041206a280200200041246a280200200110d1022000412c6a280200200041306a280200200110d1020be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510152204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310152204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101522040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101522040d0a0c0e0b2005101322040d110b200541011014000b200228020021040c050b200228020021040c070b2003101322040d0b0b200341011014000b200310132204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510132204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101522040d020c070b200228020021040c020b200310132204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011014000b200541011014000b200341011014000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d102200041086a22002001470d000b0b0b2700200028020c200041106a2802001009200041146a350200100c200041186a350200100c00000b08002000200110090b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10f6021a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010f5021a0b20010b0b0020003502002001103d0b0c0042e0b38bd885e0e4b7190b5501017f0240024002402001418080c400460d0041012104200028021820012000411c6a2802002802101100000d010b2002450d012000280218200220032000411c6a28020028020c11010021040b20040f0b41000b8008010b7f200028021021030240024002400240024002400240024002400240200028020822044101470d0020030d010c020b2003450d070b02402002450d00200120026a2105200041146a280200417f732106410021072001210320012108024002400340200341016a21090240024020032c0000220a4100480d00200a41ff0171210a20092103200641016a22060d010c030b02400240024020092005460d0020092d0000413f71210b200341026a22032109200a411f71210c200a41ff0171220a41e001490d010c020b4100210b20052103200a411f71210c200a41ff0171220a41e0014f0d010b200b200c41067472210a20092103200641016a22060d010c030b02400240024020032005460d00200341016a2209210d20032d0000413f71200b41067472210b200a41f001490d010c020b2005210d4100200b41067472210b200a41f0014f0d010b200b200c410c7472210a20092103200641016a22060d010c030b02400240200d2005460d00200d41016a2103200d2d0000413f71210a0c010b4100210a200921030b200b410674200c411274418080f0007172200a72220a418080c400460d03200641016a2206450d020b200720086b20036a21072003210820052003470d000c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b2004450d020c010b410021022004450d010b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200220096b2000410c6a28020022064f0d014100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2109410020002d0030220320034103461b2203410371450d0220034102460d03410021080c040b2000280218200120022000411c6a28020028020c1101000f0b2000280218200120022000411c6a28020028020c1101000f0b20092108410021090c010b200941016a4101762108200941017621090b417f2103200041046a210a200041186a21062000411c6a210702400340200341016a220320094f0d012006280200200a2802002007280200280210110000450d000b41010f0b200041046a280200210941012103200041186a220a280200200120022000411c6a220628020028020c1101000d01200a280200210a417f2103200628020041106a210602400340200341016a220320084f0d01200a20092006280200110000450d000b41010f0b41000f0b2000280218200120022000411c6a28020028020c11010021030b20030b830101037f230041206b22022400024002402000280200200110f2020d002001411c6a2802002103200128021821042002411c6a4100360200200241acf1c3003602182002420137020c200241e4f6c30036020820042003200241086a10f302450d010b200241206a240041010f0b2000280204200110f2022101200241206a240020010b810c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b20031037450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641a8f7c3002107410021084102210941b002210a41f8f7c300210b41f8f7c300210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe0371410876211341e3fcc30021144100211541022116419f01211741a5fdc300211841a5fdc3002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041a7fac30021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41e3fcc300460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241e3fcc300470d000b0b41012102200f4101710d0e0c0c0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff0371210041c3fec30021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41c081c400460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241c081c400470d000b0b41012102200f4101710d0d0c0b0b20082011101c000b201141af021039000b20152011101c000b2011419e011039000b41bcf5c3001038000b41bcf5c3001038000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e02400340024002400240024002400240024020024101460d0041dc002100024020024102460d0020024103470d092005422088a741ff0171417f6a220241044b0d09024020020e050006040503000b200542ffffffff8f6083210541fd0021000c060b410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c0008421050c030b200542ffffffff8f608342808080802084210541fb0021000c020b200542ffffffff8f608342808080803084210541f50021000c010b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f832005428080808070838421050c010b200542ffffffff8f60834280808080108421050b410321020b200f2802002000200e280200280210110000450d000b41010f0b200141186a28020041272001411c6a28020028021011000021020b20020baa0201037f23004180016b220224000240024002400240200128020022034110710d0020034120710d012000ad2001103d210020024180016a240020000f0b410021030340200220036a41ff006a2000410f712204413072200441d7006a2004410a491b3a00002003417f6a2103200041047622000d000b20034180016a22004181014f0d01200141dcf4c3004102200220036a4180016a410020036b103e210020024180016a240020000f0b410021030340200220036a41ff006a2000410f712204413072200441376a2004410a491b3a00002003417f6a2103200041047622000d000b20034180016a22004181014f0d01200141dcf4c3004102200220036a4180016a410020036b103e210020024180016a240020000f0b2000418001101c000b2000418001101c000b9d09010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a360200200342808080808004370308200320003602204100210620034100360218200341003602102003200536023020032005360228024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2101200341346a210b200341306a210c41012106024003402001200741206a2d00003a00002003200741086a28020036020c20032007410c6a2802003602084100210202400240024002400240200741186a28020022004101460d00024020004102460d0020004103460d052007411c6a28020021040c020b200341086a41206a22042802002200200341086a41246a280200460d022004200041086a3602002000280204410b470d04200028020028020021040c010b2007411c6a2802002200200b28020022044f0d02200c28020020004103746a2200280204410b470d03200028020028020021040b410121020c020b0c010b41ecf6c3002000200410a801000b200341086a410c6a2004360200200341086a41086a20023602004100210202400240024002400240200741106a28020022004101460d00024020004102460d0020004103460d05200741146a28020021040c020b200341086a41206a22042802002200200341086a41246a280200460d022004200041086a3602002000280204410b470d04200028020028020021040c010b200741146a2802002200200b28020022044f0d02200c28020020004103746a2200280204410b470d03200028020028020021040b410121020c020b0c010b41ecf6c3002000200410a801000b200341086a41146a2004360200200341086a41106a200236020002400240024020072802004101470d00200741046a2802002202200b28020022044f0d02200c28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d032004200241086a3602000b2002280200200341086a200241046a2802001100000d052006200a4f0d04200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d010c050b0b41fcf6c3002002200410a801000b41bcf5c3001038000b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000b0b0020003502002001103d0b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b2205240020052001200220032004410010fd02200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa710fc02200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff007110fb02200641106a20012002200741ff007110fc02200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bd39b040100418080c0000bc89b047372632f6c6962616c6c6f632f7665632e7273002c0010001c00000000001000130000007704000009000000617373657274696f6e206661696c65643a20656e64203c3d206c656e600010001e00000000001000130000006e03000009000000617373657274696f6e206661696c65643a20696e646578203c3d206c656e0000980010001d00000000001000130000009603000009000000617373657274696f6e206661696c65643a20696e646578203c206c656e00000000000000e40010000e00000000000000f4001000010000000000000000000000fc00100001000000000000004e6577417574686f726974696573000028011000160000000401100024000000204e657720617574686f726974792073657420686173206265656e206170706c6965642e5665633c2853657373696f6e4b65792c20753634293e0000000000006c0110000f000000000000007c0110000200000000000000000000008c01100004000000000000004e65774163636f756e74496e64657800d5e6100009000000270210000c000000ac01100022000000acf8100000000000ce011000410000000f021000180000002041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465783a6772616e6470613a617574683a41757261204c61737454696d657374616d700070021000190000009002100048000000bb0100002d00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e72737002100019000000f00210005b000000ed0000001e0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c8c0310005e00000048000000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f696e64696365732f7372632f6c69622e727300000404100022000000260410005b000000b3000000030000004175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f617572612f7372632f6c69622e72730000009c04100028000000260410005b000000b9000000030000004f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e446f776e6c6f61642073657373696f6e20776974682074686520676976656e204944206e6f7420666f756e642e446f776e6c6f61642073657373696f6e20776974682074686520676976656e2049442068617320616c726561647920656e6465642e446f776e6c6f61642073657373696f6e2063616e206f6e6c79206265206d6f6469666965642062792074686520646f776e6c6f616465722e496e76616c69642075706461746520746f207472616e736d69747465642062797465732076616c75652e43616e6e6e6f7420646f776e6c6f616420776974686f7574206174206c65617374206f6e65206163746976652073746f726167652072656c6174696f6e736869702e000000000000240610000f0000000000000034061000010000000000000000000000acf810000000000000000000000000003c0610000d000000000000004c061000020000000000000000000000acf810000000000000000000446f776e6c6f61645374617274656400dee6100009000000446f776e6c6f6164456e646564000000dee61000090000004bea100003000000000000005ce81000120000000000000070e8100001000000000000000000000088e8100001000000000000004772616e64706146696e616c6974792050656e64696e674368616e67654772616e64706146696e616c697479204e657874466f726365644772616e64706146696e616c697479000000000000980710000d0000000000000000000000a50710003200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e80a10000000000000000000acf8100000000000000000000000000000000000d70710000a000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e80a10000000000000000000acf8100000000000000000000000000050656e64696e674368616e676553746f72656450656e64696e674368616e67653c543a3a426c6f636b4e756d6265722c20543a3a53657373696f6e4b65793e4e657874466f72636564496e646963657300000000b00810000b0000000000000000000000bb0810000f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000cc0810000000000000000000dc08100001000000000000000100000000000000e4081000070000000100000000000000bb0810000f0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000ec0810000000000000000000fc0810000100000000000000010000004e657874456e756d536574543a3a4163636f756e74496e64657800000c00000000000000010000000d0000001a0910001f000000456e756d536574000c00000000000000010000000e00000004091000160000002054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e496e646963657320456e756d53657400000000740a10001600000000000000000000008a0a10001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b40a10000000000000000000acf81000000000000000000001000000000000009e0a10001500000000000000000000008a0a10001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b40a10000000000000000000acf8100000000000000000000100000000000000c40a10001000000001000000000000008a0a10001400000000000000d40a10001200000000000000000000000000000000000000000000000000000000000000acf81000e80a10000000000000000000acf810000000000000000000000000004669727374446f776e6c6f616453657373696f6e4964543a3a446f776e6c6f616453657373696f6e49644e657874446f776e6c6f616453657373696f6e4964000c00000000000000010000000f000000446f776e6c6f616453657373696f6e73446f776e6c6f616453657373696f6e3c543e00000c000000000000000100000010000000446f776e6c6f616453657373696f6e73204e657874446f776e6c6f616453657373696f6e4964446f776e6c6f616453657373696f6e7320446f776e6c6f616453657373696f6e7300500b10004d00000063000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646f776e6c6f6164732e727300000000000000f80b10000e00000000000000080c1000020000000000000000000000acf81000000000000000000000000000380c100012000000000000004c0c1000020000000000000000000000acf81000000000000000000073746172745f646f776e6c6f6164000000000000a6b210000a00000000000000970c10001900000000000000b00c10000400000000000000abd410000c0000007570646174655f7472616e736d69747465640000000000007c0c10000a000000000000008a0a10001400000000000000860c100011000000000000004bea10000300000073657373696f6e5f69647472616e736d69747465645f62797465733c5420617320444454726169743e3a3a436f6e74656e74496466726f6d00000000e80d10000f00000000000000d4641000020000000000000000000000f80d1000030000000000000000000000100e10001000000000000000d4641000020000000000000000000000acf81000000000000000000000000000200e10001500000000000000380e1000020000000000000000000000acf81000000000000000000000000000d69110000500000000000000480e1000030000000000000000000000600e1000040000000000000000000000800e10000e00000000000000900e1000010000000000000000000000acf81000000000000000000000000000980e10000e00000000000000a80e1000020000000000000000000000b80e1000010000000000000000000000c00e10000e0000000000000074911000010000000000000000000000d00e1000010000000000000050726f706f73616c4372656174656400360f100008000000a00f100027000000c70f10004000000050726f706f73616c43616e63656c656450726f706f73616c5374617475735570646174656400000026bc100003000000920f10000e000000d5e610000900000026bc1000030000008a0f100008000000360f1000080000003e0f100028000000660f1000140000007a0f10001000000054616c6c7946696e616c697a656400001e0f10001800000052756e74696d6555706461746564000026bc1000030000000c92100004000000f00e10002e00000050726f706f73616c5665746f65640000d80e10001800000020526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e54616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e0000000000e41510000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f41510000000000000000000041610000200000000000000010000000000000014161000080000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810001c16100000000000000000002c16100001000000000000000100000000000000341610000f0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100044161000000000000000000054161000010000000000000001000000000000005c1610000c0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810006816100000000000000000007816100001000000000000000100000000000000789b10000c000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008016100000000000000000009016100001000000000000000100000000000000981610000a000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000a41610000000000000000000acf8100000000000000000000100000000000000b416100011000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000c81610000000000000000000acf8100000000000000000000100000000000000d81610000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e81610000000000000000000acf8100000000000000000000100000000000000f81610000d000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100008171000000000000000000018171000010000000000000001000000000000002017100009000000010000000000000026bc10000300000000000000291710004b00000000000000000000000000000000000000000000000000000000000000acf8100074171000000000000000000084171000010000000000000001000000000000008c1710001100000000000000000000009d1710000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000a81710000000000000000000b817100001000000000000000100000000000000c01710000e000000010000000000000073bc1000070000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000acf81000d01710000000000000000000e017100001000000000000000100000000000000e81710000f000000010000000000000026bc10000300000000000000f71710001d00000000000000000000000000000000000000000000000000000000000000acf81000141810000000000000000000acf8100000000000000000000100000000000000241810001800000001000000000000003c18100013000000000000008a0f10000800000000000000000000000000000000000000000000000000000000000000acf81000501810000000000000000000acf8100000000000000000000100000000000000601810000c000000010000000000000026bc100003000000000000006c1810001b00000000000000000000000000000000000000000000000000000000000000acf81000881810000000000000000000acf81000000000000000000001000000417070726f76616c51756f72756d00000c0000000000000001000000110000001e1b100032000000501b10002f0000004d696e5374616b650c000000000000000100000012000000d81a10004600000043616e63656c6c6174696f6e466565000c0000000000000001000000130000008c1a10004c00000052656a656374696f6e4665650c000000000000000100000014000000501a10003c0000000c00000000000000010000001500000069191000510000004e616d654d61784c656e00000c0000000000000001000000160000004465736372697074696f6e4d61784c656e0000000c0000000000000001000000170000005761736d436f64654d61784c656e00000c00000000000000010000001800000050726f706f73616c436f756e740000000c00000000000000010000000d0000003a1910002f00000050726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e0c0000000000000001000000190000001a1910002000000041637469766550726f706f73616c4964735665633c7533323e0000000c00000000000000010000000e000000d1181000490000005761736d436f646542794861736800000c00000000000000010000000e0000009818100039000000566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e0c00000000000000010000000e000000566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c2075333229000c00000000000000010000001000000054616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e000c00000000000000010000001a00000020476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e0000e019100019000000001a100050000000ba00000020000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e46656550726f706f73616c7320417070726f76616c51756f72756d000000a11e100050000000d800000001000000617070726f76616c2071756f726f6d206d7573742062652067726561746572207468616e207a65726f2f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f70726f706f73616c732e727350726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c732052656a656374696f6e46656550726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c732054616c6c79526573756c74730000000000003c2010000f000000000000004c201000040000000000000000000000ac201000040000000000000000000000cc2010001000000000000000dc2010000200000000000000000000000c2110000400000000000000000000002c2110000f000000000000003c211000010000000000000000000000542110000100000000000000000000005c2110000d000000000000003c2110000100000000000000000000006c21100001000000000000000000000074211000130000000000000088211000010000000000000000000000acf8100000000000000000006372656174655f70726f706f73616c000000000027a610000500000000000000ef9b10000c00000000000000b5231000040000000000000000ea10000700000000000000b92310000b0000000000000000ea10000700000000000000c4231000090000000000000000ea10000700000041221000440000008522100006000000282310008d0000002423100004000000766f74655f6f6e5f70726f706f73616c00000000362210000b0000000000000026bc100003000000000000009ca3100004000000000000008a0f100008000000412210004400000085221000060000008b22100099000000242310000400000063616e63656c5f70726f706f73616c0000000000362210000b0000000000000026bc100003000000dd211000590000007665746f5f70726f706f73616c000000a9211000340000007365745f617070726f76616c5f71756f72756d0000000000a0211000090000000000000026bc1000030000006e65775f76616c75652043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f67292060606020706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67296e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e000000000000142410000a00000000000000a4b610000100000000000000000000002024100002000000000000004e657753657373696f6e000030241000550000008524100022000000204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f727353657373696f6e204e6578744b6579466f7244617461204f626a656374205479706520776974682074686520676976656e204944206e6f7420666f756e642e000000000000007c251000180000000000000094251000010000000000000000000000acf810000000000000000000000000009c251000150000000000000094251000010000000000000000000000acf810000000000000000000446174614f626a6563745479706552656769737465726564b125100010000000446174614f626a6563745479706555706461746564446174614f626a656374547970654964000000000000001861100007000000000000004826100001000000000000000000000060261000020000000000000000000000702610000a00000000000000f06b10000100000000000000000000007c261000010000000000000000000000842610001100000000000000706c100001000000000000000000000098261000010000000000000000000000722710000300000000000000752710000d000000112710005800000069271000090000007365745f6c656e6774680000b62610005b000000666f7263655f6e65775f73657373696f6e000000a02610001600000020466f726365732061206e65772073657373696f6e2e205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e00000000000000e88010000a000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000ac2a10000000000000000000bc2a100001000000000000000100000000000000c42a10000d000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000d42a10000000000000000000e42a100001000000000000000100000000000000ec2a10000c000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c2b10000000000000000000f82a100001000000000000000100000000000000002b10000c00000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c2b100000000000000000001c2b100001000000000000000100000000000000242b100011000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000382b100002000000000000000000000000000000482b100010000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000582b100001000000000000000000000000000000602b10000a0000000100000000000000abd410000c00000000000000752710000d00000000000000000000000000000000000000000000000000000000000000acf810008c30100000000000000000006c2b100001000000000000000000000000000000742b100011000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000882b10000100000000000000000000000c00000000000000010000000e000000202d10001f00000053657373696f6e4c656e6774680000000c00000000000000010000001b000000012d10001f00000043757272656e74496e646578e32c10001e00000043757272656e7453746172740c00000000000000010000001c000000bb2c100028000000466f7263696e674e657753657373696f6e000000fd2b10005e0000005b2c1000600000004c6173744c656e6774684368616e6765cd2b1000300000004e6578744b6579466f720000a92b1000240000004e65787453657373696f6e4c656e677468000000902b10001900000020546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206966207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e53657373696f6e204c6173744c656e6774684368616e676500a02d100039000000e02d100048000000100200002d00000053657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e677468000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e7273382e10005e0000003b000000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f73657373696f6e2f7372632f6c69622e727344656661756c742064617461206f626a656374207479706520666f7220617564696f20616e6420766964656f20636f6e74656e742e446174614f626a65637454797065526567697374727920446174614f626a65637454797065730000000000000020301000150000000000000000000000353010001300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005c3010000000000000000000acf810000000000000000000010000000000000048301000140000000000000000000000353010001300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005c3010000000000000000000acf81000000000000000000001000000000000006c3010000f00000001000000000000003530100013000000000000007b3010000e00000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000acf810000000000000000000000000004669727374446174614f626a656374547970654964543a3a446174614f626a6563745479706549644e657874446174614f626a6563745479706549640c00000000000000010000000f000000446174614f626a6563745479706573446174614f626a656374547970650000000c000000000000000100000010000000446174614f626a656374547970655265676973747279446174614f626a656374547970655265676973747279204e657874446174614f626a656374547970654964000000f03010005d0000004c000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646174615f6f626a6563745f747970655f72656769737472792e7273446174614f626a656374547970655265676973747279204669727374446174614f626a656374547970654964000000000000002c321000190000000000000048321000010000000000000000000000acf8100000000000000000000000000060321000170000000000000078321000020000000000000000000000acf81000000000000000000000000000a83210001900000000000000c4321000010000000000000000000000acf81000000000000000000000000000dc3210001b00000000000000c4321000010000000000000000000000acf81000000000000000000072656769737465725f646174615f6f626a6563745f7479706500000000000000f732100010000000000000007b3010000e0000007570646174655f646174615f6f626a6563745f747970650000000000e0f210000200000000000000353010001300000000000000f732100010000000000000007b3010000e00000061637469766174655f646174615f6f626a6563745f7479706500000000000000e0f2100002000000000000003530100013000000646561637469766174655f646174615f6f626a6563745f74797065646174615f6f626a6563745f7479706500000000003839100006000000000000001d00000000000000000000001e000000000000000000000002000000000000000000000000000000000000001f0000000000000000000000000000003e391000090000000000000020000000000000000000000021000000000000000000000000000000220000000000000000000000020000000000000000000000000000000000000047391000090000000000000023000000000000000000000024000000000000000000000000000000250000000000000000000000020000000000000000000000000000000000000050391000040000000000000026000000000000000200000000000000000000000000000002000000000000000000000000000000020000000000000000000000000000000000000054391000070000000000000027000000000000000000000028000000000000000000000000000000290000000000000000000000000000002a0000000000000000000000000000005b39100008000000000000002b00000000000000000000002c0000000000000000000000000000002d0000000000000000000000000000002e0000000000000000000000000000006339100007000000000000002f00000000000000000000003000000000000000000000000000000031000000000000000000000000000000320000000000000000000000000000006a3910000700000000000000330000000000000000000000340000000000000000000000000000003500000000000000000000000000000036000000000000000000000000000000e4601000040000000000000037000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a000000000000000000000000000000713910001000000000000000260000000000000002000000000000000000000000000000000000003b000000000000000000000002000000000000000000000000000000000000008139100007000000000000003c00000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003f000000000000000000000000000000883910000900000000000000400000000000000000000000410000000000000000000000000000004200000000000000000000000000000043000000000000000000000000000000913910000800000000000000440000000000000000000000450000000000000000000000000000004600000000000000000000000000000047000000000000000000000000000000993910000700000000000000480000000000000000000000490000000000000000000000000000004a0000000000000000000000000000004b0000000000000000000000000000004cc7100004000000000000004c00000000000000000000004d0000000000000000000000000000004e0000000000000000000000000000004f000000000000000000000000000000a03910000700000000000000500000000000000000000000510000000000000000000000000000005200000000000000000000000000000053000000000000000000000000000000a73910000900000000000000540000000000000000000000550000000000000000000000000000002900000000000000000000000000000056000000000000000000000000000000b0391000060000000000000057000000000000000000000058000000000000000000000000000000590000000000000000000000000000005a000000000000000000000000000000b639100019000000000000005b00000000000000000000005c0000000000000000000000000000005d0000000000000000000000000000005e000000000000000000000000000000cf3910000e000000000000005f0000000000000000000000600000000000000000000000000000006100000000000000000000000000000062000000000000000000000000000000dd3910001c00000000000000630000000000000000000000640000000000000000000000000000006500000000000000000000000000000066000000000000000000000000000000f9391000090000000000000067000000000000000000000068000000000000000000000000000000690000000000000000000000000000006a000000000000000000000073797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e6766696e616c6974795f747261636b65726772616e64706170726f706f73616c73656c656374696f6e636f756e63696c6d656d626572736d6967726174696f6e6163746f7273646174615f6f626a6563745f747970655f7265676973747279646174615f6469726563746f7279646174615f6f626a6563745f73746f726167655f7265676973747279646f776e6c6f6164736a6f7973747265616d2d6e6f6465df6acb689907609b0200000037e397fc7c91f5e40100000040fe3ad401f8959a03000000d2bc9897eed08f1501000000f78b278be53f454c01000000ed99c5acb25eedf502000000dd718d5cc53262d4010000007801759919ee83e501000000883a100028000000bcf310003f0000007e0100000d000000446570726563617465642c20706c65617365207573652060417574686f726974696573417069602e4469676573744974656d206e6f7420657175616c6e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d650000003b100039000000403b100048000000100200002d00000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e7273466f72207468652073706563696669656420726f6c652c206e6f206163746f722069732063757272656e746c79207374616b65642e4163746f7273204163746f7242794163636f756e7449644163746f7273204163636f756e744964734279526f6c654163746f727320526f6c65456e74727952657175657374730000000000883c10000e00000000000000983c1000020000000000000000000000acf81000000000000000000000000000a83c10000600000000000000983c1000020000000000000000000000acf81000000000000000000000000000ae3c10000800000000000000983c1000020000000000000000000000acf810000000000000000000456e7472795265717565737465640000d5e6100009000000b63c1000040000005374616b6564556e7374616b6564526f6c65000000000000dc3f10000a0000000100000000000000b63c10000400000000000000e63f10001100000000000000000000000000000000000000000000000000000000000000acf81000f83f100000000000000000000840100001000000000000000000000000000000104010000e00000000000000000000001e4010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b040100000000000000000002840100001000000000000000100000000000000304010000f000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b04010000000000000000000404010000100000000000000010000000000000048401000100000000100000000000000abd410000c00000000000000584010000800000000000000000000000000000000000000000000000000000000000000acf81000604010000000000000000000704010000100000000000000000000000000000078401000100000000100000000000000b63c1000040000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000b04010000000000000000000884010000100000000000000010000000000000090401000140000000100000000000000a44010000b0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000b04010000000000000000000c040100001000000000000000100000000000000c8401000110000000000000000000000d94010000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e44010000000000000000000f440100006000000000000000100000000000000244110000f00000000000000000000004bea10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100034411000000000000000000044411000010000000000000001000000506172616d6574657273526f6c65506172616d65746572733c543e000c000000000000000100000010000000c643100033000000417661696c61626c65526f6c65735665633c526f6c653e00a5431000210000004163746f724163636f756e7449647300994310000c0000004163746f7242794163636f756e7449644163746f723c543e0c00000000000000010000001000000074431000250000004163636f756e744964734279526f6c654e431000260000004163636f756e7449647342794d656d62657249644d656d62657249643c543e000c00000000000000010000000e000000234310002b000000526f6c65456e747279526571756573747352657175657374733c543e0c00000000000000010000000e0000007e4110004d000000cb411000450000001042100063000000734210003c000000af4210003c000000eb42100038000000526571756573744c69666554696d65000c00000000000000010000006b0000004c4110003200000020456e747279207265717565737420657870697265732061667465722074686973206e756d626572206f6620626c6f636b732046697273742073746570206265666f726520656e746572206120726f6c65206973207265676973746572696e6720696e74656e7420776974682061206e6577206163636f756e742f6b65792e205468697320697320646f6e652062792073656e64696e67206120726f6c655f656e7472795f7265717565737428292066726f6d20746865206e6577206163636f756e742e20546865206d656d626572206d757374207468656e2073656e642061207374616b652829207472616e73616374696f6e20746f20617070726f766520746865207265717565737420616e6420656e74657220746865206465736972656420726f6c652e20546865206163636f756e74206d616b696e672074686520726571756573742077696c6c20626520626f6e64656420616e64206d75737420686176652073756666696369656e742062616c616e636520746f20636f76657220746865206d696e696d756d207374616b6520666f722074686520726f6c652e20426f6e64696e67206f6e6c79206f6363757273206166746572207375636365737366756c20656e74727920696e746f206120726f6c652e206163746f72206163636f756e7473206173736f63696174656420776974682061206d656d626572206964206163746f72206163636f756e7473206173736f6369617465642077697468206120726f6c65206163746f72206163636f756e7473206d617070656420746f207468656972206163746f72204163746f7273206c6973742074686520726f6c6573206d656d626572732063616e20656e74657220696e746f20726571756972656d656e747320746f20656e74657220616e64206d61696e7461696e2073746174757320696e20726f6c65734163746f72736163636f756e742069732061206d656d6265726163636f756e7420616c7265616479207573656463616e6e6f742070617920726f6c6520656e747279207265717565737420666565696e61637469766520726f6c656e6f20706172616d657465727320666f7220726f6c654163746f727320417661696c61626c65526f6c65734163746f727320526571756573744c69666554696d656e6f20726f6c6520656e7472792072657175657374206d617463686573726f6c6520736c6f74732066756c6c6e6f7420656e6f7567682062616c616e636520746f207374616b654163746f7273204163636f756e7449647342794d656d62657249644163746f7273204163746f724163636f756e744964736e6f7420726f6c65206b65796163746f72206e6f74206f776e6564206279206d656d6265724163746f727320506172616d6574657273005445100048000000fe000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f726f6c65732f6163746f72732e727300000000fc461000120000000000000010471000020000000000000000000000acf8100000000000000000000000000027a610000500000000000000404710000200000000000000000000007047100001000000000000000000000078471000070000000000000080471000010000000000000000000000acf81000000000000000000000000000984710001300000000000000ac471000020000000000000000000000acf81000000000000000000000000000dc4710001300000000000000f0471000010000000000000000000000acf8100000000000000000000000000008481000160000000000000020481000010000000000000000000000acf81000000000000000000000000000384810001b0000000000000020481000010000000000000000000000acf81000000000000000000000000000534810000c0000000000000080471000010000000000000000000000acf810000000000000000000726f6c655f656e7472795f726571756573740000000000005f4810000400000000000000b63c100004000000000000009b4810000900000000000000a44010000b000000000000005f4810000400000000000000b63c100004000000000000006e4810000d00000000000000abd410000c0000007b48100020000000756e7374616b6500000000006e4810000d00000000000000abd410000c0000007365745f726f6c655f706172616d657465727300000000005f4810000400000000000000b63c10000400000000000000684810000600000000000000e63f1000110000007365745f617661696c61626c655f726f6c657300000000006348100005000000000000001e401000090000006164645f746f5f617661696c61626c655f726f6c65730000000000005f4810000400000000000000b63c10000400000072656d6f76655f66726f6d5f617661696c61626c655f726f6c657372656d6f76655f6163746f72726f6c65726f6c6573706172616d736163746f725f6163636f756e74204d656d6265722061637469766174696e6720656e74727920726571756573746d656d6265725f69646e6f206d656d62657220696420666f756e6420666f72206163636f756e7469644d656d62657273686970204163636f756e74496442794d656d62657249644d656d62657273686970204d656d626572496442794163636f756e74496400000000b04910001000000000000000c0491000020000000000000000000000acf81000000000000000000000000000d04910001600000000000000e8491000010000000000000000000000acf81000000000000000000000000000f04910001300000000000000e8491000010000000000000000000000acf81000000000000000000000000000034a10001300000000000000e8491000010000000000000000000000acf8100000000000000000004d656d62657252656769737465726564164a100008000000d5e61000090000004d656d6265725570646174656441626f7574546578740000164a1000080000004d656d626572557064617465644176617461724d656d6265725570646174656448616e646c654d656d62657249640000954a100036000000385c10005e0000008d010000050000000000000000000000584a10003d000000385c10005e0000009401000005000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400954a100036000000385c10005e000000b4010000050000000000000000000000000000000000000000000000385c10005e000000bb010000050000004d656d62657273686970204d656d62657250726f66696c656d656d6265722070726f66696c65206e6f7420666f756e6455736572496e666f68616e646c65000000000000245110000d0000000000000000000000315110000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f851100000000000000000003c51100001000000000000000100000000000000445110000c0000000000000000000000315110000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f85110000000000000000000505110000100000000000000010000000000000058511000130000000100000000000000315110000b00000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000acf810006c51100000000000000000007c5110000100000000000000010000000000000084511000130000000100000000000000abd410000c00000000000000315110000b00000000000000000000000000000000000000000000000000000000000000acf81000e052100000000000000000009851100001000000000000000000000000000000a05110000d0000000100000000000000315110000b00000000000000ad5110000a00000000000000000000000000000000000000000000000000000000000000acf81000e05210000000000000000000b851100001000000000000000000000000000000c051100007000000010000000000000000ea10000700000000000000315110000b00000000000000000000000000000000000000000000000000000000000000acf81000e05210000000000000000000c851100001000000000000000000000000000000d0511000190000000000000000000000e95110000d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f85110000000000000000000085210000100000000000000010000000000000010521000170000000100000000000000e95110000d00000000000000275210001600000000000000000000000000000000000000000000000000000000000000acf81000405210000000000000000000505210000100000000000000000000000000000058521000190000000000000000000000715210001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100084521000000000000000000094521000010000000000000001000000000000009c52100015000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b45210000000000000000000c452100001000000000000000100000000000000cc521000120000000000000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e05210000000000000000000acf8100000000000000000000000000000000000f05210000f000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000005310000000000000000000acf8100000000000000000000100000000000000105310000f000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000205310000000000000000000acf81000000000000000000001000000000000003053100012000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000445310000000000000000000acf81000000000000000000001000000000000005453100012000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000685310000000000000000000acf8100000000000000000000100000046697273744d656d6265724964543a3a4d656d6265724964215510001f0000004e6578744d656d6265724964e1541000400000004163636f756e74496442794d656d6265724964000c00000000000000010000006c000000a25410003f0000004d656d626572496442794163636f756e744964006e541000340000004d656d62657250726f66696c6550726f66696c653c543e003b5410003300000048616e646c657300005410003b0000004e657874506169644d656d626572736869705465726d734964543a3a506169645465726d496400000c00000000000000010000000f000000e25310001e000000506169644d656d626572736869705465726d7342794964506169644d656d626572736869705465726d733c543e0000000c00000000000000010000006d000000c55310001d000000416374697665506169644d656d626572736869705465726d735665633c543a3a506169645465726d49643e000c00000000000000010000006e000000a85310001d0000004e65774d656d6265727368697073416c6c6f7765640000000c00000000000000010000006f000000785310003000000053637265656e696e67417574686f7269747900000c0000000000000001000000100000004d696e48616e646c654c656e677468000c0000000000000001000000700000004d617848616e646c654c656e677468000c0000000000000001000000710000004d61784176617461725572694c656e67746800000c0000000000000001000000720000004d617841626f7574546578744c656e67746800000c0000000000000001000000730000002049732074686520706c6174666f726d20697320616363657074696e67206e6577206d656d62657273206f72206e6f74204163746976652050616964206d656d62657273686970207465726d732050616964206d656d62657273686970207465726d73207265636f7264204e6578742070616964206d656d62657273686970207465726d73206964205265676973746572656420756e697175652068616e646c657320616e64207468656972206d617070696e6720746f207468656972206f776e6572204d617070696e67206f66206d656d626572277320696420746f207468656972206d656d626572736869702070726f66696c65204d617070696e67206f66206d656d6265727327206163636f756e742069647320746f207468656972206d656d6265722069642e204d617070696e67206f66206d656d6265722069647320746f20746865697220636f72726573706f6e64696e67207072696d617279206163636f756e746964204d656d626572496420746f2061737369676e20746f206e657874206d656d626572207468617420697320616464656420746f20746865207265676973747279204d656d6265724964277320737461727420617420746869732076616c75654d656d626572736869704d656d62657273686970204e65774d656d6265727368697073416c6c6f7765644d656d6265727368697020416374697665506169644d656d626572736869705465726d734d656d6265727368697020506169644d656d626572736869705465726d734279496470616964206d656d62657273686970207465726d20696420646f6573206e6f7420657869737470616964207465726d73206964206e6f7420616374697665726f6c65206b65792063616e6e6f74206265207573656420666f72206d656d626572736869706e6577206d656d62657273206e6f7420616c6c6f7765646163636f756e7420616c7265616479206173736f63696174656420776974682061206d656d6265727368697068616e646c6520616c726561647920726567697374657265646e6f7420656e6f7567682062616c616e636520746f20627579206d656d626572736869704d656d626572736869702048616e646c65736e6f74207072696d617279206163636f756e744d656d626572736869702053637265656e696e67417574686f726974796e6f742073637265656e65726e6f2073637265656e696e6720617574686f7269747920646566696e6564105710004e000000e1000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f6d656d626572736869702f6d656d626572732e727368616e646c6520746f6f2073686f727468616e646c6520746f6f206c6f6e674d656d62657273686970204d696e48616e646c654c656e6774684d656d62657273686970204d617848616e646c654c656e6774686176617461722075726920746f6f206c6f6e674d656d62657273686970204d61784176617461725572694c656e6774684d656d62657273686970204d617841626f7574546578744c656e6774684d656d62657273686970204e6578744d656d626572496468616e646c65206d7573742062652070726f766964656420647572696e6720726567697374726174696f6e00000000745910000e0000000000000084591000020000000000000000000000b4591000010000000000000000000000bc5910001800000000000000d4591000010000000000000000000000ec591000010000000000000000000000f45910001400000000000000085a1000010000000000000000000000205a1000010000000000000000000000285a100014000000000000003c5a1000010000000000000000000000545a1000020000000000000000000000645a10000e00000000000000745a10000100000000000000000000008c5a1000010000000000000000000000945a10001300000000000000a85a1000020000000000000000000000acf81000000000000000000000000000d85a10001700000000000000f05a1000010000000000000000000000acf8100000000000000000006275795f6d656d626572736869700000000000002b5c10000d00000000000000e95110000d000000000000001b5b10000900000000000000384b1000080000000c5c10001f0000006368616e67655f6d656d6265725f61626f75745f7465787400000000085c1000040000000000000000ea100007000000ed5b10001b0000006368616e67655f6d656d6265725f61766174617200000000ea5b1000030000000000000000ea100007000000d35b1000170000006368616e67655f6d656d6265725f68616e646c6500000000404b1000060000000000000000ea100007000000625b100057000000b95b10001a0000007570646174655f70726f66696c650000000000001b5b10000900000000000000384b100008000000245b10003e0000006164645f73637265656e65645f6d656d6265720000000000115b10000a00000000000000abd410000c000000000000001b5b10000900000000000000384b1000080000007365745f73637265656e696e675f617574686f726974790000000000085b10000900000000000000abd410000c000000617574686f726974796e65775f6d656d626572757365725f696e666f20557064617465206d656d626572277320616c6c206f7220736f6d65206f662068616e646c652c2061766174617220616e642061626f757420746578742e204368616e6765206d656d62657227732068616e646c652e2057696c6c20656e73757265206e65772068616e646c6520697320756e6971756520616e64206f6c64206f6e652077696c6c20626520617661696c61626c6520666f72206f74686572206d656d6265727320746f207573652e204368616e6765206d656d626572277320617661746172757269204368616e6765206d656d62657227732061626f7574207465787474657874204e6f6e2d6d656d626572732063616e20627579206d656d62657273686970706169645f7465726d735f69642f55736572732f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e332e302f7372632f636f6465632e7273000000000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000405d10000500000000000000485d1000010000000000000000000000505d1000010000000000000000000000585d10000a000000000000001cc81000010000000000000000000000645d10000100000000000000537564696400000006e7100004000000a85d1000180000004b65794368616e67656400006c5d10003c00000020546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e2041207375646f206a75737420746f6f6b20706c6163652e696e76616c69642073616c744d6967726174696f6e205370656356657273696f6e00000000000000105e10000800000000000000185e1000020000000000000000000000acf8100000000000000000004d69677261746564c1b610000b00000026bc100003000000385e10004500000034000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f6d6967726174696f6e2e7273000000a05c100048000000840a00000e000000b05e100019000000d05e100063000000df000000180000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f7374616b696e672f7372632f70687261676d656e2e727370726576696f75732f6e657874206f6e6c7920636f6e7461696e206578697374696e6720656e74697265733b20776520656e756d6572617465207573696e67206e6578743b20656e747279206578697374733b207165640000acf8100000000000c15f100002000000ac5f100015000000e5030000050000007372632f6c6962636f72652f726573756c742e72733a206f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b65790000306010005b0000008c000000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f7375646f2f7372632f6c69622e72730000000000e46010000400000000000000e860100001000000000000000000000000611000030000000000000000000000186110000700000000000000206110000100000000000000000000003861100003000000000000007375646f000000002f62100008000000000000003762100010000000e16110004e000000acf8100000000000ad611000340000007365745f6b65790000000000fde91000030000000000000046ce100023000000506110005d000000acf8100000000000ad611000340000002041757468656e74696361746573207468652063757272656e74207375646f206b657920616e6420736574732074686520676976656e204163636f756e7449642028606e6577602920617320746865206e6577207375646f206b65792e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2e2041757468656e7469636174657320746865207375646f206b657920616e64206469737061746368657320612066756e6374696f6e2063616c6c20776974682060526f6f7460206f726967696e2e70726f706f73616c426f783c543a3a50726f706f73616c3e5375646f0000000000b0621000030000000000000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b46210000000000000000000c46210000100000000000000010000004b6579000c00000000000000010000006c000000cc621000210000002054686520604163636f756e74496460206f6620746865207375646f206b65792e00000000000000546310000b000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000606310000000000000000000706310000200000000000000000000005370656356657273696f6e000c0000000000000001000000100000008063100058000000d863100046000000205265636f72647320617420776861742072756e74696d6520737065632076657273696f6e207468652073746f72652077617320696e697469616c697a65642e205468697320616c6c6f7773207468652072756e74696d6520746f206b6e6f77207768656e20746f2072756e20696e697469616c697a6520636f64652069662069742077617320696e7374616c6c656420617320616e207570646174652e4d6967726174696f6e0000000000ac6410000600000000000000b4641000010000000000000000000000bc641000010000000000000000000000c46410000e00000000000000d4641000020000000000000000000000e4641000020000000000000000000000f46410000c00000000000000f4c71000020000000000000000000000006510000100000000000000526577617264000088c8100007000000ed651000380000004f66666c696e655761726e696e670000d5e610000900000026bc1000030000005365100055000000a8651000450000004f66666c696e65536c617368086510004b000000204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e5374616b696e6720426f6e6465645374616b696e67204e6f6d696e61746f72735374616b696e672056616c696461746f72735374616b696e67204c656467657200000000000000fc68100004000000000000000069100003000000000000000000000048691000040000000000000000000000686910000a00000000000000746910000100000000000000000000008c691000060000000000000000000000bc6910000600000000000000c4691000010000000000000000000000dc6910000a00000000000000000000002c6a10001100000000000000acf81000000000000000000000000000406a1000080000000000000000000000806a10000800000000000000886a1000010000000000000000000000a06a1000050000000000000000000000c86a10000800000000000000d06a1000010000000000000000000000e86a1000050000000000000000000000106b10000500000000000000acf81000000000000000000000000000186b1000050000000000000000000000406b100009000000000000004c6b1000010000000000000000000000646b10000500000000000000000000008c6b10000e000000000000009c6b1000010000000000000000000000b46b1000050000000000000000000000dc6b10001400000000000000f06b1000010000000000000000000000086c1000010000000000000000000000106c10001400000000000000f06b1000010000000000000000000000246c10000100000000000000000000002c6c10001300000000000000406c1000010000000000000000000000586c1000010000000000000000000000606c10000d00000000000000706c1000010000000000000000000000886c1000020000000000000000000000986c10001700000000000000406c1000010000000000000000000000b06c1000010000000000000000000000b86c10001100000000000000cc6c1000010000000000000000000000e46c10000100000000000000626f6e64000000002a6f10000a0000000000000046ce1000230000000000000004d010000500000000000000ef7210001500000000000000896f100005000000000000008e6f100011000000cc731000600000002c7410001a000000acf81000000000004674100049000000626f6e645f6578747261000000000000be7310000e00000000000000ef72100015000000047310005d0000006173100009000000acf81000000000006a73100054000000acf8100000000000d56e100055000000756e626f6e6400000000000004d010000500000000000000ef721000150000006571100055000000ba71100040000000fa7110004d000000acf810000000000047721000520000009972100030000000acf8100000000000346f100055000000acf8100000000000c97210002600000077697468647261775f756e626f6e6465640000009f7010004b000000acf8100000000000ea7010004d0000003771100013000000acf8100000000000346f100055000000acf81000000000004a7110001b00000076616c6964617465000000007e7010000500000000000000837010001c000000447010003a000000acf81000000000009e6e100037000000acf8100000000000346f1000550000006e6f6d696e617465000000001570100007000000000000001c70100028000000d16f100044000000acf81000000000009e6e100037000000acf8100000000000346f1000550000006368696c6c0000009f6f100032000000acf81000000000009e6e100037000000acf8100000000000346f1000550000007365745f706179656500000000000000896f100005000000000000008e6f100011000000706e10002e000000acf81000000000009e6e100037000000acf8100000000000346f1000550000007365745f636f6e74726f6c6c65720000000000002a6f10000a0000000000000046ce100023000000706e10002e000000acf81000000000009e6e100037000000acf8100000000000d56e1000550000007365745f73657373696f6e735f7065725f65726100000000fde91000030000000000000080c11000170000004a6e1000260000007365745f626f6e64696e675f6475726174696f6e1e6e10002c0000007365745f76616c696461746f725f636f756e740000000000fde910000300000000000000126e10000c000000f26d100020000000666f7263655f6e65775f65726100000000000000e56d10000d0000000000000006e71000040000004d6d10004f0000009c6d1000490000007365745f6f66666c696e655f736c6173685f677261636500296d1000240000007365745f696e76756c6e657261626c6573000000000000001f6d10000a0000000000000013f1100011000000ec6c10003300000020536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e6170706c795f726577617264732054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e202852652d2973657420746865207061796d656e742074617267657420666f72206120636f6e74726f6c6c65722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f206279207468652073746173682c206e6f742074686520636f6e74726f6c6c65722e636f6e74726f6c6c657220546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2062792074686520636f6e74726f6c6c65722c206e6f74207468652073746173682e706179656552657761726444657374696e6174696f6e204465636c617265206e6f2064657369726520746f206569746865722076616c6964617465206f72206e6f6d696e6174652e204465636c617265207468652064657369726520746f206e6f6d696e6174652060746172676574736020666f7220746865206f726967696e20636f6e74726f6c6c65722e746172676574735665633c3c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f757263653e204465636c617265207468652064657369726520746f2076616c696461746520666f7220746865206f726967696e20636f6e74726f6c6c65722e707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2052656d6f766520616e7920756e6c6f636b6564206368756e6b732066726f6d207468652060756e6c6f636b696e67602071756575652066726f6d206f7572206d616e6167656d656e742e205468697320657373656e7469616c6c7920667265657320757020746861742062616c616e636520746f206265207573656420627920746865207374617368206163636f756e7420746f20646f2077686174657665722069742077616e74732e2053656520616c736f205b6043616c6c3a3a756e626f6e64605d2e205363686564756c65206120706f7274696f6e206f662074686520737461736820746f20626520756e6c6f636b656420726561647920666f72207472616e73666572206f75742061667465722074686520626f6e6420706572696f6420656e64732e2049662074686973206c656176657320616e20616d6f756e74206163746976656c7920626f6e646564206c657373207468616e20543a3a43757272656e63793a3a6578697374656e7469616c5f6465706f73697428292c207468656e20697420697320696e6372656173656420746f207468652066756c6c20616d6f756e742e204f6e63652074686520756e6c6f636b20706572696f6420697320646f6e652c20796f752063616e2063616c6c206077697468647261775f756e626f6e6465646020746f2061637475616c6c79206d6f7665207468652066756e6473206f7574206f66206d616e6167656d656e7420726561647920666f72207472616e736665722e2053656520616c736f205b6043616c6c3a3a77697468647261775f756e626f6e646564605d2e436f6d706163743c42616c616e63654f663c543e3e2041646420736f6d6520657874726120616d6f756e742074686174206861766520617070656172656420696e207468652073746173682060667265655f62616c616e63656020696e746f207468652062616c616e636520757020666f72207374616b696e672e20557365207468697320696620746865726520617265206164646974696f6e616c2066756e647320696e20796f7572207374617368206163636f756e74207468617420796f75207769736820746f20626f6e642e6d61785f6164646974696f6e616c2054616b6520746865206f726967696e206163636f756e74206173206120737461736820616e64206c6f636b207570206076616c756560206f66206974732062616c616e63652e2060636f6e74726f6c6c6572602077696c6c20626520746865206163636f756e74207468617420636f6e74726f6c732069742e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f20627920746865207374617368206163636f756e742e5374616b696e675374616b696e6720496e76756c6e657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b20716564c075100048000000840a00000e0000005374616b696e67204f66666c696e65536c6173685374616b696e6720466f7263696e674e65774572614c696e6b616765206973207570646174656420696e206361736520656e7472792069732072656d6f7665643b20697420616c7761797320706f696e747320746f206578697374696e67206b6579733b2071656468656164206f66205374616b696e672056616c696461746f72735374616b696e67205374616b65727300000000000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000687f10000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000648210000000000000000000787f100001000000000000000100000000000000807f100015000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000987f10000000000000000000a87f100001000000000000000100000000000000b07f10000e000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000388010000000000000000000c07f100001000000000000000100000000000000c87f10000d0000000000000000000000d57f10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc7f10000000000000000000ec7f100001000000000000000100000000000000f46410000c0000000000000000000000d57f10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f47f1000000000000000000004801000010000000000000001000000000000000c80100011000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810006482100000000000000000002080100001000000000000000100000000000000288010000f000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810003880100000000000000000004880100001000000000000000100000000000000508010000d000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc8210000000000000000000608010000200000000000000010000000000000070801000060000000100000000000000abd410000c00000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000acf810008c8210000000000000000000788010000100000000000000000000000000000080801000060000000100000000000000abd410000c00000000000000868010003900000000000000000000000000000000000000000000000000000000000000acf810008c8210000000000000000000c080100001000000000000000000000000000000c8801000050000000100000000000000abd410000c000000000000008e6f10001100000000000000000000000000000000000000000000000000000000000000acf81000d08010000000000000000000e080100001000000000000000100000000000000e88010000a0000000101000000000000abd410000c00000000000000837010001c00000000000000000000000000000000000000000000000000000000000000acf81000f4801000000000000000000004811000010000000000000001000000000000000c8110000a0000000101000000000000abd410000c0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000dc8210000000000000000000188110000100000000000000010000000000000020811000070000000100000000000000abd410000c00000000000000278110002400000000000000000000000000000000000000000000000000000000000000acf810004c81100000000000000000005c811000040000000000000001000000000000007c8110000e000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc82100000000000000000008c81100001000000000000000100000000000000948110000a000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c8210000000000000000000a081100001000000000000000100000000000000a8811000140000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000308210000000000000000000ec7f100001000000000000000100000000000000bc811000100000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000308210000000000000000000cc81100002000000000000000100000000000000dc81100012000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c8210000000000000000000f081100001000000000000000000000000000000f881100013000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c82100000000000000000001c8210000100000000000000010000000000000024821000090000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810003082100000000000000000004082100003000000000000000100000000000000588210000a0000000100000000000000abd410000c0000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000acf8100064821000000000000000000074821000010000000000000001000000000000007c8210000d0000000000000000000000898210000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c82100000000000000000009c82100001000000000000000000000000000000a48210000f0000000000000000000000b38210002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc8210000000000000000000ec82100001000000000000000100000056616c696461746f72436f756e740000528a10002a0000004d696e696d756d56616c696461746f72436f756e740000000c000000000000000100000074000000028a10005000000053657373696f6e735065724572610000d98910002900000053657373696f6e52657761726450657262696c6c0c00000000000000010000001100000091891000480000000c0000000000000001000000750000003d891000540000004f66666c696e65536c6173684772616365000000ef8810004e000000426f6e64696e674475726174696f6e000c00000000000000010000001b000000c18810002e000000496e76756c6e657261626c6573000000ed87100069000000568810006b000000426f6e6465640000ad871000400000004c65646765725374616b696e674c65646765723c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e005c8710005100000050617965650000000c000000000000000100000010000000238710003900000056616c696461746f727300000c000000000000000100000076000000d2861000510000004e6f6d696e61746f7273000079861000590000005374616b6572734578706f737572653c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e000c000000000000000100000077000000b98510006c0000002586100030000000acf8100000000000558610002400000043757272656e74456c656374656400007a8510003f00000043757272656e744572610000638510001700000043757272656e7453657373696f6e52657761726443757272656e74457261526577617264d68410005a00000030851000330000004e65787453657373696f6e735065724572610000b2841000240000004c6173744572614c656e6774684368616e6765000c00000000000000010000001c0000007a84100038000000536c6f745374616b650000000c000000000000000100000078000000fe8310004c000000acf81000000000004a84100030000000536c617368436f756e7400000c00000000000000010000000d0000008a83100074000000466f7263696e674e65774572612829000c000000000000000100000010000000708310001a000000526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e000c00000000000000010000000e000000f48210007c000000204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520616d6f756e74206f662062616c616e6365206163746976656c79206174207374616b6520666f7220656163682076616c696461746f7220736c6f742c2063757272656e746c792e2054686973206973207573656420746f20646572697665207265776172647320616e642070756e6973686d656e74732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e2054686520616363756d756c617465642072657761726420666f72207468652063757272656e74206572612e20526573657420746f207a65726f2061742074686520626567696e6e696e67206f66207468652065726120616e6420696e6372656173656420666f72206576657279207375636365737366756c6c792066696e69736865642073657373696f6e2e205468652063757272656e742065726120696e6465782e205468652063757272656e746c7920656c65637465642076616c696461746f7220736574206b65796564206279207374617368206163636f756e742049442e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e20596f752063616e27742069746572617465207468726f7567682076616c696461746f727320686572652c2062757420796f752063616e2066696e64207468656d20696e20746865206073657373696f6e7360206d6f64756c652e2054686973206973206b6579656420627920746865207374617368206163636f756e742e20546865206d61702066726f6d206e6f6d696e61746f72207374617368206b657920746f2074686520736574206f66207374617368206b657973206f6620616c6c2076616c696461746f727320746f206e6f6d696e6174652e20546865206d61702066726f6d202877616e6e616265292076616c696461746f72207374617368206b657920746f2074686520707265666572656e636573206f6620746861742076616c696461746f722e2057686572652074686520726577617264207061796d656e742073686f756c64206265206d6164652e204b657965642062792073746173682e204d61702066726f6d20616c6c2028756e6c6f636b6564292022636f6e74726f6c6c657222206163636f756e747320746f2074686520696e666f20726567617264696e6720746865207374616b696e672e204d61702066726f6d20616c6c206c6f636b65642022737461736822206163636f756e747320746f2074686520636f6e74726f6c6c6572206163636f756e742e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c79206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c697a6520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e526577617264708d100019000000208d100048000000bb0100002d0000005374616b696e672043757272656e744572615265776172645374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e73506572457261000000e08c100039000000208d100048000000100200002d0000005374616b696e672043757272656e74456c65637465645374616b696e6720536c6f745374616b655374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204d696e696d756d56616c696461746f72436f756e7468656164206f66205374616b696e67204e6f6d696e61746f72737900000028000000040000007a0000007b00000000000000000000007c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0751000480000007e0a00000a0000005374616b696e672053657373696f6e5265776172645374616b696e672050617965650000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f636f6e74726f6c6c657220616c726561647920706169726564737461736820616c726561647920626f6e6465646e6f7420612073746173686e6f74206120636f6e74726f6c6c65725374616b696e6720426f6e64696e674475726174696f6e756e7374616b65207468726573686f6c6420746f6f206c617267650a09090909090909096865616420697320736574207768656e20666972737420656c656d656e7420697320696e73657274656420616e6420756e736574207768656e206c61737420656c656d656e742069732072656d6f7665643b0a09090909090909096966206865616420697320536f6d65207468656e20697420706f696e747320746f206578697374696e67206b65793b207165640a09090909090909746172676574732063616e6e6f7420626520656d707479000000cc8e10005e0000002c020000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f7374616b696e672f7372632f6c69622e7273436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573000000000000489110000f00000000000000acf810000000000000000000000000005891100001000000000000000000000060911000110000000000000074911000010000000000000000000000acf810000000000000000000000000007c9110000f00000000000000acf81000000000000000000000000000acf810000000000000000000000000008b9110000d00000000000000acf81000000000000000000000000000acf81000000000000000000000000000989110000b00000000000000acf81000000000000000000000000000acf81000000000000000000000000000a39110001000000000000000acf81000000000000000000000000000acf81000000000000000000000000000b39110000e00000000000000acf81000000000000000000000000000acf81000000000000000000000000000c19110000e00000000000000a4b61000010000000000000000000000acf81000000000000000000000000000cf91100007000000000000001cc81000010000000000000000000000acf81000000000000000000000000000d69110000500000000000000dc911000020000000000000000000000acf81000000000000000000000000000ec9110000800000000000000f4911000030000000000000000000000acf810000000000000000000456c656374696f6e53746172746564001092100017000000416e6e6f756e63696e675374617274656400000026bc100003000000416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465644170706c696564566f74656400d5e61000090000000c9210000400000052657665616c6564d5e61000090000000c92100004000000d5e6100009000000486173682041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f6400000000f899100009000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000049a10000000000000000000acf8100000000000000000000100000000000000149a1000050000000000000000000000199a10001d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000389a10000000000000000000acf8100000000000000000000000000000000000489a100005000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000509a10000000000000000000acf8100000000000000000000100000000000000609a100014000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9a10000000000000000000acf8100000000000000000000100000000000000749a1000120000000100000000000000abd410000c00000000000000869a10001f00000000000000000000000000000000000000000000000000000000000000acf81000d49a10000000000000000000acf8100000000000000000000100000000000000a59a10000a000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9a10000000000000000000acf8100000000000000000000100000000000000af9a10000f0000000100000000000000abd410000c00000000000000be9a10001300000000000000000000000000000000000000000000000000000000000000acf81000d49a10000000000000000000acf8100000000000000000000100000000000000e49a10000b0000000000000000000000ef9a10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9a10000000000000000000acf81000000000000000000001000000000000000c9b100005000000010000000000000073bc10000700000000000000119b10004500000000000000000000000000000000000000000000000000000000000000acf81000589b10000000000000000000acf8100000000000000000000100000000000000689b100010000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000949b10000000000000000000acf8100000000000000000000100000000000000789b10000c000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000949b10000000000000000000acf8100000000000000000000100000000000000849b10000f000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000949b10000000000000000000acf8100000000000000000000100000000000000a49b10000b000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b09b10000000000000000000acf8100000000000000000000100000000000000c09b10000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000d09b10000000000000000000acf8100000000000000000000100000000000000e09b10000f0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9b10000000000000000000acf81000000000000000000001000000000000000c9c10000f000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810001c9c10000000000000000000acf81000000000000000000001000000000000002c9c10000e0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810003c9c10000000000000000000acf810000000000000000000010000004175746f53746172740000000c00000000000000010000006f0000005374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e00000c000000000000000100000010000000526f756e640000000c00000000000000010000000d0000004578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e0000000c00000000000000010000007d000000436f6d6d69746d656e74735665633c543a3a486173683e000c00000000000000010000000e000000566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e00000c00000000000000010000007e000000416e6e6f756e63696e67506572696f64566f74696e67506572696f6452657665616c696e67506572696f64000c00000000000000010000007f000000436f756e63696c53697a65000c00000000000000010000008000000043616e6469646163794c696d697400000c0000000000000001000000810000004d696e436f756e63696c5374616b6542616c616e63654f663c543e000c0000000000000001000000120000004e65775465726d4475726174696f6e000c00000000000000010000001b0000004d696e566f74696e675374616b6500000c000000000000000100000014000000436f756e63696c456c656374696f6e4f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167656d696e696d756d207374616b65206d7573742062652070726f7669646564656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b65214f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e67207374616765766f74696e67207374616b6520746f6f206c6f77436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e6720737461676573616c7420746f6f206c61726765436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a653fa010004f000000cc020000010000006d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f707065642f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f656c656374696f6e2e72730000000000007ca31000050000000000000084a31000010000000000000000000000acf810000000000000000000000000009ca310000400000000000000a0a31000020000000000000000000000acf81000000000000000000000000000d0a310000600000000000000d8a31000030000000000000000000000acf8100000000000000000000000000020a410001400000000000000d0c41000010000000000000000000000acf8100000000000000000000000000034a410001300000000000000d0c41000010000000000000000000000acf8100000000000000000000000000047a410001000000000000000d0c41000010000000000000000000000acf8100000000000000000000000000057a410001b0000000000000074a41000010000000000000000000000acf810000000000000000000000000008ca41000170000000000000074a41000010000000000000000000000acf81000000000000000000000000000a3a410001a0000000000000074a41000010000000000000000000000acf81000000000000000000000000000bda410001b00000000000000d8a41000010000000000000000000000acf81000000000000000000000000000f0a410001b000000000000000ca51000010000000000000000000000acf8100000000000000000000000000024a5100016000000000000003ca51000010000000000000000000000acf8100000000000000000000000000054a51000190000000000000070a51000010000000000000000000000acf8100000000000000000000000000088a510001a00000000000000d8a41000010000000000000000000000acf81000000000000000000000000000a2a510001300000000000000acf81000000000000000000000000000acf81000000000000000000000000000b5a510001400000000000000acf81000000000000000000000000000acf81000000000000000000000000000c9a510000e00000000000000d8a51000010000000000000000000000acf8100000000000000000006170706c790000000000000027a610000500000000000000ef9b10000c000000766f74650000000019a610000a0000000000000073bc1000070000000000000027a610000500000000000000ef9b10000c00000072657665616c00000000000019a610000a0000000000000073bc100007000000000000009ca310000400000000000000abd410000c0000000000000023a61000040000000000000000ea1000070000007365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f6400000000000013a61000060000000000000065bc10000e0000007365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b65000000000da610000600000000000000ef9b10000c0000007365745f706172616d5f6e65775f7465726d5f6475726174696f6e000000000005a61000080000000000000065bc10000e0000007365745f706172616d5f636f756e63696c5f73697a65000000000000f9a510000c0000000000000026bc1000030000007365745f706172616d5f63616e6469646163795f6c696d697400000000000000f4a51000050000000000000026bc1000030000007365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f73746172740000000000f0a51000040000000000000006e7100004000000666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747374616b654f6e6c7920746865206c696169736f6e20666f722074686520636f6e74656e74206d6179206d6f6469667920697473207374617475732e4f6e6c7920616374697665206d656d62657273206d61792063726561746520636f6e74656e742e43616e6e6f742063726561746520636f6e74656e7420666f7220696e616374697665206f72206d697373696e672064617461206f626a65637420747970652e446174614469726563746f727920446174614f626a6563744279436f6e74656e74496400000000c8a710000c00000000000000d4a71000020000000000000000000000acf81000000000000000000000000000e4a710000f00000000000000d4a71000020000000000000000000000acf81000000000000000000000000000f3a710000f00000000000000d4a71000020000000000000000000000acf8100000000000000000000000000002a810000d00000000000000d4a71000020000000000000000000000acf810000000000000000000000000000fa810000f00000000000000d4a71000020000000000000000000000acf810000000000000000000436f6e74656e744164646564dee6100009000000d5e6100009000000436f6e74656e744163636570746564436f6e74656e7452656a65637465644d6574616461746141646465644d65746164617461557064617465640000ccaa10001c00000020a91000600000006900000003000000a8aa10002400000020a9100060000000710000000300000055aa10003800000020a9100060000000ae0000002a0000002daa10002800000020a9100060000000af0000003200000005aa10002800000020a9100060000000b10000002c000000d9a910002c00000020a9100060000000b00000004c000000a7a910003200000020a9100060000000e50000000300000080a910002700000020a9100060000000ed00000004000000f8a810002800000020a9100060000000f30000000300000053746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e636545787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e64657800000010ab1000480000007e0a00000a0000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e7273000000004cad10000f00000000000000000000009ef010001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005cad10000000000000000000acf81000000000000000000001000000000000006cad10001500000001000000000000005cf010000c0000000000000081ad10000d00000000000000000000000000000000000000000000000000000000000000acf81000b4ad10000000000000000000acf81000000000000000000000000000000000008ead10001300000001000000000000005cf010000c00000000000000a1ad10001200000000000000000000000000000000000000000000000000000000000000acf81000b4ad10000000000000000000acf8100000000000000000000000000000000000c4ad100016000000000000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f0ad10000000000000000000acf8100000000000000000000100000000000000daad100015000000000000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f0ad10000000000000000000acf810000000000000000000010000004b6e6f776e436f6e74656e74496473000c00000000000000010000000e000000446174614f626a6563744279436f6e74656e744964446174614f626a6563743c543e4d657461646174614279436f6e74656e744964436f6e74656e744d657461646174613c543e000c00000000000000010000001000000053746f7261676550726f76696465724164647265737353746f7261676550726f76696465725265706f4964000c00000000000000010000000e000000446174614469726563746f727944617461206f626a6563742061726561647920616464656420756e646572207468697320636f6e74656e74206964446174614469726563746f7279204d657461646174614279436f6e74656e7449644f6e6c7920616374697665206d656d626572732063616e2061646420636f6e74656e74206d657461646174614d657461646174612061726561647920616464656420756e646572207468697320636f6e74656e74206964536368656d612069732072657175697265644a534f4e206973207265717569726564446174614469726563746f7279204b6e6f776e436f6e74656e744964734f6e6c7920616374697665206d656d626572732063616e2075706461746520636f6e74656e74206d657461646174614f6e6c79206f776e65722063616e2075706461746520636f6e74656e74206d657461646174614e6f206d6574616461746120666f756e6420627920636f6e74656e742069644e6f20757064617465732070726f7669646564446174614469726563746f72792053746f7261676550726f76696465725265706f4964446174614469726563746f72792053746f7261676550726f766964657241646472657373d0af10005200000092000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646174615f6469726563746f72792e727300000000000058b110000b0000000000000064b11000030000000000000000000000acf81000000000000000000000000000acb110000e00000000000000bcb11000010000000000000000000000acf81000000000000000000000000000d4b110000e00000000000000bcb11000010000000000000000000000acf81000000000000000000000000000e2b110000c00000000000000f0b11000020000000000000000000000acf8100000000000000000000000000020b210000f00000000000000f0b11000020000000000000000000000acf810000000000000000000000000002fb210001c000000000000004cb21000010000000000000000000000acf8100000000000000000000000000064b210001c0000000000000080b21000010000000000000000000000acf8100000000000000000006164645f636f6e74656e740000000000a6b210000a000000000000005cf010000c00000000000000ceb210000700000000000000d5b210002200000000000000f7b2100004000000000000004bea1000030000006163636570745f636f6e74656e74000000000000a6b210000a000000000000005cf010000c00000072656a6563745f636f6e74656e746164645f6d65746164617461000000000000a6b210000a000000000000005cf010000c00000000000000b0b210000600000000000000b6b21000180000007570646174655f6d657461646174617365745f73746f726167655f70726f76696465725f7265706f5f696400000000009fb21000070000000000000000ea1000070000007365745f73746f726167655f70726f76696465725f616464726573730000000098b21000070000000000000000ea100007000000616464726573737265706f5f6964636f6e74656e745f6964757064617465436f6e74656e744d657461646174615570646174653c543e747970655f69643c5420617320444f545254726169743e3a3a446174614f626a65637454797065496473697a6553797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e3a65787472696e7369635f696e646578626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c6964207479706553797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7454696d657374616d70204d656469616e54696d657374616d702055706461746554696d657374616d7020526563656e7448696e747353797374656d20426c6f636b4861736853797374656d204576656e747353797374656d204163636f756e744e6f6e63650000bcb4100031000000edb4100067000000790000000400000046696e616c2068696e74206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f66696e616c6974792d747261636b65722f7372632f6c69622e72736cb5100023000000edb41000670000007a0000000400000046696e616c697a6564206865696768742061626f766520626c6f636b206e756d62657200a0b51000480000007e0a00000a0000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e72734765747320616e64206465636f6465732066696e616c206e756d62657220696e686572656e742064617461436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e6473417400000000000094b610001000000000000000a4b61000010000000000000000000000acf81000000000000000000000000000acb610001500000000000000a4b61000010000000000000000000000acf810000000000000000000436f756e63696c5465726d456e646564c1b610000b0000004e6577436f756e63696c5465726d53746172746564426c6f636b4e756d62657200000000f8b610000b000000000000001cc81000010000000000000000000000acf8100000000000000000004d656d6f5570646174656453797374656d20506172656e74486173682cb710001e0000004ab710005d000000ad01000003000000426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d00000000000000fcbb10000c0000000100000000000000abd410000c0000000000000008bc10000800000000000000000000000000000000000000000000000000000000000000acf81000b8bc1000000000000000000010bc10000100000000000000010000000000000018bc10000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100044bc100000000000000000002cbc10000100000000000000000000000000000034bc100010000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100044bc1000000000000000000054bc1000010000000000000000000000000000005cbc100009000000010000000000000065bc10000e0000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000acf81000f4bc100000000000000000007cbc10000100000000000000010000000000000084bc10000d000000010000000000000026bc1000030000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000acf8100088c61000000000000000000094bc1000010000000000000001000000000000009cbc10000a000000000000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4bc10000000000000000000a8bc100001000000000000000100000000000000b0bc100006000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b8bc10000000000000000000c8bc100001000000000000000100000000000000d0bc10000a000000000000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4bc10000000000000000000dcbc100001000000000000000100000000000000e4bc10000e000000000000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4bc1000000000000000000004bd1000010000000000000001000000000000000cbd100006000000000000000000000012bd10000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810001cbd100000000000000000002cbd10000100000000000000010000000000000034bd10000600000000000000000000003abd10001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100054bd1000000000000000000064bd10000100000000000000010000004163636f756e744e6f6e6365543a3a496e64657883bf10001f00000045787472696e736963436f756e7475333200000055bf10002e000000416c6c45787472696e736963734c656e0c00000000000000010000001000000007bf10004e000000426c6f636b48617368543a3a426c6f636b4e756d626572543a3a486173680000e1be10002600000045787472696e7369634461746100000095be10004c00000052616e646f6d53656564000073be1000220000004e756d62657200000c00000000000000010000001c00000031be100042000000506172656e7448617368000015be10001c00000045787472696e73696373526f6f7400000c000000000000000100000082000000d0bd100045000000446967657374543a3a446967657374000c00000000000000010000000e00000094bd10003c0000004576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e0c00000000000000010000000e0000006cbd100028000000204576656e7473206465706f736974656420666f72207468652063757272656e7420626c6f636b2e20446967657374206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2045787472696e7369637320726f6f74206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2048617368206f66207468652070726576696f757320626c6f636b2e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e2052616e646f6d2073656564206f66207468652063757272656e7420626c6f636b2e2045787472696e73696373206461746120666f72207468652063757272656e7420626c6f636b20286d6170732065787472696e736963277320696e64657820746f206974732064617461292e204d6170206f6620626c6f636b206e756d6265727320746f20626c6f636b206861736865732e20546f74616c206c656e67746820696e20627974657320666f7220616c6c2065787472696e736963732070757420746f6765746865722c20666f72207468652063757272656e7420626c6f636b2e20546f74616c2065787472696e7369637320636f756e7420666f72207468652063757272656e7420626c6f636b2e2045787472696e73696373206e6f6e636520666f72206163636f756e74732e54696d657374616d7020496e697469616c697a656454696d657374616d70204f72646572656448696e747354696d657374616d702057696e646f7753697a65616c77617973206174206c65617374206f6e6520726563656e742073616d706c653b20716564726563656e7420616e64206f72646572656420636f6e7461696e207468652073616d65206974656d733b2071656400000067c0100043000000edb4100067000000b20000000400000054696d657374616d70205265706f72744c6174656e63797072756e696e672064696374617465642062792077696e646f775f73697a6520776869636820697320616c776179732073617475726174656420617420313b20716564626164207369676e617475726520696e2065787472696e73696300000000f0c010000a00000000000000fcc0100001000000000000000000000014c11000020000000000000066696e616c5f68696e740000000000007cc11000040000000000000080c110001700000024c110003d00000061c110001b0000002048696e7420746861742074686520617574686f72206f66207468697320626c6f636b207468696e6b732074686520626573742066696e616c697a656420626c6f636b2069732074686520676976656e206e756d6265722e68696e74436f6d706163743c543a3a426c6f636b4e756d6265723e000000000060c210000d00000000000000000000006dc210002100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100090c210000000000000000000acf8100000000000000000000100000000000000a0c210000a000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000acc210000000000000000000acf81000000000000000000001000000416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e00000c00000000000000010000000e0000005465726d456e6473417400000c00000000000000010000000f000000436f756e63696c63616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f720030c310004e00000041000000010000006d757374207365742066757475726520626c6f636b206e756d6265722f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f636f756e63696c2e727300000000000030c410000b000000000000003cc4100001000000000000000000000054c410000100000000000000000000005cc41000120000000000000070c4100001000000000000000000000088c4100001000000000000000000000090c410001500000000000000a8c41000010000000000000000000000acf81000000000000000000000000000c0c410001000000000000000d0c41000010000000000000000000000e8c4100001000000000000007365745f636f756e63696c0000000000b3c51000080000000000000013f11000110000005cc51000570000006164645f636f756e63696c5f6d656d62657200000000000055c510000700000000000000abd410000c00000033c510002200000072656d6f76655f636f756e63696c5f6d656d6265720000000000000022c510001100000000000000abd410000c0000007365745f7465726d5f656e64735f6174000000001bc51000070000000000000065bc10000e000000f0c410002b0000002053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f766520416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e7473000000000084c61000040000000100000000000000abd410000c0000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000acf8100088c610000000000000000000acf810000000000000000000010000000000000098c610000d000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000a8c610000000000000000000acf810000000000000000000010000004d656d6f0c00000000000000010000000e0000004d61784d656d6f4c656e6774680000000c0000000000000001000000830000004d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f000000000028c710000b0000000000000034c71000010000000000000000000000acf8100000000000000000007570646174655f6d656d6f00000000004cc71000040000000000000000ea1000070000006d656d6f54696d657374616d70204469645570646174650000000000e8c710000a00000000000000f4c7100002000000000000000000000004c810000100000000000000000000000cc810000d000000000000001cc8100001000000000000000000000024c810000100000000000000000000002cc81000080000000000000034c8100004000000000000000000000054c8100001000000000000004e65774163636f756e740000d5e610000900000088c8100007000000a6c810001b0000005265617065644163636f756e74000000d5e61000090000008fc81000170000005472616e73666572d5e6100009000000d5e610000900000088c810000700000088c81000070000005cc810002c000000205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e42616c616e636520416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e62656e6566696369617279206163636f756e74206d757374207072652d6578697374746f6f2066657720667265652066756e647320696e206163636f756e747061796d656e7420776f756c64206b696c6c206163636f756e74000034c910002b0000005fc9100060000000f10000000400000054696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f74696d657374616d702f7372632f6c69622e727300d8c91000300000005fc9100060000000db0000000400000054696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b20ca10004e0000005fc9100060000000dc0000000400000054696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c4d696e696d756d506572696f643e206265747765656e2073657175656e7469616c20626c6f636b7354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f6454696d657374616d70204d696e696d756d506572696f6442616c616e63657320546f74616c49737375616e636542616c616e636573204578697374656e7469616c4465706f73697442616c616e636573205472616e73616374696f6e4261736546656542616c616e636573205472616e73616374696f6e4279746546656542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e636554696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e7420646174610000000000e0cb10000800000000000000e8cb100002000000000000000000000018cc100008000000000000000000000058cc10000b0000000000000064cc1000030000000000000000000000accc100008000000000000007472616e736665720000000000d01000040000000000000046ce1000230000000000000004d0100005000000000000006dce10001300000088ce100036000000acf8100000000000bece10004200000000cf10004800000048cf1000450000008dcf10002d000000acf8100000000000bacf1000460000007365745f62616c616e6365000000000043ce1000030000000000000046ce1000230000000000000069ce100004000000000000006dce1000130000000000000080ce100008000000000000006dce100013000000eccc100025000000acf810000000000011cd10004000000051cd10004600000097cd100049000000e0cd100036000000acf810000000000016ce10002d00000020536574207468652062616c616e636573206f66206120676976656e206163636f756e742e20546869732077696c6c20616c74657220604672656542616c616e63656020616e642060526573657276656442616c616e63656020696e2073746f726167652e20496620746865206e65772066726565206f722072657365727665642062616c616e63652069732062656c6f7720746865206578697374656e7469616c206465706f7369742c2069742077696c6c20616c736f2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d202860546f74616c49737375616e6365602920616e6420726573657420746865206163636f756e74206e6f6e636520286073797374656d3a3a4163636f756e744e6f6e636560292e20546865206469737061746368206f726967696e20666f7220746869732063616c6c2069732060726f6f74602e77686f3c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636566726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572206163636f756e742e20607472616e73666572602077696c6c207365742074686520604672656542616c616e636560206f66207468652073656e64657220616e642072656365697665722e2049742077696c6c2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d2062792074686520605472616e73666572466565602e204966207468652073656e6465722773206163636f756e742069732062656c6f7720746865206578697374656e7469616c206465706f736974206173206120726573756c74206f6620746865207472616e736665722c20746865206163636f756e742077696c6c206265207265617065642e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d75737420626520605369676e65646020627920746865207472616e736163746f722e6465737476616c756542616c616e636573204c6f636b7342616c616e636573000000000008d410000d000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000020d410000100000000000000010000000000000028d4100012000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d5100000000000000000003cd410000100000000000000010000000000000044d410000b000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000050d410000100000000000000010000000000000058d410000b000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000064d41000010000000000000001000000000000006cd4100012000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000080d410000100000000000000010000000000000088d4100012000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d5100000000000000000009cd4100001000000000000000100000000000000a4d41000070000000100000000000000abd410000c00000000000000b7d410001b00000000000000000000000000000000000000000000000000000000000000acf810005ce010000000000000000000d4d4100001000000000000000000000000000000dcd410000b0000000100000000000000abd410000c0000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000acf8100050d510000000000000000000e8d410000b00000000000000010000000000000040d510000f0000000100000000000000abd410000c0000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000060d510000b000000000000000100000000000000b8d51000050000000100000000000000abd410000c00000000000000bdd510002c00000000000000000000000000000000000000000000000000000000000000acf81000ecd510000000000000000000fcd51000010000000000000001000000546f74616c49737375616e6365543a3a42616c616e63650028dc1000260000004578697374656e7469616c4465706f7369740000f3db1000350000005472616e7366657246656500cedb1000250000004372656174696f6e46656500a7db1000270000005472616e73616374696f6e42617365466565000070db1000370000005472616e73616374696f6e4279746546656500002ddb10004300000056657374696e67543a3a4163636f756e74496456657374696e675363686564756c653c543a3a42616c616e63653e0000f7da1000360000004672656542616c616e6365007dd8100027000000acf8100000000000a4d8100050000000f4d810005d00000051d9100055000000a6d910004f000000f5d910005100000046da100015000000acf81000000000005bda100057000000b2da100045000000526573657276656442616c616e6365000c00000000000000010000007800000032d610005d0000008fd6100027000000acf8100000000000b6d610005b00000011d7100049000000acf81000000000005ad710005d000000b7d710002d000000acf8100000000000e4d710005300000037d81000460000004c6f636b735665633c42616c616e63654c6f636b3c543a3a42616c616e63652c20543a3a426c6f636b4e756d6265723e3e0000000c00000000000000010000000e00000004d610002e00000020416e79206c6971756964697479206c6f636b73206f6e20736f6d65206163636f756e742062616c616e6365732e2054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e2920546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420616c6f6e65206973207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865722c2074686520604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e2075702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420726571756972656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20756e6974732069737375656420696e207468652073797374656d2e76657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c75656163636f756e74206c6971756964697479207265737472696374696f6e732070726576656e74207769746864726177616c42616c616e6365732056657374696e6700000000000000e4dc10000300000000000000e8dc100001000000000000000000000000dd1000080000000000000073657400000000007bde100003000000000000007ede10001200000040dd100016000000acf810000000000056dd10005d000000b3dd10002f000000acf8100000000000e2dd100063000000acf810000000000045de10003600000020536574207468652063757272656e742074696d652e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e742073706563696669656420627920606d696e696d756d5f706572696f64602e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d7573742062652060496e686572656e74602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d70000000000000002ce010000300000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100038e01000000000000000000048e010000100000000000000010000000000000050e010000b00000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005ce0100000000000000000006ce010000100000000000000000000000000000074e010000d00000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100084e01000000000000000000094e0100004000000000000000100000000000000b4e0100009000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000c0e010000000000000000000d0e010000100000000000000010000004e6f77543a3a4d6f6d656e740c00000000000000010000001c0000007fe2100024000000426c6f636b506572696f64000c0000000000000001000000100000002ee21000510000004d696e696d756d506572696f640000000c00000000000000010000008400000005e110005a0000005fe110005a000000b9e110005900000012e210001c0000004469645570646174650000000c000000000000000100000010000000d8e010002d00000020446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d20706572696f64206265747765656e20626c6f636b732e204265776172652074686174207468697320697320646966666572656e7420746f20746865202a65787065637465642a20706572696f6420746861742074686520626c6f636b2070726f64756374696f6e206170706172617475732070726f76696465732e20596f75722063686f73656e20636f6e73656e7375732073797374656d2077696c6c2067656e6572616c6c7920776f726b2077697468207468697320746f2064657465726d696e6520612073656e7369626c6520626c6f636b2074696d652e20652e672e20466f7220417572612c2069742077696c6c20626520646f75626c65207468697320706572696f64206f6e2064656661756c742073657474696e67732e204f6c642073746f72616765206974656d2070726f766964656420666f7220636f6d7061746962696c6974792e2052656d6f766520616674657220616c6c206e6574776f726b732075706772616465642e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e6e6f7420656e6f75676820667265652066756e6473d0e2100028000000f8e2100025000000cb09000023000000696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64657372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e727342616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e7462616c616e636520746f6f206c6f7720746f2073656e642076616c7565676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c75650000e8e310005f00000069010000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f62616c616e6365732f7372632f6c69622e727366696e616c6e756d46696e616c697a6564206e756d62657220696e686572656e742064617461206e6f7420666f756e643a617574683a6c656e3a636f6465436f6e74656e7420776974682074686973204944206e6f7420666f756e642e4e6f2064617461206f626a6563742073746f726167652072656c6174696f6e7368697020666f756e6420666f7220746869732049442e4f6e6c792073746f726167652070726f7669646572732063616e206372656174652064617461206f626a6563742073746f726167652072656c6174696f6e73686970732e4f6e6c79207468652073746f726167652070726f766964657220696e206120444f53522063616e20646563696465207768657468657220746865792772652072656164792e000000000014e61000220000000000000038e61000030000000000000000000000acf8100000000000000000000000000050e6100029000000000000007ce61000020000000000000000000000acf810000000000000000000000000008ce610001b00000000000000a8e61000020000000000000000000000acf81000000000000000000000000000b8e610001d00000000000000a8e61000020000000000000000000000acf810000000000000000000446174614f626a65637453746f7261676552656c6174696f6e7368697041646465640000e7e610001f000000dee6100009000000d5e6100009000000446174614f626a65637453746f7261676552656c6174696f6e73686970526561647955706461746564000000e7e610001f00000006e710000400000053746f7261676550726f76696465724164646564436f6e74656e7400d5e6100009000000dee610000900000053746f7261676550726f766964657252656d6f766564436f6e74656e744163636f756e744964436f6e74656e744964446174614f626a65637453746f7261676552656c6174696f6e736869704964626f6f6c436f6e73656e737573204f726967696e616c417574686f72697469657300000000005ce81000120000000000000070e8100001000000000000000000000088e8100001000000000000000000000090e810000c000000000000009ce81000010000000000000000000000b4e81000010000000000000000000000bce810000600000000000000c4e81000010000000000000000000000dce81000010000000000000000000000e4e810000e00000000000000f4e810000100000000000000000000000ce9100001000000000000000000000014e9100008000000000000001ce9100001000000000000000000000034e910000100000000000000000000003ce910000b0000000000000048e9100001000000000000000000000060e9100001000000000000000000000068e910000c0000000000000074e910000100000000000000000000008ce9100001000000000000007265706f72745f6d69736265686176696f7200000000000021eb1000070000000000000000ea10000700000008eb1000190000006e6f74655f6f66666c696e6500000000c4ea10000700000000000000cbea10003d00000070ea10005400000072656d61726b00000000000069ea1000070000000000000000ea1000070000004eea10001b0000007365745f686561705f706167657300000000000046ea100005000000000000004bea10000300000007ea10003f0000007365745f636f646500000000fde91000030000000000000000ea100007000000ebe91000120000007365745f73746f726167650000000000d9e910000500000000000000dee910000d000000bee910001b0000006b696c6c5f73746f7261676500000000b2e910000400000000000000b6e910000800000094e910001e000000204b696c6c20736f6d65206974656d732066726f6d2073746f726167652e6b6579735665633c4b65793e2053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e6e65775665633c75383e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f74652074686174207468652070726576696f757320626c6f636b27732076616c696461746f72206d697373656420697473206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f722e5f7265706f7274436f6e73656e7375730000000000000098eb1000130000000000000000000000abeb10001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100034f010000000000000000000acf810000000000000000000000000004f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a6865617070616765730072ec10002300000048ec10002a000000e8eb1000600000001a010000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f636f6e73656e7375732f7372632f6c69622e7273696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64653a205f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e446174614f626a65637453746f7261676552656769737472792052656c6174696f6e7368697073446174614f626a65637453746f7261676552656769737472792052656c6174696f6e73686970734279436f6e74656e744964000000000000acef1000130000000000000000000000bfef10002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4ef10000000000000000000acf8100000000000000000000100000000000000e1ef1000120000000000000000000000bfef10002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4ef10000000000000000000acf810000000000000000000010000000000000004f010000d0000000100000000000000bfef1000220000000000000011f010002000000000000000000000000000000000000000000000000000000000000000acf8100034f010000000000000000000acf810000000000000000000000000000000000044f010001800000001000000000000005cf010000c0000000000000068f010002700000000000000000000000000000000000000000000000000000000000000acf8100024f110000000000000000000acf81000000000000000000001000000000000008ff010000f00000000000000000000009ef010001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100024f110000000000000000000acf8100000000000000000000100000000000000aff010001c0000000100000000000000cbf010001c0000000000000006e710000400000000000000000000000000000000000000000000000000000000000000acf81000e8f010000000000000000000acf8100000000000000000000100000000000000f8f010001b00000001000000000000005cf010000c0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf8100024f110000000000000000000acf81000000000000000000001000000466972737452656c6174696f6e736869704964543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049644e65787452656c6174696f6e736869704964000c00000000000000010000000f00000052656c6174696f6e7368697073446174614f626a65637453746f7261676552656c6174696f6e736869703c543e0000000c00000000000000010000001000000052656c6174696f6e73686970734279436f6e74656e744964543a3a436f6e74656e7449645665633c543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049643e5265616479436f6e74656e744964735665633c543a3a436f6e74656e7449643e53746f7261676550726f7669646572536572766573436f6e74656e7428543a3a4163636f756e7449642c20543a3a436f6e74656e74496429000c00000000000000010000001000000053746f7261676550726f7669646572734279436f6e74656e7449645665633c543a3a4163636f756e7449643e0c00000000000000010000000e000000446174614f626a65637453746f726167655265676973747279446174614f626a65637453746f726167655265676973747279204e65787452656c6174696f6e7368697049640000008cf11000600000007b000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646174615f6f626a6563745f73746f726167655f72656769737472792e72730000000070f21000100000000000000080f21000010000000000000000000000acf8100000000000000000000000000098f210001600000000000000b0f21000010000000000000000000000acf81000000000000000000000000000c8f210001800000000000000b0f21000010000000000000000000000acf8100000000000000000006164645f72656c6174696f6e7368697000000000e2f2100003000000000000005cf010000c0000007365745f72656c6174696f6e736869705f7265616479000000000000e0f210000200000000000000bfef100022000000756e7365745f72656c6174696f6e736869705f726561647969646369646f66666c72657030496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165644e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e7420646174612116f410000d000000fbf310001b000000bcf310003f0000006f010000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b002cf4100010000000696e697469616c697a655f626c6f636b44f410000f0000006170706c795f65787472696e736963005cf4100013000000696e686572656e745f65787472696e736963730078f410000f000000636865636b5f696e686572656e74730090f410001400000076616c69646174655f7472616e73616374696f6eacf410000f0000006f6666636861696e5f776f726b657200c4f41000160000006772616e6470615f70656e64696e675f6368616e67650000e4f41000150000006772616e6470615f666f726365645f6368616e676561757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d7374617030496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e54696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e4578706c69636974207265706f7274696e67206e6f7420616c6c6f7765640000000000000018f610001000000000000000acf8100000000000000000000000000028f6100001000000000000000000000030f610000f00000000000000acf8100000000000000000000000000040f61000010000000000000045787472696e736963537563636573735df610002500000045787472696e7369634661696c65640048f610001500000020416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e0000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e727390f6100019000000b0f610006c000000550000002200000048617368206e6f7420657175616c000060f710001900000080f7100064000000140100002a00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f636f72652f73722d7072696d6974697665732f7372632f6c69622e7273fcf710002d00000029f810000c00000035f8100003000000617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a2052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e67000074f810001100000085f8100017000000ea020000050000006361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e7273bcf8100020000000dcf81000120000000c000000000000000100000085000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839390000f0f9100006000000f6f9100022000000d8f9100018000000000a0000050000007372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e6774682038fa1000160000004efa10000d000000d8f9100018000000060a000005000000736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d0022fb10000b0000009a0d1100160000005bfa1000010000000cfb100016000000da07000009000000780d11000e000000860d1100040000008a0d1100100000005bfa1000010000000cfb100016000000de07000005000000380d11002b000000630d110015000000590100001500000022fb10000b0000002dfb10002600000053fb1000080000005bfb1000060000005bfa1000010000000cfb100016000000eb070000050000007372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f662060000000a6fb10000200000090fb100016000000540400001100000090fb1000160000004804000028000000000000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e8592000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20300711004a0000008009110000020000800b11003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202100711002000000027000000190000001007110020000000280000002000000010071100200000002a0000001900000010071100200000002b0000001800000010071100200000002c0000002000000000000000000000007372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f662060acf8100000000000630d1100150000000a0400000500000000df9902046e616d6501d69902fe0200146578745f6765745f73746f726167655f696e746f010f6578745f7365745f73746f72616765020c6578745f74776f785f31323803116578745f636c6561725f73746f72616765040e6578745f626c616b65325f32353605106578745f73746f726167655f726f6f7406186578745f73746f726167655f6368616e6765735f726f6f7407126578745f737232353531395f76657269667908126578745f656432353531395f766572696679090e6578745f7072696e745f757466380a0d6578745f7072696e745f6865780b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f48616c6c6f633a3a7261775f7665633a3a5261775665633c542c413e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303535653861326231623234343232611034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a6838313537643033656331336437373634114e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831663436396133616531633539373333125d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6865633164633230303566346431663132130c5f5f727573745f616c6c6f631408727573745f6f6f6d150e5f5f727573745f7265616c6c6f63160e5f5f727573745f6465616c6c6f63173d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a683934363839396565653665623634326118633c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6866373338663732363337313438623665194e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68323333303466343330353664653139301a5d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68396239316661383666336366666164341b135f5f727573745f616c6c6f635f7a65726f65641c36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68316631643830336365653262653666311d4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343130626665633866313937613634661e4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343137646431366135643963323734311f4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835373536333266303365313439393664204e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835383061333664323630613639343137214e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835396437326330376663643633636563228d023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c3c7375627374726174655f7072696d6974697665733a3a656432353531393a3a5369676e61747572652061732073725f7072696d6974697665733a3a7472616974733a3a5665726966793e3a3a5369676e65722c7375627374726174655f7072696d6974697665733a3a656432353531393a3a5369676e61747572653e3e3e3a3a66726f6d3a3a6836646362616233666264393637363235234e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6836396432393734646537313963643137244e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839653661363366396363386538633463254e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6865636165363733613133656330633861264e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686639643830366565383162353165333527513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a683062623864646130653931353335653428463c753332206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6832353531346334363332636462616432292e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68653538366233356666346134333038302a663c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68303766383161313762656431643863312b513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a68386363306232623966663362636330342c6b3c73726d6c5f6772616e6470613a3a53746f72656450656e64696e674368616e67653c4e2c53657373696f6e4b65793e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313437303939653338656637373338312d3d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68306331636438346335326263313364372e3a73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68373537313931316531626133626133612f3b73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a7363686564756c655f6368616e67653a3a6835363063643164313862653932393936303f73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6831623933306536393661353238626566314473726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68666237633337343631656138656463613230636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6830313430666264663339323732626666333a73726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6834366564306262336666666165393839343f73726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6834343533306634616662616263373339354473726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683162333332353434643462616435626636303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6833323639613736306431653239356435373d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a68633131373138663466376165383934323829636f72653a3a70616e69636b696e673a3a70616e69633a3a68343263613161376231326230623332613934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68393761316539323166343165393866313a8001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a68373364636539633432653165343639613b2e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a68343332643063323666616438613536333c303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a68356137333665376538313163643931623d2f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a68333165646230313165363966393665633e35636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a68323961343164376131663765643662373f303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683636366338636636343033636434343440303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6863316363353933663838346332386237415b3c73726d6c5f696e64696365733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a5374617469634c6f6f6b75703e3a3a6c6f6f6b75703a3a68316562373931326165613836326363664234636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a686266366363343461636637616363623343423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6866343935306536633131383961666632445c3c73726d6c5f696e64696365733a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a686530366133353564663637323938323745323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6838313939313133386233646537653134462d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a683631326165386430343236333563393147626a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646f776e6c6f6164733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6833336539636139333439326164343464485d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646f776e6c6f6164733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a686461663061323861346166613761363049586a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646f776e6c6f6164733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68363338326264356164333636393864624ad2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a68336461306130313430306239616461644b3d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68643861333064306434326538616230384c656a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68316465616337643863656535643463314d8e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68653832386163386336643536323762304e8b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68656234303932343432393361326464304f90013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68373066613166373264663361333932325093013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838666431376563396232363461343938518c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865323066353762663033643364626334528e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861383138383131646238323430313631538e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68313562343066356663303435643063325491013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830626661393266633736313861343063558a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623031633634353164373165363939665690013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686136363830313264643638633236323757606a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6865336238613639613634356139353637585a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f70726f636573735f766f74653a3a68383935356265393339626230353666385981023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a68303837633464313338663033623164645a3873726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6576656e743a3a68653830356161336663343137633439345bd6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a63757272656e63793a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63652c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a68313433313863643230373164336131645c646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68366364346666653065323966303036355d91013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a68373632663337656366643032393839325e653c73726d6c5f62616c616e6365733a3a696d62616c616e6365733a3a4e65676174697665496d62616c616e63653c542c493e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68663363346238613761656432383363315f8c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a6861353566336633396138646635353436606c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a7075743a3a6861353965393333666133663135636266615b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862633230363239333435626434356464623a73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865376563623830623535393266303138633f73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6864383230363063363161643262326166644473726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683131333132376236303734373433633965716a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a656e737572655f646174615f6f626a6563745f747970653a3a683362313931663037666566363937383966726a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6834363366346264323536356132626535676d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a683562363565636335343966626434633568483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a683065353636613562613766336439636269686a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68396233393230393762653364653337646a4a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68303137383462633765666634363538316b39636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a68346266343164386532346666326265626c4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a68303631346536396366613637333762356d4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68643664303734353339386362323434376e4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a68393136306335313031336136633663356f4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a683535623066663233303264356135393970486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6865393764663365623335653363356536714b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6772616e6470613a3a6837663531636264376632383865646466724d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6838366237373334303836663633613530734c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6830393838613963323936386365643463744b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a683866643861623335323937353036353375486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a6866393431333362323930366263343730764b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d626572733a3a6863633435346130323138396431366562774d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d6967726174696f6e3a3a6831353236633839646334343963653033784a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6163746f72733a3a6834386435313061323661313165653133795d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f747970655f72656769737472793a3a68666466623664333633666537336261327a526a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6469726563746f72793a3a68396538646132646533613130653162617b606a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f73746f726167655f72656769737472793a3a68646265393731366662343265373231327c4d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646f776e6c6f6164733a3a68623630313666346265396665373736317d573c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f67206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a68343733383830343963373463363064397e89013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c486173682c417574686f7269747949642c5365616c5369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a68623261666566323665363964383936307f8f016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f4445434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a6465636f64653a3a6831613936386561326532333165333964800192016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68656462376566313635333635396134368101633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68346436306531623261656366663236658201753c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a686330623938303365666635636565353183016e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a746f67676c655f646f73725f72656164793a3a683264353965336263376136376231396684017c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a683566333033623366363764613564656385015c3c73726d6c5f7374616b696e673a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a686137313538386630366263613637646386013f73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f667265655f62616c616e63653a3a683264313235633064303430373264626687014373726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f72657365727665645f62616c616e63653a3a6838376263383634373164633935343635880186013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68626537626565366333613931323131398901576a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a69735f636f756e63696c6f723a3a68336665336333323163396364373665308a01ec023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a52656c6174696f6e73686970734279436f6e74656e7449643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a54726169743e3a3a436f6e74656e7449642c616c6c6f633a3a7665633a3a5665633c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a54726169743e3a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049643e3e3e3a3a6765743a3a68636130363134326261656139633732658b016a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a72656c6174696f6e73686970733a3a68336633303963386133363764636633378c01da013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163746f7242794163636f756e7449643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163746f723c543e3e3e3a3a6765743a3a68646330303562393932633336383335398d019c023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a446174614f626a6563744279436f6e74656e7449643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a54726169743e3a3a436f6e74656e7449642c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a446174614f626a6563743c543e3e3e3a3a6765743a3a68326334663565656261656530383463658e0185013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68373437336335326664666238623831338f018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a7472616974733a3a4d656d626572733c543e3e3a3a69735f6163746976655f6d656d6265723a3a6861383364336136386163633137646130900130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a683431616635393531636265336134613691015b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a656e737572655f69735f6d656d6265723a3a68646431343731653036636339393461669201676a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a7570646174655f636f6e74656e745f6a756467656d656e743a3a6839396232666434343733616439346134930130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68623734626530316566626433313933669401f7013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4163636f756e74496442794d656d62657249643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a54726169743e3a3a4d656d62657249642c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a68386630653366336433353836396537659501606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f6176617461723a3a68643933626439313137353231383466669601606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f68616e646c653a3a68633862656664373238383836373666359701646a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f61626f75745f746578743a3a68366432613965653437383334376165369801423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68633066626638363531386266356331369901483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a68646431323730326664306434346361629a01e7013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163636f756e744964734279526f6c653c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c652c616c6c6f633a3a7665633a3a5665633c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a68666531633830343430353464663634339b01676a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a636865636b5f757365725f726567697374726174696f6e5f696e666f3a3a68396161663562366530373961373664359c013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68613165333962333732393661653063339d018a013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a68393834393963656336623130376238349e01713c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68656561316135323238616264356232349f01586a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a696e736572745f6d656d6265723a3a6838333533313630333932393730333037a00182013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f736c6173683a3a6835353333343761653135376165303233a1017e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a6839393364316232373331666330393936a2016c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a7075743a3a6866653261323765633561656265393462a3018c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f63616e5f77697468647261773a3a6837373763633931653266383234646330a401e8023c73726d6c5f7374616b696e673a3a4c65646765723c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c73726d6c5f7374616b696e673a3a5374616b696e674c65646765723c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c3c542061732073726d6c5f7374616b696e673a3a54726169743e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63652c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3e3a3a6765743a3a6835313832643832356662616235623665a5015e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6830343537623130366464396131313263a6013373726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7374616b6572733a3a6830363033633738633339666437333664a701483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a72656d6f76653a3a6836316533383735393831326461376531a80136636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a6863313439646433653066633666633739a90130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6864656663303837653633373562633064aa01583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839353861343765656263383665303939ab01723c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831346639386239323534313462316431ac015e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835373166376565346339343730666463ad01bf016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f494d504c5f4445434f44455f464f525f55736572496e666f3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a55736572496e666f3e3a3a6465636f64653a3a6862323966383163343839363031613433ae015d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6864316461656135663930643130326331af01e4016a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a5f494d504c5f4445434f44455f464f525f436f6e74656e744d657461646174615570646174653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a436f6e74656e744d657461646174615570646174653c543e3e3a3a6465636f64653a3a6836373766323663383463613438346535b0015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839393565633365353835383437373761b101633c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c7536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6832663962376431643765323263653838b201753c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835663333393938663464356135626162b301643c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834336633316464666330666138336537b40192043c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d65206173207375627374726174655f636c69656e743a3a72756e74696d655f6170693a3a72756e74696d655f6465636c5f666f725f436f72653a3a436f72653c73725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c7536342c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f673e2c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c3c73726d6c5f696e64696365733a3a4d6f64756c653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653e2061732073725f7072696d6974697665733a3a7472616974733a3a5374617469634c6f6f6b75703e3a3a536f757263652c7536342c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2c73725f7072696d6974697665733a3a416e795369676e61747572653e3e3e3e3a3a617574686f7269746965733a3a6865623339316537616434623561336665b5015d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6835663065303736333266633934653737b60189013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f5f47657442797465537472756374526571756573744c69666554696d653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865623434353835373364383233346236b701586a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6863363461663032393964363365633663b8016c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a7075743a3a6864396137383164383031663865383762b901e4013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a506172616d65746572733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c652c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c65506172616d65746572733c543e3e3e3a3a6765743a3a6833313130393231616236656330323464ba01526a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a6170706c795f756e7374616b653a3a6830386164313065623536666539313334bb01b0023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163636f756e7449647342794d656d62657249643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a54726169743e3a3a4d656d62657273206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a7472616974733a3a4d656d626572733c543e3e3a3a49642c616c6c6f633a3a7665633a3a5665633c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a6835393463616533376238363535343838bc0189013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a4c6f636b61626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7365745f6c6f636b3a3a6832383531333965386432356138363439bd01536a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865383139623164313762343833623062be01443c636f72653a3a666d743a3a417267756d656e747320617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6862343930313364333836353535393265bf014a3c5b75383b205f5d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6861323332656131656261336130386165c001596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a656e737572655f70726f66696c653a3a6863616534646137386163303039356130c101636a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6838303935336264303630383732383062c20192013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617841626f7574546578744c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866313965633937393562653534353162c30192013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d61784176617461725572694c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864616332353833653166643761653466c4018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617848616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864663965393733393134653431313639c5018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d696e48616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831383866633433663732323331666162c60199013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f47657442797465537472756374416374697665506169644d656d626572736869705465726d733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865323932333038616461393531376238c70197013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f47657442797465537472756374506169644d656d626572736869705465726d73427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862366430373462393361376165663931c80193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744163636f756e74496442794d656d62657249643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839393562353763626563373332626235c9015e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6835353630636433373161663431356437ca01533c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832306338393361313332373262383863cb01483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a6864333136373363393763623133643062cc01483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a6863303331616638373535363839376531cd01596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6837333936316663303864363738393539ce017a3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c486173682c4469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861383733396265326338633036373339cf013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6839643166643463396266336534656134d0014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6864343035363138326263643837626136d101af0173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c45787472696e7369633e3e3a3a6465636f64653a3a6833376233626638623761383136333539d201b5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c496e6465782c43616c6c2c5369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6866356466666135663563616636326430d30130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6866633036613164666338663539303732d401f0013c73726d6c5f7374616b696e673a3a5f5f6c696e6b65645f6d61705f64657461696c735f666f725f6e6f6d696e61746f72735f646f5f6e6f745f7573653a3a456e756d657261746f723c532c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c28616c6c6f633a3a7665633a3a5665633c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e2c2054293e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6866363533613034333566363537643239d5013773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6837663666313634363230343633353364d601d0023c73726d6c5f7374616b696e673a3a5f5f6c696e6b65645f6d61705f64657461696c735f666f725f76616c696461746f72735f646f5f6e6f745f7573653a3a456e756d657261746f723c532c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c2873726d6c5f7374616b696e673a3a56616c696461746f7250726566733c3c3c542061732073726d6c5f7374616b696e673a3a54726169743e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63653e2c2054293e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6861396632663365653861393564626465d7016f7061726974795f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f7220284a2c204b293e3a3a6465636f64653a3a6836643937373438633463303630623130d8016a636f72653a3a6f70733a3a66756e6374696f6e3a3a696d706c733a3a3c696d706c20636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653c413e20666f7220266d757420463e3a3a63616c6c5f6f6e63653a3a6833393337656564386535343263363065d9012e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a6864623530373334623363363565333236da0149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6836356430383263326563626137613538db012e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a6865656631393432303839376530326564dc016d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6861666665336163656236323032383564dd016d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6864626664376635353435663164366662de013773726d6c5f7375646f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6866366162643230653031366434393064df013c73726d6c5f7375646f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6835626661323734336438626632616635e0014173726d6c5f7375646f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863623332316231396361306363393838e101596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6835633933333162323030313261646265e201546a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6839633163653566343935343465393539e3013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6836633638666262643063323231353039e4013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6861383331646435623132323333316166e5013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862623036646331373762646639313834e6013a73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838336564326566623634616261666239e7013f73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6830643431613766666139363933633138e801aa0173726d6c5f7374616b696e673a3a5f494d504c5f4445434f44455f464f525f5374616b696e674c65646765723a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a5374616b696e674c65646765723c4163636f756e7449642c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6835366134323561623137653738396361e901ac013c73726d6c5f7374616b696e673a3a426f6e6465643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a6836666235303838386536343663373763ea014473726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6866316663663766613164376339353131eb01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833393830643166323964636265653337ec01723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832336138306237333733633633353963ed01743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838653436353939633338666637643862ee01683c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563745374616b6572733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866646535356431666562366431626263ef016b3c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831306636323763353362323835663463f001703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839626330646334613362313661613734f1016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830653063623534306635316532663761f201763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831656665646632356138326532386530f301b20173726d6c5f7374616b696e673a3a5f494d504c5f4445434f44455f464f525f5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653c4b65793e3e3a3a6465636f64653a3a6836303936383762313136313336653134f401b50173726d6c5f7374616b696e673a3a5f494d504c5f454e434f44455f464f525f5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f7374616b696e673a3a5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653c4b65793e3e3a3a656e636f64655f746f3a3a6830346634653434343733623265663130f501523c28522c2053292061732073726d6c5f73657373696f6e3a3a4f6e53657373696f6e4368616e67653c543e3e3a3a6f6e5f73657373696f6e5f6368616e67653a3a6837326433346239633730313630306466f601673c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6836366134626630303838316330616261f70144636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723a3a73697a655f68696e743a3a6836613030333664383263393866356466f8013773726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d616b655f7061796f75743a3a6831343433613639646163363135346533f9014173726d6c5f737570706f72743a3a7472616974733a3a496d62616c616e63653a3a6d617962655f73756273756d653a3a6837316530633665616431323464343031fa01653c73726d6c5f62616c616e6365733a3a696d62616c616e6365733a3a506f736974697665496d62616c616e63653c542c493e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6862316437653436336439383934646162fb013973726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a617574686f7269746965733a3a6839343935366636656537633533656463fc018e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6465706f7369745f696e746f5f6578697374696e673a3a6862616265646136363838616637373139fd013973726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7570646174655f6c65646765723a3a6864336361633065343537333565613463fe0130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6836363763643262333562373162353838ff013e636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723a3a6e74683a3a68396632626231373061626162303332668002483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a72656d6f76653a3a686339346664353037663939336661663181023d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a686630616362356364613365633665633682025a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746172745f656c656374696f6e3a3a68383462333932366536303436316366658302d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a686137346131303438313135383433353984023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68366635653763613135636438396134628502646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a686566343162393735303566313336646486025c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a6170706c6963616e745f7374616b65733a3a68336461393262326134393830303334308702646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a686132646130306530613831376565613488028f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683338333161336132303935623439336289028c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68643434613235636431643364373634338a028d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623635363039656133353635396661318b0286013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68313038313036393666343332663539358c0290013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68663537653266633132393831626261658d028a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623636663130636137326461363562368e025f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a68663438373864653033316661363665638f0293043c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a63757272656e63793a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63653e2c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a683066626136353861613536363161626490028e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a683736383931313831316239633330613191025d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a74656172646f776e5f656c656374696f6e3a3a68306563613463663732323731316266309202613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a686633313230333062666366666235383293025b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a64726f705f6170706c6963616e74733a3a68366432653465326166336163666465359402a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a686535353336663839363764366639313195022c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6862353464643438623666363163306539960248616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a683133396263356436383038653330636697022c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a68366664373339383532633562326563639802723c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a683865316534373532333233393464326499025a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68616265653664353639656561616539669a026f73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c426c6f636b2c436f6e746578742c5061796d656e742c416c6c4d6f64756c65733e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a68663837626131623439656239326465399b02c2013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c496e6465782c43616c6c2c5369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a68616364346239363137323238366437389c023873726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6163636f756e745f6e6f6e63653a3a68316165633566383036333466613830629d0288013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a4d616b655061796d656e743c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6d616b655f7061796d656e743a3a68306663346261656332613765393966669e02676a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68323166626531643137636261313064309f02626a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6830643133666336326431663864356231a0025d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6839656661623233656532316537373435a1023573726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a626c6f636b5f686173683a3a6830616132306665396230636639623335a2023573726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a696e697469616c697a653a3a6834383635353730626638646635333736a3023673726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6c6f673a3a6833383530333337633634623666336136a4023e73726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6831333266613363333336346639336432a5024373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a6865643062656434626331373734643135a6024373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839366534313864393235653236666630a702693c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374426c6f636b486173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830653834633534313364373661393865a802703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865643663663832336231396264343765a9023373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a66696e616c697a653a3a6838616637646432666633643534383561aa024373726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865653161376263383965386530353362ab02636a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6864616130643639646234336631393337ac028a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866386539653532323730616134643734ad025e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6838383066623938353962313635656632ae02596a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6861343934646261383531396236333033af02546a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6830633561653163333732613439623739b0027e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864626537393065326566396532643335b1024f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6863646637386135356332303433653465b2024a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6832366362636431653237656137346366b3023d73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a63616c6c5f66756e6374696f6e733a3a6865393164326162663863363232643865b4024273726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a73746f72655f6d657461646174615f6e616d653a3a6832663834666635633165393334356337b5024773726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837646631336336313736306161323037b6026f3c73726d6c5f62616c616e6365733a3a5f5f476574427974655374727563744372656174696f6e4665653c542c493e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835643736346363363935363639653262b7024b616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c4b2c563e3a3a696e736572743a3a6836363630386533633131643535373638b8023e73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a76657374696e675f62616c616e63653a3a6837333661396561363064633265376637b9023473726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a6c6f636b733a3a6861353030343662653163363939663530ba023c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6836353563346661303935356662623863bb024173726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6838613138376564666436626335316538bc024673726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6834626135386464393230666233636431bd02703c73726d6c5f74696d657374616d703a3a5f5f476574427974655374727563744d696e696d756d506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835653365373833353438366639373239be028e013c28462c20472c20482c20492c204a2c204b2c204c2c204d2c204e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a6861356137626162363134376364393761bf024473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a6837386337646530306566636530623131c0024773726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6864363634386232326333393232666531c10292013c28462c20472c20482c20492c204a2c204b2c204c2c204d2c204e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e496e697469616c697a653c4e756d6265723e3e3a3a6f6e5f696e697469616c697a653a3a6862633134383864636538336631393435c202613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6864333661383866663434383932633962c3023c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6830343166366664316137353735323838c4024173726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6837656331336534363864376633386466c5024673726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6861313538336362636233373636653335c602756a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863333935633431633538316565626666c702706a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6835313163663837383765396636313134c8026b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6863383138653633343962333230346466c902477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6836363934326533663763393633333330ca020c436f72655f76657273696f6ecb0212436f72655f657865637574655f626c6f636bcc026c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6832363761636636343331323366376636cd0215436f72655f696e697469616c697a655f626c6f636bce0210436f72655f617574686f726974696573cf02114d657461646174615f6d65746164617461d002603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6866366136646463316333363261386366d102433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862646139663463343136323335623265d202623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6861663233393665663239373665313961d302623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839623030363962313962306263643833d402623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6863666232616237316432333732306164d5021c426c6f636b4275696c6465725f6170706c795f65787472696e736963d6021b426c6f636b4275696c6465725f66696e616c697a655f626c6f636bd70220426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373d8025d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6836363731313633633031623537636665d9023873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6865663537653039343837363432613336da021c426c6f636b4275696c6465725f636865636b5f696e686572656e7473db0218426c6f636b4275696c6465725f72616e646f6d5f73656564dc022b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6edd02214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b6572de02214772616e6470614170695f6772616e6470615f70656e64696e675f6368616e6765df02204772616e6470614170695f6772616e6470615f666f726365645f6368616e6765e0021e4772616e6470614170695f6772616e6470615f617574686f726974696573e10215417572614170695f736c6f745f6475726174696f6ee2021a417574686f7269746965734170695f617574686f726974696573e302623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834343961653261366630363230356433e4029c0173726d6c5f6d657461646174613a3a5f494d504c5f454e434f44455f464f525f53746f7261676546756e6374696f6e547970653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f6d657461646174613a3a53746f7261676546756e6374696f6e547970653e3a3a656e636f64655f746f3a3a6837346636353965303363613161306238e502423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333665303031396334643130353639e60211727573745f626567696e5f756e77696e64e7024473725f696f3a3a65787465726e5f66756e6374696f6e735f686f73745f696d706c3a3a6578745f7072696e745f757466383a3a6836353839383561373633356335313938e8020a5f5f72675f616c6c6f63e9020c5f5f72675f6465616c6c6f63ea020c5f5f72675f7265616c6c6f63eb02115f5f72675f616c6c6f635f7a65726f6564ec024e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6831306135393137333535326230353336ed02313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6831343735613039323362346134623433ee0243636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a6863303931333062633534633863643735ef022c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6832663337313163393866323031646231f0024a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6837616537353434336564333663316665f102323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6861643337653666646339633239383633f2024d636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a68363564303832633265636261376135382e383930f30223636f72653a3a666d743a3a77726974653a3a6836373337396562353739313838326139f40234636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6865373330333636323164626538363538f502066d656d736574f602066d656d637079f702076d656d6d6f7665f802066d656d636d70f902095f5f75646976746933fa02085f5f6d756c746933fb023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a6836623236323439386531326433376462fc023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a6861393564373130306130366134666466fd020c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33352e302d6e696768746c79202865346336366166626120323031392d30342d313329", + "0x62f532424b7b1c52f522857315040f27": "0x00000000000000000000000000000000", + "0xb8f48a8c01f629d6dc877f64892bed49": "0x0000000000000000", + "0x2dce29f1a768624dc5343063cb77f77d": "0x14000000", + "0x435a73fddc0fb69c00a8e75d1a3662f1": "0x0100000000000000", + "0x9ebe2bab3321c71a4796afaab12ef727": "0x0100000000000000", + "0x3a617574683a6c656e": "0x01000000", + "0x0e4944cfd98d6f4cc374d16f5a4e3f9c": "0x0000000000000000", + "0xb4fe413858bf27190459f119348595a2": "0x88130000000000000000000000000000", + "0xdade128e67a5ed110063f56a01ab6bbf": "0x0000000000000000", + "0x4b46aa47fc588851a6cb661530b7b1b4": "0x214e214e00", + "0xb9b861cab4bbce870c811515bd5f33d7": "0x00", + "0x7d78893315c59fe96c583efc57f97a0f": "0x64000000000000000000000000000000", + "0x7f8fcaad324658a07a8182d03367f953": "0x2c01000000000000", + "0x052864eeea9f485c498882d7367582d3": "0xc8000000000000000000000000000000", + "0x51dc7d6b960dbce5de1de96c88afc3d8": "0x0100000000000000" + } + } +} \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs index e599646029..61987e7f3e 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -128,7 +128,7 @@ impl Alternative { /// LiveTestnet generator pub fn live_testnet_config() -> Result { - ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_1.json")) + ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_2.json")) } /// Staging testnet config From 913dbfd17ac81f64ba1c9d223c166dcee5b8f169 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 14 Apr 2019 23:08:38 +0300 Subject: [PATCH 202/350] display correctly encoded ed25519 Authority address --- src/service.rs | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/service.rs b/src/service.rs index 87447e7ef5..5982f6ef58 100644 --- a/src/service.rs +++ b/src/service.rs @@ -9,7 +9,7 @@ use inherents::InherentDataProviders; use joystream_node_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; use log::info; use network::construct_simple_protocol; -use primitives::{ed25519::Pair, Pair as PairT}; +use primitives::{ed25519::Pair, Pair as PairT, sr25519::Public as SrPublic, crypto::Ss58Codec}; use std::sync::Arc; use std::time::Duration; use substrate_client as client; @@ -21,6 +21,14 @@ use substrate_service::{ }; use transaction_pool::{self, txpool::Pool as TransactionPool}; +// Get new prefixed ss58 address encoding for ed25519 public keys +fn ed_ss58check(public_key: &primitives::ed25519::Public) -> String { + let raw_bytes: &[u8; 32] = public_key.as_ref(); + // Interpret bytes as sr25519 public key + let v : SrPublic = SrPublic::from_raw(raw_bytes.clone()); + v.to_ss58check() +} + pub use substrate_executor::NativeExecutor; // Our native executor instance. native_executor_instance!( @@ -77,7 +85,7 @@ construct_service_factory! { .expect("Link Half and Block Import are present for Full Services or setup failed before. qed"); if let Some(ref key) = key { - info!("Using authority key {}", key.public()); + info!("Using authority key {}", ed_ss58check(&key.public())); let proposer = Arc::new(ProposerFactory { client: service.client(), transaction_pool: service.transaction_pool(), @@ -97,7 +105,7 @@ construct_service_factory! { service.config.force_authoring, )?); - info!("Running Grandpa session as Authority {}", key.public()); + info!("Running Grandpa session as Authority {}", ed_ss58check(&key.public())); } let key = if service.config.disable_grandpa { From aaf72c6a0271a1211130c370968ebb2863978571 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 15 Apr 2019 00:19:42 +0300 Subject: [PATCH 203/350] update README --- README.md | 41 ++- banner.svg | 808 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 825 insertions(+), 24 deletions(-) create mode 100644 banner.svg diff --git a/README.md b/README.md index 2ccd82acdc..9fd468239d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ -# Joystream Substrate Node +![ Nodes for Joystream](./banner.svg) -Joystream node built on top of Substrate. +# Joystream Full Node + +Joystream node built on top of [Substrate](https://github.com/paritytech/substrate). Follow the instructions below to download the software or build it from source. Further instructions for windows and mac can be found [here.](https://blog.joystream.org/sparta/) Linux should be similar to mac. @@ -13,14 +15,23 @@ Downloads are available in [releases](https://github.com/Joystream/substrate-nod ### Initial setup If you want to build from source you will need the Rust [toolchain](https://rustup.rs/), openssl and llvm/libclang. +```bash +git clone https://github.com/Joystream/substrate-node-joystream.git +``` + Initialise the WASM build environment: ```bash +cd substrate-node-joystream/ ./init-wasm.sh ``` ### Building -Checkout the correct release branch if you are planning to connect to one of the public testnets. +Clone the joystream runtime into the substrate-node-joystream directory: + +```bash +git clone https://github.com/Joystream/substrate-runtime-joystream.git +``` Build the WASM runtime library: ```bash @@ -39,12 +50,14 @@ cargo run --release ``` ### Installing a release build -This will install node to your `~/.cargo/bin` folder, which you would normally have in your `$PATH` environment. +This will install the executable `joystream-node` to your `~/.cargo/bin` folder, which you would normally have in your `$PATH` environment. ```bash cargo install --path ./ ``` + Now you can run + ```bash joystream-node ``` @@ -64,23 +77,3 @@ When making changes to the runtime library remember to purge the chain after reb cargo run --release -- purge-chain --dev ``` -### Developing a runtime upgrade - -The runtime library is in a separate github [repo](https://github.com/joystream/substrate-runtime-joystream) - -The recommended way to test a new runtime is to build it separately and upgrade a dev chain. You can easily do this by calling `consensus::setCode()` with an extrinsic, either with the webui or with the subcli [set-code.js script](https://github.com/Joystream/subcli/blob/master/set-code.js) . No need to recompile the node (but use a release that matches the version of the network you are planning to upgrade and preferably with the runtime of the live chain as well), just make sure to bump the runtime spec version to be different from the native node runtime spec version. - -> Make sure you run a node built in release mode. If you use debug build and try to set new runtime code the node will halt ...[details](https://github.com/paritytech/substrate/issues/1856) - -### Developing runtime for a new chain -If the plan is to write a runtime for a new chain, and not upgrading you can take a different approach. -Then modify `Cargo.toml` in the root of this repo, edit the section: "[dependencies.joystream-node-runtime]" with the path to where you cloned the runtime repo. - -Update `src/chain_spec.rs` and `src/service.rs` find lines where the wasm blob is included `include_bytes!("../runtime/..` and modify it to point to the location where the wasm output file is compiled to. -You may need to make further changes in chain_spec to match modules added and/or removed that require genesis configuration. - -Build the runtime in the cloned runtime repo. Then rebuild the node. You can now run the node in development mode or use it to build a new chain spec. - -### Why can't I just just modify the code in runtime/ - -Mainly so you can understand how things work to avoid mistakes when preparing a new runtime upgrade for a live chain, and to separate the release process of the node software from the runtime. diff --git a/banner.svg b/banner.svg new file mode 100644 index 0000000000..4102ffd1c7 --- /dev/null +++ b/banner.svg @@ -0,0 +1,808 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + design/substrate-node-joystream-repo.svg at master · Joystream/design · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Skip to content +
+ + + + + + + + +
+ +
+ +
+ +
+ + + +
+
+
+ + + + + + + + + + + + +
+
+ + + +

+ + /design + +

+ +
+ + + + +
+
+
+ + + + + + + + Permalink + + + + + + +
+ + +
+ + Branch: + master + + + + + + + +
+ +
+ + Find file + + + Copy path + +
+
+ + +
+ + Find file + + + Copy path + +
+
+ + + + +
+
+ + @bwhm + bwhm + + fix/add github assets + + + + 95fca35 + Apr 3, 2019 + +
+ +
+
+ + 1 contributor + + +
+ +

+ Users who have contributed to this file +

+
+ + +
+
+
+
+ + + + + +
+ +
+ +
+ 282 lines (280 sloc) + + 25.9 KB +
+ +
+ + +
+ Raw + Blame + History +
+ + +
+ + + +
+
+
+ + + +
+ +
+
+ +
Sorry, something went wrong. Reload?
+
Sorry, we cannot display this file.
+
Sorry, this file is invalid so it cannot be displayed.
+ +
+
+ +
+ +
+ + + +
+ + +
+ + +
+
+ + + +
+ +
+ +
+
+ + +
+ + + + + + +
+ + + You can’t perform that action at this time. +
+ + + + + + + + + + + + + + +
+ + + + From 1864b6ab4d05971af09d486c519767f39bcca214 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 15 Apr 2019 00:30:25 +0300 Subject: [PATCH 204/350] update banner.svg --- banner.svg | 1089 ++++++++++++++-------------------------------------- 1 file changed, 281 insertions(+), 808 deletions(-) diff --git a/banner.svg b/banner.svg index 4102ffd1c7..077dde4307 100644 --- a/banner.svg +++ b/banner.svg @@ -1,808 +1,281 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - design/substrate-node-joystream-repo.svg at master · Joystream/design · GitHub - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Skip to content -
- - - - - - - - -
- -
- -
- -
- - - -
-
-
- - - - - - - - - - - - -
-
- - - -

- - /design - -

- -
- - - - -
-
-
- - - - - - - - Permalink - - - - - - -
- - -
- - Branch: - master - - - - - - - -
- -
- - Find file - - - Copy path - -
-
- - -
- - Find file - - - Copy path - -
-
- - - - -
-
- - @bwhm - bwhm - - fix/add github assets - - - - 95fca35 - Apr 3, 2019 - -
- -
-
- - 1 contributor - - -
- -

- Users who have contributed to this file -

-
- - -
-
-
-
- - - - - -
- -
- -
- 282 lines (280 sloc) - - 25.9 KB -
- -
- - -
- Raw - Blame - History -
- - -
- - - -
-
-
- - - -
- -
-
- -
Sorry, something went wrong. Reload?
-
Sorry, we cannot display this file.
-
Sorry, this file is invalid so it cannot be displayed.
- -
-
- -
- -
- - - -
- - -
- - -
-
- - - -
- -
- -
-
- - -
- - - - - - -
- - - You can’t perform that action at this time. -
- - - - - - - - - - - - - - -
- - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 3a65cbd844d7d6538962b1e88a973c9adddabef4 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 15 Apr 2019 00:51:31 +0300 Subject: [PATCH 205/350] Cargo.lock --- Cargo.lock | 274 ++++++++++++++++++++++++++--------------------------- 1 file changed, 137 insertions(+), 137 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5b5ee10df..1fb73d8ddb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -113,8 +113,8 @@ name = "asn1_der_derive" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -134,14 +134,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "backtrace" -version = "0.3.14" +version = "0.3.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -206,7 +206,7 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -258,7 +258,7 @@ dependencies = [ "block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -266,7 +266,7 @@ name = "block-cipher-trait" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -531,7 +531,7 @@ name = "crypto-mac" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -592,7 +592,7 @@ name = "digest" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -656,7 +656,7 @@ name = "error-chain" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -673,7 +673,7 @@ name = "failure" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -683,8 +683,8 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -813,7 +813,7 @@ dependencies = [ [[package]] name = "generic-array" -version = "0.12.0" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -838,14 +838,14 @@ dependencies = [ [[package]] name = "h2" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -949,7 +949,7 @@ dependencies = [ [[package]] name = "http" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -990,14 +990,14 @@ dependencies = [ [[package]] name = "hyper" -version = "0.12.25" +version = "0.12.27" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "h2 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1039,7 +1039,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1109,8 +1109,8 @@ dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -1142,8 +1142,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1153,8 +1153,8 @@ version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1162,7 +1162,7 @@ name = "jsonrpc-http-server" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.27 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1178,7 +1178,7 @@ dependencies = [ "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1354,8 +1354,8 @@ name = "libp2p-core-derive" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1966,7 +1966,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1976,8 +1976,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2001,7 +2001,7 @@ dependencies = [ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2121,8 +2121,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2183,8 +2183,8 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2217,7 +2217,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "quote" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2383,7 +2383,7 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.1.52" +version = "0.1.54" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2391,7 +2391,7 @@ name = "redox_termios" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2458,7 +2458,7 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2583,17 +2583,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.89" +version = "1.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde_derive" -version = "1.0.89" +version = "1.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2603,7 +2603,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2681,7 +2681,7 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2731,8 +2731,8 @@ dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2761,8 +2761,8 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2783,8 +2783,8 @@ source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb003221 dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] @@ -2797,7 +2797,7 @@ dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2816,7 +2816,7 @@ dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2831,8 +2831,8 @@ source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb003221 dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2847,7 +2847,7 @@ version = "1.0.0" source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2862,8 +2862,8 @@ source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb003221 dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2877,8 +2877,8 @@ version = "1.0.0" source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2899,7 +2899,7 @@ dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2915,8 +2915,8 @@ version = "1.0.0" source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] @@ -2930,7 +2930,7 @@ dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2947,7 +2947,7 @@ dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2966,7 +2966,7 @@ dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -2984,8 +2984,8 @@ dependencies = [ "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -3000,10 +3000,10 @@ version = "1.0.0" source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3013,9 +3013,9 @@ source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb003221 dependencies = [ "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3024,8 +3024,8 @@ version = "1.0.0" source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3036,8 +3036,8 @@ dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -3052,7 +3052,7 @@ source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb003221 dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -3093,10 +3093,10 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3106,12 +3106,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3124,7 +3124,7 @@ name = "stream-cipher" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3153,8 +3153,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3169,8 +3169,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3387,8 +3387,8 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -3469,8 +3469,8 @@ dependencies = [ "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3518,8 +3518,8 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -3562,7 +3562,7 @@ name = "substrate-panic-handler" version = "1.0.0" source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ - "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3577,8 +3577,8 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3603,13 +3603,13 @@ dependencies = [ "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)", "tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "twox-hash 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3626,8 +3626,8 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -3649,7 +3649,7 @@ dependencies = [ "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] @@ -3659,7 +3659,7 @@ name = "substrate-serializer" version = "1.0.0" source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" dependencies = [ - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3675,8 +3675,8 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", @@ -3735,8 +3735,8 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3753,8 +3753,8 @@ dependencies = [ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] @@ -3799,11 +3799,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "syn" -version = "0.15.30" +version = "0.15.31" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3813,8 +3813,8 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3847,7 +3847,7 @@ dependencies = [ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3866,7 +3866,7 @@ version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3892,7 +3892,7 @@ version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4133,7 +4133,7 @@ name = "toml" version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4178,7 +4178,7 @@ dependencies = [ [[package]] name = "twox-hash" -version = "1.1.2" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4489,7 +4489,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7f92edafad155aff997fa5b727c6429b91e996b5a5d62a2b0adbae1306b5fe" "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" "checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" -"checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4" +"checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637" "checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" "checksum base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d55aa264e822dbafa12db4d54767aff17c6ba55ea2d8559b3e17392c7d000e5d" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" @@ -4569,11 +4569,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "62941eff9507c8177d448bd83a44d9b9760856e184081d8cd79ba9f03dd24981" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" -"checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592" +"checksum generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cba710fd46ea0501f73f0dac107a3f97b5ea3fe0546e79e45e074f58459afa82" "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" -"checksum h2 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "910a5e7be6283a9c91b3982fa5188368c8719cce2a3cf3b86048673bf9d9c36b" +"checksum h2 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "85ab6286db06040ddefb71641b50017c06874614001a134b423783e2db2920bd" "checksum hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ba7fb417e5c470acdd61068c79767d0e65962e70836cf6c9dfd2409f06345ce0" "checksum hash256-std-hasher 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f8b2027c19ec91eb304999abae7307d225cf93be42af53b0039f76e98ed5af86" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" @@ -4586,11 +4586,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" "checksum hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f127a908633569f208325f86f71255d3363c79721d7f9fe31cd5569908819771" "checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" -"checksum http 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "fe67e3678f2827030e89cc4b9e7ecd16d52f132c0b940ab5005f88e821500f6a" +"checksum http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "eed324f0f0daf6ec10c474f150505af2c143f251722bf9dbd1261bd1f2ee2c1a" "checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" "checksum hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "df0caae6b71d266b91b4a83111a61d2b94ed2e2bea024c532b933dcff867e58c" -"checksum hyper 0.12.25 (registry+https://github.com/rust-lang/crates.io-index)" = "7d5b6658b016965ae301fa995306db965c93677880ea70765a84235a96eae896" +"checksum hyper 0.12.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4f2777434f26af6e4ce4fdcdccd3bed9d861d11e87bcbe72c0f51ddaca8ff848" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2050d823639fbeae26b2b5ba09aca8907793117324858070ade0673c49f793b" "checksum impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5158079de9d4158e0ce1de3ae0bd7be03904efc40b3d7dd8b8c301cbf6b52b56" @@ -4699,7 +4699,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "524d165d95627ddebba768db728216c4429bbb62882f7e6ab1a6c3c54a7ed830" "checksum quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5fb6ccf8db7bbcb9c2eae558db5ab4f3da1c2a87e4e597ed394726bc8ea6ca1d" "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" -"checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" +"checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" "checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" @@ -4716,7 +4716,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473" "checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum redox_syscall 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)" = "d32b3053e5ced86e4bc0411fec997389532bf56b000e66cb4884eeeb41413d69" +"checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252" "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" "checksum regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "559008764a17de49a3146b234641644ed37d118d1ef641a0bb573d146edc6ce0" "checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96" @@ -4724,7 +4724,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" "checksum rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a" -"checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619" +"checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" @@ -4740,8 +4740,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "92514fb95f900c9b5126e32d020f5c6d40564c27a5ea6d1d7d9f157a96623560" -"checksum serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6eabf4b5914e88e24eea240bb7c9f9a2cbc1bbbe8d961d381975ec3c6b806c" +"checksum serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "aa5f7c20820475babd2c077c3ab5f8c77a31c15e16ea38687b4c02d3e48680f4" +"checksum serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "58fc82bec244f168b23d1963b45c8bf5726e9a15a9d146a067f9081aeed2de79" "checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" "checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" @@ -4827,7 +4827,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" -"checksum syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)" = "66c8865bf5a7cbb662d8b011950060b3c8743dca141b054bf7195b20d314d8e2" +"checksum syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d2b4cfac95805274c6afdb12d8f770fa2d27c045953e7b630a81801953699a9a" "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" "checksum sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b5a0cb7899e248ed0baa6ef6f8406352523c2f99bc7c4b1800f4cd6d5dde99eb" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" @@ -4863,7 +4863,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cfa2e20c4f1418ac2e71ddc418e35e1b56e34022e2146209ffdbf1b2de8b1bd9" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" -"checksum twox-hash 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "555cd4909480122bbbf21e34faac4cb08a171f324775670447ed116726c474af" +"checksum twox-hash 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "09871da9f15424236082e0b220fd404a4eb6bebc7205c67653701229234ac64c" "checksum typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" From 21c04d8e9a4986b324f375e4933f1bdf1aa3f635 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 18 Apr 2019 18:04:40 +0300 Subject: [PATCH 206/350] Create LICENSE --- LICENSE | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 674 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000..f288702d2f --- /dev/null +++ b/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 +. From 1c278486017143a0c0ef2f8c4a18488c126386e8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 18 Apr 2019 18:08:38 +0300 Subject: [PATCH 207/350] add (c) notice in source files --- src/chain_spec.rs | 16 ++++++++++++++++ src/cli.rs | 16 ++++++++++++++++ src/error.rs | 16 ++++++++++++++++ src/main.rs | 16 ++++++++++++++++ src/service.rs | 16 ++++++++++++++++ 5 files changed, 80 insertions(+) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 61987e7f3e..5b7beef699 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -1,3 +1,19 @@ +// 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 hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, diff --git a/src/cli.rs b/src/cli.rs index 391562e7e6..7899746065 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,3 +1,19 @@ +// 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 crate::chain_spec; use crate::service; use futures::{future, sync::oneshot, Future}; diff --git a/src/error.rs b/src/error.rs index 6d2eac6c01..025ddfce57 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,3 +1,19 @@ +// 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 . + //! Initialization errors. use client; diff --git a/src/main.rs b/src/main.rs index 1f28fc252d..e790d3167e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,19 @@ +// 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)] diff --git a/src/service.rs b/src/service.rs index 5982f6ef58..499d8f2c81 100644 --- a/src/service.rs +++ b/src/service.rs @@ -1,3 +1,19 @@ +// 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 . + //! Service and ServiceFactory implementation. Specialized wrapper over Substrate service. #![warn(unused_extern_crates)] From 5bfd0fbbee65c87d7a73231772710e2d0a46a4da Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 18 Apr 2019 18:15:32 +0300 Subject: [PATCH 208/350] add credit to substrate note template in readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9fd468239d..f941cb7250 100644 --- a/README.md +++ b/README.md @@ -77,3 +77,6 @@ When making changes to the runtime library remember to purge the chain after reb cargo run --release -- purge-chain --dev ``` +### Substrate node template + +The full node is built based on the substrate node [template](https://github.com/shawntabrizi/substrate-package/tree/master/substrate-node-template) \ No newline at end of file From df46dbcaa1c1c7a54c6b9f0fbe5ba8e8b8718eae Mon Sep 17 00:00:00 2001 From: Dagur Valberg Johannsson Date: Wed, 24 Apr 2019 09:18:01 +0200 Subject: [PATCH 209/350] Improve error message on missing runtime directory --- build-runtime.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build-runtime.sh b/build-runtime.sh index 25418d84d5..8206232dc6 100755 --- a/build-runtime.sh +++ b/build-runtime.sh @@ -12,7 +12,13 @@ normal=$(tput sgr0) # Save current directory. pushd . >/dev/null -for SRC in substrate-runtime-joystream/ +RUNTIME_DIR="substrate-runtime-joystream" +if [ ! -d "$RUNTIME_DIR" ]; then + echo "The '$RUNTIME_DIR' directory is missing. Did you git clone or symlink it yet?" + exit 1 +fi + +for SRC in "$RUNTIME_DIR/" do echo "${bold}Building webassembly binary in $SRC...${normal}" cd "$PROJECT_ROOT/$SRC" From aff12569001a00631a125a12e7cba8f90d68df38 Mon Sep 17 00:00:00 2001 From: Wojtek Siudzinski Date: Thu, 25 Apr 2019 18:19:23 +0200 Subject: [PATCH 210/350] Add Dockerfile. Fixes #60 --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..bb640e22da --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM liuchong/rustup:1.34.0 AS builder +LABEL description="Joystream substrate node" + +WORKDIR /substrate-node-joystream +COPY . /substrate-node-joystream +ENV TERM=xterm + +RUN apt-get update && apt-get install git clang -y \ + && ./init-wasm.sh \ + && git clone https://github.com/Joystream/substrate-runtime-joystream.git \ + && ./build-runtime.sh \ + && cargo build --release \ + && cargo install --path ./ \ + && apt-get remove git clang -y \ + && rm -rf /var/lib/apt/lists/* +ENTRYPOINT "/root/.cargo/bin/joystream-node" \ No newline at end of file From 455ddedddff8f27493221b0488f220a6c5c5f372 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Mon, 10 Jun 2019 00:31:25 +0300 Subject: [PATCH 211/350] Add ForumConfig to GenesisConfig --- Cargo.lock | 28 ++++++++++++++++++++++++++-- src/chain_spec.rs | 22 ++++++++++++++++++++-- 2 files changed, 46 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1fb73d8ddb..aef6af9fdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1080,7 +1080,7 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 5.1.0", + "joystream-node-runtime 5.4.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1104,7 +1104,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "5.1.0" +version = "5.4.0" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1131,8 +1131,10 @@ dependencies = [ "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-forum-module 0.1.0 (git+https://github.com/bedeho/substrate-forum-module?rev=9c0cf6544f8f6f9b7ae185007ccf3d8623d5f62a)", "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3437,6 +3439,27 @@ dependencies = [ "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", ] +[[package]] +name = "substrate-forum-module" +version = "0.1.0" +source = "git+https://github.com/bedeho/substrate-forum-module?rev=9c0cf6544f8f6f9b7ae185007ccf3d8623d5f62a#9c0cf6544f8f6f9b7ae185007ccf3d8623d5f62a" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-inherents" version = "1.0.0" @@ -4805,6 +4828,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-forum-module 0.1.0 (git+https://github.com/bedeho/substrate-forum-module?rev=9c0cf6544f8f6f9b7ae185007ccf3d8623d5f62a)" = "" "checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" "checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 61987e7f3e..7c54ce790a 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -2,7 +2,7 @@ use hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, - DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, Perbill, + DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, ForumConfig, Perbill, ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, ActorsConfig, }; @@ -250,6 +250,15 @@ fn staging_testnet_config_genesis() -> GenesisConfig { default_paid_membership_fee: 100u128, first_member_id: 1, }), + forum: Some(ForumConfig { + category_by_id: vec![], + thread_by_id: vec![], + post_by_id: vec![], + next_category_id: 1, + next_thread_id: 1, + next_post_id: 1, + forum_sudo: endowed_accounts[0].clone(), + }), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), @@ -300,7 +309,7 @@ fn testnet_genesis( transaction_byte_fee: 0, }), sudo: Some(SudoConfig { - key: root_key, + key: root_key.clone(), }), session: Some(SessionConfig { validators: initial_authorities.iter().map(|x| x.1.clone()).collect(), @@ -352,6 +361,15 @@ fn testnet_genesis( default_paid_membership_fee: 100u128, first_member_id: 1, }), + forum: Some(ForumConfig { + category_by_id: vec![], + thread_by_id: vec![], + post_by_id: vec![], + next_category_id: 1, + next_thread_id: 1, + next_post_id: 1, + forum_sudo: root_key + }), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), From 5d3d50c51e0da3f71929ea5774dff6390ea6fcf0 Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Tue, 11 Jun 2019 21:36:41 +0300 Subject: [PATCH 212/350] Add validation constraints to GenesisConfig --- src/chain_spec.rs | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 7c54ce790a..fd9fcf0012 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -2,7 +2,8 @@ use hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, - DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, ForumConfig, Perbill, + DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, + ForumConfig, forum::InputValidationLengthConstraint, Perbill, ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, ActorsConfig, }; @@ -152,6 +153,13 @@ pub fn staging_testnet_config() -> ChainSpec { ) } +fn new_validation(min: usize, max_min_diff: usize) -> InputValidationLengthConstraint { + return InputValidationLengthConstraint { + min, + max_min_diff + } +} + fn staging_testnet_config_genesis() -> GenesisConfig { let initial_authorities: Vec<(AccountId, AccountId, AuthorityId)> = vec![( hex!["0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65"].unchecked_into(), // stash @@ -258,6 +266,12 @@ fn staging_testnet_config_genesis() -> GenesisConfig { next_thread_id: 1, next_post_id: 1, forum_sudo: endowed_accounts[0].clone(), + category_title_constraint: new_validation(10, 90), + category_description_constraint: new_validation(10, 490), + thread_title_constraint: new_validation(10, 90), + post_text_constraint: new_validation(10, 990), + thread_moderation_rationale_constraint: new_validation(10, 290), + post_moderation_rationale_constraint: new_validation(10, 290) }), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, @@ -368,7 +382,13 @@ fn testnet_genesis( next_category_id: 1, next_thread_id: 1, next_post_id: 1, - forum_sudo: root_key + forum_sudo: root_key, + category_title_constraint: new_validation(10, 90), + category_description_constraint: new_validation(10, 490), + thread_title_constraint: new_validation(10, 90), + post_text_constraint: new_validation(10, 990), + thread_moderation_rationale_constraint: new_validation(10, 290), + post_moderation_rationale_constraint: new_validation(10, 290) }), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, From fd7dee112b32924279bd8752d2e141bc92c9928e Mon Sep 17 00:00:00 2001 From: Alex Siman Date: Mon, 17 Jun 2019 16:29:06 +0300 Subject: [PATCH 213/350] Update usize to u16 on input validations --- src/chain_spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index fd9fcf0012..f1e3a89116 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -153,7 +153,7 @@ pub fn staging_testnet_config() -> ChainSpec { ) } -fn new_validation(min: usize, max_min_diff: usize) -> InputValidationLengthConstraint { +fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { return InputValidationLengthConstraint { min, max_min_diff From c3c08e68f6c2e44c1328e348a3599dff5f8dd0eb Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 8 Aug 2019 16:21:09 +0300 Subject: [PATCH 214/350] update substrate dependency --- Cargo.lock | 3412 +++++++++++++++++++++++++++++----------------------- Cargo.toml | 52 +- 2 files changed, 1900 insertions(+), 1564 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1fb73d8ddb..889c319922 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,11 +1,13 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. [[package]] -name = "MacTypes-sys" -version = "2.1.0" +name = "aes" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -25,8 +27,8 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -35,24 +37,16 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "aho-corasick" -version = "0.6.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "aho-corasick" -version = "0.7.3" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -60,12 +54,12 @@ name = "aio-limited" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -87,6 +81,11 @@ dependencies = [ "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "arc-swap" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "arrayref" version = "0.3.5" @@ -94,7 +93,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "arrayvec" -version = "0.4.10" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -102,7 +101,7 @@ dependencies = [ [[package]] name = "asn1_der" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -113,50 +112,47 @@ name = "asn1_der_derive" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "atty" -version = "0.2.11" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "autocfg" -version = "0.1.2" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "backtrace" -version = "0.3.15" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace-sys" -version = "0.1.28" +version = "0.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "base-x" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -169,8 +165,8 @@ name = "base64" version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "safemem 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -178,7 +174,7 @@ name = "base64" version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -186,7 +182,7 @@ name = "bigint" version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -195,25 +191,25 @@ name = "bindgen" version = "0.47.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "bitflags" -version = "1.0.4" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -228,8 +224,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -237,7 +233,7 @@ name = "blake2-rfc" version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -252,13 +248,22 @@ dependencies = [ [[package]] name = "block-buffer" -version = "0.7.0" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-buffer" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -266,12 +271,21 @@ name = "block-cipher-trait" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-modes" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "block-padding" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -282,6 +296,19 @@ name = "bs58" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "bstr" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bumpalo" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "byte-tools" version = "0.2.0" @@ -299,7 +326,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "byteorder" -version = "1.3.1" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -307,16 +334,31 @@ name = "bytes" version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "c2-chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "c_linked_list" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "cc" version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -329,16 +371,17 @@ dependencies = [ [[package]] name = "cfg-if" -version = "0.1.7" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "chrono" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -348,8 +391,8 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -358,8 +401,8 @@ version = "2.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -379,7 +422,7 @@ name = "cloudabi" version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -389,52 +432,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "core-foundation" -version = "0.5.1" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core-foundation-sys" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam" -version = "0.6.0" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "crossbeam-channel" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-deque" -version = "0.2.0" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -442,8 +457,8 @@ name = "crossbeam-deque" version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -451,35 +466,21 @@ name = "crossbeam-deque" version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crossbeam-epoch" -version = "0.3.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -487,23 +488,15 @@ name = "crossbeam-queue" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crossbeam-utils" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-utils" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -514,7 +507,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "crunchy" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -526,12 +519,21 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "crypto-mac" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "crypto-mac" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -546,10 +548,10 @@ dependencies = [ [[package]] name = "ctrlc" -version = "3.1.1" +version = "3.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -564,14 +566,14 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "1.1.3" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -589,10 +591,18 @@ dependencies = [ [[package]] name = "digest" -version = "0.8.0" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "digest" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -605,17 +615,22 @@ name = "dns-parser" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "doc-comment" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "ed25519-dalek" version = "1.0.0-pre.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -636,14 +651,14 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -653,10 +668,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "error-chain" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)", + "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -664,7 +680,7 @@ name = "exit-future" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -673,7 +689,7 @@ name = "failure" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -682,10 +698,10 @@ name = "failure_derive" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -698,7 +714,7 @@ name = "fdlimit" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -706,22 +722,22 @@ name = "finality-grandpa" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "fixed-hash" -version = "0.3.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -748,9 +764,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -759,8 +775,8 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -774,7 +790,7 @@ name = "fuchsia-zircon" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -785,7 +801,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "futures" -version = "0.1.26" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -793,8 +809,8 @@ name = "futures-cpupool" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -813,12 +829,49 @@ dependencies = [ [[package]] name = "generic-array" -version = "0.12.2" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "generic-array" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "get_if_addrs" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "get_if_addrs-sys" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "getrandom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "glob" version = "0.2.11" @@ -826,44 +879,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "globset" -version = "0.4.2" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "h2" -version = "0.1.18" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "hash-db" -version = "0.12.2" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hash256-std-hasher" -version = "0.12.2" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -871,7 +924,7 @@ name = "hashbrown" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -893,7 +946,7 @@ name = "heck" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -907,7 +960,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -915,7 +968,7 @@ name = "hex-literal-impl" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -930,11 +983,20 @@ dependencies = [ [[package]] name = "hmac" -version = "0.7.0" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hmac" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -949,17 +1011,28 @@ dependencies = [ [[package]] name = "http" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "http-body" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "httparse" -version = "1.3.3" +version = "1.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -972,15 +1045,15 @@ dependencies = [ [[package]] name = "hyper" -version = "0.10.15" +version = "0.10.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -990,29 +1063,31 @@ dependencies = [ [[package]] name = "hyper" -version = "0.12.27" +version = "0.12.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "h2 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", - "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1030,7 +1105,7 @@ name = "impl-codec" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1039,7 +1114,15 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "impl-serde" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1062,77 +1145,86 @@ name = "iovec" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "itoa" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "joystream-node" version = "1.0.0" dependencies = [ - "ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 5.1.0", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "joystream-node-runtime 6.0.0", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-basic-authorship 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-cli 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-finality-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "joystream-node-runtime" -version = "5.1.0" +version = "6.0.0" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-balances 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-executive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-indices 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-staking 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-sudo 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-forum-module 1.1.0", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", +] + +[[package]] +name = "js-sys" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1140,11 +1232,11 @@ name = "jsonrpc-core" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1152,9 +1244,9 @@ name = "jsonrpc-derive" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1162,12 +1254,12 @@ name = "jsonrpc-http-server" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hyper 0.12.27 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1176,9 +1268,9 @@ version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1187,14 +1279,14 @@ version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1202,10 +1294,10 @@ name = "jsonrpc-ws-server" version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1243,10 +1335,10 @@ dependencies = [ "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1267,12 +1359,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.51" +version = "0.2.60" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libloading" -version = "0.5.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1281,68 +1373,68 @@ dependencies = [ [[package]] name = "libp2p" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core-derive 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-dns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-floodsub 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-kad 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mdns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mplex 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-noise 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-plaintext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ratelimit 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-secio 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-tcp 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-uds 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-websocket 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-yamux 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core-derive 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-dns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-floodsub 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-kad 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mdns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mplex 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-noise 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-plaintext 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ratelimit 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-secio 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-tcp 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-uds 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-websocket 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-yamux 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-core" -version = "0.6.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "multistream-select 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1351,40 +1443,40 @@ dependencies = [ [[package]] name = "libp2p-core-derive" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-dns" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-floodsub" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1392,85 +1484,83 @@ dependencies = [ [[package]] name = "libp2p-identify" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-kad" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-mdns" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-mplex" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1479,14 +1569,14 @@ dependencies = [ [[package]] name = "libp2p-noise" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1497,81 +1587,86 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-plaintext" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ratelimit" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-secio" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-futures 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-tcp" -version = "0.6.0" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1579,52 +1674,53 @@ dependencies = [ [[package]] name = "libp2p-uds" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-websocket" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb 0.4.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "websocket 0.22.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "websocket 0.22.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-yamux" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "yamux 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "yamux 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "librocksdb-sys" -version = "5.17.2" +version = "5.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1667,15 +1763,15 @@ name = "log" version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "log" -version = "0.4.6" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1686,6 +1782,16 @@ dependencies = [ "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "malloc_size_of_derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "matches" version = "0.1.8" @@ -1693,22 +1799,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "memchr" -version = "2.2.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "memoffset" -version = "0.2.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "memory-db" -version = "0.12.2" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-util-mem 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1718,13 +1827,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "merlin" -version = "1.0.3" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1737,16 +1846,15 @@ dependencies = [ [[package]] name = "mio" -version = "0.6.16" +version = "0.6.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1759,8 +1867,8 @@ version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1770,8 +1878,8 @@ version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1791,9 +1899,9 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1809,19 +1917,19 @@ dependencies = [ [[package]] name = "native-tls" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.24 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.48 (registry+https://github.com/rust-lang/crates.io-index)", "schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1829,20 +1937,20 @@ name = "net2" version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "nix" -version = "0.11.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1861,29 +1969,33 @@ name = "nom" version = "4.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-integer" -version = "0.1.39" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-traits" -version = "0.2.6" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "num_cpus" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1905,20 +2017,20 @@ dependencies = [ [[package]] name = "opaque-debug" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl" -version = "0.10.20" +version = "0.10.24" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1928,14 +2040,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl-sys" -version = "0.9.43" +version = "0.9.48" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1961,12 +2073,12 @@ source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7 [[package]] name = "parity-codec" -version = "3.4.0" +version = "3.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1974,56 +2086,76 @@ name = "parity-codec-derive" version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-crypto" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "block-modes 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ripemd160 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scrypt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-multiaddr" -version = "0.2.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-multihash" -version = "0.1.0" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parity-util-mem" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "parity-wasm" version = "0.31.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2031,11 +2163,11 @@ name = "parity-ws" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2075,9 +2207,9 @@ name = "parking_lot_core" version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2086,10 +2218,10 @@ name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2098,10 +2230,10 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2111,7 +2243,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "paste-impl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2119,10 +2251,20 @@ name = "paste-impl" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pbkdf2" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2130,9 +2272,8 @@ name = "pbkdf2" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2147,54 +2288,59 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "pkg-config" -version = "0.3.14" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "ppv-lite86" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "primitive-types" -version = "0.2.1" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "fixed-hash 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fixed-hash 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "uint 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "uint 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "proc-macro-crate" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "proc-macro-hack" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack-impl 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "proc-macro-hack" -version = "0.5.4" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "proc-macro-hack-impl" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "proc-macro2" -version = "0.4.27" +version = "0.4.30" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2202,7 +2348,7 @@ dependencies = [ [[package]] name = "protobuf" -version = "2.4.2" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2217,10 +2363,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "quote" -version = "0.6.12" +version = "0.6.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2228,7 +2374,7 @@ name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2238,7 +2384,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2251,7 +2397,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2261,41 +2407,70 @@ name = "rand" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "rand" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand_chacha" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "rand_chacha" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand_core" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "rand_core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand_hc" version = "0.1.0" @@ -2304,6 +2479,14 @@ dependencies = [ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand_isaac" version = "0.1.1" @@ -2314,11 +2497,11 @@ dependencies = [ [[package]] name = "rand_jitter" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2329,8 +2512,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2340,8 +2523,8 @@ name = "rand_pcg" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2354,23 +2537,24 @@ dependencies = [ [[package]] name = "rayon" -version = "1.0.3" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon-core" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2383,40 +2567,28 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.1.54" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "redox_termios" -version = "0.1.1" +version = "0.1.56" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "regex" -version = "1.1.5" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.6.6" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "remove_dir_all" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2429,36 +2601,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "spin 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "rocksdb" -version = "0.11.0" +name = "ripemd160" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "librocksdb-sys 5.17.2 (registry+https://github.com/rust-lang/crates.io-index)", + "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "rust-crypto" -version = "0.2.36" +name = "rocksdb" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rustc-demangle" -version = "0.1.14" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2466,11 +2636,6 @@ name = "rustc-hex" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "rustc-serialize" -version = "0.3.24" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "rustc_version" version = "0.2.3" @@ -2481,17 +2646,17 @@ dependencies = [ [[package]] name = "rw-stream-sink" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "ryu" -version = "0.2.7" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2504,7 +2669,7 @@ dependencies = [ [[package]] name = "safemem" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2522,15 +2687,15 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2538,6 +2703,23 @@ name = "scopeguard" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "scopeguard" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scrypt" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "pbkdf2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "secp256k1" version = "0.12.2" @@ -2549,23 +2731,21 @@ dependencies = [ [[package]] name = "security-framework" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "security-framework-sys" -version = "0.2.3" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2581,29 +2761,48 @@ name = "semver-parser" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "send_wrapper" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "serde" -version = "1.0.90" +version = "1.0.98" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "serde_derive" -version = "1.0.90" +version = "1.0.98" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_json" -version = "1.0.39" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sha-1" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2623,27 +2822,38 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "sha2" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "sha2" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sha3" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2662,7 +2872,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "slog" -version = "2.4.1" +version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2670,7 +2880,7 @@ name = "slog-async" version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2680,25 +2890,25 @@ name = "slog-json" version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "slog-scope" -version = "4.1.1" +version = "4.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "smallvec" -version = "0.6.9" +version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2707,71 +2917,75 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "sourcefile" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "spin" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-io" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "sr-std" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2779,285 +2993,278 @@ dependencies = [ [[package]] name = "sr-version" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-aura" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-staking 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-balances" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-consensus" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-executive" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-finality-tracker" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-grandpa" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-indices" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-metadata" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-session" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-staking" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-sudo" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-support" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-metadata 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-support-procedural" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support-procedural-tools 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-system" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "srml-timestamp" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] @@ -3077,14 +3284,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "stdweb" -version = "0.4.15" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb-internal-macros 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb-internal-macros 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "stdweb-internal-runtime 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3092,31 +3300,31 @@ name = "stdweb-derive" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "stdweb-internal-macros" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "base-x 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "stdweb-internal-runtime" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3124,13 +3332,16 @@ name = "stream-cipher" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "string" -version = "0.1.3" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "strsim" @@ -3139,22 +3350,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "structopt" -version = "0.2.15" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "structopt-derive" -version = "0.2.15" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3168,34 +3379,34 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-basic-authorship" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-bip39" -version = "0.2.1" -source = "git+https://github.com/paritytech/substrate-bip39#44307fda4ea17fe97aeb93af317fbc8f6ed34193" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3204,328 +3415,342 @@ dependencies = [ [[package]] name = "substrate-cli" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sysinfo 0.8.6 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-client" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-api-macros 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-client-db" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-state-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-consensus-aura" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-authorities 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-aura-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-consensus-aura-slots" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-consensus-authorities" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-consensus-common" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" -dependencies = [ - "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +dependencies = [ + "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-serializer 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-finality-grandpa" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-finality-grandpa-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +dependencies = [ + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", +] + +[[package]] +name = "substrate-forum-module" +version = "1.1.0" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-balances 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-inherents" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-keyring" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-keystore" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-crypto 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-network-libp2p 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-peerset 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network-libp2p" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-peerset 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3533,258 +3758,250 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-offchain-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "0.1.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-panic-handler" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-peerset" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-primitives" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hash256-std-hasher 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hash256-std-hasher 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)", - "tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "twox-hash 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-bip39 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc-servers" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-rpc 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-serializer" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-service" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-keystore 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-offchain 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-rpc-servers 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-state-db" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-state-machine" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "trie-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-telemetry" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-transaction-graph" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-transaction-pool" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", - "substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)", + "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-transaction-graph 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", ] [[package]] name = "substrate-trie" version = "1.0.0" -source = "git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f#6dfc3e8b057bb00322136251a0f10305fbb1ad8f" +source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" dependencies = [ - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - "memory-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "memory-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "trie-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3794,38 +4011,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "subtle" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "syn" -version = "0.15.31" +version = "0.15.43" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "synstructure" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sysinfo" -version = "0.8.2" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3841,35 +4059,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "tempfile" -version = "3.0.7" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", - "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "termcolor" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "termion" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "textwrap" version = "0.10.0" @@ -3891,19 +4099,19 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tiny-bip39" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3912,10 +4120,10 @@ dependencies = [ [[package]] name = "tiny-keccak" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3923,43 +4131,52 @@ name = "tk-listen" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio" -version = "0.1.18" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tokio-buf" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tokio-codec" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3968,8 +4185,8 @@ name = "tokio-current-thread" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3977,19 +4194,19 @@ name = "tokio-dns-unofficial" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-executor" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3997,9 +4214,9 @@ name = "tokio-fs" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4008,8 +4225,8 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4017,26 +4234,26 @@ name = "tokio-reactor" version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-sync" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4045,38 +4262,38 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-threadpool" -version = "0.1.13" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-timer" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4084,28 +4301,20 @@ name = "tokio-tls" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "tokio-trace-core" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "tokio-udp" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4117,11 +4326,11 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4130,10 +4339,10 @@ dependencies = [ [[package]] name = "toml" -version = "0.4.10" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4143,22 +4352,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "trie-db" -version = "0.12.2" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "trie-root" -version = "0.12.2" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4172,16 +4381,16 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "twox-hash" -version = "1.2.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4194,18 +4403,13 @@ name = "typenum" version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "ucd-util" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "uint" -version = "0.6.1" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4220,7 +4424,7 @@ dependencies = [ [[package]] name = "unicase" -version = "2.3.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4239,12 +4443,12 @@ name = "unicode-normalization" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "unicode-segmentation" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -4281,14 +4485,9 @@ dependencies = [ "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "utf8-ranges" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "vcpkg" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -4301,8 +4500,8 @@ name = "vergen" version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4318,50 +4517,155 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "want" -version = "0.0.6" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "wasm-bindgen" +version = "0.2.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wasm-bindgen-macro 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bumpalo 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro-support 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.48" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wasm-bindgen-webidl" +version = "0.2.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "wasmi" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasmi-validation" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "web-sys" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-webidl 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "websocket" -version = "0.22.3" +version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "weedle" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "which" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4415,13 +4719,13 @@ name = "ws" version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.24 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4443,7 +4747,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4454,12 +4758,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "yamux" -version = "0.1.9" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4474,108 +4778,117 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" [metadata] -"checksum MacTypes-sys 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eaf9f0d0b1cc33a4d2aee14fb4b2eac03462ef4db29c8ac4057327d8a71ad86f" +"checksum aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "54eb1d8fe354e5fc611daf4f2ea97dd45a765f4f1e4512306ec183ae2e8f20c9" "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" -"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" -"checksum aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c" +"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" "checksum aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f10b352bc3fc08ae24dc5d2d3ddcac153678533986122dc283d747b12071000" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" +"checksum arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "bc4662175ead9cd84451d5c35070517777949a2ed84551764129cedb88384841" "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" -"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" -"checksum asn1_der 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9893d63fc3b1c44231e667da6836a33f27d8b6b3bdc82f83da5dfd579d1b6528" +"checksum arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b8d73f9beda665eaa98ab9e4f7442bd4e7de6652587de55b2525e52e29c1b0ba" +"checksum asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bea40e881533b1fe23afca9cd1c1ca022219a10fce604099ecfc96bfa26eaf1a" "checksum asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7f92edafad155aff997fa5b727c6429b91e996b5a5d62a2b0adbae1306b5fe" -"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" -"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" -"checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637" -"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" -"checksum base-x 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d55aa264e822dbafa12db4d54767aff17c6ba55ea2d8559b3e17392c7d000e5d" +"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" +"checksum autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "22130e92352b948e7e82a49cdb0aa94f2211761117f29e052dd397c1ac33542b" +"checksum backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)" = "b5164d292487f037ece34ec0de2fcede2faa162f085dd96d2385ab81b12765ba" +"checksum backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)" = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61" +"checksum base-x 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "76f4eae81729e69bb1819a26c6caac956cc429238388091f98cb6cd858f16443" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" "checksum bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ebecac13b3c745150d7b6c3ea7572d372f09d627c2077e893bf26c5c7f70d282" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" -"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" +"checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" "checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" "checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" -"checksum block-buffer 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49665c62e0e700857531fa5d3763e91b539ff1abeebd56808d378b495870d60d" +"checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" +"checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" -"checksum block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d75255892aeb580d3c566f213a2b6fdc1c66667839f45719ee1d30ebf2aea591" +"checksum block-modes 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "31aa8410095e39fdb732909fb5730a48d5bd7c2e3cd76bd1b07b3dbea130c529" +"checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" "checksum bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0de79cfb98e7aa9988188784d8664b4b5dad6eaaa0863b91d9a4ed871d4f7a42" +"checksum bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e0a692f1c740e7e821ca71a22cf99b9b2322dfa94d10f71443befb1797b3946a" +"checksum bumpalo 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2cd43d82f27d68911e6ee11ee791fb248f138f5d69424dc02e098d4f152b0b05" "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" -"checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" +"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" +"checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" +"checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" "checksum cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "389803e36973d242e7fecb092b2de44a3d35ac62524b3b9339e51d577d668e02" "checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af" -"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" -"checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" +"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" +"checksum chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "77d81f58b7301084de3b958691458a53c3f7e0b1d702f77e550b6a88e3a88abe" "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" -"checksum core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "286e0b41c3a20da26536c6000a280585d519fd07b3956b43aed8a79e9edce980" -"checksum core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "716c271e8613ace48344f723b60b900a93150271e5be206212d052bbc0883efa" -"checksum crossbeam 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad4c7ea749d9fb09e23c5cb17e3b70650860553a0e2744e38446b1803bf7db94" -"checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b" -"checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3" +"checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" +"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" +"checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" "checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" "checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71" -"checksum crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150" -"checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4" +"checksum crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9" "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" -"checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9" -"checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c" +"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" "checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" -"checksum crunchy 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c240f247c278fa08a6d4820a6a222bfc6e0d999e51ba67be94f44c905b2161f2" +"checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" "checksum crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "779015233ac67d65098614aec748ac1c756ab6677fa2e14cf8b37c08dfed1198" +"checksum crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7afa06d05a046c7a47c3a849907ec303504608c927f4e85f7bfff22b7180d971" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" "checksum ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" -"checksum ctrlc 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "630391922b1b893692c6334369ff528dcc3a9d8061ccf4c803aa8f83cb13db5e" +"checksum ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7dfd2d8b4c82121dfdff120f818e09fc4380b0b7e17a742081a89b94853e87f" "checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" -"checksum curve25519-dalek 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e1f8a6fc0376eb52dc18af94915cc04dfdf8353746c0e8c550ae683a0815e5c1" +"checksum curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8b7dcd30ba50cdf88b55b033456138b7c0ac4afdc436d82e1b79f370f24cc66d" "checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97" "checksum digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e5b29bf156f3f4b3c4f610a25ff69370616ae6e0657d416de22645483e72af0a" -"checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c" +"checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" +"checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" "checksum discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" +"checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" "checksum ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81956bcf7ef761fb4e1d88de3fa181358a0d26cbcb9755b587a08f9119824b86" "checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b" "checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" -"checksum env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a" +"checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" "checksum environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c7464757b80de8930c91c9afe77ddce501826bf9d134a87db2c67d9dc177e2c" -"checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" +"checksum error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ab49e9dcb602294bc42f9a7dfc9bc6e936fca4418ea300dbfb84fe16de0b7d9" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" "checksum finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d415e902db2b87bd5a7df7a2b2de97a4566727a23b95ff39e1bfec25a66d4d1c" -"checksum fixed-hash 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a557e80084b05c32b455963ff565a9de6f2866da023d6671705c6aff6f65e01c" +"checksum fixed-hash 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d1a683d1234507e4f3bf2736eeddf0de1dc65996dc0164d57eba0a74bcf29489" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum fork-tree 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "62941eff9507c8177d448bd83a44d9b9760856e184081d8cd79ba9f03dd24981" +"checksum futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "45dc39533a6cae6da2b56da48edae506bb767ec07370f86f70fc062e9d435869" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" -"checksum generic-array 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cba710fd46ea0501f73f0dac107a3f97b5ea3fe0546e79e45e074f58459afa82" +"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" +"checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" +"checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" +"checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" +"checksum getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "34f33de6f0ae7c9cb5e574502a562e2b512799e32abb801cd1e79ad952b62b49" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" -"checksum globset 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4743617a7464bbda3c8aec8558ff2f9429047e025771037df561d383337ff865" -"checksum h2 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "85ab6286db06040ddefb71641b50017c06874614001a134b423783e2db2920bd" -"checksum hash-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ba7fb417e5c470acdd61068c79767d0e65962e70836cf6c9dfd2409f06345ce0" -"checksum hash256-std-hasher 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f8b2027c19ec91eb304999abae7307d225cf93be42af53b0039f76e98ed5af86" +"checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" +"checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" +"checksum hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3c95a428c86ed4633d83e07ef9e0a147a906da01e931f07e74a85bedce5a43" +"checksum hash256-std-hasher 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "663ce20dae36902c16d12c6aaae400ca40d922407a8cf2b4caf8cae9b39b4f03" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" "checksum hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8e04cb7a5051270ef3fa79f8c7604d581ecfa73d520e74f554e45541c4b5881a" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" @@ -4584,21 +4897,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639" "checksum hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda" "checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" -"checksum hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f127a908633569f208325f86f71255d3363c79721d7f9fe31cd5569908819771" +"checksum hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "733e1b3ac906631ca01ebb577e9bb0f5e37a454032b9036b5eaea4013ed6f99a" +"checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" "checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" -"checksum http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "eed324f0f0daf6ec10c474f150505af2c143f251722bf9dbd1261bd1f2ee2c1a" -"checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" +"checksum http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "372bcb56f939e449117fb0869c2e8fd8753a8223d92a172c6e808cf123a5b6e4" +"checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" +"checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" -"checksum hyper 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "df0caae6b71d266b91b4a83111a61d2b94ed2e2bea024c532b933dcff867e58c" -"checksum hyper 0.12.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4f2777434f26af6e4ce4fdcdccd3bed9d861d11e87bcbe72c0f51ddaca8ff848" +"checksum hyper 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273" +"checksum hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)" = "7cb44cbce9d8ee4fb36e4c0ad7b794ac44ebaad924b9c8291a63215bb44c2c8f" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2050d823639fbeae26b2b5ba09aca8907793117324858070ade0673c49f793b" "checksum impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5158079de9d4158e0ce1de3ae0bd7be03904efc40b3d7dd8b8c301cbf6b52b56" +"checksum impl-serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d26be4b97d738552ea423f76c4f681012ff06c3fa36fa968656b3679f60b4a1" "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" -"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" +"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" +"checksum js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "da3ea71161651a4cd97d999b2da139109c537b15ab33abc8ae4ead38deac8a03" "checksum jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc15eef5f8b6bef5ac5f7440a957ff95d036e2f98706947741bfc93d1976db4c" "checksum jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c2dae61ca8a3b047fb11309b00661bc56837085bd07e46f907b9c562c0b03e68" "checksum jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11d2a00824306155b8ef57fe957f31b8cd8ad24262f15cf911d84dcf9a3f206d" @@ -4612,70 +4929,72 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" "checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917" -"checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" -"checksum libp2p 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f5b9cd37b1ca54fa2fd0bbf0486adf2f55f8994f2be9410b65265050b24709b2" -"checksum libp2p-core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bf9c56e6f04cb649fdeb806e963d2da223e3ed17748d9e924fdb836c09f76307" -"checksum libp2p-core-derive 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "debea88a3d5de9fdaf7082bd6d238f2c4c6a0420f14bdf9e1c1083b3e7c69286" -"checksum libp2p-dns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "350d0018af3668d954f61ce7311e7d64ab7c40f19a8eb895e4750efe24c3455f" -"checksum libp2p-floodsub 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bfbcf36cc58ad5d0252d8ebe9c1a87190693fe2cdbe40fb01d8046779f9a75ad" -"checksum libp2p-identify 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82e98435973e958d7dea3f5074d7fca53d0dfce2e1ac6924119a21c2991fe443" -"checksum libp2p-kad 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92bb0153418eaf0ea549008d1e22748a956c9c36af9374fbe7189d44607c14be" -"checksum libp2p-mdns 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc915d0cde68a05d26a0dcb125eddce7dd2a425e97c5172ac300c1ee8716f55a" -"checksum libp2p-mplex 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "355bb370dd12809792dc020638b280e7aaf8625318018abd311c51affd0a612d" -"checksum libp2p-noise 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e86291401f4a83f9fa81c03f8a7ccf0b03ce6aaa40cba058a7ec1026a65a6fe4" -"checksum libp2p-ping 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f3277f1f7eaadf5cdde6a76fb4afbf24e0eda6e2b04f288f526c6fa2e4293a6e" -"checksum libp2p-plaintext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4842a7ab54c12459b58b9e59cbeb03e3e1fd393fef48079472856f934352772" -"checksum libp2p-ratelimit 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "32ba52ee76aaa94af533526ce5a22fbfcc69a560174fccee82f4cdb557411d33" -"checksum libp2p-secio 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00f416e1e3d0214bd7df2be2b6be8ef61771d44292b973c9e02bfbbd7f62fe46" -"checksum libp2p-tcp 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "af47af9997d69fc70aa13e6e7cd0d766614ebe74005e69e763221a64d9a0a5ef" -"checksum libp2p-uds 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa72d81501aad6998d3b1b964f68f438ef99c3aaf54d921e144e0477fa87568" -"checksum libp2p-websocket 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "647bd8862afe6e912eb34b7614f731c0ff89e8777b57d9f2f5f0fd593ecc8d9a" -"checksum libp2p-yamux 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0dbb8d08cb536a964727e77b868a026c6d92993f08e387d49163565575a478d9" -"checksum librocksdb-sys 5.17.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7dfb546562f9b450237bb8df7a31961849ee9fb1186d9e356db1d7a6b7609ff2" +"checksum libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)" = "d44e80633f007889c7eff624b709ab43c92d708caad982295768a7b13ca3b5eb" +"checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" +"checksum libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0231edab431064b30b7749484a39735eb36492cef4658c372c9059e58c3003aa" +"checksum libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cdcbded83195ac0e560090fc5da9c1b7f980d1ec221f02d97432db4d36793eb7" +"checksum libp2p-core-derive 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f765f103b680cbed910b02bfdbdcfce5b1142899c93e51acb960bf59b6f81b1" +"checksum libp2p-dns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4b129d20cc8cbb6ce5da8361045649c024659173e246c5dfbf20ae06071c046a" +"checksum libp2p-floodsub 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "70d68816b8435d6788399416eb2f0a6974fb1d15c4be5c30141f87c8e81746df" +"checksum libp2p-identify 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "718ca645a065fd70855ca6042a7df686c24cd21add750c37a82c811fbd1e5c43" +"checksum libp2p-kad 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bbe27c623a6a720efd5d704347838972062f89149a9c3cd149748da60bdcd3e0" +"checksum libp2p-mdns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9bc1a5d85f4812cae6367b49a432763fe28997bac7c530dc55b70ec18a78aa7" +"checksum libp2p-mplex 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fe5a858342a1cc89464474f7edc4bae1da649b9c823a3e04d9fb494493601746" +"checksum libp2p-noise 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc6b5185c50a52a12e7bbe2ee7799059e24de4e52ab25edbfd26c8ab8515d317" +"checksum libp2p-ping 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7905c1431ad115bee83405770629a27d6f17153ad02ec9670a7347998ef20e22" +"checksum libp2p-plaintext 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc17626763ded57da8fed73187c2d9f6ebb89d30838673c430315bf560c7e4db" +"checksum libp2p-ratelimit 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2409d08b809ab1a74269597f7da2829d117cc11b9ed3343af33fc20831619726" +"checksum libp2p-secio 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "258cdc6742945c8f6402997bbbf36733588e2db18e5a0014da6d46e3ccfb92cf" +"checksum libp2p-tcp 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8d063562545be7523f416f6d96b6fd854480e6afd20844e258323788c5f7be23" +"checksum libp2p-uds 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9ab0b9ca050105fd94229c48911c0c84aef4d6b86a53d1b6df81d938354e47e" +"checksum libp2p-websocket 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "81692c3141a9aefd84f4faffdc93985af3858ef82ed7fe8185e6b27437b36183" +"checksum libp2p-yamux 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6ff51a5b2056bacee1c9f2ed8455cdf3c5c619261ddb4efc783119130aaf52" +"checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" "checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" "checksum linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" -"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" +"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +"checksum malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "35adee9ed962cf7d07d62cb58bc45029f3227f5b5b86246caa8632f06c187bc3" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" -"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" -"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" -"checksum memory-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7623b01a4f1b7acb7cf8e3f678f05e15e6ae26cb0b738dfeb5cc186fd6b82ef4" +"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" +"checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" +"checksum memory-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1eeeeab44c01c7da4409e68ec5b5db74c92305386efab3615e495b1dacaec196" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" -"checksum merlin 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "83c2dda19c01176e8e7148f7bdb88bbdf215a8db0641f89fc40e4b81736aeda5" +"checksum merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "66448a173ad394ef5ebf734efa724f3644dcffda083b1e89979da4461ddac079" "checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" -"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" +"checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" "checksum multistream-select 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f989d40aab0ed0d83c1cdb4856b5790e980b96548d1a921f280e985eb049f38d" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" -"checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" +"checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" -"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" +"checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" "checksum nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d138afcce92d219ccb6eb53d9b1e8a96ac0d633cfd3c53cd9856d96d1741bb8" "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" -"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" -"checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba" +"checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" +"checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" +"checksum num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" -"checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409" -"checksum openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)" = "5a0d6b781aac4ac1bd6cafe2a2f0ad8c16ae8e1dd5184822a16c50139f8838d9" +"checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" +"checksum openssl 0.10.24 (registry+https://github.com/rust-lang/crates.io-index)" = "8152bb5a9b5b721538462336e3bef9a539f892715e5037fda0f984577311af15" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)" = "33c86834957dd5b915623e94f2f4ab2c70dd8f6b70679824155d5ae21dbd495d" +"checksum openssl-sys 0.9.48 (registry+https://github.com/rust-lang/crates.io-index)" = "b5ba300217253bcc5dc68bed23d782affa45000193866e025329aa8a7a9f05b8" "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2edd80cdaf3b9c7b7f524299586bb4eae43cc5eb20c7b41aa0cd741200000e38" +"checksum parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "2b9df1283109f542d8852cd6b30e9341acc2137481eb6157d2e62af68b0afec9" "checksum parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00a486fd383382ddcb2de928364b1f82571c1e48274fc43b7667a4738ee4056c" -"checksum parity-crypto 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b9db194dfbcfe3b398d63d765437a5c7232d59906e203055f0e993f6458ff1" -"checksum parity-multiaddr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "61ae6944d4435d41f4d0f12108c5cbb9207cbb14bc8f2b4984c6e930dc9c8e41" -"checksum parity-multihash 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e8eab0287ccde7821e337a124dc5a4f1d6e4c25d10cc91e3f9361615dd95076" +"checksum parity-crypto 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1b9c063d87e1507cb3807493c8d21859ef23b5414b39f81c53f0ba267d64c1" +"checksum parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b574ca9f0c0235c04de4c5110542959f64c9b8882f638b70f6c6be52c75bdc46" +"checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" +"checksum parity-util-mem 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "89e80f22052161e0cb55cb5a8a75890420c525031f95c9d262dbb0434aa85dc1" "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" "checksum parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2fec5048fba72a2e01baeb0d08089db79aead4b57e2443df172fb1840075a233" "checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" @@ -4686,207 +5005,224 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" "checksum paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1f4a4a1c555c6505821f9d58b8779d0f630a6b7e4e1be24ba718610acf01fa79" "checksum paste-impl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "26e796e623b8b257215f27e6c80a5478856cae305f5b59810ff9acdaa34570e6" +"checksum pbkdf2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0c09cddfbfc98de7f76931acf44460972edb4023eb14d0c6d4018800e552d8e0" "checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" -"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" -"checksum primitive-types 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edb92f1ebfc177432c03287b15d48c202e6e2c95993a7af3ba039abb43b1492e" -"checksum proc-macro-crate 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4c6cf4e5b00300d151dfffae39f529dfa5188f42eeb14201229aa420d6aad10c" -"checksum proc-macro-hack 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2c725b36c99df7af7bf9324e9c999b9e37d92c8f8caf106d82e1d7953218d2d8" -"checksum proc-macro-hack 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e90aa19cd73dedc2d0e1e8407473f073d735fef0ab521438de6da8ee449ab66" -"checksum proc-macro-hack-impl 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2b753ad9ed99dd8efeaa7d2fb8453c8f6bc3e54b97966d35f1bc77ca6865254a" -"checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" -"checksum protobuf 2.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "524d165d95627ddebba768db728216c4429bbb62882f7e6ab1a6c3c54a7ed830" +"checksum pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c1d2cfa5a714db3b5f24f0915e74fcdf91d09d496ba61329705dda7774d2af" +"checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b" +"checksum primitive-types 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6e8612a8dc70f26276fed6131c153ca277cf275ee0a5e2a50cd8a69c697beb8f" +"checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" +"checksum proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b" +"checksum proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)" = "982a35d1194084ba319d65c4a68d24ca28f5fdb5b8bc20899e4eef8641ea5178" +"checksum proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842" +"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" +"checksum protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8aefcec9f142b524d98fc81d07827743be89dd6586a1ba6ab21fa66a500b3fa5" "checksum quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5fb6ccf8db7bbcb9c2eae558db5ab4f3da1c2a87e4e597ed394726bc8ea6ca1d" "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" -"checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db" +"checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" "checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c" "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" +"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" +"checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca" "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" +"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473" -"checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356" +"checksum rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4" +"checksum rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252" -"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" -"checksum regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "559008764a17de49a3146b234641644ed37d118d1ef641a0bb573d146edc6ce0" -"checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96" -"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" +"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" +"checksum regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88c3d9193984285d544df4a30c23a4e62ead42edf70a4452ceb76dac1ce05c26" +"checksum regex-syntax 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b143cceb2ca5e56d5671988ef8b15615733e7ee16cd348e064333b251b89343f" +"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" +"checksum ripemd160 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad5112e0dbbb87577bfbc56c42450235e3012ce336e29c5befd7807bd626da4a" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" -"checksum rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a" -"checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288" +"checksum rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" -"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum rw-stream-sink 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d548a40fe17c3a77d54b82457b79fcc9b8a288d509ca20fbf5aa1dac386d22d6" -"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" +"checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" +"checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" -"checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" +"checksum safemem 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e133ccc4f4d1cd4f89cc8a7ff618287d56dc7f638b8e38fc32c5fdcadc339dd5" "checksum schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339" "checksum schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b5eff518f9bed3d803a0d002af0ab96339b0ebbedde3bec98a684986134b7a39" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" +"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" +"checksum scrypt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8570c5e2fa69cb29d492fd4e9974b6b5facb5a888e1c6da630d4a3cd7ebfef4a" "checksum secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaccd3a23619349e0878d9a241f34b1982343cdf67367058cd7d078d326b63e" -"checksum security-framework 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfab8dda0e7a327c696d893df9ffa19cadc4bd195797997f5223cf5831beaf05" -"checksum security-framework-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc" +"checksum security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2" +"checksum security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "aa5f7c20820475babd2c077c3ab5f8c77a31c15e16ea38687b4c02d3e48680f4" -"checksum serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "58fc82bec244f168b23d1963b45c8bf5726e9a15a9d146a067f9081aeed2de79" -"checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" +"checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" +"checksum serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)" = "7fe5626ac617da2f2d9c48af5515a21d5a480dbd151e01bb1c355e26a3e68113" +"checksum serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)" = "01e69e1b8a631f245467ee275b8c757b818653c6d704cdbcaeb56b56767b529c" +"checksum serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704" +"checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" "checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" +"checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" "checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" -"checksum sha3 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34a5e54083ce2b934bf059fdf38e7330a154177e029ab6c4e18638f2f624053a" +"checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf" "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" -"checksum slog 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e1a2eec401952cd7b12a84ea120e2d57281329940c3f93c2bf04f462539508e" +"checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" "checksum slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e544d16c6b230d84c866662fe55e31aacfca6ae71e6fc49ae9a311cb379bfc2f" "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" -"checksum slog-scope 4.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "60c04b4726fa04595ccf2c2dad7bcd15474242c4c5e109a8a376e8a2c9b1539a" -"checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" +"checksum slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d1d3ec6214d46e57a7ec87c1972bbca66c59172a0cfffa5233c54726afb946bf" +"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" -"checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55" -"checksum sr-api-macros 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum sr-io 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum sr-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum sr-std 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum sr-version 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-balances 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-consensus 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-executive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-finality-tracker 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-indices 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-metadata 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-session 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-staking 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-sudo 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-support 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-support-procedural 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-system 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum srml-timestamp 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" +"checksum spin 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbdb51a221842709c2dd65b62ad4b78289fc3e706a02c17a26104528b6aa7837" +"checksum sr-api-macros 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-balances 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-executive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-indices 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-metadata 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-staking 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-sudo 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" -"checksum stdweb 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a3edad410e603184d656e2abded5fd4d3d6e93d5763d21130dbaf99795db74eb" +"checksum stdweb 0.4.18 (registry+https://github.com/rust-lang/crates.io-index)" = "a68c0ce28cf7400ed022e18da3c4591e14e1df02c70e93573cc59921b3923aeb" "checksum stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0e21ebd9179de08f2300a65454268a17ea3de204627458588c84319c4def3930" -"checksum stdweb-internal-macros 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1635afd059cbfac7d5b1274f0c44cec110c1e013c48e8bbc22e07e52696cf887" -"checksum stdweb-internal-runtime 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a2a2f4a2eb556337b2d1a302630bbddf989ae383c70393e89b48152b9896cbda" +"checksum stdweb-internal-macros 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "e68f7d08b76979a43e93fe043b66d2626e35d41d68b0b85519202c6dd8ac59fa" +"checksum stdweb-internal-runtime 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d52317523542cc0af5b7e31017ad0f7d1e78da50455e38d5657cd17754f617da" "checksum stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8861bc80f649f5b4c9bd38b696ae9af74499d479dbfb327f0607de6b326a36bc" -"checksum string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b639411d0b9c738748b5397d5ceba08e648f4f1992231aa859af1a017f31f60b" +"checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" -"checksum structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "3d0760c312538987d363c36c42339b55f5ee176ea8808bbe4543d484a291c8d1" -"checksum structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "528aeb7351d042e6ffbc2a6fb76a86f9b622fdf7c25932798e7a82cb03bc94c6" +"checksum structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7" +"checksum structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "53010261a84b37689f9ed7d395165029f9cc7abb9f56bbfe86bee2597ed25107" "checksum strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1810e25f576e7ffce1ff5243b37066da5ded0310b3274c20baaeccb1145b2806" "checksum strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "572a2f4e53dd4c3483fd79e5cc10ddd773a3acb1169bbfe8762365e107110579" -"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-bip39 0.2.1 (git+https://github.com/paritytech/substrate-bip39)" = "" -"checksum substrate-cli 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-client 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-client-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-consensus-common 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-executor 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-inherents 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-keyring 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-keystore 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-offchain 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-panic-handler 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-peerset 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-primitives 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-rpc 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-serializer 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-service 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-state-db 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-state-machine 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-telemetry 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" -"checksum substrate-trie 1.0.0 (git+https://github.com/joystream/substrate.git?rev=6dfc3e8b057bb00322136251a0f10305fbb1ad8f)" = "" +"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-bip39 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d69ace596e9ca97837cc41f8edcfc4e0a997f227d5fc153d1010b60a0fe9acda" +"checksum substrate-cli 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-client-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-keystore 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-offchain 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-peerset 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-rpc 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-serializer 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-state-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" -"checksum subtle 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "702662512f3ddeb74a64ce2fbbf3707ee1b6bb663d28bb054e0779bbc720d926" -"checksum syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d2b4cfac95805274c6afdb12d8f770fa2d27c045953e7b630a81801953699a9a" -"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" -"checksum sysinfo 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b5a0cb7899e248ed0baa6ef6f8406352523c2f99bc7c4b1800f4cd6d5dde99eb" +"checksum subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "01f40907d9ffc762709e4ff3eb4a6f6b41b650375a3f09ac92b641942b7fb082" +"checksum syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)" = "ee06ea4b620ab59a2267c6b48be16244a3389f8bfa0986bdd15c35b890b00af3" +"checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" +"checksum sysinfo 0.8.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d291d07ba27acd519287ca22fb1fb024dcc4b925cddb63d69af24db153ca2c82" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" -"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" -"checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f" -"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" +"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" +"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" -"checksum tiny-bip39 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f5388a470627f97a01a6e13389ced797a42b1611f9de7e0f6ca705675ac55297" -"checksum tiny-keccak 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e9175261fbdb60781fcd388a4d6cc7e14764a2b629a7ad94abb439aed223a44f" +"checksum tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c5676413eaeb1ea35300a0224416f57abc3bd251657e0fafc12c47ff98c060" +"checksum tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2" "checksum tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5462b0f968c0457efe38fcd2df7e487096b992419e4f5337b06775a614bbda4b" -"checksum tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "65641e515a437b308ab131a82ce3042ff9795bef5d6c5a9be4eb24195c417fd9" +"checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" +"checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" "checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" "checksum tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975" -"checksum tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "83ea44c6c0773cc034771693711c35c677b4b5a4b21b9e7071704c54de7d555e" +"checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac" "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" "checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce" -"checksum tokio-sync 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "fda385df506bf7546e70872767f71e81640f1f251bdf2fd8eb81a0eaec5fe022" +"checksum tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2162248ff317e2bc713b261f242b69dbb838b85248ed20bb21df56d60ea4cae7" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" -"checksum tokio-threadpool 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "ec5759cf26cf9659555f36c431b515e3d05f66831741c85b4b5d5dfb9cf1323c" -"checksum tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2910970404ba6fa78c5539126a9ae2045d62e3713041e447f695f41405a120c6" +"checksum tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "90ca01319dea1e376a001e8dc192d42ebde6dd532532a5bad988ac37db365b19" +"checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" "checksum tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" -"checksum tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "350c9edade9830dc185ae48ba45667a445ab59f6167ef6d0254ec9d2430d9dd3" "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" -"checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" +"checksum toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b8c96d7873fa7ef8bdeb3a9cda3ac48389b4154f32b9803b4bc26220b677b039" "checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" -"checksum trie-db 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1ba73747fd3a64ab531274c04cb588dfa9d30d972d62990831e63fbce2cfec59" -"checksum trie-root 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cfa2e20c4f1418ac2e71ddc418e35e1b56e34022e2146209ffdbf1b2de8b1bd9" +"checksum trie-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ae063390324bfcf36c7e8e4fb1f85f6f0fb5dd04e1cd282581eb7b8b34b32de7" +"checksum trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "485c5dd851148b6fdac9009f7c256d0a4b5f99f08bd2e63c258f1e483aed4f1d" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" -"checksum twox-hash 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "09871da9f15424236082e0b220fd404a4eb6bebc7205c67653701229234ac64c" +"checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56" "checksum typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" -"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" -"checksum uint 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e7780bb27fd8a22295e0d9d53ae3be253f715a0dccb1808527f478f1c2603708" +"checksum uint 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2143cded94692b156c356508d92888acc824db5bffc0b4089732264c6fcf86d4" "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" -"checksum unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "41d17211f887da8e4a70a45b9536f26fc5de166b81e2d5d80de4a17fd22553bd" +"checksum unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a84e5511b2a947f3ae965dcb29b13b7b1691b6e7332cf5dbc1744138d5acb7f6" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" -"checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" +"checksum unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1967f4cdfc355b37fd76d2a954fb2ed3871034eb4f26d60537d88795cfc332a9" "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" "checksum unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2c64cdf40b4a9645534a943668681bcb219faf51874d4b65d2e0abda1b10a2ab" "checksum untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" -"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" -"checksum vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d" +"checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95" "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" "checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba" "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" -"checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" -"checksum wasmi 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f6a891b45c79e9f96fb66cc84a057211ef9cd2e5e8d093f3dbbd480e146a8758" -"checksum websocket 0.22.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7cc2d74d89f9df981ab41ae624e33cf302fdf456b93455c6a31911a99c9f0bb8" +"checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" +"checksum wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "4de97fa1806bb1a99904216f6ac5e0c050dc4f8c676dc98775047c38e5c01b55" +"checksum wasm-bindgen-backend 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "5d82c170ef9f5b2c63ad4460dfcee93f3ec04a9a36a4cc20bc973c39e59ab8e3" +"checksum wasm-bindgen-futures 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "73c25810ee684c909488c214f55abcbc560beb62146d352b9588519e73c2fed9" +"checksum wasm-bindgen-macro 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "f07d50f74bf7a738304f6b8157f4a581e1512cd9e9cdb5baad8c31bbe8ffd81d" +"checksum wasm-bindgen-macro-support 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "95cf8fe77e45ba5f91bc8f3da0c3aa5d464b3d8ed85d84f4d4c7cc106436b1d7" +"checksum wasm-bindgen-shared 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "d9c2d4d4756b2e46d3a5422e06277d02e4d3e1d62d138b76a4c681e925743623" +"checksum wasm-bindgen-webidl 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "24e47859b4eba3d3b9a5c2c299f9d6f8d0b613671315f6f0c5c7f835e524b36a" +"checksum wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "aebbaef470840d157a5c47c8c49f024da7b1b80e90ff729ca982b2b80447e78b" +"checksum wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab380192444b3e8522ae79c0a1976e42a82920916ccdfbce3def89f456ea33f3" +"checksum web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "86d515d2f713d3a6ab198031d2181b7540f8e319e4637ec2d4a41a208335ef29" +"checksum websocket 0.22.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0adcd2a64c5746c9702b354a1b992802b0c363df1dfa324a74cb7aebe10e0cbf" +"checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" "checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" @@ -4899,5 +5235,5 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" "checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" "checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" -"checksum yamux 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "302defd1bed8a9a6d43b82f0e5a50510dfdfbbd02c270c93ff9d6f3f5e2dea89" +"checksum yamux 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "01bd67889938c48f0049fc60a77341039e6c3eaf16cb7693e6ead7c0ba701295" "checksum zeroize 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8ddfeb6eee2fb3b262ef6e0898a52b7563bb8e0d5955a313b3cf2f808246ea14" diff --git a/Cargo.toml b/Cargo.toml index 593cbc2c57..c128066a6f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,72 +21,72 @@ tokio = '0.1' trie-root = '0.12.0' [dependencies.basic-authorship] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-basic-authorship' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [dependencies.consensus] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-aura' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [dependencies.ctrlc] features = ['termination'] version = '3.0' [dependencies.inherents] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-inherents' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [dependencies.network] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-network' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [dependencies.joystream-node-runtime] # clone https://github.com/joystream/substrate-runtime-joystream to this path: path = 'substrate-runtime-joystream' [dependencies.primitives] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [dependencies.sr-io] -git = 'https://github.com/joystream/substrate.git' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +git = 'https://github.com/paritytech/substrate.git' +branch = 'v1.0' [dependencies.substrate-cli] -git = 'https://github.com/joystream/substrate.git' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +git = 'https://github.com/paritytech/substrate.git' +branch = 'v1.0' [dependencies.substrate-client] -git = 'https://github.com/joystream/substrate.git' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +git = 'https://github.com/paritytech/substrate.git' +branch = 'v1.0' [dependencies.substrate-executor] -git = 'https://github.com/joystream/substrate.git' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +git = 'https://github.com/paritytech/substrate.git' +branch = 'v1.0' [dependencies.substrate-service] -git = 'https://github.com/joystream/substrate.git' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +git = 'https://github.com/paritytech/substrate.git' +branch = 'v1.0' [dependencies.transaction-pool] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-transaction-pool' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [dependencies.substrate-telemetry] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-telemetry' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [dependencies.grandpa] -git = 'https://github.com/joystream/substrate.git' +git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa' -rev = '6dfc3e8b057bb00322136251a0f10305fbb1ad8f' +branch = 'v1.0' [profile.release] panic = 'unwind' From 257ce578a659f4eed5320d58dac6e0829b5932c6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 8 Aug 2019 16:43:17 +0300 Subject: [PATCH 215/350] bump node version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 889c319922..151c30d56e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1156,7 +1156,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "joystream-node" -version = "1.0.0" +version = "1.1.0" dependencies = [ "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index c128066a6f..f425664fa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '1.0.0' +version = '1.1.0' [dependencies] error-chain = '0.12' From e808cdae7803ae3244ef642ab310a923b638a85b Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 8 Aug 2019 16:58:01 +0300 Subject: [PATCH 216/350] rustfmt --- src/chain_spec.rs | 22 +++++++++------------- src/service.rs | 4 ++-- 2 files changed, 11 insertions(+), 15 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 5eb77959a5..1a2a547452 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -16,12 +16,11 @@ use hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ - AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, - CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, - DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, - ForumConfig, forum::InputValidationLengthConstraint, Perbill, - ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, - ActorsConfig, + forum::InputValidationLengthConstraint, AccountId, ActorsConfig, BalancesConfig, + ConsensusConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, + DataObjectTypeRegistryConfig, DownloadSessionsConfig, ForumConfig, GenesisConfig, + GrandpaConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, SessionConfig, + StakerStatus, StakingConfig, SudoConfig, TimestampConfig, }; use primitives::{crypto::UncheckedInto, ed25519, sr25519, Pair}; use substrate_service; @@ -57,9 +56,9 @@ fn authority_key(s: &str) -> AuthorityId { } fn account_key(s: &str) -> AccountId { - sr25519::Pair::from_string(&format!("//{}", s), None) - .expect("static values are valid; qed") - .public() + sr25519::Pair::from_string(&format!("//{}", s), None) + .expect("static values are valid; qed") + .public() } impl Alternative { @@ -170,10 +169,7 @@ pub fn staging_testnet_config() -> ChainSpec { } fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { - return InputValidationLengthConstraint { - min, - max_min_diff - } + return InputValidationLengthConstraint { min, max_min_diff }; } fn staging_testnet_config_genesis() -> GenesisConfig { diff --git a/src/service.rs b/src/service.rs index 499d8f2c81..70f419d8aa 100644 --- a/src/service.rs +++ b/src/service.rs @@ -25,7 +25,7 @@ use inherents::InherentDataProviders; use joystream_node_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; use log::info; use network::construct_simple_protocol; -use primitives::{ed25519::Pair, Pair as PairT, sr25519::Public as SrPublic, crypto::Ss58Codec}; +use primitives::{crypto::Ss58Codec, ed25519::Pair, sr25519::Public as SrPublic, Pair as PairT}; use std::sync::Arc; use std::time::Duration; use substrate_client as client; @@ -41,7 +41,7 @@ use transaction_pool::{self, txpool::Pool as TransactionPool}; fn ed_ss58check(public_key: &primitives::ed25519::Public) -> String { let raw_bytes: &[u8; 32] = public_key.as_ref(); // Interpret bytes as sr25519 public key - let v : SrPublic = SrPublic::from_raw(raw_bytes.clone()); + let v: SrPublic = SrPublic::from_raw(raw_bytes.clone()); v.to_ss58check() } From 5301c29d8d73649de3191fcbf5b62607f82c04c2 Mon Sep 17 00:00:00 2001 From: Atul Bhosale Date: Sun, 16 Jun 2019 22:49:02 +0530 Subject: [PATCH 217/350] Format code using 'cargo fmt' --- build.rs | 6 +++--- src/chain_spec.rs | 22 +++++++++------------- src/service.rs | 4 ++-- 3 files changed, 14 insertions(+), 18 deletions(-) diff --git a/build.rs b/build.rs index d30f13c0c9..aeb892f3b1 100644 --- a/build.rs +++ b/build.rs @@ -1,8 +1,8 @@ -use vergen::{ConstantsFlags, generate_cargo_keys}; +use vergen::{generate_cargo_keys, ConstantsFlags}; const ERROR_MSG: &'static str = "Failed to generate metadata files"; fn main() { - generate_cargo_keys(ConstantsFlags::all()).expect(ERROR_MSG); - println!("cargo:rerun-if-changed=.git/HEAD"); + generate_cargo_keys(ConstantsFlags::all()).expect(ERROR_MSG); + println!("cargo:rerun-if-changed=.git/HEAD"); } diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 5eb77959a5..1a2a547452 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -16,12 +16,11 @@ use hex_literal::{hex, hex_impl}; use joystream_node_runtime::{ - AccountId, BalancesConfig, ConsensusConfig, CouncilConfig, - CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, - DownloadSessionsConfig, GenesisConfig, GrandpaConfig, IndicesConfig, MembersConfig, - ForumConfig, forum::InputValidationLengthConstraint, Perbill, - ProposalsConfig, SessionConfig, StakerStatus, StakingConfig, SudoConfig, TimestampConfig, - ActorsConfig, + forum::InputValidationLengthConstraint, AccountId, ActorsConfig, BalancesConfig, + ConsensusConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, + DataObjectTypeRegistryConfig, DownloadSessionsConfig, ForumConfig, GenesisConfig, + GrandpaConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, SessionConfig, + StakerStatus, StakingConfig, SudoConfig, TimestampConfig, }; use primitives::{crypto::UncheckedInto, ed25519, sr25519, Pair}; use substrate_service; @@ -57,9 +56,9 @@ fn authority_key(s: &str) -> AuthorityId { } fn account_key(s: &str) -> AccountId { - sr25519::Pair::from_string(&format!("//{}", s), None) - .expect("static values are valid; qed") - .public() + sr25519::Pair::from_string(&format!("//{}", s), None) + .expect("static values are valid; qed") + .public() } impl Alternative { @@ -170,10 +169,7 @@ pub fn staging_testnet_config() -> ChainSpec { } fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { - return InputValidationLengthConstraint { - min, - max_min_diff - } + return InputValidationLengthConstraint { min, max_min_diff }; } fn staging_testnet_config_genesis() -> GenesisConfig { diff --git a/src/service.rs b/src/service.rs index 499d8f2c81..70f419d8aa 100644 --- a/src/service.rs +++ b/src/service.rs @@ -25,7 +25,7 @@ use inherents::InherentDataProviders; use joystream_node_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; use log::info; use network::construct_simple_protocol; -use primitives::{ed25519::Pair, Pair as PairT, sr25519::Public as SrPublic, crypto::Ss58Codec}; +use primitives::{crypto::Ss58Codec, ed25519::Pair, sr25519::Public as SrPublic, Pair as PairT}; use std::sync::Arc; use std::time::Duration; use substrate_client as client; @@ -41,7 +41,7 @@ use transaction_pool::{self, txpool::Pool as TransactionPool}; fn ed_ss58check(public_key: &primitives::ed25519::Public) -> String { let raw_bytes: &[u8; 32] = public_key.as_ref(); // Interpret bytes as sr25519 public key - let v : SrPublic = SrPublic::from_raw(raw_bytes.clone()); + let v: SrPublic = SrPublic::from_raw(raw_bytes.clone()); v.to_ss58check() } From 246860547afeb2d32ff85e867f4934bd3921e0c7 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 30 Aug 2019 02:16:23 +0300 Subject: [PATCH 218/350] substrate v2: updated node template and dependencies --- Cargo.lock | 2796 ++++++++++++++++++++++++++------------------- Cargo.toml | 64 +- build.rs | 27 +- src/chain_spec.rs | 566 ++++----- src/cli.rs | 134 +-- src/error.rs | 29 - src/main.rs | 10 +- src/service.rs | 384 ++++--- 8 files changed, 2258 insertions(+), 1752 deletions(-) delete mode 100644 src/error.rs diff --git a/Cargo.lock b/Cargo.lock index 151c30d56e..c585d1dd18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,14 +1,9 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. [[package]] -name = "aes" -version = "0.3.2" +name = "adler32" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "aes-ctr" @@ -41,6 +36,14 @@ dependencies = [ "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ahash" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "aho-corasick" version = "0.7.6" @@ -150,25 +153,11 @@ dependencies = [ "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "base-x" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "base58" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "base64" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "safemem 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "base64" version = "0.10.1" @@ -177,15 +166,6 @@ dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "bigint" -version = "4.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "bindgen" version = "0.47.3" @@ -217,6 +197,11 @@ name = "bitmask" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "bitvec" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "blake2" version = "0.8.0" @@ -246,15 +231,6 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "block-buffer" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "block-buffer" version = "0.7.3" @@ -274,15 +250,6 @@ dependencies = [ "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "block-modes" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "block-padding" version = "0.1.4" @@ -309,6 +276,11 @@ name = "bumpalo" version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "byte-slice-cast" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "byte-tools" version = "0.2.0" @@ -425,6 +397,24 @@ dependencies = [ "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "const-random" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "const-random-macro" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "constant_time_eq" version = "0.1.3" @@ -444,6 +434,14 @@ name = "core-foundation-sys" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "crc32fast" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "crossbeam-channel" version = "0.3.9" @@ -500,11 +498,6 @@ dependencies = [ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "crunchy" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "crunchy" version = "0.2.2" @@ -519,15 +512,6 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "crypto-mac" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "crypto-mac" version = "0.7.0" @@ -582,33 +566,44 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "digest" -version = "0.6.2" +name = "derive_more" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "digest" -version = "0.7.6" +name = "derive_more" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "digest" -version = "0.8.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "discard" -version = "1.0.4" +name = "digest" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "dns-parser" @@ -667,12 +662,11 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "error-chain" -version = "0.12.1" +name = "erased-serde" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)", - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -719,30 +713,43 @@ dependencies = [ [[package]] name = "finality-grandpa" -version = "0.6.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "fixed-hash" -version = "0.3.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "flate2" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "fnv" version = "1.0.6" @@ -763,10 +770,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -804,6 +811,20 @@ name = "futures" version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "futures-channel-preview" +version = "0.3.0-alpha.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-core-preview" +version = "0.3.0-alpha.17" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-cpupool" version = "0.1.8" @@ -814,24 +835,77 @@ dependencies = [ ] [[package]] -name = "gcc" -version = "0.3.55" +name = "futures-executor-preview" +version = "0.3.0-alpha.17" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "generic-array" -version = "0.8.3" +name = "futures-io-preview" +version = "0.3.0-alpha.17" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-preview" +version = "0.3.0-alpha.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-executor-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-sink-preview" +version = "0.3.0-alpha.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-timer" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-util-preview" +version = "0.3.0-alpha.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "gcc" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "generic-array" -version = "0.9.0" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -908,12 +982,12 @@ dependencies = [ [[package]] name = "hash-db" -version = "0.12.4" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hash256-std-hasher" -version = "0.12.4" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -928,6 +1002,15 @@ dependencies = [ "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hashbrown" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ahash 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "hashmap_core" version = "0.1.10" @@ -963,6 +1046,15 @@ dependencies = [ "proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hex-literal" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "hex-literal-impl" version = "0.1.2" @@ -972,22 +1064,21 @@ dependencies = [ ] [[package]] -name = "hmac" -version = "0.4.2" +name = "hex-literal-impl" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "hmac" -version = "0.6.3" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1043,24 +1134,6 @@ dependencies = [ "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "hyper" -version = "0.10.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "hyper" version = "0.12.33" @@ -1090,6 +1163,18 @@ dependencies = [ "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hyper-tls" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "idna" version = "0.1.5" @@ -1101,11 +1186,21 @@ dependencies = [ ] [[package]] -name = "impl-codec" +name = "idna" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "impl-codec" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1149,6 +1244,11 @@ dependencies = [ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ipnet" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "itoa" version = "0.4.4" @@ -1156,32 +1256,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "joystream-node" -version = "1.1.0" +version = "2.0.0" dependencies = [ "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "joystream-node-runtime 6.0.0", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-basic-authorship 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-cli 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-finality-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1189,34 +1292,39 @@ dependencies = [ name = "joystream-node-runtime" version = "6.0.0" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-balances 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-executive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-indices 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-staking 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-sudo 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-forum-module 1.1.0", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=substrate-v2)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-wasm-builder-runner 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1228,59 +1336,84 @@ dependencies = [ ] [[package]] -name = "jsonrpc-core" -version = "10.1.0" +name = "jsonrpc-client-transports" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "jsonrpc-derive" -version = "10.1.0" +name = "jsonrpc-core" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jsonrpc-core-client" +version = "13.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "jsonrpc-client-transports 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "jsonrpc-derive" +version = "13.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-http-server" -version = "10.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-pubsub" -version = "10.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-server-utils" -version = "10.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1291,16 +1424,15 @@ dependencies = [ [[package]] name = "jsonrpc-ws-server" -version = "10.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ws 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1326,6 +1458,15 @@ dependencies = [ "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", ] +[[package]] +name = "kvdb-memorydb" +version = "0.1.0" +source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" +dependencies = [ + "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "kvdb-rocksdb" version = "0.1.4" @@ -1342,11 +1483,6 @@ dependencies = [ "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "language-tags" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "lazy_static" version = "1.3.0" @@ -1373,42 +1509,45 @@ dependencies = [ [[package]] name = "libp2p" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core-derive 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-dns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-floodsub 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-kad 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mdns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mplex 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-noise 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-plaintext 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ratelimit 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-secio 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-tcp 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-uds 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-websocket 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-yamux 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core-derive 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-deflate 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-dns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-floodsub 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-kad 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mdns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mplex 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-noise 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-plaintext 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ratelimit 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-secio 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-tcp 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-uds 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-wasm-ext 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-websocket 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-yamux 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-core" -version = "0.7.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1419,53 +1558,62 @@ dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "multistream-select 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "multistream-select 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-core-derive" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "libp2p-deflate" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "libp2p-dns" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-floodsub" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1473,95 +1621,94 @@ dependencies = [ "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-identify" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-kad" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-mdns" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-mplex" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1569,59 +1716,60 @@ dependencies = [ [[package]] name = "libp2p-noise" -version = "0.5.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ping" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-plaintext" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ratelimit" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1629,25 +1777,23 @@ dependencies = [ [[package]] name = "libp2p-secio" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", - "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1657,56 +1803,85 @@ dependencies = [ "web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "libp2p-swarm" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "libp2p-tcp" -version = "0.7.2" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipnet 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-uds" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "libp2p-wasm-ext" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-futures 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "libp2p-websocket" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb 0.4.18 (registry+https://github.com/rust-lang/crates.io-index)", + "soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - "websocket 0.22.4 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-rustls 0.10.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-yamux" -version = "0.7.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "yamux 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1736,6 +1911,17 @@ dependencies = [ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "libz-sys" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "linked-hash-map" version = "0.5.2" @@ -1759,11 +1945,19 @@ dependencies = [ ] [[package]] -name = "log" -version = "0.3.9" +name = "lock_api" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "lock_api" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1812,12 +2006,12 @@ dependencies = [ [[package]] name = "memory-db" -version = "0.12.4" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-util-mem 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1837,11 +2031,20 @@ dependencies = [ ] [[package]] -name = "mime" -version = "0.2.6" +name = "miniz-sys" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "miniz_oxide" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1895,14 +2098,13 @@ dependencies = [ [[package]] name = "multistream-select" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1954,6 +2156,19 @@ dependencies = [ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "node-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + [[package]] name = "nodrop" version = "0.1.13" @@ -1973,6 +2188,15 @@ dependencies = [ "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "num-bigint" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "num-integer" version = "0.1.41" @@ -1982,6 +2206,17 @@ dependencies = [ "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "num-rational" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "num-traits" version = "0.2.8" @@ -2071,47 +2306,9 @@ name = "parity-bytes" version = "0.1.0" source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" -[[package]] -name = "parity-codec" -version = "3.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-codec-derive" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-crypto" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "block-modes 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ripemd160 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "scrypt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "parity-multiaddr" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2120,6 +2317,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2140,12 +2338,39 @@ dependencies = [ ] [[package]] -name = "parity-util-mem" +name = "parity-scale-codec" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec-derive 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-scale-codec-derive" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parity-send-wrapper" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "parity-util-mem" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2158,23 +2383,6 @@ dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "parity-ws" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "parking_lot" version = "0.5.5" @@ -2202,6 +2410,26 @@ dependencies = [ "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parking_lot" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "parking_lot_core" version = "0.2.14" @@ -2237,6 +2465,35 @@ dependencies = [ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parking_lot_core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "paste" version = "0.1.5" @@ -2257,16 +2514,6 @@ dependencies = [ "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "pbkdf2" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "pbkdf2" version = "0.3.0" @@ -2286,6 +2533,16 @@ name = "percent-encoding" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "percent-encoding" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "pin-utils" +version = "0.1.0-alpha.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "pkg-config" version = "0.3.15" @@ -2298,13 +2555,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "primitive-types" -version = "0.2.4" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "fixed-hash 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-codec 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "uint 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2608,22 +2865,22 @@ dependencies = [ ] [[package]] -name = "ripemd160" -version = "0.8.0" +name = "rocksdb" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "rocksdb" -version = "0.11.0" +name = "rpassword" +version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2644,6 +2901,19 @@ dependencies = [ "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "rustls" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sct 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rw-stream-sink" version = "0.1.2" @@ -2667,11 +2937,6 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "safemem" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "schannel" version = "0.1.15" @@ -2683,19 +2948,18 @@ dependencies = [ [[package]] name = "schnorrkel" -version = "0.1.1" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2709,24 +2973,12 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "scrypt" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pbkdf2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "secp256k1" -version = "0.12.2" +name = "sct" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2822,17 +3074,6 @@ dependencies = [ "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sha2" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "sha2" version = "0.8.0" @@ -2874,12 +3115,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "slog" version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "slog-async" version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/paritytech/slog-async#107848e7ded5e80dc43f6296c2b96039eb92c0a5" dependencies = [ + "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2891,6 +3136,7 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2906,6 +3152,16 @@ dependencies = [ "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "slog_derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "smallvec" version = "0.6.10" @@ -2928,6 +3184,25 @@ dependencies = [ "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "soketto" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "sourcefile" version = "0.1.4" @@ -2940,8 +3215,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2952,284 +3227,344 @@ dependencies = [ [[package]] name = "sr-io" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + +[[package]] +name = "sr-staking-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "sr-std" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-version" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] -name = "srml-aura" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +name = "srml-authority-discovery" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-staking 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] -name = "srml-balances" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +name = "srml-authorship" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + +[[package]] +name = "srml-babe" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] -name = "srml-consensus" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +name = "srml-balances" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-executive" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-finality-tracker" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-grandpa" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + +[[package]] +name = "srml-im-online" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-indices" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-metadata" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + +[[package]] +name = "srml-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-session" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-staking" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-sudo" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-support" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-metadata 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-support-procedural" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support-procedural-tools 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3238,33 +3573,32 @@ dependencies = [ [[package]] name = "srml-system" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "srml-timestamp" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] @@ -3278,53 +3612,8 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "static_slice" -version = "0.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "stdweb" -version = "0.4.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb-internal-macros 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "stdweb-internal-runtime 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "stdweb-derive" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "stdweb-internal-macros" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "base-x 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "stdweb-internal-runtime" -version = "0.1.4" +name = "static_slice" +version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3370,12 +3659,12 @@ dependencies = [ [[package]] name = "strum" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "strum_macros" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3384,408 +3673,444 @@ dependencies = [ "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-application-crypto" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + +[[package]] +name = "substrate-authority-discovery-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + [[package]] name = "substrate-basic-authorship" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-bip39" -version = "0.2.2" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-cli" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sysinfo 0.8.6 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-client" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-client-db" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-state-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] -name = "substrate-consensus-aura" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +name = "substrate-consensus-babe" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-aura-slots 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-authorities 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-consensus-aura-primitives" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" -dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", +] + +[[package]] +name = "substrate-consensus-babe-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] -name = "substrate-consensus-aura-slots" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +name = "substrate-consensus-common" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] -name = "substrate-consensus-authorities" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +name = "substrate-consensus-slots" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] -name = "substrate-consensus-common" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +name = "substrate-consensus-uncles" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-executor" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-serializer 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-finality-grandpa" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "finality-grandpa 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-finality-grandpa-primitives" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-forum-module" version = "1.1.0" +source = "git+https://github.com/mnaamani/substrate-forum-module?branch=substrate-v2#cc3af317df2e1791c21cab4d0430b09209f204d6" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-balances 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-inherents" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-keyring" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", - "strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-keystore" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-crypto 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-network-libp2p 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-peerset 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-network-libp2p" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" -dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-peerset 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-offchain-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-offchain-primitives" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-panic-handler" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3793,11 +4118,11 @@ dependencies = [ [[package]] name = "substrate-peerset" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3806,77 +4131,83 @@ dependencies = [ [[package]] name = "substrate-primitives" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "hash256-std-hasher 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-bip39 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-rpc" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core-client 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-rpc-servers" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-http-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-ws-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-rpc 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-serializer" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3884,126 +4215,152 @@ dependencies = [ [[package]] name = "substrate-service" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-keystore 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-offchain 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-rpc-servers 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sysinfo 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-session" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +dependencies = [ + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-state-db" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-state-machine" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "trie-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-telemetry" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-transaction-graph" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-transaction-pool" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "substrate-transaction-graph 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] [[package]] name = "substrate-trie" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?branch=v1.0#fc206f3a009b64fc746202e5b4c701bf7e24d1f1" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "memory-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)", - "trie-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-wasm-builder-runner" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "subtle" version = "1.0.0" @@ -4037,7 +4394,7 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.8.6" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4126,17 +4483,6 @@ dependencies = [ "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "tk-listen" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "tokio" version = "0.1.22" @@ -4247,6 +4593,19 @@ dependencies = [ "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tokio-rustls" +version = "0.10.0-alpha.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tokio-sync" version = "0.1.6" @@ -4296,16 +4655,6 @@ dependencies = [ "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "tokio-tls" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "tokio-udp" version = "0.1.3" @@ -4345,29 +4694,24 @@ dependencies = [ "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "traitobject" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "trie-db" -version = "0.12.4" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", - "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "trie-root" -version = "0.12.4" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4393,11 +4737,6 @@ dependencies = [ "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "typeable" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "typenum" version = "1.10.0" @@ -4405,23 +4744,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "uint" -version = "0.7.1" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "unicase" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "unicase" version = "2.4.0" @@ -4485,6 +4815,16 @@ dependencies = [ "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "url" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "vcpkg" version = "0.2.7" @@ -4598,12 +4938,28 @@ dependencies = [ "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "wasm-timer" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "wasmi" -version = "0.4.5" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4629,26 +4985,21 @@ dependencies = [ ] [[package]] -name = "websocket" -version = "0.22.4" +name = "webpki" +version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "webpki-roots" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4716,7 +5067,7 @@ dependencies = [ [[package]] name = "ws" -version = "0.7.9" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4725,11 +5076,10 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.24 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4774,14 +5124,29 @@ dependencies = [ [[package]] name = "zeroize" -version = "0.5.2" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "zeroize_derive 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "zeroize_derive" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", +] [metadata] -"checksum aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "54eb1d8fe354e5fc611daf4f2ea97dd45a765f4f1e4512306ec183ae2e8f20c9" +"checksum adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c" "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" +"checksum ahash 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "e96e12a0287c75063711e04484e9b140d4a59ec074d3fe5f0b1cc90e0e992665" "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" "checksum aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f10b352bc3fc08ae24dc5d2d3ddcac153678533986122dc283d747b12071000" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" @@ -4795,25 +5160,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "22130e92352b948e7e82a49cdb0aa94f2211761117f29e052dd397c1ac33542b" "checksum backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)" = "b5164d292487f037ece34ec0de2fcede2faa162f085dd96d2385ab81b12765ba" "checksum backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)" = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61" -"checksum base-x 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "76f4eae81729e69bb1819a26c6caac956cc429238388091f98cb6cd858f16443" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" -"checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" -"checksum bigint 4.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ebecac13b3c745150d7b6c3ea7572d372f09d627c2077e893bf26c5c7f70d282" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" "checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" +"checksum bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9633b74910e1870f50f5af189b08487195cdb83c0e27a71d6f64d5e09dd0538b" "checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" "checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" -"checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" -"checksum block-modes 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "31aa8410095e39fdb732909fb5730a48d5bd7c2e3cd76bd1b07b3dbea130c529" "checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" "checksum bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0de79cfb98e7aa9988188784d8664b4b5dad6eaaa0863b91d9a4ed871d4f7a42" "checksum bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e0a692f1c740e7e821ca71a22cf99b9b2322dfa94d10f71443befb1797b3946a" "checksum bumpalo 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2cd43d82f27d68911e6ee11ee791fb248f138f5d69424dc02e098d4f152b0b05" +"checksum byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7cbcbf18128ec71d8d4a0d054461ec59fff5b75b7d10a4c9b7c7cb1a379c3e77" "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" @@ -4829,29 +5191,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +"checksum const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b641a8c9867e341f3295564203b1c250eb8ce6cb6126e007941f78c4d2ed7fe" +"checksum const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c750ec12b83377637110d5a57f5ae08e895b06c4b16e2bdbf1a94ef717428c59" "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" "checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" "checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" +"checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" "checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" "checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71" "checksum crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9" "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" -"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" "checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" "checksum crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "779015233ac67d65098614aec748ac1c756ab6677fa2e14cf8b37c08dfed1198" -"checksum crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7afa06d05a046c7a47c3a849907ec303504608c927f4e85f7bfff22b7180d971" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" "checksum ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" "checksum ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7dfd2d8b4c82121dfdff120f818e09fc4380b0b7e17a742081a89b94853e87f" "checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" "checksum curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8b7dcd30ba50cdf88b55b033456138b7c0ac4afdc436d82e1b79f370f24cc66d" "checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97" +"checksum derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6d944ac6003ed268757ef1ee686753b57efc5fcf0ebe7b64c9fc81e7e32ff839" +"checksum derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe" "checksum digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e5b29bf156f3f4b3c4f610a25ff69370616ae6e0657d416de22645483e72af0a" -"checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" -"checksum discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" "checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" "checksum ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81956bcf7ef761fb4e1d88de3fa181358a0d26cbcb9755b587a08f9119824b86" @@ -4859,125 +5222,148 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" "checksum environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c7464757b80de8930c91c9afe77ddce501826bf9d134a87db2c67d9dc177e2c" -"checksum error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ab49e9dcb602294bc42f9a7dfc9bc6e936fca4418ea300dbfb84fe16de0b7d9" +"checksum erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3beee4bc16478a1b26f2e80ad819a52d24745e292f521a63c16eea5f74b7eb60" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" -"checksum finality-grandpa 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d415e902db2b87bd5a7df7a2b2de97a4566727a23b95ff39e1bfec25a66d4d1c" -"checksum fixed-hash 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d1a683d1234507e4f3bf2736eeddf0de1dc65996dc0164d57eba0a74bcf29489" +"checksum finality-grandpa 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9681c1f75941ea47584573dd2bc10558b2067d460612945887e00744e43393be" +"checksum fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "516877b7b9a1cc2d0293cbce23cd6203f0edbfd4090e6ca4489fecb5aa73050e" +"checksum flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "2adaffba6388640136149e18ed080b77a78611c1e1d6de75aedcdf78df5d4682" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" "checksum futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "45dc39533a6cae6da2b56da48edae506bb767ec07370f86f70fc062e9d435869" +"checksum futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "21c71ed547606de08e9ae744bb3c6d80f5627527ef31ecf2a7210d0e67bc8fae" +"checksum futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4b141ccf9b7601ef987f36f1c0d9522f76df3bba1cf2e63bfacccc044c4558f5" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum futures-executor-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "87ba260fe51080ba37f063ad5b0732c4ff1f737ea18dcb67833d282cdc2c6f14" +"checksum futures-io-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "082e402605fcb8b1ae1e5ba7d7fdfd3e31ef510e2a8367dd92927bb41ae41b3a" +"checksum futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "bf25f91c8a9a1f64c451e91b43ba269ed359b9f52d35ed4b3ce3f9c842435867" +"checksum futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4309a25a1069a1f3c10647b227b9afe6722b67a030d3f00a9cbdc171fc038de4" +"checksum futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eb4a32e84935678650944c6ebd0d912db46405d37bf94f1a058435c5080abcb1" +"checksum futures-util-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "af8198c48b222f02326940ce2b3aa9e6e91a32886eeaad7ca3b8e4c70daa3f4e" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" -"checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" "checksum getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "34f33de6f0ae7c9cb5e574502a562e2b512799e32abb801cd1e79ad952b62b49" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" -"checksum hash-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3c95a428c86ed4633d83e07ef9e0a147a906da01e931f07e74a85bedce5a43" -"checksum hash256-std-hasher 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "663ce20dae36902c16d12c6aaae400ca40d922407a8cf2b4caf8cae9b39b4f03" +"checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" +"checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" +"checksum hashbrown 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2bcea5b597dd98e6d1f1ec171744cc5dee1a30d1c23c5b98e3cf9d4fbdf8a526" "checksum hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8e04cb7a5051270ef3fa79f8c7604d581ecfa73d520e74f554e45541c4b5881a" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" "checksum hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639" +"checksum hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0" "checksum hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda" +"checksum hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9d4c5c844e2fee0bf673d54c2c177f1713b3d2af2ff6e666b49cb7572e6cf42d" "checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" -"checksum hmac 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "733e1b3ac906631ca01ebb577e9bb0f5e37a454032b9036b5eaea4013ed6f99a" "checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" "checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" "checksum http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "372bcb56f939e449117fb0869c2e8fd8753a8223d92a172c6e808cf123a5b6e4" "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" -"checksum hyper 0.10.16 (registry+https://github.com/rust-lang/crates.io-index)" = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273" "checksum hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)" = "7cb44cbce9d8ee4fb36e4c0ad7b794ac44ebaad924b9c8291a63215bb44c2c8f" +"checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" -"checksum impl-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2050d823639fbeae26b2b5ba09aca8907793117324858070ade0673c49f793b" +"checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" +"checksum impl-codec 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "78c441b3d2b5e24b407161e76d482b7bbd29b5da357707839ac40d95152f031f" "checksum impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5158079de9d4158e0ce1de3ae0bd7be03904efc40b3d7dd8b8c301cbf6b52b56" "checksum impl-serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d26be4b97d738552ea423f76c4f681012ff06c3fa36fa968656b3679f60b4a1" "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" +"checksum ipnet 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e61c2da0d0f700c77d2d313dbf4f93e41d235fa12c6681fee06621036df4c2af" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "da3ea71161651a4cd97d999b2da139109c537b15ab33abc8ae4ead38deac8a03" -"checksum jsonrpc-core 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc15eef5f8b6bef5ac5f7440a957ff95d036e2f98706947741bfc93d1976db4c" -"checksum jsonrpc-derive 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c2dae61ca8a3b047fb11309b00661bc56837085bd07e46f907b9c562c0b03e68" -"checksum jsonrpc-http-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11d2a00824306155b8ef57fe957f31b8cd8ad24262f15cf911d84dcf9a3f206d" -"checksum jsonrpc-pubsub 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37fce55133ee264d0ab42bd862efcd45ae1d062cda599f4cc12ccc4be3195f2a" -"checksum jsonrpc-server-utils 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9527f01ef25f251d64082cbefc0c6d6f367349afe6848ef908a674e06b2bdd3" -"checksum jsonrpc-ws-server 10.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3889012aa638a2f18eb1a879f46fc8b34e7e1423cbff3247cd1531de0d51084b" +"checksum jsonrpc-client-transports 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39577db48b004cffb4c5b8e5c9b993c177c52599ecbee88711e815acf65144db" +"checksum jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd42951eb35079520ee29b7efbac654d85821b397ef88c8151600ef7e2d00217" +"checksum jsonrpc-core-client 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f047c10738edee7c3c6acf5241a0ce33df32ef9230c1a7fb03e4a77ee72c992f" +"checksum jsonrpc-derive 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29f9149f785deaae92a4c834a9a1a83a4313b8cfedccf15362cd4cf039a64501" +"checksum jsonrpc-http-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4edd28922653d79e4f6c0f5d0a1034a4edbc5f9cf6cad8ec85e2a685713e3708" +"checksum jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2c08b444cc0ed70263798834343d0ac875e664257df8079160f23ac1ea79446" +"checksum jsonrpc-server-utils 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44561bfdd31401bad790527f1e951dde144f2341ddc3e1b859d32945e1a34eff" +"checksum jsonrpc-ws-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d230ff76a8e4a3fb068aab6ba23d0c4e7d6e3b41bca524daa33988b04b065265" "checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" +"checksum kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" "checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" "checksum libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)" = "d44e80633f007889c7eff624b709ab43c92d708caad982295768a7b13ca3b5eb" "checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" -"checksum libp2p 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0231edab431064b30b7749484a39735eb36492cef4658c372c9059e58c3003aa" -"checksum libp2p-core 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cdcbded83195ac0e560090fc5da9c1b7f980d1ec221f02d97432db4d36793eb7" -"checksum libp2p-core-derive 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f765f103b680cbed910b02bfdbdcfce5b1142899c93e51acb960bf59b6f81b1" -"checksum libp2p-dns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4b129d20cc8cbb6ce5da8361045649c024659173e246c5dfbf20ae06071c046a" -"checksum libp2p-floodsub 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "70d68816b8435d6788399416eb2f0a6974fb1d15c4be5c30141f87c8e81746df" -"checksum libp2p-identify 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "718ca645a065fd70855ca6042a7df686c24cd21add750c37a82c811fbd1e5c43" -"checksum libp2p-kad 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bbe27c623a6a720efd5d704347838972062f89149a9c3cd149748da60bdcd3e0" -"checksum libp2p-mdns 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9bc1a5d85f4812cae6367b49a432763fe28997bac7c530dc55b70ec18a78aa7" -"checksum libp2p-mplex 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fe5a858342a1cc89464474f7edc4bae1da649b9c823a3e04d9fb494493601746" -"checksum libp2p-noise 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc6b5185c50a52a12e7bbe2ee7799059e24de4e52ab25edbfd26c8ab8515d317" -"checksum libp2p-ping 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7905c1431ad115bee83405770629a27d6f17153ad02ec9670a7347998ef20e22" -"checksum libp2p-plaintext 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc17626763ded57da8fed73187c2d9f6ebb89d30838673c430315bf560c7e4db" -"checksum libp2p-ratelimit 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2409d08b809ab1a74269597f7da2829d117cc11b9ed3343af33fc20831619726" -"checksum libp2p-secio 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "258cdc6742945c8f6402997bbbf36733588e2db18e5a0014da6d46e3ccfb92cf" -"checksum libp2p-tcp 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8d063562545be7523f416f6d96b6fd854480e6afd20844e258323788c5f7be23" -"checksum libp2p-uds 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c9ab0b9ca050105fd94229c48911c0c84aef4d6b86a53d1b6df81d938354e47e" -"checksum libp2p-websocket 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "81692c3141a9aefd84f4faffdc93985af3858ef82ed7fe8185e6b27437b36183" -"checksum libp2p-yamux 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e6ff51a5b2056bacee1c9f2ed8455cdf3c5c619261ddb4efc783119130aaf52" +"checksum libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4183fb4be621d97baebbbe0c499d6ae337e9e6ec955f9fa3cb29e55547dfacdb" +"checksum libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2a7ebd9d597299512e096cc1bd58e955c03ef28f33214a33b9c7e4ace109ff41" +"checksum libp2p-core-derive 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "baffb3527eac95b717e5ebcd6539007152019a06b00548352cbd74474c07db27" +"checksum libp2p-deflate 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "84bb91afe976893b9822103522cc178bd66eb7aa8e54c69ddd9e1825a3d894ab" +"checksum libp2p-dns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b43d79936984b46a5ef4d7b070eaf786f6fab2d1a57e07646306b492e38b2d7f" +"checksum libp2p-floodsub 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "798615b01761454818788dafe61b4fe2bda4306bfa5378cbe8715f57b752235f" +"checksum libp2p-identify 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0a630d5ab928403e426672187514884a9ed0ea2065970ef0ec64971770be6d5" +"checksum libp2p-kad 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a66d2214dd47fa67878eaf0d76d19fd129eff65c45f83617829eb177b7285f97" +"checksum libp2p-mdns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cbd443101542670935b6e6863b7bb88c10ac04393062e662201a3c104d80ae00" +"checksum libp2p-mplex 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "59f283e603b078aa88e65c66c5d4f842f67bfbe4d016b0ae345b7e3bb78fe0af" +"checksum libp2p-noise 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6ab3c7b36cde3bfe18a1d7a0a5693361115066365d32c60f210acc8224b88017" +"checksum libp2p-ping 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006bbfcb7d6ca7e617cb2924d99fff0e391d4c6e42e7047e226692c8c3e1f6a0" +"checksum libp2p-plaintext 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4e673668e5ef47689ca832c33f2dc1e321ede245ee50b6084e4c45cce10fff6" +"checksum libp2p-ratelimit 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "838538f6df5941626047903d14edc3112afb2807fc139535a8ca78469ccaf1ac" +"checksum libp2p-secio 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a99533cb55b9554d2927ad8a220c87b4e0bbfdec22b738eb6030b03e6a722fa1" +"checksum libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "541f66cc794e522fb8072d35dba6be3fe4c3ffeadbed39bf4a6939d0695b4134" +"checksum libp2p-tcp 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4e56f7c7e31d303898d51b293f8d95dcb99e6293fefebe184df03e82dd37571" +"checksum libp2p-uds 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "180fa5ceb2f986786b4fca9582f6ffb98772db2e44df07c800693c97205e3310" +"checksum libp2p-wasm-ext 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a806f0e4985ae2dbac2cbebadb72d586ffe2e1f62a265f5e019e57a3f02aa481" +"checksum libp2p-websocket 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e0dd3cb203aaa1736a38cdd157709153f90bfaed06b87f4dc3ebb62b5d79a643" +"checksum libp2p-yamux 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a37bed07c8ee0ceeecdfb90d703aa6b1cec99a69b4157e5f7f2c03acacbfca15" "checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" "checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" +"checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" "checksum linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" -"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" +"checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" "checksum malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "35adee9ed962cf7d07d62cb58bc45029f3227f5b5b86246caa8632f06c187bc3" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" "checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" -"checksum memory-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1eeeeab44c01c7da4409e68ec5b5db74c92305386efab3615e495b1dacaec196" +"checksum memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ef49315991403ba5fa225a70399df5e115f57b274cb0b1b4bcd6e734fa5bd783" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" "checksum merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "66448a173ad394ef5ebf734efa724f3644dcffda083b1e89979da4461ddac079" -"checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" +"checksum miniz-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9e3ae51cea1576ceba0dde3d484d30e6e5b86dee0b2d412fe3a16a15c98202" +"checksum miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7108aff85b876d06f22503dcce091e29f76733b2bfdd91eebce81f5e68203a10" "checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum multistream-select 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f989d40aab0ed0d83c1cdb4856b5790e980b96548d1a921f280e985eb049f38d" +"checksum multistream-select 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e8f3cb4c93f2d79811fc11fa01faab99d8b7b8cbe024b602c27434ff2b08a59d" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" "checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" +"checksum node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" "checksum nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d138afcce92d219ccb6eb53d9b1e8a96ac0d633cfd3c53cd9856d96d1741bb8" "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" +"checksum num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "57450397855d951f1a41305e54851b1a7b8f5d2e349543a02a2effe25459f718" "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" +"checksum num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454" "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" "checksum num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" @@ -4989,29 +5375,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum parity-codec 3.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "2b9df1283109f542d8852cd6b30e9341acc2137481eb6157d2e62af68b0afec9" -"checksum parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00a486fd383382ddcb2de928364b1f82571c1e48274fc43b7667a4738ee4056c" -"checksum parity-crypto 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1b9c063d87e1507cb3807493c8d21859ef23b5414b39f81c53f0ba267d64c1" -"checksum parity-multiaddr 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b574ca9f0c0235c04de4c5110542959f64c9b8882f638b70f6c6be52c75bdc46" +"checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" -"checksum parity-util-mem 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "89e80f22052161e0cb55cb5a8a75890420c525031f95c9d262dbb0434aa85dc1" +"checksum parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "65582b5c02128a4b0fa60fb3e070216e9c84be3e4a8f1b74bc37e15a25e58daf" +"checksum parity-scale-codec-derive 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a81f3cd93ed368a8e41c4e79538e99ca6e8f536096de23e3a0bc3e782093ce28" +"checksum parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" +"checksum parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2005637ccf93dbb60c85081ccaaf3f945f573da48dcc79f27f9646caa3ec1dc" "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" -"checksum parity-ws 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2fec5048fba72a2e01baeb0d08089db79aead4b57e2443df172fb1840075a233" "checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" +"checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" +"checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" "checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa" "checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" +"checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" +"checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" "checksum paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1f4a4a1c555c6505821f9d58b8779d0f630a6b7e4e1be24ba718610acf01fa79" "checksum paste-impl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "26e796e623b8b257215f27e6c80a5478856cae305f5b59810ff9acdaa34570e6" -"checksum pbkdf2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0c09cddfbfc98de7f76931acf44460972edb4023eb14d0c6d4018800e552d8e0" "checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" +"checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" +"checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" "checksum pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c1d2cfa5a714db3b5f24f0915e74fcdf91d09d496ba61329705dda7774d2af" "checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b" -"checksum primitive-types 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6e8612a8dc70f26276fed6131c153ca277cf275ee0a5e2a50cd8a69c697beb8f" +"checksum primitive-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e44400d651ca5276415dc8e00541c5c9d03844f1f0a87ad28f0a8fadcb2300bc" "checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" "checksum proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b" "checksum proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)" = "982a35d1194084ba319d65c4a68d24ca28f5fdb5b8bc20899e4eef8641ea5178" @@ -5046,21 +5436,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum regex-syntax 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b143cceb2ca5e56d5671988ef8b15615733e7ee16cd348e064333b251b89343f" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" -"checksum ripemd160 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad5112e0dbbb87577bfbc56c42450235e3012ce336e29c5befd7807bd626da4a" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" +"checksum rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c34fa7bcae7fca3c8471e8417088bbc3ad9af8066b0ecf4f3c0d98a0d772716e" "checksum rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +"checksum rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f271e3552cd835fa28c541c34a7e8fdd8cdff09d77fe4eb8f6c42e87a11b096e" "checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" "checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" -"checksum safemem 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e133ccc4f4d1cd4f89cc8a7ff618287d56dc7f638b8e38fc32c5fdcadc339dd5" "checksum schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339" -"checksum schnorrkel 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b5eff518f9bed3d803a0d002af0ab96339b0ebbedde3bec98a684986134b7a39" +"checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" -"checksum scrypt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8570c5e2fa69cb29d492fd4e9974b6b5facb5a888e1c6da630d4a3cd7ebfef4a" -"checksum secp256k1 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaccd3a23619349e0878d9a241f34b1982343cdf67367058cd7d078d326b63e" +"checksum sct 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f5adf8fbd58e1b1b52699dc8bed2630faecb6d8c7bee77d009d6bbe4af569b9" "checksum security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2" "checksum security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" @@ -5072,93 +5461,98 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" "checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" -"checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" "checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" "checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf" "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" -"checksum slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e544d16c6b230d84c866662fe55e31aacfca6ae71e6fc49ae9a311cb379bfc2f" +"checksum slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)" = "" "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" "checksum slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d1d3ec6214d46e57a7ec87c1972bbca66c59172a0cfffa5233c54726afb946bf" +"checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" "checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" +"checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" "checksum spin 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbdb51a221842709c2dd65b62ad4b78289fc3e706a02c17a26104528b6aa7837" -"checksum sr-api-macros 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum sr-io 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum sr-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum sr-std 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum sr-version 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-balances 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-consensus 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-executive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-finality-tracker 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-indices 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-metadata 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-session 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-staking 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-sudo 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-support 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-support-procedural 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-support-procedural-tools 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-support-procedural-tools-derive 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-system 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum srml-timestamp 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" -"checksum stdweb 0.4.18 (registry+https://github.com/rust-lang/crates.io-index)" = "a68c0ce28cf7400ed022e18da3c4591e14e1df02c70e93573cc59921b3923aeb" -"checksum stdweb-derive 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0e21ebd9179de08f2300a65454268a17ea3de204627458588c84319c4def3930" -"checksum stdweb-internal-macros 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "e68f7d08b76979a43e93fe043b66d2626e35d41d68b0b85519202c6dd8ac59fa" -"checksum stdweb-internal-runtime 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d52317523542cc0af5b7e31017ad0f7d1e78da50455e38d5657cd17754f617da" "checksum stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8861bc80f649f5b4c9bd38b696ae9af74499d479dbfb327f0607de6b326a36bc" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" "checksum structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7" "checksum structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "53010261a84b37689f9ed7d395165029f9cc7abb9f56bbfe86bee2597ed25107" -"checksum strum 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1810e25f576e7ffce1ff5243b37066da5ded0310b3274c20baaeccb1145b2806" -"checksum strum_macros 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "572a2f4e53dd4c3483fd79e5cc10ddd773a3acb1169bbfe8762365e107110579" -"checksum substrate-basic-authorship 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-bip39 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d69ace596e9ca97837cc41f8edcfc4e0a997f227d5fc153d1010b60a0fe9acda" -"checksum substrate-cli 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-client 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-client-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-consensus-aura 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-consensus-aura-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-consensus-aura-slots 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-consensus-authorities 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-consensus-common 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-executor 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-finality-grandpa 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-finality-grandpa-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-inherents 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-keyring 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-keystore 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-network 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-network-libp2p 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-offchain 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-offchain-primitives 0.1.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-panic-handler 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-peerset 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-primitives 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-rpc 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-rpc-servers 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-serializer 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-service 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-state-db 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-state-machine 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-telemetry 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-transaction-graph 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-transaction-pool 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" -"checksum substrate-trie 1.0.0 (git+https://github.com/paritytech/substrate.git?branch=v1.0)" = "" +"checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" +"checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" +"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=substrate-v2)" = "" +"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-wasm-builder-runner 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af21b27fad38b212c1919f700cb0def33c88cde14d22e0d1b17d4521f4eb8b40" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "01f40907d9ffc762709e4ff3eb4a6f6b41b650375a3f09ac92b641942b7fb082" "checksum syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)" = "ee06ea4b620ab59a2267c6b48be16244a3389f8bfa0986bdd15c35b890b00af3" "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" -"checksum sysinfo 0.8.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d291d07ba27acd519287ca22fb1fb024dcc4b925cddb63d69af24db153ca2c82" +"checksum sysinfo 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ee7d12b854e48e680bf4b10856a7867e843845158fa8226e6c2f6cc38539cb01" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" @@ -5168,7 +5562,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" "checksum tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c5676413eaeb1ea35300a0224416f57abc3bd251657e0fafc12c47ff98c060" "checksum tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2" -"checksum tk-listen 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5462b0f968c0457efe38fcd2df7e487096b992419e4f5337b06775a614bbda4b" "checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" "checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" @@ -5178,24 +5571,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" "checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce" +"checksum tokio-rustls 0.10.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e5cebc3ca33110e460c4d2e7c5e863b159fadcbf125449d896720695b2af709" "checksum tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2162248ff317e2bc713b261f242b69dbb838b85248ed20bb21df56d60ea4cae7" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" "checksum tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "90ca01319dea1e376a001e8dc192d42ebde6dd532532a5bad988ac37db365b19" "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" -"checksum tokio-tls 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" "checksum toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b8c96d7873fa7ef8bdeb3a9cda3ac48389b4154f32b9803b4bc26220b677b039" -"checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" -"checksum trie-db 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ae063390324bfcf36c7e8e4fb1f85f6f0fb5dd04e1cd282581eb7b8b34b32de7" -"checksum trie-root 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "485c5dd851148b6fdac9009f7c256d0a4b5f99f08bd2e63c258f1e483aed4f1d" +"checksum trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a" +"checksum trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" "checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56" -"checksum typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" -"checksum uint 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2143cded94692b156c356508d92888acc824db5bffc0b4089732264c6fcf86d4" -"checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" +"checksum uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8f0f47ed099f0db671ce82c66548c5de012e3c0cba3963514d1db15c7588701" "checksum unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a84e5511b2a947f3ae965dcb29b13b7b1691b6e7332cf5dbc1744138d5acb7f6" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" @@ -5205,6 +5595,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2c64cdf40b4a9645534a943668681bcb219faf51874d4b65d2e0abda1b10a2ab" "checksum untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" +"checksum url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61" "checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95" "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" "checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba" @@ -5218,10 +5609,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum wasm-bindgen-macro-support 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "95cf8fe77e45ba5f91bc8f3da0c3aa5d464b3d8ed85d84f4d4c7cc106436b1d7" "checksum wasm-bindgen-shared 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "d9c2d4d4756b2e46d3a5422e06277d02e4d3e1d62d138b76a4c681e925743623" "checksum wasm-bindgen-webidl 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "24e47859b4eba3d3b9a5c2c299f9d6f8d0b613671315f6f0c5c7f835e524b36a" -"checksum wasmi 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "aebbaef470840d157a5c47c8c49f024da7b1b80e90ff729ca982b2b80447e78b" +"checksum wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6101df9a5987df809216bdda7289f52b58128e6b6a6546e9ee3e6b632b4921" +"checksum wasmi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "48437c526d40a6a593c50c5367dac825b8d6a04411013e866eca66123fb56faa" "checksum wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab380192444b3e8522ae79c0a1976e42a82920916ccdfbce3def89f456ea33f3" "checksum web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "86d515d2f713d3a6ab198031d2181b7540f8e319e4637ec2d4a41a208335ef29" -"checksum websocket 0.22.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0adcd2a64c5746c9702b354a1b992802b0c363df1dfa324a74cb7aebe10e0cbf" +"checksum webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4f7e1cd7900a3a6b65a3e8780c51a3e6b59c0e2c55c6dc69578c288d69f7d082" +"checksum webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c10fa4212003ba19a564f25cd8ab572c6791f99a03cc219c13ed35ccab00de0e" "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" @@ -5231,9 +5624,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" "checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" -"checksum ws 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)" = "329d3e6dd450a9c5c73024e1047f0be7e24121a68484eb0b5368977bee3cf8c3" +"checksum ws 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a6f5bb86663ff4d1639408410f50bf6050367a8525d644d49a6894cd618a631" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" "checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" "checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" "checksum yamux 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "01bd67889938c48f0049fc60a77341039e6c3eaf16cb7693e6ead7c0ba701295" -"checksum zeroize 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8ddfeb6eee2fb3b262ef6e0898a52b7563bb8e0d5955a313b3cf2f808246ea14" +"checksum zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86" +"checksum zeroize_derive 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "080616bd0e31f36095288bb0acdf1f78ef02c2fa15527d7e993f2a6c7591643e" diff --git a/Cargo.toml b/Cargo.toml index f425664fa5..74d495786c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,28 +7,36 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '1.1.0' +version = '2.0.0' [dependencies] -error-chain = '0.12' +hex-literal = '0.1' +derive_more = '0.14.0' exit-future = '0.1' futures = '0.1' -hex-literal = '0.1' log = '0.4' -parity-codec = '3.2' -parking_lot = '0.7.1' +parking_lot = '0.9.0' tokio = '0.1' -trie-root = '0.12.0' +trie-root = '0.15.2' [dependencies.basic-authorship] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-basic-authorship' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' -[dependencies.consensus] +[dependencies.babe] git = 'https://github.com/paritytech/substrate.git' -package = 'substrate-consensus-aura' -branch = 'v1.0' +package = 'substrate-consensus-babe' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' + +[dependencies.babe-primitives] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-consensus-babe-primitives' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' + +[dependencies.codec] +package = 'parity-scale-codec' +version = '1.0.0' [dependencies.ctrlc] features = ['termination'] @@ -37,56 +45,68 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-inherents' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.network] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-network' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' -[dependencies.joystream-node-runtime] +[dependencies.node-template-runtime] +package = "joystream-node-runtime" # clone https://github.com/joystream/substrate-runtime-joystream to this path: path = 'substrate-runtime-joystream' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.sr-io] git = 'https://github.com/paritytech/substrate.git' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.substrate-cli] git = 'https://github.com/paritytech/substrate.git' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.substrate-client] git = 'https://github.com/paritytech/substrate.git' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.substrate-executor] git = 'https://github.com/paritytech/substrate.git' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.substrate-service] git = 'https://github.com/paritytech/substrate.git' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.transaction-pool] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-transaction-pool' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.substrate-telemetry] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-telemetry' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.grandpa] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa' -branch = 'v1.0' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' + +[dependencies.grandpa-primitives] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-finality-grandpa-primitives' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' + +[dependencies.im-online] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'srml-im-online' +rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [profile.release] panic = 'unwind' diff --git a/build.rs b/build.rs index d30f13c0c9..9a51c38b81 100644 --- a/build.rs +++ b/build.rs @@ -1,8 +1,27 @@ -use vergen::{ConstantsFlags, generate_cargo_keys}; +use std::{env, path::PathBuf}; -const ERROR_MSG: &'static str = "Failed to generate metadata files"; +use vergen::{generate_cargo_keys, ConstantsFlags}; + +const ERROR_MSG: &str = "Failed to generate metadata files"; fn main() { - generate_cargo_keys(ConstantsFlags::all()).expect(ERROR_MSG); - println!("cargo:rerun-if-changed=.git/HEAD"); + 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/src/chain_spec.rs b/src/chain_spec.rs index 1a2a547452..c0fdfc25d0 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -15,23 +15,26 @@ // along with Joystream node. If not, see . use hex_literal::{hex, hex_impl}; -use joystream_node_runtime::{ - forum::InputValidationLengthConstraint, AccountId, ActorsConfig, BalancesConfig, - ConsensusConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, - DataObjectTypeRegistryConfig, DownloadSessionsConfig, ForumConfig, GenesisConfig, - GrandpaConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, SessionConfig, - StakerStatus, StakingConfig, SudoConfig, TimestampConfig, +use node_template_runtime::{ + forum::InputValidationLengthConstraint, AccountId, ActorsConfig, AuthorityDiscoveryConfig, + BabeConfig, Balance, BalancesConfig, CouncilConfig, CouncilElectionConfig, + DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, DownloadSessionsConfig, + ForumConfig, GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, + Perbill, ProposalsConfig, SessionConfig, SessionKeys, StakerStatus, StakingConfig, SudoConfig, + SystemConfig, DAYS, WASM_BINARY, }; -use primitives::{crypto::UncheckedInto, ed25519, sr25519, Pair}; +use primitives::{crypto::UncheckedInto, Pair, Public}; + +use babe_primitives::AuthorityId as BabeId; +use grandpa_primitives::AuthorityId as GrandpaId; +use im_online::sr25519::AuthorityId as ImOnlineId; use substrate_service; use substrate_telemetry::TelemetryEndpoints; -use ed25519::Public as AuthorityId; - // Note this is the URL for the telemetry server const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; -/// Specialised `ChainSpec`. This is a specialisation of the general Substrate ChainSpec type. +/// 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 @@ -49,16 +52,32 @@ pub enum Alternative { LiveTestnet, } -fn authority_key(s: &str) -> AuthorityId { - ed25519::Pair::from_string(&format!("//{}", s), None) +/// 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() } -fn account_key(s: &str) -> AccountId { - sr25519::Pair::from_string(&format!("//{}", s), None) - .expect("static values are valid; qed") - .public() +/// 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_from_seed::(&format!("{}//stash", seed)), + get_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 { @@ -70,20 +89,14 @@ impl Alternative { "dev", || { testnet_genesis( + vec![get_authority_keys_from_seed("Alice")], + get_from_seed::("Alice"), vec![ - // stash, controller, authority - ( - account_key("Alice//stash"), - account_key("Alice"), - authority_key("Alice"), - ), + get_from_seed::("Alice"), + get_from_seed::("Bob"), + get_from_seed::("Alice//stash"), + get_from_seed::("Bob//stash"), ], - vec![ - // endowed account - account_key("Alice"), - ], - // sudo key - account_key("Alice"), ) }, vec![], @@ -98,26 +111,24 @@ impl Alternative { || { testnet_genesis( vec![ - ( - account_key("Alice//stash"), - account_key("Alice"), - authority_key("Alice"), - ), - ( - account_key("Bob//stash"), - account_key("Bob"), - authority_key("Bob"), - ), + get_authority_keys_from_seed("Alice"), + get_authority_keys_from_seed("Bob"), ], + get_from_seed::("Alice"), vec![ - account_key("Alice"), - account_key("Bob"), - account_key("Charlie"), - account_key("Dave"), - account_key("Eve"), - account_key("Ferdie"), + get_from_seed::("Alice"), + get_from_seed::("Bob"), + get_from_seed::("Charlie"), + get_from_seed::("Dave"), + get_from_seed::("Eve"), + get_from_seed::("Ferdie"), + get_from_seed::("Alice//stash"), + get_from_seed::("Bob//stash"), + get_from_seed::("Charlie//stash"), + get_from_seed::("Dave//stash"), + get_from_seed::("Eve//stash"), + get_from_seed::("Ferdie//stash"), ], - account_key("Alice"), ) }, vec![], @@ -142,9 +153,10 @@ impl Alternative { } } -/// LiveTestnet generator +/// Joystream LiveTestnet generator pub fn live_testnet_config() -> Result { - ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_2.json")) + //ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_2.json")) + ChainSpec::from_json_bytes(&include_bytes!("../res/joy_testnet_2.json")[..]) } /// Staging testnet config @@ -155,16 +167,16 @@ pub fn staging_testnet_config() -> ChainSpec { ]; ChainSpec::from_genesis( "Joystream Staging Testnet", - "joy_staging_5", + "joy_staging_6", staging_testnet_config_genesis, boot_nodes, Some(TelemetryEndpoints::new(vec![( STAGING_TELEMETRY_URL.to_string(), 0, )])), - None, - None, - None, + Some(&*"joy"), // protocol_id + None, // consensus engine + None, // properties ) } @@ -173,248 +185,246 @@ fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstrain } fn staging_testnet_config_genesis() -> GenesisConfig { - let initial_authorities: Vec<(AccountId, AccountId, AuthorityId)> = vec![( + let initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)> = vec![( hex!["0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65"].unchecked_into(), // stash hex!["609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339"].unchecked_into(), // controller hex!["65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2"].unchecked_into(), // session key + hex!["8acbf7448d96592e61881c5ef0f0ab18da6955cf4824534eb19b26f03df56b5a"].unchecked_into(), + hex!["8acbf7448d96592e61881c5ef0f0ab18da6955cf4824534eb19b26f03df56b5a"].unchecked_into(), )]; let endowed_accounts = vec![hex![ "0ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30" ] .unchecked_into()]; - const CENTS: u128 = 1; - const DOLLARS: u128 = 100 * CENTS; - - const SECS_PER_BLOCK: u64 = 6; - const MINUTES: u64 = 60 / SECS_PER_BLOCK; - const HOURS: u64 = MINUTES * 60; - const DAYS: u64 = HOURS * 24; - const STASH: u128 = 50 * DOLLARS; - const ENDOWMENT: u128 = 100_000_000 * DOLLARS; + const CENTS: Balance = 1; + const DOLLARS: Balance = 100 * CENTS; + const STASH: Balance = 50 * DOLLARS; + const ENDOWMENT: Balance = 100_000_000 * DOLLARS; GenesisConfig { - consensus: Some(ConsensusConfig { - code: include_bytes!("../substrate-runtime-joystream/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), - authorities: initial_authorities.iter().map(|x| x.2.clone()).collect(), - }), - system: None, - timestamp: Some(TimestampConfig { - minimum_period: SECS_PER_BLOCK / 2, // due to the nature of aura the slots are 2*period - }), - indices: Some(IndicesConfig { - ids: vec![], - }), - balances: Some(BalancesConfig { - balances: endowed_accounts.iter().cloned() - .map(|k| (k, ENDOWMENT)) - .chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH))) - .collect(), - existential_deposit: 0, - transfer_fee: 0, - creation_fee: 0, - vesting: vec![], - transaction_base_fee: 1, - transaction_byte_fee: 0, - }), - sudo: Some(SudoConfig { - key: endowed_accounts[0].clone(), - }), - session: Some(SessionConfig { - validators: initial_authorities.iter().map(|x| x.1.clone()).collect(), - session_length: 10 * MINUTES, - keys: initial_authorities.iter().map(|x| (x.1.clone(), x.2.clone())).collect::>(), - }), - staking: Some(StakingConfig { - current_era: 0, - offline_slash: Perbill::from_millionths(10_000), // 1/ 100 => 1% - session_reward: Perbill::from_millionths(1_000), // 1/1000 => 0.1% (min stake -> 1000 units for reward to be GT 0) - current_session_reward: 0, - validator_count: 20, - sessions_per_era: 6, - bonding_duration: 1, // Number of ERAs - offline_slash_grace: 4, - 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.1.clone()).collect(), - }), - grandpa: Some(GrandpaConfig { - authorities: initial_authorities.iter().map(|x| (x.2.clone(), 1)).collect(), - }), - council: Some(CouncilConfig { - active_council: vec![], - term_ends_at: 1, - }), - election: Some(CouncilElectionConfig { - auto_start: true, - 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, - }), - proposals: Some(ProposalsConfig { - approval_quorum: 66, - min_stake: 2 * DOLLARS, - cancellation_fee: 10 * CENTS, - rejection_fee: 1 * DOLLARS, - voting_period: 2 * DAYS, - name_max_len: 512, - description_max_len: 10_000, - wasm_code_max_len: 2_000_000, - }), - members: Some(MembersConfig { - default_paid_membership_fee: 100u128, - first_member_id: 1, - }), - forum: Some(ForumConfig { - category_by_id: vec![], - thread_by_id: vec![], - post_by_id: vec![], - next_category_id: 1, - next_thread_id: 1, - next_post_id: 1, - forum_sudo: endowed_accounts[0].clone(), - category_title_constraint: new_validation(10, 90), - category_description_constraint: new_validation(10, 490), - thread_title_constraint: new_validation(10, 90), - post_text_constraint: new_validation(10, 990), - thread_moderation_rationale_constraint: new_validation(10, 290), - post_moderation_rationale_constraint: new_validation(10, 290) - }), - data_object_type_registry: Some(DataObjectTypeRegistryConfig { - first_data_object_type_id: 1, - }), - data_object_storage_registry: Some(DataObjectStorageRegistryConfig{ - first_relationship_id: 1, - }), - downloads: Some(DownloadSessionsConfig{ - first_download_session_id: 1, - }), - actors: Some(ActorsConfig{ - enable_storage_role: true, - request_life_time: 300, - _genesis_phantom_data: Default::default(), - }) - } + 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: endowed_accounts[0].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, + 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, + }), + proposals: Some(ProposalsConfig { + approval_quorum: 66, + min_stake: 2 * DOLLARS, + cancellation_fee: 10 * CENTS, + rejection_fee: 1 * DOLLARS, + voting_period: 2 * DAYS, + name_max_len: 512, + description_max_len: 10_000, + wasm_code_max_len: 2_000_000, + }), + members: Some(MembersConfig { + default_paid_membership_fee: 100u128, + first_member_id: 1, + }), + forum: Some(ForumConfig { + category_by_id: vec![], + thread_by_id: vec![], + post_by_id: vec![], + next_category_id: 1, + next_thread_id: 1, + next_post_id: 1, + forum_sudo: endowed_accounts[0].clone(), + category_title_constraint: new_validation(10, 90), + category_description_constraint: new_validation(10, 490), + thread_title_constraint: new_validation(10, 90), + post_text_constraint: new_validation(10, 990), + thread_moderation_rationale_constraint: new_validation(10, 290), + post_moderation_rationale_constraint: new_validation(10, 290), + }), + data_object_type_registry: Some(DataObjectTypeRegistryConfig { + first_data_object_type_id: 1, + }), + data_object_storage_registry: Some(DataObjectStorageRegistryConfig { + first_relationship_id: 1, + }), + downloads: Some(DownloadSessionsConfig { + first_download_session_id: 1, + }), + actors: Some(ActorsConfig { + enable_storage_role: true, + request_life_time: 300, + }), + } } -fn testnet_genesis( - initial_authorities: Vec<(AccountId, AccountId, AuthorityId)>, - endowed_accounts: Vec, +/// Helper function to create GenesisConfig for testing +pub fn testnet_genesis( + initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)>, root_key: AccountId, + endowed_accounts: Vec, ) -> GenesisConfig { - const STASH: u128 = 100; - const ENDOWMENT: u128 = 100_000_000; + const STASH: Balance = 10000; + const ENDOWMENT: Balance = 100_000_000; GenesisConfig { - consensus: Some(ConsensusConfig { - code: include_bytes!("../substrate-runtime-joystream/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm").to_vec(), - authorities: initial_authorities.iter().map(|x| x.2.clone()).collect(), - }), - system: None, - timestamp: Some(TimestampConfig { - minimum_period: 3, // 3*2=6 second block time. - }), - indices: Some(IndicesConfig { - ids: vec![] - }), - balances: Some(BalancesConfig { - existential_deposit: 0, - transfer_fee: 0, - creation_fee: 0, - balances: endowed_accounts.iter().cloned() - .map(|k| (k, ENDOWMENT)) - .chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH))) - .collect(), - vesting: vec![], - transaction_base_fee: 1, - transaction_byte_fee: 0, - }), - sudo: Some(SudoConfig { - key: root_key.clone(), - }), - session: Some(SessionConfig { - validators: initial_authorities.iter().map(|x| x.1.clone()).collect(), - session_length: 10, - keys: initial_authorities.iter().map(|x| (x.1.clone(), x.2.clone())).collect::>(), - }), - staking: Some(StakingConfig { - current_era: 0, - minimum_validator_count: 1, - validator_count: 2, - sessions_per_era: 5, - bonding_duration: 1, // Number of Eras - offline_slash: Perbill::zero(), - session_reward: Perbill::zero(), - current_session_reward: 0, - offline_slash_grace: 0, - stakers: initial_authorities.iter().map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator)).collect(), - invulnerables: initial_authorities.iter().map(|x| x.1.clone()).collect(), - }), - grandpa: Some(GrandpaConfig { - authorities: initial_authorities.iter().map(|x| (x.2.clone(), 1)).collect(), - }), - council: Some(CouncilConfig { - active_council: vec![], - term_ends_at: 1, - }), - election: Some(CouncilElectionConfig { - auto_start: true, - announcing_period: 50, - voting_period: 50, - revealing_period: 50, - council_size: 2, - candidacy_limit: 25, - min_council_stake: 100, - new_term_duration: 1000, - min_voting_stake: 10, - }), - proposals: Some(ProposalsConfig { - approval_quorum: 66, - min_stake: 100, - cancellation_fee: 5, - rejection_fee: 10, - voting_period: 100, - name_max_len: 100, - description_max_len: 10_000, - wasm_code_max_len: 2_000_000, - }), - members: Some(MembersConfig { - default_paid_membership_fee: 100u128, - first_member_id: 1, - }), - forum: Some(ForumConfig { - category_by_id: vec![], - thread_by_id: vec![], - post_by_id: vec![], - next_category_id: 1, - next_thread_id: 1, - next_post_id: 1, - forum_sudo: root_key, - category_title_constraint: new_validation(10, 90), - category_description_constraint: new_validation(10, 490), - thread_title_constraint: new_validation(10, 90), - post_text_constraint: new_validation(10, 990), - thread_moderation_rationale_constraint: new_validation(10, 290), - post_moderation_rationale_constraint: new_validation(10, 290) - }), - data_object_type_registry: Some(DataObjectTypeRegistryConfig { - first_data_object_type_id: 1, - }), - data_object_storage_registry: Some(DataObjectStorageRegistryConfig{ - first_relationship_id: 1, - }), - downloads: Some(DownloadSessionsConfig{ - first_download_session_id: 1, - }), - actors: Some(ActorsConfig{ - enable_storage_role: true, - request_life_time: 300, - _genesis_phantom_data: Default::default(), - }) - } + //substrate modules + system: Some(SystemConfig { + code: WASM_BINARY.to_vec(), + changes_trie_config: Default::default(), + }), + balances: Some(BalancesConfig { + balances: endowed_accounts + .iter() + .map(|k| (k.clone(), ENDOWMENT)) + .collect(), + vesting: vec![], + }), + indices: Some(IndicesConfig { ids: vec![] }), + staking: Some(StakingConfig { + current_era: 0, + minimum_validator_count: 1, + validator_count: 2, + 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() + }), + session: Some(SessionConfig { + keys: initial_authorities + .iter() + .map(|x| { + ( + x.0.clone(), + session_keys(x.2.clone(), x.3.clone(), x.4.clone()), + ) + }) + .collect::>(), + }), + 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![], + }), + // joystream modules + council: Some(CouncilConfig { + active_council: vec![], + term_ends_at: 1, + }), + election: Some(CouncilElectionConfig { + auto_start: true, + announcing_period: 50, + voting_period: 50, + revealing_period: 50, + council_size: 2, + candidacy_limit: 25, + min_council_stake: 100, + new_term_duration: 1000, + min_voting_stake: 10, + }), + proposals: Some(ProposalsConfig { + approval_quorum: 66, + min_stake: 100, + cancellation_fee: 5, + rejection_fee: 10, + voting_period: 100, + name_max_len: 100, + description_max_len: 10_000, + wasm_code_max_len: 2_000_000, + }), + members: Some(MembersConfig { + default_paid_membership_fee: 100u128, + first_member_id: 1, + }), + forum: Some(ForumConfig { + category_by_id: vec![], + thread_by_id: vec![], + post_by_id: vec![], + next_category_id: 1, + next_thread_id: 1, + next_post_id: 1, + forum_sudo: root_key, + category_title_constraint: new_validation(10, 90), + category_description_constraint: new_validation(10, 490), + thread_title_constraint: new_validation(10, 90), + post_text_constraint: new_validation(10, 990), + thread_moderation_rationale_constraint: new_validation(10, 290), + post_moderation_rationale_constraint: new_validation(10, 290), + }), + data_object_type_registry: Some(DataObjectTypeRegistryConfig { + first_data_object_type_id: 1, + }), + data_object_storage_registry: Some(DataObjectStorageRegistryConfig { + first_relationship_id: 1, + }), + downloads: Some(DownloadSessionsConfig { + first_download_session_id: 1, + }), + actors: Some(ActorsConfig { + enable_storage_role: true, + request_life_time: 300, + }), + } } diff --git a/src/cli.rs b/src/cli.rs index 7899746065..bc2b6a2bbc 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,28 +1,12 @@ -// 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 crate::chain_spec; +use crate::new_full_start; use crate::service; use futures::{future, sync::oneshot, Future}; use log::info; use std::cell::RefCell; -use std::ops::Deref; pub use substrate_cli::{error, IntoExit, VersionInfo}; -use substrate_cli::{informant, parse_and_execute, NoCustom}; -use substrate_service::{Roles as ServiceRoles, ServiceFactory}; +use substrate_cli::{informant, parse_and_prepare, NoCustom, ParseAndPrepare}; +use substrate_service::{AbstractService, Roles as ServiceRoles}; use tokio::runtime::Runtime; /// Parse command line arguments into service configuration. @@ -32,39 +16,49 @@ where T: Into + Clone, E: IntoExit, { - parse_and_execute::( - load_spec, - &version, - "joystream-node", - args, - exit, - |exit, _custom_args, 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))?; - let executor = runtime.executor(); - match config.roles { - ServiceRoles::LIGHT => run_until_exit( - runtime, - service::Factory::new_light(config, executor) - .map_err(|e| format!("{:?}", e))?, - exit, - ), - _ => run_until_exit( - runtime, - service::Factory::new_full(config, executor).map_err(|e| format!("{:?}", e))?, - exit, - ), - } - .map_err(|e| format!("{:?}", e)) - }, - ) - .map_err(Into::into) - .map(|_| ()) + match parse_and_prepare::(&version, "joystream-node", args) { + ParseAndPrepare::Run(cmd) => { + cmd.run::<(), _, _, _, _>(load_spec, exit, |exit, _cli_args, _custom_args, 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| Ok(new_full_start!(config).0), + load_spec, + exit, + ), + ParseAndPrepare::ImportBlocks(cmd) => cmd.run_with_builder::<(), _, _, _, _, _>( + |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| Ok(new_full_start!(config).0), load_spec), + ParseAndPrepare::CustomCommand(_) => Ok(()), + }?; + + Ok(()) } fn load_spec(id: &str) -> Result, String> { @@ -74,25 +68,35 @@ fn load_spec(id: &str) -> Result, String> { }) } -fn run_until_exit(mut runtime: Runtime, service: T, e: E) -> error::Result<()> +fn run_until_exit(mut runtime: Runtime, service: T, e: E) -> error::Result<()> where - T: Deref>, - C: substrate_service::Components, + T: AbstractService, E: IntoExit, { let (exit_send, exit) = exit_future::signal(); - let executor = runtime.executor(); - informant::start(&service, exit.clone(), executor.clone()); - - let _ = runtime.block_on(e.into_exit()); - exit_send.fire(); + let informant = informant::build(&service); + runtime.executor().spawn(exit.until(informant).map(|_| ())); // we eagerly drop the service so that the internal exit future is fired, // but we need to keep holding a reference to the global telemetry guard let _telemetry = service.telemetry(); - drop(service); - Ok(()) + + let service_res = { + let exit = e + .into_exit() + .map_err(|_| error::Error::Other("Exit future failed.".into())); + let service = service.map_err(|err| error::Error::Service(err)); + let select = service.select(exit).map(|_| ()).map_err(|(err, _)| err); + runtime.block_on(select) + }; + + exit_send.fire(); + + // TODO [andre]: timeout this future #1318 + let _ = runtime.shutdown_on_idle().wait(); + + service_res } // handles ctrl-c @@ -105,11 +109,11 @@ impl IntoExit for Exit { let exit_send_cell = RefCell::new(Some(exit_send)); ctrlc::set_handler(move || { - if let Some(exit_send) = exit_send_cell + let exit_send = exit_send_cell .try_borrow_mut() .expect("signal handler not reentrant; qed") - .take() - { + .take(); + if let Some(exit_send) = exit_send { exit_send.send(()).expect("Error sending exit notification"); } }) diff --git a/src/error.rs b/src/error.rs deleted file mode 100644 index 025ddfce57..0000000000 --- a/src/error.rs +++ /dev/null @@ -1,29 +0,0 @@ -// 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 . - -//! Initialization errors. - -use client; - -error_chain! { - foreign_links { - Io(::std::io::Error) #[doc="IO error"]; - Cli(::clap::Error) #[doc="CLI error"]; - } - links { - Client(client::error::Error, client::error::ErrorKind) #[doc="Client error"]; - } -} diff --git a/src/main.rs b/src/main.rs index e790d3167e..dbbb5f62d1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,7 +25,7 @@ mod service; pub use substrate_cli::{error, IntoExit, VersionInfo}; -fn run() -> cli::error::Result<()> { +fn main() { let version = VersionInfo { name: "Joystream Node", commit: env!("VERGEN_SHA_SHORT"), @@ -35,7 +35,9 @@ fn run() -> cli::error::Result<()> { description: "Joystream substrate node", support_url: "https://www.joystream.org/", }; - cli::run(::std::env::args(), cli::Exit, version) -} -error_chain::quick_main!(run); + 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/src/service.rs b/src/service.rs index 70f419d8aa..0e96cf8883 100644 --- a/src/service.rs +++ b/src/service.rs @@ -14,176 +14,262 @@ // You should have received a copy of the GNU General Public License // along with Joystream node. If not, see . -//! Service and ServiceFactory implementation. Specialized wrapper over Substrate service. - #![warn(unused_extern_crates)] -use basic_authorship::ProposerFactory; -use consensus::{import_queue, start_aura, AuraImportQueue, NothingExtra, SlotDuration}; -use grandpa; +//! Service and ServiceFactory implementation. Specialized wrapper over substrate service. + +use babe::{import_queue, start_babe, Config}; +use futures::prelude::*; +use grandpa::{self, FinalityProofProvider as GrandpaFinalityProofProvider}; use inherents::InherentDataProviders; -use joystream_node_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; -use log::info; use network::construct_simple_protocol; -use primitives::{crypto::Ss58Codec, ed25519::Pair, sr25519::Public as SrPublic, Pair as PairT}; +use node_template_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; use std::sync::Arc; use std::time::Duration; -use substrate_client as client; +use substrate_client::LongestChain; use substrate_executor::native_executor_instance; -use substrate_service::construct_service_factory; +pub use substrate_executor::NativeExecutor; use substrate_service::{ - FactoryFullConfiguration, FullBackend, FullClient, FullComponents, FullExecutor, LightBackend, - LightClient, LightComponents, LightExecutor, TaskExecutor, + error::Error as ServiceError, AbstractService, Configuration, ServiceBuilder, }; use transaction_pool::{self, txpool::Pool as TransactionPool}; -// Get new prefixed ss58 address encoding for ed25519 public keys -fn ed_ss58check(public_key: &primitives::ed25519::Public) -> String { - let raw_bytes: &[u8; 32] = public_key.as_ref(); - // Interpret bytes as sr25519 public key - let v: SrPublic = SrPublic::from_raw(raw_bytes.clone()); - v.to_ss58check() -} - -pub use substrate_executor::NativeExecutor; // Our native executor instance. native_executor_instance!( pub Executor, - joystream_node_runtime::api::dispatch, - joystream_node_runtime::native_version, - include_bytes!("../substrate-runtime-joystream/wasm/target/wasm32-unknown-unknown/release/joystream_node_runtime_wasm.compact.wasm") + node_template_runtime::api::dispatch, + node_template_runtime::native_version ); -pub struct NodeConfig { - pub grandpa_import_setup: Option<( - Arc>, - grandpa::LinkHalfForService, - )>, - inherent_data_providers: InherentDataProviders, -} - -impl Default for NodeConfig -where - F: substrate_service::ServiceFactory, -{ - fn default() -> NodeConfig { - NodeConfig { - grandpa_import_setup: None, - inherent_data_providers: InherentDataProviders::new(), - } - } -} - construct_simple_protocol! { /// Demo protocol attachment for substrate. pub struct NodeProtocol where Block = Block { } } -construct_service_factory! { - struct Factory { - Block = Block, - RuntimeApi = RuntimeApi, - NetworkProtocol = NodeProtocol { |config| Ok(NodeProtocol::new()) }, - RuntimeDispatch = Executor, - FullTransactionPoolApi = transaction_pool::ChainApi, FullExecutor, Block, RuntimeApi>, Block> - { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, - LightTransactionPoolApi = transaction_pool::ChainApi, LightExecutor, Block, RuntimeApi>, Block> - { |config, client| Ok(TransactionPool::new(config, transaction_pool::ChainApi::new(client))) }, - Genesis = GenesisConfig, - Configuration = NodeConfig, - FullService = FullComponents - { |config: FactoryFullConfiguration, executor: TaskExecutor| - FullComponents::::new(config, executor) - }, - AuthoritySetup = { - |mut service: Self::FullService, executor: TaskExecutor, key: Option>| { - let (block_import, link_half) = service.config.custom.grandpa_import_setup.take() - .expect("Link Half and Block Import are present for Full Services or setup failed before. qed"); - - if let Some(ref key) = key { - info!("Using authority key {}", ed_ss58check(&key.public())); - let proposer = Arc::new(ProposerFactory { - client: service.client(), - transaction_pool: service.transaction_pool(), - inherents_pool: service.inherents_pool(), - }); - - let client = service.client(); - executor.spawn(start_aura( - SlotDuration::get_or_compute(&*client)?, - key.clone(), - client, - block_import.clone(), - proposer, - service.network(), - service.on_exit(), - service.config.custom.inherent_data_providers.clone(), - service.config.force_authoring, - )?); - - info!("Running Grandpa session as Authority {}", ed_ss58check(&key.public())); - } - - let key = if service.config.disable_grandpa { - None - } else { - key - }; - - executor.spawn(grandpa::run_grandpa( - grandpa::Config { - local_key: key, - // FIXME #1578 make this available through chainspec - gossip_duration: Duration::from_millis(333), - justification_period: 4096, - name: Some(service.config.name.clone()) - }, - link_half, - grandpa::NetworkBridge::new(service.network()), - service.config.custom.inherent_data_providers.clone(), - service.on_exit(), - )?); - - Ok(service) - } - }, - LightService = LightComponents - { |config, executor| >::new(config, executor) }, - FullImportQueue = AuraImportQueue< - Self::Block, - > - { |config: &mut FactoryFullConfiguration , client: Arc>| { - let slot_duration = SlotDuration::get_or_compute(&*client)?; - let (block_import, link_half) = - grandpa::block_import::<_, _, _, RuntimeApi, FullClient>( - client.clone(), client.clone() - )?; - let block_import = Arc::new(block_import); - let justification_import = block_import.clone(); - - config.custom.grandpa_import_setup = Some((block_import.clone(), link_half)); - - import_queue::<_, _, _, Pair>( - slot_duration, - block_import, - Some(justification_import), - client, - NothingExtra, - config.custom.inherent_data_providers.clone(), - ).map_err(Into::into) - }}, - LightImportQueue = AuraImportQueue< - Self::Block, - > - { |config: &mut FactoryFullConfiguration, client: Arc>| - import_queue::<_, _, _, Pair>( - SlotDuration::get_or_compute(&*client)?, +/// Starts a `ServiceBuilder` for a full service. +/// +/// Use this macro if you don't actually need the full service, but just the builder in order to +/// be able to perform chain operations. +#[macro_export] +macro_rules! new_full_start { + ($config:expr) => {{ + let mut import_setup = None; + let inherent_data_providers = inherents::InherentDataProviders::new(); + let mut tasks_to_spawn = None; + + let builder = substrate_service::ServiceBuilder::new_full::< + node_template_runtime::opaque::Block, + node_template_runtime::RuntimeApi, + crate::service::Executor, + >($config)? + .with_select_chain(|_config, client| { + #[allow(deprecated)] + Ok(substrate_client::LongestChain::new( + client.backend().clone(), + )) + })? + .with_transaction_pool(|config, client| { + Ok(transaction_pool::txpool::Pool::new( + config, + transaction_pool::ChainApi::new(client), + )) + })? + .with_import_queue(|_config, client, mut select_chain, transaction_pool| { + let select_chain = select_chain + .take() + .ok_or_else(|| substrate_service::Error::SelectChainRequired)?; + let (block_import, link_half) = + grandpa::block_import::<_, _, _, node_template_runtime::RuntimeApi, _, _>( + client.clone(), client.clone(), - None, - client, - NothingExtra, - config.custom.inherent_data_providers.clone(), - ).map_err(Into::into) - }, + select_chain, + )?; + let justification_import = block_import.clone(); + + let (import_queue, babe_link, babe_block_import, pruning_task) = babe::import_queue( + babe::Config::get_or_compute(&*client)?, + block_import, + Some(Box::new(justification_import)), + None, + client.clone(), + client, + inherent_data_providers.clone(), + Some(transaction_pool), + )?; + + import_setup = Some((babe_block_import.clone(), link_half, babe_link)); + tasks_to_spawn = Some(vec![Box::new(pruning_task)]); + + Ok(import_queue) + })?; + + ( + builder, + import_setup, + inherent_data_providers, + tasks_to_spawn, + ) + }}; +} + +/// Builds a new service for a full client. +pub fn new_full( + config: Configuration, +) -> Result { + let (builder, mut import_setup, inherent_data_providers, mut tasks_to_spawn) = + new_full_start!(config); + + let service = builder + .with_network_protocol(|_| Ok(NodeProtocol::new()))? + .with_finality_proof_provider(|client| { + Ok(Arc::new(GrandpaFinalityProofProvider::new(client.clone(), client)) as _) + })? + .build()?; + + let (block_import, link_half, babe_link) = import_setup.take().expect( + "Link Half and Block Import are present for Full Services or setup failed before. qed", + ); + + // spawn any futures that were created in the previous setup steps + if let Some(tasks) = tasks_to_spawn.take() { + for task in tasks { + service.spawn_task(task.select(service.on_exit()).map(|_| ()).map_err(|_| ())); + } + } + + if service.config().roles.is_authority() { + let proposer = basic_authorship::ProposerFactory { + client: service.client(), + transaction_pool: service.transaction_pool(), + }; + + let client = service.client(); + let select_chain = service + .select_chain() + .ok_or(ServiceError::SelectChainRequired)?; + + let babe_config = babe::BabeParams { + config: Config::get_or_compute(&*client)?, + keystore: service.keystore(), + client, + select_chain, + block_import, + env: proposer, + sync_oracle: service.network(), + inherent_data_providers: inherent_data_providers.clone(), + force_authoring: service.config().force_authoring, + time_source: babe_link, + }; + + let babe = start_babe(babe_config)?; + let select = babe.select(service.on_exit()).then(|_| Ok(())); + + // the BABE authoring task is considered infallible, i.e. if it + // fails we take down the service with it. + service.spawn_essential_task(select); + } + + let config = grandpa::Config { + // FIXME #1578 make this available through chainspec + gossip_duration: Duration::from_millis(333), + justification_period: 4096, + name: Some(service.config().name.clone()), + keystore: Some(service.keystore()), + }; + + match ( + service.config().roles.is_authority(), + service.config().disable_grandpa, + ) { + (false, false) => { + // start the lightweight GRANDPA observer + service.spawn_task(Box::new(grandpa::run_grandpa_observer( + config, + link_half, + service.network(), + service.on_exit(), + )?)); + } + (true, false) => { + // start the full GRANDPA voter + let grandpa_config = grandpa::GrandpaParams { + config: config, + link: link_half, + network: service.network(), + inherent_data_providers: inherent_data_providers.clone(), + on_exit: service.on_exit(), + telemetry_on_connect: Some(service.telemetry_on_connect_stream()), + }; + + // the GRANDPA voter task is considered infallible, i.e. + // if it fails we take down the service with it. + service.spawn_essential_task(grandpa::run_grandpa_voter(grandpa_config)?); + } + (_, true) => { + grandpa::setup_disabled_grandpa( + service.client(), + &inherent_data_providers, + service.network(), + )?; + } } + + Ok(service) +} + +/// Builds a new service for a light client. +pub fn new_light( + config: Configuration, +) -> Result { + let inherent_data_providers = InherentDataProviders::new(); + + ServiceBuilder::new_light::(config)? + .with_select_chain(|_config, client| { + #[allow(deprecated)] + Ok(LongestChain::new(client.backend().clone())) + })? + .with_transaction_pool(|config, client| { + Ok(TransactionPool::new( + config, + transaction_pool::ChainApi::new(client), + )) + })? + .with_import_queue_and_fprb(|_config, client, _select_chain, transaction_pool| { + #[allow(deprecated)] + let fetch_checker = client + .backend() + .blockchain() + .fetcher() + .upgrade() + .map(|fetcher| fetcher.checker().clone()) + .ok_or_else(|| "Trying to start light import queue without active fetch checker")?; + let block_import = grandpa::light_block_import::<_, _, _, RuntimeApi, _>( + client.clone(), + Arc::new(fetch_checker), + client.clone(), + )?; + + let finality_proof_import = block_import.clone(); + let finality_proof_request_builder = + finality_proof_import.create_finality_proof_request_builder(); + + // FIXME: pruning task isn't started since light client doesn't do `AuthoritySetup`. + let (import_queue, ..) = import_queue( + Config::get_or_compute(&*client)?, + block_import, + None, + Some(Box::new(finality_proof_import)), + client.clone(), + client, + inherent_data_providers.clone(), + Some(transaction_pool), + )?; + + Ok((import_queue, finality_proof_request_builder)) + })? + .with_network_protocol(|_| Ok(NodeProtocol::new()))? + .with_finality_proof_provider(|client| { + Ok(Arc::new(GrandpaFinalityProofProvider::new(client.clone(), client)) as _) + })? + .build() } From cfcb0a4430fb092883d83b4bfad26db0cd88a220 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 30 Aug 2019 02:23:36 +0300 Subject: [PATCH 219/350] substrate v2: dummy chainspec for live testnet --- res/dummy.json | 1 + src/chain_spec.rs | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 res/dummy.json diff --git a/res/dummy.json b/res/dummy.json new file mode 100644 index 0000000000..0967ef424b --- /dev/null +++ b/res/dummy.json @@ -0,0 +1 @@ +{} diff --git a/src/chain_spec.rs b/src/chain_spec.rs index c0fdfc25d0..6ba86a2c62 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -155,8 +155,7 @@ impl Alternative { /// Joystream LiveTestnet generator pub fn live_testnet_config() -> Result { - //ChainSpec::from_embedded(include_bytes!("../res/joy_testnet_2.json")) - ChainSpec::from_json_bytes(&include_bytes!("../res/joy_testnet_2.json")[..]) + ChainSpec::from_json_bytes(&include_bytes!("../res/dummy.json")[..]) } /// Staging testnet config From b9b68ffa6c782e948919e08b12ea8f9447ca881c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 20 Sep 2019 18:56:51 +0300 Subject: [PATCH 220/350] update README and build scripts --- README.md | 21 +++------------------ build-clean-start.sh | 1 - build-runtime.sh | 26 -------------------------- init-wasm.sh | 16 ---------------- 4 files changed, 3 insertions(+), 61 deletions(-) delete mode 100755 build-runtime.sh delete mode 100755 init-wasm.sh diff --git a/README.md b/README.md index f941cb7250..73c64fe668 100644 --- a/README.md +++ b/README.md @@ -13,37 +13,22 @@ Downloads are available in [releases](https://github.com/Joystream/substrate-nod ## Building from source ### Initial setup -If you want to build from source you will need the Rust [toolchain](https://rustup.rs/), openssl and llvm/libclang. +If you want to build from source you will need the Rust [toolchain](https://rustup.rs/), openssl and llvm/libclang. You can install the required dependencies with: ```bash git clone https://github.com/Joystream/substrate-node-joystream.git -``` - -Initialise the WASM build environment: - -```bash cd substrate-node-joystream/ -./init-wasm.sh +./setup.sh ``` ### Building -Clone the joystream runtime into the substrate-node-joystream directory: -```bash -git clone https://github.com/Joystream/substrate-runtime-joystream.git -``` - -Build the WASM runtime library: -```bash -./build-runtime.sh -``` - -Build the node (native code): ```bash cargo build --release ``` ### Running a public node + Run the node and connect to the public testnet ```bash cargo run --release diff --git a/build-clean-start.sh b/build-clean-start.sh index a05bef09b5..17595d2909 100755 --- a/build-clean-start.sh +++ b/build-clean-start.sh @@ -1,6 +1,5 @@ #!/usr/bin/env bash -./build-runtime.sh cargo build cargo run -- purge-chain --dev cargo run -- --dev diff --git a/build-runtime.sh b/build-runtime.sh deleted file mode 100755 index 25418d84d5..0000000000 --- a/build-runtime.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env bash - -set -e - -PROJECT_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" - -export CARGO_INCREMENTAL=0 - -bold=$(tput bold) -normal=$(tput sgr0) - -# Save current directory. -pushd . >/dev/null - -for SRC in substrate-runtime-joystream/ -do - echo "${bold}Building webassembly binary in $SRC...${normal}" - cd "$PROJECT_ROOT/$SRC" - - ./build.sh - - cd - >> /dev/null -done - -# Restore initial directory. -popd >/dev/null diff --git a/init-wasm.sh b/init-wasm.sh deleted file mode 100755 index 5dde6d4241..0000000000 --- a/init-wasm.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash - -set -e - -echo "*** Initialising WASM build environment" - -if [ -z $CI_PROJECT_NAME ] ; then - rustup update nightly - rustup update stable -fi - -rustup target add wasm32-unknown-unknown --toolchain nightly - -# Install wasm-gc. It's useful for stripping slimming down wasm binaries. -command -v wasm-gc || \ - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force From 46c6134c8b441c8b466514fd6035849316849c87 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 20 Sep 2019 18:57:19 +0300 Subject: [PATCH 221/350] setup.sh --- setup.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000000..97e4280f30 --- /dev/null +++ b/setup.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +set -e + +# Install OS dependencies +curl https://getsubstrate.io -sSf | bash -s -- --fast + +echo "*** Initialising WASM build environment" + +if [ -z $CI_PROJECT_NAME ] ; then + rustup update nightly + rustup update stable +fi + +rustup target add wasm32-unknown-unknown --toolchain nightly + +# Install wasm-gc. It's useful for stripping slimming down wasm binaries. +command -v wasm-gc || \ + cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force \ No newline at end of file From 2740feff264e083045371ee21926fa973d570183 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 9 Oct 2019 12:51:57 +0300 Subject: [PATCH 222/350] rustfmt --- src/chain_spec.rs | 4 ++-- src/service.rs | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 6ba86a2c62..79e689dfb9 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -174,8 +174,8 @@ pub fn staging_testnet_config() -> ChainSpec { 0, )])), Some(&*"joy"), // protocol_id - None, // consensus engine - None, // properties + None, // consensus engine + None, // properties ) } diff --git a/src/service.rs b/src/service.rs index 34484665bb..4ce738a913 100644 --- a/src/service.rs +++ b/src/service.rs @@ -27,13 +27,11 @@ use node_template_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; use std::sync::Arc; use std::time::Duration; use substrate_client::LongestChain; -use substrate_executor::native_executor_instance; -pub use substrate_executor::NativeExecutor; +pub use substrate_executor::{native_executor_instance, NativeExecutor}; use substrate_service::{ error::Error as ServiceError, AbstractService, Configuration, ServiceBuilder, }; use transaction_pool::{self, txpool::Pool as TransactionPool}; -pub use substrate_executor::NativeExecutor; // Our native executor instance. native_executor_instance!( From 4409aeb17e648f6bbe4227d3bbab717ef351c54c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 9 Oct 2019 13:11:47 +0300 Subject: [PATCH 223/350] joystream substrate-v2 runtime --- Cargo.lock | 1529 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 6 +- 2 files changed, 777 insertions(+), 758 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c585d1dd18..1295d61bfb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "adler32" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -13,7 +13,7 @@ dependencies = [ "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -33,12 +33,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "ahash" -version = "0.2.12" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -54,12 +54,12 @@ dependencies = [ [[package]] name = "aio-limited" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -70,7 +70,7 @@ name = "ansi_term" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -99,7 +99,7 @@ name = "arrayvec" version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -116,7 +116,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -124,33 +124,33 @@ name = "atty" version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "autocfg" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "backtrace" -version = "0.3.34" +version = "0.3.38" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace-sys" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -171,25 +171,25 @@ name = "bindgen" version = "0.47.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "bitflags" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -204,7 +204,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "blake2" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -219,7 +219,7 @@ version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -260,12 +260,12 @@ dependencies = [ [[package]] name = "bs58" -version = "0.2.2" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bstr" -version = "0.2.6" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -273,7 +273,7 @@ dependencies = [ [[package]] name = "bumpalo" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -307,8 +307,8 @@ version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -316,7 +316,7 @@ name = "c2-chacha" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -327,10 +327,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cc" -version = "1.0.26" +version = "1.0.45" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -343,15 +344,15 @@ dependencies = [ [[package]] name = "cfg-if" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "chrono" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", @@ -363,7 +364,7 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -374,10 +375,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -386,7 +387,7 @@ name = "clear_on_drop" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -394,7 +395,7 @@ name = "cloudabi" version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -403,7 +404,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -411,13 +412,13 @@ name = "const-random-macro" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "constant_time_eq" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -426,7 +427,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -439,7 +440,7 @@ name = "crc32fast" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -450,15 +451,6 @@ dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "crossbeam-deque" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "crossbeam-deque" version = "0.7.1" @@ -474,9 +466,9 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -494,8 +486,8 @@ name = "crossbeam-utils" version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -508,7 +500,7 @@ name = "crypto-mac" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -527,7 +519,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -536,7 +528,7 @@ version = "3.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -557,7 +549,7 @@ dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -573,7 +565,7 @@ dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -581,12 +573,12 @@ name = "derive_more" version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -621,19 +613,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "ed25519-dalek" -version = "1.0.0-pre.1" +version = "1.0.0-pre.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "either" -version = "1.5.2" +version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -650,15 +643,15 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "environmental" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -666,7 +659,7 @@ name = "erased-serde" version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -674,7 +667,7 @@ name = "exit-future" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -683,7 +676,7 @@ name = "failure" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -694,7 +687,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -708,7 +701,7 @@ name = "fdlimit" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -716,11 +709,11 @@ name = "finality-grandpa" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "hashmap_core 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -730,7 +723,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -738,15 +731,15 @@ dependencies = [ [[package]] name = "flate2" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -773,7 +766,7 @@ name = "fork-tree" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -781,10 +774,10 @@ name = "fs-swap" version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -797,7 +790,7 @@ name = "fuchsia-zircon" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -808,7 +801,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "futures" -version = "0.1.28" +version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -830,7 +823,7 @@ name = "futures-cpupool" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -885,7 +878,7 @@ name = "futures-util-preview" version = "0.3.0-alpha.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-io-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", @@ -905,8 +898,8 @@ name = "generic-array" version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -914,7 +907,7 @@ name = "generic-array" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -924,7 +917,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -934,16 +927,17 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "getrandom" -version = "0.1.8" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -957,10 +951,10 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - "bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -971,9 +965,9 @@ dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1004,16 +998,16 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ahash 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "ahash 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "hashmap_core" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1021,7 +1015,7 @@ name = "heapsize" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1052,7 +1046,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1068,7 +1062,7 @@ name = "hex-literal-impl" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1116,7 +1110,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1128,7 +1122,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "humantime" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1136,17 +1130,17 @@ dependencies = [ [[package]] name = "hyper" -version = "0.12.33" +version = "0.12.35" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1156,9 +1150,9 @@ dependencies = [ "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1169,8 +1163,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1197,10 +1191,10 @@ dependencies = [ [[package]] name = "impl-codec" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1209,20 +1203,20 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "impl-serde" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "indexmap" -version = "1.0.2" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1237,11 +1231,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "iovec" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1254,6 +1247,16 @@ name = "itoa" version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "jobserver" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "joystream-node" version = "2.0.0" @@ -1261,11 +1264,11 @@ dependencies = [ "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0", + "joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=8414869a87fb9f9011f381e24c3d874fb250e6a6)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -1291,11 +1294,12 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=8414869a87fb9f9011f381e24c3d874fb250e6a6#8414869a87fb9f9011f381e24c3d874fb250e6a6" dependencies = [ "node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -1329,106 +1333,106 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-client-transports" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-core" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-core-client" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jsonrpc-client-transports 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-derive" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-http-server" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-pubsub" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-server-utils" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-ws-server" -version = "13.1.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1479,13 +1483,13 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "lazy_static" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1495,7 +1499,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.60" +version = "0.2.62" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1503,8 +1507,8 @@ name = "libloading" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1513,8 +1517,8 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core-derive 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-deflate 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1551,20 +1555,20 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "multistream-select 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1573,7 +1577,7 @@ dependencies = [ "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1586,7 +1590,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1594,8 +1598,8 @@ name = "libp2p-deflate" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1605,7 +1609,7 @@ name = "libp2p-dns" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1616,14 +1620,14 @@ name = "libp2p-floodsub" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1635,16 +1639,16 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1656,22 +1660,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1683,7 +1687,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1692,8 +1696,8 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1705,13 +1709,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1721,11 +1725,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1740,7 +1744,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1756,7 +1760,7 @@ name = "libp2p-plaintext" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1766,9 +1770,9 @@ name = "libp2p-ratelimit" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "aio-limited 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1783,14 +1787,14 @@ dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1798,9 +1802,9 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-futures 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1808,7 +1812,7 @@ name = "libp2p-swarm" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1822,7 +1826,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "ipnet 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1837,7 +1841,7 @@ name = "libp2p-uds" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1848,13 +1852,13 @@ name = "libp2p-wasm-ext" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-futures 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1863,7 +1867,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1880,7 +1884,7 @@ name = "libp2p-yamux" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1893,9 +1897,9 @@ version = "5.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1908,7 +1912,7 @@ dependencies = [ "hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1916,9 +1920,9 @@ name = "libz-sys" version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1965,7 +1969,7 @@ name = "log" version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1982,7 +1986,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2010,7 +2014,7 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2021,7 +2025,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "merlin" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2030,21 +2034,12 @@ dependencies = [ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "miniz-sys" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "miniz_oxide" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2054,9 +2049,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2080,8 +2075,8 @@ name = "mio-uds" version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2102,11 +2097,11 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2122,13 +2117,13 @@ name = "native-tls" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.24 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.48 (registry+https://github.com/rust-lang/crates.io-index)", - "schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)", + "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2139,9 +2134,9 @@ name = "net2" version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2149,10 +2144,10 @@ name = "nix" version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2161,8 +2156,8 @@ name = "node-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -2171,12 +2166,12 @@ dependencies = [ [[package]] name = "nodrop" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "nohash-hasher" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2190,9 +2185,10 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2202,7 +2198,7 @@ name = "num-integer" version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2211,8 +2207,8 @@ name = "num-rational" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2222,7 +2218,7 @@ name = "num-traits" version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2230,7 +2226,7 @@ name = "num_cpus" version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2257,15 +2253,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl" -version = "0.10.24" +version = "0.10.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.48 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2275,24 +2271,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl-sys" -version = "0.9.48" +version = "0.9.50" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "owning_ref" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "owning_ref" version = "0.4.0" @@ -2312,14 +2300,14 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2328,36 +2316,36 @@ name = "parity-multihash" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-scale-codec" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec-derive 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec-derive 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-scale-codec-derive" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2370,9 +2358,9 @@ name = "parity-util-mem" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2384,13 +2372,9 @@ dependencies = [ ] [[package]] -name = "parking_lot" -version = "0.5.5" +name = "parity-wasm" +version = "0.40.3" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "parking_lot" @@ -2430,27 +2414,16 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "parking_lot_core" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2458,11 +2431,11 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2470,14 +2443,14 @@ name = "parking_lot_core" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2485,33 +2458,33 @@ name = "parking_lot_core" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "paste" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "paste-impl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", + "paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "paste-impl" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2545,7 +2518,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "pkg-config" -version = "0.3.15" +version = "0.3.16" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2555,12 +2528,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "primitive-types" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-codec 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-codec 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2569,7 +2542,7 @@ name = "proc-macro-crate" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2582,12 +2555,12 @@ dependencies = [ [[package]] name = "proc-macro-hack" -version = "0.5.8" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2603,9 +2576,17 @@ dependencies = [ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "proc-macro2" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "protobuf" -version = "2.8.0" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2626,12 +2607,20 @@ dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "quote" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2641,10 +2630,10 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2654,9 +2643,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2664,8 +2653,8 @@ name = "rand" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2674,18 +2663,18 @@ dependencies = [ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand" -version = "0.7.0" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2694,7 +2683,7 @@ name = "rand_chacha" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2704,7 +2693,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2722,10 +2711,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "rand_core" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2741,7 +2730,7 @@ name = "rand_hc" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2757,9 +2746,9 @@ name = "rand_jitter" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2769,10 +2758,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2780,7 +2769,7 @@ name = "rand_pcg" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2794,23 +2783,23 @@ dependencies = [ [[package]] name = "rayon" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon-core" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2829,18 +2818,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex" -version = "1.2.1" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2848,7 +2837,7 @@ name = "remove_dir_all" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2856,12 +2845,12 @@ name = "ring" version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "spin 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2869,7 +2858,7 @@ name = "rocksdb" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2879,13 +2868,13 @@ version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rustc-demangle" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2920,7 +2909,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2939,11 +2928,11 @@ dependencies = [ [[package]] name = "schannel" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2953,12 +2942,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2988,7 +2977,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3020,30 +3009,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.98" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_derive" -version = "1.0.98" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_json" -version = "1.0.40" +version = "1.0.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3135,10 +3124,10 @@ name = "slog-json" version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3148,7 +3137,7 @@ version = "4.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3159,7 +3148,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3181,7 +3170,7 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3191,8 +3180,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3210,7 +3199,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "spin" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3222,7 +3211,7 @@ dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3230,10 +3219,10 @@ name = "sr-io" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3250,10 +3239,10 @@ dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3265,7 +3254,7 @@ name = "sr-staking-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] @@ -3284,8 +3273,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] @@ -3295,8 +3284,8 @@ name = "srml-authority-discovery" version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3313,7 +3302,7 @@ name = "srml-authorship" version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3329,8 +3318,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3348,9 +3337,9 @@ name = "srml-balances" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3363,8 +3352,8 @@ name = "srml-executive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3377,8 +3366,8 @@ name = "srml-finality-tracker" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3391,8 +3380,8 @@ name = "srml-grandpa" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3410,8 +3399,8 @@ name = "srml-im-online" version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3428,9 +3417,9 @@ name = "srml-indices" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3445,8 +3434,8 @@ name = "srml-metadata" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] @@ -3456,8 +3445,8 @@ name = "srml-offences" version = "1.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3471,9 +3460,9 @@ name = "srml-session" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3489,9 +3478,9 @@ name = "srml-staking" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3508,8 +3497,8 @@ name = "srml-sudo" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3525,9 +3514,9 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3546,7 +3535,7 @@ dependencies = [ "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3558,7 +3547,7 @@ dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3568,7 +3557,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3576,9 +3565,9 @@ name = "srml-system" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3592,8 +3581,8 @@ name = "srml-timestamp" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3618,7 +3607,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "stream-cipher" -version = "0.3.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3654,7 +3643,7 @@ dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3670,7 +3659,7 @@ dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3678,8 +3667,8 @@ name = "substrate-application-crypto" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3690,7 +3679,7 @@ name = "substrate-authority-discovery-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3703,7 +3692,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3737,14 +3726,14 @@ dependencies = [ "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3771,7 +3760,7 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3798,7 +3787,7 @@ dependencies = [ "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3816,15 +3805,15 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3850,7 +3839,7 @@ name = "substrate-consensus-babe-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3869,7 +3858,7 @@ dependencies = [ "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3886,7 +3875,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3917,10 +3906,10 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3931,7 +3920,7 @@ dependencies = [ "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3941,13 +3930,13 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "finality-grandpa 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3967,8 +3956,8 @@ name = "substrate-finality-grandpa-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3981,9 +3970,9 @@ version = "1.1.0" source = "git+https://github.com/mnaamani/substrate-forum-module?branch=substrate-v2#cc3af317df2e1791c21cab4d0430b09209f204d6" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -3999,7 +3988,7 @@ name = "substrate-inherents" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -4010,7 +3999,7 @@ name = "substrate-keyring" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4026,10 +4015,10 @@ dependencies = [ "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4037,14 +4026,14 @@ name = "substrate-network" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4052,12 +4041,12 @@ dependencies = [ "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4068,7 +4057,7 @@ dependencies = [ "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4080,15 +4069,15 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -4112,7 +4101,7 @@ name = "substrate-panic-handler" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4126,7 +4115,7 @@ dependencies = [ "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4137,28 +4126,28 @@ dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4168,17 +4157,17 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core-client 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -4195,12 +4184,12 @@ name = "substrate-rpc-servers" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-http-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-ws-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-http-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-ws-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] @@ -4209,8 +4198,8 @@ name = "substrate-serializer" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4220,15 +4209,15 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -4246,7 +4235,7 @@ dependencies = [ "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sysinfo 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4269,7 +4258,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] @@ -4282,7 +4271,7 @@ dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -4297,14 +4286,14 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4322,7 +4311,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", ] @@ -4334,7 +4323,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", @@ -4349,7 +4338,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e53 dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4368,12 +4357,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "subtle" -version = "2.1.1" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "syn" -version = "0.15.43" +version = "0.15.44" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4381,6 +4370,16 @@ dependencies = [ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "syn" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "synstructure" version = "0.10.2" @@ -4388,20 +4387,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sysinfo" -version = "0.9.1" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4419,12 +4418,12 @@ name = "tempfile" version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4432,7 +4431,7 @@ name = "termcolor" version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4440,7 +4439,7 @@ name = "textwrap" version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4448,7 +4447,7 @@ name = "thread_local" version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4456,9 +4455,9 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4489,7 +4488,7 @@ version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4497,12 +4496,12 @@ dependencies = [ "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4512,8 +4511,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4522,7 +4521,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4531,7 +4530,7 @@ name = "tokio-current-thread" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4540,9 +4539,9 @@ name = "tokio-dns-unofficial" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4552,7 +4551,7 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4560,9 +4559,9 @@ name = "tokio-fs" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4571,22 +4570,22 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-reactor" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4599,8 +4598,8 @@ version = "0.10.0-alpha.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4612,7 +4611,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4621,25 +4620,25 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-threadpool" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4650,23 +4649,23 @@ version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-udp" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4675,23 +4674,23 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "toml" -version = "0.5.1" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4701,7 +4700,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4734,12 +4733,12 @@ name = "twox-hash" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "typenum" -version = "1.10.0" +version = "1.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -4754,7 +4753,7 @@ dependencies = [ [[package]] name = "unicase" -version = "2.4.0" +version = "2.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4783,7 +4782,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "unicode-width" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -4791,9 +4790,14 @@ name = "unicode-xid" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "unicode-xid" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "unsigned-varint" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4840,8 +4844,8 @@ name = "vergen" version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4860,81 +4864,89 @@ name = "want" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "wasi" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "wasm-bindgen" -version = "0.2.48" +version = "0.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wasm-bindgen-macro 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.48" +version = "0.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bumpalo 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-futures" -version = "0.3.25" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.48" +version = "0.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro-support 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.48" +version = "0.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.48" +version = "0.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen-webidl" -version = "0.2.48" +version = "0.2.51" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4943,45 +4955,45 @@ name = "wasm-timer" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasmi" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasmi-validation" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "web-sys" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-webidl 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-webidl 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5016,7 +5028,7 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5026,7 +5038,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "winapi" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5048,7 +5060,7 @@ name = "winapi-util" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5058,10 +5070,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wincolor" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5112,9 +5124,9 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "nohash-hasher 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5137,18 +5149,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [metadata] -"checksum adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c" +"checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2" "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" -"checksum ahash 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "e96e12a0287c75063711e04484e9b140d4a59ec074d3fe5f0b1cc90e0e992665" +"checksum ahash 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" = "b35dfc96a657c1842b4eb73180b65e37152d4b94d0eb5cb51708aee7826950b4" "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" -"checksum aio-limited 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f10b352bc3fc08ae24dc5d2d3ddcac153678533986122dc283d747b12071000" +"checksum aio-limited 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c4dddf55b0b2da9acb7512f21c0a4f1c0871522ec4ab7fb919d0da807d1e32b3" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" "checksum arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "bc4662175ead9cd84451d5c35070517777949a2ed84551764129cedb88384841" @@ -5157,24 +5169,24 @@ dependencies = [ "checksum asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bea40e881533b1fe23afca9cd1c1ca022219a10fce604099ecfc96bfa26eaf1a" "checksum asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7f92edafad155aff997fa5b727c6429b91e996b5a5d62a2b0adbae1306b5fe" "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" -"checksum autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "22130e92352b948e7e82a49cdb0aa94f2211761117f29e052dd397c1ac33542b" -"checksum backtrace 0.3.34 (registry+https://github.com/rust-lang/crates.io-index)" = "b5164d292487f037ece34ec0de2fcede2faa162f085dd96d2385ab81b12765ba" -"checksum backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)" = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61" +"checksum autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875" +"checksum backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)" = "690a62be8920ccf773ee00ef0968649b0e724cda8bd5b12286302b4ae955fdf5" +"checksum backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)" = "82a830b4ef2d1124a711c71d263c5abdc710ef8e907bd508c88be475cebc422b" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" -"checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" +"checksum bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a606a02debe2813760609f57a64a2ffd27d9fdf5b2f133eaca0b248dd92cdd2" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" "checksum bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9633b74910e1870f50f5af189b08487195cdb83c0e27a71d6f64d5e09dd0538b" -"checksum blake2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91721a6330935673395a0607df4d49a9cb90ae12d259f1b3e0a3f6e1d486872e" +"checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" "checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" "checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" -"checksum bs58 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0de79cfb98e7aa9988188784d8664b4b5dad6eaaa0863b91d9a4ed871d4f7a42" -"checksum bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e0a692f1c740e7e821ca71a22cf99b9b2322dfa94d10f71443befb1797b3946a" -"checksum bumpalo 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2cd43d82f27d68911e6ee11ee791fb248f138f5d69424dc02e098d4f152b0b05" +"checksum bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188" +"checksum bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8d6c2c5b58ab920a4f5aeaaca34b4488074e8cc7596af94e6f8c6ff247c60245" +"checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708" "checksum byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7cbcbf18128ec71d8d4a0d054461ec59fff5b75b7d10a4c9b7c7cb1a379c3e77" "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" @@ -5183,22 +5195,21 @@ dependencies = [ "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" "checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" "checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" -"checksum cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "389803e36973d242e7fecb092b2de44a3d35ac62524b3b9339e51d577d668e02" +"checksum cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)" = "4fc9a35e1f4290eb9e5fc54ba6cf40671ed2a2514c3eeb2b2a908dda2ea5a1be" "checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af" -"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" -"checksum chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "77d81f58b7301084de3b958691458a53c3f7e0b1d702f77e550b6a88e3a88abe" +"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" +"checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" "checksum const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b641a8c9867e341f3295564203b1c250eb8ce6cb6126e007941f78c4d2ed7fe" "checksum const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c750ec12b83377637110d5a57f5ae08e895b06c4b16e2bdbf1a94ef717428c59" -"checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" +"checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120" "checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" "checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" -"checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" "checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71" "checksum crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9" "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" @@ -5217,11 +5228,11 @@ dependencies = [ "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" "checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" -"checksum ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81956bcf7ef761fb4e1d88de3fa181358a0d26cbcb9755b587a08f9119824b86" -"checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b" +"checksum ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)" = "845aaacc16f01178f33349e7c992ecd0cee095aa5e577f0f4dee35971bd36455" +"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" "checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" -"checksum environmental 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c7464757b80de8930c91c9afe77ddce501826bf9d134a87db2c67d9dc177e2c" +"checksum environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "34f8467a0284de039e6bd0e25c14519538462ba5beb548bb1f03e645097837a8" "checksum erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3beee4bc16478a1b26f2e80ad819a52d24745e292f521a63c16eea5f74b7eb60" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" @@ -5230,7 +5241,7 @@ dependencies = [ "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" "checksum finality-grandpa 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9681c1f75941ea47584573dd2bc10558b2067d460612945887e00744e43393be" "checksum fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "516877b7b9a1cc2d0293cbce23cd6203f0edbfd4090e6ca4489fecb5aa73050e" -"checksum flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "2adaffba6388640136149e18ed080b77a78611c1e1d6de75aedcdf78df5d4682" +"checksum flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ad3c5233c9a940c8719031b423d7e6c16af66e031cb0420b0896f5245bf181d3" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" @@ -5239,7 +5250,7 @@ dependencies = [ "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "45dc39533a6cae6da2b56da48edae506bb767ec07370f86f70fc062e9d435869" +"checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" "checksum futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "21c71ed547606de08e9ae744bb3c6d80f5627527ef31ecf2a7210d0e67bc8fae" "checksum futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4b141ccf9b7601ef987f36f1c0d9522f76df3bba1cf2e63bfacccc044c4558f5" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" @@ -5254,15 +5265,15 @@ dependencies = [ "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" -"checksum getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "34f33de6f0ae7c9cb5e574502a562e2b512799e32abb801cd1e79ad952b62b49" +"checksum getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "473a1265acc8ff1e808cd0a1af8cee3c2ee5200916058a2ca113c29f2d903571" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" "checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" "checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" -"checksum hashbrown 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2bcea5b597dd98e6d1f1ec171744cc5dee1a30d1c23c5b98e3cf9d4fbdf8a526" -"checksum hashmap_core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8e04cb7a5051270ef3fa79f8c7604d581ecfa73d520e74f554e45541c4b5881a" +"checksum hashbrown 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6587d09be37fb98a11cb08b9000a3f592451c1b1b613ca69d949160e313a430a" +"checksum hashmap_core 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "2d6852e5a86250521973b0c1d39677166d8a9c0047c908d7e04f1aa04177973c" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" @@ -5276,37 +5287,39 @@ dependencies = [ "checksum http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "372bcb56f939e449117fb0869c2e8fd8753a8223d92a172c6e808cf123a5b6e4" "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" -"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" -"checksum hyper 0.12.33 (registry+https://github.com/rust-lang/crates.io-index)" = "7cb44cbce9d8ee4fb36e4c0ad7b794ac44ebaad924b9c8291a63215bb44c2c8f" +"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +"checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6" "checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" -"checksum impl-codec 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "78c441b3d2b5e24b407161e76d482b7bbd29b5da357707839ac40d95152f031f" +"checksum impl-codec 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3fa0086251524c50fd53b32e7b05eb6d79e2f97221eaf0c53c0ca9c3096f21d3" "checksum impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5158079de9d4158e0ce1de3ae0bd7be03904efc40b3d7dd8b8c301cbf6b52b56" -"checksum impl-serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d26be4b97d738552ea423f76c4f681012ff06c3fa36fa968656b3679f60b4a1" -"checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" +"checksum impl-serde 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bbb1ea6188aca47a0eaeeb330d8a82f16cd500f30b897062d23922568727333a" +"checksum indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a61202fbe46c4a951e9404a720a0180bcf3212c750d735cb5c4ba4dc551299f3" "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" -"checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" +"checksum iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c9636900aa73ffed13cdbb199f17cd955670bb300927c8d25b517dfa136b6567" "checksum ipnet 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e61c2da0d0f700c77d2d313dbf4f93e41d235fa12c6681fee06621036df4c2af" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" -"checksum js-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "da3ea71161651a4cd97d999b2da139109c537b15ab33abc8ae4ead38deac8a03" -"checksum jsonrpc-client-transports 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39577db48b004cffb4c5b8e5c9b993c177c52599ecbee88711e815acf65144db" -"checksum jsonrpc-core 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd42951eb35079520ee29b7efbac654d85821b397ef88c8151600ef7e2d00217" -"checksum jsonrpc-core-client 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f047c10738edee7c3c6acf5241a0ce33df32ef9230c1a7fb03e4a77ee72c992f" -"checksum jsonrpc-derive 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29f9149f785deaae92a4c834a9a1a83a4313b8cfedccf15362cd4cf039a64501" -"checksum jsonrpc-http-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4edd28922653d79e4f6c0f5d0a1034a4edbc5f9cf6cad8ec85e2a685713e3708" -"checksum jsonrpc-pubsub 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2c08b444cc0ed70263798834343d0ac875e664257df8079160f23ac1ea79446" -"checksum jsonrpc-server-utils 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44561bfdd31401bad790527f1e951dde144f2341ddc3e1b859d32945e1a34eff" -"checksum jsonrpc-ws-server 13.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d230ff76a8e4a3fb068aab6ba23d0c4e7d6e3b41bca524daa33988b04b065265" +"checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=8414869a87fb9f9011f381e24c3d874fb250e6a6)" = "" +"checksum js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)" = "2cc9a97d7cec30128fd8b28a7c1f9df1c001ceb9b441e2b755e24130a6b43c79" +"checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" +"checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" +"checksum jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "161dc223549fa6fe4a4eda675de2d1d3cff5a7164e5c031cdf1e22c734700f8b" +"checksum jsonrpc-derive 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4a76285ebba4515680fbfe4b62498ccb2a932384c8732eed68351b02fb7ae475" +"checksum jsonrpc-http-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "601fcc7bec888c7cbc7fd124d3d6744d72c0ebb540eca6fe2261b71f9cff6320" +"checksum jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "64e0fb0664d8ce287e826940dafbb45379443c595bdd71d93655f3c8f25fd992" +"checksum jsonrpc-server-utils 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d415f51d016a4682878e19dd03e8c0b61cd4394912d7cd3dc48d4f19f061a4e" +"checksum jsonrpc-ws-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4699433c1ac006d7df178b4c29c191e5bb6d81e2dca18c5c804a094592900101" "checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" +"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)" = "d44e80633f007889c7eff624b709ab43c92d708caad982295768a7b13ca3b5eb" +"checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba" "checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" "checksum libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4183fb4be621d97baebbbe0c499d6ae337e9e6ec955f9fa3cb29e55547dfacdb" "checksum libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2a7ebd9d597299512e096cc1bd58e955c03ef28f33214a33b9c7e4ace109ff41" @@ -5345,9 +5358,8 @@ dependencies = [ "checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" "checksum memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ef49315991403ba5fa225a70399df5e115f57b274cb0b1b4bcd6e734fa5bd783" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" -"checksum merlin 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "66448a173ad394ef5ebf734efa724f3644dcffda083b1e89979da4461ddac079" -"checksum miniz-sys 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9e3ae51cea1576ceba0dde3d484d30e6e5b86dee0b2d412fe3a16a15c98202" -"checksum miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7108aff85b876d06f22503dcce091e29f76733b2bfdd91eebce81f5e68203a10" +"checksum merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "de2d16d3b15fec5943d1144f861f61f279d165fdd60998ca262913b9bf1c8adb" +"checksum miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "304f66c19be2afa56530fa7c39796192eef38618da8d19df725ad7c6d6b2aaae" "checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" @@ -5358,10 +5370,10 @@ dependencies = [ "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" "checksum node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" -"checksum nohash-hasher 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d138afcce92d219ccb6eb53d9b1e8a96ac0d633cfd3c53cd9856d96d1741bb8" +"checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" +"checksum nohash-hasher 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4e657a6ec97f9a3ba46f6f7034ea6db9fcd5b71d25ef1074b7bc03da49be0e8e" "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -"checksum num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "57450397855d951f1a41305e54851b1a7b8f5d2e349543a02a2effe25459f718" +"checksum num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f9c3f34cdd24f334cb265d9bf8bfa8a241920d026916785747a92f0e55541a1a" "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" "checksum num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454" "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" @@ -5369,58 +5381,58 @@ dependencies = [ "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" -"checksum openssl 0.10.24 (registry+https://github.com/rust-lang/crates.io-index)" = "8152bb5a9b5b721538462336e3bef9a539f892715e5037fda0f984577311af15" +"checksum openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.48 (registry+https://github.com/rust-lang/crates.io-index)" = "b5ba300217253bcc5dc68bed23d782affa45000193866e025329aa8a7a9f05b8" -"checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" +"checksum openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)" = "2c42dcccb832556b5926bc9ae61e8775f2a61e725ab07ab3d1e7fcf8ae62c3b6" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" -"checksum parity-scale-codec 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "65582b5c02128a4b0fa60fb3e070216e9c84be3e4a8f1b74bc37e15a25e58daf" -"checksum parity-scale-codec-derive 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a81f3cd93ed368a8e41c4e79538e99ca6e8f536096de23e3a0bc3e782093ce28" +"checksum parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "001fbbb956d8593f321c7a784f64d16b2c99b2657823976eea729006ad2c3668" +"checksum parity-scale-codec-derive 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "42af752f59119656fa3cb31e8852ed24e895b968c0bdb41847da7f0cea6d155f" "checksum parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" "checksum parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2005637ccf93dbb60c85081ccaaf3f945f573da48dcc79f27f9646caa3ec1dc" "checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" -"checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" +"checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" "checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" "checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" -"checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa" "checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" "checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" -"checksum paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1f4a4a1c555c6505821f9d58b8779d0f630a6b7e4e1be24ba718610acf01fa79" -"checksum paste-impl 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "26e796e623b8b257215f27e6c80a5478856cae305f5b59810ff9acdaa34570e6" +"checksum paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "423a519e1c6e828f1e73b720f9d9ed2fa643dce8a7737fb43235ce0b41eeaa49" +"checksum paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4214c9e912ef61bf42b81ba9a47e8aad1b2ffaf739ab162bf96d1e011f54e6c5" "checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" "checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" -"checksum pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c1d2cfa5a714db3b5f24f0915e74fcdf91d09d496ba61329705dda7774d2af" +"checksum pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "72d5370d90f49f70bd033c3d75e87fc529fbfff9d6f7cccef07d6170079d91ea" "checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b" -"checksum primitive-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e44400d651ca5276415dc8e00541c5c9d03844f1f0a87ad28f0a8fadcb2300bc" +"checksum primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "83ef7b3b965c0eadcb6838f34f827e1dfb2939bdd5ebd43f9647e009b12b0371" "checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" "checksum proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b" -"checksum proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)" = "982a35d1194084ba319d65c4a68d24ca28f5fdb5b8bc20899e4eef8641ea5178" +"checksum proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "114cdf1f426eb7f550f01af5f53a33c0946156f6814aec939b3bd77e844f9a9d" "checksum proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842" "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -"checksum protobuf 2.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8aefcec9f142b524d98fc81d07827743be89dd6586a1ba6ab21fa66a500b3fa5" +"checksum proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "90cf5f418035b98e655e9cdb225047638296b862b42411c4e45bb88d700f7fc0" +"checksum protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40361836defdd5871ff7e84096c6f6444af7fc157f8ef1789f54f147687caa20" "checksum quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5fb6ccf8db7bbcb9c2eae558db5ab4f3da1c2a87e4e597ed394726bc8ea6ca1d" "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" +"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" "checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -"checksum rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c" +"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" "checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" -"checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca" +"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" @@ -5428,24 +5440,24 @@ dependencies = [ "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4" -"checksum rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2" +"checksum rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123" +"checksum rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" -"checksum regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88c3d9193984285d544df4a30c23a4e62ead42edf70a4452ceb76dac1ce05c26" -"checksum regex-syntax 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b143cceb2ca5e56d5671988ef8b15615733e7ee16cd348e064333b251b89343f" +"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" +"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" "checksum rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c34fa7bcae7fca3c8471e8417088bbc3ad9af8066b0ecf4f3c0d98a0d772716e" -"checksum rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af" +"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" "checksum rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f271e3552cd835fa28c541c34a7e8fdd8cdff09d77fe4eb8f6c42e87a11b096e" "checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" "checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" -"checksum schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339" +"checksum schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021" "checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" @@ -5455,9 +5467,9 @@ dependencies = [ "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" -"checksum serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)" = "7fe5626ac617da2f2d9c48af5515a21d5a480dbd151e01bb1c355e26a3e68113" -"checksum serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)" = "01e69e1b8a631f245467ee275b8c757b818653c6d704cdbcaeb56b56767b529c" -"checksum serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704" +"checksum serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "9796c9b7ba2ffe7a9ce53c2287dfc48080f4b2b362fcc245a259b3a7201119dd" +"checksum serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "4b133a43a1ecd55d4086bd5b4dc6c1751c68b1bfbeba7a5040442022c7e7c02e" +"checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" "checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" "checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" @@ -5474,7 +5486,7 @@ dependencies = [ "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" -"checksum spin 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbdb51a221842709c2dd65b62ad4b78289fc3e706a02c17a26104528b6aa7837" +"checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" "checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" "checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" "checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" @@ -5504,7 +5516,7 @@ dependencies = [ "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" -"checksum stream-cipher 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8861bc80f649f5b4c9bd38b696ae9af74499d479dbfb327f0607de6b326a36bc" +"checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" "checksum structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7" @@ -5549,10 +5561,11 @@ dependencies = [ "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" "checksum substrate-wasm-builder-runner 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af21b27fad38b212c1919f700cb0def33c88cde14d22e0d1b17d4521f4eb8b40" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" -"checksum subtle 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "01f40907d9ffc762709e4ff3eb4a6f6b41b650375a3f09ac92b641942b7fb082" -"checksum syn 0.15.43 (registry+https://github.com/rust-lang/crates.io-index)" = "ee06ea4b620ab59a2267c6b48be16244a3389f8bfa0986bdd15c35b890b00af3" +"checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" +"checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" +"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" -"checksum sysinfo 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ee7d12b854e48e680bf4b10856a7867e843845158fa8226e6c2f6cc38539cb01" +"checksum sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d5bd3b813d94552a8033c650691645f8dd5a63d614dddd62428a95d3931ef7b6" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" @@ -5570,29 +5583,30 @@ dependencies = [ "checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac" "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" -"checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce" +"checksum tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c56391be9805bc80163151c0b9e5164ee64f4b0200962c346fea12773158f22d" "checksum tokio-rustls 0.10.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e5cebc3ca33110e460c4d2e7c5e863b159fadcbf125449d896720695b2af709" "checksum tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2162248ff317e2bc713b261f242b69dbb838b85248ed20bb21df56d60ea4cae7" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" -"checksum tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "90ca01319dea1e376a001e8dc192d42ebde6dd532532a5bad988ac37db365b19" +"checksum tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd2c6a3885302581f4401c82af70d792bb9df1700e7437b0aeb4ada94d5388c" "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" -"checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" +"checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" -"checksum toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b8c96d7873fa7ef8bdeb3a9cda3ac48389b4154f32b9803b4bc26220b677b039" +"checksum toml 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7aabe75941d914b72bf3e5d3932ed92ce0664d49d8432305a8b547c37227724" "checksum trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a" "checksum trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" "checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56" -"checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" +"checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9" "checksum uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8f0f47ed099f0db671ce82c66548c5de012e3c0cba3963514d1db15c7588701" -"checksum unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a84e5511b2a947f3ae965dcb29b13b7b1691b6e7332cf5dbc1744138d5acb7f6" +"checksum unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" "checksum unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1967f4cdfc355b37fd76d2a954fb2ed3871034eb4f26d60537d88795cfc332a9" -"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" +"checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" -"checksum unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2c64cdf40b4a9645534a943668681bcb219faf51874d4b65d2e0abda1b10a2ab" +"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" +"checksum unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f0023a96687fe169081e8adce3f65e3874426b7886e9234d490af2dc077959" "checksum untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" "checksum url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61" @@ -5602,28 +5616,29 @@ dependencies = [ "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" -"checksum wasm-bindgen 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "4de97fa1806bb1a99904216f6ac5e0c050dc4f8c676dc98775047c38e5c01b55" -"checksum wasm-bindgen-backend 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "5d82c170ef9f5b2c63ad4460dfcee93f3ec04a9a36a4cc20bc973c39e59ab8e3" -"checksum wasm-bindgen-futures 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "73c25810ee684c909488c214f55abcbc560beb62146d352b9588519e73c2fed9" -"checksum wasm-bindgen-macro 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "f07d50f74bf7a738304f6b8157f4a581e1512cd9e9cdb5baad8c31bbe8ffd81d" -"checksum wasm-bindgen-macro-support 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "95cf8fe77e45ba5f91bc8f3da0c3aa5d464b3d8ed85d84f4d4c7cc106436b1d7" -"checksum wasm-bindgen-shared 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "d9c2d4d4756b2e46d3a5422e06277d02e4d3e1d62d138b76a4c681e925743623" -"checksum wasm-bindgen-webidl 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)" = "24e47859b4eba3d3b9a5c2c299f9d6f8d0b613671315f6f0c5c7f835e524b36a" +"checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" +"checksum wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "cd34c5ba0d228317ce388e87724633c57edca3e7531feb4e25e35aaa07a656af" +"checksum wasm-bindgen-backend 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "927196b315c23eed2748442ba675a4c54a1a079d90d9bdc5ad16ce31cf90b15b" +"checksum wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" +"checksum wasm-bindgen-macro 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "92c2442bf04d89792816650820c3fb407af8da987a9f10028d5317f5b04c2b4a" +"checksum wasm-bindgen-macro-support 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "9c075d27b7991c68ca0f77fe628c3513e64f8c477d422b859e03f28751b46fc5" +"checksum wasm-bindgen-shared 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "83d61fe986a7af038dd8b5ec660e5849cbd9f38e7492b9404cc48b2b4df731d1" +"checksum wasm-bindgen-webidl 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "9b979afb0535fe4749906a674082db1211de8aef466331d43232f63accb7c07c" "checksum wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6101df9a5987df809216bdda7289f52b58128e6b6a6546e9ee3e6b632b4921" -"checksum wasmi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "48437c526d40a6a593c50c5367dac825b8d6a04411013e866eca66123fb56faa" -"checksum wasmi-validation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab380192444b3e8522ae79c0a1976e42a82920916ccdfbce3def89f456ea33f3" -"checksum web-sys 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "86d515d2f713d3a6ab198031d2181b7540f8e319e4637ec2d4a41a208335ef29" +"checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" +"checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" +"checksum web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)" = "c84440699cd02ca23bed6f045ffb1497bc18a3c2628bd13e2093186faaaacf6b" "checksum webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4f7e1cd7900a3a6b65a3e8780c51a3e6b59c0e2c55c6dc69578c288d69f7d082" "checksum webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c10fa4212003ba19a564f25cd8ab572c6791f99a03cc219c13ed35ccab00de0e" "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -"checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" +"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" +"checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" "checksum ws 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a6f5bb86663ff4d1639408410f50bf6050367a8525d644d49a6894cd618a631" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" "checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" diff --git a/Cargo.toml b/Cargo.toml index 74d495786c..d285772317 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,8 +54,12 @@ rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.node-template-runtime] package = "joystream-node-runtime" +git = 'https://github.com/joystream/substrate-runtime-joystream' +rev = '8414869a87fb9f9011f381e24c3d874fb250e6a6' # development branch with just substrate-v2 update +# branch = 'development' +# for local development... # clone https://github.com/joystream/substrate-runtime-joystream to this path: -path = 'substrate-runtime-joystream' +# path = 'substrate-runtime-joystream' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' From 2f391938901ddb6bf014048c8d0a46f75ff3e408 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 10 Oct 2019 12:16:15 +0300 Subject: [PATCH 224/350] use runtime with new membership roles --- Cargo.lock | 44 ++++++++++++++++++++++---------------------- Cargo.toml | 5 ++--- src/chain_spec.rs | 4 ++-- 3 files changed, 26 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1295d61bfb..f8151286ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -96,7 +96,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "arrayvec" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -218,7 +218,7 @@ name = "blake2-rfc" version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -308,7 +308,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -465,7 +465,7 @@ name = "crossbeam-epoch" version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1140,7 +1140,7 @@ dependencies = [ "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1231,7 +1231,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "iovec" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1266,7 +1266,7 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=8414869a87fb9f9011f381e24c3d874fb250e6a6)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=substrate-v2-add-roles-to-membership)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1294,7 +1294,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=8414869a87fb9f9011f381e24c3d874fb250e6a6#8414869a87fb9f9011f381e24c3d874fb250e6a6" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=substrate-v2-add-roles-to-membership#d91d08c00102a85ce7b72890f337183185c4460e" dependencies = [ "node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1658,7 +1658,7 @@ name = "libp2p-kad" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2049,7 +2049,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2075,7 +2075,7 @@ name = "mio-uds" version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2122,7 +2122,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.51 (registry+https://github.com/rust-lang/crates.io-index)", "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2261,7 +2261,7 @@ dependencies = [ "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.51 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2271,7 +2271,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl-sys" -version = "0.9.50" +version = "0.9.51" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2330,7 +2330,7 @@ name = "parity-scale-codec" version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec-derive 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4599,7 +4599,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4621,7 +4621,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4675,7 +4675,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5165,7 +5165,7 @@ dependencies = [ "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" "checksum arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "bc4662175ead9cd84451d5c35070517777949a2ed84551764129cedb88384841" "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" -"checksum arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b8d73f9beda665eaa98ab9e4f7442bd4e7de6652587de55b2525e52e29c1b0ba" +"checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" "checksum asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bea40e881533b1fe23afca9cd1c1ca022219a10fce604099ecfc96bfa26eaf1a" "checksum asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7f92edafad155aff997fa5b727c6429b91e996b5a5d62a2b0adbae1306b5fe" "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" @@ -5298,11 +5298,11 @@ dependencies = [ "checksum indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a61202fbe46c4a951e9404a720a0180bcf3212c750d735cb5c4ba4dc551299f3" "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" -"checksum iovec 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c9636900aa73ffed13cdbb199f17cd955670bb300927c8d25b517dfa136b6567" +"checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" "checksum ipnet 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e61c2da0d0f700c77d2d313dbf4f93e41d235fa12c6681fee06621036df4c2af" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=8414869a87fb9f9011f381e24c3d874fb250e6a6)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=substrate-v2-add-roles-to-membership)" = "" "checksum js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)" = "2cc9a97d7cec30128fd8b28a7c1f9df1c001ceb9b441e2b755e24130a6b43c79" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -5383,7 +5383,7 @@ dependencies = [ "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)" = "2c42dcccb832556b5926bc9ae61e8775f2a61e725ab07ab3d1e7fcf8ae62c3b6" +"checksum openssl-sys 0.9.51 (registry+https://github.com/rust-lang/crates.io-index)" = "ba24190c8f0805d3bd2ce028f439fe5af1d55882bbe6261bed1dbc93b50dd6b1" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" diff --git a/Cargo.toml b/Cargo.toml index d285772317..3f74c55907 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,9 +54,8 @@ rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' [dependencies.node-template-runtime] package = "joystream-node-runtime" -git = 'https://github.com/joystream/substrate-runtime-joystream' -rev = '8414869a87fb9f9011f381e24c3d874fb250e6a6' # development branch with just substrate-v2 update -# branch = 'development' +git = 'https://github.com/mnaamani/substrate-runtime-joystream' +branch = 'substrate-v2-add-roles-to-membership' # for local development... # clone https://github.com/joystream/substrate-runtime-joystream to this path: # path = 'substrate-runtime-joystream' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 79e689dfb9..082e1fe0f6 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -277,7 +277,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { }), members: Some(MembersConfig { default_paid_membership_fee: 100u128, - first_member_id: 1, + members: vec![], }), forum: Some(ForumConfig { category_by_id: vec![], @@ -395,7 +395,7 @@ pub fn testnet_genesis( }), members: Some(MembersConfig { default_paid_membership_fee: 100u128, - first_member_id: 1, + members: vec![], }), forum: Some(ForumConfig { category_by_id: vec![], From 171571f295833d87cfaf387a034b8e8024318d38 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 25 Oct 2019 12:00:47 +0300 Subject: [PATCH 225/350] update to use polkadot-master version of substrate --- Cargo.lock | 2186 +++++++++++++++++++++++++++------------------ Cargo.toml | 82 +- src/chain_spec.rs | 18 +- src/cli.rs | 26 +- src/service.rs | 429 +++++---- 5 files changed, 1631 insertions(+), 1110 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f8151286ec..a8b00eb3a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "ahash" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -73,6 +73,14 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ansi_term" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "app_dirs" version = "1.2.1" @@ -86,7 +94,7 @@ dependencies = [ [[package]] name = "arc-swap" -version = "0.3.11" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -104,19 +112,19 @@ dependencies = [ [[package]] name = "asn1_der" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "asn1_der_derive" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -124,33 +132,33 @@ name = "atty" version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "autocfg" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "backtrace" -version = "0.3.38" +version = "0.3.40" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace-sys" -version = "0.1.31" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -171,11 +179,11 @@ name = "bindgen" version = "0.47.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -189,7 +197,7 @@ dependencies = [ [[package]] name = "bitflags" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -313,11 +321,10 @@ dependencies = [ [[package]] name = "c2-chacha" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -327,7 +334,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cc" -version = "1.0.45" +version = "1.0.46" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", @@ -352,7 +359,7 @@ name = "chrono" version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", @@ -364,20 +371,20 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "clap" -version = "2.32.0" +version = "2.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -387,7 +394,7 @@ name = "clear_on_drop" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -395,7 +402,7 @@ name = "cloudabi" version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -404,7 +411,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -412,7 +419,7 @@ name = "const-random-macro" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -427,7 +434,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -611,6 +618,17 @@ name = "doc-comment" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "ed25519-dalek" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "ed25519-dalek" version = "1.0.0-pre.2" @@ -618,7 +636,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -649,6 +667,18 @@ dependencies = [ "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "env_logger" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "environmental" version = "1.0.2" @@ -673,22 +703,22 @@ dependencies = [ [[package]] name = "failure" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "failure_derive" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -701,16 +731,16 @@ name = "fdlimit" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "finality-grandpa" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hashmap_core 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -723,12 +753,17 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "fixedbitset" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "flate2" version = "1.0.12" @@ -737,7 +772,7 @@ dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", "miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -764,7 +799,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -775,7 +810,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -790,7 +825,7 @@ name = "fuchsia-zircon" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -806,16 +841,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "futures-channel-preview" -version = "0.3.0-alpha.17" +version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "futures-core-preview" -version = "0.3.0-alpha.17" +version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -829,60 +864,57 @@ dependencies = [ [[package]] name = "futures-executor-preview" -version = "0.3.0-alpha.17" +version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "futures-io-preview" -version = "0.3.0-alpha.17" +version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "futures-preview" -version = "0.3.0-alpha.17" +version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-executor-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "futures-sink-preview" -version = "0.3.0-alpha.17" +version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "futures-timer" -version = "0.2.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "futures-util-preview" -version = "0.3.0-alpha.17" +version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -917,7 +949,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -927,7 +959,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -936,7 +968,7 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -966,8 +998,8 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -998,18 +1030,13 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ahash 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)", - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "ahash 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "hashmap_core" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "heapsize" version = "0.4.2" @@ -1046,7 +1073,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1062,7 +1089,7 @@ name = "hex-literal-impl" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1094,9 +1121,19 @@ dependencies = [ "hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hmac-drbg" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "http" -version = "0.1.18" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1111,7 +1148,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1137,7 +1174,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1191,7 +1228,7 @@ dependencies = [ [[package]] name = "impl-codec" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1199,25 +1236,29 @@ dependencies = [ [[package]] name = "impl-serde" -version = "0.1.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "impl-serde" -version = "0.2.1" +name = "impl-trait-for-tuples" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "indexmap" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "integer-sqrt" @@ -1234,14 +1275,22 @@ name = "iovec" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "ipnet" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "itertools" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "itoa" version = "0.4.4" @@ -1253,7 +1302,7 @@ version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1265,78 +1314,89 @@ dependencies = [ "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=substrate-v2-add-roles-to-membership)", + "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=use-polkadot-master-substrate-version)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=substrate-v2-add-roles-to-membership#d91d08c00102a85ce7b72890f337183185c4460e" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=use-polkadot-master-substrate-version#32da3d32a1f90d14cd1f4ad56591c1f78357842d" dependencies = [ - "node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=substrate-v2)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-wasm-builder-runner 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "js-sys" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1344,7 +1404,7 @@ name = "jsonrpc-client-transports" version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1436,7 +1496,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ws 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1499,7 +1559,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.62" +version = "0.2.65" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1507,7 +1567,7 @@ name = "libloading" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1546,7 +1606,7 @@ dependencies = [ "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1554,11 +1614,11 @@ name = "libp2p-core" version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1580,7 +1640,7 @@ dependencies = [ "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1650,7 +1710,7 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1674,10 +1734,10 @@ dependencies = [ "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1699,7 +1759,7 @@ dependencies = [ "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1752,7 +1812,7 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1789,7 +1849,7 @@ dependencies = [ "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1802,9 +1862,9 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1817,7 +1877,7 @@ dependencies = [ "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1828,7 +1888,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ipnet 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ipnet 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1853,11 +1913,11 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1888,7 +1948,7 @@ dependencies = [ "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "yamux 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1897,9 +1957,9 @@ version = "5.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1915,13 +1975,27 @@ dependencies = [ "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "libsecp256k1" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "libz-sys" version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1982,12 +2056,12 @@ dependencies = [ [[package]] name = "malloc_size_of_derive" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2014,8 +2088,8 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2051,7 +2125,7 @@ dependencies = [ "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2076,7 +2150,7 @@ version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2091,6 +2165,11 @@ dependencies = [ "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "multimap" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "multistream-select" version = "0.5.1" @@ -2118,11 +2197,11 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.51 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)", "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2135,7 +2214,7 @@ version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2144,24 +2223,20 @@ name = "nix" version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "node-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] @@ -2188,7 +2263,7 @@ name = "num-bigint" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2198,7 +2273,7 @@ name = "num-integer" version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2207,7 +2282,7 @@ name = "num-rational" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2218,7 +2293,7 @@ name = "num-traits" version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2226,7 +2301,7 @@ name = "num_cpus" version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2246,6 +2321,11 @@ dependencies = [ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "once_cell" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "opaque-debug" version = "0.2.3" @@ -2256,12 +2336,12 @@ name = "openssl" version = "0.10.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.51 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2271,12 +2351,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl-sys" -version = "0.9.51" +version = "0.9.52" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2355,22 +2435,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "parity-util-mem" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "parity-wasm" -version = "0.31.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "parity-wasm" version = "0.40.3" @@ -2419,7 +2491,7 @@ name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2431,7 +2503,7 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2445,7 +2517,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2460,7 +2532,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2473,7 +2545,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2481,8 +2553,8 @@ name = "paste-impl" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2496,6 +2568,11 @@ dependencies = [ "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "pdqselect" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "peeking_take_while" version = "0.1.2" @@ -2511,6 +2588,14 @@ name = "percent-encoding" version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "petgraph" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "pin-utils" version = "0.1.0-alpha.4" @@ -2523,7 +2608,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "ppv-lite86" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2532,9 +2617,9 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-codec 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2545,6 +2630,16 @@ dependencies = [ "toml 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "proc-macro-error" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "proc-macro-hack" version = "0.4.2" @@ -2555,10 +2650,10 @@ dependencies = [ [[package]] name = "proc-macro-hack" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2578,20 +2673,63 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "protobuf" -version = "2.8.1" +name = "prost" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "quick-error" -version = "0.1.4" +name = "prost-build" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", + "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "prost-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "prost-derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "prost-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "protobuf" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2612,7 +2750,7 @@ name = "quote" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2620,7 +2758,7 @@ name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2630,7 +2768,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2643,7 +2781,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2653,8 +2791,8 @@ name = "rand" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2672,7 +2810,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2683,7 +2821,7 @@ name = "rand_chacha" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2692,7 +2830,7 @@ name = "rand_chacha" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2746,7 +2884,7 @@ name = "rand_jitter" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2758,7 +2896,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2769,7 +2907,7 @@ name = "rand_pcg" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2845,9 +2983,9 @@ name = "ring" version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2858,18 +2996,17 @@ name = "rocksdb" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rpassword" -version = "3.0.2" +version = "4.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2915,7 +3052,7 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2941,7 +3078,7 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2977,7 +3114,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3020,7 +3157,7 @@ name = "serde_derive" version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3031,7 +3168,7 @@ version = "1.0.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3133,10 +3270,10 @@ dependencies = [ [[package]] name = "slog-scope" -version = "4.1.2" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", + "arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3163,8 +3300,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3182,7 +3319,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3205,7 +3342,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3214,55 +3351,69 @@ dependencies = [ "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "sr-arithmetic" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3270,290 +3421,317 @@ dependencies = [ [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "srml-randomness-collective-flip" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "srml-staking-reward-curve" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3563,31 +3741,54 @@ dependencies = [ [[package]] name = "srml-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "srml-system-rpc-runtime-api" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "srml-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "srml-transaction-payment" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] @@ -3600,6 +3801,11 @@ name = "static_assertions" version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "static_assertions" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "static_slice" version = "0.0.3" @@ -3623,27 +3829,28 @@ dependencies = [ [[package]] name = "strsim" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "structopt" -version = "0.2.18" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "structopt-derive" -version = "0.2.18" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3665,41 +3872,63 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "substrate-authority-discovery" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-basic-authorship" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] @@ -3713,37 +3942,64 @@ dependencies = [ "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-chain-spec" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "substrate-chain-spec-derive" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3751,35 +4007,37 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -3789,25 +4047,27 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3815,138 +4075,162 @@ dependencies = [ "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "substrate-debug-derive" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-externalities" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "finality-grandpa 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3954,88 +4238,98 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-forum-module" version = "1.1.0" -source = "git+https://github.com/mnaamani/substrate-forum-module?branch=substrate-v2#cc3af317df2e1791c21cab4d0430b09209f204d6" +source = "git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version#39324e3f02b34c658b098926032d27c046ad6bf9" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "substrate-header-metadata" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4043,74 +4337,77 @@ dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4118,47 +4415,97 @@ dependencies = [ "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-phragmen" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-primitives-storage" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "substrate-rpc-api" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-derive 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4168,21 +4515,25 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", +] + +[[package]] +name = "substrate-rpc-primitives" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4190,13 +4541,14 @@ dependencies = [ "jsonrpc-ws-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4205,12 +4557,12 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4219,22 +4571,25 @@ dependencies = [ "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4244,38 +4599,40 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4283,21 +4640,21 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-scope 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4305,51 +4662,60 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b#a2a0eb5398d6223e531455b4c155ef053a4a3a2b" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-wasm-builder-runner" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "substrate-wasm-interface" +version = "2.0.0" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +dependencies = [ + "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "subtle" version = "1.0.0" @@ -4375,7 +4741,7 @@ name = "syn" version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4391,6 +4757,17 @@ dependencies = [ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "synstructure" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "sysinfo" version = "0.9.5" @@ -4398,7 +4775,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4419,7 +4796,7 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4436,7 +4813,7 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4450,12 +4827,20 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "threadpool" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4465,7 +4850,7 @@ name = "tiny-bip39" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4497,7 +4882,7 @@ dependencies = [ "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4589,7 +4974,7 @@ dependencies = [ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4607,7 +4992,7 @@ dependencies = [ [[package]] name = "tokio-sync" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4676,7 +5061,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4700,7 +5085,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4743,12 +5128,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "uint" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4844,9 +5230,9 @@ name = "vergen" version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4876,25 +5262,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen" -version = "0.2.51" +version = "0.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.51" +version = "0.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4904,63 +5290,63 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.51" +version = "0.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro-support 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.51" +version = "0.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.51" +version = "0.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen-webidl" -version = "0.2.51" +version = "0.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-timer" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4968,7 +5354,7 @@ name = "wasmi" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4986,14 +5372,14 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-webidl 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-webidl 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5027,8 +5413,8 @@ name = "which" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5079,7 +5465,7 @@ dependencies = [ [[package]] name = "ws" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5088,7 +5474,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5120,16 +5506,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "yamux" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "nohash-hasher 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5142,6 +5528,11 @@ dependencies = [ "zeroize_derive 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "zeroize" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "zeroize_derive" version = "0.9.3" @@ -5158,24 +5549,25 @@ dependencies = [ "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" -"checksum ahash 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" = "b35dfc96a657c1842b4eb73180b65e37152d4b94d0eb5cb51708aee7826950b4" +"checksum ahash 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "2f00e10d4814aa20900e7948174384f79f1317f24f0ba7494e735111653fc330" "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" "checksum aio-limited 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c4dddf55b0b2da9acb7512f21c0a4f1c0871522ec4ab7fb919d0da807d1e32b3" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +"checksum ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" -"checksum arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "bc4662175ead9cd84451d5c35070517777949a2ed84551764129cedb88384841" +"checksum arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f1a1eca3195b729bbd64e292ef2f5fff6b1c28504fed762ce2b1013dde4d8e92" "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" "checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" -"checksum asn1_der 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bea40e881533b1fe23afca9cd1c1ca022219a10fce604099ecfc96bfa26eaf1a" -"checksum asn1_der_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7f92edafad155aff997fa5b727c6429b91e996b5a5d62a2b0adbae1306b5fe" +"checksum asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638" +"checksum asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502" "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" -"checksum autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875" -"checksum backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)" = "690a62be8920ccf773ee00ef0968649b0e724cda8bd5b12286302b4ae955fdf5" -"checksum backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)" = "82a830b4ef2d1124a711c71d263c5abdc710ef8e907bd508c88be475cebc422b" +"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" +"checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea" +"checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" -"checksum bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a606a02debe2813760609f57a64a2ffd27d9fdf5b2f133eaca0b248dd92cdd2" +"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" "checksum bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9633b74910e1870f50f5af189b08487195cdb83c0e27a71d6f64d5e09dd0538b" "checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330" @@ -5193,14 +5585,14 @@ dependencies = [ "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -"checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" +"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" "checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" -"checksum cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)" = "4fc9a35e1f4290eb9e5fc54ba6cf40671ed2a2514c3eeb2b2a908dda2ea5a1be" +"checksum cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)" = "0213d356d3c4ea2c18c40b037c3be23cd639825c18f25ee670ac7813beeef99c" "checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" -"checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" +"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" "checksum const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b641a8c9867e341f3295564203b1c250eb8ce6cb6126e007941f78c4d2ed7fe" @@ -5228,38 +5620,41 @@ dependencies = [ "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" "checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" +"checksum ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d07e8b8a8386c3b89a7a4b329fdfa4cb545de2545e9e2ebbc3dd3929253e426" "checksum ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)" = "845aaacc16f01178f33349e7c992ecd0cee095aa5e577f0f4dee35971bd36455" "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" "checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" +"checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" "checksum environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "34f8467a0284de039e6bd0e25c14519538462ba5beb548bb1f03e645097837a8" "checksum erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3beee4bc16478a1b26f2e80ad819a52d24745e292f521a63c16eea5f74b7eb60" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" -"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" -"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" +"checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" +"checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" -"checksum finality-grandpa 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9681c1f75941ea47584573dd2bc10558b2067d460612945887e00744e43393be" +"checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" "checksum fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "516877b7b9a1cc2d0293cbce23cd6203f0edbfd4090e6ca4489fecb5aa73050e" +"checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" "checksum flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ad3c5233c9a940c8719031b423d7e6c16af66e031cb0420b0896f5245bf181d3" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" "checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" -"checksum futures-channel-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "21c71ed547606de08e9ae744bb3c6d80f5627527ef31ecf2a7210d0e67bc8fae" -"checksum futures-core-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4b141ccf9b7601ef987f36f1c0d9522f76df3bba1cf2e63bfacccc044c4558f5" +"checksum futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a" +"checksum futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" -"checksum futures-executor-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "87ba260fe51080ba37f063ad5b0732c4ff1f737ea18dcb67833d282cdc2c6f14" -"checksum futures-io-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "082e402605fcb8b1ae1e5ba7d7fdfd3e31ef510e2a8367dd92927bb41ae41b3a" -"checksum futures-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "bf25f91c8a9a1f64c451e91b43ba269ed359b9f52d35ed4b3ce3f9c842435867" -"checksum futures-sink-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4309a25a1069a1f3c10647b227b9afe6722b67a030d3f00a9cbdc171fc038de4" -"checksum futures-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eb4a32e84935678650944c6ebd0d912db46405d37bf94f1a058435c5080abcb1" -"checksum futures-util-preview 0.3.0-alpha.17 (registry+https://github.com/rust-lang/crates.io-index)" = "af8198c48b222f02326940ce2b3aa9e6e91a32886eeaad7ca3b8e4c70daa3f4e" +"checksum futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "75236e88bd9fe88e5e8bfcd175b665d0528fe03ca4c5207fabc028c8f9d93e98" +"checksum futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "f4914ae450db1921a56c91bde97a27846287d062087d4a652efc09bb3a01ebda" +"checksum futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "3b1dce2a0267ada5c6ff75a8ba864b4e679a9e2aa44262af7a3b5516d530d76e" +"checksum futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "86f148ef6b69f75bb610d4f9a2336d4fc88c4b5b67129d1a340dd0fd362efeec" +"checksum futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "878f1d2fc31355fa02ed2372e741b0c17e58373341e6a122569b4623a14a7d33" +"checksum futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" @@ -5272,8 +5667,7 @@ dependencies = [ "checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" "checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" -"checksum hashbrown 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6587d09be37fb98a11cb08b9000a3f592451c1b1b613ca69d949160e313a430a" -"checksum hashmap_core 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "2d6852e5a86250521973b0c1d39677166d8a9c0047c908d7e04f1aa04177973c" +"checksum hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3cd9867f119b19fecb08cd5c326ad4488d7a1da4bf75b4d95d71db742525aaab" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" @@ -5284,7 +5678,8 @@ dependencies = [ "checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" "checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" "checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" -"checksum http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "372bcb56f939e449117fb0869c2e8fd8753a8223d92a172c6e808cf123a5b6e4" +"checksum hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b" +"checksum http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e06e336150b178206af098a055e3621e8336027e2b4d126bda0bc64824baaf" "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" @@ -5292,18 +5687,19 @@ dependencies = [ "checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" -"checksum impl-codec 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3fa0086251524c50fd53b32e7b05eb6d79e2f97221eaf0c53c0ca9c3096f21d3" -"checksum impl-serde 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5158079de9d4158e0ce1de3ae0bd7be03904efc40b3d7dd8b8c301cbf6b52b56" -"checksum impl-serde 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bbb1ea6188aca47a0eaeeb330d8a82f16cd500f30b897062d23922568727333a" -"checksum indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a61202fbe46c4a951e9404a720a0180bcf3212c750d735cb5c4ba4dc551299f3" +"checksum impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53" +"checksum impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a263dc95daa6c3788c8f7133d86dc2ad89ec5a0c56167f9e3441c5f7f33358c4" +"checksum impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6947b372790f8948f439bb6aaa6baabdf80be1a207a477ff072f83fb793e428f" +"checksum indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d7b3ea5827fcb9d4fda14bf4da5f136f0db2ae9c8f4bd4e2d1c6fde4e6db2" "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -"checksum ipnet 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e61c2da0d0f700c77d2d313dbf4f93e41d235fa12c6681fee06621036df4c2af" +"checksum ipnet 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6cc15ac2e0886d62ba078989ef6920ab23997ab0b04ca5687f1a9a7484296a48" +"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=substrate-v2-add-roles-to-membership)" = "" -"checksum js-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)" = "2cc9a97d7cec30128fd8b28a7c1f9df1c001ceb9b441e2b755e24130a6b43c79" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=use-polkadot-master-substrate-version)" = "" +"checksum js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)" = "5061eb59a5afd4f6ff96dc565963e4e2737b915d070233cb26b88e3f58af41b4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" "checksum jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "161dc223549fa6fe4a4eda675de2d1d3cff5a7164e5c031cdf1e22c734700f8b" @@ -5319,7 +5715,7 @@ dependencies = [ "checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba" +"checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" "checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" "checksum libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4183fb4be621d97baebbbe0c499d6ae337e9e6ec955f9fa3cb29e55547dfacdb" "checksum libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2a7ebd9d597299512e096cc1bd58e955c03ef28f33214a33b9c7e4ace109ff41" @@ -5344,6 +5740,7 @@ dependencies = [ "checksum libp2p-yamux 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a37bed07c8ee0ceeecdfb90d703aa6b1cec99a69b4157e5f7f2c03acacbfca15" "checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" "checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" +"checksum libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd9a7c16c9487e710536b699c962f022266347c94201174aa0a7eb0546051aa" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" "checksum linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c" @@ -5352,7 +5749,7 @@ dependencies = [ "checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" -"checksum malloc_size_of_derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "35adee9ed962cf7d07d62cb58bc45029f3227f5b5b86246caa8632f06c187bc3" +"checksum malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" "checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" @@ -5364,12 +5761,13 @@ dependencies = [ "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" +"checksum multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151" "checksum multistream-select 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e8f3cb4c93f2d79811fc11fa01faab99d8b7b8cbe024b602c27434ff2b08a59d" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" "checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" -"checksum node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" "checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" "checksum nohash-hasher 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4e657a6ec97f9a3ba46f6f7034ea6db9fcd5b71d25ef1074b7bc03da49be0e8e" "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" @@ -5380,10 +5778,11 @@ dependencies = [ "checksum num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" +"checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" "checksum openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.51 (registry+https://github.com/rust-lang/crates.io-index)" = "ba24190c8f0805d3bd2ce028f439fe5af1d55882bbe6261bed1dbc93b50dd6b1" +"checksum openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c977d08e1312e2f7e4b86f9ebaa0ed3b19d1daff75fae88bbb88108afbd801fc" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" @@ -5391,8 +5790,7 @@ dependencies = [ "checksum parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "001fbbb956d8593f321c7a784f64d16b2c99b2657823976eea729006ad2c3668" "checksum parity-scale-codec-derive 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "42af752f59119656fa3cb31e8852ed24e895b968c0bdb41847da7f0cea6d155f" "checksum parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" -"checksum parity-util-mem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2005637ccf93dbb60c85081ccaaf3f945f573da48dcc79f27f9646caa3ec1dc" -"checksum parity-wasm 0.31.3 (registry+https://github.com/rust-lang/crates.io-index)" = "511379a8194230c2395d2f5fa627a5a7e108a9f976656ce723ae68fca4097bfc" +"checksum parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "570093f39f786beea92dcc09e45d8aae7841516ac19a50431953ac82a0e8f85c" "checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" @@ -5405,21 +5803,27 @@ dependencies = [ "checksum paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "423a519e1c6e828f1e73b720f9d9ed2fa643dce8a7737fb43235ce0b41eeaa49" "checksum paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4214c9e912ef61bf42b81ba9a47e8aad1b2ffaf739ab162bf96d1e011f54e6c5" "checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" +"checksum pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27" "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" +"checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" "checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" "checksum pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "72d5370d90f49f70bd033c3d75e87fc529fbfff9d6f7cccef07d6170079d91ea" -"checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b" +"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" "checksum primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "83ef7b3b965c0eadcb6838f34f827e1dfb2939bdd5ebd43f9647e009b12b0371" "checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" +"checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" "checksum proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b" -"checksum proc-macro-hack 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "114cdf1f426eb7f550f01af5f53a33c0946156f6814aec939b3bd77e844f9a9d" +"checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" "checksum proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842" "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -"checksum proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "90cf5f418035b98e655e9cdb225047638296b862b42411c4e45bb88d700f7fc0" +"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" +"checksum prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96d14b1c185652833d24aaad41c5832b0be5616a590227c1fbff57c616754b23" +"checksum prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eb788126ea840817128183f8f603dce02cb7aea25c2a0b764359d8e20010702e" +"checksum prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e7dc378b94ac374644181a2247cebf59a6ec1c88b49ac77f3a94b86b79d0e11" +"checksum prost-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1de482a366941c8d56d19b650fac09ca08508f2a696119ee7513ad590c8bac6f" "checksum protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40361836defdd5871ff7e84096c6f6444af7fc157f8ef1789f54f147687caa20" -"checksum quick-error 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5fb6ccf8db7bbcb9c2eae558db5ab4f3da1c2a87e4e597ed394726bc8ea6ca1d" "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" @@ -5449,13 +5853,13 @@ dependencies = [ "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" -"checksum rpassword 3.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c34fa7bcae7fca3c8471e8417088bbc3ad9af8066b0ecf4f3c0d98a0d772716e" +"checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd" "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" "checksum rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f271e3552cd835fa28c541c34a7e8fdd8cdff09d77fe4eb8f6c42e87a11b096e" "checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" -"checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" +"checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" "checksum schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021" "checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" @@ -5480,98 +5884,117 @@ dependencies = [ "checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" "checksum slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)" = "" "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" -"checksum slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d1d3ec6214d46e57a7ec87c1972bbca66c59172a0cfffa5233c54726afb946bf" +"checksum slog-scope 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "53a5819e0ab73a542e42b0d8ce8bf9e0a470c8f0a370e176a18855566332a120" "checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" "checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" -"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" +"checksum static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fa13613355688665b68639b1c378a62dbedea78aff0fc59a4fa656cbbdec657" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" -"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" -"checksum structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7" -"checksum structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "53010261a84b37689f9ed7d395165029f9cc7abb9f56bbfe86bee2597ed25107" +"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" +"checksum structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4f66a4c0ddf7aee4677995697366de0749b0139057342eccbb609b12d0affc" +"checksum structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8fe0c13e476b4e21ff7f5c4ace3818b6d7bdc16897c31c73862471bc1663acae" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" -"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" +"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" "checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=substrate-v2)" = "" -"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=a2a0eb5398d6223e531455b4c155ef053a4a3a2b)" = "" -"checksum substrate-wasm-builder-runner 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af21b27fad38b212c1919f700cb0def33c88cde14d22e0d1b17d4521f4eb8b40" +"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version)" = "" +"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" +"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" "checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" +"checksum synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203" "checksum sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d5bd3b813d94552a8033c650691645f8dd5a63d614dddd62428a95d3931ef7b6" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" -"checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" +"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +"checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" "checksum tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c5676413eaeb1ea35300a0224416f57abc3bd251657e0fafc12c47ff98c060" "checksum tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2" @@ -5585,7 +6008,7 @@ dependencies = [ "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" "checksum tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c56391be9805bc80163151c0b9e5164ee64f4b0200962c346fea12773158f22d" "checksum tokio-rustls 0.10.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e5cebc3ca33110e460c4d2e7c5e863b159fadcbf125449d896720695b2af709" -"checksum tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2162248ff317e2bc713b261f242b69dbb838b85248ed20bb21df56d60ea4cae7" +"checksum tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" "checksum tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd2c6a3885302581f4401c82af70d792bb9df1700e7437b0aeb4ada94d5388c" "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" @@ -5598,7 +6021,7 @@ dependencies = [ "checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" "checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56" "checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9" -"checksum uint 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8f0f47ed099f0db671ce82c66548c5de012e3c0cba3963514d1db15c7588701" +"checksum uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e75a4cdd7b87b28840dba13c483b9a88ee6bbf16ba5c951ee1ecfcf723078e0d" "checksum unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" @@ -5617,17 +6040,17 @@ dependencies = [ "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" "checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" -"checksum wasm-bindgen 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "cd34c5ba0d228317ce388e87724633c57edca3e7531feb4e25e35aaa07a656af" -"checksum wasm-bindgen-backend 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "927196b315c23eed2748442ba675a4c54a1a079d90d9bdc5ad16ce31cf90b15b" +"checksum wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "637353fd57864c20f1968dc21680fe03985ca3a7ef6a5ce027777513bdecc282" +"checksum wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c85481ca7d1aad8cf40e0140830b2197ce89184a80e54e307b55fd64d78ed63e" "checksum wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" -"checksum wasm-bindgen-macro 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "92c2442bf04d89792816650820c3fb407af8da987a9f10028d5317f5b04c2b4a" -"checksum wasm-bindgen-macro-support 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "9c075d27b7991c68ca0f77fe628c3513e64f8c477d422b859e03f28751b46fc5" -"checksum wasm-bindgen-shared 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "83d61fe986a7af038dd8b5ec660e5849cbd9f38e7492b9404cc48b2b4df731d1" -"checksum wasm-bindgen-webidl 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "9b979afb0535fe4749906a674082db1211de8aef466331d43232f63accb7c07c" -"checksum wasm-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3d6101df9a5987df809216bdda7289f52b58128e6b6a6546e9ee3e6b632b4921" +"checksum wasm-bindgen-macro 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "9f627667b5f4f8bd923c93107b96907c60e7e8eb2636802499fce468c87e3689" +"checksum wasm-bindgen-macro-support 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "a48f5147b0c049bc306d5b9e53c891056a1fd8c4e7311fffbce233e4f200d45e" +"checksum wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "1e272b0d31b78cdcaf5ad440d28276546d99b059a953e5afb387aefce66c3c5a" +"checksum wasm-bindgen-webidl 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "6965845db6189148d8b26387aee0bbf1c84f3da78f57ac543f364fc8ff7ab6e9" +"checksum wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa3e01d234bb71760e685cfafa5e2c96f8ad877c161a721646356651069e26ac" "checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" "checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" -"checksum web-sys 0.3.28 (registry+https://github.com/rust-lang/crates.io-index)" = "c84440699cd02ca23bed6f045ffb1497bc18a3c2628bd13e2093186faaaacf6b" +"checksum web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)" = "0a8b4b06314fd2ce36977e9487607ccff4030779129813f89d0e618710910146" "checksum webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4f7e1cd7900a3a6b65a3e8780c51a3e6b59c0e2c55c6dc69578c288d69f7d082" "checksum webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c10fa4212003ba19a564f25cd8ab572c6791f99a03cc219c13ed35ccab00de0e" "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" @@ -5639,10 +6062,11 @@ dependencies = [ "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" "checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" -"checksum ws 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a6f5bb86663ff4d1639408410f50bf6050367a8525d644d49a6894cd618a631" +"checksum ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a2c47b5798ccc774ffb93ff536aec7c4275d722fd9c740c83cdd1af1f2d94" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" "checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" "checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" -"checksum yamux 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "01bd67889938c48f0049fc60a77341039e6c3eaf16cb7693e6ead7c0ba701295" +"checksum yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2758f29014c1cb7a6e74c1b1160ac8c8203be342d35b73462fc6a13cc6385423" +"checksum zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4090487fa66630f7b166fba2bbb525e247a5449f41c468cc1d98f8ae6ac03120" "checksum zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86" "checksum zeroize_derive 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "080616bd0e31f36095288bb0acdf1f78ef02c2fa15527d7e993f2a6c7591643e" diff --git a/Cargo.toml b/Cargo.toml index 3f74c55907..ef44af005b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,29 +10,31 @@ name = 'joystream-node' version = '2.0.0' [dependencies] -hex-literal = '0.1' +hex-literal = '0.2.1' derive_more = '0.14.0' -exit-future = '0.1' -futures = '0.1' -log = '0.4' +exit-future = '0.1.4' +futures = '0.1.29' +log = '0.4.8' parking_lot = '0.9.0' -tokio = '0.1' -trie-root = '0.15.2' +tokio = '0.1.22' +jsonrpc-core = '13.2.0' +rand = "0.7.2" +structopt = "0.3.3" -[dependencies.basic-authorship] +[dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-basic-authorship' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.babe] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-babe' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.babe-primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-babe-primitives' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.codec] package = 'parity-scale-codec' @@ -45,17 +47,17 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-inherents' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.network] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-network' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' -[dependencies.node-template-runtime] +[dependencies.node-runtime] package = "joystream-node-runtime" git = 'https://github.com/mnaamani/substrate-runtime-joystream' -branch = 'substrate-v2-add-roles-to-membership' +branch = 'use-polkadot-master-substrate-version' # for local development... # clone https://github.com/joystream/substrate-runtime-joystream to this path: # path = 'substrate-runtime-joystream' @@ -63,53 +65,83 @@ branch = 'substrate-v2-add-roles-to-membership' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.sr-io] git = 'https://github.com/paritytech/substrate.git' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.substrate-cli] git = 'https://github.com/paritytech/substrate.git' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.substrate-client] git = 'https://github.com/paritytech/substrate.git' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.substrate-executor] git = 'https://github.com/paritytech/substrate.git' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.substrate-service] git = 'https://github.com/paritytech/substrate.git' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.transaction-pool] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-transaction-pool' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.substrate-telemetry] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-telemetry' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.grandpa] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.grandpa-primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa-primitives' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' [dependencies.im-online] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-im-online' -rev = 'a2a0eb5398d6223e531455b4c155ef053a4a3a2b' +rev = 'polkadot-master' + +[dependencies.substrate-rpc] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-rpc' +rev = 'polkadot-master' + +[dependencies.authority-discovery] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-authority-discovery' +rev = 'polkadot-master' + +[dependencies.client-db] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-client-db' +rev = 'polkadot-master' + +[dependencies.runtime-primitives] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'sr-primitives' +rev = 'polkadot-master' + +[dependencies.offchain] +default_features = false +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-offchain' +rev = 'polkadot-master' [profile.release] panic = 'unwind' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 082e1fe0f6..a45bc3f933 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -14,14 +14,14 @@ // You should have received a copy of the GNU General Public License // along with Joystream node. If not, see . -use hex_literal::{hex, hex_impl}; -use node_template_runtime::{ +use hex_literal::hex; +use node_runtime::{ forum::InputValidationLengthConstraint, AccountId, ActorsConfig, AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, CouncilConfig, CouncilElectionConfig, - DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, DownloadSessionsConfig, - ForumConfig, GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, - Perbill, ProposalsConfig, SessionConfig, SessionKeys, StakerStatus, StakingConfig, SudoConfig, - SystemConfig, DAYS, WASM_BINARY, + DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, ForumConfig, GenesisConfig, + GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, + SessionConfig, SessionKeys, StakerStatus, StakingConfig, SudoConfig, SystemConfig, DAYS, + WASM_BINARY, }; use primitives::{crypto::UncheckedInto, Pair, Public}; @@ -300,9 +300,6 @@ fn staging_testnet_config_genesis() -> GenesisConfig { data_object_storage_registry: Some(DataObjectStorageRegistryConfig { first_relationship_id: 1, }), - downloads: Some(DownloadSessionsConfig { - first_download_session_id: 1, - }), actors: Some(ActorsConfig { enable_storage_role: true, request_life_time: 300, @@ -418,9 +415,6 @@ pub fn testnet_genesis( data_object_storage_registry: Some(DataObjectStorageRegistryConfig { first_relationship_id: 1, }), - downloads: Some(DownloadSessionsConfig { - first_download_session_id: 1, - }), actors: Some(ActorsConfig { enable_storage_role: true, request_life_time: 300, diff --git a/src/cli.rs b/src/cli.rs index bc2b6a2bbc..69011dd5c2 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -6,7 +6,7 @@ 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, Roles as ServiceRoles}; +use substrate_service::{AbstractService, Configuration, Roles as ServiceRoles}; use tokio::runtime::Runtime; /// Parse command line arguments into service configuration. @@ -16,9 +16,12 @@ where 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| { + 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); @@ -39,22 +42,23 @@ where ), } .map_err(|e| format!("{:?}", e)) - }) - } + }, + ), ParseAndPrepare::BuildSpec(cmd) => cmd.run(load_spec), - ParseAndPrepare::ExportBlocks(cmd) => cmd.run_with_builder::<(), _, _, _, _, _>( - |config| Ok(new_full_start!(config).0), + 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| Ok(new_full_start!(config).0), + 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| Ok(new_full_start!(config).0), load_spec), + ParseAndPrepare::RevertChain(cmd) => { + cmd.run_with_builder(|config: Config<_>| Ok(new_full_start!(config).0), load_spec) + } ParseAndPrepare::CustomCommand(_) => Ok(()), }?; diff --git a/src/service.rs b/src/service.rs index 4ce738a913..85eec557dd 100644 --- a/src/service.rs +++ b/src/service.rs @@ -18,33 +18,36 @@ //! Service and ServiceFactory implementation. Specialized wrapper over substrate service. -use babe::{import_queue, start_babe, Config}; -use futures::prelude::*; +use client_db::Backend; use grandpa::{self, FinalityProofProvider as GrandpaFinalityProofProvider}; use inherents::InherentDataProviders; -use network::construct_simple_protocol; -use node_template_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; +use network::{construct_simple_protocol, NetworkService}; +use node_runtime::{self, opaque::Block, GenesisConfig, RuntimeApi}; +use offchain::OffchainWorkers; +use primitives::Blake2Hasher; +use runtime_primitives::traits::Block as BlockT; use std::sync::Arc; -use std::time::Duration; -use substrate_client::LongestChain; +use substrate_client::{Client, LocalCallExecutor, LongestChain}; pub use substrate_executor::{native_executor_instance, NativeExecutor}; use substrate_service::{ - error::Error as ServiceError, AbstractService, Configuration, ServiceBuilder, + error::Error as ServiceError, AbstractService, Configuration, NetworkStatus, NewService, + ServiceBuilder, }; use transaction_pool::{self, txpool::Pool as TransactionPool}; -// Our native executor instance. -native_executor_instance!( - pub Executor, - node_template_runtime::api::dispatch, - node_template_runtime::native_version -); - construct_simple_protocol! { /// Demo protocol attachment for substrate. pub struct NodeProtocol where Block = Block { } } +// Declare an instance of the native executor named `Executor`. Include the wasm binary as the +// equivalent wasm code. +native_executor_instance!( + pub Executor, + node_runtime::api::dispatch, + node_runtime::native_version +); + /// Starts a `ServiceBuilder` for a full service. /// /// Use this macro if you don't actually need the full service, but just the builder in order to @@ -52,223 +55,287 @@ construct_simple_protocol! { #[macro_export] macro_rules! new_full_start { ($config:expr) => {{ + // type RpcExtension = jsonrpc_core::IoHandler; let mut import_setup = None; let inherent_data_providers = inherents::InherentDataProviders::new(); - let mut tasks_to_spawn = None; let builder = substrate_service::ServiceBuilder::new_full::< - node_template_runtime::opaque::Block, - node_template_runtime::RuntimeApi, + node_runtime::opaque::Block, + node_runtime::RuntimeApi, crate::service::Executor, >($config)? - .with_select_chain(|_config, client| { - #[allow(deprecated)] - Ok(substrate_client::LongestChain::new( - client.backend().clone(), - )) + .with_select_chain(|_config, backend| { + Ok(substrate_client::LongestChain::new(backend.clone())) })? .with_transaction_pool(|config, client| { Ok(transaction_pool::txpool::Pool::new( config, - transaction_pool::ChainApi::new(client), + transaction_pool::FullChainApi::new(client), )) })? - .with_import_queue(|_config, client, mut select_chain, transaction_pool| { + .with_import_queue(|_config, client, mut select_chain, _transaction_pool| { let select_chain = select_chain .take() .ok_or_else(|| substrate_service::Error::SelectChainRequired)?; - let (block_import, link_half) = - grandpa::block_import::<_, _, _, node_template_runtime::RuntimeApi, _, _>( - client.clone(), + let (grandpa_block_import, grandpa_link) = + grandpa::block_import::<_, _, _, node_runtime::RuntimeApi, _, _>( client.clone(), + &*client, select_chain, )?; - let justification_import = block_import.clone(); + let justification_import = grandpa_block_import.clone(); - let (import_queue, babe_link, babe_block_import, pruning_task) = babe::import_queue( + let (block_import, babe_link) = babe::block_import( babe::Config::get_or_compute(&*client)?, - block_import, + grandpa_block_import, + client.clone(), + client.clone(), + )?; + + let import_queue = babe::import_queue( + babe_link.clone(), + block_import.clone(), Some(Box::new(justification_import)), None, client.clone(), client, inherent_data_providers.clone(), - Some(transaction_pool), )?; - import_setup = Some((babe_block_import.clone(), link_half, babe_link)); - tasks_to_spawn = Some(vec![Box::new(pruning_task)]); - + import_setup = Some((block_import, grandpa_link, babe_link)); Ok(import_queue) })?; + // We don't have any custom rpc commands... + // .with_rpc_extensions(|client, pool| -> RpcExtension { + // node_rpc::create(client, pool) + // })?; - ( - builder, - import_setup, - inherent_data_providers, - tasks_to_spawn, - ) + (builder, import_setup, inherent_data_providers) }}; } -/// Builds a new service for a full client. -pub fn new_full( - config: Configuration, -) -> Result { - let (builder, mut import_setup, inherent_data_providers, mut tasks_to_spawn) = - new_full_start!(config); - - let service = builder - .with_network_protocol(|_| Ok(NodeProtocol::new()))? - .with_finality_proof_provider(|client| { - Ok(Arc::new(GrandpaFinalityProofProvider::new(client.clone(), client)) as _) - })? - .build()?; +/// Creates a full service from the configuration. +/// +/// We need to use a macro because the test suit doesn't work with an opaque service. It expects +/// concrete types instead. +macro_rules! new_full { + ($config:expr, $with_startup_data: expr) => {{ + use futures::sync::mpsc; + use network::DhtEvent; + + let ( + is_authority, + force_authoring, + name, + disable_grandpa + ) = ( + $config.roles.is_authority(), + $config.force_authoring, + $config.name.clone(), + $config.disable_grandpa + ); + + let (builder, mut import_setup, inherent_data_providers) = new_full_start!($config); + + // Dht event channel from the network to the authority discovery module. Use bounded channel to ensure + // back-pressure. Authority discovery is triggering one event per authority within the current authority set. + // This estimates the authority set size to be somewhere below 10 000 thereby setting the channel buffer size to + // 10 000. + let (dht_event_tx, dht_event_rx) = + mpsc::channel::(10000); + + let service = builder.with_network_protocol(|_| Ok(crate::service::NodeProtocol::new()))? + .with_finality_proof_provider(|client, backend| + Ok(Arc::new(grandpa::FinalityProofProvider::new(backend, client)) as _) + )? + .with_dht_event_tx(dht_event_tx)? + .build()?; + + let (block_import, grandpa_link, babe_link) = import_setup.take() + .expect("Link Half and Block Import are present for Full Services or setup failed before. qed"); + + ($with_startup_data)(&block_import, &babe_link); + + if is_authority { + let proposer = substrate_basic_authorship::ProposerFactory { + client: service.client(), + transaction_pool: service.transaction_pool(), + }; + + let client = service.client(); + let select_chain = service.select_chain() + .ok_or(substrate_service::Error::SelectChainRequired)?; + + let babe_config = babe::BabeParams { + keystore: service.keystore(), + client, + select_chain, + env: proposer, + block_import, + sync_oracle: service.network(), + inherent_data_providers: inherent_data_providers.clone(), + force_authoring, + babe_link, + }; + + let babe = babe::start_babe(babe_config)?; + service.spawn_essential_task(babe); + + let authority_discovery = authority_discovery::AuthorityDiscovery::new( + service.client(), + service.network(), + dht_event_rx, + ); + service.spawn_task(authority_discovery); + } + + let config = grandpa::Config { + // FIXME #1578 make this available through chainspec + gossip_duration: std::time::Duration::from_millis(333), + justification_period: 512, + name: Some(name), + keystore: Some(service.keystore()), + }; + + match (is_authority, disable_grandpa) { + (false, false) => { + // start the lightweight GRANDPA observer + service.spawn_task(Box::new(grandpa::run_grandpa_observer( + config, + grandpa_link, + service.network(), + service.on_exit(), + )?)); + }, + (true, false) => { + // start the full GRANDPA voter + let grandpa_config = grandpa::GrandpaParams { + config: config, + link: grandpa_link, + network: service.network(), + inherent_data_providers: inherent_data_providers.clone(), + on_exit: service.on_exit(), + telemetry_on_connect: Some(service.telemetry_on_connect_stream()), + voting_rule: grandpa::VotingRulesBuilder::default().build(), + }; + service.spawn_task(Box::new(grandpa::run_grandpa_voter(grandpa_config)?)); + }, + (_, true) => { + grandpa::setup_disabled_grandpa( + service.client(), + &inherent_data_providers, + service.network(), + )?; + }, + } + + Ok((service, inherent_data_providers)) + }}; + ($config:expr) => {{ + new_full!($config, |_, _| {}) + }} +} - let (block_import, link_half, babe_link) = import_setup.take().expect( - "Link Half and Block Import are present for Full Services or setup failed before. qed", - ); - - // spawn any futures that were created in the previous setup steps - if let Some(tasks) = tasks_to_spawn.take() { - for task in tasks { - service.spawn_task(task.select(service.on_exit()).map(|_| ()).map_err(|_| ())); - } - } - - if service.config().roles.is_authority() { - let proposer = basic_authorship::ProposerFactory { - client: service.client(), - transaction_pool: service.transaction_pool(), - }; - - let client = service.client(); - let select_chain = service - .select_chain() - .ok_or(ServiceError::SelectChainRequired)?; - - let babe_config = babe::BabeParams { - config: Config::get_or_compute(&*client)?, - keystore: service.keystore(), - client, - select_chain, - block_import, - env: proposer, - sync_oracle: service.network(), - inherent_data_providers: inherent_data_providers.clone(), - force_authoring: service.config().force_authoring, - time_source: babe_link, - }; - - let babe = start_babe(babe_config)?; - let select = babe.select(service.on_exit()).then(|_| Ok(())); - - // the BABE authoring task is considered infallible, i.e. if it - // fails we take down the service with it. - service.spawn_essential_task(select); - } - - let config = grandpa::Config { - // FIXME #1578 make this available through chainspec - gossip_duration: Duration::from_millis(333), - justification_period: 4096, - name: Some(service.config().name.clone()), - keystore: Some(service.keystore()), - }; - - match ( - service.config().roles.is_authority(), - service.config().disable_grandpa, - ) { - (false, false) => { - // start the lightweight GRANDPA observer - service.spawn_task(Box::new(grandpa::run_grandpa_observer( - config, - link_half, - service.network(), - service.on_exit(), - )?)); - } - (true, false) => { - // start the full GRANDPA voter - let grandpa_config = grandpa::GrandpaParams { - config: config, - link: link_half, - network: service.network(), - inherent_data_providers: inherent_data_providers.clone(), - on_exit: service.on_exit(), - telemetry_on_connect: Some(service.telemetry_on_connect_stream()), - }; - - // the GRANDPA voter task is considered infallible, i.e. - // if it fails we take down the service with it. - service.spawn_essential_task(grandpa::run_grandpa_voter(grandpa_config)?); - } - (_, true) => { - grandpa::setup_disabled_grandpa( - service.client(), - &inherent_data_providers, - service.network(), - )?; - } - } +#[allow(dead_code)] +type ConcreteBlock = node_runtime::opaque::Block; +#[allow(dead_code)] +type ConcreteClient = Client< + Backend, + LocalCallExecutor, NativeExecutor>, + ConcreteBlock, + node_runtime::RuntimeApi, +>; +#[allow(dead_code)] +type ConcreteBackend = Backend; + +/// A specialized configuration object for setting up the node.. +pub type NodeConfiguration = + Configuration; - Ok(service) +/// Builds a new service for a full client. +pub fn new_full(config: NodeConfiguration) +-> Result< + NewService< + ConcreteBlock, + ConcreteClient, + LongestChain, + NetworkStatus, + NetworkService::Hash>, + TransactionPool>, + OffchainWorkers< + ConcreteClient, + >::OffchainStorage, + ConcreteBlock, + > + >, + ServiceError, +> +{ + new_full!(config).map(|(service, _)| service) } /// Builds a new service for a light client. pub fn new_light( - config: Configuration, + config: NodeConfiguration, ) -> Result { + // type RpcExtension = jsonrpc_core::IoHandler; let inherent_data_providers = InherentDataProviders::new(); - ServiceBuilder::new_light::(config)? - .with_select_chain(|_config, client| { - #[allow(deprecated)] - Ok(LongestChain::new(client.backend().clone())) - })? + let service = ServiceBuilder::new_light::(config)? + .with_select_chain(|_config, backend| Ok(LongestChain::new(backend.clone())))? .with_transaction_pool(|config, client| { Ok(TransactionPool::new( config, - transaction_pool::ChainApi::new(client), + transaction_pool::FullChainApi::new(client), )) })? - .with_import_queue_and_fprb(|_config, client, _select_chain, transaction_pool| { - #[allow(deprecated)] - let fetch_checker = client - .backend() - .blockchain() - .fetcher() - .upgrade() - .map(|fetcher| fetcher.checker().clone()) - .ok_or_else(|| "Trying to start light import queue without active fetch checker")?; - let block_import = grandpa::light_block_import::<_, _, _, RuntimeApi, _>( - client.clone(), - Arc::new(fetch_checker), - client.clone(), - )?; + .with_import_queue_and_fprb( + |_config, client, backend, fetcher, _select_chain, _tx_pool| { + let fetch_checker = fetcher + .map(|fetcher| fetcher.checker().clone()) + .ok_or_else(|| { + "Trying to start light import queue without active fetch checker" + })?; + let grandpa_block_import = grandpa::light_block_import::<_, _, _, RuntimeApi, _>( + client.clone(), + backend, + Arc::new(fetch_checker), + client.clone(), + )?; - let finality_proof_import = block_import.clone(); - let finality_proof_request_builder = - finality_proof_import.create_finality_proof_request_builder(); + let finality_proof_import = grandpa_block_import.clone(); + let finality_proof_request_builder = + finality_proof_import.create_finality_proof_request_builder(); - // FIXME: pruning task isn't started since light client doesn't do `AuthoritySetup`. - let (import_queue, ..) = import_queue( - Config::get_or_compute(&*client)?, - block_import, - None, - Some(Box::new(finality_proof_import)), - client.clone(), - client, - inherent_data_providers.clone(), - Some(transaction_pool), - )?; + let (babe_block_import, babe_link) = babe::block_import( + babe::Config::get_or_compute(&*client)?, + grandpa_block_import, + client.clone(), + client.clone(), + )?; - Ok((import_queue, finality_proof_request_builder)) - })? + let import_queue = babe::import_queue( + babe_link, + babe_block_import, + None, + Some(Box::new(finality_proof_import)), + client.clone(), + client, + inherent_data_providers.clone(), + )?; + + Ok((import_queue, finality_proof_request_builder)) + }, + )? .with_network_protocol(|_| Ok(NodeProtocol::new()))? - .with_finality_proof_provider(|client| { - Ok(Arc::new(GrandpaFinalityProofProvider::new(client.clone(), client)) as _) + .with_finality_proof_provider(|client, backend| { + Ok(Arc::new(GrandpaFinalityProofProvider::new(backend, client)) as _) })? - .build() + // We don't have any custom rpc extensions + // .with_rpc_extensions(|client, pool| -> RpcExtension { + // node_rpc::create(client, pool) + // })? + .build()?; + + Ok(service) } From fdb62d27fd1818f86ca8f4a329764704deea10f9 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 28 Oct 2019 10:28:00 +0200 Subject: [PATCH 226/350] update tracking polkadot-master --- Cargo.lock | 324 ++++++++++++++++++++++++------------------------- src/service.rs | 4 +- 2 files changed, 164 insertions(+), 164 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8b00eb3a0..520a48d091 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -124,7 +124,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -689,7 +689,7 @@ name = "erased-serde" version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -717,7 +717,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -774,7 +774,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -799,7 +799,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -964,7 +964,7 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1239,7 +1239,7 @@ name = "impl-serde" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1249,7 +1249,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1285,7 +1285,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "itertools" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1301,7 +1301,7 @@ name = "jobserver" version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1355,7 +1355,7 @@ dependencies = [ "node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -1409,7 +1409,7 @@ dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1421,8 +1421,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1467,7 +1467,7 @@ dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2060,7 +2060,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2110,7 +2110,7 @@ dependencies = [ [[package]] name = "miniz_oxide" -version = "0.3.3" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2233,7 +2233,7 @@ dependencies = [ [[package]] name = "node-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -2386,7 +2386,7 @@ dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2414,7 +2414,7 @@ dependencies = [ "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec-derive 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2556,7 +2556,7 @@ dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2637,7 +2637,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2655,7 +2655,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2696,7 +2696,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2712,7 +2712,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2809,7 +2809,7 @@ name = "rand" version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2852,7 +2852,7 @@ name = "rand_core" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3146,20 +3146,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.101" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_derive" -version = "1.0.101" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3169,7 +3169,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3263,14 +3263,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "slog-scope" -version = "4.2.0" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3342,7 +3342,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3354,12 +3354,12 @@ dependencies = [ [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] @@ -3367,7 +3367,7 @@ dependencies = [ [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3385,14 +3385,14 @@ dependencies = [ [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3403,7 +3403,7 @@ dependencies = [ [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3413,7 +3413,7 @@ dependencies = [ [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3421,11 +3421,11 @@ dependencies = [ [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] @@ -3433,10 +3433,10 @@ dependencies = [ [[package]] name = "srml-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3450,7 +3450,7 @@ dependencies = [ [[package]] name = "srml-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3466,11 +3466,11 @@ dependencies = [ [[package]] name = "srml-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3486,11 +3486,11 @@ dependencies = [ [[package]] name = "srml-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3501,10 +3501,10 @@ dependencies = [ [[package]] name = "srml-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3515,11 +3515,11 @@ dependencies = [ [[package]] name = "srml-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3530,10 +3530,10 @@ dependencies = [ [[package]] name = "srml-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3548,10 +3548,10 @@ dependencies = [ [[package]] name = "srml-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3566,11 +3566,11 @@ dependencies = [ [[package]] name = "srml-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3583,10 +3583,10 @@ dependencies = [ [[package]] name = "srml-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] @@ -3594,10 +3594,10 @@ dependencies = [ [[package]] name = "srml-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3609,7 +3609,7 @@ dependencies = [ [[package]] name = "srml-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3622,12 +3622,12 @@ dependencies = [ [[package]] name = "srml-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3641,11 +3641,11 @@ dependencies = [ [[package]] name = "srml-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3661,21 +3661,21 @@ dependencies = [ [[package]] name = "srml-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3686,7 +3686,7 @@ dependencies = [ [[package]] name = "srml-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3694,7 +3694,7 @@ dependencies = [ "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3707,7 +3707,7 @@ dependencies = [ [[package]] name = "srml-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3719,7 +3719,7 @@ dependencies = [ [[package]] name = "srml-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3731,7 +3731,7 @@ dependencies = [ [[package]] name = "srml-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3741,12 +3741,12 @@ dependencies = [ [[package]] name = "srml-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3758,7 +3758,7 @@ dependencies = [ [[package]] name = "srml-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3767,11 +3767,11 @@ dependencies = [ [[package]] name = "srml-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3782,7 +3782,7 @@ dependencies = [ [[package]] name = "srml-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3850,7 +3850,7 @@ dependencies = [ "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3872,10 +3872,10 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3884,7 +3884,7 @@ dependencies = [ [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3906,7 +3906,7 @@ dependencies = [ [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3917,7 +3917,7 @@ dependencies = [ [[package]] name = "substrate-basic-authorship" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3945,10 +3945,10 @@ dependencies = [ [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -3960,18 +3960,18 @@ dependencies = [ [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4007,7 +4007,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4037,7 +4037,7 @@ dependencies = [ [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -4061,7 +4061,7 @@ dependencies = [ [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4099,7 +4099,7 @@ dependencies = [ [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4113,7 +4113,7 @@ dependencies = [ [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4132,7 +4132,7 @@ dependencies = [ [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4150,7 +4150,7 @@ dependencies = [ [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4164,17 +4164,17 @@ dependencies = [ [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4198,7 +4198,7 @@ dependencies = [ [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4209,7 +4209,7 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4238,10 +4238,10 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4255,8 +4255,8 @@ source = "git+https://github.com/mnaamani/substrate-forum-module?branch=use-polk dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4270,7 +4270,7 @@ dependencies = [ [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4280,7 +4280,7 @@ dependencies = [ [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4291,7 +4291,7 @@ dependencies = [ [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4303,7 +4303,7 @@ dependencies = [ [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4318,7 +4318,7 @@ dependencies = [ [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4339,7 +4339,7 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4360,7 +4360,7 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4387,7 +4387,7 @@ dependencies = [ [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4396,7 +4396,7 @@ dependencies = [ [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4405,7 +4405,7 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4418,7 +4418,7 @@ dependencies = [ [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4427,7 +4427,7 @@ dependencies = [ [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4448,7 +4448,7 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4465,10 +4465,10 @@ dependencies = [ [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] @@ -4476,7 +4476,7 @@ dependencies = [ [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4502,7 +4502,7 @@ dependencies = [ [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4513,7 +4513,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4524,23 +4524,23 @@ dependencies = [ [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] @@ -4548,16 +4548,16 @@ dependencies = [ [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4568,7 +4568,7 @@ dependencies = [ "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4599,7 +4599,7 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", @@ -4610,7 +4610,7 @@ dependencies = [ [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4621,7 +4621,7 @@ dependencies = [ [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4640,7 +4640,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4650,11 +4650,11 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-scope 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4662,13 +4662,13 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", ] @@ -4676,7 +4676,7 @@ dependencies = [ [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4692,7 +4692,7 @@ dependencies = [ [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4711,7 +4711,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#37bda95b08873f21adb5db32b0c84c6b471b8860" +source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" dependencies = [ "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4738,7 +4738,7 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.5" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4764,7 +4764,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5075,7 +5075,7 @@ name = "toml" version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5279,7 +5279,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5311,7 +5311,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5331,7 +5331,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5660,7 +5660,7 @@ dependencies = [ "checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" -"checksum getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "473a1265acc8ff1e808cd0a1af8cee3c2ee5200916058a2ca113c29f2d903571" +"checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" @@ -5695,7 +5695,7 @@ dependencies = [ "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" "checksum ipnet 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6cc15ac2e0886d62ba078989ef6920ab23997ab0b04ca5687f1a9a7484296a48" -"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" +"checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" "checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=use-polkadot-master-substrate-version)" = "" @@ -5756,7 +5756,7 @@ dependencies = [ "checksum memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ef49315991403ba5fa225a70399df5e115f57b274cb0b1b4bcd6e734fa5bd783" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" "checksum merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "de2d16d3b15fec5943d1144f861f61f279d165fdd60998ca262913b9bf1c8adb" -"checksum miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "304f66c19be2afa56530fa7c39796192eef38618da8d19df725ad7c6d6b2aaae" +"checksum miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625" "checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" @@ -5871,8 +5871,8 @@ dependencies = [ "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" -"checksum serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "9796c9b7ba2ffe7a9ce53c2287dfc48080f4b2b362fcc245a259b3a7201119dd" -"checksum serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "4b133a43a1ecd55d4086bd5b4dc6c1751c68b1bfbeba7a5040442022c7e7c02e" +"checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" +"checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" "checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" "checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" @@ -5884,7 +5884,7 @@ dependencies = [ "checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" "checksum slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)" = "" "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" -"checksum slog-scope 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "53a5819e0ab73a542e42b0d8ce8bf9e0a470c8f0a370e176a18855566332a120" +"checksum slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6" "checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" "checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" @@ -5984,7 +5984,7 @@ dependencies = [ "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" -"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" +"checksum syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0e7bedb3320d0f3035594b0b723c8a28d7d336a3eda3881db79e61d676fb644c" "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" "checksum synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203" "checksum sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d5bd3b813d94552a8033c650691645f8dd5a63d614dddd62428a95d3931ef7b6" diff --git a/src/service.rs b/src/service.rs index 85eec557dd..190f52ddd9 100644 --- a/src/service.rs +++ b/src/service.rs @@ -30,7 +30,7 @@ use std::sync::Arc; use substrate_client::{Client, LocalCallExecutor, LongestChain}; pub use substrate_executor::{native_executor_instance, NativeExecutor}; use substrate_service::{ - error::Error as ServiceError, AbstractService, Configuration, NetworkStatus, NewService, + error::Error as ServiceError, AbstractService, Configuration, NetworkStatus, Service, ServiceBuilder, }; use transaction_pool::{self, txpool::Pool as TransactionPool}; @@ -255,7 +255,7 @@ pub type NodeConfiguration = /// Builds a new service for a full client. pub fn new_full(config: NodeConfiguration) -> Result< - NewService< + Service< ConcreteBlock, ConcreteClient, LongestChain, From e72d1ebc39404f29deeb3f0be99dda0d0444352d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 31 Oct 2019 13:07:33 +0200 Subject: [PATCH 227/350] use fixed commit hash 0e3001a1 --- Cargo.lock | 1335 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 46 +- 2 files changed, 689 insertions(+), 692 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 520a48d091..c9305ff470 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -338,7 +338,7 @@ version = "1.0.46" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -476,7 +476,7 @@ dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -799,7 +799,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -859,7 +859,7 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -869,7 +869,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1050,7 +1050,15 @@ name = "heck" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-segmentation 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hermit-abi" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1236,7 +1244,7 @@ dependencies = [ [[package]] name = "impl-serde" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1244,7 +1252,7 @@ dependencies = [ [[package]] name = "impl-trait-for-tuples" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1315,34 +1323,34 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=use-polkadot-master-substrate-version)", + "joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?branch=development)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1350,53 +1358,52 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=use-polkadot-master-substrate-version#32da3d32a1f90d14cd1f4ad56591c1f78357842d" +source = "git+https://github.com/joystream/substrate-runtime-joystream?branch=development#d62a75861beff8f79352a087a2c43eeda9c5bacb" dependencies = [ - "node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "js-sys" -version = "0.3.29" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1480,7 +1487,7 @@ dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1541,7 +1548,7 @@ dependencies = [ "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1602,7 +1609,7 @@ dependencies = [ "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1634,7 +1641,7 @@ dependencies = [ "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1689,7 +1696,7 @@ dependencies = [ "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1705,7 +1712,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1731,7 +1738,7 @@ dependencies = [ "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1754,7 +1761,7 @@ dependencies = [ "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1849,7 +1856,7 @@ dependencies = [ "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1862,9 +1869,9 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1874,7 +1881,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1913,11 +1920,11 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2076,7 +2083,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "memoffset" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2178,7 +2185,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2230,15 +2237,6 @@ dependencies = [ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "node-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" -dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", -] - [[package]] name = "nodrop" version = "0.1.14" @@ -2298,9 +2296,10 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.10.1" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2494,7 +2493,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2506,7 +2505,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2521,7 +2520,7 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2535,7 +2534,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2618,7 +2617,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2627,7 +2626,7 @@ name = "proc-macro-crate" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "toml 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2938,7 +2937,7 @@ dependencies = [ "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3290,7 +3289,7 @@ dependencies = [ [[package]] name = "smallvec" -version = "0.6.10" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3305,7 +3304,7 @@ dependencies = [ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3324,7 +3323,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3342,7 +3341,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3354,66 +3353,66 @@ dependencies = [ [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3421,247 +3420,247 @@ dependencies = [ [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3672,66 +3671,66 @@ dependencies = [ [[package]] name = "srml-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3741,54 +3740,54 @@ dependencies = [ [[package]] name = "srml-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "srml-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] @@ -3872,19 +3871,19 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3895,40 +3894,40 @@ dependencies = [ "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-basic-authorship" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] @@ -3945,22 +3944,22 @@ dependencies = [ [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3971,7 +3970,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3989,17 +3988,17 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4007,7 +4006,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4019,25 +4018,25 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -4047,24 +4046,24 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4078,42 +4077,42 @@ dependencies = [ "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4122,49 +4121,49 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4174,7 +4173,7 @@ dependencies = [ [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4183,14 +4182,14 @@ dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4198,21 +4197,21 @@ dependencies = [ [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4220,17 +4219,17 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4238,87 +4237,87 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-forum-module" version = "1.1.0" -source = "git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version#39324e3f02b34c658b098926032d27c046ad6bf9" +source = "git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version#2f45f82bd163181dff3e7024b6afd0337925a1b8" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4326,7 +4325,7 @@ dependencies = [ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4343,14 +4342,14 @@ dependencies = [ "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4360,7 +4359,7 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4370,33 +4369,33 @@ dependencies = [ "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4405,7 +4404,7 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4418,16 +4417,16 @@ dependencies = [ [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4436,7 +4435,7 @@ dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4450,11 +4449,11 @@ dependencies = [ "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4465,18 +4464,18 @@ dependencies = [ [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4486,23 +4485,23 @@ dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4515,25 +4514,25 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-http-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4542,13 +4541,13 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4557,7 +4556,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4571,25 +4570,23 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4599,29 +4596,29 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4629,10 +4626,10 @@ dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4640,7 +4637,7 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4662,43 +4659,43 @@ dependencies = [ [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4711,7 +4708,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=polkadot-master#23da63a883ae84df2d836c3fd0fcc5c6fe8211b1" +source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4832,7 +4829,7 @@ name = "threadpool" version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4875,7 +4872,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4969,7 +4966,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5023,7 +5020,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5072,7 +5069,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.5.3" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5158,12 +5155,12 @@ name = "unicode-normalization" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "unicode-segmentation" -version = "1.3.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -5262,16 +5259,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen" -version = "0.2.52" +version = "0.2.53" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.52" +version = "0.2.53" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5280,7 +5277,7 @@ dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5290,40 +5287,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.52" +version = "0.2.53" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro-support 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.52" +version = "0.2.53" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.52" +version = "0.2.53" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen-webidl" -version = "0.2.52" +version = "0.2.53" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5332,7 +5329,7 @@ dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5342,11 +5339,11 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5372,14 +5369,14 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.29" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-webidl 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-webidl 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5640,7 +5637,7 @@ dependencies = [ "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" @@ -5670,6 +5667,7 @@ dependencies = [ "checksum hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3cd9867f119b19fecb08cd5c326ad4488d7a1da4bf75b4d95d71db742525aaab" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" +"checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" "checksum hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639" "checksum hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0" @@ -5688,8 +5686,8 @@ dependencies = [ "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" "checksum impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53" -"checksum impl-serde 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a263dc95daa6c3788c8f7133d86dc2ad89ec5a0c56167f9e3441c5f7f33358c4" -"checksum impl-trait-for-tuples 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6947b372790f8948f439bb6aaa6baabdf80be1a207a477ff072f83fb793e428f" +"checksum impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "58e3cae7e99c7ff5a995da2cf78dd0a5383740eda71d98cf7b1910c301ac69b8" +"checksum impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d" "checksum indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d7b3ea5827fcb9d4fda14bf4da5f136f0db2ae9c8f4bd4e2d1c6fde4e6db2" "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" @@ -5698,8 +5696,8 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=use-polkadot-master-substrate-version)" = "" -"checksum js-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)" = "5061eb59a5afd4f6ff96dc565963e4e2737b915d070233cb26b88e3f58af41b4" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?branch=development)" = "" +"checksum js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "a60f6ca5eb7ae3014e3ab34e3189a1560267245216e19f76a021a4c669817e62" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" "checksum jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "161dc223549fa6fe4a4eda675de2d1d3cff5a7164e5c031cdf1e22c734700f8b" @@ -5752,7 +5750,7 @@ dependencies = [ "checksum malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" -"checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" +"checksum memoffset 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a85c1a8c329f11437034d7313dca647c79096523533a1c79e86f1d0f657c7cc" "checksum memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ef49315991403ba5fa225a70399df5e115f57b274cb0b1b4bcd6e734fa5bd783" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" "checksum merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "de2d16d3b15fec5943d1144f861f61f279d165fdd60998ca262913b9bf1c8adb" @@ -5767,7 +5765,6 @@ dependencies = [ "checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" -"checksum node-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" "checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" "checksum nohash-hasher 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4e657a6ec97f9a3ba46f6f7034ea6db9fcd5b71d25ef1074b7bc03da49be0e8e" "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" @@ -5775,7 +5772,7 @@ dependencies = [ "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" "checksum num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454" "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" -"checksum num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273" +"checksum num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "155394f924cdddf08149da25bfb932d226b4a593ca7468b08191ff6335941af5" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" @@ -5886,42 +5883,42 @@ dependencies = [ "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" "checksum slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6" "checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" -"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" +"checksum smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "533e29e15d0748f28afbaf4ff7cab44d73e483a8e50b38c40bd13b7f3d48f542" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" -"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fa13613355688665b68639b1c378a62dbedea78aff0fc59a4fa656cbbdec657" @@ -5933,54 +5930,54 @@ dependencies = [ "checksum structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8fe0c13e476b4e21ff7f5c4ace3818b6d7bdc16897c31c73862471bc1663acae" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" -"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" -"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version)" = "" -"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" -"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" -"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=polkadot-master)" = "" +"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" @@ -6014,7 +6011,7 @@ dependencies = [ "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" "checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" -"checksum toml 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7aabe75941d914b72bf3e5d3932ed92ce0664d49d8432305a8b547c37227724" +"checksum toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c04dffffeac90885436d23c692517bb5b8b3f8863e4afc15023628d067d667b7" "checksum trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a" "checksum trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" @@ -6025,7 +6022,7 @@ dependencies = [ "checksum unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" -"checksum unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1967f4cdfc355b37fd76d2a954fb2ed3871034eb4f26d60537d88795cfc332a9" +"checksum unicode-segmentation 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49f5526225fd8b77342d5986ab5f6055552e9c0776193b5b63fd53b46debfad7" "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" @@ -6040,17 +6037,17 @@ dependencies = [ "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" "checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" -"checksum wasm-bindgen 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "637353fd57864c20f1968dc21680fe03985ca3a7ef6a5ce027777513bdecc282" -"checksum wasm-bindgen-backend 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c85481ca7d1aad8cf40e0140830b2197ce89184a80e54e307b55fd64d78ed63e" +"checksum wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "4c29d57d5c3b3bc53bbe35c5a4f4a0df994d870b7d3cb0ad1c2065e21822ae41" +"checksum wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "aa2868fa93e5bf36a9364d1277a0f97392748a8217d9aa0ec3f1cdbdf7ad1a60" "checksum wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" -"checksum wasm-bindgen-macro 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "9f627667b5f4f8bd923c93107b96907c60e7e8eb2636802499fce468c87e3689" -"checksum wasm-bindgen-macro-support 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "a48f5147b0c049bc306d5b9e53c891056a1fd8c4e7311fffbce233e4f200d45e" -"checksum wasm-bindgen-shared 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "1e272b0d31b78cdcaf5ad440d28276546d99b059a953e5afb387aefce66c3c5a" -"checksum wasm-bindgen-webidl 0.2.52 (registry+https://github.com/rust-lang/crates.io-index)" = "6965845db6189148d8b26387aee0bbf1c84f3da78f57ac543f364fc8ff7ab6e9" +"checksum wasm-bindgen-macro 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "41e80594782a241bf3d92ee5d1247b8fb496250a8a2ff1e136942d433fbbce14" +"checksum wasm-bindgen-macro-support 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "74b9950355b1d92ca09de0984bdd4de7edda5e8af12daf0c052a0a075e8c9157" +"checksum wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "7493fe67ad99672ef3de3e6ba513fb03db276358c8cc9588ce5a008c6e48ad68" +"checksum wasm-bindgen-webidl 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "8272d9a8831be66b30908996b71b3eaf9b83de050f89e4dc34826a19980eb59d" "checksum wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa3e01d234bb71760e685cfafa5e2c96f8ad877c161a721646356651069e26ac" "checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" "checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" -"checksum web-sys 0.3.29 (registry+https://github.com/rust-lang/crates.io-index)" = "0a8b4b06314fd2ce36977e9487607ccff4030779129813f89d0e618710910146" +"checksum web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "0232f38e5c66384edaedaa726ae2d6313e3ed3ae860693c497a3193af3e161ce" "checksum webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4f7e1cd7900a3a6b65a3e8780c51a3e6b59c0e2c55c6dc69578c288d69f7d082" "checksum webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c10fa4212003ba19a564f25cd8ab572c6791f99a03cc219c13ed35ccab00de0e" "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" diff --git a/Cargo.toml b/Cargo.toml index ef44af005b..1b2c6ba8e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,17 +24,17 @@ structopt = "0.3.3" [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-basic-authorship' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.babe] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-babe' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.babe-primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-babe-primitives' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.codec] package = 'parity-scale-codec' @@ -47,17 +47,17 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-inherents' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.network] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-network' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = "joystream-node-runtime" -git = 'https://github.com/mnaamani/substrate-runtime-joystream' -branch = 'use-polkadot-master-substrate-version' +git = 'https://github.com/joystream/substrate-runtime-joystream' +branch = 'development' # for local development... # clone https://github.com/joystream/substrate-runtime-joystream to this path: # path = 'substrate-runtime-joystream' @@ -65,83 +65,83 @@ branch = 'use-polkadot-master-substrate-version' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.sr-io] git = 'https://github.com/paritytech/substrate.git' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.substrate-cli] git = 'https://github.com/paritytech/substrate.git' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.substrate-client] git = 'https://github.com/paritytech/substrate.git' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.substrate-executor] git = 'https://github.com/paritytech/substrate.git' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.substrate-service] git = 'https://github.com/paritytech/substrate.git' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.transaction-pool] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-transaction-pool' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.substrate-telemetry] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-telemetry' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.grandpa] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.grandpa-primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa-primitives' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.im-online] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-im-online' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.substrate-rpc] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-rpc' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.authority-discovery] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-authority-discovery' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.client-db] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-client-db' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.runtime-primitives] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'sr-primitives' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.offchain] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-offchain' -rev = 'polkadot-master' +rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [profile.release] panic = 'unwind' From fdedba1d731906c9193386149ccefe944cad393f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Nov 2019 09:07:27 +0200 Subject: [PATCH 228/350] support versioned store --- Cargo.lock | 52 +++++++++++++++++++++++++++++++++++++++++------ Cargo.toml | 6 +++--- src/chain_spec.rs | 37 +++++++++++++++++++++++++++------ 3 files changed, 80 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c9305ff470..0c9fb0707c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1323,7 +1323,7 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?branch=development)", + "joystream-node-runtime 6.0.0", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1358,7 +1358,6 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?branch=development#d62a75861beff8f79352a087a2c43eeda9c5bacb" dependencies = [ "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1391,10 +1390,12 @@ dependencies = [ "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version)", + "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)", + "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=d4c5ca400a5f421665ae3addfce312bc5cc2a9d0)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4250,7 +4251,7 @@ dependencies = [ [[package]] name = "substrate-forum-module" version = "1.1.0" -source = "git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version#2f45f82bd163181dff3e7024b6afd0337925a1b8" +source = "git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a#4bdeadaadfcca1fd6e822c520f429d4beacc4c8a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4700,6 +4701,44 @@ dependencies = [ "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-versioned-store" +version = "1.1.0" +source = "git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe#d0c68722405355404840512edf3064d5ced3e1fe" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", +] + +[[package]] +name = "substrate-versioned-store-permissions-module" +version = "1.0.0" +source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=d4c5ca400a5f421665ae3addfce312bc5cc2a9d0#d4c5ca400a5f421665ae3addfce312bc5cc2a9d0" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)", +] + [[package]] name = "substrate-wasm-builder-runner" version = "1.0.4" @@ -5696,7 +5735,6 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?branch=development)" = "" "checksum js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "a60f6ca5eb7ae3014e3ab34e3189a1560267245216e19f76a021a4c669817e62" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -5950,7 +5988,7 @@ dependencies = [ "checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=use-polkadot-master-substrate-version)" = "" +"checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" @@ -5976,6 +6014,8 @@ dependencies = [ "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)" = "" +"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=d4c5ca400a5f421665ae3addfce312bc5cc2a9d0)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" diff --git a/Cargo.toml b/Cargo.toml index 1b2c6ba8e7..f4fb11777c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,11 +56,11 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = "joystream-node-runtime" -git = 'https://github.com/joystream/substrate-runtime-joystream' -branch = 'development' +# git = 'https://github.com/bedeho/substrate-runtime-joystream' +# branch = 'add-content-wg' # for local development... # clone https://github.com/joystream/substrate-runtime-joystream to this path: -# path = 'substrate-runtime-joystream' +path = 'substrate-runtime-joystream' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index a45bc3f933..30740fcfb1 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -16,12 +16,13 @@ use hex_literal::hex; use node_runtime::{ - forum::InputValidationLengthConstraint, AccountId, ActorsConfig, AuthorityDiscoveryConfig, - BabeConfig, Balance, BalancesConfig, CouncilConfig, CouncilElectionConfig, - DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, ForumConfig, GenesisConfig, - GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, Perbill, ProposalsConfig, - SessionConfig, SessionKeys, StakerStatus, StakingConfig, SudoConfig, SystemConfig, DAYS, - WASM_BINARY, + forum::InputValidationLengthConstraint, + versioned_store::InputValidationLengthConstraint as VsInputValidation, AccountId, ActorsConfig, + AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, CouncilConfig, + CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, + ForumConfig, GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, + Perbill, ProposalsConfig, SessionConfig, SessionKeys, StakerStatus, StakingConfig, SudoConfig, + SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, }; use primitives::{crypto::UncheckedInto, Pair, Public}; @@ -153,6 +154,10 @@ impl Alternative { } } +fn new_vs_validation(min: u16, max_min_diff: u16) -> VsInputValidation { + return VsInputValidation { min, max_min_diff }; +} + /// Joystream LiveTestnet generator pub fn live_testnet_config() -> Result { ChainSpec::from_json_bytes(&include_bytes!("../res/dummy.json")[..]) @@ -304,6 +309,16 @@ fn staging_testnet_config_genesis() -> GenesisConfig { 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), + }), } } @@ -419,5 +434,15 @@ pub fn testnet_genesis( 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), + }), } } From 998e362d303c7656843122b2f04d41c54b695a6b Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Nov 2019 22:17:35 +0200 Subject: [PATCH 229/350] cargo update --- Cargo.lock | 564 ++++++++++++++++++++++++++++------------------------- 1 file changed, 301 insertions(+), 263 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0c9fb0707c..b8112b7280 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "ahash" -version = "0.2.17" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -81,6 +81,11 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "anyhow" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "app_dirs" version = "1.2.1" @@ -94,7 +99,7 @@ dependencies = [ [[package]] name = "arc-swap" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -110,6 +115,11 @@ dependencies = [ "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "arrayvec" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "asn1_der" version = "0.6.3" @@ -124,7 +134,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -157,7 +167,7 @@ name = "backtrace-sys" version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -180,7 +190,7 @@ version = "0.47.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -207,7 +217,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bitvec" -version = "0.14.0" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -244,7 +254,7 @@ name = "block-buffer" version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -260,7 +270,7 @@ dependencies = [ [[package]] name = "block-padding" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -286,7 +296,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "byte-slice-cast" -version = "0.3.2" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -334,16 +344,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cc" -version = "1.0.46" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "cexpr" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -361,7 +371,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -394,7 +404,7 @@ name = "clear_on_drop" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -460,23 +470,23 @@ dependencies = [ [[package]] name = "crossbeam-deque" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crossbeam-epoch" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -497,6 +507,16 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "crossbeam-utils" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "crunchy" version = "0.2.2" @@ -717,8 +737,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -740,10 +760,10 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -766,7 +786,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "flate2" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -801,7 +821,7 @@ name = "fork-tree" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -859,7 +879,7 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -869,7 +889,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1030,10 +1050,10 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ahash 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", + "ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1050,7 +1070,7 @@ name = "heck" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-segmentation 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1221,7 +1241,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1231,7 +1251,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1239,7 +1259,7 @@ name = "impl-codec" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1257,7 +1277,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1288,7 +1308,7 @@ dependencies = [ [[package]] name = "ipnet" -version = "2.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1326,13 +1346,13 @@ dependencies = [ "joystream-node-runtime 6.0.0", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -1359,7 +1379,7 @@ dependencies = [ name = "joystream-node-runtime" version = "6.0.0" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -1401,10 +1421,10 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1464,7 +1484,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1488,10 +1508,10 @@ dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1549,7 +1569,7 @@ dependencies = [ "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1575,7 +1595,7 @@ name = "libloading" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1610,7 +1630,7 @@ dependencies = [ "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1642,7 +1662,7 @@ dependencies = [ "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1666,7 +1686,7 @@ name = "libp2p-deflate" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1697,7 +1717,7 @@ dependencies = [ "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1713,7 +1733,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1739,7 +1759,7 @@ dependencies = [ "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1762,7 +1782,7 @@ dependencies = [ "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1857,7 +1877,7 @@ dependencies = [ "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1870,9 +1890,9 @@ dependencies = [ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1882,7 +1902,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1896,7 +1916,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ipnet 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipnet 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1921,11 +1941,11 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1965,7 +1985,7 @@ version = "5.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2002,9 +2022,9 @@ name = "libz-sys" version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2068,8 +2088,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2077,6 +2097,11 @@ name = "matches" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "maybe-uninit" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "memchr" version = "2.2.1" @@ -2084,7 +2109,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "memoffset" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2096,7 +2121,7 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2186,7 +2211,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2211,8 +2236,8 @@ dependencies = [ "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)", "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2232,7 +2257,7 @@ version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2264,7 +2289,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2273,7 +2298,7 @@ version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2284,12 +2309,12 @@ dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-traits" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2297,7 +2322,7 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2355,9 +2380,9 @@ version = "0.9.52" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", + "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2407,25 +2432,25 @@ dependencies = [ [[package]] name = "parity-scale-codec" -version = "1.0.6" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec-derive 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-slice-cast 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec-derive 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-scale-codec-derive" -version = "1.0.3" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2494,7 +2519,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2506,7 +2531,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2521,7 +2546,7 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2535,7 +2560,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2556,7 +2581,7 @@ dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2603,7 +2628,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "pkg-config" -version = "0.3.16" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2627,7 +2652,7 @@ name = "proc-macro-crate" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2637,7 +2662,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2655,7 +2680,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2924,7 +2949,7 @@ name = "rayon" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2934,11 +2959,11 @@ name = "rayon-core" version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2983,7 +3008,7 @@ name = "ring" version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3109,18 +3134,18 @@ dependencies = [ [[package]] name = "security-framework" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "security-framework-sys" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3159,7 +3184,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3273,7 +3298,7 @@ name = "slog-scope" version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3290,8 +3315,11 @@ dependencies = [ [[package]] name = "smallvec" -version = "0.6.12" +version = "0.6.13" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "snow" @@ -3305,7 +3333,7 @@ dependencies = [ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3317,14 +3345,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)", + "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3357,8 +3385,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3372,7 +3400,7 @@ dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3389,7 +3417,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3405,7 +3433,7 @@ name = "sr-staking-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] @@ -3424,7 +3452,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3435,7 +3463,7 @@ name = "srml-authority-discovery" version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3453,7 +3481,7 @@ version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3469,7 +3497,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3488,7 +3516,7 @@ name = "srml-balances" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3503,7 +3531,7 @@ name = "srml-executive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3518,7 +3546,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3532,7 +3560,7 @@ name = "srml-grandpa" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3550,7 +3578,7 @@ name = "srml-im-online" version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3568,7 +3596,7 @@ name = "srml-indices" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3585,7 +3613,7 @@ name = "srml-metadata" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3596,7 +3624,7 @@ name = "srml-offences" version = "1.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3611,7 +3639,7 @@ name = "srml-randomness-collective-flip" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3625,7 +3653,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3643,7 +3671,7 @@ name = "srml-staking" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3666,7 +3694,7 @@ dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3674,7 +3702,7 @@ name = "srml-sudo" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3692,7 +3720,7 @@ dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3744,7 +3772,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3760,7 +3788,7 @@ name = "srml-system-rpc-runtime-api" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] @@ -3770,7 +3798,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3784,7 +3812,7 @@ name = "srml-transaction-payment" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3803,7 +3831,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "static_assertions" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3834,23 +3862,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "structopt" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "structopt-derive" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3874,7 +3902,7 @@ name = "substrate-application-crypto" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3891,7 +3919,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3908,7 +3936,7 @@ name = "substrate-authority-discovery-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3921,7 +3949,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -3965,7 +3993,7 @@ dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3990,7 +4018,7 @@ dependencies = [ "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4017,7 +4045,7 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4045,7 +4073,7 @@ dependencies = [ "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4072,8 +4100,8 @@ dependencies = [ "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4101,7 +4129,7 @@ name = "substrate-consensus-babe-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4120,7 +4148,7 @@ dependencies = [ "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4137,7 +4165,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4168,7 +4196,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4180,7 +4208,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4216,7 +4244,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4240,7 +4268,7 @@ name = "substrate-finality-grandpa-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4254,7 +4282,7 @@ version = "1.1.0" source = "git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a#4bdeadaadfcca1fd6e822c520f429d4beacc4c8a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4282,7 +4310,7 @@ name = "substrate-inherents" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4335,7 +4363,7 @@ dependencies = [ "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4343,7 +4371,7 @@ dependencies = [ "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4370,8 +4398,8 @@ dependencies = [ "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4440,8 +4468,8 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4483,7 +4511,7 @@ dependencies = [ "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4511,7 +4539,7 @@ dependencies = [ "jsonrpc-derive 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4566,7 +4594,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4588,7 +4616,7 @@ dependencies = [ "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4611,7 +4639,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] @@ -4623,8 +4651,8 @@ source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4679,7 +4707,7 @@ dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4694,7 +4722,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4707,7 +4735,7 @@ version = "1.1.0" source = "git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe#d0c68722405355404840512edf3064d5ced3e1fe" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4726,7 +4754,7 @@ version = "1.0.0" source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=d4c5ca400a5f421665ae3addfce312bc5cc2a9d0#d4c5ca400a5f421665ae3addfce312bc5cc2a9d0" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -4774,7 +4802,7 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4795,18 +4823,18 @@ dependencies = [ [[package]] name = "synstructure" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sysinfo" -version = "0.9.5" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4868,7 +4896,7 @@ name = "threadpool" version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4911,7 +4939,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5005,7 +5033,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5053,13 +5081,13 @@ name = "tokio-threadpool" version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5108,7 +5136,7 @@ dependencies = [ [[package]] name = "toml" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5121,7 +5149,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5170,15 +5198,15 @@ dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "unicase" -version = "2.5.1" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5191,15 +5219,15 @@ dependencies = [ [[package]] name = "unicode-normalization" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "unicode-segmentation" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -5276,6 +5304,11 @@ name = "version_check" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "version_check" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "void" version = "1.0.2" @@ -5298,16 +5331,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen" -version = "0.2.53" +version = "0.2.54" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.53" +version = "0.2.54" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5315,8 +5348,8 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5326,49 +5359,49 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.53" +version = "0.2.54" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro-support 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.53" +version = "0.2.54" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.53" +version = "0.2.54" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen-webidl" -version = "0.2.53" +version = "0.2.54" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5378,11 +5411,11 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5393,7 +5426,7 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5408,14 +5441,14 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", + "anyhow 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-webidl 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-webidl 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5585,15 +5618,17 @@ dependencies = [ "checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" -"checksum ahash 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "2f00e10d4814aa20900e7948174384f79f1317f24f0ba7494e735111653fc330" +"checksum ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3" "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" "checksum aio-limited 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c4dddf55b0b2da9acb7512f21c0a4f1c0871522ec4ab7fb919d0da807d1e32b3" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" +"checksum anyhow 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" = "73232834f4ba605439f8ab8e134569bc52e29d19e7ec2d910c73fd6e8af46557" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" -"checksum arc-swap 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f1a1eca3195b729bbd64e292ef2f5fff6b1c28504fed762ce2b1013dde4d8e92" +"checksum arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff" "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" "checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" +"checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" "checksum asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638" "checksum asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502" "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" @@ -5605,17 +5640,17 @@ dependencies = [ "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" "checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" -"checksum bitvec 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9633b74910e1870f50f5af189b08487195cdb83c0e27a71d6f64d5e09dd0538b" +"checksum bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" "checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" "checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" -"checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" +"checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" "checksum bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188" "checksum bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8d6c2c5b58ab920a4f5aeaaca34b4488074e8cc7596af94e6f8c6ff247c60245" "checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708" -"checksum byte-slice-cast 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7cbcbf18128ec71d8d4a0d054461ec59fff5b75b7d10a4c9b7c7cb1a379c3e77" +"checksum byte-slice-cast 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f6209f3b2c1edea170002e016d5ead6903d3bb0a846477f53bbeb614967a52a9" "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" @@ -5623,8 +5658,8 @@ dependencies = [ "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" "checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" -"checksum cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)" = "0213d356d3c4ea2c18c40b037c3be23cd639825c18f25ee670ac7813beeef99c" -"checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af" +"checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8" +"checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" @@ -5638,10 +5673,11 @@ dependencies = [ "checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" -"checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71" -"checksum crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9" +"checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" +"checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" +"checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" "checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" "checksum crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "779015233ac67d65098614aec748ac1c756ab6677fa2e14cf8b37c08dfed1198" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" @@ -5672,7 +5708,7 @@ dependencies = [ "checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" "checksum fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "516877b7b9a1cc2d0293cbce23cd6203f0edbfd4090e6ca4489fecb5aa73050e" "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" -"checksum flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ad3c5233c9a940c8719031b423d7e6c16af66e031cb0420b0896f5245bf181d3" +"checksum flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" @@ -5703,7 +5739,7 @@ dependencies = [ "checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" "checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" -"checksum hashbrown 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3cd9867f119b19fecb08cd5c326ad4488d7a1da4bf75b4d95d71db742525aaab" +"checksum hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" @@ -5731,11 +5767,11 @@ dependencies = [ "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -"checksum ipnet 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6cc15ac2e0886d62ba078989ef6920ab23997ab0b04ca5687f1a9a7484296a48" +"checksum ipnet 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f4b06b21db0228860c8dfd17d2106c49c7c6bd07477a4036985347d84def04" "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "a60f6ca5eb7ae3014e3ab34e3189a1560267245216e19f76a021a4c669817e62" +"checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" "checksum jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "161dc223549fa6fe4a4eda675de2d1d3cff5a7164e5c031cdf1e22c734700f8b" @@ -5787,8 +5823,9 @@ dependencies = [ "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" "checksum malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" +"checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" -"checksum memoffset 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a85c1a8c329f11437034d7313dca647c79096523533a1c79e86f1d0f657c7cc" +"checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" "checksum memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ef49315991403ba5fa225a70399df5e115f57b274cb0b1b4bcd6e734fa5bd783" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" "checksum merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "de2d16d3b15fec5943d1144f861f61f279d165fdd60998ca262913b9bf1c8adb" @@ -5809,8 +5846,8 @@ dependencies = [ "checksum num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f9c3f34cdd24f334cb265d9bf8bfa8a241920d026916785747a92f0e55541a1a" "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" "checksum num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454" -"checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" -"checksum num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "155394f924cdddf08149da25bfb932d226b4a593ca7468b08191ff6335941af5" +"checksum num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "443c53b3c3531dfcbfa499d8893944db78474ad7a1d87fa2d94d1a2231693ac6" +"checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" @@ -5822,8 +5859,8 @@ dependencies = [ "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" -"checksum parity-scale-codec 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "001fbbb956d8593f321c7a784f64d16b2c99b2657823976eea729006ad2c3668" -"checksum parity-scale-codec-derive 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "42af752f59119656fa3cb31e8852ed24e895b968c0bdb41847da7f0cea6d155f" +"checksum parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f9f9d99dae413590a5f37e43cd99b94d4e62a244160562899126913ea7108673" +"checksum parity-scale-codec-derive 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "492ac3aa93d6caa5d20e4e3e0b75d08e2dcd9dd8a50d19529548b6fe11b3f295" "checksum parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" "checksum parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "570093f39f786beea92dcc09e45d8aae7841516ac19a50431953ac82a0e8f85c" "checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" @@ -5844,7 +5881,7 @@ dependencies = [ "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" "checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" "checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" -"checksum pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "72d5370d90f49f70bd033c3d75e87fc529fbfff9d6f7cccef07d6170079d91ea" +"checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" "checksum primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "83ef7b3b965c0eadcb6838f34f827e1dfb2939bdd5ebd43f9647e009b12b0371" "checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" @@ -5901,8 +5938,8 @@ dependencies = [ "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" "checksum sct 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f5adf8fbd58e1b1b52699dc8bed2630faecb6d8c7bee77d009d6bbe4af569b9" -"checksum security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2" -"checksum security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56" +"checksum security-framework 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "301c862a6d0ee78f124c5e1710205965fc5c553100dcda6d98f13ef87a763f04" +"checksum security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e31493fc37615debb8c5090a7aeb4a9730bc61e77ab10b9af59f1a202284f895" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" @@ -5921,7 +5958,7 @@ dependencies = [ "checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" "checksum slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6" "checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" -"checksum smallvec 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "533e29e15d0748f28afbaf4ff7cab44d73e483a8e50b38c40bd13b7f3d48f542" +"checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" "checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" @@ -5959,13 +5996,13 @@ dependencies = [ "checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" "checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" -"checksum static_assertions 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fa13613355688665b68639b1c378a62dbedea78aff0fc59a4fa656cbbdec657" +"checksum static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" "checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -"checksum structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4f66a4c0ddf7aee4677995697366de0749b0139057342eccbb609b12d0affc" -"checksum structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8fe0c13e476b4e21ff7f5c4ace3818b6d7bdc16897c31c73862471bc1663acae" +"checksum structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c167b61c7d4c126927f5346a4327ce20abf8a186b8041bbeb1ce49e5db49587b" +"checksum structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "519621841414165d2ad0d4c92be8f41844203f2b67e245f9345a5a12d40c69d7" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" "checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" @@ -6021,10 +6058,10 @@ dependencies = [ "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" -"checksum syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0e7bedb3320d0f3035594b0b723c8a28d7d336a3eda3881db79e61d676fb644c" +"checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" -"checksum synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203" -"checksum sysinfo 0.9.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d5bd3b813d94552a8033c650691645f8dd5a63d614dddd62428a95d3931ef7b6" +"checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" +"checksum sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4b2468c629cffba39c0a4425849ab3cdb03d9dfacba69684609aea04d08ff9" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" @@ -6051,7 +6088,7 @@ dependencies = [ "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" "checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" -"checksum toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c04dffffeac90885436d23c692517bb5b8b3f8863e4afc15023628d067d667b7" +"checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" "checksum trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a" "checksum trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" @@ -6059,10 +6096,10 @@ dependencies = [ "checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56" "checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9" "checksum uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e75a4cdd7b87b28840dba13c483b9a88ee6bbf16ba5c951ee1ecfcf723078e0d" -"checksum unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150" +"checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" -"checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" -"checksum unicode-segmentation 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49f5526225fd8b77342d5986ab5f6055552e9c0776193b5b63fd53b46debfad7" +"checksum unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf" +"checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" @@ -6074,20 +6111,21 @@ dependencies = [ "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" "checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba" "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" +"checksum version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" "checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" -"checksum wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "4c29d57d5c3b3bc53bbe35c5a4f4a0df994d870b7d3cb0ad1c2065e21822ae41" -"checksum wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "aa2868fa93e5bf36a9364d1277a0f97392748a8217d9aa0ec3f1cdbdf7ad1a60" +"checksum wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "c4568ae1b4e07ca907b1a4de41174eaa3e5be4066c024475586b7842725f69a9" +"checksum wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5a00cfdce37367770062065fd3abb9278cbae86a0d918cacd0978a7acd51b481" "checksum wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" -"checksum wasm-bindgen-macro 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "41e80594782a241bf3d92ee5d1247b8fb496250a8a2ff1e136942d433fbbce14" -"checksum wasm-bindgen-macro-support 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "74b9950355b1d92ca09de0984bdd4de7edda5e8af12daf0c052a0a075e8c9157" -"checksum wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "7493fe67ad99672ef3de3e6ba513fb03db276358c8cc9588ce5a008c6e48ad68" -"checksum wasm-bindgen-webidl 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "8272d9a8831be66b30908996b71b3eaf9b83de050f89e4dc34826a19980eb59d" +"checksum wasm-bindgen-macro 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "7c568f4d3cf6d7c1d72b165daf778fb0d6e09a24f96ac14fc8c4f66a96e86b72" +"checksum wasm-bindgen-macro-support 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "430d12539ae324d16097b399e9d07a6d5ce0173b2a61a2d02346ca7c198daffe" +"checksum wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "8ae7167f0bbffd7fac2b12da0fa1f834c1d84671a1ae3c93ac8bde2e97179c39" +"checksum wasm-bindgen-webidl 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "3021567c515a746a64ad0b269d120d46e687c0c95702a4750623db935ae6b5e7" "checksum wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa3e01d234bb71760e685cfafa5e2c96f8ad877c161a721646356651069e26ac" "checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" "checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" -"checksum web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "0232f38e5c66384edaedaa726ae2d6313e3ed3ae860693c497a3193af3e161ce" +"checksum web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "ce8e893e021539beb87de8f06e77bdb390a3ab0db4cfeb569c4e377b55ed20de" "checksum webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4f7e1cd7900a3a6b65a3e8780c51a3e6b59c0e2c55c6dc69578c288d69f7d082" "checksum webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c10fa4212003ba19a564f25cd8ab572c6791f99a03cc219c13ed35ccab00de0e" "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" From a20cf9f7aaf84ea1aa9213e3b77a3270ba2a50de Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Nov 2019 22:18:04 +0200 Subject: [PATCH 230/350] fix issue with hardcoded extrinsic version Fix from https://github.com/paritytech/substrate/issues/3925 --- src/chain_spec.rs | 67 +++++++++++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 29 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 30740fcfb1..1a95590aaf 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -21,10 +21,11 @@ use node_runtime::{ AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, ForumConfig, GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, - Perbill, ProposalsConfig, SessionConfig, SessionKeys, StakerStatus, StakingConfig, SudoConfig, - SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, + Perbill, ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, StakingConfig, + SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, }; -use primitives::{crypto::UncheckedInto, Pair, Public}; +use primitives::{crypto::UncheckedInto, sr25519, Pair, Public}; +use runtime_primitives::traits::{IdentifyAccount, Verify}; use babe_primitives::AuthorityId as BabeId; use grandpa_primitives::AuthorityId as GrandpaId; @@ -32,6 +33,8 @@ use im_online::sr25519::AuthorityId as ImOnlineId; use substrate_service; use substrate_telemetry::TelemetryEndpoints; +type AccountPublic = ::Signer; + // Note this is the URL for the telemetry server const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; @@ -60,13 +63,21 @@ pub fn get_from_seed(seed: &str) -> ::Pu .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_from_seed::(&format!("{}//stash", seed)), - get_from_seed::(seed), + 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), @@ -91,12 +102,12 @@ impl Alternative { || { testnet_genesis( vec![get_authority_keys_from_seed("Alice")], - get_from_seed::("Alice"), + get_account_id_from_seed::("Alice"), vec![ - get_from_seed::("Alice"), - get_from_seed::("Bob"), - get_from_seed::("Alice//stash"), - get_from_seed::("Bob//stash"), + 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"), ], ) }, @@ -115,20 +126,20 @@ impl Alternative { get_authority_keys_from_seed("Alice"), get_authority_keys_from_seed("Bob"), ], - get_from_seed::("Alice"), + get_account_id_from_seed::("Alice"), vec![ - get_from_seed::("Alice"), - get_from_seed::("Bob"), - get_from_seed::("Charlie"), - get_from_seed::("Dave"), - get_from_seed::("Eve"), - get_from_seed::("Ferdie"), - get_from_seed::("Alice//stash"), - get_from_seed::("Bob//stash"), - get_from_seed::("Charlie//stash"), - get_from_seed::("Dave//stash"), - get_from_seed::("Eve//stash"), - get_from_seed::("Ferdie//stash"), + 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"), ], ) }, @@ -190,16 +201,14 @@ fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstrain fn staging_testnet_config_genesis() -> GenesisConfig { let initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)> = vec![( - hex!["0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65"].unchecked_into(), // stash - hex!["609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339"].unchecked_into(), // controller + hex!["0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65"].into(), // stash + hex!["609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339"].into(), // controller hex!["65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2"].unchecked_into(), // session key hex!["8acbf7448d96592e61881c5ef0f0ab18da6955cf4824534eb19b26f03df56b5a"].unchecked_into(), hex!["8acbf7448d96592e61881c5ef0f0ab18da6955cf4824534eb19b26f03df56b5a"].unchecked_into(), )]; - let endowed_accounts = vec![hex![ - "0ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30" - ] - .unchecked_into()]; + let endowed_accounts = + vec![hex!["0ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"].into()]; const CENTS: Balance = 1; const DOLLARS: Balance = 100 * CENTS; From 82f7f4748b7424cce9e284c978219d6f79de86ff Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 18 Nov 2019 22:48:53 +0200 Subject: [PATCH 231/350] update runtime commit --- Cargo.lock | 4 +++- Cargo.toml | 11 ++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8112b7280..77349e25d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1343,7 +1343,7 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=ea0fee618e1210ac5588742eb5b42e397d2469aa)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1378,6 +1378,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=ea0fee618e1210ac5588742eb5b42e397d2469aa#ea0fee618e1210ac5588742eb5b42e397d2469aa" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5771,6 +5772,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=ea0fee618e1210ac5588742eb5b42e397d2469aa)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index f4fb11777c..fa1db843cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,8 +18,8 @@ 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.3" +rand = '0.7.2' +structopt = '0.3.3' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' @@ -55,12 +55,13 @@ package = 'substrate-network' rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] -package = "joystream-node-runtime" -# git = 'https://github.com/bedeho/substrate-runtime-joystream' +package = 'joystream-node-runtime' +git = 'https://github.com/mnaamani/substrate-runtime-joystream' # branch = 'add-content-wg' +rev = 'ea0fee618e1210ac5588742eb5b42e397d2469aa' # for local development... # clone https://github.com/joystream/substrate-runtime-joystream to this path: -path = 'substrate-runtime-joystream' +# path = 'substrate-runtime-joystream' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' From 4f445144f83711704f12469a656913ea7fcd8e50 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 19 Nov 2019 18:12:51 +0200 Subject: [PATCH 232/350] update runtime dependency --- Cargo.lock | 12 ++++++------ Cargo.toml | 6 ++---- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 77349e25d7..261e1799b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1343,7 +1343,7 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=ea0fee618e1210ac5588742eb5b42e397d2469aa)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=b6866a3dae58b64c4daa572494cd749f9a20180e)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1378,7 +1378,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=ea0fee618e1210ac5588742eb5b42e397d2469aa#ea0fee618e1210ac5588742eb5b42e397d2469aa" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=b6866a3dae58b64c4daa572494cd749f9a20180e#b6866a3dae58b64c4daa572494cd749f9a20180e" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1416,7 +1416,7 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)", - "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=d4c5ca400a5f421665ae3addfce312bc5cc2a9d0)", + "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=02cfd53c132f95c99cb936bace4432a064b62b86)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4752,7 +4752,7 @@ dependencies = [ [[package]] name = "substrate-versioned-store-permissions-module" version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=d4c5ca400a5f421665ae3addfce312bc5cc2a9d0#d4c5ca400a5f421665ae3addfce312bc5cc2a9d0" +source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=02cfd53c132f95c99cb936bace4432a064b62b86#02cfd53c132f95c99cb936bace4432a064b62b86" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5772,7 +5772,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=ea0fee618e1210ac5588742eb5b42e397d2469aa)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=b6866a3dae58b64c4daa572494cd749f9a20180e)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6054,7 +6054,7 @@ dependencies = [ "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)" = "" -"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=d4c5ca400a5f421665ae3addfce312bc5cc2a9d0)" = "" +"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=02cfd53c132f95c99cb936bace4432a064b62b86)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" diff --git a/Cargo.toml b/Cargo.toml index fa1db843cf..5e2cc4b189 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,10 +57,8 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -# branch = 'add-content-wg' -rev = 'ea0fee618e1210ac5588742eb5b42e397d2469aa' -# for local development... -# clone https://github.com/joystream/substrate-runtime-joystream to this path: +rev = 'b6866a3dae58b64c4daa572494cd749f9a20180e' +# local development... # path = 'substrate-runtime-joystream' [dependencies.primitives] From 04a9d20216fa236d97de6ad732d5fb4305ac61c9 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 25 Nov 2019 16:58:13 +0200 Subject: [PATCH 233/350] configure chain properties --- Cargo.lock | 1 + Cargo.toml | 1 + src/chain_spec.rs | 23 +++++++++++++++++++---- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 261e1799b2..8c6073aa24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,6 +1349,7 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", diff --git a/Cargo.toml b/Cargo.toml index 5e2cc4b189..19a21eac74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ tokio = '0.1.22' jsonrpc-core = '13.2.0' rand = '0.7.2' structopt = '0.3.3' +serde_json = '1.0' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 1a95590aaf..6850ea5706 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -30,6 +30,7 @@ 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; use substrate_telemetry::TelemetryEndpoints; @@ -179,7 +180,18 @@ pub fn staging_testnet_config() -> ChainSpec { let boot_nodes = vec![ String::from("/dns4/bootnode1.joystream.org/tcp/30333/p2p/QmeDa8jASqMRpTh4YCkeVEuHo6nbMcFDzD9pkUxTr3WxhM"), String::from("/dns4/bootnode2.joystream.org/tcp/30333/p2p/QmbjzmNMjzQUMHpzqcPHW5DnFeUjM3x4hbiDSMkYv1McD3"), - ]; + ]; + + 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")), + ); + ChainSpec::from_genesis( "Joystream Staging Testnet", "joy_staging_6", @@ -189,9 +201,12 @@ pub fn staging_testnet_config() -> ChainSpec { STAGING_TELEMETRY_URL.to_string(), 0, )])), - Some(&*"joy"), // protocol_id - None, // consensus engine - None, // properties + // protocol_id + Some(&*"joy.staging"), + // Properties + Some(properties), + // Extensions + None, ) } From 283d79b4bb30424838f6b8eb0c65b6fad14abe20 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 26 Nov 2019 10:34:12 +0200 Subject: [PATCH 234/350] cleanup chain spec and add initial members at genesis --- Cargo.lock | 7 +-- Cargo.toml | 3 +- res/initial_members.json | 6 +++ res/joy_testnet_2.json | 96 ---------------------------------------- src/chain_spec.rs | 43 +++++++++++++----- src/import_members.rs | 49 ++++++++++++++++++++ src/main.rs | 1 + 7 files changed, 93 insertions(+), 112 deletions(-) create mode 100644 res/initial_members.json delete mode 100644 res/joy_testnet_2.json create mode 100644 src/import_members.rs diff --git a/Cargo.lock b/Cargo.lock index 8c6073aa24..6a6ae395e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1343,12 +1343,13 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=b6866a3dae58b64c4daa572494cd749f9a20180e)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=98df5eec6176d7ce53bf47e1ddcd06c5494a24d6)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", @@ -1379,7 +1380,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=b6866a3dae58b64c4daa572494cd749f9a20180e#b6866a3dae58b64c4daa572494cd749f9a20180e" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=98df5eec6176d7ce53bf47e1ddcd06c5494a24d6#98df5eec6176d7ce53bf47e1ddcd06c5494a24d6" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5773,7 +5774,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=b6866a3dae58b64c4daa572494cd749f9a20180e)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=98df5eec6176d7ce53bf47e1ddcd06c5494a24d6)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index 19a21eac74..fa738a9daf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,7 @@ jsonrpc-core = '13.2.0' rand = '0.7.2' structopt = '0.3.3' serde_json = '1.0' +serde = '1.0' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' @@ -58,7 +59,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = 'b6866a3dae58b64c4daa572494cd749f9a20180e' +rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' # local development... # path = 'substrate-runtime-joystream' diff --git a/res/initial_members.json b/res/initial_members.json new file mode 100644 index 0000000000..f0d069e5ac --- /dev/null +++ b/res/initial_members.json @@ -0,0 +1,6 @@ +[{ + "address": "5Gn9n7SDJ7VgHqHQWYzkSA4vX6DCmS5TFWdHxikTXp9b4L32", + "handle": "mokhtar", + "avatar_uri": "http://mokhtar.net/avatar.png", + "about": "Mokhtar" +}] \ No newline at end of file diff --git a/res/joy_testnet_2.json b/res/joy_testnet_2.json deleted file mode 100644 index 3b83a2fd13..0000000000 --- a/res/joy_testnet_2.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "name": "Joystream Testnet v2", - "id": "joy_testnet_2", - "bootNodes": [ - "/dns4/bootnode1.joystream.org/tcp/30333/p2p/QmeDa8jASqMRpTh4YCkeVEuHo6nbMcFDzD9pkUxTr3WxhM", - "/dns4/bootnode2.joystream.org/tcp/30333/p2p/QmbjzmNMjzQUMHpzqcPHW5DnFeUjM3x4hbiDSMkYv1McD3" - ], - "telemetryEndpoints": [ - [ - "wss://telemetry.polkadot.io/submit/", - 0 - ] - ], - "protocolId": null, - "consensusEngine": null, - "properties": { - "tokenDecimals": 0, - "tokenSymbol": "JOY" - }, - "genesis": { - "raw": { - "0x934302c5ec4cb4f73a395e2184ab0aa6": "0x00000000000000000000000000000000", - "0x92b3170bbdf31d1483495c9b06ba7d70": "0x10270000", - "0xf9f84510feb5ef56aaead09aab1619c9": "0x4038000000000000", - "0x0d16d2d988ae32ef287cca0bf668e00a": "0x0100000000000000", - "0xd368b9d9bb1cc910c9a2b8e5d0f5f2fc": "0x88130000000000000000000000000000", - "0x2196ccc1c9c70e1c05f6229d8b36f461": "0xc0a8000000000000", - "0x3a617574683a00000000": "0x65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2", - "0x9ab62105ea598fe35e62747706899867": "0x0100000000000000", - "0xa62601bb840b2ee9ae90cbc8aefa0d01": "0x0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65", - "0x8b00d7280647603efa998c64c5a3d9aa": "0x80841e00", - "0xff64fc011ebf64c9924fe908795e4253": "0x0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65214e214e00", - "0x4664fb5d4e16f894df23cadb3faaa9a6": "0x04000000", - "0x59fb36df8bf4440dd9ceb5e3c5228b14": "0x00", - "0x3b7d32346a3315a351084927a27d06a7": "0x00000000000000000000000000000000", - "0xc1fdc3d212357bc2fa98f2a77b941f0c": "0x040610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65", - "0x50a63a871aced22e88ee6466fe5aa5d9": "0x0ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30", - "0x579ab55d37b1220812be3c3df29d4858": "0x0000000000000000", - "0x040ff70c23416b89ce6afb75ee0d362e": "0x00000000", - "0x8366297e853b97a38cca0f62019a717b": "0x00000000000000000000000000000000", - "0xaf2eb693c0fb909a37de0415e6f3804e": "0x047374616b696e672088130000000000000000000000000000ffffffffffffffff0f", - "0x3fb2474c4125721e4f9b6d33231cc646": "0x64000000000000000000000000000000", - "0x7e6064dc0e78ffebb59b3053826a9467": "0x04609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339", - "0x56a8690adda9fc81f051cfae8b36fb7f": "0x0100000000000000", - "0x78f4ad73d6b7279f8d06f359e363c829": "0x88f70b54020000000000000000000000", - "0x3a6772616e6470613a617574683a6c656e": "0x01000000", - "0xdfaac108e0d4bc78fc9419a7fcfa84dc": "0x04609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339", - "0xe9c5ea8161960f37de92851df355287b": "0x0c000000", - "0x4c4cbf22c23da51465d830549fd17801": "0xb80b0000000000000000000000000000050000000a0000000a0000000000000000000000000000005802000000000000580200000000000058020000000000005802000000000000580200000000000032000000000000000000000000000000", - "0x0352a63cf1ad55dfd67fdc8869920392": "0x0100000000000000", - "0x9a20141d973fa6385716ae951301f106": "0x01", - "0x2f17f5add44fa12b1b002caac64f4b3a": "0x0100000000000000", - "0x30f81b445b20a0cacb485475146b9c2e": "0x00020000", - "0x8b54f94e652e79e757faa813e395199d": "0x19000000", - "0x24b2518f9a9ee24ab0b62346d83d90b0": "0x40420f00", - "0x7b3279da6dfc5dcfbdd4098b0578c733": "0x0a000000000000000000000000000000", - "0x30503a949860f4244ab6e457807234c6": "0x8070000000000000", - "0x34f0b32e59d36f2a46ec74f601105a9e": "0x0000000000000000640000000000000000000000000000006044656661756c742050616964205465726d20544f532e2e2e", - "0x9624db8f7f825714be29f5be7ef5a76f": "0x0c000000", - "0x1da5c452800e88ba1014b0ae27e8c629": "0x0100000000000000", - "0xd9c94b41dc87728ebf0a966d2e9ad9c0": "0x6400000000000000", - "0xe86aadd06aa1443b2e0485fbe6c75d79": "0x4038000000000000", - "0x43854a3fb0f68847558aa8942fff6d9b": "0x42000000", - "0x70aa3421507b5d00bc7392e7f8de8b83": "0x65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2", - "0xd437fe93b0bd0a5d67d30d85d010edc2": "0x80969800", - "0x0e0cdac0d4de97c54f3ae216b003fa81": "0x0100000000000000", - "0x90e2849b965314409e8bc00011f3004f": "0x01000000", - "0xf541ffd8c90d7124a5298d6c1e2c0d40": "0x0300000000000000", - "0x3a6772616e6470613a617574683a00000000": "0x65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d20100000000000000", - "0xb7b6ec0f25eb1ed8b91d05f697d7a874": "0x0600000000000000", - "0x2b89d3b6f46fc8a3aee48c9cb06d7670": "0x01000000000000000000000000000000", - "0xe9d19aa1c8f2c8eba1a85e4db92740c8": "0xe8030000000000000000000000000000", - "0x9de7647cf9f9d6bbc4078dc693fbe19e": "0x8013030000000000", - "0x0f9ebfa8ca7dde015c460cfec0279c79": "0x0400", - "0xf4039aa8ae697861be900c58239e96f7": "0x00000000000000000000000000000000", - "0x6ed2fcf74773d8e9b4aa2a956adb907f": "0x00e40b54020000000000000000000000", - "0x088d3a8051b2e822572ca47ce014d22f": "0x609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339", - "0x3a636f6465": "0x0061736d0100000001c1011e60027f7f017f60037f7f7f017f60027f7f0060017f0060057f7f7f7f7f017f60047f7f7f7f0060037f7f7f0060047f7f7e7f017f60047f7f7f7f017f60017e0060017f017f60000060047f7e7e7e0060027e7f017f60047f7f7e7e0060037f7e7e0060027f7e0060027e7f0060047f7f7e7f0060037f7e7f0060037f7e7e017f60037f7f7f017e60057f7f7f7e7e0060057f7f7e7e7e0060017f017e60037e7f7f0060027f7f017e60057f7e7e7e7e0060047f7e7e7f0060067f7e7e7e7e7f0002e1020f03656e76146578745f6765745f73746f726167655f696e746f000403656e760f6578745f7365745f73746f72616765000503656e760c6578745f74776f785f313238000603656e76116578745f636c6561725f73746f72616765000203656e760e6578745f626c616b65325f323536000603656e76106578745f73746f726167655f726f6f74000303656e76186578745f73746f726167655f6368616e6765735f726f6f74000703656e76126578745f737232353531395f766572696679000803656e76126578745f656432353531395f766572696679000803656e760e6578745f7072696e745f75746638000203656e760d6578745f7072696e745f686578000203656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000503656e760d6578745f7072696e745f6e756d000903656e760a6578745f6d616c6c6f63000a03656e76086578745f66726565000303f102ef020b0b02020a020103020202020a020202020202020202020202060202020202030c030303030303000a03020305000d0400000201060b0002030303020203020202020202020202020306020302000e030f03030303031003031103030303030303030303030303030303030303030202020206061206060f0f020a02100202020a03020503101313130602030202140b15140e0616020202030603020202020202020202020b03020303030f101703000610030202020202020203021110030202020202030202020206030005060603030303030202020303020203020202020202020202021102020e0c03030e02030603020202060b020302020202020203021406030209020506020305021800030303101903030b0302020303030203030302030303030302020202030303020902030906030303030303051a1a061a1a1a02060202021a1a1a02021a1a1a1a1a1a1a1a1a02020603020a03010a001808010000000100010101011b1b1c1c1d04070170018601860105030100120619037f01418080c0000b7f0041c89bc4000b7f0041c89bc4000b07a20414066d656d6f727902000b5f5f686561705f6261736503010a5f5f646174615f656e6403020c436f72655f76657273696f6e00ca0212436f72655f657865637574655f626c6f636b00cb0215436f72655f696e697469616c697a655f626c6f636b00cd0210436f72655f617574686f72697469657300ce02114d657461646174615f6d6574616461746100cf021c426c6f636b4275696c6465725f6170706c795f65787472696e73696300d5021b426c6f636b4275696c6465725f66696e616c697a655f626c6f636b00d60220426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300d7021c426c6f636b4275696c6465725f636865636b5f696e686572656e747300da0218426c6f636b4275696c6465725f72616e646f6d5f7365656400db022b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00dc02214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b657200dd02214772616e6470614170695f6772616e6470615f70656e64696e675f6368616e676500de02204772616e6470614170695f6772616e6470615f666f726365645f6368616e676500df021e4772616e6470614170695f6772616e6470615f617574686f72697469657300e00215417572614170695f736c6f745f6475726174696f6e00e1021a417574686f7269746965734170695f617574686f72697469657300e20209dc01010041010b8501ec0245f002f102be013c40da01363ff40232ec01eb01ac02a802565554535251504f4e4df001ed01a402a6026abb02bc02ba02c402c502c3026b3435336cb402b502b3026d6364626ee701ea01e6016fdf01e001de0170aa0230312e71574c61728e028702990273ad02ab02ae0274b102af02b20275c901c101cd0176e201e10177b701b501bd0178676669799f029e02a0027ac702c602c8027b4847497cb601c801c701c6018d02c501c401c301c201f201f101ef01ee01b602fe01d601f701ff018c028b028a0289028802a702b002bd02ed020ac9f820ef0205001010000b0a0041dcf0c3001038000bdc0403027f017e0d7f230041d0006b22022400200241086a2001101202400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210d0c030b100f000b200541011014000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d03402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001000220f200f417f461b220f4120200f4120491b20052802006a360200200f411f4d0d02200c41016a2105200241106a41186a220f2007290300370300200241106a41106a22102008290300370300200241106a41086a2211200e290300370300200220022903303703100240200c200d470d00200a20052005200a491b220dad4205862204422088a70d042004a7220e4100480d040240200c450d002006200b200e101522060d010c060b200e10132206450d050b2006200b6a220c2002290310370000200c41186a200f290300370000200c41106a2010290300370000200c41086a2011290300370000200a41026a210a200b41206a210b2005210c20052003490d000b0b2000200d36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200d450d00200610160b200241d0006a24000f0b1010000b200e41011014000bc90301057f230041106b2202240041002103200241003a000f200128020020012802042002410f6a410120012802081000210420012001280208200441016a41014b22046a22053602080240024002402004450d0002400240024020022d000f220641037122044102460d0020044101460d0120040d0220064102762104410121030c050b20024100360208200220063a000841012103200141086a220441002001280200200141046a280200200241086a41017241032005100022012001417f461b22014103200141034922011b20042802006a36020020010d03200228020841027621040c040b41002103200241003b0106200220063a00062001280200200141046a280200200241066a4101724101200510002104200141086a22012001280200200441016a220141014b6a36020020014102490d0120022f01064102762104410121030c030b200641034b0d02200141046a28020021044100210320024100360200200141086a2206410020012802002004200241042005100022012001417f461b22014104200141044922011b20062802006a36020020010d0020022802002104410121030c020b0c010b410021030b2000200436020420002003360200200241106a24000b0700200010e8020b0e0041b8f0c300412210e70200000b0b0020002001200210ea020b0700200010e9020bc10602087f017e230041106b2202240020024100360208200242013703002000280200210320022000280208220036020c2002410c6a20021018024002400240024002400240024002402000450d00200041306c2104200241086a220528020021062002280204210003400240024002400240200020066b41204f0d00200641206a22072006490d0620004101742208200720072008491b22094100480d062000450d01200228020020002009101522080d020c070b200641206a2107200228020021080c020b200910132208450d050b2002200936020420022008360200200921000b20052007360200200820066a220641186a200341206a290000370000200641106a200341186a290000370000200641086a200341106a2900003700002006200341086a2900003700002003290300210a0240024002400240200020076b41084f0d00200741086a22062007490d0620004101742209200620062009491b22094100480d062000450d01200820002009101522080d020c080b200741086a21060c020b200910132208450d060b2002200936020420022008360200200921000b20052006360200200820076a200a370000024020002006470d00200641016a22002006490d0320064101742207200020002007491b22004100480d03024002402006450d00200820062000101522080d010c080b200010132208450d070b20022000360204200220083602000b2005200641016a360200200820066a41003a0000200341286a290300210a024002400240024020022802042200200528020022086b41084f0d00200841086a22062008490d0620004101742207200620062007491b22064100480d062000450d01200228020020002006101522070d020c0a0b200228020021070c020b200610132207450d080b2002200636020420022007360200200621000b200341306a21032005200841086a2206360200200720086a200a370000200441506a22040d000b200128020020012802042007200610012000450d070c060b200228020421002001280200200128020420022802002207200241086a280200100120000d050c060b1010000b200941011014000b200941011014000b200041011014000b200641011014000b200710160b200241106a24000b9d0701037f024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002202413f4b0d00200141046a280200200141086a2802002200470d01200041016a22032000490d1120004101742204200320032004491b22044100480d112000450d0520012802002000200410152203450d060c170b2002418080014f0d01200141046a2802002203200141086a28020022006b41024f0d02200041026a22042000490d1020034101742200200420042000491b22004100480d102003450d0820012802002003200010152203450d090c140b200128020021030c160b20024180808080044f0d01200141046a2802002203200141086a28020022006b41044f0d04200041046a22042000490d0e20034101742200200420042000491b22004100480d0e2003450d08200128020020032000101522030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101522030d0a0c0e0b2004101322030d110b200441011014000b200128020021030c050b200128020021030c070b2000101322030d0b0b200041011014000b200010132203450d060b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20024102744102723600000f0b200410132203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240024002400240200141046a2802002202200428020022006b41044f0d00200041046a22042000490d0420024101742200200420042000491b22004100480d042002450d01200128020020022000101522020d020c070b200128020021020c020b200010132202450d050b20012002360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200220006a20033600000f0b1010000b200041011014000b200441011014000b200041011014000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20024102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20024102743a00000bd90403027f017e0a7f230041106b22022400200241086a2001101a0240024002400240024002400240024002402002280208450d00200228020c2203ad420c7e2204422088a70d082004a72205417f4c0d082005450d01200510132206450d032003450d020c040b20004100360200200241106a24000f0b4104210620030d020b4100210d4100210a0c020b200541041014000b4100210741002108410021092003210a034020022001101a02400240024002402002280200450d0020022802042205417f4c0d08024002402005450d002005101b220b450d03200b2001280200200141046a220c280200220d2005200d2005491b220d10f6021a200c280200220e200d490d04200c200e200d6b36020020012001280200200d6a360200200d2005470d010c050b4101210b41002005460d040b2005450d00200b10160b2000410036020002402009450d002006210503400240200541046a280200450d00200528020010160b2005410c6a2105200841746a22080d000b0b0240200a450d00200610160b200241106a24000f0b200541011014000b200d200e101c000b200941016a210d02402009200a470d002007200d200d2007491b220aad420c7e2204422088a70d032004a7220c4100480d0302402009450d0020062008200c101522060d010c050b200c10132206450d040b200620086a2209200b360200200941046a2005ad2204422086200484370200200741026a21072008410c6a2108200d2109200d2003490d000b0b2000200a36020420002006360200200041086a200d360200200241106a24000f0b1010000b200c41041014000b100f000bca0301077f230041106b22022400200241003a0003200241036a2001280200220320012802042204410047220510f6021a0240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d000240024020022d0003220341037122044102460d00024020044101460d0020040d0220034102762101410121040c050b200241003a000b2002410b6a20052006410047220410f6021a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d000b4108742003724102762101410121040c040b41002104200241003a000e200241003b010c2002410c6a200520064103200641034922071b220810f6021a200141046a200620086b3602002001200520086a36020020070d0320022f010c20022d000e411074724108742003724102762101410121040c030b200341034b0d004100210420024100360204200241046a200520064104200641044922081b220310f6021a200141046a200620036b3602002001200520036a36020020080d0120022802042101410121040c020b410021040b0b2000200136020420002004360200200241106a24000f0b20052004101c000b20042006101c000b0700200010eb020b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c20024198f4c3003602082002200241046a360228200220023602202002200241206a360218200241086a41a8f4c3001046000bdc0504027f017e0f7f017e230041d0006b22022400200241086a200110120240024002400240024002400240024002402002280208450d00200228020c2203ad42287e2204422088a70d032004a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4108210620030d030b4100210f4100210d0c030b100f000b200541081014000b200241306a41186a2107200241306a41106a2108200141046a21094100210a4100210b4100210c2003210d024003402007420037030020084200370300200241306a41086a220e420037030020024200370330200141086a2205410020012802002009280200200241306a412020052802001000220f200f417f461b220f4120200f412049220f1b20052802006a2210360200200f0d01200241106a41186a22112007290300370300200241106a41106a22122008290300370300200241106a41086a2213200e29030037030020022002290330370310200242003703302005410020012802002009280200200241306a410820101000220f200f417f461b220f4108200f4108491b20052802006a360200200f41074d0d01200c41016a210f200229033021042007201129030037030020082012290300370300200e2013290300370300200220022903103703300240200c200d470d00200a200f200f200a491b220dad42287e2214422088a70d042014a722054100480d040240200c450d002006200b2005101522060d010c060b200510132206450d050b2006200b6a22052002290330370300200541186a2007290300370300200541106a2008290300370300200541086a200e290300370300200541206a2004370300200a41026a210a200b41286a210b200f210c200f2003490d000c020b0b200041003602000240200d450d00200610160b200241d0006a24000f0b2000200d36020420002006360200200041086a200f360200200241d0006a24000f0b1010000b200541081014000bc10304027f017e087f017e230041106b2202240020022001101202400240024002400240024002400240024002402002280200450d0020022802042203ad2204421d88a70d032004420386a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241106a24000f0b4108210620030d030b410021054100210b0c030b100f000b200541081014000b200141046a210741002108410021094100210a2003210b034020024200370308200141086a2205410020012802002007280200200241086a410820052802001000220c200c417f461b220c4108200c4108491b20052802006a360200200c41074d0d02200a41016a2105200229030821040240200a200b470d002008200520052008491b220bad420386220d422088a70d04200da7220c4100480d040240200a450d0020062009200c101522060d010c060b200c10132206450d050b200620096a2004370300200841026a2108200941086a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d00200610160b200241106a24000f0b1010000b200c41081014000bd70403027f017e0e7f230041d0006b22022400200241086a2001101a02400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421b88a70d032004420586a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4101210620030d030b410021054100210e0c030b100f000b200541011014000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a2802002205412020054120491b221010f6021a200a200520106b3602002001200f20106a3602002005411f4d0d02200d41016a2105200241106a41186a22102007290300370300200241106a41106a220f2008290300370300200241106a41086a22112009290300370300200220022903303703100240200d200e470d00200b20052005200b491b220ead4205862204422088a70d042004a722124100480d040240200d450d002006200c2012101522060d010c060b201210132206450d050b2006200c6a220d2002290310370000200d41186a2010290300370000200d41106a200f290300370000200d41086a2011290300370000200b41026a210b200c41206a210c2005210d20052003490d000b0b2000200e36020420002006360200200041086a2005360200200241d0006a24000f0b200041003602000240200e450d00200610160b200241d0006a24000f0b1010000b201241011014000bb20b06027f017e0e7f027e097f027e230041f0006b22022400200241086a2001101202400240024002400240024002400240024002402002280208450d00200228020c2203ad2204421a88a70d092004420686a72205417f4c0d092005450d01200510132206450d032003450d020c040b20004100360200200241f0006a24000f0b4108210620030d020b4100210e4100210c0c020b200541081014000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b2003210c024003402007420037030020084200370300200241d0006a41086a220d420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001000220e200e417f461b220e4120200e4120491b20052802006a220f360200200e411f4d0d01200241106a41186a22102007290300370300200241106a41106a22112008290300370300200241106a41086a2212200d2903003703002002200229035037031020024200370358200242003703502005410020012802002009280200200241d0006a4110200f1000220e200e417f461b220e4110200e4110491b20052802006a360200200e410f4d0d01200d2903002113200229035021142002200110122002280200450d0120022802042215ad42307e2204422088a70d062004a7220e417f4c0d06024002400240024002400240200e450d00200e10132216450d022015450d010c030b4108211620150d020b4100210f410021190c020b200e41081014000b41002117410021184100210e2015211903402007420037030020084200370300200d4200370300200242003703502005410020012802002009280200200241d0006a412020052802001000220f200f417f461b220f4120200f4120491b20052802006a221a360200200f411f4d0d02200241306a41186a221b2007290300370300200241306a41106a221c2008290300370300200241306a41086a221d200d2903003703002002200229035037033020024200370358200242003703502005410020012802002009280200200241d0006a4110201a1000220f200f417f461b220f4110200f4110491b20052802006a360200200f410f4d0d02200e41016a210f200d29030021042002290350211e2007201b2903003703002008201c290300370300200d201d290300370300200220022903303703500240200e2019470d002017200f200f2017491b2219ad42307e221f422088a70d07201fa7221a4100480d070240200e450d0020162018201a101522160d010c090b201a10132216450d080b201620186a220e2004370308200e201e370300200e41286a2007290300370300200e41206a2008290300370300200e41186a200d290300370300200e41106a2002290350370300201741026a2117201841306a2118200f210e200f2015490d000b0b2016450d02200b41016a210e2007201029030037030020082011290300370300200d2012290300370300200220022903103703500240200c200b470d00200b4101742205200e200e2005491b220cad4206862204422088a70d052004a722054100480d050240200b450d002006200b4106742005101522060d010c080b200510132206450d070b2006200b4106746a220520133703082005201437030020052016360210200541146a200fad4220862019ad84370200200541346a20072903003702002005412c6a2008290300370200200541246a200d2903003702002005411c6a2002290350370200200a41c0006a210a200e210b200e2003490d010c030b0b2019450d00201610160b200041003602000240200b450d00200641106a210503400240200541046a280200450d00200528020010160b200541c0006a2105200a41406a220a0d000b0b0240200c450d00200610160b200241f0006a24000f0b2000200c36020420002006360200200041086a200e360200200241f0006a24000f0b1010000b201a41081014000b200541081014000b100f000bc01905027f017e157f017e097f230041f0026b22022400200241186a20011012024002400240024002400240024002400240024002402002280218450d00200228021c2203ad42287e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510132206450d032003450d020c040b20004100360200200241f0026a24000f0b4108210620030d020b41002116410021130c020b200541081014000b200241ec016a2105200241d8016a41086a2107200241d8016a41047221082002419d016a2109200241d8016a41076a210a200241206a410172210b200241a0026a210c200241eb016a220d41056a210e20024190026a210f410021104100211141002112200321130340200241003a00d8012001280200200141046a2214280200200241d8016a4101200141086a22152802001000211620152015280200201641016a41014b22166a22173602002016450d0220022d00d801221641044b0d0202400240024002400240024002400240024002400240024002400240024020160e050004020301000b200241086a200110122002280208450d10200228020c2216417f4c0d142016450d042016101b2218450d0a20152016410020012802002014280200201820162015280200100022142014417f461b2214201420164b1b221420152802006a36020020142016460d050c090b20142802002116200241003602d8012015410020012802002016200241d8016a41042017100022162016417f461b22164104201641044922161b20152802006a36020020160d0f20022802d8012116200241106a200110122002280210450d0f20022802142217417f4c0d132017450d062017101b2219450d0a20152017410020012802002014280200201920172015280200100022142014417f461b2214201420174b1b221420152802006a36020020142017470d070c0b0b200241d8016a41186a221b4200370300200241d8016a41106a2219420037030020074200370300200242003703d8012015410020012802002014280200200241d8016a41202017100022162016417f461b2216412020164120491b20152802006a3602002016411f4d0d0e200241c8016a41086a200a41086a2800003602002002200a2900003703c8012002200d290000370390012002200e2900003700950120022f01d801211520022d00da01211620022800db0121182009411f6a200241d8016a411f6a290000370000200941186a201b290000370000200941106a2019290000370000200941086a2007290000370000200920022900d8013700002018410876211b20152016411074722116410121190c0b0b200242003703d8012015410020012802002014280200200241d8016a41082017100022162016417f461b2216410820164108491b20152802006a2217360200201641074d0d0d20022903d8012104200f4200370300200241d8016a41306a4200370300200241d8016a41286a4200370300200241d8016a41206a4200370300200241d8016a41186a4200370300200241d8016a41106a420037030020074200370300200242003703d8012015410020012802002014280200200241d8016a41c0002017100022162016417f461b221641c000201641c000491b20152802006a3602002016413f4d0d0d200241c8016a41086a200a41086a28000036020020024190016a41086a200d41086a29000037030020024190016a41106a200d41106a29000037030020024190016a41186a200d41186a29000037030020024190016a41206a200d41206a29000037030020024190016a41256a200d41256a2900003700002002200a2900003703c8012002200d2900003703900120022800db012218410876211b20022f01d80120022d00da01411074722116410221190c0a0b200241a8026a2001101120022802a8022218450d0c20022902ac022104200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220043703c80120022008290200370390012018410876211b410021190c020b410121182001280200201428020041014100201528020010001a41002016470d040b200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220082902003703900120022016ad22044220862004843703c8012018410876211b410421190b0c060b410121192001280200201428020041014100201528020010001a41002017460d040b2017450d07201910160c070b2016450d06201810160c060b201641011014000b201741011014000b2019450d032016411876211820022017ad221a422086201a843702cc01200220193602c801410321190b200241e0026a41086a221c200241c8016a41086a280200360200200241a8026a41086a221520024190016a41086a290300370300200241a8026a41106a221420024190016a41106a290300370300200241a8026a41186a221720024190016a41186a290300370300200241a8026a41206a221d20024190016a41206a290300370300200241a8026a41286a221e20024190016a41286a290300370300200241a8026a41306a221f20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a80220024180016a41086a2220201c280200360200200241c8006a41086a221c2015290300370300200241c8006a41106a22212014290300370300200241c8006a41186a22222017290300370300200241c8006a41206a2223201d290300370300200241c8006a41286a221d201e290300370300200241c8006a41306a221e201f280200360200200220022903e00237038001200220022903a8023703482007200229038001370000200741086a202028020036000020052002290348370000200541086a201c290300370000200541106a2021290300370000200541186a2022290300370000200541206a2023290300370000200541286a201d290300370000200541306a201e2802003600002002201b410874201841ff0171723602dc01200220193a00d801200220163b00d901200220164110763a00db01200c2004370300200241206a200241d8016a102220022d00202118200241a8026a411f6a2219200b411f6a2900003700002017200b41186a2900003703002014200b41106a2900003703002015200b41086a2900003703002002200b2900003703a80220184103460d03201241016a2116200241d8016a411f6a221c2019290000370000200241d8016a41186a22192017290300370300200241d8016a41106a2217201429030037030020072015290300370300200220022903a8023703d801024020122013470d002010201620162010491b2213ad42287e221a422088a70d05201aa722154100480d0502402012450d00200620112015101522060d010c070b201510132206450d060b200620116a221520183a0000201541206a201c290000370000201541196a2019290300370000201541116a2017290300370000201541096a2007290300370000201541016a20022903d801370000201041026a2110201141286a21112016211220162003490d000b0b2000201336020420002006360200200041086a2016360200200241f0026a24000f0b200241e0026a41086a200241c8016a41086a280200360200200241a8026a41086a220520024190016a41086a290300370300200241a8026a41106a220120024190016a41106a290300370300200241a8026a41186a221520024190016a41186a290300370300200241a8026a41206a20024190016a41206a290300370300200241a8026a41286a20024190016a41286a290300370300200241a8026a41306a20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a802200241033a0020200241a8026a411f6a200b411f6a2900003700002015200b41186a2900003703002001200b41106a2900003703002005200b41086a2900003703002002200b2900003703a8020b2000410036020002402012450d00200621050340024020052d00002201450d00024020014101470d00200541086a280200450d01200541046a2802001016200541286a2105201141586a22110d020c030b200541106a280200450d002005410c6a28020010160b200541286a2105201141586a22110d000b0b02402013450d00200610160b200241f0026a24000f0b1010000b201541081014000b100f000bad0b03057f047e017f230041c0006b22022400024002400240024002400240024002400240024002400240024002400240024020012d00002203450d0020034101470d02200041003a000020002001290001370001200041096a200141096a290000370000200041116a200141116a290000370000200041196a200141196a29000037000020030d014101450d0f0c0e0b2002412b6a2001410c6a280000360000200041013a00002002200141046a29000037002320002002290020370001200041086a200241276a2900003700002003450d020b20034101460d0d20030d05200141086a280200450d0d200141046a2802001016200241c0006a24000f0b20034104470d0720022001410c6a28020022043602142002200141046a2802002205360210200241003a0020200241206a20052004410047220610f6021a20042006490d052002200420066b22033602142002200520066a22063602102004450d0720022d002022044102460d0220044101460d0120040d07200241003a0020200241206a20062003410047220410f6021a20032004490d082002200320046b22053602142002200620046a22063602102003450d0620022d00200d0641002103200241206a2005412020054120491b22046a41004100412020046b2004411f4b1b10f5021a200241206a2006200410f6021a2002200520046b3602142002200620046a3602102005411f4d0d062002411c6a41026a2206200241206a41026a22052d00003a0000200220022f00203b011c20022800232104200229002f210720022900372108200231003f21092002290027210a200520062d000022063a00002002410c6a41026a20063a0000200220022f011c22063b010c200220063b0120200a422088a72106200aa721050c030b41000d0a0c0b0b200241003a0020200241206a20062003410047220410f6021a20032004490d072002200320046b3602142002200620046a3602102003450d0520022d00200d05200241206a200241106a101f20022802202204450d05200229022421072002410c6a41026a200241206a41026a2d00003a0000200220022f00203b010c2007422088a721062007a72105410121030c010b200241003a0020200241206a20062003410047220510f6021a20032005490d072002200320056b22043602142002200620056a22063602102003450d040240024020022d002022034101460d0020030d0620024200370320200241206a20062004410820044108491b220310f6021a2002200420036b3602142002200620036a360210200441074d0d0620022903202108200241206a200241106a102320022802202206450d0620022902242107410021050c010b20024200370320200241206a20062004410820044108491b220510f6021a2002200420056b22033602142002200620056a2206360210200441074d0d052002290320210820024200370320200241206a20062003410820034108491b220410f6021a2002200320046b3602142002200620046a360210200341074d0d0520022903202109200241206a200241106a102320022802202206450d0520022902242107410121050b410221032002410c6a41026a200241206a41026a2d00003a0000200220022f00203b010c0b200241206a41026a220b2002410c6a41026a2d00003a0000200220022f010c3b0120200020033a0000200041206a2009370000200041186a2008370000200041106a2007370000200041086a2006ad4220862005ad84370000200041046a2004360000200020022f01203b0001200041036a200b2d00003a00000b200141086a280200450d07200141046a28020010160c070b20062004101c000b200241206a41026a2002411c6a41026a2d00003a0000200220022f001c3b01200b41c4f5c000411e1029000b20042003101c000b20042003101c000b20052003101c000b200141086a280200450d00200141046a2802001016200241c0006a24000f0b200241c0006a24000bd00504027f017e0f7f017e230041d0006b22022400200241086a2001101a0240024002400240024002400240024002402002280208450d00200228020c2203ad42287e2204422088a70d032004a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241d0006a24000f0b4108210620030d030b410021114100210e0c030b100f000b200541081014000b200241306a41186a2107200241306a41106a2108200241306a41086a2109200141046a210a4100210b4100210c4100210d2003210e0240034020074200370300200842003703002009420037030020024200370330200241306a2001280200220f200a28020022054120200541204922101b221110f6021a200a200520116b22053602002001200f20116a221136020020100d01200241106a41186a22102007290300370300200241106a41106a22122008290300370300200241106a41086a221320092903003703002002200229033037031020024200370330200241306a20112005410820054108491b220f10f6021a200a2005200f6b36020020012011200f6a360200200541074d0d01200d41016a211120022903302104200720102903003703002008201229030037030020092013290300370300200220022903103703300240200d200e470d00200b20112011200b491b220ead42287e2214422088a70d042014a722054100480d040240200d450d002006200c2005101522060d010c060b200510132206450d050b2006200c6a22052002290330370300200541186a2007290300370300200541106a2008290300370300200541086a2009290300370300200541206a2004370300200b41026a210b200c41286a210c2011210d20112003490d000c020b0b200041003602000240200e450d00200610160b200241d0006a24000f0b2000200e36020420002006360200200041086a2011360200200241d0006a24000f0b1010000b200541081014000bd81805027f017e147f017e097f230041f0026b22022400200241186a2001101a024002400240024002400240024002400240024002402002280218450d00200228021c2203ad42287e2204422088a70d0a2004a72205417f4c0d0a2005450d01200510132206450d032003450d020c040b20004100360200200241f0026a24000f0b4108210620030d020b41002116410021120c020b200541081014000b200241ec016a2105200241d8016a41086a2107200241d8016a41047221082002419d016a2109200241d8016a41076a210a200241206a410172210b200241a0026a210c200241eb016a220d41056a210e4100210f4100211041002111200321120340200141046a22132802002114200241003a00d801200241d8016a200128020022152014410047221610f6021a024002400240024002400240024020142016490d002013201420166b22173602002001201520166a22163602002014450d0920022d00d801221441044b0d090240024002400240024002400240024002400240024020140e050004020301000b200241086a2001101a2002280208450d13200228020c2214417f4c0d172014450d042014101b2215450d0b2015200128020020132802002216201420162014491b221610f6021a201328020022172016490d0c2013201720166b3602002001200128020020166a36020020162014460d050c090b200241003602d801200241d8016a201620174104201741044922151b221410f6021a2013201720146b3602002001201620146a36020020150d1220022802d8012116200241106a2001101a2002280210450d1220022802142214417f4c0d162014450d062014101b2217450d0c2017200128020020132802002215201420152014491b221510f6021a201328020022182015490d0d2013201820156b3602002001200128020020156a36020020152014470d070c0e0b200241d8016a2017412020174120491b22146a41004100412020146b2014411f4b1b10f5021a200241d8016a2016201410f6021a2013201720146b3602002001201620146a3602002017411f4d0d11200241c8016a41086a200a41086a2800003602002002200a2900003703c8012002200d290000370390012002200e2900003700950120022f01d801211420022d00da01211620022800db0121152009411f6a200241d8016a411f6a290000370000200941186a200241d8016a41186a290000370000200941106a200241d8016a41106a290000370000200941086a2007290000370000200920022900d8013700002015410876211a20142016411074722116410121180c0e0b200242003703d801200241d8016a20162017410820174108491b221410f6021a2013201720146b22153602002001201620146a2216360200201741074d0d1020022903d8012104200241d8016a201541c000201541c000491b22146a4100410041c00020146b2014413f4b1b10f5021a200241d8016a2016201410f6021a2013201520146b3602002001201620146a3602002015413f4d0d10200241c8016a41086a200a41086a28000036020020024190016a41086a200d41086a29000037030020024190016a41106a200d41106a29000037030020024190016a41186a200d41186a29000037030020024190016a41206a200d41206a29000037030020024190016a41256a200d41256a2900003700002002200a2900003703c8012002200d2900003703900120022800db012215410876211a20022f01d80120022d00da01411074722116410221180c0d0b200241a8026a2001101f20022802a8022215450d0f20022902ac022104200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220043703c80120022008290200370390012015410876211a410021180c020b4101211541002014470d040b200241c8016a41086a20022802d80136020020024190016a41086a200841086a29020037030020024190016a41106a200841106a29020037030020024190016a41186a200841186a29020037030020024190016a41206a200841206a29020037030020024190016a41286a200841286a29020037030020024190016a41306a200841306a280200360200200220082902003703900120022014ad22044220862004843703c8012015410876211a410421180b0c090b4101211741002014460d070b2014450d0a201710160c0a0b2014450d09201510160c090b20162014101c000b201441011014000b20162017101c000b201441011014000b20152018101c000b2017450d032016411876211520022014ad22194220862019843702cc01200220173602c801410321180b200241e0026a41086a221b200241c8016a41086a280200360200200241a8026a41086a221420024190016a41086a290300370300200241a8026a41106a221320024190016a41106a290300370300200241a8026a41186a221720024190016a41186a290300370300200241a8026a41206a221c20024190016a41206a290300370300200241a8026a41286a221d20024190016a41286a290300370300200241a8026a41306a221e20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a80220024180016a41086a221f201b280200360200200241c8006a41086a221b2014290300370300200241c8006a41106a22202013290300370300200241c8006a41186a22212017290300370300200241c8006a41206a2222201c290300370300200241c8006a41286a221c201d290300370300200241c8006a41306a221d201e280200360200200220022903e00237038001200220022903a8023703482007200229038001370000200741086a201f28020036000020052002290348370000200541086a201b290300370000200541106a2020290300370000200541186a2021290300370000200541206a2022290300370000200541286a201c290300370000200541306a201d2802003600002002201a410874201541ff0171723602dc01200220183a00d801200220163b00d901200220164110763a00db01200c2004370300200241206a200241d8016a102220022d00202115200241a8026a411f6a2218200b411f6a2900003700002017200b41186a2900003703002013200b41106a2900003703002014200b41086a2900003703002002200b2900003703a80220154103460d03201141016a2116200241d8016a411f6a221b2018290000370000200241d8016a41186a22182017290300370300200241d8016a41106a2217201329030037030020072014290300370300200220022903a8023703d801024020112012470d00200f20162016200f491b2212ad42287e2219422088a70d052019a722144100480d0502402011450d00200620102014101522060d010c070b201410132206450d060b200620106a221420153a0000201441206a201b290000370000201441196a2018290300370000201441116a2017290300370000201441096a2007290300370000201441016a20022903d801370000200f41026a210f201041286a21102016211120162003490d000b0b2000201236020420002006360200200041086a2016360200200241f0026a24000f0b200241e0026a41086a200241c8016a41086a280200360200200241a8026a41086a220520024190016a41086a290300370300200241a8026a41106a220120024190016a41106a290300370300200241a8026a41186a221420024190016a41186a290300370300200241a8026a41206a20024190016a41206a290300370300200241a8026a41286a20024190016a41286a290300370300200241a8026a41306a20024190016a41306a280200360200200220022903c8013703e00220022002290390013703a802200241033a0020200241a8026a411f6a200b411f6a2900003700002014200b41186a2900003703002001200b41106a2900003703002005200b41086a2900003703002002200b2900003703a8020b2000410036020002402011450d00200621050340024020052d00002201450d00024020014101470d00200541086a280200450d01200541046a2802001016200541286a2105201041586a22100d020c030b200541106a280200450d002005410c6a28020010160b200541286a2105201041586a22100d000b0b02402012450d00200610160b200241f0026a24000f0b1010000b201441081014000b100f000bb90704027f017e0f7f027e230041f0006b22022400200241086a200110120240024002400240024002400240024002402002280208450d00200228020c2203ad42307e2204422088a70d032004a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241f0006a24000f0b4108210620030d030b4100210f4100210d0c030b100f000b200541081014000b200241d0006a41186a2107200241d0006a41106a2108200141046a21094100210a4100210b4100210c2003210d024003402007420037030020084200370300200241d0006a41086a220e420037030020024200370350200141086a2205410020012802002009280200200241d0006a412020052802001000220f200f417f461b220f4120200f412049220f1b20052802006a2210360200200f0d01200241306a41186a22112007290300370300200241306a41106a22122008290300370300200241306a41086a2213200e29030037030020022002290350370330200242003703502005410020012802002009280200200241d0006a410820101000220f200f417f461b220f4108200f4108491b20052802006a2210360200200f41074d0d0120022903502104200241003a005020012802002009280200200241d0006a410120101000210f20052005280200200f41016a41014b220f6a2210360200200f450d0120022d00500d01200242003703502005410020012802002009280200200241d0006a410820101000220f200f417f461b220f4108200f4108491b20052802006a360200200f41074d0d01200c41016a210f20022903502114200241106a41186a22052011290300370300200241106a41106a22102012290300370300200241106a41086a22112013290300370300200220022903303703102007200529030037030020082010290300370300200e2011290300370300200220022903103703500240200c200d470d00200a200f200f200a491b220dad42307e2215422088a70d042015a722054100480d040240200c450d002006200b2005101522060d010c060b200510132206450d050b2006200b6a22052004370300200541206a2007290300370300200541186a2008290300370300200541106a200e290300370300200541086a2002290350370300200541286a2014370300200a41026a210a200b41306a210b200f210c200f2003490d000c020b0b200041003602000240200d450d00200610160b200241f0006a24000f0b2000200d36020420002006360200200041086a200f360200200241f0006a24000f0b1010000b200541081014000bc50303027f017e097f230041106b2202240020022001101202400240024002400240024002400240024002402002280200450d0020022802042203ad2204421e88a70d032004420286a72205417f4c0d032005450d01200510132206450d042003450d020c050b20004100360200200241106a24000f0b4104210620030d030b410021054100210b0c030b100f000b200541041014000b200141086a210741002108410021094100210a2003210b0340200141046a28020021052007280200210c2002410036020c20074100200128020020052002410c6a4104200c100022052005417f461b2205410420054104491b20072802006a360200200541034d0d02200a41016a2105200228020c210c0240200a200b470d002008200520052008491b220bad4202862204422088a70d042004a7220d4100480d040240200a450d0020062009200d101522060d010c060b200d10132206450d050b200620096a200c360200200841026a2108200941046a21092005210a20052003490d000b0b2000200b36020420002006360200200041086a2005360200200241106a24000f0b200041003602000240200b450d00200610160b200241106a24000f0b1010000b200d41041014000bd60403017f017e0c7f230041d0006b22022400024002400240024002402001450d002001ad42287e2203422088a70d032003a722044100480d03200410132205450d04200241086a2106200241306a41186a2107200241306a41106a2108200521044100210903402002410e360234200241b384c00036023020022009200241306a10280240024002402002280200220a2006280200220b41acf1c300410041001000417f470d00420021032007420037030020084200370300200241306a41086a420037030020024200370330200941016a210920022802040d010c020b2007420037030020084200370300200241306a41086a220c420037030020024200370330200a200b200241306a412041001000220d417f460d05200d4120490d05200241106a41186a220d2007290300370300200241106a41106a220e2008290300370300200241106a41086a220f200c2903003703002002200229033037031020024200370330200a200b200241306a41084120100041016a41084d0d05200229033021032007200d2903003703002008200e290300370300200c200f29030037030020022002290310370330200941016a21092002280204450d010b200a10160b20042002290330370300200441186a2007290300370300200441106a2008290300370300200441086a200241306a41086a290300370300200441206a2003370300200441286a210420012009470d000b200121040c010b41002104410821050b200020043602082000200136020420002005360200200241d0006a24000f0b41b6e7c20041331029000b1010000b200441081014000bb20101037f024002400240024020022802042203417f4c0d004101210402402003450d0020022802002102200310132204450d0320042002200310f6021a0b20034101742205200341046a220220022005491b22054100480d01024002402003450d0020042003200510152204450d010c050b2005101322040d040b200541011014000b100f000b1010000b200341011014000b200020023602082000200536020420002004360200200420036a20013600000b5e01017f230041306b220224002002200136020c20022000360208200241246a41013602002002410236022c20024201370214200241b09bc4003602102002200241086a3602282002200241286a360220200241106a41b89bc4001046000b870403077f037e027f230041c0006b2202240041002103024020012802082204200128020c2205460d002001280210220641046a21070340200141086a2004220841206a2204360200200841086a2900002109200841106a290000210a2008290000210b200241206a41186a200841186a290000370300200241206a41106a200a370300200241206a41086a20093703002002200b3703202006280200220820072802004105746a210c0240024002400340200c20086b41ff004d0d012008200241206a460d022008200241206a412010f802450d02200841206a220d200241206a460d02200d200241206a412010f802450d02200841c0006a220d200241206a460d02200d200241206a412010f802450d02200841e0006a220d200241206a460d0220084180016a2108200d200241206a412010f8020d000c020b0b2008200c460d010340200241206a2008460d012008200241206a412010f802450d01200c200841206a2208470d000c020b0b20042005470d010c020b0b200241186a2208200241206a41186a290300370300200241106a220d200241206a41106a290300370300200241086a220c200241206a41086a29030037030020022002290320370300200041196a2008290300370000200041116a200d290300370000200041096a200c29030037000020002002290300370001410121030b200020033a0000200241c0006a24000b9e0903067f037e087f23004180016b2202240002400240200141086a28020022032001410c6a2802002204460d0002400240200241e0006a200128021022054622060d000340200141086a200341206a2207360200200341086a2900002108200341106a29000021092003290000210a200241e0006a41186a200341186a290000370300200241e0006a41106a2009370300200241e0006a41086a20083703002002200a370360200241e0006a2005412010f8020d042007210320042007470d000c020b0b200141086a20043602000b200421030b2000410036020820004201370200024020032004460d00200141086a2003200420036b41606a4160716a41206a3602000b02402001280204450d00200128020010160b20024180016a24000f0b200241206a41186a2207200241e0006a41186a290300370300200241206a41106a220b200241e0006a41106a290300370300200241206a41086a220c200241e0006a41086a29030037030020022002290360370320200241186a220d2007290300370300200241106a2207200b290300370300200241086a220b200c29030037030020022002290320370300200241c0006a41186a220c200d290300370300200241c0006a41106a220d2007290300370300200241c0006a41086a2207200b290300370300200220022903003703400240024002400240024041201013220b450d00200b2002290340370000200b41186a200c290300370000200b41106a200d290300370000200b41086a20072903003700002001280204210e2001280200210f4101210c024002400240200441606a2003460d0020060d02200341206a2101200441606a21104101210c4101210d03402001210302400340200241e0006a41186a2207200341186a290000370300200241e0006a41106a2201200341106a290000370300200241e0006a41086a2206200341086a29000037030020022003290000370360200241e0006a2005412010f8020d012004200341206a2203470d000c040b0b200241206a41186a22112007290300370300200241206a41106a22072001290300370300200241206a41086a2201200629030037030020022002290360370320200241c0006a41186a22062011290300370300200241c0006a41106a22112007290300370300200241c0006a41086a2207200129030037030020022002290320370340200241186a22122006290300370300200241106a22062011290300370300200241086a22112007290300370300200220022903403703000240200d200c470d00200c41016a2207200c490d06200c4101742201200720072001491b220dad4205862208422088a70d062008a722074100480d060240200c450d00200b200c41057420071015220b0d010c080b20071013220b450d070b200341206a2101200b200c4105746a22072002290300370000200741186a2012290300370000200741106a2006290300370000200741086a2011290300370000200c41016a210c20102003470d000c020b0b4101210d0b200e450d050c040b4101210d200e0d030c040b412041011014000b1010000b200741011014000b200f10160b2000200c3602082000200d3602042000200b36020020024180016a24000bc10306037f017e017f027e017f027e230041106b22022400200242003703002001410020012802002001280204200241082001280208100022032003417f461b2203410820034108491b20012802086a22043602080240024002400240200341074d0d002002290300210520024200370300200141086a220641002001280200200141046a280200200241082004100022032003417f461b2203410820034108491b20062802006a360200200341074d0d002002290300210720022001101d20022802002204450d0020022902042108200241003a00002001280200200141046a28020020024101200141086a22032802001000210620032003280200200641016a41014b22066a22093602002006450d0120022d00004101470d014200210a20024200370300200141086a220341002001280200200141046a280200200241082009100022012001417f461b2201410820014108491b20032802006a360200200141074d0d022002290300210b4201210a0c030b20004202370310200241106a24000f0b4200210a0b0b2000200b3703182000200a3703102000200737030820002005370300200041246a2008370200200041206a2004360200200241106a24000bc20201017f024002400240412010132202450d0020022000290018370000200241186a200041306a290000370000200241106a200041286a290000370000200241086a200041206a2900003700002002412041c00010152202450d0120022000290038370020200241386a200041d0006a290000370000200241306a200041c8006a290000370000200241286a200041c0006a290000370000200241c00041800110152202450d0220022000290058370040200220002903003700602002200029030837006820022000290310370071200241d8006a200041f0006a290000370000200241d0006a200041e8006a290000370000200241c8006a200041e0006a290000370000200220002d00784101463a007020012802002001280204200241f9001001200210160f0b412041011014000b41c00041011014000b41800141011014000b130020004101360204200041dc8cc0003602000bb40d03017f017e097f230041d0006b2204240042002105200441206a41086a220642003703002004420037032041888dc000411d200441206a1002200441086a220720062903003703002004200429032037030002400240024002400240024002400240024002402004411041acf1c300410041001000417f460d002004421037021420042004360210200441206a200441106a102c20042903304202510d0102402004280244450d00200441c0006a28020010160b200041046a280200450d0920002802001016200441d0006a24000f0b2006420037030020044200370320419be8c200410d200441206a100220072006290300370300200420042903203703000240024002402004411041acf1c300410041001000417f460d002004420037032020044110200441206a41084100100041016a41084d0d01200429032021050b02402002a74101470d00200441206a41086a220642003703002004420037032041a58dc000411a200441206a1002200441086a20062903003703002004200429032037030002402004411041acf1c300410041001000417f460d002004420037032020044110200441206a41084100100041016a41084d0d0320042903202005580d00200041046a280200450d0c20002802001016200441d0006a24000f0b200441206a41086a220642003703002004420037032041a58dc000411a200441206a1002200441086a2006290300370300200420042903203703002004200142018620057c37032020044110200441206a410810010b200028020821062000280204210820002802002109200441206a41086a220042003703002004420037032041888dc000411d200441206a1002200441086a2000290300370300200420042903203703002004410036022820044201370320410810132200450d03200442888080808001370224200420003602202000200537000020004108411010152200450d04200442908080808002370224200020013700082004200036022020042006360210200441106a200441206a101802400240024002402006450d002009200641286c6a210a200441206a41086a220b280200210c2004280224210720092100034002400240024002402007200c6b41204f0d00200c41206a2206200c490d062007410174220d20062006200d491b220e4100480d062007450d0120042802202007200e1015220d0d020c070b200c41206a21062004280220210d0c020b200e1013220d450d050b2004200e3602242004200d360220200e21070b200b2006360200200d200c6a220c41186a200041186a290000370000200c41106a200041106a290000370000200c41086a200041086a290000370000200c2000290000370000200041206a29030021050240200720066b41074b0d00200641086a220c2006490d032007410174220e200c200c200e491b220c4100480d03024002402007450d00200d2007200c1015220d0d010c070b200c1013220d450d060b2004200c3602242004200d360220200c21070b200b200641086a220c360200200d20066a2005370000200a200041286a2200470d000b0b200441286a28020021002004280224210702400240024002400240024002400240024002400240024020024201520d0020072000470d01200041016a22062000490d0c20004101742207200620062007491b22074100480d0c2000450d03200428022020002007101522060d040c140b20072000470d01200041016a22062000490d0b20004101742207200620062007491b22074100480d0b2000450d05200428022020002007101522060d060c140b200428022021060c030b20042802202106200721070c050b200710132206450d100b20042007360224200420063602200b200441206a41086a220b200041016a220d360200200620006a41013a000002402007200d6b41074b0d00200d41086a220c200d490d072007410174220e200c200c200e491b220c4100480d072007450d0420062007200c101522060d050c110b2007210c0c050b200710132206450d0e0b20042007360224200420063602200b200441286a200041016a220d360200200620006a41003a0000200441102006200d10012007450d0f0c0e0b200c10132206450d0c0b2004200c360224200420063602200b200b200041096a22003602002006200d6a200337000020044110200620001001200c0d0b0c0c0b1010000b200e41011014000b200c41011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410841011014000b411041011014000b200741011014000b200741011014000b200c41011014000b200610160b2008450d00200910160b200441d0006a24000b13002000410f360204200041bf8dc0003602000b130020004102360204200041d08dc0003602000b02000b130020004100360204200041acf1c3003602000b130020004107360204200041e18fc0003602000b130020004102360204200041e88fc0003602000b9e1102177f017e230041206b220224002000280204210320002802002104410121050240200128021841222001411c6a2802002802101100000d00024002402003450d00200420036a2106200141186a21072001411c6a2108200421094100210a4100210b024003402009210c200941016a2100024002400240024002400240024002400240024020092c0000220d4100480d00200d41ff0171210d0c010b02400240024020002006460d0020002d0000413f71210e200941026a22092100200d411f71210f200d41ff0171220d41e001490d010c020b4100210e20062109200d411f71210f200d41ff0171220d41e0014f0d010b200e200f41067472210d0c010b0240024020092006460d00200941016a2200211020092d0000413f71200e41067472210e200d41f001490d010c030b200621104100200e41067472210e200d41f0014f0d020b200e200f410c7472210d0b2000210941022100200d41776a220f411e4d0d010c020b0240024020102006460d00201041016a210920102d0000413f71210d0c010b4100210d200021090b200e410674200f411274418080f0007172200d72220d418080c400460d0841022100200d41776a220f411e4b0d010b41f400210e024002400240200f0e1f07010505000505050505050505050505050505050505050505040505050504070b41f200210e0c010b41ee00210e0b0c040b200d41dc00470d010b0c010b0240200d10370d0002400240200d41ffff034b0d00200d4180fe0371410876211141a8f7c300211241002113410021000c010b0240200d41ffff074b0d00200d4180fe0371410876211641e3fcc300211741002118410121000c010b200d41ef83384b0d01200d41e28b746a41e28d2c490d01200d419fa8746a419f18490d01200d41dee2746a410e490d01200d41feffff0071419ef00a460d01200d41a9b2756a4129490d01200d41cb91756a410a4d0d010c040b024003400240024020000e020001010b201241026a2114201320122d000122006a2110024002400240024002400240024020122d0000220e2011470d0020102013490d06201041b0024f0d05201341f8f7c3006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c0b0b0b200e20114b0d012010211320142112201441f8f7c300470d030c010b2010211320142112201441f8f7c300470d010b200d41ffff0371210e41a7fac30021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041e3fcc300460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41bcf5c3001038000b200f410173210f200041e3fcc300470d000b0b200f410171450d070c0a0b410021000c040b410021000c030b201041af021039000b20132010101c000b201741026a2114201820172d000122006a211002400240024002400240024020172d0000220e2016470d0020102018490d072010419f014f0d05201841a5fdc3006a210e03402000450d022000417f6a2100200e2d0000210f200e41016a210e200f200d41ff0171470d000c090b0b200e20164b0d012010211820142117201441a5fdc300470d030c010b2010211820142117201441a5fdc300470d010b200d41ffff0371210e41c3fec30021004101210f02400340200041016a21100240024020002d000022144118744118752215417f4c0d0020102100200e20146b220e4100480d030c010b0240201041c081c400460d00200041016a2110200041026a2100200e201541ff007141087420102d0000726b220e41004e0d010c030b41bcf5c3001038000b200f410173210f200041c081c400470d000b0b200f410171450d050c080b410121000c020b410121000c010b0b2010419e011039000b20182010101c000b200d41017267410276410773ad4280808080d000842119410321000b200d210e0b20022003360204200220043602002002200a3602082002200b36020c02400240200b200a490d000240200a450d00200a2003460d00200a20034f0d012004200a6a2c000041bf7f4c0d010b0240200b450d00200b2003460d00200b20034f0d012004200b6a2c000041bf7f4c0d010b20072802002004200a6a200b200a6b200828020028020c1101000d010340024002400240024002400240024020004101460d0041dc00210a024020004102460d0020004103470d062019422088a741ff0171417f6a220041044b0d06024020000e050006040503000b201942ffffffff8f608321194103210041fd00210a0c070b410121000c060b41002100200e210a0c050b201942ffffffff8f60834280808080c000842119410321000c040b201942ffffffff8f60834280808080208421194103210041fb00210a0c030b201942ffffffff8f60834280808080308421194103210041f500210a0c020b200e2019a7220f410274411c7176410f712200413072200041d7006a2000410a491b210a0240200f450d002019427f7c42ffffffff0f83201942808080807083842119410321000c020b201942ffffffff8f6083428080808010842119410321000c010b410121000240200d418001490d0041022100200d418010490d0041034104200d41808004491b21000b2000200b6a210a200b200c6b20096a210b20062009470d050c060b2007280200200a2008280200280210110000450d000b200241206a240041010f0b20022002410c6a3602182002200241086a36021420022002360210200241106a103a000b200241206a240041010f0b200b200c6b20096a210b20062009470d000b0b200a450d01200a2003460d010240200a20034f0d002004200a6a2c000041bf7f4a0d020b20042003200a2003103b000b4100210a0b200141186a22002802002004200a6a2003200a6b2001411c6a220b28020028020c1101000d0020002802004122200b28020028021011000021050b200241206a240020050b9b0201017f024002400240024002400240024020004180104f0d00200041037641f8ffffff017141c081c4006a21010c010b02402000418080044f0d00200041067641606a220141e0074f0d02200141d883c4006a2d0000220141c9004b0d03200141037441b08ec4006a21010c010b2000410c7641706a22014180024f0d03200141b88bc4006a2d00004106742000410676413f7172220141ff034b0d042001418093c4006a2d0000220141364b0d052001410374418097c4006a21010b200129030042012000413f71ad86834200520f0b41b88dc400200141e00710a801000b41c88dc400200141ca0010a801000b41d88dc400200141800210a801000b41e88dc400200141800410a801000b41f88dc4002001413710a801000b6802017f037e230041306b22012400200029020821022000290210210320002902002104200141146a410036020020012004370318200141acf1c300360210200142013702042001200141186a36020020012003370328200120023703202001200141206a1046000b6f01017f230041306b2202240020022001360204200220003602002002412c6a41013602002002411c6a4102360200200241013602242002420237020c200241b8f3c3003602082002200241046a360228200220023602202002200241206a360218200241086a41c8f3c3001046000b2601017f20002802002201280200200128020420002802042802002000280208280200103b000bd30801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b21074180022108024003400240200820014f0d00200020086a2c000041bf7f4a0d020b2008417f6a21064100210520084101460d02200720086a21092006210820094101470d000c020b0b41002105200821060b200420063602142004200036021020044100410520051b36021c200441acf1c30041def4c30020051b360218024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b20042002360220024002402002450d0020022001460d00200141016a210903400240200220014f0d00200020026a2c000041404e0d020b2002417f6a210820024101460d0220092002462106200821022006450d000c020b0b200221080b20082001460d02410121064100210502400240200020086a22092c000022024100480d002004200241ff0171360224200441286a21020c010b200020016a220621010240200941016a2006460d00200941026a2101200941016a2d0000413f7121050b2002411f712109024002400240200241ff017141e001490d004100210020062107024020012006460d00200141016a210720012d0000413f7121000b20002005410674722101200241ff017141f001490d0141002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d060c020b200520094106747221010c010b20012009410c747221010b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441ec006a4102360200200441e4006a4102360200200441c8006a41146a4103360200200441d4006a4104360200200441306a41146a4105360200200420023602582004410136024c20044205370234200441d4f5c3003602302004200441186a3602682004200441106a3602602004200441246a3602502004200441206a3602482004200441c8006a360240200441306a41fcf5c3001046000b20042002200320081b360228200441c8006a41146a4102360200200441d4006a4102360200200441306a41146a41033602002004410136024c20044203370234200441e4f4c3003602302004200441186a3602582004200441106a3602502004200441286a3602482004200441c8006a360240200441306a41fcf4c3001046000b200441e4006a4102360200200441c8006a41146a4102360200200441d4006a4101360200200441306a41146a41043602002004410136024c200442043702342004418cf5c3003602302004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a3602482004200441c8006a360240200441306a41acf5c3001046000b41bcf5c3001038000bc60202027f017e23004180016b22022400200028020021000240024002400240200128020022034110710d002000290300210420034120710d0120042001103d210020024180016a240020000f0b200029030021044180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141dcf4c3004102200220006a41800120006b103e210020024180016a240020000f0b4180012100024003402000450d01200220006a417f6a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b0b20004181014f0d01200141dcf4c3004102200220006a41800120006b103e210020024180016a240020000f0b2000418001101c000b2000418001101c000bd10203037f017e027f230041306b220224004127210302400240024020004290ce00540d00412721030340200241096a20036a2204417c6a200020004290ce0080220542f0b17f7e7ca7220641e4006e220741017441eef1c3006a2f00003b00002004417e6a2007419c7f6c20066a41017441eef1c3006a2f00003b00002003417c6a2103200042ffc1d72f5621042005210020040d000b2005a7220441e3004c0d020c010b20002205a7220441e3004c0d010b200241096a2003417e6a22036a2005a7220641ffff037141e4006e2204419c7f6c20066a41ffff037141017441eef1c3006a2f00003b00000b02400240200441094a0d00200241096a2003417f6a22036a200441306a3a00000c010b200241096a2003417e6a22036a200441017441eef1c3006a2f00003b00000b200141acf1c3004100200241096a20036a412720036b103e2103200241306a240020030bcd0601077f20002802002205410171220620046a2107024002400240024020054104710d0041002101412b418080c40020061b210620002802084101460d010c020b4100210902402002450d002002210a200121080340200920082d000041c00171418001466a2109200841016a2108200a417f6a220a0d000b0b200720026a20096b2107412b418080c40020061b210620002802084101470d010b0240024002400240024002400240024002400240024002402000410c6a280200220920074d0d0020054108710d01200920076b2108410120002d0030220920094103461b2209410371450d0220094102460d034100210b200821090c040b41012108200020062001200210ee020d0c2000280218200320042000411c6a28020028020c1101000f0b41012108200041013a003020004130360204200020062001200210ee020d0b200920076b21084101200041306a2d0000220920094103461b2209410371450d0320094102460d0441002107200821090c050b410021092008210b0c010b20084101762109200841016a410176210b0b417f2108200041046a210a200041186a21072000411c6a210502400340200841016a220820094f0d012007280200200a2802002005280200280210110000450d000c050b0b200041046a280200210a41012108200020062001200210ee020d08200041186a2209280200200320042000411c6a220228020028020c1101000d0820092802002100417f2109200228020041106a21020340200941016a2209200b4f0d06410121082000200a2002280200110000450d000c090b0b41002109200821070c010b20084101762109200841016a41017621070b417f2108200041046a210a200041186a21022000411c6a21010340200841016a220820094f0d022002280200200a2802002001280200280210110000450d000b0b410121080c040b200041046a280200210a41012108200041186a2209280200200320042000411c6a220228020028020c1101000d0320092802002100417f2109200228020041106a21020340200941016a220920074f0d02410121082000200a2002280200110000450d000c040b0b41000f0b41000f0b41012108200020062001200210ee020d002000280218200320042000411c6a28020028020c1101000f0b20080bbf0201037f23004180016b22022400200028020021000240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103d210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b2004418001101c000b2004418001101c000b830605027f027e017f027e027f230041a0016b22022400200028020021000240024002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0120054290ce005441002004501b0d0241272100200241186a21060340200241106a200520044290ce00420010f9022002200229031022072006290300220842f0b17f427f10fa02200241206a20006a2203417c6a200520022903007ca7220941e4006e220a41017441eef1c3006a2f00003b00002003417e6a200a419c7f6c20096a41017441eef1c3006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000b2007a7220341e3004a0d030c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d03200141dcf4c3004102200241206a20006a41800120006b103e2100200241a0016a240020000f0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d03200141dcf4c3004102200241206a20006a41800120006b103e2100200241a0016a240020000f0b412721002005a7220341e3004c0d030b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff037141017441eef1c3006a2f00003b0000200941094a0d030c040b2000418001101c000b2000418001101c000b2003220941094c0d010b200241206a2000417e6a22006a200941017441eef1c3006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141acf1c3004100200241206a20006a412720006b103e2100200241a0016a240020000b9c0601067f230041e0006b220224002002413c6a41026a2203200141036a2d00003a0000200241206a41086a2204200141106a290200370300200241206a41106a2205200141186a290200370300200241206a41186a2206200141206a280200360200200220012f00013b013c2002200141086a290200370320200141046a28020021070240024002400240024002400240024002400240024020012d00004101470d00410f10132201450d03200141076a41002900c09240370000200141002900b992403700002001410f411e10152201450d042001200741067636000f200241086a22034200370300200242003703002001411320021002200241c0006a41086a200329030037030020022002290300370340200241c0006a411041acf1c300410041001000417f460d01200242103702542002200241c0006a3602502002200241d0006a101120022802002203450d05200241086a2802002105200228020421060c020b200241c0006a41026a20032d00003a0000200241086a2004290300370300200241106a2005290300370300200241186a20062d00003a0000200220022f013c3b0140200220022903203703000c070b4101210341002105410021060b2001101641002101024020052007413f7122044d0d000240200320044105746a2205450d00200241c0006a41026a200541026a2d00003a0000200241086a200320044105746a2201410f6a290000370300200241106a200141176a290000370300200241186a2001411f6a2d00003a0000200220052f00003b01402002200129000737030020012800032107410121010b2006450d050c040b20060d030c040b410f41011014000b411e41011014000b41b6e7c20041331029000b200310160b2001450d010b200020022f01403b0001200041046a2007360000200041086a2002290300370000200041036a200241c2006a2d00003a0000200041106a200241086a290300370000200041186a200241106a290300370000200041206a200241186a2d00003a0000410021010c010b200041086a4115360200200041046a41e8d5c200360200410121010b200020013a0000200241e0006a24000bcf0101047f200020014105746a210320002104024002400340200320046b41ff004d0d014101210520042002460d0220042002412010f802450d02200441206a22062002460d0220062002412010f802450d02200441c0006a22062002460d0220062002412010f802450d02200441e0006a22062002460d0220044180016a210420062002412010f8020d000c020b0b024020042003460d00200020014105746a210603404101210520022004460d0220042002412010f802450d022006200441206a2204470d000b0b41000f0b20050bdc0701067f230041106b220324002003200136020c2003410c6a2002101802400240024002400240024002402001450d002000200141216c6a2104200241086a2101200241046a21050340024002400240024020052802002206200128020022076b41204f0d00200741206a22082007490d0620064101742207200820082007491b22074100480d062006450d01200228020020062007101522060d020c070b200228020021060c020b200710132206450d050b2002200636020020052007360200200128020021070b2001200741206a360200200620076a220741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a29000037000020072000290000370000024002400240024002400240024002400240024002400240024002400240024002400240200041206a2d000022074101460d00024020074102460d0020074103470d02200528020020012802002207470d05200741016a22062007490d1520074101742208200620062008491b22084100480d152007450d0d200228020020072008101522060d0e0c190b200528020020012802002207470d02200741016a22062007490d1420074101742208200620062008491b22084100480d142007450d06200228020020072008101522060d070c160b200528020020012802002207470d02200741016a22062007490d1320074101742208200620062008491b22084100480d132007450d08200228020020072008101522060d090c160b200528020020012802002207470d03200741016a22062007490d1220074101742208200620062008491b22084100480d122007450d0d200228020020072008101522060d0e0c170b200228020021060c050b200228020021060c070b200228020021060c090b200228020021060c0b0b200810132206450d0f0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41023a0000200041216a22002004470d090c0a0b200810132206450d0d0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41013a0000200041216a22002004470d060c070b200810132206450d0b0b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41033a0000200041216a22002004470d030c040b200810132206450d090b2002200636020020052008360200200128020021070b2001200741016a360200200620076a41003a0000200041216a22002004470d000b0b200341106a24000f0b1010000b200741011014000b200841011014000b200841011014000b200841011014000b200841011014000b4d01017f230041206b22002400200041146a41013602002000410236021c200041c8d7c30036021820004201370204200041d0d7c3003602002000200041186a360210200041fc86c0001046000b110020012000280200200028020410ef020b4b02017f017e230041206b2202240020012902002103200241146a20012902083702002002200337020c20022000360208200241acf1c300360204200241acf1c300360200200210e602000b130020004103360204200041c892c0003602000b130020004110360204200041c495c0003602000b130020004102360204200041a097c0003602000ba50801027f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041ff0171417f6a220041044b0d000240024002400240024020000e050004020301000b200141046a280200200141086a2802002200470d08200041016a22022000490d1720004101742203200220022003491b22034100480d172000450d1120012802002000200310152202450d120c220b200141046a280200200141086a2802002200470d04200041016a22022000490d1620004101742203200220022003491b22034100480d162000450d0a20012802002000200310152202450d0b0c1f0b200141046a280200200141086a2802002200470d04200041016a22022000490d1520004101742203200220022003491b22034100480d152000450d0b20012802002000200310152202450d0c0c1c0b200141046a280200200141086a2802002200470d04200041016a22022000490d1420004101742203200220022003491b22034100480d142000450d0c20012802002000200310152202450d0d0c190b200141046a280200200141086a2802002200470d05200041016a22022000490d1320004101742203200220022003491b22034100480d132000450d0f20012802002000200310152202450d100c160b200141046a280200200141086a2802002200470d05200041016a22022000490d1220004101742203200220022003491b22034100480d122000450d1020012802002000200310152202450d110c130b200128020021020c1b0b200128020021020c180b200128020021020c150b200128020021020c1a0b200128020021020c110b200128020021020c0e0b2003101322020d140b200341011014000b2003101322020d100b200341011014000b2003101322020d0c0b200341011014000b2003101322020d100b200341011014000b2003101322020d060b200341011014000b2003101322020d020b200341011014000b1010000b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41003a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41023a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41043a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41033a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41053a00000f0b20012002360200200141046a2003360200200141086a28020021000b200141086a200041016a360200200220006a41013a00000ba60803037f027e057f230041106b2202240020024100360208200242013703002000280218210302400240024002400240024002400240410410132204450d0020024284808080c000370204200220043602002004200336000020044104412410152204450d01200242a4808080c004370204200420002900343700042004410c6a2000413c6a290000370000200441146a200041c4006a2900003700002004411c6a200041cc006a2900003700002002200436020041000d05200041086a2903002105200029030021062004412441c80010152204450d02200420063700242004412c6a2005370000200241086a22034134360200200241c80036020420022004360200200028021c21072002200041246a280200220436020c2002410c6a2002101802400240024020022802042208200328020022036b20044f0d00200320046a22092003490d082008410174220a20092009200a491b22094100480d082008450d0120022802002008200910152208450d020c060b200228020021080c060b2009101322080d040b200941011014000b410441011014000b412441011014000b41c80041011014000b20022009360204200220083602000b200241086a2209200320046a360200200820036a2007200410f6021a2000280228210a2002200041306a280200220736020c2002410c6a200210180240024002400240024020022802042203200928020022096b20074f0d00200920076a22042009490d0520034101742208200420042008491b22084100480d052003450d0120022802002003200810152204450d020c030b200228020021040c030b2008101322040d010b200841011014000b2002200836020420022004360200200821030b200241086a220b200920076a2208360200200420096a200a200710f6021a02400240024002400240200320086b411f4b0d00200841206a22072008490d0520034101742209200720072009491b22074100480d052003450d0120042003200710152204450d020c030b200321070c030b2007101322040d010b200741011014000b20022007360204200220043602000b200b200841206a2203360200200420086a220941186a200041ec006a290000370000200941106a200041e4006a290000370000200941086a200041dc006a2900003700002009200029005437000020002903102105024002400240200720036b41084f0d00200341086a22082003490d0320074101742209200820082009491b22094100480d032007450d0120042007200910152204450d020c040b200841286a21080c040b2009101322040d020b200941011014000b1010000b20022009360204200220043602000b200241086a22072008360200200420036a200537000020002d00742002104a2002280204210020012802002001280204200228020022042007280200100102402000450d00200410160b200241106a24000b13002000410f36020420004188a0c0003602000be90501077f230041106b2202240020024100360208200242013703000240024002400240024002400240410410132203450d0020024284808080c000370204200220033602002003410036000020034104410810152203450d01200242888080808001370204200341003600042002200336020002400240024020022802042204200241086a28020022056b41034b0d00200541046a22062005490d0720044101742207200620062007491b22064100480d072004450d0120032004200610152203450d020c050b200421060c050b2006101322030d030b200641011014000b410441011014000b410841011014000b20022006360204200220033602000b200241086a2207200541046a360200200320056a4100360000024002400240024002402006200728020022056b41034b0d00200541046a22042005490d0520064101742208200420042008491b22044100480d052006450d0120032006200410152203450d020c030b200621040c030b2004101322030d010b200441011014000b20022004360204200220033602000b2007200541046a2206360200200320056a41003600000240200420066b41034b0d00200641046a22072006490d0120044101742208200720072008491b22074100480d010240024002402004450d0020032004200710152203450d010c020b2007101322030d010b200741011014000b20022007360204200220033602000b200241086a2204200541086a360200200320066a410036000041002002104a02400240024020022802042206200428020022036b41084f0d00200341086a22052003490d0320064101742204200520052004491b22044100480d032006450d0120022802002006200410152206450d020c040b200341086a2105200228020021060c040b2004101322060d020b200441011014000b1010000b20022004360204200220063602000b200241086a22042005360200200620036a4200370000200041086a200428020036020020002002290300370200200241106a24000b830601077f230041d0006b22022400200241206a41186a4200370300200241206a41106a4200370300200241206a41086a4200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300200241003602482002420137034002400240024002400240024002400240410410132203450d0020024284808080c000370244200220033602402003410036000020034104412410152203450d01200242a4808080c004370244200320022903203700042003410c6a200241286a290300370000200341146a200241306a2903003700002003411c6a200241386a2903003700002002200336024041000d052003412441c80010152203450d02200342003700242003412c6a4200370000200241c0006a41086a22044134360200200241c800360244200220033602402002410036024c200241cc006a200241c0006a10182002410036024c200241cc006a200241c0006a10182002280240210302400240024020022802442205200428020022066b411f4b0d00200641206a22072006490d0820054101742208200720072008491b22074100480d082005450d0120032005200710152203450d020c060b200521070c060b2007101322030d040b200741011014000b410441011014000b412441011014000b41c80041011014000b20022007360244200220033602400b2004200641206a2205360200200320066a220441086a200241086a290300370000200441106a200241106a290300370000200441186a200241186a29030037000020042002290300370000024002400240200720056b41084f0d00200541086a22062005490d0320074101742204200620062004491b22044100480d032007450d0120032007200410152203450d020c040b200641286a21060c040b2004101322030d020b200441011014000b1010000b20022004360244200220033602400b200241c0006a41086a22072006360200200320056a42003700004100200241c0006a104a200041086a200728020036020020002002290340370200200241d0006a24000b3501017f0240410410132202450d0020004284808080c000370204200020023602002002418089fa003600000f0b410441011014000b3401017f0240410410132202450d0020004284808080c0003702042000200236020020024190ce003600000f0b410441011014000b3301017f0240410410132202450d0020004284808080c00037020420002002360200200241e4003600000f0b410441011014000bf80103027f017e017f230041206b22022400200241106a41086a2203420037030020024200370310419095c3004117200241106a1002200241086a200329030037030020022002290310370300024002400240024002402002411041acf1c300410041001000417f460d002002420037031020024110200241106a41084100100041016a41084d0d0220022903104201862204500d0341082105410810132203450d010c040b42062104410821054108101322030d030b200541011014000b41b6e7c20041331029000b41bcb3c0001038000b2000428880808080013702042000200336020020034280de34200480370000200241206a24000b3901017f0240411010132202450d00200242003700082002420a370000200042908080808002370204200020023602000f0b411041011014000b3901017f0240411010132202450d002002420037000820024205370000200042908080808002370204200020023602000f0b411041011014000b3a01017f0240411010132202450d0020024200370008200242e400370000200042908080808002370204200020023602000f0b411041011014000b3201017f0240410410132202450d0020004284808080c000370204200020023602002002413c3600000f0b410441011014000b130020004109360204200041a0aec0003602000ba80e03057f017e017f230041c0016b22032400200341186a200041186a290000370300200341106a200041106a290000370300200341086a200041086a29000037030020032000290000370300024002400240024002400240024002400240024002400240024002400240411910132204450d00200441186a41002d00c7be403a0000200441106a41002900bfbe40370000200441086a41002900b7be40370000200441002900afbe4037000020044119413210152204450d0120042001360019200341b0016a41086a22054200370300200342003703b0012004411d200341b0016a1002200341206a41086a22062005290300370300200320032903b001370320200341206a411041acf1c30041004100100021052004101602400240024002402005417f460d0020034190016a20011059200341206a41186a200341186a290300370300200341206a41106a200341106a2903003703002006200341086a2903003703002003200329030037032020032802940122072003280298012204470d01200441016a22062004490d0620044101742205200620062005491b2207ad42217e2208422088a70d062008a722094100480d062004450d02200328029001200441216c200910152205450d030c0a0b412110132204450d0620042003290300370000200420023a0020200441186a200341186a290300370000200441106a200341106a290300370000200441086a200341086a290300370000411910132205450d07200541186a41002d00c7be403a0000200541106a41002900bfbe40370000200541086a41002900b7be40370000200541002900afbe4037000020054119413210152205450d0820052001360019200341b0016a41086a22064200370300200342003703b0012005411d200341b0016a1002200341a0016a41086a2006290300370300200320032903b0013703a001200341003602282003420137032020044101200341206a104320032802242106200341a0016a4110200328022022072003280228100102402006450d00200710160b20051016200410160c0b0b200441016a210620032802900121050c090b2009101322050d070b200941011014000b411941011014000b413241011014000b1010000b412141011014000b411941011014000b413241011014000b200320073602940120032005360290010b20034190016a41086a20063602002005200441216c6a22042003290320370000200420023a0020200441186a200341206a41186a290300370000200441106a200341206a41106a290300370000200441086a200341206a41086a290300370000411910132204450d01200441186a41002d00c7be403a0000200441106a41002900bfbe40370000200441086a41002900b7be40370000200441002900afbe4037000020044119413210152204450d0220042001360019200341b0016a41086a22094200370300200342003703b0012004411d200341b0016a1002200341a0016a41086a2009290300370300200320032903b0013703a001200341003602282003420137032020052006200341206a104320032802242106200341a0016a4110200328022022092003280228100102402006450d00200910160b200410162007450d00200510160b200341206a41186a200041186a290000370300200341206a41106a200041106a290000370300200341206a41086a200041086a29000037030020032000290000370320024002400240412210132204450d00200441206a41002f0096bc403b0000200441186a410029008ebc40370000200441106a4100290086bc40370000200441086a41002900febb40370000200441002900f6bb403700002004412241c40010152204450d01200420032903203700222004413a6a200341386a290300370000200441326a200341306a2903003700002004412a6a200341206a41086a290300370000200441c40041880110152204450d0220042001360042200341b0016a41086a22054200370300200342003703b001200441c600200341b0016a1002200341a0016a41086a2005290300370300200320032903b0013703a001024002400240200241ff017122054101460d00024020054102460d0020054103470d02410110132205450d09200541033a00000c030b410110132205450d09200541023a00000c020b410110132205450d09200541013a00000c010b410110132205450d09200541003a00000b200341a0016a41102005410110012005101620041016200341206a41086a41033a0000200341cc006a2001360200200341c9006a20023a0000200341296a2000290000370000200341316a200041086a290000370000200341396a200041106a290000370000200341c1006a200041186a290000370000200341073a0020200341206a105a200341c0016a24000f0b412241011014000b41c40041011014000b41880141011014000b411941011014000b413241011014000b410141011014000b410141011014000b410141011014000b410141011014000bba0704047f017e0f7f017e230041f0006b220224000240024002400240024002400240024002400240411910132203450d00200341186a41002d00c7be403a0000200341106a41002900bfbe40370000200341086a41002900b7be40370000200341002900afbe4037000020034119413210152204450d0120042001360019200241d0006a41086a22034200370300200242003703502004411d200241d0006a1002200241106a41086a2003290300370300200220022903503703100240024002400240200241106a411041acf1c300410041001000417f460d00200242103702242002200241106a360220200241086a200241206a10122002280208450d0b200228020c2205ad42217e2206422088a70d032006a72203417f4c0d032003450d01200310132207450d062005450d020c070b20004100360208200042013702000c080b4101210720050d050b4100210f420021062007450d080c050b100f000b411941011014000b413241011014000b200341011014000b200241206a41086a220828020021092002280224210a2002280220210b200241d0006a41186a2101200241d0006a41106a210c420021064100210d4100210e410021032005210f034020014200370300200c4200370300200241d0006a41086a221042003703002002420037035020084100200b200a200241d0006a41202009100022112011417f461b22114120201141204922121b20096a221136020020120d03200241306a41186a22122001290300370300200241306a41106a2213200c290300370300200241306a41086a2214201029030037030020022002290350370330200241003a005020082011200b200a200241d0006a41012011100041016a41014b22156a22093602002015450d0320022d0050221541044f0d03200341016a211120012012290300370300200c2013290300370300201020142903003703002002200229033037035002402003200f470d00200d20112011200d491b220fad42217e2216422088a70d062016a722124100480d0602402003450d002007200e2012101522070d010c080b201210132207450d070b2007200e6a22032002290350370000200341186a2001290300370000200341106a200c290300370000200341086a2010290300370000200341206a20153a000020064280808080107c2106200d41026a210d200e41216a210e2011210320112005490d000b2007450d030b20002006200fad84370204200020073602000b20041016200241f0006a24000f0b200f450d00200710160b41b6e7c20041331029000b1010000b201241011014000b870f03067f017e0a7f23004180036b220124000240024002400240024002400240024002400240024002400240024041f9e6c200411041acf1c300410041001000417f460d00200141003602a00141f9e6c2004110200141a0016a41044100100041016a41044d0d0220012802a0012102410021030c010b410121030b41082104200141a0016a41086a22054200370300200142003703a0014182e9c200410d200141a0016a1002200141106a41086a2005290300370300200120012903a001370310024002400240200141106a411041acf1c300410041001000417f460d00200142103702242001200141106a360220200141086a200141206a10122001280208450d07200128020c2206ad42f8007e2207422088a70d042007a72205417f4c0d042005450d01200510132204450d052006450d020c060b4100210e4100210c0c070b4108210420060d040b4100210c4100210e2004450d040c050b41b6e7c20041331029000b100f000b200541081014000b200141a0016a4101722108200141286a21094100210a410021054100210b2006210c02400340200141003a0090022001280220200128022420014190026a410120092802001000210d20092009280200200d41016a41014b220d6a220e360200200d450d014101210f024020012d009002220d4101460d00200d0d02200141003602a0012009410020012802202001280224200141a0016a4104200e1000220d200d417f461b220d4104200d4104491b20092802006a360200200d41034d0d0220012802a00121104100210f0b200141a0016a200141206a107f20012d00a001210d20014190026a200841ef0010f6021a200d4112460d01200b41016a210e200141316a20014190026a41ef0010f6021a200141a0016a200141316a41ef0010f6021a0240200b200c470d00200a200e200e200a491b220cad42f8007e2207422088a70d072007a722114100480d070240200b450d00200420052011101522040d010c060b201110132204450d050b200420056a220b200d3a0000200b41016a200141a0016a41ef0010f6021a200b41f4006a2010360200200b41f0006a200f360200200a41026a210a200541f8006a2105200e210b200e2006490d000c030b0b0240200b450d00200421010340024020012d00004106470d00200141086a280200450d00200141046a28020010160b200141f8006a2101200541887f6a22050d000b0b200c450d00200410160b41b6e7c20041331029000b200141a0016a200041f00010f6021a200c200e470d01200e41016a2205200e490d02200e4101742209200520052009491b220cad42f8007e2207422088a70d022007a722054100480d0202400240200e450d002004200e41f8006c200510152204450d010c030b2005101322040d020b200541081014000b201141081014000b2004200e41f8006c220b6a200141a0016a41f00010f602220541f4006a200236020020052003360270200141a0016a41086a22094200370300200142003703a0014182e9c200410d200141a0016a1002200141106a41086a2009290300370300200120012903a001370310200141003602a801200142013703a0012001200e41016a22063602900220014190026a200141a0016a101802402006450d00200b41f8006a210a2004210503400240024002400240024002400240024002400240200541f0006a2802004101470d00200141013a00900220012802a4012009280200220b470d01200b41016a220d200b490d0c200b410174220f200d200d200f491b220f4100480d0c200b450d0320012802a001200b200f1015220d0d040c0d0b200141003a00900220012802a4012009280200220b470d01200b41016a220d200b490d0b200b410174220f200d200d200f491b220f4100480d0b200b450d0520012802a001200b200f1015220d0d060c0d0b4101210f20012802a001210d0c030b4100210f20012802a001210d0c050b200f1013220d450d090b2001200f3602a4012001200d3602a0012009280200210b20012d009002210f0b2009200b41016a360200200d200b6a200f3a00000c030b200f1013220d450d070b2001200f3602a4012001200d3602a0012009280200210b20012d009002210f0b2009200b41016a360200200d200b6a200f3a0000200541f4006a280200210f024002400240024020012802a401220d2009280200220b6b41044f0d00200b41046a2210200b490d07200d410174220b20102010200b491b220b4100480d07200d450d0120012802a001200d200b1015220d0d020c0a0b20012802a001210d0c020b200b1013220d450d080b2001200b3602a4012001200d3602a0012009280200210b0b2009200b41046a360200200d200b6a200f3600000b2005200141a0016a108001200541f8006a2105200a41887f6a220a0d000b0b20012802a4012105200141106a411020012802a001220b2009280200100102402005450d00200b10160b02402006450d00200e41f8006c41f8006a2109200421050340024020052d00004106470d00200541086a280200450d00200541046a28020010160b200541f8006a2105200941887f6a22090d000b0b0240200c450d00200410160b20014180036a24000f0b1010000b200f41011014000b200f41011014000b200b41011014000bd90f05087f027e067f017e017f230041b0016b220224000240024002400240411310132203450d002003410f6a4100280096b840360000200341086a410029008fb84037000020034100290087b84037000020034113412610152204450d012004200136001320024190016a41086a2203420037030020024200370390012004411720024190016a1002200241106a41086a2003290300370300200220022903900137031002400240024002400240024002400240200241106a411041acf1c300410041001000417f460d00200242103702242002200241106a360220200241003602900120024100200241106a411020024190016a41044100100022032003417f461b2203410420034104491b20022802286a2201360228200341034d0d06200228029001210520024190016a41186a2206420037030020024190016a41106a2207420037030020024190016a41086a220842003703002002420037039001200241206a41086a22034100200241106a411020024190016a41202001100022012001417f461b2201412020014120491b20032802006a22093602002001411f4d0d06200241f0006a41186a22012006290300370300200241f0006a41106a22062007290300370300200241f0006a41086a220720082903003703002002200229039001370370200241306a41186a2001290300370300200241306a41106a2006290300370300200241306a41086a2007290300370300200220022903703703302002420037039801200242003703900120034100200241106a411020024190016a41102009100022012001417f461b2201411020014110491b20032802006a3602002001410f4d0d0620024198016a290300210a200229039001210b200241086a200241206a10122002280208450d06200228020c2203417f4c0d072003450d012003101b220c450d0a200241286a22012003410020022802202002280224200c20032001280200100022062006417f461b2206200620034b1b220620012802006a36020020062003460d020c050b2000420037023420004280808080103703182000420037030820004200370300200042013703282000420037031020004200370254200041cc006a4200370200200041c4006a42003702002000413c6a4200370200200041306a4100360200200041206a4200370200200041f4006a41003a0000200041ec006a4200370200200041e4006a4200370200200041dc006a42003702000c020b4101210c2002280220200228022441014100200241286a28020010001a41002003470d030b2002200241206a10122002280200450d0220022802042201417f4c0d04024002402001450d002001101b220d450d0a200241286a220620062802002208200141002002280220220620022802242207200d20012008100022082008417f461b2208200820014b1b22096a220836020020092001460d010c030b4101210d200228022022062002280224220741014100200241286a280200220810001a41002001470d020b20024190016a41186a220e420037030020024190016a41106a220f420037030020024190016a41086a221042003703002002420037039001200241206a41086a221141002006200720024190016a41202008100022092009417f461b2209412020094120491b20086a22083602002009411f4d0d01200241f0006a41186a2209200e290300370300200241f0006a41106a220e200f290300370300200241f0006a41086a220f20102903003703002002200229039001370370200241d0006a41186a2009290300370300200241d0006a41106a200e290300370300200241d0006a41086a200f290300370300200220022903703703502002420037039001201141002006200720024190016a41082008100022092009417f461b2209410820094108491b20086a2208360200200941074d0d012002290390012112200241003a009001200241286a20082006200720024190016a41012008100041016a41014b22066a3602002006450d0120022d009001220741064f0d0120024190016a41186a2208200241306a41186a29030037030020024190016a41106a2209200241306a41106a29030037030020024190016a41086a220e200241306a41086a290300370300200241f0006a41086a220f200241d0006a41086a290300370300200241f0006a41106a2210200241d0006a41106a290300370300200241f0006a41186a2211200241d0006a41186a290300370300200220022903303703900120022002290350370370200241306a41026a2213200241d0006a41026a22062d00003a0000200220022f00503b01302000200a3703082000200b370300200041306a20013602002000412c6a20013602002000200d360228200041246a2003360200200041206a20033602002000200c36021c200020053602182000201237031020002002290390013702342000413c6a200e290300370200200041c4006a2009290300370200200041cc006a200829030037020020002002290370370254200041dc006a200f290300370200200041e4006a2010290300370200200041ec006a2011290300370200200620132d00003a0000200220022f01303b0150200020073a0074200020022f01503b0075200041f7006a20062d00003a00000b20041016200241b0016a24000f0b2001450d00200d10160b2003450d00200c10160b41b6e7c20041331029000b100f000b411341011014000b412641011014000b200341011014000b200141011014000b9b12020b7f037e230041f0026b22022400200241e0026a41086a22034200370300200242003703e002419ab8c000411b200241e0026a1002200241d0026a41086a2003290300370300200220022903e0023703d00241002104024002400240024002400240200241d0026a411041acf1c300410041001000417f460d002002421037026c2002200241d0026a360268200241d8016a200241e8006a102620022802d8012205450d02200241e0016a280200210420022802dc0121060c010b41042105410021060b2005200441027422076a210820052109024002400240024003402007450d012007417c6a21072009280200210a200941046a22032109200a2000460d000b41041013220b450d05200b200a3602004101210a4101210c0c010b4104210b4100210a2006450d01200510164100210c41002004460d050c060b0240034020082003460d0120032802002107200341046a2209210320072000460d0002400240200c200a470d00200a41016a2203200a490d05200a410174220c20032003200c491b220cad420286220e422088a70d05200ea722034100480d050240200a450d00200b200a41027420031015220b0d010c020b20031013220b450d010b200b200a4102746a2007360200200a41016a210a200921030c010b0b200341041014000b02402006450d00200510160b200a2004470d050c040b4100210c41002004460d030c040b1010000b41b6e7c20041331029000b410441041014000b0240200c450d00200b10160b200241f0026a240041f1bdc0000f0b02400240024002400240024002400240200141ff0171417e6a220341034b0d000240024002400240024002400240024020030e0400010002000b200241d8016a2000105b200241e0006a200241a4026a290200370300200241c8006a41106a2002419c026a290200370300200241c8006a41086a20024194026a2902003703002002200229028c023703484200210d200241e0026a41086a22034200370300200242003703e0024199bec0004116200241e0026a1002200241d0026a41086a2003290300370300200220022903e0023703d002200241d0026a411041acf1c300410041001000417f460d022002420037037020024200370368200241d0026a4110200241e8006a4110410010002203417f460d082003410f4d0d08200241f0006a290300210d2002290368210e0c030b200241d8016a2000105b200241e8006a41186a200241c4026a290200370300200241e8006a41106a200241bc026a290200370300200241e8006a41086a200241b4026a290200370300200220022902ac02370368411810132203450d0841002107200341106a41002900ffb740370000200341086a41002900f7b740370000200341002900efb74037000020034118413810152203450d0920032002290368370018200341306a20024180016a290300370000200341286a200241e8006a41106a290300370000200341206a200241e8006a41086a290300370000200241e0026a41086a22094200370300200242003703e00220034138200241e0026a1002200241d0026a41086a2009290300370300200220022903e0023703d002200241d0026a411041acf1c300410041001000417f460d032002421037024c2002200241d0026a360248200241206a200241c8006a10122002280220450d0c20022802242208417f4c0d0a2008450d042008101b2207450d0d200241d0006a220920092802002209200841002002280248200228024c200720082009100022092009417f461b2209200920084b1b22096a36020020092008460d050c0b0b200241d8016a2000105b200241286a2002418c026a20022903d801200241d8016a41086a290300105d200241e8006a41186a200241286a41186a290300370300200220022903383703782002200241286a41086a29030037037020022002290328370368200241e8006a105e0240200241f8016a280200450d0020022802f40110160b20024184026a280200450d0520022802800210160c050b420a210e0b2002200241c8006a200e200d105d200241e8006a41186a200241186a290300370300200220022903103703782002200241086a29030037037020022002290300370368200241e8006a105e200241c8006a20022903d801220f200e7d200241d8016a41086a290300200d7d200f200e54ad7d105f0240200241f8016a280200450d0020022802f40110160b20024184026a280200450d0320022802800210160c030b0c010b410121072002280248200228024c41014100200241d0006a28020010001a41002008470d060b200241ac026a2109200310162002418c026a20022903d801200241d8016a41086a290300105f4180c9c30041052007410120071b22042008410020071b2203100102402003450d00200410160b200241e8006a41086a41053a0000200241f1006a2009290000370000200241e8006a412c6a2000360200200241f9006a200941086a29000037000020024181016a200941106a29000037000020024189016a200941186a290000370000200241073a0068200241e8006a105a0240200241f8016a280200450d0020022802f40110160b200241d8016a412c6a280200450d0020022802800210160b2002200a3602e0012002200c3602dc012002200b3602d801200241d8016a10600240200c450d00200b10160b200241d8016a2000105b200220013a00cc0202400240411310132203450d002003410f6a4100280096b840360000200341086a410029008fb84037000020034100290087b84037000020034113412610152203450d0120032000360013200241e0026a41086a22074200370300200242003703e00220034117200241e0026a1002200241d0026a41086a2007290300370300200220022903e0023703d0022002411036026c2002200241d0026a360268200241d8016a200241e8006a104b200310160240200241f8016a280200450d0020022802f40110160b024020024184026a280200450d0020022802800210160b200241e4016a2000360200200241e1016a20013a0000200241e0016a41023a0000200241073a00d801200241d8016a105a200241f0026a240041000f0b411341011014000b412641011014000b41b6e7c20041331029000b411841011014000b413841011014000b100f000b2008450d00200710160b41b6e7c20041331029000b200841011014000bb20304027f017e017f037e230041206b2204240002400240411810132205450d00200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0120052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002106200441106a41086a220742003703002004420037031020054138200441106a1002200441086a2007290300370300200420042903103703000240024002402004411041acf1c300410041001000417f460d00200442003703182004420037031020044110200441106a4110410010002207417f460d022007410f4d0d02200441186a2903002108200429031021060c010b420021080b2005101620012006200220062006200256200820035620082003511b22051b22097d20082003200820051b220a7d2006200954ad7d108701200041186a2003200a7d2002200954ad7d3703002000200220097d3703102000200a37030820002009370300200441206a24000f0b41b6e7c20041331029000b411841011014000b413841011014000bc80202047f047e230041206b22012400200141106a41086a220242003703002001420037031041a795c3004116200141106a1002200141086a22032002290300370300200120012903103703000240024002402001411041acf1c300410041001000417f460d00200142003703182001420037031020014110200141106a4110410010002204417f460d022004410f4d0d02200141186a2903002105200129031021060c010b42002106420021050b200041086a290300210720002903002108200242003703002001420037031041a795c3004116200141106a1002200320022903003703002001200129031037030020014200200520077d2006200854ad7d2207200620087d2208200656200720055620072005511b22021b37031820014200200820021b37031020014110200141106a41101001200141206a24000f0b41b6e7c20041331029000be90504027f017e017f047e230041206b22032400024002400240411810132204450d00200441106a41002900b29643370000200441086a41002900aa9643370000200441002900a2964337000020044118413810152204450d0120042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002105200341106a41086a220642003703002003420037031020044138200341106a1002200341086a2006290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002206417f460d022006410f4d0d02200341186a2903002107200329031021052004101641142106411410132204450d010c050b4200210720041016411421064114101322040d040b200641011014000b41b6e7c20041331029000b411841011014000b413841011014000b200441106a410028009e9643360000200441086a410029009696433700002004410029008e9643370000024020042006413410152204450d00200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002108200341106a41086a220642003703002003420037031020044134200341106a1002200341086a2006290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002206417f460d022006410f4d0d02200341186a2903002109200329031021080c010b420021090b2004101620002008200120052005200156200720025620072002511b22041b22017c220a20092002200720041b22027c200a200854ad7c1086012000200520017d200720027d2005200154ad7d108701200341206a24000f0b41b6e7c20041331029000b413441011014000b880301097f230041306b22012400200141206a41086a2202420037030020014200370320419ab8c000411b200141206a1002200141086a41086a20022903003703002001200129032037030820014100360228200142013703202000280200210320012000280208220036021c2001411c6a200141206a101802400240024002402000450d002000410274210420022802002100200128022421050340200328020021060240024002400240200520006b41044f0d00200041046a22072000490d0720054101742208200720072008491b22094100480d072005450d01200128022020052009101522080d020c080b200041046a2107200128022021080c020b200910132208450d060b2001200936022420012008360220200921050b200341046a210320022007360200200820006a2006360000200721002004417c6a22040d000c020b0b2002280200210720012802242105200128022021080b200141086a411020082007100102402005450d00200810160b200141306a24000f0b1010000b200941011014000b130020004105360204200041e0bec0003602000b130020004103360204200041c4cbc0003602000b13002000410736020420004182cfc0003602000b1300200041083602042000418ccfc0003602000b9b0501087f230041c0006b220224000240024002400240412610132203450d002003411e6a41002900e9dd40370000200341186a41002900e3dd40370000200341106a41002900dbdd40370000200341086a41002900d3dd40370000200341002900cbdd403700002003412641cc0010152204450d0120042001370026200241286a41086a22034200370300200242003703282004412e200241286a1002200241106a41086a200329030037030020022002290328370310024002400240024002400240200241106a411041acf1c300410041001000417f460d002002421037022c2002200241106a360228200241086a200241286a10122002280208450d05200228020c2203417f4c0d082003450d012003101b2205450d09200241306a2206200628020022062003410020022802282207200228022c2208200520032006100022062006417f461b2206200620034b1b22066a220936020020062003460d020c040b20041016200041f4c9c00036020441012106412d21030c020b4101210520022802282207200228022c220841014100200241306a280200220910001a41002003470d020b41002106200241003a003c200241306a2009200720082002413c6a41012009100041016a41014b22076a3602002007450d0120022d003c2107200241246a41026a22082002413c6a41026a22092d00003a0000200220022f003c3b0124200920082d00003a0000200220022f01243b013c20041016200041106a20073a00002000410c6a200336020020002005360204200020022f013c3b0011200041136a20092d00003a00000b20002006360200200041086a2003360200200241c0006a24000f0b2003450d00200510160b41b6e7c20041331029000b412641011014000b41cc0041011014000b100f000b200341011014000b130020004103360204200041f4ddc0003602000b1300200041163602042000419ce1c0003602000bd00401087f230041306b220224000240024002400240024002400240412610132203450d002003411e6a41002900e9dd40370000200341186a41002900e3dd40370000200341106a41002900dbdd40370000200341086a41002900d3dd40370000200341002900cbdd403700002003412641cc0010152204450d0120042000370026200241206a41086a22034200370300200242003703202004412e200241206a1002200241086a41086a20032903003703002002200229032037030820024100360228200242013703202001280200210520022001280208220636021c2002411c6a200241206a101802400240024020022802242203200228022822076b20064f0d00200720066a22082007490d0720034101742209200820082009491b22094100480d072003450d0120022802202003200910152208450d020c050b200228022021080c050b2009101322080d030b200941011014000b412641011014000b41cc0041011014000b2002200936022420022008360220200921030b200241286a200720066a2209360200200820076a2005200610f6021a02400240024020032009470d00200341016a22062003490d0320034101742207200620062007491b22064100480d032003450d0120082003200610152208450d020c040b200321060c040b2006101322080d020b200641011014000b1010000b20022006360224200220083602200b200820096a2001410c6a2d00003a0000200241086a41102008200941016a100102402006450d00200810160b200410160240200141046a280200450d00200510160b200241306a24000b130020004104360204200041fce2c0003602000b130020004102360204200041c0ebc3003602000b130020004100360204200041acf1c3003602000b130020004101360204200041c082c0003602000b130020004103360204200041e48ec3003602000b130020004101360204200041e8c7c0003602000b130020004103360204200041a8c8c1003602000b130020004102360204200041e8b9c1003602000b130020004101360204200041b881c0003602000b130020004107360204200041b499c0003602000b13002000410b360204200041e49ec2003602000b130020004102360204200041bcecc2003602000b130020004101360204200041ccedc2003602000b1300200041043602042000418092c1003602000b130020004101360204200041e4bbc1003602000b13002000410336020420004184f8c0003602000b130020004102360204200041a4cac0003602000b130020004105360204200041eccdc2003602000b130020004104360204200041e4cac3003602000b130020004102360204200041cc8bc0003602000bd90f03047f017e037f230041206b2202240002400240024020012d000022034101460d0020030d0241012103200141016a21010c010b2001410c6a2802002104200141046a2802002101410021030b200241106a20043602002002200136020c200220033602082000200241086a107e200241206a24000f0b2002410036021020024201370308024002400240024002400240024002400240410110132203450d002002410136020c200241086a41086a22042004280200220541016a36020020022003360208200320056a41023a00000240024002400240024002400240200141086a2802004101470d00200228020c20042802002203470d01200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0320022802082003200510152204450d040c0a0b200228020c20042802002203470d01200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0420022802082003200510152204450d050c070b200228020821040c090b200228020821040c060b2005101322040d060b200541011014000b2005101322040d020b200541011014000b410141011014000b2002200536020c20022004360208200241106a28020021030b200241086a41086a2205200341016a360200200420036a41003a0000200141186a290300210602400240024002400240200228020c2204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120022802082004200310152204450d020c030b200228020821040c030b2003101322040d010b200341011014000b2002200336020c20022004360208200241106a28020021030b200241086a41086a2207200341086a360200200420036a20063700002001410c6a28020021032002200141146a280200220136021c2002411c6a200241086a10182001450d022003200141286c6a21080240024003400240024002400240200228020c2204200728020022096b41204f0d00200941206a22012009490d0a20044101742205200120012005491b22014100480d0a2004450d01200228020820042001101522050d020c050b200228020821050c020b200110132205450d030b2002200136020c2002200536020820072802002109200121040b2007200941206a2201360200200520096a220941186a200341186a290000370000200941106a200341106a290000370000200941086a200341086a29000037000020092003290000370000200341206a29030021060240200420016b41074b0d00200141086a22092001490d0720044101742201200920092001491b22014100480d07024002402004450d00200520042001101522050d010c050b200110132205450d040b2002200136020c20022005360208200728020021010b2007200141086a360200200520016a20063700002008200341286a2203470d000c050b0b200141011014000b200141011014000b2002200536020c20022004360208200241106a28020021030b200241086a41086a2205200341016a360200200420036a41013a0000200141186a290300210602400240024002400240200228020c2204200528020022036b41084f0d00200341086a22052003490d0620044101742203200520052003491b22034100480d062004450d0120022802082004200310152204450d020c030b200228020821040c030b2003101322040d010b200341011014000b2002200336020c20022004360208200241106a28020021030b200241086a41086a2205200341086a360200200420036a2006370000200141206a290300210602400240024002400240200228020c2204200528020022036b41084f0d00200341086a22052003490d0620044101742203200520052003491b22034100480d062004450d0120022802082004200310152204450d020c030b200228020821040c030b2003101322040d010b200341011014000b2002200336020c20022004360208200241106a28020021030b200241086a41086a2207200341086a360200200420036a20063700002001410c6a28020021032002200141146a280200220136021c2002411c6a200241086a10182001450d002003200141286c6a210803400240024002400240200228020c2204200728020022096b41204f0d00200941206a22012009490d0620044101742205200120012005491b22014100480d062004450d01200228020820042001101522050d020c070b200228020821050c020b200110132205450d050b2002200136020c2002200536020820072802002109200121040b2007200941206a2201360200200520096a220941186a200341186a290000370000200941106a200341106a290000370000200941086a200341086a29000037000020092003290000370000200341206a29030021060240200420016b41074b0d00200141086a22092001490d0320044101742201200920092001491b22014100480d03024002402004450d00200520042001101522050d010c070b200110132205450d060b2002200136020c20022005360208200728020021010b2007200141086a360200200520016a20063700002008200341286a2203470d000b0b200228020c210120022802082103200241106a220420042802003602002002200336020c200241043602082000200241086a107e02402001450d00200310160b200241206a24000f0b1010000b200141011014000b200141011014000bcd0f02077f017e230041106b22022400200241003602082002420137030002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001280200417f6a220341034b0d00024020030e0400040203000b20012802042101410110132203450d1120024101360204200241086a22042004280200220541016a36020020022003360200200320056a41023a000020022802042205200428020022036b41204f0d06200341206a22042003490d1c20054101742203200420042003491b22034100480d1c2005450d0c20022802002005200310152204450d0d0c1f0b200141086a280200210320012802042101410110132204450d11200241086a22052005280200220541016a3602002002410136020420022004360200200420056a41013a00002002200336020c2002410c6a200210182003450d2020034105742106200241086a220728020021042002280204210503400240024002400240200520046b41204f0d00200441206a22032004490d2020054101742204200320032004491b22044100480d202005450d01200228020020052004101522080d020c140b20022802002108200421030c020b200410132208450d120b200220043602042002200836020020072802002103200421050b2007200341206a2204360200200820036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a29000037000020032001290000370000200141206a2101200641606a22060d000c210b0b2001410c6a2802002103200141086a280200210820012802042106410110132201450d1120024101360204200241086a22042004280200220541016a36020020022001360200200120056a41043a000020022802042205200428020022016b41044f0d02200141046a22042001490d1a20054101742201200420042001491b22014100480d1a2005450d0620022802002005200110152204450d070c180b200141086a280200210320012802042108410110132201450d1120024101360204200241086a22042004280200220541016a36020020022001360200200120056a41003a00002002200336020c2002410c6a2002101820022802042205200428020022016b20034f0d02200120036a22042001490d1920054101742201200420042001491b22014100480d192005450d0720022802002005200110152204450d080c150b200141086a280200210320012802042105410110132201450d1120024101360204200241086a22042004280200220841016a36020020022001360200200120086a41033a00002005290300210920022802042205200428020022016b41084f0d03200141086a22042001490d1820054101742201200420042001491b22014100480d182005450d0a20022802002005200110152204450d0b0c120b200228020021040c160b200228020021040c130b200228020021040c190b200228020021040c0f0b2001101322040d110b200141011014000b2001101322040d0d0b200141011014000b2003101322040d120b200341011014000b2001101322040d070b200141011014000b200441011014000b410141011014000b410141011014000b410141011014000b410141011014000b410141011014000b2002200136020420022004360200200241086a28020021010b200241086a2205200141086a360200200420016a20093700000240024002400240024020022802042204200528020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110152204450d020c030b200228020021040c030b2001101322040d010b200141011014000b2002200136020420022004360200200241086a28020021010b200241086a200141c0006a360200200420016a220141086a200341086a290000370000200141106a200341106a290000370000200141186a200341186a290000370000200141206a200341206a290000370000200141286a200341286a290000370000200141306a200341306a290000370000200141386a200341386a290000370000200120032900003700000c090b2002200136020420022004360200200241086a28020021010b200241086a200120036a360200200420016a2008200310f6021a0c070b2002200136020420022004360200200241086a28020021010b200241086a2205200141046a360200200420016a20062800003600002002200336020c2002410c6a2002101802400240024020022802042204200528020022016b20034f0d00200120036a22052001490d0320044101742201200520052001491b22014100480d032004450d0120022802002004200110152204450d020c040b200228020021040c040b2001101322040d020b200141011014000b1010000b2002200136020420022004360200200241086a28020021010b200241086a200120036a360200200420016a2008200310f6021a0c020b2002200336020420022004360200200241086a28020021030b200241086a200341206a360200200420036a220341086a200141086a290000370000200341106a200141106a290000370000200341186a200141186a290000370000200320012900003700000b20002002290300370200200041086a200241086a280200360200200241106a24000bfbb40108057f027e047f017e037f017e077f067e230041d0026b22022400200241003a000820012802002001280204200241086a410120012802081000210320012001280208200341016a41014b22036a22043602080240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402003450d0020022d0008220341114b0d04024020030e1200060708090a0b0c0d0e0f02101103120413000b41002105200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22012001280200200341016a41014b22016a3602002001450d17024020022d00082201450d004101210520014101470d180b200020053a0001200041003a0000200041026a200241086a41ee0010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d2f20022d009801220341034b0d2f024020030e04002b2c2e000b20024200370308200141086a220341002001280200200141046a2205280200200241086a41082004100022042004417f461b2204410820044108491b20032802006a2206360200200441074d0d2f20022903082107200241b0016a420037030020024198016a41106a2204420037030020024198016a41086a42003703002002420037039801200341002001280200200528020020024198016a41202006100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d2f200241b8026a41106a2004290300370300200241b8026a41086a20024198016a41086a29030037030020022002290398013703b80220022903b001210820024198026a41086a2204200241c7026a29000037030020024198026a41106a200241cf026a2d00003a0000200220083700a902200220022900bf02370398022008423088a7210120022800bb02210320022d00ba02210920022d00b902210a20022d00b802210b20042d0000210420022900a702210820022800a302210520022d00a202210620022d00a102210c200229039802210d4100210e0c2e0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1820022d00980122034101460d1620030d184200210720024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d18200229030821080c170b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d3320022d009801220341034b0d33024020030e04002f3031000b20024200370308200141086a220341002001280200200141046a2205280200200241086a41082004100022042004417f461b2204410820044108491b20032802006a2206360200200441074d0d332002290308210d20024190016a420037030020024188016a220f4200370300200241f8006a41086a4200370300200242003703782003410020012802002005280200200241f8006a41202006100022042004417f461b2204412020044120491b20032802006a22093602002004411f4d0d33200228008b01210e2002280087012110200229007f2107200228007b210420022d007a210520022d0079210620022d0078210c20022d008f012103200220022903900137009902200220033a009802200f4200370300200241f8006a41086a42003703002002420037039001200242003703784100210f200141086a220341002001280200200141046a280200200241f8006a41202009100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d3320022d0078210120022d0079210320022d007a2109200228007b210a200229007f2108200229008701211120022d008f01210b20022002290390013703b001200241086a41086a2212200241b7016a2d00003a00002002200b3a00af01200220113700a7012002200837009f012002200a36009b01200220093a009a01200220033a009901200220013a009801200220022900af013703082011422088a7210b20122d00002113200228020c21142002280208211520022d00a0022116200228029c02211720022802980221182011a721120c320b200041123a0000200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0d20022d0098010d0d20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d0d200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210720022d008f012106200228008b01210c200228008701210e200229007f2108200228007b210f20022d007a210920022d0079210a20022d0078210b20102802002103200241003602082005410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d0d20022802082101200041013a0000200041206a20073700002000411f6a20063a00002000411b6a200c360000200041176a200e3600002000410f6a20083700002000410b6a200f3600002000410a6a20093a0000200041096a200a3a0000200041086a200b3a0000200041046a2001360000200020022f0098013b0001200041036a2002419a016a2d00003a0000200041286a200241086a41c80010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d334103210920022d009801220341034b0d33024020030e0400323352000b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a220928020020024198016a41202004100022042004417f461b2204412020044120491b20032802006a220a3602002004411f4d0d33200241f8006a41186a22042005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c2903003703002002200229039801370378200228008b0121052002280087012106200229007f2107200228007b210f20022d007a210e20022d0079210c20022d0078211020022d008f01210b20022004290300370099022002200b3a00980220024200370310200242003703082003410020012802002009280200200241086a4110200a100022012001417f461b2201411020014110491b20032802006a3602002001410f4d0d33200241106a29030021192002290308211a20022d00a0022113200228029c0221142002280298022115410021090c510b200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0d20022d00080d0d20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0d20022903082107200041033a0000200041086a20073703002000200228009801360001200041046a20024198016a41036a280000360000200041106a200241086a41e00010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1f20022d00980122034102460d1d20034101460d1c20030d1f200242003703102002420037030841002103200141086a220541002001280200200141046a280200200241086a41102004100022012001417f461b2201411020014110491b20052802006a3602002001410f4d0d1f200241086a41086a290300210720022903082108200220022f01b8013b0176200241c9016a290000210d20022900c101211120022f01ba01210e20022d00bc01211020022800bd01210f0c1e0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1420022d00980122034101460d1220030d1441002103200241003a00082001280200200141046a280200200241086a4101200410002104200141086a22012001280200200441016a41014b22016a3602002001450d1420022d000821010c130b200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22042004280200200341016a41014b22036a3602002003450d4e20022d0008450d0d0c4e0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d3d20022d009801220341064b0d3d024020030e0700363738393a3b000b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a221041002001280200200141046a220f28020020024198016a41202004100022032003417f461b2203412020034120491b20102802006a22093602002003411f4d0d3d200241f8006a41186a22032005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c29030037030020022002290398013703782003290300210820022d008f01210a200228008b01210e2002280087012105200229007f2107200228007b210320022d007a210620022d0079210c20022d00782104200f280200210f20024100360208201041002001280200200f200241086a41042009100022012001417f461b2201410420014104491b20102802006a360200200141034d0d3d2002280208210f2002200a3a00980220022008370099022008423888a721092008421888a7210b200228029802210a41002110410021120c3c0b41002105200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d4720022d0098012218410a4b0d47024020180e0b4b003e3f404142444546474b0b200141046a280200210320024100360208200141086a2205410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d472002280208210e410121050c4a0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1320022d00980122034101460d1120030d134200210720024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d13200229030821080c120b200241003a00082001280200200141046a280200200241086a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0720022d00080d07200241086a41186a22054200370300200241086a41106a22064200370300200241086a41086a220c420037030020024200370308200141086a220341002001280200200141046a280200200241086a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d0720024198016a41186a2201200529030037030020024198016a41106a2203200629030037030020024198016a41086a2204200c29030037030020022002290308370398012000410a3a00002000200229039801370001200041096a2004290300370000200041116a2003290300370000200041196a2001290300370000200041216a200241086a41cf0010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d0420022d0098010d0420024200370308200141086a220541002001280200200141046a2206280200200241086a41082004100022032003417f461b2203410820034108491b20052802006a2204360200200341074d0d042002290308210720062802002103200241003602082005410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d04200228020821012000410c3a0000200041106a2001360200200041086a20073703002000200228009801360001200041046a20024198016a41036a280000360000200041146a200241086a41dc0010f6021a200241d0026a24000f0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1a20022d00980122034102460d1820034101460d1920030d1a20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d1a200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210820022f0178210320022d007a2106200228007b210c200229007f210720022d008f01210e200241176a200229008701220d370000200220083700c9012002200e3a00c8012002411f6a20022903c801370000200241086a411f6a200241b8016a41186a2d00003a0000200220073703b8012002200d3703c0012002200c36000b200220063a000a200220033b01082002200737000f200241003a0098012001280200201028020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d1a20022d0098010d1a2002290320210720022d001f2101200228001b210320022800172104200229000f2108200228000b210c20022d000a210e20022d0009210f20022d00082109410021050c450b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d2e20022d009801220341044b0d2e024020030e05002a2b2c2d000b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d2e200228008b0121032002280087012104200229007f2107200228007b210520022d007a210620022d0079210c20022d0078210e20022d008f0121122002200229039001220d370009200220123a0008200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d2e20022d0078210120022d0079211020022d007a210f200228007b2109200229007f2108200228008701210a200228008b01210b20022d008f012112200220022903900122113703b001200220123a00af012002200b3600ab012002200a3600a7012002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a0098012011423888a721122011421888a72113200d421888a72114200d423888a7211520022800af01211620022802082117410021180c2d0b200241003a0098012001280200200141046a28020020024198016a4101200410002103200141086a22042004280200200341016a41014b22036a22043602002003450d1120022d00980122034101460d0f20030d1120024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e4200370300200242003703980141002105200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d11200241f8006a41186a2006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e290300370300200220022903980137037820024188026a41086a200241f8006a411f6a2d00003a00002002200229008f01220837038802200228007b210320022d007a210420022d0079210620022d0078210c200229007f21072002280087012101200228008b01210e200220083c00f8012002200e3602f401200220013602f001200220073703e801200220022900890222083700f9012001411076210e2001410876211020022900f701210d20022800f301210f0c100b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200041123a0000200241d0026a24000f0b200241086a2001101d20022802082201450d40200229020c2107200041063a0000200041086a2007370000200041046a2001360000200020022f0098013b0001200041036a2002419a016a2d00003a0000200041106a200241086a41e00010f6021a200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082108420121070b20002002280098013600012000410e3a0000200041106a2008370300200041086a2007370300200041046a2002419b016a280000360000200041186a200241086a41d80010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d01200241f8006a41186a22012005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c29030037030020022002290398013703782001290300210820022d008f012104200228008b0121052002280087012106200229007f2107200228007b210c20022d007a211020022d0079210e20022d00782101410121030b200020033a0001200041053a00002000411a6a2008370000200041196a20043a0000200041156a2005360000200041116a2006360000200041096a2007370000200041056a200c360000200041046a20103a0000200041036a200e3a0000200041026a20013a0000200041226a200241086a41ce0010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082108420121070b2000200228009801360001200041093a0000200041106a2008370300200041086a2007370300200041046a2002419b016a280000360000200041186a200241086a41d80010f6021a200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210820022f0178210320022d007a2106200228007b210c200229007f2107200229008701210d200220022d008f013a00cf022002200d3700c702200220073700bf022002200c3600bb02200220063a00ba02200220033b01b802200242003703082005410020012802002010280200200241086a41082004100022012001417f461b2201410820014108491b20052802006a360200200141074d0d012002290308211120024198026a41086a2205200241b8026a410772220141086a29000037030020024198026a41106a200141106a2d00003a0000200220083700a902200220012900003703980220022800bb02210320022d00ba02210420022d00b902210620022d00b802210c20052d0000210120022900a702210d20022800a302210f20022d00a202210e20022d00a10221102002290398022107410121050b2000200228009801360001200041113a0000200041306a20113700002000412f6a41003a0000200041276a20084230883e00002000411f6a200d3700002000411b6a200f3600002000411a6a200e3a0000200041196a20103a0000200041186a20013a0000200041106a20073700002000410c6a20033600002000410b6a20043a00002000410a6a20063a0000200041096a200c3a0000200041086a20053a0000200041046a2002419b016a280000360000200041e8006a200241086a41306a290300370300200041e0006a200241306a290300370300200041d8006a200241286a290300370300200041d0006a200241086a41186a290300370300200041c8006a200241086a41106a290300370300200041c0006a200241086a41086a290300370300200041386a2002290308370300200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a220e28020020024198016a41202004100022042004417f461b2204412020044120491b20032802006a22103602002004411f4d0d02200241f8006a41186a220f2005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c2903003703002002200229039801370378200228007b210c20022d007a210520022d0079210420022d00782106200229007f2107200229008701210820022d008f0121092002200f29030037008902200241e8016a41186a20024188026a41086a2d00003a0000200220093a008802200220083703f001200220073703e80120022002290388023703f801200e280200210e20024100360208200341002001280200200e200241086a41042010100022012001417f461b2201410420014104491b20032802006a360200200141034d0d022002280208210f200241d8016a41086a200241e8016a41106a220141086a2d00003a0000200220012902003703d801200241e8016a41086a290300210720022903e8012108200220022f00df013b017620022800db01210920022d00da01211220022d00d901210b20022d00d801210a410121034100210e0c010b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300211b20022f0178210320022d007a2106200228007b210c200229007f21072002290087012108200220022d008f013a00cf02200220083700c702200220073700bf022002200c3600bb02200220063a00ba02200220033b01b80220024200370310200242003703082005410020012802002010280200200241086a41102004100022012001417f461b2201411020014110491b20052802006a3602002001410f4d0d01200241086a41086a290300210d2002290308211120024198026a41086a2203200241b8026a410772220141086a29000037030020024198026a41106a220e200141106a2d00003a000020022001290000370398022002201b3700a90220022800bb02210c20022d00ba02210520022d00b902210420022d00b8022106200220022f00af023b0176201b421088a72109201b420888a7211220032903002107200e2d0000210a2002290398022108201ba7210b410221034100210e4100210f0b200220022f017622013b0108200220013b0178200041186a2007370000200041106a2008370000200041386a200d370000200041306a2011370000200041043a0000200041236a2009360000200041226a20123a0000200041216a200b3a0000200041206a200a3a00002000410c6a200c3600002000410b6a20053a00002000410a6a20043a0000200041096a20063a0000200041086a20033a00002000412c6a200f3600002000412b6a20103a0000200041296a200e3b00002000200228009801360001200041046a2002419b016a280000360000200041276a20022f01783b0000200041e8006a200241306a290300370300200041e0006a200241086a41206a290300370300200041d8006a200241086a41186a290300370300200041d0006a200241086a41106a290300370300200041c8006a200241086a41086a290300370300200041c0006a2002290308370300200241d0026a24000f0b200220022f01763b0108200041123a0000200241d0026a24000f0b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e29030037030020022002290398013703782003290300210720022f0178210320022d007a2106200228007b210c200229007f2108200229008701210d200220022d008f013a00cf022002200d3700c702200220083700bf022002200c3600bb02200220063a00ba02200220033b01b802200241003a0098012001280200201028020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d0120022d0098010d0120024198026a41086a2203200241b8026a410772220141086a29000037030020024198026a41106a2204200141106a2d00003a0000200220073700a902200220012900003703980220022800bb02210c20022d00ba02210e20022d00b902210f20022d00b802210920042d000021012003280200210420022802a40221032002290398022108410221050c2c0b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d00200241f8006a41186a22032006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e2903003703002002200229039801370378200228007b210c20022d007a210e20022d0079210f20022d00782109200229007f2107200229008701210820022d008f0121062002200329030037008902200241e8016a41186a20024188026a41086a2d00003a0000200220063a008802200220083703f001200220073703e80120022002290388023703f801200241003a0098012001280200201028020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d0020022d009801450d2a0b200041123a0000200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d042002290308210d4101210e0c010b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d032002290308210d4102210e0b0c010b2002420037030841002103200141086a220541002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20052802006a360200200141074d0d012002290308210d200229039001210720022d008f012110200228008b01210f2002280087012101200229007f2108200228007b210520022d007a210620022d0079210c20022d007821044103210e0b20002002280098013600012000410b3a0000200041306a20073700002000412f6a20103a00002000412b6a200f360000200041276a20013600002000411f6a20083700002000411b6a20053600002000411a6a20063a0000200041196a200c3a0000200041186a20043a0000200041106a200d3700002000410c6a20033600002000410b6a20093a00002000410a6a200a3a0000200041096a200b3a0000200041086a200e3a0000200041046a2002419b016a280000360000200041e8006a200241086a41306a290300370300200041e0006a200241306a290300370300200041d8006a200241286a290300370300200041d0006a200241086a41186a290300370300200041c8006a200241086a41106a290300370300200041c0006a200241086a41086a290300370300200041386a2002290308370300200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024200370308200141086a220341002001280200200141046a2205280200200241086a41082004100022042004417f461b2204410820044108491b20032802006a2206360200200441074d0d0420022903082107200241003a00084101210f20012802002005280200200241086a410120061000210120032003280200200141016a41014b22016a3602002001450d0420022d0008210c0c020b200241f8006a41186a4200370300200241f8006a41106a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a220341002001280200200141046a220a280200200241f8006a41202004100022042004417f461b2204412020044120491b20032802006a220b3602002004411f4d0d0320022f0178210420022d007a2105200228007b210620022d008f01210c200229007f21072002290087012108200241086a41186a220e200229039001220d370300200220083700a7012002200737009f01200241086a41086a20024198016a41086a2903003703002002200c3a00af01200241086a41106a20024198016a41106a2903003703002002200636009b01200220053a009a01200220043b0198012002200d3703b0012002200229039801370308200e290300210d20022d001f2113200228001b210e20022800172110200229000f2107200228000b210420022d000a210520022d0009210620022d0008210c200f420037030020094200370300200242003703900120024200370378200341002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d0320024187016a28000021122002418b016a280000210b2002418f016a2d0000210f200228007b210a20022d007a210920022d0079210320022d00782101200229007f2108200220024190016a29030022113700c9012002200f3a00c8012002200b3602c401200220123602c001200220083703b80120022802c8012115200220133a0098022011423888a721132011421888a721142002200d37009902200d423888a72116200d421888a7211720022802980221184102210f0c010b200241f8006a41186a4200370300200241f8006a41106a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a220341002001280200200141046a220a280200200241f8006a41202004100022042004417f461b2204412020044120491b20032802006a220b3602002004411f4d0d0220022d0078210c20022d0079210620022d007a2105200228007b2104200229007f210720022d008f01210e200229039001210820024198026a41086a2210200229008701220d370300200220083703b00120024198026a41186a221220024198016a411f6a2d00003a00002002200e3a00af0120024198026a41106a220e20022900af013703002002200737009f012002200436009b01200220053a009a01200220063a0099012002200c3a0098012002200d3700a701200220073703980220024188026a41086a20122d00003a00002002200e290300370388022010280200211020022802a402210e2002290398022107200f420037030020094200370300200242003703900120024200370378200341002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d0220024190016a290300210d2002418f016a2d0000210f20022d0078210120022d0079210320022d007a2109200228007b210a200229007f2108200220024187016a29000022113700c702200220083700bf022002200a3600bb02200220093a00ba02200220033a00b902200220013a00b8022002200f3a00cf022002200d3700d9012002200f3a00d8012002200e3602f401200220103602f001200220073703e80120022002290388023703f801200220024190026a2d00003a008002200d423888a72113200d421888a721142011422088a7210b20022802d801211520022d008002211620022802fc01211720022802f80121182011a721124103210f0b0b2000200228009801360001200041103a0000200041cf006a42003c0000200041cb006a42003e0000200041d0006a200d370000200041c9006a41003b0000200041c8006a20133a0000200041c4006a2014360000200041c0006a20153600002000413c6a200b360000200041386a2012360000200041306a20083700002000412c6a200a3600002000412b6a20093a00002000412a6a20033a0000200041296a20013a0000200041286a20163a0000200041246a2017360000200041206a20183600002000411c6a200e360000200041186a2010360000200041106a20073700002000410c6a20043600002000410b6a20053a00002000410a6a20063a0000200041096a200c3a0000200041086a200f3a0000200041046a2002419b016a280000360000200041e8006a200241086a41106a290300370300200041e0006a200241086a41086a290300370300200041d8006a2002290308370300200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d01200241f8006a41186a22012005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c290300370300200220022903980137037820022d0078211020022d0079210c20022d007a210e200228007b210f2002290087012107200229007f210820022d008f012103200220012903003700c901200220033a00c801200220083703b801200220073703c0012002200f36000b2002200e3a000a2002200c3a0009200220103a00082002200837000f20022007370017200220022903c80137001f2002200241b8016a41186a2d00003a002720022d0027211320022800232114200228001f2115200228001b210520022800172106200229000f2107410121090c1f0b20024198016a41186a2209420037030020024198016a41106a220a420037030020024198016a41086a220b42003703002002420037039801200141086a220341002001280200200141046a221228020020024198016a41202004100022042004417f461b2204412020044120491b20032802006a22133602002004411f4d0d00200241f8006a41186a22042009290300370300200241f8006a41106a200a290300370300200241f8006a41086a200b2903003703002002200229039801370378200228007b210f20022d007a210e20022d0079210c20022d00782110200229007f21072002280087012106200228008b01210520022d008f012114200220042903003700a90220024188026a41086a20024198026a41186a2d00003a0000200220143a00a802200220053602a402200220063602a0022002200737039802200220022903a8023703880220094200370300200a4200370300200b42003703002002420037039801200341002001280200201228020020024198016a41202013100022042004417f461b2204412020044120491b20032802006a22093602002004411f4d0d00200241f8006a41186a220320024198016a41186a290300370300200241f8006a41106a20024198016a41106a290300370300200241f8006a41086a20024198016a41086a290300370300200220022903980137037820032903002108200241f8006a410f6a290000210d20022f0178210320022d007a2104200228007b210a200229007f211120022002418f016a2d00003a00cf022002200d3700c702200220113700bf022002200a3600bb02200220043a00ba02200220033b01b8022002420037031020024200370308200141086a220441002001280200200141046a220a280200200241086a41102009100022032003417f461b2203411020034110491b20042802006a22093602002003410f4d0d00200241086a41086a29030021112002290308210d2002420037031020024200370308200441002001280200200a280200200241086a41102009100022012001417f461b2201411020014110491b20042802006a3602002001410f4d0d00200241086a41086a290300211c2002290308211b200220053602f401200220063602f001200220073703e801200220083700d90120022002290388023703f801200220024188026a41086a2d00003a0080022002200241cf026a2d00003a00d801200241c7026a290000211920022900bf02211a20022d00b802211220022d00b902210a20022d00ba02210b20022800bb02211620022d00d801211720022d008002211320022802fc01211420022802f8012115410221090c1e0b200041123a0000200241d0026a24000f0b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d04200228008b0121032002280087012104200229007f2107200228007b210520022d007a210620022d0079210c20022d0078210e20022d008f0121122002200229039001220d370009200220123a0008200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d0420022d0078210120022d0079211020022d007a210f200228007b2109200229007f2108200228008701210a200228008b01210b20022d008f012112200220022903900122113703b001200220123a00af012002200b3600ab012002200a3600a7012002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a0098012011423888a721122011421888a72113200d421888a72114200d423888a7211520022800af01211620022802082117410121180c030b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d03200228008b0121032002280087012104200229007f2107200228007b210520022d007a210620022d0079210c20022d0078210e20022d008f012112200220022903900137009902200220123a009802200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d0320022d0078210120022d0079211020022d007a210f200228007b2109200229007f2108200229008701210d20022d008f01210a20022002290390013703b001200241106a2212200241b7016a2d00003a00002002200a3a00af012002200d3700a7012002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a009801200220022900af01370308200d422088a7210b20122d00002112200228020c21132002280208211620022d00a0022115200228029c0221142002280298022117200da7210a410221180c020b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d0220022d0078210e20022d0079210c20022d007a2106200228007b2105200229007f21072002280087012104200228008b01210320022d008f0121142002200229039001220d370320200220143a001f2002200336001b200220043600172002200737000f2002200536000b200220063a000a2002200c3a00092002200e3a0008200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d0220022d0078210120022d0079211020022d007a210f200228007b2109200229007f210820022d008f01210a2002290390012111200241c0016a220b200229008701221b370300200220113703b001200241d0016a2212200241b7016a2d00003a00002002200a3a00af01200241c8016a220a20022900af013703002002200837009f012002200936009b012002200f3a009a01200220103a009901200220013a0098012002201b3700a701200220083703b80120122d00002112200a2802002116200b280200210a20022802cc01211320022802c401210b20022903b8012108200220143a0098022002200d37009902200d423888a72115200d421888a721142002280298022117410321180c010b20024190016a420037030020024188016a220f4200370300200241f8006a41086a2209420037030020024200370378200141086a221041002001280200200141046a220a280200200241f8006a41202004100022032003417f461b2203412020034120491b20102802006a220b3602002003411f4d0d01200228007b210520022d007a210620022d0079210c20022d0078210e200229007f21072002280087012104200228008b01210320022d008f012112200220022903900122083700a902200220123a00a802200220033602a402200220043602a00220022007370398022002200837008902200220123a008802200f420037030020094200370300200242003703900120024200370378201041002001280200200a280200200241f8006a4120200b100022012001417f461b2201412020014120491b20102802006a3602002001411f4d0d01200229039001210d20022f0178210120022d007a2110200228007b210f20022d008f012109200229007f210820022002290087013700a7012002200837009f01200241b8026a41086a20024198016a41086a290300370300200220093a00af01200241b8026a41106a20024198016a41106a2903003703002002200f36009b01200220103a009a01200220013b0198012002200d3703b00120022002290398013703b8022002200d3700d901200220022d00cf023a00d801200241c7026a290000211120022900bf02210820022800bb02210920022d00ba02210f20022d00b902211020022d00b8022101200220033602f401200220043602f001200220073703e80120022002290388023703f801200220024188026a41086a2d00003a008002200d423888a72112200d421888a721132011422088a7210b20022802d801211620022d008002211520022802fc01211420022802f80121172011a7210a410421180b200020183a00012000410f3a0000200041c1006a20123a00002000413d6a2013360000200041396a2016360000200041356a200b360000200041316a200a360000200041296a2008370000200041256a2009360000200041246a200f3a0000200041236a20103a0000200041226a20013a0000200041216a20153a00002000411d6a2014360000200041196a2017360000200041156a2003360000200041116a2004360000200041096a2007370000200041056a2005360000200041046a20063a0000200041036a200c3a0000200041026a200e3a0000200041e8006a2002412e6a290100370100200041e2006a200241286a290100370100200041da006a200241206a290100370100200041d2006a200241186a290100370100200041ca006a200241106a290100370100200041c2006a2002290108370100200241d0026a24000f0b200041123a0000200241d0026a24000f0b20024198016a41186a2205420037030020024198016a41106a2206420037030020024198016a41086a220c42003703002002420037039801200141086a221041002001280200200141046a220f28020020024198016a41202004100022032003417f461b2203412020034120491b20102802006a22093602002003411f4d0d07200241f8006a41186a220a2005290300370300200241f8006a41106a2006290300370300200241f8006a41086a200c2903003703002002200229039801370378200228008b01210e2002280087012105200229007f2107200228007b210320022d007a210620022d0079210c20022d0078210420022d008f01210b2002200a290300370099022002200b3a009802200f280200210f20024100360208201041002001280200200f200241086a41042009100022012001417f461b2201410420014104491b20102802006a360200200141034d0d072002280208210f20022d00a0022109200228029c02210b200228029802210a41012112410021100c060b200141046a220628020021032002410036029801200141086a220541002001280200200320024198016a41042004100022032003417f461b2203410420034104491b20052802006a2204360200200341034d0d062002280298012103200241003a0098012001280200200628020020024198016a410120041000210120052005280200200141016a41014b22016a3602002001450d0620022d009801220441054b0d06200228022022094180807c712110200941087621012002280224210f200228021c210b2002280218210a2002280214210e2002280210210520022903082107410221120c050b20024198016a41186a2206420037030020024198016a41106a220c420037030020024198016a41086a220e42003703002002420037039801200141086a220541002001280200200141046a221028020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a220f3602002003411f4d0d05200241f8006a41186a22092006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e2903003703002002200229039801370378200228007b210320022d007a210620022d0079210c20022d00782104200229007f2107200229008701210820022d008f01210e200220092903003700f901200241d8016a41086a200241e8016a41186a2d00003a00002002200e3a00f801200220083703f001200220073703e801200220022903f8013703d8012010280200210e20024100360208200541002001280200200e200241086a4104200f1000220e200e417f461b220e4104200e4104491b20052802006a2210360200200e41034d0d052002280208210f200241003a0098012001280200200141046a28020020024198016a4101201010002105200141086a22012001280200200541016a41014b22016a3602002001450d0520022d009801220141044f0d05200220073703b801200220022903d8013703c8012002200241e0016a2d00003a00d001200220083703c0012008422088a7210e20022d00d001210920022802cc01210b20022802c801210a2008a7210541032112410021100c040b200141046a220c280200210320024100360208200141086a2206410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d0420022802082105200c2802002103200241003602082006410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d042002280208210e200141046a220c280200210320024100360208200141086a2206410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d042002280208210a200c2802002103200241003602082006410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d042002280208210b200141046a220c280200210320024100360208200141086a2206410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20062802006a2204360200200341034d0d0420022802082109200241003a0098012001280200200c28020020024198016a410120041000210320062006280200200341016a41014b22036a22043602002003450d0420022d009801220f41054b0d04200242003703084104211241002103200141086a220641002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20062802006a360200200141074d0d0420094180807c71211020094108762101200229030821070c020b200141046a2206280200210320024100360208200141086a2205410020012802002003200241086a41042004100022032003417f461b2203410420034104491b20052802006a2204360200200341034d0d032002280208210f20024198016a41186a2203420037030020024198016a41106a220c420037030020024198016a41086a42003703002002420037039801200541002001280200200628020020024198016a41202004100022012001417f461b2201412020014120491b20052802006a3602002001411f4d0d03200241f8006a41186a2003290300370300200241f8006a41106a200c290300370300200241f8006a41086a20024198016a41086a290300370300200220022903980137037820024198026a41086a220120024187016a29000037030020024198026a41106a22052002418f016a29000037030020024198026a41186a200241f8006a411f6a2d00003a00002002200229007f37039802200228007b210320022d007a210620022d0079210c20022d00782104200220022900a902220737008902200220052d00003a0088022007423888a721092007421888a7210b20012802002105200229039802210720022802a402210e200228028802210a41052112410021100c020b200141046a28020021034100211020024100360208200141086a2205410020012802002003200241086a41042004100022012001417f461b2201410420014104491b20052802006a360200200141034d0d022002280208210320022802cc02210b20022802c802210a20022802c402210e20022802c002210520022903b802210741062112410021014100210f0b0b2000200228009801360001200041073a00002000412c6a200f360000200041246a200b360000200041206a200a3600002000411c6a200e360000200041186a2005360000200041106a20073700002000410c6a20033600002000410b6a20063a00002000410a6a200c3a0000200041096a20043a0000200041086a20123a0000200041306a2002290308370300200041046a2002419b016a280000360000200041386a200241086a41086a290300370300200041c0006a200241086a41106a290300370300200041c8006a200241086a41186a290300370300200041d0006a200241086a41206a290300370300200041d8006a200241086a41286a290300370300200041e0006a200241086a41306a290300370300200041e8006a200241086a41386a290300370300200041286a2010200141ff017141087472200941ff017172360000200241d0026a24000f0b200041123a0000200241d0026a24000f0b410221050c040b410321050c030b410421050c020b410521050c010b410621050b0c070b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a36020041072105200141074d0d03200229030821080c060b20024198016a41186a2206420037030020024198016a41106a220c42003703004108210520024198016a41086a220e42003703002002420037039801200141086a220341002001280200200141046a28020020024198016a41202004100022012001417f461b2201412020014120491b20032802006a3602002001411f4d0d02200241f8006a41186a22012006290300370300200241f8006a41106a200c290300370300200241f8006a41086a200e2903003703002002200229039801370378200228008b01210f2002280087012109200229007f2108200228007b210e20022d007a210620022d0079210320022d0078210c20022d008f01210420022001290300220737009902200220043a0098022007423888a721152007421888a7211620022802980221100c050b20024198016a41186a220a420037030020024198016a41106a220b420037030020024198016a41086a221242003703002002420037039801200141086a220541002001280200200141046a221328020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d01200241f8006a41186a2210200a290300370300200241f8006a41106a200b290300370300200241f8006a41086a20122903003703002002200229039801370378200228008b01210f2002280087012109200229007f2108200228007b210e20022d007a210620022d0079210320022d0078210c20022d008f01211420022010290300220737009902200220143a0098022002280298022110200a4200370300200b4200370300201242003703002002420037039801200541002001280200201328020020024198016a41202004100022012001417f461b2201412020014120491b20052802006a3602002001411f4d0d01200241f8006a41186a220120024198016a41186a290300370300200241f8006a41106a20024198016a41106a290300370300200241f8006a41086a20024198016a41086a29030037030020022002290398013703782007421888a721162007423888a721152001290300211a2002418f016a2d0000211720024187016a290000211d200229007f2119200228007b211320022d007a210b20022d0079210a20022d00782112410921050c040b20024198016a41186a2210420037030020024198016a41106a220f420037030020024198016a41086a220942003703002002420037039801200141086a220541002001280200200141046a220a28020020024198016a41202004100022032003417f461b2203412020034120491b20052802006a22043602002003411f4d0d00200241f8006a41186a220b2010290300370300200241f8006a41106a200f290300370300200241f8006a41086a20092903003703002002200229039801370378200228007b210e20022d007a210620022d0079210320022d0078210c200229007f2107200229008701210820022d008f0121122002200b29030037008902200241e8016a41186a20024188026a41086a2d00003a0000200220123a008802200220083703f001200220073703e80120022002290388023703f80120104200370300200f4200370300200942003703002002420037039801200541002001280200200a28020020024198016a41202004100022042004417f461b2204412020044120491b20052802006a22103602002004411f4d0d00200241f8006a41186a220420024198016a41186a2205290300370300200241f8006a41106a220f20024198016a41106a2209290300370300200241f8006a41086a221420024198016a41086a22152903003703002002200229039801370378200241b8026a41106a200f290300370300200241b8026a41086a2014290300370300200220022903783703b8022004290300210720024198026a41086a2217200241b8026a410f6a29000037030020024198026a41106a2218200241b8026a41176a2d00003a0000200220073700a902200220022900bf023703980220022800bb02211320022d00ba02210b20022d00b902210a20022d00b80221122005420037030020094200370300201542003703002002420037039801200141086a221641002001280200200141046a28020020024198016a41202010100022012001417f461b2201412020014120491b20162802006a3602002001411f4d0d0020042005290300370300200f2009290300370300201420152903003703002002200229039801370378200241f8006a410f6a2900002107200241f8006a41176a2d000021012004290300210820022f0178210420022d007a2105200228007b2110200229007f210d200241d8016a41086a2209200241e8016a41106a220f41086a2d00003a0000200241b8016a41086a22142017290300370300200241b8016a41106a22152018290300370300200241b8016a41186a20024198026a41186a2d00003a000020022008370320200220013a001f200220073700172002200d37000f2002201036000b200220053a000a200220043b01082002200f2902003703d80120022002290398023703b80120022903e8012108200235010a200231000e422086842107200241e8016a41086a290300221e422088a7210f200241086a411f6a31000021112014290300211d20152d0000211720092d00002115200229001f210d2002290017211c200229000f211b20022903b801211920022f0108211420022900c901211a20022802dc01211620022802d8012110201ea72109410a21050c030b200041123a0000200241d0026a24000f0b200241d8016a41086a200241e8016a41106a220141086a2d00003a0000200220012902003703d801200241e8016a41086a290300220d422088a7210320022903e801210820022900d901210720022d00d8012101200da72104410121050b200020053a00012000410d3a00002000411a6a2007370000200041196a20013a0000200041156a2003360000200041116a2004360000200041096a2008370000200041056a200c360000200041046a200e3a0000200041036a200f3a0000200041026a20093a0000200041226a200241086a41ce0010f6021a200241d0026a24000f0b20002002280008360001200041083a0000200041cf006a20074220883c0000200041cb006a20073e0000200041e8006a2011370000200041e0006a200d370000200041d8006a201c370000200041d0006a201b370000200041386a201d370000200041306a2019370000200041c9006a20143b0000200041c1006a201a370000200041c0006a20173a00002000412c6a20133600002000412b6a200b3a00002000412a6a200a3a0000200041296a20123a0000200041286a20153a0000200041246a2016360000200041206a20103600002000411c6a200f360000200041186a2009360000200041106a20083700002000410c6a200e3600002000410b6a20063a00002000410a6a20033a0000200041096a200c3a0000200041086a20053a0000200041046a2002410b6a280000360000200241d0026a24000f0b20002002280008360001200041023a0000200041e8006a201c370000200041e0006a201b370000200041d8006a2011370000200041d0006a200d370000200041386a2019370000200041306a201a370000200041c9006a41003b0000200041c1006a2008370000200041c0006a20173a00002000412c6a20163600002000412b6a200b3a00002000412a6a200a3a0000200041296a20123a0000200041286a20133a0000200041246a2014360000200041206a20153600002000411c6a2005360000200041186a2006360000200041106a20073700002000410c6a200f3600002000410b6a200e3a00002000410a6a200c3a0000200041096a20103a0000200041086a20093a0000200041046a2002410b6a280000360000200241d0026a24000f0b200041123a0000200241d0026a24000bd2f10104067f017e017f017e230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0000417f6a220341104b0d0002400240024002400240024002400240024002400240024020030e11000b0709040d0f0a11061003050e020801000b200141046a280200200141086a2802002203470d1b200341016a22042003490d7120034101742205200420042005491b22054100480d712003450d3720012802002003200510152204450d380c6f0b200141046a280200200141086a2802002203470d10200341016a22042003490d6b20034101742205200420042005491b22054100480d6b2003450d2220012802002003200510152204450d230c690b200141046a280200200141086a2802002203470d10200341016a22042003490d6520034101742205200420042005491b22054100480d652003450d2320012802002003200510152204450d240c630b200141046a280200200141086a2802002203470d10200341016a22042003490d6420034101742205200420042005491b22054100480d642003450d2420012802002003200510152204450d250c600b200141046a280200200141086a2802002203470d10200341016a22042003490d6d20034101742205200420042005491b22054100480d6d2003450d2520012802002003200510152204450d260c5d0b200141046a280200200141086a2802002203470d10200341016a22042003490d6220034101742205200420042005491b22054100480d622003450d2620012802002003200510152204450d270c5a0b200141046a280200200141086a2802002203470d10200341016a22042003490d6120034101742205200420042005491b22054100480d612003450d2720012802002003200510152204450d280c570b200141046a280200200141086a2802002203470d10200341016a22042003490d6a20034101742205200420042005491b22054100480d6a2003450d2820012802002003200510152204450d290c540b200141046a280200200141086a2802002203470d10200341016a22042003490d5f20034101742205200420042005491b22054100480d5f2003450d2920012802002003200510152204450d2a0c510b200141046a280200200141086a2802002203470d10200341016a22042003490d6820034101742205200420042005491b22054100480d682003450d2a20012802002003200510152204450d2b0c4e0b200141046a280200200141086a2802002203470d10200341016a22042003490d6720034101742205200420042005491b22054100480d672003450d2b20012802002003200510152204450d2c0c4b0b200141046a280200200141086a2802002203470d11200341016a22042003490d6620034101742205200420042005491b22054100480d662003450d2e20012802002003200510152204450d2f0c480b200141046a280200200141086a2802002203470d11200341016a22042003490d6520034101742205200420042005491b22054100480d652003450d2f20012802002003200510152204450d300c450b200141046a280200200141086a2802002203470d11200341016a22042003490d6420034101742205200420042005491b22054100480d642003450d3020012802002003200510152204450d310c420b200141046a280200200141086a2802002203470d11200341016a22042003490d5920034101742205200420042005491b22054100480d592003450d3120012802002003200510152204450d320c3f0b200141046a2205280200200141086a22032802002204470d11200441016a22062004490d6220044101742207200620062007491b22074100480d622004450d3220012802002004200710152206450d330c3c0b200141046a280200200141086a2802002203470d11200341016a22042003490d5720034101742205200420042005491b22054100480d572003450d3320012802002003200510152204450d340c390b200141046a280200200141086a2802002203470d11200341016a22042003490d5620034101742205200420042005491b22054100480d562003450d3420012802002003200510152204450d350c360b200128020021040c590b200128020021040c530b200128020021040c500b200128020021040c4d0b200128020021040c4a0b200128020021040c470b200128020021040c440b200128020021040c410b200128020021040c3e0b200128020021040c3b0b200128020021040c540b200128020021040c370b200128020021040c340b200128020021040c310b200128020021040c2e0b200128020021060c2b0b200128020021040c280b200128020021040c250b2005101322040d460b200541011014000b2005101322040d3f0b200541011014000b2005101322040d3b0b200541011014000b2005101322040d370b200541011014000b2005101322040d330b200541011014000b2005101322040d2f0b200541011014000b2005101322040d2b0b200541011014000b2005101322040d270b200541011014000b2005101322040d230b200541011014000b2005101322040d1f0b200541011014000b2005101322040d370b200541011014000b2005101322040d190b200541011014000b2005101322040d150b200541011014000b2005101322040d110b200541011014000b2005101322040d0d0b200541011014000b2007101322060d090b200741011014000b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000200141046a28020021042005280200210302400240024002400240024002400240024002400240200041086a2903004201520d0020042003470d01200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0320012802002003200510152204450d040c090b20042003470d01200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0420012802002003200510152204450d050c060b200128020021040c080b200128020021040c050b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2520044101742203200020002003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2320044101742203200020002003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d3320034101742205200420042005491b22054100480d332003450d0b20012802002003200510152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d3220034101742205200420042005491b22054100480d322003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d3120034101742205200420042005491b22054100480d312003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d3020034101742205200420042005491b22054100480d302003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d090b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041306a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d2720044101742203200520052003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200837000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2720044101742203200520052003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2520044101742203200020002003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2320044101742203200020002003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2120044101742203200020002003491b22034100480d212004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41073a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220441054b0d0002400240024002400240024020040e06000402030105000b200528020020032802002204470d09200441016a22062004490d4d20044101742207200620062007491b22074100480d4d2004450d1320012802002004200710152206450d140c270b200528020020032802002204470d05200441016a22062004490d4c20044101742207200620062007491b22074100480d4c2004450d0c20012802002004200710152206450d0d0c240b200528020020032802002204470d05200441016a22062004490d4b20044101742207200620062007491b22074100480d4b2004450d0d20012802002004200710152206450d0e0c210b200528020020032802002204470d05200441016a22062004490d4a20044101742207200620062007491b22074100480d4a2004450d0e20012802002004200710152206450d0f0c1e0b200528020020032802002204470d06200441016a22062004490d4920044101742207200620062007491b22074100480d492004450d1120012802002004200710152206450d120c1b0b200528020020032802002204470d06200441016a22062004490d4820044101742207200620062007491b22074100480d482004450d1220012802002004200710152206450d130c180b200528020020032802002204470d06200441016a22062004490d4720044101742207200620062007491b22074100480d472004450d1320012802002004200710152206450d140c150b200128020021060c1f0b200128020021060c1c0b200128020021060c190b200128020021060c1e0b200128020021060c150b200128020021060c120b200128020021060c0f0b2007101322060d170b200741011014000b2007101322060d130b200741011014000b2007101322060d0f0b200741011014000b2007101322060d130b200741011014000b2007101322060d090b200741011014000b2007101322060d050b200741011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41003a00000240024002400240024020052802002206200328020022046b41204f0d00200441206a22072004490d3520064101742204200720072004491b22044100480d352006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441206a360200200620046a220441186a200041096a220641186a290000370000200441106a200641106a290000370000200441086a200641086a290000370000200420062900003700002000412c6a28020021060240024002400240024020052802002200200328020022046b41044f0d00200441046a22052004490d3520004101742204200520052004491b22044100480d352000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441046a360200200020046a2006360000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41063a00002000410c6a28020021060240024002400240024020052802002200200328020022046b41044f0d00200441046a22052004490d3320004101742204200520052004491b22044100480d332000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441046a360200200020046a2006360000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41023a00002000410c6a28020021060240024002400240024020052802002204200328020022036b41044f0d00200341046a22052003490d3120044101742203200520052003491b22034100480d312004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2006360000200041096a2d00002001104a200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41043a0000200041186a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a20073600002000411c6a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a2007360000200041206a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a2007360000200041246a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2f20064101742204200920092004491b22044100480d2f2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a2007360000200041286a28020021060240024002400240024020052802002205200328020022046b41044f0d00200441046a22072004490d2f20054101742204200720072004491b22044100480d2f2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2207200441046a360200200520046a20063600002000412c6a2d00002001104a200041106a290300210802400240024002400240200141046a2802002200200728020022046b41084f0d00200441086a22052004490d2f20004101742204200520052004491b22044100480d2f2000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441086a360200200020046a2008370000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41033a00000240024002400240024020052802002206200328020022046b41204f0d00200441206a22072004490d2d20064101742204200720072004491b22044100480d2d2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441206a360200200620046a220441186a200041096a220641186a290000370000200441106a200641106a290000370000200441086a200641086a290000370000200420062900003700002000412c6a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2d20064101742204200920092004491b22044100480d2d2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a20073600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041296a2d000022044101460d00024020044102460d0020044103470d02200528020020032802002204470d05200441016a22002004490d3f20044101742205200020002005491b22054100480d3f2004450d0b20012802002004200510152200450d0c0c150b200528020020032802002204470d02200441016a22002004490d3e20044101742205200020002005491b22054100480d3e2004450d0620012802002004200510152200450d070c120b200528020020032802002204470d02200441016a22002004490d3d20044101742205200020002005491b22054100480d3d2004450d0720012802002004200510152200450d080c0f0b200528020020032802002204470d03200441016a22002004490d3c20044101742205200020002005491b22054100480d3c2004450d0a20012802002004200510152200450d0b0c0c0b200128020021000c100b200128020021000c0d0b200128020021000c100b200128020021000c090b2005101322000d0b0b200541011014000b2005101322000d070b200541011014000b2005101322000d090b200541011014000b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41003a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41013a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41023a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021040b2003200441016a360200200020046a41033a0000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41053a00002000412c6a28020021070240024002400240024020052802002206200328020022046b41044f0d00200441046a22092004490d2b20064101742204200920092004491b22044100480d2b2006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441046a360200200620046a20073600000240024002400240024020052802002205200328020022046b41204f0d00200441206a22062004490d2b20054101742204200620062004491b22044100480d2b2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a41013a00000240024002400240024020052802002206200328020022046b41204f0d00200441206a22072004490d2920064101742204200720072004491b22044100480d292006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b2003200441206a360200200620046a220441186a200041096a220641186a290000370000200441106a200641106a290000370000200441086a200641086a290000370000200420062900003700002000412c6a28020021060240024002400240024020052802002200200328020022046b41044f0d00200441046a22052004490d2920004101742204200520052004491b22044100480d292000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b2003200441046a360200200020046a2006360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410e3a0000200141046a28020021042005280200210302400240024002400240024002400240024002400240200041086a2903004201520d0020042003470d01200341016a22042003490d2320034101742205200420042005491b22054100480d232003450d0320012802002003200510152204450d040c090b20042003470d01200341016a22042003490d2220034101742205200420042005491b22054100480d222003450d0420012802002003200510152204450d050c060b200128020021040c080b200128020021040c050b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d1f20044101742203200020002003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d1d20044101742203200020002003491b22034100480d1d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d2520034101742205200420042005491b22044100480d252003450d0120012802002003200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041046a280200210320022000410c6a280200220036020c2002410c6a200110180240024002402000450d002003200041286c6a2109200141046a21050340024002400240024020052802002206200428020022006b41204f0d00200041206a22072000490d2820064101742200200720072000491b22004100480d282006450d01200128020020062000101522060d020c060b200128020021060c020b200010132206450d040b2001200636020020052000360200200428020021000b2004200041206a360200200620006a220041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020002003290000370000200341206a2903002108024002400240024020052802002206200428020022006b41084f0d00200041086a22072000490d2820064101742200200720072000491b22004100480d282006450d01200128020020062000101522060d020c070b200128020021060c020b200010132206450d050b2001200636020020052000360200200428020021000b2004200041086a360200200620006a20083700002009200341286a2203470d000b0b200241106a24000f0b200041011014000b200041011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200141046a28020021042005280200210302400240024002400240024002400240024002400240200041016a2d00004101470d0020042003470d01200341016a22042003490d2920034101742200200420042000491b22004100480d292003450d0320012802002003200010152204450d040c090b20042003470d01200341016a22042003490d2820034101742200200420042000491b22004100480d282003450d0420012802002003200010152204450d050c060b200128020021040c080b200128020021040c050b2000101322040d050b200041011014000b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d3320034101742200200420042000491b22004100480d332003450d0b20012802002003200010152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d3220034101742205200420042005491b22054100480d322003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d3120034101742205200420042005491b22054100480d312003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d3020034101742205200420042005491b22054100480d302003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2000101322040d090b200041011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2720044101742203200520052003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041386a2903002108200041306a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d2720044101742203200020002003491b22034100480d272004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2520044101742203200520052003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041296a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041d8006a2903002108200041d0006a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d2320044101742203200520052003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341106a360200200420036a220320083700082003200a370000200041e8006a2903002108200041e0006a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d2320044101742203200020002003491b22034100480d232004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41033a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a0000024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341094b0d0002400240024002400240024002400240024020030e0a00060304010708050a02000b200141046a280200200141086a2802002203470d0f200341016a22042003490d5b20034101742205200420042005491b22054100480d5b2003450d1f20012802002003200510152204450d200c3f0b200141046a280200200141086a2802002203470d09200341016a22042003490d5020034101742200200420042000491b22004100480d502003450d1420012802002003200010152204450d150c3c0b200141046a280200200141086a2802002203470d09200341016a22042003490d4f20034101742205200420042005491b22054100480d4f2003450d1520012802002003200510152204450d160c390b200141046a280200200141086a2802002203470d09200341016a22042003490d5820034101742200200420042000491b22004100480d582003450d1620012802002003200010152204450d170c360b200141046a280200200141086a2802002203470d09200341016a22042003490d5720034101742200200420042000491b22004100480d572003450d1720012802002003200010152204450d180c330b200141046a280200200141086a2802002203470d09200341016a22042003490d4c20034101742205200420042005491b22054100480d4c2003450d1820012802002003200510152204450d190c300b200141046a280200200141086a2802002203470d0a200341016a22042003490d5520034101742200200420042000491b22004100480d552003450d1b20012802002003200010152204450d1c0c2d0b200141046a280200200141086a2802002203470d0a200341016a22042003490d4a20034101742200200420042000491b22004100480d4a2003450d1c20012802002003200010152204450d1d0c2a0b200141046a280200200141086a2802002203470d0a200341016a22042003490d4920034101742205200420042005491b22054100480d492003450d1d20012802002003200510152204450d1e0c270b200141046a28020020052802002203470d0a200341016a22042003490d5220034101742200200420042000491b22004100480d522003450d1e20012802002003200010152204450d1f0c240b200141046a280200200141086a2802002203470d0a200341016a22042003490d4720034101742205200420042005491b22054100480d472003450d1f20012802002003200510152204450d200c210b200128020021040c330b200128020021040c300b200128020021040c2d0b200128020021040c2a0b200128020021040c270b200128020021040c300b200128020021040c230b200128020021040c200b200128020021040c1d0b200128020021040c1a0b200128020021040c170b2000101322040d270b200041011014000b2005101322040d230b200541011014000b2000101322040d1f0b200041011014000b2000101322040d1b0b200041011014000b2005101322040d170b200541011014000b2005101322040d1f0b200541011014000b2000101322040d110b200041011014000b2000101322040d0d0b200041011014000b2005101322040d090b200541011014000b2000101322040d050b200041011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2920044101742203200520052003491b22034100480d292004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d2920044101742203200520052003491b22034100480d292004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d2520044101742203200020002003491b22034100480d252004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41063a0000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41023a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041096a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41043a0000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41033a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1920044101742203200520052003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1920044101742203200520052003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041296a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1920044101742203200520052003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041c9006a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41053a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210002400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a000002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d0020034102470d01200141046a280200200141086a2802002203470d03200341016a22042003490d2920034101742205200420042005491b22054100480d292003450d0720012802002003200510152204450d080c0f0b200141046a28020020052802002203470d01200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0420012802002003200510152204450d050c0c0b200141046a280200200141086a2802002203470d02200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0720012802002003200510152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2005101322040d070b200541011014000b2005101322040d070b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041186a2903002108200041106a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d2120044101742203200020002003491b22034100480d212004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a290000370000200320042900003700002000412c6a280200210002400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d1f20044101742203200520052003491b22034100480d1f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1d20044101742203200520052003491b22034100480d1d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041386a2903002108200041306a290300210a02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22002003490d1d20044101742203200020002003491b22034100480d1d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341106a360200200420036a220120083700082001200a370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41103a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d2820034101742205200420042005491b22054100480d282003450d0b20012802002003200510152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d2720034101742205200420042005491b22054100480d272003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d2120034101742205200420042005491b22054100480d212003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d2020034101742205200420042005491b22054100480d202003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d090b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041d0006a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200837000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1720044101742203200520052003491b22034100480d172004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1520044101742203200520052003491b22034100480d152004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200837000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041096a2d00003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1620044101742203200520052003491b22034100480d162004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041096a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d1620044101742203200520052003491b22034100480d162004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041296a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22002003490d1920044101742203200020002003491b22034100480d192004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0d20034101742205200420042005491b22054100480d0d2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a29000037000020012000290001370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410d3a00000240024002400240024002400240024002400240024002400240024002400240024020002d000122034101460d0020034102470d01200141046a280200200141086a2802002203470d03200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0720012802002003200510152204450d080c0f0b200141046a28020020052802002203470d01200341016a22042003490d1620034101742205200420042005491b22054100480d162003450d0420012802002003200510152204450d050c0c0b200141046a280200200141086a2802002203470d02200341016a22042003490d1520034101742205200420042005491b22054100480d152003450d0720012802002003200510152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2005101322040d070b200541011014000b2005101322040d070b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0f20044101742203200520052003491b22034100480d0f2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0f20034101742200200420042000491b22004100480d0f2003450d0120012802002003200010152204450d020c030b200128020021040c030b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0d20034101742200200420042000491b22004100480d0d2003450d0120012802002003200010152204450d020c030b200128020021040c030b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0b20034101742200200420042000491b22004100480d0b2003450d0120012802002003200010152204450d020c030b200128020021040c030b2000101322040d010b200041011014000b20012004360200200141046a2000360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a0000200041026a2104200141046a2802002106200528020021030240024002400240024002400240024002400240024020002d00014101470d0020062003470d01200341016a22002003490d1920034101742205200020002005491b22054100480d192003450d0320012802002003200510152200450d040c090b20062003470d01200341016a22002003490d1820034101742205200020002005491b22054100480d182003450d0420012802002003200510152200450d050c060b200128020021000c080b200128020021000c050b2005101322000d050b200541011014000b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200020036a41003a000002400240024002400240200141046a28020020052802002203470d00200341016a22002003490d1520034101742205200020002005491b22054100480d152003450d0120012802002003200510152200450d020c030b200128020021000c030b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200020036a20042d00003a0000200241106a24000f0b20012000360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200020036a41013a000002400240024002400240200141046a2802002200200528020022036b41204f0d00200341206a22052003490d1320004101742203200520052003491b22034100480d132000450d0120012802002000200310152200450d020c030b200128020021000c030b2003101322000d010b200341011014000b20012000360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200020036a220141186a200441186a290000370000200141106a200441106a290000370000200141086a200441086a29000037000020012004290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410c3a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041086a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2008370000200041106a280200210002400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410f3a00000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d0001417f6a220341034b0d00024020030e0400040203000b200141046a280200200141086a2802002203470d07200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0f20012802002003200510152204450d100c1b0b200141046a28020020052802002203470d03200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0820012802002003200510152204450d090c180b200141046a280200200141086a2802002203470d03200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0920012802002003200510152204450d0a0c150b200141046a280200200141086a2802002203470d03200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0a20012802002003200510152204450d0b0c120b200141046a280200200141086a2802002203470d04200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0d20012802002003200510152204450d0e0c0f0b200128020021040c150b200128020021040c120b200128020021040c0f0b200128020021040c140b200128020021040c0b0b2005101322040d0f0b200541011014000b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d0b0b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0d20044101742203200520052003491b22034100480d0d2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a2900003700002003200429000037000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041026a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310152204450d020c040b200128020021040c040b2003101322040d020b200341011014000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220141186a200041226a220341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41113a0000200041096a210302400240024002400240024002400240024002400240200041086a2d00004101470d00200141046a28020020052802002204470d01200441016a22052004490d0b20044101742206200520052006491b22064100480d0b2004450d0320012802002004200610152205450d040c090b200141046a28020020052802002204470d01200441016a22002004490d0a20044101742205200020002005491b22054100480d0a2004450d0420012802002004200510152200450d050c060b200128020021050c080b200128020021000c050b2006101322050d050b200641011014000b2005101322000d010b200541011014000b20012000360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200020046a41003a000002400240024002400240200141046a2802002200200528020022046b41204f0d00200441206a22052004490d0720004101742204200520052004491b22044100480d072000450d0120012802002000200410152200450d020c030b200128020021000c030b2004101322000d010b200441011014000b20012000360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200020046a220141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a29000037000020012003290000370000200241106a24000f0b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41013a000002400240024002400240200141046a2802002205200628020022046b41204f0d00200441206a22062004490d0520054101742204200620062004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200441206a360200200520046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200041306a2903002108024002400240200141046a2802002204200628020022036b41084f0d00200341086a22002003490d0320044101742203200020002003491b22034100480d032004450d0120012802002004200310152204450d020c040b200128020021040c040b2003101322040d020b200341011014000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200241106a24000f0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341206a360200200420036a220341186a200041086a220441186a290000370000200341106a200441106a290000370000200341086a200441086a29000037000020032004290000370000200041046a2802002100024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0320044101742203200520052003491b22034100480d032004450d0120012802002004200310152204450d020c040b200128020021040c040b2003101322040d020b200341011014000b1010000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a2000360000200241106a24000b86a50413027f017e137f017e017f037e037f037e037f047e397f027e097f017e067f017e0f7f0a7e117f230041b0096b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001280200417f6a220441124b0d0002400240024002400240024002400240024020040e13009c020f0a0e0d0708050c030b019d020206100411000b200341f0056a41086a200141106a2903003703002003200141086a29030022053703f0052005a7417f6a220441064b0da202200241086a2800002106200241046a280000210720022d00002102024020040e07004240413f4445000b41012108200341f8056a280200210920032802f405210a200241ff01714101462202450d7e02402009450d00200a10160b41002107410121094101210a4101210b0c92010b200341b2076a2001410b6a2d00003a0000200320012f00093b01b0072001410c6a2802002108200141106a2802002107200141146a280200210c200141186a280200210a2001411c6a280200210d200141206a280200210e200141246a280200210b200141286a280200210f2001412c6a2802002110200141386a28020021112001413c6a2802002112200141c0006a2802002113200141c4006a2802002114200141c8006a2802002115200141cc006a2802002116200141306a2903002105200141086a2d00002109200341d0076a41086a200241096a290000370300200341d0076a41106a200241116a290000370300200341d0076a41186a200241196a290000370300200320022900013703d0072009417f6a220641064b0da2022005a7211720022d00002102024020060e07003b393a383c3d000b20034190086a41186a2206200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012113200241ff01714101470d73200341c2046a20032d0092083a0000200341b0086a41086a200341a3086a290000370300200341bd086a2006290000370000200320032f0190083b01c0042003200329009b083703b00841002113200328009708210620032800930821040c740b200341b0086a200141086a41e80010f6021a200341f0056a41206a200241206a2d00003a0000200341f0056a41186a200241186a290000370300200341f0056a41106a200241106a290000370300200341f0056a41086a200241086a290000370300200320022900003703f005200341e8026a200341b0086a200341f0056a10820120032802ec02210620032802e80221040cda030b20034192076a2001410b6a2d00003a0000200341b0076a41086a200141206a290300370300200341b0076a41106a200141286a290300370300200320012f00093b0190072003200141186a2903003703b007200141086a2d00002218417f6a220441034b0da1022001410c6a2802002114200141106a2903002219a7211a20022d00002102024020040e04001c1a1b000b200241ff0171450d5541a7e6c200210441282106201a0de8030ce9030b20034188056a41086a2209200141206a29030037030020034188056a41106a220a200141286a290300370300200320012800093602900720032001410c6a280000360093072003200141186a29030037038805200141106a2903002105200141086a2d00002107200341d0056a41026a220b200241036a2d00003a0000200341e0046a41086a220c200241146a290000370300200341e0046a410d6a220d200241196a290000370000200320022f00013b01d00520032002410c6a2900003703e00441012108200241086a2800002106200241046a280000210420022d0000210220074101460d1420074102460d1320074103470da102200341b0086a41086a2006360200200341bc086a20032903e004370200200341c4086a200341e0046a41086a290300370200200341c9086a200341ed046a290000370000200320023a00b008200320043602b408200320032f01d0053b00b1082003200341d2056a2d00003a00b30820034190036a200341b0086a20054100108301200328029403210620032802900321040cd8030b200141386a2903002105200141306a290300211b2001412c6a2802002111200141286a2802002109200141246a280200210c200141206a28020021102001411c6a280200210a200141186a280200210d200141146a280200210f200141106a280200210b2001410c6a2802002108200141086a2d0000210620012d00092114200341b2076a200241036a2d00003a000020034188056a41086a200241146a29000037030020034195056a200241196a290000370000200320022f00013b01b00720032002410c6a290000370388052006417f6a220741044b0da102200241086a2800002106200241046a280000210420022d00002102024020070e05002e2b2c2a000b200341c0056a41026a2214200341b0076a41026a2d00003a0000200341a0046a41086a220e20034188056a41086a290300370300200341a0046a410d6a221220034188056a410d6a290000370000200320032f01b0073b01c00520032003290388053703a00441012107200241ff01714101470d4f200341f0066a41026a20142d00003a0000200341c0046a41086a200e290300370300200341c0046a410d6a2012290000370000200320032f01c0053b01f006200320032903a0043703c004410021070c500b20034198036a41086a200141186a2802003602002003200141106a29030037039803200141086a280200417f6a220641034b0da1022001410c6a280200210720022d00002102024020060e0400201b1c000b2003280298032108200241ff0171450d5841a7e6c20021044128210620080d5a0cac030b4189e7c2002104412d21064101210720022d00004102470de703200141086a29030021054200211b20034180046a41086a22024200370300200342003703800441cde8c200411020034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f470dae0220034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d970220032903b008211b0b201b2005540daf0220034180046a41086a22024200370300200342003703800441cde8c200411020034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200320053703b008200341f0066a4110200341b0086a41081001410021040ce7030b41012107200141086a28020021092001280204210a20022d00004101462206450d09200241086a280000210602402009450d00200a10160b41002108410121094101210a4101210b4101210c4101210d41012110410121114101210f41012114410021040cf0030b41004189e7c20020022d000022024102461b2104412d21064101210720024102470de503200141086a2903002105200341f0036a41086a22024200370300200342003703f00341d08ec3004113200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f470dae02200341f0036a41086a22024200370300200342003703f00341ee94c300410d200341f0036a1002200341b0086a41086a2002290300370300200320032903f0033703b008200341b0086a411041acf1c300410041001000417f460dd803200342003703f005200341b0086a4110200341f0056a41084100100041016a41084d0d950220032903f005500dd803200341f0036a41086a22024200370300200342003703f00341ee94c300410d200341f0036a1002200341b0086a41086a22072002290300370300200320032903f0033703b0084200211b0240200341b0086a411041acf1c300410041001000417f460d00200342003703f005200341b0086a4110200341f0056a41084100100041016a41084d0d980220032903f005211b0b20024200370300200342003703f003419095c3004117200341f0036a100220072002290300370300200320032903f0033703b008200341b0086a411041acf1c300410041001000417f460d63200342003703f005200341b0086a4110200341f0056a41084100100041016a41084d0d980220032903f005201b7c2005560d640cd8030b200341e0046a41046a220a2001410e6a2f01003b0100200341f0056a41086a220b200141206a290300370300200341f0056a41106a220c200141286a2903003703002003200128010a3602e0042003200141186a2903003703f005200141106a2903002105200141086a2d0000210620012d00092109200341b0076a41026a220d200241036a2d00003a000020034188056a41086a220f200241146a29000037030020034188056a410d6a2210200241196a290000370000200320022f00013b01b00720032002410c6a290000370388054101210820022d0000210720064101460d1120064102460d0f20064103470d9e02200741ff01710d10200320093a00b00820034180046a41086a22024200370300200342003703800441cdc7c000411920034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a4110200341b0086a41011001410021040cc7030b200241086a2800002106200241046a28000021042001410c6a2802002107200141086a28020021082001280204210a20022d00002109200341c0056a41026a220b200241036a2d00003a0000200341a0046a41086a220c200241146a290000370300200341a0046a410d6a220d200241196a290000370000200320022f00013b01c00520032002410c6a2900003703a0044101210220094101470d0720034180046a41026a200b2d00003a0000200341f0066a41086a200c290300370300200341f0066a410d6a200d290000370000200320032f01c0053b018004200320032903a0043703f006410021020c080b200341b0086a200141086a41d00010f6021a200341f0056a41206a200241206a2d00003a0000200341f0056a41186a200241186a290000370300200341f0056a41106a200241106a290000370300200341f0056a41086a200241086a290000370300200320022900003703f005200341f8016a200341b0086a200341f0056a10840120032802fc01210620032802f80121044100210c41012107410121094101210a410121084101210b0ce7030b200341b0076a41086a200141146a290200370300200341b0076a41106a2001411c6a290200370300200341b0076a41186a200141246a29020037030020032001410c6a2902003703b007200141086a280200210720012802042106200341e0046a41086a2204200241096a290000370300200341e0046a41106a2209200241116a290000370300200341e0046a41186a220a200241196a290000370300200320022900013703e0044101210820022d0000210220064101460d0720064102470d9c0220034188056a41186a200341b0076a41186a29030037030020034188056a41106a200341b0076a41106a29030037030020034188056a41086a200341b0076a41086a290300370300200320032903b00737038805200341f0076a41186a2206200341e0046a41186a290300370300200341f0076a41106a200341e0046a41106a290300370300200341f0076a41086a200341e0046a41086a290300370300200320032903e0043703f00741012108200241ff01714101470d1620034182046a20032d00f2073a0000200341f0066a41086a20034183086a290000370300200341fd066a2006290000370000200320032f01f0073b018004200320032900fb073703f0064100210820032800f707210620032800f30721040c170b200341b0086a41306a200141386a290300370300200341b0086a41286a200141306a290300370300200341b0086a41206a200141286a290300370300200341b0086a41186a200141206a290300370300200341b0086a41106a200141186a290300370300200341b0086a41086a200141106a2903003703002003200141086a2903003703b008200341f0056a41206a200241206a2d00003a0000200341f0056a41186a200241186a290000370300200341f0056a41106a200241106a290000370300200341f0056a41086a200241086a290000370300200320022900003703f005200341b8016a200341b0086a200341f0056a10850120032802bc01210620032802b801210441002109410121070ce1030b20034188056a41086a2209200141146a29020037030020034188056a41106a220a2001411c6a29020037030020034188056a41186a220b200141246a29020037030020034188056a41206a220c2001412c6a28020036020020032001410c6a29020037038805200141386a2903002105200141306a290300211b200141c8006a290300211c200141c0006a290300211d200141086a2802002106200341d0076a41026a220d200241036a2d00003a0000200341f0076a41086a220f200241146a290000370300200341f0076a410d6a2210200241196a290000370000200320022f00013b01d00720032002410c6a2900003703f0074101210820022d0000210720064101460d0620064102470d9b0220034198036a41206a220220034188056a41206a28020036020020034198036a41186a220620034188056a41186a29030037030020034198036a41106a220420034188056a41106a29030037030020034198036a41086a220820034188056a41086a290300370300200320032903880537039803200741ff01710d0b200341b0086a41206a2002280200360200200341b0086a41186a2006290300370300200341b0086a41106a2004290300370300200341b0086a41086a200829030037030020032003290398033703b008200341f0056a200341b0086a104120034182046a220220032d00f3053a0000200341f0066a41086a20034184066a290200370300200341f0066a41106a2003418c066a290200370300200320032f00f1053b0180042003200341fc056a2902003703f00641012107200341f0056a41086a280200210620032802f405210420032d00f0054101460ddf03200341f3046a200341f8066a290300370000200341f8046a200341fd066a290000370000200320032f0180043b01e004200320063600e704200320043600e304200320032903f0063700eb04200320022d00003a00e204200341e0046a201b2005108601200341e0046a201d201c108701410021040cdf030b200341ec036a41026a2001410b6a2d00003a0000200341b0076a41086a200141206a290300370300200341b0076a41106a200141286a290300370300200320012f00093b01ec032003200141186a2903003703b0072001410c6a280200210b200141106a280200210a200141146a2802002109200141306a2903002105200141386a290300211b200141c0006a280200210d200141c4006a2802002110200141cc006a280200210c200141d0006a280200210f200141d4006a2802002114200141d8006a2d00002111200141086a2d00002107200341c8036a41026a200241036a2d00003a0000200341d0056a41086a200241146a290000370300200341dd056a200241196a290000370000200320022f00013b01c80320032002410c6a2900003703d0052007417f6a220841064b0d9b02200241086a2800002106200241046a280000210420022d00002102024020080e07003a3839333b3c000b20034190076a41026a200341ec036a41026a2d00003a000020034188056a41086a200341b0076a41086a29030037030020034188056a41106a200341b0076a41106a2d00003a0000200320032f01ec033b019007200320032903b00737038805200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a220c200341d0056a41086a290300370300200341a0046a410d6a220d200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d75200341f0076a41026a20082d00003a0000200341b0086a41086a200c290300370300200341b0086a410d6a200d290000370000200320032f01c0053b01f007200320032903a0043703b008410021070c760b20034198036a41086a2209200141286a29030037030020034198036a41106a200141306a29030037030020034198036a41186a200141386a29030037030020034198036a41206a200141c0006a29030037030020034198036a41286a200141c8006a2d00003a0000200320012800093602c80320032001410c6a2800003600cb032003200141206a29030037039803200141106a2903002105200141186a290300211b200141086a2d00002107200341ec036a41026a220a200241036a2d00003a0000200341d0036a41086a220b200241146a290000370300200341d0036a410d6a220c200241196a290000370000200320022f00013b01ec0320032002410c6a2900003703d00341012108200241086a2800002106200241046a280000210420022d0000210220074101460d0520074102470d9b02200341c0056a41026a2208200341ec036a41026a2d00003a0000200341a0046a41086a2209200341d0036a41086a290300370300200341a0046a410d6a220a200341d0036a410d6a290000370000200320032f01ec033b01c005200320032903d0033703a00441012107200241ff01714101470d1920034180046a41026a20082d00003a0000200341f0066a41086a2009290300370300200341f0066a410d6a200a290000370000200320032f01c0053b018004200320032903a0043703f006410021070c1a0b200241046a28000041cfe6c20020061b2104412a21064100210802402009450d00200a10160b410121094101210a0cdf030b412a210641cfe6c20021040b200341f0036a41026a20034180046a41026a2d00003a0000200341b0086a41086a200341f0066a41086a290300370300200341b0086a41106a200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820020dca0320034183066a200341b0086a41086a29030037000020034188066a200341bd086a290000370000200320032f01f0033b01f005200320063600f705200320043600f305200320032903b0083700fb052003200341f2036a2d00003a00f20520034180026a200341f0056a10880120032903800220034180026a41086a29030084500d1f20034180046a41086a22024200370300200342003703800441b88dc300411220034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d3c200341003602b008200341f0036a4110200341b0086a41044100100041016a41044d0d9902200720032802b0084d0d3d0cc9030b2003200736028805200341f0076a41186a200a290300370300200341f0076a41106a2009290300370300200341f0076a41086a2004290300370300200320032903e0043703f007200241ff01714101470d11200341ca056a20032d00f2073a0000200341c8046a20034183086a290000370300200341cd046a20034188086a290000370000200320032f01f0073b01c805200320032900fb073703c0044100210820032800f707210620032800f30721040c120b200241086a2800002106200241046a280000210420034198036a41206a200c28020036020020034198036a41186a200b29030037030020034198036a41106a200a29030037030020034198036a41086a2009290300370300200320032903880537039803200341c0056a41026a200d2d00003a0000200341a0046a41086a200f290300370300200341a0046a410d6a2010290000370000200320032f01d0073b01c005200320032903f0073703a004200741ff01714101470d12200341f0036a41026a200341c0056a41026a2d00003a0000200341b0086a41086a200341a0046a41086a290300370300200341b0086a410d6a200341a0046a410d6a290000370000200320032f01c0053b01f003200320032903a0043703b008410021080c130b200341af086a20092d00003a00002003201b37009f082003200537009708200320032800cb0336009308200320032802c8033602900820032003290398033700a708200341e0046a41186a200341b9036a290000370300200341e0046a41106a20034198036a41196a290000370300200341e0046a41086a200341a9036a290000370300200320032900a1033703e004200341c0056a41026a200a2d00003a0000200341a0046a41086a200b290300370300200341a0046a410d6a200c290000370000200320032f01ec033b01c005200320032903d0033703a004200241ff01714101470d15200341f0036a41026a200341c0056a41026a2d00003a0000200341b0086a41086a200341a0046a41086a290300370300200341b0086a410d6a200341a0046a410d6a290000370000200320032f01c0053b01f003200320032903a0043703b008410021080c160b200341b0086a41086a2006360200200341bc086a20032903e004370200200341c4086a200341e0046a41086a290300370200200341c9086a200341ed046a290000370000200320023a00b008200320043602b408200320032f01d0053b00b1082003200341d2056a2d00003a00b3084101210720034188036a200341b0086a20054101108301200328028c03210620032802880321040cd6030b20034190086a41086a200929030037030020034190086a41106a200a2d00003a000020032003280093073600b30720032003280290073602b007200320032903880537039008200341c0056a41026a200b2d00003a0000200341a0046a41086a200c290300370300200341a0046a410d6a200d290000370000200320032f01d0053b01c005200320032903e0043703a004200241ff01714101470d1b20034180046a41026a200341c0056a41026a2d00003a0000200341f0066a41086a200341a0046a41086a290300370300200341f0066a410d6a200341a0046a410d6a290000370000200320032f01c0053b018004200320032903a0043703f006410021080c1c0b200741ff0171450d330b41a7e6c2002104412821060cc1030b200241086a2800002106200241046a2800002104200341a7086a200b290300370000200341af086a200c2d00003a0000200320093a0090082003200537009708200320032802e00436009108200320032903f00537009f082003200a2f01003b009508200341c0056a41026a200d2d00003a0000200341a0046a41086a200f290300370300200341a0046a410d6a2010290000370000200320032f01b0073b01c00520032003290388053703a004200741ff01714101470d1a20034180046a41026a200341c0056a41026a2d00003a0000200341f0066a41086a200341a0046a41086a290300370300200341f0066a410d6a200341a0046a410d6a290000370000200320032f01c0053b018004200320032903a0043703f006410021080c1b0b200341e7076a200341b0076a41086a290300370000200341ef076a200341b0076a41106a2d00003a0000200320193700d707200320143600d307200320032f0190073b01d007200320032903b0073700df07200320034192076a2d00003a00d207200241ff01710d0220034190086a41186a200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841e985c300210420034190086a108901450dcb034108211e20034180046a41086a2202420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200229030037030020032003290380043703f0034100211f200341f0036a411041acf1c300410041001000417f460d9f01200342103702f4052003200341f0036a3602f005200341b0086a200341f0056a102020032802b008221e450dc702200341b8086a280200212020032802b408211f0ca0010b200241ff01710d014200210520034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003410021020240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d950220032903b00821050b419486c3002104411c2106200520195a0dcb0320034180046a41086a22024200370300200342003703800441a8ecc200411220034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320193703b008200341f0036a4110200341b0086a41081001410021024100210420184101460dcc030cce030b2003419f056a200341b0076a41086a290300370000200341a7056a200341b0076a41106a2d00003a00002003201937008f052003201436008b05200320032f0190073b018805200320032903b00737009705200320034192076a2d00003a008a05200241ff0171450d3a0b41a7e6c2002104412821060ccc030b200241ff01710d01200341b0086a2003290398032205106520032802b0084101470d75200341b8086a28020021060c3a0b200241ff0171450d380b41a7e6c2002104412821060c8f030b412a210641cfe6c20021040b200341f0036a41026a220220034180046a41026a2d00003a0000200341b0086a41086a200341f0066a41086a290300370300200341b0086a41106a200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820080da201200341ab036a200341b0086a41086a220829030037000020034198036a41186a200341bd086a290000370000200320032f01f0033b0198032003200636009f032003200436009b03200320032903b0083700a303200320022d00003a009a0320034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d37200341f0076a41186a4200370300200341f0076a41106a4200370300200341f0076a41086a4200370300200342003703f007200341f0036a4110200341f0076a4120410010002202417f460d93022002411f4d0d930220034190086a41186a2202200341f0076a41186a29030037030020034190086a41106a2206200341f0076a41106a29030037030020034190086a41086a2204200341f0076a41086a290300370300200320032903f00737039008200341b0086a41186a2002290300370300200341b0086a41106a2006290300370300200341b0086a41086a200429030037030020032003290390083703b0080c380b2003280298032108200241ff0171450d3941a7e6c20021044128210620080d3a0c8c030b41cfe6c2002104412a21060b200341f0066a41026a2202200341c8056a41026a2d00003a000020034190076a41086a2209200341c0046a41086a29030037030020034190076a41106a200341c0046a41106a290300370300200320032f01c8053b01f006200320032903c0043703900720080d3c200341ab036a200929030037000020034198036a41186a2003419d076a290000370000200320032f01f0063b0198032003200636009f032003200436009b0320032003290390073700a303200320022d00003a009a0320034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d3a200341f0076a41186a4200370300200341f0076a41106a4200370300200341f8076a4200370300200342003703f007200341f0036a4110200341f0076a4120410010002202417f460d91022002411f4d0d910220034190086a41186a2202200341f0076a41186a29030037030020034190086a41106a2206200341f0076a41106a29030037030020034190086a41086a2204200341f0076a41086a290300370300200320032903f00737039008200341b0086a41186a2002290300370300200341b0086a41106a2006290300370300200341b0086a41086a200429030037030020032003290390083703b0080c3b0b41cfe6c2002104412a21060b200341c8056a41026a2202200341f0036a41026a2d00003a0000200341c0046a41086a2207200341b0086a41086a2209290300370300200341c0046a41106a200341b0086a41106a220a290300370300200320032f01f0033b01c805200320032903b0083703c00420080db20320034190086a41136a200729030037000020034190086a41186a200341c0046a410d6a290000370000200320032f01c8053b01900820032006360097082003200436009308200320032903c00437009b08200320022d00003a009208200341b0086a41206a20034198036a41206a280200360200200341b0086a41186a20034198036a41186a290300370300200a20034198036a41106a290300370300200920034198036a41086a29030037030020032003290398033703b008200341f0056a200341b0086a104120034180046a41026a20032d00f3053a0000200341f0066a41086a200341f0056a41146a290200370300200341f0066a41106a2003418c066a290200370300200320032f00f1053b0180042003200341fc056a2902003703f00641012107200341f0056a41086a280200210620032802f405210420032d00f0054101460dc403200341e0046a41136a200341f0066a41086a290300370000200341e0046a41186a200341f0066a410d6a290000370000200320032f0180043b01e004200320063600e704200320043600e304200320032903f0063700eb04200320034182046a2d00003a00e204411410132202450d9a02200241106a410028009e9643360000200241086a410029009696433700002002410029008e964337000020024114413410152202450d9b0220022003290390083700142002412c6a200341a8086a290300370000200241246a20034190086a41106a2903003700002002411c6a20034190086a41086a2903003700004200211c200341f0036a41086a22064200370300200342003703f00320024134200341f0036a1002200341f0066a41086a2006290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d6f200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002206417f460d97022006410f4d0d9702200341b8086a290300211d20032903b008211c2002101641142106411410132202450d700cb0030b41cfe6c2002104412a21060b200341c8056a41026a20034180046a41026a2d00003a0000200341c0046a41086a200341f0066a41086a290300370300200341c0046a41106a200341f0066a41106a290300370300200320032f0180043b01c805200320032903f0063703c00420070db003200341e3056a200341c0046a41086a290300370000200341d0056a41186a200341cd046a290000370000200320032f01c8053b01d005200320063600d705200320043600d305200320032903c0043700db052003200341ca056a2d00003a00d205412110132202450d8e02200241206a41002d00be96403a0000200241186a41002900b69640370000200241106a41002900ae9640370000200241086a41002900a696403700002002410029009e96403700002002412141c20010152202450d8f022002200537002120034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d3a20034190086a41186a2206420037030020034190086a41106a2204420037030020034190086a41086a420037030020034200370390084100200341f0036a411020034190086a41204100100022072007417f461b2207411f4d0df301200341e0046a41186a22092006290300370300200341e0046a41106a220a2004290300370300200341e0046a41086a220b20034190086a41086a220829030037030020032003290390083703e00420034180046a41186a200929030037030020034180046a41106a200a29030037030020034180046a41086a200b290300370300200320032903e0043703800420064200370300200442003703002008420037030020034200370390084100200341f0036a411020034190086a41202007412020074120491b2209100022062006417f461b2206411f4d0df301200320032d0092083a00c204200320032f0190083b01c004200329009308211c200329009b08211d20032900a308212320032800ab082104200320032d00af083a00ef07200320043600eb07200320233700e3072003201d3700db072003201c3700d307200320032d00c2043a00d207200320032f01c0043b01d007200341a0046a41186a200341d0076a41186a2204290300370300200341a0046a41106a200341d0076a41106a2207290300370300200341a0046a41086a200341d0076a41086a290300370300200320032903d0073703a00420034190086a41186a220a420037030020034190086a41106a220b42003703002008420037030020034200370390084100200341f0036a411020034190086a41202006412020064120491b20096a2208100022062006417f461b2206411f4d0df301200341f0076a41186a2209200a290300370300200341f0076a41106a220a200b290300370300200341f0076a41086a220b20034190086a41086a29030037030020032003290390083703f007200420092903003703002007200a290300370300200341d0076a41086a2209200b290300370300200320032903f0073703d007200341c0046a41186a2004290300370300200341c0046a41106a2007290300370300200341c0046a41086a2009290300370300200320032903d0073703c004200342003703b0084100200341f0036a4110200341b0086a41082006412020064120491b20086a2204100022062006417f461b220641074d0df30120032903b008211c200342003703b0084100200341f0036a4110200341b0086a41082006410820064108491b20046a2204100022062006417f461b220641074d0df30120032903b0082123200341003a00b008200341f0036a4110200341b0086a41012006410820064108491b20046a2206100041016a41014b2207450df30141002104024020032d00b0082208450d004101210420084101470df4010b200342003703b008200341f0036a4110200341b0086a4108200620076a100041016a41084d0df30120032903b008211d200341b0086a41186a220620034180046a41186a290300370300200341b0086a41106a220720034180046a41106a290300370300200341b0086a41086a220820034180046a41086a29030037030020034188056a41086a2209200341a0046a41086a29030037030020034188056a41106a220a200341a0046a41106a29030037030020034188056a41186a220b200341a0046a41186a290300370300200341e0046a41086a220c200341c0046a41086a290300370300200341e0046a41106a220d200341c0046a41106a290300370300200341e0046a41186a220f200341c0046a41186a29030037030020032003290380043703b008200320032903a00437038805200320032903c0043703e0042003200341cb056a2800003600c304200320032800c8053602c00420034190086a41186a2210200629030037030020034190086a41106a2211200729030037030020034190086a41086a22142008290300370300200341f0076a41086a220e2009290300370300200341f0076a41106a2212200a290300370300200341f0076a41186a2215200b290300370300200341d0076a41086a2217200c290300370300200341d0076a41106a2213200d290300370300200341d0076a41186a2216200f290300370300200320032903b0083703900820032003290388053703f007200320032903e0043703d007200320032800c3043600c305200320032802c0043602c005200210162006201029030037030020072011290300370300200820142903003703002009200e290300370300200a2012290300370300200b2015290300370300200c2017290300370300200d2013290300370300200f201629030037030020032003290390083703b008200320032903f00737038805200320032903d0073703e004200320032800c3053600bb05200320032802c0053602b805201c422088a72107201ca72106410021020c3b0b41cfe6c2002104412a21060b200341c8056a41026a2202200341f0036a41026a2d00003a0000200341c0046a41086a2207200341b0086a41086a290300370300200341c0046a41106a200341b0086a41106a290300370300200320032f01f0033b01c805200320032903b0083703c00420080dae03200341f0066a41026a20022d00003a0000200341f0076a41086a2007290300370300200341f0076a410d6a200341c0046a410d6a290000370000200320032f01c8053b01f006200320032903c0043703f00720034188056a20034190086a108a01200328028805220c200328029005220d4103746a210a200c21020240200d4104490d00200341b0086a41206a2107200341f0056a41c0006a2108200c21020340200341f0056a2002290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200341f0056a200241086a290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200341f0056a200241106a290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200341f0056a200241186a290300108b01024020082d000022094102460d00200341b0086a41c0006a20093a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002007200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082007200341e0046a412010f802210b2009450d00200b450d230b200a200241206a22026b411f4b0d000b0b4100210f2002200a460d21200c200d4103746a210a200341b0086a41206a2108200341f0056a41c0006a21090340200341f0056a2002290300108b01024020092d000022074102460d00200341b0086a41c0006a20073a0000200341b0086a41386a200341f0056a41386a290300370300200341b0086a41306a200341f0056a41306a290300370300200341b0086a41286a200341f0056a41286a2903003703002008200341f0056a41206a290300370300200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b0082008200341e0046a412010f802210b2007450d00200b450d220b200a200241086a2202470d000c220b0b200241ff01710d02412921062008450d8401200341f0036a41086a22024200370300200342003703f00341cdbcc0004118200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200320083602b008200341f0066a4110200341b0086a41041001410021040c9e030b200341c0056a41026a2209200341b0076a41026a2d00003a0000200341a0046a41086a220a20034188056a41086a290300370300200341a0046a410d6a220b20034188056a410d6a290000370000200320032f01b0073b01c00520032003290388053703a00441012107200241ff01714101470d2220034180046a41026a20092d00003a0000200341f0066a41086a200a290300370300200341f0066a410d6a200b290000370000200320032f01c0053b018004200320032903a0043703f006410021070c230b200241ff0171450d390b41a7e6c2002104412821060c9b030b200341c0056a41026a2209200341b0076a41026a2d00003a0000200341a0046a41086a220a20034188056a41086a290300370300200341a0046a410d6a220b20034188056a410d6a290000370000200320032f01b0073b01c00520032003290388053703a00441012107200241ff01714101470d23200341f0036a41026a20092d00003a0000200341b0086a41086a200a290300370300200341b0086a410d6a200b290000370000200320032f01c0053b01f003200320032903a0043703b008410021070c240b41ca8dc3002104411b2106410021104101210720080dab030cac030b41cfe6c2002104412a21060b200341f0036a41026a220220034180046a41026a2d00003a0000200341b0086a41086a2207200341f0066a41086a290300370300200341b0086a41106a200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820080da603200341ab036a2007290300370000200341b0036a200341bd086a290000370000200320032f01f0033b0198032003200636009f032003200436009b03200320032903b0083700a303200320022d00003a009a03200341b0086a20034198036a108c0120032903b0084201520d3220034187066a20034190086a41086a290300370000411f2106200341f0056a411f6a20034190086a41106a2d00003a0000200320053700f705200320032800b3073600f305200320032802b0073602f00520032003290390083700ff05200341b0086a200341f0056a108d014185c9c300210420032d0090094103460da603200341f0036a41086a22024200370300200342003703f00341cde2c300412c200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d9401200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d860220032903b008211b0c95010b41cfe6c2002104412a21060b200341f0036a41026a220720034180046a41026a2d00003a0000200341b0086a41086a2202200341f0066a41086a290300370300200341b0086a41106a2209200341f0066a41106a290300370300200320032f0180043b01f003200320032903f0063703b00820080da403200341c8056a41026a220820072d00003a0000200341f0076a41086a22072002290300370300200341f0076a410d6a220a200341b0086a410d6a290000370000200320032f01f0033b01c805200320032903b0083703f007200341d0076a41026a20082d00003a000020034198036a41086a200729030037030020034198036a410d6a200a290000370000200320032f01c8053b01d007200320032903f00737039803200341b0086a41186a20034190086a41186a290300370300200920034190086a41106a290300370300200220034190086a41086a29030037030020032003290390083703b008411210132202450d8602200241106a41002f00f2c9403b0000200241086a41002900eac940370000200241002900e2c94037000020024112413210152202450d8702200220032f01d0073b00122002200636001920022004360015200220032903980337001d200241146a200341d2076a2d00003a0000200241256a20034198036a41086a2903003700002002412a6a200341a5036a29000037000020034180046a41086a2204420037030020034200370380042002413220034180046a1002200341f0036a41086a200429030037030020032003290380043703f003412010132204450d8802200420032903b008370000200441186a200341b0086a41186a290300370000200441106a200341b0086a41106a290300370000200441086a200341b0086a41086a290300370000200341f0036a41102004412010012004101620021016410021040ca4030b20034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d3520034182046a20032d0092083a0000200341b0086a41086a200341a3086a290000370300200341bd086a2004290000370000200320032f0190083b0180042003200329009b083703b00841002106200328009708210220032800930821040c360b2003200c360290052003200736028c05200320083602880520034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d36200341ca056a20032d0092083a000020034190076a41086a200341a3086a2900003703002003419d076a2004290000370000200320032f0190083b01c8052003200329009b083703900741002106200328009708210220032800930821040c370b20034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d37200341f2036a20032d0092083a0000200341c0046a41086a200341a3086a290000370300200341cd046a2004290000370000200320032f0190083b01f0032003200329009b083703c00441002106200328009708210220032800930821040c380b2003200c360290052003200736028c05200320083602880520034190086a41186a2204200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012106200241ff01714101470d3a200341f2066a20032d0092083a0000200341e0046a41086a200341a3086a290000370300200341ed046a2004290000370000200320032f0190083b01f0062003200329009b083703e00441002106200328009708210220032800930821040c3b0b2003200f3a00ff042003200b3600fb042003200e3600f7042003200d3600f3042003200a3600ef042003200c3600eb04200320073600e704200320083600e304200320032f01b0073b01e0042003200341b0076a41026a2d00003a00e20420034190086a41186a2206200341d0076a41186a29030037030020034190086a41106a200341d0076a41106a29030037030020034190086a41086a200341d0076a41086a290300370300200320032903d0073703900841012107200241ff01714101470d3d200341c0056a41026a20032d0092083a0000200341f0066a41086a200341a3086a290000370300200341fd066a2006290000370000200320032f0190083b01c0052003200329009b083703f00641002107200328009708210620032800930821040c3e0b200320032f01b0073b01c0042003200341b0076a41026a2d00003a00c204200241ff0171450d4d41a7e6c2002104412821060c8c030b200341f8056a280200210620032802f4052104200241ff0171450d4d410021074101210802402006450d00200410160b410121090c070b41012108200341f8056a280200210920032802f405210a200241ff01714101462202450d3c02402009450d00200a10160b4100210b410121094101210a410121070c520b200241ff0171450d4c0c97030b41004189e7c200200241ff01714102461b2104412d210641012108410121094101210a4101210b0c3b0b2003419f056a200341b0076a41086a290300370000200341a7056a200341b0076a41106a2d00003a000020032009360093052003200a36008f052003200b36008b05200320032f01ec033b018805200320032903b007370097052003200341ec036a41026a2d00003a008a05200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a2209200341d0056a41086a290300370300200341a0046a410d6a220a200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d3c20034180046a41026a20082d00003a0000200341f0066a41086a2009290300370300200341f0066a410d6a200a290000370000200320032f01c0053b018004200320032903a0043703f006410021070c3d0b200341fc056a2802002104200341f8056a280200210a20032802f4052107200241ff0171450d4a02402004450d00200441186c21062007210203400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200641686a22060d000b0b4100210941012108200a450d01200710160c010b200341f0056a410c6a2802002104200341f8056a280200210a20032802f4052107200241ff0171450d4a02402004450d002004410c6c21062007210203400240200241046a280200450d00200228020010160b2002410c6a2102200641746a22060d000b0b4101210941002108200a450d00200710160b410121070b20032802f005417f6a220241064b0d910341a7e6c200210441282106024020020e070093035a92035c5d5b000b200341f8056a280200450d920320032802f40510160c92030b20034188056a41026a200341ec036a41026a2d00003a000020034198036a41086a200341b0076a41086a29030037030020034198036a41106a200341b0076a41106a2d00003a0000200320032f01ec033b018805200320032903b00737039803200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a220c200341d0056a41086a290300370300200341a0046a410d6a220d200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d39200341c8056a41026a20082d00003a0000200341c0046a41086a200c290300370300200341c0046a410d6a200d290000370000200320032f01c0053b01c805200320032903a0043703c004410021070c3a0b200341af036a200341b0076a41086a290300370000200341b7036a200341b0076a41106a2d00003a0000200320093600a3032003200a36009f032003200b36009b03200320032f01ec033b019803200320032903b0073700a7032003200341ec036a41026a2d00003a009a03200341c0056a41026a2209200341c8036a41026a2d00003a0000200341a0046a41086a220e200341d0056a41086a290300370300200341a0046a410d6a2212200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012108200241ff01714101470d3a200341f0036a41026a20092d00003a0000200341b0086a41086a200e290300370300200341b0086a410d6a2012290000370000200320032f01c0053b01f003200320032903a0043703b008410021080c3b0b20034188056a41026a200341ec036a41026a2d00003a000020034198036a41086a200341b0076a41086a29030037030020034198036a41106a200341b0076a41106a2d00003a0000200320032f01ec033b018805200320032903b00737039803200341c0056a41026a2208200341c8036a41026a2d00003a0000200341a0046a41086a220c200341d0056a41086a290300370300200341a0046a410d6a220d200341d0056a410d6a290000370000200320032f01c8033b01c005200320032903d0053703a00441012107200241ff01714101470d3d200341f0066a41026a20082d00003a000020034190076a41086a200c29030037030020034190076a410d6a200d290000370000200320032f01c0053b01f006200320032903a00437039007410021070c3e0b200241ff01710d0120034180046a41086a22024200370300200342003703800441f9dec200412320034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200341003602b808200342013703b008200320093602f005200341f0056a200341b0086a101820032802b408220420032802b80822066b20094f0d6c200620096a22022006490dcf0220044101742207200220022007491b22074100480dcf022004450d8d0120032802b0082004200710152202450d8e010c87030b200241ff0171450d480b0240200a450d00200b10160b41a7e6c2002104412821060c8a030b20034180046a41086a2202420037030020034200370380044184dbc000411920034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320053703b008200341f0036a4110200341b0086a410810010c82030b4101210f0b0240200328028c05450d00200c10160b0240200f450d0020034180046a41086a22024200370300200342003703800441f895c000412620034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d4c200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0ddf0120032903b008211c0c4d0b41888bc000210441c20021060c8c030b20074180204b0d8c030b200341b0086a41186a200341f0056a41186a290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b008410910132202450df001200241086a41002d00fa8d433a0000200241002900f28d4337000020024109412910152202450df101200220032903b008370009200241216a200341c8086a290300370000200241196a200341c0086a290300370000200241116a200341b0086a41086a29030037000020034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341003602a0032003420137039803200320073602880520034188056a20034198036a1018200328029c03220920032802a00322046b20074f0d17200420076a22062004490d92032009410174220b20062006200b491b220b4100480d92032009450d5f2003280298032009200b10152206450d600cfc020b412a210641cfe6c20021040b200341c8056a41026a20034180046a41026a2d00003a000020034190076a41086a200341f0066a41086a29030037030020034190076a41106a200341f0066a41106a290300370300200320032f0180043b01c805200320032903f0063703900720070df90220034198036a41136a20034190076a41086a290300370000200341b0036a2003419d076a290000370000200320032f01c8053b0198032003200636009f032003200436009b0320032003290390073700a3032003200341ca056a2d00003a009a03411310132202450df4012002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450df50120022008360013200341f0036a41086a22064200370300200342003703f00320024117200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c3004100410010002106200210162006417f460d17200341b0086a2008105b20034198036a200341e4086a412010f802450d654198bcc0002104411c21060ca1010b41cfe6c2002104412a21060b200341d0036a41026a200341f0066a41026a2d00003a000020034190076a41086a200341c0046a41086a29030037030020034190076a41106a200341c0046a41106a290300370300200320032f01f0063b01d003200320032903c0043703900720070d3420034183066a20034190076a41086a290300370000200341f0056a41186a22022003419d076a290000370000200320032f01d0033b01f005200320063600f705200320043600f30520032003290390073700fb052003200341d2036a2d00003a00f205200341b0086a41186a2002290300370300200341b0086a41106a200341f0056a41106a290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b008200341c8016a200341b0086a108e0120032903c801200341c8016a41086a290300844200510d33200341b0086a108f01450d334200211c200341f0036a41086a22024200370300200342003703f00341ffb6c0004112200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d7a200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d88022002410f4d0d8802200341b8086a290300211c20032903b008211d0c7b0b412a210641cfe6c20021040b200341c8056a41026a200341f0036a41026a2d00003a000020034190076a41086a200341b0086a41086a29030037030020034190076a41106a200341b0086a41106a290300370300200320032f01f0033b01c805200320032903b0083703900720070df50220034198036a41136a20034198076a290300370000200341b0036a2003419d076a290000370000200320032f01c8053b0198032003200636009f032003200436009b0320032003290390073700a3032003200341ca056a2d00003a009a0320034198036a108901450d3d411310132202450dfd012002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450dfe0120022008360013200341f0036a41086a22064200370300200342003703f00320024117200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c3004100410010002106200210162006417f460d13200341b0086a2008105b20032d00a409450d7a4188bbc0002104411d2106200341d0086a280200450df4020cf3020b410021022019422088a722044105742206450d542006410575220bad4206862205422088a70d8b032005a722074100480d8b0320071013220a0d55200741081014000b200341b0086a41186a20034188056a41186a290300370300200341b0086a41106a20034188056a41106a290300370300200341b0086a41086a20034188056a41086a29030037030020032003290388053703b00841c385c3002104200341b0086a1089010dcf02200320032d00b2083a00c204200320032f01b0083b01c00420032800b308210220032800b708210620032800bb08210920032800bf08210a20032800c308210b20032800c708210c20032800cb08210d20032d00cf08210f4108210720034180046a41086a2204420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200429030037030020032003290380043703f00341002104200341f0036a411041acf1c300410041001000417f460d642003421037029c032003200341f0036a36029803200341f0056a20034198036a102020032802f0052207450d8b02200341f8056a280200210820032802f40521042003200f3a008f082003200d36008b082003200c360087082003200b360083082003200a3600ff07200320093600fb07200320063600f707200320023600f307200320032d00c2043a00f207200320032f01c0043b01f007200341f0076a210620082004460d650cce020b200341b0086a2003290398032205106520032802b0084101470d3c200341b8086a28020021060b20032802b40821040cd6020b200341b0086a41186a4200370300200341b0086a41106a420037030020084200370300200342003703b0080b20034198036a200341b0086a412010f802450d0341edbfc1002104413121060c690b200329029c03210520034180046a41086a22024200370300200342003703800441b2e1c000412b20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d50200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0dd40120032903b008211b2005a72202417f4a0d510c84030b200329029c032105200341b0086a200141206a290300221b106520032802b0084101470d38200341b8086a280200210620032802b40821042008450dd2020b200710160cd1020b200341b0086a410c6a20034188056a41086a290300370200200341b0086a41146a20034188056a41106a290300370200200341b0086a411c6a200341a0056a290300370200200320073602b00820032003290388053702b408200341f0056a200341b0086a1041200341f0066a41026a220220032d00f3053a000020034190076a41086a2207200341f0056a41146a29020037030020034190076a41106a200341f0056a411c6a290200370300200320032f00f1053b01f0062003200341f0056a410c6a29020037039007200341f0056a41086a280200210620032802f405210420032d00f0054101460d65200341c0056a41026a20022d00003a0000200341a0046a41086a2007290300370300200341a0046a410d6a20034190076a410d6a290000370000200320032f01f0063b01c00520032003290390073703a00420034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f00341002102200341f0036a411041acf1c300410041001000417f460d6220034188086a4200370300200341f0076a41106a4200370300200341f8076a4200370300200342003703f007200341f0036a4110200341f0076a4120410010002202417f460ded012002411f4d0ded0120034190086a41186a200341f0076a41186a29030037030020034190086a41106a200341f0076a41106a29030037030020034190086a41086a200341f0076a41086a290300370300200320032903f00737039008200320032d0092083a00c204200320032f0190083b01c00420032800930821072003280097082108200328009b082109200328009f08210a20032800a308210b20032800a708210c20032800ab08210d20032d00af0821020c630b200341b0086a41186a4200370300200341c0086a4200370300200341b8086a4200370300200342003703b0080b20034198036a200341b0086a412010f802450d0141c3bfc1002104412221060b20034188056a1090010c620b200341b0086a200741f00010f6021a41002104200341003a00f005200341c0016a200341b0086a200341f0056a108101200320032802c001453a00b208200341053b01b008200341b0086a105a200710160c600b2002101641012102412d2106410221040b200341b0076a41186a2208200341b0086a41186a290300370300200341b0076a41106a2209200341b0086a41106a290300370300200341b0076a41086a220a200341b0086a41086a29030037030020034190076a41086a220b20034188056a41086a29030037030020034190076a41106a220c20034188056a41106a29030037030020034190076a41186a220d20034188056a41186a290300370300200341f0066a41086a220f200341e0046a41086a290300370300200341f0066a41106a2210200341e0046a41106a290300370300200341f0066a41186a2211200341e0046a41186a290300370300200320032903b0083703b007200320032903880537039007200320032903e0043703f006200320032800bb053600b305200320032802b8053602b00502402002450d0041c489c00021040cf5020b200341f0056a41206a200a29030037030020034198066a2009290300370300200341a0066a2008290300370300200341b0066a200b290300370300200341b8066a200c290300370300200341c0066a200d2903003703002003201d37038006200320233703f805200320073602f405200320063602f005200320032903b0073703880620032003290390073703a806200341e0066a2011290300370300200341d8066a2010290300370300200341d0066a200f290300370300200341ec066a20032800b305360000200320043a00e806200320032903f0063703c806200320032802b0053600e9062004450d3541f189c0002104413521060cf4020b41dac9c300210441c40021060cf3020b20032802980321060ce5020b411310132202450de0012002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450de10120022008360013200341f0036a41086a22064200370300200342003703f00320024117200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c3004100410010002106200210162006417f460d00200341b0086a2008105b20032d00a409450d564188bbc0002104411d2106200341d0086a2802000d570c580b41d6bac0002104411c21060ce1020b4203201b7c2005580df4020b418894c3001038000b412a210241cfe6c20021040b200341f0076a41026a220920034180046a41026a2d00003a000020034198036a41086a200341b0086a41086a29030037030020034198036a41106a200341b0086a41106a290300370300200320032f0180043b01f007200320032903b0083703980302402006450d0041002109410121104100210c2002210620070dbd020cbe020b200341d0036a41026a221120092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a221420034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a2014290000370000200320023600f705200320043600f305200320112d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d3420032802b40821042005a721060c350b412a210241cfe6c20021040b200341f0076a41026a2209200341c8056a41026a2d00003a000020034198036a41086a20034190076a41086a29030037030020034198036a41106a20034190076a41106a290300370300200320032f01c8053b01f00720032003290390073703980302402006450d002002210620070dd7020cd9020b200341d0036a41026a220a20092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a220b20034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a200b290000370000200320023600f705200320043600f3052003200a2d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d3420032802b40821042005a7210620070dd6020cd8020b412a210241cfe6c20021040b200341f0076a41026a2209200341f0036a41026a2d00003a000020034198036a41086a200341c0046a41086a29030037030020034198036a41106a200341c0046a41106a290300370300200320032f01f0033b01f007200320032903c0043703980302402006450d002002210620070dd5020cd7020b200341d0036a41026a220a20092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a220b20034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a200b290000370000200320023600f705200320043600f3052003200a2d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d3320032802b40821042005a7210620070dd4020cd6020b41cfe6c2002104412a21060b200341f0076a41026a2202200341c0046a41026a2d00003a000020034198036a41086a200341b0086a41086a29030037030020034198036a41106a200341b0086a41106a290300370300200320032f01c0043b01f007200320032903b008370398032013450d020cc7020b412a210241cfe6c20021040b200341f0076a41026a2209200341f0066a41026a2d00003a000020034198036a41086a200341e0046a41086a29030037030020034198036a41106a200341e0046a41106a290300370300200320032f01f0063b01f007200320032903e004370398032006450d012002210620070dd0020cd2020b2003419b056a20034198036a41086a2213290300370000200341a0056a200341a5036a290000370000200320032f01f0073b0188052003200636008f052003200436008b05200320032903980337009305200320022d00003a008a05200341f0056a41086a22024200370300200342003703f00541caaac1004120200341f0056a100220132002290300370300200320032903f00537039803024020034198036a411041acf1c300410041001000417f460d00200341003a00b00820034198036a4110200341b0086a41014100100041016a41014d0de00120032d00b008450d500b411e10132202450dd801200241166a41002900f89141370000200241106a41002900f29141370000200241086a41002900ea9141370000200241002900e291413700002002411e413e10152202450dd901200220032903880537001e200241366a200341a0056a2903003700002002412e6a20034188056a41106a290300370000200241266a20034188056a41086a290300370000200341f0056a41086a22064200370300200342003703f0052002413e200341f0056a1002200341b0086a41086a2006290300370300200320032903f0053703b008200341b0086a411041acf1c3004100410010002106200210162006417f460d4141abacc1002104412c210620080dc5020cc6020b200341d0036a41026a220a20092d00003a0000200341a0046a41086a220920034198036a41086a290300370300200341a0046a410d6a220b20034198036a410d6a290000370000200320032f01f0073b01d00320032003290398033703a00441132106200341f0056a41136a200929030037000020034188066a200b290000370000200320023600f705200320043600f3052003200a2d00003a00f205200320032f01d0033b01f005200320032903a0043700fb05200341b0086a200341f0056a109101200341b0086a41086a290300210520032802b0084101470d2e20032802b40821042005a7210620070dce020cd0020b412a210641cfe6c20021040b200341f0076a41026a200341c0056a41026a2d00003a000020034198036a41086a200341f0066a41086a29030037030020034198036a41106a200341f0066a41106a290300370300200320032f01c0053b01f007200320032903f0063703980320070dc5022003419b056a20034198036a41086a220229030037000020034188056a41186a200341a5036a290000370000200320032f01f0073b0188052003200636008f052003200436008b052003200329039803370093052003200341f2076a2d00003a008a05200341f0056a41086a22064200370300200342003703f00541b9adc100411d200341f0056a100220022006290300370300200320032903f0053703980320034198036a411041acf1c300410041001000417f460d3820034190086a41186a420037030020034190086a41106a420037030020034190086a41086a4200370300200342003703900820034198036a411020034190086a4120410010002202417f460dce012002411f4d0dce01200341f0076a41186a220220034190086a41186a290300370300200341f0076a41106a220620034190086a41106a290300370300200341f0076a41086a220420034190086a41086a29030037030020032003290390083703f007200341b0086a41186a2002290300370300200341b0086a41106a2006290300370300200341b0086a41086a2004290300370300200320032903f0073703b00820034188056a200341b0086a412010f802450d4d41d6adc1002104410c210620100dc6020cc7020b200741cfe6c20020021b2104412a21064100210b02402009450d00200a10160b410121094101210a0b410121070c150b200741cfe6c20020021b2104412a21064100210702402009450d00200a10160b410121094101210a4101210b0c140b412a210641cfe6c20021040b200341d0036a41026a20034180046a41026a2d00003a0000200341e0046a41086a200341f0066a41086a290300370300200341e0046a41106a200341f0066a41106a290300370300200320032f0180043b01d003200320032903f0063703e00402402007450d0020062102200d0dbb020cbc020b4113210220034198036a41136a200341e8046a290300370000200341b0036a200341ed046a290000370000200320032f01d0033b0198032003200636009f032003200436009b03200320032903e0043700a3032003200341d2036a2d00003a009a0320034198036a108f01450d280240200c0d0041e6dec200210420054201520d2a0b412110132202450de901200241206a41002d00dbdc423a0000200241186a41002900d3dc42370000200241106a41002900cbdc42370000200241086a41002900c3dc42370000200241002900bbdc423700002002412141c20010152202450dea012002200329038805370021200241396a20034188056a41186a290300370000200241316a20034188056a41106a290300370000200241296a20034188056a41086a29030037000020034180046a41086a220642003703002003420037038004200241c10020034180046a1002200341f0066a41086a200629030037030020032003290380043703f006200341f0066a411041acf1c300410041001000417f460d60200342103702e4042003200341f0066a3602e004200341d0076a41186a22044200370300200341d0076a41106a22074200370300200341d0076a41086a22084200370300200342003703d00720034100200341f0066a4110200341d0076a41204100100022062006417f461b2206412020064120491b20032802e8046a22093602e8042006411f4d0d6d20034190086a41186a2206200429030037030020034190086a41106a2204200729030037030020034190086a41086a22072008290300370300200320032903d00737039008200341f0076a41186a2006290300370300200341f0076a41106a2004290300370300200341f0076a41086a200729030037030020032003290390083703f007200342003703b008200341e0046a41086a22044100200341f0066a4110200341b0086a41082009100022062006417f461b2206410820064108491b20042802006a2204360200200641074d0d6d20032903b008211d200342003703b008200341e0046a41086a4100200341f0066a4110200341b0086a41082004100022062006417f461b2206410820064108491b20046a360200200641074d0d6d20032903b0082123200341b0086a200341e0046a101120032802b0082209450d6d20032902b408211c41002107200341003a00b008200341e8046a22062006280200220620032802e004220420032802e404220a200341b0086a41012006100041016a41014b220b6a2206360200201ca72108200b450d6c024020032d00b008220b450d0041012107200b4101470d6d0b200342003703b008200341e0046a41086a41002004200a200341b0086a41082006100022042004417f461b2204410820044108491b20066a360200200441074d0d6c20032903b008212120034180036a200341e0046a1012200328028003450d6c2003280284032206417f4c0def012006450d6a2006101b2204450df601200341e8046a220a200a280200220a2006410020032802e00420032802e40420042006200a1000220a200a417f461b220a200a20064b1b220a6a360200200a2006470d6b0cb7020b412a210641cfe6c20021040b200341d0036a41026a200341c8056a41026a2d00003a0000200341e0046a41086a200341c0046a41086a290300370300200341e0046a41106a200341c0046a41106a290300370300200320032f01c8053b01d003200320032903c0043703e00420070dd40220034183066a200341e0046a41086a29030037000020034188066a2202200341e0046a410d6a290000370000200320032f01d0033b01f005200320063600f705200320043600f305200320032903e0043700fb052003200341d0036a41026a2d00003a00f205200341c7086a20034198036a41086a2206290300370000200341cf086a20034198036a41106a22072d00003a0000200320093600bb082003200a3600b7082003200b3600b308200320034188056a41026a22082d00003a00b208200320032f0188053b01b00820032003290398033700bf08200341f8026a200341f0056a200341b0086a410210920120032802f8022204450d3220032802fc0221060cd4020b412a210641cfe6c20021040b200341d0036a41026a200341f0036a41026a2d00003a0000200341e0046a41086a200341b0086a41086a290300370300200341e0046a41106a200341b0086a41106a290300370300200320032f01f0033b01d003200320032903b0083703e00402402008450d0041012108200d0da6020ca7020b20034183066a200341e8046a29030037000020034188066a200341ed046a290000370000200320032f01d0033b01f005200320063600f705200320043600f305200320032903e0043700fb052003200341d2036a2d00003a00f20541012108200341f0056a108f01450d26412110132202450dda01200241206a41002d00dbdc423a0000200241186a41002900d3dc42370000200241106a41002900cbdc42370000200241086a41002900c3dc42370000200241002900bbdc423700002002412141c20010152202450ddb012002200329039803370021200241396a20034198036a41186a290300370000200241316a20034198036a41106a290300370000200241296a20034198036a41086a29030037000020034180046a41086a220642003703002003420037038004200241c10020034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c3004100410010002106200210162006417f460d484188ddc2002104412b2106200d0da5020ca6020b41cfe6c2002104412a21060b200341e0046a41026a200341f0076a41026a2d00003a000020034198036a41086a200341b0086a41086a29030037030020034198036a41106a200341b0086a41106a290300370300200320032f01f0073b01e004200320032903b0083703980320070dd00220034183066a200341a0036a29030037000020034188066a200341a5036a290000370000200320032f01e0043b01f005200320063600f705200320043600f30520032003290398033700fb052003200341e2046a2d00003a00f205200341f0056a108f01450d25200341b0086a2005106520032802b0084101470d340cb0020b412a210641cfe6c20021040b200341d0036a41026a200341f0066a41026a2d00003a0000200341e0046a41086a20034190076a41086a290300370300200341e0046a41106a20034190076a41106a290300370300200320032f01f0063b01d00320032003290390073703e00420070dce0220034183066a200341e0046a41086a29030037000020034188066a2202200341e0046a410d6a290000370000200320032f01d0033b01f005200320063600f705200320043600f305200320032903e0043700fb052003200341d0036a41026a2d00003a00f205200341c7086a20034198036a41086a2206290300370000200341cf086a20034198036a41106a22072d00003a0000200320093600bb082003200a3600b7082003200b3600b308200320034188056a41026a22082d00003a00b208200320032f0188053b01b00820032003290398033700bf08200341f0026a200341f0056a200341b0086a410110920120032802f0022204450d2d20032802f40221060cce020b41b5b8c0002104412021060b2009450dab020caa020b200341b0086a41026a20032d00c2043a0000200320032f01c0043b01b008200341f0056a41086a22024200370300200342003703f00541b9adc100411d200341f0056a100220034198036a41086a2002290300370300200320032903f00537039803412010132202450dc701200220032f01b0083b00002002200f3a001f2002200b36001b2002200e3600172002200d3600132002200a36000f2002200c36000b2002200736000720022008360003200241026a200341b0086a41026a2d00003a000020034198036a411020024120100120021016410021040cbe020b4180c9c30041052004200341fc056a28020010014101210802402006450d00200410160b4100210a410121090c040b200341f0056a41086a2903002105410810132202450dc6012002200537000041bdd7c300410a200241081001200210164100210441012108410121094101210a4101210b410121070c050b0240200441186c2202450d00200720026a21062007210203402002280200200241086a2802002002410c6a280200200241146a2802001001200241186a22022006470d000b0b02402004450d00200441186c21062007210203400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200641686a22060d000b0b410121080240200a450d00200710160b410021090c010b02402004410c6c2202450d00200720026a21062007210203402002280200200241086a28020010032002410c6a22022006470d000b0b02402004450d002004410c6c21062007210203400240200241046a280200450d00200228020010160b2002410c6a2102200641746a22060d000b0b410121090240200a450d00200710160b410021080b4101210a0b4101210b410121070b410021040b02400240024020032802f005417f6a220241064b0d0002400240024020020e0700cb020103040502000b2007450dca02200341f8056a280200450dca0220032802f40510160cca020b200b450dc902200341f8056a280200450dc90220032802f40510160cc9020b2008450dc8020240200341f0056a410c6a2802002207450d0020032802f40521022007410c6c210703400240200241046a280200450d00200228020010160b2002410c6a2102200741746a22070d000b0b200341f8056a280200450dc80220032802f40510160cc8020b200341f0056a1093010cc7020b200a450dc602200341f8056a280200450dc60220032802f40510160cc6020b2009450dc5020240200341f0056a410c6a2802002207450d0020032802f4052102200741186c210703400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200741686a22070d000b0b200341f8056a280200450dc50220032802f40510160cc5020b20034180046a41086a220242003703002003420037038004419cdfc200412420034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200341003602b808200342013703b008200320093602f005200341f0056a200341b0086a101820032802b408220420032802b80822066b20094f0d23200620096a22022006490d850220044101742207200220022007491b22074100480d85022004450d4520032802b0082004200710152202450d460c9e020b41b1bac0002104412521060cb7020b200341f0056a41086a2202200341bc086a280200360200200341c2056a2206200341c3086a2d00003a0000200320032902b4083703f0052003200341c1086a2f00003b01c005200341b0086a41086a22042002280200360200200341bf086a20062d00003a0000200341013a00bc08200320032903f0053703b008200320032f01c0053b00bd082005200341b0086a1068200341c0086a2005370300200442013703002003410e3a00b008200341b0086a105a410021040c9a020b200341f0056a41086a2202200341bc086a280200360200200341c2056a2206200341c3086a2d00003a0000200320032902b4083703f0052003200341c1086a2f00003b01c005200341b0086a41086a22072002280200360200200341bf086a20062d00003a000041002104200341003a00bc08200320032903f0053703b008200320032f01c0053b00bd082005200341b0086a1068200341c0086a2005370300200742013703002003410e3a00b008200341b0086a105a0c99020b20034182046a200341c3086a2d00003a0000200320032f00c1083b0180042005a72202417f4c0dca02200341b8086a280200210420032802b40821092002450d27200210132206450dcd0120062007200210f6021a2004450d96020c95020b4200211d20021016411421064114101322020dc0020b200641011014000b4201211c0b200341f0056a41186a20034190086a41186a290300370300200341f0056a41106a20034190086a41106a290300370300200341f0056a41086a20034190086a41086a29030037030020034188056a41086a200341e0046a41086a29030037030020034188056a41106a200341e0046a41106a29030037030020034188056a41186a200341e0046a41186a29030037030020032003290390083703f005200320032903e004370388054200210520034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0036a41086a2207200229030037030020032003290380043703f0034200211b0240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d930120032903b008211b0b20024200370300200342003703800441ee94c300410d20034180046a10022007200229030037030020032003290380043703f0030240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d940120032903b00821050b200341ef086a2006360000200341eb086a2004360000200341b0086a41206a200341f0056a41086a290300370300200341d8086a200341f0056a41106a290300370300200341e0086a200341f0056a41186a290300370300200341ea086a200341f2066a2d00003a0000200341f3086a20032903f007370000200341fb086a200341f0076a41086a29030037000020034180096a200341fd076a290000370000200342003703c008200320053703b8082003201b3703b008200320032903f0053703c808200320032f01f0063b01e808200341a0096a20034188056a41186a29030037030020034198096a20034188056a41106a29030037030020034190096a20034188056a41086a290300370300200341003a00a809200320032903880537038809412110132202450da901200241206a41002d00be96403a0000200241186a41002900b69640370000200241106a41002900ae9640370000200241086a41002900a696403700002002410029009e96403700002002412141c20010152202450daa012002201c37002120034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a2204200629030037030020032003290380043703f0032003200341f0036a3602d007200341103602d407200341b0086a200341d0076a102d2002101620064200370300200342003703800441f895c000412620034180046a10022004200629030037030020032003290380043703f003200341f0036a411041acf1c300410041001000417f460d01200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d940120032903b00842017c21050c020b4138210641a68ac0002104200341f0056a41386a200341d0056a412010f8020dbe0241de8ac0002104412a2106201d201b5a0dbe02200341a0056a200341a0066a29030037030020034198056a20034198066a29030037030020034190056a20034190066a290300370300200320032903880637038805200341b0086a20034188056a108d0120032d0090094103470d4b4185c9c3002104411f21060cbe020b420221050b20034180046a41086a22024200370300200342003703800441f895c000412620034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320053703b008200341f0036a4110200341b0086a4108100141002104200341b0086a41086a41003a0000200341b9086a200329039008370000200341c9086a20034190086a41106a290300370000200341d1086a200341a8086a29030037000020034190086a41086a2903002105200341113a00b008200341b0086a41116a2005370000200341b0086a105a0cb1020b200341f8056a280200450db80220032802f40510160cb8020b2008450db7020240200341f0056a410c6a2802002207450d0020032802f40521022007410c6c210703400240200241046a280200450d00200228020010160b2002410c6a2102200741746a22070d000b0b200341f8056a280200450db70220032802f40510160cb7020b2007450db602200341f8056a280200450db60220032802f40510160cb6020b2009450db5020240200341f0056a410c6a2802002207450d0020032802f4052102200741186c210703400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200741686a22070d000b0b200341f8056a280200450db50220032802f40510160cb5020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f802450d270b41012110410145210c41014521092007450d87020c86020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f8020da002200341c0026a200520034188056a10950120032802c0022204450d3020032802c402210620070da1020ca3020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f8020d9f022003200c3602b808200320073602b408200320083602b008200341c8026a2005200341b0086a10960120032802c8022204450dea0120032802cc0221060ca2020b200341b0086a200510940141a6adc1002104200341b0086a200341f0056a412010f8020d9e02200341b8026a200520034188056a10970120032802b8022204450d2e20032802bc02210620070d9f020ca1020b41f2ddc2002104412f21020b200d450d91020c90020b41dcdcc2002104412c2106200d450dff010cfe010b41e3ccc2002104412721060caa020b4108210a4100210b0b0240201420066a220c2014460d0020044105742104410020146b210d200a210220142106034020034190086a41186a2207200641186a29000037030020034190086a41106a2208200641106a29000037030020034190086a41086a2209200641086a2900003703002003200629000037039008200241186a4100360200200241106a42083703002002420037030820024200370300200241346a20072903003700002002412c6a2008290300370000200241246a20092903003700002002411c6a200329039008370000200241c0006a2102200641206a2106200441606a22040d000b200c200d6a41606a41057641016a21020b0240201a450d00201410160b20034180046a41086a2206420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341003602b808200342013703b008200a2002200341b0086a10980120032802b4082106200341f0036a411020032802b008220420032802b808100102402006450d00200410160b02402002450d0020024106742106200a41106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b41002104410121020240200b450d00200a10160b20184101460dbb020cbd020b4201211b2005a72202417f4c0db3020b024002402002450d00200210132206450da10120062007200210f6021a0c010b410121060b200320023602b808200320023602b408200320063602b008200320054220883c00bc08201b200341b0086a106820034180046a41086a22024200370300200342003703800441b2e1c000412b20034180046a1002200341f0036a41086a200229030037030020032003290380043703f00302400240200341f0036a411041acf1c300410041001000417f460d00200342003703b008200341f0036a4110200341b0086a41084100100041016a41084d0d850120032903b00842017c21050c010b420221050b20034180046a41086a22024200370300200342003703800441b2e1c000412b20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200320053703b008200341f0036a4110200341b0086a41081001200341b0086a41106a201b370300200341b0086a41086a42003703002003410e3a00b008200341b0086a105a410021042008450d80020cff010b200b101322060d9c020b200b41011014000b41f8bcc00021040c99020b41e2adc1002104411e210620100d8d020c8e020b200341b0086a410d6a2009360000200341b9086a200a360000200341c1086a200329039803370000200341d2086a20032903f005370100200341c9086a2006290300370000200341d1086a20072d00003a0000200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341ea086a20022903003701002003418f043b01b0082003200b3600b508200320032f0188053b01b208200320082d00003a00b408200341b0086a105a410021040ca0020b200341b0086a410d6a2009360000200341b9086a200a360000200341c1086a200329039803370000200341d2086a20032903f005370100200341c9086a2006290300370000200341d1086a20072d00003a0000200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341ea086a20022903003701002003418f023b01b0082003200b3600b508200320032f0188053b01b208200320082d00003a00b408200341b0086a105a410021040c9f020b20032802b00821020c9b020b20032802b00821020cfb010b20032d00a409450d234188bbc0002104411d21060c3b0b411710132202450dad012002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450dae0120022003290388053700172002412f6a200341a0056a290300370000200241276a20034188056a41106a2903003700002002411f6a20034188056a41086a290300370000200341f0066a41086a22064200370300200342003703f00620024137200341f0066a1002200341b0086a41086a2006290300370300200320032903f0063703b008200341b0086a411041acf1c3004100410010002106200210162006417f460d2541eeabc10021044126210620080d83020c84020b200341c0086a2d00002102200341b8086a280200450d2620032802b4081016200241ff01710d270cfb010b410021200b201e202041067422086a22920121022008450d16200341cc086a219301200341b0086a41186a21084100210a0340200341e0046a41086a220b201e200a6a220241206a290200370300200341e0046a41106a220c200241286a290200370300200341e0046a41186a2212200241306a290200370300200341e0046a41206a229401200241386a2902003703002003200241186a2902003703e004200241106a2802002209450d1620022903002119200241086a290300212a200341b0086a41146a200241146a280200229501360200200341b0086a41106a2009360200200820032903e004370200200841086a229601200b290300370200200841106a220b200c290300370200200841186a220c2012290300370200200841206a22122094012903003702002003202a3703b808200320193703b0080240024020930120034190086a412010f802450d0020034198036a41206a201229020037030020034198036a41186a200c29020037030020034198036a41106a200b29020037030020034198036a41086a209601290200370300200320082902003703980320950121970120192164202a21650c010b0240209501450d00200910160b410021090b20034188056a41206a20034198036a41206a29030037030020034188056a41186a20034198036a41186a29030037030020034188056a41106a20034198036a41106a29030037030020034188056a41086a20034198036a41086a29030037030020032003290398033703880520090d1f200a41c0006a210a200241c0006a209201470d000b2092012202209201470d170c180b2003200f3a008f082003200d36008b082003200c360087082003200b360083082003200a3600ff07200320093600fb07200320063600f707200320023600f307200320032d00c2043a00f207200320032f01c0043b01f007200341f0076a21060b200441016a22022004490da40220044101742208200220022008491b2202ad4206862205422088a70da4022005a722084100480da4022004450d0e20072004410674200810152207450d0f0ce7010b4101210620040ded010cee010b200341e4086a20032903b008200341b0086a41086a290300105f4128210620084101105c2204450d22200341d0086a280200450d010b20032802cc0810160b200341dc086a280200450d890220032802d80810160c89020b200341003a00c204200341003b01c0044100210d4100210c4100210b4100210a4100210941002108410021070b200320032d00c2043a00d207200320032f01c0043b01d007200320023a00ef072003200d3600eb072003200c3600e7072003200b3600e3072003200a3600df07200320093600db07200320083600d707200320073600d307200341ba086a200341d0076a41086a290300370100200341c2086a200341d0076a41106a290300370100200341ca086a200341d0076a41186a29030037010020034185023b01b008200320032903d0073701b208200341b0086a105a200341f0056a41026a2207200341c0056a41026a2d00003a0000200341b0086a41086a2208200341a0046a41086a290300370300200341b0086a410d6a2209200341a0046a410d6a290000370000200320032f01c0053b01f005200320032903a0043703b00820034180046a41086a22024200370300200342003703800441e5bfc100410820034180046a1002200341f0036a41086a200229030037030020032003290380043703f003412010132202450d9101200220032f01f0053b00002002200636000720022004360003200220032903b00837000b200241026a20072d00003a0000200241136a2008290300370000200241186a2009290000370000200341f0036a411020024120100120021016410021040b0b4100210a41012107410121090ca8020b4194acc10021044117210620080df5010cf6010b200341f0056a41086a22024200370300200342003703f00541caaac1004120200341f0056a100220034198036a41086a2002290300370300200320032903f00537039803024020034198036a411041acf1c300410041001000417f460d00200341003a00b00820034198036a4110200341b0086a41014100100041016a41014d0dab0120032d00b008450d260b411e10132202450da201200241166a41002900f89141370000200241106a41002900f29141370000200241086a41002900ea9141370000200241002900e291413700002002411e413e10152202450da301200220032903e00437001e200241366a200341f8046a2903003700002002412e6a200341e0046a41106a290300370000200241266a200341e0046a41086a290300370000200341f0056a41086a22064200370300200342003703f0052002413e200341f0056a1002200341b0086a41086a2006290300370300200320032903f0053703b008200341b0086a411041acf1c3004100410010002106200210162006417f460d1d41abacc1002104412c210620100df8010cf9010b4201211b0b200341f0056a41086a20034190086a41086a290300370300200341f0056a41106a20034190086a41106a2d00003a0000200341b0086a41086a20034198036a41086a290300370300200341b0086a41106a20034198036a41106a290300370300200341b0086a41186a20034198036a41186a290300370300200320032800b3073600f307200320032802b0073602f00720032003290390083703f00520032003290398033703b008412710132202450d8d012002411f6a41002900b4d943370000200241186a41002900add943370000200241106a41002900a5d943370000200241086a410029009dd94337000020024100290095d9433700002002412741ce0010152206450d8e012006201b37002720034180046a41086a2202420037030020034200370380042006412f20034180046a1002200341f0036a41086a200229030037030020032003290380043703f003412010132202450d8f01200220032802f00736000020022005370007200220032903f00537000f200241036a20032800f307360000200241176a200341f0056a41086a2903003700002002411f6a200341f0056a41106a2d00003a00002002412041c00010152202450d9001200220032903b008370020200241386a200341c8086a290300370000200241306a200341b0086a41106a290300370000200241286a200341b0086a41086a290300370000200241c00041800110152202450d9101200241003a0040200341f0036a4110200241c10010012002101620061016200341f0036a41086a22024200370300200342003703f00341cde2c300412c200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f00602400240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d7320032903b00842017c211c0c010b4202211c0b200341f0036a41086a22024200370300200342003703f00341cde2c300412c200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f0062003201c3703b008200341f0066a4110200341b0086a41081001200341c7086a20034190086a41086a290300370000200341cf086a20034190086a41106a2d00003a0000200320053700b708200320032800b3073600b308200320032802b0073602b00820032003290390083700bf08200341f0076a200341b0086a108a01024020032802f40720032802f8072202470d00200241016a22062002490dcf0120024101742204200620062004491b2204ad420386221c422088a70dcf01201ca722074100480dcf012002450d1320032802f0072002410374200710152206450d140cda010b20032802f00721060cda010b4101210941012102200a450d2b2003200e3602b8082003200d3602b4082003200a3602b008200341e0026a2005200341b0086a10950120032802e0022204450d2a20032802e40221060240200d450d00200a10160b41012110410045210c410145210920070ddf010ce0010b2005500d1841102106200c41c5ddc200200c1b2104200c450d2b200341c0046a41186a200341f0056a41186a290300370300200341c0046a41106a200341f0056a41106a290300370300200341c0046a41086a200341f0056a41086a290300370300200320032903f0053703c0044200210520034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0066a41086a2206200229030037030020032003290380043703f0064200211c0240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d950120032903b008211c0b20024200370300200342003703800441ee94c300410d20034180046a10022006200229030037030020032003290380043703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d960120032903b00821050b200341dc086a2014360200200341d8086a200f4110200c1b36020041002102200341d0086a4100360200200341e8086a200341c0046a41086a290300370300200341f0086a200341c0046a41106a290300370300200341f8086a200341c0046a41186a290300370300200320043602d408200342013703c8082003201b3703c008200320053703b8082003201c3703b008200320032903c0043703e0082003201141ff01714102472011713a00800920034198036a200341b0086a10990120034180046a41086a22064200370300200342003703800441d5ddc200411d20034180046a1002200341f0066a41086a200629030037030020032003290380043703f006200341f0066a411041acf1c300410041001000417f460d2e2003421037028c052003200341f0066a36028805200341b0086a20034188056a101120032802b0082212450daf01200341b0086a41086a280200210420032802b408210220034188056a41186a20034198036a41186a29030037030020034188056a41106a20034198036a41106a29030037030020034188056a41086a20034198036a41086a29030037030020032003290398033703880520034188056a21062002211520042002460d2f0ccb010b2008101322070dd8010b200841081014000b42e400211d0b0240201d201b56201c200556201c2005511b450d0041d5b8c00021044110210620090de4010ce5010b200f450d13200341f0036a41086a22024200370300200342003703f0034191b7c0004114200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d1e200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d8f01200f20032802b0084d0d1f0cd2010b20032903c008211b200341f0036a41086a22024200370300200342003703f003419be8c200410d200341f0036a1002200341f0066a41086a22062002290300370300200320032903f0033703f006420021050240200341f0066a411041acf1c300410041001000417f460d00200342003703f005200341f0066a4110200341f0056a41084100100041016a41084d0d7b20032903f00521050b20024200370300200342003703f00341f2bac0004116200341f0036a100220062002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d15200342003703f005200341f0066a4110200341f0056a41084100100041016a41084d0d7b200520032903f005201b7c5a0d310ccb010b200241c0006a21020b2002209201460d010b201e20204106746a210b20034188056a41086a21040340200241146a2802002107200241106a280200210620034188056a41206a2208200241386a29020037030020034188056a41186a2209200241306a29020037030020034188056a41106a220a200241286a2902003703002004200241206a2902003703002003200241186a290200370388052006450d01200241c0006a2102200341e0046a41206a2008290300370300200341e0046a41186a2009290300370300200341e0046a41106a200a290300370300200341e0046a41086a200429030037030020032003290388053703e00402402007450d00200610160b200b2002470d000b0b41002198010240201f450d00201e10160b4108219901410821024100219a010c90020b410021042007450dc501200810160cc5010b2007101322020df9010b200741011014000b2007101322020dd8010b200741011014000b200341f0056a41206a220820034188056a41206a290300370300200341f0056a41186a220b20034188056a41186a290300370300200341f0056a41106a220c20034188056a41106a290300370300200341f0056a41086a221220034188056a41086a29030037030020032003290388053703f005200341b0086a41206a2293012008290300370300200341b0086a41186a2208200b290300370300200341b0086a41106a220b200c290300370300200341b0086a41086a220c2012290300370300200320032903f0053703b00841c0001013229901450d98012099012064370300209901209701360214209901200936021020990120032903b008370318209901206537030820990141206a200c290300370300412821960120990141286a200b290300370300413021950120990141306a2008290300370300413821940120990141386a209301290300370300202041067441406a200a460d15200241c0006a219b014106219c01201e20204106746a41406a219d01200341cc086a219e014118210b200341b0086a41186a210c4101219f0141142112411021094108210a4120210841c0002193014206212a42202119410021a0014101219a014101219801410121020c85020b4200211b200341f0036a41086a22024200370300200342003703f00341b4bcc0004119200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d15200342003703f805200342003703f005200341f0066a4110200341f0056a4110410010002202417f460d95012002410f4d0d9501200341f8056a290300211b20032903f00521050c160b2007101322060dc6010b200741081014000b200341f0056a41086a22024200370300200342003703f00541eaaac1004124200341f0056a100220034198036a41086a2002290300370300200320032903f0053703980320034198036a411041acf1c300410041001000417f460d19200342103702f405200320034198036a3602f005200341b0086a200341f0056a101e20032802b0082216450d9901200341b8086a280200210220032802b40821250c1a0b2002101641012106411f2102410221070cd7010b200241ff0171450dd4010b20034198036a41026a20034190076a41026a2d00003a0000200341b0086a41086a20034188056a41086a290300370300200341b0086a41106a20034188056a41106a2d00003a0000200320032f0190073b01980320032003290388053703b008412310132202450d8d012002411f6a41002800e8cd42360000200241186a41002900e1cd42370000200241106a41002900d9cd42370000200241086a41002900d1cd42370000200241002900c9cd423700002002412341c60010152202450d8e01200220032f0198033b00232002200936002e2002200a36002a2002200b360026200220032903b008370032200241256a2003419a036a2d00003a00002002413a6a200341b0086a41086a290300370000200241c2006a200341b0086a41106a2d00003a000020034180046a41086a220642003703002003420037038004200241c30020034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c3004100410010002106200210162006417f460d06418ddcc2002104412e21060cf3010b200341fc056a2008360200200341f0056a41086a41063a0000200341073a00f005200341f0056a105a0240200341d0086a280200450d0020032802cc0810160b200341dc086a280200450dba0120032802d80810160cba010b41e5b8c00021044122210620090dcf010cd0010b41b3ddc200210441122106200d0dc3010cc4010b411710132202450d93012002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d9401200220032903e0043700172002412f6a200341f8046a290300370000200241276a200341e0046a41106a2903003700002002411f6a200341e0046a41086a29030037000020034180046a41086a2206420037030020034200370380042002413720034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341f0036a411041acf1c3004100410010002106200210162006417f460d1941eeabc10021044126210620100dda010cdb010b200341f0036a41086a22024200370300200342003703f003419095c3004117200341f0036a100220034180046a41086a2002290300370300200320032903f0033703800420034180046a411041acf1c300410041001000417f460d19200342003703f00520034180046a4110200341f0056a41084100100041016a41084d0d7e20032903f005420186221c50450d1a41bcb3c0001038000b20032903c808221c201b540df201200341e8066a201c201b513a0000200341f0056a41106a201b37030020034188056a41186a200341f0056a41186a220241186a29000037030020034188056a41106a200241106a29000037030020034188056a41086a200241086a2900003703002003200229000037038805200341b0086a200341f0056a41800110f6021a412110132202450d9801200241206a41002d00be96403a0000200241186a41002900b69640370000200241106a41002900ae9640370000200241086a41002900a696403700002002410029009e96403700002002412141c20010152202450d99012002200537002120034180046a41086a2206420037030020034200370380042002412920034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341103602e4042003200341f0036a3602e004200341b0086a200341e0046a102d20021016201c201b520de601200341b0086a41086a41013a0000200341b9086a200329038805370000200341e0086a201b37030020034188056a41086a2903002105200341113a00b008200341b0086a41116a2005370000200341c9086a20034188056a41106a290300370000200341d1086a200341a0056a290300370000200341b0086a105a410021040ce7010b20034198036a109a0120032802a0032206450d1c20034180046a41086a220242003703002003420037038004418ae8c200411120034180046a1002200341f0036a41086a200229030037030020032003290380043703f00341002102200341f0036a411041acf1c300410041001000417f460d21200341e8076a4200370300200341d0076a41106a4200370300200341d0076a41086a4200370300200342003703d007200341f0036a4110200341d0076a4120410010002202417f460d93012002411f4d0d930120032d00d707410774210220032d00d607410674210420032d00d507410574210720032d00d407410474210820032d00d307410374210c20032d00d207410274210d20032d00d107410174210f20032d00d00721100c220b4101210420032802e00420032802e40441014100200341e8046a28020010001a41002006460dcc010b2006450d00200410160b2008450d00200910160b41b6e7c20041331029000b4194acc10021044117210620100dd2010cd3010b200f41e4004b0db3010b2010450d0e200341f0036a41086a22024200370300200342003703f00341a5b7c000411b200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d18200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d8401201020032802b0084d0d190caa010b4101219a0141012198012092012202209201470df2010cf3010b420521050b200341d8016a20034198036a2005201b105d200341f0056a41186a200341d8016a41186a290300370300200320032903e801370380062003200341d8016a41086a2903003703f805200320032903d8013703f005200341f0056a105e20034198036a20032903b008221c20057d200341b0086a41086a290300201b7d201c200554ad7d105f4128210620084101105c2204450d010b0240200341b0086a41206a280200450d0020032802cc0810160b200341dc086a280200450dd70120032802d80810160cd7010b200341f0056a41086a41013a0000200341f9056a200329039803370000200341f0056a412c6a200836020020034181066a20034198036a41086a29030037000020034189066a200341a8036a29030037000020034191066a20034198036a41186a290300370000200341073a00f005200341f0056a105a0240200341d0086a280200450d0020032802cc0810160b200341b0086a412c6a280200450da80120032802d80810160ca8010b41002102200d450d00200a10160b200b450d06200320103602b8082003200f3602b4082003200b3602b008200341d8026a2005200341b0086a10970120032802d8022204450d0520032802dc0221060240200f450d00200b10160b41012110200245210c410045210920070db3010cb4010b41002108200d0db0010cb1010b410810132216450d85012016420037030041012125410121020b2016200241037422066a2113201621020340201320026b411f4d0d0a20022903002005510d0b200241086a2903002005510d0b200241106a2903002005510d0b200641606a2106200241186a2104200241206a210220042903002005520d000c0b0b0b20034188056a41186a20034198036a41186a29030037030020034188056a41106a20034198036a41106a29030037030020034188056a41086a20034198036a41086a2903003703002003200329039803370388054101211220034188056a21060b200241016a22042002490d9c0120024101742208200420042008491b2215ad4205862205422088a70d9c012005a722084100480d9c012002450d0a2002210420122002410574200810152212450d0b0c9b010b41002109200f450d00200b10160b02402008450d002003200c3602b808200320073602b408200320083602b008200341d0026a2005200341b0086a10960120032802d0022204450d0020032802d402210641002110200245210c200945210920070dad010cae010b0240200d450d00200a450d002002450d00200a10160b41002104200f450d9d01200b450d9d012009450d9d01200b10160cca010b4197b9c00021044129210620090db4010cb5010b200341f0056a41206a20163602002003418c066a201536020020034184066a2013360200200341f0056a41106a2012360200200341f0056a41086a2005422088a73602002003201436028806200320113602fc05200320173602f405200320103602f005200341b0086a200341f0056a109b0120032802b0084101470d0e200341b0086a41086a280200210620032802b40821040cc8010b4206211c0b20054280de34201c80201b7c540d9a010b41a5bbc0002104412a2106200341d0086a2802000dc6010cc7010b03402006450d0c200641786a21062002290300211b200241086a2102201b2005520d000b0b412210132202450d71200241206a41002f00aeab413b0000200241186a41002900a6ab41370000200241106a410029009eab41370000200241086a4100290096ab413700002002410029008eab413700002002412241c40010152206450d7220062005370022200341f0056a41086a22024200370300200342003703f0052006412a200341f0056a100220034198036a41086a2002290300370300200320032903f0053703980302400240024020034198036a411041acf1c300410041001000417f460d00200320034198036a3602f005200341103602f405200342003703b0082003410020034198036a4110200341b0086a41084100100022022002417f461b22024108200241084922041b22023602f80520040d9101200342003703b808200342003703b008200341f0056a41086a410020034198036a4110200341b0086a41102002100022042004417f461b2204411020044110491b20026a3602002004410f4d0d9101200341b8086a290300211b20032903b008211c200341b0026a200341f0056a101220032802b002450d910120032802b4022202417f4c0ddf012002450d012002101b2213450d7d200341f8056a2204200428020022042002410020032802f00520032802f405201320022004100022042004417f461b2204200420024b1b22046a36020020042002470d020c90010b200610164126210641b0abc100210420250d0d0cb8010b4101211320032802f00520032802f40541014100200341f8056a28020010001a41002002460d8e010b2002450d8e01201310160c8e010b413521064188f7c000210441012102200328029c030d060c070b200221042008101322120d90010b200841011014000b20104190ce004b0d91010b2011450d07200341f0036a41086a22024200370300200342003703f00341c0b7c0004118200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d09200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d73201120032802b0084d0d0a0c87010b4100210441002107410021084100210c4100210d4100210f410021100b20034190086a41026a2003280298032002200420072008200c200d200f20106a6a6a6a6a6a6a2006704105746a220241026a2d00003a0000200341b8086a200241136a290000370300200341bd086a200241186a290000370000200320022f00003b0190082003200229000b3703b008200228000721062002280003210441002102200328029c03450d010b20032802980310160b200341d0036a41026a220720034190086a41026a2d00003a0000200341e0046a41086a2208200341b0086a41086a290300370300200341e0046a41106a200341b0086a41106a290300370300200320032f0190083b01d003200320032903b0083703e00420020dc701200341c0046a41026a20072d00003a0000200341f0076a41086a2008290300370300200341f0076a410d6a200341e0046a410d6a290000370000200320032f01d0033b01c004200320032903e0043703f0074200211c20034180046a41086a220242003703002003420037038004419be8c200410d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f0064200211d0240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d5f20032903b008211d0b20034180046a41086a22024200370300200342003703800441ee94c300410d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d6020032903b008211c0b200341f7086a2006360000200341f3086a2004360000200341d8086a200341f0056a41086a290300370300200341e0086a200341f0056a41106a290300370300200341e8086a200341f0056a41186a290300370300200341f2086a200341c2046a2d00003a00002003201b3703c808200320053703c0082003201c3703b8082003201d3703b008200320032903f0053703d008200320032f01c0043b01f00820034188096a200341fd076a29000037000020034183096a200341f0076a41086a290300370000200341fb086a20032903f007370000200341003a009009412310132202450d742002411f6a41002800e8cd42360000200241186a41002900e1cd42370000200241106a41002900d9cd42370000200241086a41002900d1cd42370000200241002900c9cd423700002002412341c60010152202450d75200220032f0190073b00232002200936002e2002200a36002a2002200b3600262002200329038805370032200241256a20034192076a22062d00003a00002002413a6a20034188056a41086a2204290300370000200241c2006a20034188056a41106a22072d00003a000020034180046a41086a220842003703002003420037038004200241c30020034180046a1002200341f0066a41086a200829030037030020032003290380043703f0062003411036029c032003200341f0066a36029803200341b0086a20034198036a109c0120021016200341bd086a2009360000200341b9086a200a360000200341c1086a200329038805370000200341c9086a2004290300370000200341d1086a20072d00003a0000200341d2086a20032903f005370100200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341b0086a413a6a20034188066a2903003701002003410f3b01b0082003200b3600b508200320032f0190073b01b208200320062d00003a00b408200341b0086a105a410021040cc6010b20034198036a41206a200341b0086a410472220241206a28020036020020034198036a41186a200241186a29020037030020034198036a41106a200241106a29020037030020034198036a41086a200241086a2902003703002003200229020037039803411210132202450d76200241106a41002f00a4ad413b0000200241086a410029009cad4137000020024100290094ad4137000020034292808080a0023702b408200320023602b0082003280298032108200320032802a00322023602f005200341f0056a200341b0086a101820032802b408220720032802b80822046b20024f0d03200420026a22062004490dd30120074101742209200620062009491b22094100480dd3012007450d0620032802b0082007200910152206450d070c7f0b4118210641d6abc10021042025450dab010b2016101620080dab010cac010b41d7b9c00021044127210620090da1010ca2010b20032802b00821060c7c0b2011418089fa004b0d7d0b0240200341f0056a201b2005109d01450d004192bac0002104411f210620090d9f010ca0010b200341f0036a41086a22024200370300200342003703f00341d8b7c0004117200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d02200341003602b008200341f0066a4110200341b0086a41044100100041016a41044d0d7120032802b00841016a21060c030b2009101322060d780b200941011014000b410121060b4200211c200341f0036a41086a22024200370300200342003703f00341d8b7c0004117200341f0036a1002200341f0066a41086a22252002290300370300200320032903f0033703f006200320063602b008200341f0066a4110200341b0086a4104100120034190086a41186a420037030020034190086a41106a420037030020034190086a41086a42003703002003420037039008200c201120034190086a1004200341d0076a41026a221620032d0092083a0000200320032f0190083b01d00720032800930821042003280097082107200328009b082114200328009f08210e20032800a308211220032800a708211520032800ab08211720032d00af082113200341f0076a41186a200341f0056a41186a290300370300200341f0076a41106a200341f0056a41106a290300370300200341f0076a41086a200341f0056a41086a290300370300200320032903f0053703f007200320032f01d0073b01c004200320162d00003a00c20420024200370300200342003703f003419be8c200410d200341f0036a100220252002290300370300200320032903f0033703f0060240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d6c20032903b008211c0b200341b0086a41026a20162d00003a0000200320032f01d0073b01b008411810132202450d6e200241106a41002900ffb740370000200241086a41002900f7b740370000200241002900efb74037000020024118413810152202450d6f200220032f01b0083b0018200220133a0037200220173600332002201536002f2002201236002b2002200e360027200220143600232002200736001f2002200436001b2002411a6a200341b0086a41026a2d00003a0000200341f0036a41086a22164200370300200342003703f00320024138200341f0036a100220034180046a41086a2016290300370300200320032903f0033703800420034180046a411041acf1c300410041001000212520021016410121162025417f470d74200341e0046a41026a200341d0076a41026a2d00003a0000200320032f01d0073b01e004411810132202450d70200241106a41002900ffb740370000200241086a41002900f7b740370000200241002900efb74037000020024118413810152202450d71200220032f01e0043b0018200220133a0037200220173600332002201536002f2002201236002b2002200e360027200220143600232002200736001f2002200436001b2002411a6a200341e2046a2d00003a0000200341f0036a41086a22164200370300200342003703f00320024138200341f0036a1002200341f0066a41086a2016290300370300200320032903f0033703f006200341003602b808200342013703b008200320113602980320034198036a200341b0086a101802400240024020032802b408222620032802b80822256b20114f0d00202520116a22162025490dcc012026410174221a20162016201a491b221a4100480dcc012026450d0120032802b0082026201a10152216450d020c750b20032802b00821160c750b201a101322160d730b201a41011014000b1044000b109e01000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41d8d7c3001046000b200341b0086a41146a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a4180aec1001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a418486c3001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41fce2c3001046000b200341b0086a41146a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41e8bcc0001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41e0e1c0001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41a8dcc0001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41a0c0c1001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41d8c7c3001046000b200341b0086a41146a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41c0dfc2001046000b200341c4086a41013602002003410236029408200341c8d7c30036029008200342013702b408200341d0d7c3003602b008200320034190086a3602c008200341b0086a41c096c0001046000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41a4e9c2001038000b41d4eac2001038000b41c093c3001038000b41b6e7c20041331029000b41b6e7c20041331029000b412141011014000b41c20041011014000b41b6e7c20041331029000b41b6e7c20041331029000b411241011014000b413241011014000b412041011014000b41b6e7c20041331029000b410941011014000b412941011014000b411441011014000b413441011014000b412141011014000b41c20041011014000b411341011014000b412641011014000b41b6e7c20041331029000b411341011014000b412641011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b411e41011014000b413e41011014000b412041011014000b410841011014000b411341011014000b412641011014000b412041011014000b41b6e7c20041331029000b412741011014000b41ce0041011014000b412041011014000b41c00041011014000b41800141011014000b41b6e7c20041331029000b412141011014000b41c20041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b41b6e7c20041331029000b411741011014000b413741011014000b412141011014000b41c20041011014000b411e41011014000b413e41011014000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b412341011014000b41c60041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41c00041081014000b41b6e7c20041331029000b200641011014000b412241011014000b41c40041011014000b41b6e7c20041331029000b411741011014000b413741011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410841081014000b200241011014000b412141011014000b41c20041011014000b412341011014000b41c60041011014000b41b6e7c20041331029000b411241011014000b41b6e7c20041331029000b411841011014000b413841011014000b411841011014000b413841011014000b2003201a3602b408200320163602b008201a21260b201620256a200c201110f6021a200341f0066a41102016202520116a100102402026450d00201610160b2002101602402009450d00200c10160b410021160b200341e0086a2010360200200341dc086a200a360200200341d4086a200f360200200341d0086a200b36020020034186096a20032d00c2043a0000200341ec086a200341f0076a41086a290300370200200341f4086a20034180086a290300370200200341fc086a20034188086a2903003702002003201b3703b0082003200d3602d808200320083602cc08200320063602c8082003201c3703c008200320053703b808200320032903f0073702e408200320032f01c0043b018409200341a3096a20133a00002003419f096a20173600002003419b096a201536000020034197096a201236000020034193096a200e3600002003418f096a20143600002003418b096a200736000020034187096a2004360000200341a7096a200341c8056a41026a2d00003a0000200341003a00a409200320032f01c8053b00a50902400240024002400240411310132202450d002002410f6a4100280096b840360000200241086a410029008fb84037000020024100290087b84037000020024113412610152202450d0120022006360013200341f0036a41086a22044200370300200342003703f00320024117200341f0036a1002200341f0066a41086a2004290300370300200320032903f0033703f0062003411036029c032003200341f0066a36029803200341b0086a20034198036a104b200210160240200341d0086a280200450d00200341cc086a28020010160b0240200341dc086a280200450d00200341d8086a28020010160b200341f0036a41086a22024200370300200342003703f003419ab8c000411b200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f0064100210202400240200341f0066a411041acf1c300410041001000417f460d002003421037029c032003200341f0066a36029803200341b0086a20034198036a102620032802b0082204450d04200320032902b40822053702b408200320043602b0082005a72005422088a72202460d010c060b200341003602b808200342043703b008410421040b200241016a22072002490d5920024101742208200720072008491b2207ad4202862205422088a70d592005a722084100480d59024002402002450d0020042002410274200810152204450d010c050b2008101322040d040b200841041014000b411341011014000b412641011014000b41b6e7c20041331029000b200320073602b408200320043602b008200341b8086a28020021020b200341b0086a41086a2207200241016a360200200420024102746a2006360200200341b0086a1060024020032802b408450d00200410160b200741003a0000200341dc086a2006360200200341b9086a20032903f005370000200341c1086a200341f0056a41086a290300370000200341c9086a200341f0056a41106a2202290300370000200341d1086a200341f0056a41186a2204290300370000200341073a00b008200341b0086a105a0240200341f0056a108901450d00200341b0086a41186a2004290300370300200341b0086a41106a2002290300370300200341b0086a41086a200341f0056a41086a290300370300200320032903f0053703b008200341b0086a2006410110580b410021042009450d102016450d10200c10160c100b200320093602b408200320063602b008200921070b200620046a2008200210f6021a200341f0056a41086a22094200370300200342003703f0052006200420026a200341f0056a1002200341b0086a41086a2009290300370300200320032903f0053703b008200341b0086a411041acf1c300410041001000210202402007450d00200610160b02402002417f460d000240200328029c03450d00200810160b0240200341a8036a280200450d0020032802a40310160b0240200341b4036a280200450d0020032802b00310160b41d7acc1002104411921060c390b200341c9086a220220034188056a41186a290300370000200341c1086a220620034188056a41106a290300370000200341b9086a220420034188056a41086a290300370000200341013a00b00820032003290388053700b108200341e0046a20034198036a200341b0086a109f012105200341b0086a41086a41003a0000200341e0086a2005370300200420032903e0043700002006200341e0046a41086a2903003700002002200341e0046a41106a290300370000200341d1086a200341e0046a41186a2903003700002003410b3a00b008200341b0086a105a0240200328029c03450d00200810160b024020034198036a41106a280200450d0020032802a40310160b200341b4036a280200450d0020032802b00310160b410021040c370b41feb9c00021044114210620090d210c220b2013450d002006101602402025450d00201610160b024020034188056a201c201b10a001450d00200341f0056a41206a20103602002003418c066a200f36020020034184066a200e360200200341f0056a41106a200d360200200341f0056a41086a200c3602002003200b360288062003200a3602fc05200320073602f405200320083602f005200341b0086a200341f0056a109b0120032802b0084101470d02200341b0086a41086a280200210620032802b40821044100210c20020d030c040b41f0acc1002104412421064101210c2002450d030c020b41b6e7c20041331029000b20034198036a41206a200341b0086a410472220641206a28020036020020034198036a41186a200641186a29020037030020034198036a41106a200641106a29020037030020034198036a41086a200641086a2902003703002003200629020037039803024002400240411210132206450d00200641106a41002f00a4ad413b0000200641086a410029009cad4137000020064100290094ad4137000020034292808080a0023702b408200320063602b0082003280298032116200320032802a00322063602f005200341f0056a200341b0086a101802400240024020032802b408220e20032802b808220c6b20064f0d00200c20066a2204200c490d53200e4101742225200420042025491b22254100480d53200e450d0120032802b008200e202510152204450d020c040b20032802b00821040c040b2025101322040d020b202541011014000b411241011014000b200320253602b408200320043602b0082025210e0b2004200c6a2016200610f6021a200341f0056a41086a22254200370300200342003703f0052004200c20066a200341f0056a1002200341b0086a41086a2025290300370300200320032903f0053703b008200341b0086a411041acf1c30041004100100021060240200e450d00200410160b02402006417f460d000240200328029c03450d00201610160b0240200341a8036a280200450d0020032802a40310160b0240200341b4036a280200450d0020032802b00310160b41d7acc1002104411921064100210c20020d010c020b20034190026a20034188056a201c201b10a101200341b0086a41186a20034190026a41186a290300370300200320032903a0023703c008200320034190026a41086a2903003703b80820032003290390023703b008200341b0086a105e200341b0086a41086a22062005370300200341003a00b00820034188056a20034198036a200341b0086a109f012105200641003a0000200341e0086a2005370300200341b9086a200329038805370000200341c1086a20034188056a41086a290300370000200341c9086a20034188056a41106a290300370000200341d1086a20034188056a41186a2903003700002003410b3a00b008200341b0086a105a0240200328029c03450d00201610160b024020034198036a41106a280200450d0020032802a40310160b0240200341b4036a280200450d0020032802b00310160b02402002450d00201310160b410021040c290b201310160b200c0d240c270b2012200441057422086a22022006290000370000200241186a200641186a290000370000200241106a200641106a290000370000200241086a200641086a29000037000020034180046a41086a22024200370300200342003703800441d5ddc200411d20034180046a1002200341f0066a41086a200229030037030020032003290380043703f006200341003602b808200342013703b0082003200441016a22023602880520034188056a200341b0086a1018024002402002450d00200841206a21114100200341b0086a41086a28020022066b210820032802b008211420032802b40821092012210203400240200920086a411f4b0d00200641206a22042006490d042009410174220e20042004200e491b22044100480d04024002402009450d00201420092004101522140d010c070b200410132214450d060b200421090b201420066a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200841606a2108200641206a2106200241206a2102201141606a22110d000b200341b8086a2006360200200320093602b408200320143602b0080c010b200341b0086a41086a280200210620032802b408210920032802b00821140b200341f0066a411020142006100102402009450d00201410160b02402015450d00201210160b200341d2086a20032903f005370100200341ba086a20034198036a41086a290300370100200341c2086a20034198036a41106a290300370100200341ca086a20034198036a41186a290300370100200341da086a200341f0056a41086a290300370100200341e2086a200341f0056a41106a290300370100200341ea086a200341f0056a41186a2903003701002003418f063b01b00820032003290398033701b208200341b0086a105a0240200d450d002010450d00200d10160b41002104024002402007417f6a220241064b0d00024020020e0740404040020000400b4100210441000d3e0b200a0d3c0c3d0b0240200d450d002010450d00200d10160b200c450d3c200f0d200c3c0b1010000b200441011014000b41c0b9c00021044117210620090d180c190b0c2c0b200341f0056a41186a20034198036a41186a290300370300200341f0056a41106a20034198036a41106a290300370300200341f0056a41086a20034198036a41086a29030037030020032003290398033703f005412210132202450d02200241206a41002f0096bc403b0000200241186a410029008ebc40370000200241106a4100290086bc40370000200241086a41002900febb40370000200241002900f6bb403700002002412241c40010152202450d03200220032903f0053700222002413a6a20034188066a290300370000200241326a200341f0056a41106a2903003700002002412a6a200341f0056a41086a290300370000200241c40041880110152202450d0420022008360042200341f0036a41086a22064200370300200342003703f003200241c600200341f0036a100220034180046a41086a2006290300370300200320032903f0033703800420034180046a411041acf1c30041004100100021062002101602402006417f460d0041cfbbc000210441272106200341d0086a2802000d2d0c2e0b200341f0056a41186a20034198036a41186a290300370300200341f0056a41106a20034198036a41106a290300370300200341f0056a41086a20034198036a41086a29030037030020032003290398033703f005200341f0056a2008201410580240200341d0086a280200450d0020032802cc0810160b200341dc086a280200450d0020032802d80810160b410021040b0c2c0b412241011014000b41c40041011014000b41880141011014000b4187b9c00021044110210620090d100c110b200320043602f407200320063602f0070b200341f0076a41086a2204200241016a360200200620024103746a201b370300200341b0086a41086a20034190086a41086a290300370300200341b0086a41106a20034190086a41106a2d00003a0000200320032800b3073600d307200320032802b0073602d00720032003290390083703b008200341f0056a41086a2004280200360200200320032903f0073703f00502400240413210132202450d00200241306a41002f00ecd9433b0000200241286a41002900e4d943370000200241206a41002900dcd943370000200241186a41002900d4d943370000200241106a41002900ccd943370000200241086a41002900c4d943370000200241002900bcd9433700002002413241e40010152202450d01200220032802d00736003220022005370039200220032903b008370041200241356a20032800d307360000200241c9006a200341b0086a41086a2206290300370000200241d1006a200341b0086a41106a22072d00003a0000200241d200200341f0056a10a20120021016024020032802f405450d0020032802f00510160b41002104200641003a0000200341b9086a20032802b007360000200341bc086a20032800b307360000200341b0086a41186a200329039008370300200341d0086a20034190086a41086a290300370300200341d9086a200329039803370000200341e1086a20034198036a41086a290300370000200341f1086a20034198036a41186a290300370000200341103a00b00820072005370300200341d8086a20034190086a41106a2d00003a0000200341e9086a20034198036a41106a29030037000020034180096a201b370300200341b0086a105a0c360b413241011014000b41e40041011014000b20042108200221040b200720084106746a220242083703102002420037030820024200370300200241186a4100360200200241346a200641186a2902003702002002412c6a200641106a290200370200200241246a200641086a2902003702002002200629020037021c20034180046a41086a2202420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200229030037030020032003290380043703f003200341003602f805200342013703f0052007200841016a2202200341f0056a10980120032802f4052106200341f0036a411020032802f005220920032802f805100102402006450d00200910160b02402002450d00200741106a2102200841067441c0006a210603400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b02402004450d00200710160b410021040b412621064100210220184101460d400c420b2010450d00200d10160b200f450d2b200c450d2b20084101730d2b200c10160c2b0b2008450d002010450d00200810160b0240200d450d00200a45200c720d00200a10160b200f450d1c200b452009720d1c0c1b0b200910160b200341bf086a20034182046a2d00003a0000200320023602b808200320023602b408200320063602b008200320054220883c00bc08200320032f0180043b00bd08201b200341b0086a1068200341c0086a201b370300200341b8086a42013703002003410e3a00b008200341b0086a105a410021042008450d010b200710160b0b4100210f41012107410121094101210a410121084101210b4101210c4101210d41012110410121110c440b200320073602b408200320023602b008200721040b200220066a200b200910f6021a200341f0066a41102002200620096a10012004450d1f200210160c1f0b200c10160b0240200a450d00200d10160b200b450d16200810160c160b418acdc2002104413f21060c1f0b201c422088a7210a200320032d00f2073a00c204200320032f01f0073b01c00420032800f307210b20032800f707210e20032800fb07211220032800ff07211520032800830821172003280087082113200328008b08211620032d008f082125200320032d00c2043a009208200320032f01c0043b019008200320032800c8053602b0082003200341cb056a2800003600b308200320032d0092083a00f207200320032f0190083b01f007200320032802b0083602c005200320032800b3083600c30520021016200320032d00f2073a00b208200320032f01f0073b01b008200320032802c0053602b805200320032800c3053600bb052006ad221c422086201c84211c201d422088a72126201da72102410021060b200320032d00b2083a009207200320032f01b0083b019007200320032802b8053602b005200320032800bb053600b30502402006450d0041c7dec2002104200d0d020c030b20034198066a201c370300200341f0056a41206a200a3602002003418c066a2008360200200341a2066a20032d0092073a0000200341bf066a20253a0000200341bb066a2016360000200341b7066a2013360000200341b3066a2017360000200341af066a2015360000200341ab066a2012360000200341a7066a200e360000200341a3066a200b360000200320043602940620032009360288062003202137038006200320233703f805200320263602f405200320023602f005200320032f0190073b01a006200320073a00c006200341c4066a20032800b305360000200320032802b0053600c106200341b0086a41186a20034198036a41186a290300370300200341b0086a41106a20034198036a41106a290300370300200341b0086a41086a20034198036a41086a29030037030020032003290398033703b008201ca721020240200341a0066a200341b0086a412010f802450d0002402008450d002009101620034198066a28020021020b02402002450d0020034194066a28020010160b41a1dec200210441262102200d0d020c030b024020054201520d0020034180066a201b3703000b02400240200c450d0002402002450d00200410160b2003419c066a201436020020034198066a200f36020020034194066a200c360200410121020c010b410021020b0240201141ff01714102460d00200341c0066a20114101713a00000b200341b0086a200341f0056a41d80010f6021a20034188056a200341b0086a109901200341ba086a20034188056a41086a290300370100200341c2086a20034188056a41106a290300370100200341ca086a20034188056a41186a290300370100200341d2086a200329039803370100200341da086a20034198036a41086a290300370100200341e2086a20034198036a41106a290300370100200341ea086a20034198036a41186a2903003701002003418f083b01b00820032003290388053701b208200341b0086a105a0240200d450d002010450d00200d10160b41002104200f450d1c200c452002720d1c0b200c10160c1b0b2010450d00200d10160b0240200c450d00200f450d00200c1016200221060c1b0b200221060c1a0b2008450d010b2007450d00200810160b0240200a450d00200d450d00200a10160b200b450d00200f450d00200b10160b2009417e6a220241044b0d09024020020e050006040501000b4100450d060c090b2010450d010b2017450d00201010160b02402011450d002012450d00201110160b2014450d062015450d06201410160c060b4100450d020c050b02402008450d002007450d00200810160b0240200a450d00200d450d00200a10160b200b450d04200f0d030c040b41000d030b2007450d020b200810160c010b200b10160b4100211141012107410121094101210a410121084101210b4101210c4101210d410121100c2b0b20032802cc0810160b200341dc086a280200450d0020032802d80810160b4100210b41012107410121094101210a410121080c240b2003200b36029c032003200636029803200b21090b200620046a200a200710f6021a200341f0036a41102006200420076a100102402009450d00200610160b2002101602402008450d00200a10160b200341b9086a200341f8056a290300370000200341c1086a20034180066a290300370000200341c9086a20034188066a2903003700002003410a3a00b008200320032903f0053700b108200341b0086a105a4100211041012107410121094101210a410121084101210b4101210c4101210d410121114101210f41012114410021040c280b410021040b0c0a0b200320073602b408200320023602b008200721040b200220066a200b200910f6021a200341f0066a41102002200620096a10012004450d002002101641002104200a0d010c020b41002104200a450d010b200b10160b0b4100211441012107410121094101210a410121084101210b4101210c4101210d41012110410121114101210f0c200b200341f0056a10930141a7e6c2002104412821060b41012109410021070c150b200241106a410028009e9643360000200241086a410029009696433700002002410029008e96433700000240024002400240024020022006413410152202450d00200220032903e0043700142002412c6a200341f8046a290300370000200241246a200341e0046a41106a2903003700002002411c6a200341e0046a41086a290300370000200341f0036a41086a22064200370300200342003703f00320024134200341f0036a1002200341f0066a41086a2006290300370300200320032903f0033703f006024002400240200341f0066a411041acf1c300410041001000417f460d00200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002206417f460d022006410f4d0d02200341b8086a290300212120032903b00821220c010b42002122420021210b20021016200341f0036a41086a22024200370300200342003703f0030240024002400240202220218422194200510d0041b1c6c3004114200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d02200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d062002410f4d0d06200341b8086a29030021270c010b419dc6c3004114200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d01200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d062002410f4d0d06200341b8086a29030021270b20032903b00821280c010b42002128420021270b0240201b20287c2229201b542202200520277c2002ad7c222320055420232005511b450d0041aec7c3002104412821060c080b0240201c20297d222a201c56201d20237d201c202954ad7d221c201d56201c201d511b450d004191c7c3002104411d21060c080b20194200520d05200341f0036a41086a22024200370300200342003703f00341bd95c300411b200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f006200341f0066a411041acf1c300410041001000417f460d05200342003703b808200342003703b008200341f0066a4110200341b0086a4110410010002202417f460d042002410f4d0d0420032903b008201b56200341b8086a290300221d200556201d2005511b450d0541f2c6c3002104411f21060c070b41b6e7c20041331029000b413441011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200341b0016a20034190086a4102202a201c10a301024020032802b0012204450d0020032802b40121060c020b02402022201b7c22232022542202202120057c2002ad7c221d202154201d2021511b450d0041c5c6c3002104412d21060c020b02400240024020034190086a200341e0046a412010f802450d0020034190086a202a201c108601411410132202450d01200241106a410028009e9643360000200241086a410029009696433700002002410029008e964337000020024114413410152202450d02200220032903e0043700142002412c6a200341e0046a41186a2206290300370000200241246a200341e0046a41106a2903003700002002411c6a200341e0046a41086a290300370000200341f0036a41086a22044200370300200342003703f00320024134200341f0036a100220034180046a41086a2004290300370300200320032903f0033703800420034180046a411041acf1c30041004100100021042002101602402004417f470d00200341e8086a201d370300200341e0086a2023370300200341b0086a41086a41003a0000200341b9086a20032903e004370000200341c1086a200341e0046a41086a290300370000200341c9086a200341f0046a290300370000200341d1086a2006290300370000200341023a00b008200341b0086a105a0b200341e0046a2023201d108601200320273703b808200320283703b008200341b0086a105e200341b0086a41086a41023a0000200341b9086a200329039008370000200341c1086a20034190086a41086a290300370000200341c9086a20034190086a41106a290300370000200341d1086a20034190086a41186a290300370000200341d9086a20032903e004370000200341e1086a200341e0046a41086a290300370000200341e9086a200341e0046a41106a290300370000200341f1086a2006290300370000200341023a00b00820034198096a202737030020034190096a202837030020034188096a200537030020034180096a201b370300200341b0086a105a0b410021040c020b411441011014000b413441011014000b41012107410121094101210a410121084101210b4101210c4101210d41012110410121114101210f410121140c1c0b410121070c110b41e58dc3002104410d21060b41002110410121072008450d010b200a10160b410121094101210a410121084101210b4101210c4101210d0c140b200341f0036a41086a22024200370300200342003703f00341ee94c300410d200341f0036a1002200341b0086a41086a22072002290300370300200320032903f0033703b008200320053703f005200341b0086a4110200341f0056a41081001200341013a00f00520024200370300200342003703f00341d08ec3004113200341f0036a100220072002290300370300200320032903f0033703b008200341b0086a4110200341f0056a4101100120024200370300200342003703f003419095c3004117200341f0036a1002200341f0066a41086a2002290300370300200320032903f0033703f00602400240024002400240024002400240200341f0066a411041acf1c300410041001000417f460d00200342003703b008200341f0066a4110200341b0086a41084100100041016a41084d0d0220032903b008211b0c010b4203211b0b200341f0036a41086a22024200370300200342003703f00341c184c0004112200341f0036a100220034180046a41086a220d2002290300370300200320032903f00337038004410121070240024020034180046a411041acf1c300410041001000417f460d00200342003703b00820034180046a4110200341b0086a41084100100041016a41084d0d0320032903b008211c4100210f0c010b4101210f0b20024200370300200342003703f00341c184c0004112200341f0036a1002200d2002290300370300200320032903f00337038004200320053703b00820034180046a4110200341b0086a41081001201c500d12200f0d12427f201b201b7c221d201d201b541b221b4200510d022005201b802205201c201b80221b580d032005201b42017c221c510d124200211d200341f0036a41086a22024200370300200342003703f00341d0c9c0004112200341f0036a100220034180046a41086a2002290300370300200320032903f003370380040240024020034180046a411041acf1c300410041001000417f460d00200342103702f405200320034180046a3602f005200341b0086a200341f0056a101120032802b0082224450d0620032902b408211d0c010b410121240b2005201b427f857ca7222b450d11201d422088a7222c202b4d0d11201ca7212d200341d9086a212e4109212f200341b0086a41096a21304104211520034198036a410472213141282132200341f0056a41286a21334100210f410521344118210e411021104108210d4101211741202111200341f0056a41206a213541242136200341f0056a41246a213742002105411521384196e9c100213941acf1c300213a417f213b4112213c4132213d412a213e4122213f411a21404119214141bde9c1002142410d2143419be8c20021444117214541d6e9c1002146423021214220211b4130212642ffffffff0f21274201211c411421474190eac1002148428094ebdc0321294289f48bdcc400212841ff00214941a4eac100214a41cdc7c000214b427f2123200341e8086a214c412c214d200341b0086a412c6a214e4102214f42102122415821504154212541742116416c215141642152415c2153417c2113410321544150215541072156200341fb076a2157200341ff076a215820034183086a21592003418b086a215a2003418f086a215b4169215c4173215d4171215e4111215f410c216041782161410021620c050b41b6e7c20041331029000b41b6e7c20041331029000b41ec87c0001038000b418489c0001038000b41b6e7c20041331029000b410021020b034002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b20034190076a200e6a20242062202d6a202c702034746a2202200e6a29000037030020034190076a20106a200220106a29000037030020034190076a200d6a2002200d6a2900003703002003200229000037039007200341f0056a20034190076a10a40102402035280200229101450d0020034198036a200d6a2033200d6a29030037030020034198036a20106a203320106a29030037030020034198036a200e6a2033200e6a29030037030020034198036a20116a203320116a28020036020020032033290300370398032037280200219001200341b0076a200e6a22662031200e6a290000370300200341b0076a20106a2267203120106a290000370300200341b0076a200d6a22682031200d6a290000370300200320312900003703b007200341f0036a200d6a22692005370300200320053703f00320392038200341f0036a1002200341f0066a200d6a226a2069290300370300200320032903f0033703f0060240024002400240200341f0066a2010203a200f200f1000203b470d002017200f200341b0076a10420d020c010b2003202237028c052003200341f0066a36028805200341b0086a20034188056a101120032802b0082202450d1020032802b40821632002200341b0086a200d6a280200200341b0076a1042216e02402063450d00200210160b206e0d010b203c10132202450d10200220106a200f2f00bbe94122633b00002002200d6a200f2900b3e94122643700002002200f2900abe94122653700002002203c203d10152202450d11200220032903b0073700122002203e6a20662903003700002002203f6a2067290300370000200220406a206829030037000020692005370300200320053703f0032002203d200341f0036a1002206a2069290300370300200320032903f0033703f00602400240200341f0066a2010203a200f200f1000203b460d002003200f3602b008200341f0066a2010200341b0086a2015200f100020176a20154d0d0d20032802b008216b20021016203c101322020d010c140b4100216b20021016203c10132202450d130b200220106a20633b00002002200d6a2064370000200220653700002002203c203d10152202450d13200220032903b0073700122002203e6a20662903003700002002203f6a2067290300370000200220406a206829030037000020692005370300200320053703f0032002203d200341f0036a1002206a2069290300370300200320032903f0033703f0062003206b20176a226c3602b008200341f0066a2010200341b0086a201510012002101620692005370300200320053703f00320422041200341f0036a1002206a2069290300370300200320032903f0033703f00602400240200341f0066a2010203a200f200f1000203b460d002003200f3602b008200341f0066a2010200341b0086a2015200f100020176a20154d0d0e20032802b008216d0c010b4100216d0b20034180046a200e6a2202206629030037030020034180046a20106a2263206729030037030020034180046a200d6a226e2068290300370300200320032903b007370380044200216f20694200370300200342003703f00320442043200341f0036a1002206a2069290300370300200320032903f0033703f0060240200341f0066a2010203a200f200f1000203b460d00200320053703b008200341f0066a2010200341b0086a200d200f100020176a200d4d0d0b20032903b008216f0b200341a0046a200e6a22702002290300370300200341a0046a20106a22712063290300370300200341a0046a200d6a2272206e29030037030020032003290380043703a00420692005370300200320053703f00320462045200341f0036a1002206a2069290300370300200320032903f0033703f006024002400240024002400240200341f0066a2010203a200f200f1000203b460d00200320223702b4082003200341f0066a3602b008200341a8016a200341b0086a101220032802a801450d0b20032802ac012273ad20217e2264201b88a70d242064a72202203b4c0d242002450d012002101322740d020c1e0b200341c0046a200e6a22022070290300370300200341c0046a20106a2263207129030037030041082174200341c0046a41086a226e200341a0046a41086a290300370300200320032903a0043703c004200341d0076a200e6a2002290300370300200341d0076a20106a2063290300370300200341d0076a41086a206e290300370300200320032903c0043703d00741002175420021760c020b410821740b024002402073450d00200341b0086a200d6a227728020021754117216e4100217820032802b408217920032802b008217a410021022073217b034020034190086a200e6a227c200537030020034190086a20106a227d200537030020034190086a200d6a227e200537030020032005370390082077200f207a207920034190086a20112075100022632063203b461b226320112063201149227f1b20756a2263360200207f0d0a200341f0076a200e6a207c290300370300200341f0076a20106a207d290300370300200341f0076a200d6a207e29030037030020032003290390083703f00720032005370388052077200f207a207920034188056a200d2063100022752075203b461b2275200d2075200d491b20636a2263360200207520564d0d0a20032903880521642003200f360288052077200f207a207920034188056a20152063100022752075203b461b227c2015207c2015491b20636a2275360200207c20544d0d0a200220176a2163200328028805217c200320032d00f2073a00c204200320032f01f0073b01c0042057280000217d2058280000217e2059280000217f200341f0076a20456a280000218001205a280000218101205b2d000021820120032800f30721830120032800f70721840102402002207b470d002078206320632078491b227bad20217e2265201b88a70d262065a7228501200f480d2602402002450d002074206e205c6a208501101522740d010c110b20850110132274450d100b2074206e6a2202205c6a20643703002002205d6a20032d00c2043a00002002205e6a20032f01c0043b01002002205f6a207c360200200220106a2082013a0000200220606a2081013600002002200d6a208001360000200220156a207f3600002002207e360000200220136a207d360000200220616a208401360000200220166a2083013600002078204f6a2178206e20266a216e2063210220632073490d000c020b0b410021634100217b0b2074450d08200341c0046a200e6a22782070290300370300200341c0046a20106a22792071290300370300200341c0046a200d6a227a2072290300370300200320032903a0043703c00402402063ad201b86207bad842276201b88a722752011490d0041302102207541306c21772074ad201b862165420121642074216e03400240206e290300207420026a2263290300580d002063ad201b8620648421652063216e0b2064201c7c21642077200220266a2202470d000b206e450d1a20652027580d1a20034188056a200e6a2263207829030037030020034188056a20106a226e207929030037030020034188056a200d6a2277207a290300370300200320032903c0043703880520752065a722024d0d1d2074200220266c6a2202206f370300200220116a20632903003703002002200e6a206e290300370300200220106a20772903003703002002200329038805370308200220173602280c030b200341d0076a200e6a2078290300370300200341d0076a20106a2079290300370300200341d0076a200d6a207a290300370300200320032903c0043703d0072076a72075470d010b20752017742202207520176a226320632002491bad226420217e2265201b88a70d212065a72202200f480d21024002402075450d002074207520266c2002101522740d010c1b0b200210132274450d1a0b2076201b88a72175206421760b2074207520266c6a2202206f370300200220116a200341d0076a200e6a2903003703002002200e6a200341d0076a20106a290300370300200220106a200341d0076a200d6a290300370300200220032903d007370308200220173602282076202783207520176aad201b868421760b20692005370300200320053703f00320462045200341f0036a1002206a2069290300370300200320032903f0033703f006200341b0086a200d6a2279200f3602002003201c3703b00820032076201b88a722023602880520034188056a200341b0086a1018024002402002450d00200220266c217a2050207928020022026b21752002204d6a210220032802b408216e2074216303400240024002400240206e20756a20326a20114f0d00200220256a227820116a22772078490d26206e2017742278207720772078491b2278200f480d26206e450d0120032802b008206e2078101522770d020c0d0b20032802b00821770c020b207810132277450d0b0b200320783602b408200320773602b0082078216e0b2079200220166a227c360200207720026a227820516a206320116a290000370000207820526a2063200e6a290000370000207820536a206320106a290000370000207820256a2063200d6a290000370000206329030021640240024002400240206e20756a2278200d6a20784f0d00207c200d6a2278207c490d26206e201774227c20782078207c491b2278200f480d26206e450d012077206e2078101522770d020c0e0b206e21780c020b207810132277450d0c0b200320783602b408200320773602b0080b2079200220136a226e360200207720026a20166a2064370000206320326a280200217c0240024002400240207820756a20544b0d00206e20156a227d206e490d262078201774226e207d207d206e491b226e200f480d262078450d0120772078206e101522770d020c0f0b2078216e0c020b206e10132277450d0d0b2003206e3602b408200320773602b0080b206320266a216320792002360200207720026a20136a207c360000207520256a21752002204d6a2102207a20556a227a0d000c020b0b20032802b408216e20032802b00821770b200341f0066a20102077207928020010010240206e450d00207710160b02402076a7450d00207410160b203c10132202450d14200220106a200f2f00d5cc413b00002002200d6a200f2900cdcc413700002002200f2900c5cc413700002002203c203d10152202450d15200220032903b0073700122002203e6a20662903003700002002203f6a2067290300370000200220406a206829030037000020692005370300200320053703f0032002203d200341f0036a1002206a2069290300370300200320032903f0033703f006024002400240200341f0066a2010203a200f200f1000203b460d00200320223702b4082003200341f0066a3602b008200341a0016a200341b0086a101220032802a001450d1120032802a401216320034188016a200341b0086a10a501200328028801450d1120021016410a21022063202f4d0d010c020b20021016410321630b206321020b0240024002400240206c2002206d6a4d0d00200341b0086a200341b0076a10a6012079290300216420032903b00821650240200341b0086a20366a2277280200450d00200341b0086a20116a28020010160b20692005370300200320053703f00320482047200341f0036a1002206a2069290300370300200320032903f0033703f006200341f0066a2010203a200f200f1000203b460d012003200f3602b008200341f0066a2010200341b0086a2015200f100020176a20154d0d1120033502b00821760c020b200341e0046a200e6a2066290300370300200341e0046a20106a2067290300370300200341e0046a200d6a2068290300370300200320032903b0073703e004410121020c020b42c0843d21760b200341c8006a206520052076200510fa02200341d8006a2028200329034820298020032903502005521b2005200210fb02200341d8006a200d6a29030021762003290358216f200341b0086a200341b0076a10a601200341e8006a200341b0076a20032903b0082286012065206f200220494b2065206f54206420765420642076511b7222021b2287012086012087015420792903002288012064207620021b22890154208801208901511b22021b226f200341b0086a20106a290300228a01208a01206f56200341b0086a200e6a290300228b0120880120890120021b227656208b012076511b22021b228c012076208b0120021b228d0110a101200341e8006a200d6a29030021642003290368216502402003290378228e01208c017d228f01206f7c226f200341e8006a200e6a290300208d017d208e01208c0154ad7d20767c206f208f0154ad7c228c0184500d00208601208a017d228d01208801208b017d208601208a0154ad7d22880184500d00200341b0086a20326a2802002263450d00200341b0086a20116a2802002202206320266c6a216e0340200341186a20022903002002200d6a290300206f208c0110fa02200341086a2003290318200341186a200d6a290300208d0120880110f902200341286a200220106a2003290308200341086a200d6a29030010a10120232064200341286a200d6a2903007c206520032903287c22762065542263ad7c22652063206520645420652064511b22631b21642023207620631b2165200220266a2202206e470d000b0b2003206537038805200320643703900520034188056a105e02402077280200450d00200341b0086a20116a28020010160b200341b0076a10a70120692005370300200320053703f003204a2038200341f0036a1002206a2069290300370300200320032903f0033703f006200341f0066a2010203a200f10012003200f3a00b00820692005370300200320053703f003204b2041200341f0036a1002206a2069290300370300200320032903f0033703f006200341f0066a2010200341b0086a20171001200341e0046a200e6a2066290300370300200341e0046a20106a2067290300370300200341e0046a200d6a2068290300370300200320032903b0073703e004410221020b204c208901370300200341b0086a20266a208701370300207920023a0000203020032903e004370000202e20032f01c0053b0000204e206b3602002030200d6a200341e0046a200d6a290300370000203020106a200341e0046a20106a2903003700002030200e6a200341e0046a200e6a290300370000202e204f6a200341c0056a204f6a2d00003a0000200320153a00b008200341b0086a105a2090010d010c020b209001450d010b20910110160b206220176a2262202b470d180c250b209b012102024002400340200220126a280200219b01200220096a28020021632002200a6a290300216420022903002165200341e0046a20086a226e20022094016a290200370300200341e0046a200b6a227720022095016a290200370300200341e0046a20096a227520022096016a290200370300200341e0046a200a6a2278200220086a29020037030020032002200b6a2902003703e0042063450d02200341b0086a20126a209b01360200200341b0086a20096a227a2063360200200c20032903e004370200200c200a6a22792078290300370200200c20096a22782075290300370200200c200b6a22752077290300370200200c20086a2277206e290300370200200320643703b808200320653703b00802400240209e0120034190086a200810f802450d0020034198036a20086a207729020037030020034198036a200b6a207529020037030020034198036a20096a207829020037030020034198036a200a6a20792902003703002003200c29020037039803209b01219701206521762064216f0c010b0240209b01450d00206310160b410021630b20034188056a20086a229b0120034198036a20086a29030037030020034188056a200b6a226e20034198036a200b6a29030037030020034188056a20096a227720034198036a20096a29030037030020034188056a200a6a227520034198036a200a6a290300370300200320032903980337038805024020630d0020022093016a2202209201470d010c020b0b200341f0056a20086a2278209b01290300370300200341f0056a200b6a229b01206e290300370300200341f0056a20096a226e2077290300370300200341f0056a200a6a2277207529030037030020032003290388053703f005200341b0086a20086a22752078290300370300200c209b01290300370300207a206e290300370300200341b0086a200a6a22782077290300370300200320032903f0053703b0080240209801209a01470d00209a01209f016a229801209a01490d1e209a01209f0174229b01209801209801209b01491b229801ad202a862264201988a70d1e2064a7229b0120a001480d1e0240209a01450d00209901209a01209c0174209b0110152299010d010c1a0b209b011013229901450d190b20022093016a219b01209901209a01209c01746a226e206f370308206e2076370300206e2063360210206e20126a209701360200206e2094016a2075290300370200206e2095016a200c290300370200206e2096016a207a290300370200206e20086a2078290300370200206e200b6a20032903b008370200209a01209f016a219a01209d012002470d1a0b2092012202209201470d1d0c1e0b200241c0006a2202209201460d1d0c1c0b207b450d00207410160b41b6e7c20041331029000b207841011014000b207841011014000b206e41011014000b20850141081014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411241011014000b413241011014000b411241011014000b413241011014000b411241011014000b413241011014000b41ede9c10041131029000b200241081014000b200241081014000b4180eac1002002207510a801000b209b0141081014000b410021020c010b410121020c000b0b100f000b1010000b201e20204106746a210b20034188056a41086a21040340200241146a2802002107200241106a280200210620034188056a41206a2208200241386a29020037030020034188056a41186a2209200241306a29020037030020034188056a41106a220a200241286a2902003703002004200241206a2902003703002003200241186a290200370388052006450d01200241c0006a2102200341e0046a41206a2008290300370300200341e0046a41186a2009290300370300200341e0046a41106a200a290300370300200341e0046a41086a200429030037030020032003290388053703e00402402007450d00200610160b200b2002470d000b0b0240201f450d00201e10160b20990121020b20034180046a41086a2206420037030020034200370380044193ecc200411520034180046a1002200341f0036a41086a200629030037030020032003290380043703f003200341003602b808200342013703b0082002209a01200341b0086a10980120032802b4082106200341f0036a411020032802b008220420032802b808100102402006450d00200410160b0240209a01450d00209a014106742106200241106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b41002104209801450d0020990110160b411a2106410021020b20184101470d020b20020d01201a450d010b201410160b4100210d41012107410121094101210a410121084101210b4101210c0c070b201da7450d00202410160b410121090b4101210a0b410121080b4101210b0b4101210c0b4101210d0b410121100b410121110b4101210f0b410121140b02402001280200417f6a220241104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e110015151506051504020307080a15150901000b2007450d14200141086a1093010c140b2014450d13200141086a2d0000220241064b0d0f024020020e0714141414001112140b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d13200141d0006a280200450d13200210160c130b200b450d12200141086a2d00004101470d120240200141106a280200450d002001410c6a28020010160b02402001411c6a280200450d00200141186a28020010160b200141286a280200450d12200141246a28020010160c120b200c450d11200141086a2d00004103470d11200141d0006a280200450d11200141cc006a28020010160c110b2008450d10200141086a280200450d10200128020410160c100b200a450d0f200141046a10a9010c0f0b2009450d0e200141086a2d00002202410e4b0d0d20024106470d0e200141106a280200450d0e2001410c6a28020010160c0e0b200d450d0d200141086a2d00004101470d0d200141106a280200450d0d2001410c6a28020010160c0d0b2010450d0c200141086a280200450d0c200128020410160c0c0b200f450d0b200141086a28020022024102460d0120024101470d0b200141106a280200450d0b2001410c6a28020010160c0b0b2011450d0a200141086a2d0000417f6a220241054b0d0a024020020e06000503040206000b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d0a200141286a280200450d0a200210160c0a0b200141106a280200450d092001410c6a28020010160c090b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d08200141286a280200450d08200210160c080b200141106a280200450d072001410c6a28020010160c070b200141106a280200450d062001410c6a28020010160c060b200141106a280200450d052001410c6a28020010160c050b02402001412c6a2802002202450d00200141306a280200450d00200210160b0240200141386a2802002202450d002001413c6a280200450d00200210160b200141c4006a2802002202450d04200141c8006a280200450d04200210160c040b200141106a280200450d032001410c6a28020010160c030b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d02200141d0006a280200450d02200210160c020b200141106a280200450d012001410c6a28020010160c010b200141106a280200450d002001410c6a28020010160b2000200636020420002004360200200341b0096a24000b976d05027f017e047f0a7e0c7f230041f0036b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000417f6a220441074b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020040e080005020301060704000b200141086a2903002105200241086a2800002101200241046a280000210420022d00002106200341dc026a41026a2207200241036a2d00003a0000200341e0026a41086a2208200241146a290000370300200341e0026a410d6a2209200241196a290000370000200320022f00013b01dc0220032002410c6a2900003703e0024101210220064101470d0a200341c0016a41026a20072d00003a0000200341e8016a41086a2008290300370300200341e8016a410d6a2009290000370000200320032f01dc023b01c001200320032903e0023703e801410021020c0b0b200341c0036a41086a22042001410c6a2802003602002003200141046a2902003703c00320022d00000d06200341e8016a41086a2004280200360200200320032903c0033703e801200341e8016a10b801410021040c590b20034188016a200141196a290000370300200341f0006a41106a200141116a290000370300200341f0006a41086a200141096a29000037030020032001290001370370200241086a2800002106200241046a280000210420022d00002101200341dc026a41026a2207200241036a2d00003a0000200341e0026a41086a2208200241146a290000370300200341e0026a410d6a2209200241196a290000370000200320022f00013b01dc0220032002410c6a2900003703e0024101210220014101470d06200341c0036a41026a20072d00003a0000200341e8016a41086a2008290300370300200341e8016a410d6a2009290000370000200320032f01dc023b01c003200320032903e0023703e801410021020c070b4128210641a7e6c200210420022d00000d57200141d8006a2903002105200141d0006a290300210a200141206a290300210b200141186a290300210c200141106a290300210d200141086a290300210e200141e4006a2802002104200141e0006a2802002106200141c8006a290300210f200141c0006a2903002110200141386a2903002111200141306a2903002112200141286a2903002113411110132202450d3b200241106a41002d00c28a413a0000200241086a41002900ba8a41370000200241002900b28a4137000020024111412210152201450d3c200141003a001120034190036a41086a2202420037030020034200370390032001411220034190036a1002200341e0026a41086a200229030037030020032003290390033703e002411010132202450d3d2002200e3700002002200d37000820024110412010152202450d3e20022004360014200220063600102002412041c00010152202450d3f2002200c370018200220113700382002201237003020022013370028200241206a200b370000200241c00041800110152202450d402002200a3700502002200f37004820022010370040200241d8006a2005370000200341e0026a4110200241e00010012002101620011016410021040c570b200341f0006a41186a2204200141196a290000370300200341f0006a41106a2206200141116a290000370300200341f0006a41086a2207200141096a2900003703002003200129000137037020022d00000d03200341a0016a41186a2004290300370300200341a0016a41106a2006290300370300200341a0016a41086a2007290300370300200320032903703703a001200341e8016a200341a0016a109101200341e8016a41086a290300210520032802e8014101470d0e20032802ec0121042005a721060c560b200341b8016a200141196a290000370300200341a0016a41106a200141116a290000370300200341a0016a41086a200141096a290000370300200320012900013703a001200241086a2800002106200241046a280000210420022d00002101200341dc026a41026a2207200241036a2d00003a0000200341e0026a41086a2208200241146a290000370300200341e0026a410d6a2209200241196a290000370000200320022f00013b01dc0220032002410c6a2900003703e0024101210220014101470d07200341c0036a41026a20072d00003a0000200341e8016a41086a2008290300370300200341e8016a410d6a2009290000370000200320032f01dc023b01c003200320032903e0023703e801410021020c080b20022d00000d0120034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d13200342103702ec012003200341e0026a3602e801200341e0006a200341e8016a10122003280260450d2e20032802642206450d12200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2d20032d0090030d2e200141016a22012006490d000b200341f0016a200236020020010d520c140b20022d0000450d080b41a7e6c2002104412821060c520b412a210641cfe6c20021040b20034194016a41026a200341c0036a41026a2d00003a000020034190036a41086a200341e8016a41086a29030037030020034190036a41106a200341e8016a41106a290300370300200320032f01c0033b019401200320032903e8013703900320020d50200341b3016a20034190036a41086a290300370000200341b8016a2003419d036a290000370000200320032f0194013b01a001200320063600a701200320043600a30120032003290390033700ab01200320034196016a2d00003a00a201200341e8016a200341a0016a109101200341e8016a41086a290300210520032802e8014101470d0620032802ec0121042005a721060c500b41cfe6c2002104412a21010b20034194016a41026a200341c0016a41026a2d00003a000020034190036a41086a200341e8016a41086a29030037030020034190036a41106a200341e8016a41106a290300370300200320032f01c0013b019401200320032903e801370390032002450d02200121060c4e0b41cfe6c2002104412a21060b20034194016a41026a200341c0036a41026a2d00003a000020034190036a41086a200341e8016a41086a29030037030020034190036a41106a200341e8016a41106a290300370300200320032f01c0033b019401200320032903e8013703900320020d4c200341d3016a20034190036a41086a2202290300370000200341c0016a41186a2003419d036a290000370000200320032f0194013b01c001200320063600c701200320043600c30120032003290390033700cb01200320034196016a2d00003a00c201200341e8016a200341c0016a109101200341e8016a41086a290300210520032802e8014101470d0320032802ec0121042005a721060c4c0b41132106200341c0036a41136a20034198036a290300370000200341d8036a2003419d036a290000370000200320032f0194013b01c003200320013600c703200320043600c30320032003290390033700cb03200320034196016a2d00003a00c203200341e8016a200341c0036a10910141ff87c100210420032802e8014101470d4b411710132202450d352002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d36200220032903c0033700172002412f6a200341d8036a290300370000200241276a200341c0036a41106a2903003700002002411f6a200341c0036a41086a29030037000020034190036a41086a2201420037030020034200370390032002413720034190036a1002200341e8016a41086a200129030037030020032003290390033703e801200341e8016a411041acf1c3004100410010002101200210162001417f460d080c4a0b20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e0020240200341e0026a411041acf1c300410041001000417f460d00200342103702ec012003200341e0026a3602e801200341e8006a200341e8016a10122003280268450d28200328026c2206450d00200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2720032d0090030d28200141016a22012006490d000b200341f0016a20023602000b41002104200341003602f00120034281808080703703e801200341e8016a10b8010c4a0b200341e8016a200341f0006a108c0120032903e8014201520d02200341c0036a41086a2202200341e8016a41186a290300370300200341c0036a41106a2201200341e8016a41206a290300370300200341c0036a41186a220420034190026a290300370300200341c0036a41206a220620034198026a2903003703002003200341e8016a41106a2903003703c00320032903f0012005520d0b200341e0026a41206a22072006290300370300200341e0026a41186a22062004290300370300200341e0026a41106a22042001290300370300200341e0026a41086a22012002290300370300200320032903c0033703e002200341c0016a41206a22022007290300370300200341c0016a41186a22072006290300370300200341c0016a41106a22062004290300370300200341c0016a41086a22042001290300370300200320032903e0023703c00120034190036a41206a200229030037030020034190036a41186a200729030037030020034190036a41106a200629030037030020034190036a41086a2004290300370300200320032903c00137039003200341e8016a10b90120032903e8014201520d19200341a0026a290300210a200341e8016a41186a200341b0036a2202290300370300200341e8016a41106a20034190036a41186a2201290300370300200341f0016a20034190036a41106a220429030037030020032003290398033703e801200341e8016a2005200a10ba01200341f2016a2004290300370100200341fa016a200129030037010020034182026a20022903003701002003418d043b01e80120032003290398033701ea01200341e8016a105a410021040c490b20024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341e0026a411041acf1c300410041001000417f460d04200342103702c4032003200341e0026a3602c003200341e8016a200341c0036a102520032802e8012209450d372009200341e8016a41086a28020041306c22016a210420032802ec012114200921020240200141c001490d00200341086a2108200341386a2107200341e8006a210620034198016a21012009210203400240024020012002460d00200241086a200341a0016a412010f8020d010b20022903002005510d0c0b0240024020062002460d00200241386a200341a0016a412010f8020d010b200241306a2903002005510d0c0b0240024020072002460d00200241e8006a200341a0016a412010f8020d010b200241e0006a2903002005510d0c0b0240024020082002460d0020024198016a200341a0016a412010f8020d010b20024190016a2903002005510d0c0b2004200241c0016a22026b41bf014b0d000b0b024020022004460d00034002400240200241086a2201200341a0016a460d002001200341a0016a412010f8020d010b20022903002005510d0c0b200141286a22022004470d000b0b419589c1002104411d21062014450d48200910160c480b200341e8016a200341a0016a108c0120032903e8014201520d01200341c0036a41086a2202200341e8016a41186a290300370300200341c0036a41106a2201200341e8016a41206a290300370300200341c0036a41186a220420034190026a290300370300200341c0036a41206a220620034198026a2903003703002003200341e8016a41106a2903003703c00320032903f0012005520d0b200341e0026a41206a22072006290300370300200341e0026a41186a22062004290300370300200341e0026a41106a22042001290300370300200341e0026a41086a22012002290300370300200320032903c0033703e002200341c0016a41206a22022007290300370300200341c0016a41186a22072006290300370300200341c0016a41106a22062004290300370300200341c0016a41086a22042001290300370300200320032903e0023703c00120034190036a41206a200229030037030020034190036a41186a200729030037030020034190036a41106a200629030037030020034190036a41086a2004290300370300200320032903c00137039003200341e8016a10b90120032903e8014201520d17200341a0026a290300210a200341e8016a41186a200341b0036a290300370300200341e8016a41106a20034190036a41186a290300370300200341f0016a20034190036a41106a29030037030020032003290398033703e801200341e8016a2005200a10ba01410021040c470b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010c010b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010b418d8ac1002104410c21060c440b419589c1002104411d21060c430b20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d0d200342103702ec012003200341e0026a3602e801200341286a200341e8016a10122003280228450d25200328022c2206450d0c200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2420032d0090030d25200141016a22012006490d000b200341f0016a200236020020010d0e0c130b410021020b20020d3e0b20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341e0026a411041acf1c300410041001000417f460d02200342103702ec012003200341e0026a3602e801200341d8006a200341e8016a10122003280258450d1f200328025c2206450d06200341f0016a28020021024200210520032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d1e20032d0090030d1f20054280808080107c2105200141016a22012006490d000b200341f0016a20023602000c070b02402014450d00200910160b200341e8016a200341a0016a10910120032802e8014101470d04411710132202450d302002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d31200220032903a0013700172002412f6a200341b8016a290300370000200241276a200341a0016a41106a2903003700002002411f6a200341a0016a41086a29030037000020034190036a41086a2201420037030020034200370390032002413720034190036a1002200341e8016a41086a200129030037030020032003290390033703e801200341e8016a411041acf1c3004100410010002101200210162001417f470d3d20034190036a41086a22024200370300200342003703900341ea88c100411520034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d0c200342103702ec012003200341e0026a3602e801200341d0006a200341e8016a10122003280250450d2c20032802542206450d0b200341f0016a280200210220032802ec01210720032802e8012108410021010340200341003a00900320022008200720034190036a41012002100041016a41014b22046a21022004450d2b20032d0090030d2c200141016a22012006490d000b200341f0016a200236020020010d0d0c0f0b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010c020b200341003602f00120034281808080703703e801410121020c050b200341c0016a41206a200341e0026a41206a290300370300200341c0016a41186a200341e0026a41186a290300370300200341c0016a41106a200341e0026a41106a290300370300200341c0016a41086a200341e0026a41086a290300370300200320032903e0023703c0010b41998ac1002104411921060c3a0b41ff87c1002104411321060c390b420021050b200320052006ad843702ec01200341013602e8012005422088a72202417f460d2e200241016a21020b200341f0016a2002360200200341e8016a10b801410021040c360b410021020b2002450d050b200341e8016a10b90120032903e8014201520d03024002400240200341c0036a200341b8026a290300220a200341c0026a290300220b10a001450d00200341086a200341c0036a200a200b10a101200341e8016a41186a200341086a41186a290300370300200320032903183703f801410821012003200341086a41086a2903003703f001200320032903083703e801200341e8016a105e20034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e00241002102200341e0026a411041acf1c300410041001000417f460d0120034210370294032003200341e0026a36029003200341e8016a20034190036a102520032802e8012201450d2a200320032902ec01220a3702c401200320013602c001200a422088a7220641016a2107200aa721020c020b41a688c1002104412121060c350b200341003602c801200342083703c00141012107410021060b20034190036a41086a220442003703002003420037039003419be8c200410d20034190036a1002200341e0026a41086a2208200429030037030020032003290390033703e0024200210a0240200341e0026a411041acf1c300410041001000417f460d00200342003703e801200341e0026a4110200341e8016a41084100100041016a41084d0d2420032903e801210a0b20044200370300200342003703900341ff88c100411620034190036a10022008200429030037030020032003290390033703e00202400240200341e0026a411041acf1c300410041001000417f460d00200342003703e801200341e0026a4110200341e8016a41084100100041016a41084d0d2620032903e801210b0c010b42ac02210b0b200341e8016a41186a2208200341c0036a41186a290300370300200341e8016a41106a2209200341c0036a41106a290300370300200341e8016a41086a2214200341c0036a41086a290300370300200320032903c0033703e801024020022006470d00200241016a22042002490d2b20024101742215200420042015491b2204ad42307e220c422088a70d2b200ca722154100480d2b2002450d062001200241306c201510152201450d070c300b200221040c300b410021020b2002450d020b200341e8016a10b90120032903e8014201520d00200341fc016a350200210b20032902f401210a20032802f001210120032802cc022102200341f0006a109a01200328027820024f0d04200341c0006a200341a0016a108e012003290340200a4220862001ad845a200341c0006a41086a290300220c200b422086200a42208884220a5a200c200a511b0d0641c189c1002104411b210620032802740d050c300b41d488c1002104411621060c2f0b41c788c1002104410d21060c2e0b2015101322010d290b201541081014000b41b289c1002104410f21062003280274450d2b0b200328027010160c2a0b200341c0036a109a01200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a290300370300200341e8016a41086a200341a0016a41086a290300370300200320032903a0013703e80102400240024020032802c403221620032802c8032202470d00200241016a22012002490d2320024101742204200120012004491b2216ad420586220a422088a70d23200aa722014100480d232002450d0120032802c0032002410574200110152217450d020c210b20032802c00321170c210b2001101322170d1f0b200141011014000b200341fc016a4101360200200341023602c403200341c8d7c3003602c003200342013702ec01200341d0d7c3003602e8012003200341c0036a3602f801200341e8016a41c48ac1001046000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b411141011014000b412241011014000b411041011014000b412041011014000b41c00041011014000b41800141011014000b411741011014000b413741011014000b200341f0016a200236020041b6e7c20041331029000b200341f0016a20023602000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411741011014000b413741011014000b41b6e7c20041331029000b200320163602c403200320173602c0030b200341c0036a41086a200241016a2204360200201720024105746a220120032903e801370000200141186a200341e8016a41186a290300370000200141106a200341e8016a41106a290300370000200141086a200341e8016a41086a2903003700000240024002400240411710132201450d002001410f6a41002900e3f740370000200141086a41002900dcf740370000200141002900d4f74037000020014117412e10152215450d01201541003a001720034190036a41086a2201420037030020034200370390032015411820034190036a1002200341e0026a41086a200129030037030020032003290390033703e002200341003602f001200342013703e801200320043602900320034190036a200341e8016a10180240024002402004450d00200241057441206a21084100200341e8016a41086a28020022016b210620032802e801210920032802ec0121072017210203400240200720066a411f4b0d00200141206a22042001490d0920074101742214200420042014491b22044100480d09024002402007450d00200920072004101522090d010c060b200410132209450d050b200421070b200920016a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200641606a2106200141206a2101200241206a2102200841606a22080d000b200341f0016a2001360200200320073602ec01200320093602e8010c010b200341e8016a41086a280200210120032802ec01210720032802e80121090b200341e0026a411020092001100102402007450d00200910160b2015101602402016450d00201710160b200341c0036a200510bb01200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a290300370300200341e8016a41086a200341a0016a41086a290300370300200320032903a0013703e80102400240024020032802c403221620032802c8032201470d00200141016a22022001490d0820014101742204200220022004491b2216ad420586220a422088a70d08200aa722024100480d082001450d0120032802c0032001410574200210152217450d020c060b20032802c00321170c060b2002101322170d040b200241011014000b200441011014000b411741011014000b412e41011014000b200320163602c403200320173602c0030b200341c0036a41086a200141016a2204360200201720014105746a220220032903e801370000200241186a200341e8016a41186a290300370000200241106a200341e8016a41106a290300370000200241086a200341e8016a41086a2903003700000240024002400240024002400240024002400240411b10132202450d00200241176a41002800f38941360000200241106a41002900ec8941370000200241086a41002900e48941370000200241002900dc89413700002002411b413610152215450d012015200537001b20034190036a41086a2202420037030020034200370390032015412320034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341003602f001200342013703e801200320043602900320034190036a200341e8016a101802400240024002402004450d00200141057441206a21084100200341e8016a41086a28020022016b210620032802e801210920032802ec0121072017210203400240200720066a411f4b0d00200141206a22042001490d1020074101742214200420042014491b22044100480d10024002402007450d00200920072004101522090d010c060b200410132209450d050b200421070b200920016a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200641606a2106200141206a2101200241206a2102200841606a22080d000b200341f0016a2001360200200320073602ec01200320093602e8010c010b200341e8016a41086a280200210120032802ec01210720032802e80121090b200341e0026a411020092001100102402007450d00200910160b2015101602402016450d00201710160b200341306a200341a0016a108e01200342f2deb1abf6eb9cbaeb003703980120034198016a200341a0016a2003290330200341306a41086a290300427f10bc01200341e8016a41186a2202200341a0016a41186a290300370300200341e8016a41106a2201200341a0016a41106a290300370300200341e8016a41086a2204200341a0016a41086a290300370300200320032903a0013703e8014200210a20034190036a41086a220642003703002003420037039003419be8c200410d20034190036a1002200341e0026a41086a200629030037030020032003290390033703e0020240200341e0026a411041acf1c300410041001000417f460d00200342003703c003200341e0026a4110200341c0036a41084100100041016a41084d0d0220032903c003210a0b200341c0036a41186a2002290300370300200341c0036a41106a2001290300370300200341c0036a41086a2004290300370300200320032903e8013703c003411710132202450d042002410f6a41002900ccf740370000200241086a41002900c5f740370000200241002900bdf74037000020024117413710152202450d05200220032903a0013700172002412f6a200341b8016a290300370000200241276a200341a0016a41106a2903003700002002411f6a200341a0016a41086a29030037000020034190036a41086a2201420037030020034200370390032002413720034190036a1002200341e0026a41086a200129030037030020032003290390033703e002410810132201450d0620012005370000200341003a00900320014108411010152201450d07200120032d0090033a000820014110412910152201450d08200120032903c003370009200141216a200341d8036a290300370000200141196a200341c0036a41106a290300370000200141116a200341c0036a41086a2903003700002001412941d20010152201450d092001200a370029200341e0026a4110200141311001200110162002101620034190036a41086a22024200370300200342003703900341f789c100411620034190036a1002200341e0026a41086a200229030037030020032003290390033703e0024100210202400240200341e0026a411041acf1c300410041001000417f460d00200342103702c4032003200341e0026a3602c003200341e8016a200341c0036a101120032802e8012215450d0c200341e8016a41086a2204280200210120032802ec012102200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a2903003703002004200341a0016a41086a290300370300200320032903a0013703e8012002211720012002460d010c0d0b200341e8016a41186a200341a0016a41186a290300370300200341e8016a41106a200341a0016a41106a290300370300200341e8016a41086a200341a0016a41086a290300370300200320032903a0013703e801410121150b200241016a22012002490d0c20024101742204200120012004491b2217ad4205862205422088a70d0c2005a722044100480d0c024002402002450d002002210120152002410574200410152215450d010c0d0b200221012004101322150d0c0b200441011014000b200441011014000b41b6e7c20041331029000b411b41011014000b413641011014000b411741011014000b413741011014000b410841011014000b411041011014000b412941011014000b41d20041011014000b41b6e7c20041331029000b2015200141057422066a220220032903e801370000200241186a200341e8016a41186a290300370000200241106a200341e8016a41106a290300370000200241086a200341e8016a41086a220229030037000020034190036a41086a22044200370300200342003703900341f789c100411620034190036a1002200341e0026a41086a200429030037030020032003290390033703e002200341003602f001200342013703e8012003200141016a22013602c003200341c0036a200341e8016a1018024002402001450d00200641206a21084100200228020022016b210620032802e801210920032802ec0121072015210203400240200720066a411f4b0d00200141206a22042001490d0420074101742214200420042014491b22044100480d04024002402007450d00200920072004101522090d010c070b200410132209450d060b200421070b200920016a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200641606a2106200141206a2101200241206a2102200841606a22080d000b200341f0016a2001360200200320073602ec01200320093602e8010c010b2002280200210120032802ec01210720032802e80121090b200341e0026a411020092001100102402007450d00200910160b02402017450d00201510160b4108210620034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e0024100210902400240024002400240024002400240200341e0026a411041acf1c300410041001000417f460d00200342103702c4032003200341e0026a3602c003200341e8016a200341c0036a102520032802e8012206450d0a20032802ec01211841302107200341f0016a280200220941306c22080d010c020b4100211841302107410041306c2208450d010b200341e8016a41086a2104410021010340200341e8016a41286a200620016a220241286a290300370300200341e8016a41206a200241206a290300370300200341e8016a41186a200241186a290300370300200341e8016a41106a200241106a2903003703002004200241086a290300370300200320022903003703e8012004200341a0016a412010f8020d022008200120076a2201470d000b0b41082115410021162018450d0120061016410021170c040b200341c0036a41286a2204200341e8016a41286a290300370300200341c0036a41206a2207200341e8016a41206a290300370300200341c0036a41186a2208200341e8016a41186a290300370300200341c0036a41106a2214200341e8016a41106a290300370300200341c0036a41086a2215200341e8016a41086a290300370300200320032903e8013703c00320034190036a41286a2217200429030037030020034190036a41206a2204200729030037030020034190036a41186a2207200829030037030020034190036a41106a2208201429030037030020034190036a41086a22142015290300370300200320032903c00337039003200341e0026a41286a22162017290300370300200341e0026a41206a22172004290300370300200341e0026a41186a22042007290300370300200341e0026a41106a22072008290300370300200341e0026a41086a2208201429030037030020032003290390033703e002413010132215450d08201520032903e002370300201541286a2016290300370300201541206a2017290300370300201541186a2004290300370300201541106a2007290300370300201541086a2008290300370300200941306c41506a2001460d01200241306a21192006200941306c6a221441506a211a200341e8016a41086a2101410121164101211703402019210202400340200341e8016a41286a2204200241286a290300370300200341e8016a41206a2207200241206a290300370300200341e8016a41186a2208200241186a290300370300200341e8016a41106a2209200241106a2903003703002001200241086a290300370300200320022903003703e8012001200341a0016a412010f8020d012014200241306a2202470d000c050b0b200341c0036a41286a221b2004290300370300200341c0036a41206a22192007290300370300200341c0036a41186a221c2008290300370300200341c0036a41106a221d2009290300370300200341c0036a41086a221e2001290300370300200320032903e8013703c00320034190036a41286a221f201b29030037030020034190036a41206a221b201929030037030020034190036a41186a2219201c29030037030020034190036a41106a221c201d29030037030020034190036a41086a221d201e290300370300200320032903c003370390032004201f2903003703002007201b290300370300200820192903003703002009201c2903003703002001201d29030037030020032003290390033703e801024020172016470d00201641016a22172016490d062016410174221b20172017201b491b2217ad42307e2205422088a70d062005a7221b4100480d0602402016450d002015201641306c201b101522150d010c0a0b201b10132215450d090b200241306a21192015201641306c6a221b20032903e801370300201b41286a2004290300370300201b41206a2007290300370300201b41186a2008290300370300201b41106a2009290300370300201b41086a2001290300370300201641016a2116201a2002470d000c030b0b410021170c020b41012116410121170b2018450d00200610160b200320163602f001200320173602ec01200320153602e80120034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341103602c4032003200341e0026a3602c003200341e8016a200341c0036a101702402017450d00201510160b200341f2016a200341a0016a41086a290300370100200341fa016a200341a0016a41106a29030037010020034182026a200341a0016a41186a2903003701002003418d023b01e801200320032903a0013701ea01200341e8016a105a2003280274450d07200328027010160c070b1010000b200441011014000b41b6e7c20041331029000b201b41081014000b413041081014000b200320043602c401200320013602c0010b2001200641306c6a22022005370300200220032903e801370308201429030021052009290300210c2008290300210d2002200b200a7c370328200241206a200d370300200241186a200c370300200241106a2005370300200341c0016a41086a200736020020034190036a41086a22024200370300200342003703900341ebf7c000411820034190036a1002200341e0026a41086a200229030037030020032003290390033703e002200341103602ec012003200341e0026a3602e801200341c0016a200341e8016a101702402004450d00200110160b200341f2016a200341c8036a290300370100200341fa016a200341d0036a29030037010020034182026a200341d8036a2903003701002003410d3b01e801200320032903c0033701ea01200341e8016a105a410021040c020b410021040c010b419288c1002104411421060b2000200636020420002004360200200341f0036a24000bb50d01077f230041e0026b22042400200141086a2800002105200141046a280000210620012d00002107200441f0006a41026a2208200141036a2d00003a0000200441b0016a41086a2209200141146a290000370300200441b0016a410d6a220a200141196a290000370000200420012f00013b017020042001410c6a2900003703b001410121010240024020074101470d00200441ec016a41026a20082d00003a0000200441f0016a41086a2009290300370300200441f0016a410d6a200a290000370000200420042f01703b01ec01200420042903b0013703f001410021010c010b41cfe6c2002106412a21050b200441ac016a41026a200441ec016a41026a2d00003a0000200441286a41086a200441f0016a41086a290300370300200441286a41106a200441f0016a41106a290300370300200420042f01ec013b01ac01200420042903f00137032802400240024002400240024020010d00200441086a41136a200441286a41086a290300370000200441086a41186a200441356a290000370000200420042f01ac013b01082004200536000f2004200636000b200420042903283700132004200441ac016a41026a22012d00003a000a200441f0016a2002108b010240024020042d00b0024102470d00410121074136210541a4c9c30021060c010b200441ec016a41026a20042d00f2013a0000200441b0016a41086a200441f0016a41136a290000370300200441c0016a2004418b026a290000370300200441b0016a41186a20044193026a290000370300200441d0016a2004419b026a290000370300200441d8016a200441a3026a290000370300200441de016a200441a9026a290000370100200420042f01f0013b01ec01200420042900fb013703b0014100210720042800f701210520042800f30121060b2001200441ec016a41026a2d00003a0000200441f0006a41086a200441b0016a41086a290300370300200441f0006a41106a2201200441b0016a41106a290300370300200441f0006a41186a200441b0016a41186a290300370300200441f0006a41206a2208200441b0016a41206a290300370300200441f0006a41286a2209200441b0016a41286a290300370300200441f0006a41306a200441b0016a41306a290300370300200420042f01ec013b01ac01200420042903b00137037020070d002004413b6a200441f0006a41086a290300370000200441c3006a2001290300370000200441cb006a200441f0006a41186a290300370000200441d3006a2008290300370000200441db006a2009290300370000200441e1006a2004419e016a290100370000200420042f01ac013b01282004200536002f2004200636002b200420042903703700332004200441ae016a2d00003a002a0240200441286a41206a200441086a412010f802450d00419ecac300210641c50021050c010b200420033a0068200441f0016a41386a200441286a41386a290300370300200441f0016a41306a200441286a41306a290300370300200441f0016a41286a200441286a41286a290300370300200441f0016a41206a200441286a41206a290300370300200441f0016a41186a200441286a41186a290300370300200441f0016a41106a200441286a41106a290300370300200441f0016a41086a200441286a41086a290300370300200420042903283703f001412710132201450d012001411f6a41002900b4d943370000200141186a41002900add943370000200141106a41002900a5d943370000200141086a410029009dd94337000020014100290095d9433700002001412741ce0010152205450d0220052002370027200441b0016a41086a22014200370300200442003703b0012005412f200441b0016a1002200441f0006a41086a2001290300370300200420042903b001370370412010132201450d03200120042903f001370000200141186a200441f0016a41186a290300370000200141106a200441f0016a41106a290300370000200141086a200441f0016a41086a2903003700002001412041c00010152201450d042001200429039002370020200141386a200441f0016a41386a290300370000200141306a200441f0016a41306a290300370000200141286a200441f0016a41286a290300370000200141c00041800110152201450d05200120033a0040200441f0006a4110200141c10010012001101620051016200441f0016a41106a2002370300200441f8016a4181023b0100200441103a00f001200441f0016a105a410021060b2000200536020420002006360200200441e0026a24000f0b412741011014000b41ce0041011014000b412041011014000b41c00041011014000b41800141011014000bdb8a0104037f027e087f0b7e230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417f6a220541104b0d00024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e11000b0709040c0f0a11061003050e020801000b200141106a2903002106200141086a2903002107200241086a2800002108200241046a280000210520022d0000210420034188036a41026a2209200241036a2d00003a0000200341e8046a41086a220a200241146a290000370300200341e8046a410d6a220b200241196a290000370000200320022f00013b01880320032002410c6a2900003703e8044101210220044101470d14200341c0036a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0188033b01c003200320032903e80437038805410021020c150b20022d00000d10200320012d00013a008805200341b0066a41086a22024200370300200342003703b00641aa9ec2004119200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411020034188056a410110010c95010b20022d00000d0f200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d1a2003421037028c052003200341c0066a3602880520034188026a20034188056a1083022003290388024203510d55200342083703e8044100210c200341003602f004200341b0066a41086a22024200370300200342003703b00641e2a5c200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d28200342103702e4032003200341c0066a3602e00320034188056a200341e0036a1011200328028805220d450d5a200328028c05210c20034190056a2802002202450d290c8e010b20022d00000d0e200141046a2802002105200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d1a2003421037028c052003200341c0066a36028805200341d8016a20034188056a10830220032903d8014203520d1641b6e7c20041331029000b20022d00000d0d200141086a290300210742002106200341b0066a41086a22024200370300200342003703b006419be8c200410d200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003420037038805200341c0066a411020034188056a41084100100041016a41084d0d4f20032903880521060b41a8bec2002105411f2108200620075a0d1620032007370390052003420237038805200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602e4032003200341c0066a3602e00320034188056a200341e0036a1081020c080b20022d00000d0c200141046a2802002105200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a22082002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d192003421037028c052003200341c0066a36028805200341e8016a20034188056a10830220032903e8014203520d1441b6e7c20041331029000b20022d00000d0b200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00641002105200341c0066a411041acf1c300410041001000417f460d192003421037028c052003200341c0066a36028805200341b8016a20034188056a10830220032903b8014203520d1341b6e7c20041331029000b200341a0026a41186a200141196a290000370300200341a0026a41106a200141116a290000370300200341a0026a41086a200141096a290000370300200320012900013703a002200341c0026a41186a200141396a290000370300200341c0026a41106a200141316a290000370300200341c0026a41086a200141296a2900003703002003200141216a2900003703c002200141c4006a280200210a200141c8006a2802002104200141cc006a280200210b200241086a2800002108200241046a280000210520022d0000210920034188036a41026a220f200241036a2d00003a0000200341e8046a41086a220e200241146a290000370300200341e8046a410d6a220c200241196a290000370000200320022f00013b01880320032002410c6a2900003703e8044101210120094101470d0b20034190066a41026a200f2d00003a000020034188056a41086a200e29030037030020034188056a410d6a200c290000370000200320032f0188033b019006200320032903e80437038805410021010c0c0b20022d00000d09200341b0066a41086a22024200370300200342003703b0064193ecc2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d18200342103702e4032003200341c0066a3602e00320034188056a200341e0036a10202003280288052202450d502003200329028c0537028c0520032002360288050c190b20022d00000d08200141086a290300210742002106200341b0066a41086a22024200370300200342003703b006419be8c200410d200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003420037038805200341c0066a411020034188056a41084100100041016a41084d0d4b20032903880521060b41a8bec2002105411f2108200620075a0d1120032007370390052003420037038805200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602e4032003200341c0066a3602e00320034188056a200341e0036a1081020c030b20022d00000d07200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d182003421037028c052003200341c0066a3602880520034198016a20034188056a1083022003290398014203520d0f41b6e7c20041331029000b200141306a2903002106200141286a2903002107200341b8036a200141196a290000370300200341a0036a41106a200141116a290000370300200341a0036a41086a200141096a290000370300200320012900013703a003200241086a2800002108200241046a280000210520022d0000210420034188036a41026a2209200241036a2d00003a0000200341e8046a41086a220a200241146a290000370300200341e8046a410d6a220b200241196a290000370000200320022f00013b01880320032002410c6a2900003703e8044101210220044101470d0b20034190066a41026a20092d00003a000020034188056a41086a200a29030037030020034188056a410d6a200b290000370000200320032f0188033b019006200320032903e80437038805410021020c0c0b20022d00000d05200141086a290300210742002106200341b0066a41086a22024200370300200342003703b006419be8c200410d200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003420037038805200341c0066a411020034188056a41084100100041016a41084d0d4920032903880521060b41a8bec2002105411f2108200620075a0d0e20032007370390052003420137038805200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602e4032003200341c0066a3602e00320034188056a200341e0036a1081020b4100210520012d00004103460d8a010c8b010b20022d00000d03200141106a2903002106200141086a2903002107200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00641002105200341c0066a411041acf1c300410041001000417f460d152003421037028c052003200341c0066a36028805200341f8016a20034188056a10830220032903f8014203520d0b41b6e7c20041331029000b20022d00000d02200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d152003421037028c052003200341c0066a3602880520034188016a20034188056a1083022003290388014203520d0a41b6e7c20041331029000b20022d00000d01200141086a2903002106200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d152003421037028c052003200341c0066a36028805200341c8016a20034188056a10830220032903c8014203520d0941b6e7c20041331029000b20022d0000450d070b41a7e6c20021054128210820044103470d8601200141c8006a280200450d8601200141c4006a28020010160c86010b412a210841cfe6c20021050b200341c0036a41026a20034190066a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f0190063b01c00320032003290388053703e00302402001450d0020040d1a0c85010b20034184036a41026a200341c0036a41026a2d00003a0000200341e8026a41086a200341e0036a41086a290300370300200341e8026a410d6a200341e0036a410d6a290000370000200320032f01c0033b018403200320032903e0033703e802200b41204d0d0741f7bcc2002105410e210820040d190c84010b41cfe6c2002105412a21080b200341e4026a41026a200341c0036a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f01c0033b01e40220032003290388053703e00320020d04200341a3066a200341e0036a41086a290300370000200341a8066a200341ed036a290000370000200320032f01e4023b01900620032008360097062003200536009306200320032903e00337009b062003200341e6026a2d00003a009206200341286a20034190066a108e0141dbb8c2002105412721082003290328200341286a41086a29030084500d0420034190066a108f01450d04200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a22052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d182003421037028c052003200341c0066a36028805200341186a20034188056a108302200329031822104203520d1941b6e7c20041331029000b412a210841cfe6c20021050b200341e4026a41026a20034190066a41026a2d00003a0000200341e0036a41086a20034188056a41086a290300370300200341e0036a41106a20034188056a41106a290300370300200320032f0190063b01e40220032003290388053703e00320020d02200341d3036a200341e0036a41086a290300370000200341d8036a200341ed036a290000370000200320032f01e4023b01c003200320083600c703200320053600c303200320032903e0033700cb032003200341e6026a2d00003a00c203200341d8006a200341c0036a108e0141b7bac2002105412621082003290358200341d8006a41086a29030084500d02200341c0036a108f01450d02200341b0066a41086a22024200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a22052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d182003421037028c052003200341c0066a36028805200341c8006a20034188056a108302200329034822104203520d1941b6e7c20041331029000b200141086a2903002106200341b0066a41086a22024200370300200342003703b0064115210841a7a4c2004115200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0d2003421037028c052003200341c0066a36028805200341a8016a20034188056a10830220032903a8014203510d400b41c7bec2002105412421080b20012d00004103460d7c0c7d0b200341b0066a41086a22014200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2001290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0c2003421037028c052003200341c0066a36028805200341f8006a20034188056a108302200329037822064203520d0d41b6e7c20041331029000b419bc0c20021050c760b2005450d15200341b0066a41086a22024200370300200342003703b00641dfbdc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d1c2003410036028805200341c0066a411020034188056a41044100100041016a41044d0d3820032802880520054f0d1d0c700b20024200370300200342003703b00641fdbdc200411b200341b0066a100220082002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d152003410036028805200341c0066a411020034188056a41044100100041016a41044d0d3620032802880520054d0d160c6e0b200341b0066a41086a22024200370300200342003703b00641d4b9c200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00620032006370390052003200737038805200341c0066a411020034188056a411010010c730b200341003602900520034208370388050b20034198026a20034188056a108202200328029c022108200328029802210520012d00004103460d750c760b2006500d04200341b0066a41086a22024200370300200342003703b0064185bdc200411c200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c730b200341b0066a41086a22024200370300200342003703b006418dbbc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00620032006370390052003200737038805200341c0066a411020034188056a411010010c6f0b2006500d02200341b0066a41086a22024200370300200342003703b00641b4a6c2004120200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c710b2006500d10200341b0066a41086a22024200370300200342003703b00641c0bdc200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c700b2006500d00200341b0066a41086a22024200370300200342003703b00641a1bdc200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200637038805200341c0066a411020034188056a410810010c6f0b41ebbec200210520012d00004103460d6f0c700b420321060b200341b0066a41086a22014200370300200342003703b00641a7a4c2004115200341b0066a1002200341c0066a41086a2001290300370300200320032903b0063703c0060240200341c0066a411041acf1c300410041001000417f460d002003421037028c052003200341c0066a36028805200341e8006a20034188056a10830220032903684203510d3120064203510d322006a74102470d03200341e4026a41026a20034184036a41026a2d00003a000020034188036a41086a200341e8026a41086a29030037030020034188036a410d6a200341e8026a410d6a290000370000200320032f0184033b01e402200320032903e80237038803200341a0036a41186a200341a0026a41186a290300370300200341a0036a41106a200341a0026a41106a290300370300200341a0036a41086a200341a0026a41086a290300370300200320032903a0023703a003200341c0036a41186a200341c0026a41186a290300370300200341c0036a41106a200341c0026a41106a290300370300200341c0036a41086a200341c0026a41086a290300370300200320032903c0023703c003411510132201450d382001410d6a41002900b8bb42370000200141086a41002900b3bb42370000200141002900abbb4237000020014115413510152201450d39200120032903a0033700152001412d6a200341b8036a290300370000200141256a200341a0036a41106a2903003700002001411d6a200341a0036a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002102200110162002417f460d13200341e0036a200341a0036a108f0220032d00c0044101470d144187bcc20021014115210220040d5f0c600b41c0b9c20021054114210820040d030c6e0b4101210d4100210241000d650b410021054108210e200c0d650c660b41d8bcc2002105411f21082004450d6b0b200a10160c6a0b420321100b20024200370300200342003703b00641a7a4c2004115200341b0066a100220052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d022003421037028c052003200341c0066a36028805200341086a20034188056a10830220032903084203510d2d20104203510d2e2010a7450d094182b9c20021050c070b420321100b20024200370300200342003703b00641a7a4c2004115200341b0066a100220052002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d002003421037028c052003200341c0066a36028805200341386a20034188056a10830220032903384203510d2d20104203510d2e2010a74101470d0642002110200341b0066a41086a22024200370300200342003703b006418dbbc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0c20034200370390052003420037038805200341c0066a411020034188056a4110410010002202417f460d312002410f4d0d3120034190056a290300211020032903880521110c0d0b41c0b9c20021050c590b41a0bfc2002105411b210820012d00004103460d630c640b410a20054b0d580b200341b0066a41086a22024200370300200342003703b00641dfbdc200411e200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200536028805200341c0066a411020034188056a410410010c600b4180bfc20021050b4120210820012d00004103460d5f0c600b41ddbac2002105411c210820012d00004103460d5e0c5f0b411f10132202450d2a200241176a41002900da9e42370000200241106a41002900d39e42370000200241086a41002900cb9e42370000200241002900c39e423700002002411f413f10152202450d2b200220032903900637001f200241376a20034190066a41186a22082903003700002002412f6a20034190066a41106a290300370000200241276a20034190066a41086a290300370000200341b0066a41086a22054200370300200342003703b0062002413f200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002105200210162005417f470d0a200341b0066a41086a22024200370300200342003703b00641d4b9c200411f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d0820034200370390052003420037038805200341c0066a411020034188056a4110410010002202417f460d302002410f4d0d3020034190056a290300211020032903880521110c090b41142005490d530b200341b0066a41086a22024200370300200342003703b00641fdbdc200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c0062003200536028805200341c0066a411020034188056a410410010c5a0b41f3bbc20021014114210220040d4b0c4c0b2003419b056a20034190036a290300370000200341a0056a20034195036a2900003700002003200836008f052003200536008b05200320032f01e4023b0188052003200329038803370093052003200341e6026a2d00003a008a0520034188056a200341e0036a41206a412010f802450d02419cbcc2002101411a21020c490b420a21110b02402011200756201020065620102006511b450d0041f9bac20021050c4d0b200341e8046a41186a200341c0036a41186a290300370300200341e8046a41106a200341c0036a41106a290300370300200341e8046a41086a200341c0036a41086a290300370300200320032903c0033703e80420034190066a41186a200341a0036a41186a220229030037030020034190066a41106a200341a0036a41106a220529030037030020034190066a41086a200341a0036a41086a2208290300370300200320032903a0033703900620034188056a41186a200229030037030020034188056a41106a200529030037030020034188056a41086a2008290300370300200320032903a00337038805411510132202450d282002410d6a41002900b8bb42370000200241086a41002900b3bb42370000200241002900abbb4237000020024115413510152202450d2920022003290388053700152002412d6a200341a0056a290300370000200241256a20034188056a41106a2903003700002002411d6a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002105200210162005417f460d0141dfbbc20021050c4c0b411f10132201450d2a200141176a41002900da9e42370000200141106a41002900d39e42370000200141086a41002900cb9e42370000200141002900c39e423700002001411f413f10152201450d2b200120032903c00337001f200141376a200341d8036a2903003700002001412f6a200341c0036a41106a290300370000200141276a200341c0036a41086a290300370000200341b0066a41086a22024200370300200342003703b0062001413f200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002102200110162002417f460d06200b450d07200b10132209450d352009200a200b10f6021a0c080b412210132202450d2b200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d2c200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c00620034188056a200341c0066a411010840220034188056a41106a290300211220034188056a41186a290300211020034188056a41206a29030021112003290390052113200329038805211420021016200341e8046a2007201042002014420151220e1b22142007201420075420114200200e1b221020065420102006511b22021b22117d221520062010200620021b22167d2007201154ad7d2206109002450d03200341e8046a20152006109d01450d0841c0bbc2002105411f210820012d00004103460d550c560b4200211042e40021110b2011200756201020065620102006511b450d0041a2b9c2002105411e210820012d00004103460d530c540b200341e0036a41186a2008290300370300200341e0036a41106a20034190066a41106a290300370300200341e0036a41086a20034190066a41086a29030037030020032003290390063703e003412210132202450d21200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d22200220032903e0033700222002413a6a200341e0036a41186a290300370000200241326a200341e0036a41106a2903003700002002412a6a200341e0036a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c00620034188056a200341c0066a411010840220034188056a41186a290300211220034188056a41206a290300211320034188056a41106a2903002110200329039005211120032903880521142002101641f3b9c2002105200341e0036a200720114200201442015122021b2214200720142007542010420020021b221020065420102006511b22081b22117d221520062010200620081b22167d2007201154ad7d2206109002450d014195bac2002105200341e0036a20152006109d010d01411f10132205450d2b200541176a41002900da9e42370000200541106a41002900d39e42370000200541086a41002900cb9e42370000200541002900c39e423700002005411f413f10152205450d2c200520032903e00337001f200541376a200341e0036a41186a2903003700002005412f6a200341e0036a41106a290300370000200541276a200341e0036a41086a290300370000200341b0066a41086a22084200370300200342003703b0062005413f200341b0066a1002200341c0066a41086a2008290300370300200320032903b0063703c00620034188056a200341c0066a411010840220034188056a41106a290300210720034188056a41206a290300211720034188056a41186a29030021182003290390052119200329038805211a20051016412210132205450d2d200541206a41002f009da6423b0000200541186a4100290095a642370000200541106a410029008da642370000200541086a4100290085a642370000200541002900fda5423700002005412241c40010152205450d2e200520032903e0033700222005413a6a200341f8036a290300370000200541326a200341e0036a41106a2903003700002005412a6a200341e0036a41086a290300370000200341b0066a41086a22084200370300200342003703b006200541c200200341b0066a1002200341c0066a41086a2008290300370300200320032903b0063703c006200341c0066a411041acf1c30041004100100021082005101602402008417f460d00412210132205450d33200541206a41002f009da6423b0000200541186a4100290095a642370000200541106a410029008da642370000200541086a4100290085a642370000200541002900fda5423700002005412241c40010152205450d34200520032903e0033700222005413a6a200341e0036a41186a290300370000200541326a200341e0036a41106a2903003700002005412a6a200341e0036a41086a290300370000200341b0066a41086a22084200370300200342003703b006200541c200200341b0066a1002200341c0066a41086a2008290300370300200320032903b0063703c006411010132208450d352008201420117d3700002008201020167d2014201154ad7d37000820084110412010152208450d3620082012420020021b370010200841186a2013420020021b370000200341c0066a411020084120100120081016200510160b411f10132202450d2f200241176a41002900da9e42370000200241106a41002900d39e42370000200241086a41002900cb9e42370000200241002900c39e423700002002411f413f10152202450d30200220032903e00337001f200241376a200341e0036a41186a220c2903003700002002412f6a200341e0036a41106a290300370000200241276a200341e0036a41086a290300370000200341b0066a41086a22054200370300200342003703b0062002413f200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c3004100410010002105200210162005417f470d3c200341b0066a41086a22024200370300200342003703b00641c8a5c200411a200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341c0066a411041acf1c300410041001000417f460d06200342103702ec042003200341c0066a3602e80420034188056a200341e8046a1011200328028805220e450d38200329028c0521100c070b41f3b9c20021050b4122210820012d00004103460d500c510b41b6bcc20021014122210220040d400c410b410121090b200341e8046a41186a2201200341c0036a41186a290300370300200341e8046a41106a220f200341c0036a41106a290300370300200341e8046a41086a220e200341c0036a41086a290300370300200320032903c0033703e804412010132202450d25200220032903e804370000200241186a2001290300370000200241106a200f290300370000200241086a200e29030037000002400240200b450d00200b41206a2201200b490d4c200141c000200141c0004b1b220f4100480d4c20024120200f101522020d01200f41011014000b4120210f200b41206a21010b200241206a2009200b10f6021a20034188056a41186a220e420037030020034188056a41106a220c420037030020034188056a41086a220d420037030020034200370388052002200120034188056a100420034190066a41186a200e29030037030020034190066a41106a200c29030037030020034190066a41086a200d29030037030020032003290388053703900641c0bbc10021010240200341a0046a20034190066a412010f8020d00200341c1046a20032903e804370000200341c0046a41013a0000200341c9046a200341e8046a41086a290300370000200341d1046a200341e8046a41106a290300370000200341d9046a200341e8046a41186a290300370000410021010b0240200f450d00200210160b02402001450d00410c2102200b450d3e2009101620040d3f0c400b20034190066a41186a200341a0036a41186a29030037030020034190066a41106a200341a0036a41106a29030037030020034190066a41086a200341a0036a41086a290300370300200320032903a0033703900620034188056a200341e0036a41880110f6021a411510132201450d312001410d6a41002900b8bb42370000200141086a41002900b3bb42370000200141002900abbb4237000020014115413510152201450d3220012003290390063700152001412d6a200341a8066a290300370000200141256a20034190066a41106a2903003700002001411d6a20034190066a41086a290300370000200341b0066a41086a22024200370300200342003703b00620014135200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341103602ec042003200341c0066a3602e80420034188056a200341e8046a10cf01200110160240200b450d00200910160b4100210102402004450d00200a10160b41000d400c410b200341b0066a41086a22024200370300200342003703b00641e2a5c200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c00641002102200341c0066a411041acf1c300410041001000417f460d02200342103702e4032003200341c0066a3602e00320034188056a200341e0036a1011200328028805220c450d3320034188056a41086a22052802002108200328028c05210220034188056a41186a20034190066a41186a29030037030020034188056a41106a20034190066a41106a290300370300200520034190066a41086a29030037030020032003290390063703880520034188056a21052002210d20082002460d030c340b4101210e420021100b20034188056a41186a2205200341e0036a41186a29030037030020034188056a41106a2208200341e0036a41106a29030037030020034188056a41086a2204200341e0036a41086a290300370300200320032903e003370388052010422088a722022010a7470d33200241016a22092002490d472002410174220a20092009200a491bad22104205862214422088a70d472014a722094100480d472002450d02200e200241057420091015220e450d030c330b20034188056a41186a20034190066a41186a29030037030020034188056a41106a20034190066a41106a29030037030020034188056a41086a20034190066a41086a2903003703002003200329039006370388054101210c20034188056a21050b200241016a22082002490d4520024101742204200820082004491b220dad4205862207422088a70d452007a722044100480d45024002402002450d0020022108200c200241057420041015220c450d010c320b2002210820041013220c0d310b200441011014000b20091013220e0d300b200941011014000b2003419c056a4101360200200341023602e403200341c8d7c3003602e0032003420137028c05200341d0d7c300360288052003200341e0036a3602980520034188056a4198bec2001046000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41bcf5c3001038000b41b6e7c20041331029000b41b6e7c20041331029000b41bcf5c3001038000b41b6e7c20041331029000b41bcf5c3001038000b411541011014000b413541011014000b41b6e7c20041331029000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b411541011014000b413541011014000b41b6e7c20041331029000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b412041011014000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b411f41011014000b413f41011014000b200b41011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b411541011014000b413541011014000b41b6e7c20041331029000b41b6e7c20041331029000b200c200841057422046a22022005290000370000200241186a200541186a290000370000200241106a200541106a290000370000200241086a200541086a290000370000200341b0066a41086a22024200370300200342003703b00641e2a5c200411b200341b0066a1002200341c0066a41086a2002290300370300200320032903b0063703c006200341003602900520034201370388052003200841016a22023602e003200341e0036a20034188056a1018024002400240024002400240024002400240024002402002450d00200441206a210a410020034188056a41086a28020022056b2104200328028805210b200328028c052109200c210203400240200920046a411f4b0d00200541206a22082005490d212009410174220f20082008200f491b22084100480d21024002402009450d00200b200920081015220b0d010c060b20081013220b450d050b200821090b200b20056a22082002290000370000200841186a200241186a290000370000200841106a200241106a290000370000200841086a200241086a290000370000200441606a2104200541206a2105200241206a2102200a41606a220a0d000b20034190056a20053602002003200936028c052003200b360288050c010b20034188056a41086a2802002105200328028c052109200328028805210b0b200341c0066a4110200b2005100102402009450d00200b10160b0240200d450d00200c10160b200341e0036a41186a20034190066a41186a2202290300370300200341e0036a41106a20034190066a41106a2205290300370300200341e0036a41086a20034190066a41086a220829030037030020032003290390063703e00320034188056a41186a2016370300200341c0056a200341e8046a41186a290300370300200341b8056a200341e8046a41106a290300370300200341b0056a200341e8046a41086a290300370300200341d0056a2008290300370300200341d8056a2005290300370300200341e0056a2002290300370300200320113703980520032006370390052003201537038805200341003a00e805200320032903e8043703a80520032003290390063703c805411510132202450d012002410d6a41002900b8bb42370000200241086a41002900b3bb42370000200241002900abbb4237000020024115413510152202450d02200220032903e0033700152002412d6a200341e0036a41186a290300370000200241256a200341e0036a41106a2903003700002002411d6a200341e0036a41086a290300370000200341b0066a41086a22054200370300200342003703b00620024135200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341103602c4022003200341c0066a3602c00220034188056a200341c0026a10cf0120021016412210132202450d03200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d04200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341c0066a411041acf1c30041004100100021052002101602402005417f460d00412210132202450d06200241206a41002f009da6423b0000200241186a4100290095a642370000200241106a410029008da642370000200241086a4100290085a642370000200241002900fda5423700002002412241c40010152202450d07200220032903e8043700222002413a6a200341e8046a41186a290300370000200241326a200341e8046a41106a2903003700002002412a6a200341e8046a41086a290300370000200341b0066a41086a22054200370300200342003703b006200241c200200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006411010132205450d08200520134200200e1b370000200520124200200e1b37000820054110412010152205450d092005201420117d370010200541186a201020167d2014201154ad7d370000200341c0066a411020054120100120051016200210160b20034188056a41096a20032903c003370000200341a1056a200341c0036a41106a290300370000200341a9056a200341c0036a41186a290300370000200341b1056a20032903a003370000200341c1056a200341a0036a41106a290300370000200341c9056a200341a0036a41186a290300370000200341083a00880520034188056a41086a41093a000020034199056a200341c0036a41086a290300370000200341b9056a200341a0036a41086a29030037000020034188056a105a0c1f0b200841011014000b411541011014000b413541011014000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b200e41206a200e2002410574220910f7021a200e41186a2005290300370000200e41106a2008290300370000200e41086a2004290300370000200e200329038805370000200341b0066a41086a22054200370300200342003703b00641c8a5c200411a200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006200341003602900520034201370388052003200241016a22023602e804200341e8046a20034188056a1018024002402002450d00200941206a210a410020034188056a41086a28020022056b2104200328028805210b200328028c052109200e210203400240200920046a411f4b0d00200541206a22082005490d172009410174220f20082008200f491b22084100480d17024002402009450d00200b200920081015220b0d010c070b20081013220b450d060b200821090b200b20056a22082002290000370000200841186a200241186a290000370000200841106a200241106a290000370000200841086a200241086a290000370000200441606a2104200541206a2105200241206a2102200a41606a220a0d000b20034190056a20053602002003200936028c052003200b360288050c010b20034190056a2802002105200328028c052109200328028805210b0b200341c0066a4110200b2005100102402009450d00200b10160b2010a7450d00200e10160b20034188056a41186a200c29030037030020034188056a41106a200341e0036a41106a29030037030020034188056a41086a200341e0036a41086a290300370300200320032903e00337038805411f10132202450d01200241176a41002900da9e42370000200241106a41002900d39e42370000200241086a41002900cb9e42370000200241002900c39e423700002002411f413f10152202450d02200220032903880537001f200241376a200341a0056a2903003700002002412f6a20034188056a41106a290300370000200241276a20034188056a41086a290300370000200341b0066a41086a22054200370300200342003703b0062002413f200341b0066a1002200341c0066a41086a2005290300370300200320032903b0063703c006411010132205450d03200520194200201a42015122081b221020157c221437000020052007420020081b20067c2014201054ad7c37000820054110412010152205450d0420052018420020081b220620117c2207370010200541186a2017420020081b20167c2007200654ad7c370000200341c0066a4110200541201001200510162002101620034188056a41086a41083a000020034191056a20032903900637000020034199056a20034190066a41086a290300370000200341a1056a20034190066a41106a290300370000200341a9056a20034190066a41186a290300370000200341083a00880520034188056a105a0c140b200841011014000b411f41011014000b413f41011014000b411041011014000b412041011014000b2004450d010b200a10160b2001450d010b20022108200121050c0d0b20034191056a20032f0184033b000020034188056a41106a200836020020034194056a20053602002003419c056a20032903e802370200200341b1056a20032903a002370000200341083a00880520034188056a41086a410a3a000020034193056a20034186036a2d00003a0000200341a9056a200341f5026a290000370000200341c1056a200341a0026a41106a290300370000200341c9056a200341a0026a41186a290300370000200341a4056a200341e8026a41086a290300370200200341b9056a200341a0026a41086a290300370000200341e9056a200341c0026a41186a290300370000200341e1056a200341c0026a41106a290300370000200341d9056a200341c0026a41086a290300370000200341d1056a20032903c00237000020034188056a105a410021050c0c0b4114210820012d00004103460d0a0c0b0b41ebbfc20021050c010b41bbbfc20021050b4130210820012d00004103460d070c080b20024105742109410021044108210e4100210541002108200d2102034020034190066a41186a200241186a220a29000037030020034190066a41106a200241106a220b29000037030020034190066a41086a200241086a220f2900003703002003200229000037039006200341e0036a41186a200a290000370300200341e0036a41106a200b290000370300200341e0036a41086a200f290000370300200320022900003703e00320034188056a200341e0036a108f02024020082005470d00200541016a220a2005490d052005410174220b200a200a200b491b220aad4288017e2206422088a70d052006a7220b4100480d05024002402005450d00200e20054188016c200b1015220e0d010c080b200b1013220e450d070b200a21050b200241206a2102200e20046a20034188056a41880110f6021a20044188016a2104200841016a2108200941606a22090d000b200341f0046a20083602002003200e3602e804200320053602ec04200c450d010b200d10160b200342003702e403200341b894c1003602e003200341e8046a200341e0036a410010910220032802e803210a20032802e00321020240024020032802e4032204450d002004210920022108034020082802a80821082009417f6a22090d000b0340200220022f01064102746a41a8086a28020021022004417f6a22040d000c020b0b200221080b200341a4056a20022f0106360200200341a0056a41003602002003419c056a20023602002003200a3602a805200341003602980520034200370390052003200836028c05200341003602880520034188056a10920202402005450d00200e10160b410021050b4124210820012d00004103460d030c040b1010000b200b41081014000b4100210520012d00004103470d010b200141c8006a280200450d00200141c4006a28020010160b2000200836020420002005360200200341d0066a24000bfcc2010b037f027e047f017e027f037e017f027e027f017e0d7f230041f0046b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00002204417f6a2205410e4b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e0f00090607030a0c080f050d02040b01000b200141306a2903002106200141286a290300210720012d00012108200341e8006a200141246a280200360200200341c8006a41186a2001411c6a290200370300200341c8006a41106a200141146a290200370300200341c8006a41086a2001410c6a2902003703002003200141046a29020037034820022d0000210520034198016a41186a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d17200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c180b200141086a280200210a200141046a280200210b20022d0000450d2041002109200a450d0c200b101620012d000021040c0c0b4101210920022d00000d0b200141046a2802002102200341e0046a41086a22054200370300200342003703e00441e796c2004116200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200320023602e003200341d0036a4110200341e0036a410410010c8d010b200141106a2903002106200141086a2903002107200141186a280200210820022d0000210520034198016a41186a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0c200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c0d0b4101210920022d00000d0920012d00012104200341e0046a41086a22054200370300200342003703e00441a4eac1004115200341e0046a1002200341d0036a41086a22092005290300370300200320032903e0043703d00341002102200341d0036a411041acf1c30041001001200320043a00e00320054200370300200342003703e00441cdc7c0004119200341e0046a100220092005290300370300200320032903e0043703d00341012109200341d0036a4110200341e0036a410110014101210820012d00002204410f4d0d9a010c9b010b4101210920022d00000d08200141086a2903002106200341e0046a41086a22024200370300200342003703e00441cd96c200411a200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200320063703e003200341d0036a4110200341e0036a410810010c8a010b200141106a2903002106200141086a290300210c20022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0b200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c0c0b20022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0c200341ca006a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b0148200320032900a3013703e00341002104200328009f012105200328009b0121020c0d0b20012d0001210820022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d0d200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c0e0b200141106a2903002106200141086a290300210720022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d10200341ca006a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b0148200320032900a3013703e00341002104200328009f012105200328009b0121020c110b2001410c6a2802002109200141086a280200210d200141046a280200210e20022d00002105200341b0016a2208200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d11200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2008290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c120b4101210920022d00000d02200141046a2802002102200341e0046a41086a22054200370300200342003703e00441bde9c1004119200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200320023602e003200341d0036a4110200341e0036a410410010c84010b20022d00002105200341b0016a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d11200341e2016a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b01e001200320032900a3013703e00341002104200328009f012105200328009b0121020c120b4101210920022d0000450d150b41a7e6c200210241282105200441ff01712204410f4b0d1a410120047441beff01710d920120044106460d1b2004410f470d1a2009450d9201200141086a280200450d9201200141046a28020010160c92010b200341c0006a200141246a280200360200200341206a41186a2001411c6a290200370300200341206a41106a200141146a290200370300200341206a41086a2001410c6a2902003703002003200141046a29020037032020022d0000210520034198016a41186a2209200241196a29000037030020034198016a41106a200241116a29000037030020034198016a41086a200241096a29000037030020032002290001370398014101210420054101470d10200341ca006a20032d009a013a0000200341e0036a41086a200341ab016a290000370300200341ed036a2009290000370000200320032f0198013b0148200320032900a3013703e00341002104200328009f012105200328009b0121020c110b412a210541cfe6c20021020b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d8001200341c3036a20034190036a41086a290300370000200341b0036a41186a2003419d036a290000370000200320032f01e0043b01b003200320053600b703200320023600b30320032003290390033700bb03200320092d00003a00b203200341e0036a200341b0036a10a4012003280280042202450d1420034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a220e200341e0036a41c4006a2902003703002003200341e0036a412c6a29020037039801200341ac046a280200210d200341e0036a41286a280200210a200341e0036a410c6a350200210f200341e0036a41186a290300210c20032802e003210b20032902e403211020032903f00321112003280284042105200341c8006a41186a2212200e290300370300200341c8006a41106a220e2009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a200c370300200341e0016a410c6a200f3e0200200341e0016a41286a200a36020020034184026a2005360200200341e0016a41346a2009290300370200200341e0016a413c6a200e290300370200200341e0016a41c4006a2012290300370200200320113703f001200320103702e40120032002360280022003200b3602e0012003200d3602ac022003200329034837028c022008410a4d0d1c02402005450d00200210160b41e89bc2002102411b21050c80010b41cfe6c2002102412a21050b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d7e200341336a20034190036a41086a290300370000200341206a41186a2003419d036a290000370000200320032f01e0043b01202003200536002720032002360023200320032903900337002b200320092d00003a0022200341e0036a200341206a10a4012003280280042205450d1220034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a2208200341e0036a41c4006a29020037030020032003418c046a29020037039801200341ac046a280200210e200341e0036a41286a280200210d200341e0036a410c6a3502002110200341e0036a41186a290300210720032802e003210a20032902e403211120032903f003210f2003280284042102200341c8006a41186a220b2008290300370300200341c8006a41106a22082009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a2007370300200341e0016a410c6a20103e0200200341e0016a41286a200d36020020034184026a2002360200200341e0016a41346a2009290300370200200341e0016a413c6a2008290300370200200341e0016a41c4006a200b2903003702002003200f3703f001200320113702e40120032005360280022003200a3602e0012003200e3602ac022003200329034837028c02200f200c200f200c54200720065420072006511b22051b220c2007200620051b220684500d7b200341e0016a41106a200f200c7d370300200341f8016a200720067d200f200c54ad7d370300200341e0046a41086a22024200370300200342003703e00441bd95c300411b200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d0030240200341d0036a411041acf1c300410041001000417f460d00200342003703e803200342003703e003200341d0036a4110200341e0036a4110410010002202417f460d442002410f4d0d44200341f0016a2202290300220f20032903e0035a200341f8016a22052903002207200341e8036a29030022105a20072010511b0d002005420037030020024200370300200720067c200f200c7c220c200f54ad7c21060b200341e0046a41086a22024200370300200342003703e00441bb96c2004112200341e0046a1002200341d0036a41086a22052002290300370300200320032903e0043703d003420021070240200341d0036a411041acf1c300410041001000417f460d00200342003703e003200341d0036a4110200341e0036a41084100100041016a41084d0d3e20032903e00321070b20024200370300200342003703e00441d19bc2004117200341e0046a100220052002290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d23200342003703e003200341d0036a4110200341e0036a41084100100041016a41084d0d3e20032903e003210f0c240b41cfe6c2002102412a21050b200341e0046a41026a2209200341c8006a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01483b01e004200320032903e0033703900320040d7c200341f3016a20034190036a41086a290300370000200341e0016a41186a2003419d036a290000370000200320032f01e0043b01e001200320053600e701200320023600e30120032003290390033700eb01200320092d00003a00e201200341e0036a200341e0016a10a4012003280280042208450d1020034198016a41086a220220034194046a29020037030020034198016a41106a22052003419c046a29020037030020034198016a41186a2204200341a4046a29020037030020032003418c046a29020037039801200341e0036a41186a290300211320034188046a280200210e200341ec036a350200210620032903f0032114200328028404210a20033502e003210f20032902e4032107200341f0026a41186a2004290300370300200341f0026a41106a2005290300370300200341f0026a41086a200229030037030020032003290398013703f00242002110200341e0046a41086a22024200370300200342003703e00441bb96c2004112200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d0030240200341d0036a411041acf1c300410041001000417f460d00200342003703e003200341d0036a4110200341e0036a41084100100041016a41084d0d3b20032903e00321100b200642208620074220888421062007422086200f8421070240200e41186c2202450d00200820026a2109200241686a2105200821020340200241086a290300210c2002290300210f2010200241106a2903002211540d1e42002006200c7d2007200f54ad7d220c2007200f7d220f200756200c200656200c2006511b22041b21064200200f20041b2107200541686a2105200241186a22022009470d000b0b410821044100210e200a450d1d200810164100210d0c260b412a210541cfe6c20021020b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d7a200341db006a20034190036a41086a290300370000200341c8006a41186a20034190036a410d6a290000370000200320032f01e0043b01482003200536004f2003200236004b2003200329039003370053200320092d00003a004a200341e0036a200341c8006a10a4012003280280042205450d0e20034198016a41086a220220034194046a29020037030020034198016a41106a22042003419c046a29020037030020034198016a41186a2209200341a4046a29020037030020032003418c046a29020037039801200328028404210e200341e0016a41186a2009290300370300200341e0016a41106a2004290300370300200341e0016a41086a200229030037030020032003290398013703e001410d10132202450d3d200241056a41002900d69942370000200241002900d199423700002002410d412d10152202450d3e200220032903e00137000d200241256a200341f8016a2903003700002002411d6a200341e0016a41106a290300370000200241156a200341e0016a41086a290300370000200341e0046a41086a22044200370300200342003703e0042002412d200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d003200341103602e4032003200341d0036a3602e0032008200341e0036a10e40120021016200e450d78200510160c780b41cfe6c2002102412a21050b200341f0026a41026a2209200341e0016a41026a2d00003a0000200341b0036a41086a200341e0036a41086a290300370300200341b0036a41106a200341e0036a41106a290300370300200320032f01e0013b01f002200320032903e0033703b00320040d78200341336a200341b8036a290300370000200341386a200341bd036a290000370000200320032f01f0023b01202003200536002720032002360023200320032903b00337002b200320092d00003a0022410e10132202450d39200241066a41002900abcc41370000200241002900a5cc413700002002410e412e10152202450d3a2002200329032037000e200241266a200341206a41186a2903003700002002411e6a200341206a41106a290300370000200241166a200341206a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341e0036a41086a22042005290300370300200320032903e0043703e003200341e0036a411041acf1c3004100410010002105200210162005417f460d1241a29bc2002102411421050c780b41cfe6c2002102412a21050b20034190036a41026a2209200341c8006a41026a2d00003a0000200341e0016a41086a200341e0036a41086a290300370300200341e0016a41106a200341e0036a41106a290300370300200320032f01483b019003200320032903e0033703e00120040d76200341d3046a200341e0016a41086a290300370000200341d8046a200341e0016a410d6a290000370000200320032f0190033b01c004200320053600c704200320023600c304200320032903e0013700cb04200320092d00003a00c204200341e0036a200341c0046a10e9014101210420032d00e0034101470d08200341e2046a20032d00e3033a000020034190036a41086a200341f4036a29020037030020034190036a410d6a200341f9036a290000370000200320032f00e1033b01e0042003200341ec036a29020037039003200341e0036a41086a28020021054100210420032802e40321020c090b412a210541cfe6c20021020b200341e0046a41026a2208200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d7e200341c3036a20034190036a41086a290300370000200341b0036a41186a2003419d036a290000370000200320032f01e0043b01b003200320053600b703200320023600b30320032003290390033700bb03200320082d00003a00b203200341e0036a200341b0036a10a401200328028004220b450d0d20034198016a41086a2202200341e0036a41346a29020037030020034198016a41106a2205200341e0036a413c6a29020037030020034198016a41186a2204200341e0036a41c4006a2902003703002003200341e0036a412c6a29020037039801200341ac046a2802002108200341e0036a41286a280200210a200341e0036a410c6a3502002106200341e0036a41186a290300210720032802e003211520032902e403210f20032903f003210c2003280284042112200341e0016a41186a22162004290300370300200341e0016a41106a22042005290300370300200341e0016a41086a2205200229030037030020032003290398013703e001200341c8006a41186a2007370300200341c8006a410c6a20063e0200200341c8006a41286a200a360200200341c8006a41246a2012360200200341c8006a41346a2005290300370200200341c8006a413c6a2004290300370200200341c8006a41c4006a20162903003702002003200c3703582003200f37024c2003200b360268200320153602482003200836029401200320032903e0013702742009450d13200e200941246c22026a21082002450d16200341a0016a2202200e41096a290000370300200341a8016a2205200e41116a290000370300200341b0016a220a200e41196a290000370300200341b7016a2215200e41206a2800003600002003200e29000137039801200e41246a2104200e2d000022164102460d17200341e0036a41096a2002290300370000200341e0036a41116a2005290300370000200341e0036a41196a200a290300370000200341e0036a41206a2015280000360000200320163a00e00320032003290398013700e103200341e0016a200341e0036a104120032d00e00122024102460d1820024101470d23200341e8016a280200210841012102410021164100210520032802e401220a0d730c760b412a210541cfe6c20021020b200341e0046a41026a2209200341e0016a41026a2d00003a000020034190036a41086a200341e0036a41086a29030037030020034190036a41106a200341e0036a41106a290300370300200320032f01e0013b01e004200320032903e0033703900320040d72200341336a20034190036a41086a290300370000200341206a41186a2003419d036a290000370000200320032f01e0043b01202003200536002720032002360023200320032903900337002b200320092d00003a0022200341e0036a200341206a10a4012003280280042202450d0620034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a2208200341e0036a41c4006a2902003703002003200341e0036a412c6a29020037039801200341ac046a280200210e200341e0036a41286a280200210d200341e0036a410c6a3502002106200341e0036a41186a290300210720032802e003210a20032902e403210f20032903f003210c2003280284042105200341c8006a41186a220b2008290300370300200341c8006a41106a22082009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a2007370300200341e0016a410c6a20063e0200200341e0016a41286a200d36020020034184026a2005360200200341e0016a41346a2009290300370200200341e0016a413c6a2008290300370200200341e0016a41c4006a200b2903003702002003200c3703f0012003200f3702e40120032002360280022003200a3602e0012003200e3602ac022003200329034837028c02200341e0016a412c6a220410a70120041080022005450d70200210160c700b412a210541cfe6c20021020b200341c0046a41026a2209200341c8006a41026a2d00003a0000200341e0016a41086a200341e0036a41086a290300370300200341e0016a41106a200341e0036a41106a290300370300200320032f01483b01c004200320032903e0033703e00120040d70200341c3026a200341e0016a41086a2208290300370000200341c8026a200341e0016a410d6a290000370000200320032f01c0043b01b002200320053600b702200320023600b302200320032903e0013700bb02200320092d00003a00b202200341e0036a200341b0026a10e9014101210420032d00e0034101470d05200341f2026a20032d00e3033a0000200341b0036a41086a200341f4036a290200370300200341b0036a410d6a200341f9036a290000370000200320032f00e1033b01f0022003200341ec036a2902003703b003200341e0036a41086a28020021054100210420032802e40321020c060b2001410c6a2802002102200341e0046a41086a22054200370300200342003703e0044196e9c1004115200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200341003602e803200342013703e003200320023602e001200341e0016a200341e0036a10182002450d0c20024105742108200341e0036a41086a280200210520032802e003210e20032802e4032109200b210203400240024002400240200920056b41204f0d00200541206a22042005490d792009410174220d20042004200d491b220d4100480d792009450d01200e2009200d1015220e0d020c310b200541206a21040c020b200d1013220e450d2f0b200d21090b200e20056a22052002290000370000200541186a200241186a290000370000200541106a200241106a290000370000200541086a200241086a29000037000020042105200241206a2102200841606a22080d000b200341e8036a2004360200200320093602e4032003200e3602e0030c0d0b200141086a2903002106200341e0046a41086a22024200370300200342003703e00441d19bc2004117200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200320063703e003200341d0036a4110200341e0036a410810010c6c0b410b210541b69bc20021020b200341f0026a41026a2209200341e0046a41026a2d00003a0000200341b0036a41086a20034190036a41086a290300370300200341b0036a41106a20034190036a41106a290300370300200320032f01e0043b01f00220032003290390033703b00320040d6c200341336a200341b0036a41086a290300370000200341206a41186a200341bd036a290000370000200320032f01f0023b01202003200536002720032002360023200320032903b00337002b200320092d00003a0022200341e0036a200341206a10a4012003280280042205450d0020034198016a41086a2204200341e0036a41346a29020037030020034198016a41106a2209200341e0036a413c6a29020037030020034198016a41186a2208200341e0036a41c4006a29020037030020032003418c046a29020037039801200341ac046a280200210e200341e0036a41286a280200210d200341e0036a410c6a350200210f200341e0036a41186a290300211020032802e003210a20032902e403210c20032903f00321112003280284042102200341c8006a41186a220b2008290300370300200341c8006a41106a22082009290300370300200341c8006a41086a220920042903003703002003200329039801370348200341e0016a41186a2010370300200341e0016a410c6a200f3e0200200341e0016a41286a200d36020020034184026a22042002360200200341e0016a41346a2009290300370200200341e0016a413c6a2008290300370200200341e0016a41c4006a200b290300370200200320113703f0012003200c3702e40120032005360280022003200a3602e0012003200e3602ac022003200329034837028c02200341106a200341c0046a108e0102402003290310220f20032903e00122137d2214200f56200341106a41086a290300220c200341e0016a41086a29030022177d200f201354ad7d220f200c56200f200c511b0d00200341e0016a41106a200720142014200756200f200656200f2006511b22021b220720117c220c370300200341f8016a2006200f20021b220620107c200c200754ad7c3703002003200720137c220f3703e0012003200620177c200f200754ad7c3703e801200341206a200341e0016a10fd01200428020021020b2002450d6a20034180026a28020010160c6a0b41c19bc2002102411021050c6b0b410b210541b69bc20021020b20034190036a41026a2209200341f0026a41026a2d00003a00002008200341b0036a41086a290300370300200341e0016a41106a200341b0036a41106a290300370300200320032f01f0023b019003200320032903b0033703e00120040d69200341d0026a41136a200341e0016a41086a2204290300370000200341d0026a41186a200341e0016a410d6a290000370000200320032f0190033b01d002200320053600d702200320023600d302200320032903e0013700db02200320092d00003a00d202200341e0036a41206a200341206a41206a280200360200200341e0036a41186a200341206a41186a290300370300200341e0036a41106a200341206a41106a290300370300200341e0036a41086a200341206a41086a290300370300200320032903203703e003200341e0016a200341e0036a1041200341e0046a41026a20032d00e3013a000020034190036a41086a2208200341f4016a29020037030020034190036a41106a200341fc016a290200370300200320032f00e1013b01e0042003200341ec016a29020037039003410121092004280200210520032802e401210220032d00e0014101460d6a200341f0026a41136a2008290300370000200341f0026a41186a20034190036a410d6a290000370000200320032f01e0043b01f002200320053600f702200320023600f30220032003290390033700fb022003200341e2046a2d00003a00f202410e10132202450d31200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d32200220032903f00237000e200241266a20034188036a2903003700002002411e6a200341f0026a41106a290300370000200241166a200341f0026a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341e0036a41086a2005290300370300200320032903e0043703e003200341e0036a411041acf1c3004100410010002105200210162005417f470d04200341f0026a200341d0026a412010f802450d67410e10132202450d42200241066a41002900abcc41370000200241002900a5cc413700002002410e412e10152202450d43200220032903b00237000e200241266a200341b0026a41186a2903003700002002411e6a200341b0026a41106a290300370000200241166a200341b0026a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003412010132205450d44200520032903f002370000200541186a200341f0026a41186a290300370000200541106a200341f0026a41106a290300370000200541086a200341f0026a41086a290300370000200341d0036a41102005412010012005101620021016410e10132202450d4541002105200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d46200220032903d00237000e200241266a200341d0026a41186a2903003700002002411e6a200341d0026a41106a290300370000200241166a200341d0026a41086a290300370000200341e0046a41086a22044200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d0030240200341d0036a411041acf1c300410041001000417f460d00200342103702e4042003200341d0036a3602e004200341e0036a200341e0046a10e8012003280280042205450d4a200341c0046a41186a200341e0036a41186a290300370300200341c0046a41106a200341e0036a41106a290300370300200341c0046a41086a200341e0036a41086a290300370300200341e0016a41086a2003418c046a290200370300200341e0016a41106a20034194046a290200370300200341e0016a41186a2003419c046a29020037030020034180026a200341a4046a29020037030020034188026a200341ac046a280200360200200320032903e0033703c00420032003290284043703e001200341d0036a411010030b200341b0036a41186a200341c0046a41186a290300370300200341b0036a41106a200341c0046a41106a290300370300200341b0036a41086a200341c0046a41086a290300370300200341c8006a41086a200341e0016a41086a290300370300200341c8006a41106a200341e0016a41106a290300370300200341c8006a41186a200341e0016a41186a290300370300200341c8006a41206a2204200341e0016a41206a290300370300200341c8006a41286a2209200341e0016a41286a280200360200200320032903c0043703b003200320032903e0013703482005450d1b20034190036a41186a2208200341b0036a41186a29030037030020034190036a41106a220e200341b0036a41106a29030037030020034190036a41086a220d200341b0036a41086a29030037030020034198016a41086a220a200341c8006a41086a29030037030020034198016a41106a220b200341c8006a41106a29030037030020034198016a41186a2212200341c8006a41186a29030037030020034198016a41206a2215200429030037030020034198016a41286a22042009280200360200200320032903b00337039003200320032903483703980120021016200341e0036a41186a2008290300370300200341e0036a41106a200e290300370300200341e0036a41086a200d29030037030020034184046a2003290398013702002003418c046a200a29030037020020034194046a200b2903003702002003419c046a2012290300370200200341a4046a2015290300370200200341ac046a2004280200360200200320053602800420032003290390033703e003410e10132202450d4a200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d4b200220032903f00237000e200241266a20034188036a2903003700002002411e6a200341f0026a41106a290300370000200241166a200341f0026a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200341103602e4012003200341d0036a3602e001200341e0036a200341e0016a10e5012002101620034184046a280200450d6720034180046a28020010160c670b200141086a280200450d77200141046a28020010160c770b200141086a280200450d76200141046a28020010160c760b4110210541c19bc20021024100210841012109200d0d710c720b200341e0036a41206a200341c8006a41206a280200360200200341e0036a41186a200341c8006a41186a290300370300200341e0036a41106a200341c8006a41106a2903003703002004200341c8006a41086a290300370300200320032903483703e003200341e0016a200341e0036a1041200341e2046a220420032d00e3013a000020034190036a41086a200341f4016a29020037030020034190036a41106a200341fc016a290200370300200320032f00e1013b01e0042003200341ec016a29020037039003200341e0016a41086a280200210520032802e401210220032d00e0014101460d65200341ab016a20034198036a290300370000200341b0016a2003419d036a290000370000200320032f01e0043b0198012003200536009f012003200236009b0120032003290390033700a301200320042d00003a009a01410e10132202450d32200241066a41002900ddcc41370000200241002900d7cc413700002002410e412e10152202450d33200220032903980137000e200241266a20034198016a41186a22042903003700002002411e6a20034198016a41106a2209290300370000200241166a20034198016a41086a220e290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341e0036a41086a220d2005290300370300200320032903e0043703e003200341e0036a411041acf1c3004100410010002105200210162005417f460d120b41899bc2002102411921050c640b200341e0016a412c6a2205108002200320063703d802200320073703d002200320083602e002411210132202450d29200241106a41002f00d5cc413b0000200241086a41002900cdcc41370000200241002900c5cc4137000020024112413210152202450d2a200220052900003700122002412a6a200541186a290000370000200241226a200541106a2900003700002002411a6a200541086a290000370000200341e0046a41086a22044200370300200342003703e00420024132200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d0a2003421037024c2003200341d0036a360248200341e0036a200341c8006a10d70120032d00f80322094102460d2f200341f0026a41186a20034191046a290000370300200341f0026a41106a20034189046a290000370300200341f0026a41086a20034181046a29000037030020034190036a41086a200341a2046a29010037030020034190036a41106a200341aa046a29010037030020034190036a41186a200341b2046a290100370300200320032900f9033703f00220032003419a046a2901003703900320034199046a2d0000210e0c570b200341e8036a280200210420032802e403210920032802e003210e0b200341d0036a4110200e2004100102402009450d00200e10160b410121080240200a450d00200b10160b410021090c650b41a29dc200210241172105410121042012450d690c680b411810132204450d2a2004200f370300200420113703102004200c3703082005450d07200241186a21052008200e41186c6a41686a21124101210e4101210d03402005210202400340200241086a290300210c2002290300210f2010200241106a2903002211540d0142002006200c7d2007200f54ad7d220c2007200f7d220f200756200c200656200c2006511b22051b21064200200f20051b2107200241186a22022009470d000c0b0b0b0240200d200e470d00200e41016a2205200e490d66200e410174220d20052005200d491b220dad42187e2217422088a70d662017a722054100480d660240200e450d002004200e41186c2005101522040d010c2c0b200510132204450d2b0b200241186a21052004200e41186c6a220b200c370308200b200f370300200b2011370310200e41016a210e20122002470d000c090b0b4100210d0c080b200821040b200341023a00e0010b4100210a4101210241002116410021054100450d5d0c5a0b42e807210f0b024020034188026a280200220220034184026a280200470d00200241016a22052002490d5f20024101742204200520052004491b2204ad42187e2210422088a70d5f2010a722094100480d5f2002450d0520034180026a280200200241186c200910152205450d060c550b20034180026a28020021050c550b200341e0046a41086a22044200370300200342003703e004418cebc100411a200341e0046a1002200341d0036a41086a22092004290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d06200341b0016a420037030020034198016a41106a420037030020034198016a41086a42003703002003420037039801200341d0036a411020034198016a4120410010002204417f460d272004411f4d0d27200341e0036a41186a220420034198016a41186a290300370300200341e0036a41106a220920034198016a41106a290300370300200341e0036a41086a220820034198016a41086a29030037030020032003290398013703e003200341c0046a41186a220e2004290300370300200341c0046a41106a22042009290300370300200341c0046a41086a22092008290300370300200320032903e0033703c004200341206a41186a200e290300370300200341206a41106a2004290300370300200341206a41086a2009290300370300200320032903c004370320411210132204450d28200441106a41002f00d5cc413b0000200441086a41002900cdcc41370000200441002900c5cc4137000020044112413210152204450d29200420032903203700122004412a6a200341386a290300370000200441226a200341206a41106a2903003700002004411a6a200341206a41086a290300370000200341e0046a41086a22094200370300200342003703e00420044132200341e0046a1002200341d0036a41086a2009290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d2a2003421037029c012003200341d0036a36029801200341e0036a20034198016a10d70120032d00f80322094102460d2b200341e0036a41086a290300210620032802f003210820032903e0032107200341c8006a200341f9036a41c70010f6021a20034198016a200341c8006a41c10010f6021a200320093a00e003200341e0036a41017220034198016a41c10010f6021a200341e4006a20034182046a410020032d0081044101461b36020020032006370350200320073703482003200536026020032008360258200341e0046a41086a22094200370300200342003703e00420044132200341e0046a1002200341d0036a41086a2009290300370300200320032903e0043703d003200341003602a0012003420137039801200341d8006a20034198016a10182003200341c8006a3602b002200341b0026a20034198016a10b301200328029c01210920032802a00121082003280260220a450d0820092008470d09200841016a22092008490d5d2008410174220e20092009200e491b22094100480d5d2008450d0f200328029801200820091015220e450d100c3e0b4101210e4101210d0b200a450d00200810160b200341e0036a41186a201337030020034188046a200e36020020034184046a2202200d360200200341a4046a200341f0026a41186a2903003702002003419c046a20034180036a29030037020020034194046a200341f8026a290300370200200320143703f003200320073703e003200320032903f00237028c042003200436028004200320063703e803200341e0016a200341e0036a10fd012002280200450d5320034180046a28020010160c530b2009101322050d4f0b200941081014000b200341e0036a41186a2004290300370300200341e0036a41106a2009290300370300200d200e29030037030020032003290398013703e003410e10132202450d26200241066a41002900abcc41370000200241002900a5cc413700002002410e412e10152202450d272002200329032037000e200241266a200341206a41186a2903003700002002411e6a200341206a41106a290300370000200241166a200341206a41086a290300370000200341e0046a41086a22054200370300200342003703e0042002412e200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003412010132205450d28200520032903e003370000200541186a200341e0036a41186a290300370000200541106a200341e0036a41106a290300370000200541086a200341e0036a41086a290300370000200341d0036a41102005412010012005101620021016410d10132202450d29200241056a41002900d69942370000200241002900d199423700002002410d412d10152202450d2a2002200329032037000d200241256a200341206a41186a22052903003700002002411d6a200341206a41106a2204290300370000200241156a200341206a41086a2209290300370000200341e0046a41086a220e4200370300200342003703e0042002412d200341e0046a1002200341d0036a41086a200e290300370300200320032903e0043703d003200341103602e4032003200341d0036a3602e0032008200341e0036a10e401200210162003200341206a108e01200341086a290300210f2003290300210c20034188046a4100360200200341e0036a41186a200f2006200c200754200f200654200f2006511b22021b2206370300200341a4046a20052903003702002003419c046a200429030037020020034194046a200929030037020020034208370380042003200c200720021b22073703f003200320063703e803200320073703e0032003200329032037028c0420034198016a200341e0036a10fd0120034184046a280200450d5020034180046a28020010160c500b20044200370300200342003703e004418cebc100411a200341e0046a100220092004290300370300200320032903e0043703d003412010132204450d2f20042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a290000370000200341d0036a4110200441201001200410164100210e0c440b200341206a41186a2205200341f9016a290000370300200341206a41106a220a200341f1016a290000370300200341206a41086a2215200341e9016a290000370300200320032900e101370320412010132202450d2f20022003290320370000200241186a2005290300370000200241106a200a290300370000200241086a201529030037000020082004460d03200341a0016a2205200e412d6a290000370300200341a8016a220a200e41356a290000370300200341b0016a2215200e413d6a290000370300200341b7016a2216200e41c4006a2800003600002003200e29002537039801200e41c8006a2104200e41246a2d000022184102460d04200341e9036a2005290300370000200341f1036a200a290300370000200341f9036a201529030037000020034180046a2016280000360000200320183a00e00320032003290398013700e103200341e0016a200341e0036a104120032d00e00122054102460d0520054101470d0b200341e8016a2802002108410121164101210520032802e401220a0d4f0c520b20092008470d05200841016a22092008490d542008410174220e20092009200e491b22094100480d542008450d08200328029801200820091015220e450d090c330b200328029801210e0c350b200210160c4b0b200821040b200341023a00e0010b4100210a410121164101210541000d490c4c0b200328029801210e0c2e0b20091013220e0d2e0b200941011014000b20091013220e0d2a0b200941011014000b200341206a41186a2219200341f9016a290000370300200341206a41106a221a200341f1016a290000370300200341206a41086a221b200341e9016a290000370300200320032900e101370320200941246c41b87f6a211c200341e0016a410172211d200341e0036a410172211820034198016a411f6a211e4102211f4120212041022116410021154101210502400240024002400340200341e0036a41186a22212019290300370300200341e0036a41106a2222201a290300370300200341e0036a41086a2223201b290300370300200320032903203703e00302402016417f6a2005470d00201f20162016201f491b2205ad4205862206422088a70d4f2006a7220a4100480d4f20022020200a10152202450d2d0b200220206a220a20032903e003370000200a41186a2021290300370000200a41106a2022290300370000200a41086a2023290300370000201541f803460d03201c2015460d0120034198016a41086a2221200e20156a220a41d1006a29000037030020034198016a41106a2222200a41d9006a29000037030020034198016a41186a2223200a41e1006a290000370300201e200a41e8006a2800003600002003200a41c9006a29000037039801200a41c8006a2d000022244102460d022018200329039801370000201841086a2021290300370000201841106a2022290300370000201841186a20232903003700002018411f6a201e280000360000200320243a00e003200341e0016a200341e0036a104120032d00e00122214102460d04024020214101460d00200441246a21042019201d41186a290000370300201a201d41106a290000370300201b201d41086a2900003703002003201d290000370320201f41026a211f202041206a2120201641016a2116201541246a21150c010b0b200a41ec006a2104200341e8016a280200210820032802e401220a0d470c4a0b200821040c010b200a41ec006a21040b200341023a00e0014100210a41000d440c470b200a41ec006a21044100210a41000d430c460b200341f4036a4101360200200341023602e401200341c8d7c3003602e001200342013702e403200341d0d7c3003602e0032003200341e0016a3602f003200341e0036a41bc9dc2001046000b200d41011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410e41011014000b412e41011014000b410d41011014000b412d41011014000b41b6e7c20041331029000b411241011014000b413241011014000b410e41011014000b412e41011014000b200541081014000b411841081014000b41b6e7c20041331029000b410e41011014000b412e41011014000b41b6e7c20041331029000b411241011014000b413241011014000b41839cc200419f011029000b41b6e7c20041331029000b410e41011014000b412e41011014000b412041011014000b410d41011014000b412d41011014000b410e41011014000b412e41011014000b412041011014000b410e41011014000b412e41011014000b412041011014000b412041011014000b41b6e7c20041331029000b410e41011014000b412e41011014000b200a41011014000b2003200936029c012003200e360298010b200341a0016a200841016a220d360200200e20086a41003a0000200341e4006a28020022080d020c030b2003200936029c012003200e360298010b20034198016a41086a220b200841016a360200200e20086a41013a000002400240024002400240200328029c01220d200b28020022086b411f4b0d00200841206a22092008490d22200d4101742212200920092012491b22094100480d22200d450d01200e200d20091015220e450d020c030b200d21090c030b20091013220e0d010b200941011014000b2003200936029c012003200e360298010b200b200841206a220d360200200e20086a220841086a200a41086a290000370000200841106a200a41106a290000370000200841186a200a41186a2900003700002008200a290000370000200341e4006a2802002208450d010b2009200d470d08200941016a220a2009490d1c2009410174220b200a200a200b491b220a4100480d1c2009450d01200e2009200a1015220e450d020c070b2009200d470d05200941016a22082009490d1b2009410174220a20082008200a491b22084100480d1b2009450d02200e200920081015220e450d030c040b200a1013220e0d050b200a41011014000b20081013220e0d010b200841011014000b2003200836029c012003200e360298010b200341a0016a2209200d41016a360200200e200d6a41003a00002009280200210a200328029c01210e20032802980121090c020b2003200a36029c012003200e360298010b200341a0016a2209200d41016a360200200e200d6a41013a000002400240024002400240200328029c01220e2009280200220d6b41204f0d00200d41206a2209200d490d18200e410174220a20092009200a491b220a4100480d18200e450d01200328029801200e200a10152209450d020c030b20032802980121090c030b200a101322090d010b200a41011014000b2003200a36029c012003200936029801200a210e0b20034198016a41086a200d41206a220a3602002009200d6a220d41086a200841086a290000370000200d41106a200841106a290000370000200d41186a200841186a290000370000200d20082900003700000b200341d0036a41102009200a10010240200e450d00200910160b20041016200341e0046a41086a22044200370300200342003703e004418cebc100411a200341e0046a1002200341d0036a41086a2004290300370300200320032903e0043703d003412010132204450d0220042005290000370000200441186a200541186a290000370000200441106a200541106a290000370000200441086a200541086a290000370000200341d0036a41102004412010012004101620034190036a41186a200341206a41186a29030037030020034190036a41106a200341206a41106a29030037030020034190036a41086a200341206a41086a29030037030020032003290320370390034101210e0b410021090b200341e0036a41186a200341f0026a41186a290300370300200341e0036a41106a200341f0026a41106a290300370300200341e0036a41086a200341f0026a41086a290300370300200341c8006a41086a20034190036a41086a290300370300200341c8006a41106a20034190036a41106a290300370300200341c8006a41186a20034190036a41186a290300370300200320032903f0023703e0032003200329039003370348200341e0046a41086a22054200370300200342003703e00420024132200341e0046a1002200341d0036a41086a2005290300370300200320032903e0043703d003200341003602a0012003420137039801200341d0026a41106a20034198016a10182003200341d0026a360220200341206a20034198016a10b301200328029c01210520032802a0012104024002400240024002400240024020094101470d0020052004470d01200441016a22052004490d1720044101742209200520052009491b22054100480d172004450d032003280298012004200510152209450d040c0a0b20052004470d01200441016a22052004490d1620044101742209200520052009491b22054100480d162004450d042003280298012004200510152209450d050c070b20032802980121090c090b20032802980121090c060b2005101322090d060b200541011014000b2005101322090d020b200541011014000b412041011014000b2003200536029c0120032009360298010b200341a0016a200441016a2208360200200920046a41003a00000c020b2003200536029c0120032009360298010b20034198016a41086a220d200441016a360200200920046a41013a000002400240024002400240200328029c012208200d28020022046b411f4b0d00200441206a22052004490d102008410174220a20052005200a491b22054100480d102008450d0120092008200510152209450d020c030b200821050c030b2005101322090d010b200541011014000b2003200536029c0120032009360298010b200d200441206a2208360200200920046a220441086a200341e0036a41086a290300370000200441106a200341e0036a41106a290300370000200441186a200341e0036a41186a290300370000200420032903e0033700000b0240024002400240024002400240024002400240200e41ff01714101470d0020052008470d08200541016a22042005490d142005410174220e20042004200e491b22044100480d142005450d0120092005200410152209450d020c070b20052008470d05200541016a22042005490d132005410174220e20042004200e491b22044100480d132005450d0220092005200410152209450d030c040b2004101322090d050b200441011014000b2004101322090d010b200441011014000b2003200436029c0120032009360298010b200341a0016a2205200841016a360200200920086a41003a000020052802002109200328029c01210420032802980121050c020b2003200436029c0120032009360298010b200341a0016a2205200841016a360200200920086a41013a000002400240024002400240200328029c012204200528020022086b41204f0d00200841206a22052008490d1020044101742209200520052009491b22094100480d102004450d012003280298012004200910152205450d020c030b20032802980121050c030b2009101322050d010b200941011014000b2003200936029c012003200536029801200921040b20034198016a41086a200841206a2209360200200520086a220841086a200341c8006a41086a290300370000200841106a200341c8006a41106a290300370000200841186a200341c8006a41186a290300370000200820032903483700000b200341d0036a411020052009100102402004450d00200510160b2002101620034184026a280200450d0320034180026a28020010160c030b20034184026a200436020020034180026a200536020020034188026a28020021020b2005200241186c6a220220063703082002200c3703002002200f20077c37031020034188026a2202200228020041016a360200200341206a200341e0016a10fd0120034184026a28020021020b2002450d0020034180026a28020010160b4100210241012109410121080c0d0b4101211502402005450d00200210160b200a2102200821050c030b410121090b4101210820012d00002204410f4d0d0b0c0c0b410021150b200341c8006a412c6a210a200e200941246c6a21080240034020082004460d0120042d00002109200441246a210420094102470d000b0b0240200d450d00200e10160b02402015450d004100210420120d050c060b200a10a701200320163602d802200320053602d402200320023602d00202400240024002400240024002400240024002400240411210132202450d00200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc413700002002411241321015220b450d01200b200a290000370012200b412a6a200a41186a290000370000200b41226a200a41106a290000370000200b411a6a200a41086a290000370000200341e0046a41086a22024200370300200342003703e004200b4132200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200341e0016a200341d0036a10d5010240024002400240024020032d00ec0122024102470d00200341e0046a41086a22024200370300200342003703e004419a97c200411a200341e0046a1002200341d0036a41086a22052002290300370300200320032903e0043703d003200341d0036a411041acf1c300410041001000417f460d01200341b0016a420037030020034198016a41106a420037030020034198016a41086a42003703002003420037039801200341d0036a411020034198016a4120410010002202417f460d072002411f4d0d07200341e0036a41186a220220034198016a41186a290300370300200341e0036a41106a220520034198016a41106a290300370300200341e0036a41086a220420034198016a41086a29030037030020032003290398013703e003200341c0046a41186a22092002290300370300200341c0046a41106a22022005290300370300200341c0046a41086a22052004290300370300200320032903e0033703c004200341206a41186a2009290300370300200341206a41106a2002290300370300200341206a41086a2005290300370300200320032903c004370320411210132202450d08200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc4137000020024112413210152212450d09201220032903203700122012412a6a200341386a290300370000201241226a200341306a2903003700002012411a6a200341206a41086a290300370000200341e0046a41086a22024200370300200342003703e00420124132200341e0046a1002200341d0036a41086a22052002290300370300200320032903e0043703d003200341e0036a200341d0036a10d50120032d00ec034102460d0a20032802e403211620032802e003211520032802e803210420034198016a200341ec036a41c20010f6021a200341e0036a20034198016a41c20010f6021a20032d008104211820024200370300200342003703e00420124132200341e0046a100220052002290300370300200320032903e0043703d0032003420137039801200341003602a001200320043602b002200341b0026a20034198016a101820032802a00121052004450d022004410574210d410020056b2104200328029c0121092015210203400240024002400240200920046a41204f0d00200541206a22082005490d162009410174220e20082008200e491b220e4100480d162009450d012003280298012009200e101522080d020c090b20032802980121080c020b200e10132208450d070b2003200e36029c012003200836029801200e21090b20034198016a41086a200541206a220e360200200820056a220541086a200241086a290000370000200541106a200241106a290000370000200541186a200241186a29000037000020052002290000370000200441606a2104200e2105200241206a2102200d41606a220d0d000c040b0b200341f0026a41086a200341f5016a290000370300200341f0026a41106a200341fd016a290000370300200341f0026a41186a20034185026a29000037030020034190036a41086a20034196026a29010037030020034190036a41106a2003419e026a29010037030020034190036a41186a200341a6026a2901003703002003200341ed016a2900003703f00220032003418e026a290100370390032003418d026a2d0000210520032802e401450d0e20032802e00110160c0e0b20024200370300200342003703e004419a97c200411a200341e0046a100220052002290300370300200320032903e0043703d003412010132202450d092002200a290000370000200241186a200a41186a290000370000200241106a200a41106a290000370000200241086a200a41086a290000370000200341d0036a411020024120100120021016410021050c0c0b2005210e0b024002400240200328029c01200e470d00200e41016a2202200e490d10200e4101742205200220022005491b22054100480d10200e450d01200328029801200e200510152202450d020c0b0b20032802980121020c0b0b2005101322020d090b200541011014000b200e41011014000b411241011014000b413241011014000b41b6e7c20041331029000b411241011014000b413241011014000b41839cc200419f011029000b412041011014000b2003200536029c0120032002360298010b20034198016a41086a2209200e41016a3602002002200e6a41013a000002400240024002400240200328029c012208200928020022046b411f4b0d00200441206a22052004490d082008410174220e20052005200e491b22054100480d082008450d0120022008200510152202450d020c030b200821050c030b2005101322020d010b200541011014000b2003200536029c0120032002360298010b2009200441206a220e360200200220046a220941086a200a41086a290000370000200941106a200a41106a290000370000200941186a200a41186a2900003700002009200a290000370000024002400240024002400240024002400240024002400240200341e0036a41226a410020184101461b2209450d002005200e470d01200541016a22082005490d0f2005410174220d20082008200d491b22084100480d0f2005450d0320022005200810152202450d040c090b2005200e470d01200541016a22092005490d0e20054101742208200920092008491b220d4100480d0e2005450d0420022005200d10152202450d050c060b200521080c080b2005210d0c050b2008101322020d050b200841011014000b200d101322020d010b200d41011014000b2003200d36029c0120032002360298010b200341a0016a200441216a22043602002002200e6a41003a00000c020b2003200836029c0120032002360298010b20034198016a41086a2218200441216a22053602002002200e6a41013a000002400240024002400240200820056b411f4b0d00200541206a220e2005490d092008410174220d200e200e200d491b220d4100480d092008450d0120022008200d10152202450d020c030b2008210d0c030b200d101322020d010b200d41011014000b2003200d36029c0120032002360298010b2018200441c1006a2204360200200220056a220541086a200941086a290000370000200541106a200941106a290000370000200541186a200941186a290000370000200520092900003700000b200341d0036a41102002200410010240200d450d00200210160b02402016450d00201510160b20121016200341e0046a41086a22024200370300200342003703e004419a97c200411a200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003412010132202450d052002200a290000370000200241186a200a41186a290000370000200241106a200a41106a290000370000200241086a200a41086a290000370000200341d0036a41102002412010012002101620034190036a41186a200341206a41186a29030037030020034190036a41106a200341206a41106a29030037030020034190036a41086a200341206a41086a2903003703002003200329032037039003410121050b410021020b20034185046a20053a0000200341ed036a200341f0026a41086a290300370000200341f5036a200341f0026a41106a290300370000200341fd036a200341f0026a41186a29030037000020034186046a2003290390033701002003418e046a20034190036a41086a29030037010020034196046a20034190036a41106a2903003701002003419e046a20034190036a41186a290300370100200320023a00e403200320032903f0023700e5032003200341d0026a3602e003200341e0046a41086a22024200370300200342003703e004200b4132200341e0046a1002200341d0036a41086a2002290300370300200320032903e0043703d003200341003602e801200342013703e00120032802d00221022003200341d0026a41086a28020022053602980120034198016a200341e0016a101802402005450d002005410574210e4100200341e0016a41086a28020022056b210920032802e001210d20032802e401210803400240200820096a411f4b0d00200541206a22042005490d042008410174220a20042004200a491b22044100480d04024002402008450d00200d200820041015220d0d010c070b20041013220d450d060b200421080b200d20056a22042002290000370000200441186a200241186a290000370000200441106a200241106a290000370000200441086a200241086a290000370000200941606a2109200541206a2105200241206a2102200e41606a220e0d000b200341e8016a2005360200200320083602e4012003200d3602e0010b200341e0036a410472200341e0016a10f40120032802e4012102200341d0036a411020032802e0012205200341e0016a41086a280200100102402002450d00200510160b200b1016024020032802d402450d0020032802d00210160b0240200341ec006a280200450d00200341e8006a28020010160b41002108410121090b4100210220012d00002204410f4d0d080c090b1010000b200441011014000b412041011014000b200b10160b20040d00410021084101210920012d00002204410f4d0d030c040b4100210841012109200d450d010b200e101620012d00002204410f4d0d010c020b20012d00002204410f4b0d010b410120047441beff01710d01024020044106460d002004410f470d012009450d02200141086a280200450d02200141046a28020010160c020b2008450d01200141086a280200450d01200141046a28020010160c010b200141086a280200450d00200141046a28020010160b2000200536020420002002360200200341f0046a24000bfe1605017f017e017f017e067f230041d0016b220324004200210420034190016a41086a22054200370300200342003703900141bd95c300411b20034190016a1002200341a0016a41086a200529030037030020032003290390013703a0010240024002400240200341a0016a411041acf1c300410041001000417f460d002003420037032820034200370320200341a0016a4110200341206a4110410010002205417f460d022005410f4d0d02200341286a29030021062003290320210441142107411410132205450d010c030b42002106411421074114101322050d020b200741011014000b41b6e7c20041331029000b200541106a410028009e9643360000200541086a410029009696433700002005410029008e9643370000024002400240024002400240024002400240024002400240024020052007413410152205450d00200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413420034190016a1002200341a0016a41086a200729030037030020032003290390013703a0012003200137032020032002370328200341a0016a4110200341206a41101001200510162004200158200620025820062002511b0d0b411410132205450d02200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d03200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200341086a2005413410dc01200341086a41106a2903002102200329031021012003280208210820051016410e10132205450d04200541066a410029008fa04337000020054100290089a0433700002005410e412e10152205450d052005200029000037000e200541266a200041186a2900003700002005411e6a200041106a290000370000200541166a200041086a29000037000020034190016a41086a2207420037030020034200370390012005412e20034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a411010032005101602402001200284500d002008450d002003200137032020032002370328200341206a105e0b410e10132205450d06200541066a41002900abcc41370000200541002900a5cc413700002005410e412e10152205450d072005200029000037000e200541266a200041186a2900003700002005411e6a200041106a290000370000200541166a200041086a29000037000020034190016a41086a2207420037030020034200370390012005412e20034190016a1002200341c0016a41086a200729030037030020032003290390013703c00102400240200341c0016a411041acf1c300410041001000417f460d00200341206a41186a4200370300200341206a41106a4200370300200341206a41086a420037030020034200370320200341c0016a4110200341206a4120410010002207417f460d032007411f4d0d03200341a0016a41186a2207200341206a41186a2208290300370300200341a0016a41106a2209200341206a41106a220a290300370300200341a0016a41086a220b200341206a41086a220c290300370300200320032903203703a001200341c0016a411010032005101620082007290300370300200a2009290300370300200c200b290300370300200320032903a001370320410e10132205450d0a200541066a41002900ddcc41370000200541002900d7cc413700002005410e412e10152205450d0b2005200329032037000e200541266a200341386a2903003700002005411e6a200341206a41106a290300370000200541166a200341206a41086a29030037000020034190016a41086a2207420037030020034200370390012005412e20034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016410d2107410d10132205450d010c0c0b20051016410d2107410d101322050d0b0b200741011014000b413441011014000b41b6e7c20041331029000b411441011014000b413441011014000b410e41011014000b412e41011014000b410e41011014000b412e41011014000b410e41011014000b412e41011014000b200541056a41002900d69942370000200541002900d199423700000240024002400240024002400240024020052007412d10152205450d002005200029000037000d200541256a200041186a2900003700002005411d6a200041106a290000370000200541156a200041086a29000037000020034190016a41086a2207420037030020034200370390012005412d20034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016411210132205450d01200541106a41002f00bbe9413b0000200541086a41002900b3e941370000200541002900abe94137000020054112413210152205450d02200520002900003700122005412a6a200041186a290000370000200541226a200041106a2900003700002005411a6a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413220034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016200010a7012000108002411210132205450d03200541106a41002f00f2c9403b0000200541086a41002900eac940370000200541002900e2c94037000020054112413210152205450d04200520002900003700122005412a6a200041186a290000370000200541226a200041106a2900003700002005411a6a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413220034190016a1002200341c0016a41086a200729030037030020032003290390013703c001200341c0016a4110100320051016411810132205450d05200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0620052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a29000037000020034190016a41086a2207420037030020034200370390012005413820034190016a1002200341a0016a41086a200729030037030020032003290390013703a00102400240200341a0016a411041acf1c300410041001000417f460d002003420037032820034200370320200341a0016a4110200341206a4110410010002207417f460d012007410f4d0d01200341286a29030021022003290320210141002107200510162001200284504101710d0b0c090b41012107200510164100410171450d080c0a0b41b6e7c20041331029000b412d41011014000b411241011014000b413241011014000b411241011014000b413241011014000b411841011014000b413841011014000b20070d010b200341d0016a24000f0b02400240411310132205450d002005410f6a410028009ee942360000200541086a4100290097e9423700002005410029008fe94237000020054113413310152205450d01200520002900003700132005412b6a200041186a2208290000370000200541236a200041106a22092900003700002005411b6a200041086a220a290000370000200341206a41086a220742003703002003420037032020054133200341206a1002200341a0016a41086a2007290300370300200320032903203703a001200341a0016a4110100320051016200741013a0000200341296a2000290000370000200341316a200a290000370000200341396a2009290000370000200341c1006a2008290000370000200341023a0020200341206a105a200341d0016a24000f0b411341011014000b413341011014000bdb0a05017f017e017f017e047f230041a0016b2203240042002104200341206a41086a220542003703002003420037032041bd95c300411b200341206a100220034190016a41086a20052903003703002003200329032037039001024002400240024020034190016a411041acf1c300410041001000417f460d00200342003703282003420037032020034190016a4110200341206a4110410010002205417f460d022005410f4d0d02200341286a29030021062003290320210441182107411810132205450d010c030b42002106411821074118101322050d020b200741011014000b41b6e7c20041331029000b200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000002400240024002400240024002400240024020052007413810152205450d0020052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200341206a41086a220742003703002003420037032020054138200341206a100220034190016a41086a20072903003703002003200329032037039001200320013703202003200237032820034190016a4110200341206a41101001200510162004200158200620025820062002511b0d07411810132205450d02200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0320052000290000370018200541306a200041186a290000370000200541286a200041106a290000370000200541206a200041086a290000370000200341086a2005413810dc01200341086a41106a290300210220032802082107200329031021012005101602402001200284500d002007450d002003200137032020032002370328200341206a105e0b411410132205450d04200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d05200520002900003700142005412c6a200041186a290000370000200541246a200041106a2900003700002005411c6a200041086a290000370000200341206a41086a220742003703002003420037032020054134200341206a100220034190016a41086a20072903003703002003200329032037039001024020034190016a411041acf1c300410041001000417f460d00200342003703282003420037032020034190016a4110200341206a4110410010002207417f460d022007410f4d0d02200341286a29030021022003290320210141002107200510162001200284504101710d090c070b41012107200510164100410171450d060c080b413841011014000b41b6e7c20041331029000b411841011014000b413841011014000b411441011014000b413441011014000b20070d010b200341a0016a24000f0b02400240411310132205450d002005410f6a410028009ee942360000200541086a4100290097e9423700002005410029008fe94237000020054113413310152205450d01200520002900003700132005412b6a200041186a2208290000370000200541236a200041106a22092900003700002005411b6a200041086a220a290000370000200341206a41086a220742003703002003420037032020054133200341206a100220034190016a41086a2007290300370300200320032903203703900120034190016a4110100320051016200741013a0000200341296a2000290000370000200341316a200a290000370000200341396a2009290000370000200341c1006a2008290000370000200341023a0020200341206a105a200341a0016a24000f0b411341011014000b413341011014000bb20504027f017e017f037e230041206b22022400024002400240411410132203450d00200341106a410028009e9643360000200341086a410029009696433700002003410029008e964337000020034114413410152203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220542003703002002420037031020034134200241106a1002200241086a2005290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703182002420037031020024110200241106a4110410010002205417f460d022005410f4d0d02200241186a29030021062002290310210420031016411810132203450d010c050b42002106200310164118101322030d040b411841011014000b41b6e7c20041331029000b411441011014000b413441011014000b200341106a41002900b29643370000200341086a41002900aa9643370000200341002900a29643370000024020034118413810152203450d0020032001290000370018200341306a200141186a290000370000200341286a200141106a290000370000200341206a200141086a29000037000042002107200241106a41086a220142003703002002420037031020034138200241106a1002200241086a2001290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703182002420037031020024110200241106a4110410010002201417f460d022001410f4d0d02200241186a2903002108200229031021070c010b420021080b200310162000200720047c22043703002000200820067c2004200754ad7c370308200241206a24000f0b41b6e7c20041331029000b413841011014000bd20301087f230041306b2201240041082102200141206a41086a22034200370300200142003703204193ecc2004115200141206a1002200141086a200329030037030020012001290320370300410021040240024002402001411041acf1c300410041001000417f460d002001421037021420012001360210200141206a200141106a102020012802202202450d02200141286a2802002104200128022421050c010b410021050b200220044106746a210620022103024002400340200620036b41ff014d0d01410121072003411c6a22082000460d0220082000412010f802450d02200341dc006a22082000460d0220082000412010f802450d022003419c016a22082000460d0220082000412010f802450d02200341dc016a22082000460d0220034180026a210320082000412010f8020d000c020b0b024020032006460d000340410121072003411c6a22032000460d0220032000412010f802450d02200341246a22032006470d000b0b410021070b02402004450d0020044106742103200241106a210003400240200041046a280200450d00200028020010160b200041c0006a2100200341406a22030d000b0b02402005450d00200210160b200141306a240020070f0b41b6e7c20041331029000b8c0301027f230041306b22022400024002400240413210132203450d00200341306a41002f00ecd9433b0000200341286a41002900e4d943370000200341206a41002900dcd943370000200341186a41002900d4d943370000200341106a41002900ccd943370000200341086a41002900c4d943370000200341002900bcd9433700002003413241e40010152203450d0120032001290000370032200341ca006a200141186a290000370000200341c2006a200141106a2900003700002003413a6a200141086a290000370000200241206a41086a2201420037030020024200370320200341d200200241206a1002200241086a200129030037030020022002290320370300024002402002411041acf1c300410041001000417f460d002002421037021420022002360210200241206a200241106a101e20022802202201450d0420002002290224370204200020013602000c010b20004100360208200042083702000b20031016200241306a24000f0b413241011014000b41e40041011014000b41b6e7c20041331029000bda09010d7f230041d0016b2202240002400240412710132203450d002003411f6a41002900b4d943370000200341186a41002900add943370000200341106a41002900a5d943370000200341086a410029009dd94337000020034100290095d9433700002003412741ce0010152203450d0120032001370027200241d0006a41086a22044200370300200242003703502003412f200241d0006a1002200241c0006a41086a200429030037030020022002290350370340024002400240200241c0006a411041acf1c300410041001000417f460d00200241d0006a41186a22054200370300200241d0006a41106a22064200370300200241d0006a41086a22074200370300200242003703504100210802404100200241c0006a4110200241d0006a41204100100022042004417f461b2204411f4d0d00200241186a22082005290300370300200241106a22052006290300370300200241086a2206200729030037030020022002290350370300200241b0016a41186a2008290300370300200241b0016a41106a2005290300370300200241b0016a41086a2006290300370300200220022903003703b001410121080b200241d0006a41186a2205200241b0016a41186a290300370300200241d0006a41106a2206200241b0016a41106a290300370300200241d0006a41086a2207200241b0016a41086a290300370300200220022903b0013703502008450d0220024190016a41186a200529030037030020024190016a41106a200629030037030020024190016a41086a2007290300370300200220022903503703900120054200370300200642003703002007420037030020024200370350200241c0006a4110200241d0006a41202004412020044120491b220710002204417f460d022004411f4d0d02200241186a2204200241d0006a41186a2208290300370300200241106a2205200241d0006a41106a2209290300370300200241086a2206200241d0006a41086a220a29030037030020022002290350370300200241b0016a41186a220b2004290300370300200241b0016a41106a220c2005290300370300200241b0016a41086a220d2006290300370300200220022903003703b001200241003a0050200241c0006a4110200241d0006a4101200741206a100041016a41014d0d0220022d00502107200820024190016a41186a290300370300200920024190016a41106a290300370300200a20024190016a41086a290300370300200241d0006a41286a220e200d290300370300200241d0006a41306a220d200c290300370300200241d0006a41386a220c200b2903003703002002200229039001370350200220022903b001370370200241386a220b200c290300370300200241306a220c200d290300370300200241286a220d200e290300370300200241206a220e200229037037030020042008290300370300200520092903003703002006200a29030037030020022002290350370300200041386a200b290300370000200041306a200c290300370000200041286a200d290300370000200041206a200e290300370000200041186a2004290300370000200041106a2005290300370000200041086a2006290300370000200020022903003700000c010b410221070b200020073a004020031016200241d0016a24000f0b41b6e7c20041331029000b412741011014000b41ce0041011014000bde0504027f017e067f017e230041d0006b2202240002400240411710132203450d002003410f6a41002900ccf740370000200341086a41002900c5f740370000200341002900bdf74037000020034117413710152203450d01200320012900003700172003412f6a200141186a290000370000200341276a200141106a2900003700002003411f6a200141086a290000370000200241306a41086a220142003703002002420037033020034137200241306a1002200241086a2001290300370300200220022903303703000240024002402002411041acf1c300410041001000417f460d0020024200370330410020024110200241306a41084100100022012001417f461b220141074d0d0220022903302104200241003a003020024110200241306a41012001410820014108491b2201100041016a41014b2205450d0220022d00300d02200241c8006a4200370300200241306a41106a4200370300200241386a42003703002002420037033020024110200241306a4120200120056a220610002201417f460d022001411f4d0d02200241106a41186a2201200241306a41186a2207290300370300200241106a41106a2205200241306a41106a2208290300370300200241106a41086a2209200241306a41086a220a290300370300200220022903303703102002420037033020024110200241306a41082006412072100041016a41084d0d022002290330210b2007200129030037030020082005290300370300200a20092903003703002002200229031037033020012007290300370300200520082903003703002009200a29030037030020022002290330370310200041106a200b3703002000200437030820004201370300200041186a2002290310370300200041206a2009290300370300200041286a2005290300370300200041306a20012903003703000c010b200042003703000b20031016200241d0006a24000f0b41b6e7c20041331029000b411741011014000b413741011014000ba40c03067f047e027f230041b0016b2202240002400240412310132203450d002003411f6a41002800e8cd42360000200341186a41002900e1cd42370000200341106a41002900d9cd42370000200341086a41002900d1cd42370000200341002900c9cd423700002003412341c60010152203450d01200320012900003700232003413b6a200141186a290000370000200341336a200141106a2900003700002003412b6a200141086a29000037000020024190016a41086a220142003703002002420037039001200341c30020024190016a1002200241086a200129030037030020022002290390013703000240024002402002411041acf1c300410041001000417f460d0020024190016a41186a2204420037030020024190016a41106a2205420037030020024190016a41086a22064200370300200242003703900141002002411020024190016a41204100100022012001417f461b2201411f4d0d02200241f0006a41186a22072004290300370300200241f0006a41106a22042005290300370300200241f0006a41086a220520062903003703002002200229039001370370200241d0006a41186a22062007290300370300200241d0006a41106a22072004290300370300200241d0006a41086a2204200529030037030020022002290370370350200241106a41186a2006290300370300200241106a41106a2007290300370300200241106a41086a200429030037030020022002290350370310200242003703900141002002411020024190016a41082001412020014120491b2204100022012001417f461b220141074d0d022002290390012108200242003703900141002002411020024190016a41082001410820014108491b20046a2204100022012001417f461b220141074d0d022002290390012109200242003703900141002002411020024190016a41082001410820014108491b20046a2204100022012001417f461b220141074d0d02200229039001210a200242003703900141002002411020024190016a41082001410820014108491b20046a2204100022012001417f461b220141074d0d02200229039001210b200241a8016a420037030020024190016a41106a420037030020024190016a41086a420037030020024200370390012002411020024190016a41202001410820014108491b20046a220110002204417f460d0220044120490d02200241f0006a41186a220420024190016a41186a290300370300200241f0006a41106a220520024190016a41106a290300370300200241f0006a41086a220620024190016a41086a2903003703002002200229039001370370200241d0006a41186a22072004290300370300200241d0006a41106a22042005290300370300200241d0006a41086a2205200629030037030020022002290370370350200241306a41186a2007290300370300200241306a41106a2004290300370300200241306a41086a200529030037030020022002290350370330200241003a0090012002411020024190016a4101200141206a100041016a41014d0d0220022d009001220141034f0d0220024190016a41186a2204200241106a41186a29030037030020024190016a41106a2205200241106a41106a29030037030020024190016a41086a2206200241106a41086a290300370300200241f0006a41086a2207200241306a41086a290300370300200241f0006a41106a220c200241306a41106a290300370300200241f0006a41186a220d200241306a41186a2903003703002002200229031037039001200220022903303703702002200241d0006a41036a280000360033200220022800503602302000200b3703182000200a37031020002009370308200020083703002000200229039001370320200041286a2006290300370300200041306a2005290300370300200041386a200429030037030020002002290370370340200041c8006a2007290300370300200041d0006a200c290300370300200041d8006a200d2903003703002002200228003336005320022002280230360250200020013a006020002002280250360061200041e4006a20022800533600000c010b200041033a00600b20031016200241b0016a24000f0b41b6e7c20041331029000b412341011014000b41c60041011014000bdc0202027f027e230041206b2202240002400240411410132203450d00200341106a410028009e9643360000200341086a410029009696433700002003410029008e964337000020034114413410152203450d01200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241106a41086a220142003703002002420037031020034134200241106a1002200241086a2001290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703182002420037031020024110200241106a4110410010002201417f460d022001410f4d0d02200241186a2903002105200229031021040c010b420021050b200310162000200537030820002004370300200241206a24000f0b41b6e7c20041331029000b411441011014000b413441011014000bdd0101017f23004180026b2201240020014188016a200010910102402001280288014101470d002001200129028c0137020c2001410136020820014180026a240041000f0b200141086a20014188016a41086a29030010c001024020012802084101470d0020014180026a240041000f0b20014188016a200141086a41086a41f80010f6021a20012d00fc0121000240200141dc016a280200450d0020012802d80110160b0240200141e8016a280200450d0020012802e40110160b0240200141f4016a280200450d0020012802f00110160b20014180026a24002000450bff0b01037f024020002802002201280200417f6a220241104b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e11001a1a1a01021a0304050607081a1a090a000b200141086a280200220241064b0d10024020020e071a001a121a13141a0b200141106a280200450d192001410c6a2802001016200028020010160f0b200141086a2d00002202410e4b0d1720024106470d18200141106a280200450d182001410c6a2802001016200028020010160f0b20012802044101470d17200141086a109001200028020010160f0b200141086a280200450d1620012802041016200028020010160f0b200141086a2d00004101470d150240200141106a280200450d002001410c6a28020010160b02402001411c6a280200450d00200141186a28020010160b200141286a280200450d15200141246a2802001016200028020010160f0b200141086a2d00004103470d14200141d0006a280200450d14200141cc006a2802001016200028020010160f0b200141086a2d00004101470d13200141106a280200450d132001410c6a2802001016200028020010160f0b200141086a280200450d1220012802041016200028020010160f0b200141086a2d0000417f6a220241054b0d11024020020e06000405060708000b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d11200141286a280200450d1120021016200028020010160f0b200141086a28020022024102460d0120024101470d10200141106a280200450d102001410c6a2802001016200028020010160f0b200141086a2d0000220241064b0d0a20020e070f0f0f0f0b0c0d0f0b200141106a280200450d0e2001410c6a2802001016200028020010160f0b200141106a280200450d0d2001410c6a2802001016200028020010160f0b200141106a280200450d0c2001410c6a2802001016200028020010160f0b200141106a280200450d0b2001410c6a2802001016200028020010160f0b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d0a200141286a280200450d0a20021016200028020010160f0b02402001412c6a2802002202450d00200141306a280200450d00200210160b0240200141386a2802002202450d002001413c6a280200450d00200210160b200141c4006a2802002202450d09200141c8006a280200450d0920021016200028020010160f0b0240200141146a2802002203450d002001410c6a28020021022003410c6c210303400240200241046a280200450d00200228020010160b2002410c6a2102200341746a22030d000b0b200141106a280200450d082001410c6a2802001016200028020010160f0b200141106a280200450d072001410c6a2802001016200028020010160f0b200141106a280200450d062001410c6a2802001016200028020010160f0b0240200141146a2802002203450d002001410c6a2802002102200341186c210303400240200241046a280200450d00200228020010160b0240200241106a280200450d002002410c6a28020010160b200241186a2102200341686a22030d000b0b200141106a280200450d052001410c6a2802001016200028020010160f0b200141106a280200450d042001410c6a2802001016200028020010160f0b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d03200141d0006a280200450d0320021016200028020010160f0b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d02200141d0006a280200450d0220021016200028020010160f0b200141106a280200450d012001410c6a2802001016200028020010160f0b200141106a280200450d002001410c6a2802001016200028020010160f0b200028020010160bef0202027f017e230041206b2202240002400240411e10132203450d00200341166a41002900f89141370000200341106a41002900f29141370000200341086a41002900ea9141370000200341002900e291413700002003411e413e10152203450d012003200129000037001e200341366a200141186a2900003700002003412e6a200141106a290000370000200341266a200141086a290000370000200241106a41086a22014200370300200242003703102003413e200241106a1002200241086a2001290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200242003703104100210120024110200241106a41084100100041016a41084d0d022002290310210420031016200041086a20043703000c010b20031016200041086a4120360200200041a491c100360204410121010b20002001360200200241206a24000f0b41b6e7c20041331029000b411e41011014000b413e41011014000bb40401027f230041e0026b22042400200441d8016a2002108d01024002400240024020042d00b8024103470d004185c9c3002101411f21020c010b20042802d8012105200441f0006a200441d8016a41047241e40010f6021a20042005360208200441086a410472200441f0006a41e40010f6021a0240200441c8006a22052001460d0020052001412010f802450d0041acccc2002101413721020c010b200420033a0068200441f0006a41186a200241186a290000370300200441f0006a41106a200241106a290000370300200441f0006a41086a200241086a29000037030020042002290000370370200441d8016a200441086a41e80010f6021a412310132202450d01410021012002411f6a41002800e8cd42360000200241186a41002900e1cd42370000200241106a41002900d9cd42370000200241086a41002900d1cd42370000200241002900c9cd423700002002412341c60010152202450d02200220042903703700232002413b6a20044188016a290300370000200241336a200441f0006a41106a2903003700002002412b6a200441f0006a41086a290300370000200441d0026a41086a22034200370300200442003703d002200241c300200441d0026a1002200441c0026a41086a2003290300370300200420042903d0023703c002200441103602d4022004200441c0026a3602d002200441d8016a200441d0026a109c01200210160b2000200236020420002001360200200441e0026a24000f0b412341011014000b41c60041011014000bb70201027f0240024002400240024002402000280200220141064b0d0020010e0705010502050304050b02402000410c6a2802002202450d00200028020421012002410c6c210203400240200141046a280200450d00200128020010160b2001410c6a2101200241746a22020d000b0b200041086a280200450d04200041046a28020010160f0b200041086a280200450d03200028020410160f0b200041086a280200450d02200028020410160f0b200041086a280200450d01200028020410160f0b02402000410c6a2802002202450d0020002802042101200241186c210203400240200141046a280200450d00200128020010160b0240200141106a280200450d002001410c6a28020010160b200141186a2101200241686a22020d000b0b200041086a280200450d00200041046a28020010160f0b0b910301037f230041306b2202240002400240411e10132203450d00200341166a41002900da9141370000200341106a41002900d49141370000200341086a41002900cc9141370000200341002900c491413700002003411e413c10152203450d012003200137001e200241106a41086a220442003703002002420037031020034126200241106a1002200241086a2004290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200241286a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010002204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031016200241306a24000f0b41b6e7c20041331029000b411e41011014000b413c41011014000b880503047f017e077f230041e0016b22032400200341d0006a200110c0010240024020032802504101470d0020032802582104200328025421050c010b2003200341d0006a41086a220641d00010f602220441c8016a2903002107200441c4016a2802002108200441c0016a2802002109200441b8016a280200210a200441b4016a280200210b200441b0016a280200210c200441ac016a280200210d200441a8016a280200210e200241086a2802002105200642003703002004420037035041c4afc100411d200441d0006a1002200441d0016a41086a2006290300370300200420042903503703d00102400240024002400240024002400240200441d0016a411041acf1c300410041001000417f460d0020044100360250200441d0016a4110200441d0006a41044100100041016a41044d0d02200428025020054f0d010c070b4180082005490d060b2005417f4c0d0102402005450d0020022802002106200510132202450d0320022006200510f6021a200a450d050c040b41012102200a0d030c040b41b6e7c20041331029000b100f000b200541011014000b200b10160b200441e0006a2001370300200441d8006a41023a00002004410b3a0050200441d0006a105a200441d0006a200441d00010f6021a200441c0016a2007370300200441bc016a2008360200200441b4016a2005360200200441b0016a2005360200200441a8016a200c360200200441a4016a200d360200200420093602b801200420023602ac012004200e3602a0012001200441d0006a10cb01410021050c010b0240200d450d00200e10160b0240200a450d00200b10160b02402008450d00200910160b41b1afc1002105411321040b2000200436020420002005360200200341e0016a24000bda0c03047f017e0c7f230041e0016b22032400200341d0006a200110c00102400240024020032802504101470d002003280258210420032802542105200241046a2802000d010c020b2003200341d0006a41086a220641d00010f602220441c8016a2903002107200441c4016a2802002108200441c0016a2802002109200441bc016a280200210a200441b8016a280200210b200441b4016a280200210c200441b0016a280200210d200441ac016a280200210e200441a8016a280200210f200241086a2802002105200642003703002004420037035041fdaec100411a200441d0006a1002200441d0016a41086a2006290300370300200420042903503703d001024002400240024002400240024002400240024002400240024002400240200441d0016a411041acf1c300410041001000417f460d0020044100360250200441d0016a4110200441d0006a41044100100041016a41044d0d02200428025020054d0d010c0c0b410520054b0d0b0b200441d0006a41086a22064200370300200442003703504197afc100411a200441d0006a1002200441d0016a41086a2006290300370300200420042903503703d00102400240200441d0016a411041acf1c300410041001000417f460d0020044100360250200441d0016a4110200441d0006a41044100100041016a41044d0d03200428025020054f0d010c0b0b41282005490d0a0b411210132206450d03200641106a41002f00a4ad413b0000200641086a410029009cad4137000020064100290094ad4137000020044292808080a0023702542004200636025020022802002110200420053602d001200441d0016a200441d0006a1018024002400240024020042802542211200428025822126b20054f0d00201220056a22062012490d0620114101742213200620062013491b22134100480d062011450d01200428025020112013101522060d020c080b200428025021060c020b201310132206450d060b2004201336025420042006360250201321110b200620126a2010200510f6021a200441d0006a41086a22134200370300200442003703502006201220056a200441d0006a1002200441d0016a41086a2013290300370300200420042903503703d001200441d0016a411041acf1c300410041001000211202402011450d00200610160b02402012417f460d0041d7acc100210541192104200e0d0c0c0d0b411210132206450d05200641106a41002f00a4ad413b0000200641086a410029009cad4137000020064100290094ad4137000020044292808080a002370254200420063602502004200d3602d001200441d0016a200441d0006a1018024002400240024020042802542211200428025822126b200d4f0d002012200d6a22062012490d0620114101742213200620062013491b22134100480d062011450d01200428025020112013101522060d020c0c0b200428025021060c020b201310132206450d0a0b2004201336025420042006360250201321110b200620126a200f200d10f6021a200441d0006a41086a221342003703002004420037035020062012200d6a200441d0006a1002200441d0016a41086a2013290300370300200420042903503703d001200441d0016a4110100302402011450d00200610160b2005417f4c0d06024002402005450d00200510132206450d0920062010200510f6021a0c010b410121060b200420053602582004200536025420042006360250200441d0006a200110cc01200228020421020240200e450d00200f10160b200441e0006a2001370300200441d8006a41033a00002004410b3a0050200441d0006a105a200441d0006a200441d00010f6021a200441c0016a2007370300200441bc016a2008360200200441b4016a200a360200200441b0016a200b360200200441a8016a2005360200200441a4016a2002360200200420093602b8012004200c3602ac01200420103602a0012001200441d0006a10cb01410021050c0e0b41b6e7c20041331029000b41b6e7c20041331029000b1010000b411241011014000b201341011014000b411241011014000b100f000b200541011014000b201341011014000b410f210441eeaec1002105200e0d010c020b4110210441deaec1002105200e450d010b200f10160b0240200b450d00200c10160b02402008450d00200910160b200241046a280200450d010b200228020010160b2000200436020420002005360200200341e0016a24000bff0303027f017e037f23004180026b22032400200341f0006a200110c0010240024020032802704101470d0020032802782104200328027421020c010b200341086a200341f8006a41e80010f6021a024002400240024020022802082204417f4c0d00200341e8016a2903002105200341e4016a2802002106200341e0016a2802002107024002402004450d0020022802002108200410132202450d0320022008200410f6021a0c010b410121020b200341f0006a41086a220842003703002003420037037041e1afc100411d200341f0006a1002200341f0016a41086a2008290300370300200320032903703703f00102400240200341f0016a411041acf1c300410041001000417f460d0020034100360270200341f0016a4110200341f0006a41044100100041016a41044d0d01200328027022082004200420084b1b21082006450d050c040b418010200420044180104b1b210820060d030c040b41b6e7c20041331029000b100f000b200441011014000b200710160b20034180016a2001370300200341f8006a41013a00002003410b3a0070200341f0006a105a200341f0006a200341086a41e80010f6021a200341e0016a2005428080808070832008ad84370300200341dc016a2004360200200320023602d8012001200341f0006a10cb01410021020b200020043602042000200236020020034180026a24000bb20703067f027e027f230041106b2203240020032001360208200341086a200210180240024002400240024002402001450d00200020014106746a2104200241086a2105200241046a21060340024002400240024020062802002207200528020022016b41204f0d00200141206a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101522070d020c090b200228020021070c020b200110132207450d070b2002200736020020062001360200200528020021010b2005200141206a360200200720016a220141186a200041346a290000370000200141106a2000412c6a290000370000200141086a200041246a2900003700002001200029001c370000200041086a29030021092000290300210a024002400240024020062802002207200528020022016b41104f0d00200141106a22082001490d0620074101742201200820082001491b22014100480d062007450d01200228020020072001101522070d020c0a0b200228020021070c020b200110132207450d080b2002200736020020062001360200200528020021010b2005200141106a360200200720016a220120093700082001200a3700002000280210210120032000280218220736020c2003410c6a2002101802402007450d00200741306c210b0340024002400240024020062802002208200528020022076b41204f0d00200741206a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101522080d020c090b200228020021080c020b200710132208450d070b2002200836020020062007360200200528020021070b2005200741206a360200200820076a220741186a200141286a290000370000200741106a200141206a290000370000200741086a200141186a2900003700002007200141106a290000370000200141086a29030021092001290300210a024002400240024020062802002208200528020022076b41104f0d00200741106a220c2007490d0820084101742207200c200c2007491b22074100480d082008450d01200228020020082007101522080d020c0a0b200228020021080c020b200710132208450d080b2002200836020020062007360200200528020021070b200141306a21012005200741106a360200200820076a220720093700082007200a370000200b41506a220b0d000b0b200041c0006a22002004470d000b0b200341106a24000f0b1010000b200741011014000b200741011014000b200141011014000b200141011014000bce0d03067f017e027f230041306b22022400024002400240024002400240024002400240412110132203450d00200341206a41002d00dbdc423a0000200341186a41002900d3dc42370000200341106a41002900cbdc42370000200341086a41002900c3dc42370000200341002900bbdc423700002003412141c20010152204450d0120042000290000370021200441396a200041186a290000370000200441316a200041106a290000370000200441296a200041086a290000370000200241186a41086a2203420037030020024200370318200441c100200241186a1002200241086a41086a2003290300370300200220022903183703082002410036022020024201370318412010132203450d022002412036021c200241186a41086a22052005280200220641206a220736020020022003360218200320066a220041086a200141386a290000370000200041106a200141c0006a290000370000200041186a200141c8006a29000037000020002001290030370000200129030021080240410020066b41074b0d00200741086a22002007490d07200041c000200041c0004b1b22004100480d0720034120200010152203450d042002200036021c20022003360218200241206a28020021070b2005200741086a2200360200200320076a200837000020012903082108024002400240200228021c220320006b41084f0d00200041086a22072000490d0920034101742200200720072000491b22004100480d092003450d0120022802182003200010152203450d020c070b200228021821030c070b2000101322030d050b200041011014000b412141011014000b41c20041011014000b412041011014000b200041011014000b2002200036021c20022003360218200241206a28020021000b200241186a41086a2209200041086a360200200320006a2008370000200128021821032002200141206a280200220036022c2002412c6a200241186a1018024002400240024002400240024002402000450d002000410574210a20092802002107200228021c210503400240024002400240200520076b41204f0d00200741206a22002007490d0d20054101742207200020002007491b22074100480d0d2005450d01200228021820052007101522060d020c070b20022802182106200721000c020b200710132206450d050b2002200736021c2002200636021820092802002100200721050b2009200041206a2207360200200620006a220041086a200341086a290000370000200041106a200341106a290000370000200041186a200341186a29000037000020002003290000370000200341206a2103200a41606a220a0d000c020b0b200928020021070b200228021c2103024002400240024002400240024020012d00504101470d0020032007470d01200741016a22032007490d0d20074101742200200320032000491b22034100480d0d2007450d0320022802182007200310152205450d040c0a0b20032007470d01200741016a22032007490d0c20074101742200200320032000491b22034100480d0c2007450d0420022802182007200310152205450d050c070b200228021821050c090b200228021821050c060b2003101322050d060b200341011014000b2003101322050d020b200341011014000b200741011014000b2002200336021c20022005360218200241206a28020021070b200241206a200741016a2200360200200520076a41003a00000c020b2002200336021c200220053602180b200241206a200741016a2200360200200520076a41013a00000b200129031021080240200320006b41074b0d00200041086a22072000490d0120034101742206200720072006491b22074100480d010240024002402003450d0020052003200710152205450d010c020b2007101322050d010b200741011014000b2002200736021c200220053602180b200241186a41086a2206200041086a360200200520006a20083700002001280224210720022001412c6a280200220336022c2002412c6a200241186a1018024002400240200228021c2205200628020022006b20034f0d00200020036a22062000490d0320054101742200200620062000491b22004100480d032005450d0120022802182005200010152205450d020c040b200228021821050c040b2000101322050d020b200041011014000b1010000b2002200036021c20022005360218200241206a28020021000b200241206a2206200020036a360200200520006a2007200310f6021a200228021c2103200241086a4110200228021822002006280200100102402003450d00200010160b2004101602402001411c6a280200450d00200141186a28020010160b0240200141286a280200450d00200710160b200241306a24000b980201037f230041306b22012400024002400240411710132202450d002002410f6a41002900e3f740370000200241086a41002900dcf740370000200241002900d4f74037000020024117412e10152202450d01200241003a0017200141206a41086a220342003703002001420037032020024118200141206a1002200141086a200329030037030020012001290320370300024002402001411041acf1c300410041001000417f460d002001421037021420012001360210200141206a200141106a101120012802202203450d0420002001290224370204200020033602000c010b20004100360208200042013702000b20021016200141306a24000f0b411741011014000b412e41011014000b41b6e7c20041331029000bc609010c7f230041206b220224002001280204412b200128020022031b210420034195b0c10020031b2105024002400240024002400240024002400240024002400240024002400240024002402003450d00200141086a2802002103200241106a41086a220642003703002002420037031041fdaec100411a200241106a1002200241086a2006290300370300200220022903103703002002411041acf1c300410041001000417f460d012002410036021020024110200241106a41044100100041016a41044d0d03200228021020034d0d020c0b0b2000200536020420004101360200200041086a2004360200200128020c2200450d0d0c0c0b410520034b0d090b200241106a41086a22064200370300200242003703104197afc100411a200241106a1002200241086a200629030037030020022002290310370300024002402002411041acf1c300410041001000417f460d002002410036021020024110200241106a41044100100041016a41044d0d03200228021020034f0d010c090b41282003490d080b024002400240024020012802182207450d00200141206a2802002206417f4c0d072001411c6a28020021082006450d01200610132209450d084100210a2007210b0c030b4101210a4101210741002108410021064101210b0c010b4101210a410021062007210b0b410121090b2009200b200610f602210c200241106a41086a220b42003703002002420037031041e1afc100411d200241106a1002200241086a200b2903003703002002200229031037030002402002411041acf1c300410041001000417f460d002002410036021020024110200241106a41044100100041016a41044d0d032002280210210b2008450d070c060b418010210b20080d050c060b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b200641011014000b200710160b200141106a2802002107200141146a2802002108200128020c2101200241106a41086a220942003703002002420037031041c4afc100411d200241106a1002200241086a2009290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d002002410036021020024110200241106a41044100100041016a41044d0d02200228021021090c010b41800821090b2007410020011b21072001410120011b210d024020092008410020011b22014f0d0020004101360200200041086a4113360200200041046a41b1afc10036020002402007450d00200d10160b0240200a0d00200c10160b2004450d0820051016200241206a24000f0b20004100360200200041246a200b20062006200b4b1b360200200041206a20063602002000411c6a200c360200200041186a2001360200200041146a2007360200200041106a200d3602002000410c6a2003360200200041086a2004360200200041046a2005360200200241206a24000f0b41b6e7c20041331029000b410f210341eeaec10021060c010b4110210341deaec10021060b2000200636020420004101360200200041086a200336020002402004450d00200510160b200128020c2200450d010b200141106a280200450d0020001016200128021822000d010c020b20012802182200450d010b2001411c6a280200450d00200010160b200241206a24000bbd0202017f017e024002400240412010132202450d0020022000290020370000200241186a200041386a290000370000200241106a200041306a290000370000200241086a200041286a290000370000200029030021032002412041c00010152202450d0120022003370020200220002903083700282002200029031037003020022000290318370038200241c00041800110152202450d0220022000290040370040200241d8006a200041d8006a290000370000200241d0006a200041d0006a290000370000200241c8006a200041c8006a29000037000002400240024020002d006022004101460d0020004102470d01200241023a00600c020b200241013a00600c010b200241003a00600b20012802002001280204200241e1001001200210160f0b412041011014000b41c00041011014000b41800141011014000b910604027f017e017f037e230041306b2203240002400240024002400240411410132204450d00200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341206a41086a220642003703002003420037032020044134200341206a1002200341106a41086a200629030037030020032003290320370310024002400240200341106a411041acf1c300410041001000417f460d002003420037032820034200370320200341106a4110200341206a4110410010002206417f460d022006410f4d0d02200341286a2903002107200329032021050c010b420021070b2004101641a3c5c30021040240024020052001542206200720025420072002511b0d00200341086a20004104200520017d2205200720027d2006ad7d220710a30120032802082204450d010b200341306a240020040f0b411810132204450d04200441106a41002900b29643370000200441086a41002900aa9643370000200441002900a2964337000020044118413810152204450d0520042000290000370018200441306a200041186a290000370000200441286a200041106a290000370000200441206a200041086a29000037000042002108200341206a41086a220642003703002003420037032020044138200341206a1002200341106a41086a20062903003703002003200329032037031002400240200341106a411041acf1c300410041001000417f460d002003420037032820034200370320200341106a4110200341206a4110410010002206417f460d052006410f4d0d05200341286a2903002109200329032021080c010b420021090b200410162000200820017c2201200920027c2001200854ad7c108701200020052007108601200341306a240041000f0b41b6e7c20041331029000b411441011014000b413441011014000b41b6e7c20041331029000b411841011014000b413841011014000b4d01017f230041206b22002400200041146a41013602002000410236021c200041c8d7c30036021820004201370204200041d0d7c3003602002000200041186a360210200041a8bcc1001046000b910f07027f017e067f017e017f017e037f230041a0016b2203240020034190016a41086a22044200370300200342003703900141feafc100411720034190016a100220034180016a41086a2004290300370300200320032903900137038001024002400240024002400240024002400240024002400240024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d012003290308210520012802082204417f4c0d030c020b4201210520012802082204417f4a0d010c020b41b6e7c20041331029000b20012802002106024002402004450d00200410132207450d0820072006200410f6021a0c010b410121070b200141146a2802002208417f4c0d00024002402008450d00200128020c210920081013220a450d09200a2009200810f6021a0c010b4101210a0b200141206a2802002209417f4c0d00024002402009450d002001280218210120091013220b450d0a200b2001200910f6021a0c010b4101210b0b4200210c20034190016a41086a220142003703002003420037039001419be8c200410d20034190016a100220034180016a41086a220d20012903003703002003200329039001370380014200210e024002400240024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d012003290308210e0b20014200370300200342003703900141ee94c300410d20034190016a1002200d2001290300370300200320032903900137038001024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d022003290308210c0b200341086a41186a200041186a290000370300200341086a41106a200041106a290000370300200341086a41086a200041086a29000037030020032000290000370308411e10132201450d04200141166a41002900f89141370000200141106a41002900f29141370000200141086a41002900ea9141370000200141002900e291413700002001411e413e10152201450d052001200329030837001e200141366a200341086a41186a220d2903003700002001412e6a200341086a41106a220f290300370000200141266a200341086a41086a221029030037000020034190016a41086a2211420037030020034200370390012001413e20034190016a100220034180016a41086a2011290300370300200320032903900137038001200320053703900120034180016a411020034190016a4108100120011016200d200041186a290000370300200f200041106a2900003703002010200041086a29000037030020032000290000370308411e10132200450d06200041166a41002900da9141370000200041106a41002900d49141370000200041086a41002900cc9141370000200041002900c491413700002000411e413c10152201450d072001200537001e20034190016a41086a2200420037030020034200370390012001412620034190016a100220034180016a41086a2000290300370300200320032903900137038001412010132200450d0820002003290308370000200041186a200341086a41186a290300370000200041106a200341086a41106a290300370000200041086a200341086a41086a29030037000020034180016a41102000412010012000101620011016200341f8006a2009360200200341f4006a2009360200200341ec006a2008360200200341e8006a2008360200200341e0006a2004360200200341dc006a2004360200200341086a41206a200241086a290300370300200341306a200241106a290300370300200341386a200241186a290300370300200341c0006a200241206a2903003703002003200c3703182003200e37031020032005370308200341003a007c2003200b3602702003200a360264200320073602582003420037034820032002290300370320200341ff006a200341076a2d00003a0000200320032f00053b007d2005200341086a10cb01024002402004450d00200410132200450d0e20002006200410f6021a0c010b410121000b200320043602102003200436020c20032000360208200341086a200510cc0120034190016a41086a22044200370300200342003703900141feafc100411720034190016a100220034180016a41086a20042903003703002003200329039001370380010240024020034180016a411041acf1c300410041001000417f460d002003420037030820034180016a4110200341086a41084100100041016a41084d0d04200329030842017c210c0c010b4202210c0b20034190016a41086a22044200370300200342003703900141feafc100411720034190016a100220034180016a41086a20042903003703002003200329039001370380012003200c37030820034180016a4110200341086a41081001200341a0016a240020050f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b411e41011014000b413e41011014000b411e41011014000b413c41011014000b412041011014000b200441011014000b200841011014000b200941011014000b200441011014000bde0202027f027e230041206b2203240002400240411410132204450d00200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341106a41086a220042003703002003420037031020044134200341106a1002200341086a2000290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002200417f460d022000410f4d0d02200341186a2903002106200329031021050c010b420021060b20041016200341206a2400200520015a200620025a20062002511b0f0b41b6e7c20041331029000b411441011014000b413441011014000be10604027f017e017f057e230041206b2204240002400240024002400240411410132205450d00200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d01200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441106a41086a220742003703002004420037031020054134200441106a1002200441086a2007290300370300200420042903103703000240024002402004411041acf1c300410041001000417f460d00200442003703182004420037031020044110200441106a4110410010002207417f460d022007410f4d0d02200441186a2903002108200429031021090c010b42002109420021080b2005101620012009200220092009200256200820035620082003511b22051b220a7d20082003200820051b220b7d2009200a54ad7d10860102400240024002402002200a7d22092003200b7d2002200a54ad7d220c84500d00411810132205450d08200541106a41002900b29643370000200541086a41002900aa9643370000200541002900a2964337000020054118413810152205450d0920052001290000370018200541306a200141186a290000370000200541286a200141106a290000370000200541206a200141086a29000037000042002102200441106a41086a220742003703002004420037031020054138200441106a1002200441086a2007290300370300200420042903103703002004411041acf1c300410041001000417f460d01200442003703182004420037031020044110200441106a4110410010002207417f460d072007410f4d0d07200441186a2903002103200429031021020c020b4200210c0c020b420021030b20051016200120022009200220022009562003200c562003200c511b22051b22087d2003200c200320051b22067d2002200854ad7d108701200c20067d2009200854ad7d210c2006200b7c2008200a7c2202200854ad7c2103200920087d21060b2000200637031020002002370300200041186a200c37030020002003370308200441206a24000f0b41b6e7c20041331029000b411441011014000b413441011014000b41b6e7c20041331029000b411841011014000b413841011014000b890303047f017e027f230041306b22032400200341206a41086a220442003703002003420037032020002001200341206a1002200341086a41086a20042903003703002003200329032037030820034100360228200342013703202002280200210120032002280208220236021c2003411c6a200341206a101802400240024002402002450d002002410374210520042802002102200328022421060340200129030021070240024002400240200620026b41084f0d00200241086a22002002490d0720064101742208200020002008491b22094100480d072006450d01200328022020062009101522080d020c080b200241086a2100200328022021080c020b200910132208450d060b2003200936022420032008360220200921060b200141086a210120042000360200200820026a200737000020002102200541786a22050d000c020b0b2004280200210020032802242106200328022021080b200341086a411020082000100102402006450d00200810160b200341306a24000f0b1010000b200941011014000ba90404027f017e027f017e230041d0006b220524000240024002400240200241ff017122064102460d0020064104470d02200541106a200110b8022005290310200356200541186a290300220720045620072004511b0d010c020b2005200110b8022005290300200358200541086a290300220720045820072004511b0d010b41ceb8c3002101412621060c010b200541206a200110b902024002400240024002402005280228450d0042002107200541c0006a41086a2206420037030020054200370340419be8c200410d200541c0006a1002200541306a41086a2006290300370300200520052903403703300240200541306a411041acf1c300410041001000417f460d0020054200370340200541306a4110200541c0006a41084100100041016a41084d0d03200529034021070b200541c0006a200110b9022005280244210820052802402109024020052802482201450d00200141286c210620092101034002402007200141106a2903005a0d002001290300200358200141086a290300220a200458200a2004511b0d00200141206a2d000020027141ff0171200241ff0171460d040b200141286a2101200641586a22060d000b0b410021012008450d040c030b02402005280224450d00200528022010160b410021010c040b41f4b8c300210120080d010c020b41b6e7c20041331029000b200910160b02402005280224450d00200528022010160b413121060b2000200636020420002001360200200541d0006a24000bc80401077f230041a0016b22022400024002400240410e10132203450d00200341066a41002900ddcc41370000200341002900d7cc413700002003410e412e10152203450d012003200129000037000e200341266a200141186a2900003700002003411e6a200141106a290000370000200341166a200141086a290000370000200241d0006a41086a22014200370300200242003703502003412e200241d0006a1002200241306a41086a20012903003703002002200229035037033002400240200241306a411041acf1c300410041001000417f460d00200242103702442002200241306a360240200241d0006a200241c0006a10e80120022802702201450d0420002002290350370300200041186a200241d0006a41186a290300370300200041106a200241d0006a41106a290300370300200041086a200241d0006a41086a290300370300200241086a2204200241d0006a412c6a290200370300200241106a2205200241d0006a41346a290200370300200241186a2206200241d0006a413c6a290200370300200241206a2207200241d0006a41c4006a290200370300200241286a2208200241d0006a41cc006a2802003602002002200229027437030020002001360220200020022903003702242000412c6a2004290300370200200041346a20052903003702002000413c6a2006290300370200200041c4006a2007290300370200200041cc006a20082802003602000c010b200041003602200b20031016200241a0016a24000f0b410e41011014000b412e41011014000b41b6e7c20041331029000bcc0603047f037e037f230041206b22022400200241003a001020012802002001280204200241106a410120012802081000210320012001280208200341016a41014b22036a22043602080240024002402003450d000240024002400240024020022d0010220541037122034102460d0020034101460d0120030d022005410276ad21060c030b20024100360210200220053a0010200141086a220341002001280200200141046a280200200241106a41017241032004100022012001417f461b22014103200141034922011b20032802006a36020020010d042002280210410276ad21060c020b200241003b0110200220053a00102001280200200141046a280200200241106a4101724101200410002103200141086a22012001280200200341016a220141014b6a36020020014102490d0320022f0110410276ad21060c010b0240024020054102762203410c460d0020034104460d0120030d03200141046a280200210320024100360210200141086a2205410020012802002003200241106a41042004100022012001417f461b22014104200141044922011b20052802006a36020020010d04200235021021060c020b420021072002420037031820024200370310200141086a220341002001280200200141046a280200200241106a41102004100022012001417f461b22014110200141104922011b20032802006a36020020010d04200241106a41086a290300210820022903102106420121070c050b4200210720024200370310200141086a220341002001280200200141046a280200200241106a41082004100022012001417f461b22014108200141084922011b20032802006a36020020010d03200229031021060b42002108420121070c030b200341046a220941104b0d00200141046a210a200141086a21054200210642002108410021030340200241003a00102001280200200a280200200241106a410120041000210420052005280200200441016a41014b220b6a2204360200200b450d01200220023100104200200341037441f8007110fb02200241086a29030020088421082002290300200684210642012107200341016a220341ff01712009490d000c030b0b420021070b0b2000200637030820002007370300200041106a2008370300200241206a24000be50806037f047e017f017e0a7f037e230041b0016b220224000240024002400240024002400240024002400240410f10132203450d00200341076a41002900adeb41370000200341002900a6eb413700002003410f412f10152204450d012004200129000037000f200441276a200141186a2900003700002004411f6a200141106a290000370000200441176a200141086a29000037000020024190016a41086a2201420037030020024200370390012004412f20024190016a1002200241d0006a41086a200129030037030020022002290390013703500240024002400240200241d0006a411041acf1c300410041001000417f460d00200242103702642002200241d0006a360260200241386a200241e0006a10a5012002290338a7450d0b200241386a41106a290300210520022903402106200241206a200241e0006a10a5012002290320a7450d0b200241306a290300210720022903282108200241186a200241e0006a10122002280218450d0b200228021c2209ad42307e220a422088a70d03200aa72201417f4c0d032001450d0120011013220b450d062009450d020c070b2000420037030020004208370320200041186a4200370300200041106a4200370300200041086a4200370300200041286a41003602000c080b4108210b20090d050b4100210f4200210a200b450d080c050b100f000b410f41011014000b412f41011014000b200141081014000b20024190016a41186a210320024190016a41106a210c4200210a4100210d4100210e410021012009210f034020034200370300200c420037030020024190016a41086a221042003703002002420037039001200241e0006a41086a22112011280200221141002002280260200228026420024190016a41202011100022112011417f461b2211412020114120491b6a3602002011411f4d0d03200241f0006a41186a22122003290300370300200241f0006a41106a2213200c290300370300200241f0006a41086a2214201029030037030020022002290390013703702002200241e0006a10a5012002290300a7450d03200141016a2111200241106a29030021152002290308211620032012290300370300200c201329030037030020102014290300370300200220022903703703900102402001200f470d00200d20112011200d491b220fad42307e2217422088a70d062017a722124100480d0602402001450d00200b200e20121015220b0d010c080b20121013220b450d070b200b200e6a2201201537030820012016370300200141286a2003290300370300200141206a200c290300370300200141186a2010290300370300200141106a200229039001370300200a4280808080107c210a200d41026a210d200e41306a210e2011210120112009490d000b200b450d030b200020083703102000200537030820002006370300200041246a200a200fad843702002000200b360220200041186a20073703000b20041016200241b0016a24000f0b200f450d00200b10160b41b6e7c20041331029000b1010000b201241081014000bec1201077f230041b0036b220124000240024002400240024002400240024002400240024002400240024002400240411210132202450d00200241106a41002f00d5cc413b0000200241086a41002900cdcc41370000200241002900c5cc4137000020024112413210152202450d01200220002900003700122002412a6a200041186a290000370000200241226a200041106a2900003700002002411a6a200041086a290000370000200141e8016a41086a22004200370300200142003703e80120024132200141e8016a1002200141b0026a41086a2000290300370300200120012903e8013703b00202400240200141b0026a411041acf1c300410041001000417f460d002001421037026c2001200141b0026a360268200141d0026a200141e8006a10d70120012d00e80222034102460d0420014188016a41186a20014181036a29000037030020014188016a41106a200141f9026a29000037030020014188016a41086a200141f1026a290000370300200141e8016a41086a20014192036a290100370300200141e8016a41106a2001419a036a290100370300200141e8016a41186a200141a2036a290100370300200120012900e9023703880120012001418a036a2901003703e80120014189036a2d00002104200141b0026a411010030c010b410221030b200141286a41186a20014188016a41186a290300370300200141286a41106a220020014188016a41106a290300370300200141286a41086a220520014188016a41086a290300370300200141086a41086a2206200141e8016a41086a290300370300200141086a41106a2207200141e8016a41106a290300370300200141086a41186a200141e8016a41186a2903003703002001200129038801370328200120012903e8013703082002101620034102460d0f200141e8006a41186a200141286a41186a290300370300200141e8006a41106a2000290300370300200141e8006a41086a2005290300370300200141c8006a41086a2006290300370300200141c8006a41106a2007290300370300200141c8006a41186a200141086a41186a2903003703002001200129032837036820012001290308370348410021020240200441ff01714101470d00411210132202450d06200241106a41002f00d5cc413b0000200241086a41002900cdcc41370000200241002900c5cc4137000020024112413210152202450d07200220012903483700122002412a6a200141e0006a290300370000200241226a200141c8006a41106a2903003700002002411a6a200141c8006a41086a2903003700000b0240024020034101470d00411210132200450d09200041106a41002f00d5cc413b0000200041086a41002900cdcc41370000200041002900c5cc4137000020004112413210152200450d0a200020012903683700122000412a6a20014180016a290300370000200041226a200141e8006a41106a2903003700002000411a6a200141e8006a41086a290300370000200141e8016a41086a22054200370300200142003703e80120004132200141e8016a1002200141b0026a41086a2005290300370300200120012903e8013703b002200141b0026a411041acf1c300410041001000417f460d0b200142103702c4022001200141b0026a3602c002200141d0026a200141c0026a10d70120012d00e80222054102460d0c20014188016a41106a200141d0026a41106a29030037030020014188016a41086a200141d0026a41086a290300370300200120012903d00237038801200141e8016a200141d0026a41196a41c70010f6021a200120053a00a00120014188016a41196a200141e8016a41c70010f6021a200141c1016a20043a0000200141c2016a2001290348370100200141ca016a200141c8006a41086a290300370100200141d2016a200141c8006a41106a290300370100200141da016a200141e0006a290300370100200141e8016a41086a22044200370300200142003703e80120004132200141e8016a1002200141b0026a41086a2004290300370300200120012903e8013703b002200141103602d4022001200141b0026a3602d00220014188016a200141d0026a10e301200010164101210420020d010c0e0b0240200441ff01714101470d00200141e8016a41086a22004200370300200142003703e801418cebc100411a200141e8016a1002200141b0026a41086a2000290300370300200120012903e8013703b002412010132200450d0d20002001290348370000200041186a200141c8006a41186a290300370000200041106a200141c8006a41106a290300370000200041086a200141c8006a41086a290300370000200141b0026a411020004120100120001016410021004100210420020d010c0e0b200141e8016a41086a22004200370300200142003703e801418cebc100411a200141e8016a1002200141d0026a41086a2000290300370300200120012903e8013703d002200141d0026a4110100341002100410021042002450d0d0b200141e8016a41086a22054200370300200142003703e80120024132200141e8016a1002200141b0026a41086a2005290300370300200120012903e8013703b002200141b0026a411041acf1c300410041001000417f460d03200142103702c4022001200141b0026a3602c002200141d0026a200141c0026a10d70120012d00e8024102460d0420014188016a41106a200141d0026a41106a29030037030020014188016a41086a200141d0026a41086a290300370300200120012903d00237038801200141e8016a200141d0026a41196a41c70010f6021a20014188016a41196a200141e8016a41c70010f6022001290368370000200141a9016a200141e8006a41086a290300370000200141b1016a200141e8006a41106a290300370000200141b9016a20014180016a290300370000200120033a00a001200141e8016a41086a22034200370300200142003703e80120024132200141e8016a1002200141b0026a41086a2003290300370300200120012903e8013703b002200141103602d4022001200141b0026a3602d00220014188016a200141d0026a10e30120021016410121032004200045720d0e0c0d0b411241011014000b413241011014000b41b6e7c20041331029000b41b9eac10041d3001029000b41b6e7c20041331029000b411241011014000b413241011014000b411241011014000b413241011014000b41b9eac10041d3001029000b41b6e7c20041331029000b412041011014000b410021032004200045720d010b200010160b2002452003720d00200210160b200141b0036a24000b6c01017f230041306b2203240020032002360204200320013602002003412c6a41013602002003411c6a4102360200200341013602242003420237020c2003419cf1c300360208200320033602282003200341046a3602202003200341206a360218200341086a20001046000bb00801027f024020002802004101470d00024020002802042201280200417f6a220241104b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e11001515150102150304050607081515090a000b200141086a1093010c140b200141086a2d00002202410e4b0d1220024106470d13200141106a280200450d132001410c6a28020010160c130b200141046a10a9010c120b200141086a280200450d11200128020410160c110b200141086a2d00004101470d100240200141106a280200450d002001410c6a28020010160b02402001411c6a280200450d00200141186a28020010160b200141286a280200450d10200141246a28020010160c100b200141086a2d00004103470d0f200141d0006a280200450d0f200141cc006a28020010160c0f0b200141086a2d00004101470d0e200141106a280200450d0e2001410c6a28020010160c0e0b200141086a280200450d0d200128020410160c0d0b200141086a2d0000417f6a220241054b0d0c024020020e06000405060708000b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d0c200141286a280200450d0c200210160c0c0b200141086a28020022024102460d0120024101470d0b200141106a280200450d0b2001410c6a28020010160c0b0b200141086a2d0000220241064b0d06024020020e070b0b0b0b0008090b0b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d0a200141d0006a280200450d0a200210160c0a0b200141106a280200450d092001410c6a28020010160c090b200141106a280200450d082001410c6a28020010160c080b200141106a280200450d072001410c6a28020010160c070b200141106a280200450d062001410c6a28020010160c060b02402001410c6a2802002202450d00200141106a280200450d00200210160b0240200141186a2802002202450d002001411c6a280200450d00200210160b200141246a2802002202450d05200141286a280200450d05200210160c050b02402001412c6a2802002202450d00200141306a280200450d00200210160b0240200141386a2802002202450d002001413c6a280200450d00200210160b200141c4006a2802002202450d04200141c8006a280200450d04200210160c040b200141106a280200450d032001410c6a28020010160c030b0240200141c0006a2802002202450d00200141c4006a280200450d00200210160b200141cc006a2802002202450d02200141d0006a280200450d02200210160c020b200141106a280200450d012001410c6a28020010160c010b200141106a280200450d002001410c6a28020010160b200041046a28020010160b0bde9e010a067f027e027f037e017f017e0a7f027e017f037e230041d0066b22022400200241003a00f004200241f0046a2001280200220320012802042204410047220510f6021a0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402004450d0020022d00f004220441134b0d0d024020040e14000c080a050f110b1407130406100309020d1215000b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc401200141046a200620046b3602002001200520046a3602002006450daa0220022d00f004450d180caa020b20004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d890220022d00f004220541034b0d8902024020050e04002c2a2b000b20024198036a2001101a200228029803450d8902200228029c032205417f4c0d9e022005450d84012005101b2204450dea0120042001280200200141046a22072802002206200520062005491b220610f6021a200728020022032006490deb012007200320066b22033602002001200128020020066a220736020020062005460d85010c86010b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a36020020004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d2e20022d00f004220541034b0d2e024020050e04002d2b2c000b200241f0046a2001101f20022802f0042201450d2e20022902f4042108410121050c2d0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d2020022d00f00422054102460d1e20054101460d1d20050d20200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d2020022d008f052101200228008b052104200228008705210520022900ff04210820022900f704210920022800f304210620022f00f104210320022d00f00421074101210a0c1f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a3602002006450da30220022d00f004450d100ca3020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450daa0120022d00f004220541044b0daa01024020050e0500322e2f2d000b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0daa01200241f8046a290300210820022903f0042109200241e0026a2001101a20022802e002450daa0120022802e4022205417f4c0d99022005450da8012005101b2206450dfd0120062001280200200141046a22032802002204200520042005491b220410f6021a200328020022072004490dfe012003200720046b3602002001200128020020046a36020020042005470da9010c98020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a36020020004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22043602002006450d4c20022d00f004220541074b0d4c024020050e08004a4748464b4c49000b200241003a00f004200241f0046a20042003410047220510f6021a20032005490ddd01200141046a200320056b22063602002001200420056a22043602002003450d4c20022d00f0040d4c200242003703f004200241f0046a20042006410820064108491b220510f6021a200141046a200620056b3602002001200420056a360200200641074d0d4c20022903f0042108410121010c9d010b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a3602002006450d1220022d00f00422044101460d1020040d12200241f0046a200110ab0120022d00f00422044102460d1220022d00f304210320022f00f1042107200241fc046a29020021082002418c056a290200210920024188056a280200210520024184056a280200210620022902f404210c200241c0006a200110ac012002280240450d1220072003411074722101200241c0006a41106a290300210d410121032002290348210e0c110b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b3602002001200520046a3602002006450d930220022d00f004450d0c0c93020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22073602002006450db30120022d00f004220541064b0db30141022106024020050e070092023236303c3e000b200241106a2001101a2002280210450db30120022802142205417f4c0d94022005450d83012005101b2204450de60120042001280200200141046a22032802002206200520062005491b220610f6021a200328020022072006490de7012003200720066b3602002001200128020020066a36020020062005470d84010c90020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc301200141046a200620046b22033602002001200520046a22053602002006450d084108210420022d00f004220641064b0d8b02024020060e0700393437303e3f000b200241f0046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f5021a200241f0046a2005200610f6021a200141046a220f200320066b220b3602002001200520066a22063602002003411f4d0d8b02200231008f052108200229008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a200242003703f00441082104200241f0046a2006200b4108200b4108491b220310f6021a200f200b20036b22113602002001200620036a2206360200200b41074d0d3720022903f0042109200242003703f00441082104200241f0046a20062011410820114108491b220310f6021a200141046a201120036b3602002001200620036a360200201141074d0d3720022903f004210e410121040c8d020b20004114360200200241d0066a24000f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc20141042103200141046a200620046b22073602002001200520046a22113602002006450dab0120022d00f004220f410e4b0dab010240200f0e0f005457aa014f5b5e596253604d525c4c000b200241f0046a200110ab0120022d00f00422054102460dab0120022d00f304210f20022f00f1042111200241fc046a29020021082002418c056a290200210920024188056a280200210a20024184056a280200210420022902f404210c20024198016a200110ac01200229039801a7450dab0120024198016a41106a290300210e20022903a001210d200141046a22072802002106200241003a00f004200241f0046a2001280200220b2006410047220310f6021a20062003490df8012007200620036b3602002001200b20036a3602002006450dab0120022d00f004220641024b0dab012011200f41107472210b410121030ca9010b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450d8a0120022d00f004220541064b0d8a01024020050e07003933372f3d3e000b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d8a0120022903f0042108200241f0046a200110ad014101210120022802f0044101470d8a012008422088a7210f200241f0046a41086a2903002209422088a7210420024180056a280200211120024184056a280200211220024188056a28020021062002418c056a280200210320024190056a280200210720024194056a280200211320022802f40421052008a721142009a721150c2f0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b3602002001200520046a3602002006450d0d20022d00f00422044101460d0c20040d0d200241f0046a200110aa0120022802f0042104200241e0056a200241f0046a41047241ec0010f6021a20044114460d0d20024180046a200241e0056a41ec0010f6021a41f00010132201450dcc0120012004360200200141046a20024180046a41ec0010f6021a20014108762105410121040c290b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450d1820022d00f00422054102460d1520054101460d1420050d18200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d1820022d008f052101200228008b052104200228008705210520022900ff04210820022900f704210920022800f304210620022f00f104210320022d00f00421074101210a0c170b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450daf0120022d00f004220641104b0daf01410f2105024020060e1100656762696c686f646d61636a60fb01665f000b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0daf01200241f8046a290300210920022903f004210c410121050c6d0b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b3602002001200520046a3602002006450d870220022d00f004450d050c87020b200241003a00f004200241f0046a20052006410047220410f6021a20062004490dc201200141046a200620046b22033602002001200520046a22043602002006450d0c20022d00f00422054101460d0a20050d0c200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a2207200320056b22063602002001200420056a22053602002003411f4d0d0c200241f0046a411f6a310000210d200241ff046a2900002108200229008705210920022900f704210c20022800f304210320022f00f104210a20022d00f004210b200241f0046a2006412020064120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a2007200620046b3602002001200520046a3602002006411f4d0d0c41012101200241f0046a41016a2f000041087420022d00f00472410874200da741ff0171722104200c422088a7210520022900ff04220d422088a721062009422088a721072008422088a7210f200241f7046a290000220e422088a7211120024187056a2800002112200241f3046a280000211320022d008f052114200228008b052115200ca72116200da721172009a721182008a72119200ea7211a0c0b0b410821040c82020b200241f0026a2001101a20022802f002450d920220022802f4022204417f4c0d89022004450d3f2004101b2206450dc90120062001280200200141046a22032802002205200420052004491b220510f6021a200328020022072005490dca012003200720056b3602002001200128020020056a36020020052004470d400c80020b200241b8026a200110ae0120022903b802a7450d860220022903c002210820004107360200200041086a2008370300200241d0066a24000f0b2002200110ae012002290300a7450d91022002290308210820004100360200200041086a2008370300200241d0066a24000f0b200241c8026a2001101a20022802c802450d810220022802cc022204417f4c0d86022004450d3e2004101b2206450dc80120062001280200200141046a22032802002205200420052004491b220510f6021a200328020022072005490dc9012003200720056b3602002001200128020020056a36020020052004470d3f0cfc010b200241f0046a200110ab0120022d00f00422044102460d0120022d00f304210320022f00f1042107200241fc046a29020021082002418c056a290200210920024188056a280200210520024184056a280200210620022902f404210c200241f0006a200110ac012002290370a7450d01200241f0006a41106a290300210d2002290378210e200241d8006a200110ac012002290358a7450d0120072003411074722101200241e8006a290300211b20022903602110410221030b200020013b000d200041033602002000410f6a20014110763a0000200041c8006a201b370200200041c0006a2010370200200041386a200d370200200041306a200e370200200041186a2008370000200041106a200c370000200041286a2009370000200041246a2005360000200041206a20063600002000410c6a20043a0000200041086a2003360200200241d0066a24000f0b20004114360200200241d0066a24000f0b200241f0046a200110ab01200241e0056a41086a2206200241fc046a290200370300200241e0056a41106a220320024184056a290200370300200241e0056a41186a22072002418c056a290200370300200220022902f4043703e0054102210420022d00f00422014102470d1b0b20004114360200200241d0066a24000f0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a2207200320056b22063602002001200420056a2204360200200341074d0d0120022903f0042108200242003703f004200241f0046a20042006410820064108491b220510f6021a2007200620056b3602002001200420056a360200200641074d0d0120022903f0042209422088a7210f2008422088a721052009a721192008a72116410221010b2000200a3b000a2000200b3a000920004113360200200041c8006a2014360200200041c4006a2015360200200041c0006a20123602002000413c6a2006360200200041386a2017360200200041346a2011360200200041306a201a3602002000412c6a2013360200200041286a2004360200200041246a2007360200200041206a20183602002000411c6a200f360200200041186a2019360200200041146a2005360200200041106a20163602002000410c6a2003360200200041086a20013a0000200241d0066a24000f0b20004114360200200241d0066a24000f0b20024188016a200110ae01200228028801450d024102210a20022903900121090c010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490db601200141046a200320056b3602002001200420056a3602002003450d0120022d00f00421074103210a0b200220022800e0053602f0042002200241e3056a2800003600f304200220022802f00436028004200220022800f30436008304200041286a20013a0000200041246a2004360000200041206a2005360000200041186a2008370000200041106a20093700002000410c6a2006360000200020033b000a200020073a0009200041086a200a3a00002000410436020020002002280280043600292000412c6a200228008304360000200241d0066a24000f0b200220022800e0053602f0042002200241e3056a2800003600f30420004114360200200241d0066a24000f0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d0320022903f00421094102210a0c010b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d0220022903f00421094103210a0b0b200220022800e0053602f0042002200241e3056a2800003600f304200220022802f00436028004200220022800f30436008304200041286a20013a0000200041246a2004360000200041206a2005360000200041186a2008370000200041106a20093700002000410c6a2006360000200020033b000a200020073a0009200041086a200a3a000020002002280280043600292000412c6a20022800830436000020004112360200200241d0066a24000f0b200220022800e0053602f0042002200241e3056a2800003600f30420004114360200200241d0066a24000f0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0ddf0120022903f0042109410321050c81010b200242003703f004200241f0046a20042003410820034108491b220610f6021a41042105200141046a200320066b3602002001200420066a360200200341074d0dde0120022903f00421090c80010b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0ddd0120022903f0042108200241a0036a2001101a20022802a003450ddd0120022802a4032206417f4c0df2012006450d7d2006101b2204450dd40120042001280200200141046a22072802002205200620052006491b220510f6021a200728020022032005490dd5012007200320056b22033602002001200128020020056a220736020020052006460d7e0c80010b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d0320022d008f052103200228008b052106200228008705210420022900ff04210920022900f704210820022800f304210120022f00f104210720022d00f004210a410321050c020b200242003703f004200241f0046a20042003410820034108491b220610f6021a41042105200141046a200320066b3602002001200420066a360200200341074d0d0220022903f00421080c010b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d0120022d008f052103200228008b052106200228008705210420022900ff04210920022900f704210820022800f304210120022f00f104210720022d00f004210a410221050b200220022800e0053602f0042002200241e3056a2800003600f304200220022802f00436028004200220022800f30436008304200041286a20033a0000200041246a2006360000200041206a2004360000200041186a2009370000200041106a20083700002000410c6a2001360000200020073b000a2000200a3a0009200041086a20053a00002000410b36020020002002280280043600292000412c6a200228008304360000200241d0066a24000f0b200220022800e0053602f0042002200241e3056a2800003600f30420004114360200200241d0066a24000f0b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d7d20022802f0042106410521070c030b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a36020041032107200341034d0d7c0c010b200241003602f00441042107200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d7b0b20022802f00421060b200220022f01e0053b01f0040cf0010b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b22073602002001200420056a2204360200200341034d0d7820022802f0042106200241003a00f004200241f0046a20042007410047220510f6021a20072005490db201200141046a200720056b3602002001200420056a3602002007450d7820022d00f004220141044f0d78410221070cee010b20022f00f10420022d00f304411074722105200241d8036a41186a2007290300370300200241d8036a41106a2003290300370300200241d8036a41086a2006290300370300200220022903e0053703d8030b200241b8036a41186a2206200241d8036a41186a290300370300200241b8036a41106a2203200241d8036a41106a290300370300200241b8036a41086a2207200241d8036a41086a290300370300200220022903d8033703b803200041086a2005410874200141ff01717236020020002004360204200041063602002000410c6a20022903b803370200200041146a20072903003702002000411c6a2003290300370200200041246a2006290300370200200241d0066a24000f0b200241206a2001101a2002280220450d830120022802242205417f4c0de4012005450d4f2005101b2204450db80120042001280200200141046a22032802002206200520062005491b220610f6021a200328020022072006490db9012003200720066b3602002001200128020020066a36020020062005470d500cd9010b200241f0046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f5021a200241f0046a2005200610f6021a200141046a200320066b3602002001200520066a3602002003411f4d0d1f200231008f052108200235008705210c20022900f704211020022800f304210520022f00f104210720022d00f004210a20022900ff04210d200235008b05211b200241f0046a200110af0141082104200241e0056a41086a2201200241f0046a41186a290300370300200241e0056a41106a2206200241f0046a41206a290300370300200241e0056a41186a220320024198056a2903003703002002200241f0046a41106a2903003703e00520022903f00422094202520d4c0cd6010b200241186a2001101a2002280218450d8101200228021c2205417f4c0de2012005450d4f2005101b2204450db80120042001280200200141046a22032802002206200520062005491b220610f6021a200328020022072006490db9012003200720066b3602002001200128020020066a36020020062005470d500cd6010b200241f0046a200110ad0120022802f0044101470d5b200241f8046a2903002208422088a7210420024180056a280200211120024184056a280200211220024188056a28020021062002418c056a280200210320024190056a280200210720024194056a280200211320022802f40421052008a72115410521010b0c580b200241f0046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a200141046a200320046b3602002001200520046a3602002003411f4d0d1d200235008b054220862108200231008f052109200235008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a4200210e410321044200211b4200211c0c1e0b200242003703f004200241f0046a20072003410820034108491b220410f6021a41042106200141046a200320046b3602002001200720046a360200200341074d0d7d20022903f00421080cdb010b20024180036a2001101a200228028003450d572002280284032204417f4c0ddd012004450d4e2004101b2205450db50120052001280200200141046a22032802002206200420062004491b220610f6021a200328020022072006490db6012003200720066b3602002001200128020020066a36020020062004460d4f0c560b200241f0046a2003412020034120491b22066a41004100412020066b2006411f4b1b10f5021a200241f0046a2005200610f6021a200141046a200320066b3602002001200520066a3602002003411f4d0dd401200231008f052108200235008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a200235008b05211b200241f0046a200110af0141082104200241e0056a41086a2201200241f0046a41186a290300370300200241e0056a41106a2206200241f0046a41206a290300370300200241e0056a41186a220320024198056a2903003703002002200241f0046a41106a2903003703e00520022903f00422094202520d460b0cce010b200241f0046a2003412020034120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a200141046a200320046b3602002001200520046a3602002003411f4d0d1d200235008b054220862108200231008f052109200235008705210c20022900ff04210d20022900f704211020022800f304210520022f00f104210720022d00f004210a4200210e410221044200211b4200211c0c1e0b20024188036a2001101a200228028803450d53200228028c032204417f4c0dd9012004450d4c2004101b2205450db30120052001280200200141046a22032802002206200420062004491b220610f6021a200328020022072006490db4012003200720066b3602002001200128020020066a36020020062004470d520c4d0b200241386a2001101a2002280238450d77200228023c2214ad42187e2208422088a70dd8012008a72205417f4c0dd8012005450d552005101322040d56200541041014000b200241f8026a2001101a20022802f802450d5120022802fc022204417f4c0dd7012004450d4c2004101b2205450db30120052001280200200141046a22032802002206200420062004491b220610f6021a200328020022072006490db4012003200720066b3602002001200128020020066a36020020062004470d500c4d0b200241f0046a2001101920022802f0042204450d7520022902f4042108410721060cd3010b200241a8036a2001101a20022802a803450dcd0120022802ac032206417f4c0dd5012006450d502006101b2205450db30120052001280200200141046a22072802002203200620032006491b220310f6021a2007280200220a2003490db4012007200a20036b3602002001200128020020036a36020020032006470d510cc6010b200241b0036a2001101a20022802b003450dcc0120022802b4032206417f4c0dd4012006450d532006101b2205450db40120052001280200200141046a22072802002203200620032006491b220310f6021a2007280200220a2003490db5012007200a20036b3602002001200128020020036a36020020032006470d540cc4010b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d4d20022d008f052107200228008b052103200228008705210620022900f704210820022800f304210520022f00f104210b20022d00f004210a20022900ff042109200241f0046a200110ad0120022802f0044101470d4d2009422088a7211220024194056a2802002116200241f0046a41206a28020021172002418c056a280200211820024188056a280200211920024184056a280200211a20024180056a280200211d20022802f40421132009a72111200241f8046a2903002209422088a7210f2008422088a721042009a721142008a72115410621010c4b0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d4c20022900f7042208422088a7210420022900ff042209422088a7211220022d008f052107200228008b052103200228008705210620022800f304210520022f00f104210b20022d00f004210a2008a721152009a72111410721010c4a0b20024190036a2001101a200228029003450d06200228029403220a450d55200141046a220b28020021042001280200210642002108410021030340200241003a00f004200241f0046a20062004410047220510f6021a20042005490d8b01200b200420056b22073602002001200620056a22063602002004450d0720022d00f0040d0720084280808080107c210820072104200341016a2203200a490d000c570b0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d05200231008f05210c200229008705210d20022900ff04210920022900f704210820022800f304210620022f00f104210320022d00f0042107410321010cbe010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9601200141046a200320056b22063602002001200420056a22043602002003450d0420022d00f0040d04200242003703f804200242003703f004200241f0046a20042006411020064110491b220310f6021a200141046a2207200620036b22053602002001200420036a22043602002006410f4d0d04200241f8046a290300210920022903f0042108200241003602f004200241f0046a20042005410420054104491b220310f6021a2007200520036b22063602002001200420036a2203360200200541034d0d0420022802f0042104200241003602f004200241f0046a20032006410420064104491b220510f6021a200141046a220a200620056b22073602002001200320056a2203360200200641034d0d0420022802f0042105200242003703f804200242003703f004200241f0046a20032007411020074110491b220b10f6021a200a2007200b6b220636020020012003200b6a22033602002007410f4d0d04200241f0046a41086a290300210c20022903f004210d200242003703f004200241f0046a20032006410820064108491b220a10f6021a200141046a220b2006200a6b220736020020012003200a6a2203360200200641074d0d0420022903f004210e200242003703f004200241f0046a20032007410820074108491b220a10f6021a200b2007200a6b220636020020012003200a6a2203360200200741074d0d0420022903f0042110200242003703f004200241f0046a20032006410820064108491b220a10f6021a200141046a220b2006200a6b220736020020012003200a6a2203360200200641074d0d0420022903f004211b200242003703f004200241f0046a20032007410820074108491b220a10f6021a200b2007200a6b220636020020012003200a6a2203360200200741074d0d0420022903f004211c200242003703f004200241f0046a20032006410820064108491b220a10f6021a200141046a220b2006200a6b220736020020012003200a6a2203360200200641074d0d0420022903f004211e200242003703f804200242003703f004200241f0046a20032007411020074110491b220610f6021a200b200720066b3602002001200320066a3602002007410f4d0d04200241f8046a290300211f20022903f004212041012106410421010c590b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200320056b3602002001200420056a3602002003411f4d0d03200231008f05210c200229008705210d20022900ff04210920022900f704210820022800f304210620022f00f104210320022d00f0042107410821010cbc010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9501200141046a200320056b22063602002001200420056a22043602002003450d0220022d00f0040d02200241f0046a2006412020064120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a200620056b3602002001200420056a3602002006411f4d0d02200231008f05210c200229008705210d20022900ff04210920022900f704210820022800f304210620022f00f104210320022d00f0042107410221010cbb010b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9501200141046a200320056b3602002001200420056a3602002003450d0120022d00f0040d01410621010c540b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d9501200141046a200320056b3602002001200420056a3602002003450d0020022d00f004450d520b20004114360200200241d0066a24000f0b4101210641002004460dc0010b2004450dd101200610160cd1010b4101210641002004460dbd010b2004450dc101200610160cc1010b200241f0046a2001101f20022802f0042205450d5f2005410876210b20022902f404210c410f21030c590b200241a8026a2001101a20022802a802450d5e20022802ac022205410876210b410c21030c0f0b420021100cbc010b200241f8016a2001101a20022802f801450d5c20022802fc012104200241e0016a200110ac0120022903e001a7450d5c200241f0016a290300210820022903e801210c410521030c590b4200210c410821044200210e420021084200211b4200211c420021090b200c200884201c84210c200e201b8420098421080cb3010b200241003a00f004200241f0046a20112007410047220410f6021a20072004490d8d01200141046a200720046b3602002001201120046a3602002007450d5920022d00f0042106410d21030c070b20024188026a200110ae01200228028802450d58410a2103200229039002210c0c0d0b200241b0016a200110ac0120022903b001a7450d57200241c0016a290300210820022903b801210c410221030c030b4200210c410821044200210e420021084200211b4200211c420021090b200c200884201c84210c200e201b8420098421080cae010b200241c8016a200110ac0120022903c801a7450d54200241d8016a290300210820022903d001210c410321030b0c4f0b200241003a00f004200241f0046a20112007410047220410f6021a20072004490d8701200141046a200720046b3602002001201120046a3602002007450d5220022d00f004220641034f0d52410821030b0c4f0b20024180026a2001101a200228028002450d502002280284022214ad42247e2208422088a70db6012008a72204417f4c0db6012004450d482004101322050d49200441041014000b200241b0026a2001101a20022802b002450d4f20022802b4022205410876210b410e21030b0c010b410721030b0c480b20024198026a200110ae01200228029802450d4b410b210320022903a002210c0b0c450b200241f0046a200110ab0120022d00f00422054102460d49200241fc046a290200210820022902f404210c20022f00f10420022d00f30441107472210b20024184056a280200210420024188056a280200210a2002418c056a2902002109410921030c460b200241003a00f004200241f0046a20042003410047220510f6021a20032005490d7f200141046a200320056b3602002001200420056a3602002003450d5020022d00f004210b411121050c9b010b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0d4f200241f8046a290300210920022903f004210c410e21050c0d0b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4e20022903f004210c410b21050c0f0b200242003703f004200241f0046a20042003410820034108491b220610f6021a41042105200141046a200320066b3602002001200420066a360200200341074d0d4d0c0d0b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d4c20022802f004210a410c21050c070b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4b20022903f004210c410921050c0c0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a220f200320056b22063602002001200420056a22043602002003411f4d0d4a200231008f052108200235008705210d20022900ff04210920022900f704210c20022800f304210a20022f00f104210720022d00f004210b200235008b05210e200242003703f804200242003703f004200241f0046a20042006411020064110491b220510f6021a200f200620056b3602002001200420056a3602002006410f4d0d4a200d200e42208684210d200241f8046a290300211c20022903f004211b410221050c95010b411021050c0b0b200241f0046a2003412020034120491b22056a41004100412020056b2005411f4b1b10f5021a200241f0046a2004200510f6021a200141046a220f200320056b22063602002001200420056a22053602002003411f4d0d48200231008f052108200229008705210d20022900ff04210920022900f704210c20022800f304210a20022f00f104210720022d00f004210b200241f0046a2006412020064120491b22046a41004100412020046b2004411f4b1b10f5021a200241f0046a2005200410f6021a200f200620046b3602002001200520046a3602002006411f4d0d48200231008f052110200229008705210e20022900ff04211c20022900f704211b20022800f304211220022f00f104211320022d00f0042111200241e8026a2001101a20022802e802450d4820022802ec022204417f4c0da6012004450d462004101b220f450d8e01200f2001280200200141046a22062802002205200420052004491b220510f6021a200628020022032005490d8f012006200320056b3602002001200128020020056a36020020052004470d470c92010b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a36020041072105200341074d0d470c070b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4620022903f004210c410521050c070b200241003602f004200241f0046a20042003410420034104491b220510f6021a200141046a200320056b3602002001200420056a360200200341034d0d4520022802f004210a410d21050b0c070b200242003703f004200241f0046a20042003410820034108491b220510f6021a200141046a200320056b3602002001200420056a360200200341074d0d4320022903f004210c410621050c040b200242003703f804200242003703f004200241f0046a20042003411020034110491b220510f6021a200141046a200320056b3602002001200420056a3602002003410f4d0d42200241f8046a290300210920022903f004210c410a21050b0c030b200242003703f00441082105200241f0046a20042003410820034108491b220610f6021a200141046a200320066b3602002001200420066a360200200341074d0d400b20022903f004210c0b0b0b0c87010b200141046a2802002103200128020021074101210441002005470d010b200241003a00e005200241e0056a20072003410047220610f6021a20032006490d68200141046a200320066b3602002001200720066a3602002003450d0020022d00e005210120024180046a41026a200241f0046a41026a2d00003a0000200220022f00f0043b0180042005ad22084220862008842109410121050c250b2005450d82010c81010b20022903f804210e20024180046a41186a200329030037030020024180046a41106a200629030037030020024180046a41086a2001290300370300200220022903e00537038004200c201b42208684210c200d42808080807083200d42ffffffff0f8384210d410521040c90010b20022903f804210e20024180046a41186a200329030037030020024180046a41106a200629030037030020024180046a41086a2001290300370300200220022903e00537038004200c201b42208684210c410421040c8f010b4101210441002005460d89010b20050d310c320b4101210441002005460d86010b20050d2f0c300b4101210441002005460d8c010b20050d2d0c2e0b4101210541002004470d070b410321010c040b4101210541002004470d050b410421010c020b4101210541002004470d030b410221010b200421150b2000200b3b000a2000200a3a00092000410d360200200041cc006a2016360200200041c8006a2017360200200041c4006a2018360200200041c0006a20193602002000413c6a201a360200200041386a201d360200200041346a200f360200200041306a20143602002000412c6a2013360200200041286a2007360200200041246a2003360200200041206a20063602002000411c6a2012360200200041186a2011360200200041146a2004360200200041106a20153602002000410c6a2005360200200041086a20013a0000200241d0066a24000f0b2004450d00200510160b20004114360200200241d0066a24000f0b4101210541002006460d750b20060d040c7b0b410421040b2014450d03420021084100210b4100210541002107201421120340200241306a2001101a2002280230450d1f20022802342203417f4c0d8201024002402003450d002003101b220f450d48200f2001280200200141046a220a2802002206200320062003491b220610f6021a200a28020022112006490d49200a201120066b3602002001200128020020066a36020020062003460d010c200b4101210f41002003470d1f0b200241286a2001101a2002280228450d1e200228022c2206417f4c0d8201024002402006450d002006101b2211450d4220112001280200200141046a2213280200220a2006200a2006491b220a10f6021a20132802002215200a490d4320132015200a6b36020020012001280200200a6a360200200a2006460d010c1f0b4101211141002006470d1e0b200741016a210a024020072012470d00200b200a200a200b491b2212ad42187e2209422088a70d3b2009a722134100480d3b02402007450d00200420052013101522040d010c400b201310132204450d3f0b200420056a2207200f360200200741146a2006360200200741106a20063602002007410c6a2011360200200741046a2003ad220942208620098437020020084280808080107c2108200b41026a210b200541186a2105200a2107200a2014490d000c050b0b4101210541002006460d700b2006450d770b200510160c760b41002112420021080b2004450d1b20082012ad842108410621060c790b420021080b2008200aad84210841012106410521010b0c020b410721010b0b0b0c640b200141046a2802002103200128020021074101210441002006470d020b200241003a00e005200241e0056a20072003410047220510f6021a20032005490d59200141046a200320056b3602002001200720056a3602002003450d0120022d00e00521014102210520024180046a41026a200241f0046a41026a2d00003a0000200220022f00f0043b0180042006ad220942208620098421090b200241e0056a41026a20024180046a41026a2d000022063a0000200241d8036a41026a220320063a0000200220022f01800422063b01d803200220063b01e005200041186a20013a0000200041106a20093702002000410c6a2004360200200041086a200536020020004110360200200041206a2008370200200020022f01d8033b00192000411b6a20032d00003a0000200241d0066a24000f0b20060d5b0c5c0b4101210641002005460d6f0b2005450d00200610160b200220022f01e0053b01f0040c740b410421050b024002402014450d0042002108200241f0046a410c6a2115200241f0046a411c6a2116200241f0046a41186a2117200241f0046a41146a2118410021074100210341002104201421130340200241f0046a200110ab0120022d00f004220a4102460d08200441016a210620022d00f304210b20022f00f104210f201529020021092016290200210c201728020021112018280200211220022902f404210d024020042013470d002007200620062007491b2213ad42247e220e422088a70d28200ea722194100480d2802402004450d00200520032019101522050d010c2c0b201910132205450d2b0b200520036a2204200a3a0000200441036a200f200b41107472220a4110763a0000200441016a200a3b00002004410c6a2009370000200441046a200d3700002004411c6a200c370000200441186a2011360000200441146a201236000020084280808080107c2108200741026a2107200341246a21032006210420062014490d000c020b0b41002113420021080b2005450d0620082013ad84210c2005410876210b410621030b0b0b0b0b200220022f01e00522013b01f004200220013b018004200041386a200e370000200041306a200d370000200020063a0009200041086a20033a000020004105360200200041286a2009370000200041246a200a360000200041206a20043600002000411c6a20084220883e0000200041186a20083e0000200041106a200c3700002000410c6a200b410874200541ff017172360000200020022f0180043b000a200241d0066a24000f0b2013450d00200510160b200220022f01e0053b01f00420004114360200200241d0066a24000f0b2006450d00201110160b2003450d00200f10160b02402007450d002004210103400240200141046a280200450d00200128020010160b0240200141106a280200450d002001410c6a28020010160b200141186a2101200541686a22050d000b0b2012450d010b200410160b20004114360200200241d0066a24000f0b4101210f41002004460d4b0b2004450d00200f10160b200241f0046a41026a200241e0056a41026a2d00003a0000200220022f00e0053b01f00420004114360200200241d0066a24000f0b20052004101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b20042006101c000b1010000b20052004101c000b20052003101c000b201941041014000b201341041014000b41f00041081014000b200641011014000b200a2015101c000b200441011014000b20052007101c000b200441011014000b20052007101c000b200341011014000b20062011101c000b20052003101c000b20052003101c000b20052003101c000b20052003101c000b20052003101c000b20052007101c000b200541011014000b20062003101c000b20042007101c000b20042007101c000b20062003101c000b20052003101c000b200541011014000b20062007101c000b200541011014000b20062007101c000b200541011014000b20062007101c000b200441011014000b20062007101c000b200441011014000b20062007101c000b200441011014000b20062007101c000b200641011014000b2003200a101c000b200641011014000b2003200a101c000b200641011014000b20052003101c000b200541011014000b20042007101c000b20052003101c000b20032006101c000b200441011014000b20052003101c000b200410160b200241e0056a41026a20024180046a41026a2d00003a0000200220022f0180043b01e00520004114360200200241d0066a24000f0b2004ad221e422086201e84211e410321050b200241f0046a41026a200241e0056a41026a2d000022013a000020024180046a41026a220420013a0000200220022f00e00522013b018004200220013b01f004200041c8006a20103c0000200041c0006a200e370000200041386a201c370000200041306a201b370000200041286a20083c0000200041206a200d370000200041186a2009370000200041106a200c3700002000412c6a2012360000200020133b002a200020113a00292000410c6a200a360000200020073b000a2000200b3a0009200041086a20053a00002000410a360200200041d0006a201e370000200041cc006a200f360000200020022f0180043b0049200041cb006a20042d00003a0000200241d0066a24000f0b0b200020033b000a200020073a00092000410f360200200041e0006a201f370000200041d8006a2020370000200041286a200c370000200041206a200d370000200041186a2009370000200041106a2008370000200041ec006a2005360000200041e8006a2004360000200041d0006a201e370000200041c8006a201c370000200041c0006a201b370000200041386a2010370000200041306a200e3700002000410c6a2006360000200041086a20013a0000200241d0066a24000f0b2006ad22084220862008842110410721040c010b2006ad22084220862008842110410621040b0b0c060b2005ad22084220862008842108410321060c080b2005ad22084220862008842108410521060c070b2006450d042000200636020420004108360200200041086a2004ad2208422086200884370200200241d0066a24000f0b2006450d11200020063602042000410c360200200041086a2004ad2208422086200884370200200241d0066a24000f0b0b0b200241f0046a41086a220120024180046a41086a290300370300200241f0046a41106a220620024180046a41106a290300370300200241f0046a41186a220320024180046a41186a2903003703002002200241bb036a2800003600e305200220022800b8033602e00520022002290380043703f004024020044108470d0020004114360200200241d0066a24000f0b200241d8036a41086a220b2001290300370300200241d8036a41106a22012006290300370300200241d8036a41186a22062003290300370300200220022800e3053600fb03200220022802e0053602f803200220022903f0043703d803200041286a20083c0000200041206a200c370000200041186a200d370000200041106a20103700002000410c6a2005360000200020073b000a2000200a3a0009200041086a20043a000020004111360200200041386a200e370000200041306a2009370000200020022802f8033600292000412c6a20022800fb03360000200041c0006a20022903d803370000200041c8006a200b290300370000200041d0006a2001290300370000200041d8006a2006290300370000200241d0066a24000f0b20004114360200200241d0066a24000f0b2005ad22084220862008842108410121060b20004101360200200041106a20083702002000410c6a2004360200200041086a2006360200200241d0066a24000f0b20004114360200200241d0066a24000f0b200241d8026a2001101a024020022802d802450d0020022802dc022204417f4c0d010240024002402004450d002004101b2203450d0520032001280200200141046a220a2802002207200420072004491b220710f6021a200a280200220b2007490d06200a200b20076b3602002001200128020020076a36020020072004460d010c020b4101210341002004470d010b200241d0026a2001101a20022802d002450d0020022802d4022207417f4c0d02024002402007450d002007101b220a450d07200a2001280200200141046a220f280200220b2007200b2007491b220b10f6021a200f2802002211200b490d08200f2011200b6b36020020012001280200200b6a360200200b2007470d010c090b4101210a41002007460d080b2007450d00200a10160b2004450d00200310160b02402005450d00200610160b200220022f01e0053b01f0040c060b100f000b200441011014000b2007200b101c000b200741011014000b200b2011101c000b2007ad220c422086200c84210c410121070c010b20004114360200200241d0066a24000f0b200220022f01e0053b01f0040b200220022f01f0043b018004200041386a2008370000200041306a2009370000200020013a0009200041086a20073a000020004109360200200041286a200c370000200041246a200a360000200041206a20043600002000411c6a2004360000200041186a2003360000200041106a2005ad22084220862008843700002000410c6a2006360000200020022f0180043b000a200241d0066a24000f0b20004114360200200241d0066a24000f0b20004114360200200241d0066a24000b870801067f230041f0006b22022400200241003a0050200241d0006a2001280200220320012802042204410047220510f6021a02400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d0020022d0050220441ef014b0d010c030b200041023a0000200241f0006a24000f0b02400240024002400240200441847e6a220441034b0d00024002400240024020040e0400010203000b200241003b0150200241d0006a20052006410220064102491b220410f6021a200141046a200620046b3602002001200520046a360200200641014d0d0420022f0150220441ef014b0d09200041023a0000200241f0006a24000f0b20024100360250200241d0006a20052006410420064104491b220410f6021a200141046a200620046b3602002001200520046a360200200641034d0d04410121012002280250220441ffff034b0d09200041023a0000200241f0006a24000f0b200041023a0000200141046a20062006410420064104491b22006b3602002001200520006a360200200241f0006a24000f0b41002103200241d0006a2006412020064120491b22046a41004100412020046b2004411f4b1b10f5021a200241d0006a2005200410f6021a200141046a200620046b3602002001200520046a3602002006411f4d0d032002412c6a41026a200241d0006a41026a2d00003a0000200241186a200241df006a290000370300200241206a200241e7006a290000370300200241286a200241d0006a411f6a2d00003a0000200220022f00503b012c2002200229005737031020022800532104410121030c040b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b200041023a0000200241f0006a24000f0b0b200241cc006a41026a22012002412c6a41026a2d00003a0000200241306a41086a2205200241106a41086a290300370300200241306a41106a2206200241106a41106a290300370300200241306a41186a2207200241106a41186a2d00003a0000200220022f012c3b014c2002200229031037033002402003450d002002410c6a41026a20012d00003a0000200241d0006a41086a2005290300370300200241d0006a41106a2006290300370300200241d0006a41186a20072d00003a0000200220022f014c3b010c20022002290330370350410021010c030b200041023a0000200241f0006a24000f0b20052004101c000b410121010b200020022f010c3b0001200020013a0000200041046a2004360200200041086a2002290350370200200041036a2002410e6a2d00003a0000200041106a200241d0006a41086a290300370200200041186a200241d0006a41106a290300370200200041206a200241d0006a41186a280200360200200241f0006a24000bd00605057f017e017f027e037f230041306b22022400200241003a0020200241206a2001280200220320012802042204410047220510f6021a0240024002400240024020042005490d00200141046a200420056b22063602002001200320056a2205360200024002402004450d000240024020022d0020220341037122044102460d00024020044101460d0020040d022003410276ad21070c080b200241003a0020200241206a20052006410047220410f6021a20062004490d06200141046a200620046b3602002001200520046a3602002006450d0220022d002041087420037241fcff0371410276ad21070c070b200241003a001e200241003b011c2002411c6a200520064103200641034922081b220410f6021a200141046a200620046b3602002001200520046a36020020080d0120022f011c20022d001e41107472410874200372410276ad21070c060b0240024020034102762204410c460d00024020044104460d0020040d0220024100360220200241206a200520064104200641044922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d03200235022021070c080b4200210a20024200370320200241206a200520064108200641084922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d03200229032021070c070b4200210a2002420037032820024200370320200241206a200520064110200641104922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d02200241286a2903002109200229032021074201210a0c070b200441046a220b41104b0d00200141046a210c200241106a210d4200210742002109410021030340200241003a0020200241206a20052006410047220410f6021a20062004490d04200c200620046b22083602002001200520046a22053602002006450d01200241086a20023100204200200341037441f8007110fb02200d2903002009842109200229030820078421074201210a20082106200341016a22042103200441ff0171200b490d000c070b0b4200210a0b0c040b20052004101c000b20042006101c000b20042006101c000b420021094201210a0b200020073703082000200a370300200041106a2009370300200241306a24000bdc0201097f230041106b220224002002200110ca01024002400240024020022802004101470d002002410c6a22032802002104200241086a22052802002106200228020421072002200110ca0120022802004101470d012003280200210820052802002105200228020421032002200110ca0120022802004101470d022002410c6a2802002101200241086a28020021092002280204210a2000200736020420004101360200200041246a2001360200200041206a20093602002000411c6a200a360200200041186a2008360200200041146a2005360200200041106a20033602002000410c6a2004360200200041086a2006360200200241106a24000f0b200041003602000c020b200041003602002006450d012007450d0120071016200241106a24000f0b2000410036020002402003450d002005450d00200310160b2006450d002007450d0020071016200241106a24000f0b200241106a24000bbe0503057f027e037f230041106b22022400200241003a0008200241086a2001280200220320012802042204410047220510f6021a02400240024020042005490d00200141046a200420056b22063602002001200320056a22053602000240024002402004450d0020022d00082204ad210702400240200441037122034102460d00024020034101460d0020030d022004410276ad2107420121080c050b200241003a0008200241086a20052006410047220410f6021a20062004490d07200141046a200620046b3602002001200520046a3602002006450d0220023100084208862007844202882107420121080c040b200241003a0006200241003b0104200241046a200520064103200641034922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d0120023301042002310006421086844208862007844202882107420121080c030b02400240200441027622044104460d0020040d0120024100360208200241086a200520064104200641044922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d0220023502082107420121080c040b4200210820024200370308200241086a200520064108200641084922031b220410f6021a200141046a200620046b3602002001200520046a36020020030d0220022903082107420121080c030b200441046a220941084b0d0042002107200141046a210a410021030340200241003a0008200241086a20052006410047220410f6021a20062004490d05200a200620046b220b3602002001200520046a22053602002006450d0120023100082003410374413871ad86200784210742012108200b2106200341016a22042103200441ff01712009490d000c030b0b420021080b0b2000200737030820002008370300200241106a24000f0b20052004101c000b20042006101c000b20042006101c000bb60a04067f017e0a7f037e230041d0006b22022400200241003a0030200241306a2001280200220320012802042204410047220510f6021a02400240024002400240024002400240024002400240024002400240024002400240024020042005490d00200141046a200420056b22063602002001200320056a22053602002004450d0702400240024020022d00302204450d0020044101470d0a200241086a2001101a2002280208450d0a200228020c2207ad2208421b88a70d042008420586a72204417f4c0d042004450d01200410132209450d052007450d020c060b410021094100210e0c070b4101210920070d040b410021044100210f2009450d070c040b20052004101c000b100f000b200441011014000b200241306a41186a210a200241306a41106a210b200241306a41086a210c200141046a210d4100210e41002106410021052007210f0340200a4200370300200b4200370300200c420037030020024200370330200241306a20012802002210200d2802002204412020044120491b220310f6021a200d200420036b3602002001201020036a3602002004411f4d0d03200541016a2104200241106a41186a2203200a290300370300200241106a41106a2210200b290300370300200241106a41086a2211200c2903003703002002200229033037031002402005200f470d00200e20042004200e491b220fad4205862208422088a70d092008a722124100480d0902402005450d00200920062012101522090d010c0b0b201210132209450d0a0b200920066a22052002290310370000200541186a2003290300370000200541106a2010290300370000200541086a2011290300370000200e41026a210e200641206a21062004210520042007490d000b2009450d030b2004ad422086200fad842108200141046a2802002106200128020021052009210e0b200241003a0030200241306a20052006410047220410f6021a20062004490d072008a7210d200141046a200620046b22033602002001200520046a2204360200024002402006450d0020022d00302205450d0120054101470d00200241003a0030200241306a20042003410047220510f6021a20032005490d0b200141046a200320056b22063602002001200420056a22043602002003450d0020022d00302205450d044101210a20054101460d050b20004202370300200e450d0c0c0b0b4102210a0c040b200f450d00200910160b200042023703000c090b4100210a0b200621030b200241003a0030200241306a20042003410047220510f6021a20032005490d03200141046a200320056b22063602002001200420056a22043602000240024002402003450d0020022d00302205450d0120054101470d0020024200370330200241306a20042006410820064108491b220510f6021a200141046a200620056b3602002001200420056a360200200641074d0d0020022903302113420121140c020b20004202370300200e0d070c080b420021140b200241306a200110ca01024020022802304101470d00200241386a290300211520022802342101200041286a200a3a0000200041246a20154220883e0200200041206a20153e02002000200136021c200041186a2008422088a7360200200041146a200d360200200041106a20093602002000201337030820002014370300200020022800303600292000412c6a200241336a280000360000200241d0006a24000f0b20004202370300200e0d050c060b1010000b201241011014000b20042006101c000b20052003101c000b20052003101c000b200d450d0020091016200241d0006a24000f0b200241d0006a24000b9f860305067f017e047f017e017f230041106b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002802002203450d0020034101470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a200110b101200028020022034101460d010b20034102470d010c030b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1720034101742205200420042005491b22054100480d172003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00000240200041086a28020022034101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d1820054101742204200620062004491b22044100480d182005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200041086a28020021030b024020034102470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41023a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d1820054101742204200620062004491b22044100480d182005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200041086a28020021030b024020034105470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1820034101742205200420042005491b22054100480d182003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41043a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d1820054101742204200620062004491b22044100480d182005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200041086a28020021030b02400240024002400240024020034106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1d20034101742205200420042005491b22044100480d1d2003450d0120012802002003200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41053a00002000410c6a28020021032002200041146a280200220536020c2002410c6a2001101802402005450d002003200541186c6a2109200141046a210703402003280200210a2002200341086a280200220536020c2002410c6a2001101802400240024002402007280200220b200428020022066b20054f0d00200620056a220c2006490d1e200b4101742206200c200c2006491b22064100480d1e200b450d012001280200200b20061015220b0d020c070b2001280200210b0c020b20061013220b450d050b2001200b36020020072006360200200428020021060b2004200620056a360200200b20066a200a200510f6021a2003410c6a280200210a2002200341146a280200220536020c2002410c6a2001101802400240024002402007280200220b200428020022066b20054f0d00200620056a220c2006490d1e200b4101742206200c200c2006491b22064100480d1e200b450d012001280200200b20061015220b0d020c080b2001280200210b0c020b20061013220b450d060b2001200b36020020072006360200200428020021060b2004200620056a360200200b20066a200a200510f6021a200341186a22032009470d000b0b200041086a28020021030b20034107470d04024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0120012802002003200510152204450d020c050b200128020021040c050b2005101322040d030b200541011014000b200641011014000b200641011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41063a00002000410c6a28020021052002200041146a280200220336020c2002410c6a200110182003450d0020052003410c6c6a2109200141046a210a03402005280200210b2002200541086a280200220336020c2002410c6a200110180240024002400240200a2802002207200628020022046b20034f0d00200420036a220c2004490d1820074101742204200c200c2004491b22044100480d182007450d01200128020020072004101522070d020c070b200128020021070c020b200410132207450d050b20012007360200200a2004360200200628020021040b2006200420036a360200200720046a200b200310f6021a2005410c6a22052009470d000b0b200028020022034102460d020b20034103470d020c030b200441011014000b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a0000200028020022034103460d010b4104210420034104470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d1220034101742205200420042005491b22054100480d122003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a000002400240200041086a2802004101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1420034101742206200420042006491b22064100480d142003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110b2012002200041306a36020c2002410c6a200110b301200041086a2802004102470d010b02400240024002400240200141046a28020020052802002203470d00200341016a22042003490d1320034101742205200420042005491b22054100480d132003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002000410c6a200110b2012002200041306a36020c2002410c6a200110b3012002200041c0006a36020c2002410c6a200110b3010b41042104200028020022034104460d010b20034105470d010c020b02400240024002400240200120046a280200200141086a2802002203470d00200341016a22042003490d1020034101742205200420042005491b22054100480d102003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00000240200041086a22032d000022044101470d0002400240024002400240200141046a28020020052802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41003a000002400240024002400240200141046a2802002205200628020022046b41204f0d00200441206a22062004490d1120054101742204200620062004491b22044100480d112005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200520046a220441186a200341196a290000370000200441106a200341116a290000370000200441086a200341096a2900003700002004200329000137000020032d000021040b0240200441ff01714102470d0002400240024002400240200141046a280200200141086a2802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a200441016a360200200520046a41013a0000200041106a200110b10120032d000021040b0240200441ff01714103470d0002400240024002400240200141046a280200200141086a2802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41023a000002400240024002400240200141046a28020020062802002204470d00200441016a22052004490d1120044101742206200520052006491b22064100480d112004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a200441016a360200200520046a200341016a2d00003a00000b200028020022034105460d010b20034106470d010c030b02400240024002400240200141046a220b280200200141086a22052802002203470d00200341016a22042003490d0e20034101742206200420042006491b22064100480d0e2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41053a00000240200041086a2d000022034101470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41003a00002000410c6a200110b2012002200041306a36020c2002410c6a200110b301024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d0020034102470d01200b28020020052802002203470d03200341016a22042003490d1c20034101742206200420042006491b22064100480d1c2003450d0720012802002003200610152204450d080c0f0b200b28020020052802002203470d01200341016a22042003490d1b20034101742206200420042006491b22064100480d1b2003450d0420012802002003200610152204450d050c0c0b200b28020020052802002203470d02200341016a22042003490d1a20034101742206200420042006491b22064100480d1a2003450d0720012802002003200610152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2006101322040d070b200641011014000b2006101322040d070b200641011014000b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41003a00000c040b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41013a00000c020b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41023a00000b200041086a2d000021030b0240200341ff01714102470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41013a00002002200041106a36020c2002410c6a200110b301200041086a2d000021030b0240200341ff01714103470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41023a00002002200041106a36020c2002410c6a200110b301200041086a2d000021030b0240200341ff01714104470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41033a0000200041086a2d000021030b0240200341ff01714105470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41043a0000200041206a200110182002200041106a36020c2002410c6a200110b301200041086a2d000021030b0240200341ff01714106470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41053a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101802402004450d00200441246c210403402003200110b201200341246a21032004415c6a22040d000b0b200041086a2d000021030b0240200341ff01714107470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41063a0000200041086a2d000021030b0240200341ff01714108470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41073a000002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d0020034102470d01200b28020020052802002203470d03200341016a22042003490d1b20034101742206200420042006491b22064100480d1b2003450d0720012802002003200610152204450d080c0f0b200b28020020052802002203470d01200341016a22042003490d1a20034101742206200420042006491b22064100480d1a2003450d0420012802002003200610152204450d050c0c0b200b28020020052802002203470d02200341016a22042003490d1920034101742206200420042006491b22064100480d192003450d0720012802002003200610152204450d080c090b200128020021040c0b0b200128020021040c0c0b200128020021040c070b2006101322040d070b200641011014000b2006101322040d070b200641011014000b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41003a00000c040b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41013a00000c020b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a41023a00000b0240200041086a2d000022034109470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41083a00002000410c6a200110b201200041086a2d000021030b0240200341ff0171410a470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41093a0000200041106a200110b101200041086a2d000021030b0240200341ff0171410b470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a410a3a0000200041106a200110b101200041086a2d000021030b0240200341ff0171410c470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a410b3a00002000410c6a20011018200041086a2d000021030b0240200341ff0171410d470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a410c3a000002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b2005200341016a360200200420036a200041096a2d00003a0000200041086a2d000021030b0240200341ff0171410e470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a410d3a00002000410c6a20011018200041086a2d000021030b0240200341ff0171410f470d0002400240024002400240200b28020020052802002203470d00200341016a22042003490d0f20034101742206200420042006491b22064100480d0f2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a220c200341016a360200200420036a410e3a00002000410c6a28020021032002200041146a280200220436020c2002410c6a200110182004450d0020044105742107200141046a210903400240024002400240200b2802002206200528020022046b41204f0d00200441206a220a2004490d0f20064101742204200a200a2004491b22044100480d0f2006450d01200128020020062004101522060d020c070b200128020021060c020b200410132206450d050b2001200636020020092004360200200c28020021040b2005200441206a360200200620046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200741606a22070d000b0b200028020022034106460d020b20034107470d020c030b200441011014000b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0b20034101742205200420042005491b22054100480d0b2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a00000240024020002802044101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0d20034101742206200420042006491b22064100480d0d2003450d0120012802002003200610152204450d020c030b200128020021040c030b2006101322040d010b200641011014000b20012004360200200141046a2006360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a280200200110b001200041046a2802004102470d010b02400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a0000200041086a200110b2010b200028020022034107460d010b4108210420034108470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0920034101742205200420042005491b22054100480d092003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0920034101742205200420042005491b22054100480d092003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a0000200041086a200110b10141082104200028020022034108460d010b20034109470d010c020b02400240024002400240200141046a280200200120046a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a0000200041046a280200210720022000410c6a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a200028020022034109460d010b2003410a470d040c050b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041086a2d0000417f6a220341034b0d00024002400240024020030e0400030102000b200141046a280200200141086a2802002203470d06200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0d20012802002003200510152204450d0e0c1b0b200141046a280200200141086a2802002203470d03200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0820012802002003200510152204450d090c180b200141046a280200200141086a2802002203470d03200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0920012802002003200510152204450d0a0c150b200141046a280200200141086a2802002203470d04200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0c20012802002003200510152204450d0d0c120b200141046a28020020052802002203470d04200341016a22042003490d2420034101742205200420042005491b22054100480d242003450d0d20012802002003200510152204450d0e0c0f0b200128020021040c150b200128020021040c120b200128020021040c150b200128020021040c0e0b200128020021040c0b0b2005101322040d0f0b200541011014000b2005101322040d0b0b200541011014000b2005101322040d0d0b200541011014000b2005101322040d050b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d1820044101742203200520052003491b22034100480d182004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a200636000020002802002203410a470d0b0c0c0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0b20044101742203200520052003491b22034100480d0b2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a20063600000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200041096a2d000022034101460d00024020034102460d0020034103470d02200141046a280200200141086a2802002203470d05200341016a22042003490d1d20034101742205200420042005491b22054100480d1d2003450d0b20012802002003200510152204450d0c0c150b200141046a280200200141086a2802002203470d02200341016a22042003490d1c20034101742205200420042005491b22054100480d1c2003450d0620012802002003200510152204450d070c120b200141046a28020020052802002203470d02200341016a22042003490d1b20034101742205200420042005491b22054100480d1b2003450d0720012802002003200510152204450d080c0f0b200141046a280200200141086a2802002203470d03200341016a22042003490d1a20034101742205200420042005491b22054100480d1a2003450d0a20012802002003200510152204450d0b0c0c0b200128020021040c100b200128020021040c0d0b200128020021040c100b200128020021040c090b2005101322040d0b0b200541011014000b2005101322040d070b200541011014000b2005101322040d090b200541011014000b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41003a000020002802002203410a470d0f0c100b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41013a000020002802002203410a470d0d0c0e0b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41023a000020002802002203410a470d0b0c0c0b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a41033a000020002802002203410a470d090c0a0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0920044101742203200520052003491b22034100480d092004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a200636000020002802002203410a470d070c080b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000410c6a280200210602400240024002400240200141046a2802002204200528020022036b41044f0d00200341046a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341046a360200200420036a200636000020002802002203410a460d060c050b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041386a2903002108200041306a290300210d02400240024002400240200141046a2802002204200528020022036b41104f0d00200341106a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341106a360200200420036a220320083700082003200d3700002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0520054101742204200620062004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a200041186a28020021072002200041206a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0520054101742204200620062004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a200041246a280200210720022000412c6a280200220336020c2002410c6a20011018024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0320054101742204200620062004491b22044100480d032005450d0120012802002005200410152205450d020c040b200128020021050c040b2004101322050d020b200441011014000b1010000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a20002802002203410a460d010b2003410b470d010c020b02400240024002400240200141046a2205280200200141086a22032802002204470d00200441016a22062004490d0b20044101742207200620062007491b22074100480d0b2004450d0120012802002004200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021040b2003200441016a360200200620046a410a3a00000240200041086a22062d000022044101470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41003a0000200041186a2903002108200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff01714102470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41013a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200641196a290000370000200441106a200641116a290000370000200441086a200641096a29000037000020042006290001370000200041386a2903002108200041306a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff01714103470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41023a00000240024002400240024020052802002207200328020022046b41204f0d00200441206a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441206a360200200720046a220441186a200641196a290000370000200441106a200641116a290000370000200441086a200641096a290000370000200420062900013700000240024002400240024020052802002207200328020022046b41204f0d00200441206a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b200141086a220a200441206a360200200720046a220441186a200641216a220741186a290000370000200441106a200741106a290000370000200441086a200741086a29000037000020042007290000370000200041cc006a280200210c2002200041d4006a280200220436020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022076b20044f0d00200720046a220a2007490d0c200b4101742207200a200a2007491b22074100480d0c200b450d012001280200200b20071015220b450d020c030b2001280200210b0c030b20071013220b0d010b200741011014000b2001200b360200200141046a2007360200200141086a28020021070b2003200720046a360200200b20076a200c200410f6021a20062d000021040b0240200441ff01714104470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41033a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714105470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41043a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714106470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41053a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714107470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41063a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714108470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41073a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff01714109470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41083a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff0171410a470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41093a0000200041186a2903002108200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff0171410b470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410a3a0000200041106a29030021080240024002400240024020052802002207200328020022046b41084f0d00200441086a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441086a360200200720046a200837000020062d000021040b0240200441ff0171410c470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410b3a00002000410c6a280200210b0240024002400240024020052802002207200328020022046b41044f0d00200441046a220a2004490d0c20074101742204200a200a2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a200b36000020062d000021040b0240200441ff0171410d470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410c3a00002000410c6a280200210b0240024002400240024020052802002207200328020022046b41044f0d00200441046a220a2004490d0c20074101742204200a200a2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441046a360200200720046a200b36000020062d000021040b0240200441ff0171410e470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410d3a0000200041186a2903002108200041106a290300210d0240024002400240024020052802002207200328020022046b41104f0d00200441106a220b2004490d0c20074101742204200b200b2004491b22044100480d0c2007450d0120012802002007200410152207450d020c030b200128020021070c030b2004101322070d010b200441011014000b20012007360200200141046a2004360200200141086a28020021040b2003200441106a360200200720046a220420083700082004200d37000020062d000021040b0240200441ff0171410f470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410e3a000020062d000021040b0240200441ff01714110470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a410f3a000020062d000021040b0240200441ff01714111470d0002400240024002400240200528020020032802002204470d00200441016a22072004490d0c2004410174220b20072007200b491b220b4100480d0c2004450d0120012802002004200b10152207450d020c030b200128020021070c030b200b101322070d010b200b41011014000b20012007360200200141046a200b360200200141086a28020021040b2003200441016a360200200720046a41103a000002400240024002400240200528020020032802002204470d00200441016a22052004490d0c20044101742207200520052007491b22074100480d0c2004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a200641016a2d00003a00000b20002802002203410b460d010b2003410c470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0920034101742205200420042005491b22054100480d092003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a000002400240024002400240200041086a220c2d000022034101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0e20034101742205200420042005491b22054100480d0e2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000410c6a28020021032002200041146a280200220436020c2002410c6a2001101802402004450d0020044105742107200141046a210b03400240024002400240200b2802002206200528020022046b41204f0d00200441206a220a2004490d0f20064101742204200a200a2004491b22044100480d0f2006450d01200128020020062004101522060d020c070b200128020021060c020b200410132206450d050b20012006360200200b2004360200200528020021040b2005200441206a360200200620046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a2103200741606a22070d000b0b200c2d000021030b200341ff01714102470d03024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0b20034101742205200420042005491b22054100480d0b2003450d0120012802002003200510152204450d020c040b200128020021040c040b2005101322040d020b200541011014000b200441011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0a20044101742203200520052003491b22034100480d0a2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200c41196a290000370000200341106a200c41116a290000370000200341086a200c41096a2900003700002003200c290001370000200c2d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0a20034101742205200420042005491b22054100480d0a2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240024002400240200141046a2802002204200528020022036b41204f0d00200341206a22052003490d0a20044101742203200520052003491b22034100480d0a2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200420036a220341186a200c41196a290000370000200341106a200c41116a290000370000200341086a200c41096a2900003700002003200c290001370000200c2d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0a20034101742205200420042005491b22054100480d0a2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0a20044101742203200520052003491b22034100480d0a2004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a20083700000b20002802002203410c460d010b2003410d470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410c3a000002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a0000200041046a280200210720022000410c6a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200420036a360200200520046a2007200310f6021a20002802002203410d460d010b2003410e470d060c070b02400240024002400240200141046a280200200141086a22042802002203470d00200341016a22052003490d0520034101742206200520052006491b22064100480d052003450d0120012802002003200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021030b2004200341016a360200200520036a410d3a00000240200041086a22052d000022034101470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41003a0000200041306a290300210802400240024002400240200141046a2802002206200728020022036b41084f0d00200341086a22072003490d0620064101742203200720072003491b22034100480d062006450d0120012802002006200310152206450d020c030b200128020021060c030b2003101322060d010b200341011014000b20012006360200200141046a2003360200200141086a28020021030b200141086a2207200341086a360200200620036a2008370000200141046a2802002106200728020021030240024002400240024002400240024002400240024002402000410c6a2802002207450d0020062003470d01200341016a22062003490d0d2003410174220b20062006200b491b220b4100480d0d2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0c20034101742207200620062007491b22074100480d0c2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d07200b4101742206200a200a2006491b22064100480d07200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041186a2802002207450d0020062003470d01200341016a22062003490d0d2003410174220b20062006200b491b220b4100480d0d2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0c20034101742207200620062007491b22074100480d0c2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041206a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d07200b4101742206200a200a2006491b22064100480d07200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041246a2802002207450d0020062003470d01200341016a22062003490d0d2003410174220b20062006200b491b220b4100480d0d2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0c20034101742207200620062007491b22074100480d0c2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a000020022000412c6a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d07200b4101742206200a200a2006491b22064100480d07200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b20052d000021030b0240200341ff01714102470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a220b200341016a360200200620036a41013a00002000410c6a280200210a2002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002207200b28020022066b20034f0d00200620036a220b2006490d0620074101742206200b200b2006491b22064100480d062007450d0120012802002007200610152207450d020c030b200128020021070c030b2006101322070d010b200641011014000b20012007360200200141046a2006360200200141086a28020021060b2004200620036a360200200720066a200a200310f6021a20052d000021030b0240200341ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a220b200341016a360200200620036a41023a00002000410c6a280200210a2002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002207200b28020022066b20034f0d00200620036a220b2006490d0620074101742206200b200b2006491b22064100480d062007450d0120012802002007200610152207450d020c030b200128020021070c030b2006101322070d010b200641011014000b20012007360200200141046a2006360200200141086a28020021060b2004200620036a360200200720066a200a200310f6021a20052d000021030b0240200341ff01714104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0620034101742207200620062007491b22074100480d062003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a220b200341016a360200200620036a41033a00002000410c6a280200210a2002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002207200b28020022066b20034f0d00200620036a220b2006490d0620074101742206200b200b2006491b22064100480d062007450d0120012802002007200610152207450d020c030b200128020021070c030b2006101322070d010b200641011014000b20012007360200200141046a2006360200200141086a28020021060b2004200620036a360200200720066a200a200310f6021a20052d000021030b200341ff01714105470d0402400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0520034101742207200620062007491b22074100480d052003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41043a0000200141046a2802002106200728020021030240024002400240024002400240024002400240024002402000410c6a2802002207450d0020062003470d01200341016a22062003490d0c2003410174220b20062006200b491b220b4100480d0c2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d0b20034101742207200620062007491b22074100480d0b2003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d06200b4101742206200a200a2006491b22064100480d06200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a280200210302400240024002400240024002400240024002400240200041186a2802002207450d0020062003470d01200341016a22062003490d0b2003410174220b20062006200b491b220b4100480d0b2003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1720034101742207200620062007491b22074100480d172003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c050b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041206a280200220336020c2002410c6a20011018024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d03200b4101742206200a200a2006491b22064100480d03200b450d012001280200200b20061015220b450d020c040b2001280200210b0c040b20061013220b0d020b200641011014000b1010000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041246a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a000020022000412c6a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b20052d000021030b0240200341ff01714106470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0e20034101742207200620062007491b22074100480d0e2003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41053a000002400240024002400240200141046a2802002206200728020022036b41204f0d00200341206a22072003490d0e20064101742203200720072003491b22034100480d0e2006450d0120012802002006200310152206450d020c030b200128020021060c030b2003101322060d010b200341011014000b20012006360200200141046a2003360200200141086a28020021030b200141086a2207200341206a360200200620036a220341186a200541196a290000370000200341106a200541116a290000370000200341086a200541096a29000037000020032005290001370000200141046a2802002106200728020021030240024002400240024002400240024002400240024002402000412c6a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041346a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041386a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041c0006a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b200141046a2802002106200141086a2802002103024002400240024002400240024002400240024002400240200041c4006a2802002207450d0020062003470d01200341016a22062003490d152003410174220b20062006200b491b220b4100480d152003450d0320012802002003200b10152206450d040c090b20062003470d01200341016a22062003490d1420034101742207200620062007491b22074100480d142003450d0420012802002003200710152206450d050c060b200128020021060c080b200128020021060c050b200b101322060d050b200b41011014000b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b2004200341016a360200200620036a41003a00000c020b20012006360200200141046a200b360200200141086a28020021030b200141086a220a200341016a360200200620036a41013a00002002200041cc006a280200220336020c2002410c6a2001101802400240024002400240200141046a280200220b200a28020022066b20034f0d00200620036a220a2006490d0f200b4101742206200a200a2006491b22064100480d0f200b450d012001280200200b20061015220b450d020c030b2001280200210b0c030b20061013220b0d010b200641011014000b2001200b360200200141046a2006360200200141086a28020021060b2004200620036a360200200b20066a2007200310f6021a0b20052d000021030b0240200341ff01714107470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22062003490d0e20034101742207200620062007491b22074100480d0e2003450d0120012802002003200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200620036a41063a000002400240024002400240200141046a2802002206200728020022036b41204f0d00200341206a22072003490d0e20064101742203200720072003491b22034100480d0e2006450d0120012802002006200310152206450d020c030b200128020021060c030b2003101322060d010b200341011014000b20012006360200200141046a2003360200200141086a28020021030b2004200341206a360200200620036a220341186a200541196a290000370000200341106a200541116a290000370000200341086a200541096a290000370000200320052900013700000b20002802002203410e460d010b2003410f470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0b20034101742205200420042005491b22054100480d0b2003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a410e3a000020002802002203410f460d010b20034110470d010c020b02400240024002400240200141046a2206280200200141086a22042802002203470d00200341016a22052003490d0920034101742207200520052007491b22074100480d092003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a410f3a00000240200041086a220a2d000022034101470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200041106a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200a2d000021030b0240200341ff01714102470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41013a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a00000240024002400240024020062802002205200428020022036b41204f0d00200341206a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341206a360200200520036a220341186a200a41196a290000370000200341106a200a41116a290000370000200341086a200a41096a2900003700002003200a290001370000200a2d000021030b0240200341ff01714103470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41023a00000240024002400240024020062802002205200428020022036b41204f0d00200341206a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341206a360200200520036a220341186a200a41196a290000370000200341106a200a41116a290000370000200341086a200a41096a2900003700002003200a290001370000200a2d000021030b0240200341ff01714104470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41033a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200041186a2903002108200041106a290300210d0240024002400240024020062802002205200428020022036b41104f0d00200341106a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341106a360200200520036a220320083700082003200d370000200041e8006a28020021070240024002400240024020062802002205200428020022036b41044f0d00200341046a220b2003490d0a20054101742203200b200b2003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341046a360200200520036a2007360000200041ec006a28020021070240024002400240024020062802002205200428020022036b41044f0d00200341046a220b2003490d0a20054101742203200b200b2003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341046a360200200520036a2007360000200041286a2903002108200041206a290300210d0240024002400240024020062802002205200428020022036b41104f0d00200341106a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341106a360200200520036a220320083700082003200d370000200041306a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041386a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041c0006a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041c8006a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041d0006a29030021080240024002400240024020062802002205200428020022036b41084f0d00200341086a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341086a360200200520036a2008370000200041e0006a2903002108200041d8006a290300210d0240024002400240024020062802002205200428020022036b41104f0d00200341106a22072003490d0a20054101742203200720072003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341106a360200200520036a220320083700082003200d370000200a2d000021030b02400240024002400240200341ff01714105470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0e20034101742207200520052007491b22074100480d0e2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b200141086a220c200341016a360200200520036a41043a00002002200041146a280200220736020c2002410c6a2001101802402007450d00200141046a210903400240024002400240200628020020042802002203470d00200341016a22052003490d0f2003410174220b20052005200b491b220b4100480d0f2003450d0120012802002003200b101522050d020c070b200128020021050c020b200b10132205450d050b200120053602002009200b360200200c28020021030b2004200341016a360200200520036a41003a00002007417f6a22070d000b0b200a2d000021030b200341ff01714106470d03024002400240200628020020042802002203470d00200341016a22052003490d0b20034101742207200520052007491b22074100480d0b2003450d0120012802002003200710152205450d020c040b200128020021050c040b2007101322050d020b200741011014000b200b41011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41053a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200a2d000021030b0240200341ff01714107470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41063a000002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41003a0000200a2d000021030b0240200341ff01714108470d0002400240024002400240200628020020042802002203470d00200341016a22052003490d0a20034101742207200520052007491b22074100480d0a2003450d0120012802002003200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021030b2004200341016a360200200520036a41073a00000240024002400240024020062802002205200428020022036b41204f0d00200341206a22062003490d0a20054101742203200620062003491b22034100480d0a2005450d0120012802002005200310152205450d020c030b200128020021050c030b2003101322050d010b200341011014000b20012005360200200141046a2003360200200141086a28020021030b2004200341206a360200200520036a220341186a200a41196a290000370000200341106a200a41116a290000370000200341086a200a41096a2900003700002003200a2900013700000b200028020022034110460d010b20034111470d010c020b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41103a00000240200041086a28020022034101470d0002400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a00002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0820054101742204200620062004491b22044100480d082005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a02400240024002400240200141046a28020020062802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041186a2d00003a0000200041086a28020021030b024020034102470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041206a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2206200341086a360200200420036a20083700002000410c6a28020021072002200041146a280200220336020c2002410c6a2001101802400240024002400240200141046a2802002205200628020022046b20034f0d00200420036a22062004490d0820054101742204200620062004491b22044100480d082005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a2206200420036a360200200520046a2007200310f6021a02400240024002400240200141046a28020020062802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a200341016a360200200420036a200041186a2d00003a0000200041086a28020021030b024020034103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a2008370000200041086a28020021030b024020034104470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0820034101742205200420042005491b22054100480d082003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0820044101742203200520052003491b22034100480d082004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a20083700000b200028020022034111460d010b20034112470d0a0c0b0b02400240024002400240200141046a2206280200200141086a22032802002204470d00200441016a22052004490d0520044101742207200520052007491b22074100480d052004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41113a00000240200041086a220b2d000022044101470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000200041306a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a2008370000200041386a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a2008370000200b2d000021040b0240200441ff01714102470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000200b2d000021040b0240200441ff01714103470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41023a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0620054101742204200720072004491b22044100480d062005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000200b2d000021040b200441ff01714104470d0802400240024002400240200628020020032802002204470d00200441016a22052004490d0520044101742207200520052007491b22074100480d052004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41033a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0520054101742204200720072004491b22044100480d052005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000024002400240024002400240024002400240024002400240024002400240200041c0006a2802002204450d00200628020020032802002205470d01200541016a22072005490d0f2005410174220a20072007200a491b220a4100480d0f2005450d0320012802002005200a10152207450d040c090b200628020020032802002204470d01200441016a22052004490d0e20044101742207200520052007491b22074100480d0e2004450d0420012802002004200710152205450d050c060b200128020021070c080b200128020021050c050b200a101322070d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012007360200200141046a200a360200200141086a28020021050b200141086a2209200541016a360200200720056a41013a00002002200041c8006a280200220536020c2002410c6a200110182005450d002005410574210a200141046a210e0340024002400240024020062802002207200328020022056b41204f0d00200541206a220c2005490d0920074101742205200c200c2005491b22054100480d092007450d01200128020020072005101522070d020c060b200128020021070c020b200510132207450d040b20012007360200200e2005360200200928020021050b2003200541206a360200200720056a220541186a200441186a290000370000200541106a200441106a290000370000200541086a200441086a29000037000020052004290000370000200441206a2104200a41606a220a0d000b0b20062802002105200328020021040240024002400240024002400240200041d8006a2d000022074102470d0020052004470d01200441016a22052004490d1620044101742207200520052007491b22074100480d162004450d0320012802002004200710152205450d040c0f0b20052004470d01200441016a22052004490d092004410174220a20052005200a491b220a4100480d092004450d0420012802002004200a10152205450d050c070b200128020021050c0e0b200128020021050c060b2007101322050d0b0b200741011014000b200a101322050d020b200a41011014000b200541011014000b20012005360200200141046a200a360200200141086a28020021040b2003200441016a360200200520046a41013a00002006280200210520032802002104024002400240024002400240024020074101470d0020052004470d01200441016a22052004490d1320044101742207200520052007491b22074100480d132004450d0320012802002004200710152205450d040c0a0b20052004470d01200441016a22052004490d0620044101742207200520052007491b22074100480d062004450d0420012802002004200710152205450d050c070b200128020021050c090b200128020021050c060b2007101322050d060b200741011014000b2007101322050d020b200741011014000b1010000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c040b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000b024002400240024002400240024002400240024002400240200041306a2903004201520d00200628020020032802002204470d01200441016a22052004490d1020044101742207200520052007491b22074100480d102004450d0320012802002004200710152205450d040c090b200628020020032802002204470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b2007101322050d050b200741011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a0000200041386a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0a20054101742204200720072004491b22044100480d0a2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a20083700000b2006280200210520032802002104024002400240024002400240024002400240024002400240200041cc006a2802002207450d0020052004470d01200441016a22052004490d102004410174220a20052005200a491b220a4100480d102004450d0320012802002004200a10152205450d040c090b20052004470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b200a101322050d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a200a360200200141086a28020021040b200141086a220c200441016a360200200520046a41013a00002002200041d4006a280200220436020c2002410c6a2001101802400240024002400240200141046a280200220a200c28020022056b20044f0d00200520046a220c2005490d0a200a4101742205200c200c2005491b22054100480d0a200a450d012001280200200a20051015220a450d020c030b2001280200210a0c030b20051013220a0d010b200541011014000b2001200a360200200141046a2005360200200141086a28020021050b2003200520046a360200200a20056a2007200410f6021a0b200b2d000021040b0240200441ff01714105470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0920044101742207200520052007491b22074100480d092004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41043a00000240024002400240024020062802002205200328020022046b41204f0d00200441206a22072004490d0920054101742204200720072004491b22044100480d092005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441206a360200200520046a220441186a200b41196a290000370000200441106a200b41116a290000370000200441086a200b41096a2900003700002004200b290001370000024002400240024002400240024002400240024002400240024002400240024002400240200041c0006a2802002204450d00200628020020032802002205470d01200541016a22072005490d162005410174220a20072007200a491b220a4100480d162005450d0320012802002005200a10152207450d040c090b200628020020032802002204470d01200441016a22052004490d1520044101742207200520052007491b22074100480d152004450d0420012802002004200710152205450d050c060b200128020021070c080b200128020021050c050b200a101322070d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012007360200200141046a200a360200200141086a28020021050b200141086a2209200541016a360200200720056a41013a00002002200041c8006a280200220536020c2002410c6a200110182005450d002005410574210a200141046a210e0340024002400240024020062802002207200328020022056b41204f0d00200541206a220c2005490d1020074101742205200c200c2005491b22054100480d102007450d01200128020020072005101522070d020c060b200128020021070c020b200510132207450d040b20012007360200200e2005360200200928020021050b2003200541206a360200200720056a220541186a200441186a290000370000200541106a200441106a290000370000200541086a200441086a29000037000020052004290000370000200441206a2104200a41606a220a0d000b0b20062802002105200328020021040240024002400240024002400240200041d8006a2d000022074102470d0020052004470d01200441016a22052004490d1120044101742207200520052007491b22074100480d112004450d0320012802002004200710152205450d040c0a0b20052004470d01200441016a22052004490d102004410174220a20052005200a491b220a4100480d102004450d0420012802002004200a10152205450d050c070b200128020021050c090b200128020021050c060b2007101322050d060b200741011014000b200a101322050d020b200a41011014000b200541011014000b20012005360200200141046a200a360200200141086a28020021040b2003200441016a360200200520046a41013a000020062802002105200328020021040240024002400240024002400240024002400240024020074101470d0020052004470d01200441016a22052004490d1220044101742207200520052007491b22074100480d122004450d0320012802002004200710152205450d040c090b20052004470d01200441016a22052004490d1120044101742207200520052007491b22074100480d112004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b2007101322050d050b200741011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c040b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000b024002400240024002400240024002400240024002400240200041306a2903004201520d00200628020020032802002204470d01200441016a22052004490d1020044101742207200520052007491b22074100480d102004450d0320012802002004200710152205450d040c090b200628020020032802002204470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b2007101322050d050b200741011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41013a0000200041386a29030021080240024002400240024020062802002205200328020022046b41084f0d00200441086a22072004490d0a20054101742204200720072004491b22044100480d0a2005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b2003200441086a360200200520046a20083700000b2006280200210520032802002104024002400240024002400240024002400240024002400240200041cc006a2802002207450d0020052004470d01200441016a22052004490d102004410174220a20052005200a491b220a4100480d102004450d0320012802002004200a10152205450d040c090b20052004470d01200441016a22052004490d0f20044101742207200520052007491b22074100480d0f2004450d0420012802002004200710152205450d050c060b200128020021050c080b200128020021050c050b200a101322050d050b200a41011014000b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b2003200441016a360200200520046a41003a00000c020b20012005360200200141046a200a360200200141086a28020021040b200141086a220c200441016a360200200520046a41013a00002002200041d4006a280200220436020c2002410c6a2001101802400240024002400240200141046a280200220a200c28020022056b20044f0d00200520046a220c2005490d0a200a4101742205200c200c2005491b22054100480d0a200a450d012001280200200a20051015220a450d020c030b2001280200210a0c030b20051013220a0d010b200541011014000b2001200a360200200141046a2005360200200141086a28020021050b2003200520046a360200200a20056a2007200410f6021a0b200b2d000021040b0240200441ff01714106470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0920044101742207200520052007491b22074100480d092004450d0120012802002004200710152205450d020c030b200128020021050c030b2007101322050d010b200741011014000b20012005360200200141046a2007360200200141086a28020021040b200141086a220a200441016a360200200520046a41053a00002000410c6a280200210c2002200041146a280200220436020c2002410c6a2001101802400240024002400240200141046a2802002207200a28020022056b20044f0d00200520046a220a2005490d0920074101742205200a200a2005491b22054100480d092007450d0120012802002007200510152207450d020c030b200128020021070c030b2005101322070d010b200541011014000b20012007360200200141046a2005360200200141086a28020021050b2003200520046a360200200720056a200c200410f6021a200b2d000021040b0240200441ff01714107470d0002400240024002400240200628020020032802002204470d00200441016a22052004490d0920044101742206200520052006491b22064100480d092004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2207200441016a360200200520046a41063a00002000410c6a280200210b2002200041146a280200220436020c2002410c6a2001101802400240024002400240200141046a2802002206200728020022056b20044f0d00200520046a22072005490d0920064101742205200720072005491b22054100480d092006450d0120012802002006200510152206450d020c030b200128020021060c030b2005101322060d010b200541011014000b20012006360200200141046a2005360200200141086a28020021050b2003200520046a360200200620056a200b200410f6021a0b200028020022034112460d010b20034113470d050c010b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0620034101742205200420042005491b22054100480d062003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41123a00000240200041086a22032d000022044101470d0002400240024002400240200141046a28020020052802002204470d00200441016a22052004490d0720044101742206200520052006491b22064100480d072004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41003a000002400240024002400240200141046a2802002205200628020022046b41204f0d00200441206a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200520046a220441186a200341196a290000370000200441106a200341116a290000370000200441086a200341096a2900003700002004200329000137000020032d000021040b0240200441ff01714102470d0002400240024002400240200141046a280200200141086a2802002204470d00200441016a22052004490d0720044101742206200520052006491b22064100480d072004450d0120012802002004200610152205450d020c030b200128020021050c030b2006101322050d010b200641011014000b20012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a41013a0000200041106a290300210802400240024002400240200141046a2802002205200628020022046b41084f0d00200441086a22062004490d0720054101742204200620062004491b22044100480d072005450d0120012802002005200410152205450d020c030b200128020021050c030b2004101322050d010b200441011014000b20012005360200200141046a2004360200200141086a28020021040b200141086a200441086a360200200520046a200837000020032d000021040b0240200441ff01714103470d0002400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0720034101742205200420042005491b22054100480d072003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0720044101742203200520052003491b22034100480d072004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a200341086a360200200420036a20083700000b20002802004113470d040b02400240024002400240200141046a280200200141086a2802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41133a00000240200041086a22032d00004101470d0002400240024002400240200141046a28020020052802002204470d00200441016a22062004490d0620044101742207200620062007491b22074100480d062004450d0120012802002004200710152206450d020c030b200128020021060c030b2007101322060d010b200741011014000b20012006360200200141046a2007360200200141086a28020021040b200141086a2207200441016a360200200620046a41003a000002400240024002400240200141046a2802002206200728020022046b41204f0d00200441206a22072004490d0620064101742204200720072004491b22044100480d062006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b200141086a2207200441206a360200200620046a220441186a200341196a290000370000200441106a200341116a290000370000200441086a200341096a2900003700002004200329000137000002400240024002400240200141046a2802002206200728020022046b41204f0d00200441206a22072004490d0620064101742204200720072004491b22044100480d062006450d0120012802002006200410152206450d020c030b200128020021060c030b2004101322060d010b200441011014000b20012006360200200141046a2004360200200141086a28020021040b200141086a200441206a360200200620046a220441186a200341216a220641186a290000370000200441106a200641106a290000370000200441086a200641086a2900003700002004200629000037000020032d00004102470d040b02400240024002400240200141046a28020020052802002203470d00200341016a22042003490d0520034101742205200420042005491b22054100480d052003450d0120012802002003200510152204450d020c030b200128020021040c030b2005101322040d010b200541011014000b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041106a290300210802400240024002400240200141046a2802002204200528020022036b41084f0d00200341086a22052003490d0520044101742203200520052003491b22034100480d052004450d0120012802002004200310152204450d020c030b200128020021040c030b2003101322040d010b200341011014000b20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2008370000200041186a2903002108024002400240200141046a2802002203200528020022006b41084f0d00200041086a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010152203450d020c040b200128020021030c040b2000101322030d020b200041011014000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041086a360200200320006a20083700000b200241106a24000bc00903017f017e057f230041e0006b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002903002203423f560d00200141046a280200200141086a2802002200470d01200041016a22042000490d1120004101742205200420042005491b22054100480d112000450d0520012802002000200510152204450d060c190b2003428080015a0d01200141046a2802002204200141086a28020022006b41024f0d02200041026a22052000490d1020044101742200200520052000491b22004100480d102004450d0820012802002004200010152204450d090c160b200128020021040c180b20034280808080045a0d01200141046a2802002204200141086a28020022006b41044f0d04200041046a22052000490d0e20044101742200200520052000491b22004100480d0e2004450d08200128020020042000101522040d090c120b200128020021040c140b4108200379a74103766b22064104490d0e200141046a280200200141086a2802002205470d03200541016a22042005490d0c20054101742207200420042007491b22044100480d0c2005450d09200128020020052004101522070d0a0c110b2005101322040d130b200541011014000b200128020021040c050b200128020021070c070b2000101322040d0d0b200041011014000b200010132204450d090b20012004360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200420006a2003a7410274410272360000200241e0006a24000f0b200410132207450d070b20012007360200200141046a2004360200200141086a28020021050b200141086a2204200541016a360200200720056a200641027441736a3a0000200220002903002203370308200141046a210703400240024002400240200728020020042802002200470d00200041016a22052000490d0520004101742208200520052008491b22084100480d052000450d01200128020020002008101522050d020c060b200128020021050c020b200810132205450d040b2001200536020020072008360200200428020021000b2004200041016a360200200520006a2003a73a0000200342088821032006417f6a22060d000b20022003370308200350450d03200241e0006a24000f0b1010000b200841011014000b41a094c1001038000b2002200241086a360240200241b894c100360244200241c8006a41146a4100360200200241286a41146a4105360200200241346a4106360200200241106a41146a4103360200200241acf1c3003602582002420137024c200241c094c1003602482002410636022c20024203370214200241e4efc3003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41c894c1001046000b200041011014000b200441011014000b20012004360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200420006a2003a74102744101723b0000200241e0006a24000f0b20012004360200200141046a2005360200200141086a28020021000b200141086a200041016a360200200420006a2003a74102743a0000200241e0006a24000b8e0a01037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034d0d01200141046a280200200141086a2802002200470d03200041016a22032000490d1820004101742204200320032004491b22044100480d182000450d0920012802002000200410152203450d0a0c160b200141046a280200200141086a2802002202470d01200241016a22032002490d1720024101742204200320032004491b22044100480d172002450d0420012802002002200410152203450d050c130b200241ef014b0d02200141046a280200200141086a2802002200470d05200041016a22032000490d1620004101742204200320032004491b22044100480d162000450d09200128020020002004101522030d0a0c0f0b200128020021030c120b200128020021030c130b200141046a280200200141086a2802002200470d03200041016a22032000490d1320004101742204200320032004491b22044100480d132000450d09200128020020002004101522030d0a0c0d0b2004101322030d0e0b200441011014000b200128020021030c050b200128020021030c070b2004101322030d0c0b200441011014000b200410132203450d050b20012003360200200141046a2004360200200141086a28020021000b200141086a200041016a360200200320006a20023a00000f0b200410132203450d030b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240024002400240200141046a2802002203200428020022006b41024f0d00200041026a22042000490d0b20034101742200200420042000491b22004100480d0b2003450d01200128020020032000101522030d020c060b200128020021030c020b200010132203450d040b20012003360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200320006a20023b00000f0b200441011014000b200441011014000b200041011014000b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41ff013a000002400240024002400240200141046a2802002203200428020022026b41204f0d00200241206a22042002490d0720034101742202200420042002491b22024100480d072003450d0120012802002003200210152203450d020c030b200128020021030c030b2002101322030d010b200241011014000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241206a360200200320026a220141186a200041196a290000370000200141106a200041116a290000370000200141086a200041096a290000370000200120002900013700000f0b20012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a0000024002400240200141046a2802002203200428020022006b41044f0d00200041046a22042000490d0320034101742200200420042000491b22004100480d032003450d0120012802002003200010152203450d020c040b200128020021030c040b2000101322030d020b200041011014000b1010000b20012003360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200320006a20023600000b960a03017f027e057f230041e0006b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200028020022002903002203423f56200041086a290300220442005220045022051b0d00200141046a280200200141086a2802002200470d01200041016a22052000490d1120004101742206200520052006491b22064100480d112000450d0520012802002000200610152205450d060c190b20034280800154410020051b450d01200141046a2802002205200141086a28020022006b41024f0d02200041026a22062000490d1020054101742200200620062000491b22004100480d102005450d0820012802002005200010152205450d090c160b200128020021050c180b200342808080800454410020051b450d01200141046a2802002205200141086a28020022006b41044f0d04200041046a22062000490d0e20054101742200200620062000491b22004100480d0e2005450d08200128020020052000101522050d090c120b200128020021050c140b411020047920037942c0007c20044200521ba74103766b22074104490d0e200141046a280200200141086a2802002206470d03200641016a22052006490d0c20064101742208200520052008491b22054100480d0c2006450d09200128020020062005101522080d0a0c110b2006101322050d130b200641011014000b200128020021050c050b200128020021080c070b2000101322050d0d0b200041011014000b200010132205450d090b20012005360200200141046a2000360200200141086a28020021000b200141086a200041046a360200200520006a2003a7410274410272360000200241e0006a24000f0b200510132208450d070b20012008360200200141046a2005360200200141086a28020021060b200141086a2205200641016a360200200820066a200741027441736a3a0000200029030021032002200041086a290300220437030820022003370300200141046a210803400240024002400240200828020020052802002200470d00200041016a22062000490d0520004101742209200620062009491b22094100480d052000450d01200128020020002009101522060d020c060b200128020021060c020b200910132206450d040b2001200636020020082009360200200528020021000b2005200041016a360200200620006a2003a73a000020034208882004423886842103200442088821042007417f6a22070d000b2002200337030020022004370308200320048450450d03200241e0006a24000f0b1010000b200941011014000b41cc95c1001038000b20022002360240200241e895c100360244200241c8006a41146a4100360200200241286a41146a4105360200200241346a4107360200200241106a41146a4103360200200241acf1c3003602582002420137024c200241c094c1003602482002410736022c20024203370214200241e4efc3003602102002200241c8006a3602382002200241c4006a3602302002200241c0006a3602282002200241286a360220200241106a41f895c1001046000b200041011014000b200541011014000b20012005360200200141046a2000360200200141086a28020021000b200141086a200041026a360200200520006a2003a74102744101723b0000200241e0006a24000f0b20012005360200200141046a2006360200200141086a28020021000b200141086a200041016a360200200520006a2003a74102743a0000200241e0006a24000b0a0041f0f4c0001038000b130020004108360204200041bcf9c0003602000b3301017f0240410810132202450d0020004288808080800137020420002002360200200242ac023700000f0b410841011014000b130020004106360204200041f987c1003602000be70201067f230041306b22012400200141206a41086a220242003703002001420037032041ea88c1004115200141206a1002200141086a41086a200229030037030020012001290320370308200141003602282001420137032020012000280208220336021c2001411c6a200141206a101802400240024002402003450d0020022802002100200128022421040340024002400240024020002004470d00200441016a22052004490d0720044101742206200520052006491b22064100480d072004450d01200128022020042006101522050d020c080b200128022021050c020b200610132205450d060b2001200636022420012005360220200621040b2002200041016a2206360200200520006a41003a0000200621002003417f6a22030d000c020b0b2002280200210620012802242104200128022021050b200141086a411020052006100102402004450d00200510160b200141306a24000f0b1010000b200641011014000bc80704037f027e037f087e230041206b2201240002400240411110132202450d00200241106a41002d00c28a413a0000200241086a41002900ba8a41370000200241002900b28a4137000020024111412210152202450d01200241003a0011200141106a41086a220342003703002001420037031020024112200141106a1002200141086a2003290300370300200120012903103703000240024002402001411041acf1c300410041001000417f460d002001420037031820014200370310410020014110200141106a41104100100022032003417f461b2203410f4d0d02200141186a29030021042001290310210520014100360210410020014110200141106a41042003411020034110491b2206100022032003417f461b220341034d0d022001280210210720014100360210410020014110200141106a41042003410420034104491b20066a2206100022032003417f461b220341034d0d02200128021021082001420037031820014200370310410020014110200141106a41102003410420034104491b20066a2206100022032003417f461b2203410f4d0d02200141106a41086a29030021092001290310210a20014200370310410020014110200141106a41082003411020034110491b20066a2206100022032003417f461b220341074d0d022001290310210b20014200370310410020014110200141106a41082003410820034108491b20066a2206100022032003417f461b220341074d0d022001290310210c20014200370310410020014110200141106a41082003410820034108491b20066a2206100022032003417f461b220341074d0d022001290310210d20014200370310410020014110200141106a41082003410820034108491b20066a2206100022032003417f461b220341074d0d022001290310210e2001420037031020014110200141106a41082003410820034108491b20066a2203100041016a41084d0d022001290310210f200142003703182001420037031020014110200141106a4110200341086a10002203417f460d022003410f4d0d0220012903102110200041d8006a200141186a290300370300200041d0006a2010370300200041206a2009370300200041186a200a370300200041106a200437030020002005370308200041e4006a2008360200200041e0006a2007360200200041c8006a200f370300200041c0006a200e370300200041386a200d370300200041306a200c370300200041286a200b370300200042013703000c010b200042003703000b20021016200141206a24000f0b41b6e7c20041331029000b411141011014000b412241011014000be41303017f037e0a7f23004190016b2203240020032000108e01200341086a2903002104200329030021054200210620034180016a41086a220742003703002003420037038001419be8c200410d20034180016a1002200341d8006a41086a20072903003703002003200329038001370358024002400240024002400240024002400240200341d8006a411041acf1c300410041001000417f460d0020034200370310200341d8006a4110200341106a41084100100041016a41084d0d01200329031021060b200342f2deb1abf6eb9cbaeb00370330200341306a200020052004200620027c10bc01200341106a41186a200041186a290000370300200341106a41106a200041106a290000370300200341106a41086a200041086a29000037030020032000290000370310200341d8006a109a01200328025c210720032003280258220020032802604105746a360264200320003602602003200736025c200320003602582003200341106a360268200341386a200341d8006a102b20032802402107200328023c210820032802382109411710132200450d012000410f6a41002900e3f740370000200041086a41002900dcf740370000200041002900d4f74037000020004117412e1015220a450d02200a41003a001720034180016a41086a220042003703002003420037038001200a411820034180016a1002200341d8006a41086a200029030037030020032003290380013703582003410036028801200342013703800120032007360270200341f0006a20034180016a10180240024002400240024002402007450d002007410574210b20034180016a41086a2802002107200328028001210c200328028401210d2009210003400240024002400240200d20076b41204f0d00200741206a220e2007490d07200d410174220f200e200e200f491b220f4100480d07200d450d01200c200d200f1015220c0d020c080b200741206a210e0c020b200f1013220c450d060b200f210d0b200c20076a22072000290000370000200741186a200041186a290000370000200741106a200041106a290000370000200741086a200041086a290000370000200e2107200041206a2100200b41606a220b0d000b20034188016a200e3602002003200d360284012003200c360280010c010b20034188016a280200210e200328028401210d200328028001210c0b200341d8006a4110200c200e10010240200d450d00200c10160b200a101602402008450d00200910160b200341d8006a200110bb01200328025c210720032003280258220020032802604105746a360264200320003602602003200736025c200320003602582003200341106a360268200341c8006a200341d8006a102b20032802502107200328024c211020032802482108411b10132200450d07200041176a41002800f38941360000200041106a41002900ec8941370000200041086a41002900e48941370000200041002900dc89413700002000411b413610152209450d082009200137001b20034180016a41086a2200420037030020034200370380012009412320034180016a1002200341d8006a41086a200029030037030020032003290380013703582003410036028801200342013703800120032007360270200341f0006a20034180016a1018024002402007450d002007410574210c410020034180016a41086a28020022076b210d200328028001210f200328028401210b2008210003400240200b200d6a411f4b0d00200741206a220e2007490d04200b410174220a200e200e200a491b220e4100480d0402400240200b450d00200f200b200e1015220f0d010c080b200e1013220f450d070b200e210b0b200f20076a220e2000290000370000200e41186a200041186a290000370000200e41106a200041106a290000370000200e41086a200041086a290000370000200d41606a210d200741206a2107200041206a2100200c41606a220c0d000b20034188016a20073602002003200b360284012003200f360280010c010b20034188016a2802002107200328028401210b200328028001210f0b200341d8006a4110200f200710010240200b450d00200f10160b2009101602402010450d00200810160b20034180016a41086a22004200370300200342003703800141f789c100411620034180016a1002200341d8006a41086a200029030037030020032003290380013703584100210702400240200341d8006a411041acf1c300410041001000417f460d00200342103702742003200341d8006a36027020034180016a200341f0006a10112003280280012200450d0d20034188016a2802002107200328028401210e0c010b410121004100210e0b200320003602602003200e36025c200320003602582003200020074105746a3602642003200341106a360268200341f0006a200341d8006a102b20032802742108200328027021092003280278210020034180016a41086a22074200370300200342003703800141f789c100411620034180016a1002200341d8006a41086a20072903003703002003200329038001370358200341003602880120034201370380012003200036027c200341fc006a20034180016a1018024002402000450d002000410574210c4100200728020022076b210d200328028001210f200328028401210b2009210003400240200b200d6a411f4b0d00200741206a220e2007490d04200b410174220a200e200e200a491b220e4100480d0402400240200b450d00200f200b200e1015220f0d010c090b200e1013220f450d080b200e210b0b200f20076a220e2000290000370000200e41186a200041186a290000370000200e41106a200041106a290000370000200e41086a200041086a290000370000200d41606a210d200741206a2107200041206a2100200c41606a220c0d000b20034188016a20073602002003200b360284012003200f360280010c010b20072802002107200328028401210b200328028001210f0b200341d8006a4110200f200710010240200b450d00200f10160b02402008450d00200910160b411710132200450d092000410f6a41002900ccf740370000200041086a41002900c5f740370000200041002900bdf74037000020004117413710152200450d0a200020032903103700172000412f6a200341286a290300370000200041276a200341106a41106a2903003700002000411f6a200341106a41086a29030037000020034180016a41086a2207420037030020034200370380012000413720034180016a1002200341d8006a41086a20072903003703002003200329038001370358200341d8006a411010032000101620034190016a24000f0b1010000b200f41011014000b200e41011014000b200e41011014000b41b6e7c20041331029000b411741011014000b412e41011014000b411b41011014000b413641011014000b411741011014000b413741011014000b41b6e7c20041331029000ba70201037f230041306b22022400024002400240411b10132203450d00200341176a41002800f38941360000200341106a41002900ec8941370000200341086a41002900e48941370000200341002900dc89413700002003411b413610152203450d012003200137001b200241206a41086a220442003703002002420037032020034123200241206a1002200241086a200429030037030020022002290320370300024002402002411041acf1c300410041001000417f460d002002421037021420022002360210200241206a200241106a101120022802202204450d0420002002290224370204200020043602000c010b20004100360208200042013702000b20031016200241306a24000f0b411b41011014000b413641011014000b41b6e7c20041331029000bca1b0f017f017e027f017e057f017e0a7f037e077f037e027f027e027f027e027f230041a0016b2205240042002106200541f8006a41086a2207420037030020054200370378419be8c200410d200541f8006a1002200541e8006a41086a20072903003703002005200529037837036802400240024002400240024002400240024002400240024002400240200541e8006a411041acf1c300410041001000417f460d0020054200370308200541e8006a4110200541086a41084100100041016a41084d0d01200529030821060b200541086a41106a2003370300200541086a41286a410f3a0000200541086a41186a2004370300200541286a22082000290000370300200520023703104201210920054201370308200541f8006a200110b9022005280278210a200528027c210b200528028001220c450d02200541f8006a41186a220d2000460d01200c41286c210e42012109200a21070340200741086a2903002104200741106a2903002102200741186a29030021032007290300210f200541f8006a41206a200741206a290300370300200541f8006a41186a2003370300200541f8006a41106a22102002370300200541f8006a41086a20043703002005200f3703780240024002400240200d2900002000290000510d0020102903002006580d01200541e8006a41086a200d41086a2903003703002005200d2903003703682010290300210220052903800121032005290378210f42014201520d030c020b200541e8006a41086a200841086a29030037030020052903082104420021092005420037030820052008290300370368200541086a41186a2903002102200529031821032005290310210f20044201510d010c020b42004201520d010b200741286a2110200921040c050b200741286a2107200e41586a220e0d000c030b0b41b6e7c20041331029000b200c41286c2107200a41286a2110200541206a2903002102200529031821032005290310210f200529030821090340200541e8006a41086a200841086a29030037030042002104200542003703082005200829030037036820094201510d02201041286a211042002109200741586a22070d000b0b4100210d0240200b450d00200a10160b410821114100211220094201510d010c020b200541d8006a41086a2207200541e8006a41086a29030037030020052005290368370358200541c8006a41086a220e200729030037030020052005290358370348200541386a41086a2207200e290300370300200520052903483703380240024002400240412810132211450d00201120052903383703182011200f37030020112003370308201141206a2007290300370300201141106a2002370300024002402010200a200c41286c6a460d00200541f8006a41186a220e2000460d0141282113200a200c41286c6a221441586a2115410121164120211741102118410821194201211a4228211b4220211c4100211d4101210d41012112410021070c030b4101210d41012112200b0d030c040b41282121200a200c41286c6a222241586a2123200541086a41186a29030021242005290318212520052903102126200529030821044101212741082128420021294201212a4110212b200541f8006a41106a212c4228212d4220212e4100212f412021304101210d41012112410121070c010b412841081014000b03400240024002400240024020070e020001010b201021070340200541f8006a20176a221e200720176a290300370300200e200741186a290300370300200541f8006a20186a220c200720186a290300370300200541f8006a20196a221f200720196a290300370300200520072903003703780240024002400240200e2900002000290000510d00200c2903002006580d01200541e8006a20196a200e20196a2903003703002005200e290300370368200c290300210220052903800121032005290378210f4201201a520d030c020b200541e8006a20196a200820196a29030037030020052903082109420021042005420037030820052008290300370368200541086a41186a2903002102200529031821032005290310210f2009201a510d010c020b4200201a520d010b200541d8006a20196a2210200541e8006a20196a29030037030020052005290368370358200541c8006a20196a2220201029030037030020052005290358370348200c2002370300200e2005290348370300200e20196a202029030037030020052003370380012005200f37037802402012200d470d00200d20166a2210200d490d0c200d2016742212201020102012491b2212ad201b7e2202201c88a70d0c2002a72210201d480d0c0240200d450d002011200d20136c2010101522110d010c060b201010132211450d050b200720136a21102011200d20136c6a22202005290378370300202020176a201e290300370300202041186a200e290300370300202020186a200c290300370300202020196a201f290300370300200d20166a210d20152007460d03410021070c060b2014200720136a2207470d000c020b0b2010210702400340200541e8006a20286a2210200820286a29030037030020052029370308200520082903003703682004202a510d01420021042022200720216a2207470d000c020b0b200541d8006a20286a220c201029030037030020052005290368370358200541c8006a20286a2210200c29030037030020052005290358370348202c2024370300200e2005290348370300200e20286a201029030037030020052025370380012005202637037802402012200d470d00200d20276a2210200d490d09200d202774220c20102010200c491b2212ad202d7e2204202e88a70d092004a72210202f480d090240200d450d002011200d20216c2010101522110d010c030b201010132211450d020b200720216a21102011200d20216c6a220c2005290378370300200c20306a200541f8006a20306a290300370300200c41186a200e290300370300200c202b6a202c290300370300200c20286a200541f8006a20286a290300370300200d20276a210d4200210420232007470d020b200b450d040c030b201041081014000b410121070c000b0b200a10160b20044201520d010b200541f8006a41206a200541086a41086a220741206a290300370300200541f8006a41186a200741186a290300370300200541f8006a41106a200741106a290300370300200541f8006a41086a200741086a2903003703002005200729030037037802402012200d470d00200d41016a2207200d490d02200d4101742208200720072008491b2212ad42287e2204422088a70d022004a722074100480d0202400240200d450d002011200d41286c200710152211450d010c020b2007101322110d010b200741081014000b2011200d41286c6a22072005290378370300200741206a200541f8006a41206a290300370300200741186a200541f8006a41186a290300370300200741106a200541f8006a41106a290300370300200741086a200541f8006a41086a290300370300200d41016a210d0b410e10132207450d05200741066a410029008fa04337000020074100290089a0433700002007410e412e10152218450d062018200129000037000e201841266a200141186a2900003700002018411e6a200141106a290000370000201841166a200141086a290000370000200541f8006a41086a22194200370300200542003703782018412e200541f8006a1002200541e8006a41086a2019290300370300200520052903783703682005410036028001200542013703782005200d360258200541d8006a200541f8006a101802400240200d450d00200d41286c210d20192802002100200528027c21072011210e03400240024002400240200720006b41084f0d00200041086a22082000490d0720074101742210200820082010491b22104100480d072007450d01200528027820072010101522080d020c080b200528027821080c020b201010132208450d060b2005201036027c20052008360278201021070b2019200041086a2210360200200820006a200e41186a290000370000200e41086a2903002104200e29030021020240024002400240200720106b41104f0d00201041106a22002010490d0720074101742228200020002028491b22284100480d072007450d01200820072028101522080d020c090b200041186a21000c020b202810132208450d070b2005202836027c20052008360278202821070b200820106a221020043700082010200237000020192000360200200e41106a29030021040240200720006b41074b0d00200041086a22102000490d0420074101742228201020102028491b22104100480d04024002402007450d00200820072010101522080d010c090b201010132208450d080b2005201036027c200520083602780b2019200041086a360200200820006a20043700000240024002400240200528027c220720192802002208470d00200841016a22072008490d0720084101742200200720072000491b22074100480d072008450d01200528027820082007101522100d020c0b0b200528027821100c020b200710132210450d090b2005200736027c200520103602780b2019200841016a2200360200201020086a200e41206a2d00003a0000200e41286a210e200d41586a220d0d000c020b0b20192802002100200528027c2107200528027821100b200541e8006a411020102000100102402007450d00201010160b2018101602402012450d00201110160b200541a0016a24000f0b1010000b201041011014000b202841011014000b201041011014000b200741011014000b410e41011014000b412e41011014000b1300200041083602042000419c8bc1003602000b6501027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a10f3022100200241206a240020000bc70101037f024002400240024020022802042203417f4c0d004101210402402003450d0020022802002102200310132204450d0320042002200310f6021a0b20034101742205200341036a220220022005491b22054100480d01024002402003450d0020042003200510152204450d010c050b2005101322040d040b200541011014000b100f000b1010000b200341011014000b200020023602082000200536020420002004360200200420036a220320012f00003b0000200341026a200141026a2d00003a00000bb31809077f017e047f027e017f017e017f017e037f23004190026b2202240002400240024002400240024002400240024002400240411810132203450d00200341106a41002900989641370000200341086a4100290090964137000020034100290088964137000020034118413010152204450d0120042001370018200241f0016a41086a22034200370300200242003703f00120044120200241f0016a1002200241e8006a41086a2003290300370300200220022903f0013703680240024002400240200241e8006a411041acf1c300410041001000417f460d002002421037027c2002200241e8006a360278200242003703f00120024100200241e8006a4110200241f0016a41084100100022032003417f461b2203410820034108491b2002280280016a36028001200341074d0d0e20022903f0012101200241106a200241f8006a10122002280210450d0e20022802142203417f4c0d032003450d012003101b2205450d0620024180016a2206200341002002280278200228027c200520032006280200100022072007417f461b2207200720034b1b220720062802006a36020020072003460d020c0c0b200410164101210441182108420221090c090b410121052002280278200228027c4101410020024180016a28020010001a41002003470d0a0b200241086a200241f8006a10122002280208450d09200228020c2206417f4c0d000240024002402006450d002006101b220a450d0720024180016a2207200641002002280278200228027c200a200620072802001000220b200b417f461b220b200b20064b1b220b20072802006a360200200b2006460d010c020b4101210a2002280278200228027c4101410020024180016a28020010001a41002006470d010b2002200241f8006a10122002280200450d0020022802042207417f4c0d01024002402007450d002007101b220c450d0820024180016a220b200741002002280278200228027c200c2007200b280200100022082008417f461b2208200820074b1b2208200b2802006a36020020082007470d010c090b4101210c2002280278200228027c4101410020024180016a28020010001a41002007460d080b2007450d00200c10160b2006450d09200a10162003450d0b0c0a0b100f000b411841011014000b413041011014000b200341011014000b200641011014000b200741011014000b200242003703f001200241f8006a41086a220b41002002280278200228027c200241f0016a4108200b280200100022082008417f461b2208410820084108491b200b2802006a220d360200200841074d0d0120022903f001210e200242003703f001200b41002002280278200228027c200241f0016a4108200d100022082008417f461b2208410820084108491b200b2802006a220d360200200841074d0d0120022903f001210f200241003a00f0012002280278200228027c200241f0016a4101200d1000210b20024180016a22082008280200200b41016a41014b220b6a22083602000240024002400240200b450d004102210b20022d00f001220d4101460d01200d0d02200242003703f001200241f8006a41086a221041002002280278200228027c200241f0016a41082008100022082008417f461b220d4108200d4108491b20102802006a2208360200200d41074d0d0220022903f0012111200241a8016a41086a200241f0016a41086a290300370300200241a8016a41106a200241f0016a41106a2903003703002002200241cb016a2800003600c301200220022800c8013602c001200220022903f0013703a8014100210b0c030b4102210b0c010b20024188026a4200370300200241f0016a41106a4200370300200241f0016a41086a4200370300200242003703f00141002110200241f8006a41086a221241002002280278200228027c200241f0016a41202008100022082008417f461b220d4120200d4120491b20122802006a220836020002400240200d411f4d0d00200241c8016a41086a20024187026a290000370300200241c8016a41106a200241f0016a411f6a2d00003a0000200220022800f3013600e301200220022802f0013602e001200220022900ff013703c80120022900f7012111410121100c010b0b200241f0016a41086a220d200241c8016a41086a290300370300200241f0016a41106a2212200241c8016a41106a2d00003a0000200220022800e3013600eb01200220022802e0013602e801200220022903c8013703f0012010450d00200241a8016a41086a200d290300370300200241a8016a41106a20122d00003a0000200220022800eb013600c301200220022802e8013602c001200220022903f0013703a801200241bc016a200241f3016a280000360000200220022800f0013600b9014101210b0c010b0b200241f0016a41086a220d200241a8016a41086a290300370300200241f0016a41106a2210200241a8016a41106a290300370300200220022800c3013600cb01200220022802c0013602c801200220022903a8013703f001200b4102460d0120024188016a41086a200d29030037030020024188016a41106a2010290300370300200220022800cb013600a301200220022802c8013602a001200220022903f00137038801200241003a00f0012002280278200228027c200241f0016a4101200810002108200241f8006a41086a220d200d280200200841016a41014b22086a220d3602002008450d0120022d00f0012110200241003a00f0012002280278200228027c200241f0016a4101200d1000210820024180016a220d200d280200200841016a41014b22086a220d3602002008450d010240024020022d00f0012208450d0020084101470d03200242003703f001200241f8006a41086a221241002002280278200228027c200241f0016a4108200d100022082008417f461b2208410820084108491b20122802006a360200200841074d0d0320022903f0012113420121090c010b420021090b200241f0016a41086a220820024188016a41086a290300370300200241f0016a41106a220d20024188016a41106a290300370300200220022800a3013600cb01200220022802a0013602c80120022002290388013703f001200241e8016a41026a2212200241a8016a41026a2d00003a0000200220022f00a8013b01e801200241a8016a41086a22142008290300370300200241a8016a41106a2215200d290300370300200241e0016a41026a221620122d00003a0000200220022800cb0136008b01200220022802c80136028801200220022903f0013703a801200220022f01e8013b01e0012004101620082014290300370300200d2015290300370300200241e8006a41026a20162d00003a00002002200228008b013600cb0120022002280288013602c801200220022903a8013703f001200220022f01e0013b01682001422088a7210d2001a72108410021040b200241c8006a41086a2212200241f0016a41086a290300370300200241c8006a41106a2214200241f0016a41106a290300370300200241c4006a41026a2215200241e8006a41026a2d00003a0000200220022800cb01360063200220022802c801360260200220022903f001370348200220022f01683b0144024002402004450d00200041a096c100360204200041086a2008360200410121030c010b200241206a41086a22042012290300370300200241206a41106a221220142903003703002002411c6a41026a221420152d00003a00002002200228006336003f2002200228026036023c20022002290348370320200220022f01443b011c200041206a200b3a0000200041186a200f370200200041106a200e3702002000410c6a200d360200200041086a2008360200200041286a2011370200200041fc006a20103a0000200041f8006a2007360200200041f4006a2007360200200041f0006a200c360200200041ec006a2006360200200041e8006a2006360200200041e4006a200a360200200041e0006a2003360200200041dc006a2003360200200041d8006a2005360200200041d0006a2013370300200041c8006a20093703002000200228023c360021200041246a200228003f360000200041306a2002290320370200200041386a2004290300370200200041c0006a2012290300370200200041ff006a20142d00003a0000200020022f011c3b007d410021030b2000200336020020024190026a24000f0b0240024020070d0020060d010c020b200c10162006450d010b200a101620030d010c020b2003450d010b200510160b41b6e7c20041331029000b13002000410f360204200041c896c1003602000b3301017f0240410410132202450d0020004284808080c0003702042000200236020020024180103600000f0b410441011014000b3301017f0240410410132202450d0020004284808080c0003702042000200236020020024180083600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241283600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241053600000f0b410441011014000bee0101057f230041106b2202240020024100360208200242013703002002410136020c2002410c6a2002101802400240024002400240024020022802042203200228020822046b41084f0d00200441086a22052004490d0320034101742206200520052006491b22064100480d032003450d0120022802002003200610152203450d020c040b200441086a2105200228020021030c040b2006101322030d020b200641011014000b1010000b20022006360204200220033602000b200241086a22062005360200200320046a4200370000200041086a200628020036020020002002290300370200200241106a24000b7801047f230041106b2202240020024100360208200242013703000240410110132203450d00200220033602002002410136020420002002290300370200200241086a22042004280200220441016a2205360200200320046a41003a0000200041086a2005360200200241106a24000f0b410141011014000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010132206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011014000b13002000410a360204200041c0aac1003602000be90202077f017e230041106b22022400200241003a000f2002410f6a2001280200220320012802042204410047220510f6021a02400240024002400240024020042005490d00200141046a200420056b3602002001200320056a360200024002402004450d004100210420022d000f22054101460d0120050d0720004100360204410121040c070b410021040c060b20022001101a2002280200450d0520022802042205417f4c0d01024002402005450d002005101b2206450d0420062001280200200141046a22072802002203200520032005491b220310f6021a200728020022082003490d052007200820036b3602002001200128020020036a36020020032005470d010c060b4101210641002005460d050b2005450d05200610160c050b20052004101c000b100f000b200541011014000b20032008101c000b20002006360204200041086a2005ad2209422086200984370200410121040b20002004360200200241106a24000bd01501097f230041306b22022400024002400240024002400240024002400240411810132203450d00200341106a41002900989641370000200341086a4100290090964137000020034100290088964137000020034118413010152204450d0120042000370018200241186a41086a220342003703002002420037031820044120200241186a1002200241086a41086a200329030037030020022002290318370308200241003602202002420137031820012903002100410810132203450d022002410836021c200241186a41086a22052005280200220641086a36020020022003360218200320066a2000370000200128025021062002200141d8006a280200220336022c2002412c6a200241186a1018024002400240200228021c2207200528020022056b20034f0d00200520036a22082005490d0820074101742205200820082005491b22054100480d082007450d0120022802182007200510152207450d020c060b200228021821070c060b2005101322070d040b200541011014000b411841011014000b413041011014000b410841011014000b2002200536021c20022007360218200241206a28020021050b200241206a2209200520036a360200200720056a2006200310f6021a200128025c21072002200141e4006a280200220336022c2002412c6a200241186a101802400240024002400240200228021c2208200928020022056b20034f0d00200520036a22092005490d0520084101742205200920092005491b22054100480d052008450d0120022802182008200510152208450d020c030b200228021821080c030b2005101322080d010b200541011014000b2002200536021c20022008360218200241206a28020021050b200241206a220a200520036a360200200820056a2007200310f6021a200128026821082002200141f0006a280200220336022c2002412c6a200241186a101802400240024002400240200228021c2209200a28020022056b20034f0d00200520036a220a2005490d0520094101742205200a200a2005491b22054100480d052009450d0120022802182009200510152209450d020c030b200228021821090c030b2005101322090d010b200541011014000b2002200536021c20022009360218200241206a28020021050b200241186a41086a220a200520036a360200200920056a2008200310f6021a2001290308210002400240024002400240200228021c2205200a28020022036b41084f0d00200341086a22092003490d0520054101742203200920092003491b22034100480d052005450d0120022802182005200310152205450d020c030b200228021821050c030b2003101322050d010b200341011014000b2002200336021c20022005360218200241206a28020021030b200241186a41086a2209200341086a360200200520036a20003700002001290310210002400240024002400240200228021c2205200928020022036b41084f0d00200341086a22092003490d0520054101742203200920092003491b22034100480d052005450d0120022802182005200310152205450d020c030b200228021821050c030b2003101322050d010b200341011014000b2002200336021c20022005360218200241206a28020021030b200241186a41086a2209200341086a360200200520036a20003700000240024002400240024002400240024002400240024002400240024020012d00184101470d00200228021c20092802002203470d01200341016a22052003490d0e20034101742209200520052009491b22094100480d0e2003450d0320022802182003200910152205450d040c090b200228021c20092802002203470d01200341016a22052003490d0d20034101742209200520052009491b22094100480d0d2003450d0420022802182003200910152205450d050c060b200228021821050c080b200228021821050c050b2009101322050d050b200941011014000b2009101322050d010b200941011014000b2002200936021c20022005360218200241206a28020021030b200241186a41086a2209200341016a360200200520036a41003a0000200141206a290300210002400240024002400240200228021c2205200928020022036b41084f0d00200341086a22092003490d0a20054101742203200920092003491b22034100480d0a2005450d0120022802182005200310152205450d020c030b200228021821050c030b2003101322050d010b200341011014000b2002200336021c20022005360218200241206a28020021030b200241186a41086a2209200341086a360200200520036a2000370000200228021c220320092802002205470d020c030b2002200936021c20022005360218200241206a28020021030b200241206a2209200341016a360200200520036a41013a000002400240024002400240200228021c2203200928020022096b41204f0d00200941206a22052009490d0820034101742209200520052009491b22054100480d082003450d012002280218200320051015220a450d020c030b2002280218210a0c030b20051013220a0d010b200541011014000b2002200536021c2002200a360218200241206a2802002109200521030b200241186a41086a200941206a2205360200200a20096a220941086a200141216a290000370000200941106a200141296a290000370000200941186a200141316a2900003700002009200141196a29000037000020032005460d010b200228021821030c010b200341016a22052003490d0120034101742209200520052009491b22054100480d010240024002402003450d0020022802182003200510152203450d010c020b2005101322030d010b200541011014000b2002200536021c20022003360218200241206a28020021050b200241206a2209200541016a360200200320056a200141f4006a2d00003a00000240024002400240024002400240024002400240024020012903404201520d00200228021c20092802002203470d01200341016a22052003490d0b20034101742209200520052009491b22094100480d0b2003450d0320022802182003200910152205450d040c090b200228021c20092802002203470d01200341016a22052003490d0a20034101742209200520052009491b22094100480d0a2003450d0420022802182003200910152205450d050c060b200228021821050c080b200228021821050c050b2009101322050d050b200941011014000b2009101322050d010b200941011014000b2002200936021c20022005360218200241206a28020021030b200241206a200341016a360200200520036a41003a00000c050b2002200936021c20022005360218200241206a28020021030b200241186a41086a2209200341016a360200200520036a41013a0000200141c8006a2903002100024002400240200228021c2205200928020022036b41084f0d00200341086a22092003490d0320054101742203200920092003491b22034100480d032005450d0120022802182005200310152205450d020c040b200228021821050c040b2003101322050d020b200341011014000b1010000b2002200336021c20022005360218200241206a28020021030b200241186a41086a200341086a360200200520036a20003700000b200228021c2103200241086a411020022802182205200241206a280200100102402003450d00200510160b200410160240200141d4006a280200450d00200610160b0240200141e0006a280200450d00200710160b0240200141ec006a280200450d00200810160b200241306a24000b860301077f230041206b220224000240024002400240411210132203450d00200341106a41002f00a4ad413b0000200341086a410029009cad4137000020034100290094ad4137000020024292808080a00237021420022003360210200028020021042002200028020822033602002002200241106a101802400240024020022802142205200228021822066b20034f0d00200620036a22072006490d0420054101742208200720072008491b22084100480d042005450d0120022802102005200810152207450d020c050b200228021021070c050b2008101322070d030b200841011014000b411241011014000b1010000b2002200836021420022007360210200821050b200720066a2004200310f6021a200241106a41086a22084200370300200242003703102007200620036a200241106a1002200241086a2008290300370300200220022903103703002002200137031020024110200241106a4108100102402005450d00200710160b0240200041046a280200450d00200410160b200241206a24000b130020004107360204200041c0b0c1003602000bda0805077f017e027f017e027f230041d0016b22022400200241b0016a41186a22034200370300200241b0016a41106a22044200370300200241b0016a41086a22054200370300200242003703b001200241b0016a2001280200220620012802042207412020074120491b220810f6021a2001200720086b3602042001200620086a360200024002400240024002402007411f4d0d00200241d0006a41186a2003290300370300200241d0006a41106a2004290300370300200241d0006a41086a2005290300370300200220022903b0013703502002200110ae012002290300a7450d0120022903082109200241b0016a41186a22054200370300200241b0016a41106a220a4200370300200241b0016a41086a220b4200370300200242003703b001200241b0016a20012802002203200141046a220628020022074120200741204922041b220810f6021a2006200720086b22073602002001200320086a220336020020040d02200241f0006a41186a2005290300370300200241f0006a41106a200a290300370300200241f0006a41086a200b290300370300200220022903b001370370200241b0016a2007412020074120491b22086a41004100412020086b2008411f4b1b10f5021a200241b0016a2003200810f6021a2006200720086b3602002001200320086a3602002007411f4d0d0320024190016a41186a2203200241b0016a41186a220729030037030020024190016a41106a2204200241b0016a41106a220829030037030020024190016a41086a2205200241b0016a41086a2206290300370300200220022903b00137039001200241b0016a2001102420022802b0012201450d0420022902b401210c2007200241d0006a41186a2903003703002008200241d0006a41106a2903003703002006200241d0006a41086a290300370300200241306a41086a220a200241f0006a41086a290300370300200241306a41106a220b200241f0006a41106a290300370300200241306a41186a220d200241f0006a41186a290300370300200241106a41086a220e2005290300370300200241106a41106a22052004290300370300200241106a41186a22042003290300370300200220022903503703b0012002200229037037033020022002290390013703102000200c37020c2000200136020820002009370300200041146a20022903b0013702002000411c6a2006290300370200200041246a20082903003702002000412c6a2007290300370200200041346a20022903303702002000413c6a200a290300370200200041c4006a200b290300370200200041cc006a200d290300370200200041ec006a2004290300370200200041e4006a2005290300370200200041dc006a200e290300370200200041d4006a2002290310370200200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000f0b20004100360208200241d0016a24000ba60302017f027e0240024002400240412010132202450d0020022000290020370000200241186a200041386a290000370000200241106a200041306a290000370000200241086a200041286a2900003700002002412041c00010152202450d0120022000290040370020200241386a200041d8006a290000370000200241306a200041d0006a290000370000200241286a200041c8006a290000370000200041086a290300210320002903002104200241c00041800110152202450d0220022004370040200241c8006a200337000020022000290310370050200241d8006a200041186a2903003700000240024020002d00604101470d00200241e0006a41013a0000200241800141800210152202450d05200241f9006a200041f9006a290000370000200241f1006a200041f1006a290000370000200241e9006a200041e9006a2900003700002002200041e1006a29000037006141810121000c010b200241e0006a41003a000041e10021000b20012802002001280204200220001001200210160f0b412041011014000b41c00041011014000b41800141011014000b41800241011014000b8e1203047f027e097f230041206b22022400024002400240024002400240024002400240024002400240024041fa0110132203450d00200242fa0137020420022003360200200341003b00002002410236020802400240024002400240200128020022032903704202520d0020022802044102470d0120022802004102410410152201450d062002410436020420022001360200200241086a28020021040c020b20022802044102470d0220022802004102410410152201450d062002410436020420022001360200200241086a28020021040c030b41022104200228020021010b200120046a41013a0000200241086a2201200128020041016a3602000c070b41022104200228020021010b200120046a4181013a0000200241086a2201200128020041016a360200200341086a200210b20102400240024020022802042204200128020022016b41c0004f0d00200141c0006a22052001490d0920044101742201200520052001491b22014100480d092004450d0120022802002004200110152204450d020c060b200228020021040c060b2001101322040d040b200141011014000b41fa0141011014000b410441011014000b410441011014000b2002200136020420022004360200200241086a28020021010b200241086a2205200141c0006a360200200420016a220141086a200341346a290000370000200141106a2003413c6a290000370000200141186a200341c4006a290000370000200141206a200341cc006a290000370000200141286a200341d4006a290000370000200141306a200341dc006a290000370000200141386a200341e4006a2900003700002001200329002c3700002003200210b10102400240024002400240024002400240024002400240200341f0006a2903004201520d00200341f8006a2903002206420c882207420120074201561b22074200510d0620034180016a290300200780210720022802042204200241086a28020022016b41024f0d01200141026a22052001490d0c20044101742201200520052001491b22014100480d0c2004450d0420022802002004200110152204450d050c090b0240200228020420052802002201470d00200141016a22042001490d0c20014101742205200420042005491b22054100480d0c2001450d0220022802002001200510152204450d030c070b200228020021040c070b200228020021040c080b2005101322040d040b200541011014000b2001101322040d040b200141011014000b41d484c0001038000b2002200536020420022004360200200241086a28020021010b200241086a200141016a360200200420016a41003a00000c020b2002200136020420022004360200200241086a28020021010b200241086a200141026a360200200420016a2007a741047420067aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b20034188016a200210b001200241086a22032802002101200241003602182002420137031020022001417e6a36021c2002411c6a200241106a1018024002400240024002402003280200220141014d0d002002280218210520022802102108200228021421092003410036020020022802002103024002400240024002400240024002402001417e6a220a450d004102210b2005450d12200320082d00003a00004101210c200241086a2204200428020041016a36020020054101460d12200820056a210d200320082d00013a00012004200428020041016a3602004102210b200841026a21044100210e2005417e6a2203450d052002280204220b20016b20034f0d01200120036a220c2001490d0d200b4101742201200c200c2001491b220c4100480d0d200b450d022002280200200b200c101522010d030c0a0b0240024002402002280204220120054f0d0020014101742204200520052004491b22044100480d0f2001450d0120032001200410152203450d020c110b4100210b2005450d120c110b2004101322030d0f0b200441011014000b200228020021010c020b200c10132201450d070b2002200c360204200220013602000b200120056a200141026a200a10f7021a02402005200241086a220b280200220c460d002002280200200c6a210120052103034020034102460d03200120042d00003a0000200b200b28020041016a360200200141016a2101200441016a2104200c2003417f6a2203470d000b200d20046b2203450d030b20034100480d0820031013220c450d042005210b2003210e0b200d2004460d060c050b2005210b200a0d0b0c0c0b4101210c2005210b200d2004470d030c040b419480c0001038000b200341011014000b200c41011014000b200c20042d00003a00004101210f0240200441016a2203200d460d00200c41016a2101200520046b21040340200120032d00003a0000200141016a2101200d200341016a2203470d000b200820046a220f450d010b200c200f6a210d024002400240024020022802042203200b200a6a22016b200f4f0d002001200f6a22042001490d0520034101742201200420042001491b22014100480d052003450d01200228020020032001101522030d020c060b200228020021030c020b200110132203450d040b20022001360204200220033602000b2003200f200b6a22106a2003200b6a200a10f7021a02402010200241086a22042802002203460d00200228020020036a2101200f200b6a20036b2105200c21030340200d2003460d01200120032d00003a00002004200428020041016a360200200341016a2103200141016a21012005417f6a22050d000b0b2010210b0b0240200e450d00200c10160b200a450d060c050b1010000b200141011014000b2002200436020420022003360200200241086a280200210b0b2003200b6a220120082d00003a0000024020054101470d00200b41016a210b0c010b2005417f6a2104200841016a2103200141016a21010340200120032d00003a0000200141016a2101200341016a21032004417f6a22040d000b200b20056a210b0b200241086a200b3602004102210b200a450d010b0240200b200241086a22012802002203460d002002280200220420036a2004200b6a200a10f7021a0b20012003200a6a3602000b02402009450d00200810160b20002002290300370200200041086a200241086a280200360200200241206a24000bfc0609047f017e017f017e037f017e047f017e017f230041d0066b22022400200241e8026a200110ce01200241f8026a280200210320022802f402210420022802f002210520022903e8022106200241e0046a200241fc026a41e40010f6021a024002400240024002400240024002400240024002402005450d00200241106a200241e0046a41e40010f6021a200241086a2001101a2002280208450d08200228020c2207ad42f8017e2208422088a70d032008a72209417f4c0d032009450d0120091013220a450d042007450d020c050b20004100360208200241d0066a24000f0b4108210a20070d030b4100210f4200210c200a450d050c030b100f000b200941081014000b200241e8026a41f8006a210b4200210c4100210d410021094100210e2007210f0340200241e8026a200110d201200241e0056a200241e8026a41f00010f6021a200241e8026a41f0006a2903002108200241e0046a200b41800110f6021a20084203510d02200e41016a2110200241f8016a200241e0056a41f00010f6021a200241f8006a200241e0046a41800110f6021a0240200e200f470d00200d20102010200d491b220fad42f8017e2211422088a70d052011a722124100480d050240200e450d00200a200920121015220a0d010c070b20121013220a450d060b200a20096a200241f8016a41f00010f602220e41f0006a2008370300200e41f8006a200241f8006a41800110f6021a200c4280808080107c210c200d41026a210d200941f8016a21092010210e20102007490d000b200a450d020b200241e8026a200241106a41e40010f6021a200041106a20033602002000200436020c2000200536020820002006370300200041146a200241e8026a41e40010f6021a200041fc006a200c200fad84370200200041f8006a200a360200200241d0066a24000f0b0240200e450d00200a4188016a21100340201010d301201041f8016a2110200941887e6a22090d000b0b200f450d00200a10160b2000410036020802402003450d00200341286c2110200521090340024020092d0000220e450d000240200e4101470d00200941086a280200450d01200941046a2802001016200941286a2109201041586a22100d020c030b200941106a280200450d002009410c6a28020010160b200941286a2109201041586a22100d000b0b02402004450d00200510160b200241d0066a24000f0b1010000b201241081014000bef1004047f017e087f037e230041e0046b22022400200241106a2001101a0240024002400240024002400240024002402002280210450d00200241003a00980220024198026a2001280200220320012802042204410047220510f6021a20042005490d04200141046a200420056b3602002001200320056a3602002004450d0120022d009802220441ff00714101470d022004411874411875417f4c0d03420221060c080b20004203370370200241e0046a24000f0b20004203370370200241e0046a24000f0b20004203370370200241e0046a24000f0b200241a8016a200110ab0102400240024020022d00a8014102460d00200241f8036a41206a200241a8016a41206a280200360200200241f8036a41186a200241a8016a41186a290300370300200241f8036a41106a200241a8016a41106a290300370300200241f8036a41086a200241a8016a41086a290300370300200220022903a8013703f80320024198026a41386a2207420037030020024198026a41306a2208420037030020024198026a41286a2209420037030020024198026a41206a220a420037030020024198026a41186a220b420037030020024198026a41106a220c420037030020024198026a41086a220d4200370300200242003703980220024198026a20012802002203200141046a220e280200220441c000200441c000491b220510f6021a200e200420056b3602002001200320056a3602002004413f4d0d00200241a0046a41386a2007290300370300200241a0046a41306a2008290300370300200241a0046a41286a2009290300370300200241a0046a41206a200a290300370300200241a0046a41186a200b290300370300200241a0046a41106a200c290300370300200241a0046a41086a200d29030037030020022002290398023703a0042002200110ae012002280200450d002002290308210f200141046a220e2802002104200241003a00980220024198026a200128020022072004410047220510f6021a20042005490d04200e200420056b22033602002001200720056a22053602002004450d002002310098022210500d01200241003a00980220024198026a20052003410047220410f6021a20032004490d05200141046a200320046b3602002001200520046a3602002003450d0042022010420f838622114204540d00420121062002310098024208862010844204882011420c882210420120104201561b7e22102011540d020b420221060c050b420021060b20024180016a41206a200241f8036a41206a28020036020020024180016a41186a200241f8036a41186a29030037030020024180016a41106a200241f8036a41106a29030037030020024180016a41086a200241f8036a41086a29030037030020024188036a41086a200241a0046a41086a29030037030020024188036a41106a200241a0046a41106a29030037030020024188036a41186a200241a0046a41186a29030037030020024188036a41206a200241a0046a41206a29030037030020024188036a41286a200241a0046a41286a29030037030020024188036a41306a200241a0046a41306a29030037030020024188036a41386a200241a0046a41386a290300370300200220022903f80337038001200220022903a004370388030c030b20052004101c000b20052004101c000b20042003101c000b200241a8016a41206a220420024180016a41206a280200360200200241a8016a41186a220520024180016a41186a290300370300200241a8016a41106a220320024180016a41106a290300370300200241a8016a41086a220e20024180016a41086a29030037030020024198026a41086a220720024188036a41086a29030037030020024198026a41106a220820024188036a41106a29030037030020024198026a41186a220920024188036a41186a29030037030020024198026a41206a220a20024188036a41206a29030037030020024198026a41286a220b20024188036a41286a29030037030020024198026a41306a220c20024188036a41306a29030037030020024198026a41386a220d20024188036a41386a29030037030020022002290380013703a801200220022903880337039802024020064202520d0020004203370370200241e0046a24000f0b200241d8006a41206a2004280200360200200241d8006a41186a2005290300370300200241d8006a41106a2003290300370300200241d8006a41086a200e290300370300200241186a41086a2007290300370300200241186a41106a2008290300370300200241186a41186a2009290300370300200241186a41206a200a290300370300200241186a41286a200b290300370300200241186a41306a200c290300370300200241186a41386a200d290300370300200220022903a80137035820022002290398023703180b20024198026a200110aa01200228029802210120024188036a20024198026a41047241ec0010f6021a024020014114470d0020004203370370200241e0046a24000f0b200241a8016a20024188036a41ec0010f6021a2000200f37030020002002290358370308200041106a200241d8006a41086a290300370300200041186a200241d8006a41106a290300370300200041206a200241d8006a41186a290300370300200041286a200241d8006a41206a2802003602002000200229031837022c200041346a200241186a41086a2903003702002000413c6a200241186a41106a290300370200200041c4006a200241186a41186a290300370200200041cc006a200241186a41206a290300370200200041d4006a200241186a41286a290300370200200041dc006a200241c8006a290300370200200041e4006a200241d0006a29030037020020004188016a200136020020004180016a201037030020002011370378200020063703702000418c016a200241a8016a41ec0010f6021a200241e0046a24000bd00a01027f02402000280200417f6a220141104b0d000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e11001a1a1a01021a0304050607081a1a090a000b200041086a280200220141064b0d10024020010e071a001a121a13141a0b200041106a280200450d192000410c6a28020010160f0b200041086a2d00002201410e4b0d1720014106470d18200041106a280200450d182000410c6a28020010160f0b20002802044101470d17200041086a220028020010d301200028020010160f0b200041086a280200450d16200028020410160f0b200041086a2d00004101470d150240200041106a280200450d002000410c6a28020010160b02402000411c6a280200450d00200041186a28020010160b200041286a280200450d15200041246a28020010160f0b200041086a2d00004103470d14200041d0006a280200450d14200041cc006a28020010160f0b200041086a2d00004101470d13200041106a280200450d132000410c6a28020010160f0b200041086a280200450d12200028020410160f0b200041086a2d0000417f6a220141054b0d11024020010e06000405060708000b02402000410c6a2802002201450d00200041106a280200450d00200110160b0240200041186a2802002201450d002000411c6a280200450d00200110160b200041246a2802002201450d11200041286a280200450d11200110160f0b200041086a28020022014102460d0120014101470d10200041106a280200450d102000410c6a28020010160f0b200041086a2d0000220141064b0d0a20010e070f0f0f0f0b0c0d0f0b200041106a280200450d0e2000410c6a28020010160f0b200041106a280200450d0d2000410c6a28020010160f0b200041106a280200450d0c2000410c6a28020010160f0b200041106a280200450d0b2000410c6a28020010160f0b02402000410c6a2802002201450d00200041106a280200450d00200110160b0240200041186a2802002201450d002000411c6a280200450d00200110160b200041246a2802002201450d0a200041286a280200450d0a200110160f0b02402000412c6a2802002201450d00200041306a280200450d00200110160b0240200041386a2802002201450d002000413c6a280200450d00200110160b200041c4006a2802002201450d09200041c8006a280200450d09200110160f0b0240200041146a2802002202450d002000410c6a28020021012002410c6c210203400240200141046a280200450d00200128020010160b2001410c6a2101200241746a22020d000b0b200041106a280200450d082000410c6a28020010160f0b200041106a280200450d072000410c6a28020010160f0b200041106a280200450d062000410c6a28020010160f0b0240200041146a2802002202450d002000410c6a2802002101200241186c210203400240200141046a280200450d00200128020010160b0240200141106a280200450d002001410c6a28020010160b200141186a2101200241686a22020d000b0b200041106a280200450d052000410c6a28020010160f0b200041106a280200450d042000410c6a28020010160f0b0240200041c0006a2802002201450d00200041c4006a280200450d00200110160b200041cc006a2802002201450d03200041d0006a280200450d03200110160f0b0240200041c0006a2802002201450d00200041c4006a280200450d00200110160b200041cc006a2802002201450d02200041d0006a280200450d02200110160f0b200041106a280200450d012000410c6a28020010160f0b200041106a280200450d002000410c6a28020010160f0b0bc60603037f047e037f23002202210320024180026b416071220224002001411c6a22042902002105200420022903b801370200200141146a22042902002106200420022903b0013702002001410c6a22042902002107200420022903a801370200200241003a00a00120012902042108200120022903a00137020420022005370358200220063703502002200737034820022008370340200141246a2d00002109200241a0016a41176a22042002290058370000200241a0016a41106a220a2002290051370300200241a0016a41086a220b2002290049370300200220022900413703a00102400240024002402008a741ff01714101470d00200241106a41176a2004290000370000200241106a41106a200a290300370300200241106a41086a200b290300370300200220022903a001370310411210132204450d01200441106a41002f00c3cc413b0000200441086a41002900bbcc41370000200441002900b3cc4137000020044112413210152204450d0220042002290310370012200420093a0031200441296a200241106a41176a220a290000370000200441226a200241106a41106a2903003700002004411a6a200241106a41086a290300370000200241a0016a41086a220b4200370300200242003703a00120044132200241a0016a1002200241c0006a41086a200b290300370300200220022903a001370340200241a0016a200241c0006a10d50120022d00ac014102460d03200241c0006a200241a0016a41d00010f6021a200241306a41086a220b200241c0006a41086a28020036020020022002290340370330200241a0016a200241cc006a41c20010f6021a200141046a220141206a200241e1016a2d00003a0000200141186a200241d9016a290000370000200141106a200241d1016a290000370000200141086a200241a0016a41296a290000370000200120022900c10137000020002002290310370000200041086a200241106a41086a290300370000200041106a200241106a41106a290300370000200041176a200a290000370000200020093a001f200041286a200b2802003602002000200229033037022020041016200324000f0b20004100360220200324000f0b411241011014000b413241011014000b41b3bec10041d7001029000bea0101047f230041b0016b220224000240024002402001411041acf1c300410041001000417f460d002002421037020c20022001360208200241d8006a200241086a101120022802582201450d02200241e0006a2802002103200228025c2104200241e8006a200241086a10f30120022d006822054102460d01200241156a200241e8006a41017241c10010f6021a200020053a000c2000200336020820002004360204200020013602002000410d6a200241156a41c30010f6021a200241b0016a24000f0b200041023a000c200241b0016a24000f0b2004450d00200110160b41b6e7c20041331029000bff0603037f047e037f23002202210320024180026b416071220224002001411c6a22042902002105200420022903b801370200200141146a22042902002106200420022903b0013702002001410c6a22042902002107200420022903a801370200200241003a00a00120012902042108200120022903a00137020420022005370338200220063703302002200737032820022008370320200141246a2d00002109200241a0016a41176a22042002290038370000200241a0016a41106a220a2002290031370300200241a0016a41086a220b2002290029370300200220022900213703a001024002400240024002402008a741ff01714101470d00200241176a2004290000370000200241106a200a290300370300200241086a200b290300370300200220022903a001370300411210132204450d01200441106a41002f00d5cc413b0000200441086a41002900cdcc41370000200441002900c5cc4137000020044112413210152204450d0220042002290300370012200420093a0031200441296a200241176a290000370000200441226a200241106a2903003700002004411a6a200241086a290300370000200241a0016a41086a220a4200370300200242003703a00120044132200241a0016a100220024180016a41086a200a290300370300200220022903a0013703800120024180016a411041acf1c300410041001000417f460d032002421037029401200220024180016a36029001200241a0016a20024190016a10d70120022d00b8014102460d04200241a0016a41086a290300210820022802b001210a20022903a0012105200241206a200241b9016a41c70010f6021a200241a0016a200241206a41c10010f6021a200241206a200241a0016a41c10010f6021a200141246a200241e0006a2d00003a00002001411c6a200241206a41386a290000370000200141146a200241206a41306a2900003700002001410c6a200241206a41286a2900003700002001200229004037000420002002290300370008200041106a200241086a290300370000200041186a200241106a2903003700002000411f6a200241176a290000370000200041306a2008370300200041286a2005370300200041386a200a360200200020093a00272000420137030020041016200324000f0b20004200370300200324000f0b411241011014000b413241011014000b41b3bec10041d7001029000b41b6e7c20041331029000bf00a03027f027e077f230041e0016b22022400200241186a20011012024002402002280218450d00200228021c21032002200110a5012002290300a7450d00200241106a29030021042002290308210541002106200241003a00c00120012802002001280204200241c0016a410120012802081000210720012001280208200741016a41014b22076a22083602082007450d01024020022d00c0012207450d0020074101470d02200241c0016a41186a22094200370300200241c0016a41106a220a4200370300200241c0016a41086a220b4200370300200242003703c001200141086a220641002001280200200141046a280200200241c0016a41202008100022072007417f461b2207412020074120491b20062802006a22083602002007411f4d0d02200241a0016a41186a22072009290300370300200241a0016a41106a2206200a290300370300200241a0016a41086a2209200b290300370300200220022903c0013703a00120024180016a41186a220a200729030037030020024180016a41106a2207200629030037030020024180016a41086a22062009290300370300200220022903a00137038001200241e0006a41186a200a290300370300200241e0006a41106a2007290300370300200241e0006a41086a20062903003703002002200229038001370360410121060b200241c0006a41186a200241e0006a41186a290300370300200241c0006a41106a200241e0006a41106a290300370300200241c0006a41086a200241e0006a41086a2903003703002002200229036037034041002109200241003a00c0012001280200200141046a280200200241c0016a4101200810002107200141086a22082008280200200741016a41014b22076a22083602002007450d01024020022d00c0012207450d0020074101470d02200241c0016a41186a22094200370300200241c0016a41106a220a4200370300200241c0016a41086a220b4200370300200242003703c001200141086a220741002001280200200141046a280200200241c0016a41202008100022012001417f461b2201412020014120491b20072802006a3602002001411f4d0d02200241a0016a41186a22012009290300370300200241a0016a41106a2207200a290300370300200241a0016a41086a2208200b290300370300200220022903c0013703a00120024180016a41186a2209200129030037030020024180016a41106a2201200729030037030020024180016a41086a22072008290300370300200220022903a00137038001200241e0006a41186a2009290300370300200241e0006a41106a2001290300370300200241e0006a41086a20072903003703002002200229038001370360410121090b200241c0016a41186a2201200241e0006a41186a290300370300200241c0016a41106a2207200241e0006a41106a290300370300200241c0016a41086a2208200241e0006a41086a290300370300200220022903603703c001200241206a41186a220a200241c0006a41186a290300370300200241206a41106a220b200241c0006a41106a290300370300200241206a41086a220c200241c0006a41086a290300370300200220022903403703202000200437030820002005370300200020063a001820002003360210200041396a20093a000020002002290320370019200041216a200c290300370000200041296a200b290300370000200041316a200a2903003700002000413a6a20022903c001370100200041c2006a2008290300370100200041ca006a2007290300370100200041d2006a2001290300370100200041de006a200241a4016a2f01003b0100200041da006a20022801a001360100200241e0016a24000f0b200041023a0018200241e0016a24000f0b200041023a0018200241e0016a24000be20504017f037e057f017e230041b0016b22032400200241106a290300210420024188016a290300210520022903082106200228020021072003200241186a41f00010f60221022001280200210820024190016a41186a2209200241e8006a29030037030020024190016a41106a220a200241e0006a29030037030020024190016a41086a220b200241d8006a290300370300200220022903503703900102400240024041d00010132201450d00200142003703002001410036022420012007360220200141003a0048200141186a4200370300200141106a4200370300200141086a42003703002001200241d0006a2203290300370328200141306a200341086a290300370300200141386a200341106a290300370300200141c0006a200341186a290300370300200241f0006a41086a200b290300370300200241f0006a41106a200a290300370300200241f0006a41186a200929030037030020022002290390013703700240024002400240200841046a28020020082802082203470d00200341016a22072003490d0320034101742209200720072009491b2209ad42d0007e220c422088a70d03200ca7220a4100480d032003450d012008280200200341d0006c200a10152207450d020c050b200828020021070c050b200a101322070d030b200a41081014000b1010000b41d00041081014000b20082007360200200841046a2009360200200841086a28020021030b2007200341d0006c6a220342003703102003420037030820032006427f2004428080808010541b370300200320013602202003200229037037022c200341186a4200370300200341246a428180808010370200200341c4006a200241f0006a41186a2903003702002003413c6a200241f0006a41106a290300370200200341346a200241f0006a41086a290300370200200841086a2201200128020041016a3602002000200437030820002006370300200041106a200241f00010f6021a2000200537038001200241b0016a24000b7d01017f230041c0006b220124002001412e36020c2001418780c300360208200120003602142001413c6a41083602002001412c6a4102360200200141023602342001420237021c2001418cbfc1003602182001200141146a3602382001200141086a3602302001200141306a360228200141186a419cbfc1001046000bb80201037f23004180016b220224000240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103d210020024180016a240020000f0b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d01200141dcf4c3004102200220006a4180016a410020006b103e210020024180016a240020000f0b2004418001101c000b2004418001101c000b810101017f230041c0006b220424002004200136020c2004200036020820042003360214200420023602102004413c6a41093602002004412c6a4102360200200441023602342004420237021c2004418cbfc1003602182004200441106a3602382004200441086a3602302004200441306a360228200441186a419cbfc1001046000bde0104017f017e017f027e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1002200341086a2005290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d00200342003703182003420037031020034110200341106a4110410010002201417f460d022001410f4d0d02200341186a290300210620032903102107200341101003420121040c010b0b2000200437030020002007370308200041106a2006370300200341206a24000f0b41b6e7c20041331029000bbd0104017f017e017f017e230041206b2203240042002104200341106a41086a220542003703002003420037031020012002200341106a1002200341086a2005290300370300200320032903103703000240024002402003411041acf1c300410041001000417f460d002003420037031020034110200341106a41084100100041016a41084d0d0220032903102106200341101003420121040c010b0b2000200437030020002006370308200341206a24000f0b41b6e7c20041331029000b1300200041023602042000418cc1c1003602000b130020004104360204200041c7c4c1003602000b130020004101360204200041ccc4c1003602000b130020004101360204200041f0c5c1003602000b1300200041093602042000419ec8c1003602000bfa0801067f230041106b220224002002410036020820024201370300200041106a200210182002200036020c2002410c6a200210b30120022802042103200228020821040240024002400240024002400240024002400240024002400240024002400240024020002d00184101470d0020032004470d01200441016a22032004490d0c20044101742205200320032005491b22034100480d0c2004450d0320022802002004200310152205450d040c090b20032004470d01200441016a22032004490d0b20044101742205200320032005491b22034100480d0b2004450d0420022802002004200310152205450d050c060b200228020021050c080b200228020021050c050b2003101322050d050b200341011014000b2003101322050d010b200341011014000b20022003360204200220053602000b200241086a200441016a2206360200200520046a41003a00000c020b20022003360204200220053602000b200241086a2206200441016a360200200520046a41013a00000240024002400240024020022802042203200628020022046b41204f0d00200441206a22062004490d0620034101742207200620062007491b22074100480d062003450d0120052003200710152205450d020c030b200441206a21060c030b2007101322050d010b200741011014000b2002200736020420022005360200200721030b200241086a2006360200200520046a220441086a200041216a290000370000200441106a200041296a290000370000200441186a200041316a2900003700002004200041196a2900003700000b024002400240024002400240024002400240200041396a2d00004101470d0020032006470d08200341016a22042003490d0920034101742207200420042007491b22044100480d092003450d0120052003200410152205450d020c070b20032006470d05200341016a22002003490d0820034101742204200020002004491b22004100480d082003450d0220052003200010152205450d030c040b2004101322050d050b200441011014000b2000101322050d010b200041011014000b20022000360204200220053602000b200241086a2200200641016a360200200520066a41003a0000200228020421042001280200200128020420022802002203200028020010012004450d060c050b20022004360204200220053602000b200241086a2203200641016a360200200520066a41013a000002400240024020022802042205200328020022046b41204f0d00200441206a22032004490d0320054101742206200320032006491b22064100480d032005450d0120022802002005200610152203450d020c040b200228020021030c040b2006101322030d020b200641011014000b1010000b2002200636020420022003360200200621050b200241086a200441206a2206360200200320046a220441086a200041c2006a290000370000200441106a200041ca006a290000370000200441186a200041d2006a29000037000020042000413a6a290000370000200128020020012802042003200610012005450d010b200310160b200241106a24000b860100024002400240024002400240200041ff017122004101460d0020004102470d01410110132200450d03200041023a00000c020b410110132200450d03200041013a00000c010b410110132200450d03200041003a00000b20012802002001280204200041011001200010160f0b410141011014000b410141011014000b410141011014000bb20201027f230041106b2202240020024100360208200242013703000240412010132203450d002003200029002c370000200341086a200041346a290000370000200341106a2000413c6a290000370000200341186a200041c4006a290000370000200242a08080808004370204200220033602002002200036020c2002410c6a200210b3012002200041106a36020c2002410c6a200210b301200028022021032002200041286a280200220036020c2002410c6a2002101802402000450d002003200041186c6a210003402002200336020c2002410c6a200210b301200341106a200210b1012000200341186a2203470d000b0b200228020421032001280200200128020420022802002200200241086a280200100102402003450d00200010160b200241106a24000f0b412041011014000b13002000410f360204200041e8ccc1003602000b1300200041073602042000418fe9c1003602000b930c08057f047e017f017e057f027e027f017e23004190016b22022400200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a22054200370300200242003703702001410020012802002001280204200241f0006a41202001280208100022062006417f461b2206412020064120491b20012802086a3602080240024002400240024002400240024002400240024002402006411f4d0d00200241d0006a41186a2003290300370300200241d0006a41106a2004290300370300200241d0006a41086a200529030037030020022002290370370350200241386a200110a5012002290338a7450d01200241386a41106a290300210720022903402108200241206a200110a5012002290320a7450d02200241306a29030021092002290328210a200241186a200110122002280218450d09200228021c220bad42187e220c422088a70d05200ca72206417f4c0d052006450d0320061013220d450d06200b450d040c070b2000410036022020024190016a24000f0b2000410036022020024190016a24000f0b2000410036022020024190016a24000f0b4108210d200b0d030b410021114200210c200d450d040c030b100f000b200641081014000b200241f0006a410172210e200241106a210f200141046a2110200141086a210641002103200b2111024003402002200110a5012002290300a7450d01200f290300211220022903082113200241003a007020012802002010280200200241f0006a410120062802001000210420062006280200200441016a41014b22056a22043602002005450d01024002400240024020022d0070221441037122054102460d00024020054101460d0020050d022014410276ad210c200341016a210420112003460d030c040b200241003b0170200220143a007020012802002010280200200e410120041000210420062006280200200441016a220441014b6a36020020044102490d0520022f0170410276ad210c200341016a210420112003460d020c030b20024100360270200220143a00702006410020012802002010280200200e41032004100022042004417f461b22044103200441034922041b20062802006a36020020040d042002280270410276ad210c200341016a210420112003460d010c020b02400240201441027622054104460d0020050d0120102802002105200241003602702006410020012802002005200241f0006a41042004100022042004417f461b22044104200441044922041b20062802006a36020020040d052002350270210c200341016a210420112003460d020c030b200242003703702006410020012802002010280200200241f0006a41082004100022042004417f461b22044108200441084922041b20062802006a36020020040d042002290370210c200341016a210420112003460d010c020b200541046a221541084b0d03410021054200210c0340200241003a007020012802002010280200200241f0006a410120041000210420062006280200200441016a41014b22146a22043602002014450d0420023100702005410374413871ad86200c84210c200541016a220541ff01712015490d000b200341016a210420112003470d010b20034101742205200420042005491b2211ad42187e2216422088a70d052016a722054100480d0502402003450d00200d200341186c20051015220d0d010c070b20051013220d450d060b200d200341186c6a22032012370308200320133703002003200c370310200421032004200b490d000b2004ad422086210c200d0d010c020b2011450d01200d10160c010b200241f0006a41186a2201200241d0006a41186a290300370300200241f0006a41106a2206200241d0006a41106a290300370300200241f0006a41086a2203200241d0006a41086a29030037030020022002290350370370200041186a20093703002000200a37031020002007370308200020083703002000200c2011ad843702242000200d3602202000412c6a2002290370370200200041346a20032903003702002000413c6a2006290300370200200041c4006a200129030037020020024190016a24000f0b2000410036022020024190016a24000f0b1010000b200541081014000bd10301047f230041d0006b2202240002400240410e10132203450d00200341066a41002900abcc41370000200341002900a5cc413700002003410e412e10152203450d012003200129000037000e200341266a200141186a2900003700002003411e6a200141106a290000370000200341166a200141086a290000370000200241306a41086a22014200370300200242003703302003412e200241306a1002200241206a41086a200129030037030020022002290330370320024002400240200241206a411041acf1c300410041001000417f460d00200241306a41186a4200370300200241306a41106a42003703002001420037030020024200370330200241206a4110200241306a4120410010002201417f460d022001411f4d0d02200241186a2201200241306a41186a290300370300200241106a2204200241306a41106a290300370300200241086a2205200241306a41086a29030037030020022002290330370300200041013a000020002002290300370001200041096a2005290300370000200041116a2004290300370000200041196a20012903003700000c010b200041003a00000b20031016200241d0006a24000f0b41b6e7c20041331029000b410e41011014000b412e41011014000b13002000411836020420004188ecc1003602000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021018200041086a200228020836020020002002290300370200200241106a24000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241003600000f0b410441011014000b3201017f0240410810132202450d0020004288808080800137020420002002360200200242003700000f0b410841011014000bf30301087f230041c0006b22022400200241186a4200370300200241106a22034200370300200241086a4200370300200241286a22044100360200200242003703002002420837032020024100360238200242013703302002200236023c2002413c6a200241306a10b3012002200336023c2002413c6a200241306a10b3012002280220210320022004280200220436023c2002413c6a200241306a10180240024002402004450d00200441306c2105200241306a41086a21060340024002400240024020022802342207200628020022046b41204f0d00200441206a22082004490d0620074101742209200820082009491b22094100480d062007450d01200228023020072009101522070d020c070b200441206a2108200228023021070c020b200910132207450d050b20022009360234200220073602300b20062008360200200720046a220441086a200341186a290000370000200441106a200341206a290000370000200441186a200341286a2900003700002004200341106a2900003700002002200336023c2002413c6a200241306a10b301200341306a2103200541506a22050d000b0b20002002290330370200200041086a200241306a41086a2802003602000240200241246a280200450d00200241206a28020010160b200241c0006a24000f0b1010000b200941011014000b7101017f230041306b220224002002420037031020024200370308200241033602182002410036022820024201370320200241186a200241206a10182002200241086a36022c2002412c6a200241206a10b301200041086a200228022836020020002002290320370200200241306a24000b3301017f0240410810132202450d0020004288808080800137020420002002360200200242e8073700000f0b410841011014000b3401017f0240410410132202450d0020004284808080c00037020420002002360200200241c0843d3600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241043600000f0b410441011014000bd10901087f230041a0016b2202240041002103200241003a0080012001280200200128020420024180016a410120012802081000210420012001280208200441016a41014b22046a2205360208024002402004450d00024020022d0080012204450d0020044101470d0120024180016a41186a2206420037030020024180016a41106a2207420037030020024180016a41086a220842003703002002420037038001200141086a220341002001280200200141046a28020020024180016a41202005100022042004417f461b2204412020044120491b20032802006a22053602002004411f4d0d01200241e0006a41186a22042006290300370300200241e0006a41106a22032007290300370300200241e0006a41086a220620082903003703002002200229038001370360200241c0006a41186a22072004290300370300200241c0006a41106a22042003290300370300200241c0006a41086a2203200629030037030020022002290360370340200241206a41186a2007290300370300200241206a41106a2004290300370300200241206a41086a200329030037030020022002290340370320410121030b200241186a200241206a41186a290300370300200241106a200241206a41106a290300370300200241086a200241206a41086a2903003703002002200229032037030041002106200241003a0080012001280200200141046a28020020024180016a4101200510002104200141086a22052005280200200441016a41014b22046a22053602002004450d01024020022d0080012204450d0020044101470d0220024180016a41186a2206420037030020024180016a41106a2207420037030020024180016a41086a220842003703002002420037038001200141086a220441002001280200200141046a28020020024180016a41202005100022012001417f461b2201412020014120491b20042802006a3602002001411f4d0d02200241e0006a41186a22012006290300370300200241e0006a41106a22042007290300370300200241e0006a41086a220520082903003703002002200229038001370360200241c0006a41186a22062001290300370300200241c0006a41106a22012004290300370300200241c0006a41086a2204200529030037030020022002290360370340200241206a41186a2006290300370300200241206a41106a2001290300370300200241206a41086a200429030037030020022002290340370320410121060b200241e0006a41186a2201200241206a41186a290300370300200241e0006a41106a2204200241206a41106a290300370300200241e0006a41086a2205200241206a41086a2903003703002002200229032037036020024180016a41186a2207200241186a29030037030020024180016a41106a2208200241106a29030037030020024180016a41086a2209200241086a2903003703002002200229030037038001200020033a0000200041216a20063a00002000200229038001370001200041096a2009290300370000200041116a2008290300370000200041196a2007290300370000200041226a20022903603700002000412a6a2005290300370000200041326a20042903003700002000413a6a2001290300370000200241a0016a24000f0b200041023a0000200241a0016a24000f0b200041023a0000200241a0016a24000bf90801037f200141046a2802002102200141086a280200210302400240024002400240024002400240024002400240024002400240024020002d00004101470d0020022003470d01200341016a22022003490d0c20034101742204200220022004491b22044100480d0c2003450d0320012802002003200410152202450d040c090b20022003470d01200341016a22022003490d0b20034101742204200220022004491b22044100480d0b2003450d0420012802002003200410152202450d050c060b200128020021020c080b200128020021020c050b2004101322020d050b200441011014000b2004101322020d010b200441011014000b20012002360200200141046a2004360200200141086a28020021030b200141086a200341016a360200200220036a41003a00000c020b20012002360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200220036a41013a000002400240024002400240200141046a2802002202200428020022036b41204f0d00200341206a22042003490d0620024101742203200420042003491b22034100480d062002450d0120012802002002200310152202450d020c030b200128020021020c030b2003101322020d010b200341011014000b20012002360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200220036a220341186a200041196a290000370000200341106a200041116a290000370000200341086a200041096a290000370000200320002900013700000b200141046a2802002102200141086a28020021030240024002400240024002400240024002400240024020002d00214101470d0020022003470d01200341016a22022003490d0b20034101742204200220022004491b22044100480d0b2003450d0320012802002003200410152202450d040c090b20022003470d01200341016a22002003490d0a20034101742202200020002002491b22024100480d0a2003450d0420012802002003200210152200450d050c060b200128020021020c080b200128020021000c050b2004101322020d050b200441011014000b2002101322000d010b200241011014000b20012000360200200141046a2002360200200141086a28020021030b200141086a200341016a360200200020036a41003a00000f0b20012002360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200220036a41013a0000024002400240200141046a2802002202200428020022036b41204f0d00200341206a22042003490d0320024101742203200420042003491b22034100480d032002450d0120012802002002200310152202450d020c040b200128020021020c040b2003101322020d020b200341011014000b1010000b20012002360200200141046a2003360200200141086a28020021030b200141086a200341206a360200200220036a220141186a2000413a6a290000370000200141106a200041326a290000370000200141086a2000412a6a2900003700002001200041226a2900003700000be698012d017f027e027f037e0d7f017e027f017e037f017e027f027e1b7f027e027f037e1c7f027e027f027e1d7f027e057f017e087f037e0e7f047e017f017e187f017e027f027e037f027e0a7f017e087f017e047f027e0b7f027e027f23004190086b2202240002400240024002400240024002400240024002402001450d00200241a8036a41086a22014200370300200242003703a803419095c3004117200241a8036a1002200241b8066a41086a2001290300370300200220022903a8033703b8060240024002400240024002400240200241b8066a411041acf1c300410041001000417f460d00200242003703b005200241b8066a4110200241b0056a41084100100041016a41084d0d0220022903b00521030c010b420321030b200241a8036a41086a22014200370300200242003703a80341bbc9c0004115200241a8036a1002200241b8066a41086a2001290300370300200220022903a8033703b80602400240200241b8066a411041acf1c300410041001000417f460d00200242003703b005200241b8066a4110200241b0056a41084100100041016a41084d0d034200210420022903b00520037e22034200510d010c050b4200210442e80720037e22034200520d040b200241a8036a41086a22012004370300200220043703a80341fc94c200411c200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002201417f460d032001410f4d0d03200241c0066a290300210320022903b80621040c050b420021030c040b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b2000200320032000541b22002004510d0442002104200241a8036a41086a22014200370300200242003703a80341fc94c200411c200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b0042003421086200080210002400240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002201417f460d052001410f4d0d05200241c0066a290300210320022903b80621040c010b420021030b200241e0026a200420032000420010fa0220022903e002421088200241e8026a2903002200423086842104200042108821030b200241a8036a41086a22014200370300200242003703a80341b095c2004118200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002206417f460d032006410f4d0d03200241c0066a290300210720022903b80621000c010b42002100420021070b20014200370300200242003703a80341b095c2004118200241a8036a100220052001290300370300200220022903a8033703b0042002200020047c22043703b8062002200720037c2004200054ad7c3703c006200241b0046a4110200241b8066a411010010b200241a8036a41086a22014200370300200242003703a80341a7c9c0004114200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004420021040240024002400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0120022903b80621040b20014200370300200242003703a80341a4eac1004115200241a8036a100220052001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200241b0046a411010030c070b200241a8036a41086a22014200370300200242003703a80341c895c200411b200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004420021000240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0220022903b80621000b20014200370300200242003703a80341e395c2004116200241a8036a100220052001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0420022903b80622034200520d0141fc95c2001038000b42e80721030b200420007d2003824200520d070c060b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b419895c2001038000b200241c8026a41b095c200411810dc01024002400240024020022903d0022208200241c8026a41106a290300220984500d0020022802c802450d01200241a8036a41086a22014200370300200242003703a803419496c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b00402400240024002400240200241b0046a411041acf1c300410041001000417f460d00200242103702b4052002200241b0046a3602b005200241b8066a200241b0056a101120022802b806220a450d0220022802bc06210b200241c0066a28020041057422010d010c040b4101210a4100210b41004105742201450d020b200a20016a210c4120210d4112210e4110210f410021104108211141322112412a21134118211441222115411a21164200211741acf1c3002118417f21194201211a200241e0066a211b4130211c200241dc066a211d4210211e200a211f410021200c050b41b6e7c20041331029000b410021010c040b410021010c030b410121010c020b410121010c010b410321010b03400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e0400010210100b200241d0066a2009370300200241b8066a41106a2008370300200241b8066a41086a41003a0000200241043a00b806200241b8066a105a200241a8036a41086a22014200370300200242003703a80341aa96c2004111200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200242003703c006200242003703b806200241b0046a4110200241b8066a4110410010002201417f460d0e2001410f4d0d0e0b200b450d10200a1016410121010c3a0b200241a8036a41086a22014200370300200242003703a80341bb96c2004112200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0320022903b80642017c21040c010b420121040b200241a8036a41086a22014200370300200242003703a80341bb96c2004112200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004200220043703b806200241b0046a4110200241b8066a4108100120014200370300200242003703a80341cd96c200411a200241a8036a100220052001290300370300200220022903a8033703b0040240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d03200220022903b80622043703b005200241a8036a41086a22014200370300200242003703a80341e395c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d06200420022903b806520d010c020b200442e807510d010b200241a8036a41086a22014200370300200242003703a80341e395c2004116200241a8036a1002200241b0046a41086a22052001290300370300200220022903a8033703b004200220043703b806200241b0046a4110200241b8066a4108100120014200370300200242003703a80341a7c9c0004114200241a8036a100220052001290300370300200220022903a8033703b004420021040240200241b0046a411041acf1c300410041001000417f460d00200242003703b806200241b0046a4110200241b8066a41084100100041016a41084d0d0820022903b80621040b20014200370300200242003703a80341c895c200411b200241a8036a100220052001290300370300200220022903a8033703b004200220043703b806200241b0046a4110200241b8066a410810010b200241a8036a41086a22014200370300200242003703a80341e796c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004410021230240200241b0046a411041acf1c300410041001000417f460d00200241003602b806200241b0046a4110200241b8066a41044100100041016a41044d0d0520022802b80621230b200241a8036a41086a22014200370300200242003703a80341fd96c200411d200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004024002400240200241b0046a411041acf1c300410041001000417f460d00200241003602b80641012124200241b0046a4110200241b8066a41044100100041016a41044d0d0820022802b806220141024f0d010c020b410421010b200121240b200241a8036a41086a22014200370300200242003703a803418cebc100411a200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004410021050240200241b0046a411041acf1c300410041001000417f460d00200241d0066a4200370300200241b8066a41106a4200370300200241b8066a41086a4200370300200242003703b806200241b0046a4110200241b8066a4120410010002201417f460d082001411f4d0d08200241b0056a41186a2201200241b8066a41186a2205290300370300200241b0056a41106a2206200241b8066a41106a2225290300370300200241b0056a41086a2226200241b8066a41086a2227290300370300200220022903b8063703b005200520012903003703002025200629030037030020272026290300370300200220022903b0053703b806410121050b412810132201450d0a200120053a0004200141acf1c300360200200120022903b806370005200120022f00e8073b00252001410d6a200241b8066a41086a2206290300370000200141156a200241b8066a41106a22252903003700002001411d6a200241d0066a2226290300370000200141276a200241ea076a2d00003a0000200241a8036a41086a22054200370300200242003703a803419a97c200411a200241a8036a1002200241b0046a41086a2005290300370300200220022903a8033703b004410021050240200241b0046a411041acf1c300410041001000417f460d00202642003703002025420037030020064200370300200242003703b806200241b0046a4110200241b8066a4120410010002205417f460d092005411f4d0d09200241b0056a41186a2205200241b8066a41186a2206290300370300200241b0056a41106a2225200241b8066a41106a2226290300370300200241b0056a41086a2227200241b8066a41086a2228290300370300200220022903b8063703b005200620052903003703002026202529030037030020282027290300370300200220022903b0053703b806410121050b412810132225450d0b202520053a0004202541acf1c300360200202520022903b806370005202520022f00e8073b00252025410d6a200241c0066a290300370000202541156a200241b8066a41106a2903003700002025411d6a200241b8066a41186a290300370000202541276a200241e8076a41026a2d00003a000020024100360288032002420837038003200241c8076a41186a20024188086a360200200241003602d807200241b497c2003602cc07200220013602c807200220024180036a3602dc07200220024188086a3602d407200220024188086a3602d007200241b8066a200241c8076a10f601024002400240024020022d00b80722054102470d00200241023a00b0060c010b200241b0046a200241b8066a41800110f6021a2002200241b8066a4184016a2800003600a303200220022800b9073602a003200241b8066a41046a200241b0046a41800110f6022120200241c8076a41106a4101360200200241a8036a200241b8066a41840110f6021a200241003602b806200241b8066a410472200241a8036a41840110f6021a200241b8066a4188016a20053a0000200241c1076a20022802a003360000200241c4076a20022800a303360000200241b0056a200241dc076a200241b8066a10d80120022d00b0064102470d010b4100212920024100360298032002420837039003200110164108212a4108212b4108212c410021270c010b200241b8066a200241b0056a41880110f6021a200241a8036a200110f7014188011013222a450d0e202a200241b8066a41880110f6021a200241e8076a41186a200241c8076a41186a280200360200200241e8076a41106a222d200241c8076a41106a290300370300200241e8076a41086a200241c8076a41086a290300370300200220022903c8073703e807200241b8066a200241e8076a10f601024002400240024020022d00b80722274102470d0041012127410121290c010b200241c1076a2128200241b8066a410472212b200241fc076a212e200241b9076a212c202d280200212f41022106418801210541002101410121290340200241b0046a200241b8066a41800110f6021a2002202c41036a2800003600a3032002202c2800003602a0032020200241b0046a41800110f6021a202d202f20016a222641016a360200200241a8036a200241b8066a41840110f6021a200220263602b806202b200241a8036a41840110f6021a200241b8066a4188016a20273a0000202820022802a003360000202841036a20022800a303360000200241b0056a202e200241b8066a10d801200241b0056a4180016a2d00004102460d02200241b8066a200241b0056a41880110f6021a0240200141016a22262029470d00200241a8036a20022802e80720022802ec07280210110200202641016a22272026490d412006202720272006491b2229ad4288017e2204422088a70d412004a722274100480d4102402001417f460d00202a200520271015222a0d010c100b20271013222a450d0f0b202a20056a200241b8066a41880110f6021a200641026a210620054188016a2105200241b8066a200241e8076a10f60120262101200241b8066a4180016a2d000022274102470d000b202641016a21270b202a212b200241b0066a41023a00000c010b200141016a2127202a212b0b20022802e807220520022802ec07220128020011030002402001280204450d00200510160b200220273602980320022029360294032002202a36029003202b212c0b200241b0056a202510d40120022802d005222e450d204188012130202c20274188016c22316a213241012133200241a8036a410172213441282135200241b0056a41286a213641242137200241b0056a41246a2138411821394110213a4108213b4120213c200241b8066a41206a213d42d000213e4220213f417f214041052141428080808010214242002143427f21444100214541d000214641342147413c214841c400214941a004214a41a07f214b41987e214c41907d214d41887c214e41e000214f41e80121504102215141f00221524103215341f803215441042155419f04215641c800215741c0002158413821594130215a41cc00215b410121200c120b20a001450d2020a0012093016a21a00120a10120756a210120a101206d6a226a21a10120012d00000d0f206a2093016a22a10120786a21a201206a209f01470d150c140b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b202741081014000b412841041014000b412841041014000b41b6e7c20041331029000b41880141081014000b024002400240024002400240024002400240024002400240024002400240024002400240024020200e050001020304040b201f450d11200e10132201450d0a2001200f6a20102f00d5cc413b0000200120116a20102900cdcc41370000200120102900c5cc413700002001200e201210152201450d0b2001201f290000370012200120136a201f20146a290000370000200120156a201f200f6a290000370000200120166a201f20116a290000370000200241a8036a20116a22052017370300200220173703a80320012012200241a8036a1002200241b0046a20116a2005290300370300200220022903a8033703b00402400240200241b0046a200f20182010201010002019460d002002201e3702bc062002200241b0046a3602b806200241c0026a200241b8066a101220022802c002450d0b200241a8026a200241b8066a10a50120022903a802a7450d0b200241a8026a200f6a290300210420022903b00221030c010b42002103420021040b2001101642002100200242003703b805200242003703b005024002402008200320082003200854200420095420042009511b22011b22217d220320092004200920011b22227d2008202154ad7d220784500d00200241b8066a201f10a601200241b8066a20116a2903002204201720022903b8062200201a5620042017522004501b22011b21042000201a20011b2100200241b8066a200d6a28020021060240201b2802002201450d002000200484500d1020062001201c6c6a210520062101034020024180026a2001290300200120116a2903002003200710fa02200241f0016a20022903800220024180026a20116a2903002000200410f90220024190026a2001200f6a20022903f001200241f0016a20116a29030010f801200241b0056a20022903900220022903980220024190026a200f6a29030010f9012001201c6a22012005470d000b0b20002004842017510d0e200241e0016a200241b8066a200f6a290300200241b8066a20146a2903002003200710fa02200241d0016a20022903e001200241e0016a20116a2903002000200410f902200241d0016a20116a290300210420022903d0012100201d280200450d01200610160c010b420021040b200241b8016a201f200020217c2203200420227c2003200054ad7c10f801200241b0056a20022903b80120022903c001200241b8016a200f6a29030010f90120022903b00521042002200241b0056a20116a2903003703c006200220043703b806200241b8066a10fa01201f200d6a2201211f2001200c470d0f410021010c3c0b2036280200215c2038280200215d200241e8076a20396a225e200241b0056a20396a290300370300200241e8076a203a6a225f200241b0056a203a6a290300370300200241e8076a203b6a2260200241b0056a203b6a290300370300200220022903b0053703e807200241a8036a200241e8076a10e90102400240024020022d00a8032033470d00200241b0046a20396a203420396a290000370300200241b0046a203a6a2034203a6a290000370300200241b0046a203b6a2034203b6a290000370300200220342900003703b004200241b8066a200241b0046a10a401203d2802002201450d01200241b8066a203b6a290300216120022903b8062162200241b8066a20376a280200450d02200110160c020b203d20453602000b42002162420021610b205cad203e7e2204203f88a70d2a2004a7220120404c0d2a0240024002402001450d00200110132263450d09205c2041742201450d020c010b41082163205c2041742201450d010b202e20016a21642062204420612042541b21654200216641002167202e2168410021690c1a0b42002166410021670c210b02402027450d00202b20756a2101206e21050340024020012d0000450d002001206d6a210120052093016a22050d010c020b20012098016a290300220420950120042095015620012097016a2903002204209401522004501b22061b2200200420940120061b220484209401510d04200241a8016a2096012096012000200410f90220012099016a200241a8016a20716a29030037030020012092016a20022903a8013703002001206d6a210120052093016a22050d000b0b200228028003229b012072280200229c0120736c6a219d01209c01450d15209b01219e01410121690c190b20ae012802282201450d1e20ae0128022022cf01200120ad016c6a21d00120ae0120b0016a21d101410321690c190b20f50120d6016a290300210420f5012903002100200241b0056a20da016a222d20f50120e2016a290000370300200241b0056a20db016a22a90120f50120e3016a290000370300200241b0056a20d6016a22ab0120f50120e4016a290000370300200220f5012900603703b00520f5012802282228ad20e5017e220320e60188a70d272003a7220520e7014c0d2720f50120da016a290300210320f501290310210720f501280220210102400240024002402005450d00200510132220450d082028450d020c010b410821202028450d010b2001202820d8016c6a212641002106202021050340200520012903003703002005200120d6016a290300370308200520d9016a200120d9016a290300370300200520d3016a200120d3016a290300370300200520da016a200120da016a290300370300200520db016a200120db016a290300370300200520d8016a2105200620d5016a2106200120d8016a22012026470d000c020b0b410021060b200241b8066a20da016a200337030020e101200737030020e801200636020020e901202836020020ea012020360200200220003703b806200220043703c00620eb0110132201450d01200120ec016a20ed012900adeb41370000200120ed012900a6eb41370000200120eb0120ee011015222f450d02202f20022903b00537000f202f20ef016a202d290300370000202f20f0016a20a901290300370000202f20f1016a20ab01290300370000200241a8036a20d6016a222620f201370300200220f2013703a803202f20ee01200241a8036a1002200241b0046a20d6016a2026290300370300200220022903a8033703b004202620ed01360200200220f3013703a8032002200241b8066a3602c807200241c8076a200241a8036a10b301200220e1013602c807200241c8076a200241a8036a10b30120ea012802002101200220e80128020022053602c807200241c8076a200241a8036a1018024002402005450d00200520d8016c21280340024002400240024020022802ac032206202628020022056b20d3014f0d00200520d3016a22202005490d41200620d50174222d20202020202d491b222020ed01480d412006450d0120022802a80320062020101522060d020c060b20022802a80321060c020b202010132206450d040b200220203602ac03200220063602a8030b2026200520d3016a360200200620056a220520d6016a200120da016a290000370000200520db016a200120d3016a290000370000200520da016a200120d9016a2900003700002005200120db016a290000370000200220013602c807200241c8076a200241a8036a10b301200120d8016a2101202820f4016a22280d000b0b200020d701542101200420e001512105200420e00154210620022802ac032128200241b0046a20db0120022802a80322202026280200100102402028450d00202010160b2001200620051b210120f50120de016a21f501202f1016024020e901280200450d0020ea0128020010160b200420e00120011b21e001200020d70120011b21d70120f50120df01470d0d200241a8036a41086a226a4200370300200242003703a80341aa96c2004111200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b004200220e0013703c006200220d7013703b806200241b0046a4110200241b8066a4110100120dc014188016c226a4188016d217f02400240206a450d00207fad4205862204422088a70d3d2004a722014100480d3d2001101322db01450d0d20dc01450d010c1d0b410121db014100217f20dc010d1c0b4100217820dd010d1c0c1d0b202041011014000b41c4eec3001038000b410f41011014000b412f41011014000b200141081014000b200541081014000b41b6e7c20041331029000b411241011014000b413241011014000b419895c2001038000b419895c2001038000b200141011014000b410021200c040b410421200c050b410021010c2a0b410121010c290b410221010c280b410321010c270b410321010c260b410321010c250b410021010c050b410221010c040b410121010c030b410321010c020b410321010c010b410321010b03400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e0400010204040b209a0120706a219a01202c2027206d6c6a219f01206e21a001202c216a02400240024002400340206a21a101209f01206a6b20744d0d0720a10120756a2d0000450d0120a10120766a2d0000450d0220a10120796a2d0000450d0320a001207b6a21a00120a101207c6a216a20a101207d6a2d00000d000b410321010c030b20a10120786a21a20120a101206d6a226a209f01470d170c160b20a10120776a216a410121010c010b20a101207a6a216a410221010b20a1012001206d6c6a22a10120786a21a201206a209f01460d12410121010c1c0b20a20120716a290300210420a20129030021000340206a206d6a21010240206a20756a2d0000450d002001216a206f2001470d010c160b206a208a016a29030022032004206a20786a2903002207200054200320045420032004511b22051b21042007200020051b2100206a20a10120051b21a1012001216a206f2001470d000b410221010c1b0b20a10120703a008001209c01450d0220a101208a016a21a30120a1012091016a21a401410221690c170b410221010c380b02400240024020690e0400010204040b2068450d1f02400240024002400240024002402031204a490d002068204b6a21062068204c6a21262068204d6a21282068204e6a212d41002105202c2101034020062001460d072001204f6a2068203c10f802450d0720262001460d04200120506a2068203c10f802450d0420282001460d05200120526a2068203c10f802450d05202d2001460d06200120546a2068203c10f802450d06200520556a210520322001204a6a22016b20564b0d000b20012032470d010c020b41002105202c22012032460d010b2068204b6a2106034020062001460d052001204f6a2068203c10f802450d05200520336a21052032200120306a2201470d000b0b2068203c6a22682064470d0f0c230b200520336a21050c020b200520516a21050c010b200520536a21050b202c200520306c6a220120576a22062044200629030022032001290340220420657c22002004542206ad7c220720062007200354200020045a1b22061b37030020012044200020061b370340200241b8066a20396a2206206820396a290000370300200241b8066a203a6a22262068203a6a290000370300200241b8066a203b6a22282068203b6a290000370300200220682900003703b8060240205c2067470d00205c20336a2201205c490d3c205c203374222d20012001202d491b2201ad203e7e2204203f88a70d3c2004a7222d2045480d3c02400240205c450d002063205c20466c202d101522630d010c0a0b202d10132263450d090b2001215c0b2063206720466c6a220120453602242001200536022020012043370300200120396a20433703002001203a6a20433703002001203b6a204337030020282903002104202629030021002006290300210320022903b8062107200120453a0048200120586a2003370300200120596a20003703002001205a6a2004370300200120073703282001205b6a20022800a303360000200120022802a003360049206720336a21672068203c6a22682064470d0c0c1f0b0240209e012802282201450d00200120736c2106209e012802202090016a210103402027200128020022054d0d050240202c2005206d6c6a22052d0080010d002005290340220420052088016a290300220084500d00200241d8006a209501209401209e01290300220320940110fa02200241e8006a209e0120716a290300220720940120940120940110fa0220024198016a200320940120940120940110fa0220024188016a20960120022903980120072002290370842002290360842094015220024198016a20716a2903002203200229036820022903587c7c22072003547222261b209601200720261b2004200010f902200241f8006a209e01207f6a29030020940120022903880120024188016a20716a29030010fa022005208a016a222620960120262903002204200241f8006a20716a2903007c2005290330220020022903787c22032000542226ad7c22002026200020045420002004511b22261b3703002005209601200320261b3703300b200120736a210120062092016a22060d000b0b209e0120736a229e01209d01470d0c410021010c190b209b0120736a212d0240209b012802282205450d00209b012802202101200520736c21050340024020a3012001460d002001208c016a20a40120900110f802450d00200120736a210120052092016a22050d010c020b209b01207f6a2206290300210420a3012903002100200120a10120786a22262903002203209b012081016a222829030022077d3703002001200020047d2003200754ad7d37030820262903002104200620a30129030037030020282004370300200120736a210120052092016a22050d000b0b202d219b01202d209d01470d0c0b200241b8066a207f6a222d20a101207e6a29030037030020820120a1012080016a290300370300200241b8066a20716a222b20a1012083016a290300370300200220a1012903603703b80620a1012802282228ad2084017e220420850188a70d252004a722052086014c0d2520a101207f6a290300210420a10120716a290300210020a101280220210120a101290310210320a101290300210702400240024002402005450d00200510132220450d092028450d020c010b410821202028450d010b2001202820786c6a212641002106202021050340200520012903003703002005200120716a2903003703082005208c016a2001208c016a29030037030020052090016a20012090016a2903003703002005207f6a2001207f6a29030037030020052081016a20012081016a290300370300200520786a2105200620706a2106200120786a22012026470d000c020b0b410021060b20a10120756a2d0000212f20a1012087016a290300212120a10120736a290300212220a1012088016a29030021a50120a1012089016a29030021a60120a101208a016a29030021a70120a10120786a29030021a801024002400240024020022802f402200241f0026a20716a22052802002201470d00200120706a22262001490d3c200120707422a9012026202620a901491b22a901ad208b017e22aa0120850188a70d3c20aa01a722ab01206c480d3c2001450d0120022802f0022001206d6c20ab01101522260d020c0a0b20022802f00221260c020b20ab0110132226450d080b200220a9013602f402200220263602f002200528020021010b20262001206d6c6a22012022370350200120a601370340200120a80137033020012003370310200120003703082001200737030020012020360220200120022903b8063703602001202f206c473a008001200120022800b0053600810120012087016a202137030020012088016a20a5013703002001208a016a20a7013703002001207f6a20043703002001208c016a20063602002001208d016a202836020020012083016a202b29030037030020012080016a2082012903003703002001207e6a202d2903003703002001208e016a208f012800003600002005200528020020706a360200202c212b209a01206b490d070c1e0b20cf01222820b1016a212f202820b2016a21a901202820b3016a21ab01202820b4016a21d201202820b5016a2105202820ad016a21cf0120022802f002222620b60128020020b7016c22066a212d02400240024002400240034020262101202d20266b20b8014d0d03202f2001460d04200120b9016a200520ba0110f802450d0420a9012001460d01200120bb016a200520ba0110f802450d0120ab012001460d02200120bd016a200520ba0110f802450d02024020d2012001460d00200120be016a2126200620c1016a2106200120c0016a200520ba0110f8020d010b0b200120bf016a21010c030b200120b7016a21010c020b200120bc016a21010c010b2001212603402006450d020240202620b9016a222d2005460d0041002101202d200520ba0110f802450d00202620b7016a2126200620ce016a21064100450d010c020b20262101202620b7016a2126200620ce016a21062001450d000b0b202820c2013a0048200241286a20ae0120ac016a290300220020c3012028290300220420c30110fa02200241386a202820ac016a290300220320c30120ae01290300220720c30110fa02200241c8006a200720c301200420c30110fa0220ae0120c5016a290300220420c601200420c6015620ae0120c4016a290300220420c301522004501b22051b2207200420c30120051b220484500d02200241186a20c7012002290348200020c30152200320c3015271200229033020c3015272200229034020c3015272200241c8006a20ac016a2903002200200229032820022903387c7c22032000547222051b20c701200320051b2007200410f902202820c4016a2206200241186a20ac016a2903002200370300202820022903182203370310200120c8016a220520c7012000200529030022047c2003200129035022007c22032000542205ad7c22002005200020045420002004511b22051b370300200120c701200320051b37035020d101200120b9016a2205460d00200520d10120ba0110f802450d00200120ac016a220520c701200529030022042006290300220020c301202820c5016a2205290300220320c7015220c9012000501b22261b7c20012903002200200320c70120261b7c22032000542226ad7c22002026200020045420002004511b22261b370300200120c701200320261b370300200241b8066a20c4016a20d10120c4016a2900002203370300200241b8066a20c5016a20d10120c5016a2900002207370300200241b8066a20ac016a20d10120ac016a2900002221370300200220d10129000022223703b8062006290300210420052903002100200241b0056a20c4016a22262003370300200241b0056a20c5016a22282007370300200241b0056a20ac016a222d2021370300200220223703b005024002400240024020012802282205200120ca016a222f280200470d00200520c2016a22062005490d3c200520c2017422a9012006200620a901491b22a901ad20cb017e220320cc0188a70d3c2003a722ab0120c901480d3c2005450d01200120ba016a280200200520cd016c20ab01101522060d020c070b200120ba016a28020021060c020b20ab0110132206450d050b202f20a901360200200120ba016a2006360200200120b5016a28020021050b2006200520cd016c6a220520022903b0053703102005200420c301200020c7015220c9012004501b22061b3703082005200020c70120061b370300200520b5016a2026290300370300200520ba016a2028290300370300200520c4016a202d290300370300200120b5016a2201200128020020c2016a3602000b20cf0120d001470d0b0c1a0b4180bdc1002005202710a801000b4190bdc1001038000b20ab0141081014000b202d41081014000b200541081014000b20ab0141081014000b41022120410321010c2e0b410021690c080b410021690c080b410121690c080b410221690c090b410321690c090b410221010c090b410221010c080b410121010c070b410221010c060b410321010c050b410321010c040b410321010c030b410321010c020b410321010c010b410321010c000b0b20d401206a6a218c0120dc014188016c210520d4014180016a216a200241f0066a21a1014100217820db012101024002400340206a41a47f6a280200216d206a41a07f6a28020021da01200241b0056a206a41a87f6a41d80010f6021a206a2d00004102460d01200241b8066a200241b0056a41d80010f6021a200241a8036a41186a227520a10141186a290000370300200241a8036a41106a226f20a10141106a290000370300200241a8036a41086a22d30120a10141086a290000370300200220a1012900003703a8030240206d450d0020da0110160b200120022903a803370000200141186a2075290300370000200141106a206f290300370000200141086a20d301290300370000206a4188016a216a207841016a2178200141206a2101200541f87e6a22050d000c020b0b206a41086a226a208c01460d0020d40120dc014188016c6a21a1010340206a4180016a2d00004102460d01206a4188016a21010240206a41246a280200450d00206a41206a28020010160b2001216a20a1012001470d000b0b20dd01450d010b20d40110160b200241b8066a41086a226a4200370300200242003703b806419496c2004116200241b8066a1002200241a8036a41086a206a290300370300200220022903b8063703a803200241003602c006200242013703b806200220783602b005200241b0056a200241b8066a101802400240024002400240024002402078450d00207841057421754100206a28020022016b210520022802b806216f20022802bc06216d20db01216a03400240206d20056a411f4b0d00200141206a22a1012001490d26206d41017422d30120a10120a10120d301491b22a1014100480d2602400240206d450d00206f206d20a1011015226f0d010c060b20a1011013226f450d050b20a101216d0b206f20016a22a101206a29000037000020a10141186a206a41186a29000037000020a10141106a206a41106a29000037000020a10141086a206a41086a290000370000200541606a2105200141206a2101206a41206a216a207541606a22750d000b200241c0066a20013602002002206d3602bc062002206f3602b8060c010b206a280200210120022802bc06216d20022802b806216f0b200241a8036a4110206f200110010240206d450d00206f10160b41002105024002402078410574226a450d00206a410575228c01ad4205862204422088a70d242004a722014100480d242001101322d301450d0320db01206a6a20db01470d010c040b410121d3014100218c0120db01206a6a20db01460d030b207841057422a10141606a410576216d200241b8066a410172210520d301216a20db0121010340200241b0056a41186a200141186a290000370300200241b0056a41106a200141106a290000370300200241b0056a41086a200141086a290000370300200220012900003703b005200241b8066a200241b0056a10e9010240024020022d00b8064101470d00200241a8036a41186a200541186a290000370300200241a8036a41106a200541106a290000370300200241a8036a41086a200541086a290000370300200220052900003703a8030c010b200241a8036a41186a4200370300200241a8036a41106a4200370300200241a8036a41086a4200370300200242003703a8030b200141206a2101206a20022903a803370000206a41186a200241a8036a41186a290300370000206a41106a200241a8036a41106a290300370000206a41086a200241a8036a41086a290300370000206a41206a216a20a10141606a22a1010d000b206d41016a2105207f0d030c040b20a10141011014000b200141011014000b207f450d010b20db0110160b2005ad2204421b88a70d0a2004420586a7226a417f4c0d0a0240024002400240206a450d00206a101322da01450d034100216d410021db014100216a20050d010c020b410121da014100216d410021db014100216a2005450d010b200541057421a101416020d3016b217520da01216a20d30121010340206a2001290000370000206a41186a200141186a290000370000206a41106a200141106a290000370000206a41086a200141086a290000370000206a41206a216a200141206a210120a10141606a22a1010d000b20d30120054105746a20756a41057641016a216a200521db010b200241a8036a41086a22014200370300200242003703a80341d0c9c0004112200241a8036a1002200241b8066a41086a2001290300370300200220022903a8033703b8062002206d3602b805200242013703b0052002206a3602a803200241a8036a200241b0056a1018024002400240206a450d00206a41057421754100200241b0056a41086a28020022016b210520022802b005216f20022802b405216d20da01216a03400240206d20056a411f4b0d00200141206a22a1012001490d23206d410174227820a10120a1012078491b22a1014100480d2302400240206d450d00206f206d20a1011015226f0d010c060b20a1011013226f450d050b20a101216d0b206f20016a22a101206a29000037000020a10141186a206a41186a29000037000020a10141106a206a41106a29000037000020a10141086a206a41086a290000370000200541606a2105200141206a2101206a41206a216a207541606a22750d000b200241b8056a20013602002002206d3602b4052002206f3602b0050c010b200241b0056a41086a280200210120022802b405216d20022802b005216f0b200241b8066a4110206f200110010240206d450d00206f10160b024020db01450d0020da0110160b208c01450d0b20d30110160c0b0b20a10141011014000b206a41011014000b20ae0120ad016a22ae0120af01460d0341032120410321010c1a0b200241c8076a20396a2201205e290300370300200241c8076a203a6a2205205f290300370300200241c8076a203b6a22062060290300370300200220022903e8073703c8070240205d450d00202e10160b2063450d00200241b8066a20396a22262001290300370300200241b8066a203a6a22282005290300370300200241b8066a203b6a22202006290300370300200220022903c8073703b806024020024180036a203b6a22062802002205200228028403470d00200241b0056a202510f70120022802840322012006280200222d6b204020022802b005222e20336a222f202f202e491b222e4f0d00202d202e6a222e202d490d1c2001203374222d202e202e202d491b222ead203e7e2204203f88a70d1c2004a7222d2045480d1c024002402001450d00200228028003200120466c202d101522010d010c140b202d10132201450d130b2002202e3602840320022001360280030b200228028003200520466c6a22012063360220200120022903b80637022c200120356a2067360200200120376a205c360200200120433703102001206620432061204254222d1b370308200120622044202d1b370300200120396a2043370300200120476a2020290300370200200120486a2028290300370200200120496a20262903003702002006200520336a360200200241b0056a202510d401200241b0056a203c6a280200222e0d150b202510160240202720244f0d0002402027450d0020274188016c2101202b41206a216a03400240206a41046a280200450d00206a28020010160b206a4188016a216a200141f87e6a22010d000b0b02402029450d00202a10160b024020024188036a280200226a450d00206a41d0006c210120022802800341206a216a03400240206a41046a280200450d00206a28020010160b206a41d0006a216a200141b07f6a22010d000b0b200228028403450d0320022802800310160c030b2027202320272023491b226bad4288017e2204422088a70d072004a72201417f4c0d07024002402001450d002001101322050d01200141081014000b410821050b4100216c200241003602f8022002206b3602f402200220053602f002206b450d00418801216d202c20274188016c226e6a216f410121704108217120024180036a41086a217241d0002173419f042174418001217541880221764190022177413021784190032179419803217a41e07b217b41a004217c419804217d41f800217e4118217f41f0002180014110218101200241b8066a41106a21820141e80021830142302184014220218501417f21860141d80021870141c80021880141c0002189014138218a01428801218b014128218c014124218d01418401218e01200241b3056a218f01412021900141e00021910141b07f21920141f87e21930142002194014201219501427f2196014148219701414021980141b87f2199014100219a01410221200c150b410821ac0120024180036a41086a2802002201450d0041d00021ad0120022802800322ae01200141d0006c6a21af01412c21b001414821b10141c07e21b20141b87d21b30141b07c21b401412821b501200241f0026a41086a21b60141880121b701419f0421b80141e00021b901412021ba0141e80121bb0141900221bc0141f00221bd0141a00421be0141980321bf0141f80321c00141e07b21c101410121c201420021c301411821c401411021c501420121c601427f21c70141d80021c801410021c901412421ca01423021cb01422021cc01413021cd0141f87e21ce01410321200c150b20022802900321d30120022902f402210320022802f00221d401024020024190036a20ac016a2802002201450d0020014188016c210520d30141206a210103400240200141046a280200450d00200128020010160b20014188016a2101200541f87e6a22050d000b0b0240200228029403450d0020d30110160b024020024188036a2802002201450d00200141d0006c210520022802800341206a210103400240200141046a280200450d00200128020010160b200141d0006a2101200541b07f6a22050d000b0b0240200228028403450d0020022802800310160b20d401450d00200220d4013602e807200220033702ec07200241a8036a41086a22014200370300200242003703a803419496c2004116200241a8036a1002200241b0046a41086a2001290300370300200220022903a8033703b004200241b0046a411041acf1c300410041001000417f460d01200242103702b4052002200241b0046a3602b005200241b8066a200241b0056a101120022802b8062228450d1120022802bc0621d501200241c0066a28020041057422d6010d020c030b420021d701200241a8036a41086a226a4200370300200242003703a80341aa96c2004111200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b004200241b0046a411041acf1c300410041001000417f460d03200242003703c006200242003703b806200241b0046a4110200241b8066a411041001000226a417f460d0e206a410f4d0d0e20022903b80621d7010c030b41012128410021d501410041057422d601450d010b202821010340410f10132205450d05200541076a41002900adeb41370000200541002900a6eb413700002005410f412f10152205450d062005200129000037000f200541276a200141186a22d8012900003700002005411f6a200141106a2206290000370000200541176a200141086a22d901290000370000200241a8036a41086a22d3014200370300200242003703a8032005412f200241a8036a1002200241b8066a41086a22da0120d301290300370300200220022903a8033703b806200241b8066a4110100320051016411210132205450d07200541106a41002f00bbe94122263b0000200541086a41002900b3e9412204370000200541002900abe941220037000020054112413210152205450d08200520012900003700122005412a6a20d801290000370000200541226a20062900003700002005411a6a20d90129000037000020d3014200370300200242003703a80320054132200241a8036a100220da0120d301290300370300200220022903a8033703b806410021da010240200241b8066a411041acf1c300410041001000417f460d00200241003602b005200241b8066a4110200241b0056a41044100100041016a41044d0d0520022802b00521db01200241b8066a41101003410121da010b20051016024020db01410020da011b22da0141014d0d00411210132205450d0a200541106a20263b0000200541086a20043700002005200037000020054112413210152205450d0b200520012900003700122005412a6a20d801290000370000200541226a20062900003700002005411a6a20d90129000037000020d3014200370300200242003703a80320054132200241a8036a1002200241b0046a41086a20d301290300370300200220022903a8033703b004200220da01417f6a3602b806200241b0046a4110200241b8066a41041001200510160b200141206a210120d60141606a22d6010d000b0b2003422088a721dc01024020d501450d00202810160b20dc01450d0c2003a721dd0141880121de0120d40120dc014188016c6a21df01410821d60120d40141086a29030021e00120d40129030021d701411021db01200241b8066a41106a21e10141f80021e201411821da0141f00021e30141e80021e401423021e501422021e601417f21e701413021d801412821d901200241b8066a41286a21e801200241dc066a21e901412021d301200241b8066a41206a21ea01410f21eb01410721ec01410021ed01412f21ee01412721ef01411f21f001411721f101420021f201420121f301410121d501415021f40120d40121f501410421200c110b200241a8036a41086a226a4200370300200242003703a80341bc99c2004115200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b00402400240200241b0046a411041acf1c300410041001000417f460d00200241003602b806200241b0046a4110200241b8066a41044100100041016a41044d0d0a20023502b80621040c010b423c21040b200241086a20d70142002004420010fa02200241a8036a41086a226a4200370300200242003703a80341fc94c200411c200241a8036a1002200241b0046a41086a206a290300370300200220022903a8033703b004200242003703c00620024289f48bdcc4002002290308428094ebdc038020022903104200521b3703b806200241b0046a4110200241b8066a411010010c120b100f000b41b6e7c20041331029000b410f41011014000b412f41011014000b411241011014000b413241011014000b411241011014000b413241011014000b41b6e7c20041331029000b202d41081014000b41b6e7c20041331029000b41ac99c2004100410010a801000b41b6e7c20041331029000b41012120410321010c030b410321010c020b410321010c010b410321010c000b0b200241b8066a10fb0120022802b806210520022802bc06216d024020022802c006226a450d00206a410574220141057522d301ad42287e2204422088a70d012004a722a1014100480d0120a1011013226f450d02200520016a2175206a41057421a101206f216a200521010340200141086a2900002104200141106a290000210020012900002103206a41186a200141186a290000370000206a41106a2000370000206a41086a2004370000206a2003370000206a41206a4201370300206a41286a216a200141206a210120a10141606a22a1010d000b207520056b41606a41057641016a2175206d450d040c030b410021d3014108216f41002175206d0d020c030b1010000b20a10141081014000b200510160b2002410e3602ac03200241b384c0003602a803200241b8066a41fdc8c300200241a8036a10bf014100216a0240024020022802b806220120022802c00622a10141acf1c300410041001000417f460d00200241003602a803200120a101200241a8036a41044100100041016a41044d0d0120022802a803216a0b024020022802bc06450d00200110160b200241b0056a206a102720022802b0052178024002400240207520022802b805470d002078206f460d01417f21a101206f216a20782101034020a10141016a22a10120754f0d02206a2001412010f8020d01200141206a2105206a41206a216d206a41286a216a200141286a2101206d2903002005290300510d000b0b200220753602c006200220d3013602bc062002206f3602b806200241b8066a420042002004102f20022802b405450d012078101620024190086a24000f0b024020022802b405450d00207810160b20d301450d00206f10160b20024190086a24000f0b41b6e7c20041331029000bf50a040c7f037e027f077e23004190036b22022400200241086a2001280200200128020428020c1102000240024020022903084201520d00200241e4016a41046a2103200241a0026a41106a2104200241a0016a4101722105200241086a41086a2106200241a0026a41206a2107200241c4026a21082002419c026a21090340200241f8016a41186a220a200641186a290000370300200241f8016a41106a220b200641106a290000370300200241f8016a41086a220c200641086a290000370300200220062900003703f801200241a0016a200241f8016a10e90102400240024020022d00a0014101470d00200241f0026a41186a200541186a290000370300200241f0026a41106a200541106a290000370300200241f0026a41086a200541086a290000370300200220052900003703f002200241a0026a200241f0026a10a4012007280200220d450d01200241a0026a41086a290300210e20022903a002210f2008280200450d02200d10160c020b200741003602000b4200210f4200210e0b4200211020034200370200200341086a4200370200200241f0026a41186a220d200a290300370300200241f0026a41106a220a200b290300370300200241f0026a41086a2211200c290300370300200220022903f8013703f002200241a0026a41086a22124200370300200b200241e4016a41106a280200360200200c200241e4016a41086a290200370300200420022903f002370300200441086a2011290300370300200441106a200a290300370300200441186a200d290300370300200242003703a002200220022902e4013703f801427f2113024002400240200e42ffffffff0f560d00200f2113200f500d010b200241d0016a41106a200b280200360200200241d0016a41086a200c290300370300200241a0016a41086a2012290300370300200241a0016a41106a2004290300370300200241a0016a41186a200241a0026a41186a290300370300200241a0016a41206a2007290300370300200241a0016a41286a200241a0026a41286a290300370300200220022903f8013703d001200220022903a0023703a0012002200928000036009b012002200228009902360298014100210b200f2114200e21150c010b4102210b2016210f2017210e20182113201921100b20024180016a41106a200241d0016a41106a28020036020020024180016a41086a200241d0016a41086a290300370300200241d0006a41086a200241a0016a41086a290300370300200241d0006a41106a200241a0016a41106a290300370300200241d0006a41186a200241a0016a41186a290300370300200241d0006a41206a200241a0016a41206a290300370300200241d0006a41286a200241a0016a41286a290300370300200220022903d00137038001200220022903a0013703502002200228009b0136004b2002200228029801360248200b4102470d02200241086a2001280200200141046a28020028020c110200200f2116200e2117201321182010211920022903084201510d000b0b200041023a00800120024190036a24000f0b200020143703102000200f370300200020133703402000410036022820004208370320200020022903800137022c20002002290350370350200041186a20153703002000200e370308200041c8006a2010370300200041346a20024180016a41086a2903003702002000413c6a20024180016a41106a280200360200200041d8006a200241d0006a41086a290300370300200041e0006a200241d0006a41106a290300370300200041e8006a200241d0006a41186a290300370300200041f0006a200241f0006a290300370300200041f8006a200241f8006a2903003703002000200b3a008001200020022802483600810120004184016a200228004b36000020024190036a24000b0900200042003702000be10c04037f017e1b7f027e230041f0026b2204240002400240410d10132205450d00200541056a41002900d69942370000200541002900d199423700002005410d412d10152205450d012005200129000037000d200541256a200141186a2900003700002005411d6a200141106a290000370000200541156a200141086a290000370000200441a0026a41086a22064200370300200442003703a0022005412d200441a0026a1002200441e0016a41086a2006290300370300200420042903a0023703e001024002400240024002400240200441e0016a411041acf1c300410041001000417f460d00200441003a00a002200441e0016a4110200441a0026a41014100100041016a41014d0d0520042d00a002220641034f0d052005101620064101460d0320064102470d01200441a0026a200110e90120042d00a0024101470d02200441f8016a200441b9026a290000370300200441e0016a41106a200441b1026a290000370300200441e0016a41086a200441a9026a290000370300200420042900a1023703e001200441386a200441e0016a2002200310fc0120043502384201852102200441386a41106a2903002103200441386a41086a29030021070c040b200510160b200441f8006a200110e90120042d00784101470d00200441a0016a41186a20044191016a2205290000370300200441a0016a41106a20044189016a2206290000370300200441a0016a41086a20044181016a2208290000370300200420042900793703a001200441a0026a200441a0016a10a401200441c0016a41186a22092005290000370300200441c0016a41106a220a2006290000370300200441c0016a41086a220b2008290000370300200420042900793703c00120042802c002220c450d00200441e0016a41186a220d2009290300370300200441e0016a41106a220e200a290300370300200441e0016a41086a220f200b290300370300200441e0016a41286a2205200441a0026a41086a2206290300370300200441e0016a41306a2208200441a0026a41106a2209290300370300200441e0016a41386a2210200441a0026a41186a2211290300370300200441086a41086a2212200441cc026a2213290200370300200441086a41106a2214200441d4026a2215290200370300200441086a41186a2216200441dc026a2217290200370300200441086a41206a2218200441e4026a2219290200370300200441086a41286a221a200441ec026a221b280200360200200420042903c0013703e001200420042903a00237038002200420042902c402370308200441386a41386a221c2010290300370300200441386a41306a221d2008290300370300200441386a41286a221e2005290300370300200441386a41206a221f200429038002370300200441386a41186a2220200d290300370300200441386a41106a2221200e290300370300200441386a41086a2222200f290300370300200420042903e0013703382010201c2903003703002008201d2903003703002005201e290300370300200441e0016a41206a221c201f290300370300200d2020290300370300200e2021290300370300200f2022290300370300200420042903383703e001200441f8006a41186a2020290300370300200441f8006a41106a2021290300370300200441f8006a41086a202229030037030020042004290338370378201120102903003703002009200829030037030020062005290300370300200441c4026a2205200429030837020020132012290300370200201520142903003702002017201629030037020020192018290300370200201b201a2802003602002004200c3602c0022004201c2903003703a00220092009290300220720027c22233703002011201129030020037c2023200754ad7c37030020062903002107200420042903a002222320027c22243703a0022006200720037c2024202354ad7c370300200441c0016a20012002200310fc0120043502c0012102200a2903002103200b2903002107200441f8006a200441a0026a10fd0102402005280200450d00200441a0026a41206a28020010160b200242018521020c020b420021020c010b200441a0026a20012002200310fc0120043502a0024201852102200441b0026a2903002103200441a8026a29030021070b2000200737030820002002370300200041106a2003370300200441f0026a24000f0b41b6e7c20041331029000b410d41011014000b412d41011014000bd20503027f037e017f230041206b220424004101210502402001a74101470d00200041086a2205427f2005290300220620037c2000290300220720027c22082007542205ad7c22072005200720065420072006511b22051b3703002000427f200820051b370300410021050b0240024002400240024002400240024020014201510d004200210620014200510d03200441106a41086a220042003703002004420037031041a795c3004116200441106a1002200441086a22052000290300370300200420042903103703002004411041acf1c300410041001000417f460d01200442003703182004420037031020044110200441106a4110410010002209417f460d062009410f4d0d06200441186a2903002101200429031021060c020b2005450d02200441106a41086a220042003703002004420037031041a795c3004116200441106a1002200441086a22052000290300370300200420042903103703002004411041acf1c300410041001000417f460d03200442003703182004420037031020044110200441106a4110410010002209417f460d062009410f4d0d06200441186a2903002101200429031021060c040b420021010b200042003703002004420037031041a795c3004116200441106a100220052000290300370300200420042903103703002004427f200120037c200620027c22032006542200ad7c22022000200220015420022001511b22001b3703182004427f200320001b37031020044110200441106a411010010b200441206a24000f0b42002106420021010b200042003703002004420037031041a795c3004116200441106a100220052000290300370300200420042903103703002004427f200120037c200620027c22032006542200ad7c22022000200220015420022001511b22001b3703182004427f200320001b37031020044110200441106a41101001200441206a24000f0b41b6e7c20041331029000b41b6e7c20041331029000bc70202047f047e230041206b22012400200141106a41086a220242003703002001420037031041a795c3004116200141106a1002200141086a22032002290300370300200120012903103703000240024002402001411041acf1c300410041001000417f460d00200142003703182001420037031020014110200141106a4110410010002204417f460d022004410f4d0d02200141186a2903002105200129031021060c010b42002106420021050b200041086a290300210720002903002108200242003703002001420037031041a795c3004116200141106a100220032002290300370300200120012903103703002001427f200520077c200620087c22072006542202ad7c22062002200620055420062005511b22021b3703182001427f200720021b37031020014110200141106a41101001200141206a24000f0b41b6e7c20041331029000be40203047f017e017f230041306b220124002001410636020c200141f7c8c300360208200141106a41fdc8c300200141086a10bf01410021020240024002400240200128021022032001280218220441acf1c300410041001000417f460d002001410036020820032004200141086a41044100100041016a41044d0d01200128020821020b02402001280214450d00200310160b024002402002450d002002ad4205862205422088a70d032005a722034100480d03200310132206450d0441002104200621030340200141106a200410bf02200341186a200141106a41186a290000370000200341106a200141106a41106a290000370000200341086a200141106a41086a29000037000020032001290010370000200341206a21032002200441016a2204470d000c020b0b410121060b200020023602082000200236020420002006360200200141306a24000f0b41b6e7c20041331029000b1010000b200341011014000bcc0304027f017e017f027e230041306b220424002004200110880102400240024002400240024002402004290300200441086a290300844200510d00411410132205450d05200541106a410028009e9643360000200541086a410029009696433700002005410029008e964337000020054114413410152205450d06200520012900003700142005412c6a200141186a290000370000200541246a200141106a2900003700002005411c6a200141086a29000037000042002106200441206a41086a220742003703002004420037032020054134200441206a1002200441106a41086a200729030037030020042004290320370310200441106a411041acf1c300410041001000417f460d012004420037032820044200370320200441106a4110200441206a4110410010002207417f460d042007410f4d0d04200441286a2903002108200429032021060c020b200041c191c300360204200041086a4122360200410121010c020b420021080b200510162001200620027c2209200820037c2009200654ad7c108601200041106a2003370300200041086a2002370300410021010b20002001360200200441306a24000f0b41b6e7c20041331029000b411441011014000b413441011014000b990201027f230041306b22022400200242f3e885db96cddbb320370308200241086a2001412c6a2001290300200141086a290300427f10bc0102400240410e10132203450d00200341066a41002900ddcc41370000200341002900d7cc413700002003410e412e10152203450d012003200029000037000e200341266a200041186a2900003700002003411e6a200041106a290000370000200341166a200041086a290000370000200241206a41086a22004200370300200242003703202003412e200241206a1002200241106a41086a200029030037030020022002290320370310200241103602242002200241106a3602202001200241206a10e50120031016200241306a24000f0b410e41011014000b412e41011014000b02000bec0301087f23004180016b22032400200341c0006a200110d6010240024020032903404201520d002002417f732104200341c0006a41086a21020340200341086a41306a2205200241306a290300370300200341086a41286a2206200241286a290300370300200341086a41206a2207200241206a290300370300200341086a41186a2208200241186a290300370300200341086a41106a2209200241106a290300370300200341086a41086a220a200241086a29030037030020032002290300370308200341c0006a41306a2005290300370300200341c0006a41286a2006290300370300200341c0006a41206a2007290300370300200341c0006a41186a2008290300370300200341c0006a41106a20092903003703002002200a29030037030020032003290308370340200441016a2204450d02200341c0006a200110d60120032903404201510d000b0b2000420037030020034180016a24000f0b2000200329034037030820004201370300200041386a200341c0006a41306a290300370300200041306a200341c0006a41286a290300370300200041286a200341c0006a41206a290300370300200041206a200341c0006a41186a290300370300200041186a200341c0006a41106a290300370300200041106a200341c8006a29030037030020034180016a24000bd716010e7f230041c0026b22012400024002400240024002400240024002400240024002400240024002400240411210132202450d00200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc4137000020024112413210152202450d01200220002900003700122002412a6a200041186a290000370000200241226a200041106a2900003700002002411a6a200041086a29000037000020014190026a41086a2200420037030020014200370390022002413220014190026a100220014180026a41086a20002903003703002001200129039002370380020240024020014180026a411041acf1c300410041001000417f460d002001421037029402200120014180026a36029002200141c0006a20014190026a101120012802402203450d0520012802442104200141b0016a20014190026a10f30120012d00b00122054102460d04200141e0006a41186a200141c9016a290000370300200141e0006a41106a200141c1016a290000370300200141e0006a41086a200141b9016a290000370300200141a0026a41086a200141da016a290100370300200141a0026a41106a200141e2016a290100370300200141a0026a41186a200141ea016a290100370300200120012900b1013703602001200141d2016a2901003703a002200141d1016a2d0000210020014180026a411010030c010b410221050b200141206a41186a200141e0006a41186a290300370300200141206a41106a2206200141e0006a41106a290300370300200141206a41086a2207200141e0006a41086a290300370300200141086a2208200141a0026a41086a2209290300370300200141106a220a200141a0026a41106a220b290300370300200141186a200141a0026a41186a29030037030020012001290360370320200120012903a0023703002002101620054102460d0e200141a0026a41186a200141206a41186a290300370300200b200629030037030020092007290300370300200141c0006a41086a2008290300370300200141c0006a41106a200a290300370300200141c0006a41186a200141186a290300370300200120012903203703a002200120012903003703404100210c0240200041ff01714101470d00411210132202450d06200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc413700002002411241321015220c450d07200c2001290340370012200c412a6a200141d8006a290300370000200c41226a200141c0006a41106a290300370000200c411a6a200141c0006a41086a2903003700000b0240024002400240024020054101470d00411210132202450d0c200241106a41002f00c3cc413b0000200241086a41002900bbcc41370000200241002900b3cc413700002002411241321015220d450d0d200d20012903a002370012200d412a6a200141a0026a41186a290300370000200d41226a200141a0026a41106a290300370000200d411a6a200141a0026a41086a29030037000020014190026a41086a220242003703002001420037039002200d413220014190026a100220014180026a41086a2002290300370300200120012903900237038002200141b0016a20014180026a10d50120012d00bc014102460d0e200141e0006a200141b0016a41d00010f6021a2001418d016a20003a00002001418e016a200129034037010020014196016a200141c0006a41086a2903003701002001419e016a200141c0006a41106a290300370100200141a6016a200141c0006a41186a29030037010020014190026a41086a220242003703002001420037039002200d413220014190026a100220014180026a41086a2002290300370300200120012903900237038002200141003602b801200142013703b0012001280260210e2001200128026822023602900220014190026a200141b0016a101802402002450d00200241057421094100200141b0016a41086a28020022006b210720012802b001210a20012802b4012108200e210203400240200820076a411f4b0d00200041206a22062000490d052008410174220b20062006200b491b22064100480d05024002402008450d00200a200820061015220a0d010c090b20061013220a450d080b200621080b200a20006a22062002290000370000200641186a200241186a290000370000200641106a200241106a290000370000200641086a200241086a290000370000200741606a2107200041206a2100200241206a2102200941606a22090d000b200141b8016a2000360200200120083602b4012001200a3602b0010b200141ec006a200141b0016a10f40120012802b401210220014180026a411020012802b0012200200141b0016a41086a280200100102402002450d00200010160b02402001280264450d00200e10160b200d10164101210e200c0d010c100b0240200041ff01714101470d0020014190026a41086a220242003703002001420037039002419a97c200411a20014190026a100220014180026a41086a2002290300370300200120012903900237038002412010132202450d0f20022001290340370000200241186a200141c0006a41186a290300370000200241106a200141c0006a41106a290300370000200241086a200141c0006a41086a29030037000020014180026a4110200241201001200210164100210d4100210e200c0d010c100b20014190026a41086a220242003703002001420037039002419a97c200411a20014190026a1002200141b0016a41086a200229030037030020012001290390023703b001200141b0016a411010034100210d4100210e200c450d0f0b20014190026a41086a220242003703002001420037039002200c413220014190026a100220014180026a41086a22002002290300370300200120012903900237038002200141b0016a20014180026a10d50120012d00bc014102460d07200141e0006a200141b0016a41d00010f6021a200141ed006a20012903a002370000200141f5006a200141a0026a41086a290300370000200141fd006a200141a0026a41106a29030037000020014185016a200141a0026a41186a290300370000200120053a006c200242003703002001420037039002200c413220014190026a100220002002290300370300200120012903900237038002200141003602b801200142013703b001200128026021052001200128026822023602900220014190026a200141b0016a101802402002450d00200241057421094100200141b0016a41086a28020022006b210720012802b001210a20012802b40121082005210203400240200820076a411f4b0d00200041206a22062000490d032008410174220b20062006200b491b22064100480d03024002402008450d00200a200820061015220a0d010c060b20061013220a450d050b200621080b200a20006a22062002290000370000200641186a200241186a290000370000200641106a200241106a290000370000200641086a200241086a290000370000200741606a2107200041206a2100200241206a2102200941606a22090d000b200141b8016a2000360200200120083602b4012001200a3602b0010b200141ec006a200141b0016a10f40120012802b401210220014180026a411020012802b0012200200141b8016a280200100102402002450d00200010160b02402001280264450d00200510160b200c101641012102200e200d45720d100c0f0b1010000b200641011014000b200641011014000b411241011014000b413241011014000b2004450d00200310160b41b6e7c20041331029000b41b9eac10041d3001029000b411241011014000b413241011014000b411241011014000b413241011014000b41b9eac10041d3001029000b412041011014000b41002102200e200d45720d010b200d10160b02400240200c45200272450d002004450d020c010b200c10162004450d010b200310160b200141c0026a24000bf80102017f017e024002400240024002400240024002400240200028020022024101460d0020024102470d01410110132202450d03200241023a00002000290308210320024101410910152200450d04200020033700010c020b410110132202450d04200241013a00002000290308210320024101410910152200450d05200020033700010c010b410110132202450d05200241003a00002000290308210320024101410910152200450d06200020033700010b20012802002001280204200041091001200010160f0b410141011014000b410941011014000b410141011014000b410941011014000b410141011014000b410941011014000bf02407107f017e027f027e017f097e027f23004180026b22022400200241f0016a41086a22034200370300200242003703f00141a7a4c2004115200241f0016a1002200241e0016a41086a22042003290300370300200220022903f0013703e0010240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241e0016a411041acf1c300410041001000417f460d00200242103702742002200241e0016a3602702002200241f0006a10830220022903004203510d0141e0a4c2002105411c21062001280200210720012802082203450d140c130b20034200370300200242003703f00141bca4c2004124200241f0016a100220042003290300370300200220022903f0013703e0010240200241e0016a411041acf1c300410041001000417f460d00200242103702542002200241e0016a360250200241f0006a200241d0006a101120022802702204450d0c200241f8006a280200210302402002280274450d00200410162003450d010c130b20030d120b200241f0016a41086a22034200370300200242003703f00141c8a5c200411a200241f0016a1002200241e0016a41086a2003290300370300200220022903f0013703e0010240200241e0016a411041acf1c300410041001000417f460d00200242103702542002200241e0016a360250200241f0006a200241d0006a101120022802702204450d0e200241f8006a280200210302402002280274450d00200410162003450d010c120b20030d110b200241f0016a41086a22034200370300200242003703f00141e2a5c200411b200241f0016a1002200241e0016a41086a2003290300370300200220022903f0013703e0010240200241e0016a411041acf1c300410041001000417f460d00200242103702542002200241e0016a360250200241f0006a200241d0006a101120022802702204450d0f200241f8006a280200210302402002280274450d00200410162003450d010c110b20030d100b20012802002208200128020822094106746a210a2001280204210b024002400240024002400240024002400240024002400240024002400240024002400240024002402009450d00200241f0006a41106a210c200241f0006a41186a210d4100210e4100210f41012110200821030340200241f0006a41086a2211200341246a290200370300200341146a290200211220032802102113200c2003412c6a290200370300200d200341346a2902003703002002200329021c370370200341c0006a21142013450d02200341086a290300211520032903002116200241106a41186a2203200d290300370300200241106a41106a2201200c290300370300200241106a41086a2206201129030037030020022002290370370310200241306a41186a22042003290300370300200241306a41106a22072001290300370300200241306a41086a2205200629030037030020022002290310370330412210132203450d12200341206a41002f009da64222173b0000200341186a4100290095a6422218370000200341106a410029008da6422219370000200341086a4100290085a642221a370000200341002900fda542221b3700002003412241c40010152203450d14200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a2005290300370000200241f0016a41086a22014200370300200242003703f001200341c200200241f0016a100220112001290300370300200220022903f001370370200241f0006a411041acf1c3004100410010002106200310164122101321030240024002402006417f460d002003450d19200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010152203450d1a200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a200529030037000020014200370300200242003703f001200341c200200241f0016a1002200241e0016a41086a22062001290300370300200220022903f0013703e001200241f0006a200241e0016a4110108402200c290300211c2011290300211d200d290300211e200241f0006a41206a290300211f2002290370212020031016412210132203450d1b200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010152203450d1c200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a200529030037000020014200370300200242003703f001200341c200200241f0016a100220062001290300370300200220022903f0013703e001411010132204450d1d2004201d4200202042005222071b221d20167c22163700002004201c420020071b20157c2016201d54ad7c37000820044110412010152204450d1e2004201e4200202042015122071b370010200441186a201f420020071b370000200241e0016a411020044120100120041016200310162012422088a741306c22030d010c020b2003450d1e200341206a20173b0000200341186a2018370000200341106a2019370000200341086a201a3700002003201b3700002003412241c40010152203450d1f200320022903303700222003413a6a2004290300370000200341326a20072903003700002003412a6a200529030037000020014200370300200242003703f001200341c200200241f0016a1002200241e0016a41086a2001290300370300200220022903f0013703e001411010132206450d20200620163700002006201537000820064110412010152206450d2120064200370010200641186a4200370000200241e0016a41102006412010012006101620031016200d2004290300370300200c200729030037030020112005290300370300200220022903303703700240200f200e470d00200e41016a2203200e490d09200e4101742204200320032004491b220fad4205862215422088a70d092015a722034100480d090240200e450d002010200e4105742003101522100d010c250b200310132210450d240b2010200e4105746a22032002290370370000200341186a200d290300370000200341106a200c290300370000200341086a2011290300370000200e41016a210e2012422088a741306c2203450d010b201320036a2121201321030340200341086a290300211520032903002116200241d0006a41186a2207200341286a290000370300200241d0006a41106a2205200341206a290000370300200241d0006a41086a2206200341186a2900003703002002200341106a290000370350412210132204450d06200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d07200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a100220112001290300370300200220022903f001370370200241f0006a411041acf1c30041004100100021222004101641221013210402402022417f460d002004450d0a200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d0b200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a1002200241e0016a41086a22222001290300370300200220022903f0013703e001200241f0006a200241e0016a4110108402200241f0006a41206a290300211c200d290300211d2011290300211e200c290300211f2002290370212020041016412210132204450d0c200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d0d200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a100220222001290300370300200220022903f0013703e001411010132207450d0e2007201e4200202042015122051b3700002007201f420020051b37000820074110412010152207450d0f2007201d4200202042005222051b222020167c2216370010200741186a201c420020051b20157c2016202054ad7c370000200241e0016a41102007412010012007101620041016200341306a22032021470d010c020b2004450d0f200441206a20173b0000200441186a2018370000200441106a2019370000200441086a201a3700002004201b3700002004412241c40010152204450d10200420022903503700222004413a6a2007290300370000200441326a20052903003700002004412a6a200629030037000020014200370300200242003703f001200441c200200241f0016a1002200241e0016a41086a2001290300370300200220022903f0013703e001411010132222450d11202242003700082022420037000020224110412010152222450d1220222016370010202241186a2015370000200241e0016a41102022412010012022101620041016200d2007290300370300200c200529030037030020112006290300370300200220022903503703700240200f200e470d00200e41016a2204200e490d09200e4101742207200420042007491b220fad4205862215422088a70d092015a722044100480d090240200e450d002010200e4105742004101522100d010c150b200410132210450d140b2010200e4105746a22042002290370370000200441186a200d290300370000200441106a200c290300370000200441086a2011290300370000200e41016a210e200341306a22032021470d000b0b02402012a7450d00201310160b201421032014200a470d000c030b0b410121104100210e200821144100210f0b2014200a460d00200820094106746a21010340201441106a2802002204450d01201441c0006a21030240201441146a280200450d00200410160b2003211420012003470d000b0b0240200b450d00200810160b200241f0016a41086a22034200370300200242003703f00141bca4c2004124200241f0016a1002200241e0016a41086a2003290300370300200220022903f0013703e00120024100360278200242013703702002200e360250200241d0006a200241f0006a101802400240200e450d00200e41057421064100200241f0006a41086a28020022046b210720022802702117200228027421052010210303400240200520076a411f4b0d00200441206a22012004490d0620054101742211200120012011491b22014100480d06024002402005450d00201720052001101522170d010c150b200110132217450d140b200121050b201720046a22012003290000370000200141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a290000370000200741606a2107200441206a2104200341206a2103200641606a22060d000b200241f8006a200436020020022005360274200220173602700c010b200241f0006a41086a280200210420022802742105200228027021170b200241e0016a411020172004100102402005450d00201710160b0240200f450d00201010160b200241083a007041002105200241f0006a41086a41003a0000200241f0006a105a1085020c250b412241011014000b41c40041011014000b1010000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b200441011014000b412241011014000b200141011014000b41c40041011014000b41b6e7c20041331029000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b41b6e7c20041331029000b200341011014000b41b6e7c20041331029000b41b6e7c20041331029000b41afa5c20021054119210620012802002107200128020822030d020c030b4197a5c20021054118210620012802002107200128020822030d010c020b41fca4c2002105411b21062001280200210720012802082203450d010b20034106742104200741106a210303400240200341046a280200450d00200328020010160b200341c0006a2103200441406a22040d000b0b200141046a280200450d00200710160b200020063602042000200536020020024180026a24000b960302037f027e230041106b22022400200241003a000820012802002001280204200241086a410120012802081000210320012001280208200341016a41014b22036a2204360208024002400240024002402003450d004203210520022d000822034102460d0120034101460d0220030d0320024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0320022903082106420021050c040b420321050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0120022903082106420221050c020b20024200370308200141086a220341002001280200200141046a280200200241086a41082004100022012001417f461b2201410820014108491b20032802006a360200200141074d0d0020022903082106420121050c010b0b2000200637030820002005370300200241106a24000be20102027f037e230041106b220324000240024002402001200241acf1c300410041001000417f460d0020034200370308200342003703002001200220034110410010002204417f460d022004410f4d0d02200341086a29030021052003290300210620034200370308200342003703002001200220034110411010002201417f460d022001410f4d0d0220032903002107200041206a200341086a290300370300200041186a2007370300200041106a200537030020002006370308420121050c010b420021050b20002005370300200341106a24000f0b41b6e7c20041331029000bb00502047f027e23004190016b22002400200041106a41086a2201420037030020004200370310419fa6c2004115200041106a100220004180016a41086a2001290300370300200020002903103703800102400240024020004180016a411041acf1c300410041001000417f460d002000410036021020004180016a4110200041106a41044100100041016a41044d0d02200028021041016a21020c010b410121020b200041106a41086a2201420037030020004200370310419fa6c2004115200041106a100220004180016a41086a2203200129030037030020002000290310370380012000200236021020004180016a4110200041106a41041001200142003703002000420037031041b4a6c2004120200041106a1002200320012903003703002000200029031037038001024002400240024020004180016a411041acf1c300410041001000417f460d002000420037031020004180016a4110200041106a41084100100041016a41084d0d02200029031021040c010b42e40021040b200041106a41086a2201420037030020004200370310419be8c200410d200041106a100220004180016a41086a22032001290300370300200020002903103703800142002105024020004180016a411041acf1c300410041001000417f460d002000420037031020004180016a4110200041106a41084100100041016a41084d0d02200029031021050b2000200520047c37030820004200370300200142003703002000420037031041a7a4c2004115200041106a100220032001290300370300200020002903103703800120004110360214200020004180016a3602102000200041106a1081022000411c6a2002360200200141013a0000200041083a0010200041106a105a20004190016a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000bee0202027f057e230041c0006b2202240002400240411f10132203450d00200341176a41002900da9e42370000200341106a41002900d39e42370000200341086a41002900cb9e42370000200341002900c39e423700002003411f413f10152203450d012003200129000037001f200341376a200141186a2900003700002003412f6a200141106a290000370000200341276a200141086a290000370000200241086a41086a22014200370300200242003703082003413f200241086a1002200241306a41086a200129030037030020022002290308370330200241086a200241306a4110108402200241086a41106a2903002104200241086a41186a2903002105200241286a2903002106200229031021072002290308210820031016200041186a20064200200842015122031b37030020002005420020031b37031020002004420020031b37030820002007420020031b370300200241c0006a24000f0b411f41011014000b413f41011014000b130020004111360204200041d4a6c2003602000b3201017f0240410410132202450d0020004284808080c00037020420002002360200200241143600000f0b410441011014000b3201017f0240410410132202450d0020004284808080c000370204200020023602002002410a3600000f0b410441011014000b3301017f0240410810132202450d0020004288808080800137020420002002360200200242e4003700000f0b410841011014000bdf0201057f230041c0006b22022400200241206a41186a22034200370300200241206a41106a22044200370300200241206a41086a22054200370300200241186a4200370300200241106a4200370300200241086a42003703002002420037032020024200370300024002400240412010132206450d0020062002290320370000200641186a2003290300370000200641106a2004290300370000200641086a20052903003700002006412041c00010152206450d0120062002290300370020200641386a200241186a290300370000200641306a200241106a290300370000200641286a200241086a290300370000200641c00041800110152206450d022006420037005020064200370040200641003a006020004280818080900c37020420002006360200200641d8006a4200370000200641c8006a4200370000200241c0006a24000f0b412041011014000b41c00041011014000b41800141011014000b6101017f02400240411010132202450d00200242003700082002420037000020024110412010152202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b411041011014000b412041011014000b3101017f0240410110132202450d00200042818080801037020420002002360200200241013a00000f0b410141011014000b13002000410f360204200041ccb8c2003602000bd41003097f047e087f230041c0026b2202240002400240411510132203450d002003410d6a41002900b8bb42370000200341086a41002900b3bb42370000200341002900abbb4237000020034115413510152203450d01200320012900003700152003412d6a200141186a290000370000200341256a200141106a2900003700002003411d6a200141086a290000370000200241286a41086a220142003703002002420037032820034135200241286a1002200241b0016a41086a2001290300370300200220022903283703b001024002400240200241b0016a411041acf1c300410041001000417f460d00200241286a41186a4200370300200241286a41106a4200370300200241286a41086a22014200370300200242003703284100200241b0016a4110200241286a41204100100022042004417f461b2204411f4d0d02200241186a2205200241286a41186a2206290300370300200241106a2207200241286a41106a2208290300370300200241086a2209200129030037030020022002290328370300200241a0026a41186a220a2005290300370300200241a0026a41106a22052007290300370300200241a0026a41086a22072009290300370300200220022903003703a002200241c0016a41186a200a290300370300200241c0016a41106a2005290300370300200241c0016a41086a2007290300370300200220022903a0023703c001200642003703002008420037030020014200370300200242003703284100200241b0016a4110200241286a41202004412020044120491b2201100022042004417f461b220441204922050d02200241e0016a41186a2006290300370300200241e0016a41106a2008290300370300200241e0016a41086a200241286a41086a2206290300370300200220022903283703e00120024200370330200242003703284100200241b0016a4110200241286a41102004412020051b20016a2204100022012001417f461b2201410f4d0d022006290300210b2002290328210c20024200370330200242003703284100200241b0016a4110200241286a41102001411020014110491b20046a2204100022012001417f461b2201410f4d0d02200241306a290300210d2002290328210e41002109200241003a0028200241b0016a4110200241286a41012001411020014110491b20046a2201100041016a41014b2204450d02024020022d00282206450d0020064101470d03200241c0006a4200370300200241286a41106a4200370300200241306a420037030020024200370328200241b0016a4110200241286a4120200120046a10002201417f460d032001411f4d0d03200241186a2201200241286a41186a290300370300200241106a2204200241286a41106a290300370300200241086a2206200241286a41086a29030037030020022002290328370300200241a0026a41186a22082001290300370300200241a0026a41106a22012004290300370300200241a0026a41086a22042006290300370300200220022903003703a00220024180026a41186a200829030037030020024180026a41106a200129030037030020024180026a41086a2004290300370300200220022903a00237038002410121090b200241286a41186a220a20024180026a41186a220f290300370300200241286a41106a221020024180026a41106a2211290300370300200241286a41086a221220024180026a41086a22132903003703002002200229038002370328200241a0026a41186a2214200241c0016a41186a2201290300370300200241a0026a41106a2215200241c0016a41106a2204290300370300200241a0026a41086a2216200241c0016a41086a22062903003703002013200241e0016a41086a22082903003703002011200241e0016a41106a2205290300370300200f200241e0016a41186a2207290300370300200220022903c0013703a002200220022903e00137038002200241cb006a200241036a2800003600002002200228000036024820072014290300370300200520152903003703002008201629030037030020062013290300370300200420112903003703002001200f290300370300200241086a220f2012290300370300200241106a22112010290300370300200241186a2213200a2903003703002002411f6a2210200241286a411f6a290000370000200220022903a0023703e00120022002290380023703c00120022002290328370300200a200d370300200241286a41286a2008290300370300200241286a41306a2005290300370300200241286a41386a2007290300370300200241286a41c8006a2006290300370300200241286a41d0006a2004290300370300200241286a41d8006a20012903003703002002200e3703382002200b3703302002200c370328200220022903e001370348200220022903c001370368200041186a200d3703002000200e3703102000200b3703082000200c370300200241286a41e1006a2002290300370000200241286a41e9006a200f290300370000200241286a41f1006a2011290300370000200241286a41f9006a2013290300370000200241286a4180016a2010290000370000200020022903e001370320200041286a2008290300370300200041306a2005290300370300200041386a2007290300370300200220093a008801200020093a0060200041d8006a2001290300370300200041d0006a2004290300370300200041c8006a2006290300370300200020022903c00137034020004180016a2010290000370000200041f9006a2013290300370000200041f1006a2011290300370000200041e9006a200f290300370000200041e1006a20022903003700000c010b2000410041e10010f5021a0b20031016200241c0026a24000f0b41b6e7c20041331029000b411541011014000b413541011014000b9f0304027f017e017f027e230041306b2203240002400240411410132204450d00200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d01200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002105200341206a41086a220642003703002003420037032020044134200341206a1002200341106a41086a200629030037030020032003290320370310024002400240200341106a411041acf1c300410041001000417f460d002003420037032820034200370320200341106a4110200341206a4110410010002206417f460d022006410f4d0d02200341286a2903002107200329032021050c010b420021070b20041016410021040240200520017d2208200556200720027d2005200154ad7d220520075620052007511b0d00200341086a200041042008200510a30120032802084521040b200341306a240020040f0b41b6e7c20041331029000b411441011014000b413441011014000bef280b197f017e017f017e087f067e037f057e1f7f027e0b7f23004190016b2203240002400240024020002802082204450d0041880121052000280200220620044188016c6a210741e000210841012109200141046a210a4108210b4105210c417f210d4102210e41a808210f412021104106211141987d2112416021134118211441222115410021164110211741c4002118413a21194132211a412a211b4200211c41c200211d4201211e4100211f0c010b200341d0006a2135410021000c010b410121000b03400240024002400240024002400240024002400240024002400240024002400240024002400240024020000e020001010b200341f0006a41086a220042003703002003420037037041e2a5c200411b200341f0006a1002200341d0006a41086a200029030037030020032003290370370350024002400240024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a101120032802082236450d03200328020c21370240200341086a41086a22382802002200450d0020004105742125203621040340200341086a41186a2226200441186a290000370300200341086a41106a2239200441106a2900003703002038200441086a29000037030020032004290000370308411510132200450d032000410d6a41002900b8bb42370000200041086a41002900b3bb42370000200041002900abbb4237000020004115413510152200450d04200441206a2104200020032903083700152000412d6a2026290300370000200041256a20392903003700002000411d6a2038290300370000200341f0006a41086a222642003703002003420037037020004135200341f0006a1002200341d0006a41086a202629030037030020032003290370370350200341d0006a4110100320001016202541606a22250d000b0b2037450d00203610160b200341f0006a41086a220042003703002003420037037041e2a5c200411b200341f0006a1002200341d0006a41086a2204200029030037030020032003290370370350200341d0006a41101003200042003703002003420037037041c8a5c200411a200341f0006a10022004200029030037030020032003290370370350024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a10112003280208223a450d05200328020c213b4105213c200341106a28020041057422000d010c0c0b4101213a4100213b4105213c41004105742200450d0b0b203a20006a213d2001280200213e2001280204213f41182140411021414108214241202138417f21394102214341a80821444106214541987d21464160213741012136203a21474101211f0c050b411541011014000b413541011014000b41b6e7c20041331029000b41b6e7c20041331029000b024002400240201f0e03000102020b20062d00602009470d09200620086a20096a2120200a2802002121200121220c030b200341086a20406a204720406a290000370300200341086a20416a204720416a290000370300200341086a20426a204720426a29000037030020032047290000370308204720386a2147203e2148203f21490c030b200341086a204c6a225c2047204c6a290000370300200341086a204d6a225d2047204d6a290000370300200341086a204e6a225e2047204e6a290000370300200320472900003703082047204f6a2147203e215f203f21600c030b410121000c110b410021000c020b410121000c010b410221000b0240024002400240024002400240024002400240024002400240034002400240024020000e03000102020b20222802002224200b6a210420242f01062223200c742100410021250240024003402000450d0120202004201010f8022226450d02200020136a2100202520096a2125200420106a21042026200d4a0d000b2025200d6a21230b2021450d132021200d6a212120242023200e746a200f6a2122410021000c030b202420252011746a2012470d130c120b204820426a210420482f01062224203c7421004100212502400240024003402000450d01200341086a2004203810f8022226450d02200020376a2100202520366a2125200420386a2104202620394a0d000b202520396a21240b2049450d01204920396a2149204820242043746a20446a2802002148410121000c030b204820252045746a2046460d002047203d470d090c100b200341d0006a41186a2200200341086a41186a290300370300200341d0006a41106a2204200341086a41106a290300370300200341d0006a41086a2225200341086a41086a29030037030020032003290308370350200341306a41186a22262000290300370300200341306a41106a22002004290300370300200341306a41086a2204202529030037030020032003290350370330200341f0006a41186a22252026290300370300200341f0006a41106a22262000290300370300200341f0006a41086a220020042903003703002003200329033037037041201013224a450d07204a2003290370370000204a41186a2025290300370000204a41106a2026290300370000204a41086a20002903003700002047203d460d034101214b4118214c4110214d4108214e4120214f41052150417f21514102215241a80821534205215442202155410021564106215741987d2158416021594101215a4101215b4102211f0c0e0b205f204e6a2104205f2f010622242050742100410021250240024003402000450d01200341086a2004204f10f8022226450d02200020596a21002025204b6a21252004204f6a2104202620514a0d000b202520516a21240b2060450d02206020516a2160205f20242052746a20536a280200215f410221000c010b0b205f20252057746a2058460d002047203d470d070c020b200341d0006a204c6a2200205c290300370300200341d0006a204d6a2204205d290300370300200341d0006a204e6a2225205e29030037030020032003290308370350200341f0006a204c6a22262000290300370300200341f0006a204d6a22002004290300370300200341f0006a204e6a2204202529030037030020032003290350370370200341306a204c6a22252026290300370300200341306a204d6a22262000290300370300200341306a204e6a221f2004290300370300200320032903703703300240205b205a470d00205a204b6a2200205a490d03205a204b742204200020002004491b225bad2054862227205588a70d032027a722002056480d030240205a450d00204a205a20507420001015224a0d010c050b20001013224a450d040b204a205a2050746a220020032903303700002000204c6a20252903003700002000204d6a20262903003700002000204e6a201f290300370000205a204b6a215a2047203d470d070c010b4101215a4101215b0b0240203b450d00203a10160b204a205a109302205b450d0b204a10160c0b0b1010000b200041011014000b412041011014000b4101211f0c020b4102211f0c020b4102211f0c020b410121000c100b410121000c0f0b410121000c0e0b410121000c0d0b0240203b450d00203a10160b410141001093020b200341f0006a41086a220042003703002003420037037041c8a5c200411a200341f0006a1002200341d0006a41086a20002903003703002003200329037037035002400240024002400240024002400240024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a101120032802082210450d07200328020c214f0240200341086a41086a22382802002200450d0020004105742125201021040340200341086a41186a2226200441186a290000370300200341086a41106a2239200441106a2900003703002038200441086a29000037030020032004290000370308411f10132200450d04200041176a41002900da9e42370000200041106a41002900d39e42370000200041086a41002900cb9e42370000200041002900c39e423700002000411f413f10152200450d03200441206a21042000200329030837001f200041376a20262903003700002000412f6a2039290300370000200041276a2038290300370000200341f0006a41086a22264200370300200342003703702000413f200341f0006a1002200341d0006a41086a202629030037030020032003290370370350200341d0006a4110100320001016202541606a22250d000b0b204f450d00201010160b200341f0006a41086a222642003703002003420037037041c8a5c200411a200341f0006a1002200341d0006a41086a2239202629030037030020032003290370370350200341d0006a4110100302402002450d00202642003703002003420037037041bca4c2004124200341f0006a10022039202629030037030020032003290370370350410021100240024002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a10112003280208224f450d0c200328020c2110200341106a28020041057422380d010c020b4101214f41004105742238450d010b204f21040340412210132200450d07200041206a41002f009da6423b0000200041186a4100290095a642370000200041106a410029008da642370000200041086a4100290085a642370000200041002900fda5423700002000412241c40010152200450d08200020042900003700222000413a6a200441186a290000370000200041326a200441106a2900003700002000412a6a200441086a290000370000200341f0006a41086a2225420037030020034200370370200041c200200341f0006a1002200341d0006a41086a202529030037030020032003290370370350200341086a20354110108402200341086a41186a290300211c200341086a41086a290300211e200341086a41206a2903002127200341086a41106a290300212820032903082155200010160240201c4200205542015122001b221c201e420020001b221e842027420020001b22272028420020001b22288484500d002004201c201e7c221e202720287c201e201c54ad7c105f0b200441206a2104203841606a22380d000b0b2010450d00204f10160b202642003703002003420037037041bca4c2004124200341f0006a1002203920262903003703002003200329037037035002402035411041acf1c300410041001000417f460d00200342103702742003200341d0006a360270200341086a200341f0006a101120032802082210450d08200328020c214f0240200341086a41086a22382802002200450d0020004105742125201021040340200341086a41186a2226200441186a290000370300200341086a41106a2239200441106a2900003703002038200441086a29000037030020032004290000370308412210132200450d05200041206a41002f009da6423b0000200041186a4100290095a642370000200041106a410029008da642370000200041086a4100290085a642370000200041002900fda5423700002000412241c40010152200450d06200441206a2104200020032903083700222000413a6a2026290300370000200041326a20392903003700002000412a6a2038290300370000200341f0006a41086a2226420037030020034200370370200041c200200341f0006a1002200341d0006a41086a202629030037030020032003290370370350200341d0006a4110100320001016202541606a22250d000b0b204f450d00201010160b200341f0006a41086a220042003703002003420037037041bca4c2004124200341f0006a1002200341d0006a41086a2204200029030037030020032003290370370350200341d0006a41101003200042003703002003420037037041a7a4c2004115200341f0006a10022004200029030037030020032003290370370350200341d0006a4110100320034190016a24000f0b413f41011014000b411f41011014000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200620106a21000240200629030022272006200b6a290300222884500d00200020272028105f0b2006290310200620146a222629030084500d00201510132204450d01200420106a20162f009da64222243b0000200420146a2016290095a6422229370000200420176a201629008da642222a3700002004200b6a2016290085a642222b370000200420162900fda542222c37000020042015201810152204450d0220042000290000370022200420196a200020146a22232900003700002004201a6a200020176a222d2900003700002004201b6a2000200b6a222e290000370000200341f0006a200b6a2225201c3703002003201c3703702004201d200341f0006a1002200341d0006a200b6a222f202529030037030020032003290370370350200341086a200341d0006a2017108402200341086a20106a2903002130200341086a20146a2903002131200341086a200b6a2903002132200341086a20176a2903002133200329030821272004101620262903002134200620176a2903002128201510132204450d03200420106a20243b0000200420146a2029370000200420176a202a3700002004200b6a202b3700002004202c37000020042015201810152204450d0420042000290000370022200420196a20232900003700002004201a6a202d2900003700002004201b6a202e2900003700002025201c3703002003201c3703702004201d200341f0006a1002202f202529030037030020032003290370370350201710132200450d0520002032201c2027201e5122251b37000020002033201c20251b37000820002017201010152200450d06200020282031201c2027201c5222251b7c2227370010200020146a20342030201c20251b7c2027202854ad7c370000200341d0006a201720002010100120001016200410160b200620056a22062007470d06200341d0006a21350c070b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b4100211f0c010b410021000c010b410121000c000b0bb30101047f230041e0006b22012400200120001098020240200141306a22022802002203450d00200141346a2104034002402004280200450d00200310160b20012000109802200228020022030d000b0b02402000280204220341b894c100460d0020032802002102200310162002450d0020022802002100200210162000450d00024020002802002203450d000340200010162003210020032802002202210320020d000b0b200010160b200141e0006a24000bb6140e097f017e017f047e017f017e017f017e017f017e017f017e017f067e23004180016b220224002002200136020420022000360200200241e0006a41086a220042003703002002420037036041c8a5c200411a200241e0006a1002200241c8006a41086a2000290300370300200220022903603703484100210102400240024002400240024002400240024002400240024002400240024002400240024002400240200241c8006a411041acf1c300410041001000417f460d00200242103702642002200241c8006a360260200241206a200241e0006a101120022802202200450d02200241286a2802002101200228022421030c010b41012100410021030b200220003602102002200336020c200220003602082002200020014105746a36021420022002360218200241206a200241086a102a02400240024020022d00204101470d00412010132204450d0420042002290021370000200441186a200241396a290000370000200441106a200241316a290000370000200441086a200241296a290000370000200241c8006a41106a200241086a41106a280200360200200241c8006a41086a200241086a41086a29030037030020022002290308370348200241206a200241c8006a102a20022d0020450d01200241206a4101722100410221054120210341012106410121070340200241e0006a41186a2208200041186a290000370300200241e0006a41106a2209200041106a290000370300200241e0006a41086a220a200041086a29000037030020022000290000370360024020062007470d00200641016a22012006490d0b2005200120012005491b2207ad420586220b422088a70d0b200ba722014100480d0b02402006450d00200420032001101522040d010c050b200110132204450d040b200420036a22012002290360370000200141186a2008290300370000200141106a2009290300370000200141086a200a290300370000200541026a2105200341206a2103200641016a2106200241206a200241c8006a102a20022d00200d000b2002280250220020022802542201460d060c050b0240200241106a22012802002200200241146a2802002203460d0020012000200320006b41606a4160716a41206a3602000b41012104410021060240200228020c450d00200228020810160b4100210720022802042201450d070c060b41012106410121072002280250220020022802542201470d030c040b200141011014000b41b6e7c20041331029000b412041011014000b200241d0006a2000200120006b41606a4160716a41206a3602000b0240200228024c450d00200228024810160b20022802042201450d010b200228020021002001410574210c0340411f10132201450d03200141176a41002900da9e42220d370000200141106a41002900d39e42220e370000200141086a41002900cb9e42220f370000200141002900c39e4222103700002001411f413f10152201450d042001200029000037001f200141376a200041186a22052900003700002001412f6a200041106a2208290000370000200141276a200041086a2209290000370000200241e0006a41086a22034200370300200242003703602001413f200241e0006a1002200241c8006a41086a220a200329030037030020022002290360370348200241206a200241c8006a4110108402200241206a41106a22112903002112200241206a41086a22132903002114200241206a41186a22152903002116200241206a41206a221729030021182002290320210b2001101620184200200b42015122011b21182016420020011b211602402014201284500d00200b500d00200020142012105f0b02402016201884500d00412210132201450d08200141206a41002f009da64222193b0000200141186a4100290095a6422212370000200141106a410029008da6422214370000200141086a4100290085a642221a370000200141002900fda542221b3700002001412241c40010152201450d09200120002900003700222001413a6a2005290000370000200141326a20082900003700002001412a6a20092900003700002003420037030020024200370360200141c200200241e0006a1002200a200329030037030020022002290360370348200241206a200241c8006a41101084022011290300211c2013290300211d2015290300211e2017290300211f2002290320210b20011016412210132201450d0a200141206a20193b0000200141186a2012370000200141106a2014370000200141086a201a3700002001201b3700002001412241c40010152201450d0b200120002900003700222001413a6a2005290000370000200141326a20082900003700002001412a6a20092900003700002003420037030020024200370360200141c200200241e0006a1002200a20032903003703002002200229036037034841101013220a450d0c200a201d4200200b42005222111b221220167c2216370000200a201c420020111b20187c2016201254ad7c370008200a411041201015220a450d0d200a201e4200200b42015122111b370010200a41186a201f420020111b370000200241c8006a4110200a41201001200a1016200110160b411f10132201450d05200141176a200d370000200141106a200e370000200141086a200f370000200120103700002001411f413f10152201450d062001200029000037001f200141376a20052900003700002001412f6a2008290000370000200141276a200929000037000020034200370300200242003703602001413f200241e0006a10022013200329030037030020022002290360370320200241206a4110100320011016200041206a2100200c41606a220c0d000b0b200241e0006a41086a220042003703002002420037036041c8a5c200411a200241e0006a1002200241c8006a41086a200029030037030020022002290360370348200241003602282002420137032020022006360260200241e0006a200241206a1018024002402006450d00200641057421094100200241206a41086a28020022016b21052002280220210a200228022421082004210003400240200820056a411f4b0d00200141206a22032001490d0420084101742213200320032013491b22034100480d04024002402008450d00200a200820031015220a0d010c110b20031013220a450d100b200321080b200a20016a22032000290000370000200341186a200041186a290000370000200341106a200041106a290000370000200341086a200041086a290000370000200541606a2105200141206a2101200041206a2100200941606a22090d000b200241286a2001360200200220083602242002200a3602200c010b200241206a41086a2802002101200228022421082002280220210a0b200241c8006a4110200a2001100102402008450d00200a10160b02402007450d00200410160b20024180016a24000f0b1010000b411f41011014000b413f41011014000b411f41011014000b413f41011014000b412241011014000b41c40041011014000b412241011014000b41c40041011014000b411041011014000b412041011014000b200341011014000ba7b70124027f027e097f017e157f027e077f027e0b7f027e187f037e167f027e137f017e277f027e137f027e1f7f027e077f027e067f027e187f027e067f027e217f017e067f067e097f017e230041e0056b22012400200141b0056a41086a22024200370300200142003703b00541a7a4c2004115200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f804024002400240200141f8046a411041acf1c300410041001000417f460d00200142103702ec022001200141f8046a3602e802200141c8026a200141e8026a10830202400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012903c80222034203510d0020012903d0022104024002400240024002400240024002402003a722024101460d0020024102470d0120042000520d20200141083a00e802200141e8026a41086a41063a0000200141e8026a105a200142083703d802200141003602e002200141b0056a41086a22054200370300200142003703b00541e2a5c200411b200141b0056a1002200141f8046a41086a2005290300370300200120012903b0053703f804200141f8046a411041acf1c300410041001000417f460d0420014210370294042001200141f8046a36029004200141e8026a20014190046a101120012802e8022206450d0f20012802ec02210741082108200141f0026a2802004105742209450d050c140b20042000520d1f200141083a00e802200141e8026a41086a41043a0000200141e8026a105a200141b0056a41086a22404200370300200142003703b00541a1bdc200411f200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f804200141f8046a411041acf1c300410041001000417f460d01200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0820012903e80221000c020b20042000520d1e200141083a00e802200141e8026a41086a41023a0000200141e8026a105a200141b0056a41086a22024200370300200142003703b00541c8a5c200411a200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80441002141200141f8046a411041acf1c300410041001000417f460d0420014210370294042001200141f8046a36029004200141e8026a20014190046a101120012802e8022242450d0e200141f0026a280200214320012802ec0221410c050b42e40021000b200141b0056a41086a22404200370300200142003703b005419be8c200410d200141b0056a1002200141f8046a41086a22052040290300370300200120012903b0053703f8044200210e0240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0720012903e802210e0b2001200e20007c3703f002200142023703e80220404200370300200142003703b00541a7a4c2004115200141b0056a100220052040290300370300200120012903b0053703f80420014110360294042001200141f8046a36029004200141e8026a20014190046a108102200141e8026a41086a41053a0000200141083a00e802200141e8026a105a200141e0056a24000f0b410121064100210741082108410041057422090d0f0b410021054100210220070d0f0c100b41012142410021430b200141b0056a41086a22024200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d05204320012802e8024f0d010c0d0b2043410a490d0c0b200141b0056a41086a22024200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d0720012802e80221020c010b410a21020b200141b0056a41086a220a4200370300200142003703b00541dfbdc200411e200141b0056a1002200141f8046a41086a200a290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d0820012802e802210a0c010b4114210a0b41acf1c3002160410021614100210b41acf1c300210920432002200a200a2002491b22624d0d160240204341144b0d00204341014d0d162043417e6a2140204220434105746a41406a210541022102034020432040490d0620052002109502200541606a2105200241016a21022040417f6a2240417f470d000c170b0b20434101762264ad2200421b88a70d132000420586a72202417f4c0d13410121654101216602402002450d00200210132266450d0a0b41602167204241606a2168204241a07f6a21694100216a4104216b417f216c4203216d4220216e4103216f41022170417d21714105217241082173411821744110217541202176417e217741742178416421794140217a4109217b410a217c4104217d4100217e4100217f2043218001410221330c0a0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b20402043101c000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b410121020c070b10850220410d0b0c0c0b4100210a41002105410021022006210b0340200141e8026a200b108f02024020022005470d00200541016a220c2005490d092005410174220d200c200c200d491b220dad4288017e220e422088a70d09200ea7220c4100480d09024002402005450d00200820054188016c200c101522080d010c060b200c10132208450d050b200d21050b200b41206a210b2008200a6a200141e8026a41880110f6021a200a4188016a210a200241016a2102200941606a22090d000b200141e0026a2002360200200120083602d802200120053602dc022007450d010b200610160b4200210e2001420037028404200141b894c100360280042002450d01418801210f200820024188016c6a211020014184036a211141e0002112410121134108211441052115417f21164102211741a8082118411821194110211a411f211b4117211c4100211d413f211e4137211f412f21204127212141202122200141b0056a41206a212342082124420121254114212620014190046a41146a21274106212841e80221294138212a4130212b4128212c4230212d4220212e4104212f4160213041987d213120082132410021330c020b200c41081014000b410021020c010b410121020b0340024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b200141f0036a41086a20014180046a41086a28020036020020012001290380043703f003200141b0056a41086a2202200e3703002001200e3703b00541c8a5c200411a200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f804024002400240200141f8046a411041acf1c300410041001000417f460d0020014210370294042001200141f8046a36029004200141e8026a20014190046a101120012802e802223d450d0220012802ec02213e4105213f200141f0026a28020041057422020d010c230b4101213d4100213e4105213f41004105742202450d220b203d20026a214420014184036a21454120214641082147417f21484102214941a808214a4118214b4110214c411f214d4117214e4100214f413f215041372151412f215241272153420021544208215542012156200141a4046a21574106215841987d21594160215a4101215b203d215c410121330c020b41b6e7c20041331029000b0240024002400240024002400240024002400240024002400240024020330e09000102030405060708080b20322d0060450d35203220126a20136a213420012802800422352136200128028404223721380c100b205c225d20466a215c200141f0036a215e20012802f403215f0c100b024002400240024002400240024002400240208001228101206c6a228001450d00200141a8026a20422080012072746a108602200141a8026a20746a2903002103200141a8026a20736a290300210420012903b802210020012903a802213a20014188026a2042208101207274220a6a207a6a1086022000203a7c223a200129039802223b2001290388027c22820154200320047c203a200054ad7c220020014188026a20746a29030020014188026a20736a2903007c208201203b54ad7c22035420002003511b450d012069200a6a210203402080012065460d03200141a8016a200220766a108602200141a8016a20746a2903002103200141a8016a20736a290300210420012903b801210020012903a801213a20014188016a2002108602200220676a2102208001206c6a2180012000203a7c223a200129039801223b2001290388017c22820154200320047c203a200054ad7c220020014188016a20746a29030020014188016a20736a2903007c208201203b54ad7c22035420002003511b0d000c040b0b4101210b4100218001207e207f470d070c060b20810120776a210b2069200a6a210241002180014100210a0340200b200a460d05200141e8016a200220766a108602200141e8016a20746a2903002103200141e8016a20736a290300210420012903f801210020012903e801213a200141c8016a2002108602200220676a2102200a20656a210a2000203a7c223a20012903d801223b20012903c8017c2282015a200320047c203a200054ad7c2200200141c8016a20746a290300200141c8016a20736a2903007c208201203b54ad7c22035a20002003511b0d000b200a20656a210b208101200a6b206c6a228001450d030c020b41002180010b208101208001490d0c20810120434b0d0f02402081012080016b220b2065762209450d002068200a6a210220422080012072746a210a0340200141d0046a20746a220c200a20746a220d290000370300200141d0046a20756a228301200a20756a2206290000370300200141d0046a20736a2207200a20736a223c2900003703002001200a2900003703d004200220736a2284012900002100200220756a228501290000210320022900002104200d200220746a22860129000037000020062003370000203c2000370000200a2004370000200220012903d0043700002084012007290300370000208501208301290300370000208601200c290300370000200220676a2102200a20766a210a2009206c6a22090d000b0b208001450d010b200b207b4b0d0020810120434b0d0c2081012080016b210b208001206c6a210220682080012072746a210a03402081012002490d0e200a200b20656a220b1095022002206c6a210902402002450d00200a20676a210a20092102200b207c490d010b0b200920656a218001207e207f470d030c020b207e207f460d010c020b208101210b207e207f470d010b207e20656a2202207e490d37207e206574220a20022002200a491b2202ad206d862200206e88a70d372000a7220a206a480d3702400240207e450d00207d207e206f74200a1015227d0d010c090b200a1013227d450d080b2002217e0b207d207f206f746a2202200b3602042002208001360200207f20656a228301217f2083012070490d27410321390c1d0b200141e8026a2090016a209b012090016a290000370300200141e8026a2091016a209b012091016a290000370300200141e8026a2092016a209b012092016a2900003703002001209b012900003703e802209b012093016a219b01208e01219c01208f01219d010c0f0b200128028004220228020021b001200228020421b101410521390c1d0b024020d80122d90120be016a2202450d0020d90120d0016a21da01209e01200220c401746a21db0120012802e802280200280200220228020022dc0121dd01200228020422de0121df010c0f0b410121e201410021d80120d60120d701460d140c150b20870220c5016a210a2087022f0106220c20c4017421024100210b024002400240024003402002450d01208502200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b208902450d0120890220be016a218902208702200c20c201746a20c6016a280200218702410621330c0b0b20870220cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20810220ba016a220b208502208602208c02200354208b02200054208b022000511b220a1b220229000037000020810220c8016a200220c7016a29000037000020810220ca016a200220c9016a29000037000020810220cb016a200220c5016a290000370000208202208602200a1b21820220fe01208502208402200a1b2284024f0d0e200b21810220b901218d0220b901208202490d150c100b208f0220c5016a210a208f022f0106220c20c4017421024100210b024002400240024003402002450d01208d02200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b209102450d0120910220be016a219102208f02200c20c201746a20c6016a280200218f02410721330c0b0b208f0220cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b208402208002208d022094022003542093022000542093022000511b220a1b220229000037000020840220c7016a200220c7016a29000037000020840220c9016a200220c9016a29000037000020840220c5016a200220c5016a290000370000208d02208d0220406a200a1b218d0220840220406a21840220800220406a208002200a1b2280022081024f0d10208202208d024b0d150c0e0b20b70222b8022097026a21b70220012802800422b90228020421ba0220b90221bb020c100b200a41041014000b208001208101101c000b208101208001417f6a22024f0d010b2002208101101c000b20810120431039000b410121020c280b410121020c270b410121020c260b410021390c0c0b410221390c0c0b410421390c0d0b410621390c0e0b410d21390c0e0b410e21390c0e0b410e21390c0e0b410e21390c0e0b410f21390c0e0b410021020c0e0b410121020c0d0b410221020c0c0b410321020c0b0b410421020c0a0b410421020c090b410421020c080b410421020c070b410421020c060b410421020c050b410421020c040b410421020c030b410421020c020b410421020c010b410421020b024002400240024002400240024003400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e050001020305050b20d60120b8016a220220d601490d7e20d60120b80174220a20022002200a491b2202ad20bf0186220020c00188a70d7e2000a7220a20bc01480d7e0240024020d601450d0020d50120d60120c10174200a101522d5010d010c050b200a101322d501450d040b200221d601410121020c670b20d50120d70120c101746a220220e201360204200220d80136020020d70120b8016a22f60121d70120f60120c201490d04410a21390c4d0b20840220ba016a21850220820220ba016a21860220830228020028020022022802002287022188022002280204228902218a020c3b0b208e022802002802002202280200228f0221900220022802042291022192020c3b0b200a41041014000b02400240024002400240024002400240024002400240024002400240024002400240024002400240024020390e110001020304050708090a0d0e1013141819190b203620146a210a20362f0106220c20157421024100210b02400240024003402002450d012034200a202210f8022209450d02200220306a2102200b20136a210b200a20226a210a200920164a0d000b200b20166a210c0b2038450d01203820166a21382036200c2017746a20186a2802002136410021390c520b2036200b2028746a2031470d480b200141d0046a20196a203420196a220a290000370300200141d0046a201a6a2034201a6a220b290000370300200141d0046a20146a203420146a2209290000370300200120342900003703d00420014188056a20196a220c200a29000037030020014188056a201a6a2239200b29000037030020014188056a20146a220d20092900003703002001203429000037038805201b10132202450d222002201c6a201d2900da9e423700002002201a6a201d2900d39e42370000200220146a201d2900cb9e423700002002201d2900c39e423700002002201b201e10152202450d232002203429000037001f2002201f6a200a290000370000200220206a200b290000370000200220216a2009290000370000200141b0056a20146a220a200e3703002001200e3703b0052002201e200141b0056a1002200141f8046a20146a200a290300370300200120012903b0053703f804200141b0056a200141f8046a201a10840220232903002103200141b0056a201a6a2903002104200141b0056a20196a2903002100200a290300213a20012903b005213b20021016200141e8026a20196a201d360200200141e8026a201a6a2024370300201120196a200c2903003700002011201a6a2039290300370000201120146a200d290300370000201120012903880537000020012000203a7c223a200e203b20255122021b3703e8022001200320047c203a200054ad7c200e20021b3703f00220014190046a20014180046a200141d0046a200141e8026a109602024020014190046a201a6a2802002202450d002027280200450d00200210160b200128028004213520012802840421370c460b203520146a210a20352f0106220c20157421024100210b0240024003402002450d012034200a202210f8022209450d02200220306a2102200b20136a210b200a20226a210a200920164a0d000b200b20166a210c0b2037450d8a01203720166a21372035200c2017746a20186a2802002135410121390c510b203520296a200b2028746a2202450d8901200141e8026a20196a220c2032202a6a290000370300200141e8026a201a6a220d2032202b6a290000370300200141e8026a20146a22062032202c6a290000370300200120322900203703e802203220146a2903002103203220196a29030021042032290300213a20322903102100200220196a210b2002201a6a210902400240024002402002280218220a200220266a280200470d00200a20136a2202200a490d9001200a2013742207200220022007491b2207ad202d7e223b202e88a70d9001203ba7223c201d480d9001200a450d012009280200200a202b6c203c101522020d020c270b200928020021020c020b203c10132202450d250b200920023602002009202f6a2007360200200b280200210a0b2002200a202b6c6a220220012903e8023703102002200420037c2000203a7c2203200054ad7c370308200220033703002002202c6a200c290300370300200220226a200d290300370300200220196a2006290300370300200b200b28020020136a3602000c89010b205e280200220c20476a210a200c2f0106220d203f7421024100210b024002400240024003402002450d01205d200a204610f8022209450d022002205a6a2102200b205b6a210b200a20466a210a200920484a0d000b200b20486a210d0b205f450d01205f20486a215f200c200d2049746a204a6a215e410221390c550b200c200b2058746a2059470d010b200141d0046a204b6a205d204b6a220a290000370300200141d0046a204c6a205d204c6a220b290000370300200141d0046a20476a205d20476a22092900003703002001205d2900003703d00420014188056a204b6a220c200a29000037030020014188056a204c6a220d200b29000037030020014188056a20476a223320092900003703002001205d29000037038805204d10132202450d1f2002204e6a204f2900da9e423700002002204c6a204f2900d39e42370000200220476a204f2900cb9e423700002002204f2900c39e423700002002204d205010152202450d202002205d29000037001f200220516a200a290000370000200220526a200b290000370000200220536a2009290000370000200141b0056a20476a220a2054370300200120543703b00520022050200141b0056a1002200141f8046a20476a200a290300370300200120012903b0053703f804200141b0056a200141f8046a204c108402200141b0056a20466a2903002103200141b0056a204c6a2903002104200141b0056a204b6a2903002100200a290300213a20012903b005213b20021016200141e8026a204b6a204f360200200141e8026a204c6a20553703002045204b6a200c2903003700002045204c6a200d290300370000204520476a2033290300370000204520012903880537000020012000203a7c223a2054203b20565122021b3703e8022001200320047c203a200054ad7c205420021b3703f00220014190046a200141f0036a200141d0046a200141e8026a10960220014190046a204c6a2802002202450d002057280200450d00200210160b205c2044470d2b0c7f0b02400240024002400240207d208301223c206c6a228301206f746a2202280200450d00207d203c206f746a220c20786a28020022092002280204220a4d0d004102217f203c41024d0d8001207d203c20716a2202206f746a280204220b200a20096a4d0d014103217f203c41034d0d8001200c20796a280200200b20096a4d0d010c040b203c206f490d012002280204210a207d203c20716a2202206f746a280204210b0b200b200a490d010b203c20776a21020b203c200220656a2287014d0d1a203c20024d0d1b207d2002206f746a2285012802042288012085012802006a2202207d208701206f746a228601280200228101490d1c200220434b0d1d208501206b6a21890120422081012072746a2207208601280204228401207274220a6a21092002207274210b0240024002400240024020022081016b220d2084016b22022084014f0d00206620092002207274220a10f6022206200a6a210c2084012065480d0120022065480d012068200b6a210b200921020340200141286a200c20676a2209108602200141286a20736a2903002103200141286a20746a29030021042001290328213a20012903382100200141086a200220676a220d108602200b200d20092000203a7c223a2001290318223b20012903087c22820154200420037c203a200054ad7c2200200141086a20746a290300200141086a20736a2903007c208201203b54ad7c22035420002003511b227f1b220a290000370000200b20746a200a20746a290000370000200b20756a200a20756a290000370000200b20736a200a20736a290000370000200c2009207f1b210c2007200d2002207f1b22024f0d04200b20676a210b2006210a2006200c490d000c050b0b20662007200a10f6022202200a6a210c2084012065480d01200d2084014c0d012042200b6a217f2002210a200721020340200141e8006a2009108602200141e8006a20736a2903002103200141e8006a20746a29030021042001290368213a20012903782100200141c8006a200a10860220022009200a2000203a7c223a2001290358223b20012903487c22820154200420037c203a200054ad7c2200200141c8006a20746a290300200141c8006a20736a2903007c208201203b54ad7c22035420002003511b220d1b220b290000370000200220746a200b20746a290000370000200220756a200b20756a290000370000200220736a200b20736a290000370000200a200a20766a200d1b210a200220766a2102200920766a2009200d1b2209207f4f0d04200c200a4b0d000c040b0b200921020c010b200721020b2066210a0b2002200a200c200a6b20677110f6021a2089012088012084016a36020020850120810136020020860120860120736a208701206c73203c6a206f7410f7021a208301217f20830120654b0d460c7c0b203c217f2080010d2b0c7c0b209c012092016a210a209c012f0106220c208c017421024100210b024002400240024003402002450d01200141e8026a200a20930110f8022209450d0220022099016a2102200b209a016a210b200a2093016a210a20092094014a0d000b200b2094016a210c0b209d01450d01209d012094016a219d01209c01200c209501746a2096016a280200219c01410421390c550b209c01200b209701746a209801470d010b209b01208d01470d2c0c7f0b200141b0056a41186a2202200141e8026a41186a290300370300200141b0056a41106a220a200141e8026a41106a290300370300200141b0056a41086a220b200141e8026a41086a290300370300200120012903e8023703b00520014188056a41186a2209200229030037030020014188056a41106a2202200a29030037030020014188056a41086a220a200b290300370300200120012903b00537038805200141d0046a41186a220b2009290300370300200141d0046a41106a22092002290300370300200141d0046a41086a2202200a29030037030020012001290388053703d00441201013229e01450d26209e0120012903d004370000209e0141186a200b290300370000209e0141106a2009290300370000209e0141086a2002290300370000209b01208d01460d014101219f01411821a001411021a101410821a201412021a301410521a401417f21a501410221a60141a80821a701410621a80141987d21a901420521aa01422021ab01410021ac01416021ad01410121ae01410121af01410421330c380b200141e8026a20a0016a22b201209b0120a0016a290000370300200141e8026a20a1016a22b301209b0120a1016a290000370300200141e8026a20a2016a22b401209b0120a2016a2900003703002001209b012900003703e802209b0120a3016a219b0120b00121b50120b10121b6010c630b410121ae01410121af010c710b20dd0120c5016a210a20dd012f0106220c20c4017421024100210b024002400240024003402002450d0120db01200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20df01450d0120df0120be016a21df0120dd01200c20c201746a20c6016a28020021dd01410621390c530b20dd0120cd016a200b20cc01746a2202450d00200220c5016a29030021e001200229030021e1012002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020e0017c2002290300220020e1017c22e101200054ad7c21e001200220ce016a2102200a20cf016a220a0d000c020b0b420021e101420021e0010b209e0120da0120c401746a21e30120dc0121e40120de0121e5010c420b20e40120c5016a210a20e4012f0106220c20c4017421024100210b024002400240024003402002450d0120e301200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20e501450d0120e50120be016a21e50120e401200c20c201746a20c6016a28020021e401410721390c540b20e40120cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20e10120035420e00120005420e0012000511b450d42410821390c520b20da0122d801450d0120d80120be016a21da01209e0120d80120c401746a21e60120dc0121e70120de0121e8010c600b20da0122d801450d0120d80120be016a21da01209e0120d80120c401746a21ee0120dc0121ef0120de0121f0010c600b410021d8010c610b410021d80120d90121e2010c620b024002400240024020d50120f60122f70120be016a22f60120c101746a2202280200450d0020d50120f70120c101746a220c20d1016a28020022092002280204220a4d0d00410221d70120f70141024d0d0b20d50120f70120c3016a220220c101746a280204220b200a20096a4d0d01410321d70120f70141034d0d0b200c20d2016a280200200b20096a4d0d010c0c0b20f70120c101490d012002280204210a20d50120f70120c3016a220220c101746a280204210b0b200b200a490d010b20f70120d0016a21020b20f701200220b8016a22f8014d0d1820f70120024d0d1920d501200220c101746a22f90128020422fa0120f9012802006a220220d50120f80120c101746a22fb0128020022fc01490d1a200220ae014b0d1b20f90120bd016a21fd01209e0120fc0120c401746a22fe0120fb0128020422ff0120c40174220a6a218002209e01200220c401746a218102200220fc016b220b20ff016b220220ff014f0d0120b901208002200220c40174220a10f602200a6a21820220ff0120b801480d03200220b801480d0320012802e802218302208002218402410221020c690b20880220c5016a210a2088022f0106220c20c4017421024100210b02400240024003402002450d01208602200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b208a02450d01208a0220be016a218a02208802200c20c201746a20c6016a280200218802410b21390c530b20880220cd016a200b20cc01746a2202450d00200220c5016a290300218b022002290300218c022002280218220a450d2520022802102102200a20ce016c210a0340200220c5016a290300208b027c20022903002200208c027c228c02200054ad7c218b02200220ce016a2102200a20cf016a220a0d000c280b0b4200218c024200218b020c250b20b90120fe01200a10f6022202200a6a21820220ff0120b801480d02200b20ff014c0d0220012802e802218e022002218d0220fe01218402410321020c670b20900220c5016a210a2090022f0106220c20c4017421024100210b02400240024003402002450d01208002200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b209202450d0120920220be016a219202209002200c20c201746a20c6016a280200219002410c21390c530b20900220cd016a200b20cc01746a2202450d00200220c5016a29030021930220022903002194022002280218220a450d2620022802102102200a20ce016c210a0340200220c5016a2903002093027c200229030022002094027c229402200054ad7c219302200220ce016a2102200a20cf016a220a0d000c290b0b420021940242002193020c260b2080022184020c3d0b20fe01218402410d21390c510b20b901218d02410e21390c510b208402208d02208202208d026b20ba017110f6021a20fd0120fa0120ff016a36020020f90120fc0136020020fb0120fb0120c5016a20f80120be017320f7016a20c1017410f7021a20f60121d70120f60120b8014b0d370b20d8010d1b0c010b20f70121d70120d8010d1b0b024020d601450d0020d50110160b20b701450d6120b90110160c610b20bb0228020022bc022f0106220c2095027421024100210b20bc022098026a220d210a0240024003402002450d0120b802200a20970210f8022209450d02200220b4026a2102200b209c026a210b200a2097026a210a20092099024a0d000b200b2099026a210c0b20ba02450d0420ba022099026a21ba0220bc02200c209a02746a209b026a21bb02410f21390c4e0b20b90220b9022802082099026a3602080240024020ba02450d0020bc02209e026a200b209d02746a210920bc02200b209502746a2098026a210c20bc02200b209a02746a20a9026a2802002102024020ba02209c02460d00209c0220ba026b210a034020022802a8082102200a209c026a220a0d000b0b200220aa0220022f01061b22bc02290008210020bc0220a2026a290000210320bc0220a3026a290000210420bc022097026a290000213a20bc022098026a20bc0220a4026a20bc022f010622022095027420b4026a10f7021a20bc0220b0026a290300213b20bc022903880321820120bc0220ad026a29030021bd0220bc0220ac026a29030021be0220bc0220ab026a29030021bf0220bc022903e80221c00220bc0220b1026a29030021c10220bc0220af026a29030021c20220bc02209e026a20bc0220b2026a2002209d027420b5026a10f7021a20bc0220022099026a3b0106200c20a3026a203a370000200c2004370010200c2003370008200c2000370000200920a3026a20c20237030020092098026a20c102370300200920c002370300200920a6026a20bf02370200200920a5026a20be02370200200920a4026a20bd023702002009208201370220200920a2026a220229030021002002203b3703002000a721c302200020b60288a721c40220bc022f010620a0024d0d010c030b200d200b209502746a200d200b209c026a220a209502746a200b20990273220920bc022f01066a2095027410f7021a20bc02209e026a220c200b209d02746a2202209f026a28020021c402200228021021c3022002200c200a209d02746a200920bc022f01066a209d027410f7021a20bc0220bc022f01062099026a3b010620bc022f010620a0024b0d020b410021c502411021390c4e0b20bc022802002209450d000240024020bc022f01042202450d0020022099026a210b4101213c0c010b4100210b4100213c20092f0106450d110b0240024002400240024002400240024002402009209b026a2206200b209c026a220c209a02742286016a228501280200220a2f0106220d2006200b209a027422c6026a220228020022072f01062284016a20a1024f0d0020c502209c026a21c5022085012802002284012f010621072002280200220d2f0106213c200141d0046a2098026a220a20092098026a228101200b209502746a22022098026a290000370300200141d0046a20a2026a228701200220a2026a290000370300200141d0046a20a3026a228801200220a3026a290000370300200120022900003703d0042002208101200c209502746a200b2099027322810120092f01066a2095027410f7021a200d2098026a228901203c209502746a220220a3026a208801290300370000200220a2026a20870129030037000020022098026a200a290300370000200220012903d004370000208901203c209c026a2202209502746a2084012098026a20072095027410f6021a200141e8026a2098026a2287012009209e026a228801200b209d02746a220a2098026a290300370300200141e8026a20a2026a228901200a20a2026a290300370300200141e8026a20a3026a22c702200a20a3026a290300370300200141e8026a2097026a22c802200a2097026a290300370300200141e8026a20a4026a22c902200a20a4026a290300370300200141e8026a20a5026a22ca02200a20a5026a290300370300200141e8026a20a6026a22cb02200a20a6026a2903003703002001200a2903003703e802200a208801200c209d02746a20810120092f01066a209d027410f7021a200d209e026a228101203c209d02746a220a20a6026a20cb02290300370300200a20a5026a20ca02290300370300200a20a4026a20c902290300370300200a2097026a20c802290300370300200a20a3026a20c702290300370300200a20a2026a208901290300370300200a2098026a208701290300370300200a20012903e8023703002081012002209d02746a208401209e026a2007209d027410f6021a2085012006200b209a026a220a209a02746a20a7022086016b10f702210b0240200c20092f010622064f0d00200b280200220b200c3b0104200b2009360200200a2006460d00200920c6026a20a8026a210b0340200b280200220c200a3b0104200c2009360200200b20a0026a210b2006200a209c026a220a470d000b0b200920092f01062099026a3b0106200d2007200d2f01066a209c026a3b0106024020c502209a02490d00200d2002209a02746a209b026a208401209b026a2007209a027420a0026a10f6021a2002203c20076a209a026a4f0d002007209c026a210b200d203c209a02746a20a9026a210a0340200a280200220c20023b0104200c200d360200200a20a0026a210a2002209c026a2102200b2099026a220b0d000b0b208401101620092f01062202450d01200921bc022002209502490d3f0c090b203c450d0120072084012099026a220a209d02746a220220ab026a2903002100200220ac026a2903002103200220ad026a2903002104200220ae026a290300213a200220af026a290300213b200220b0026a290300218201200220b1026a29030021bd022002209e026a29030021be022007200a209502746a22022097026a29000021bf02200220a3026a29000021c002200220a2026a29000021c10220022098026a29000021c20220c502450d022007208401209a02746a209b026a280200220a20aa023602000c030b20b90220b90228020022022802a808220a36020020b90220b9022802042099026a360204200a20aa023602002002101620c3020d080c090b200a2097026a2900002100200a20a3026a2900002103200a20a2026a2900002104200a290008213a200a2098026a200a20a4026a200d2095027420b4026a10f7021a200a20ab026a290300213b200a20ac026a290300218201200a20ad026a29030021bd02200a20af026a29030021be02200a20b0026a29030021bf02200a20b1026a29030021c002200a2903880321c102200a2903e80221c202200a209e026a200a20b2026a200a2f0106209d027420b5026a10f7021a20c502450d02200a2802a8082107200a209b026a220c200a20a9026a200d209a027410f7021a200720aa02360200200d450d03410021330340200c280200220620333b01042006200a360200200c20a0026a210c200d2033209c026a2233470d000c040b0b4100210a0b200720072f01062099026a3b01062009200b209502746a22022097026a220c29000021cc02200c20bf02370000200220a3026a220c29000021bf02200c20c002370000200220a2026a220c29000021c002200c20c10237000020022098026a220229000021c102200220c2023700002009200b209d02746a220220af026a220b29030021c202200b203b370300200220b0026a220b290300213b200b208201370300200220b1026a220b290300218201200b20bd023703002002209e026a220b29030021bd02200b20be02370300200220ab026a220b29020021be02200b2000370200200220ac026a220b2902002100200b2003370200200220ad026a220b2902002103200b2004370200200220ae026a220229020021042002203a370200208501280200210b20c502450d02200a450d16200b20a4026a200b2098026a200b2f010622022095027410f7021a200b2097026a20cc02370000200b20a3026a20bf02370000200b20a2026a20c002370000200b20c102370008200b20b2026a200b209e026a2002209d027410f7021a200b20ab026a20be02370300200b20ac026a2000370300200b20ad026a2003370300200b20ae026a2004370300200b20af026a20c202370300200b20b0026a203b370300200b20b1026a208201370300200b20bd023703e802200b20a9026a200b209b026a2202200b2f0106209a027420a0026a10f7021a200b200a3602a808200b200b2f0106209c026a220a3b0106200a20b30271209c026a210c4100210a034020022802002209200a3b01042009200b360200200220a0026a2102200c200a209c026a220a470d000c050b0b410021070b200a209d026a220a200a2f01002099026a3b01002009200b209502746a220a2097026a220c29000021cc02200c2000370000200a20a3026a220c2900002100200c2003370000200a20a2026a220c2900002103200c2004370000200a2098026a220a2900002104200a203a3700002009200b209d02746a220a20af026a220b290300213a200b20be02370300200a20b0026a220b29030021be02200b20bf02370300200a20b1026a220b29030021bf02200b20c002370300200a209e026a220b29030021c002200b20c202370300200a20ab026a220b29020021c202200b203b370200200a20ac026a220b290200213b200b208201370200200a20ad026a220b290200218201200b20bd02370200200a20ae026a220a29020021bd02200a20c1023702002002280200210220c502450d012007450d15200220022f0106220b209502746a220a2097026a20cc02370000200a20a3026a2000370000200a20a2026a2003370000200a2098026a20043700002002200b209d02746a220a20ab026a20c202370300200a20ac026a203b370300200a20ad026a208201370300200a20ae026a20bd02370300200a20af026a203a370300200a20b0026a20be02370300200a20b1026a20bf02370300200a209e026a20c0023703002002200b209c026a220a209a02746a209b026a220b2007360200200220022f0106209c026a3b0106200b280200220b200a3b0104200b200236020020c3020d030c040b200b20a4026a200b2098026a200b2f01062095027410f7021a200b2097026a20cc02370000200b20a3026a20bf02370000200b20a2026a20c002370000200b20c102370008200b20b2026a200b209e026a200b2f0106209d027410f7021a200b20ab026a20be02370300200b20ac026a2000370300200b20ad026a2003370300200b200437038803200b20af026a20c202370300200b20b0026a203b370300200b20b1026a208201370300200b20bd023703e802200b200b2f0106209c026a3b010620c3020d020c030b200220022f0106220b209502746a220a2097026a20cc02370000200a20a3026a2000370000200a20a2026a2003370000200a2098026a20043700002002200b209d02746a220a20ab026a20c202370300200a20ac026a203b370300200a20ad026a208201370300200a20ae026a20bd02370300200a20b0026a20be02370300200a20b1026a20bf02370300200a209e026a20c002370300200a20af026a203a370300200220022f0106209c026a3b01060b20c302450d010b20c402450d0020c30210160b20b702209602470d1c0c5d0b4180d6c200208701203c10a801000b4180d6c2002002203c10a801000b2081012002101c000b200220431039000b411f41011014000b413f41011014000b411f41011014000b413f41011014000b203c41081014000b4180d6c20020f80120f70110a801000b4180d6c200200220f70110a801000b20fc012002101c000b200220ae011039000b41b8c5c3001038000b412041011014000b41bcf5c3001038000b41bcf5c3001038000b410121330c0b0b410221330c0b0b410321330c0b0b410521330c0c0b410521330c0c0b410621330c0c0b410621330c0c0b410621330c0c0b410721330c0c0b410721330c0c0b410721330c0c0b410821330c0c0b410121020c510b410121020c500b410121020c4f0b410121020c4e0b410121020c4d0b410121020c4c0b410121020c4b0b410121020c4a0b410121020c490b410121020c480b410121020c470b410121020c460b410121020c450b410121390c0b0b410121390c0b0b410321390c0c0b410721390c0e0b410921390c100b410a21390c100b410b21390c110b410c21390c120b410d21390c130b411021390c170b410421020c250b410421020c240b410421020c230b410421020c220b410421020c210b410421020c200b410421020c1f0b410421020c1e0b410421020c1d0b410421020c1c0b410421020c1b0b410421020c1a0b410421020c190b410421020c180b410421020c170b410421020c160b410421020c150b410421020c140b410421020c130b410421020c120b410421020c110b410421020c100b410421020c0f0b410421020c0e0b410021020c020b410121020c010b410321020b034002400240024002400240024002400240024002400240024002400240024020020e050001020304040b20b50120a2016a210a20b5012f0106220c20a4017421024100210b024002400240024003402002450d01200141e8026a200a20a30110f8022209450d02200220ad016a2102200b209f016a210b200a20a3016a210a200920a5014a0d000b200b20a5016a210c0b20b601450d0120b60120a5016a21b60120b501200c20a601746a20a7016a28020021b501410021020c110b20b501200b20a801746a20a901470d010b209b01208d01470d070c1b0b200141b0056a20a0016a220220b201290300370300200141b0056a20a1016a220a20b301290300370300200141b0056a20a2016a220b20b401290300370300200120012903e8023703b005200141d0046a20a0016a22092002290300370300200141d0046a20a1016a2202200a290300370300200141d0046a20a2016a220a200b290300370300200120012903b0053703d00420014188056a20a0016a220b200929030037030020014188056a20a1016a2209200229030037030020014188056a20a2016a220c200a290300370300200120012903d00437038805024020af0120ae01470d0020ae01209f016a220220ae01490d3120ae01209f0174220a20022002200a491b22af01ad20aa0186220020ab0188a70d312000a7220220ac01480d31024020ae01450d00209e0120ae0120a4017420021015229e010d010c060b20021013229e01450d050b209e0120ae0120a401746a2202200129038805370000200220a0016a200b290300370000200220a1016a2009290300370000200220a2016a200c29030037000020ae01209f016a21ae01209b01208d01470d050c1a0b20e70120c5016a210a20e7012f0106220c20c4017421024100210b024002400240024003402002450d0120e601200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20e801450d0120e80120be016a21e80120e701200c20c201746a20c6016a28020021e701410121020c100b20e70120cd016a200b20cc01746a2202450d00200220c5016a29030021e901200229030021ea012002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020e9017c2002290300220020ea017c22ea01200054ad7c21e901200220ce016a2102200a20cf016a220a0d000c020b0b420021ea01420021e9010b209e0120da0120c401746a21eb0120dc0121ec0120de0121ed010c0b0b20ec0120c5016a210a20ec012f0106220c20c4017421024100210b024002400240024003402002450d0120eb01200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20ed01450d0120ed0120be016a21ed0120ec01200c20c201746a20c6016a28020021ec01410221020c0f0b20ec0120cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20ea0120035420e90120005420e9012000511b0d050c0d0b20ef0120c5016a210a20ef012f0106220c20c4017421024100210b024002400240024003402002450d0120ee01200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20f001450d0120f00120be016a21f00120ef01200c20c201746a20c6016a28020021ef01410321020c0e0b20ef0120cd016a200b20cc01746a2202450d00200220c5016a29030021f101200229030021f2012002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020f1017c2002290300220020f2017c22f201200054ad7c21f101200220ce016a2102200a20cf016a220a0d000c020b0b420021f201420021f1010b209e0120da0120c401746a21f30120dc0121f40120de0121f5010c0a0b20f40120c5016a210a20f4012f0106220c20c4017421024100210b024002400240024003402002450d0120f301200a204010f8022209450d02200220ba016a2102200b20b8016a210b200a20406a210a200920be014a0d000b200b20be016a210c0b20f501450d0120f50120be016a21f50120f401200c20c201746a20c6016a28020021f401410421020c0d0b20f40120cd016a200b20cc01746a2202450d00200220c5016a2903002100200229030021032002280218220a450d0120022802102102200a20ce016c210a0340200220c5016a29030020007c2002290300220020037c2203200054ad7c2100200220ce016a2102200a20cf016a220a0d000c020b0b42002103420021000b20f20120035a20f10120005a20f1012000511b0d0420d90120d8016b21e20120d8010d0c0c0d0b200241011014000b41042133410121020c280b410521390c020b410821390c020b410921390c020b410421020c0f0b410421020c0e0b410421020c0d0b410221020c010b410421020c000b0b20d90120d801490d0220d90120ae014b0d05024020d90120d8016b22e20120b80176220a450d00209e0120d80120c401746a21020340200141d0046a20c7016a220b200220c7016a2209290000370300200141d0046a20c9016a220c200220c9016a220d290000370300200141d0046a20c5016a2206200220c5016a2207290000370300200120022900003703d00420db0120c5016a223c290000210020db0120c9016a228401290000210320db012900002104200920db0120c7016a228501290000370000200d2003370000200720003700002002200437000020db0120012903d004370000203c2006290300370000208401200c290300370000208501200b29030037000020db0120ba016a21db01200220406a2102200a20be016a220a0d000b0b20d801450d010b20e20120d3014b0d0020d90120ae014b0d0220d90120d8016b21e20120d80120be016a210220bb0120d80120c401746a210a034020d9012002490d04200a20e20120b8016a22e201200141e8026a109702200220be016a210b02402002450d00200a20ba016a210a200b210220e20120d401490d010b0b200b20b8016a21d80120d60120d701460d060c070b20d60120d701470d04410021020c070b20d80120d901101c000b20d90120d801417f6a22024f0d010b200220d901101c000b20d90120ae011039000b410121020c020b410021020c010b410121020c000b0b0240208a01450d00208b0110160b20ae0120634d0d01200120014180046a3602b0052001200141b0056a3602e802024020ae0141144b0d0020ae0141014d0d0120ae01417e6a2102209e0120ae014105746a41406a210a4102210b034020ae012002490d04200a200b200141e8026a109702200a41606a210a200b41016a210b2002417f6a2202417f470d000c020b0b20ae0141017622b701ad2200421b88a70d142000420586a72240417f4c0d14410121b801410121b90102402040450d002040101322b901450d040b416021ba01209e0141606a21bb01410021bc01410421bd01417f21be01420321bf01422021c001410321c101410221c201417d21c301410521c401410821c50141a80821c601411821c701417821c801411021c901417021ca01416821cb0141202140410621cc0141e80221cd01413021ce01415021cf01417e21d001417421d101416421d201410921d301410a21d401410421d501410021d601410021d70120ae0121d801410521330c040b20ae0120636b2202450d004105219502209e0120024105746a21960241202197024108219802417f2199024102219a0241a808219b024101219c024106219d0241e802219e024114219f02410421a002410b21a102411021a202411821a302412821a402413021a502413821a602412c21a70241b00821a80241ac0821a902410021aa0241a00321ab0241980321ac0241900321ad0241880321ae0241800321af0241f80221b00241f00221b10241a80321b20241ffff0321b302416021b402414021b502422021b602209e0121b702410821330c040b20af01450d09209e0110160c090b200220ae01101c000b204041011014000b410121020c0e0b410121020c0d0b2080010d010b0240207e450d00207d10160b2064450d0e206610160c0e0b41022133410121020c0a0b0240203e450d00203d10160b20012802f8032102200141b0056a41086a220a4200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a200a290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d04200220012802e802470d010c030b2002410a460d020b200141f0036a41086a2802002102200141b0056a41086a220a4200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a200a290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d05200220012802e8024b0d010c030b2002410a4d0d020b200141b0056a41086a22024200370300200142003703b00541fdbdc200411b200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200141003602e802200141f8046a4110200141e8026a41044100100041016a41044d0d0620012802e80221630c010b410a21630b200141f0036a41086a28020021022001200141f0036a36028004200220634d0d01200141b0056a41086a22024200370300200142003703b00541c8a5c200411a200141b0056a1002200141f8046a41086a2002290300370300200120012903b0053703f8044100218a0102400240200141f8046a411041acf1c300410041001000417f460d00200142103702b4052001200141f8046a3602b005200141e8026a200141b0056a101120012802e802228b01450d0820012802ec02218a014105218c01200141f0026a28020041057422020d010c020b4101218b014105218c0141004105742202450d010b208b0120026a218d012001280280042202280200218e012002280204218f014118219001411021910141082192014120219301417f219401410221950141a808219601410621970141987d21980141602199014101219a01208b01219b01410321330c070b208a01450d00208b0110160b200141d8026a200141f0036a4101109102200141f8036a280200210b20012802f00321400240024020012802f40322b801450d0020b801210a20402102034020022802a8082102200a417f6a220a0d000b0340204020402f01064102746a41a8086a280200214020b801417f6a22b8010d000c020b0b204021020b200141ec046a20402f0106360200410021b801200141d0046a41186a4100360200200141e4046a20403602002001200b3602f004200141003602e004200142003703d804200120023602d404200141003602d004200141e8026a200141d0046a109802024002400240024002400240024002402001280298032202450d00200141b0056a41086a2240200141a4036a290200370300200141b0056a41106a22b801200141ac036a290200370300200141b0056a41186a220a200141b4036a290200370300200141b0056a41206a220b200141bc036a290200370300200141b0056a41286a22ba01200141c4036a2802003602002001200129029c033703b005200141e8026a41286a22be01290300210e200129038803210020be0120ba01280200360200200141e8026a41206a200b290300370300200141e8026a41186a200a290300370300200141e8026a41106a20b801290300370300200141e8026a41086a2040290300370300200120012903b0053703e802417f200141d0046a41206a280200224041016a22b80120b8012040491b22cf01ad22f101421a88a70d1020f101420686a72240417f4c0d102040450d01204010132267450d0b206721090c020b200141d0046a10920241082167410021cf01410821090c020b41082167410821090b20092000370300200920023602102009200e370308200941146a20012903e8023702002009411c6a200141e8026a41086a290300370200200941246a200141e8026a41106a22732903003702002009412c6a200141e8026a41186a2274290300370200200941346a200141e8026a41206a220b2903003702002009413c6a200141e8026a41286a22ba0128020036020020014188056a41206a22a301200141d0046a41206a28020036020020014188056a41186a200141d0046a41186a29030037030020014188056a41106a200141d0046a41106a29030037030020014188056a41086a200141d0046a41086a290300370300200120012903d00437038805200141e8026a20014188056a1098020240024020012802980322c501450d00200141e8026a41346a210220014198036a2175410221be0141c000210a410121b8010340200141b0056a41086a2240200241086a290200370300200141b0056a41106a22d601200241106a290200370300200141b0056a41186a220c200241186a290200370300200141b0056a41206a2239200241206a290200370300200141b0056a41286a22ce01200241286a280200360200200120022902003703b00520ba01290300210e200b290300210020ba0120ce01280200360200200b20392903003703002074200c290300370300207320d601290300370300200141e8026a41086a22d6012040290300370300200120012903b0053703e802024020b80120cf01470d0020b801417f20a301280200224041016a220920092040491b6a224020b801490d1220be012040204020be01491b22cf01ad42068622f101422088a70d1220f101a722404100480d120240024020b801450d002067200a2040101522670d010c070b204010132267450d060b206721090b2009200a6a2240200e37030820402000370300204041106a20c5013602002040413c6a20ba01280200360200204041346a200b2903003702002040412c6a2074290300370200204041246a20732903003702002040411c6a20d601290300370200204041146a20012903e80237020020be0141026a21be01200a41c0006a210a20b80141016a21b801200141e8026a20014188056a109802207528020022c5010d000c020b0b410121b8010b20014188056a1092020b200141b0056a41086a22404200370300200142003703b00541c0bdc200411f200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f80402400240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0320012903e80221f1010c010b42e80721f1010b200141b0056a41086a22404200370300200142003703b0054193ecc2004115200141b0056a1002200141e8026a41086a2040290300370300200120012903b0053703e802200141003602b805200142013703b005200920b801200141b0056a10980120012802b4052140200141e8026a411020012802b005220220012802b805100102402040450d00200210160b024020b801450d0020b8014106742102200941106a214003400240204041046a280200450d00204028020010160b204041c0006a2140200241406a22020d000b0b024020cf01450d00206710160b4200210e200141b0056a41086a22404200370300200142003703b005419be8c200410d200141b0056a1002200141e8026a41086a22022040290300370300200120012903b0053703e802420021000240200141e8026a411041acf1c300410041001000417f460d00200142003703b005200141e8026a4110200141b0056a41084100100041016a41084d0d0320012903b00521000b20404200370300200142003703b00541a8ecc2004112200141b0056a100220022040290300370300200120012903b0053703e8022001200020f1017c22003703b005200141e8026a4110200141b0056a41081001200141e8026a41106a200037030020024201370300200141093a00e802200141e8026a105a20404200370300200142003703b005419be8c200410d200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f8040240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0420012903e802210e0b200141f8026a200e370300200141083a00e802200141e8026a41086a41073a0000200141e8026a105a2005450d11200810160c110b204041081014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b204041081014000b41b6e7c20041331029000b410121020c010b02402032200f6a22322010470d00410021020c010b41002133410121020c000b0b100f000b1010000b204320626b210b204221090b2009200b109302200141b0056a41086a22404200370300200142003703b0054185bdc200411c200141b0056a1002200141f8046a41086a2040290300370300200120012903b0053703f80402400240200141f8046a41102060206120611000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0420012903e80221000c010b42e40021000b200141b0056a41086a22404200370300200142003703b005419be8c200410d200141b0056a1002200141f8046a41086a22052040290300370300200120012903b0053703f8044200210e0240200141f8046a411041acf1c300410041001000417f460d00200142003703e802200141f8046a4110200141e8026a41084100100041016a41084d0d0420012903e802210e0b2001200e20007c3703f002200142013703e80220404200370300200142003703b00541a7a4c2004115200141b0056a100220052040290300370300200120012903b0053703f80420014110360294042001200141f8046a36029004200141e8026a20014190046a108102200141e8026a41086a41033a0000200141083a00e802200141e8026a105a2041450d010b20421016200141e0056a24000f0b200141e0056a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b9d0603027f067e047f230041e0016b22022400024020014102490d00200241a0016a200041206a2203108602200241a0016a41186a2903002104200241a0016a41086a290300210520022903b001210620022903a001210720024180016a2000108602200620077c220720022903900122082002290380017c22095a200420057c2007200654ad7c220620024180016a41186a29030020024180016a41086a2903007c2009200854ad7c22045a20062004511b0d002000290000210620002003290000370000200241c0016a41186a200041186a220a290000370300200241c0016a41106a220b200041106a220c290000370300200241c0016a41086a200041086a220d290000370300200d200341086a290000370000200c200341106a290000370000200a200341186a290000370000200220063703c0014101210d024020014103490d00200241e0006a200041c0006a2203108602200241e0006a41086a2903002104200241e0006a41186a29030021052002290360210720022903702106200241c0006a200241c0016a108602200620077c22072002290350220820022903407c22095a200520047c2007200654ad7c2206200241c0006a41186a290300200241c0006a41086a2903007c2009200854ad7c22045a20062004511b0d004102210a02400340200341606a2003290000370000200341786a200341186a290000370000200341706a200341106a290000370000200341686a200341086a290000370000200a41016a220c20014f0d01200241206a200341206a2203108602200241206a41086a2903002104200241206a41186a290300210520022903202107200229033021062002200241c0016a108602200a210d200c210a200620077c22072002290310220820022903007c22095a200520047c2007200654ad7c2206200241186a290300200241086a2903007c2009200854ad7c22045a20062004511b450d000c020b0b200a210d0b2000200d4105746a220320022903c001370000200341186a200241c0016a41186a290300370000200341106a200b290300370000200341086a200241c0016a41086a2903003700000b200241e0016a24000bd02f03107f097e547f230041800c6b22042400200441f0026a41186a200241186a290000370300200441f0026a41106a200241106a290000370300200441f0026a41086a200241086a290000370300200420022900003703f00202400240024002402001280200220541b894c100460d00200128020421060c010b41a80810132205450d0141002106200541003b010620054100360200200541086a200441b0036a41a00810f6021a20014100360204200120053602000b0c010b41a80841081014000b41002102024003400240024002400240024002400240024020020e020001010b200541086a210820052f0106220741057421024100210902400240024003402002450d01200441f0026a2008412010f802220a450d02200241606a2102200941016a2109200841206a2108200a417f4a0d000b2009417f6a21070b02402006450d002006417f6a2106200520074102746a41a8086a2802002105410021020c0a0b200441086a41186a2202200441f0026a41186a290300370300200441086a41106a2208200441f0026a41106a290300370300200441086a41086a2209200441f0026a41086a290300370300200420042903f0023703082001200128020841016a360208200441c0006a41186a220b2002290300370300200441c0006a41106a220a2008290300370300200441c0006a41086a220820092903003703002004200429030837034020044180026a41386a2209200341386a29030037030020044180026a41306a220c200341306a29030037030020044180026a41286a220d200341286a29030037030020044180026a41206a220e200341206a29030037030020044180026a41186a220f200341186a29030037030020044180026a41106a2210200341106a29030037030020044180026a41086a2211200341086a290300370300200420032903003703800220052f01062212410b4f0d01200541086a2202200741016a22134105746a200220074105746a2202201220076b41057410f7021a200241186a200b290300370000200241106a200a290300370000200241086a200829030037000020022004290340370000200541e8026a220220134106746a200220074106746a2202200541066a22082f010020076b41067410f7021a200241386a2009290300370300200241306a200c290300370300200241286a200d290300370300200241206a200e290300370300200241186a200f290300370300200241106a2010290300370300200241086a20112903003703002002200429038002370300200820082f010041016a3b01000c0a0b200520094106746a22024180036a22082903002114200341206a2903002115200341286a2903002116200341306a2903002117200341386a2903002118200329030021192003290308211a2003290310211b2008200341186a290300370300200241f8026a2208290300211c2008201b370300200241f0026a2208290300211b2008201a370300200241e8026a2208290300211a20082019370300200241a0036a220829020021192008201837020020024198036a220829020021182008201737020020024190036a220829020021172008201637020020024188036a2202290200211620022015370200200041306a2018370300200041286a2017370300200041206a2016370300200041386a20193703002000201c3703102000201b3703082000201a370300200041186a2014370300200441800c6a24000f0b41a8081013221d450d04201d41003b0106201d4100360200201d41086a200441b0036a41a00810f6022108200441b0036a41086a2209200541f0056a290300370300200441b0036a41106a220b200541f8056a290300370300200441b0036a41186a220a20054180066a290300370300200441b0036a41206a220c20054188066a290300370300200441b0036a41286a220d20054190066a290300370300200441b0036a41306a220e20054198066a290300370300200441b0036a41386a220f200541a0066a2903003703002004200541ca016a2d00003a00ea02200420052f00c8013b01e802200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703b003200541cb016a280000211e200541cf016a280000211f200541d3016a2800002120200541d7016a28000021212008200541e8016a200541066a22102f010041796a220241057410f6022108201d41e8026a200541a8066a200241067410f6022111201041063b0100201d20023b0106200420042d00ea023a00d602200420042f01e8023b01d402200420042903d8023703c002200420042900dd023700c502200441f0026a41386a200f290300370300200441f0026a41306a200e290300370300200441f0026a41286a200d290300370300200441f0026a41206a200c290300370300200441f0026a41186a200a290300370300200441f0026a41106a200b290300370300200441f0026a41086a2009290300370300200420042903b0033703f00202400240200741064b0d00200541086a2202200741016a22094105746a200220074105746a2202200541066a22082f010020076b41057410f7021a200241186a200441c0006a41186a290300370000200241106a200441c0006a41106a290300370000200241086a200441c0006a41086a29030037000020022004290340370000200541e8026a220220094106746a200220074106746a220220082f010020076b41067410f7021a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b20082007417a6a220b4105746a2008200741796a22094105746a2208200241ffff037120096b41057410f7021a200841186a200441c0006a41186a290300370000200841106a200441c0006a41106a290300370000200841086a200441c0006a41086a290300370000200820042903403700002011200b4106746a201120094106746a2202201d41066a22082f010020096b41067410f7021a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b4101210b200820082f010041016a3b01004102210f200441e8016a41026a220220042d00d6023a00004108211120044190016a41086a2222200441f0026a41086a22232903003703004110212420044190016a41106a2225200441f0026a41106a22262903003703004118211220044190016a41186a2227200441f0026a41186a22282903003703004120212920044190016a41206a222a200441f0026a41206a222b2903003703004128212c20044190016a41286a222d200441f0026a41286a222e2903003703004130212f20044190016a41306a2230200441f0026a41306a22312903003703004138213220044190016a41386a2233200441f0026a41386a2234290300370300200420042f01d4023b01e801200420042903c00237038001200420042900c50237008501200420042903f00237039001200441c0006a41386a22352033290300370300200441c0006a41306a22362030290300370300200441c0006a41286a2237202d290300370300200441c0006a41206a2238202a290300370300200441c0006a41186a22392027290300370300200441c0006a41106a223a2025290300370300200441c0006a41086a223b20222903003703002004413c6a41026a223c20022d00003a000020042004290390013703402004200429038001370328200420042900850137002d200420042f01e8013b013c2005280200220d450d0120052f0104213d41ffff03213e410a213f41d80821404100214141d008214241ca01214341e001214441cb01214541cf01214641d301214741d701214841a0062149419806214a419006214b418806214c418006214d41f805214e41f005214f41e801215041062110417921514105211341a806215241e802215341c408215441a8082155417a215641ac0821574104210c416c215841900821590c060b200441fc016a200f6a225e203c2d00003a0000200420042f013c3b01fc01200420042903283703e8012004200429002d3700ed0120044180026a20326a225f203529030037030020044180026a202f6a2260203629030037030020044180026a202c6a2261203729030037030020044180026a20296a2262203829030037030020044180026a20126a2263203929030037030020044180026a20246a2264203a29030037030020044180026a20116a2265203b2903003703002004200429034037038002203d203e712107200d2f01062202203f4d0d0120401013220a450d02200a20413b0106200a2041360200200a20116a200441b0036a204210f60221082004200d20436a2d00003a00ea022004200d2f00c8013b01e8022004200d2900db013703d8022004200d20446a2900003700dd02200d20456a280000215a200d20466a280000215d200d20476a280000215c200d20486a280000215b200441b0036a20326a2266200d20496a290300370300200441b0036a202f6a2267200d204a6a290300370300200441b0036a202c6a2268200d204b6a290300370300200441b0036a20296a2269200d204c6a290300370300200441b0036a20126a226a200d204d6a290300370300200441b0036a20246a226b200d204e6a290300370300200441b0036a20116a226c200d204f6a2903003703002004200d2903e8053703b0032008200d20506a200d20106a226d2f0100220920516a220220137410f602216e200a20536a200d20526a200220107410f602216f200a20556a200d20546a200920566a220e200f7410f6022170206d20103b0100200a20023b01060240200e450d00410021022070210803402008280200220920023b01042009200a3602002008200c6a2108200e2002200b6a2202470d000b0b2034206629030037030020312067290300370300202e2068290300370300202b20692903003703002028206a2903003703002026206b2903003703002023206c290300370300200420042903b0033703f002200420042f01e8023b01d402200420042d00ea023a00d602200420042900dd023700c502200420042903d8023703c002200441ec026a200f6a220e20042d00d6023a0000200420042f01d4023b01ec02200420042903c00237038001200420042900c5023700850120662034290300370300206720312903003703002068202e2903003703002069202b290300370300206a2028290300370300206b2026290300370300206c2023290300370300200420042903f0023703b00302400240203d203e71223d20104b0d00200d20116a22022007200b6a22082013746a200220072013746a2202206d2f0100220920076b227020137410f7021a2002202136000f2002202036000b2002201f3600072002201e3600032002200f6a205e2d00003a0000200220042f01fc013b0000200220042903e801370013200220126a20042900ed01370000200d20536a220220082010746a200220072010746a2202207020107410f7021a200220326a205f2903003703002002202f6a20602903003703002002202c6a2061290300370300200220296a2062290300370300200220126a2063290300370300200220246a2064290300370300200220116a20652903003703002002200429038002370300206d2009200b6a22023b0100200d20556a22092007200f7422706a20116a20092008200f746a22092002203e7120086b200f7410f7021a2009201d360200203d206d2f010022094f0d01200d20706a20576a21020340200228020022082007200b6a22073b01042008200d3602002002200c6a210220092007470d000c020b0b206e200720566a22092013746a206e200720516a22022013746a2208200a20106a226d2f010020026b20137410f7021a200820126a20042900ed013700002008202136000f2008202036000b2008201f3600072008201e3600032008200f6a205e2d00003a0000200820042f01fc013b0000200820042903e801370013206f20092010746a206f20022010746a2208206d2f010020026b20107410f7021a200820326a205f2903003703002008202f6a20602903003703002008202c6a2061290300370300200820296a2062290300370300200820126a2063290300370300200820246a2064290300370300200820116a20652903003703002008200429038002370300206d206d2f0100200b6a22083b010020702007200f74223d6a20586a20702009200f746a226d2008203e71220720096b200f7410f7021a206d201d360200200920074b0d00200a203d6a20596a21080340200828020022092002200b6a22023b01042009200a3602002008200c6a210820072002470d000b0b200441e4016a200f6a2202200e2d00003a00002022206c2903003703002025206b2903003703002027206a290300370300202a2069290300370300202d20682903003703002030206729030037030020332066290300370300200420042f01ec023b01e40120042004290380013703d00120042004290085013700d501200420042903b0033703900120352033290300370300203620302903003703002037202d2903003703002038202a29030037030020392027290300370300203a2025290300370300203b2022290300370300203c20022d00003a00002004200429039001370340200420042903d001370328200420042900d50137002d200420042f01e4013b013c0240200d2802002202450d00200d2f0104213d205a211e205b2121205c2120205d211f2002210d200a211d410121020c070b205a211e205b2121205c2120205d211f200a211d0b41d80810132202450d03200241003b010620024100360200200241086a200441b0036a41d00810f60221092002200128020022083602a808200120023602002001200128020441016a360204200841003b010420082002360200200920022f0106220b4105746a220820042f013c3b00002008202136000f2008202036000b2008201f3600072008201e36000320082004290328370013200841026a2004413c6a41026a2d00003a00002002200b4106746a220941a0036a200441f8006a29030037030020094198036a200441f0006a29030037030020094190036a200441e8006a29030037030020094188036a200441e0006a29030037030020094180036a200441c0006a41186a290300370300200941f8026a200441d0006a290300370300200941f0026a200441c0006a41086a290300370300200941e8026a2004290340370300200841186a200429002d370000200241a8086a200b41016a22084102746a201d360200200220083b0106201d20083b0104201d20023602000c060b200d41086a2208200741016a22094105746a200820074105746a2208200220076b220b41057410f7021a2008202136000f2008202036000b2008201f3600072008201e360003200841026a200441fc016a41026a2d00003a0000200820042f01fc013b0000200820042903e801370013200841186a20042900ed01370000200d41e8026a220820094106746a200820074106746a2208200b41067410f7021a200841386a20044180026a41386a290300370300200841306a20044180026a41306a290300370300200841286a20044180026a41286a290300370300200841206a20044180026a41206a290300370300200841186a20044180026a41186a290300370300200841106a20044180026a41106a290300370300200841086a20044180026a41086a2903003703002008200429038002370300200d41066a2208200241016a22023b0100200d41a8086a220b20074102746a41086a200b20094102746a220b200241ffff037120096b41027410f7021a200b201d360200203d41ffff037120082f010022024f0d05201d20093b0104201d200d36020020092002460d052002417f6a210b200d2009417f6a22024102746a41b0086a2108034020082802002209200241026a3b01042009200d360200200841046a2108200b200241016a2202470d000c060b0b41d80841081014000b41a80841081014000b41d80841081014000b410121020c000b0b20004100360210200441800c6a24000bb70c060b7f027e087f027e1c7f027e230041206b22032400024020014102490d00200041206a21042002280200280200280200220528020022062107200528020422082109410021050340024002400240024002400240024002400240024020050e0400010203030b200741086a210b20072f0106220a41057421054100210c024002400240024003402005450d012004200b412010f802220d450d02200541606a2105200c41016a210c200b41206a210b200d417f4a0d000b200c417f6a210a0b2009450d012009417f6a21092007200a4102746a41a8086a2802002107410021050c0c0b200741e8026a200c4106746a2205450d00200541086a290300210e2005290300210f2005280218220b450d0120052802102105200b41306c210b0340200541086a290300200e7c2005290300220e200f7c220f200e54ad7c210e200541306a2105200b41506a220b0d000c020b0b4200210f4200210e0b4108211041052111417f21124102211341a80821144120211541602116410121170c040b200620106a210b20062f0106220a20117421054100210c024002400240024003402005450d012000200b201510f802220d450d02200520166a2105200c20176a210c200b20156a210b200d20124a0d000b200c20126a210a0b2008450d01200820126a21082006200a2013746a20146a2802002106410121050c0b0b200641e8026a200c4106746a2205450d00200541086a2903002118200529030021192005280218220b450d0120052802102105200b41306c210b0340200541086a29030020187c2005290300221820197c2219201854ad7c2118200541306a2105200b41506a220b0d000c020b0b42002119420021180b200f20195a200e20185a200e2018511b0d0920002900002118200020042900003700004118211a200341186a221b200041186a22052900003703004110211c200341106a221d200041106a220b2900003703004108211e200341086a221f200041086a22202900003703002020200441086a290000370000200b200441106a2900003700002005200441186a290000370000200320183703004101212120014103490d02410121224102212341052124417f212541a80821264178212741702128416821294160212a412021204106212b41e802212c4130212d4150212e4102212f41012121410221050c080b202f20226a21302000202f2024746a2131200228020028020028020022052802002232210a20052802042233213402400340200a201e6a210b200a2f0106223520247421054100210c0240024003402005450d012031200b202010f802220d450d022005202a6a2105200c20226a210c200b20206a210b200d20254a0d000b200c20256a21350b2034450d02203420256a2134200a20352023746a20266a280200210a0c010b0b200a202c6a200c202b746a2205450d002005201e6a2903002136200529030021372005280218220b450d0520052802102105200b202d6c210b03402005201e6a29030020367c2005290300223620377c2237203654ad7c21362005202d6a2105200b202e6a220b0d000c080b0b42002137420021360c050b2032201e6a210b20322f0106220a20247421054100210c024002400240024003402005450d012003200b202010f802220d450d022005202a6a2105200c20226a210c200b20206a210b200d20254a0d000b200c20256a210a0b2033450d01203320256a21332032200a2023746a20266a2802002132410321050c090b2032202c6a200c202b746a2205450d002005201e6a2903002118200529030021192005280218220b450d0120052802102105200b202d6c210b03402005201e6a29030020187c2005290300221820197c2219201854ad7c21182005202d6a2105200b202e6a220b0d000c020b0b42002119420021180b203720195a203620185a20362018511b0d00203120276a2031201a6a290000370000203120286a2031201c6a290000370000203120296a2031201e6a2900003700002031202a6a2031290000370000202f21212030212f20302001490d020b200020214105746a220520032903003700002005201a6a201b2903003700002005201c6a201d2903003700002005201e6a201f2903003700000c060b410121050c040b410221050c030b410321050c020b410321050c010b410321050c000b0b200341206a24000b890a030f7f017e017f230041c0016b220224000240024020012802202203450d00200141206a2003417f6a36020020012802082104200128020c2205200128020422062f01064f0d01200241186a2207200620054105746a220341206a290000370300200241106a2208200341186a290000370300200241086a2209200341106a2900003703002002200341086a290000370300200241206a41386a220a200620054106746a220341a0036a290300370300200241206a41306a220b20034198036a290300370300200241206a41286a220c20034190036a290300370300200241206a41206a220d20034188036a290300370300200241206a41186a220e20034180036a290300370300200241206a41106a220f200341f8026a290300370300200241206a41086a2210200341f0026a290300370300200341e8026a29030021112001410c6a200541016a360200200141086a2004360200200141046a200636020020022011370320200241e0006a41186a2007290300370300200241e0006a41106a2008290300370300200241e0006a41086a2009290300370300200241e0006a41286a2010290300370300200241e0006a41306a200f290300370300200241e0006a41386a200e290300370300200241a0016a200d290300370300200241a8016a200c290300370300200241b0016a200b290300370300200241b8016a200a2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f6021a200241c0016a24000f0b20004100360230200241c0016a24000f0b200128020021070240024020062802002203450d00200741016a210720063301044220862004ad8421110c010b2004ad21110b200610162011a72105024002402011422088a7220420032f01064f0d00200321060c010b03400240024020032802002206450d00200741016a210720033301044220862005ad8421110c010b2005ad21110b200310162011a72105200621032011422088a7220420062f01064f0d000b0b200241186a2208200620044105746a220341206a290000370300200241106a2209200341186a290000370300200241086a220a200341106a2900003703002002200341086a290000370300200241206a41386a220b200620044106746a220341a0036a290300370300200241206a41306a220c20034198036a290300370300200241206a41286a220d20034190036a290300370300200241206a41206a220e20034188036a290300370300200241206a41186a220f20034180036a290300370300200241206a41106a2210200341f8026a290300370300200241206a41086a2212200341f0026a2903003703002002200341e8026a290300370320200620044102746a41ac086a2802002103024020074101460d00410120076b2106034020032802a8082103200641016a22060d000b0b200141003602002001410c6a4100360200200141086a2005360200200141046a2003360200200241e0006a41186a2008290300370300200241e0006a41106a2009290300370300200241e0006a41086a200a290300370300200241e0006a41286a2012290300370300200241e0006a41306a2010290300370300200241e0006a41386a200f290300370300200241a0016a200e290300370300200241a8016a200d290300370300200241b0016a200c290300370300200241b8016a200b2903003703002002200229030037036020022002290320370380012000200241e0006a41e00010f6021a200241c0016a24000b13002000411136020420004190c1c2003602000b8b1605017f017e037f017e067f230041c0066b22042400200441e8036a200141f80110f6021a200441c0026a200441e8036a109b0202400240024020042802c0024101470d00200041086a20042902c4023702002000420137020020032802002200450d020c010b200441c0026a41086a2903002105200441a8016a200441c0026a41106a41980110f6021a20042005370308200441086a41086a200441a8016a41980110f6022106200441a8016a41086a22014200370300200442003703a8014190e6c2004117200441a8016a1002200441e8036a41086a2001290300370300200420042903a8013703e80341002101024002400240024002400240024002400240024002400240024002400240200441e8036a411041acf1c300410041001000417f460d00200441003602c002200441e8036a4110200441c0026a41044100100041016a41044d0d0120042802c00221010b41042107200120026a41808080024b0d0d410021080240200441106a410020042903084201511b2201450d002001450d000240024002402001109c02220520012903202209520d004103210720012002109d020d11411310132207450d0d2007410f6a410028009ee942360000200741086a4100290097e9423700002007410029008fe94237000020074113413310152207450d0e200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200441a8016a41086a220a4200370300200442003703a80120074133200441a8016a1002200441e8036a41086a200a290300370300200420042903a8013703e803200441e8036a411041acf1c300410041001000417f460d01200442003703c002200441e8036a4110200441c0026a41084100100041016a41084d0d0820042903c00242017c2105200710164113210a4113101322070d020c0f0b4101410220092005541b21070c100b42012105200710164113210a411310132207450d0d0b2007410f6a410028009ee942360000200741086a4100290097e9423700002007410029008fe9423700002007200a413310152207450d0d200720012900003700132007412b6a200141186a290000370000200741236a200141106a2900003700002007411b6a200141086a290000370000200441a8016a41086a22014200370300200442003703a80120074133200441a8016a1002200441e8036a41086a2001290300370300200420042903a8013703e803200420053703c002200441e8036a4110200441c0026a41081001200710160b024020032802002207450d00200341086a28020021012003280204210b4100210c024041f9e6c200411041acf1c300410041001000417f460d00200441003602e80341f9e6c2004110200441e8036a41044100100041016a41044d0d0520042802e803210c0b411410132208450d06200841106a41002800f9e742360000200841086a41002900f1e742370000200841002900e9e7423700002008411441281015220a450d07200a200c360014200441a8016a41086a22084200370300200442003703a801200a4118200441a8016a1002200441e8036a41086a2008290300370300200420042903a8013703e803200441003602c802200442013703c002200420013602a801200441a8016a200441c0026a1018024002400240024020042802c402220d20042802c802220c6b20014f0d00200c20016a2208200c490d0c200d410174220e20082008200e491b220e4100480d0c200d450d0120042802c002200d200e101522080d020c0d0b20042802c00221080c020b200e10132208450d0b0b2004200e3602c402200420083602c002200e210d0b2008200c6a2007200110f6021a200441e8036a41102008200c20016a10010240200d450d00200810160b200a101641012108200b450d00200710160b20042903082105200441e8036a200441306a41f80010f6021a200441c0026a200441e8036a41086a41f00010f6021a200441a8016a41186a220a200641186a290300370300200441a8016a41106a220c200641106a290300370300200441a8016a41086a220d200641086a290300370300200420062903003703a80141002101024020054201520d0020044180066a41186a200a29030037030020044180066a41106a200c29030037030020044180066a41086a200d290300370300200420042903a80137038006410121010b200441a8016a200441c0026a41f00010f6021a200441a0066a41186a220620044180066a41186a220a290300370300200441a0066a41106a220c20044180066a41106a220d290300370300200441a0066a41086a220b20044180066a41086a220e29030037030020042004290380063703a006200441c0026a200441a8016a41f00010f6021a200441e0056a41186a220f2006290300370300200441e0056a41106a2206200c290300370300200441e0056a41086a220c200b290300370300200420042903a0063703e005200441e8036a200441c0026a41f00010f6021a200a200f290300370300200d2006290300370300200e200c290300370300200420042903e005370380064102210602402001450d00200441a0066a41186a20044180066a41186a290300370300200441a0066a41106a20044180066a41106a290300370300200441a0066a41086a20044180066a41086a29030037030020042004290380063703a006410121060b200441b1016a200441a0066a41086a290300370000200441b9016a200441a0066a41106a290300370000200441c1016a200441b8066a290300370000200420063a00a801200420042903a0063700a9012004200441e8036a200441a8016a1081012004280204210620042802002101200441003a00e803200420014100473a00e903200441e8036a105a0240024041f9e6c200411041acf1c300410041001000417f460d00200441003602e80341f9e6c2004110200441e8036a41044100100041016a41044d0d0320042802e80341016a210a0c010b4101210a0b200441a8016a41086a220c4200370300200442003703a8014190e6c2004117200441a8016a1002200441e8036a41086a200c290300370300200420042903a8013703e80302400240200441e8036a411041acf1c300410041001000417f460d00200441003602a801200441e8036a4110200441a8016a41044100100041016a41044d0d0420042802a801210c0c010b4100210c0b2004200a3602e80341f9e6c2004110200441e8036a41041001200441a8016a41086a220a4200370300200442003703a8014190e6c2004117200441a8016a1002200441e8036a41086a200a290300370300200420042903a8013703e8032004417f2002200c6a220a200a2002491b3602a801200441e8036a4110200441a8016a410410010240024002402001450d0002402006411b470d002001418dd5c200460d022001418dd5c200411b10f802450d020b200041086a2006360200200041046a200136020020004100360200200745200872450d020c120b20004100360204200041086a200636020020004100360200200745200872450d010c110b200041046a4104360200200041013602002007452008720d100b200341046a280200450d0f200710160c0f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411441011014000b412841011014000b1010000b200e41011014000b411341011014000b413341011014000b200a41011014000b413341011014000b2000410136020020002007360204200441386a10d30120032802002200450d010b200341046a280200450d0020001016200441c0066a24000f0b200441c0066a24000bd31205017f037e017f037e097f230041e0036b2202240002400240200129037022034202520d00200220014188016a41f00010f6021a420021030c010b200241a8016a200141e4006a290000370300200241a0016a200141dc006a29000037030020024198016a200141d4006a29000037030020024190016a200141cc006a29000037030020024188016a200141c4006a290000370300200241f0006a41106a2001413c6a290000370300200241f0006a41086a200141346a2900003703002002200129002c37037020012903002105200241b0016a41106a200141f0006a220641106a290300370300200241b0016a41086a200641086a290300370300200220062903003703b00120014180016a2903002107200129037821084200210920024190026a41086a220642003703002002420037039002419be8c200410d20024190026a1002200241086a20062903003703002002200229039002370300420021040240024002400240024002400240024002400240024002402002411041acf1c300410041001000417f460d0020024200370390022002411020024190026a41084100100041016a41084d0d0120022903900221040b024020034201520d002008500d022004200720072004541b2203200320077d2008827d21090b20024190026a200910a102200241e4016a41026a220a20022d0092023a0000200241086a220b20024190026a41136a2900003703002002410d6a220620024190026a41186a220c290000370000200220022f0190023b01e4012002200229009b02370300200228009302210d200228009702210e200241c8016a410d6a220f2006290000370000200241c8016a41086a2210200b290300370300200220022903003703c80120024190026a41206a200141086a220641206a280200360200200c200641186a29020037030020024190026a41106a200641106a29020037030020024190026a41086a220c200641086a2902003703002002200629020037039002200220024190026a10412002418c026a41026a221120022d00033a0000200241c0036a41086a2212200241146a290200370300200241c0036a41106a2002411c6a290200370300200220022f00013b018c0220022002410c6a2902003703c003200b28020021062002280204210b024020022d00004101470d002000200b36020420004101360200200041086a200636020020014188016a10d301200241e0036a24000f0b200241e8016a41136a2012290300370000200241e8016a41186a200241c0036a410d6a290000370000200220022f018c023b01e801200220063600ef012002200b3600eb01200220022903c0033700f301200220112d00003a00ea012002200537039002200c20014188016a41f00010f6022111200241a7036a200e360000200241a3036a200d36000020024190026a4188016a200241b0016a41106a29030037030020024190036a2201200241b0016a41086a290300370300200241a2036a200a2d00003a0000200241ab036a20022903c801370000200241b3036a2010290300370000200241b8036a200f290000370000200220022903b00137038803200220022f01e4013b01a003200241003602082002420137030020024190026a200210b1012011200210b0010240024002400240024002402002290388034201520d0020012903002203420c882204420120044201561b22044200510d0820024198036a290300200480210420022802042206200241086a28020022016b41024f0d01200141026a220b2001490d0e20064101742201200b200b2001491b22014100480d0e2006450d0420022802002006200110152206450d050c0b0b02402002280204200241086a2802002201470d00200141016a22062001490d0e2001410174220b20062006200b491b220b4100480d0e2001450d0220022802002001200b10152206450d030c090b200228020021060c090b200228020021060c0a0b200b101322060d060b200b41011014000b2001101322060d060b200141011014000b41b6e7c20041331029000b419ceec3001038000b41d484c0001038000b2002200b36020420022006360200200241086a28020021010b200241086a200141016a360200200620016a41003a00000c020b2002200136020420022006360200200241086a28020021010b200241086a200141026a360200200620016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b0240024002402002280204220a200241086a28020022016b41204f0d00200141206a22062001490d03200a4101742201200620062001491b220b4100480d03200a450d012002280200200a200b10152206450d020c040b200228020021060c040b200b101322060d020b200b41011014000b1010000b2002200b36020420022006360200200241086a2802002101200b210a0b200620016a220b200241a0036a220c290000370000200b41186a200c41186a290000370000200b41106a200c41106a290000370000200b41086a200c41086a2900003700000240024002400240200141206a2201418102490d00200241186a220b4200370300200241106a220c4200370300200241086a220d4200370300200242003703002006200120021004200241c0036a41186a200b290300370300200241c0036a41106a200c290300370300200241c0036a41086a200d290300370300200220022903003703c003200241c0036a4120200241f0006a200241e8016a1007450d01200241c0036a4120200241f0006a200241e8016a1008452101200a0d020c030b20062001200241f0006a200241e8016a1007450d0020062001200241f0006a200241e8016a1008452101200a0d010c020b41012101200a450d010b200610160b02402001450d00200241c0036a41186a200241e8016a41186a290300370300200241c0036a41106a200241e8016a41106a290300370300200241c0036a41086a200241e8016a41086a290300370300200220022903e8013703c00320022903900221042002201141f00010f6021a420121030c010b200041aa81c30036020420004101360200200041086a411a360200201110d301200241e0036a24000f0b200041086a2003370300200041306a2004370300200041106a20022903c003370300200041186a200241c0036a41086a290300370300200041206a200241c0036a41106a290300370300200041286a200241c0036a41186a290300370300200041386a200241f00010f6021a20004100360200200241e0036a24000bb00202027f017e230041206b2201240002400240411310132202450d002002410f6a410028009ee942360000200241086a4100290097e9423700002002410029008fe94237000020024113413310152202450d01200220002900003700132002412b6a200041186a290000370000200241236a200041106a2900003700002002411b6a200041086a29000037000042002103200141106a41086a220042003703002001420037031020024133200141106a1002200141086a200029030037030020012001290310370300024002402001411041acf1c300410041001000417f460d002001420037031020014110200141106a41084100100041016a41084d0d01200129031021030b20021016200141206a240020030f0b41b6e7c20041331029000b411341011014000b413341011014000b950804017f017e037f067e230041c0006b2202240042002103200241306a41086a220442003703002002420037033041d895c300411b200241306a1002200241206a41086a220520042903003703002002200229033037032002400240024002400240024002400240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002206417f460d022006410f4d0d02200241386a2903002107200229033021080c010b42002108420021070b200442003703002002420037033041f395c300411b200241306a1002200520042903003703002002200229033037032002400240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002204417f460d032004410f4d0d03200241386a2903002109200229033021030c010b420021090b200241106a200320092001ad420010fa02200241106a41086a290300210a2002290310210b411410132204450d03200441106a410028009e9643360000200441086a410029009696433700002004410029008e964337000020044114413410152204450d04200420002900003700142004412c6a200041186a290000370000200441246a200041106a2900003700002004411c6a200041086a29000037000042002103200241306a41086a220142003703002002420037033020044134200241306a1002200241206a41086a20012903003703002002200229033037032002400240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002201417f460d042001410f4d0d04200241386a2903002109200229033021030c010b420021090b2004101641e391c3002104024002402003200b20087c22087d220c2003562009200a20077c2008200b54ad7c220b7d2003200854ad7d220320095620032009511b0d00200241306a41086a220442003703002002420037033041bd95c300411b200241306a1002200241206a41086a2004290300370300200220022903303703200240200241206a411041acf1c300410041001000417f460d002002420037033820024200370330200241206a4110200241306a4110410010002204417f460d082004410f4d0d08418092c3002104200c2002290330542003200241386a29030022095420032009511b0d010b200241086a20004101200c200310a30120022802082204450d010b200241c0006a240020040f0b2000200c20031086012002200b37033820022008370330200241306a105e200241c0006a240041000f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411441011014000b413441011014000b41b6e7c20041331029000b130020004105360204200041d8d6c2003602000b13002000410d36020420004180dcc2003602000b130020004107360204200041a4e0c2003602000bf60201037f230041306b2202240002400240411010132203450d00200341086a41002900fae842370000200341002900f2e84237000020034110412010152203450d0120032001370010200241106a41086a220442003703002002420037031020034118200241106a1002200241086a2004290300370300200220022903103703000240024002402002411041acf1c300410041001000417f460d00200241106a41186a4200370300200241106a41106a4200370300200241186a42003703002002420037031020024110200241106a4120410010002204417f460d022004411f4d0d0220002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700000c010b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b20031016200241306a24000f0b41b6e7c20041331029000b411041011014000b412041011014000be21701267f230041900d6b220324002003410036020041f9e6c2004110200341041001200341800d6a41086a22044200370300200342003703800d419be8c200410d200341800d6a1002200341086a22052004290300370300200320032903800d370300200320003703e00c20034110200341e00c6a4108100120044200370300200342003703800d4183eec2004111200341800d6a100220052004290300370300200320032903800d3703002003411020014120100102400240411010132204450d00200441086a41002900fae842370000200441002900f2e84237000020044110412010152205450d0120052000427f7c370010200341800d6a41086a22044200370300200342003703800d20054118200341800d6a1002200341086a22062004290300370300200320032903800d370300200341102001412010012005101620044200370300200342003703800d41a8e8c2004115200341800d6a100220062004290300370300200320032903800d3703002003411020024120100120044200370300200342003703800d419be8c200410d200341800d6a100220062004290300370300200320032903800d37030002402003411041acf1c300410041001000417f460d00200342003703e00c0240024020034110200341e00c6a41084100100041016a41084d0d0020032903e00c4200510d02200341800d6a41086a22044200370300200342003703800d419be8c200410d200341800d6a1002200341086a2004290300370300200320032903800d37030041002107427f210002402003411041acf1c300410041001000417f460d00200342003703e00c20034110200341e00c6a41084100100041016a41084d0d0220032903e00c427f7c21000b2003410041e00c10f502210641002108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f41002120410021214100212241002123410021244100212541002126410021270340200641e00c6a42002000427f7c2000501b220010a10220062027220541ff01714103704105746a220320062902e00c370000200341186a200641e00c6a41186a290200370000200341106a200641e00c6a41106a290200370000200341086a200641e00c6a41086a290200370000200541016a21274100210441002102024003402005200541036e2201417d6c6a4102470d01200620046a220341df006a2d000022072003411f6a2d000022287120072028722003413f6a2d000071722126200341de006a2d000022072003411e6a2d000022287120072028722003413e6a2d000071722125200341dd006a2d000022072003411d6a2d000022287120072028722003413d6a2d000071722124200341dc006a2d000022072003411c6a2d000022287120072028722003413c6a2d000071722123200341db006a2d000022072003411b6a2d000022287120072028722003413b6a2d000071722122200341da006a2d000022072003411a6a2d000022287120072028722003413a6a2d000071722121200341d9006a2d00002207200341196a2d00002228712007202872200341396a2d000071722120200341d8006a2d00002207200341186a2d00002228712007202872200341386a2d00007172211f200341d7006a2d00002207200341176a2d00002228712007202872200341376a2d00007172211e200341d6006a2d00002207200341166a2d00002228712007202872200341366a2d00007172211d200341d5006a2d00002207200341156a2d00002228712007202872200341356a2d00007172211c200341d4006a2d00002207200341146a2d00002228712007202872200341346a2d00007172211b200341d3006a2d00002207200341136a2d00002228712007202872200341336a2d00007172211a200341d2006a2d00002207200341126a2d00002228712007202872200341326a2d000071722119200341d1006a2d00002207200341116a2d00002228712007202872200341316a2d000071722118200341d0006a2d00002207200341106a2d00002228712007202872200341306a2d000071722117200341cf006a2d000022072003410f6a2d000022287120072028722003412f6a2d000071722116200341ce006a2d000022072003410e6a2d000022287120072028722003412e6a2d000071722115200341cd006a2d000022072003410d6a2d000022287120072028722003412d6a2d000071722114200341cc006a2d000022072003410c6a2d000022287120072028722003412c6a2d000071722113200341cb006a2d000022072003410b6a2d000022287120072028722003412b6a2d000071722112200341ca006a2d000022072003410a6a2d000022287120072028722003412a6a2d000071722111200341c9006a2d00002207200341096a2d00002228712007202872200341296a2d000071722110200341c8006a2d00002207200341086a2d00002228712007202872200341286a2d00007172210f200341c7006a2d00002207200341076a2d00002228712007202872200341276a2d00007172210e200341c6006a2d00002207200341066a2d00002228712007202872200341266a2d00007172210d200341c5006a2d00002207200341056a2d00002228712007202872200341256a2d00007172210c200341c4006a2d00002207200341046a2d00002228712007202872200341246a2d00007172210b200341c3006a2d00002207200341036a2d00002228712007202872200341236a2d00007172210a200341c2006a2d00002207200341026a2d00002228712007202872200341226a2d000071722109200341c1006a2d00002207200341016a2d00002228712007202872200341216a2d000071722108200341c0006a2d0000220720032d00002228712007202872200341206a2d000071722107200441800c460d01200620042001410574200541096e41e0006c6b6a6a220341ff006a20263a0000200341fe006a20253a0000200341fd006a20243a0000200341fc006a20233a0000200341fb006a20223a0000200341fa006a20213a0000200341f9006a20203a0000200341f8006a201f3a0000200341f7006a201e3a0000200341f6006a201d3a0000200341f5006a201c3a0000200341f4006a201b3a0000200341f3006a201a3a0000200341f2006a20193a0000200341f1006a20183a0000200341f0006a20173a0000200341ef006a20163a0000200341ee006a20153a0000200341ed006a20143a0000200341ec006a20133a0000200341eb006a20123a0000200341ea006a20113a0000200341e9006a20103a0000200341e8006a200f3a0000200341e7006a200e3a0000200341e6006a200d3a0000200341e5006a200c3a0000200341e4006a200b3a0000200341e3006a200a3a0000200341e2006a20093a0000200341e1006a20083a0000200341e0006a20073a0000200441e0006a210420012105200241016a22024111490d000b0b202741d100470d000b200620263a00ff0c200620253a00fe0c200620243a00fd0c200620233a00fc0c200620223a00fb0c200620213a00fa0c200620203a00f90c2006201f3a00f80c2006201e3a00f70c2006201d3a00f60c2006201c3a00f50c2006201b3a00f40c2006201a3a00f30c200620193a00f20c200620183a00f10c200620173a00f00c200620163a00ef0c200620153a00ee0c200620143a00ed0c200620133a00ec0c200620123a00eb0c200620113a00ea0c200620103a00e90c2006200f3a00e80c2006200e3a00e70c2006200d3a00e60c2006200c3a00e50c2006200b3a00e40c2006200a3a00e30c200620093a00e20c200620083a00e10c200620073a00e00c200641800d6a41086a22034200370300200642003703800d418ae8c2004111200641800d6a1002200641086a22042003290300370300200620062903800d37030020064110200641e00c6a4120100120034200370300200642003703800d4182e9c200410d200641800d6a100220042003290300370300200620062903800d370300200641101003200641900d6a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b4194eec2001038000b411041011014000b412041011014000b9e0905027f017e037f027e097f230041d0006b220124004108210242002103200141186a41086a220442003703002001420037031841fde7c200410d200141186a1002200141086a41086a2004290300370300200120012903183703084100210502400240024002400240024002400240024002400240200141086a411041acf1c300410041001000417f460d00200142103702442001200141086a360240200141186a200141c0006a102120012802182202450d05200129021c2103200141186a41206a200041206a290300370300200141186a41186a200041186a290300370300200141186a41106a200041106a290300370300200141186a41086a200041086a290300370300200120002903003703182003422088a722052003a7470d02200141186a210020052003a7460d010c070b200141186a41206a200041206a290300370300200141186a41186a200041186a290300370300200141186a41106a200041106a2903003703002004200041086a29030037030020012000290300370318200141186a210041004200a7470d060b200541016a22042005490d0720054101742206200420042006491bad220742287e2208422088a70d072008a722044100480d072005450d012002200541286c200410152202450d020c040b200141186a21000c050b2004101322020d020b200441081014000b41b6e7c20041331029000b20034280808080708320078421030b2003422088a721050b2002200541286c22066a22042000290300370300200441206a200041206a290300370300200441186a200041186a290300370300200441106a200041106a290300370300200441086a200041086a290300370300200141186a41086a220942003703002001420037031841fde7c200410d200141186a1002200141086a41086a20092903003703002001200129031837030820014100360248200142013703402001200541016a220a360218200141186a200141c0006a101802400240200a450d00200641286a210b200141c0006a41086a220c28020021002001280244210d200221060340200141186a2006107d2001280218210e0240024002400240200d20006b2009280200220f4f0d002000200f6a22042000490d07200d4101742210200420042010491b22114100480d07200d450d012001280240200d2011101522100d020c080b2000200f6a2104200128024021100c020b201110132210450d060b20012011360244200120103602402011210d0b200c2004360200201020006a200e200f10f6021a0240200128021c450d00200e10160b200641286a210620042100200b41586a220b0d000c020b0b200141c0006a41086a28020021042001280244210d200128024021100b200141086a41102010200410010240200d450d00201010160b0240200a450d00200541286c41286a2104200221000340024020002d00002206450d00024020064101470d00200041086a280200450d01200041046a2802001016200041286a2100200441586a22040d020c030b200041106a280200450d002000410c6a28020010160b200041286a2100200441586a22040d000b0b02402003a7450d00200210160b200141d0006a24000f0b1010000b201141011014000b130020004106360204200041a7efc2003602000bce0101047f230041206b2200240002400240024041f9e6c200411041acf1c300410041001000417f460d00200041003602104101210141f9e6c2004110200041106a41044100100041016a41044d0d022000280210210241f9e6c200411010030c010b410021010b200041106a41086a220342003703002000420037031041fbe5c2004115200041106a1002200041086a20032903003703002000200029031037030020002002410020011b36021020004110200041106a41041001200041206a24000f0b41b6e7c20041331029000b13002000410b360204200041b0efc2003602000b970101057f230041206b22022400200241186a22034200370300200241106a22044200370300200241086a22054200370300200242003703000240412010132206450d0020062002290300370000200042a0808080800437020420002006360200200641186a2003290300370000200641106a2004290300370000200641086a2005290300370000200241206a24000f0b412041011014000b3101017f0240410110132202450d00200042818080801037020420002002360200200241003a00000f0b410141011014000bd21206037f017e057f017e037f027e230041d0016b22012400200141b0016a41086a22024200370300200142003703b001418ae8c2004111200141b0016a100220014190016a41086a22032002290300370300200120012903b0013703900120014190016a4110100320024200370300200142003703b00141fbe5c2004115200141b0016a100220032002290300370300200120012903b0013703900120014190016a4110100320024200370300200142003703b0014190e6c2004117200141b0016a100220032002290300370300200120012903b0013703900120014190016a411010032001419be8c200410d10dd01200129030821042001280200210520024200370300200142003703b0014183eec2004111200141b0016a1002200141f0006a41086a2002290300370300200120012903b001370370024002400240024002400240024002400240200141f0006a411041acf1c300410041001000417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010002202417f460d022002411f4d0d0220014190016a41186a2206200141b0016a41186a220229030037030020014190016a41106a2207200141b0016a41106a220329030037030020014190016a41086a2208200141b0016a41086a2209290300370300200120012903b00137039001200141f0006a4110100320022006290300370300200320072903003703002009200829030037030020012001290390013703b001200141106a41186a2002290300370300200141106a41106a2003290300370300200141106a41086a2009290300370300200120012903b0013703100c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a2903003703002002200329030037030020012001290390013703b001200141106a41186a4200370300200141106a41106a4200370300200141106a41086a4200370300200142003703100b410821064200210a200141b0016a41086a22024200370300200142003703b00141fde7c200410d200141b0016a1002200141f0006a41086a2002290300370300200120012903b0013703700240200141f0006a411041acf1c300410041001000417f460d0020014210370294012001200141f0006a36029001200141b0016a20014190016a102120012802b0012206450d0420012902b401210a200141f0006a411010030b200141b0016a41086a22024200370300200142003703b00141a8e8c2004115200141b0016a1002200141f0006a41086a2002290300370300200120012903b00137037002400240200141f0006a411041acf1c300410041001000417f460d00200141c8016a4200370300200141b0016a41106a420037030020024200370300200142003703b001200141f0006a4110200141b0016a4120410010002202417f460d032002411f4d0d0320014190016a41186a2207200141b0016a41186a220229030037030020014190016a41106a2208200141b0016a41106a220329030037030020014190016a41086a220b200141b0016a41086a2209290300370300200120012903b00137039001200141f0006a4110100320022007290300370300200320082903003703002009200b29030037030020012001290390013703b001200141306a41186a2002290300370300200141306a41106a2003290300370300200141306a41086a2009290300370300200120012903b0013703300c010b200141b0016a41186a20014190016a41186a290300370300200141b0016a41106a20014190016a41106a290300370300200220014190016a41086a29030037030020012001290390013703b001200141306a41186a4200370300200141306a41106a4200370300200141306a41086a4200370300200142003703300b200141f0006a41186a22024200370300200141f0006a41106a22034200370300200141f0006a41086a2209420037030020014200370370200141f0006a1005200141d0006a41186a2002290300370300200141d0006a41106a2003290300370300200141d0006a41086a200929030037030020012001290370370350200141b0016a41186a2207200141106a41186a290300370300200141b0016a41106a2208200141106a41106a290300370300200141b0016a41086a220b200141106a41086a290300370300200120012903103703b00120024200370300200342003703002009420037030020014200370370200141b0016a41202004420020051b2204427f7c200141f0006a1006450d0620014190016a41186a2205200229030037030020014190016a41106a220c200329030037030020014190016a41086a220d20092903003703002001200129037037039001200220052903003703002003200c2903003703002009200d29030037030020012001290390013703702007200229030037030020082003290300370300200b2009290300370300200120012903703703b001024002400240200a422088220ea72202200aa7470d00200241016a22032002490d05200ea74101742209200320032009491bad220f42287e220e422088a70d05200ea722034100480d052002450d012006200241286c200310152206450d020c070b200a210f0c070b2003101322060d050b200341081014000b41b6e7c20041331029000b41b6e7c20041331029000b1010000b41b6e7c20041331029000b200a422088220ea721020b2006200241286c6a220241003a0000200241196a200141c8016a290300370000200241116a200141c0016a290300370000200241096a200141b8016a290300370000200220012903b001370001200241216a200128009001360000200241246a20014193016a280000360000200f42ffffffff0f83200e4220864280808080107c84210a0b2000200129031037001420002004370300200020012903503700342000412c6a200141106a41186a290300370000200041246a200141106a41106a2903003700002000411c6a200141106a41086a2903003700002000413c6a200141d0006a41086a290300370000200041c4006a200141d0006a41106a290300370000200041cc006a200141d0006a41186a290300370000200041ec006a200141306a41186a290300370000200041e4006a200141306a41106a290300370000200041dc006a200141306a41086a290300370000200020012903303700542000410c6a200a37020020002006360208200141d0016a24000b130020004101360204200041c481c3003602000b1300200041023602042000419883c3003602000b3201017f0240410810132202450d0020004288808080800137020420002002360200200242013700000f0b410841011014000b130020004107360204200041bc85c3003602000b1300200041043602042000418087c3003602000b130020004102360204200041bc8bc3003602000b3301017f0240410410132202450d0020004284808080c0003702042000200236020020024180203600000f0b410441011014000b130020004104360204200041848dc3003602000b130020004101360204200041fc8dc3003602000b1300200041023602042000418897c3003602000b13002000410836020420004197a0c3003602000b13002000410a360204200041a0a0c3003602000b3901017f0240411010132202450d002002420037000820024200370000200042908080808002370204200020023602000f0b411041011014000bea1105027f017e067f037e0b7f230041e0026b2202240020002802102203200328020041016a36020020002902142104200028020c2103200028020821052000280200210620002802042100200241306a41086a2207200141086a28020036020020022001290200370330024020002f01062201410b4f0d00200020034103746a220841106a200841086a2208200120036b41037410f7021a2008200437000020002003410c6c6a220141ec006a200141e0006a2209200041066a22082f010020036b410c6c10f7021a200141e8006a200728020036020020092002290330370200200820082f010041016a3b01002002200036001720022006360013200241e0026a24000f0b02400240024041e4011013220a450d00200a41003b0106200a4100360200200a41086a200241d0006a41dc0110f6022107200241d0006a41086a2208200041b0016a280200360200200220002902a8013703502000413c6a330000210b2000413e6a310000210c20002d003f21092000350038210d2007200041c0006a200041066a220e2f010041796a220141037410f6022107200a41e0006a200041b4016a2001410c6c10f602210f200e41063b0100200a20013b0106200241c0006a41086a200828020036020020022002290350370340200d200b200c4210868442208684210b02400240200341064b0d00200041086a20034103746a220741086a2007200041066a22012f010020036b41037410f7021a20072004370000200041e0006a2003410c6c6a2207410c6a200720012f010020036b410c6c10f7021a200741086a200241306a41086a280200360200200720022903303702000c010b200720034103746a41506a2007200341796a22084103746a2207200141ffff037120086b41037410f7021a20072004370000200f2003410c6c6a220341b87f6a200341ac7f6a2207200a41066a22012f010020086b410c6c10f7021a200341b47f6a200241306a41086a280200360200200720022903303702000b200120012f010041016a3b0100200241206a41086a2210200241c0006a41086a2211280200360200200220093a0017200220022903403703202002200b3e02102002200b4230883c00162002200b4220883d0114200241086a22122010280200360200200220022903203703002002290310210402400240024020002802002209450d0020002f0104211303402002200641016a220636021020022009360214200241306a41086a2214201228020036020020022002290300370330201341ffff0371210820092f01062200410a4d0d0241940210132207450d03200741003b010620074100360200200741086a200241d0006a418c0210f6022103200941386a290000210b200241d0006a41086a220f200941b0016a2802003602002002200941a8016a2902003703502003200941c0006a200941066a22152f0100220141796a220041037410f6022116200741e0006a200941b4016a2000410c6c10f6022117200741e4016a20094180026a2001417a6a220e41027410f6022118201541063b0100200720003b01060240200e450d00410021002018210303402003280200220120003b010420012007360200200341046a2103200e200041016a2200470d000b0b2011200f28020036020020022002290350370340200f20112802003602002002200229034037035002400240201341ffff0371220341064b0d00200941086a2200200841016a220e4103746a200020084103746a220020152f0100220120086b221341037410f7021a20002004370000200941e0006a2008410c6c6a2200410c6a20002013410c6c10f7021a200041086a2014280200360200200020022903303702002015200141016a22003b0100200941e4016a2201200841027422156a41086a2001200e4102746a2213200041ffff03712201200e6b41027410f7021a2013200a360200200320014f0d01200920156a41e8016a2100034020002802002203200841016a22083b010420032009360200200041046a210020012008470d000c020b0b20162008417a6a22034103746a2016200841796a22004103746a220e200741066a22012f010020006b41037410f7021a200e200437000020172008410c6c6a220e41b87f6a200e41ac7f6a221320012f0100221520006b410c6c10f7021a200e41b47f6a2014280200360200201320022903303702002001201541016a220e3b01002018200841027422136a416c6a201820034102746a2201200e41ffff0371220820036b41027410f7021a2001200a360200200320084b0d00200720136a41cc016a2103034020032802002201200041016a22003b010420012007360200200341046a210320082000470d000b0b2010200f280200360200200220022903503703202012201028020036020020022002290320370300024020092802002200450d0020092f0104211320002109200b21042007210a0c010b0b2007210a200b21040b41940210132200450d03200041003b010620004100360200200041086a200241d0006a418c0210f60221012000200528020022033602e401200520003602002005200528020441016a360204200341003b010420032000360200200120002f010622034103746a200437000020002003410c6c6a220141e8006a200241086a280200360200200141e0006a2002290300370200200041e4016a200341016a22034102746a200a360200200020033b0106200a20033b0104200a20003602000c040b200941086a2201200841016a22034103746a200120084103746a2201200020086b220741037410f7021a2001200437000020092008410c6c6a220141ec006a200141e0006a220e2007410c6c10f7021a200141e8006a200241306a41086a280200360200200e2002290330370200200941066a200041016a22003b0100200941e4016a220120084102746a41086a200120034102746a2201200041ffff0371220720036b41027410f7021a2001200a360200201341ffff037120074f0d0320092003417f6a22004102746a41e8016a2103034020032802002201200041016a22003b010420012009360200200341046a210320072000470d000c040b0b41940241041014000b41e40141041014000b41940241041014000b200241e0026a24000bea0704027f017e017f077e230041f0006b2202240002400240024002400240411010132203450d00200341086a41002900adb943370000200341002900a5b94337000020034110413010152203450d0120032001290000370010200341286a200141186a290000370000200341206a200141106a290000370000200341186a200141086a29000037000042002104200241386a41086a220542003703002002420037033820034130200241386a1002200241e0006a41086a200529030037030020022002290338370360200241386a200241e0006a4110108402200241386a41206a2903002106200241386a41186a2903002107200241386a41106a2903002108200229034021092002290338210a200310164200210b02400240200a4201520d00411410132203450d05200341106a410028009e9643360000200341086a410029009696433700002003410029008e964337000020034114413410152203450d06200320012900003700142003412c6a200141186a290000370000200341246a200141106a2900003700002003411c6a200141086a29000037000042002104200241386a41086a220142003703002002420037033820034134200241386a1002200241e0006a41086a20012903003703002002200229033837036002400240200241e0006a411041acf1c300410041001000417f460d002002420037034020024200370338200241e0006a4110200241386a4110410010002201417f460d062001410f4d0d06200241c0006a290300210b2002290338210c0c010b4200210c4200210b0b20031016200241386a41086a2201420037030020024200370338419be8c200410d200241386a1002200241e0006a41086a2001290300370300200220022903383703600240200241e0006a411041acf1c300410041001000417f460d0020024200370338200241e0006a4110200241386a41084100100041016a41084d0d02200229033821040b4200210a200241086a420042002007420010fa02200241186a200642002004420010fa02200241286a200442002007420010fa024200210402404200420052200642005271200229031042005272200229032042005272200241286a41086a2903002207200229030820022903187c7c2206200754720d002008200620022903282207200954200620085420062008511b22011b20067d2009200720011b2206200754ad7d2104200620077d210a0b2004200b200c200a56200b200456200b2004511b22011b210b200a200c20011b21040b200020043703002000200b370308200241f0006a24000f0b41b6e7c20041331029000b411041011014000b413041011014000b41b6e7c20041331029000b411441011014000b413441011014000b870807047f017e097f047e017f017e017f230041c0006b220224000240024002400240024002400240024002400240410e10132203450d00200341066a410029008fa04337000020034100290089a0433700002003410e412e10152204450d012004200129000037000e200441266a200141186a2900003700002004411e6a200141106a290000370000200441166a200141086a290000370000200241306a41086a22014200370300200242003703302004412e200241306a1002200241086a41086a2001290300370300200220022903303703080240024002400240200241086a411041acf1c300410041001000417f460d002002421037021c2002200241086a3602182002200241186a10122002280200450d0b20022802042205ad42287e2206422088a70d032006a72201417f4c0d032001450d01200110132207450d062005450d020c070b20004100360208200042083702000c080b4108210720050d050b4100210e420021062007450d080c050b100f000b410e41011014000b412e41011014000b200141081014000b200241186a41086a22032802002108200228021c21092002280218210a200241336a210b420021064100210c4100210d410021012005210e03402002420037033020034100200a2009200241306a410820081000220f200f417f461b220f4108200f4108491b20086a2208360200200f41074d0d0320022903302110200242003703382002420037033020034100200a2009200241306a411020081000220f200f417f461b220f4110200f4110491b20086a2208360200200f410f4d0d03200241306a41086a2903002111200229033021122002420037033020034100200a2009200241306a410820081000220f200f417f461b220f4108200f4108491b20086a2208360200200f41074d0d0320022903302113200241003a003020032008200a2009200241306a41012008100041016a41014b220f6a2208360200200f450d03200141016a210f20022d003021142002200b28000036002b200220022800303602282002200228002b3600332002200228022836023002402001200e470d00200c200f200f200c491b220ead42287e2215422088a70d062015a722164100480d0602402001450d002007200d2016101522070d010c080b201610132207450d070b2007200d6a220141206a20143a00002001201137030820012012370300200141186a2010370300200141106a2013370300200141246a2002280033360000200141216a200228023036000020064280808080107c2106200c41026a210c200d41286a210d200f2101200f2005490d000b2007450d030b20002006200ead84370204200020073602000b20041016200241c0006a24000f0b200e450d00200710160b41b6e7c20041331029000b1010000b201641081014000b130020004101360204200041b8b9c3003602000b13002000410936020420004190bdc3003602000b1300200041043602042000419cbdc3003602000b3201017f0240410810132202450d0020004288808080800137020420002002360200200242033700000f0b410841011014000bd36e1f037f017e027f017e047f027e047f037e017f027e037f027e027f017e027f037e0e7f017e047f017e017f017e0b7f047e117f017e017f017e047f017e0b7f23004180036b22012400200141386a41086a220242003703002001420037033841d08ec3004113200141386a1002200141e8006a41086a20022903003703002001200129033837036802400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141e8006a411041acf1c300410041001000417f460d00200141003a00e001200141e8006a4110200141e0016a41014100100041016a41014d0d0220012d00e0012102200141e8006a411010032002450d00200141386a41086a2202420037030020014200370338418acec300411d200141386a1002200141e0026a41086a2002290300370300200120012903383703e0020240200141e0026a411041acf1c300410041001000417f460d00200142103702e4012001200141e0026a3602e001200141e8006a200141e0016a101120012802682203450d04200129026c2104200141e0026a41101003200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf01410021050240200128026822022001280270220641acf1c300410041001000417f460d00200141003602e00120022006200141e0016a41044100100041016a41044d0d0320012802e00121050b0240200128026c450d00200210160b024002402005450d002005ad4205862207422088a70d252007a722024100480d25200210132208450d0841002106200821020340200141e0016a200610bf02200241186a200141e0016a41186a290000370000200241106a200141e0016a41106a290000370000200241086a200141e0016a41086a290000370000200220012900e001370000200241206a21022005200641016a2206470d000c020b0b410121080b2004a7210902400240024020052004422088a7220a470d000240200a450d0020032008460d004100210b2008210220032106034020022006412010f8020d02200241206a2102200641206a2106200b41016a220b200a490d000b0b2005450d012008101620090d020c030b200141f4006a2005360200200141f0006a20053602002001200836026c200141013a0068200141e8006a10a3020b2009450d010b200310160b200141386a41086a220242003703002001420037033841bfdac0004118200141386a1002200141e0026a41086a22062002290300370300200120012903383703e00242002104024002400240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d01200129036821040b200242003703002001420037033841bbc9c0004115200141386a100220062002290300370300200120012903383703e00202400240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d03200129036822074200520d0141d8dac0001038000b42e80721070b200141386a41086a220242003703002001420037033841cdc7c0004119200141386a1002200141e0026a41086a2002290300370300200120012903383703e002200020047d200782210c0240200141e0026a411041acf1c300410041001000417f460d00200141003a0068200141e0026a4110200141e8006a41014100100041016a41014d0d0720012d00682102200141e0026a41101003200241004721050c090b200c4200520d09410121050c080b41b6e7c20041331029000b41b6e7c20041331029000b419c92c3001038000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b200241011014000b4200210d200141386a41086a220242003703002001420037033841ee94c300410d200141386a1002200141e0026a41086a22062002290300370300200120012903383703e002420021040240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0a200129036821040b200242003703002001420037033841f0dac0004114200141386a100220062002290300370300200120012903383703e0020240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0b2001290368210d0b200141386a41086a220242003703002001420037033841a7c9c0004114200141386a1002200141e0026a41086a22062002290300370300200120012903383703e00202400240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0d200129036842017c21070c010b420121070b200141e8006a41086a2007370300200141033a0068200141e8006a105a200242003703002001420037033841a7c9c0004114200141386a100220062002290300370300200120012903383703e00220012007370368200141e0026a4110200141e8006a41081001200242003703002001420037033841f0dac0004114200141386a100220062002290300370300200120012903383703e00220012004370368200141e0026a4110200141e8006a41081001200141286a4184dbc000411910dd010240024002402001290328a74101470d0020012903302107200141386a41086a220242003703002001420037033841bbc9c0004115200141386a1002200141e0026a41086a2002290300370300200120012903383703e00220012007370368200141e0026a4110200141e8006a410810010c010b200c500d010b200141386a41086a2202420037030020014200370338419be8c200410d200141386a1002200141e0026a41086a22062002290300370300200120012903383703e002420021070240200141e0026a411041acf1c300410041001000417f460d0020014200370368200141e0026a4110200141e8006a41084100100041016a41084d0d0e200129036821070b200242003703002001420037033841bfdac0004118200141386a100220062002290300370300200120012903383703e00220012007370368200141e0026a4110200141e8006a410810010b2004200d7d200510f501200141386a41086a220242003703002001420037033841d0c9c0004112200141386a1002200141e0026a41086a2002290300370300200120012903383703e0024100210302400240200141e0026a411041acf1c300410041001000417f460d00200142103702e4012001200141e0026a3602e001200141e8006a200141e0016a10112001280268220e450d15200141f0006a2802002103200128026c210f0c010b4101210e4100210f0b4100210820014100360268200141e8006a10c002200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf010240200128026822022001280270220641acf1c300410041001000417f460d00200141003602e00120022006200141e0016a41044100100041016a41044d0d0e20012802e00121080b0240200128026c450d00200210160b0240200820034d0d00200141f0006a210a200321020340200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf0141002105024020012802682206200a280200220b41acf1c300410041001000417f460d00200141003602e0012006200b200141e0016a41044100100041016a41044d0d0420012802e00121050b0240200128026c450d00200610160b200241016a21060240200520024d0d00200141063602e401200141f7c8c3003602e001200141e8006a2002200141e0016a102820012802682202200a2802001003200128026c450d00200210160b2006210220082006470d000b0b200141063602e401200141f7c8c3003602e001200141e8006a41fdc8c300200141e0016a10bf012001280270210620012802682102200120033602e00120022006200141e0016a410410010240200128026c450d00200210160b024020034105742208450d0041002105200e21060340200141c8006a41186a220b200641186a290000370300200141c8006a41106a220a200641106a290000370300200141c8006a41086a2203200641086a29000037030020012006290000370348411210132202450d07200241106a41002f00f2c9403b0000200241086a41002900eac940370000200241002900e2c94037000020024112413210152202450d08200220012903483700122002412a6a200b290300370000200241226a200a2903003700002002411a6a2003290300370000200141386a41086a220b42003703002001420037033820024132200141386a1002200141e0026a41086a220a200b290300370300200120012903383703e00202400240200141e0026a411041acf1c300410041001000417f460d00200141e8006a41186a22034200370300200141e8006a41106a22094200370300200141e8006a41086a2210420037030020014200370368200141e0026a4110200141e8006a4120410010002211417f460d072011411f4d0d07200141e0016a41186a22112003290300370300200141e0016a41106a22032009290300370300200141e0016a41086a22092010290300370300200120012903683703e00120021016200141e0026a41186a2011290300370300200141e0026a41106a2003290300370300200a2009290300370300200120012903e0013703e0020c010b20021016200141e0026a41186a4200370300200141e0026a41106a4200370300200a4200370300200142003703e0020b2001410636026c200141f7c8c300360268200141386a2005200141e8006a102802400240024020012802382202200b280200220b41acf1c300410041001000417f470d00200141e8006a41186a4200370300200141e8006a41106a4200370300200141e8006a41086a420037030020014200370368200128023c0d010c020b200141e0016a41186a22034200370300200141e0016a41106a22094200370300200141e0016a41086a22104200370300200142003703e0012002200b200141e0016a412041001000220b417f460d08200b411f4d0d08200141e8006a41186a2003290300370300200141e8006a41106a2009290300370300200141e8006a41086a2010290300370300200120012903e001370368200128023c450d010b200210160b0240200141e8006a200141e0026a412010f802450d0041002102200141003602e001200141e0016a10c0022001410636023c200141f7c8c300360238200141e0016a41fdc8c300200141386a10bf01024020012802e001220b200141e0016a41086a2209280200220341acf1c300410041001000417f460d0020014100360238200b2003200141386a41044100100041016a41044d0d06200128023821020b024020012802e401450d00200b10160b200220054d0d002001410636023c200141f7c8c300360238200141e0016a2005200141386a10282009280200210320012802e001210b412010132202450d0b200220012903e002370000200241186a200141e0026a41186a290300370000200241106a200141e0026a41106a290300370000200241086a200a290300370000200b20032002412010012002101620012802e401450d00200b10160b200541016a2105200641206a2106200841606a22080d000b0b200f450d00200e10160b200141186a41cde8c200411010dd012001290320210420012802182106200141e0026a41086a22024200370300200142003703e00241a2ffc2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e00102400240200141e0016a411041acf1c300410041001000417f460d00200141003a0068200141e0016a4110200141e8006a41014100100041016a41014d0d0f20012d00680d010b410810132202450d1120024200370300200142818080801037026c2001200236026841dde8c2004115200141e8006a10a20120021016410810132202450d1220024200370300200142818080801037026c2001200236026841b7ffc2004116200141e8006a10a20120021016200141e0026a41086a22024200370300200142003703e00241bde8c2004110200141e0026a1002200141e0016a41086a22052002290300370300200120012903e0023703e00120014200370368200141e0016a4110200141e8006a41081001200141013a006820024200370300200142003703e00241a2ffc2004115200141e0026a100220052002290300370300200120012903e0023703e001200141e0016a4110200141e8006a410110010b4108211142002112200141e0026a41086a22024200370300200142003703e00241dde8c2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a101e20012802682211450d0f200129026c21120b4108210542002113200141e0026a41086a22024200370300200142003703e00241b7ffc2004116200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a101e20012802682205450d10200129026c21130b200141e0026a41086a22024200370300200142003703e00241cdffc2004114200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d0020014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d074201200129036822072007501b21142012422088a7210f20060d150c140b42e50021142012422088a7210f2006450d130c140b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b411241011014000b413241011014000b41b6e7c20041331029000b412041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410841081014000b410841081014000b41b6e7c20041331029000b200f417f6a2202200f4b0d012002200f4f0d01201120024103746a2202450d01200229030021040b4100200f41016a22022014a76b2206200620024b1b220e200f4b0d012011200e4103746a2115200e450d0242202116201342208821174108211841012119417f211a428080808070211b427f211c2011211d4100211e0c030b41e1ffc20041261029000b419480c0001038000b410021020c010b410121020b03400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020e020001010b201242ffffffff0f8321070240200f200e6b2202450d000240200e450d0020112015200241037410f7021a0b2002ad42208620078421070b41002102024002400240024002400240024002400240024002402013422088220da72208450d00024020084101460d004100210220082106034020022006410176220b20026a220a20042005200a4103746a290300541b21022006200b6b220641014b0d000b0b200220022004200520024103746a290300220c566a2004200c511b220220084b0d010b02400240024002400240024002400240024002400240024002400240024020082013a7470d00200841016a22062008490d42200da7220a410174220b20062006200b491bad2213420386220c422088a70d42200ca722064100480d4202402008450d002005200a410374200610152205450d020c010b200610132205450d010b200520024103746a220641086a2006200820026b41037410f7021a200620043703002007a72007422088220ca72202470d02200241016a22062002490d412002410174220b20062006200b491bad2207420386221f422088a70d41201fa722064100480d412002450d0120112002410374200610152211450d030c020b200641081014000b200610132211450d010b201120024103746a2004370300200d42017c221fa72202450d082002410176220620024f0d09200520064103746a290300210d024020024101710d002006417f6a220620024f0d11200520064103746a290300200d7c420188210d0b201342ffffffff0f83201f42208684211f2001200c42017c220c422086200742ffffffff0f838437026c2001201136026841dde8c2004115200141e8006a10a20102402007a7450d00201110160b2001201f37026c2001200536026841b7ffc2004116200141e8006a10a20102402013a7450d00200510160b200141e0026a41086a220a4200370300200142003703e00241bde8c2004110200141e0026a1002200141e0016a41086a2208200a290300370300200120012903e0023703e0012001200d370368200141e0016a4110200141e8006a41081001200c42ffffffff0f832014520d03200a4200370300200142003703e002419be8c200410d200141e0026a10022008200a290300370300200120012903e0023703e001420021070240200141e0016a411041acf1c300410041001000417f460d0020014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d05200129036821070b200141e0026a41086a22024200370300200142003703e00241d080c3004117200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001200141e0016a411041acf1c300410041001000417f460d0120014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d052001290368210c0c020b200641081014000b42e807210c0b200d20144201887c200c7c2007560d00200141e8006a10fb0120012802682103200128026c210902400240024020012802702202450d00200241057422064105752210ad42287e2207422088a70d3e2007a7220b4100480d3e200b1013221e450d12200320066a21202002410574210b201e2102200321060340200641086a2900002107200641106a290000210d2006290000210c200241186a200641186a290000370000200241106a200d370000200241086a20073700002002200c370000200241206a4201370300200241286a2102200641206a2106200b41606a220b0d000b202020036b41606a41057641016a21062009450d020c010b410021104108211e410021062009450d010b200310160b42002107200141e0026a41086a22024200370300200142003703e00241bde8c2004110200141e0026a1002200141386a41086a2002290300370300200120012903e0023703380240200141386a411041acf1c300410041001000417f460d0020014200370368200141386a4110200141e8006a41084100100041016a41084d0d04200129036821070b200120063602702001201036026c2001201e360268200141e8006a2014427f7c42012007102f0b200a4200370300200142003703e00241888dc000411d200141e0026a10022008200a290300370300200120012903e0023703e00102400240024002400240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a102c200129037822074202510d0d20014190016a28020021032001418c016a280200212120014188016a280200212020012903702122024002400240024002400240200129036822232000520d002003ad42287e220d422088a74100472106200da721020240024002400240024020074201520d0020060d132002417f4c0d1320012903800121242002450d01200210132208450d1f2003450d030c020b20060d122002417f4c0d122002450d05200210132208450d1f4100211e4100210b20030d060c070b410821082003450d010b200341286c210a4100210b20082102202021060340200641086a2903002107200641106a290300210d200641186a290300210c2006290300211f200241206a200641206a290300370300200241186a200c370300200241106a200d370300200241086a20073703002002201f370300200241286a2102200b41016a210b200641286a2106200a41586a220a0d000c020b0b4100210b0b20014188016a202237030020014180016a2024370300200141fc006a200b360200200141f8006a2003360200200141f4006a2008360200200141f0006a4101360200200141023a0068200141e8006a10a3020b202220237c2000520d040c030b410821084100211e4100210b2003450d010b200341286c210a4100210b20082102202021060340200641086a2903002107200641106a290300210d200641186a290300210c2006290300211f200241206a200641206a290300370300200241186a200c370300200241106a200d370300200241086a20073703002002201f370300200241286a2102200b41016a210b200641286a2106200a41586a220a0d000b0b20014180016a2022370300200141fc006a200b360200200141f8006a2003360200200141f4006a2008360200200141f0006a201e360200200141023a0068200141e8006a10a302202220237c2000520d010b2003ad42287e2207422088a70d092007a72202417f4c0d090240024002402002450d0020021013221e450d164100210b4100210a20030d010c020b4108211e4100210b4100210a2003450d010b200341286c21084100210a201e2102202021060340200641086a2903002107200641106a290300210d200641186a290300210c2006290300211f200241206a200641206a290300370300200241186a200c370300200241106a200d370300200241086a20073703002002201f370300200241286a2102200a41016a210a200641286a2106200841586a22080d000b0b200141f4006a200a360200200141e8006a41086a220820033602002001201e36026c200141063a0068200141e8006a105a02402003450d002020200341286c6a21104100210b202021020340200141e8006a41186a2203200241186a290300370300200141e8006a41106a221e200241106a2903003703002008200241086a29030037030020012002290300370368200241206a29030021072001410e3602e402200141b384c0003602e002200141e0016a200b200141e0026a1028200141e0016a41086a280200210920012802e001210a412010132206450d0520062001290368370000200641186a2003290300370000200641106a201e290300370000200641086a20082903003700002006412041c00010152206450d0620062007370020200a200920064128100120061016024020012802e401450d00200a10160b200b41016a210b200241286a22022010470d000b0b02402021450d00202010160b2001410e3602e401200141b384c0003602e001200141e8006a41fdc8c300200141e0016a10bf014100211e0240200128026822022001280270220641acf1c300410041001000417f460d00200141003602e00120022006200141e0016a41044100100041016a41044d0d0d20012802e001211e0b0240200128026c450d00200210160b0240201e200b4d0d00200141f0006a2103200b210203402001410e3602e401200141b384c0003602e001200141e8006a41fdc8c300200141e0016a10bf014100210a0240200128026822062003280200220841acf1c300410041001000417f460d00200141003602e00120062008200141e0016a41044100100041016a41044d0d0520012802e001210a0b0240200128026c450d00200610160b200241016a21060240200a20024d0d002001410e3602e401200141b384c0003602e001200141e8006a2002200141e0016a10282001280268220220032802001003200128026c450d00200210160b20062102201e2006470d000b0b2001410e3602e401200141b384c0003602e001200141e8006a41fdc8c300200141e0016a10bf0120012802702106200128026821022001200b3602e00120022006200141e0016a410410010240200128026c450d00200210160b200141e0026a41086a22024200370300200142003703e00241888dc000411d200141e0026a1002200141386a41086a2002290300370300200120012903e002370338200141386a411010030c010b2021450d00202010160b4108210b42002107200141e0026a41086a22024200370300200142003703e0024193ecc2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a10202001280268220b450d0e200129026c21070b02402007422088a72221450d0020214106742106200b41106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b02402007a7450d00200b10160b200141e0026a41086a22024200370300200142003703e00241cdbcc0004118200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e00102400240200141e0016a411041acf1c300410041001000417f460d0020014100360268200141e0016a4110200141e8006a41044100100041016a41044d0d05200128026821080c010b413c21080b4108210b42002107200141e0026a41086a22024200370300200142003703e0024193ecc2004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e0010240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a10202001280268220b450d0f200129026c21070b02402007422088a7220a450d00200a4106742106200b41106a210203400240200241046a280200450d00200228020010160b200241c0006a2102200641406a22060d000b0b02402007a7450d00200b10160b200141e0026a41086a22024200370300200142003703e002419ab8c000411b200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001410021022008200a6c220641e4006e212502400240200141e0016a411041acf1c300410041001000417f460d00200142103702e4022001200141e0016a3602e002200141e8006a200141e0026a102620012802682220450d11200128026c2126200141f0006a28020022020d010c180b41042120410021264100450d170b41022127202020024102746a21282001418d026a21294104212a4108212b200141c8006a41086a212c4110212d410d212e419be8c200212f4100213041acf1c3002131417f2132420021334116213441f2bac000213541172136419095c30021374280de342138410121394201213a200641e3004b213b4120213c200141e8006a41206a213d412c213e200141e8006a412c6a213f41282140200141e8006a41286a2141411c2142200141e8006a411c6a2143410e2144411a21454284808080c00021464288808080800121474290808080c001214842a0808080c002214920014184026a214a200141f8016a214b4107214c4121214d415f214e4103214f202021504101211e0c390b41b6e7c20041331029000b412041011014000b41c00041011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b100f000b41b880c3001038000b4190ebc2002006200210a801000b41b6e7c20041331029000b41c880c0001038000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b4190ebc2002006200210a801000b200241081014000b200b41081014000b200241081014000b200241081014000b02400240201e0e03000105050b201d29030021074100210202402017a722062019460d002006450d0d41002102034020022006201976220b20026a220a20072005200a4103746a290300541b21022006200b6b220620194b0d000b0b2007200520024103746a2206290300220d520d0d20172002ad580d0e2006200620186a2002201a732017a76a41037410f7021a201342ffffffff0f832017201686201b7c8421132017201c7c2117201d20186a221d2015470d20410021020c280b200141c8006a2050280200220910592001280248215141002108410021034100210a4100211e0240202c2802002252450d002052204d6c210b2051203c6a21024100211e4100210a410021034100210803400240024020022d000022062039460d00024020062027460d002006204f470d02200820396a21082002204d6a2102200b204e6a220b0d030c040b200320396a21032002204d6a2102200b204e6a220b0d020c030b200a20396a210a2002204d6a2102200b204e6a220b0d010c020b201e20396a211e2002204d6a2102200b204e6a220b0d000b0b200141e8006a2009105b200141e8006a202d6a290300210d42002107200141e0026a202b6a22024200370300200142003703e002202f202e200141e0026a1002200141e0016a202b6a22062002290300370300200120012903e0023703e0010240200141e0016a202d20312030203010002032460d00200120333703e002200141e0016a202d200141e0026a202b2030100020396a202b4d0d0820012903e00221070b20022033370300200120333703e00220352034200141e0026a100220062002290300370300200120012903e0023703e0010240024002400240024002400240200141e0016a202d20312030203010002032460d00200120333703e002200141e0016a202d200141e0026a202b2030100020396a202b4d0d0f20012903e002210c2021450d020c010b20022033370300200120333703e00220372036200141e0026a1002200141386a202b6a2002290300370300200120012903e0023703380240200141386a202d20312030203010002032460d00200120333703e001200141386a202d200141e0016a202b2030100020396a202b4d0d1120012903e001203a86220c500d232038200c80210c20210d010c020b2038420680210c2021450d010b4105211020082021460d03203b200a20254f71210b20522021470d0141042110200b0d020c030b203b200a20254f71210b0b2007200c200d7c540d0241022110200b450d010b410321100b20092010105c220b0d024200210720024200370300200142003703e002202f202e200141e0026a100220062002290300370300200120012903e0023703e0010240200141e0016a202d20312030203010002032460d00200120333703e002200141e0016a202d200141e0026a202b2030100020396a202b4d0d0b20012903e00221070b20341013220b450d15200b20446a20302900d6be40370000200b202b6a20302900d0be40370000200b20302900c8be40370000200b2034203e10152252450d162052200936001620022033370300200120333703e00220522045200141e0026a100220062002290300370300200120012903e0023703e001200220303602002001203a3703e002202a1013220b450d17200120463702e4022001200b3602e002200b2009360000200b202a202b1015220b450d18200120473702e402200b201e3600042001200b3602e002200b202b202d1015220b450d19200120483702e402200b200a360008200b200336000c2002202d3602002001200b3602e002200b202d203c1015220b450d1a200b2008360010200120493702e4022001200b3602e0022010200141e0026a104a024002400240024020012802e40222532002280200220b6b202b4f0d00200b202b6a2202200b490d2d20532039742254200220022054491b22542030480d2d2053450d0120012802e00220532054101522020d020c200b20012802e00221020c020b205410132202450d1e0b200120543602e402200120023602e002205421530b2002200b6a2007370000200141e0016a202d2002200b202b6a100102402053450d00200210160b20521016200141e0016a203e6a20103a0000200141e0016a20406a2008360200204a2003360200200141e0016a203c6a200a360200200141e0016a20426a201e360200204b2009360200200141e0016a202d6a20073703002006202a3a0000202920012f00e0023b0000202920276a200141e0026a20276a2d00003a00002001204c3a00e001200141e0016a105a0b0240203d280200450d00204328020010160b0240203f280200450d00204128020010160b2050202a6a21500240200128024c450d00205110160b20502028470d200b2026450d01202010160c010b024020014188016a280200450d0020014184016a28020010160b024020014194016a280200450d0020014190016a28020010160b0240200128024c450d00205110160b02402026450d00202010160b200b412810090b2000109402200141e0026a41086a22024200370300200142003703e00241a8ecc2004112200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001024002400240200141e0016a411041acf1c300410041001000417f460d0020014200370368200141e0016a4110200141e8006a41084100100041016a41084d0d1a20012903682000510d010c020b42012000520d010b200141e8006a41106a2000370300200141e8006a41086a4200370300200141093a0068200141e8006a105a200141e0026a41086a22024200370300200142003703e00241aa9ec2004119200141e0026a1002200141386a41086a2002290300370300200120012903e0023703380240200141386a411041acf1c300410041001000417f460d00200141003a0068200141386a4110200141e8006a41014100100041016a41014d0d1c20012d0068450d010b200141e0026a41086a22024200370300200142003703e0024193ecc2004115200141e0026a1002200141386a41086a2002290300370300200120012903e00237033802400240200141386a411041acf1c300410041001000417f460d00200142103702e4012001200141386a3602e001200141e8006a200141e0016a102020012802682202450d1e2001200129026c37026c200120023602680c010b20014100360270200142083703680b200141106a200141e8006a1082020b200141e0026a41086a22024200370300200142003703e00241ea88c1004115200141e0026a1002200141e0016a41086a2002290300370300200120012903e0023703e001410021060240200141e0016a411041acf1c300410041001000417f460d002001421037026c2001200141e0016a360268200141086a200141e8006a10122001280208450d10200128020c220a450d02200141f0006a2802002102200128026c210820012802682103410021060340200141003a00e002200220032008200141e0026a41012002100041016a41014b220b6a2102200b450d0f20012d00e0020d10200641016a2206200a490d000b200141f0006a20023602000b41012155200641016a22564101460d030c020b200141e8006a10b90102402001290368205b520d00205c290300220d205d510d102000200d82205d520d00205f290300210c2061290300211f200141d0026a109a0120012802d402210920012802d002211e02400240200141d0026a20586a2802002202450d002002206374210b201e21020340200141e0026a20606a200220606a290000370300200141e0026a20646a200220646a2900003703002059200220586a290000370300200120022900003703e002200141e0016a200141e0026a108c0120012903e00122072062510d02024002402007205b520d00200141e0016a20646a290300200d7c20005a0d00200141e0016a20586a2903002107206510132206450d10200620666a20672900da9141370000200620646a20672900d49141370000200620586a20672900cc9141370000200620672900c4914137000020062065206810152206450d112006200737001e2059205d3703002001205d3703e00220062069200141e0026a1002200141386a20586a2059290300370300200120012903e002370338200141386a2064206a206720671000210a20061016200a205a460d00200141e0016a2007109401206b20012d00e2013a0000200141c8006a20586a2206205720586a220a290000370300200141c8006a206c6a22082057206c6a2203290000370000200120012f01e0013b01382001205729000037034820012900e301210720572001290348370000200a200629030037000020032008290000370000200120073700e3012001206b2d00003a00e201200120012f01383b01e001200141e0026a200141e0016a201f200c10fc0120012802e002450d010b2002205e6a2102200b206d6a220b0d010c020b205910fa012002205e6a2102200b206d6a220b0d000b0b200120623703e0010b2009450d00201e10160b2056205a6a22562055470d1d0c020b41012155410041016a22564101460d010b200141eb016a215741082158200141e0026a41086a2159417f215a4201215b20014190016a215c4200215d4120215e200141e8006a41206a215f41182160200141e8006a41186a2161420221624105216341102164411e21654116216641002167413c21684126216941acf1c300216a2001413a6a216b410d216c4160216d4102211e0c1f0b20014180036a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b410010d901000b20022007200d566a10d901000b418081c0001038000b411e41011014000b413c41011014000b200141f0006a200236020041b6e7c20041331029000b200141f0006a20023602000b41b6e7c20041331029000b41e4f5c0001038000b411641011014000b412c41011014000b410441011014000b410841011014000b411041011014000b412041011014000b41b6e7c20041331029000b205441011014000b41bcb3c0001038000b41b6e7c20041331029000b41b6e7c20041331029000b4100211e0c020b4101211e0c030b4102211e0c040b410121020c040b410121020c030b410121020c020b410121020c010b410121020c000b0b1010000ba50201027f230041306b2202240020024106360214200241f7c8c30036021020022001200241106a10280240024002400240200228020022012002280208220341acf1c300410041001000417f460d00200241286a4200370300200241206a4200370300200241186a42003703002002420037031020012003200241106a4120410010002203417f460d012003411f4d0d0120002002290310370000200041186a200241106a41186a290300370000200041106a200241106a41106a290300370000200041086a200241106a41086a2903003700002002280204450d030c020b20004200370000200041186a4200370000200041106a4200370000200041086a420037000020022802040d010c020b41b6e7c20041331029000b200110160b200241306a24000bd00703057f017e057f230041c0006b22012400200141206a41086a2202420037030020014200370320418acec300411d200141206a1002200141086a20022903003703002001200129032037030002400240024002400240024002402001411041acf1c300410041001000417f460d002001421037021420012001360210200141206a200141106a101120012802202202450d0102402001280224450d00200210160b20002802002202450d06200041046a280200450d0620021016200141c0006a24000f0b024002400240024020002802002203450d00200041086a2802002104200028020421050c010b20014106360204200141f7c8c300360200200141206a41fdc8c300200110bf01410021040240200128022022002001280228220241acf1c300410041001000417f460d002001410036020020002002200141044100100041016a41044d0d05200128020021040b02402001280224450d00200010160b02402004450d002004ad4205862206422088a70d022006a722004100480d02200010132203450d0641002102200321000340200141206a200210bf02200041186a200141206a41186a290000370000200041106a200141206a41106a290000370000200041086a200141206a41086a29000037000020002001290020370000200041206a21002004200241016a2202470d000b200421050c010b4101210341002104410021050b200141206a41086a2200420037030020014200370320418acec300411d200141206a1002200141086a200029030037030020012001290320370300200141003602282001420137032020012004360210200141106a200141206a101802402004450d00200441057421074100200028020022026b2108200128022021092001280224210a2003210003400240200a20086a411f4b0d00200241206a22042002490d03200a410174220b20042004200b491b22044100480d0302400240200a450d002009200a2004101522090d010c060b200410132209450d050b2004210a0b200920026a22042000290000370000200441186a200041186a290000370000200441106a200041106a290000370000200441086a200041086a290000370000200841606a2108200241206a2102200041206a2100200741606a22070d000b200141286a20023602002001200a3602242001200936022020014110200920021001200a450d070c060b2001280224210220014110200128022022092000280200100120020d050c060b1010000b200441011014000b41b6e7c20041331029000b41b6e7c20041331029000b200041011014000b200910160b2005450d00200310160b200141c0006a24000bd41704017f017e117f047e230041b0016b22012400200141fb94c300411510dd01024020012802004101470d002001290308210220014188016a41086a220342003703002001420037038801419095c300411720014188016a1002200141e0006a41086a220420032903003703002001200129038801370360200141e0006a411041acf1c300410041001000417f470d00200342003703002001420037038801419095c300411720014188016a10022004200329030037030020012001290388013703602001200237038801200141e0006a411020014188016a410810010b20014188016a41086a22034200370300200142003703880141ccbbc100411520014188016a1002200141e0006a41086a2003290300370300200120012903880137036002400240024002400240024002400240200141e0006a411041acf1c300410041001000417f460d002001410036028801200141e0006a411020014188016a41044100100041016a41044d0d022001280288010d010b20014188016a41086a22034200370300200142003703880141ccbbc100411520014188016a1002200141e0006a41086a200329030037030020012001290388013703602001410136028801200141e0006a411020014188016a410410010b0240200042e400824200520d004108210520014188016a41086a22034200370300200142003703880141ebf7c000411820014188016a1002200141e0006a41086a200329030037030020012001290388013703604100210602400240024002400240024002400240200141e0006a411041acf1c300410041001000417f460d002001421037023c2001200141e0006a36023820014188016a200141386a10252001280288012205450d0a200128028c0121074130210820014190016a280200220641306c22090d010c020b4100210741302108410041306c2209450d010b410021040340200520046a220341286a290300210220014188016a41206a200341206a29030037030020014188016a41186a200341186a29030037030020014188016a41106a200341106a29030037030020014188016a41086a200341086a290300370300200120032903003703880120022000540d022009200420086a2204470d000b0b4108210a4100210b2007450d01200510164100210c0c040b200141e0006a41206a220820014188016a41206a290300370300200141e0006a41186a220920014188016a41186a290300370300200141e0006a41106a220d20014188016a41106a290300370300200141e0006a41086a220a20014188016a41086a2903003703002001200129038801370360200141386a41206a220c2008290300370300200141386a41186a22082009290300370300200141386a41106a2209200d290300370300200141386a41086a220d200a29030037030020012001290360370338200141106a41206a220b200c290300370300200141106a41186a220c2008290300370300200141106a41106a22082009290300370300200141106a41086a2209200d2903003703002001200129033837031041301013220a450d09200a2001290310370300200a2002370328200a41206a200b290300370300200a41186a200c290300370300200a41106a2008290300370300200a41086a2009290300370300200641306c41506a2004460d01200341306a210e2005200641306c6a220d41506a210f4101210b4101210c0340200e210302400340200341286a290300210220014188016a41206a2204200341206a29030037030020014188016a41186a2208200341186a29030037030020014188016a41106a2209200341106a29030037030020014188016a41086a2206200341086a290300370300200120032903003703880120022000540d01200d200341306a2203470d000c050b0b200141e0006a41206a22102004290300370300200141e0006a41186a220e2008290300370300200141e0006a41106a22112009290300370300200141e0006a41086a221220062903003703002001200129038801370360200141386a41206a22132010290300370300200141386a41186a2210200e290300370300200141386a41106a220e2011290300370300200141386a41086a221120122903003703002001200129036037033820042013290300370300200820102903003703002009200e2903003703002006201129030037030020012001290338370388010240200c200b470d00200b41016a220c200b490d09200b4101742210200c200c2010491b220cad42307e2214422088a70d092014a722104100480d090240200b450d00200a200b41306c20101015220a0d010c0b0b20101013220a450d0a0b200341306a210e200a200b41306c6a22102001290388013703002006290300211420092903002115200829030021162004290300211720102002370328201041206a2017370300201041186a2016370300201041106a2015370300201041086a2014370300200b41016a210b200f2003470d000c030b0b4100210c0c020b4101210b4101210c0b2007450d00200510160b2001200b3602402001200c36023c2001200a36023820014188016a41086a22034200370300200142003703880141ebf7c000411820014188016a1002200141e0006a41086a200329030037030020012001290388013703602001411036028c012001200141e0006a36028801200141386a20014188016a1017200c450d00200a10160b200141e0006a41086a220342003703002001420037036041cde2c000412c200141e0006a100220014188016a41086a2003290300370300200120012903603703880102400240024020014188016a411041acf1c300410041001000417f460d002001420037036020014188016a4110200141e0006a41084100100041016a41084d0d022001290360210041262104412610132203450d010c080b42012100412621044126101322030d070b200441011014000b41b6e7c20041331029000b41b6e7c20041331029000b41b6e7c20041331029000b1010000b201041081014000b413041081014000b2003411e6a41002900e9dd40370000200341186a41002900e3dd40370000200341106a41002900dbdd40370000200341086a41002900d3dd40370000200341002900cbdd40370000024002402003200441cc0010152203450d0020032000370026200141e0006a41086a22044200370300200142003703602003412e200141e0006a100220014188016a41086a2004290300370300200120012903603703880120014188016a411041acf1c30041004100100021042003101602402004417f460d00200141b0016a24000f0b413510132203450d012003412d6a41002900c3dd40370000200341286a41002900bedd40370000200341206a41002900b6dd40370000200341186a41002900aedd40370000200341106a41002900a6dd40370000200341086a410029009edd4037000020034100290096dd40370000200141e0006a41086a220442003703002001420037036041b2e1c000412b200141e0006a100220014188016a41086a20042903003703002001200129036037038801024002400240024020014188016a411041acf1c300410041001000417f460d002001420037036020014188016a4110200141e0006a41084100100041016a41084d0d02200129036021000c010b420121000b20014197016a2001413a6a2d00003a0000200141013a009401200142b5808080d00637028c012001200336028801200120012f00383b009501200020014188016a1068200141e0006a41086a220342003703002001420037036041b2e1c000412b200141e0006a100220014188016a41086a200329030037030020012001290360370388010240024020014188016a411041acf1c300410041001000417f460d002001420037036020014188016a4110200141e0006a41084100100041016a41084d0d03200129036042017c21000c010b420221000b200141e0006a41086a220342003703002001420037036041b2e1c000412b200141e0006a100220014188016a41086a200329030037030020012001290360370388012001200037036020014188016a4110200141e0006a41081001200141b0016a24000f0b41b6e7c20041331029000b41b6e7c20041331029000b41cc0041011014000b413541011014000be20303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002101034002400240200120002f01064f0d0020002001410c6c6a220441e4006a2902002105200141016a2101200441e0006a2802002204450d030c010b0240024020002802002201450d0020003301044220862003ad842105410121060c010b2003ad210541002106410021010b200010162005a72103024002402005422088a7220720012f01064f0d00200121040c010b03400240024020012802002204450d00200641016a210620013301044220862003ad8421050c010b2003ad2105410021040b200110162005a72103200421012005422088a7220720042f01064f0d000b0b200420074102746a41e8016a280200210020042007410c6c6a220141e4006a2902002105200141e0006a2802002104024020064101460d00410120066b2101034020002802e4012100200141016a22010d000b0b410021012004450d020b2002417f6a210202402005a7450d00200410160b20020d000b0b0240200041b894c100460d0020002802002101200010162001450d0020012802002104200110162004450d00024020042802002201450d000340200410162001210420012802002200210120000d000b0b200410160b0b130020004107360204200041a8cec3003602000b130020004109360204200041a8d6c3003602000b130020004101360204200041b4d6c3003602000b130020004107360204200041f0d9c3003602000b130020004119360204200041b4e2c3003602000b130020004103360204200041ece3c3003602000bcc0403037f017e047f23004180026b220424000240024020012d000d450d00419ae6c3002102413121050c010b2001280200200141046a2205280200200141086a220628020010c20220054200370200200141b894c100360200200420022900002207370310024002400240024041e40110132208450d00200841003b010620084100360200200841086a200441206a41dc0110f6021a200541003602002001200836020020082f01062209410374210a417f210541002102024002400240024002400340200a2002460d01200441106a200820026a41086a410810f802220b450d03200241086a2102200541016a2105200b41004e0d000c020b0b200921050b20042007370234200420063602302004200536022c2004200136022820042008360224200441003602202004410036021820044201370310200328020021082004200328020422023602002004200441106a101802402004280214220b200428021822056b20024f0d00200520026a220a2005490d05200b4101742203200a200a2003491b220a4100480d05200b450d022004280210200b200a1015220b450d030c060b2004280210210b0c060b41ede5c3002102412d21050c060b200a1013220b0d030b200a41011014000b41e40141041014000b1010000b2004200a3602142004200b3602100b200441106a41086a220a200520026a360200200b20056a2008200210f6021a200441086a200a28020036020020042004290310370300200441206a200410b70220014180023b010c410021020b200020053602042000200236020020044180026a24000bc50901097f230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210180240024002400240024002400240024020022802042203200228020822046b410e4f0d002004410e6a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610152203450d020c030b2004410e6a2105200228020021030c030b2006101322030d010b200641011014000b20022006360204200220033602000b200241086a22062005360200200320046a220441066a4100290088f44037000020044100290082f4403700002002410e36020c2002410c6a200210180240024002400240024020022802042205200628020022036b410e4f0d002003410e6a22042003490d0520054101742206200420042006491b22064100480d052005450d0120022802002005200610152204450d020c030b200228020021040c030b2006101322040d010b200641011014000b2002200636020420022004360200200621050b200241086a2003410e6a2206360200200420036a220741066a4100290088f44037000020074100290082f44037000002400240024002400240200520066b41044f0d00200641046a22032006490d0520054101742207200320032007491b22074100480d052005450d0120042005200710152204450d020c030b200341126a21030c030b2007101322040d010b200741011014000b20022007360204200220043602000b200241086a22052003360200200420066a4105360000024020022802042206200528020022036b41034b0d00200341046a22072003490d0120064101742208200720072008491b22074100480d010240024002402006450d0020042006200710152204450d010c020b2007101322040d010b200741011014000b20022007360204200220043602000b2005200341046a360200200420036a41013600000240024002400240024020022802042203200528020022046b41044f0d00200441046a22052004490d0520034101742206200520052006491b22064100480d052003450d0120022802002003200610152205450d020c030b200228020021050c030b2006101322050d010b200641011014000b20022006360204200220053602000b200241086a2208200441046a360200200520046a41003600002002410836020c2002410c6a20021018200828020021064190f4c00021072002280204210503400240024002400240200520066b41084f0d00200641086a22042006490d0520054101742203200420042003491b22094100480d052005450d01200228020020052009101522030d020c060b200641086a2104200228020021030c020b200910132203450d040b2002200936020420022003360200200921050b20082004360200200320066a2007290000370000200741086a28020021090240200520046b41034b0d00200441046a22062004490d022005410174220a20062006200a491b22064100480d02024002402005450d00200320052006101522030d010c060b200610132203450d050b2002200636020420022003360200200621050b2008200441046a2206360200200320046a20093600002007410c6a220741f0f4c000470d000b200241106a24002006ad4220862003ad840f0b1010000b200941011014000b200641011014000bc61a05027f017e087f017e027f230041a0096b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241a8076a200241086a10d101024002400240024002400240024020022802b007450d00200241106a200241a8076a41880110f6021a20024198016a200241106a41880110f6021a200229039801200241ac016a2201200241ec016a220310a20220022903980110c10202400240024002402002290398012204500d00200241a8076a2004427f7c10a102200241a8076a2001412010f8020d0041002105200228029002210002400240024020024198026a280200220141f8016c41f801490d002001410c6c220610132207450d0b2001210820010d010c020b41042107410021082001450d010b200141f8016c2106200141037441786a21092007210103402002200036029804200241a8076a20024198046a10d001200141086a200241a8076a41086a280200360200200120022903a8073702002001410c6a2101200041f8016a2100200641887e6a22060d000b200941037641016a21050b4104210a410021064100210b02402005410c6c2201410c490d002001410c6e220b41037422004100480d0a20001013220a450d0b0b0240200720016a220c2007460d0041002106200a210120072100034020002802002109200141046a200041086a28020036020020012009360200200141086a2101200641016a21062000410c6a2200200c470d000b0b200241a8076a200a200610cc020240200b450d00200a10160b02402005450d002005410c6c21002007210103400240200141046a280200450d00200128020010160b2001410c6a2101200041746a22000d000b0b02402008450d00200710160b02402003200241a8076a412010f802450d0041b4eec300410e100920034120100a200241a8076a4120100a0b2003200241a8076a412010f8020d0520024194026a280200210520024198016a41f8006a280200210720024198016a4180016a2802002106200241a0026a20024198016a41f80010f6021a2007200641f8016c6a210020022903a002210d20072101024002400240024002402006450d0020024198046a41f8006a2109200241a8076a41086a210c200721010340200241b8066a200141f00010f6021a200141f0006a290300210420024198036a200141f8006a41800110f6021a20044203510d0220024198046a200241b8066a41f00010f6021a20024198046a41f0006a2004370300200920024198036a41800110f6021a200220024198046a36029006200241a8076a20024190066a10d001200c2802002106024020022802ac07450d0020022802a80710160b200241a8076a20024198046a41f80110f6021a200241003602a00620024190066a200241a8076a2006200241a0066a109a022002280290064101460d0502402002280294062206450d00200620024190066a41086a28020010090b200141f8016a22012000470d000b200021010b20012000470d010c020b200141f8016a22012000460d010b200241b0086a2106200241a8076a41f8006a2109034020024198036a200141f00010f6021a200141f0006a2903002104200241a8076a200141f8006a41800110f6021a20044203510d01200241b8066a20024198036a41f00010f6021a20024198046a200241a8076a41800110f6021a200241a8076a200241b8066a41f00010f6021a200241a8076a41f0006a2004370300200920024198046a41800110f6021a200610d301200141f8016a22012000470d000b0b02402005450d00200710160b10a502200d10be02200241a8076a10a9022002200241a0026a41106a280200220b3602b00620022802a80221032002200241a8076a41106a28020022013602b406200b2001470d0720022802b007210a02400240200b450d00410021050340024002402003200541286c22006a22012d00002206200a20006a22002d0000470d0002400240024020064101460d0020064102470d01200141086a2802002209200041086a280200470d03200141186a210c2009450d02200c290300200041186a290300520d03200141206a290300200041206a290300520d03200141146a280200220e200041146a280200470d032001410c6a28020022092000410c6a280200220c460d04417f21070340200741016a2207200e4f0d052009200c412010f8020d04200c41206a2108200941206a210f200941286a2109200c41286a210c200f2903002008290300510d000c040b0b2001410c6a28020022082000410c6a280200470d022008450d03200141046a2802002209200041046a280200220c460d034100210703402009200c412010f8020d03200941206a2109200c41206a210c200741016a22072008490d000c040b0b2003200a460d02200141016a200041016a412010f8020d010c020b200c290300200041186a290300520d00200141146a280200220e200041146a280200470d002001410c6a28020022092000410c6a280200220c460d01417f21070340200741016a2207200e4f0d022009200c412010f8020d01200c41206a2108200941206a210f200941286a2109200c41286a210c200f2903002008290300510d000b0b41b0f5c0004114100920024198046a2001107d200228029804220920024198046a41086a2206280200100a0240200228029c04450d00200910160b20024198046a2000107d20022802980422092006280200100a0240200228029c04450d00200910160b20012d000020002d00002206470d030b024002400240024020064101460d0020064102470d01200141086a2802002206200041086a280200470d06200141186a21092006450d022009290300200041186a290300520d06200141206a290300200041206a290300520d06200141146a2802002207200041146a280200470d062001410c6a28020022012000410c6a2802002200460d03417f21060340200641016a220620074f0d0420012000412010f8020d07200041206a2109200141206a210c200141286a2101200041286a2100200c2903002009290300510d000c070b0b2001410c6a28020022092000410c6a280200470d052009450d02200141046a2802002201200041046a2802002200460d0241002106034020012000412010f8020d06200141206a2101200041206a2100200641016a22062009490d000c030b0b2003200a460d01200141016a200041016a412010f802450d010c040b2009290300200041186a290300520d03200141146a2802002207200041146a280200470d032001410c6a28020022012000410c6a2802002200460d00417f21060340200641016a220620074f0d0120012000412010f8020d04200041206a2109200141206a210c200141286a2101200041286a2100200c2903002009290300510d000c040b0b200541016a2205200b490d000b0b20024198046a41186a2201420037030020024198046a41106a2200420037030020024198046a41086a22064200370300200242003703980420024198046a100520024198036a41186a200129030037030020024198036a41106a200029030037030020024198036a41086a20062903003703002002200229039804370398030240200241d4026a220120024198036a412010f802450d0041b4eec300410e100920014120100a20024198036a4120100a0b200120024198036a412010f8020d090240200b450d00200b41286c2100200a21010340024020012d00002206450d00024020064101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b0240200241b4076a280200450d00200a10160b0240200241a0026a41106a2802002200450d00200241a0026a41086a2802002101200041286c21000340024020012d00002206450d00024020064101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b0240200241ac026a280200450d00200241a8026a28020010160b200241a0096a240042010f0b41c8d1c2001038000b2002280294062202450d0120024103460d0220024104460d034198d1c2001038000b41a0d0c2001038000b41e8d0c2001038000b41d0d0c2001038000b4180d1c2001038000b200241ac046a41013602002002410236029c012002419ce7c300360298012002420137029c04200241a4e7c30036029804200220024198016a3602a80420024198046a41ace7c3001046000b41b8d0c2001038000b2002200241b0066a3602a0062002200241b4066a3602900620024198046a41146a410036020020024198036a41146a4105360200200241a4036a410a360200200241b8066a41146a4103360200200241acf1c3003602a8042002420137029c04200241b0d1c200360298042002410a36029c03200242033702bc06200241e4efc3003602b806200220024198046a3602a803200220024190066a3602a0032002200241a0066a36029803200220024198036a3602c806200241b8066a41b8d1c2001046000b41e0d1c2001038000b200641041014000b1010000b200041041014000bcb03010b7f230041206b22032400024002402002450d0020024102742204101322050d01200441041014000b410421050b0240024002400240200120024103746a22062001460d0020024103742107200141046a210420052108034020082004280200360200200441086a2104200841046a2108200741786a22070d000b200641786a20016b41037641016a21094101210a4100210b4100210403402001280200210c0240024002400240200b20046b200141046a28020022084f0d00200420086a22072004490d07200b410174220d20072007200d491b220d4100480d07200b450d01200a200b200d1015220a0d020c080b200820046a21070c020b200d1013220a450d060b200d210b0b200a20046a200c200810f6021a20072104200141086a22012006470d000c020b0b4101210a410021094100210b0b200341186a22044200370300200341106a22014200370300200341086a2208420037030020034200370300200a200520092003100b200041186a2004290300370000200041106a2001290300370000200041086a2008290300370000200020032903003700000240200b450d00200a10160b02402002450d00200510160b200341206a24000f0b1010000b200d41011014000be70201027f23004180026b22022400024002402001450d00200220003602000c010b200241acf1c3003602000b2002200136020420024180016a200210ce010240200228028801450d00200241086a20024180016a41f80010f6021a20022903082002411c6a200241dc006a10a202200229030810c1020240200241086a41106a2802002200450d0020022802102101200041286c21000340024020012d00002203450d00024020034101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b0240200241146a280200450d00200241106a28020010160b20024180026a240042010f0b2002411c6a4101360200200241023602fc01200241a4e8c3003602f8012002420137020c200241a4e7c3003602082002200241f8016a360218200241086a41ace7c3001046000b060010b401000bdc0d01087f230041206b22022400200241003602182002420137031002400240024002400240024002400240410410132203450d0020024104360214200241186a22042004280200220541046a36020020022003360210200320056a41edcad18b06360000024002400240200228021420042802002203470d00200341016a22042003490d0620034101742205200420042005491b22044100480d062003450d0120022802102003200410152205450d020c040b200228021021050c040b2004101322050d020b200441011014000b410441011014000b2002200436021420022005360210200241186a28020021030b200241186a2204200341016a360200200520036a41033a00004116200241106a10d00241002103024003402003418ce6c0006a28020020034190e6c0006a280200200241106a10d1020240024002400240024002400240024002400240024002400240024002400240024020034194e6c0006a2802004101470d0020034198e6c0006a2802002003419ce6c0006a280200200241106a10d102200341a0e6c0006a22062802004102460d010c020b200220034198e6c0006a28020011030020022802002002280204200241106a10d102200341a0e6c0006a22062802004102470d010b02400240024002400240200228021420042802002205470d00200541016a22062005490d1620054101742207200620062007491b22074100480d162005450d01200228021020052007101522060d020c040b200228021021060c020b200710132206450d020b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341b0e6c0006a22062802004102470d020c030b200741011014000b0240024002400240200228021420042802002205470d00200541016a22072005490d1420054101742208200720072008491b22084100480d142005450d01200228021020052008101522070d020c0d0b200228021021070c020b200810132207450d0b0b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d202200341b0e6c0006a22062802004102460d010b0240200228021420042802002205470d00200541016a22072005490d1020054101742208200720072008491b22084100480d102005450d02200228021020052008101522070d030c0a0b200228021021070c030b0240200228021420042802002205470d00200541016a22062005490d0f20054101742207200620062007491b22074100480d0f2005450d04200228021020052007101522060d050c0a0b200228021021060c050b200810132207450d070b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d302200341c0e6c0006a22062802004102460d030c080b200710132206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c0e6c0006a22062802004102470d050b0240024002400240200228021420042802002205470d00200541016a22062005490d0b20054101742207200620062007491b22074100480d0b2005450d01200228021020052007101522060d020c070b200228021021060c020b200710132206450d050b2002200736021420022006360210200428020021050b2004200541016a360200200620056a41003a0000200341c8006a220341b00c470d050c060b200841011014000b200841011014000b200741011014000b200741011014000b0240024002400240200228021420042802002205470d00200541016a22072005490d0620054101742208200720072008491b22084100480d062005450d01200228021020052008101522070d020c070b200228021021070c020b200810132207450d050b2002200836021420022007360210200428020021050b2004200541016a360200200720056a41013a00002006200241106a10d402200341c8006a220341b00c470d000b0b200241186a2802002103200228021421072002280210210620024100360218200242013703102002200336020c2002410c6a200241106a101802400240024020022802142205200228021822046b20034f0d00200420036a22082004490d0320054101742209200820082009491b22084100480d032005450d0120022802102005200810152205450d020c050b2002280210220520046a2006200310f6021a200420036a21032007450d060c050b2008101322050d030b200841011014000b1010000b200841011014000b2002200836021420022005360210200520046a2006200310f6021a200420036a21032007450d010b200610160b200241206a24002003ad4220862005ad840b910701037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402000413f4b0d00200141046a280200200141086a2802002202470d01200241016a22032002490d1120024101742204200320032004491b22044100480d112002450d0520012802002002200410152203450d060c170b2000418080014f0d01200141046a2802002203200141086a28020022026b41024f0d02200241026a22042002490d1020034101742202200420042002491b22024100480d102003450d0820012802002003200210152203450d090c140b200128020021030c160b20004180808080044f0d01200141046a2802002203200141086a28020022026b41044f0d04200241046a22042002490d0e20034101742202200420042002491b22024100480d0e2003450d08200128020020032002101522030d090c0f0b200128020021030c120b200141046a280200200141086a2802002202470d03200241016a22032002490d0c20024101742204200320032004491b22044100480d0c2002450d09200128020020022004101522030d0a0c0e0b2004101322030d110b200441011014000b200128020021030c050b200128020021030c070b2002101322030d0b0b200241011014000b200210132203450d060b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20004102744102723600000f0b200410132203450d040b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240024002400240200141046a2802002203200428020022026b41044f0d00200241046a22042002490d0420034101742202200420042002491b22024100480d042003450d01200128020020032002101522030d020c070b200128020021030c020b200210132203450d050b20012003360200200141046a2002360200200141086a28020021020b200141086a200241046a360200200320026a20003600000f0b1010000b200241011014000b200441011014000b200241011014000b20012003360200200141046a2002360200200141086a28020021020b200141086a200241026a360200200320026a20004102744101723b00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a20004102743a00000bc60801037f02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1920034101742205200420042005491b22054100480d192003450d0520022802002003200510152204450d060c160b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1820044101742203200520052003491b22034100480d182004450d0820022802002004200310152204450d090c130b200228020021040c150b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d1620044101742203200520052003491b22034100480d162004450d08200228020020042003101522040d090c0e0b200228020021040c110b200241046a280200200241086a2802002203470d03200341016a22042003490d1420034101742205200420042005491b22054100480d142003450d09200228020020032005101522040d0a0c0d0b2005101322040d100b200541011014000b200228020021040c050b200228020021040c070b2003101322040d0a0b200341011014000b200310132204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20014102744102723600000c0a0b200510132204450d030b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0c20044101742203200520052003491b22034100480d0c2004450d01200228020020042003101522040d020c060b200228020021040c020b200310132204450d040b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a20013600000c070b200341011014000b200541011014000b200341011014000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b00000c020b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a00000b024002400240200241046a2802002204200241086a28020022036b20014f0d00200320016a22052003490d0320044101742203200520052003491b22034100480d032004450d0120022802002004200310152204450d020c040b200228020021040c040b2003101322040d020b200341011014000b1010000b20022004360200200241046a2003360200200241086a28020021030b200241086a200320016a360200200420036a2000200110f6021a0bff0901097f230041206b22022400024002400240024002400240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d0022000450d01200041e4006c2104410021050340200320056a220041046a280200200041086a280200200110d102200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240200041e0006a2d00004101470d0020072009470d01200941016a22072009490d0d2009410174220a20072007200a491b220a4100480d0d2009450d0320012802002009200a101522070d040c0e0b20072009470d01200941016a22072009490d0c2009410174220a20072007200a491b220a4100480d0c2009450d0520012802002009200a101522070d060c0e0b200128020021070c030b200128020021070c050b200a10132207450d0a0b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10132207450d080b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b2000410c6a200110e40202400240200041c0006a2802004101470d00200041c4006a280200200041cc006a280200200110d1020c010b200241106a200041c4006a280200200041c8006a28020028020c11020020022802102209200241106a41086a280200200110d1022002280214450d00200910160b200041d4006a28020021090240200041d0006a2802004101470d002009200041dc006a280200200110e5022004200541e4006a2205470d010c030b2009200041d8006a280200200110e5022004200541e4006a2205470d000c020b0b200241086a200041046a28020011030020022802082103200228020c2200200110d0022000450d00200041e4006c2104410021050340200320056a220041046a280200200041086a280200200110d102200141046a22062802002107200141086a220828020021090240024002400240024002400240024002400240200041e0006a2d00004101470d0020072009470d01200941016a22072009490d0c2009410174220a20072007200a491b220a4100480d0c2009450d0320012802002009200a101522070d040c0f0b20072009470d01200941016a22072009490d0b2009410174220a20072007200a491b220a4100480d0b2009450d0520012802002009200a101522070d060c0f0b200128020021070c030b200128020021070c050b200a10132207450d0b0b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41013a00000c030b200a10132207450d090b200120073602002006200a360200200828020021090b2008200941016a360200200720096a41003a00000b2000410c6a200110e40202400240200041c0006a2802004101470d00200041c4006a280200200041cc006a280200200110d1020c010b200241106a200041c4006a280200200041c8006a28020028020c11020020022802102209200241106a41086a280200200110d1022002280214450d00200910160b200041d4006a28020021090240200041d0006a2802004101470d002009200041dc006a280200200110e5022004200541e4006a2205470d010c020b2009200041d8006a280200200110e5022004200541e4006a2205470d000b0b200241206a24000f0b1010000b200a41011014000b200a41011014000b200a41011014000b200a41011014000bf40201057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d0022000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d1022000410c6a200110e302200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c030b2006200041246a280200200110e50220042005412c6a2205470d000c020b0b200241086a200041046a28020011030020022802082103200228020c2200200110d0022000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d1022000410c6a200110e302200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c020b2006200041246a280200200110e50220042005412c6a2205470d000b0b200241106a24000bda0301057f230041106b220224000240024020002802004101470d00200041046a28020021032000410c6a2802002200200110d0022000450d012000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d102200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e5020c010b2006200041146a280200200110e5020b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c030b2006200041246a280200200110e50220042005412c6a2205470d000c020b0b200241086a200041046a28020011030020022802082103200228020c2200200110d0022000450d002000412c6c2104410021050340200320056a220041046a280200200041086a280200200110d102200041106a2802002106024002402000410c6a2802004101470d002006200041186a280200200110e5020c010b2006200041146a280200200110e5020b200041206a280200210602402000411c6a2802004101470d002006200041286a280200200110e50220042005412c6a2205470d010c020b2006200041246a280200200110e50220042005412c6a2205470d000b0b200241106a24000be00301017f230041a0066b22022400024002402001450d00200220003602000c010b200241acf1c3003602000b2002200136020420024198046a200210d2010240024002400240024002402002290388054203510d00200241086a20024198046a41f80110f6021a20024180026a200241086a41f80110f6021a200220024180026a36029804200241f8036a20024198046a10d001200228028004210120024198046a20024180026a41f80110f6021a20024198066a200228028004360200200220022903f8033703900620024188046a20024198046a200120024190066a109a02024002402002280288044101470d004280828898f01f200228028c04410374ad88a7210041011013210141010d010c050b200228028c0441004721004101101321014100450d040b2001450d01200141013a000020014101410210152201450d020c040b20024194026a41013602002002410236020c200241bce8c3003602082002420137028402200241a4e7c300360280022002200241086a3602900220024180026a41ace7c3001046000b410141011014000b410241011014000b2001450d01200141003a0000200141014102101522010d00410241011014000b200120003a0001200241a0066a24002001ad428080808020840f0b410141011014000bb71203027f017e0b7f230041c0016b2202240010a502200241086a41086a2203420037030020024200370308419be8c200410d200241086a100220024180016a41086a20032903003703002002200229030837038001420021040240024002400240024002400240024020024180016a411041acf1c300410041001000417f460d002002420037030820024180016a4110200241086a41084100100041016a41084d0d01200229030821040b200410be02200241b0016a41086a22034200370300200242003703b00141fbe5c2004115200241b0016a1002200241a0016a41086a2003290300370300200220022903b0013703a001200241a0016a411041acf1c300410041001000417f460d01410021052002410036020841042106410121070240200241a0016a4110200241086a41044100100041016a41044d0d0020022802082208450d032008ad420c7e2204422088a70d042004a722034100480d040240200310132206450d00200621094100210a03400240024002400240024002400240411410132203450d00200341106a41002800f9e742360000200341086a41002900f1e742370000200341002900e9e7423700002003411441281015220b450d01200b200a360014200241b0016a41086a22034200370300200242003703b001200b4118200241b0016a1002200241086a41086a2003290300370300200220022903b001370308200241086a411041acf1c300410041001000417f460d0520024210370284012002200241086a36028001200220024180016a101202402002280200450d0020022802042203417f4c0d03024002402003450d002003101b220c450d0620024180016a41086a22052005280200220520034100200228028001200228028401200c20032005100022052005417f461b2205200520034b1b22056a36020020052003470d010c070b4101210c2002280280012002280284014101410020024180016a41086a28020010001a41002003460d060b2003450d00200c10160b41b6e7c20041331029000b411441011014000b412841011014000b100f000b200341011014000b200241086a41101003200c0d010b4101210c410021030b200b1016200941086a2003360200200941046a20033602002009200c3602002009410c6a21092008200a41016a220a470d000b41002107200821050c040b200341041014000b41b6e7c20041331029000b41b6e7c20041331029000b4101210741002105410421060b410421084100210b4100210d02400240024002402005410c6c2203410c490d002003410c6e220d41037422094100480d04200910132208450d010b0240200620036a220a2006460d004100210b200821032006210903402009280200210c200341046a200941086a2802003602002003200c360200200341086a2103200b41016a210b2009410c6a2209200a470d000b0b20024180016a2008200b10cc020240200d450d00200810160b02402005450d002005410c6c21092006210303400240200341046a280200450d00200328020010160b2003410c6a2103200941746a22090d000b0b024020070d00200610160b200241086a41186a20024180016a41186a290300370300200241086a41106a20024180016a41106a290300370300200241086a41086a20024180016a41086a2903003703002002200229038001370308200241b0016a41086a220b4200370300200242003703b00141a8e8c2004115200241b0016a1002200241a0016a41086a200b290300370300200220022903b0013703a001200241a0016a4110200241086a41201001200241086a10a902200241003602b801200242013703b0010240412010132203450d00200242a080808080043702b401200220033602b0012003200229021c370000200341086a200241246a290200370000200341106a2002412c6a290200370000200341186a200241346a290200370000200241086a200241b0016a10b10102400240024020022802b4012209200b280200220c6b41204f0d00200c41206a2203200c490d072009410174220b20032003200b491b220a4100480d072009450d0120022802b0012009200a1015220b450d020c050b200c41206a210320022802b001210b0c050b200a1013220b0d030b200a41011014000b412041011014000b200941041014000b2002200a3602b4012002200b3602b001200a21090b200241b0016a41086a220a2003360200200b200c6a220c41086a200241c4006a290200370000200c41106a200241cc006a290200370000200c41186a200241d4006a290200370000200c200229023c3700000240200920036b411f4b0d00200341206a220c2003490d0120094101742208200c200c2008491b220c4100480d010240024002402009450d00200b2009200c1015220b450d010c020b200c1013220b0d010b200c41011014000b2002200c3602b4012002200b3602b0010b200a200341206a360200200b20036a220341186a200241f4006a290200370000200341106a200241ec006a290200370000200341086a200241e4006a2902003700002003200229025c3700002002280210210e2002200241086a41106a280200220f3602800120024180016a200241b0016a10180240200f450d00200f41286c2106200241b0016a41086a2207280200210320022802b401210a200e210b034020024180016a200b107d20022802800121080240024002400240200a20036b20024180016a41086a280200220c4f0d002003200c6a22092003490d06200a4101742205200920092005491b220d4100480d06200a450d0120022802b001200a200d101522050d020c070b2003200c6a210920022802b00121050c020b200d10132205450d050b2002200d3602b401200220053602b001200d210a0b20072009360200200520036a2008200c10f6021a0240200228028401450d00200810160b200b41286a210b20092103200641586a22060d000b0240200f450d00200f41286c210b200e21030340024020032d0000220c450d000240200c4101470d00200341086a280200450d01200341046a2802001016200341286a2103200b41586a220b0d020c030b200341106a280200450d002003410c6a28020010160b200341286a2103200b41586a220b0d000b0b200241146a280200450d040c030b200241b8016a280200210920022802b0012105200241146a2802000d020c030b1010000b200d41011014000b200e10160b200241c0016a24002009ad4220862005ad840b9e0f03017f037e117f23004190026b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241306a200241086a10d8020240024002402002280230450d00200241106a41086a2201200241306a41086a220028020036020020022002290330370310200241206a41086a200128020036020020022002290310370320200241a0016a200241206a10d90220022802a0014101460d01200241a0016a41086a2201290300210320014200370300200242003703a00141ee94c300410d200241a0016a100220002001290300370300200220022903a00137033042002104024002400240200241306a411041acf1c300410041001000417f460d00200242003703a001200241306a4110200241a0016a41084100100041016a41084d0d0120022903a00121040b200241a0016a41086a22014200370300200242003703a001419095c3004117200241a0016a1002200241306a41086a2001290300370300200220022903a00137033002400240200241306a411041acf1c300410041001000417f460d00200242003703a001200241306a4110200241a0016a41084100100041016a41084d0d0320022903a001210541f801210141f80110132206450d010c060b4203210541f801210141f801101322060d050b200141081014000b41b6e7c20041331029000b41b6e7c20041331029000b200241b4016a41013602002002410236029401200241d4e8c30036029001200242013702a401200241a4e7c3003602a001200220024190016a3602b001200241a0016a41ace7c3001046000b41df96c300412820022802a401200241a0016a41086a28020010db01000b2006200241a0016a41f00010f602220742023703702007410036028801200720022903900137037820074180016a20024190016a41086a29030037030020072003200520047c220420042003541b3703900120074198016a200241306a41e00010f6021a2002280220220821092002280224220a210b41002101037e02400240024020010e020001010b200941086a210020092f0106220d4103742101417f210c02400240024003402001450d0141e5e5c3002000410810f802220e450d03200141786a2101200c41016a210c200041086a2100200e417f4a0d000b200b0d010c020b200d210c200b450d010b200b417f6a210b2009200c4102746a41e4016a2802002109410021010c030b4108210f41032110417f21114102211241e401211341c7c8c300211441782115410121160c010b2008200f6a210020082f0106220d20107421014100210c02400240024002400240024003402001450d0120142000200f10f802220e450d02200120156a2101200c20166a210c2000200f6a2100200e20114a0d000b200c20116a210d0b200a450d01200a20116a210a2008200d2012746a20136a2802002108410121010c060b200841e0006a200c410c6c6a2200450d002000280208210120002802002100200242003703a001200241a0016a20002001410820014108491b10f6021a200141074d0d0120022903a0012103200241a0016a41086a22014200370300200242003703a00141dde8c2004115200241a0016a1002200241306a41086a2001290300370300200220022903a0013703304100210102400240200241306a411041acf1c300410041001000417f460d0020024210370294012002200241306a36029001200241a0016a20024190016a101e20022802a001220f450d04200241a8016a280200210120022802a401210c0c010b4108210f4100210c0b4100210002402001417f6a220e20014b0d00200e20014f0d00200f200e4103746a2201450d00200129030020035221000b0240200c450d00200f10160b024002402000450d00200741f80141f00310152206450d05200641f8016a200241a0016a41f00010f6021a200642023703e8022006200337038803200641073602800320062002290390013703f002200641f8026a20024198016a29030037030020064190036a200241306a41e00010f6021a410221090c010b410121090b20022802202002280224200228022810c2022002410036023820024201370330200220093602a001200941f8016c2115200241a0016a200241306a10182002280234210e20022802382101200241a0016a41086a21084100210f02400240034020022006200f6a36029001200241a0016a20024190016a10d00120022802a00121110240024002400240200e20016b2008280200220c4f0d002001200c6a22002001490d05200e4101742214200020002014491b22164100480d05200e450d012002280230200e2016101522140d020c060b2001200c6a2100200228023021140c020b201610132214450d040b20022016360234200220143602302016210e0b200241306a41086a2000360200201420016a2011200c10f6021a024020022802a401450d00201110160b200021012015200f41f8016a220f470d000b200941f8016c210f410021010340200620016a4188016a10d301200f200141f8016a2201470d000b2006101620024190026a24002000ad4220862014ad840f0b1010000b201641011014000b41e8ebc200412b41cfc8c300412810db01000b41e8ebc200412b4181eac300412910db01000b41b6e7c20041331029000b41f00341081014000b410121010c000b0b870a06027f017e097f017e077f017e23004190026b22022400200241086a2001101a024002402002280208450d000240024002400240024002400240024002400240024002400240024002400240200228020c2203ad2204421d88a70d002004420386a72205417f4c0d00024002402005450d00200510132206450d032003450d010c040b4101210620030d030b410021054100210b2006450d100c030b100f000b200541011014000b200141046a210741002108410021094100210a2003210b034020024200370330200241306a2001280200220c20072802002205410820054108491b220d10f6021a20072005200d6b3602002001200c200d6a360200200541074d0d02200a41016a2105200229033021040240200a200b470d002008200520052008491b220bad420386220e422088a70d09200ea7220d4100480d090240200a450d0020062009200d101522060d010c0b0b200d10132206450d0a0b200620096a2004370000200841026a2108200941086a21092005210a20052003490d000b2006450d0d0b2005ad422086200bad84210e200241306a200110192002280230220f450d0120022802342110200241306a41086a2802002205200e422088a7470d0220024200370214200241b894c100360210200f2005410c6c6a210320054103742205450d03200620056a2111200241106a41086a2112200241c4006a2113200241c0006a2114200f21012006210b0340200122052003460d062005410c6a210120052802002215450d05200529020421042002200b2900002216370320024002402002280210220841b894c100460d00200228021421070c010b41e40110132208450d0a41002107200841003b010620084100360200200841086a200241306a41dc0110f6021a20024100360214200220083602100b200b41086a210b02400340200841086a210a20082f0106220c410374210541002109024003402005450d01200241206a200a410810f802220d450d03200541786a2105200941016a2109200a41086a210a200d417f4a0d000b2009417f6a210c0b02402007450d002007417f6a21072008200c4102746a41e4016a28020021080c010b0b2013201637020020142012360200200241306a410c6a200c360200200241306a41086a200241106a36020020022008360234200241003602302002200437022420022015360220200241306a200241206a10b702200b2011470d010c060b20082009410c6c6a220541e4006a220a2802002109200a2004370200200541e0006a220a2802002105200a201536020002402005450d002009450d00200510160b200b2011470d000c050b0b200b450d0b0c0a0b200ea70d090c0a0b2000410036020002402005450d002005410c6c210a200f210503400240200541046a280200450d00200528020010160b2005410c6a2105200a41746a220a0d000b0b02402010450d00200f10160b200ea7450d0a2006101620024190026a24000f0b200f21010b200ea7450d050c040b20032101200ea70d030c040b1010000b200d41011014000b41e40141041014000b200610160b024020012003460d00034020012802002205450d010240200141046a280200450d00200510160b2001410c6a22012003470d000b0b02402010450d00200f10160b200241306a41086a2205200241106a41086a28020036020020022002290310370330200041086a20052802003602002000200229033037020020024190026a24000f0b200610160b200041003602000b20024190026a24000bae0201077f230041106b2202240020012802042103024002400240024003402001280200220541086a210620052f010622044103742101410021070240024003402001450d0141c6eac3002006410810f8022208450d02200141786a2101200741016a2107200641086a21062008417f4a0d000b2007417f6a21040b2003450d022003417f6a2103200520044102746a41e4016a21010c010b0b200541e0006a2007410c6c6a2206450d00200628020821012006280200210620024200370308200241086a20062001410820014108491b10f6021a200141074d0d01200041086a2002290308370300410021010c030b200041f7eac300360204200041086a41283602000c010b200041ceeac300360204200041086a41293602000b410121010b20002001360200200241106a24000baa3a170c7f017e037f017e097f027e017f017e087f047e057f027e027f037e067f027e037f017e187f027e0d7f027e057f230041d0026b22022400024002402001450d00200220003602100c010b200241acf1c3003602100b20022001360214200241f0006a200241106a10d1010240024002400240024020022802782203450d00200241f0016a2802002104200241ec016a280200210520024180016a2802002106200241fc006a280200210720022802e8012108200241186a200241106a10d8022002280218450d01200241306a41086a2201200241186a41086a220928020036020020022002290318370330200241c0006a41086a200128020036020020022002290330370340200241013b015c20024200370254200241b894c100360250200241d0006a41086a210a2004450d0241f801210b2008200441f8016c6a210c41f000210d4202210e200241f0006a41086a210f410d2110200241d0006a410d6a211142f4d2b59bc7ae98b830211241e401211341dc0121144103211520024184016a211641102117200241f0006a41106a2118410c2119200241f0006a410c6a211a4100211b4201211c428180808010211d4109211e42898080809001211f417f21204102212141782122418801212341ee94c300212441acf1c300212541172126419095c3002127423c212842808080807021294225212a427f212b41f9e9c300212c41e000212d4107212e2008212f410021300c030b2002412c6a410136020020024102360254200241f0e8c3003602502002420137021c200241a4e7c3003602182002200241d0006a360228200241186a41ace7c3001046000b20024184016a410136020020024102360254200241f0e8c30036025020024201370274200241a4e7c3003602702002200241d0006a36028001200241f0006a41ace7c3001046000b410021010c010b410221010b037e024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020010e03000102020b200241f0006a41086a200a290300370300200220022903503703700c250b204f2050410c6c6a41a07f460d01411e2144419febc30021510c020b02400240024002400240024020300e06000102030405050b202f200d6a290300200e520d140240202f280288012201450d002001450d230c540b202f290390012131200241f0006a200241c0006a10d9020240024020022802704101470d00200f3502002132200228027421334101213420112d0000450d010c0d0b200f290300213542002132200f42003703002002420037037020242010200241f0006a10022009200f290300370300200220022903703703180240200241186a20172025201b201b10002020460d0020024200370370200241186a2017200241f0006a4108201b100041016a41084d0d0b200229037021320b200f42003703002002420037037020272026200241f0006a10022009200f29030037030020022002290370370318024002400240200241186a20172025201b201b10002020460d0020024200370370200241186a2017200241f0006a4108201b100041016a41084d0d0e200229037021362031203520287c580d020c010b420321362031203520287c580d010b2037202983202a8421324101213441ba96c300213320112d0000450d010c0d0b410021342031203620327c22325a0d2220112d00000d0c0b024002402034450d0020022802502002280254200a28020010c20220024200370254200241b894c100360250200220123703180c010b2002280250213820022012370318203841b894c100460d00200228025421390c210b201310132238450d0c41002139203841003b010620384100360200203841086a200241f0006a201410f6021a20024100360254200220383602500c1f0b2045280200224f20476a2100204f2f0106223d204874210141002150024003402001450d01204c2000204710f802223c450d162001204d6a21012050204e6a2150200020476a2100203c20494a0d000b205020496a213d0b2046450d04204620496a2146204f203d204a746a204b6a2145410121300c150b2053205b2059205a6a220120012059491b6a22012053490d4d2053205a742200200120012000491b2254ad205c862231205d88a70d4d2031a72201205e480d4d02402053450d0020552053205f742001101522550d0f0c060b200110132255450d05410321300c170b20552053205f746a20583602002053205a6a21532059450d260240205720442f01064f0d00204420572060746a20616a21582057205a6a21572059205b6a215920542053460d0c0c0d0b41012101024020442f01042200204428020022442f0106490d004101210103402001205a6a210120442f01042200204428020022442f01064f0d000b0b204420002060746a20616a215820442000205f746a20626a2802002144410021572001205a460d24205a20016b2101034020442802e40121442001205a6a22010d000c250b0b2064206a206920636a220120012069491b6a22012064490d4b20642063742200200120012000491b2265ad206b862231206c88a70d4b2031a72201206d480d4b02402064450d0020662064206e742001101522660d100c050b200110132266450d04410521300c190b20662064206e746a2068360200206420636a216402402069450d000240206720512f01064f0d0020512067206f6c6a20706a2168206720636a21672069206a6a216920652064460d0e0c0f0b41012101024020512f01042200205128020022512f0106490d00410121010340200120636a210120512f01042200205128020022512f01064f0d000b0b20512000206f6c6a20706a216820512000206e746a20716a28020021514100216720012063460d22206320016b2101034020512802e4012151200120636a22010d000c230b0b206621502053413f4b0d360c270b412f214441ede6c30021510b2002204436026420022051360260200242efcc99e3a6ae99b8303703182002200241d0006a200241186a200241e0006a10c902200228020022440d06200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c210b200141041014000b200141041014000b41b6e7c20041331029000b41b6e7c20041331029000b41cbe6c3004122419ae6c300413110db01000b41e40141041014000b41cbe6c30041222044200228020410db01000b410221300c080b410321300c080b410321300c090b410421300c090b410521300c090b410521300c0a0b410021010c450b410121010c440b410221010c430b410221010c420b410221010c410b410221010c400b410221010c3f0b410221010c3e0b410221010c3d0b410221010c3c0b410221010c3b0b4100213b0c030b4100213b0c030b410021010c030b410121010c020b410221010c010b410221010b0340024002400240024002400240024020010e03000102020b202f20236a28020022010d34410121010c060b202f29039001213e200f42003703002002420037037020272026200241f0006a10022009200f290300370300200220022903703703180240024002400240200241186a20172025201b201b10002020460d0020024200370370200241186a2017200241f0006a4108201b100041016a41084d0d02200229037021310c010b420321310b202b203120317c223f203f2031541b223f500d01200241c0006a2140200228024421410c030b41b6e7c20041331029000b41d885c0001038000b0240024002400240024002400240024002400240024002400240203b0e020001010b203841086a210020382f0106223a20157421014100213c024003402001450d01200241186a2000410810f802223d450d08200120226a2101203c41016a213c200041086a2100203d20204a0d000b203c20206a213a0b02402039450d00203920206a21392038203a2021746a20136a28020021384100213b0c0e0b201620123702002018200a360200201a203a360200200f200241d0006a360200200220383602742002201b3602702009201b3602002002201c3703184101101321010240024002400240024002402034450d002001450d0f200141013a00002002201d37021c2002200136021820022032a72201360260200241e0006a200241186a1018200228021c223c200928020022006b20014f0d01200020016a223d2000490d40203c410174223a203d203d203a491b223d201b480d40203c450d022002280218203c203d1015223c0d030c100b2001450d0c2001201b3a00002002201d37021c2002200136021820014101201e10152201450d0d200120323700012002201f37021c200220013602180c040b2002280218213c0c020b203d1013223c450d0d0b2002203d36021c2002203c3602180b2009200020016a360200203c20006a2033200110f6021a0b200241e0006a41086a200928020036020020022002290318370360200241f0006a200241e0006a10b702201120343a0000200241d0006a20196a201b3a00002032213720340d01410021010c100b2040280200223a41086a2100203a2f0106224220157421014100213c02400240024003402001450d01202c2000410810f802223d450d02200120226a2101203c41016a213c200041086a2100203d20204a0d000b203c20206a21420b2041450d01204120206a2141203a20422021746a20136a21404101213b0c100b203a202d6a203c20196c6a2200450d00200028020821012000280200210020024200370370200241f0006a20002001410820014108491b10f6021a2001202e4d0d02203e203f8020022903702243520d040c3f0b204342808080807083421c84213141aaeac30021440c020b200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c110b20434280808080708342298421314181eac30021440b2031a721510c010b4131215141cb86c00021440b2002205136026420022044360260200242e1eac98bb68edbb7f400370318200241086a200241d0006a200241186a200241e0006a10c902200228020822440d05200241f0006a41086a200241d0006a41086a290300370300200220022903503703700c0d0b41cbe6c300412241ede5c300412d10db01000b410141011014000b410941011014000b410141011014000b203d41011014000b41cbe6c30041222044200228020c10db01000b4101213b0c010b410221010c020b410221010c010b410221010c000b0b2069206a6a216902400240024020652064470d00410421300c010b410521300c010b410221010c340b410221010c330b2059205b6a215902400240024020542053470d00410221300c010b410321300c010b410221010c330b410221010c320b20022802402002280244200228024810c20202402006450d00200641286c2151200321440340024020442d00002201450d00024020014101470d00204441086a280200450d01204441046a2802001016204441286a2144205141586a22510d020c030b204441106a280200450d002044410c6a28020010160b204441286a2144205141586a22510d000b0b02402007450d00200310160b02402004450d00200441f8016c215120084188016a21440340204410d301204441f8016a2144205141887e6a22510d000b0b02402005450d00200810160b410110132244450d05204420022d007c3a000020444101410210152252450d06205220022d007d3a0001200228027022512144024020022802742200450d002051214420002101034020442802e40121442001417f6a22010d000b2000210103402001417f6a22010d000b0b02400240024020022802782230450d002030417f6a215320442f0106450d01204441086a213c410121000c020b4100215441042155410421564100215320000d030c040b0240024020442f01042200204428020022442f01064f0d00410121010c010b410121010340200141016a210120442f01042200204428020022442f01064f0d000b0b204420004103746a41086a213c204420004102746a41e8016a28020021444100210020014101460d00410120016b2101034020442802e4012144200141016a22010d000b0b417f205341016a220120012053491b2254ad2231421e88a70d042031420286a72201417f4c0d04024002400240024002402001450d00200110132255450d0d2055203c3602002053450d020c010b410421554104203c3602002053450d010b200020442f01064f0d01200041016a2157204420004103746a41086a21580c020b410121530c020b0240024020442f01042200204428020022442f01064f0d00410121010c010b410121010340200141016a210120442f01042200204428020022442f01064f0d000b0b204420004103746a41086a2158204420004102746a41e8016a28020021444100215720014101460d00410120016b2101034020442802e4012144200141016a22010d000b0b2030417e6a21594101215a417f215b4202215c4220215d4100215e4102215f410321604108216141e80121624101215320544101470d0b0c0a0b205521562002280270215120022802742200450d010b20002101034020512802e40121512001417f6a22010d000b03402000417f6a22000d000b0b024002400240200241f8006a2802002263450d002063417f6a216420512f0106450d01205141e0006a2130410121000c020b410021654104216641042150410021642053413f4d0d020c110b0240024020512f01042200205128020022512f01064f0d00410121010c010b410121010340200141016a210120512f01042200205128020022512f01064f0d000b0b20512000410c6c6a41e0006a2130205120004102746a41e8016a28020021514100210020014101460d00410120016b2101034020512802e4012151200141016a22010d000b0b417f206441016a220120012064491b2265ad2231421e88a70d012031420286a72201417f4c0d01024002400240024002402001450d00200110132266450d0b206620303602002064450d020c010b41042166410420303602002064450d010b200020512f01064f0d01200041016a216720512000410c6c6a41e0006a21680c020b41012164206621502053413f4b0d110c020b0240024020512f01042200205128020022512f01064f0d00410121010c010b410121010340200141016a210120512f01042200205128020022512f01064f0d000b0b20512000410c6c6a41e0006a2168205120004102746a41e8016a28020021514100216720014101460d00410120016b2101034020512802e4012151200141016a22010d000b0b2063417e6a216941012163417f216a4202216b4220216c4100216d4102216e410c216f41e000217041e80121714101216420654101470d0a0c090b41012104410110132263450d03206320534102743a000020534102742251450d140c0f0b100f000b410141011014000b410241011014000b410141011014000b200141041014000b200141041014000b410221300c030b410321300c030b410421300c030b410521300c030b410221010c220b410221010c210b410221010c200b410221010c1f0b02402053418080014f0d0041022104410210132263450d02206320534102744101723b0000205341027422510d010c060b024020534180808080044f0d0041042104410410132263450d0320632053410274410272360000205341027422510d010c060b410110132244450d03204441033a00004105210420444101410510152263450d042063205336000120534102742251450d050b410020046b21442004215302400340205628020021010240200420446a41074b0d00205341086a22002053490d152004410174225a20002000205a491b22004100480d15024002402004450d00206320042000101522630d010c040b200010132263450d030b200021040b205641046a2156206320536a2001290000370000204441786a2144205341086a21532051417c6a22510d000b2064413f4b0d070c060b200041011014000b410241011014000b410441011014000b410141011014000b410541011014000b200421532064413f4b0d010b41012151410110132256450d08205620644102743a00004101210120640d010c020b02402064418080014f0d0041022151410210132256450d07205620644102744101723b00000c010b024020644180808080044f0d0041042151410410132256450d06205620644102744102723600000c010b410110132244450d04204441033a00004105215120444101410510152256450d03205620643600010b2064410274215a205121010340205028020022442802002164024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020442802082244413f4b0d0020512001470d01205141016a22012051490d2120514101742200200120012000491b22004100480d212051450d05205620512000101522560d060c0f0b2044418080014f0d01205120016b41014b0d02200141026a22002001490d2020514101742247200020002047491b22004100480d202051450d0b205620512000101522560d0c0c0f0b205121000c050b20444180808080044f0d01205120016b41034b0d05200141046a22002001490d1e20514101742247200020002047491b22004100480d1e024020510d00200010132256450d100c070b205620512000101522560d060c0f0b205121000c090b20512001470d05205141016a22012051490d1c20514101742200200120012000491b22004100480d1c0240024020510d00200010132256450d100c010b20562051200010152256450d0f0b205121010c060b200010132256450d090b205121010b205620016a20444102743a00002000200141016a22016b20444f0d060c0c0b205121000b205620016a20444102744102723600002000200141046a22016b2044490d0a0c040b205121000b205620016a41033a000002402000200141016a22516b41034b0d00205141046a22472051490d1620004101742230204720472030491b22474100480d16024002402000450d00205620002047101522560d010c080b204710132256450d070b204721000b205620516a20443600002000200141056a22016b2044490d080c020b200010132256450d030b205620016a20444102744101723b00002000200141026a22016b2044490d060b200021510c060b200041011014000b200041011014000b204741011014000b200041011014000b200041011014000b200120446a22512001490d0c20004101742247205120512047491b22514100480d0c02402000450d00205620002051101522560d010c040b205110132256450d030b205041046a2150205620016a2064204410f6021a200120446a2101205a417c6a225a0d000b0b024002400240200420536b20014f0d00205320016a22442053490d0c20044101742200204420442000491b22004100480d0c2004450d0120632004200010152263450d020c090b205320016a2144206320536a2056200110f6021a2051450d0a0c090b2000101322630d070b200041011014000b205141011014000b410541011014000b410141011014000b410441011014000b410241011014000b410141011014000b20002104206320536a2056200110f6021a2051450d010b205610160b02402065450d00206610160b02402054450d00205510160b02402044450d00204441026a22512044490d0120514104205141044b1b22014100480d0120524102200110152252450d02205241026a2063204410f6021a2004450d040c030b204441026a2151205241026a2063204410f6021a20040d020c030b1010000b200141011014000b206310160b20022802702002280274200241f8006a28020010c202200241d0026a24002051ad4220862052ad840f0b20014101470d00202f280290012021460d010b202f200b6a222f200c470d01410021010c050b200241c0006a2145200228024421464108214741032148417f21494102214a41e401214b41e5e5c300214c4178214d4101214e0c010b410021300c010b410121300c010b410221010c010b410221010c000b0b960301037f230041d0006b22022400200241306a41086a2203420037030020024200370330418ae8c2004111200241306a1002200241206a41086a2003290300370300200220022903303703200240024002400240200241206a411041acf1c300410041001000417f460d00200241c8006a4200370300200241306a41106a42003703002003420037030020024200370330200241206a4110200241306a4120410010002203417f460d022003411f4d0d02200241186a200241306a41186a290300370300200241106a200241306a41106a290300370300200241086a200241306a41086a2903003703002002200229033037030041202104412010132203450d010c030b200241186a4200370300200241106a4200370300200241086a420037030020024200370300412021044120101322030d020b200441011014000b41b6e7c20041331029000b20032002290300370000200341186a200241186a290300370000200341106a200241106a290300370000200341086a200241086a290300370000200241d0006a24002003ad42808080808004840bf91405037f017e017f017e087f230041c0086b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241c8066a200241086a10d20102400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022903b8074203510d00200241106a200241c8066a41f80110f6021a20024188026a200241106a41f80110f6021a200220024188026a3602a005200241c8066a200241a0056a10d00120022802d0062103024020022802cc06450d0020022802c80610160b200241c8066a20024188026a41f80110f6021a200241a0056a200241c8066a109b0202400240024002400240024020022802a0054101470d0020022802a405210120022802a8052200411a460d0120004115470d024102210441f6012100200141e8d5c200460d0d200141e8d5c200411510f8020d020c0d0b20024180046a200241a0056a41086a41a00110f6021a0240024020024180046a41086a41002002290380044201511b2201450d002001450d00410021044103210020012003109d020d012001109c02210541012100200141206a410020011b220629030022072005540d014102210041022104200720054280027c560d01200520075a0d0541002108410021094100210a4100210b4104210c0340412010132200450d0920002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010152200450d0a200020053700200240200a200b470d00200a41016a220d200a490d232008200d200d2008491b220bad420c7e2207422088a70d232007a7220d4100480d230240200a450d00200c2009200d1015220c0d010c0d0b200d1013220c450d0c0b200c20096a220d2000360200200d41046a42c08080808005370200200841026a21082009410c6a2109200a41016a210a200542017c220520062903002207540d000c070b0b4176416c20011b2100410021040b200241b0046a10d3010c0c0b41002100200141aa81c300460d0141002104200141aa81c300411a10f802450d0b0b4100210441810121000c0a0b410021040c090b4104210c4100210a4100210b0b410c1013220f450d04412010132200450d0520002001290000370000200041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a2900003700002000412041c00010152201450d062003ad210520012007370020200f42c08080808005370204200f2001360200200241b0046a10d301200241003602d006200242013703c80641012104410121014101101322000d080c130b2002419c026a41013602002002410236021420024188e9c3003602102002420137028c02200241a4e7c300360288022002200241106a3602980220024188026a41ace7c3001046000b412041011014000b41c00041011014000b200d41041014000b410c41041014000b412041011014000b41c00041011014000b200241003602d006200242013703c806024020044101460d0020044102470d02410110132201450d0d200241013602cc06200241d0066a22032003280200220941016a360200200220013602c806200120096a41023a000020022802cc0620032802002201470d04200141016a22032001490d1320014101742209200320032009491b22094100480d132001450d0820022802c8062001200910152203450d090c160b41012101410110132200450d0b0b200241c8066a41086a22032003280200220920016a360200200220013602cc06200220003602c806200020096a20013a000020022802cc062200200328020022016b41084f0d01200141086a22032001490d1120004101742201200320032001491b22014100480d112000450d0420022802c8062000200110152200450d050c0f0b410110132201450d0b200241013602cc06200241d0066a22032003280200220941016a360200200220013602c806200120096a41003a000020022802cc0620032802002201470d02200141016a22032001490d1020014101742209200320032009491b22094100480d102001450d0720022802c8062001200910152203450d080c0c0b20022802c80621000c0e0b20022802c80621030c120b20022802c80621030c0a0b2001101322000d0a0b200141011014000b2009101322030d0d0b200941011014000b2009101322030d040b200941011014000b200120011014000b410141011014000b410141011014000b200220093602cc06200220033602c806200241d0066a28020021010b200241d0066a200141016a360200200320016a20003a00000c070b200220013602cc06200220003602c806200241d0066a28020021010b200241c8066a41086a2209200141086a360200200020016a20053700002002200a3602880220024188026a200241c8066a10180240024002400240200a450d00200c200a410c6c6a210e200c210303402003280200210d2002200341086a28020022013602880220024188026a200241c8066a1018024002400240024020022802cc062208200928020022006b20014f0d00200020016a22062000490d0920084101742200200620062000491b22004100480d092008450d0120022802c80620082000101522080d020c060b20022802c80621080c020b200010132208450d040b200220003602cc06200220083602c806200928020021000b2009200020016a360200200820006a200d200110f6021a2003410c6a2203200e470d000b0b200241013602880220024188026a200241c8066a1018200f28020021082002200f28020822013602880220024188026a200241c8066a101802400240024020022802cc062203200928020022006b20014f0d00200020016a22092000490d0620034101742200200920092000491b22004100480d062003450d0120022802c8062003200010152203450d020c040b20022802c80621030c040b2000101322030d020b200041011014000b200041011014000b200220003602cc06200220033602c806200241d0066a28020021000b200241c8066a41086a2209200020016a360200200320006a2008200110f6021a02400240024020022802cc062200200928020022016b41084f0d00200141086a22032001490d0320004101742201200320032001491b22014100480d032000450d0120022802c8062000200110152200450d020c040b20022802c80621000c040b2001101322000d020b200141011014000b1010000b200220013602cc06200220003602c806200241d0066a28020021010b200241c8066a41086a2203200141086a360200200020016a427f3700002003280200210320022802c806210920044101470d030240200a450d00200a410c6c2100200c210103400240200141046a280200450d00200128020010160b2001410c6a2101200041746a22000d000b0b0240200b450d00200c10160b0240200f41046a280200450d00200f28020010160b200f10160c030b200220093602cc06200220033602c806200241d0066a28020021010b200241d0066a200141016a360200200320016a20003a00000b200241d0066a280200210320022802c80621090b200241c0086a24002003ad4220862009ad840b6101017f230041206b220224000240200141074d0d00200241206a240042010f0b200241146a41013602002002410236021c200241a4e9c30036021820024201370204200241a4e7c3003602002002200241186a360210200241ace7c3001046000b890c07027f017e057f017e027f037e037f230041306b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241106a200241086a10240240024002400240024002400240024020022802102203450d00200320022902142204422088a7220541286c6a21062004a72107200322012100024002400240024002400240034002400240024002400240200620006b419f014d0d00024020012d00004102470d00200141286a2100200141086a22082802004101460d050c070b200141286a2d00004102460d02200141d0006a2d00004102460d03200141f8006a2109200141a0016a2200210120092d00004102470d050c010b034020062001460d0720012d00002109200141286a2200210120094102470d000b0b200041606a22082802004101460d020c040b200141d0006a2100200141306a22082802004101460d010c030b200141f8006a2100200141d8006a22082802004101470d020b200021010c000b0b200828020421012008290310210a4108210b410021094100210c0240200828020c220641286c22004128490d0020004100480d032006ad42287e422088a74100470d0320001013220b450d092006210c0b2001200120006a460d01200641286c210641002109200b21000340200141086a2903002104200141106a290300210d200141186a290300210e2001290300210f200041206a200141206a290300370300200041186a200e370300200041106a200d370300200041086a20043703002000200f370300200041286a2100200941016a2109200141286a2101200641586a22060d000c020b0b4100210b0b20024100360218200242013703104101101321060240024002400240200b450d002006450d08200242818080801037021420022006360210200641013a000020022009360228200241286a200241106a1018200241106a41086a221028020021002002280214210602402009450d00200b200941286c6a2111200b210103400240024002400240200620006b41204f0d00200041206a22092000490d0a20064101742208200920092008491b22124100480d0a2006450d01200228021020062012101522080d020c0b0b200041206a2109200228021021080c020b201210132208450d090b2002201236021420022008360210201221060b20102009360200200820006a220041186a200141186a290000370000200041106a200141106a290000370000200041086a200141086a29000037000020002001290000370000200141206a29030021040240024002400240200620096b41084f0d00200941086a22002009490d0a20064101742212200020002012491b22124100480d0a2006450d01200820062012101522080d020c0c0b200941086a21000c020b201210132208450d0a0b2002201236021420022008360210201221060b20102000360200200820096a20043700002011200141286a2201470d000b0b200620006b41084f0d01200041086a22012000490d0420064101742209200120012009491b22014100480d042006450d0220022802102006200110152206450d030c0b0b2006450d08200242818080801037021420022006360210200641003a0000428080808010210420050d0c0c0d0b200228021021060c0a0b2001101322060d080b200141011014000b1010000b201241011014000b201241011014000b200241246a41013602002002410236022c200241bce9c30036022820024201370214200241a4e7c3003602102002200241286a360220200241106a41ace7c3001046000b410141011014000b410141011014000b200041081014000b20022001360214200220063602100b200241106a41086a200041086a2201360200200620006a200a3700002001ad42208621040240200b450d00200c450d00200b10160b2005450d010b200541286c2100200321010340024020012d00002209450d00024020094101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b02402007450d00200310160b200241306a240020042006ad840bbc0c07027f017e047f027e027f037e047f230041306b22022400024002402001450d00200220003602080c010b200241acf1c3003602080b2002200136020c200241106a200241086a102402400240024002400240024002400240024020022802102203450d00200320022902142204422088a7220541286c6a21062004a72107200322012100024002400240024002400240034002400240024002400240200620006b419f014d0d00024020012d00004102470d00200141286a2100200141086a22082802004101470d050c070b200141286a2d00004102460d02200141d0006a2d00004102460d03200141f8006a2108200141a0016a2200210120082d00004102470d050c010b034020062001460d0720012d00002108200141286a2200210120084102470d000b0b200041606a22082802004101470d020c040b200141d0006a2100200141306a22082802004101470d010c030b200141f8006a2100200141d8006a22082802004101460d020b200021010c000b0b20082802042101200829031821092008290310210a4108210b410021064100210c0240200828020c220841286c22004128490d0020004100480d032008ad42287e422088a74100470d0320001013220b450d0a2008210c0b2001200120006a460d01200841286c210841002106200b21000340200141086a2903002104200141106a290300210d200141186a290300210e2001290300210f200041206a200141206a290300370300200041186a200e370300200041106a200d370300200041086a20043703002000200f370300200041286a2100200641016a2106200141286a2101200841586a22080d000c020b0b4100210b0b20024100360218200242013703100240024002400240200b450d00410110132201450d08200242818080801037021420022001360210200141013a000020014101410910152201450d09200242898080809001370214200220013602102001200a37000120022006360228200241286a200241106a1018200241106a41086a221028020021112002280214210802402006450d00200b200641286c6a2112200b210103400240024002400240200820116b41204f0d00201141206a22002011490d0a20084101742206200020002006491b22134100480d0a2008450d01200228021020082013101522060d020c0b0b201141206a2100200228021021060c020b201310132206450d090b2002201336021420022006360210201321080b20102000360200200620116a221141186a200141186a290000370000201141106a200141106a290000370000201141086a200141086a29000037000020112001290000370000200141206a29030021040240200820006b41074b0d00200041086a22112000490d0720084101742213201120112013491b22114100480d07024002402008450d00200620082011101522060d010c0b0b201110132206450d0a0b2002201136021420022006360210201121080b2010200041086a2211360200200620006a20043700002012200141286a2201470d000b0b200820116b41084f0d01201141086a22012011490d0420084101742200200120012000491b22014100480d042008450d0220022802102008200110152206450d030c0c0b410110132206450d09200242818080801037021420022006360210200641003a0000428080808010210420050d0d0c0e0b200228021021060c0b0b2001101322060d090b200141011014000b1010000b201341011014000b201141011014000b200241246a41013602002002410236022c200241dce9c30036022820024201370214200241a4e7c3003602102002200241286a360220200241106a41ace7c3001046000b410141011014000b410941011014000b410141011014000b200041081014000b20022001360214200220063602100b200241106a41086a201141086a2201360200200620116a20093700002001ad42208621040240200b450d00200c450d00200b10160b2005450d010b200541286c2100200321010340024020012d00002208450d00024020084101470d00200141086a280200450d01200141046a2802001016200141286a2101200041586a22000d020c030b200141106a280200450d002001410c6a28020010160b200141286a2101200041586a22000d000b0b02402007450d00200310160b200241306a240020042006ad840ba205020a7f017e230041206b220224002002410e360204200241b384c000360200200241106a41fdc8c300200210bf01410021030240024002400240200228021022042002280218220541acf1c300410041001000417f460d002002410036020020042005200241044100100041016a41044d0d01200228020021030b02402002280214450d00200410160b20022003102720024100360218200242013703102002280200210620022002280208220336020c2002410c6a200241106a101802400240024002402003450d002006200341286c6a2107200241106a41086a22082802002104200228021421092006210303400240024002400240200920046b41204f0d00200441206a22052004490d062009410174220a20052005200a491b220b4100480d062009450d0120022802102009200b1015220a0d020c070b200441206a21052002280210210a0c020b200b1013220a450d050b2002200b3602142002200a360210200b21090b20082005360200200a20046a220441186a200341186a290000370000200441106a200341106a290000370000200441086a200341086a29000037000020042003290000370000200341206a290300210c0240024002400240200920056b41084f0d00200541086a22042005490d062009410174220b20042004200b491b220b4100480d062009450d01200a2009200b1015220a0d020c080b200541086a21040c020b200b1013220a450d060b2002200b3602142002200a360210200b21090b20082004360200200a20056a200c3700002007200341286a2203470d000b2002280204450d060c050b200241186a28020021042002280210210a20022802040d040c050b1010000b200b41011014000b200b41011014000b41b6e7c20041331029000b200610160b200241206a24002004ad422086200aad840be90104027f017e017f017e230041206b22022400200241106a41086a2203420037030020024200370310419095c3004117200241106a1002200241086a20032903003703002002200229031037030002400240024002402002411041acf1c300410041001000417f460d002002420037031020024110200241106a41084100100041016a41084d0d022002290310210441082105410810132203450d010c030b42032104410821054108101322030d020b200541011014000b41b6e7c20041331029000b2003427f200420047c220620062004541b370000200241206a24002003ad42808080808001840b8b0301097f230041206b22022400200210fb0120024100360218200242013703102002280200210320022002280208220436021c2002411c6a200241106a1018024002400240024002402004450d0020044105742105200241106a41086a280200210620022802102107200228021421082003210403400240024002400240200820066b41204f0d00200641206a22092006490d062008410174220a20092009200a491b220a4100480d062008450d0120072008200a101522070d020c070b200641206a21090c020b200a10132207450d050b200a21080b200720066a22062004290000370000200641186a200441186a290000370000200641106a200441106a290000370000200641086a200441086a29000037000020092106200441206a2104200541606a22050d000b200241186a200936020020022008360214200220073602102002280204450d040c030b200241186a28020021092002280210210720022802040d020c030b1010000b200a41011014000b200310160b200241206a24002009ad4220862007ad840bd50101027f200028020421020240024020002802004101470d002000410c6a2802002200200110d0022000450d01200041186c2103200241146a21000340200041706a280200200041746a280200200110d1022000417c6a2802002000280200200110d102200041186a2100200341686a22030d000c020b0b200041086a2802002200200110d0022000450d00200041186c2103200241146a21000340200041706a280200200041746a280200200110d1022000417c6a2802002000280200200110d102200041186a2100200341686a22030d000b0b0bd90601037f0240024002400240024002400240024002400240024002400240024002400240024002400240024020002d000022024101460d0020024102470d01200141046a280200200141086a2802002202470d03200241016a22032002490d0f20024101742204200320032004491b22044100480d0f2002450d0720012802002002200410152203450d080c120b200141046a280200200141086a2802002202470d01200241016a22032002490d0e20024101742204200320032004491b22044100480d0e2002450d0420012802002002200410152203450d050c0c0b200141046a280200200141086a2802002202470d02200241016a22032002490d0d20024101742204200320032004491b22044100480d0d2002450d0720012802002002200410152203450d080c090b200128020021030c0b0b200128020021030c0f0b200128020021030c070b2004101322030d070b200441011014000b2004101322030d0a0b200441011014000b2004101322030d010b200441011014000b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a41003a0000200041086a2802002000410c6a280200200110d1020f0b20012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200041086a2802002000410c6a280200200110d102200041146a280200200041186a280200200110d102024002400240200141046a28020020042802002202470d00200241016a22032002490d0320024101742204200320032004491b22044100480d032002450d0120012802002002200410152203450d020c040b200128020021030c040b2004101322030d020b200441011014000b1010000b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a200041016a2d00003a00000f0b20012003360200200141046a2004360200200141086a28020021020b200141086a200241016a360200200320026a41023a0000200041086a2802002000410c6a280200200110d102200041146a280200200041186a280200200110d102200041206a280200200041246a280200200110d1022000412c6a280200200041306a280200200110d1020be80701037f0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001413f4b0d00200241046a280200200241086a2802002203470d01200341016a22042003490d1120034101742205200420042005491b22054100480d112003450d0520022802002003200510152204450d060c170b2001418080014f0d01200241046a2802002204200241086a28020022036b41024f0d02200341026a22052003490d1020044101742203200520052003491b22034100480d102004450d0820022802002004200310152204450d090c140b200228020021040c160b20014180808080044f0d01200241046a2802002204200241086a28020022036b41044f0d04200341046a22052003490d0e20044101742203200520052003491b22034100480d0e2004450d08200228020020042003101522040d090c0f0b200228020021040c120b200241046a280200200241086a2802002203470d03200341016a22042003490d0c20034101742205200420042005491b22054100480d0c2003450d09200228020020032005101522040d0a0c0e0b2005101322040d110b200541011014000b200228020021040c050b200228020021040c070b2003101322040d0b0b200341011014000b200310132204450d060b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a2001410274410272360000200141037422010d0b0c0c0b200510132204450d040b20022004360200200241046a2005360200200241086a28020021030b200241086a2205200341016a360200200420036a41033a00000240024002400240200241046a2802002204200528020022036b41044f0d00200341046a22052003490d0420044101742203200520052003491b22034100480d042004450d01200228020020042003101522040d020c070b200228020021040c020b200310132204450d050b20022004360200200241046a2003360200200241086a28020021030b200241086a200341046a360200200420036a200136000020014103742201450d090c080b1010000b200341011014000b200541011014000b200341011014000b20022004360200200241046a2003360200200241086a28020021030b200241086a200341026a360200200420036a20014102744101723b0000200141037422010d020c030b20022004360200200241046a2005360200200241086a28020021030b200241086a200341016a360200200420036a20014102743a000020014103742201450d010b200020016a210103402000280200200041046a280200200210d102200041086a22002001470d000b0b0b2700200028020c200041106a2802001009200041146a350200100c200041186a350200100c00000b08002000200110090b06002000100d0b06002000100e0b2801017f02402002100d2203450d002003200020022001200120024b1b10f6021a2000100e0b20030b1c01017f02402000100d2201450d0020014100200010f5021a0b20010b0b0020003502002001103d0b0c0042e0b38bd885e0e4b7190b5501017f0240024002402001418080c400460d0041012104200028021820012000411c6a2802002802101100000d010b2002450d012000280218200220032000411c6a28020028020c11010021040b20040f0b41000b8008010b7f200028021021030240024002400240024002400240024002400240200028020822044101470d0020030d010c020b2003450d070b02402002450d00200120026a2105200041146a280200417f732106410021072001210320012108024002400340200341016a21090240024020032c0000220a4100480d00200a41ff0171210a20092103200641016a22060d010c030b02400240024020092005460d0020092d0000413f71210b200341026a22032109200a411f71210c200a41ff0171220a41e001490d010c020b4100210b20052103200a411f71210c200a41ff0171220a41e0014f0d010b200b200c41067472210a20092103200641016a22060d010c030b02400240024020032005460d00200341016a2209210d20032d0000413f71200b41067472210b200a41f001490d010c020b2005210d4100200b41067472210b200a41f0014f0d010b200b200c410c7472210a20092103200641016a22060d010c030b02400240200d2005460d00200d41016a2103200d2d0000413f71210a0c010b4100210a200921030b200b410674200c411274418080f0007172200a72220a418080c400460d03200641016a2206450d020b200720086b20036a21072003210820052003470d000c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b2004450d020c010b410021022004450d010b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200220096b2000410c6a28020022064f0d014100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2109410020002d0030220320034103461b2203410371450d0220034102460d03410021080c040b2000280218200120022000411c6a28020028020c1101000f0b2000280218200120022000411c6a28020028020c1101000f0b20092108410021090c010b200941016a4101762108200941017621090b417f2103200041046a210a200041186a21062000411c6a210702400340200341016a220320094f0d012006280200200a2802002007280200280210110000450d000b41010f0b200041046a280200210941012103200041186a220a280200200120022000411c6a220628020028020c1101000d01200a280200210a417f2103200628020041106a210602400340200341016a220320084f0d01200a20092006280200110000450d000b41010f0b41000f0b2000280218200120022000411c6a28020028020c11010021030b20030b830101037f230041206b22022400024002402000280200200110f2020d002001411c6a2802002103200128021821042002411c6a4100360200200241acf1c3003602182002420137020c200241e4f6c30036020820042003200241086a10f302450d010b200241206a240041010f0b2000280204200110f2022101200241206a240020010b810c03037f017e167f410121020240200128021841272001411c6a2802002802101100000d00410221020240024002400240024002400240024002402000280200220341776a2200411e4b0d0041f4002104024020000e1f09000202030202020202020202020202020202020202020202070202020207090b41ee0021040c030b200341dc00460d050b20031037450d02200341017267410276410773ad4280808080d0008421050c030b41f20021040b0c040b024002400240200341ffff034b0d0020034180fe0371410876210641a8f7c3002107410021084102210941b002210a41f8f7c300210b41f8f7c300210c417f210d4101210e200341ff0171210f410021020c010b0240200341ffff074b0d0020034180fe0371410876211341e3fcc30021144100211541022116419f01211741a5fdc300211841a5fdc3002119417f211a4101211b200341ff01712112410121020c010b200341ef83384b0d01200341e28b746a41e28d2c490d012003419fa8746a419f18490d01200341dee2746a410e490d01200341feffff0071419ef00a460d01200341a9b2756a4129490d01200341cb91756a410a4d0d01410121020c030b034002400240024002400240024002400240024002400240024020020e020001010b200720096a2110200820072d000122026a211102400240024020072d000022002006470d0020112008490d042011200a4f0d052008200b6a210003402002450d022002200d6a210220002d000021042000200e6a21002004200f470d000c100b0b200020064b0d0120112108201021072010200c470d090c010b20112108201021072010200c470d090b200341ffff0371210041a7fac30021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41e3fcc300460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241e3fcc300470d000b0b41012102200f4101710d0e0c0c0b201420166a2110201520142d000122026a211102400240024020142d000022002013470d0020112015490d05201120174f0d06201520186a210003402002450d022002201a6a210220002d000021042000201b6a210020042012470d000c0f0b0b200020134b0d01201121152010211420102019470d0a0c010b201121152010211420102019470d0a0b200341ffff0371210041c3fec30021024101210f02400340200241016a210e0240024020022d0000220d4118744118752212417f4c0d00200e21022000200d6b220041004e0d010c030b200e41c081c400460d08200241016a210e200241026a21022000201241ff0071410874200e2d0000726b22004100480d020b200f410173210f200241c081c400470d000b0b41012102200f4101710d0d0c0b0b20082011101c000b201141af021039000b20152011101c000b2011419e011039000b41bcf5c3001038000b41bcf5c3001038000b410021020c030b410021020c020b410121020c010b410121020c000b0b200341017267410276410773ad4280808080d0008421050b410321020c010b0b200321040b200141186a210f2001411c6a210e02400340024002400240024002400240024020024101460d0041dc002100024020024102460d0020024103470d092005422088a741ff0171417f6a220241044b0d09024020020e050006040503000b200542ffffffff8f6083210541fd0021000c060b410121020c060b41002102200421000c050b200542ffffffff8f60834280808080c0008421050c030b200542ffffffff8f608342808080802084210541fb0021000c020b200542ffffffff8f608342808080803084210541f50021000c010b20042005a7220d410274411c7176410f712202413072200241d7006a2002410a491b21000240200d450d002005427f7c42ffffffff0f832005428080808070838421050c010b200542ffffffff8f60834280808080108421050b410321020b200f2802002000200e280200280210110000450d000b41010f0b200141186a28020041272001411c6a28020028021011000021020b20020baa0201037f23004180016b220224000240024002400240200128020022034110710d0020034120710d012000ad2001103d210020024180016a240020000f0b410021030340200220036a41ff006a2000410f712204413072200441d7006a2004410a491b3a00002003417f6a2103200041047622000d000b20034180016a22004181014f0d01200141dcf4c3004102200220036a4180016a410020036b103e210020024180016a240020000f0b410021030340200220036a41ff006a2000410f712204413072200441376a2004410a491b3a00002003417f6a2103200041047622000d000b20034180016a22004181014f0d01200141dcf4c3004102200220036a4180016a410020036b103e210020024180016a240020000f0b2000418001101c000b2000418001101c000b9d09010a7f230041c0006b22032400200341246a2001360200200341346a200241146a2802002204360200200341033a00382003412c6a2002280210220520044103746a360200200342808080808004370308200320003602204100210620034100360218200341003602102003200536023020032005360228024002400240024020022802082207450d0020022802002108200228020422092002410c6a2802002205200520094b1b220a450d01200020082802002008280204200128020c1101000d02200841086a2105200341386a2101200341346a210b200341306a210c41012106024003402001200741206a2d00003a00002003200741086a28020036020c20032007410c6a2802003602084100210202400240024002400240200741186a28020022004101460d00024020004102460d0020004103460d052007411c6a28020021040c020b200341086a41206a22042802002200200341086a41246a280200460d022004200041086a3602002000280204410b470d04200028020028020021040c010b2007411c6a2802002200200b28020022044f0d02200c28020020004103746a2200280204410b470d03200028020028020021040b410121020c020b0c010b41ecf6c3002000200410a801000b200341086a410c6a2004360200200341086a41086a20023602004100210202400240024002400240200741106a28020022004101460d00024020004102460d0020004103460d05200741146a28020021040c020b200341086a41206a22042802002200200341086a41246a280200460d022004200041086a3602002000280204410b470d04200028020028020021040c010b200741146a2802002200200b28020022044f0d02200c28020020004103746a2200280204410b470d03200028020028020021040b410121020c020b0c010b41ecf6c3002000200410a801000b200341086a41146a2004360200200341086a41106a200236020002400240024020072802004101470d00200741046a2802002202200b28020022044f0d02200c28020020024103746a21020c010b200341086a41206a22042802002202200341086a41246a280200460d032004200241086a3602000b2002280200200341086a200241046a2802001100000d052006200a4f0d04200541046a210220052802002104200541086a2105200741246a2107200641016a2106200341086a41186a28020020042002280200200341086a411c6a28020028020c110100450d010c050b0b41fcf6c3002002200410a801000b41bcf5c3001038000b20022802002108200228020422092004200420094b1b220a450d00200020082802002008280204200128020c1101000d01200841086a2107200341206a2100200341246a21014101210603402005280200200341086a200541046a2802001100000d022006200a4f0d01200741046a210220072802002104200541086a2105200741086a2107200641016a2106200028020020042002280200200128020028020c110100450d000c020b0b200920064d0d01200341206a280200200820064103746a22072802002007280204200341246a28020028020c110100450d010b200341c0006a240041010f0b200341c0006a240041000b0b0020003502002001103d0b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f02400240200120004f0d002002450d012001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000c020b0b2002450d00200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000b0b20000b4401037f024002402002450d00410021030340200020036a2d00002204200120036a2d00002205470d02200341016a22032002490d000b41000f0b41000f0b200420056b0b3e01017f230041106b2205240020052001200220032004410010fd02200529030021012000200541086a29030037030820002001370300200541106a24000b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080bb70502037f057e230041306b2206240002400240024002400240024002400240024002400240024002400240024020024200510d002003500d012004500d03200479a7200279a76b2207413f4b0d0241ff0020076b2108200741016a21070c0c0b200450450d012005450d0520034200510d0d20054200370308200520012003823703000c060b2004500d0c20014200510d032004427f7c2209200483500d07200479a7200279a76b2207413e4d0d090b2005450d012005200137030020052002370308420021010c070b2003427f7c2209200383500d044100200379a741c1006a200279a76b22076b21080c080b420021010c050b02402005450d0020054200370300200520022004823703080b200220048021010c040b20034200510d070b200120038021010c020b02402005450d0020054200370308200520092001833703000b20034201510d04200641206a2001200220037aa710fc02200641286a2903002102200629032021010c040b02402005450d0020052001370300200520092002833703080b200220047a423f838821010b420021020c020b41ff0020076b2108200741016a21070b200620012002200841ff007110fb02200641106a20012002200741ff007110fc02200641086a2903002102200641106a41086a290300210a20062903002101200629031021094200210b0340200a4201862009423f8884220c200c427f8520047c20094201862002423f88842209427f85220c20037c200c54ad7c423f87220c2004837d2009200c200383220d54ad7d210a2009200d7d2109420020024201862001423f8884842102200b2001420186842101200c420183220c210b2007417f6a22070d000b02402005450d00200520093703002005200a3703080b20024201862001423f88842102200c20014201868421010b2000200137030020002002370308200641306a24000f0b00000b0bd39b040100418080c0000bc89b047372632f6c6962616c6c6f632f7665632e7273002c0010001c00000000001000130000007704000009000000617373657274696f6e206661696c65643a20656e64203c3d206c656e600010001e00000000001000130000006e03000009000000617373657274696f6e206661696c65643a20696e646578203c3d206c656e0000980010001d00000000001000130000009603000009000000617373657274696f6e206661696c65643a20696e646578203c206c656e00000000000000e40010000e00000000000000f4001000010000000000000000000000fc00100001000000000000004e6577417574686f726974696573000028011000160000000401100024000000204e657720617574686f726974792073657420686173206265656e206170706c6965642e5665633c2853657373696f6e4b65792c20753634293e0000000000006c0110000f000000000000007c0110000200000000000000000000008c01100004000000000000004e65774163636f756e74496e64657800d5e6100009000000270210000c000000ac01100022000000acf8100000000000ce011000410000000f021000180000002041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e6465783a6772616e6470613a617574683a41757261204c61737454696d657374616d700070021000190000009002100048000000bb0100002d00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e72737002100019000000f00210005b000000ed0000001e0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f617572612f7372632f6c69622e727374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c8c0310005e00000048000000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f696e64696365732f7372632f6c69622e727300000404100022000000260410005b000000b3000000030000004175726120736c6f74206475726174696f6e2063616e6e6f74206265207a65726f2e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f617572612f7372632f6c69622e72730000009c04100028000000260410005b000000b9000000030000004f6e6c79206f6e6520626c6f636b206d617920626520617574686f7265642070657220736c6f742e446f776e6c6f61642073657373696f6e20776974682074686520676976656e204944206e6f7420666f756e642e446f776e6c6f61642073657373696f6e20776974682074686520676976656e2049442068617320616c726561647920656e6465642e446f776e6c6f61642073657373696f6e2063616e206f6e6c79206265206d6f6469666965642062792074686520646f776e6c6f616465722e496e76616c69642075706461746520746f207472616e736d69747465642062797465732076616c75652e43616e6e6e6f7420646f776e6c6f616420776974686f7574206174206c65617374206f6e65206163746976652073746f726167652072656c6174696f6e736869702e000000000000240610000f0000000000000034061000010000000000000000000000acf810000000000000000000000000003c0610000d000000000000004c061000020000000000000000000000acf810000000000000000000446f776e6c6f61645374617274656400dee6100009000000446f776e6c6f6164456e646564000000dee61000090000004bea100003000000000000005ce81000120000000000000070e8100001000000000000000000000088e8100001000000000000004772616e64706146696e616c6974792050656e64696e674368616e67654772616e64706146696e616c697479204e657874466f726365644772616e64706146696e616c697479000000000000980710000d0000000000000000000000a50710003200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e80a10000000000000000000acf8100000000000000000000000000000000000d70710000a000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e80a10000000000000000000acf8100000000000000000000000000050656e64696e674368616e676553746f72656450656e64696e674368616e67653c543a3a426c6f636b4e756d6265722c20543a3a53657373696f6e4b65793e4e657874466f72636564496e646963657300000000b00810000b0000000000000000000000bb0810000f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000cc0810000000000000000000dc08100001000000000000000100000000000000e4081000070000000100000000000000bb0810000f0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000ec0810000000000000000000fc0810000100000000000000010000004e657874456e756d536574543a3a4163636f756e74496e64657800000c00000000000000010000000d0000001a0910001f000000456e756d536574000c00000000000000010000000e00000004091000160000002054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e496e646963657320456e756d53657400000000740a10001600000000000000000000008a0a10001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b40a10000000000000000000acf81000000000000000000001000000000000009e0a10001500000000000000000000008a0a10001400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b40a10000000000000000000acf8100000000000000000000100000000000000c40a10001000000001000000000000008a0a10001400000000000000d40a10001200000000000000000000000000000000000000000000000000000000000000acf81000e80a10000000000000000000acf810000000000000000000000000004669727374446f776e6c6f616453657373696f6e4964543a3a446f776e6c6f616453657373696f6e49644e657874446f776e6c6f616453657373696f6e4964000c00000000000000010000000f000000446f776e6c6f616453657373696f6e73446f776e6c6f616453657373696f6e3c543e00000c000000000000000100000010000000446f776e6c6f616453657373696f6e73204e657874446f776e6c6f616453657373696f6e4964446f776e6c6f616453657373696f6e7320446f776e6c6f616453657373696f6e7300500b10004d00000063000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646f776e6c6f6164732e727300000000000000f80b10000e00000000000000080c1000020000000000000000000000acf81000000000000000000000000000380c100012000000000000004c0c1000020000000000000000000000acf81000000000000000000073746172745f646f776e6c6f6164000000000000a6b210000a00000000000000970c10001900000000000000b00c10000400000000000000abd410000c0000007570646174655f7472616e736d69747465640000000000007c0c10000a000000000000008a0a10001400000000000000860c100011000000000000004bea10000300000073657373696f6e5f69647472616e736d69747465645f62797465733c5420617320444454726169743e3a3a436f6e74656e74496466726f6d00000000e80d10000f00000000000000d4641000020000000000000000000000f80d1000030000000000000000000000100e10001000000000000000d4641000020000000000000000000000acf81000000000000000000000000000200e10001500000000000000380e1000020000000000000000000000acf81000000000000000000000000000d69110000500000000000000480e1000030000000000000000000000600e1000040000000000000000000000800e10000e00000000000000900e1000010000000000000000000000acf81000000000000000000000000000980e10000e00000000000000a80e1000020000000000000000000000b80e1000010000000000000000000000c00e10000e0000000000000074911000010000000000000000000000d00e1000010000000000000050726f706f73616c4372656174656400360f100008000000a00f100027000000c70f10004000000050726f706f73616c43616e63656c656450726f706f73616c5374617475735570646174656400000026bc100003000000920f10000e000000d5e610000900000026bc1000030000008a0f100008000000360f1000080000003e0f100028000000660f1000140000007a0f10001000000054616c6c7946696e616c697a656400001e0f10001800000052756e74696d6555706461746564000026bc1000030000000c92100004000000f00e10002e00000050726f706f73616c5665746f65640000d80e10001800000020526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e54616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e0000000000e41510000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f41510000000000000000000041610000200000000000000010000000000000014161000080000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810001c16100000000000000000002c16100001000000000000000100000000000000341610000f0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100044161000000000000000000054161000010000000000000001000000000000005c1610000c0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810006816100000000000000000007816100001000000000000000100000000000000789b10000c000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008016100000000000000000009016100001000000000000000100000000000000981610000a000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000a41610000000000000000000acf8100000000000000000000100000000000000b416100011000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000c81610000000000000000000acf8100000000000000000000100000000000000d81610000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e81610000000000000000000acf8100000000000000000000100000000000000f81610000d000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100008171000000000000000000018171000010000000000000001000000000000002017100009000000010000000000000026bc10000300000000000000291710004b00000000000000000000000000000000000000000000000000000000000000acf8100074171000000000000000000084171000010000000000000001000000000000008c1710001100000000000000000000009d1710000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000a81710000000000000000000b817100001000000000000000100000000000000c01710000e000000010000000000000073bc1000070000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000acf81000d01710000000000000000000e017100001000000000000000100000000000000e81710000f000000010000000000000026bc10000300000000000000f71710001d00000000000000000000000000000000000000000000000000000000000000acf81000141810000000000000000000acf8100000000000000000000100000000000000241810001800000001000000000000003c18100013000000000000008a0f10000800000000000000000000000000000000000000000000000000000000000000acf81000501810000000000000000000acf8100000000000000000000100000000000000601810000c000000010000000000000026bc100003000000000000006c1810001b00000000000000000000000000000000000000000000000000000000000000acf81000881810000000000000000000acf81000000000000000000001000000417070726f76616c51756f72756d00000c0000000000000001000000110000001e1b100032000000501b10002f0000004d696e5374616b650c000000000000000100000012000000d81a10004600000043616e63656c6c6174696f6e466565000c0000000000000001000000130000008c1a10004c00000052656a656374696f6e4665650c000000000000000100000014000000501a10003c0000000c00000000000000010000001500000069191000510000004e616d654d61784c656e00000c0000000000000001000000160000004465736372697074696f6e4d61784c656e0000000c0000000000000001000000170000005761736d436f64654d61784c656e00000c00000000000000010000001800000050726f706f73616c436f756e740000000c00000000000000010000000d0000003a1910002f00000050726f706f73616c7352756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c0a543a3a486173683e0c0000000000000001000000190000001a1910002000000041637469766550726f706f73616c4964735665633c7533323e0000000c00000000000000010000000e000000d1181000490000005761736d436f646542794861736800000c00000000000000010000000e0000009818100039000000566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e0c00000000000000010000000e000000566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c2075333229000c00000000000000010000001000000054616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e000c00000000000000010000001a00000020476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e0000e019100019000000001a100050000000ba00000020000000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f70726f706f73616c732e727320412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204d696e5374616b6550726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7450726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c732041637469766550726f706f73616c4964734f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c5374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f2062696742616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c7320566f74696e67506572696f6450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e46656550726f706f73616c7320417070726f76616c51756f72756d000000a11e100050000000d800000001000000617070726f76616c2071756f726f6d206d7573742062652067726561746572207468616e207a65726f2f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f70726f706f73616c732e727350726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c732052656a656374696f6e46656550726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c732054616c6c79526573756c74730000000000003c2010000f000000000000004c201000040000000000000000000000ac201000040000000000000000000000cc2010001000000000000000dc2010000200000000000000000000000c2110000400000000000000000000002c2110000f000000000000003c211000010000000000000000000000542110000100000000000000000000005c2110000d000000000000003c2110000100000000000000000000006c21100001000000000000000000000074211000130000000000000088211000010000000000000000000000acf8100000000000000000006372656174655f70726f706f73616c000000000027a610000500000000000000ef9b10000c00000000000000b5231000040000000000000000ea10000700000000000000b92310000b0000000000000000ea10000700000000000000c4231000090000000000000000ea10000700000041221000440000008522100006000000282310008d0000002423100004000000766f74655f6f6e5f70726f706f73616c00000000362210000b0000000000000026bc100003000000000000009ca3100004000000000000008a0f100008000000412210004400000085221000060000008b22100099000000242310000400000063616e63656c5f70726f706f73616c0000000000362210000b0000000000000026bc100003000000dd211000590000007665746f5f70726f706f73616c000000a9211000340000007365745f617070726f76616c5f71756f72756d0000000000a0211000090000000000000026bc1000030000006e65775f76616c75652043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f67292060606020706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67296e616d656465736372697074696f6e7761736d5f636f646553657373696f6e20466f7263696e674e657753657373696f6e000000000000142410000a00000000000000a4b610000100000000000000000000002024100002000000000000004e657753657373696f6e000030241000550000008524100022000000204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e53657373696f6e2043757272656e74496e64657853657373696f6e2053657373696f6e4c656e67746853657373696f6e2056616c696461746f727353657373696f6e204e6578744b6579466f7244617461204f626a656374205479706520776974682074686520676976656e204944206e6f7420666f756e642e000000000000007c251000180000000000000094251000010000000000000000000000acf810000000000000000000000000009c251000150000000000000094251000010000000000000000000000acf810000000000000000000446174614f626a6563745479706552656769737465726564b125100010000000446174614f626a6563745479706555706461746564446174614f626a656374547970654964000000000000001861100007000000000000004826100001000000000000000000000060261000020000000000000000000000702610000a00000000000000f06b10000100000000000000000000007c261000010000000000000000000000842610001100000000000000706c100001000000000000000000000098261000010000000000000000000000722710000300000000000000752710000d000000112710005800000069271000090000007365745f6c656e6774680000b62610005b000000666f7263655f6e65775f73657373696f6e000000a02610001600000020466f726365732061206e65772073657373696f6e2e205365742061206e65772073657373696f6e206c656e6774682e20576f6e2774206b69636b20696e20756e74696c20746865206e6578742073657373696f6e206368616e6765202861742063757272656e74206c656e677468292e2053657473207468652073657373696f6e206b6579206f6620605f76616c696461746f726020746f20605f6b6579602e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e6b6579543a3a53657373696f6e4b657953657373696f6e00000000000000e88010000a000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000ac2a10000000000000000000bc2a100001000000000000000100000000000000c42a10000d000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000d42a10000000000000000000e42a100001000000000000000100000000000000ec2a10000c000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c2b10000000000000000000f82a100001000000000000000100000000000000002b10000c00000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c2b100000000000000000001c2b100001000000000000000100000000000000242b100011000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000382b100002000000000000000000000000000000482b100010000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000582b100001000000000000000000000000000000602b10000a0000000100000000000000abd410000c00000000000000752710000d00000000000000000000000000000000000000000000000000000000000000acf810008c30100000000000000000006c2b100001000000000000000000000000000000742b100011000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000882b10000100000000000000000000000c00000000000000010000000e000000202d10001f00000053657373696f6e4c656e6774680000000c00000000000000010000001b000000012d10001f00000043757272656e74496e646578e32c10001e00000043757272656e7453746172740c00000000000000010000001c000000bb2c100028000000466f7263696e674e657753657373696f6e000000fd2b10005e0000005b2c1000600000004c6173744c656e6774684368616e6765cd2b1000300000004e6578744b6579466f720000a92b1000240000004e65787453657373696f6e4c656e677468000000902b10001900000020546865206e6578742073657373696f6e206c656e6774682e20546865206e657874206b657920666f72206120676976656e2076616c696461746f722e20426c6f636b206174207768696368207468652073657373696f6e206c656e677468206c617374206368616e6765642e204e65772073657373696f6e206973206265696e6720666f72636564206966207468697320656e747279206578697374733b20696e20776869636820636173652c2074686520626f6f6c65616e2076616c7565206973207768657468657220746865206e65772073657373696f6e2073686f756c6420626520636f6e736964657265642061206e6f726d616c20726f746174696f6e202872657761726461626c6529206f7220657863657074696f6e616c2028736c61736861626c65292e2054696d657374616d70207768656e2063757272656e742073657373696f6e20737461727465642e2043757272656e7420696e646578206f66207468652073657373696f6e2e2043757272656e74206c656e677468206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e53657373696f6e204c6173744c656e6774684368616e676500a02d100039000000e02d100048000000100200002d00000053657373696f6e2043757272656e74537461727453657373696f6e204e65787453657373696f6e4c656e677468000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e7273382e10005e0000003b000000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f73657373696f6e2f7372632f6c69622e727344656661756c742064617461206f626a656374207479706520666f7220617564696f20616e6420766964656f20636f6e74656e742e446174614f626a65637454797065526567697374727920446174614f626a65637454797065730000000000000020301000150000000000000000000000353010001300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005c3010000000000000000000acf810000000000000000000010000000000000048301000140000000000000000000000353010001300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005c3010000000000000000000acf81000000000000000000001000000000000006c3010000f00000001000000000000003530100013000000000000007b3010000e00000000000000000000000000000000000000000000000000000000000000acf810008c3010000000000000000000acf810000000000000000000000000004669727374446174614f626a656374547970654964543a3a446174614f626a6563745479706549644e657874446174614f626a6563745479706549640c00000000000000010000000f000000446174614f626a6563745479706573446174614f626a656374547970650000000c000000000000000100000010000000446174614f626a656374547970655265676973747279446174614f626a656374547970655265676973747279204e657874446174614f626a656374547970654964000000f03010005d0000004c000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646174615f6f626a6563745f747970655f72656769737472792e7273446174614f626a656374547970655265676973747279204669727374446174614f626a656374547970654964000000000000002c321000190000000000000048321000010000000000000000000000acf8100000000000000000000000000060321000170000000000000078321000020000000000000000000000acf81000000000000000000000000000a83210001900000000000000c4321000010000000000000000000000acf81000000000000000000000000000dc3210001b00000000000000c4321000010000000000000000000000acf81000000000000000000072656769737465725f646174615f6f626a6563745f7479706500000000000000f732100010000000000000007b3010000e0000007570646174655f646174615f6f626a6563745f747970650000000000e0f210000200000000000000353010001300000000000000f732100010000000000000007b3010000e00000061637469766174655f646174615f6f626a6563745f7479706500000000000000e0f2100002000000000000003530100013000000646561637469766174655f646174615f6f626a6563745f74797065646174615f6f626a6563745f7479706500000000003839100006000000000000001d00000000000000000000001e000000000000000000000002000000000000000000000000000000000000001f0000000000000000000000000000003e391000090000000000000020000000000000000000000021000000000000000000000000000000220000000000000000000000020000000000000000000000000000000000000047391000090000000000000023000000000000000000000024000000000000000000000000000000250000000000000000000000020000000000000000000000000000000000000050391000040000000000000026000000000000000200000000000000000000000000000002000000000000000000000000000000020000000000000000000000000000000000000054391000070000000000000027000000000000000000000028000000000000000000000000000000290000000000000000000000000000002a0000000000000000000000000000005b39100008000000000000002b00000000000000000000002c0000000000000000000000000000002d0000000000000000000000000000002e0000000000000000000000000000006339100007000000000000002f00000000000000000000003000000000000000000000000000000031000000000000000000000000000000320000000000000000000000000000006a3910000700000000000000330000000000000000000000340000000000000000000000000000003500000000000000000000000000000036000000000000000000000000000000e4601000040000000000000037000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a000000000000000000000000000000713910001000000000000000260000000000000002000000000000000000000000000000000000003b000000000000000000000002000000000000000000000000000000000000008139100007000000000000003c00000000000000000000003d0000000000000000000000000000003e0000000000000000000000000000003f000000000000000000000000000000883910000900000000000000400000000000000000000000410000000000000000000000000000004200000000000000000000000000000043000000000000000000000000000000913910000800000000000000440000000000000000000000450000000000000000000000000000004600000000000000000000000000000047000000000000000000000000000000993910000700000000000000480000000000000000000000490000000000000000000000000000004a0000000000000000000000000000004b0000000000000000000000000000004cc7100004000000000000004c00000000000000000000004d0000000000000000000000000000004e0000000000000000000000000000004f000000000000000000000000000000a03910000700000000000000500000000000000000000000510000000000000000000000000000005200000000000000000000000000000053000000000000000000000000000000a73910000900000000000000540000000000000000000000550000000000000000000000000000002900000000000000000000000000000056000000000000000000000000000000b0391000060000000000000057000000000000000000000058000000000000000000000000000000590000000000000000000000000000005a000000000000000000000000000000b639100019000000000000005b00000000000000000000005c0000000000000000000000000000005d0000000000000000000000000000005e000000000000000000000000000000cf3910000e000000000000005f0000000000000000000000600000000000000000000000000000006100000000000000000000000000000062000000000000000000000000000000dd3910001c00000000000000630000000000000000000000640000000000000000000000000000006500000000000000000000000000000066000000000000000000000000000000f9391000090000000000000067000000000000000000000068000000000000000000000000000000690000000000000000000000000000006a000000000000000000000073797374656d74696d657374616d70636f6e73656e73757361757261696e646963657362616c616e63657373657373696f6e7374616b696e6766696e616c6974795f747261636b65726772616e64706170726f706f73616c73656c656374696f6e636f756e63696c6d656d626572736d6967726174696f6e6163746f7273646174615f6f626a6563745f747970655f7265676973747279646174615f6469726563746f7279646174615f6f626a6563745f73746f726167655f7265676973747279646f776e6c6f6164736a6f7973747265616d2d6e6f6465df6acb689907609b0200000037e397fc7c91f5e40100000040fe3ad401f8959a03000000d2bc9897eed08f1501000000f78b278be53f454c01000000ed99c5acb25eedf502000000dd718d5cc53262d4010000007801759919ee83e501000000883a100028000000bcf310003f0000007e0100000d000000446570726563617465642c20706c65617365207573652060417574686f726974696573417069602e4469676573744974656d206e6f7420657175616c6e6f7420616c6c6f77656420746f206661696c20696e2072756e74696d650000003b100039000000403b100048000000100200002d00000000000000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e7273466f72207468652073706563696669656420726f6c652c206e6f206163746f722069732063757272656e746c79207374616b65642e4163746f7273204163746f7242794163636f756e7449644163746f7273204163636f756e744964734279526f6c654163746f727320526f6c65456e74727952657175657374730000000000883c10000e00000000000000983c1000020000000000000000000000acf81000000000000000000000000000a83c10000600000000000000983c1000020000000000000000000000acf81000000000000000000000000000ae3c10000800000000000000983c1000020000000000000000000000acf810000000000000000000456e7472795265717565737465640000d5e6100009000000b63c1000040000005374616b6564556e7374616b6564526f6c65000000000000dc3f10000a0000000100000000000000b63c10000400000000000000e63f10001100000000000000000000000000000000000000000000000000000000000000acf81000f83f100000000000000000000840100001000000000000000000000000000000104010000e00000000000000000000001e4010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b040100000000000000000002840100001000000000000000100000000000000304010000f000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b04010000000000000000000404010000100000000000000010000000000000048401000100000000100000000000000abd410000c00000000000000584010000800000000000000000000000000000000000000000000000000000000000000acf81000604010000000000000000000704010000100000000000000000000000000000078401000100000000100000000000000b63c1000040000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000b04010000000000000000000884010000100000000000000010000000000000090401000140000000100000000000000a44010000b0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000b04010000000000000000000c040100001000000000000000100000000000000c8401000110000000000000000000000d94010000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e44010000000000000000000f440100006000000000000000100000000000000244110000f00000000000000000000004bea10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100034411000000000000000000044411000010000000000000001000000506172616d6574657273526f6c65506172616d65746572733c543e000c000000000000000100000010000000c643100033000000417661696c61626c65526f6c65735665633c526f6c653e00a5431000210000004163746f724163636f756e7449647300994310000c0000004163746f7242794163636f756e7449644163746f723c543e0c00000000000000010000001000000074431000250000004163636f756e744964734279526f6c654e431000260000004163636f756e7449647342794d656d62657249644d656d62657249643c543e000c00000000000000010000000e000000234310002b000000526f6c65456e747279526571756573747352657175657374733c543e0c00000000000000010000000e0000007e4110004d000000cb411000450000001042100063000000734210003c000000af4210003c000000eb42100038000000526571756573744c69666554696d65000c00000000000000010000006b0000004c4110003200000020456e747279207265717565737420657870697265732061667465722074686973206e756d626572206f6620626c6f636b732046697273742073746570206265666f726520656e746572206120726f6c65206973207265676973746572696e6720696e74656e7420776974682061206e6577206163636f756e742f6b65792e205468697320697320646f6e652062792073656e64696e67206120726f6c655f656e7472795f7265717565737428292066726f6d20746865206e6577206163636f756e742e20546865206d656d626572206d757374207468656e2073656e642061207374616b652829207472616e73616374696f6e20746f20617070726f766520746865207265717565737420616e6420656e74657220746865206465736972656420726f6c652e20546865206163636f756e74206d616b696e672074686520726571756573742077696c6c20626520626f6e64656420616e64206d75737420686176652073756666696369656e742062616c616e636520746f20636f76657220746865206d696e696d756d207374616b6520666f722074686520726f6c652e20426f6e64696e67206f6e6c79206f6363757273206166746572207375636365737366756c20656e74727920696e746f206120726f6c652e206163746f72206163636f756e7473206173736f63696174656420776974682061206d656d626572206964206163746f72206163636f756e7473206173736f6369617465642077697468206120726f6c65206163746f72206163636f756e7473206d617070656420746f207468656972206163746f72204163746f7273206c6973742074686520726f6c6573206d656d626572732063616e20656e74657220696e746f20726571756972656d656e747320746f20656e74657220616e64206d61696e7461696e2073746174757320696e20726f6c65734163746f72736163636f756e742069732061206d656d6265726163636f756e7420616c7265616479207573656463616e6e6f742070617920726f6c6520656e747279207265717565737420666565696e61637469766520726f6c656e6f20706172616d657465727320666f7220726f6c654163746f727320417661696c61626c65526f6c65734163746f727320526571756573744c69666554696d656e6f20726f6c6520656e7472792072657175657374206d617463686573726f6c6520736c6f74732066756c6c6e6f7420656e6f7567682062616c616e636520746f207374616b654163746f7273204163636f756e7449647342794d656d62657249644163746f7273204163746f724163636f756e744964736e6f7420726f6c65206b65796163746f72206e6f74206f776e6564206279206d656d6265724163746f727320506172616d6574657273005445100048000000fe000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f726f6c65732f6163746f72732e727300000000fc461000120000000000000010471000020000000000000000000000acf8100000000000000000000000000027a610000500000000000000404710000200000000000000000000007047100001000000000000000000000078471000070000000000000080471000010000000000000000000000acf81000000000000000000000000000984710001300000000000000ac471000020000000000000000000000acf81000000000000000000000000000dc4710001300000000000000f0471000010000000000000000000000acf8100000000000000000000000000008481000160000000000000020481000010000000000000000000000acf81000000000000000000000000000384810001b0000000000000020481000010000000000000000000000acf81000000000000000000000000000534810000c0000000000000080471000010000000000000000000000acf810000000000000000000726f6c655f656e7472795f726571756573740000000000005f4810000400000000000000b63c100004000000000000009b4810000900000000000000a44010000b000000000000005f4810000400000000000000b63c100004000000000000006e4810000d00000000000000abd410000c0000007b48100020000000756e7374616b6500000000006e4810000d00000000000000abd410000c0000007365745f726f6c655f706172616d657465727300000000005f4810000400000000000000b63c10000400000000000000684810000600000000000000e63f1000110000007365745f617661696c61626c655f726f6c657300000000006348100005000000000000001e401000090000006164645f746f5f617661696c61626c655f726f6c65730000000000005f4810000400000000000000b63c10000400000072656d6f76655f66726f6d5f617661696c61626c655f726f6c657372656d6f76655f6163746f72726f6c65726f6c6573706172616d736163746f725f6163636f756e74204d656d6265722061637469766174696e6720656e74727920726571756573746d656d6265725f69646e6f206d656d62657220696420666f756e6420666f72206163636f756e7469644d656d62657273686970204163636f756e74496442794d656d62657249644d656d62657273686970204d656d626572496442794163636f756e74496400000000b04910001000000000000000c0491000020000000000000000000000acf81000000000000000000000000000d04910001600000000000000e8491000010000000000000000000000acf81000000000000000000000000000f04910001300000000000000e8491000010000000000000000000000acf81000000000000000000000000000034a10001300000000000000e8491000010000000000000000000000acf8100000000000000000004d656d62657252656769737465726564164a100008000000d5e61000090000004d656d6265725570646174656441626f7574546578740000164a1000080000004d656d626572557064617465644176617461724d656d6265725570646174656448616e646c654d656d62657249640000954a100036000000385c10005e0000008d010000050000000000000000000000584a10003d000000385c10005e0000009401000005000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656450726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400954a100036000000385c10005e000000b4010000050000000000000000000000000000000000000000000000385c10005e000000bb010000050000004d656d62657273686970204d656d62657250726f66696c656d656d6265722070726f66696c65206e6f7420666f756e6455736572496e666f68616e646c65000000000000245110000d0000000000000000000000315110000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f851100000000000000000003c51100001000000000000000100000000000000445110000c0000000000000000000000315110000b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f85110000000000000000000505110000100000000000000010000000000000058511000130000000100000000000000315110000b00000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000acf810006c51100000000000000000007c5110000100000000000000010000000000000084511000130000000100000000000000abd410000c00000000000000315110000b00000000000000000000000000000000000000000000000000000000000000acf81000e052100000000000000000009851100001000000000000000000000000000000a05110000d0000000100000000000000315110000b00000000000000ad5110000a00000000000000000000000000000000000000000000000000000000000000acf81000e05210000000000000000000b851100001000000000000000000000000000000c051100007000000010000000000000000ea10000700000000000000315110000b00000000000000000000000000000000000000000000000000000000000000acf81000e05210000000000000000000c851100001000000000000000000000000000000d0511000190000000000000000000000e95110000d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f85110000000000000000000085210000100000000000000010000000000000010521000170000000100000000000000e95110000d00000000000000275210001600000000000000000000000000000000000000000000000000000000000000acf81000405210000000000000000000505210000100000000000000000000000000000058521000190000000000000000000000715210001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100084521000000000000000000094521000010000000000000001000000000000009c52100015000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b45210000000000000000000c452100001000000000000000100000000000000cc521000120000000000000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000e05210000000000000000000acf8100000000000000000000000000000000000f05210000f000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000005310000000000000000000acf8100000000000000000000100000000000000105310000f000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000205310000000000000000000acf81000000000000000000001000000000000003053100012000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000445310000000000000000000acf81000000000000000000001000000000000005453100012000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000685310000000000000000000acf8100000000000000000000100000046697273744d656d6265724964543a3a4d656d6265724964215510001f0000004e6578744d656d6265724964e1541000400000004163636f756e74496442794d656d6265724964000c00000000000000010000006c000000a25410003f0000004d656d626572496442794163636f756e744964006e541000340000004d656d62657250726f66696c6550726f66696c653c543e003b5410003300000048616e646c657300005410003b0000004e657874506169644d656d626572736869705465726d734964543a3a506169645465726d496400000c00000000000000010000000f000000e25310001e000000506169644d656d626572736869705465726d7342794964506169644d656d626572736869705465726d733c543e0000000c00000000000000010000006d000000c55310001d000000416374697665506169644d656d626572736869705465726d735665633c543a3a506169645465726d49643e000c00000000000000010000006e000000a85310001d0000004e65774d656d6265727368697073416c6c6f7765640000000c00000000000000010000006f000000785310003000000053637265656e696e67417574686f7269747900000c0000000000000001000000100000004d696e48616e646c654c656e677468000c0000000000000001000000700000004d617848616e646c654c656e677468000c0000000000000001000000710000004d61784176617461725572694c656e67746800000c0000000000000001000000720000004d617841626f7574546578744c656e67746800000c0000000000000001000000730000002049732074686520706c6174666f726d20697320616363657074696e67206e6577206d656d62657273206f72206e6f74204163746976652050616964206d656d62657273686970207465726d732050616964206d656d62657273686970207465726d73207265636f7264204e6578742070616964206d656d62657273686970207465726d73206964205265676973746572656420756e697175652068616e646c657320616e64207468656972206d617070696e6720746f207468656972206f776e6572204d617070696e67206f66206d656d626572277320696420746f207468656972206d656d626572736869702070726f66696c65204d617070696e67206f66206d656d6265727327206163636f756e742069647320746f207468656972206d656d6265722069642e204d617070696e67206f66206d656d6265722069647320746f20746865697220636f72726573706f6e64696e67207072696d617279206163636f756e746964204d656d626572496420746f2061737369676e20746f206e657874206d656d626572207468617420697320616464656420746f20746865207265676973747279204d656d6265724964277320737461727420617420746869732076616c75654d656d626572736869704d656d62657273686970204e65774d656d6265727368697073416c6c6f7765644d656d6265727368697020416374697665506169644d656d626572736869705465726d734d656d6265727368697020506169644d656d626572736869705465726d734279496470616964206d656d62657273686970207465726d20696420646f6573206e6f7420657869737470616964207465726d73206964206e6f7420616374697665726f6c65206b65792063616e6e6f74206265207573656420666f72206d656d626572736869706e6577206d656d62657273206e6f7420616c6c6f7765646163636f756e7420616c7265616479206173736f63696174656420776974682061206d656d6265727368697068616e646c6520616c726561647920726567697374657265646e6f7420656e6f7567682062616c616e636520746f20627579206d656d626572736869704d656d626572736869702048616e646c65736e6f74207072696d617279206163636f756e744d656d626572736869702053637265656e696e67417574686f726974796e6f742073637265656e65726e6f2073637265656e696e6720617574686f7269747920646566696e6564105710004e000000e1000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f6d656d626572736869702f6d656d626572732e727368616e646c6520746f6f2073686f727468616e646c6520746f6f206c6f6e674d656d62657273686970204d696e48616e646c654c656e6774684d656d62657273686970204d617848616e646c654c656e6774686176617461722075726920746f6f206c6f6e674d656d62657273686970204d61784176617461725572694c656e6774684d656d62657273686970204d617841626f7574546578744c656e6774684d656d62657273686970204e6578744d656d626572496468616e646c65206d7573742062652070726f766964656420647572696e6720726567697374726174696f6e00000000745910000e0000000000000084591000020000000000000000000000b4591000010000000000000000000000bc5910001800000000000000d4591000010000000000000000000000ec591000010000000000000000000000f45910001400000000000000085a1000010000000000000000000000205a1000010000000000000000000000285a100014000000000000003c5a1000010000000000000000000000545a1000020000000000000000000000645a10000e00000000000000745a10000100000000000000000000008c5a1000010000000000000000000000945a10001300000000000000a85a1000020000000000000000000000acf81000000000000000000000000000d85a10001700000000000000f05a1000010000000000000000000000acf8100000000000000000006275795f6d656d626572736869700000000000002b5c10000d00000000000000e95110000d000000000000001b5b10000900000000000000384b1000080000000c5c10001f0000006368616e67655f6d656d6265725f61626f75745f7465787400000000085c1000040000000000000000ea100007000000ed5b10001b0000006368616e67655f6d656d6265725f61766174617200000000ea5b1000030000000000000000ea100007000000d35b1000170000006368616e67655f6d656d6265725f68616e646c6500000000404b1000060000000000000000ea100007000000625b100057000000b95b10001a0000007570646174655f70726f66696c650000000000001b5b10000900000000000000384b100008000000245b10003e0000006164645f73637265656e65645f6d656d6265720000000000115b10000a00000000000000abd410000c000000000000001b5b10000900000000000000384b1000080000007365745f73637265656e696e675f617574686f726974790000000000085b10000900000000000000abd410000c000000617574686f726974796e65775f6d656d626572757365725f696e666f20557064617465206d656d626572277320616c6c206f7220736f6d65206f662068616e646c652c2061766174617220616e642061626f757420746578742e204368616e6765206d656d62657227732068616e646c652e2057696c6c20656e73757265206e65772068616e646c6520697320756e6971756520616e64206f6c64206f6e652077696c6c20626520617661696c61626c6520666f72206f74686572206d656d6265727320746f207573652e204368616e6765206d656d626572277320617661746172757269204368616e6765206d656d62657227732061626f7574207465787474657874204e6f6e2d6d656d626572732063616e20627579206d656d62657273686970706169645f7465726d735f69642f55736572732f6d6f6b687461722f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d636f6465632d332e332e302f7372632f636f6465632e7273000000000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000405d10000500000000000000485d1000010000000000000000000000505d1000010000000000000000000000585d10000a000000000000001cc81000010000000000000000000000645d10000100000000000000537564696400000006e7100004000000a85d1000180000004b65794368616e67656400006c5d10003c00000020546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e2041207375646f206a75737420746f6f6b20706c6163652e696e76616c69642073616c744d6967726174696f6e205370656356657273696f6e00000000000000105e10000800000000000000185e1000020000000000000000000000acf8100000000000000000004d69677261746564c1b610000b00000026bc100003000000385e10004500000034000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f6d6967726174696f6e2e7273000000a05c100048000000840a00000e000000b05e100019000000d05e100063000000df000000180000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f7374616b696e672f7372632f70687261676d656e2e727370726576696f75732f6e657874206f6e6c7920636f6e7461696e206578697374696e6720656e74697265733b20776520656e756d6572617465207573696e67206e6578743b20656e747279206578697374733b207165640000acf8100000000000c15f100002000000ac5f100015000000e5030000050000007372632f6c6962636f72652f726573756c742e72733a206f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f5375646f204b65796f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b65790000306010005b0000008c000000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f7375646f2f7372632f6c69622e72730000000000e46010000400000000000000e860100001000000000000000000000000611000030000000000000000000000186110000700000000000000206110000100000000000000000000003861100003000000000000007375646f000000002f62100008000000000000003762100010000000e16110004e000000acf8100000000000ad611000340000007365745f6b65790000000000fde91000030000000000000046ce100023000000506110005d000000acf8100000000000ad611000340000002041757468656e74696361746573207468652063757272656e74207375646f206b657920616e6420736574732074686520676976656e204163636f756e7449642028606e6577602920617320746865206e6577207375646f206b65792e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2e2041757468656e7469636174657320746865207375646f206b657920616e64206469737061746368657320612066756e6374696f6e2063616c6c20776974682060526f6f7460206f726967696e2e70726f706f73616c426f783c543a3a50726f706f73616c3e5375646f0000000000b0621000030000000000000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b46210000000000000000000c46210000100000000000000010000004b6579000c00000000000000010000006c000000cc621000210000002054686520604163636f756e74496460206f6620746865207375646f206b65792e00000000000000546310000b000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000606310000000000000000000706310000200000000000000000000005370656356657273696f6e000c0000000000000001000000100000008063100058000000d863100046000000205265636f72647320617420776861742072756e74696d6520737065632076657273696f6e207468652073746f72652077617320696e697469616c697a65642e205468697320616c6c6f7773207468652072756e74696d6520746f206b6e6f77207768656e20746f2072756e20696e697469616c697a6520636f64652069662069742077617320696e7374616c6c656420617320616e207570646174652e4d6967726174696f6e0000000000ac6410000600000000000000b4641000010000000000000000000000bc641000010000000000000000000000c46410000e00000000000000d4641000020000000000000000000000e4641000020000000000000000000000f46410000c00000000000000f4c71000020000000000000000000000006510000100000000000000526577617264000088c8100007000000ed651000380000004f66666c696e655761726e696e670000d5e610000900000026bc1000030000005365100055000000a8651000450000004f66666c696e65536c617368086510004b000000204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e204f6e652076616c696461746f722028616e64207468656972206e6f6d696e61746f72732920686173206265656e20676976656e2061206f66666c696e652d7761726e696e67202874686579277265207374696c6c2077697468696e207468656972206772616365292e205468652061636372756564206e756d626572206f6620736c6173686573206973207265636f726465642c20746f6f2e20416c6c2076616c696461746f72732068617665206265656e2072657761726465642062792074686520676976656e2062616c616e63652e5374616b696e6720426f6e6465645374616b696e67204e6f6d696e61746f72735374616b696e672056616c696461746f72735374616b696e67204c656467657200000000000000fc68100004000000000000000069100003000000000000000000000048691000040000000000000000000000686910000a00000000000000746910000100000000000000000000008c691000060000000000000000000000bc6910000600000000000000c4691000010000000000000000000000dc6910000a00000000000000000000002c6a10001100000000000000acf81000000000000000000000000000406a1000080000000000000000000000806a10000800000000000000886a1000010000000000000000000000a06a1000050000000000000000000000c86a10000800000000000000d06a1000010000000000000000000000e86a1000050000000000000000000000106b10000500000000000000acf81000000000000000000000000000186b1000050000000000000000000000406b100009000000000000004c6b1000010000000000000000000000646b10000500000000000000000000008c6b10000e000000000000009c6b1000010000000000000000000000b46b1000050000000000000000000000dc6b10001400000000000000f06b1000010000000000000000000000086c1000010000000000000000000000106c10001400000000000000f06b1000010000000000000000000000246c10000100000000000000000000002c6c10001300000000000000406c1000010000000000000000000000586c1000010000000000000000000000606c10000d00000000000000706c1000010000000000000000000000886c1000020000000000000000000000986c10001700000000000000406c1000010000000000000000000000b06c1000010000000000000000000000b86c10001100000000000000cc6c1000010000000000000000000000e46c10000100000000000000626f6e64000000002a6f10000a0000000000000046ce1000230000000000000004d010000500000000000000ef7210001500000000000000896f100005000000000000008e6f100011000000cc731000600000002c7410001a000000acf81000000000004674100049000000626f6e645f6578747261000000000000be7310000e00000000000000ef72100015000000047310005d0000006173100009000000acf81000000000006a73100054000000acf8100000000000d56e100055000000756e626f6e6400000000000004d010000500000000000000ef721000150000006571100055000000ba71100040000000fa7110004d000000acf810000000000047721000520000009972100030000000acf8100000000000346f100055000000acf8100000000000c97210002600000077697468647261775f756e626f6e6465640000009f7010004b000000acf8100000000000ea7010004d0000003771100013000000acf8100000000000346f100055000000acf81000000000004a7110001b00000076616c6964617465000000007e7010000500000000000000837010001c000000447010003a000000acf81000000000009e6e100037000000acf8100000000000346f1000550000006e6f6d696e617465000000001570100007000000000000001c70100028000000d16f100044000000acf81000000000009e6e100037000000acf8100000000000346f1000550000006368696c6c0000009f6f100032000000acf81000000000009e6e100037000000acf8100000000000346f1000550000007365745f706179656500000000000000896f100005000000000000008e6f100011000000706e10002e000000acf81000000000009e6e100037000000acf8100000000000346f1000550000007365745f636f6e74726f6c6c65720000000000002a6f10000a0000000000000046ce100023000000706e10002e000000acf81000000000009e6e100037000000acf8100000000000d56e1000550000007365745f73657373696f6e735f7065725f65726100000000fde91000030000000000000080c11000170000004a6e1000260000007365745f626f6e64696e675f6475726174696f6e1e6e10002c0000007365745f76616c696461746f725f636f756e740000000000fde910000300000000000000126e10000c000000f26d100020000000666f7263655f6e65775f65726100000000000000e56d10000d0000000000000006e71000040000004d6d10004f0000009c6d1000490000007365745f6f66666c696e655f736c6173685f677261636500296d1000240000007365745f696e76756c6e657261626c6573000000000000001f6d10000a0000000000000013f1100011000000ec6c10003300000020536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f72732053657420746865206f66666c696e6520736c61736820677261636520706572696f642e20466f72636520746865726520746f2062652061206e6577206572612e205468697320616c736f20666f726365732061206e65772073657373696f6e20696d6d6564696174656c792061667465722e20606170706c795f72657761726473602073686f756c64206265207472756520666f722076616c696461746f727320746f20676574207468652073657373696f6e207265776172642e6170706c795f726577617264732054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20657261732e2053657420746865206e756d626572206f662073657373696f6e7320696e20616e206572612e202852652d2973657420746865207061796d656e742074617267657420666f72206120636f6e74726f6c6c65722e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f206279207468652073746173682c206e6f742074686520636f6e74726f6c6c65722e636f6e74726f6c6c657220546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2062792074686520636f6e74726f6c6c65722c206e6f74207468652073746173682e706179656552657761726444657374696e6174696f6e204465636c617265206e6f2064657369726520746f206569746865722076616c6964617465206f72206e6f6d696e6174652e204465636c617265207468652064657369726520746f206e6f6d696e6174652060746172676574736020666f7220746865206f726967696e20636f6e74726f6c6c65722e746172676574735665633c3c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f757263653e204465636c617265207468652064657369726520746f2076616c696461746520666f7220746865206f726967696e20636f6e74726f6c6c65722e707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2052656d6f766520616e7920756e6c6f636b6564206368756e6b732066726f6d207468652060756e6c6f636b696e67602071756575652066726f6d206f7572206d616e6167656d656e742e205468697320657373656e7469616c6c7920667265657320757020746861742062616c616e636520746f206265207573656420627920746865207374617368206163636f756e7420746f20646f2077686174657665722069742077616e74732e2053656520616c736f205b6043616c6c3a3a756e626f6e64605d2e205363686564756c65206120706f7274696f6e206f662074686520737461736820746f20626520756e6c6f636b656420726561647920666f72207472616e73666572206f75742061667465722074686520626f6e6420706572696f6420656e64732e2049662074686973206c656176657320616e20616d6f756e74206163746976656c7920626f6e646564206c657373207468616e20543a3a43757272656e63793a3a6578697374656e7469616c5f6465706f73697428292c207468656e20697420697320696e6372656173656420746f207468652066756c6c20616d6f756e742e204f6e63652074686520756e6c6f636b20706572696f6420697320646f6e652c20796f752063616e2063616c6c206077697468647261775f756e626f6e6465646020746f2061637475616c6c79206d6f7665207468652066756e6473206f7574206f66206d616e6167656d656e7420726561647920666f72207472616e736665722e2053656520616c736f205b6043616c6c3a3a77697468647261775f756e626f6e646564605d2e436f6d706163743c42616c616e63654f663c543e3e2041646420736f6d6520657874726120616d6f756e742074686174206861766520617070656172656420696e207468652073746173682060667265655f62616c616e63656020696e746f207468652062616c616e636520757020666f72207374616b696e672e20557365207468697320696620746865726520617265206164646974696f6e616c2066756e647320696e20796f7572207374617368206163636f756e74207468617420796f75207769736820746f20626f6e642e6d61785f6164646974696f6e616c2054616b6520746865206f726967696e206163636f756e74206173206120737461736820616e64206c6f636b207570206076616c756560206f66206974732062616c616e63652e2060636f6e74726f6c6c6572602077696c6c20626520746865206163636f756e74207468617420636f6e74726f6c732069742e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f20627920746865207374617368206163636f756e742e5374616b696e675374616b696e6720496e76756c6e657261626c65735374616b696e6720536c617368436f756e745374616b696e67204f66666c696e65536c61736847726163655374616b696e6720526563656e746c794f66666c696e6576206973206e6f6e2d656d7074793b20716564c075100048000000840a00000e0000005374616b696e67204f66666c696e65536c6173685374616b696e6720466f7263696e674e65774572614c696e6b616765206973207570646174656420696e206361736520656e7472792069732072656d6f7665643b20697420616c7761797320706f696e747320746f206578697374696e67206b6579733b2071656468656164206f66205374616b696e672056616c696461746f72735374616b696e67205374616b65727300000000000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e727300000000687f10000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000648210000000000000000000787f100001000000000000000100000000000000807f100015000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000987f10000000000000000000a87f100001000000000000000100000000000000b07f10000e000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000388010000000000000000000c07f100001000000000000000100000000000000c87f10000d0000000000000000000000d57f10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc7f10000000000000000000ec7f100001000000000000000100000000000000f46410000c0000000000000000000000d57f10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f47f1000000000000000000004801000010000000000000001000000000000000c80100011000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810006482100000000000000000002080100001000000000000000100000000000000288010000f000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810003880100000000000000000004880100001000000000000000100000000000000508010000d000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc8210000000000000000000608010000200000000000000010000000000000070801000060000000100000000000000abd410000c00000000000000abd410000c00000000000000000000000000000000000000000000000000000000000000acf810008c8210000000000000000000788010000100000000000000000000000000000080801000060000000100000000000000abd410000c00000000000000868010003900000000000000000000000000000000000000000000000000000000000000acf810008c8210000000000000000000c080100001000000000000000000000000000000c8801000050000000100000000000000abd410000c000000000000008e6f10001100000000000000000000000000000000000000000000000000000000000000acf81000d08010000000000000000000e080100001000000000000000100000000000000e88010000a0000000101000000000000abd410000c00000000000000837010001c00000000000000000000000000000000000000000000000000000000000000acf81000f4801000000000000000000004811000010000000000000001000000000000000c8110000a0000000101000000000000abd410000c0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf81000dc8210000000000000000000188110000100000000000000010000000000000020811000070000000100000000000000abd410000c00000000000000278110002400000000000000000000000000000000000000000000000000000000000000acf810004c81100000000000000000005c811000040000000000000001000000000000007c8110000e000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc82100000000000000000008c81100001000000000000000100000000000000948110000a000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c8210000000000000000000a081100001000000000000000100000000000000a8811000140000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000308210000000000000000000ec7f100001000000000000000100000000000000bc811000100000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000308210000000000000000000cc81100002000000000000000100000000000000dc81100012000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c8210000000000000000000f081100001000000000000000000000000000000f881100013000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810000c82100000000000000000001c8210000100000000000000010000000000000024821000090000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810003082100000000000000000004082100003000000000000000100000000000000588210000a0000000100000000000000abd410000c0000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000acf8100064821000000000000000000074821000010000000000000001000000000000007c8210000d0000000000000000000000898210000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810008c82100000000000000000009c82100001000000000000000000000000000000a48210000f0000000000000000000000b38210002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000dc8210000000000000000000ec82100001000000000000000100000056616c696461746f72436f756e740000528a10002a0000004d696e696d756d56616c696461746f72436f756e740000000c000000000000000100000074000000028a10005000000053657373696f6e735065724572610000d98910002900000053657373696f6e52657761726450657262696c6c0c00000000000000010000001100000091891000480000000c0000000000000001000000750000003d891000540000004f66666c696e65536c6173684772616365000000ef8810004e000000426f6e64696e674475726174696f6e000c00000000000000010000001b000000c18810002e000000496e76756c6e657261626c6573000000ed87100069000000568810006b000000426f6e6465640000ad871000400000004c65646765725374616b696e674c65646765723c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e005c8710005100000050617965650000000c000000000000000100000010000000238710003900000056616c696461746f727300000c000000000000000100000076000000d2861000510000004e6f6d696e61746f7273000079861000590000005374616b6572734578706f737572653c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e000c000000000000000100000077000000b98510006c0000002586100030000000acf8100000000000558610002400000043757272656e74456c656374656400007a8510003f00000043757272656e744572610000638510001700000043757272656e7453657373696f6e52657761726443757272656e74457261526577617264d68410005a00000030851000330000004e65787453657373696f6e735065724572610000b2841000240000004c6173744572614c656e6774684368616e6765000c00000000000000010000001c0000007a84100038000000536c6f745374616b650000000c000000000000000100000078000000fe8310004c000000acf81000000000004a84100030000000536c617368436f756e7400000c00000000000000010000000d0000008a83100074000000466f7263696e674e65774572612829000c000000000000000100000010000000708310001a000000526563656e746c794f66666c696e655665633c28543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c20753332293e000c00000000000000010000000e000000f48210007c000000204d6f737420726563656e742060524543454e545f4f46464c494e455f434f554e546020696e7374616e6365732e202877686f206974207761732c207768656e20697420776173207265706f727465642c20686f77206d616e7920696e7374616e63657320746865792077657265206f66666c696e6520666f72292e2057652061726520666f7263696e672061206e6577206572612e20546865206e756d626572206f662074696d6573206120676976656e2076616c696461746f7220686173206265656e207265706f72746564206f66666c696e652e205468697320676574732064656372656d656e746564206279206f6e652065616368206572612074686174207061737365732e2054686520616d6f756e74206f662062616c616e6365206163746976656c79206174207374616b6520666f7220656163682076616c696461746f7220736c6f742c2063757272656e746c792e2054686973206973207573656420746f20646572697665207265776172647320616e642070756e6973686d656e74732e205468652073657373696f6e20696e6465782061742077686963682074686520657261206c656e677468206c617374206368616e6765642e20546865206e6578742076616c7565206f662073657373696f6e7320706572206572612e2054686520616363756d756c617465642072657761726420666f72207468652063757272656e74206572612e20526573657420746f207a65726f2061742074686520626567696e6e696e67206f66207468652065726120616e6420696e6372656173656420666f72206576657279207375636365737366756c6c792066696e69736865642073657373696f6e2e205468652063757272656e742065726120696e6465782e205468652063757272656e746c7920656c65637465642076616c696461746f7220736574206b65796564206279207374617368206163636f756e742049442e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e20596f752063616e27742069746572617465207468726f7567682076616c696461746f727320686572652c2062757420796f752063616e2066696e64207468656d20696e20746865206073657373696f6e7360206d6f64756c652e2054686973206973206b6579656420627920746865207374617368206163636f756e742e20546865206d61702066726f6d206e6f6d696e61746f72207374617368206b657920746f2074686520736574206f66207374617368206b657973206f6620616c6c2076616c696461746f727320746f206e6f6d696e6174652e20546865206d61702066726f6d202877616e6e616265292076616c696461746f72207374617368206b657920746f2074686520707265666572656e636573206f6620746861742076616c696461746f722e2057686572652074686520726577617264207061796d656e742073686f756c64206265206d6164652e204b657965642062792073746173682e204d61702066726f6d20616c6c2028756e6c6f636b6564292022636f6e74726f6c6c657222206163636f756e747320746f2074686520696e666f20726567617264696e6720746865207374616b696e672e204d61702066726f6d20616c6c206c6f636b65642022737461736822206163636f756e747320746f2074686520636f6e74726f6c6c6572206163636f756e742e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c79206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c697a6520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e20546865206c656e677468206f662074686520626f6e64696e67206475726174696f6e20696e20626c6f636b732e204e756d626572206f6620696e7374616e636573206f66206f66666c696e65207265706f727473206265666f726520736c617368696e6720626567696e7320666f722076616c696461746f72732e20536c6173682c207065722076616c696461746f7220746861742069732074616b656e20666f72207468652066697273742074696d6520746865792061726520666f756e6420746f206265206f66666c696e652e204d6178696d756d207265776172642c207065722076616c696461746f722c20746861742069732070726f7669646564207065722061636365707461626c652073657373696f6e2e20546865206c656e677468206f662061207374616b696e672065726120696e2073657373696f6e732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e5374616b696e672043757272656e7453657373696f6e526577617264708d100019000000208d100048000000bb0100002d0000005374616b696e672043757272656e744572615265776172645374616b696e67204c6173744572614c656e6774684368616e67655374616b696e672053657373696f6e73506572457261000000e08c100039000000208d100048000000100200002d0000005374616b696e672043757272656e74456c65637465645374616b696e6720536c6f745374616b655374616b696e672043757272656e744572615374616b696e67204e65787453657373696f6e735065724572615374616b696e672056616c696461746f72436f756e745374616b696e67204d696e696d756d56616c696461746f72436f756e7468656164206f66205374616b696e67204e6f6d696e61746f72737900000028000000040000007a0000007b00000000000000000000007c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0751000480000007e0a00000a0000005374616b696e672053657373696f6e5265776172645374616b696e672050617965650000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000000000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f6f70732f61726974682e72730000000000000000617474656d707420746f20646976696465206279207a65726f636f6e74726f6c6c657220616c726561647920706169726564737461736820616c726561647920626f6e6465646e6f7420612073746173686e6f74206120636f6e74726f6c6c65725374616b696e6720426f6e64696e674475726174696f6e756e7374616b65207468726573686f6c6420746f6f206c617267650a09090909090909096865616420697320736574207768656e20666972737420656c656d656e7420697320696e73657274656420616e6420756e736574207768656e206c61737420656c656d656e742069732072656d6f7665643b0a09090909090909096966206865616420697320536f6d65207468656e20697420706f696e747320746f206578697374696e67206b65793b207165640a09090909090909746172676574732063616e6e6f7420626520656d707479000000cc8e10005e0000002c020000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f7374616b696e672f7372632f6c69622e7273436f756e63696c456c656374696f6e204175746f5374617274436f756e63696c456c656374696f6e204170706c6963616e745374616b6573000000000000489110000f00000000000000acf810000000000000000000000000005891100001000000000000000000000060911000110000000000000074911000010000000000000000000000acf810000000000000000000000000007c9110000f00000000000000acf81000000000000000000000000000acf810000000000000000000000000008b9110000d00000000000000acf81000000000000000000000000000acf81000000000000000000000000000989110000b00000000000000acf81000000000000000000000000000acf81000000000000000000000000000a39110001000000000000000acf81000000000000000000000000000acf81000000000000000000000000000b39110000e00000000000000acf81000000000000000000000000000acf81000000000000000000000000000c19110000e00000000000000a4b61000010000000000000000000000acf81000000000000000000000000000cf91100007000000000000001cc81000010000000000000000000000acf81000000000000000000000000000d69110000500000000000000dc911000020000000000000000000000acf81000000000000000000000000000ec9110000800000000000000f4911000030000000000000000000000acf810000000000000000000456c656374696f6e53746172746564001092100017000000416e6e6f756e63696e675374617274656400000026bc100003000000416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c65637465644170706c696564566f74656400d5e61000090000000c9210000400000052657665616c6564d5e61000090000000c92100004000000d5e6100009000000486173682041206e657720656c656374696f6e2073746172746564436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f6400000000f899100009000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000049a10000000000000000000acf8100000000000000000000100000000000000149a1000050000000000000000000000199a10001d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000389a10000000000000000000acf8100000000000000000000000000000000000489a100005000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000509a10000000000000000000acf8100000000000000000000100000000000000609a100014000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9a10000000000000000000acf8100000000000000000000100000000000000749a1000120000000100000000000000abd410000c00000000000000869a10001f00000000000000000000000000000000000000000000000000000000000000acf81000d49a10000000000000000000acf8100000000000000000000100000000000000a59a10000a000000000000000000000013f110001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9a10000000000000000000acf8100000000000000000000100000000000000af9a10000f0000000100000000000000abd410000c00000000000000be9a10001300000000000000000000000000000000000000000000000000000000000000acf81000d49a10000000000000000000acf8100000000000000000000100000000000000e49a10000b0000000000000000000000ef9a10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9a10000000000000000000acf81000000000000000000001000000000000000c9b100005000000010000000000000073bc10000700000000000000119b10004500000000000000000000000000000000000000000000000000000000000000acf81000589b10000000000000000000acf8100000000000000000000100000000000000689b100010000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000949b10000000000000000000acf8100000000000000000000100000000000000789b10000c000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000949b10000000000000000000acf8100000000000000000000100000000000000849b10000f000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000949b10000000000000000000acf8100000000000000000000100000000000000a49b10000b000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b09b10000000000000000000acf8100000000000000000000100000000000000c09b10000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000d09b10000000000000000000acf8100000000000000000000100000000000000e09b10000f0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000fc9b10000000000000000000acf81000000000000000000001000000000000000c9c10000f000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810001c9c10000000000000000000acf81000000000000000000001000000000000002c9c10000e0000000000000000000000ef9b10000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810003c9c10000000000000000000acf810000000000000000000010000004175746f53746172740000000c00000000000000010000006f0000005374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e00000c000000000000000100000010000000526f756e640000000c00000000000000010000000d0000004578697374696e675374616b65486f6c646572735472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b65735374616b653c42616c616e63654f663c543e3e0000000c00000000000000010000007d000000436f6d6d69746d656e74735665633c543a3a486173683e000c00000000000000010000000e000000566f7465735365616c6564566f74653c543a3a4163636f756e7449642c205374616b653c42616c616e63654f663c543e3e2c20543a3a486173682c20543a3a0a4163636f756e7449643e00000c00000000000000010000007e000000416e6e6f756e63696e67506572696f64566f74696e67506572696f6452657665616c696e67506572696f64000c00000000000000010000007f000000436f756e63696c53697a65000c00000000000000010000008000000043616e6469646163794c696d697400000c0000000000000001000000810000004d696e436f756e63696c5374616b6542616c616e63654f663c543e000c0000000000000001000000120000004e65775465726d4475726174696f6e000c00000000000000010000001b0000004d696e566f74696e675374616b6500000c000000000000000100000014000000436f756e63696c456c656374696f6e4f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167656d696e696d756d207374616b65206d7573742062652070726f7669646564656c656374696f6e206e6f742072756e6e696e67436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b65214f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e67207374616765766f74696e67207374616b6520746f6f206c6f77436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f776564656c656374696f6e206e6f7420696e2072657665616c696e6720737461676573616c7420746f6f206c61726765436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e436f756e63696c456c656374696f6e2043616e6469646163794c696d6974436f756e63696c456c656374696f6e20436f756e63696c53697a653fa010004f000000cc020000010000006d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f707065642f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f656c656374696f6e2e72730000000000007ca31000050000000000000084a31000010000000000000000000000acf810000000000000000000000000009ca310000400000000000000a0a31000020000000000000000000000acf81000000000000000000000000000d0a310000600000000000000d8a31000030000000000000000000000acf8100000000000000000000000000020a410001400000000000000d0c41000010000000000000000000000acf8100000000000000000000000000034a410001300000000000000d0c41000010000000000000000000000acf8100000000000000000000000000047a410001000000000000000d0c41000010000000000000000000000acf8100000000000000000000000000057a410001b0000000000000074a41000010000000000000000000000acf810000000000000000000000000008ca41000170000000000000074a41000010000000000000000000000acf81000000000000000000000000000a3a410001a0000000000000074a41000010000000000000000000000acf81000000000000000000000000000bda410001b00000000000000d8a41000010000000000000000000000acf81000000000000000000000000000f0a410001b000000000000000ca51000010000000000000000000000acf8100000000000000000000000000024a5100016000000000000003ca51000010000000000000000000000acf8100000000000000000000000000054a51000190000000000000070a51000010000000000000000000000acf8100000000000000000000000000088a510001a00000000000000d8a41000010000000000000000000000acf81000000000000000000000000000a2a510001300000000000000acf81000000000000000000000000000acf81000000000000000000000000000b5a510001400000000000000acf81000000000000000000000000000acf81000000000000000000000000000c9a510000e00000000000000d8a51000010000000000000000000000acf8100000000000000000006170706c790000000000000027a610000500000000000000ef9b10000c000000766f74650000000019a610000a0000000000000073bc1000070000000000000027a610000500000000000000ef9b10000c00000072657665616c00000000000019a610000a0000000000000073bc100007000000000000009ca310000400000000000000abd410000c0000000000000023a61000040000000000000000ea1000070000007365745f73746167655f616e6e6f756e63696e677365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f6400000000000013a61000060000000000000065bc10000e0000007365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b65000000000da610000600000000000000ef9b10000c0000007365745f706172616d5f6e65775f7465726d5f6475726174696f6e000000000005a61000080000000000000065bc10000e0000007365745f706172616d5f636f756e63696c5f73697a65000000000000f9a510000c0000000000000026bc1000030000007365745f706172616d5f63616e6469646163795f6c696d697400000000000000f4a51000050000000000000026bc1000030000007365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f73746172740000000000f0a51000040000000000000006e7100004000000666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64636f6d6d69746d656e7473616c747374616b654f6e6c7920746865206c696169736f6e20666f722074686520636f6e74656e74206d6179206d6f6469667920697473207374617475732e4f6e6c7920616374697665206d656d62657273206d61792063726561746520636f6e74656e742e43616e6e6f742063726561746520636f6e74656e7420666f7220696e616374697665206f72206d697373696e672064617461206f626a65637420747970652e446174614469726563746f727920446174614f626a6563744279436f6e74656e74496400000000c8a710000c00000000000000d4a71000020000000000000000000000acf81000000000000000000000000000e4a710000f00000000000000d4a71000020000000000000000000000acf81000000000000000000000000000f3a710000f00000000000000d4a71000020000000000000000000000acf8100000000000000000000000000002a810000d00000000000000d4a71000020000000000000000000000acf810000000000000000000000000000fa810000f00000000000000d4a71000020000000000000000000000acf810000000000000000000436f6e74656e744164646564dee6100009000000d5e6100009000000436f6e74656e744163636570746564436f6e74656e7452656a65637465644d6574616461746141646465644d65746164617461557064617465640000ccaa10001c00000020a91000600000006900000003000000a8aa10002400000020a9100060000000710000000300000055aa10003800000020a9100060000000ae0000002a0000002daa10002800000020a9100060000000af0000003200000005aa10002800000020a9100060000000b10000002c000000d9a910002c00000020a9100060000000b00000004c000000a7a910003200000020a9100060000000e50000000300000080a910002700000020a9100060000000ed00000004000000f8a810002800000020a9100060000000f30000000300000053746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f6578656375746976652f7372632f6c69622e7273446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e416c6c2065787472696e736963732073686f756c6420686176652074686520636f7272656374206e6f6e636545787472696e736963732073686f756c64206e6f742065786365656420626c6f636b206c696d6974416c6c2065787472696e736963732073686f756c642062652070726f7065726c79207369676e6564416c6c2065787472696e736963732073686f756c6420686176652073656e6465722061626c6520746f207061792074686569722066656573626c6f636b2073697a65206c696d697420697320726561636865645472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e506172656e7420686173682073686f756c642062652076616c69642e696e76616c6964206163636f756e7420696e64657800000010ab1000480000007e0a00000a0000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e7273000000004cad10000f00000000000000000000009ef010001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005cad10000000000000000000acf81000000000000000000001000000000000006cad10001500000001000000000000005cf010000c0000000000000081ad10000d00000000000000000000000000000000000000000000000000000000000000acf81000b4ad10000000000000000000acf81000000000000000000000000000000000008ead10001300000001000000000000005cf010000c00000000000000a1ad10001200000000000000000000000000000000000000000000000000000000000000acf81000b4ad10000000000000000000acf8100000000000000000000000000000000000c4ad100016000000000000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f0ad10000000000000000000acf8100000000000000000000100000000000000daad100015000000000000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f0ad10000000000000000000acf810000000000000000000010000004b6e6f776e436f6e74656e74496473000c00000000000000010000000e000000446174614f626a6563744279436f6e74656e744964446174614f626a6563743c543e4d657461646174614279436f6e74656e744964436f6e74656e744d657461646174613c543e000c00000000000000010000001000000053746f7261676550726f76696465724164647265737353746f7261676550726f76696465725265706f4964000c00000000000000010000000e000000446174614469726563746f727944617461206f626a6563742061726561647920616464656420756e646572207468697320636f6e74656e74206964446174614469726563746f7279204d657461646174614279436f6e74656e7449644f6e6c7920616374697665206d656d626572732063616e2061646420636f6e74656e74206d657461646174614d657461646174612061726561647920616464656420756e646572207468697320636f6e74656e74206964536368656d612069732072657175697265644a534f4e206973207265717569726564446174614469726563746f7279204b6e6f776e436f6e74656e744964734f6e6c7920616374697665206d656d626572732063616e2075706461746520636f6e74656e74206d657461646174614f6e6c79206f776e65722063616e2075706461746520636f6e74656e74206d657461646174614e6f206d6574616461746120666f756e6420627920636f6e74656e742069644e6f20757064617465732070726f7669646564446174614469726563746f72792053746f7261676550726f76696465725265706f4964446174614469726563746f72792053746f7261676550726f766964657241646472657373d0af10005200000092000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646174615f6469726563746f72792e727300000000000058b110000b0000000000000064b11000030000000000000000000000acf81000000000000000000000000000acb110000e00000000000000bcb11000010000000000000000000000acf81000000000000000000000000000d4b110000e00000000000000bcb11000010000000000000000000000acf81000000000000000000000000000e2b110000c00000000000000f0b11000020000000000000000000000acf8100000000000000000000000000020b210000f00000000000000f0b11000020000000000000000000000acf810000000000000000000000000002fb210001c000000000000004cb21000010000000000000000000000acf8100000000000000000000000000064b210001c0000000000000080b21000010000000000000000000000acf8100000000000000000006164645f636f6e74656e740000000000a6b210000a000000000000005cf010000c00000000000000ceb210000700000000000000d5b210002200000000000000f7b2100004000000000000004bea1000030000006163636570745f636f6e74656e74000000000000a6b210000a000000000000005cf010000c00000072656a6563745f636f6e74656e746164645f6d65746164617461000000000000a6b210000a000000000000005cf010000c00000000000000b0b210000600000000000000b6b21000180000007570646174655f6d657461646174617365745f73746f726167655f70726f76696465725f7265706f5f696400000000009fb21000070000000000000000ea1000070000007365745f73746f726167655f70726f76696465725f616464726573730000000098b21000070000000000000000ea100007000000616464726573737265706f5f6964636f6e74656e745f6964757064617465436f6e74656e744d657461646174615570646174653c543e747970655f69643c5420617320444f545254726169743e3a3a446174614f626a65637454797065496473697a6553797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e736963734c656e626164206f726967696e3a20657870656374656420746f206265206120726f6f74206f726967696e626164206f726967696e3a20657870656374656420746f2062652061207369676e6564206f726967696e3a65787472696e7369635f696e646578626164206f726967696e3a20657870656374656420746f20626520616e20696e686572656e74206f726967696e73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c6964207479706553797374656d2045787472696e7369634461746153797374656d2044696765737453797374656d2052616e646f6d5365656453797374656d204e756d62657253797374656d2045787472696e73696373526f6f7454696d657374616d70204d656469616e54696d657374616d702055706461746554696d657374616d7020526563656e7448696e747353797374656d20426c6f636b4861736853797374656d204576656e747353797374656d204163636f756e744e6f6e63650000bcb4100031000000edb4100067000000790000000400000046696e616c2068696e74206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f66696e616c6974792d747261636b65722f7372632f6c69622e72736cb5100023000000edb41000670000007a0000000400000046696e616c697a6564206865696768742061626f766520626c6f636b206e756d62657200a0b51000480000007e0a00000a0000002f72757374632f653463363661666261356436393335363837393537306165666632326462356133383536366138362f7372632f6c6962636f72652f736c6963652f6d6f642e72734765747320616e64206465636f6465732066696e616c206e756d62657220696e686572656e742064617461436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e6473417400000000000094b610001000000000000000a4b61000010000000000000000000000acf81000000000000000000000000000acb610001500000000000000a4b61000010000000000000000000000acf810000000000000000000436f756e63696c5465726d456e646564c1b610000b0000004e6577436f756e63696c5465726d53746172746564426c6f636b4e756d62657200000000f8b610000b000000000000001cc81000010000000000000000000000acf8100000000000000000004d656d6f5570646174656453797374656d20506172656e74486173682cb710001e0000004ab710005d000000ad01000003000000426c6f636b206e756d626572206d6179206e65766572206265207a65726f2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f73797374656d2f7372632f6c69622e727353797374656d00000000000000fcbb10000c0000000100000000000000abd410000c0000000000000008bc10000800000000000000000000000000000000000000000000000000000000000000acf81000b8bc1000000000000000000010bc10000100000000000000010000000000000018bc10000e000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100044bc100000000000000000002cbc10000100000000000000000000000000000034bc100010000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100044bc1000000000000000000054bc1000010000000000000000000000000000005cbc100009000000010000000000000065bc10000e0000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000acf81000f4bc100000000000000000007cbc10000100000000000000010000000000000084bc10000d000000010000000000000026bc1000030000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000acf8100088c61000000000000000000094bc1000010000000000000001000000000000009cbc10000a000000000000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4bc10000000000000000000a8bc100001000000000000000100000000000000b0bc100006000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000b8bc10000000000000000000c8bc100001000000000000000100000000000000d0bc10000a000000000000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4bc10000000000000000000dcbc100001000000000000000100000000000000e4bc10000e000000000000000000000073bc10000700000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4bc1000000000000000000004bd1000010000000000000001000000000000000cbd100006000000000000000000000012bd10000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810001cbd100000000000000000002cbd10000100000000000000010000000000000034bd10000600000000000000000000003abd10001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100054bd1000000000000000000064bd10000100000000000000010000004163636f756e744e6f6e6365543a3a496e64657883bf10001f00000045787472696e736963436f756e7475333200000055bf10002e000000416c6c45787472696e736963734c656e0c00000000000000010000001000000007bf10004e000000426c6f636b48617368543a3a426c6f636b4e756d626572543a3a486173680000e1be10002600000045787472696e7369634461746100000095be10004c00000052616e646f6d53656564000073be1000220000004e756d62657200000c00000000000000010000001c00000031be100042000000506172656e7448617368000015be10001c00000045787472696e73696373526f6f7400000c000000000000000100000082000000d0bd100045000000446967657374543a3a446967657374000c00000000000000010000000e00000094bd10003c0000004576656e74735665633c4576656e745265636f72643c543a3a4576656e743e3e0c00000000000000010000000e0000006cbd100028000000204576656e7473206465706f736974656420666f72207468652063757272656e7420626c6f636b2e20446967657374206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2045787472696e7369637320726f6f74206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2048617368206f66207468652070726576696f757320626c6f636b2e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e2052616e646f6d2073656564206f66207468652063757272656e7420626c6f636b2e2045787472696e73696373206461746120666f72207468652063757272656e7420626c6f636b20286d6170732065787472696e736963277320696e64657820746f206974732064617461292e204d6170206f6620626c6f636b206e756d6265727320746f20626c6f636b206861736865732e20546f74616c206c656e67746820696e20627974657320666f7220616c6c2065787472696e736963732070757420746f6765746865722c20666f72207468652063757272656e7420626c6f636b2e20546f74616c2065787472696e7369637320636f756e7420666f72207468652063757272656e7420626c6f636b2e2045787472696e73696373206e6f6e636520666f72206163636f756e74732e54696d657374616d7020496e697469616c697a656454696d657374616d70204f72646572656448696e747354696d657374616d702057696e646f7753697a65616c77617973206174206c65617374206f6e6520726563656e742073616d706c653b20716564726563656e7420616e64206f72646572656420636f6e7461696e207468652073616d65206974656d733b2071656400000067c0100043000000edb4100067000000b20000000400000054696d657374616d70205265706f72744c6174656e63797072756e696e672064696374617465642062792077696e646f775f73697a6520776869636820697320616c776179732073617475726174656420617420313b20716564626164207369676e617475726520696e2065787472696e73696300000000f0c010000a00000000000000fcc0100001000000000000000000000014c11000020000000000000066696e616c5f68696e740000000000007cc11000040000000000000080c110001700000024c110003d00000061c110001b0000002048696e7420746861742074686520617574686f72206f66207468697320626c6f636b207468696e6b732074686520626573742066696e616c697a656420626c6f636b2069732074686520676976656e206e756d6265722e68696e74436f6d706163743c543a3a426c6f636b4e756d6265723e000000000060c210000d00000000000000000000006dc210002100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100090c210000000000000000000acf8100000000000000000000100000000000000a0c210000a000000000000000000000065bc10000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000acc210000000000000000000acf81000000000000000000001000000416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e00000c00000000000000010000000e0000005465726d456e6473417400000c00000000000000010000000f000000436f756e63696c63616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f720030c310004e00000041000000010000006d757374207365742066757475726520626c6f636b206e756d6265722f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f676f7665726e616e63652f636f756e63696c2e727300000000000030c410000b000000000000003cc4100001000000000000000000000054c410000100000000000000000000005cc41000120000000000000070c4100001000000000000000000000088c4100001000000000000000000000090c410001500000000000000a8c41000010000000000000000000000acf81000000000000000000000000000c0c410001000000000000000d0c41000010000000000000000000000e8c4100001000000000000007365745f636f756e63696c0000000000b3c51000080000000000000013f11000110000005cc51000570000006164645f636f756e63696c5f6d656d62657200000000000055c510000700000000000000abd410000c00000033c510002200000072656d6f76655f636f756e63696c5f6d656d6265720000000000000022c510001100000000000000abd410000c0000007365745f7465726d5f656e64735f6174000000001bc51000070000000000000065bc10000e000000f0c410002b0000002053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e64656e64735f61746163636f756e745f746f5f72656d6f766520416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e7473000000000084c61000040000000100000000000000abd410000c0000000000000000ea10000700000000000000000000000000000000000000000000000000000000000000acf8100088c610000000000000000000acf810000000000000000000010000000000000098c610000d000000000000000000000026bc10000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000a8c610000000000000000000acf810000000000000000000010000004d656d6f0c00000000000000010000000e0000004d61784d656d6f4c656e6774680000000c0000000000000001000000830000004d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f000000000028c710000b0000000000000034c71000010000000000000000000000acf8100000000000000000007570646174655f6d656d6f00000000004cc71000040000000000000000ea1000070000006d656d6f54696d657374616d70204469645570646174650000000000e8c710000a00000000000000f4c7100002000000000000000000000004c810000100000000000000000000000cc810000d000000000000001cc8100001000000000000000000000024c810000100000000000000000000002cc81000080000000000000034c8100004000000000000000000000054c8100001000000000000004e65774163636f756e740000d5e610000900000088c8100007000000a6c810001b0000005265617065644163636f756e74000000d5e61000090000008fc81000170000005472616e73666572d5e6100009000000d5e610000900000088c810000700000088c81000070000005cc810002c000000205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e42616c616e636520416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e62656e6566696369617279206163636f756e74206d757374207072652d6578697374746f6f2066657720667265652066756e647320696e206163636f756e747061796d656e7420776f756c64206b696c6c206163636f756e74000034c910002b0000005fc9100060000000f10000000400000054696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b2f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f74696d657374616d702f7372632f6c69622e727300d8c91000300000005fc9100060000000db0000000400000054696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b20ca10004e0000005fc9100060000000dc0000000400000054696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c4d696e696d756d506572696f643e206265747765656e2073657175656e7469616c20626c6f636b7354696d657374616d70204e6f7754696d657374616d7020426c6f636b506572696f6454696d657374616d70204d696e696d756d506572696f6442616c616e63657320546f74616c49737375616e636542616c616e636573204578697374656e7469616c4465706f73697442616c616e636573205472616e73616374696f6e4261736546656542616c616e636573205472616e73616374696f6e4279746546656542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e636554696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e7420646174610000000000e0cb10000800000000000000e8cb100002000000000000000000000018cc100008000000000000000000000058cc10000b0000000000000064cc1000030000000000000000000000accc100008000000000000007472616e736665720000000000d01000040000000000000046ce1000230000000000000004d0100005000000000000006dce10001300000088ce100036000000acf8100000000000bece10004200000000cf10004800000048cf1000450000008dcf10002d000000acf8100000000000bacf1000460000007365745f62616c616e6365000000000043ce1000030000000000000046ce1000230000000000000069ce100004000000000000006dce1000130000000000000080ce100008000000000000006dce100013000000eccc100025000000acf810000000000011cd10004000000051cd10004600000097cd100049000000e0cd100036000000acf810000000000016ce10002d00000020536574207468652062616c616e636573206f66206120676976656e206163636f756e742e20546869732077696c6c20616c74657220604672656542616c616e63656020616e642060526573657276656442616c616e63656020696e2073746f726167652e20496620746865206e65772066726565206f722072657365727665642062616c616e63652069732062656c6f7720746865206578697374656e7469616c206465706f7369742c2069742077696c6c20616c736f2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d202860546f74616c49737375616e6365602920616e6420726573657420746865206163636f756e74206e6f6e636520286073797374656d3a3a4163636f756e744e6f6e636560292e20546865206469737061746368206f726967696e20666f7220746869732063616c6c2069732060726f6f74602e77686f3c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f7572636566726565436f6d706163743c543a3a42616c616e63653e7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572206163636f756e742e20607472616e73666572602077696c6c207365742074686520604672656542616c616e636560206f66207468652073656e64657220616e642072656365697665722e2049742077696c6c2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d2062792074686520605472616e73666572466565602e204966207468652073656e6465722773206163636f756e742069732062656c6f7720746865206578697374656e7469616c206465706f736974206173206120726573756c74206f6620746865207472616e736665722c20746865206163636f756e742077696c6c206265207265617065642e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d75737420626520605369676e65646020627920746865207472616e736163746f722e6465737476616c756542616c616e636573204c6f636b7342616c616e636573000000000008d410000d000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000020d410000100000000000000010000000000000028d4100012000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d5100000000000000000003cd410000100000000000000010000000000000044d410000b000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000050d410000100000000000000010000000000000058d410000b000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000064d41000010000000000000001000000000000006cd4100012000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000080d410000100000000000000010000000000000088d4100012000000000000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100050d5100000000000000000009cd4100001000000000000000100000000000000a4d41000070000000100000000000000abd410000c00000000000000b7d410001b00000000000000000000000000000000000000000000000000000000000000acf810005ce010000000000000000000d4d4100001000000000000000000000000000000dcd410000b0000000100000000000000abd410000c0000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000acf8100050d510000000000000000000e8d410000b00000000000000010000000000000040d510000f0000000100000000000000abd410000c0000000000000015d410000a00000000000000000000000000000000000000000000000000000000000000acf8100050d51000000000000000000060d510000b000000000000000100000000000000b8d51000050000000100000000000000abd410000c00000000000000bdd510002c00000000000000000000000000000000000000000000000000000000000000acf81000ecd510000000000000000000fcd51000010000000000000001000000546f74616c49737375616e6365543a3a42616c616e63650028dc1000260000004578697374656e7469616c4465706f7369740000f3db1000350000005472616e7366657246656500cedb1000250000004372656174696f6e46656500a7db1000270000005472616e73616374696f6e42617365466565000070db1000370000005472616e73616374696f6e4279746546656500002ddb10004300000056657374696e67543a3a4163636f756e74496456657374696e675363686564756c653c543a3a42616c616e63653e0000f7da1000360000004672656542616c616e6365007dd8100027000000acf8100000000000a4d8100050000000f4d810005d00000051d9100055000000a6d910004f000000f5d910005100000046da100015000000acf81000000000005bda100057000000b2da100045000000526573657276656442616c616e6365000c00000000000000010000007800000032d610005d0000008fd6100027000000acf8100000000000b6d610005b00000011d7100049000000acf81000000000005ad710005d000000b7d710002d000000acf8100000000000e4d710005300000037d81000460000004c6f636b735665633c42616c616e63654c6f636b3c543a3a42616c616e63652c20543a3a426c6f636b4e756d6265723e3e0000000c00000000000000010000000e00000004d610002e00000020416e79206c6971756964697479206c6f636b73206f6e20736f6d65206163636f756e742062616c616e6365732e2054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e2920546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420616c6f6e65206973207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865722c2074686520604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e2075702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420726571756972656420746f206b65657020616e206163636f756e74206f70656e2e2054686520746f74616c20756e6974732069737375656420696e207468652073797374656d2e76657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c75656163636f756e74206c6971756964697479207265737472696374696f6e732070726576656e74207769746864726177616c42616c616e6365732056657374696e6700000000000000e4dc10000300000000000000e8dc100001000000000000000000000000dd1000080000000000000073657400000000007bde100003000000000000007ede10001200000040dd100016000000acf810000000000056dd10005d000000b3dd10002f000000acf8100000000000e2dd100063000000acf810000000000045de10003600000020536574207468652063757272656e742074696d652e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e742073706563696669656420627920606d696e696d756d5f706572696f64602e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d7573742062652060496e686572656e74602e6e6f77436f6d706163743c543a3a4d6f6d656e743e54696d657374616d70000000000000002ce010000300000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100038e01000000000000000000048e010000100000000000000010000000000000050e010000b00000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf810005ce0100000000000000000006ce010000100000000000000000000000000000074e010000d00000000000000000000002fe010000900000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100084e01000000000000000000094e0100004000000000000000100000000000000b4e0100009000000000000000000000006e710000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000c0e010000000000000000000d0e010000100000000000000010000004e6f77543a3a4d6f6d656e740c00000000000000010000001c0000007fe2100024000000426c6f636b506572696f64000c0000000000000001000000100000002ee21000510000004d696e696d756d506572696f640000000c00000000000000010000008400000005e110005a0000005fe110005a000000b9e110005900000012e210001c0000004469645570646174650000000c000000000000000100000010000000d8e010002d00000020446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f20546865206d696e696d756d20706572696f64206265747765656e20626c6f636b732e204265776172652074686174207468697320697320646966666572656e7420746f20746865202a65787065637465642a20706572696f6420746861742074686520626c6f636b2070726f64756374696f6e206170706172617475732070726f76696465732e20596f75722063686f73656e20636f6e73656e7375732073797374656d2077696c6c2067656e6572616c6c7920776f726b2077697468207468697320746f2064657465726d696e6520612073656e7369626c6520626c6f636b2074696d652e20652e672e20466f7220417572612c2069742077696c6c20626520646f75626c65207468697320706572696f64206f6e2064656661756c742073657474696e67732e204f6c642073746f72616765206974656d2070726f766964656420666f7220636f6d7061746962696c6974792e2052656d6f766520616674657220616c6c206e6574776f726b732075706772616465642e2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e6e6f7420656e6f75676820667265652066756e6473d0e2100028000000f8e2100025000000cb09000023000000696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64657372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6d61702e727342616c616e636573204372656174696f6e46656542616c616e636573205472616e7366657246656564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c756576616c756520746f6f206c6f7720746f20637265617465206163636f756e7462616c616e636520746f6f206c6f7720746f2073656e642076616c7565676f74206f766572666c6f7720616674657220616464696e6720612066656520746f2076616c75650000e8e310005f00000069010000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f62616c616e6365732f7372632f6c69622e727366696e616c6e756d46696e616c697a6564206e756d62657220696e686572656e742064617461206e6f7420666f756e643a617574683a6c656e3a636f6465436f6e74656e7420776974682074686973204944206e6f7420666f756e642e4e6f2064617461206f626a6563742073746f726167652072656c6174696f6e7368697020666f756e6420666f7220746869732049442e4f6e6c792073746f726167652070726f7669646572732063616e206372656174652064617461206f626a6563742073746f726167652072656c6174696f6e73686970732e4f6e6c79207468652073746f726167652070726f766964657220696e206120444f53522063616e20646563696465207768657468657220746865792772652072656164792e000000000014e61000220000000000000038e61000030000000000000000000000acf8100000000000000000000000000050e6100029000000000000007ce61000020000000000000000000000acf810000000000000000000000000008ce610001b00000000000000a8e61000020000000000000000000000acf81000000000000000000000000000b8e610001d00000000000000a8e61000020000000000000000000000acf810000000000000000000446174614f626a65637453746f7261676552656c6174696f6e7368697041646465640000e7e610001f000000dee6100009000000d5e6100009000000446174614f626a65637453746f7261676552656c6174696f6e73686970526561647955706461746564000000e7e610001f00000006e710000400000053746f7261676550726f76696465724164646564436f6e74656e7400d5e6100009000000dee610000900000053746f7261676550726f766964657252656d6f766564436f6e74656e744163636f756e744964436f6e74656e744964446174614f626a65637453746f7261676552656c6174696f6e736869704964626f6f6c436f6e73656e737573204f726967696e616c417574686f72697469657300000000005ce81000120000000000000070e8100001000000000000000000000088e8100001000000000000000000000090e810000c000000000000009ce81000010000000000000000000000b4e81000010000000000000000000000bce810000600000000000000c4e81000010000000000000000000000dce81000010000000000000000000000e4e810000e00000000000000f4e810000100000000000000000000000ce9100001000000000000000000000014e9100008000000000000001ce9100001000000000000000000000034e910000100000000000000000000003ce910000b0000000000000048e9100001000000000000000000000060e9100001000000000000000000000068e910000c0000000000000074e910000100000000000000000000008ce9100001000000000000007265706f72745f6d69736265686176696f7200000000000021eb1000070000000000000000ea10000700000008eb1000190000006e6f74655f6f66666c696e6500000000c4ea10000700000000000000cbea10003d00000070ea10005400000072656d61726b00000000000069ea1000070000000000000000ea1000070000004eea10001b0000007365745f686561705f706167657300000000000046ea100005000000000000004bea10000300000007ea10003f0000007365745f636f646500000000fde91000030000000000000000ea100007000000ebe91000120000007365745f73746f726167650000000000d9e910000500000000000000dee910000d000000bee910001b0000006b696c6c5f73746f7261676500000000b2e910000400000000000000b6e910000800000094e910001e000000204b696c6c20736f6d65206974656d732066726f6d2073746f726167652e6b6579735665633c4b65793e2053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e6e65775665633c75383e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573753634204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b204e6f74652074686174207468652070726576696f757320626c6f636b27732076616c696461746f72206d697373656420697473206f70706f7274756e69747920746f2070726f706f7365206120626c6f636b2e6f66666c696e653c543a3a496e686572656e744f66666c696e655265706f727420617320496e686572656e744f66666c696e655265706f72743e3a3a496e686572656e74205265706f727420736f6d65206d69736265686176696f722e5f7265706f7274436f6e73656e7375730000000000000098eb1000130000000000000000000000abeb10001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100034f010000000000000000000acf810000000000000000000000000004f726967696e616c417574686f7269746965735665633c543a3a53657373696f6e4b65793e3a6865617070616765730072ec10002300000048ec10002a000000e8eb1000600000001a010000010000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f73726d6c2f636f6e73656e7375732f7372632f6c69622e7273696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64653a205f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e446174614f626a65637453746f7261676552656769737472792052656c6174696f6e7368697073446174614f626a65637453746f7261676552656769737472792052656c6174696f6e73686970734279436f6e74656e744964000000000000acef1000130000000000000000000000bfef10002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4ef10000000000000000000acf8100000000000000000000100000000000000e1ef1000120000000000000000000000bfef10002200000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf81000f4ef10000000000000000000acf810000000000000000000010000000000000004f010000d0000000100000000000000bfef1000220000000000000011f010002000000000000000000000000000000000000000000000000000000000000000acf8100034f010000000000000000000acf810000000000000000000000000000000000044f010001800000001000000000000005cf010000c0000000000000068f010002700000000000000000000000000000000000000000000000000000000000000acf8100024f110000000000000000000acf81000000000000000000001000000000000008ff010000f00000000000000000000009ef010001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000acf8100024f110000000000000000000acf8100000000000000000000100000000000000aff010001c0000000100000000000000cbf010001c0000000000000006e710000400000000000000000000000000000000000000000000000000000000000000acf81000e8f010000000000000000000acf8100000000000000000000100000000000000f8f010001b00000001000000000000005cf010000c0000000000000013f110001100000000000000000000000000000000000000000000000000000000000000acf8100024f110000000000000000000acf81000000000000000000001000000466972737452656c6174696f6e736869704964543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049644e65787452656c6174696f6e736869704964000c00000000000000010000000f00000052656c6174696f6e7368697073446174614f626a65637453746f7261676552656c6174696f6e736869703c543e0000000c00000000000000010000001000000052656c6174696f6e73686970734279436f6e74656e744964543a3a436f6e74656e7449645665633c543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049643e5265616479436f6e74656e744964735665633c543a3a436f6e74656e7449643e53746f7261676550726f7669646572536572766573436f6e74656e7428543a3a4163636f756e7449642c20543a3a436f6e74656e74496429000c00000000000000010000001000000053746f7261676550726f7669646572734279436f6e74656e7449645665633c543a3a4163636f756e7449643e0c00000000000000010000000e000000446174614f626a65637453746f726167655265676973747279446174614f626a65637453746f726167655265676973747279204e65787452656c6174696f6e7368697049640000008cf11000600000007b000000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f73746f726167652f646174615f6f626a6563745f73746f726167655f72656769737472792e72730000000070f21000100000000000000080f21000010000000000000000000000acf8100000000000000000000000000098f210001600000000000000b0f21000010000000000000000000000acf81000000000000000000000000000c8f210001800000000000000b0f21000010000000000000000000000acf8100000000000000000006164645f72656c6174696f6e7368697000000000e2f2100003000000000000005cf010000c0000007365745f72656c6174696f6e736869705f7265616479000000000000e0f210000200000000000000bfef100022000000756e7365745f72656c6174696f6e736869705f726561647969646369646f66666c72657030496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b207165644e6f20606f66666c696e655f7265706f72746020666f756e6420696e2074686520696e686572656e7420646174612116f410000d000000fbf310001b000000bcf310003f0000006f010000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f7372632f6c69622e727342616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b002cf4100010000000696e697469616c697a655f626c6f636b44f410000f0000006170706c795f65787472696e736963005cf4100013000000696e686572656e745f65787472696e736963730078f410000f000000636865636b5f696e686572656e74730090f410001400000076616c69646174655f7472616e73616374696f6eacf410000f0000006f6666636861696e5f776f726b657200c4f41000160000006772616e6470615f70656e64696e675f6368616e67650000e4f41000150000006772616e6470615f666f726365645f6368616e676561757261736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214175726120696e686572656e742064617461206e6f7420666f756e6474696d7374617030496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e54696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e4578706c69636974207265706f7274696e67206e6f7420616c6c6f7765640000000000000018f610001000000000000000acf8100000000000000000000000000028f6100001000000000000000000000030f610000f00000000000000acf8100000000000000000000000000040f61000010000000000000045787472696e736963537563636573735df610002500000045787472696e7369634661696c65640048f610001500000020416e2065787472696e736963206661696c65642e20416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e0000000000000000000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e727390f6100019000000b0f610006c000000550000002200000048617368206e6f7420657175616c000060f710001900000080f7100064000000140100002a00000000000000617474656d707420746f20646976696465206279207a65726f000000000000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d323165396539323637393439613839642f366466633365382f636f72652f73722d7072696d6974697665732f7372632f6c69622e7273fcf710002d00000029f810000c00000035f8100003000000617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a2052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e67000074f810001100000085f8100017000000ea020000050000006361706163697479206f766572666c6f777372632f6c6962616c6c6f632f7261775f7665632e7273bcf8100020000000dcf81000120000000c000000000000000100000085000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839390000f0f9100006000000f6f9100022000000d8f9100018000000000a0000050000007372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e6774682038fa1000160000004efa10000d000000d8f9100018000000060a000005000000736c69636520696e64657820737461727473206174202062757420656e6473206174206030785b2e2e2e5d0022fb10000b0000009a0d1100160000005bfa1000010000000cfb100016000000da07000009000000780d11000e000000860d1100040000008a0d1100100000005bfa1000010000000cfb100016000000de07000005000000380d11002b000000630d110015000000590100001500000022fb10000b0000002dfb10002600000053fb1000080000005bfb1000060000005bfa1000010000000cfb100016000000eb070000050000007372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f662060000000a6fb10000200000090fb100016000000540400001100000090fb1000160000004804000028000000000000007372632f6c6962636f72652f666d742f6d6f642e72732e2e00010305050606030706080809110a1c0b190c140d120e160f0410031212130916011705180219031a071c021d011f1620032b062c022d0b2e01300331023202a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f1838586898b8c98a0a4a6a8a9acbabebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f74759697c9ff2f5f262e2fa7afb7bfc7cfd7df9a409798308f1fffceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100856070207150d500443032d03010411060f0c3a041d250d064c206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082a0682ff1118082f112d032010210f808c048297190b158894052f053b07020e180980af31740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880ba3d35040a06380846080c06740b1e035a0459098083181c0a1609460a808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0006010103010402080809020a050b0210011104120513111402150217021a021c051d0824016a036b02bc02d102d40cd509d602d702da01e005e802ee20f004f9040c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1c848509379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a2225c5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d03f71727b5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a80a64e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b5f2148080a80a65e22450b0a060d1338080a362c041080c03c64530c0181004808531d398107460a1d03474937030e080a0639070a8136198107839a66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b65450b2f101140021e97f20e82f3a50d811f51818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b87d580d7294b050a0402831144814b3c06010455051b3402810e2c04640c560a0d035c043d391d0d2c040907020e06809a83d50b0d030a06740c59270c0438080a0628081e520c046703290d0a06030d30600e8592000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000f8030000000000000000000000000000000000000000000000000000000000000000feffffffffbfb6000000000000000000ff070000000000f8ffff0000010000000000000000000000c09f9f3d0000000002000000ffffff0700000000000000000000c0ff01000000000000f80f20300711004a0000008009110000020000800b11003700000000010203040506070809080a0b0c0d0e0f10111213140215161718191a1b1c1d1e1f2002020202020202020202210202020202020202020202020202222324252602270228020202292a2b022c2d2e2f300202310202023202020202020202023302023402020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023502360237020202020202020238023902020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202023a3b3c020202023d02023e3f4041424344454602020247020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202024802020202020202020202024902020202023b0200010202020203020202020402050602020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202070202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202100711002000000027000000190000001007110020000000280000002000000010071100200000002a0000001900000010071100200000002b0000001800000010071100200000002c0000002000000000000000000000007372632f6c6962636f72652f756e69636f64652f626f6f6c5f747269652e72730000c0fbef3e00000000000e0000000000000000000000000000f8fffbffffff0700000000000014fe21fe000c00000002000000000000501e2080000c00004006000000000000108639020000002300be2100000c0000fc02000000000000d01e20c0000c0000000400000000000040012080000000000011000000000000c0c13d60000c0000000200000000000090443060000c00000003000000000000581e2080000c00000000845c8000000000000000000000f207807f000000000000000000000000f21b003f000000000000000000030000a002000000000000fe7fdfe0fffeffffff1f40000000000000000000000000e0fd66000000c301001e006420002000000000000000e00000000000001c0000001c0000000c0000000c00000000000000b03f40fe0f200000000000380000000000006000000000020000000000008701040e00008009000000000000407fe51ff89f000000000000ff7f0f0000000000d0170400000000f80f00030000003c3b00000000000040a303000000000000f0cf000000f7fffd211003fffffffffffffffb00100000000000000000ffffffff01000000000000800300000000000000008000000000ffffffff0000000000fc00000000000600000000000000000080f73f000000c0000000000000000000000300440800006000000030000000ffff038000000000c03f000080ff030000000000070000000000c813000000002000000000000000007e660008100000000000100000000000009dc1020000000030400000000000202100000000004000000000ffff0000ffff00000000000000000001000000020003000000000000000000000000000000000000000000000000000004000005000000000000000006000000000000000007000008090a000b0c0d0e0f000010111200001314151600001718191a1b001c0000001d000000000000001e1f20000000000021002200232425000000002600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027280000000000000000000000000000000000290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000000000000000002b2c00002d0000000000000000000000000000000000000000000000000000000000002e2f300000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000320033000000000000000000000000000000000000000000000000000034350000353535360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000000000000000000c0076ef0000000000087000000006000000000000000f0000000c0ff01000000000002000000000000ff7f0000000000008003000000000078060700000080ef1f000000000000000800030000000000c07f001e000000000000000000000080d34000000080f8070000030000000000005801008000c01f1f0000000000000000ff5c00004000000000000000000000f9a50d000000000000000000000000803cb00100003000000000000000000000f8a70100000000000000000000000028bf00000000e0bc0f0000000000000080ff06fe0700000000f87980007e0e0000000000fc7f03000000000000000000007fbf0000fcfffffc6d000000000000007eb4bf000000000000000000a3000000000000000000000018000000000000001f000000000000007f000080070000000000000000600000000000000000a0c307f8e70f0000003c00001c00000000000000ffffffffffff7ff8ffffffffff1f2000100000f8feff00007ffffff9db07000000007f0000000000f00700000000000000000000ffffffffffffffffffffffffffffffffffff000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75657372632f6c6962636f72652f6f7074696f6e2e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f662060acf8100000000000630d1100150000000a0400000500000000df9902046e616d6501d69902fe0200146578745f6765745f73746f726167655f696e746f010f6578745f7365745f73746f72616765020c6578745f74776f785f31323803116578745f636c6561725f73746f72616765040e6578745f626c616b65325f32353605106578745f73746f726167655f726f6f7406186578745f73746f726167655f6368616e6765735f726f6f7407126578745f737232353531395f76657269667908126578745f656432353531395f766572696679090e6578745f7072696e745f757466380a0d6578745f7072696e745f6865780b236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f740c0d6578745f7072696e745f6e756d0d0a6578745f6d616c6c6f630e086578745f667265650f48616c6c6f633a3a7261775f7665633a3a5261775665633c542c413e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303535653861326231623234343232611034616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a6838313537643033656331336437373634114e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831663436396133616531633539373333125d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6865633164633230303566346431663132130c5f5f727573745f616c6c6f631408727573745f6f6f6d150e5f5f727573745f7265616c6c6f63160e5f5f727573745f6465616c6c6f63173d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a683934363839396565653665623634326118633c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6866373338663732363337313438623665194e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68323333303466343330353664653139301a5d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68396239316661383666336366666164341b135f5f727573745f616c6c6f635f7a65726f65641c36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68316631643830336365653262653666311d4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343130626665633866313937613634661e4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68343137646431366135643963323734311f4e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835373536333266303365313439393664204e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835383061333664323630613639343137214e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835396437326330376663643633636563228d023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f6720617320636f72653a3a636f6e766572743a3a46726f6d3c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c7072696d69746976655f74797065733a3a483235362c3c7375627374726174655f7072696d6974697665733a3a656432353531393a3a5369676e61747572652061732073725f7072696d6974697665733a3a7472616974733a3a5665726966793e3a3a5369676e65722c7375627374726174655f7072696d6974697665733a3a656432353531393a3a5369676e61747572653e3e3e3a3a66726f6d3a3a6836646362616233666264393637363235234e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6836396432393734646537313963643137244e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839653661363366396363386538633463254e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6865636165363733613133656330633861264e3c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a686639643830366565383162353165333527513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a683062623864646130653931353335653428463c753332206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6832353531346334363332636462616432292e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a68653538366233356666346134333038302a663c636f72653a3a697465723a3a61646170746572733a3a46696c7465723c492c503e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a68303766383161313762656431643863312b513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a68386363306232623966663362636330342c6b3c73726d6c5f6772616e6470613a3a53746f72656450656e64696e674368616e67653c4e2c53657373696f6e4b65793e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68313437303939653338656637373338312d3d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68306331636438346335326263313364372e3a73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68373537313931316531626133626133612f3b73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a7363686564756c655f6368616e67653a3a6835363063643164313862653932393936303f73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6831623933306536393661353238626566314473726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68666237633337343631656138656463613230636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6830313430666264663339323732626666333a73726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6834366564306262336666666165393839343f73726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6834343533306634616662616263373339354473726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683162333332353434643462616435626636303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6833323639613736306431653239356435373d636f72653a3a756e69636f64653a3a626f6f6c5f747269653a3a426f6f6c547269653a3a6c6f6f6b75703a3a68633131373138663466376165383934323829636f72653a3a70616e69636b696e673a3a70616e69633a3a68343263613161376231326230623332613934636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68393761316539323166343165393866313a8001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a68373364636539633432653165343639613b2e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a68343332643063323666616438613536333c303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a68356137333665376538313163643931623d2f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a68333165646230313165363966393665633e35636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a68323961343164376131663765643662373f303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683636366338636636343033636434343440303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6863316363353933663838346332386237415b3c73726d6c5f696e64696365733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a5374617469634c6f6f6b75703e3a3a6c6f6f6b75703a3a68316562373931326165613836326363664234636f72653a3a736c6963653a3a3c696d706c205b545d3e3a3a636f6e7461696e733a3a686266366363343461636637616363623343423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6866343935306536633131383961666632445c3c73726d6c5f696e64696365733a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a686530366133353564663637323938323745323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6838313939313133386233646537653134462d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a683631326165386430343236333563393147626a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646f776e6c6f6164733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6833336539636139333439326164343464485d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646f776e6c6f6164733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a686461663061323861346166613761363049586a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646f776e6c6f6164733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68363338326264356164333636393864624ad2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f494d504c5f454e434f44455f464f525f50726f706f73616c5374617475733a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c5374617475733e3a3a656e636f64655f746f3a3a68336461306130313430306239616461644b3d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68643861333064306434326538616230384c656a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68316465616337643863656535643463314d8e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68653832386163386336643536323762304e8b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68656234303932343432393361326464304f90013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68373066613166373264663361333932325093013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838666431376563396232363461343938518c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865323066353762663033643364626334528e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861383138383131646238323430313631538e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68313562343066356663303435643063325491013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830626661393266633736313861343063558a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623031633634353164373165363939665690013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686136363830313264643638633236323757606a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6865336238613639613634356139353637585a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f70726f636573735f766f74653a3a68383935356265393339626230353666385981023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f746573427950726f706f73616c3c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c616c6c6f633a3a7665633a3a5665633c283c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a566f74654b696e64293e3e3e3a3a6765743a3a68303837633464313338663033623164645a3873726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6576656e743a3a68653830356161336663343137633439345bd6033c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a50726f706f73616c733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c7533322c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a63757272656e63793a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63652c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265722c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173683e3e3e3a3a6765743a3a68313433313863643230373164336131645c646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a68366364346666653065323966303036355d91013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a68373632663337656366643032393839325e653c73726d6c5f62616c616e6365733a3a696d62616c616e6365733a3a4e65676174697665496d62616c616e63653c542c493e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68663363346238613761656432383363315f8c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a6861353566336633396138646635353436606c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a7075743a3a6861353965393333666133663135636266615b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862633230363239333435626434356464623a73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865376563623830623535393266303138633f73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6864383230363063363161643262326166644473726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a683131333132376236303734373433633965716a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a656e737572655f646174615f6f626a6563745f747970653a3a683362313931663037666566363937383966726a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6834363366346264323536356132626535676d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a683562363565636335343966626434633568483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a683065353636613562613766336439636269686a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68396233393230393762653364653337646a4a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a68303137383462633765666634363538316b39636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a68346266343164386532346666326265626c4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a68303631346536396366613637333762356d4c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a68643664303734353339386362323434376e4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a68393136306335313031336136633663356f4b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a683535623066663233303264356135393970486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6865393764663365623335653363356536714b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6772616e6470613a3a6837663531636264376632383865646466724d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6838366237373334303836663633613530734c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6830393838613963323936386365643463744b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a683866643861623335323937353036353375486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a6866393431333362323930366263343730764b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d626572733a3a6863633435346130323138396431366562774d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d6967726174696f6e3a3a6831353236633839646334343963653033784a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6163746f72733a3a6834386435313061323661313165653133795d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f747970655f72656769737472793a3a68666466623664333633666537336261327a526a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6469726563746f72793a3a68396538646132646533613130653162617b606a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f73746f726167655f72656769737472793a3a68646265393731366662343265373231327c4d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646f776e6c6f6164733a3a68623630313666346265396665373736317d573c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f67206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a68343733383830343963373463363064397e89013c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d5265663c486173682c417574686f7269747949642c5365616c5369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a68623261666566323665363964383936307f8f016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f4445434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a6465636f64653a3a6831613936386561326532333165333964800192016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f494d504c5f454e434f44455f464f525f4576656e743a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68656462376566313635333635396134368101633c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68346436306531623261656366663236658201753c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a686330623938303365666635636565353183016e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a746f67676c655f646f73725f72656164793a3a683264353965336263376136376231396684017c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a683566333033623366363764613564656385015c3c73726d6c5f7374616b696e673a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a686137313538386630366263613637646386013f73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f667265655f62616c616e63653a3a683264313235633064303430373264626687014373726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f72657365727665645f62616c616e63653a3a6838376263383634373164633935343635880186013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a68626537626565366333613931323131398901576a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a69735f636f756e63696c6f723a3a68336665336333323163396364373665308a01ec023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a52656c6174696f6e73686970734279436f6e74656e7449643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a54726169743e3a3a436f6e74656e7449642c616c6c6f633a3a7665633a3a5665633c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a54726169743e3a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049643e3e3e3a3a6765743a3a68636130363134326261656139633732658b016a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a72656c6174696f6e73686970733a3a68336633303963386133363764636633378c01da013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163746f7242794163636f756e7449643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163746f723c543e3e3e3a3a6765743a3a68646330303562393932633336383335398d019c023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a446174614f626a6563744279436f6e74656e7449643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a54726169743e3a3a436f6e74656e7449642c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a446174614f626a6563743c543e3e3e3a3a6765743a3a68326334663565656261656530383463658e0185013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68373437336335326664666238623831338f018b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a7472616974733a3a4d656d626572733c543e3e3a3a69735f6163746976655f6d656d6265723a3a6861383364336136386163633137646130900130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a683431616635393531636265336134613691015b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a656e737572655f69735f6d656d6265723a3a68646431343731653036636339393461669201676a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a7570646174655f636f6e74656e745f6a756467656d656e743a3a6839396232666434343733616439346134930130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a68623734626530316566626433313933669401f7013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4163636f756e74496442794d656d62657249643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a54726169743e3a3a4d656d62657249642c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a68386630653366336433353836396537659501606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f6176617461723a3a68643933626439313137353231383466669601606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f68616e646c653a3a68633862656664373238383836373666359701646a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f61626f75745f746578743a3a68366432613965653437383334376165369801423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68633066626638363531386266356331369901483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a68646431323730326664306434346361629a01e7013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163636f756e744964734279526f6c653c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c652c616c6c6f633a3a7665633a3a5665633c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a68666531633830343430353464663634339b01676a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a636865636b5f757365725f726567697374726174696f6e5f696e666f3a3a68396161663562366530373961373664359c013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68613165333962333732393661653063339d018a013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a68393834393963656336623130376238349e01713c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a43616c6c3c543e2061732073726d6c5f737570706f72743a3a64697370617463683a3a446973706174636861626c653e3a3a64697370617463683a3a68656561316135323238616264356232349f01586a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a696e736572745f6d656d6265723a3a6838333533313630333932393730333037a00182013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f736c6173683a3a6835353333343761653135376165303233a1017e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a6839393364316232373331666330393936a2016c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a7075743a3a6866653261323765633561656265393462a3018c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f63616e5f77697468647261773a3a6837373763633931653266383234646330a401e8023c73726d6c5f7374616b696e673a3a4c65646765723c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c73726d6c5f7374616b696e673a3a5374616b696e674c65646765723c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c3c542061732073726d6c5f7374616b696e673a3a54726169743e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63652c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3e3a3a6765743a3a6835313832643832356662616235623665a5015e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6830343537623130366464396131313263a6013373726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7374616b6572733a3a6830363033633738633339666437333664a701483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a72656d6f76653a3a6836316533383735393831326461376531a80136636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a6863313439646433653066633666633739a90130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6864656663303837653633373562633064aa01583c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839353861343765656263383665303939ab01723c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831346639386239323534313462316431ac015e3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c753132383e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6835373166376565346339343730666463ad01bf016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f494d504c5f4445434f44455f464f525f55736572496e666f3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a55736572496e666f3e3a3a6465636f64653a3a6862323966383163343839363031613433ae015d3c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7536343e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6864316461656135663930643130326331af01e4016a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a5f494d504c5f4445434f44455f464f525f436f6e74656e744d657461646174615570646174653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a436f6e74656e744d657461646174615570646174653c543e3e3a3a6465636f64653a3a6836373766323663383463613438346535b0015b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839393565633365353835383437373761b101633c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c7536343e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6832663962376431643765323263653838b201753c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835663333393938663464356135626162b301643c7061726974795f636f6465633a3a636f6465633a3a436f6d706163745265663c753132383e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834336633316464666330666138336537b40192043c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d65206173207375627374726174655f636c69656e743a3a72756e74696d655f6170693a3a72756e74696d655f6465636c5f666f725f436f72653a3a436f72653c73725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c7536342c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a4c6f673e2c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c3c73726d6c5f696e64696365733a3a4d6f64756c653c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653e2061732073725f7072696d6974697665733a3a7472616974733a3a5374617469634c6f6f6b75703e3a3a536f757263652c7536342c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2c73725f7072696d6974697665733a3a416e795369676e61747572653e3e3e3e3a3a617574686f7269746965733a3a6865623339316537616434623561336665b5015d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6835663065303736333266633934653737b60189013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f5f47657442797465537472756374526571756573744c69666554696d653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865623434353835373364383233346236b701586a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6863363461663032393964363365633663b8016c3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a7075743a3a6864396137383164383031663865383762b901e4013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a506172616d65746572733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c652c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c65506172616d65746572733c543e3e3e3a3a6765743a3a6833313130393231616236656330323464ba01526a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a6170706c795f756e7374616b653a3a6830386164313065623536666539313334bb01b0023c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163636f756e7449647342794d656d62657249643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a54726169743e3a3a4d656d62657273206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a7472616974733a3a4d656d626572733c543e3e3a3a49642c616c6c6f633a3a7665633a3a5665633c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a6835393463616533376238363535343838bc0189013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a4c6f636b61626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7365745f6c6f636b3a3a6832383531333965386432356138363439bd01536a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865383139623164313762343833623062be01443c636f72653a3a666d743a3a417267756d656e747320617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6862343930313364333836353535393265bf014a3c5b75383b205f5d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6861323332656131656261336130386165c001596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a656e737572655f70726f66696c653a3a6863616534646137386163303039356130c101636a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6838303935336264303630383732383062c20192013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617841626f7574546578744c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866313965633937393562653534353162c30192013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d61784176617461725572694c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864616332353833653166643761653466c4018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617848616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864663965393733393134653431313639c5018f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d696e48616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831383866633433663732323331666162c60199013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f47657442797465537472756374416374697665506169644d656d626572736869705465726d733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865323932333038616461393531376238c70197013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f47657442797465537472756374506169644d656d626572736869705465726d73427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862366430373462393361376165663931c80193013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744163636f756e74496442794d656d62657249643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839393562353763626563373332626235c9015e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6835353630636433373161663431356437ca01533c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832306338393361313332373262383863cb01483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a6864333136373363393763623133643062cc01483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a696e736572743a3a6863303331616638373535363839376531cd01596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6837333936316663303864363738393539ce017a3c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c486173682c4469676573744974656d3e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861383733396265326338633036373339cf013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6839643166643463396266336534656134d0014173725f7072696d6974697665733a3a67656e657269633a3a656e636f64655f776974685f7665635f7072656669783a3a6864343035363138326263643837626136d101af0173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f494d504c5f4445434f44455f464f525f426c6f636b3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c45787472696e7369633e3e3a3a6465636f64653a3a6833376233626638623761383136333539d201b5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c496e6465782c43616c6c2c5369676e61747572653e206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6866356466666135663563616636326430d30130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6866633036613164666338663539303732d401f0013c73726d6c5f7374616b696e673a3a5f5f6c696e6b65645f6d61705f64657461696c735f666f725f6e6f6d696e61746f72735f646f5f6e6f745f7573653a3a456e756d657261746f723c532c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c28616c6c6f633a3a7665633a3a5665633c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e2c2054293e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6866363533613034333566363537643239d5013773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6837663666313634363230343633353364d601d0023c73726d6c5f7374616b696e673a3a5f5f6c696e6b65645f6d61705f64657461696c735f666f725f76616c696461746f72735f646f5f6e6f745f7573653a3a456e756d657261746f723c532c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c2873726d6c5f7374616b696e673a3a56616c696461746f7250726566733c3c3c542061732073726d6c5f7374616b696e673a3a54726169743e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63653e2c2054293e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6861396632663365653861393564626465d7016f7061726974795f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f7220284a2c204b293e3a3a6465636f64653a3a6836643937373438633463303630623130d8016a636f72653a3a6f70733a3a66756e6374696f6e3a3a696d706c733a3a3c696d706c20636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653c413e20666f7220266d757420463e3a3a63616c6c5f6f6e63653a3a6833393337656564386535343263363065d9012e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a6864623530373334623363363565333236da0149636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a6836356430383263326563626137613538db012e636f72653a3a726573756c743a3a756e777261705f6661696c65643a3a6865656631393432303839376530326564dc016d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6861666665336163656236323032383564dd016d3c73726d6c5f737570706f72743a3a73746f726167653a3a52756e74696d6553746f726167652061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167653e3a3a74616b653a3a6864626664376635353435663164366662de013773726d6c5f7375646f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6866366162643230653031366434393064df013c73726d6c5f7375646f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6835626661323734336438626632616635e0014173726d6c5f7375646f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863623332316231396361306363393838e101596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6835633933333162323030313261646265e201546a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6839633163653566343935343465393539e3013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6836633638666262643063323231353039e4013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6861383331646435623132323333316166e5013d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862623036646331373762646639313834e6013a73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838336564326566623634616261666239e7013f73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6830643431613766666139363933633138e801aa0173726d6c5f7374616b696e673a3a5f494d504c5f4445434f44455f464f525f5374616b696e674c65646765723a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a5374616b696e674c65646765723c4163636f756e7449642c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6835366134323561623137653738396361e901ac013c73726d6c5f7374616b696e673a3a426f6e6465643c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6765743a3a6836666235303838386536343663373763ea014473726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6866316663663766613164376339353131eb01703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374526563656e746c794f66666c696e653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833393830643166323964636265653337ec01723c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c61736847726163653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832336138306237333733633633353963ed01743c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744c6173744572614c656e6774684368616e67653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838653436353939633338666637643862ee01683c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563745374616b6572733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866646535356431666562366431626263ef016b3c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831306636323763353362323835663463f001703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374426f6e64696e674475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839626330646334613362313661613734f1016d3c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744f66666c696e65536c6173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830653063623534306635316532663761f201763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831656665646632356138326532386530f301b20173726d6c5f7374616b696e673a3a5f494d504c5f4445434f44455f464f525f5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653c4b65793e3e3a3a6465636f64653a3a6836303936383762313136313336653134f401b50173726d6c5f7374616b696e673a3a5f494d504c5f454e434f44455f464f525f5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f7374616b696e673a3a5f5f4c696e6b616765466f724e6f6d696e61746f7273446f4e6f745573653c4b65793e3e3a3a656e636f64655f746f3a3a6830346634653434343733623265663130f501523c28522c2053292061732073726d6c5f73657373696f6e3a3a4f6e53657373696f6e4368616e67653c543e3e3a3a6f6e5f73657373696f6e5f6368616e67653a3a6837326433346239633730313630306466f601673c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6836366134626630303838316330616261f70144636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723a3a73697a655f68696e743a3a6836613030333664383263393866356466f8013773726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d616b655f7061796f75743a3a6831343433613639646163363135346533f9014173726d6c5f737570706f72743a3a7472616974733a3a496d62616c616e63653a3a6d617962655f73756273756d653a3a6837316530633665616431323464343031fa01653c73726d6c5f62616c616e6365733a3a696d62616c616e6365733a3a506f736974697665496d62616c616e63653c542c493e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6862316437653436336439383934646162fb013973726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a617574686f7269746965733a3a6839343935366636656537633533656463fc018e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6465706f7369745f696e746f5f6578697374696e673a3a6862616265646136363838616637373139fd013973726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7570646174655f6c65646765723a3a6864336361633065343537333565613463fe0130636f72653a3a7074723a3a7265616c5f64726f705f696e5f706c6163653a3a6836363763643262333562373162353838ff013e636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723a3a6e74683a3a68396632626231373061626162303332668002483c552061732073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e3e3a3a72656d6f76653a3a686339346664353037663939336661663181023d7061726974795f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a686630616362356364613365633665633682025a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746172745f656c656374696f6e3a3a68383462333932366536303436316366658302d8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f494d504c5f4445434f44455f464f525f456c656374696f6e53746167653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a456c656374696f6e53746167653c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a686137346131303438313135383433353984023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68366635653763613135636438396134628502646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a686566343162393735303566313336646486025c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a6170706c6963616e745f7374616b65733a3a68336461393262326134393830303334308702646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a686132646130306530613831376565613488028f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683338333161336132303935623439336289028c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68643434613235636431643364373634338a028d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623635363039656133353635396661318b0286013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68313038313036393666343332663539358c0290013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744170706c6963616e745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68663537653266633132393831626261658d028a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623636663130636137326461363562368e025f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a68663438373864653033316661363665638f0293043c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a566f7465733c543e2061732073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a53746f726167654d61703c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7374616b653a3a5374616b653c3c3c54206173206a6f7973747265616d5f6e6f64655f72756e74696d653a3a63757272656e63793a3a476f7665726e616e636543757272656e63793e3a3a43757272656e63792061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a42616c616e63653e2c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a486173682c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3e3a3a6765743a3a683066626136353861613536363161626490028e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a683736383931313831316239633330613191025d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a74656172646f776e5f656c656374696f6e3a3a68306563613463663732323731316266309202613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a686633313230333062666366666235383293025b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a64726f705f6170706c6963616e74733a3a68366432653465326166336163666465359402a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a686535353336663839363764366639313195022c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a6862353464643438623666363163306539960248616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a683133396263356436383038653330636697022c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a68366664373339383532633562326563639802723c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a683865316534373532333233393464326499025a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68616265653664353639656561616539669a026f73726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c426c6f636b2c436f6e746578742c5061796d656e742c416c6c4d6f64756c65733e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a68663837626131623439656239326465399b02c2013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f6d6f7274616c5f636f6d706163745f65787472696e7369633a3a556e636865636b65644d6f7274616c436f6d7061637445787472696e7369633c416464726573732c496e6465782c43616c6c2c5369676e61747572653e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c436f6e746578743e3e3a3a636865636b3a3a68616364346239363137323238366437389c023873726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6163636f756e745f6e6f6e63653a3a68316165633566383036333466613830629d0288013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a4d616b655061796d656e743c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6d616b655f7061796d656e743a3a68306663346261656332613765393966669e02676a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a68323166626531643137636261313064309f02626a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6830643133666336326431663864356231a0025d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6839656661623233656532316537373435a1023573726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a626c6f636b5f686173683a3a6830616132306665396230636639623335a2023573726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a696e697469616c697a653a3a6834383635353730626638646635333736a3023673726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6c6f673a3a6833383530333337633634623666336136a4023e73726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6831333266613363333336346639336432a5024373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6e6f74655f66696e69736865645f65787472696e736963733a3a6865643062656434626331373734643135a6024373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6839366534313864393235653236666630a702693c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374426c6f636b486173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830653834633534313364373661393865a802703c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374416c6c45787472696e736963734c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865643663663832336231396264343765a9023373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a66696e616c697a653a3a6838616637646432666633643534383561aa024373726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865653161376263383965386530353362ab02636a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6864616130643639646234336631393337ac028a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866386539653532323730616134643734ad025e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6838383066623938353962313635656632ae02596a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6861343934646261383531396236333033af02546a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6830633561653163333732613439623739b0027e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864626537393065326566396532643335b1024f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6863646637386135356332303433653465b2024a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6832366362636431653237656137346366b3023d73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a63616c6c5f66756e6374696f6e733a3a6865393164326162663863363232643865b4024273726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a73746f72655f6d657461646174615f6e616d653a3a6832663834666635633165393334356337b5024773726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6837646631336336313736306161323037b6026f3c73726d6c5f62616c616e6365733a3a5f5f476574427974655374727563744372656174696f6e4665653c542c493e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835643736346363363935363639653262b7024b616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c4b2c563e3a3a696e736572743a3a6836363630386533633131643535373638b8023e73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a76657374696e675f62616c616e63653a3a6837333661396561363064633265376637b9023473726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a6c6f636b733a3a6861353030343662653163363939663530ba023c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6836353563346661303935356662623863bb024173726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6838613138376564666436626335316538bc024673726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6834626135386464393230666233636431bd02703c73726d6c5f74696d657374616d703a3a5f5f476574427974655374727563744d696e696d756d506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835653365373833353438366639373239be028e013c28462c20472c20482c20492c204a2c204b2c204c2c204d2c204e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a6861356137626162363134376364393761bf024473726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a53746f726167655665633a3a6974656d3a3a6837386337646530306566636530623131c0024773726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a736176655f6f726967696e616c5f617574686f7269746965733a3a6864363634386232326333393232666531c10292013c28462c20472c20482c20492c204a2c204b2c204c2c204d2c204e2c204f2c20502c20512c20522c20532c20542c20552c20562c20572c20582c20592c205a292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e496e697469616c697a653c4e756d6265723e3e3a3a6f6e5f696e697469616c697a653a3a6862633134383864636538336631393435c202613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6864333661383866663434383932633962c3023c73726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6830343166366664316137353735323838c4024173726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6837656331336534363864376633386466c5024673726d6c5f636f6e73656e7375733a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6861313538336362636233373636653335c602756a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f66756e6374696f6e733a3a6863333935633431633538316565626666c702706a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a73746f72655f6d657461646174615f6e616d653a3a6835313163663837383765396636313134c8026b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6863383138653633343962333230346466c902477375627374726174655f696e686572656e74733a3a436865636b496e686572656e7473526573756c743a3a7075745f6572726f723a3a6836363934326533663763393633333330ca020c436f72655f76657273696f6ecb0212436f72655f657865637574655f626c6f636bcc026c3c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a656e756d6572617465645f747269655f726f6f743a3a6832363761636636343331323366376636cd0215436f72655f696e697469616c697a655f626c6f636bce0210436f72655f617574686f726974696573cf02114d657461646174615f6d65746164617461d002603c7061726974795f636f6465633a3a636f6465633a3a436f6d706163743c7533323e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6866366136646463316333363261386366d102433c5b75385d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6862646139663463343136323335623265d202623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6861663233393665663239373665313961d302623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839623030363962313962306263643833d402623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6863666232616237316432333732306164d5021c426c6f636b4275696c6465725f6170706c795f65787472696e736963d6021b426c6f636b4275696c6465725f66696e616c697a655f626c6f636bd70220426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373d8025d3c7375627374726174655f696e686572656e74733a3a496e686572656e7444617461206173207061726974795f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6836363731313633633031623537636665d9023873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6865663537653039343837363432613336da021c426c6f636b4275696c6465725f636865636b5f696e686572656e7473db0218426c6f636b4275696c6465725f72616e646f6d5f73656564dc022b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6edd02214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b6572de02214772616e6470614170695f6772616e6470615f70656e64696e675f6368616e6765df02204772616e6470614170695f6772616e6470615f666f726365645f6368616e6765e0021e4772616e6470614170695f6772616e6470615f617574686f726974696573e10215417572614170695f736c6f745f6475726174696f6ee2021a417574686f7269746965734170695f617574686f726974696573e302623c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6834343961653261366630363230356433e4029c0173726d6c5f6d657461646174613a3a5f494d504c5f454e434f44455f464f525f53746f7261676546756e6374696f6e547970653a3a3c696d706c207061726974795f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f6d657461646174613a3a53746f7261676546756e6374696f6e547970653e3a3a656e636f64655f746f3a3a6837346636353965303363613161306238e502423c5b545d206173207061726974795f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333665303031396334643130353639e60211727573745f626567696e5f756e77696e64e7024473725f696f3a3a65787465726e5f66756e6374696f6e735f686f73745f696d706c3a3a6578745f7072696e745f757466383a3a6836353839383561373633356335313938e8020a5f5f72675f616c6c6f63e9020c5f5f72675f6465616c6c6f63ea020c5f5f72675f7265616c6c6f63eb02115f5f72675f616c6c6f635f7a65726f6564ec024e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6831306135393137333535326230353336ed02313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a6831343735613039323362346134623433ee0243636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a6863303931333062633534633863643735ef022c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a6832663337313163393866323031646231f0024a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6837616537353434336564333663316665f102323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6861643337653666646339633239383633f2024d636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a68363564303832633265636261376135382e383930f30223636f72653a3a666d743a3a77726974653a3a6836373337396562353739313838326139f40234636f72653a3a666d743a3a417267756d656e7456313a3a73686f775f7573697a653a3a6865373330333636323164626538363538f502066d656d736574f602066d656d637079f702076d656d6d6f7665f802066d656d636d70f902095f5f75646976746933fa02085f5f6d756c746933fb023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f693132385f73686c3a3a6836623236323439386531326433376462fc023f636f6d70696c65725f6275696c74696e733a3a696e743a3a73686966743a3a727573745f753132385f7368723a3a6861393564373130306130366134666466fd020c5f5f756469766d6f6474693400590970726f64756365727302086c616e677561676501045275737404323031380c70726f6365737365642d62790105727573746325312e33352e302d6e696768746c79202865346336366166626120323031392d30342d313329", - "0x62f532424b7b1c52f522857315040f27": "0x00000000000000000000000000000000", - "0xb8f48a8c01f629d6dc877f64892bed49": "0x0000000000000000", - "0x2dce29f1a768624dc5343063cb77f77d": "0x14000000", - "0x435a73fddc0fb69c00a8e75d1a3662f1": "0x0100000000000000", - "0x9ebe2bab3321c71a4796afaab12ef727": "0x0100000000000000", - "0x3a617574683a6c656e": "0x01000000", - "0x0e4944cfd98d6f4cc374d16f5a4e3f9c": "0x0000000000000000", - "0xb4fe413858bf27190459f119348595a2": "0x88130000000000000000000000000000", - "0xdade128e67a5ed110063f56a01ab6bbf": "0x0000000000000000", - "0x4b46aa47fc588851a6cb661530b7b1b4": "0x214e214e00", - "0xb9b861cab4bbce870c811515bd5f33d7": "0x00", - "0x7d78893315c59fe96c583efc57f97a0f": "0x64000000000000000000000000000000", - "0x7f8fcaad324658a07a8182d03367f953": "0x2c01000000000000", - "0x052864eeea9f485c498882d7367582d3": "0xc8000000000000000000000000000000", - "0x51dc7d6b960dbce5de1de96c88afc3d8": "0x0100000000000000" - } - } -} \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 6850ea5706..fed208a184 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -115,7 +115,7 @@ impl Alternative { vec![], None, None, - None, + Some(chain_spec_properties()), None, ), Alternative::LocalTestnet => ChainSpec::from_genesis( @@ -147,7 +147,7 @@ impl Alternative { vec![], None, None, - None, + Some(chain_spec_properties()), None, ), Alternative::StagingTestnet => staging_testnet_config(), @@ -175,13 +175,7 @@ pub fn live_testnet_config() -> Result { ChainSpec::from_json_bytes(&include_bytes!("../res/dummy.json")[..]) } -/// Staging testnet config -pub fn staging_testnet_config() -> ChainSpec { - let boot_nodes = vec![ - String::from("/dns4/bootnode1.joystream.org/tcp/30333/p2p/QmeDa8jASqMRpTh4YCkeVEuHo6nbMcFDzD9pkUxTr3WxhM"), - String::from("/dns4/bootnode2.joystream.org/tcp/30333/p2p/QmbjzmNMjzQUMHpzqcPHW5DnFeUjM3x4hbiDSMkYv1McD3"), - ]; - +pub fn chain_spec_properties() -> json::map::Map { let mut properties: json::map::Map = json::map::Map::new(); properties.insert( String::from("tokenDecimals"), @@ -191,6 +185,15 @@ pub fn staging_testnet_config() -> ChainSpec { String::from("tokenSymbol"), json::Value::String(String::from("JOY")), ); + properties +} + +/// Staging testnet config +pub fn staging_testnet_config() -> ChainSpec { + let boot_nodes = vec![ + String::from("/dns4/bootnode1.joystream.org/tcp/30333/p2p/QmeDa8jASqMRpTh4YCkeVEuHo6nbMcFDzD9pkUxTr3WxhM"), + String::from("/dns4/bootnode2.joystream.org/tcp/30333/p2p/QmbjzmNMjzQUMHpzqcPHW5DnFeUjM3x4hbiDSMkYv1McD3"), + ]; ChainSpec::from_genesis( "Joystream Staging Testnet", @@ -204,7 +207,7 @@ pub fn staging_testnet_config() -> ChainSpec { // protocol_id Some(&*"joy.staging"), // Properties - Some(properties), + Some(chain_spec_properties()), // Extensions None, ) @@ -230,6 +233,8 @@ fn staging_testnet_config_genesis() -> GenesisConfig { const STASH: Balance = 50 * DOLLARS; const ENDOWMENT: Balance = 100_000_000 * DOLLARS; + let initial_members = crate::import_members::initial_members(); + GenesisConfig { system: Some(SystemConfig { code: WASM_BINARY.to_vec(), @@ -306,7 +311,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { }), members: Some(MembersConfig { default_paid_membership_fee: 100u128, - members: vec![], + members: initial_members, }), forum: Some(ForumConfig { category_by_id: vec![], @@ -355,6 +360,20 @@ pub fn testnet_genesis( const STASH: Balance = 10000; const ENDOWMENT: Balance = 100_000_000; + // Static members + let mut initial_members = vec![ + // Make Root a member + ( + root_key.clone(), + String::from("system"), + String::from("http://joystream.org/avatar.png"), + String::from("I am root!"), + ), + ]; + + // Additional initial members + initial_members.append(&mut crate::import_members::initial_members()); + GenesisConfig { //substrate modules system: Some(SystemConfig { @@ -431,7 +450,7 @@ pub fn testnet_genesis( }), members: Some(MembersConfig { default_paid_membership_fee: 100u128, - members: vec![], + members: initial_members, }), forum: Some(ForumConfig { category_by_id: vec![], diff --git a/src/import_members.rs b/src/import_members.rs new file mode 100644 index 0000000000..e74e3984bc --- /dev/null +++ b/src/import_members.rs @@ -0,0 +1,49 @@ +use serde::{Deserialize, Serialize}; +use serde_json::Result; + +use primitives::crypto::{AccountId32, Ss58Codec}; + +#[derive(Serialize, Deserialize)] +struct Member { + /// SS58 Encoded public key + pub address: String, + pub handle: String, + pub avatar_uri: String, + pub about: String, +} + +// fn test_load_members() -> Result> { +// let data = r#" +// [{ +// "address": "5Gn9n7SDJ7VgHqHQWYzkSA4vX6DCmS5TFWdHxikTXp9b4L32", +// "handle": "mokhtar", +// "avatar_uri": "http://mokhtar.net/avatar.png", +// "about": "Mokhtar" +// }]"#; + +// serde_json::from_str(data) +// } + +fn parse_members_json() -> Result> { + let data = include_str!("../res/initial_members.json"); + serde_json::from_str(data) +} + +fn decode_address(address: String) -> AccountId32 { + AccountId32::from_ss58check(address.as_ref()).expect("failed to decode account id") +} + +pub fn initial_members() -> Vec<(AccountId32, String, String, String)> { + parse_members_json() + .unwrap_or(vec![]) // if parsing fails, use empty vector + .into_iter() + .map(|member| { + ( + decode_address(member.address), + member.handle, + member.avatar_uri, + member.about, + ) + }) + .collect() +} diff --git a/src/main.rs b/src/main.rs index dbbb5f62d1..88f7a9f6e0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,6 +21,7 @@ mod chain_spec; mod cli; +mod import_members; mod service; pub use substrate_cli::{error, IntoExit, VersionInfo}; From 1a78d2e1f989e80d6470de5d8d14ad9738eabacc Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 26 Nov 2019 17:35:53 +0200 Subject: [PATCH 235/350] import forum data at genesis --- res/forum_data.json | 5 ++ src/chain_spec.rs | 47 +++--------------- src/forum_config.rs | 51 ++++++++++++++++++++ src/main.rs | 3 +- src/{import_members.rs => members_config.rs} | 13 ++--- 5 files changed, 71 insertions(+), 48 deletions(-) create mode 100644 res/forum_data.json create mode 100644 src/forum_config.rs rename src/{import_members.rs => members_config.rs} (86%) diff --git a/res/forum_data.json b/res/forum_data.json new file mode 100644 index 0000000000..216134510b --- /dev/null +++ b/res/forum_data.json @@ -0,0 +1,5 @@ +{ + "categories": [], + "posts": [], + "threads": [] +} \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs index fed208a184..4aaa623176 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -16,12 +16,11 @@ use hex_literal::hex; use node_runtime::{ - forum::InputValidationLengthConstraint, versioned_store::InputValidationLengthConstraint as VsInputValidation, AccountId, ActorsConfig, AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, - ForumConfig, GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, - Perbill, ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, StakingConfig, + GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, Perbill, + ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, StakingConfig, SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, }; use primitives::{crypto::UncheckedInto, sr25519, Pair, Public}; @@ -213,10 +212,6 @@ pub fn staging_testnet_config() -> ChainSpec { ) } -fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { - return InputValidationLengthConstraint { min, max_min_diff }; -} - fn staging_testnet_config_genesis() -> GenesisConfig { let initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)> = vec![( hex!["0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65"].into(), // stash @@ -233,8 +228,6 @@ fn staging_testnet_config_genesis() -> GenesisConfig { const STASH: Balance = 50 * DOLLARS; const ENDOWMENT: Balance = 100_000_000 * DOLLARS; - let initial_members = crate::import_members::initial_members(); - GenesisConfig { system: Some(SystemConfig { code: WASM_BINARY.to_vec(), @@ -311,23 +304,9 @@ fn staging_testnet_config_genesis() -> GenesisConfig { }), members: Some(MembersConfig { default_paid_membership_fee: 100u128, - members: initial_members, - }), - forum: Some(ForumConfig { - category_by_id: vec![], - thread_by_id: vec![], - post_by_id: vec![], - next_category_id: 1, - next_thread_id: 1, - next_post_id: 1, - forum_sudo: endowed_accounts[0].clone(), - category_title_constraint: new_validation(10, 90), - category_description_constraint: new_validation(10, 490), - thread_title_constraint: new_validation(10, 90), - post_text_constraint: new_validation(10, 990), - thread_moderation_rationale_constraint: new_validation(10, 290), - post_moderation_rationale_constraint: new_validation(10, 290), + members: crate::members_config::initial_members(), }), + forum: Some(crate::forum_config::create(endowed_accounts[0].clone())), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), @@ -372,7 +351,7 @@ pub fn testnet_genesis( ]; // Additional initial members - initial_members.append(&mut crate::import_members::initial_members()); + initial_members.append(&mut crate::members_config::initial_members()); GenesisConfig { //substrate modules @@ -452,21 +431,7 @@ pub fn testnet_genesis( default_paid_membership_fee: 100u128, members: initial_members, }), - forum: Some(ForumConfig { - category_by_id: vec![], - thread_by_id: vec![], - post_by_id: vec![], - next_category_id: 1, - next_thread_id: 1, - next_post_id: 1, - forum_sudo: root_key, - category_title_constraint: new_validation(10, 90), - category_description_constraint: new_validation(10, 490), - thread_title_constraint: new_validation(10, 90), - post_text_constraint: new_validation(10, 990), - thread_moderation_rationale_constraint: new_validation(10, 290), - post_moderation_rationale_constraint: new_validation(10, 290), - }), + forum: Some(crate::forum_config::create(root_key)), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), diff --git a/src/forum_config.rs b/src/forum_config.rs new file mode 100644 index 0000000000..ead4fbf7ac --- /dev/null +++ b/src/forum_config.rs @@ -0,0 +1,51 @@ +use node_runtime::{ + forum::{ + Category, CategoryId, InputValidationLengthConstraint, Post, PostId, Thread, ThreadId, + }, + AccountId, BlockNumber, ForumConfig, Moment, +}; +use serde::{Deserialize, Serialize}; +use serde_json::Result; + +#[derive(Serialize, Deserialize)] +struct ForumData { + categories: Vec<(CategoryId, Category)>, + posts: Vec<(PostId, Post)>, + threads: Vec<(ThreadId, Thread)>, +} + +fn parse_forum_json() -> Result { + let data = include_str!("../res/forum_data.json"); + serde_json::from_str(data) +} + +fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { + return InputValidationLengthConstraint { min, max_min_diff }; +} + +pub fn create(forum_sudo: AccountId) -> ForumConfig { + let forum_data = parse_forum_json().expect("failed loading forum data"); + + let next_category_id: CategoryId = forum_data + .categories + .last() + .map_or(1, |category| category.0 + 1); + let next_thread_id: ThreadId = forum_data.threads.last().map_or(1, |thread| thread.0 + 1); + let next_post_id: PostId = forum_data.posts.last().map_or(1, |post| post.0 + 1); + + ForumConfig { + category_by_id: forum_data.categories, + thread_by_id: forum_data.threads, + post_by_id: forum_data.posts, + next_category_id, + next_thread_id, + next_post_id, + forum_sudo, + category_title_constraint: new_validation(10, 90), + category_description_constraint: new_validation(10, 490), + thread_title_constraint: new_validation(10, 90), + post_text_constraint: new_validation(10, 990), + thread_moderation_rationale_constraint: new_validation(10, 290), + post_moderation_rationale_constraint: new_validation(10, 290), + } +} diff --git a/src/main.rs b/src/main.rs index 88f7a9f6e0..2b28c34fb5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,7 +21,8 @@ mod chain_spec; mod cli; -mod import_members; +mod forum_config; +mod members_config; mod service; pub use substrate_cli::{error, IntoExit, VersionInfo}; diff --git a/src/import_members.rs b/src/members_config.rs similarity index 86% rename from src/import_members.rs rename to src/members_config.rs index e74e3984bc..94259c4e87 100644 --- a/src/import_members.rs +++ b/src/members_config.rs @@ -6,10 +6,10 @@ use primitives::crypto::{AccountId32, Ss58Codec}; #[derive(Serialize, Deserialize)] struct Member { /// SS58 Encoded public key - pub address: String, - pub handle: String, - pub avatar_uri: String, - pub about: String, + address: String, + handle: String, + avatar_uri: String, + about: String, } // fn test_load_members() -> Result> { @@ -34,8 +34,9 @@ fn decode_address(address: String) -> AccountId32 { } pub fn initial_members() -> Vec<(AccountId32, String, String, String)> { - parse_members_json() - .unwrap_or(vec![]) // if parsing fails, use empty vector + let members = parse_members_json().expect("failed parsing members data"); + + members .into_iter() .map(|member| { ( From a5d241272bdf339e3af68bc4059f0bce52e7078d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 29 Nov 2019 11:26:33 +0200 Subject: [PATCH 236/350] fix importing forum state --- Cargo.lock | 7 + Cargo.toml | 1 + res/acropolis_members.json | 1 + res/forum_data.json | 5 - res/forum_data_acropolis_encoded.json | 1 + res/forum_data_acropolis_serialized.json | 110914 +++++++++++++++ res/forum_data_empty.json | 1 + res/initial_members.json | 6 - src/chain_spec.rs | 6 +- src/forum_config/from_encoded.rs | 93 + .../from_serialized.rs} | 6 +- src/forum_config/mod.rs | 4 + src/members_config.rs | 6 +- 13 files changed, 111032 insertions(+), 19 deletions(-) create mode 100644 res/acropolis_members.json delete mode 100644 res/forum_data.json create mode 100644 res/forum_data_acropolis_encoded.json create mode 100644 res/forum_data_acropolis_serialized.json create mode 100644 res/forum_data_empty.json delete mode 100644 res/initial_members.json create mode 100644 src/forum_config/from_encoded.rs rename src/{forum_config.rs => forum_config/from_serialized.rs} (93%) create mode 100644 src/forum_config/mod.rs diff --git a/Cargo.lock b/Cargo.lock index 6a6ae395e9..8096a3abb2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1086,6 +1086,11 @@ name = "hex" version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "hex" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "hex-literal" version = "0.1.4" @@ -1342,6 +1347,7 @@ dependencies = [ "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=98df5eec6176d7ce53bf47e1ddcd06c5494a24d6)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5747,6 +5753,7 @@ dependencies = [ "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" +"checksum hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "023b39be39e3a2da62a94feb433e91e8bcd37676fbc8bea371daf52b7a769a3e" "checksum hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639" "checksum hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0" "checksum hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda" diff --git a/Cargo.toml b/Cargo.toml index fa738a9daf..44e9a2743a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,6 +22,7 @@ rand = '0.7.2' structopt = '0.3.3' serde_json = '1.0' serde = '1.0' +hex = '0.4' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' diff --git a/res/acropolis_members.json b/res/acropolis_members.json new file mode 100644 index 0000000000..9584950fd7 --- /dev/null +++ b/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"}] diff --git a/res/forum_data.json b/res/forum_data.json deleted file mode 100644 index 216134510b..0000000000 --- a/res/forum_data.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "categories": [], - "posts": [], - "threads": [] -} \ No newline at end of file diff --git a/res/forum_data_acropolis_encoded.json b/res/forum_data_acropolis_encoded.json new file mode 100644 index 0000000000..0228ee81ef --- /dev/null +++ b/res/forum_data_acropolis_encoded.json @@ -0,0 +1 @@ +{"categories":[[1,"01000000000000004847656e6572616c2044697363757373696f6e01014865726520796f752063616e206469736375737320616e797468696e6720796f752077616e74210a286a757374206b656570207468696e677320636976696c29c6690f00000000003814115d000000000000000000000500000000000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[2,"02000000000000003c4a6f7973747265616d20526f6c6573310155736520746869732063617465676f727920746f2064697363757373207468652063757272656e7420616e6420667574757265204a6f7973747265616d206e6574776f726b20726f6c65732ed4690f00000000008c14115d000000000000050000000100000001000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[3,"03000000000000005c4f66662d746f706963202873686974706f7374696e67295c4a757374206b656570207468696e677320636976696c21246a0f00000000006c16115d000000000000000000000300000000000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[4,"04000000000000002856616c696461746f727365014865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e672061206056616c696461746f7260c2a06f6e20746865204a6f7973747265616d206e6574776f726b2e89950f0000000000661b125d000000000000000000000500000000000000010200000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[5,"05000000000000004453746f726167652050726f76696465727385014865726520796f752063616e206469736375737320616c6c206d61747465727320726567617264696e6720746865206053746f726167652050726f766964657260c2a0726f6c65206f6e20746865204a6f7973747265616d206e6574776f726b2e96950f0000000000b41b125d000000000000000000000200000000000000010200000000000000010000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[6,"06000000000000003c436f756e63696c204d656d6265727379014865726520796f752063616e206469736375737320616c6c206d61747465727320726567617264696e67207468652060436f756e63696c204d656d6265726020726f6c65206f6e20746865204a6f7973747265616d206e6574776f726b2ea0950f0000000000f01b125d000000000000000000000300000000000000010200000000000000020000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[7,"070000000000000060476f7665726e616e636520616e642050726f706f73616c730501546869732069732074686520706c61636520746f206469736375737320676f7665726e616e6365206f6e20746865204a6f7973747265616d204e6574776f726b2eb9950f00000000008c1c125d000000000100000000000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[8,"0800000000000000584a6f7973747265616d20436f6d7065746974696f6e738501546869732063617465676f727920636f6e7461696e7320696e666f206f6e20706173742c2063757272656e7420616e642066757475726520636f6d7065746974696f6e7320666f7220746865204a6f7973747265616d20636f6d6d756e6974792ea52b120000000000d2b1215d000000000100000000000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[9,"0900000000000000804469737472696275746f72202842616e6477696474682050726f7669646572293d024865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e672061204469737472696275746f72206f6e20746865204a6f7973747265616d206e6574776f726b2e0a0a5468697320726f6c652077696c6c206265636f6d652061637469766174656420666f7220746865206e65787420746573746e657421388d130000000000d8032a5d000000000000000000000000000000000000010200000000000000030000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[10,"0a00000000000000484a6f7973747265616d20426f756e746965735101412063617465676f727920666f722070726f706f73696e672c20706f7374696e6720616e64206576616c756174696e6720626f756e7469657320666f7220746865204a6f7973747265616d2070726f6a6563742e684322000000000080b7825d000000000000000000000500000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[11,"0b00000000000000684275696c6465727320616e6420427567205265706f7274657273150148656c70206f7574204a6f7973747265616d206279207265706f7274696e672062756773206f7220636f6e747269627574696e6720746f206f757220736f6674776172652e3065220000000000f082835d000000000000000000000200000000000000010200000000000000040000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"]],"posts":[[1,"01000000000000000100000000000000010000004d01506c6561736520666f6c6c6f77206f7572207465726d73206f6620736572766963652c20616e642067656e6572616c2072756c657320616e642067756964656c696e657320666f722074686520666f72756d2e0000be6d0f0000000000082c115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[2,"02000000000000000200000000000000010000007c5768617420646f20796f7520657870656374206d6520746f2077726974653f0000366e0f0000000000de2e115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[3,"0300000000000000030000000000000001000000fd0157696c6c20626520706f7374696e6720616c6c2074686520696e666f206865726520756e74696c207468656e200a476f20686572652068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b2f747265652f6d61737465722f726f6c65732f73746f726167652d70726f7669646572730000416e0f0000000000202f115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[4,"04000000000000000200000000000000020000009c54686973206973207468652076657279206669727374207265706c79206f6e207468726561642e000030860f0000000000eabe115d000000001ca65332ed98721f9d53e8b19da9c2a786c80bb9b71b66e756bb90f9f003a7c9"],[5,"0500000000000000020000000000000003000000d44a7573742063616d6520746f20736179207468697320697320746865207475726420706f737420696e2074686520746872656164210000b28a0f000000000032da115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[6,"0600000000000000020000000000000004000000e8225768617420646f20796f7520657870656374206d6520746f2077726974653f220a4174206c6561737420616e20656e74697265206e6f76656c00000e8e0f00000000006cee115d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[7,"07000000000000000400000000000000010000007101416e792074686f75676874732061626f757420686f77207468697320726f6c65206d6967687420776f726b3f0a68747470733a2f2f7777772e6a6f7973747265616d2e6f72672f726f6c657323436f6e74656e742d43757261746f7200006e950f0000000000c41a125d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[8,"0800000000000000050000000000000001000000d45768696368206f6e657320646f20796f75207468696e6b2077696c6c207374696c6c2062652061726f756e6420627920323033303f0000e7af0f00000000003cba125d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[9,"090000000000000005000000000000000200000030584d52204d617962652e2e2e0000e3ba0f00000000004efc125d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[10,"0a000000000000000600000000000000010000008d054a7573742074686f75676874204920776f756c64206c65617665206120717569636b20696e74726f20686572652e0a0a4d79206e616d652069732042656465686f204d656e6465722c204920616d2043454f206174204a7367656e657369732c2074686520636f6d70616e792063757272656e746c79206275696c64696e67204a6f7973747265616d2e204d6f7374206f66206d792074696d65206973207370656e7420646f696e6720646576656c6f706d656e742c20526e442c20746563686e6963616c2f70726f647563742064657369676e20616e6420686972696e672e200a0a4d792063757272656e7420666f63757320697320746f20706c616e20666f72206f7572206e65787420746573746e65742c2077686963682077652068617665206e6f742079657420616e6e6f756e6365642e0a0a496620796f752061736b2061207175657374696f6e2c20492077696c6c2074727920746f20616e7377657221000079cb0f00000000004460135d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[11,"0b000000000000000700000000000000010000002d03576520686176656e277420686164207468652074696d6520746f206d616b6520616e20657069736f646520696e2061207768696c652c20627574207765276c6c2074727920616e64206d616b65206f6e65206e657874207765656b2e20416e7920696e746572657374696e67206e657773206f7220746f706963732077652073686f756c6420636f7665723f0a0a24313020626f756e747920666f722061206c696e6b20746f20612074776565742f61727469636c6520746861742067657473206d656e74696f6e65642100003733100000000000a0d1155d000000007cbd2c992945e5fc83d937a180e402ff32699718c1fc753f7a0214492e3ff035"],[12,"0c00000000000000070000000000000002000000c501726563656e742068697420746f20636f696e6465736b207768656e20636c6f7564666c6172652077656e7420646f776e2e0a68747470733a2f2f747769747465722e636f6d2f636f696e6465736b2f7374617475732f313134363035363837343938383634323330363f733d31390a0a0a0000264e1100000000007c791c5d000000000d93f52ebfebeaef5adaeb0b0f0db97977ff3dc139d4279869f283bc2155388a"],[13,"0d000000000000000200000000000000050000001501492077697368204920636f756c6420746970207468697320736f7274206f66207374756666212049747320746f6f20696e636f6e76656e69656e74207269676874206e6f770000fc56110000000000ceae1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[14,"0e00000000000000080000000000000001000000990323205768617420776f756c6420796f75206669783f0a0a4920776f756c64206164640a0a312e2041636375726174652073756263617465676f727920616e642074687265616420636f756e7473212049747320636f6e667573696e672c20616e64206861726420746f20747261636b206e657720706f7374732e0a322e20486f772063616e2077652073757266616365206e657720706f737473206265747465723f0a322e20536f6d6520736f7274206f662074616767696e67206f662075736572732c2077697468206e6f74696669636174696f6e73202849206b6e6f772068617264290a000016571100000000006aaf1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[15,"0f00000000000000080000000000000002000000e10e536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f6261640a2a20546f20616464207461677320666f7220746872656164732028227465636820737570706f72742220226f726967696e616c20636f6e74656e7422202264656269616e206e6f64652229202b206d61796265207365617263682066756e6374696f6e616c69747920696e20746865206675747572650a2a20546f2061646420706f7374206e756d626572202b206c696e6b20746f20616e63686f72206f6620706f7374206e756d62657220696e2065616368207468726561642e20536f20796f752063616e20656173696c792073656e642061206c696e6b20746f20706f73742023313220746f206f746865722070656f706c65206f72206c696e6b2066726f6d20616e6f74686572207468726561642e0a2a20546f206164642061206d656e7520666f722073696d706c65207465787420666f726d617474696e67206c696b6520626f6c642c206974616c69632c20696e736572742070696374757265200014ec8e1100000000008e021e5d000000008d07536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746fff8e11000000000000031e5d00000000e107536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573292f8f11000000000020041e5d000000005d09536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f626164388f11000000000056041e5d00000000390b536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f6261640a2a20546f20616464207461677320666f7220746872656164732028227465636820737570706f72742220226f726967696e616c20636f6e74656e7422202264656269616e206e6f64652229202b206d61796265207365617263682066756e6374696f6e616c69747920696e2074686520667574757265578f11000000000010051e5d00000000a90d536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f6261640a2a20546f20616464207461677320666f7220746872656164732028227465636820737570706f72742220226f726967696e616c20636f6e74656e7422202264656269616e206e6f64652229202b206d61796265207365617263682066756e6374696f6e616c69747920696e20746865206675747572650a2a20546f2061646420706f7374206e756d626572202b206c696e6b20746f20616e63686f72206f6620706f7374206e756d62657220696e2065616368207468726561642e20536f20796f752063616e20656173696c792073656e642061206c696e6b20746f20706f73742023313220746f206f746865722070656f706c65206f72206c696e6b2066726f6d20616e6f74686572207468726561642edc8e1100000000002e021e5d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[16,"10000000000000000800000000000000030000006906546869732069732061207265616c6c79206772656174206c6973742c207468616e6b73210a0a49207468696e6b2077652063616e20646f2061206c6f74206f66207468697320776974686f757420612072756e74696d6520757067726164652c207768696368206973206e6963652e2057652061726520676f696e6720746f20696e76657374206d6f726520696e746f2074686520666f72756d2c20736f207765206e65656420746f206d616b652069742065617369657220746f207573652e0a0a596f75206469646e277420746f75636820736f206d756368206f6e20746865206973737565206f6620737572666163696e67206e657720636f6e74656e742c20616e792074697073206f6e20746861743f0a0a49206861766520612076657279207665727920686172642074696d65206669677572696e67206f75742061207768657265206e65772061637469766974792069732074616b696e6720706c616365207768656e20492068697420746865206d61696e20666f72756d20706167652c206f72206576656e2073756263617465676f726965732e00004a97120000000000ca3b245d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[17,"11000000000000000800000000000000040000006503466f72206e657720636f6e74656e7473207765206e6565642061206e6f74696669636174696f6e2073797374656d206c696b652c2061206e6f74696669636174696f6e20636f756e746572207768656e20736f6d656f6e65207265706c69657320746f206f757220706f7374206f72207468726561642e53686f772061206e6f74696669636174696f6e20636f756e746572207769746820736d616c6c2064657461696c206f6e2074686520746f70207269676874202e20497420776f756c64206265206e69636520616e6420766572792075736566756c2e0000d7af12000000000072cf245d000000000d93f52ebfebeaef5adaeb0b0f0db97977ff3dc139d4279869f283bc2155388a"],[18,"1200000000000000070000000000000003000000690168747470733a2f2f7777772e636f696e6465736b2e636f6d2f7468657265732d612d7365636f6e642d746f6b656e2d612d627265616b646f776e2d6f662d66616365626f6f6b732d626c6f636b636861696e2d65636f6e6f6d790000d367130000000000ae22295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[19,"1300000000000000080000000000000005000000310349662061206e6f74696669636174696f6e20636f756e74657220697320746f6f20696e747275736976652c20796f7520636f756c64206a75737420686967686c6967687420746872656164732077697468206e657720706f73747320736f6d65686f772e20506572686170732070757420612073746172206e65787420746f2074686520746872656164206f72207075742074686520746872656164207469746c6520696e20626f6c64207768656e207468657265206973206e657720756e7265616420636f6e74656e742e00041a87130000000000d0de295d00000000310349662061206e6f74696669636174696f6e20636f756e74657220697320746f6f20696e747275736976652c20796f7520636f756c64206a75737420686967686c6967687420746872656164732077697468206e657720706f73747320736f6d65686f772e20506572686170732070757420612073746172206e65787420746f2074686520746872656164206f72207075742074686520746872656174207469746c6520696e20626f6c64207768656e207468657265206973206e657720756e7265616420636f6e74656e742e9a681300000000005827295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[20,"14000000000000000600000000000000020000002820202020202020202020000cbd681300000000002a28295d0000000071015768617420696e20706172746963756c61722061747472616374656420796f7520746f207468652069646561206f662061207573657220676f7665726e656420616e64206f7065726174656420766964656f20706c6174666f726d3f3e87130000000000a8df295d000000009901486920746865726521205768617420696e20706172746963756c61722061747472616374656420796f7520746f207468652069646561206f662061207573657220676f7665726e656420616e64206f7065726174656420766964656f20706c6174666f726d3fd4351400000000003cfc2d5d000000009901486920746865726521205768617420696e20706172746963756c61722061747472616374656420796f7520746f207468652069646561206f662061207573657220676f7665726e656420616e64206f70657261746564206d6564696120706c6174666f726d3fba681300000000001828295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[21,"1500000000000000080000000000000006000000d101416e6f746865722066656174757265206964656120776f756c6420626520746f20686176652022656469746564222073686f776e206e65787420746f20706f73747320746861742068617665206265656e206564697465642061667465722074686579277665206265656e207772697474656e2e0000268713000000000018df295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[22,"160000000000000009000000000000000100000069014865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e67206120604469737472696275746f7260206f6e20746865204a6f7973747265616d206e6574776f726b2e0000118d130000000000e8022a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[23,"17000000000000000a000000000000000100000009044c6574206d65206b6e6f7720696620796f7520776f756c64206c696b6520746f20736565206d6f7265206f662074686573652e2049276d2061206269742062757379207269676874206e6f772c206275742069662070656f706c65206e6565642068656c702067657474696e67207365742075702c2049276c6c2070726f6261626c79206d616b6520736f6d65206d6f72652e0a0a68747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f6d656469612f706c61792f354554505868557135516e43665a397963646142337063453138473464556d47417454574435506d544d6362786277500000b58f130000000000d8122a5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[24,"18000000000000000800000000000000070000004102576f726b696e67206f6e2061205b6769746875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f38302920666f722074686973210a0a4665656c206672656520746f206368696d6520696e2e2e2e0a0a2a45646974656420746f2073656520696620697427732073686f776e2e000489ef1300000000000a542c5d00000000c501576f726b696e67206f6e2061205b6769746875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f38302920666f722074686973210a0a4665656c206672656520746f206368696d6520696e2e2e2e85ef130000000000f2532c5d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[25,"19000000000000000a000000000000000200000055054865792042656e2c0a0a5468697320697320776f6e64657266756c20737475666621200a0a536f6d652074696d652074686973207765656b2c2049276c6c2074727920746f206f7267616e697a652074686520666f72756d2070726f7065726c7920666f7220736f6d657468696e67207765206861766520696e206d696e6420666f72206c617465722e20436f6d7065746974696f6e732c20616e64206120636f6d6d756e6974792066756e6420636f6e74726f6c6c65642062792074686520636f756e63696c2e0a0a5765206d6179206a757374206f666665722022726567756c617222205b626f756e746965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732920666f72206d6f7265206f6620746865736520696e73746561642e204665656c206672656520746f2070726f706f7365206f6e6520796f757273656c66210000bffc1300000000009ca32c5d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[26,"1a000000000000000a00000000000000030000004d0147726561742c207468616e6b73204d617274696e210a0a436f6d7065746974696f6e7320616e6420636f6d6d756e6974792066756e6420626f746820736f756e64207665727920696e746572657374696e672e00004d0014000000000002b92c5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[27,"1b000000000000000200000000000000060000004061207465737420666f6f207265706c79000041922000000000009285785d000000009e159eb998037d425124c10666d50e207d769bd5e993ffa82a9b32c8d645f6f5"],[28,"1c000000000000000400000000000000020000005101576527726520696e74726f647563696e6720697420696e2074686520526f6d6520746573746e65742c20736f20686f706566756c6c79206974276c6c206265636f6d65206170706172656e74207468656e203a2900002b62210000000000e66b7d5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[29,"1d000000000000000b00000000000000010000007d0c23204f766572766965770a5468697320666f72756d2063617465676f727920616e6420746865205b6f726967696e616c207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f2920617265207768657265207765207075626c6973682c20747261636b20616e6420646f63756d656e742074686520626f756e74792073797374656d20666f7220746865204a6f7973747265616d20706c6174666f726d2e20416e796f6e65206973206672656520746f206d616b652061205b70726f706f73616c5d282370726f706f73616c732920666f72206120626f756e74792c20616e6420616e796f6e65206973206672656520746f20636f6d7065746520666f72207468656d2e0a0a43757272656e746c792c20616c6c20626f756e746965732077696c6c206265206d6164652060616374697665602c2066756e6465642c20616e642077696c6c206265206576616c7561746564206279205b4a7367656e657369735d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f6a7367656e657369732f292e20496e20746865206675747572652c206f757220696e74656e74696f6e20697320746f206772616475616c6c7920696e766f6c76652074686520706c6174666f726d20676f7665726e616e63652073797374656d20696e20746865206465636973696f6e206d616b696e672e0a0a546865207061796f7574732077696c6c206265206d61646520696e205b6d6f6e65726f5d2868747470733a2f2f7765622e6765746d6f6e65726f2e6f72672f2920756e6c657373206e6f746564206f74686572776973652e204f75722063686f696365206f66207573696e67206d6f6e65726f20617320746865206d6574686f64206f66207061796d656e742069732074686174206974277320626f746820612077656c6c2065737461626c697368656420616e6420726570757461626c652070726f6a6563742c20616e64206172677561626c7920686173206265747465722070726976616379206665617475726573207468616e20736f6d65206f6620746865206f74686572206f7074696f6e732e0008f7a4220000000000f002855d0000000038787878787878787878787878787856a52200000000002a05855d000000005d0c23204f766572766965770a546869732074687265616420616e6420746865205b6f726967696e616c207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f2920617265207768657265207765207075626c6973682c20747261636b20616e6420646f63756d656e742074686520626f756e74792073797374656d20666f7220746865204a6f7973747265616d20706c6174666f726d2e20416e796f6e65206973206672656520746f206d616b652061205b70726f706f73616c5d282370726f706f73616c732920666f72206120626f756e74792c20616e6420616e796f6e65206973206672656520746f20636f6d7065746520666f72207468656d2e0a0a43757272656e746c792c20616c6c20626f756e746965732077696c6c206265206d6164652060616374697665602c2066756e6465642c20616e642077696c6c206265206576616c7561746564206279205b4a7367656e657369735d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f6a7367656e657369732f292e20496e20746865206675747572652c206f757220696e74656e74696f6e20697320746f206772616475616c6c7920696e766f6c76652074686520706c6174666f726d20676f7665726e616e63652073797374656d20696e20746865206465636973696f6e206d616b696e672e0a0a546865207061796f7574732077696c6c206265206d61646520696e205b6d6f6e65726f5d2868747470733a2f2f7765622e6765746d6f6e65726f2e6f72672f2920756e6c657373206e6f746564206f74686572776973652e204f75722063686f696365206f66207573696e67206d6f6e65726f20617320746865206d6574686f64206f66207061796d656e742069732074686174206974277320626f746820612077656c6c2065737461626c697368656420616e6420726570757461626c652070726f6a6563742c20616e64206172677561626c7920686173206265747465722070726976616379206665617475726573207468616e20736f6d65206f6620746865206f74686572206f7074696f6e732e6f43220000000000aab7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[30,"1e000000000000000c00000000000000010000003d0720232323232050726f626c656d0a417320746865206e6f6e2d636f6465207265706f732061726520757064617465642c206974277320646966666963756c7420746f2061766f696420696e74726f647563696e672062726f6b656e206c696e6b732c206572726f7273207769746820696d616765732c206772616d6d6172206d697374616b65732c20666f726d617474696e67206572726f72732c206574632e2054686973206d616b657320697420646966666963756c7420746f206e617669676174652c20616e642061646473206672696374696f6e20666f7220726561646572732e200a4e6f746520746861742074686973206170706c69657320746f20414c4c2074686520524541444d452e6d642066696c65732c206e6f74206a7573742074686520746f70206c6576656c206f6e652e0a0a2323232320476f616c730a496d70726f7665207175616c69747920616e64206163636573736962696c697479206f66206f7572207265706f732e0a0a2323232320526577617264730a2432207065722066697820746861742067657473206d65726765642e0a0a205f5375627374616e7469616c20696d70726f76656d656e7473206d61792062652072657761726465642065787472612e5f0008b2a42200000000005201855d000000003478787878787878787878787878d0a42200000000000602855d00000000390720232323232050726f626c656d0a417320746865206e6f6e2d636f6465207265706f732061726520757064617465642c206974277320646966666963756c7420746f2061766f696420696e74726f647563696e672062726f6b656e206c696e6b732c206572726f7273207769746820696d616765732c206772616d6d6172206d697374616b65732c20666f726d617474696e67206572726f72732c206574632e2054686973206d616b657320697420646966666963756c7420746f206e617669676174652c20616e642061646473206672696374696f6e20666f7220726561646572732e204e6f746520746861742074686973206170706c69657320746f20414c4c2074686520524541444d452e6d642066696c65732c206e6f74206a7573742074686520746f70206c6576656c206f6e652e0a0a2323232320476f616c730a496d70726f7665207175616c69747920616e64206163636573736962696c697479206f66206f7572207265706f732e0a0a2323232320526577617264730a2432207065722066697820746861742067657473206d65726765642e0a0a205f5375627374616e7469616c20696d70726f76656d656e7473206d61792062652072657761726465642065787472612e5f7343220000000000c2b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[31,"1f000000000000000d00000000000000010000007d03232323205f416c74686f756768207468697320626f756e7479206973207374696c6c206f70656e2c20626520617761726520746861742077652068617665206265656e20696e20636f6e746163742077697468206f6e65206170706c6963616e7420746861742063616d65207570207769746820736f6d65206164646974696f6e616c20696465617320616e642072657365617263682e205468697320706572736f6e20686173206265656e20676976656e202432353020746f20636f6e74696e7565206c6f6f6b696e6720696e746f206d6f72652064657461696c732e5f0008b6a52200000000006a07855d000000002c7878787878787878787878b9a52200000000007c07855d0000000079032323205f416c74686f756768207468697320626f756e7479206973207374696c6c206f70656e2c20626520617761726520746861742077652068617665206265656e20696e20636f6e746163742077697468206f6e65206170706c6963616e7420746861742063616d65207570207769746820736f6d65206164646974696f6e616c20696465617320616e642072657365617263682e205468697320706572736f6e20686173206265656e20676976656e202432353020746f20636f6e74696e7565206c6f6f6b696e6720696e746f206d6f72652064657461696c732e5f7943220000000000e6b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[32,"20000000000000000e0000000000000001000000310e23232050726f626c656d0a5765206861766520666f756e642061206c6f74206f662074686520636f6d6d6f6e206d656469612066696c652074797065732077696c6c206e6f7420706c617920696e205b70696f6e6565725d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292c20776974686f757420646f776e6c6f6164696e67207468652066696c652e0a0a232320476f616c730a496d70726f7665207468652055582c206279206b6e6f77696e672065786163746c7920776861742066696c6520747970657320776f726b732c20616e6420696e2077686963682062726f777365727320286368726f6d652f6368726f6d69756d2c2066697265666f7820616e6420736166617269292e0a0a232320526577617264730a4f75722066697273742070726f706f73616c206973202435302c2062757420696620616e206170706c6963616e742070726f6475636573206120676f6f64207465737420706c616e2c202869652e206c69737420616c6c20657874656e73696f6e732c2062726f777365727320616e64204f53277320746865792063616e2f77696c6c2074657374292c20746869732063616e206265206e65676f7469617465642e0a0a23232053636f7065206f6620576f726b20262044656c6976657261626c65730a55706c6f616420636f6e74656e7420696e20616c6c20227374616e646172642220666f726d6174732c20616e642070726f6475636520612066756c6c206c697374206f66207768617420776f726b7320696e2077686963682062726f77736572732f4f5327732e0a0a232320436f6e73747261696e74730a416c6c20636f6e74656e742075706c6f61646564206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f73292e0a0a232320426f756e747920666f726d61740a546865206170706c69636174696f6e287329206d75737420626520617070726f766564206265666f726520616e7920776f726b2077696c6c2062652072657761726465642e0a0a232320446561646c696e650a546865206170706c69636174696f6e20646561646c696e65206973207468652030382e30372e31392c2031353030474d542b322e0a0a285468697320626f756e7479206973206e6f206c6f6e676572206f70656e29000c05a62200000000004409855d0000000040787878787878787878787878787878780ca62200000000006e09855d00000000ed0d232323232050726f626c656d0a5765206861766520666f756e642061206c6f74206f662074686520636f6d6d6f6e206d656469612066696c652074797065732077696c6c206e6f7420706c617920696e205b70696f6e6565725d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292c20776974686f757420646f776e6c6f6164696e67207468652066696c652e0a0a2323232320476f616c730a496d70726f7665207468652055582c206279206b6e6f77696e672065786163746c7920776861742066696c6520747970657320776f726b732c20616e6420696e2077686963682062726f777365727320286368726f6d652f6368726f6d69756d2c2066697265666f7820616e6420736166617269292e0a0a2323232320526577617264730a4f75722066697273742070726f706f73616c206973202435302c2062757420696620616e206170706c6963616e742070726f6475636573206120676f6f64207465737420706c616e2c202869652e206c69737420616c6c20657874656e73696f6e732c2062726f777365727320616e64204f53277320746865792063616e2f77696c6c2074657374292c20746869732063616e206265206e65676f7469617465642e0a0a232323232053636f7065206f6620576f726b20262044656c6976657261626c65730a55706c6f616420636f6e74656e7420696e20616c6c20227374616e646172642220666f726d6174732c20616e642070726f6475636520612066756c6c206c697374206f66207768617420776f726b7320696e2077686963682062726f77736572732f4f5327732e0a0a2323232320436f6e73747261696e74730a416c6c20636f6e74656e742075706c6f61646564206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f73292e0a0a2323232320426f756e747920666f726d61740a546865206170706c69636174696f6e287329206d75737420626520617070726f766564206265666f726520616e7920776f726b2077696c6c2062652072657761726465642e0a0a2323232320446561646c696e650a546865206170706c69636174696f6e20646561646c696e65206973207468652030382e30372e31392c2031353030474d542b322e0a0a17a6220000000000b009855d000000004d0e2323232050726f626c656d0a5765206861766520666f756e642061206c6f74206f662074686520636f6d6d6f6e206d656469612066696c652074797065732077696c6c206e6f7420706c617920696e205b70696f6e6565725d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292c20776974686f757420646f776e6c6f6164696e67207468652066696c652e0a0a23232320476f616c730a496d70726f7665207468652055582c206279206b6e6f77696e672065786163746c7920776861742066696c6520747970657320776f726b732c20616e6420696e2077686963682062726f777365727320286368726f6d652f6368726f6d69756d2c2066697265666f7820616e6420736166617269292e0a0a23232320526577617264730a4f75722066697273742070726f706f73616c206973202435302c2062757420696620616e206170706c6963616e742070726f6475636573206120676f6f64207465737420706c616e2c202869652e206c69737420616c6c20657874656e73696f6e732c2062726f777365727320616e64204f53277320746865792063616e2f77696c6c2074657374292c20746869732063616e206265206e65676f7469617465642e0a0a2323232053636f7065206f6620576f726b20262044656c6976657261626c65730a55706c6f616420636f6e74656e7420696e20616c6c20227374616e646172642220666f726d6174732c20616e642070726f6475636520612066756c6c206c697374206f66207768617420776f726b7320696e2077686963682062726f77736572732f4f5327732e0a0a23232320436f6e73747261696e74730a416c6c20636f6e74656e742075706c6f61646564206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f73292e0a0a23232320426f756e747920666f726d61740a546865206170706c69636174696f6e287329206d75737420626520617070726f766564206265666f726520616e7920776f726b2077696c6c2062652072657761726465642e0a0a23232320446561646c696e650a546865206170706c69636174696f6e20646561646c696e65206973207468652030382e30372e31392c2031353030474d542b322e0a0a285468697320626f756e7479206973206e6f206c6f6e676572206f70656e297d43220000000000feb7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[33,"21000000000000000f0000000000000001000000550223232050726f626c656d0a5765206e65656420736f7572636573206f66206672656520616e6420617661696c61626c65206d6564696120636f6e74656e742c20696e20766172696f757320666f726d6174732c20696e2074686520666f6c6c6f77696e6720746f70206c6576656c2063617465676f726965733a0a0a2a20766964656f0a2a20617564696f0a2a20652d626f6f6b73000438a6220000000000760a855d000000002c7878787878787878787878844322000000000028b8825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[34,"2200000000000000100000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e0004f1dd2200000000009859865d00000000387878787878787878787878787878f5642200000000008e81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[35,"2300000000000000110000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e0004691a230000000000d0c5875d000000003478787878787878787878787878fa64220000000000ac81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[36,"2400000000000000120000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e00046a1a230000000000d6c5875d00000000447878787878787878787878787878787878ff64220000000000ca81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[37,"2500000000000000130000000000000001000000e90d0a23232052756e206173206120736572766963650a0a496620796f75206172652072756e6e696e6720796f7572206e6f6465206f6e2061205b6c696e75785d28236c696e75782920616e642077616e7420746f2072756e2069742061732061205b736572766963655d2868747470733a2f2f77696b692e64656269616e2e6f72672f73797374656d642f5365727669636573292c20796f752063616e207365742069742075702074686973207761792e0a4e6f7465207468617420796f752073686f756c642061766f6964207468697320756e6c65737320796f75206b6e6f77207768617420796f752061726520646f696e672c206172652072756e6e696e6720796f7572206e6f6465206f6e202a2a796f7572206f776e205650532a2a206f7220612073696e676c6520626f61726420636f6d70757465722e205769746820677265617420287375646f292070726976696c656765732c20636f6d657320677265617420726573706f6e736962696c6974696573210a0a496620796f752061726520616c72656164792072756e6e696e672061732061206076616c696461746f72602c20636f6e7369646572205b756e7374616b696e675d2823756e7374616b696e67292066697273742c20617320796f75206d617920657870657269656e636520736f6d6520646f776e74696d6520696620796f75206d616b6520616e79206d697374616b657320696e207468652073657475702e0a0a2323232320436f6e6669677572652074686520736572766963650a0a45697468657220617320726f6f742c206f72206120757365722077697468207375646f2070726976696c656765732e20496620746865206c61747465722c2061646420607375646f60206265666f726520636f6d6d616e64732e0a0a6060600a24206364202f6574632f73797374656d642f73797374656d0a2320796f752063616e2063686f6f7365207768617465766572206e616d6520796f75206c696b652c2062757420746865206e616d652068617320746f20656e642077697468202e736572766963650a2420746f756368206a6f7973747265616d2d6e6f64652e736572766963650a23206f70656e207468652066696c65207769746820796f7572206661766f7269746520656469746f7220284920757365206e616e6f2062656c6f77290a24206e616e6f206a6f7973747265616d2d6e6f64652e736572766963650a6060600004e61a230000000000bec8875d000000002c787878787878787878787816652200000000005482835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[38,"26000000000000001400000000000000010000005d0123232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e737765722068657265210a00082d1b23000000000068ca875d000000003478787878787878787878787878301b2300000000007aca875d000000005901232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e737765722068657265210a1c652200000000007882835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[39,"27000000000000001500000000000000010000004d0223204f766572766965770a0a54686973207468726561642077696c6c20636f6e7461696e20616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f75722073746f72616765206e6f646520616e64206265636f6d696e672061206053746f726167652050726f766964657260206f6e20746865204a6f7973747265616d20546573746e6574732e0004d0dc220000000000d252865d00000000407878787878787878787878787878787848652200000000008083835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[40,"28000000000000001600000000000000010000005501232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e7377657220686572652100043fdd2200000000006c55865d00000000487878787878787878787878787878787878784c652200000000009883835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[41,"2900000000000000170000000000000001000000dd03232047657420537461727465640a546f20676574207374617274656420616e64207061727469636970617465206f6e20746865204a6f7973747265616d20746573746e6574732c20796f75206d7573742066697273742067656e657261746520604b6579287329602c20616e64207369676e20757020666f72206120604d656d62657273686970602e2054686973207265717569726573206e6f20736f667477617265206f7220646f776e6c6f6164732c20616e642063616e20626520646f6e6520696e20796f75722062726f77736572205b686572655d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f7267292e000475dd220000000000b056865d00000000307878787878787878787878787f65220000000000ca84835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[42,"2a00000000000000180000000000000001000000510223204f766572766965770a0a54686973207061676520636f6e7461696e7320612064657461696c65642067756964652061626f757420686f772074686520676f7665726e616e63652073797374656d20776f726b73206f6e207468652063757272656e74204a6f7973747265616d20746573746e65742c20616e6420686f7720796f752063616e2070617274696369706174652e000487dd2200000000001c57865d000000003c7878787878787878787878787878788365220000000000e284835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[43,"2b000000000000001900000000000000010000003504576520686176656e277420726563656976656420616e79207265706f727473206f662070726f626c656d732077697468207468697320726f6c652c20736f20746869732074726f75626c6573686f6f74696e672074687265616420697320626c616e6b20666f72206e6f772e204c6574207573206b6e6f7720696620796f7520617265207374727567676c696e67207769746820616e797468696e67206f6e205b4769744875625d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b2f292c206f7220696e206f7572205b54656c656772616d2047726f75705d2868747470733a2f2f742e6d652f4a6f7953747265616d4f6666696369616c292e0004b4dd2200000000002a58865d00000000487878787878787878787878787878787878788665220000000000f484835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[44,"2c000000000000001a0000000000000001000000e904232320427567205265706f72746572730a4173207769746820616c6c20736f6674776172652c20616e6420657370656369616c6c7920746865206561726c792076657273696f6e732c2074686572652077696c6c20626520706c656e7479206f6620627567732c206d697373696e6720666561747572657320616e6420656e68616e63656d656e74732072657175697265642e20426f746820746f20696d70726f766520617320776520676f2c20616e6420746f2022747261696e2220612067726f7570206f66207465737465727320616e6420646576656c6f7065727320666f72206f7572206175746f6e6f6d6f757320706c6174666f726d2c2077652077616e74205f6f75747369646572735f20746f20737461727420636f6e747269627574696e6720617320736f6f6e20617320706f737369626c652e0004cadd220000000000ae58865d000000003c78787878787878787878787878787890652200000000003085835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[45,"2d000000000000001b0000000000000001000000cd0823232320496e737472756374696f6e730a417320616e206f70656e2d736f757263652070726f6a6563742c2077652074727920746f20666f6c6c6f7720746865207374616e6461726420636f6e76656e74696f6e7320616e6420776f726b666c6f772e0a0a496620796f752066696e642061206275672c206f722077616e7420746f20696d70726f7665206f722061646420736f6d657468696e6720696e2074686520636f64652c20646f63756d656e746174696f6e73206f72206775696465732c206c6f636174652074686520636f7272656374207265706f2066726f6d20746865206f7267616e697a6174696f6e205b696e6465785d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292e20466f726b20746865207265706f2c206d616b6520746865206368616e67657320796f752077616e7420746f20616464726573732c20616e64206372656174652061206050756c6c2072657175657374602e20466f72206f7572206d757475616c20636f6e76656e69656e63652c20697420776f756c64206265206e69636520696620796f752072616973656420616e206049737375656020666972737420736f2077652063616e206167726565206f6e207468652073636f70652c207468652073697a65206f662074686520626f756e747920616e64206d616b652073757265207468697320697320736f6d657468696e672077652077616e742f6e6565642e0004dddd2200000000002059865d000000003c7878787878787878787878787878789e652200000000008485835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[46,"2e000000000000000c00000000000000020000005d06232323232053636f7065206f6620576f726b20262044656c6976657261626c65730a466f726b20746865207265706f2c20616e642066697820776861742069732062726f6b656e2e205468656e206d616b65206120505220696e20746865206170706c696361626c65207265706f2c20616e6420726566657220746f2069742061207265706c7920616e7377657220696e207468697320746872656164206f7220746865204769744875622069737375652e0a0a4170706c696361626c65207265706f73206172653a0a0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f636f6d6d756e69636174696f6e730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f64657369676e0004cca4220000000000ee01855d000000000906232323232053636f7065206f6620576f726b20262044656c6976657261626c65730a466f726b20746865207265706f2c20616e642066697820776861742069732062726f6b656e2e205468656e206d616b65206120505220696e20746865206170706c696361626c65207265706f2c20616e6420726566657220746f2069742061207265706c7920616e7377657220696e20746869732069737375652e0a0a4170706c696361626c65207265706f73206172653a0a0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f636f6d6d756e69636174696f6e730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f64657369676eb7a42200000000007001855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[47,"2f000000000000000c0000000000000003000000fd0e2323232320436f6e73747261696e74730a312e20416c74686f7567682073756767657374696f6e7320666f7220636c6172696669636174696f6e732c20696d70726f76656d656e74732c206574632e2061726520616c776179732077656c636f6d652c20706c6561736520616464207468656d20617320636f6d6d656e747320696e7374656164206f6620696e636c7564696e67207468656d20696e2074686520505220697473656c662c20746f206d616b65207468652050522065617369657220746f207265766965772e2049662074686520726576696577657220616772656573207769746820796f75722073756767657374696f6e2c20796f752063616e206164642061206e657720636f6d6d697420746f207468652050522e0a322e20416c6c206c696e6b732077697468696e207468652073616d65207265706f206d7573742062652072656c617469766520696e7374656164206f66206162736f6c7574652e204578616d706c653a0a0a6060600a232046726f6d2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c69730a2320596f752077616e7420746f206c696e6b20746f3a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e670a2320446f20746869733a0a5b6c696e6b5d282e2e2f2e2e2f6d656574696e67732f6163726f706f6c69732f236c61756e63682d6d656574696e67290a23204e6f7420746869733a0a5b6c696e6b5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e67290a6060600a0a332e205768656e20796f7520737461727420776f726b696e672c206665656c206672656520746f206d616b65206120647261667420505220746f2073686f7720796f757220696e74656e742c206275742070726566657261626c7920636865636b2074686520656e74697265207265706f206265666f72650a50726566657261626c7920676f207468726f756768205f616c6c5f20746865206c696e6b73206265666f7265206d61726b696e6720697420726561647920666f72207265766965772c20616e642061737369676e696e6720736f6d656f6e6520746f2072657669657720796f75722e0004c2a4220000000000b201855d00000000fd0e2323232320436f6e73747261696e74730a312e20416c74686f7567682073756767657374696f6e7320666f7220636c6172696669636174696f6e732c20696d70726f76656d656e74732c206574632e2061726520616c776179732077656c636f6d652c20706c6561736520616464207468656d20617320636f6d6d656e747320696e7374656164206f6620696e636c7564696e67207468656d20696e2074686520505220697473656c662c20746f206d616b65207468652050522065617369657220746f207265766965772e2049662074686520726576696577657220616772656573207769746820796f75722073756767657374696f6e2c20796f752063616e206164642061206e657720636f6d6d697420746f207468652050522e0a322e20416c6c206c696e6b732077697468696e207468652073616d65207265706f206d7573742062652072656c617469766520696e7374656164206f66206162736f6c7574652e204578616d706c653a0a0a6060600a232046726f6d2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c69730a2320596f752077616e7420746f206c696e6b20746f3a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e670a2320446f20746869733a0a5b6c696e6b5d282e2e2f2e2e2f6d656574696e67732f6163726f706f6c69732f236c61756e63682d6d656574696e67290a23204e6f7420746869733a0a5b6c696e6b5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e67290a6060600a0a312e205768656e20796f7520737461727420776f726b696e672c206665656c206672656520746f206d616b65206120647261667420505220746f2073686f7720796f757220696e74656e742c206275742070726566657261626c7920636865636b2074686520656e74697265207265706f206265666f72650a50726566657261626c7920676f207468726f756768205f616c6c5f20746865206c696e6b73206265666f7265206d61726b696e6720697420726561647920666f72207265766965772c20616e642061737369676e696e6720736f6d656f6e6520746f2072657669657720796f75722ebba42200000000008801855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[48,"30000000000000000c0000000000000004000000090a5f557064617465202d2030352e30382e31395f0a0a342e20506c656173652075736520555320456e676c697368207370656c6c696e6720666f7220636f6e73697374656e6379206163726f737320746865206f7267616e697a6174696f6e2e0a352e20496465616c6c792c20757365205b61746f6d5d2868747470733a2f2f61746f6d2e696f2f2920617320796f757220656469746f722c20616e64206164642074686520666f6c6c6f77696e6720706c7567696e733a0a0a2a205b6d61726b646f776e2d707265766965772d656e68616e6365645d2868747470733a2f2f61746f6d2e696f2f7061636b616765732f6d61726b646f776e2d707265766965772d656e68616e636564290a2a205b6d61726b646f776e2d746f632d6175746f5d2868747470733a2f2f61746f6d2e696f2f7061636b616765732f6d61726b646f776e2d746f632d6175746f290a0a546f20656e737572652069742072656e6465727320636f72726563746c792e0a0a2323232320426f756e747920666f726d61740a466972737420636f6d652066697273742073657276652e20506179206f7574206f6e2064656c69766572792e0a466f72206f757220636f6e76656e69656e63652c20616464206120636f6d6d656e7420616e64206c696e6b20746f2074686520505220696e20746869732069737375652c2077697468206e756d626572206f6620666978657320616e64206578706563746564207061796f7574732e0a0a2323232320446561646c696e650a57696c6c206d6f7374206c696b656c79206265206b657074206f70656e20666f722079656172732e2057696c6c20686f6e6f7220636f6e747269627574696f6e732034386820616674657220636c6f73696e672e0000c5a4220000000000c401855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[49,"31000000000000000c00000000000000050000008902232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e000473a5220000000000d805855d000000007d02546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292edda42200000000005402855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[50,"32000000000000000b000000000000000200000059044a7367656e6573697320697320616c736f206d616b696e67207765656b6c79207061796f75747320666f722070617274696369706174696f6e206f6e20746865205b4a6f7973747265616d20746573746e6574735d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292e204d6f726520696e666f726d6174696f6e2061626f757420746865207768617420796f752063616e2c207768617420796f752063616e206d616b652c20616e642077687920776527726520646f696e6720746869732063616e20626520666f756e6420696e206f7572205b68656c706465736b207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b292e0000faa42200000000000203855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[51,"33000000000000000b000000000000000300000029022a2a4b65657020696e206d696e642074686174206f757220626f756e74792073797374656d2069732061205749502c20616e642069742073686f756c642062652065787065637465642074686174206368616e67657320746f207468652070726f636573732077696c6c206265206d616465206173207468652070726f6a6563742067726f77732e2a2a000404a52200000000003e03855d0000000055092a2a4b65657020696e206d696e642074686174206f757220626f756e74792073797374656d2069732061205749502c20616e642069742073686f756c642062652065787065637465642074686174206368616e67657320746f207468652070726f636573732077696c6c206265206d616465206173207468652070726f6a6563742067726f77732e2a2a0a0a23232053756d6d617279206f6620426f756e746965730a0a7c204c6173742055706461746564207c20426f756e7469657320436f6e636c75646564207c204f6e676f696e6720426f756e74696573207c204f6666696369616c6c792050616964207c204f6c64205061796f757473602a6020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2031372e30372e313920202020207c20202020202020203020202020202020202020207c2020202020202020203320202020202020207c202020202a2a243632362a2a20202020207c20202020202a2a243231342a2a202020207c0a0a602a602044656e6f74657320626f756e746965732070616964206f7574206265666f72652074686520226f6666696369616c22207265706f207761732075702e20536f6d65206f6620746865736520626f756e746965732063616e20626520666f756e6420696e206f74686572207265706f732c20736f6d6520776572652073696d706c7920706f73746564206f6e2054656c656772616d2effa42200000000002003855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[52,"34000000000000000b000000000000000400000029070a23232053756d6d617279206f6620426f756e746965730a0a7c204c6173742055706461746564207c20426f756e7469657320436f6e636c75646564207c204f6e676f696e6720426f756e74696573207c204f6666696369616c6c792050616964207c204f6c64205061796f757473602a6020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2031372e30372e313920202020207c20202020202020203020202020202020202020207c2020202020202020203320202020202020207c202020202a2a243632362a2a20202020207c20202020202a2a243231342a2a202020207c0a0a602a602044656e6f74657320626f756e746965732070616964206f7574206265666f72652074686520226f6666696369616c22207265706f207761732075702e20536f6d65206f6620746865736520626f756e746965732063616e20626520666f756e6420696e206f74686572207265706f732c20736f6d6520776572652073696d706c7920706f73746564206f6e2054656c656772616d2e000006a52200000000004a03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[53,"35000000000000000b00000000000000050000001d0923232053756d6d617279206f6620546573746e65742050617274696369706174696f6e205061796f7574730a0a23232320546f74616c0a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030322e30382e313920202020207c2020202024383537202020207c20202020202024393337202020202020207c2020202020243338333920202020202020207c2020202a2a24353633332a2a20202020207c0a0a0a232323204163726f706f6c69730a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030322e30382e313920202020207c2020202024343833202020207c20202020202024353130202020202020207c2020202020202433303634202020202020207c202020202a2a24343035372a2a202020207c0a00000ba52200000000006803855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[54,"36000000000000000b0000000000000006000000790723232320417468656e730a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2032342e30362e313920202020207c2020202020243236332020207c20202020202020243237322020202020207c2020202020202437373520202020202020207c2020202a2a24313331302a2a20202020207c0a0a0a232323205370617274610a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2020202020546f74616c202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030312e30342e313920202020207c2020202020243131312020207c20202020202024313535202020202020207c20202020202a2a243236362a2a202020207c00000ea52200000000007a03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[55,"37000000000000000b00000000000000070000000d07232320426f756e746965730a0a2d202a2a4e756d6265722a2a0a20202d205768656e206120626f756e7479206265636f6d65732060616374697665602c2069742077696c6c2062652061737369676e65642061206e756d626572206261736564206f6e20697473206368726f6e6f6c6f676963616c206f726465722e0a0a2d202a2a5469746c652a2a0a20202d20412062726965662c206465736372697074697665207469746c650a0a2d202a2a4c696e6b2a2a0a20202d204c696e6b20746f20746865205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920776974682064657461696c732e0a0a2d202a2a43617465676f72792a2a0a286e6f6e2d65786861757374697665290a20202d206042756720666978600a20202d206054657374696e67600a20202d2060446f63756d656e746174696f6e600a20202d2060496d70726f76656d656e7473600a20202d20604d61726b6574696e67600a20202d2060476f7665726e616e6365600a20202d20604e65772066656174757265600a20202d206050726f6a656374206d616e6167656d656e74600a20202d206048656c7060000014a52200000000009e03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[56,"38000000000000000b0000000000000008000000d5082d202a2a537461727420446174652a2a0a20202d2054686520646174652074686520626f756e747920626563616d652060616374697665600a0a2d202a2a41737369676e65652873292a2a0a20202d20496620616e206170706c6963616e7420686173206265656e20617070726f76656420746f20737461727420776f726b2c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a757374207374617465206041737369676e6564602e0a0a2d202a2a5374617475732a2a0a20202d2041637469766520426f756e746965730a202020202d20604f70656e600a202020202d206041737369676e6564600a202020202d2060556e64657220726576696577600a202020202d20604f6e20486f6c64600a20202d20436f6e636c7564656420426f756e746965730a202020202d2060436f6d706c65746564600a202020202d206045787069726564600a202020202d206041626f72746564600a20202d204d6f72652064657461696c73206f6e20746865207374617475732063616e20626520666f756e6420627920666f6c6c6f77696e6720746865206c696e6b20666f72207468652070726f706f73616c206f6620696e7465726573742e0a0a2d202a2a506169642a2a0a20202d2054686520616d6f756e742070616964206f75742074687573206661722e00041ca5220000000000ce03855d0000000081092d202a2a537461727420446174652a2a0a20202d2054686520646174652074686520626f756e747920626563616d652060616374697665600a0a2d202a2a41737369676e65652873292a2a0a20202d20496620616e206170706c6963616e7420686173206265656e20617070726f76656420746f20737461727420776f726b2c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a757374207374617465206041737369676e6564602e0a0a2d202a2a5374617475732a2a0a20202d205b41637469766520426f756e746965735d28236163746976652d626f756e74696573290a202020202d20604f70656e600a202020202d206041737369676e6564600a202020202d2060556e64657220726576696577600a202020202d20604f6e20486f6c64600a20202d205b436f6e636c7564656420426f756e746965735d2823636f6e636c756465642d626f756e74696573290a202020202d2060436f6d706c65746564600a202020202d206045787069726564600a202020202d206041626f72746564600a20202d204d6f72652064657461696c73206f6e20746865207374617475732063616e20626520666f756e6420627920666f6c6c6f77696e6720746865206c696e6b20666f72207468652070726f706f73616c206f6620696e7465726573742e0a0a2d202a2a506169642a2a0a20202d2054686520616d6f756e742070616964206f75742074687573206661722e16a5220000000000aa03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[57,"39000000000000000b0000000000000009000000b1072d202a2a426f756e74792a2a0a20202d2041637469766520426f756e746965730a202020202d205468652076616c7565206f662074686520626f756e74792e0a20202d20436f6e636c7564656420426f756e746965730a202020202d2054686520746f74616c20616d6f756e742070616964206f75742e0a20202d2049662074686520616d6f756e7420697320666f6c6c6f77656420627920602a602c20636f6e73756c7420746865206c696e6b6564205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920666f72206d6f726520696e666f726d6174696f6e2e0a0a2d202a2a456e6420446174652a2a0a20202d2054686520646174652074686520626f756e7479207761732060636f6e636c75646564600a0a2d202a2a436c61696d616e742873292a2a0a20202d2049662074686520626f756e747920776173207375636365737366756c6c7920636c61696d65642c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a7573742073746174652060436c61696d6564602e0a000424a5220000000000fe03855d000000005d082d202a2a426f756e74792a2a0a20202d205b41637469766520426f756e746965735d28236163746976652d626f756e74696573290a202020202d205468652076616c7565206f662074686520626f756e74792e0a20202d205b436f6e636c7564656420426f756e746965735d2823636f6e636c756465642d626f756e74696573290a202020202d2054686520746f74616c20616d6f756e742070616964206f75742e0a20202d2049662074686520616d6f756e7420697320666f6c6c6f77656420627920602a602c20636f6e73756c7420746865206c696e6b6564205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920666f72206d6f726520696e666f726d6174696f6e2e0a0a2d202a2a456e6420446174652a2a0a20202d2054686520646174652074686520626f756e7479207761732060636f6e636c75646564600a0a2d202a2a436c61696d616e742873292a2a0a20202d2049662074686520626f756e747920776173207375636365737366756c6c7920636c61696d65642c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a7573742073746174652060436c61696d6564602e0a20a5220000000000e603855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[58,"3a000000000000000b000000000000000a000000310523232050726f706f73616c730a0a496e206164646974696f6e20746f20746865204a7367656e65736973207465616d2c20636f6d6d756e697479206d656d626572732c206e657720616e64206f6c642c2073686f756c64206e6f742062652061667261696420746f2070726f706f736520626f756e746965732e20417420736f6d6520706f696e742c20776520686f706520746f2063726561746520612073797374656d206569746865722073696d696c617220746f20746865205b4249505d2868747470733a2f2f6769746875622e636f6d2f626974636f696e2f62697073292070726f6365737320666f7220626974636f696e20616e642f6f7220746f20746865205b4646535d2868747470733a2f2f666f72756d2e6765746d6f6e65726f2e6f72672f392f776f726b2d696e2d70726f6772657373292073797374656d20666f72206d6f6e65726f2e000033a52200000000005804855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[59,"3b000000000000000b000000000000000b000000950f232323205374657020627920537465700a0a546869732073656374696f6e206f75746c696e6573207468652073746570732066726f6d20612070726f706f73616c73206973206d6164652c20746f2068617665206974206265636f6d6520616e205b41637469766520426f756e74795d28236163746976652d626f756e74696573292e0a0a312e20496620796f7520617265206e6f742066616d696c6961722077697468207468652070726f6a65637420616e642069747320676f616c732c20636f6e73696465722074686520666f6c6c6f77696e6720736f75726365733a0a20202d205468652070726f6a656374205b6d616e69666573746f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6d616e69666573746f292e0a20202d205468652070726f6a656374205b776869746570617065725d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f77686974657061706572292e0a20202d204f7572206c6f6e67206f722073686f7274207465726d205b4f4b52735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6f6b7273292e0a596f75722070726f706f73616c2073686f756c642070726566657261626c7920626520696e206c696e6520776974682c206f72206174206c65617374206e6f74206f7274686f676f6e616c20746f20746865736520736f75726365732e20526566657272696e6720746f20616e2069737375652066726f6d206f6e65206f66206f7572206f74686572207265706f732063616e20616c736f206265206120676f6f6420736f757263652e0a0a496620796f75206861766520612070726f706f73616c207468617420646f6573206e6f74207265616c6c792066697420756e64657220616e79206f66207468652061626f76652c206665656c206672656520746f2067617567652074686520696e74657265737420616e642072656c6576616e636520696e2061206d6f726520696e666f726d616c206d616e6e65722c20652e672e20696e206f6e65206f66206f757220636f6d6d756e69636174696f6e206368616e6e656c732c2073756368206173205b54656c656772616d5d2868747470733a2f2f742e6d652f4a6f7953747265616d4f6666696369616c292c206f722074686520666f72756d2c20616674657220697420686173206265656e20696e74726f647563656420696e205b4163726f706f6c69735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c6973292e000036a52200000000006a04855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[60,"3c000000000000000b000000000000000c000000f907322e204d616b6520616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920696e2074686520626f756e74696573207265706f2c207374727563747572656420617320666f6c6c6f77733a0a0a0a23232323205469746c650a0a2d202a2a4a43502a2a202d202a2a4465736372697074697665205469746c652a2a0a0a232323232320426f64790a0a2d202a2a50726f626c656d3a2a2a0a50726f766964652061206465736372697074696f6e206f66207468652070726f626c656d206f7220696d70726f76656d656e7420796f75207769736820746f2073656520696d706c656d656e7465642e0a2d202a2a476f616c733a2a2a0a41206272696566206465736372697074696f6e206f662074686520676f616c7320796f7520686f706520746f20616368696576652c20616e6420686f772069742077696c6c2062656e6566697420746865204a6f7973747265616d2050726f6a6563742e0a0a54686573652061726520746865206d696e696d756d20726571756972656d656e74732c2062757420796f752061726520656e636f75726167656420746f206c6f6f6b20617420746865205b626f756e7479207374727563747572655d2823626f64792d312920666f7220616e797468696e6720657874726120746f206164642e00044aa5220000000000e204855d00000000d907322e204d616b6520616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920696e2074686973207265706f2c207374727563747572656420617320666f6c6c6f77733a0a0a0a23232323205469746c650a0a2d202a2a4a43502a2a202d202a2a4465736372697074697665205469746c652a2a0a0a232323232320426f64790a0a2d202a2a50726f626c656d3a2a2a0a50726f766964652061206465736372697074696f6e206f66207468652070726f626c656d206f7220696d70726f76656d656e7420796f75207769736820746f2073656520696d706c656d656e7465642e0a2d202a2a476f616c733a2a2a0a41206272696566206465736372697074696f6e206f662074686520676f616c7320796f7520686f706520746f20616368696576652c20616e6420686f772069742077696c6c2062656e6566697420746865204a6f7973747265616d2050726f6a6563742e0a0a54686573652061726520746865206d696e696d756d20726571756972656d656e74732c2062757420796f752061726520656e636f75726167656420746f206c6f6f6b20617420746865205b626f756e7479207374727563747572655d2823626f64792d312920666f7220616e797468696e6720657874726120746f206164642e3ba52200000000008804855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[61,"3d000000000000000b000000000000000d0000003106332e20496620796f7520776973682c20616e6e6f756e636520796f75722070726f706f73616c20696e206f6e65206f66206f757220636f6d6d756e69636174696f6e206368616e6e656c73206d656e74696f6e65642061626f76652e20546869732077696c6c206c696b656c792067656e6572617465206d6f726520666565646261636b2e0a0a342e2041206d656d626572206f6620746865204a7367656e65736973207465616d2077696c6c207265706c7920696e20612074696d656c79206d616e6e65722c2061736b696e6720666f72206d6f726520696e666f726d6174696f6e2c2072656a656374696e67206f7220617070726f76696e6720796f75722070726f706f73616c2e0a0a352e204966206974206765747320617070726f7665642c204a7367656e657369732077696c6c2065697468657220777269746520616e6420616e6e6f756e63652074686520626f756e7479206173206465736372696265642062656c6f772c206f722064656c65676174652074686520726573706f6e736962696c6974792e0a00003da52200000000009404855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[62,"3e000000000000000b000000000000000e000000850623232320416e6e6f756e63696e672041637469766520426f756e746965730a0a5768656e2061205b70726f706f73616c5d282370726f706f73616c732920686173206265656e20617070726f7665642c206f72204a7367656e657369732068617665206964656e74696669656420736f6d657468696e67207375697461626c6520666f72206120626f756e74792c2069742077696c6c20626520616e6e6f756e63656420617320616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f697373756573292c20616e6420616464656420746f20746865205b41637469766520426f756e746965735d28236163746976652d626f756e7469657329207461626c652e0a0a486f77207468652070726f63657373206c6f6f6b732066726f6d2074686520604163746976656020737461676520746f2060436f6e636c75646564602077696c6c20646570656e64206f6e207468652073636f7065206f6620776f726b2c202a2a43617465676f72792a2a2c207061796f7574207374727563747572652c206574632e00084da5220000000000f404855d000000007d062320416e6e6f756e63696e672041637469766520426f756e746965730a0a5768656e2061205b70726f706f73616c5d282370726f706f73616c732920686173206265656e20617070726f7665642c206f72204a7367656e657369732068617665206964656e74696669656420736f6d657468696e67207375697461626c6520666f72206120626f756e74792c2069742077696c6c20626520616e6e6f756e63656420617320616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f697373756573292c20616e6420616464656420746f20746865205b41637469766520426f756e746965735d28236163746976652d626f756e7469657329207461626c652e0a0a486f77207468652070726f63657373206c6f6f6b732066726f6d2074686520604163746976656020737461676520746f2060436f6e636c75646564602077696c6c20646570656e64206f6e207468652073636f7065206f6620776f726b2c202a2a43617465676f72792a2a2c207061796f7574207374727563747572652c206574632e51a52200000000000c05855d000000008106232320416e6e6f756e63696e672041637469766520426f756e746965730a0a5768656e2061205b70726f706f73616c5d282370726f706f73616c732920686173206265656e20617070726f7665642c206f72204a7367656e657369732068617665206964656e74696669656420736f6d657468696e67207375697461626c6520666f72206120626f756e74792c2069742077696c6c20626520616e6e6f756e63656420617320616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f697373756573292c20616e6420616464656420746f20746865205b41637469766520426f756e746965735d28236163746976652d626f756e7469657329207461626c652e0a0a486f77207468652070726f63657373206c6f6f6b732066726f6d2074686520604163746976656020737461676520746f2060436f6e636c75646564602077696c6c20646570656e64206f6e207468652073636f7065206f6620776f726b2c202a2a43617465676f72792a2a2c207061796f7574207374727563747572652c206574632e42a5220000000000b204855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[63,"3f000000000000000b000000000000000f000000f901232320466f72206d6f726520696e666f726d6174696f6e206f6e20626f756e746965732c20706c6561736520766973697420746865205b6a6f7973747265616d2f626f756e746965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f29207265706f7369746f72792e00006ca5220000000000ae05855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[64,"40000000000000000d00000000000000020000001d0823232050726f626c656d0a417320646f63756d656e74656420696e205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336385d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336395d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3639292c2073686f776e20696e205b74656c656d74657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f232f4a6f7973747265616d253230546573746e657425323076322920616e64206469736375737365642068656176696c7920696e206f757220636f6d6d756e697479206368616e6e656c732c206b656570696e672061207375737461696e65642068696768207065657220636f756e74206861732070726f76656420646966666963756c742e2052756e6e696e6720746865206e6f646520776974682064656661756c742073657474696e677320616e64206c656176696e6720697420666f722061206c6f6e672074696d652077696c6c206c696b656c7920726573756c7420696e3a0000bfa5220000000000a007855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[65,"41000000000000000d00000000000000030000005908312e204120636f6e74696e756f75732064726f7020696e20706565727320286173207468652022706f6f6c22206f6620323520676574732066696c6c656420776974682066726f7a656e206e6f6465732c20616e64206e6f6465732066726f6d206f74686572206e6574776f726b73292e0a322e20412074656e64656e637920666f7220636c7573746572696e67207065657273202869652e20612067726f7570206f66206e6f646573206f6e6c792f6d6f73746c7920636f6e6e656374656420746f2065616368206f74686572290a332e2048696768206c6174656e63792c206c656176696e67206076616c696461746f72736020746f20676574207761726e696e67732f736c617368696e67732f62616e6e65642064756520746f20616e2022756e666f7274756e61746522206f7264657220696e207468652071756575652e0a342e205468697320616761696e20686173206c65616420746f20666f726b732c20656974686572206265636175736520746865206f6e6520226f75747369646522206e6f646520696e2074686520636c7573746572202872656620322e292068617320676f6e65206f66666c696e652c20616e642f6f72206265636175736520736f6d65206e6f64657320636f6e7369646572207468652070726f706f73656420626c6f636b20746f2062652077697468696e207468652074696d65206c696d69742c20616e64206f7468657273206e6f742e0000c4a5220000000000be07855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[66,"42000000000000000d00000000000000040000001d0a417320612073696465206e6f74652c207468657265206973206120636c7573746572696e67206f66206e6f64657320696e204575726f70652c20627574207468652072657374206f662074686520776f726c64206973206e6f742061732077656c6c20726570726573656e7465642c20696e6372656173696e67206c6174656e637920616e6420616464696e6720746f207468652070726f626c656d2e0a0a417320776520646f6e27742077616e7420746f2072657374617274206f7572206e6574776f726b20616761696e20286173206f75746c696e656420696e205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336395d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f363929292c2077652068617665206164766973656420757365727320746f3a0a0a2a20696e637265617365207065657220636f756e7420627920616464696e672074686520666c6167730a2020602d2d696e2d7065657273206e202d2d6f7574207065657273206d600a20207768657265206e20616e64206d203e2032352e0a2a2072657374617274207468656972206e6f646520617420726567756c617220696e74657276616c730a0a426f7468206f6620746865736520696d70726f7665732074686520736974756174696f6e2c206275742074686520666f726d657220696e63726561736573206d656d6f72792075736167652c20616e6420746865206c61747465722072657175697265732061206d6f72652068616e6473206f6e20617070726f6163682c206f72206d6f726520616476616e6365642073657474696e67732e0a0000c7a5220000000000d007855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[67,"43000000000000000d0000000000000005000000110d23232050726f706f73616c0a446f2061206d61726b6574696e672063616d706169676e2c207768657265206578697374696e6720636f6d6d756e697479206d656d626572732061726520676976656e20604a6f7973747265616d60206272616e6465642073696e676c6520626f61726420636f6d70757465727320287261737062657272792070692773206f722073696d696c61722920666f7220667265652c20746f2072756e206173206e6f6465732e20546865792077696c6c207265636569766520726567756c6172206d6f6e65726f207061796d656e747320746f20636f76657220656c65637472696369747920616e642074686569722074696d65206966207468656972206e6f64657320686176652073756666696369656e7420757074696d652e20546865792077696c6c206f6620636f757273652067657420746f206b656570207468652052425073206e6f206d617474657220776861742e205468657365206e6f6465732077696c6c206d6179206f72206d6179206e6f74206265207061696420666f72206265696e67206076616c696461746f7273602e0a492062656c6965766520746869732063616e2068656c7020696e2074686520666f6c6c6f77696e6720776179733a0a0a312e20496e63726561736520746865206e6f646520636f756e742c2077686963682077696c6c3a0a2020200a2020202a20696d70726f766520746865206e6574776f726b0a2020202a2070726f6d6f7465206f75722022706f736974696f6e2220696e20746865205b74656c656d74657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f232f4a6f7973747265616d253230546573746e6574253230763229206869657261726368790a322e2046757274686572206275696c6420616e6420656e636f75726167652074686520636f6d6d756e6974792e0a332e2048656c7020696d70726f76652074686520746563686e6963616c20736b696c6c73206f662074686520726563656976696e67206d656d626572732028746865792077696c6c206f6620636f757273652067657420737570706f72742c206275742077652077696c6c206e6f74207368697020746865206e6f646573207769746820736f667477617265290000caa5220000000000e207855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[68,"44000000000000000d0000000000000006000000810c232320436f73740a41205b7261737062657272792070695d2868747470733a2f2f7777772e616d617a6f6e2e636f6d2f41424f582d5261737062657272792d436f6d706c6574652d4d6f74686572626f6172642d4865617473696e6b2f64702f423037443856585752592f7265663d73725f315f31373f637269643d31385153535758575649485059266b6579776f7264733d7261737062657272792b70692b332b62253242267169643d3135353735303930363826733d6761746577617926737072656669783d7261737062657272792b702532436170732532433430392673723d382d313729207769746820616c6c20746865206e65656465642065787472612065717569706d656e7420636f7374732061726f756e64207e38302420772f6f207368697070696e672e2042792073686f7070696e672061726f756e642c20627579696e6720696e2062756c6b2c20616e6420636f6e7369646572206368656170657220626f617264732a2c20612076657279206869676820656e6420657374696d61746520636f6d657320746f202431303020736869707065642e2047657474696e672074686520636f737420646f776e20746f20243530206d6967687420626520706f737369626c652c20627574206120627564676574206f6620243130302f707220626f6172642069732073696d706c6520616e6420636f6e7365727661746976652e0a0a2a63757272656e746c792c20626f617264732061732073696d706c6520617320746865205b6f72616e6765207069207a65726f5d2868747470733a2f2f7777772e616c69657870726573732e636f6d2f6974656d2f4f72616e67652d50692d5a65726f2d48322d517561642d436f72652d4f70656e2d736f757263652d3531324d422d50726f746563746976652d57686974652d436173652d646576656c6f706d656e742d626f6172642d6265796f6e642d5261737062657272792f33323739393131313631312e68746d6c3f73706d3d61326730732e393034323331312e302e302e3165663734633464414778444932292063616e205f63757272656e746c795f2072756e206f6e20746865206e6574776f726b2e0000cda5220000000000f407855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[69,"45000000000000000d0000000000000007000000910a57652077696c6c20706c616365206120626f756e747920666f7220617272616e67696e67207468652077686f6c65207468696e672c2069652e206465616c696e67207769746820737570706c6965727320666f7220626f6172647320616e64206272616e64696e672c20636f6d70696c696e672061206c697374206f6620726563697069656e74732c20616e6420617272616e67696e6720666f72207368697070696e672e205342437320706f77657220636f6e73756d7074696f6e20697320636c6f736520746f206e65676c696769626c652c20736f20706179696e672024382f6d6f6e7468202d3e20243130302f796561722c20666f7220757074696d65203e393525207365656d7320666169722e0a0a417373756d696e672077652070726f7669646520353020626f617264732c2074686520746f74616c20636f737420617373756d696e672074686520626f617264732061726520706f77657266756c20656e6f75676820746f20737570706f72742074686520696e6372656173696e67206e6574776f726b206c6f616420666f72207e3120796561722e202857652077696c6c206c696b656c79206861766520746f207374617274206e657720636861696e73206f6e6365206f72207477696365207072207965617220616e79776179292e0a0a4974656d0951747909436f73740a426f61726409353009243130300a205061796f757473097e3438302a0924380a426f756e74792a2a093109243235300a2a2a544f54414c2a2a092a2a4e412a2a092a2a24393039302a2a0a2a417373756d696e6720736f6d65206c6f737320616c6f6e6720746865207761792e0a2a2a74686520626f756e747920636f7374207761732063686f73656e20627920612070736575646f2d72616e646f6d206e756d6265722067656e657261746f722e0a0000d2a52200000000001208855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[70,"46000000000000000d0000000000000008000000190823232054686f75676874730a57652068617665207468757320666172206f7074656420666f7220616e20696e74657261637469766520776179206f66206d61726b6574696e6720746f206275696c642074686520636f6d6d756e6974792c20617320776520686f7065207468697320617070726f6163682077696c6c20696d70726f766520746865205f7175616c6974795f20726174686572207468616e206a75737420746865205f7175616e746974795f206f66206f7572206d656d626572732e204d6f7265206f6e20746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f7061792d666f722d706c61792f292e20546869732066616c6c7320696e206c696e652077697468207468617420617070726f6163682c20617320697420726571756972657320736f6d65206f66206f7572206c65737320746563686e6963616c20666f6c6c6f7765727320746f206765742066616d696c696172697a65642077697468206c696e757820616e642074686520636f6d6d616e64206c696e652e0a0a496e707574206f6e2074686973206973206d6f7265207468616e2077656c636f6d652e20426f74682066726f6d20746865204a7367656e65736973207465616d2c20636f6e7472696275746f72732c20616e6420636f6d6d756e697479206d656d626572732e0000d7a52200000000003008855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[71,"47000000000000000d00000000000000090000008902232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f35292e0000f3a5220000000000d808855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[72,"48000000000000000e00000000000000020000008d02232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f3133292e000013a62200000000009809855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[73,"49000000000000000f00000000000000020000001d0b232320476f616c730a54686520676f616c206f66207468697320626f756e74792069732074776f666f6c643a0a0a312e20546f20676574206d6f726520636f6e74656e74206f6e2074686520706c6174666f726d2c20616e6420666f7220737472657373207465737473206f66207468652073746f7261676520616e6420646973747269627574696f6e2073797374656d2c207765206e65656420746f20636f6d70696c652061206c697374206f6620667265656c7920617661696c61626c65206f6e2064656d616e64206d656469612e0a322e2057652061726520747279696e6720746f206275696c6420616e6420616461707461626c6520616e642064796e616d696320636f6e74656e74206469726563746f72792073797374656d20666f72206f7572206e65787420746573746e65742c2060526f6d65602e2054686520737065637320617265207374696c6c2061205749502c20627574207468652067656e6572616c20636f6e6365707420697320646973637573736564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f3734292e20466f722074686520696e697469616c20696d706c656d656e746174696f6e2c2077652077616e7420746f206c6561726e206d6f72652061626f75742077686174206d65746164617461206973207479706963616c6c79206173736f636961746564207769746820656163682074797065206f66206d656469612c20616e6420686f77206974277320737472756374757265642e0a0a5573696e6720617564696f20617320616e206578616d706c653a0a576861742061726520746865206d6f737420696d706f7274616e7420616e642072656c6576616e74206d6574616461746120666f723a0a0a2a20536f6e67730a2a20416c62756d730a2a20417564696f626f6f6b730a2a20506f64636173747300003ba6220000000000880a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[74,"4a000000000000000f00000000000000030000008d03232320526577617264730a4561636820636f6e747269627574696f6e2077696c6c206265206576616c7561746564206f6e20616e20696e646976696475616c2062617369732c206275742077652077696c6c2061737369676e206120627564676574206f66202432303020666f722074686520626f756e74792e0a0a23232053636f7065206f6620576f726b0a536561726368207468652077656220666f72207369746573206f72206f7468657220706c6174666f726d20636f6e7461696e696e6720667265656c7920617661696c61626c65206d6564696120636f6e74656e742e0a000040a6220000000000a60a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[75,"4b000000000000000f00000000000000040000005d0823232044656c6976657261626c65730a2a2050726f76696465206c696e6b7320746f207765627369746573206f72206f74686572206d6564696120706c6174666f726d20636f6e7461696e696e6720226c617267652220616d6f756e7473206f66206d6564696120636f6e74656e742028766964656f2c20617564696f2c20652d626f6f6b73292e0a2a20496e636c756465206173206d75636820696e666f726d6174696f6e20617320706f737369626c652061626f7574207468653a0a20200a20202a2054797065206f6620636f6e74656e742c206966206170706c696361626c65202865672e20766964656f20646f63756d656e746172696573206f6e6c79290a20202a204c6963656e73696e67207265737472696374696f6e732028696620746865207369746520636f6e7461696e732061206d6978206f6620636f6e74656e74207769746820646966666572656e74207265737472696374696f6e73290a0a416e7920696e666f726d6174696f6e2061626f75742074686520666f6c6c6f77696e672077696c6c206164642076616c75652c20616e64207468757320696e63726561736520746865207265776172642e0a0a2a20486f7720746f20646f776e6c6f6164207468652066696c657320616e64206d6574616461746120696e2062756c6b0a2a20416e79206164646974696f6e616c20696e666f726d6174696f6e2074686174206164647265737365732060322e60000043a6220000000000b80a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[76,"4c000000000000000f00000000000000050000005906232320436f6e73747261696e74730a2a20416c6c207375626d697373696f6e73206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f732920746f206265206576616c75617465642e0a0a232320426f756e747920666f726d61740a4f70656e20666f7220616c6c2e0a0a232320446561646c696e650a556e6c6573732077652061726520736174697366696564206265666f726520746869732074696d652c20746865207375626d697373696f6e20646561646c696e65206973207468652031387468206f662041756775737420323031392e0a0a496e2063617365206f662074686520666f726d65722c20746869732073656374696f6e2077696c6c20626520757064617465642c20627574206c656176696e67203234687220666f72207374726167676c65727320746f207375626d69742e0a0a285468697320626f756e7479206973206e6f7720636c6f7365642900004aa6220000000000e20a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[77,"4d000000000000000f00000000000000060000008d02232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f3230292e000052a6220000000000120b855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[78,"4e000000000000001500000000000000020000005d0f2320496e737472756374696f6e730a0a54686520696e737472756374696f6e732062656c6f772077696c6c20617373756d6520796f75206172652072756e6e696e672061732060726f6f74602e2054686973206d616b65732074686520696e737472756374696f6e7320736f6d6577686174206561736965722c20627574206c657373207361666520616e6420726f627573742e0a0a4e6f74652074686174207468697320686173206f6e6c79206265656e20746573746564206f6e20667265736820696d61676573206f6620605562756e74752031362e3034204c5453602c20605562756e74752031382e3034204c54536020616e64206044656269616e2038602e0a0a5468652073797374656d206861732073686f776e20746f206265207175697465207265736f7572636520696e74656e736976652c20736f20796f752073686f756c642063686f6f73652061205650532077697468207370656373206571756976616c656e7420746f205b4c696e6f6465203847425d2868747470733a2f2f7777772e6c696e6f64652e636f6d2f70726963696e673f6d73636c6b69643d65616131326530303532393331306534363635633733306436623031623031342675746d5f736f757263653d62696e672675746d5f6d656469756d3d6370632675746d5f63616d706169676e3d4c696e6f64652532302d2532304272616e642532302d2532305365617263682532302d2532304c6f7747656f2675746d5f7465726d3d6c696e6f64652675746d5f636f6e74656e743d4c696e6f646529206f722062657474657220286e6f7420616e20616666696c69617465206c696e6b292e0a0a506c65617365206e6f7465207468617420756e6c6573732074686572652061726520616e79206f70656e2073706f74732028776869636820796f752063616e20636865636b20696e205b50696f6e6565725d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e6565722920756e6465722060526f6c657360202d3e2060417661696c61626c6520526f6c657360292c20796f752077696c6c206e6f742062652061626c6520746f206a6f696e2e204e6f746520746861742077652077696c6c20626520717569746520766967696c616e7420696e20626f6f74696e67206e6f6e2d706572666f726d696e67206053746f726167652050726f766964657273602c20736f20696620796f7520686176652065766572797468696e6720736574757020696e20616476616e63652c20796f7520636f756c642062652074686520717569636b65737420746f2074616b65206120736c6f74207768656e206974206f70656e73210000d4dc220000000000ea52865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[79,"4f00000000000000150000000000000003000000ed0c232320496e697469616c2073657475700a4669727374206f6620616c6c2c20796f75206e65656420612066756c6c792073796e636564205b4a6f7973747265616d2066756c6c206e6f64655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c6561736573292e20466f7220696e737472756374696f6e73206f6e20686f7720746f2073657420746869732075702c20676f205b686572655d282e2e2f76616c696461746f7273292e204e6f7465207468617420796f752063616e2064697372656761726420616c6c207468652070617274732061626f7574206b6579732c20616e64206a75737420696e7374616c6c2074686520736f6674776172652e0a5765207374726f6e676c7920656e636f7572616765207468617420796f752072756e20626f746820746865205b6e6f64655d282e2e2f76616c696461746f72732372756e2d61732d612d736572766963652920616e6420746865206f7468657220736f6674776172652062656c6f77206173206120736572766963652e0a0a46697273742c20796f75206e65656420746f20736574757020606e6f6465602c20606e706d6020616e6420607961726e602e205468697320697320736f6d6574696d652074726f75626c65736f6d6520746f20646f207769746820746865206061707460207061636b616765206d616e616765722e20476f205b686572655d2823696e7374616c6c2d7961726e2d616e642d6e6f64652d776974686f75742d6f6e2d6c696e75782920746f20646f207468697320696620796f7520617265206e6f7420636f6e666964656e7420696e20796f7572206162696c697469657320746f206e617669676174652074686520726f75676820736561732e0a0a4e6f772c2067657420746865206164646974696f6e616c20646570656e64656e636965733a0a6060600a24206170742d67657420757064617465202626206170742d6765742075706772616465202d790a24206170742d67657420696e7374616c6c20676974206275696c642d657373656e7469616c206c6962746f6f6c206175746f6d616b65206175746f636f6e6620707974686f6e0a6060600000d7dc220000000000fc52865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[80,"5000000000000000150000000000000004000000a505232320496e7374616c6c20697066730a546865206e65772073746f72616765206e6f64652075736573205b697066735d2868747470733a2f2f697066732e696f2f29206173206261636b656e642e0a6060600a2420776765742068747470733a2f2f646973742e697066732e696f2f676f2d697066732f76302e342e32312f676f2d697066735f76302e342e32315f6c696e75782d616d6436342e7461722e677a0a2420746172202d76786620676f2d697066735f76302e342e32315f6c696e75782d616d6436342e7461722e677a0a2420636420676f2d697066730a24202e2f6970667320696e6974202d2d70726f66696c65207365727665720a24202e2f696e7374616c6c2e73680a232073746172742069706673206461656d6f6e3a0a242069706673206461656d6f6e0a6060600a496620796f752073656520604461656d6f6e206973207265616479602061742074686520656e642c20796f752061726520676f6f64210a0000dadc2200000000000e53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[81,"5100000000000000150000000000000005000000b9072323232052756e2069706673206173206120736572766963650a0a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f697066732e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d697066730a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f740a4c696d69744e4f46494c453d383139320a50494446696c653d2f7661722f72756e2f697066732f697066732e7069640a4578656353746172743d2f7573722f6c6f63616c2f62696e2f69706673206461656d6f6e0a526573746172743d6f6e2d6661696c7572650a526573746172745365633d330a53746172744c696d6974496e74657276616c3d3630300a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000dcdc2200000000001a53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[82,"5200000000000000150000000000000006000000fd065361766520616e6420657869742e20436c6f736520746865206069706673206461656d6f6e602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c20737461727420697066730a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c2073746174757320697066730a2320496620796f752073656520736f6d657468696e6720656c7365207468616e20224461656d6f6e206973207265616479222061742074686520656e642c2074727920616761696e20696e206120636f75706c65206f66207365636f6e64732e0a2320546f20686176652069706673207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c6520697066730a2320496620796f752077616e7420746f2073746f7020697066732c2065697468657220746f2065646974207468652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f7020697066730a6060600000dedc2200000000002653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[83,"5300000000000000150000000000000007000000310d232320536574757020486f7374696e670a496e206f7264657220746f20616c6c6f7720666f7220757365727320746f2075706c6f616420616e6420646f776e6c6f61642c20796f75206861766520746f20736574757020686f7374696e672c207769746820616e2061637475616c20646f6d61696e20617320626f7468204368726f6d6520616e642046697265666f78207265717569726573206068747470733a2f2f602e20496620796f7520686176652061202273706172652220646f6d61696e206f7220737562646f6d61696e20796f7520646f6e2774206d696e64207573696e6720666f72207468697320707572706f73652c20676f20746f20796f757220646f6d61696e2072656769737472617220616e6420706f696e7420796f757220646f6d61696e20746f2074686520495020796f752077616e742e20496620796f7520646f6e27742c20796f75206d75737420756e666f7274756e6174656c7920676f207075726368617365206f6e652e0a0a546f20636f6e6669677572652053534c2d63657274696669636174657320746865206561736965737420697320746f20757365205b63616464795d2868747470733a2f2f63616464797365727665722e636f6d2f292c20627574206665656c206672656520746f2074616b65206120646966666572656e7420617070726f6163682e204e6f7465207468617420696620796f7520617265207573696e6720636164647920666f7220636f6d6d65726369616c207573652c20796f75206e65656420746f20616371756972652061206c6963656e73652e20506c6561736520636865636b207468656972207465726d7320616e64206d616b65207375726520796f7520636f6d706c792077697468207768617420697320636f6e7369646572656420706572736f6e616c207573652e0a0a6060600a24206375726c2068747470733a2f2f67657463616464792e636f6d207c2062617368202d7320706572736f6e616c0a2320416c6c6f772063616464792061636365737320746f20726571756972656420706f7274733a0a242073657463617020276361705f6e65745f62696e645f736572766963653d2b657027202f7573722f6c6f63616c2f62696e2f63616464790a2420756c696d6974202d6e20383139320a6060600000e0dc2200000000003253865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[84,"54000000000000001500000000000000080000000d09436f6e666967757265206361646479207769746820606e616e6f207e2f436164647966696c656020616e6420706173746520696e2074686520666f6c6c6f77696e673a0a0a6060600a232053746f72616765204e6f6465204150490a68747470733a2f2f3c796f75722e636f6f6c2e75726c3e207b0a2020202070726f7879202f206c6f63616c686f73743a33303030207b0a20202020202020207472616e73706172656e740a202020207d0a20202020686561646572202f207b0a20202020202020204163636573732d436f6e74726f6c2d416c6c6f772d4f726967696e20202a0a20202020202020204163636573732d436f6e74726f6c2d416c6c6f772d4d6574686f647320224745542c205055542c20484541442c204f5054494f4e53220a202020207d0a7d0a6060600a4e6f7720796f752063616e20636865636b20696620796f7520636f6e6669677572656420636f72726563746c792c20776974683a0a6060600a24202f7573722f6c6f63616c2f62696e2f6361646479202d2d76616c6964617465202d2d636f6e66207e2f436164647966696c650a232057686963682073686f756c642072657475726e3a0a436164647966696c652069732076616c69640a0a2320596f752063616e206e6f772072756e20636164647920776974683a0a24202873637265656e29202f7573722f6c6f63616c2f62696e2f6361646479202d2d6167726565202d2d656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d2d636f6e66207e2f436164647966696c650a6060600000e3dc2200000000004453865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[85,"55000000000000001500000000000000090000002d092323232052756e206361646479206173206120736572766963650a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f63616464792e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d526576657273652070726f787920666f722073746f72616765206e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f740a4c696d69744e4f46494c453d383139320a50494446696c653d2f7661722f72756e2f63616464792f63616464792e7069640a4578656353746172743d2f7573722f6c6f63616c2f62696e2f6361646479202d6167726565202d656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d70696466696c65202f7661722f72756e2f63616464792f63616464792e706964202d636f6e66202f726f6f742f436164647966696c650a526573746172743d6f6e2d6661696c7572650a53746172744c696d6974496e74657276616c3d3630300a0a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000e6dc2200000000005653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[86,"560000000000000015000000000000000a00000061035361766520616e6420657869742e20436c6f736520606361646479602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c2073746172742063616464790a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c207374617475732063616464790a232057686963682073686f756c642070726f6475636520736f6d657468696e67206c696b653a0a6060600a0000eedc2200000000008653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[87,"570000000000000015000000000000000b000000990d6060600a2d2d2d0ae2978f2063616464792e73657276696365202d20526576657273652070726f787920666f722073746f72616765206e6f64650a2020204c6f616465643a206c6f6164656420282f6574632f73797374656d642f73797374656d2f63616464792e736572766963653b2064697361626c6564290a2020204163746976653a20616374697665202872756e6e696e67292073696e63652054756520323031392d30362d31382031373a31353a3434205554433b2036732061676f0a204d61696e205049443a203536313320286361646479290a2020204347726f75703a202f73797374656d2e736c6963652f63616464792e736572766963650a2020202020202020202020e29494e2948035363133202f7573722f6c6f63616c2f62696e2f6361646479202d616772656520656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d70696466696c65202f7661722f72756e2f63616464792f63616464792e706964202d636f6e66202f726f6f742f436164647966696c650a0a4a756e2031382031373a31353a3434206c6f63616c686f73742073797374656d645b315d3a205374617274656420526576657273652070726f787920666f7220686f7374656420617070732e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2041637469766174696e6720707269766163792066656174757265732e2e2e20646f6e652e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2053657276696e67204854545053206f6e20706f7274203434330a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2053657276696e672048545450206f6e20706f72742038300a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a2d2d2d0a6060600000f9dc220000000000c853865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[88,"580000000000000015000000000000000c000000c5026060600a2320546f2068617665206361646479207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c652063616464790a2320496620796f752077616e7420746f2073746f702063616464792c2065697468657220746f2065646974207468652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f702063616464790a6060600000fcdc220000000000da53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[89,"590000000000000015000000000000000d000000ad07232320496e7374616c6c20616e64205365747570207468652053746f72616765204e6f64650a0a46697273742c20796f75206e65656420746f20636c6f6e6520746865207265706f2e0a0a6060600a242067697420636c6f6e652068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f73746f726167652d6e6f64652d6a6f7973747265616d2e6769740a242063642073746f726167652d6e6f64652d6a6f7973747265616d0a24207961726e0a2320546573742074686174206974277320776f726b696e6720776974683a0a24207961726e2072756e20636f6c6f73737573202d2d68656c700a6060600a596f752063616e2073657420746865205041544820746f2061766f69642074686520607961726e2072756e60207072656669782062793a0a606e616e6f207e2f2e626173685f70726f66696c65600a616e6420617070656e643a0a6060600a2320436f6c6f737375730a616c69617320636f6c6f737375733d222f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a73220a6060600a5468656e3a0a602e207e2f2e626173685f70726f66696c65600a4e6f772c20796f752063616e20746573742060636f6c6f73737573202d2d68656c70602e000000dd220000000000f253865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[90,"5a0000000000000015000000000000000e000000bd04232323205570646174652053746f72616765204e6f64650a0a496620796f75206e65656420746f2075706461746520796f75722073746f72616765206e6f64652c20796f752077696c6c206669727374206e65656420746f2073746f702074686520736f6674776172652e0a0a6060600a2320496620796f75206172652072756e6e696e6720617320736572766963652028776869636820796f752073686f756c64290a242073797374656d63746c2073746f702073746f726167652d6e6f64650a24206364202f706174682f746f2f73746f726167652d6e6f64652d6a6f7973747265616d0a2320417373756d696e6720796f7520636c6f6e65642061732073686f776e2061626f76650a24206769742070756c6c206f726967696e206d61737465720a24207961726e0a606060000003dd2200000000000454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[91,"5b0000000000000015000000000000000f000000d90c2323232047656e6572617465206b65797320616e64206d656d62657273686970730a0a436c69636b205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672920746f206f70656e20746865206050696f6e656572206170706020696e20796f75722062726f777365722e205468656e20666f6c6c6f7720696e737472756374696f6e73205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236765742d737461727465642920746f2067656e6572617465206120736574206f6620604b657973602c2067657420746f6b656e732c20616e64207369676e20757020666f72206120604d656d62657273686970602e205468697320606b6579602077696c6c20626520726566657272656420746f2061732074686520606d656d62657260206b65792066726f6d206e6f77206f6e2e204d616b65207375726520746f207361766520746865206035596f75724a6f794d656d626572416464726573732e6a736f6e602066696c652e204e6f7465207468617420796f75206e65656420746f206b656570207468652072657374206f6620796f757220746f6b656e73206173207374616b6520746f206265636f6d652061206053746f726167652050726f7669646572602e0a0a2d2d2d0a0a417373756d696e6720796f75206172652072756e6e696e67207468652073746f72616765206e6f6465206f6e20612056505320766961207373682c206f6e20796f7572206c6f63616c206d616368696e653a0a0a6060600a2320476f20746865206469726563746f727920776865726520796f7520736176656420796f7572203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e3a0a2420736370203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e203c757365723e403c796f75722e7670732e69702e616464726573733e3a2f706174682f746f2f73746f726167652d6e6f64652d6a6f7973747265616d2f0a6060600a596f7572206035596f75724a6f794d656d626572416464726573732e6a736f6e602073686f756c64206e6f7720626520776865726520796f752077616e742069742e000007dd2200000000001c54865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[92,"5c00000000000000150000000000000010000000210d2323232320536574757020616e6420636f6e666967757265207468652073746f72616765206e6f64650a0a2a2a4d616b65207375726520796f75277265205b4a6f7973747265616d2066756c6c206e6f64655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d292069732066756c6c792073796e636564206265666f726520796f75206d6f766520746f20746865206e6578742073746570287329212a2a0a0a4f6e20746865206d616368696e652f56505320796f752077616e7420746f2072756e20796f75722073746f72616765206e6f64653a0a0a6060600a2320496620796f7520617265206e6f7420616c726561647920696e2074686174206469726563746f72793a0a242063642073746f726167652d6e6f64652d6a6f7973747265616d0a2320496620796f7520636f6e6669677572656420796f7572202e626173685f70726f66696c653a0a2420636f6c6f73737573207369676e7570203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e0a2320496620796f75206469646e277420636f6e66696775726520796f7572202e626173685f70726f66696c653a0a24207961726e2072756e20636f6c6f73737573207369676e7570203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e0a23204e6f74652074686174207468652072657374206f66207468652067756964652077696c6c20617373756d6520796f752064696420696e206661637420636f6e666967757265202e626173685f70726f66696c6520616e6420646f6e2774206e65656420227961726e2072756e220a2320466f6c6c6f772074686520696e737472756374696f6e732061732070726f6d707465642e20466f722065617365206f66207573652c2069742773206265737420746f206e6f742073657420612070617373776f72642e2e2e20496620796f7520646f2c2072656d656d62657220746f206164643a0a23202d2d70617373706872617365203c796f75725f706173737068726173653e20617320616e20617267756d656e742065766572792074696d6520796f752073746172742074686520636f6c6f73737573207365727665722e0a6060600a00000bdd2200000000003454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[93,"5d00000000000000150000000000000011000000490d546869732070726f64756365732061206e6577206b657920603c35596f757253746f72616765416464726573732e6a736f6e3e602c20616e642070726f6d70747320796f7520746f206f70656e20746865202261707022202850696f6e656572292e204d616b652073757265207468617420796f7520796f75722063757272656e742f64656661756c7420697320746865206035596f75724a6f794d656d6265724164647265737360206b65792e20416674657220796f7520636c69636b20605374616b65602c20796f752077696c6c207365652061206e6f74696669636174696f6e20696e2074686520746f7020726967687420636f726e65722e20496620796f752067657420616e206572726f722c2074686973206d6f7374206c696b656c79206d65616e7320616c6c2074686520736c6f7473206172652066756c6c2e20556e666f7274756e6174656c792c2074686973206d65616e7320796f75206861766520746f20696d706f72742074686520603c35596f757253746f72616765416464726573732e6a736f6e3e6020746f207265636f76657220796f757220746f6b656e732e0a0a4966206974207375636365656465642c2070726f636565642061732073686f776e2062656c6f773a0a0a6060600a2320546f206d616b6520737572652065766572797468696e672069732072756e6e696e6720736d6f6f74686c792c20697420776f756c642062652068656c7066756c20746f2072756e20776974682044454255473a0a242044454255473d2a20636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a2320496620796f75207365742061207061737370687261736520666f72203c35596f757253746f72616765416464726573732e6a736f6e3e3a0a242044454255473d2a20636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d70617373706872617365203c796f75725f706173737068726173653e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a60606000000ddd2200000000004054865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[94,"5e000000000000001500000000000000120000005109496620796f7520646f20746869732c20796f752073686f756c642073656520736f6d657468696e67206c696b653a0a0a6060600a646973636f766572793a3a7075626c697368207b206e616d653a2027516d507777733537366e33427945364351557655743364676d6f6b6b32584e32634a67505948576f4d3653535553272c0a646973636f766572793a3a7075626c69736820202076616c75653a20272f697066732f516d6544415747526a62577836664d43787474393559545367546742686874626b317173476b746552586145535427207d202b3339316d730a6060600a596f752063616e206a75737420646f207468697320696e73746561642c206275742069742077696c6c206d616b65206974206d6f726520646966666963756c7420746f2064656275672e2e2e0a6060600a2420636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a6060600a49662065766572797468696e6720697320776f726b696e6720736d6f6f74686c792c20796f752077696c6c206e6f772073746172742073796e63696e67207468652060636f6e74656e74206469726563746f7279600a4e6f7465207468617420756e6c65737320796f752072756e2074686973206973206120736572766963652c20796f75206e6f77206861766520746f206f70656e2061207365636f6e64207465726d696e616c20666f72207468652072656d61696e696e672073746570732e000013dd2200000000006454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[95,"5f0000000000000015000000000000001300000069092323232320436865636b207468617420796f75206172652073796e63696e670a496e20796f7572207365636f6e64207465726d696e616c2077696e646f773a0a6060600a24206970667320626974737761702077616e746c6973740a2d2d2d0a23204f75747075742073686f756c642062652061206c6f6e67206c697374206f66206b6579732c2065672e204e6f74652074686174206974206d696768742074616b65206120666577206d696e75746573206265666f7265207468652061637475616c20636f6e74656e742066726f6d20746865204a6f7973747265616d20636f6e74656e74206469726563746f72792073686f77732075702e0a2d2d2d0a516d65737a65426a4245724651726b6951506838516854733368664345474a754b326a4e6f706174486e7073316b0a2e2e2e0a516d664362557359684b426d72646f7033794672657271564b77424a76593574627056316366394378334c314a380a6060600a496620796f7520646964207468697320696d6d6564696174656c79206166746572204649525354207374617274696e6720796f75722073746f72616765206e6f64652c20746865206077616e746c69737460206d6967687420626520656d7074792e20476976652069742061206d696e7574652c20616e642069742073686f756c6420636f6e7461696e206174206c6561737420746865206e756d626572206f66206974656d7320696e2074686520636f6e74656e74206469726563746f72792e20596f752063616e20616c736f20636865636b207768617420636f6e74656e7420796f7520686176652073746f7265642062793a000016dd2200000000007654865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[96,"600000000000000015000000000000001400000019096060600a697066732072656673206c6f63616c0a2d2d2d0a23204f75747075742073686f756c6420626520616e206576656e206c6f6e676572206c697374206f66206b6579732c2065672e0a2d2d2d0a516d65737a65426a4245724651726b6951506838516854733368664345474a754b326a4e6f706174486e7073316b0a516d657a756d33415764786b6d31417448653335445a475764666854513450566d6d5a61744777444c36385245530a2e2e2e0a516d6643436a43357739777854466f41614a3934377373326f63316a783652326d4d39786a55374363727135354d0a516d664362557359684b426d72646f7033794672657271564b77424a76593574627056316366394378334c314a380a6060600a0a496e20796f7572206669727374207465726d696e616c2028776865726529207468652073746f72616765206e6f64652069732072756e6e696e672c20796f752077696c6c20736f6f6e20656e6f7567682073656520746869733a0a6060600a2e2e2e0a6a6f7973747265616d3a72756e74696d653a62617365205458207374617475733a2046696e616c697a6564202b376d730a6a6f7973747265616d3a72756e74696d653a626173652054582046696e616c697a65642e202b316d730a6a6f7973747265616d3a73796e632073796e632072756e20636f6d706c657465202b306d730a6060600a0a496e20746865207365636f6e64207465726d696e616c3a0a6060600a2420697066732072656673206c6f63616c0a6060600a53686f756c642072657475726e206e6f7468696e672e00001bdd2200000000009454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[97,"6100000000000000150000000000000015000000690c2323232052756e2073746f72616765206e6f6465206173206120736572766963650a0a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e204e6f7465207468617420746869732077696c6c206e6f7420776f726b20696620796f752073657420612070617373776f726420666f7220796f757220603c35596f757253746f72616765416464726573732e6a736f6e3e20602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f73746f726167652d6e6f64652e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d2053746f72616765204e6f64650a41667465723d6e6574776f726b2e74617267657420697066732e73657276696365206a6f7973747265616d2d6e6f64652e736572766963650a0a5b536572766963655d0a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d0a4c696d69744e4f46494c453d383139320a456e7669726f6e6d656e743d44454255473d2a0a4578656353746172743d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d7631302e31362e302d6c696e75782d7836342f62696e2f6e6f6465205c0a20202020202020207061636b616765732f636f6c6f737375732f62696e2f636c692e6a73205c0a20202020202020202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a526573746172743d6f6e2d6661696c7572650a53746172744c696d6974496e74657276616c3d3630300a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a60606000001fdd220000000000ac54865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[98,"620000000000000015000000000000001600000095085361766520616e6420657869742e20436c6f73652060636f6c6f73737573602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c2073746172742073746f726167652d6e6f64650a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c207374617475732073746f726167652d6e6f64650a232057686963682073686f756c642070726f6475636520736f6d657468696e67206c696b653a0a2d2d2d0ae2978f2073746f726167652d6e6f64652e73657276696365202d204a6f7973747265616d2053746f72616765204e6f64650a2020204c6f616465643a206c6f6164656420282f6574632f73797374656d642f73797374656d2f73746f726167652d6e6f64652e736572766963653b2064697361626c6564290a2020204163746976653a20616374697665202872756e6e696e67292073696e63652054756520323031392d30362d31382031373a32353a3431205554433b20346d696e203139732061676f0a204d61696e205049443a20353635342028636f6c6f73737573290a2020204347726f75703a202f73797374656d2e736c6963652f73746f726167652d6e6f64652e736572766963650a2020202020202020202020e29494e294803536353420636f6c6f737375730a20202020202020202020200a606060000029dd220000000000e854865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[99,"6300000000000000150000000000000017000000f10b6060600a0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313535353936382c2031353630303633205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313536303036342c2031353634313539205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e6765732043757272656e74207265717565737465642072616e6765206973205b2033333732323834382c203434313935393833205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e6765732049676e6f72696e67206368756e6b3b206974206973206f7574206f662072616e67652e0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313536343136302c2031353638323535205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54200a2d2d2d0a606060000030dd2200000000001255865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[100,"640000000000000015000000000000001800000079036060600a2320546f206861766520636f6c6f73737573207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c6520636f6c6f737375730a2320496620796f752077616e7420746f2073746f70207468652073746f72616765206e6f64652c2065697468657220746f2065646974207468652073746f726167652d6e6f64652e736572766963652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f702073746f726167652d6e6f64650a606060000035dd2200000000003055865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[101,"6500000000000000150000000000000019000000e904232323205665726966792065766572797468696e6720697320776f726b696e670a0a496e20796f75722062726f777365722c2066696e6420636c69636b206f6e20616e2075706c6f61646564206d656469612066696c652e20436f70792074686520603c636f6e74656e742d69643e602c2069652e207768617420636f6d657320616674657220746865206c61737420602f602e0a0a5468656e2070617374652074686520666f6c6c6f77696e6720696e20796f75722062726f777365723a0a0a6068747470733a2f2f3c796f75722e636f6f6c2e75726c3e2f61737365742f76302f3c636f6e74656e742d69643e602e0a0a496620796f7520676574206120626c61636b2073637265656e20776974682061206d6564696120706c617965722c2074686174206d65616e7320796f752061726520676f6f6421000039dd2200000000004855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[102,"6600000000000000160000000000000002000000590b232320506f7274206e6f74207365740a0a496620796f75206765742074686973206572726f723a0a6060600a547970654572726f72205b4552525f494e56414c49445f4f50545f56414c55455d3a205468652076616c756520227b20706f72743a20747275652c20686f73743a20273a3a27207d2220697320696e76616c696420666f72206f7074696f6e20226f7074696f6e73220a202020206174205365727665722e6c697374656e20286e65742e6a733a313435303a39290a2020202061742050726f6d69736520282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3132393a3132290a202020206174206e65772050726f6d69736520283c616e6f6e796d6f75733e290a2020202061742073746172745f657870726573735f61707020282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3132303a3130290a2020202061742073746172745f616c6c5f736572766963657320282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3133383a3130290a202020206174204f626a6563742e73657276657220282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3332383a3131290a2020202061742070726f636573732e5f7469636b43616c6c6261636b2028696e7465726e616c2f70726f636573732f6e6578745f7469636b2e6a733a36383a37290a6060600a0a4974206d6f7374206c696b656c79206d65616e7320796f757220706f7274206973206e6f74207365742c2028616c74686f7567682069742073686f756c642064656661756c7420746f2033303030292e000041dd2200000000007855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[103,"6700000000000000160000000000000003000000c9066060600a2420636f6c6f73737573202d2d68656c700a232053686f756c64206c69737420746865207061746820746f20796f75722063757272656e7420636f6e6669672066696c652e0a2420636174202f706174682f746f2f2e636f6e6669672f636f6e66696773746f72652f406a6f7973747265616d2f636f6c6f737375732e6a736f6e0a232073686f756c642072657475726e20736f6d657468696e67206c696b653a0a2d2d2d0a7b0a2022706f7274223a20333030302c0a202273796e63506572696f64223a203330303030302c0a20227075626c696355726c223a202268747470733a2f2f3c796f75722e636f6f6c2e75726c3e222c0a20226b657946696c65223a20222f706174682f746f2f3c35596f757253746f72616765416464726573732e6a736f6e3e220a7d0a6060600a4966206022706f7274223a203c6e3e60206973206d697373696e672c206f72206e6f742061206e756d6265722c2070617373207468653a0a602d70203c6e3e206020617267756d656e74206f72206564697420796f757220636f6e6669672066696c652c20776865726520603c6e3e6020636f756c6420626520333030302e000044dd2200000000008a55865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[104,"68000000000000001600000000000000040000004909232320496e7374616c6c207961726e20616e64206e6f6465206f6e206c696e75780a0a476f205b686572655d2868747470733a2f2f6e6f64656a732e6f72672f656e2f646f776e6c6f61642f2920616e642066696e6420746865206e657765737420284c5453292062696e61727920666f7220796f75722064697374726f2e20546869732067756964652077696c6c20617373756d652036342d626974206c696e75782c20616e6420606e6f64652d7631302e31362e30602e0a0a496620796f752077616e7420746f20696e7374616c6c2061732060726f6f74602c20736f20796f757220757365722063616e2075736520606e706d6020776974686f757420607375646f602070726976696c656765732c20676f205b686572655d2823696e7374616c6c2d61732d726f6f74292e0a0a496620796f752077616e7420746f20696e7374616c6c20617320616e6f74686572207573657220286d757374206861766520607375646f602070726976696c65676573292c20676f205b686572655d2823696e7374616c6c2d61732d757365722d776974682d7375646f2d70726976696c65676573292e0a0a416c7465726e6174697665732073756368206173205b6e766d5d2868747470733a2f2f6769746875622e636f6d2f6e766d2d73682f6e766d29206f72205b6e6f6465736f757263655d2868747470733a2f2f6769746875622e636f6d2f6e6f6465736f757263652f646973747269627574696f6e732f626c6f622f6d61737465722f524541444d452e6d64292061726520616c736f20776f72746820636f6e7369646572696e672e000047dd2200000000009c55865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[105,"69000000000000001600000000000000050000000d092323232320496e7374616c6c20617320526f6f740a546869732073656374696f6e20617373756d657320796f752061726520696e7374616c6c696e672061732060726f6f74602e20497420616c736f2064656d6f6e7374726174657320686f7720796f752063616e2070726f7669646520616e6f7468657220757365722061636365737320776974686f757420686176696e6720746f2075736520607375646f602e20497420646f65736e2774206d6174746572206966207573657220606a6f7973747265616d602068617320607375646f602070726976696c65676573206f72206e6f742e0a0a6060600a2420776765742068747470733a2f2f6e6f64656a732e6f72672f646973742f7631302e31362e302f6e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a0a24206d6b646972202d70202f7573722f6c6f63616c2f6c69622f6e6f64656a730a2420746172202d784a7666206e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a202d43202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a60606000004ddd220000000000c055865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[106,"6a0000000000000016000000000000000600000045045361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a23205665726966792076657273696f6e3a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a2320496e7374616c6c207961726e0a24206e706d20696e7374616c6c207961726e202d670a24206e706d2069206e6f64652d67797040352e302e300a232049662065766572797468696e67206c6f6f6b73206f6b2c20616e6420796f752077616e7420746f20616c6c6f772075736572206a6f7973747265616d206163636573733a0a242063686f776e202d52206a6f7973747265616d202f7573722f6c6f63616c2f6c69622f6e6f64656a730a606060000051dd220000000000d855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[107,"6b000000000000001600000000000000070000002d074c6f6720696e20746f206a6f7973747265616d3a0a6060600a24207375206a6f7973747265616d0a242063640a232052657065617420746865202e626173685f70726f66696c6520636f6e6669673a0a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a2320566572696679207468617420697420776f726b733a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a24207961726e202d760a6060600a0a596f752068617665206e6f77207375636365737366756c6c7920696e7374616c6c656420746865206e657765737420284c5453292076657273696f6e73206f6620606e706d602c20606e6f64656020616e6420607961726e602e000053dd220000000000e455865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[108,"6c00000000000000160000000000000008000000c90b2323232320496e7374616c6c2061732075736572207769746820607375646f602070726976696c656765730a546869732073656374696f6e20617373756d6573207468652073746570732061726520706572666f726d6564206173207573657220606a6f7973747265616d60207769746820607375646f602070726976696c656765732e0a0a417320606a6f7973747265616d600a6060600a2420776765742068747470733a2f2f6e6f64656a732e6f72672f646973742f7631302e31362e302f6e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a0a24207375646f206d6b646972202d70202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24207375646f20746172202d784a7666206e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a202d43202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a24207375646f2063686f776e202d52206a6f7973747265616d202f7573722f6c6f63616c2f6c69622f6e6f64656a730a2320566572696679207468617420697420776f726b733a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a2320496e7374616c6c207961726e0a24206e706d20696e7374616c6c207961726e202d670a2320566572696679207468617420697420776f726b733a0a24207961726e202d760a24206e706d2069206e6f64652d67797040352e302e300a60606000005add2200000000000e56865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[109,"6d00000000000000160000000000000009000000f105496620796f752077616e742060726f6f746020746f2062652061626c6520746f2075736520606e706d602061732077656c6c3a0a0a6060600a24207375646f2073750a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a0a602420736f75726365207e2f2e626173685f70726f66696c65600a0a596f752068617665206e6f77207375636365737366756c6c7920696e7374616c6c656420746865206e657765737420284c5453292076657273696f6e73206f6620606e706d602c20606e6f64656020616e6420607961726e602e0a00005edd2200000000002656865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[110,"6e00000000000000170000000000000002000000c90a23232047656e6572617465204b6579730a436c69636b20604d79204b6579736020696e2074686520736964656261722c20616e64207468656e2073656c656374207468652060437265617465204b65797360207461622e205468652063686f6963657320796f75206d616b652066726f6d20686572652c20646570656e64732061206c6974746c65206f6e20686f7720796f752077616e7420746f2070617274696369706174652e20496620796f75206a7573742077616e7420746f20706c61792061726f756e642c20796f752063616e206a75737420666f6c6c6f77207468652064656661756c74732e20496620796f752068617665206120737065636966696320726f6c6520696e206d696e642c20796f75206d696768742077616e7420746f20666f6c6c6f7720746865206c696e6b7320746f2074686520696e737472756374696f6e7320696e20746865206865616465722c206f7220616363657373207468656d20766961205b41637469766520526f6c65735d28236163746976652d726f6c6573292e0a0a496e20616e79206576656e742c2074686520604b657973602077696c6c2062652073746f72656420696e20796f75722062726f7773657220666f7220796f757220636f6e76656e69656e63652c2062757420697427732073616665737420746f207361766520796f757220605261772073656564602028796f75206e65656420697420666f72206365727461696e20726f6c65732920616e64207361766520746865202e6a736f6e2066696c652e2054686520604d6e656d6f6e6963602063616e20616c736f206265207573656420746f20726573746f726520796f757220604b657973602c206275742077696c6c206e6f7420646f20796f7520616e7920676f6f6420696620796f752077616e7420746f206265636f6d652061206056616c696461746f72602e000077dd220000000000bc56865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[111,"6f00000000000000170000000000000003000000e10a2323204765742061204d656d626572736869700a546f206265636f6d65206120604d656d62657260206f662074686520706c6174666f726d2c20796f75206e65656420736f6d6520746f6b656e732e2045697468657220636c69636b2074686520604672656520546f6b656e7360206c696e6b2c206f7220636c69636b205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20416674657220796f7520736f6c7665642074686520636170746368612c20796f757220746f6b656e732073686f756c64206265206f6e207468656972207761792e0a0a2a2a4e6f74652a2a0a416c6c207472616e73616374696f6e73202865787472696e736963732920636f73742031204a6f7920746f6b656e2c20736f20796f752073686f756c6420616c77617973206b6565702061206c6974746c6520696e20726573657276652c206173207468697320616c736f206170706c69657320746f207375636820616374696f6e7320617320766f74696e672c20756e7374616b696e672c20616e6420706f7374696e6720696e20746865206e6577205b666f72756d5d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d292e0a0a4e6f772c20636c69636b20604d656d626572736020696e2074686520736964656261722c20616e642073656c656374207468652060526567697374657260207461622e2043686f6f73652061206048616e646c652f6e69636b6e616d65602e204f7074696f6e616c6c792c2070726f766964652061206c696e6b20746f20616e20696d6167652066696c6520666f7220796f7572206176617461722c20616e642066696c6c20696e20746865206d61726b646f776e20656e61626c6564206041626f757460206669656c642e000079dd220000000000c856865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[112,"700000000000000018000000000000000200000015082320496e737472756374696f6e730a556e6c696b65206d6f7374206f6620746865206f746865722063757272656e7420616e642066757475726520726f6c6573206f6e20746865204a6f7973747265616d20506c6174666f726d2c206265636f6d696e6720612060436f756e63696c204d656d62657260206f7220766f74696e67206f6e2070726f706f73616c73207265717569726573206e6f20657874726120736f6674776172652e2045766572797468696e672063616e20626520646f6e6520696e207468652062726f777365722c20627920676f696e67205b686572655d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f7267292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e7473602073686f77696e672075702e0a00048bdd2200000000003457865d00000000510223204f766572766965770a0a54686973207061676520636f6e7461696e7320612064657461696c65642067756964652061626f757420686f772074686520676f7665726e616e63652073797374656d20776f726b73206f6e207468652063757272656e74204a6f7973747265616d20746573746e65742c20616e6420686f7720796f752063616e2070617274696369706174652e84dd2200000000000a57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[113,"71000000000000001800000000000000030000008903232047657420537461727465640a496620796f752077616e7420746f2067657420656c656374656420617320612060436f756e63696c204d656d62657260206f7220766f7465206f6e2074686520706c6174666f726d2c20796f75206e65656420746f206265206120604d656d626572602e20496e737472756374696f6e7320666f7220746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d2f746872656164732f3233292e0a00049bdd2200000000009457865d000000008d0323232047657420537461727465640a496620796f752077616e7420746f2067657420656c656374656420617320612060436f756e63696c204d656d62657260206f7220766f7465206f6e2074686520706c6174666f726d2c20796f75206e65656420746f206265206120604d656d626572602e20496e737472756374696f6e7320666f7220746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d2f746872656164732f3233292e0a93dd2200000000006457865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[114,"7200000000000000180000000000000004000000d5032320456c656374696f6e204379636c650a54686520656c656374696f6e206379636c6520636f6e736973747320666f7572207374616765732e0a312e2060416e6e6f756e63656d656e7460202d206c6173747320343332303020626c6f636b7320287e373268290a322e2060566f74696e6760202020202020202d206c6173747320313434303020626c6f636b7320287e323468290a332e206052657665616c60202020202020202d206c6173747320313434303020626c6f636b7320287e323468290a342e20605465726d602020202020202020202d206c617374732032303136303020626c6f636b7320287e31346461797329000097dd2200000000007c57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[115,"7300000000000000180000000000000005000000810d232320416e6e6f756e63656d656e740a447572696e67207468652060416e6e6f756e63656d656e74602073746167652c20616e796f6e652074686174206973206120604d656d626572602c20616e6420686f6c6473206174206c6561737420756e7374616b65642031303030204a6f79202869652e20696620796f752075736520796f7572206076616c696461746f72602060737461736860206b65792c20796f75206e6565642061206062616c616e636560203e2060626f6e64656460202b2031303030204a6f792920746f6b656e732063616e20616e6e6f756e63652074686569722063616e64696461637920746f206265636f6d6520612060436f756e63696c204d656d626572602e0a0a53656c6563742060436f756e63696c6020696e2074686520736964656261722c20616e6420636c69636b2074686520604170706c6963616e747360207461622e205365742074686520616d6f756e74206f6620746f6b656e7320796f752077616e7420746f2c207374616b652c20616e6420636f6e6669726d2e0a496620796f752077616e7420746f20707574206d6f7265207374616b6520626568696e6420796f75722063616e646964616379206c617465722c20796f752063616e20746f7020757020617420616e7920706f696e7420647572696e67207468652073746167652e2041667465722073656e64696e6720746865207472616e73616374696f6e2c20796f752073686f756c642061707065617220756e64657220224170706c6963616e7473222e20546865206d6178206e756d626572206f66204170706c6963616e747320697320603235602e205768656e2074686520323574682063616e646964617465206170706c6965732c20746865206f6e65207769746820746865206c6f7765737420616d6f756e74207374616b65642077696c6c20626520707573686564206f666620746865206c6973742c20616e6420676574207468656972207374616b652072657475726e65642e20496e20746f74616c2c206031326020436f756e63696c204d656d62657273206d75737420626520656c65637465642e20496620746865726520617265206c657373207468616e203132206170706c6963616e74732c207468652060416e6e6f756e63656d656e74602073746167652077696c6c206265207265737461727465642e00009ddd220000000000a057865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[116,"74000000000000001800000000000000060000008909232320566f74696e670a417320736f6f6e206173207468652060416e6e6f756e63656d656e746020737461676520636c6f7365732c20796f752063616e20626567696e20766f74696e6720666f72206170706c6963616e74732e20417320776974682065766572797468696e6720656c73652c20796f75206e65656420746f207374616b6520696e206f7264657220746f20646f20736f2e204a6f7973747265616d2069732063757272656e746c7920776f726b696e6720756e6465722074686520224f6e6520546f6b656e202d204f6e6520566f746522207072696e636970616c2e20476f20746f207468652060566f74657360207461622c2073657420796f7572207374616b696e6720616d6f756e742c2073656c65637420796f75722063616e64696461746520616e642067656e65726174652061206052616e646f6d2073616c74602e20546869732077696c6c206265206e656564656420746f2072657665616c20616e642061637475616c6c79202262726f6164636173742220796f757220766f74652e20596f752063616e20766f7465206d6f7265207468616e206f6e63652c20666f7220796f75722073656c662c20616e6420666f72206d6f7265207468616e206f6e65206170706c6963616e742e20416c6c2074686520646174612077696c6c2062652073746f72656420696e20796f75722062726f777365722c20736f206173206c6f6e6720617320796f7520617265207573696e67207468652073616d65206d616368696e652f62726f777365722f636f6f6b6965732c20796f7520646f6e2774206e65656420746f207361766520616e797468696e672e00009fdd220000000000ac57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[117,"7500000000000000180000000000000007000000f10323232052657665616c0a417320736f6f6e206173207468652060566f74696e676020737461676520636c6f7365732c207468652052657665616c696e6720737461676520626567696e732e2054686973206973207768656e20796f752063616e2072657665616c20796f757220766f74652e20476f20746f20746865206052657665616c206120766f746560207461622c20746f2061637475616c6c792062726f61646361737420796f757220766f74652e20566f746573207468617420617265206e6f742072657665616c656420696e2074696d652077696c6c206e6f742067657420636f756e74656420696e2074686520656c656374696f6e2e0000a1dd220000000000b857865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[118,"760000000000000018000000000000000800000065052323205465726d0a417320736f6f6e20617320746865206052657665616c6020737461676520636c6f7365732c207468652031322063616e64696461746573207769746820746865206869676865737420746f74616c206261636b696e672c2069652e207468656972206f776e207374616b65202b20766f746572207374616b652c2077696c6c206265636f6d652060436f756e63696c204d656d62657273602e205468656972207465726d2077696c6c2072756e20666f7220313420646179732c2061667465722077686963682061206e65772060436f756e63696c602077696c6c206265656e20656c65637465642e0a0a4e6f7465207468617420746865206e6578742060416e6e6f756e63656d656e74602073746167652077696c6c2073746172742065786163746c792032303136303020626c6f636b7320283134206461797329206166746572207468652070726576696f75732e0000a3dd220000000000c457865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[119,"77000000000000001a0000000000000002000000710723232320496e737472756374696f6e730a496620796f752066696e6420612062756720696e20616e79206f66206f757220736f6674776172652c207265706f7274696e67207468656d20617320604973737565736020696e2074686520636f7272656374205b7265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292077696c6c20616c6c6f7720757320746f206164647265737320746869732e20417320737461746564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236275696c646572732d616e642d6275672d7265706f7274657273292c206974206d6967687420616c736f207175616c69667920666f72206120626f756e74792e20496620796f752066696e6420616e206572726f722c20736f6d657468696e6720756e636c656172206f72206a757374206d697373696e6720696e207468652067756964657320696e2074686973207265706f2c20746865205b73616d6520636f6e63657074206170706c6965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e0a0004d4dd220000000000ea58865d0000000075072323232320496e737472756374696f6e730a496620796f752066696e6420612062756720696e20616e79206f66206f757220736f6674776172652c207265706f7274696e67207468656d20617320604973737565736020696e2074686520636f7272656374205b7265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292077696c6c20616c6c6f7720757320746f206164647265737320746869732e20417320737461746564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236275696c646572732d616e642d6275672d7265706f7274657273292c206974206d6967687420616c736f207175616c69667920666f72206120626f756e74792e20496620796f752066696e6420616e206572726f722c20736f6d657468696e6720756e636c656172206f72206a757374206d697373696e6720696e207468652067756964657320696e2074686973207265706f2c20746865205b73616d6520636f6e63657074206170706c6965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e0ad0dd220000000000d258865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[120,"78000000000000001a0000000000000003000000d50a417320612067656e6572616c206e6f74652c20696e206164646974696f6e20746f20746865207365766572697479206f6620746865206275672c20746865206d6f72652064657461696c7320796f7520696e636c75646520696e2074686520604973737565602c207468652062696767657220746865207265776172642077696c6c2062652e204578616d706c65206f6620612064657461696c656420604973737565603a0a2a20466f72206e6f64657320616e6420736f6674776172652072616e206f6e20796f757220636f6d70757465720a20202a204c6f677320616e64206372617368207265706f727473202866726f6d206f6e65206f6620746865206e6f646573290a20202a20537465707320746f20726570726f647563650a20202a20596f757220656e7669726f6e6d656e74202865672e206f7065726174696e672073797374656d20616e642076657273696f6e290a20202a206574632e0a2a2049662072656c6174656420746f206f7572206050696f6e65657260205b746573746e65745d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672920617070733a0a20202a20576861742028696620616e7929206572726f72206d6573736167652064696420796f7520736565643f0a20202a2057686174207765726520796f7520747279696e6720746f20646f3f0a20202a205768617420697320796f757220616464726573733f0a20202a205768617420697320796f75722062616c616e63653f0a20202a2057686174206973207468652074797065206f6620606b657960202869652e20605363686e6f72726b656c60206f7220604564776172647360293f0a20202a2041726520796f75206120604d656d626572603f0a20202a2049732074686520606b657960207573656420666f7220616e6f7468657220726f6c653f0a20202a206574632e0000d2dd220000000000de58865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[121,"79000000000000001000000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e0000f4dd220000000000aa59865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[122,"7a00000000000000100000000000000003000000210a23232057696e646f77730a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c206974206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20603e60206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a3e20636420433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36340a23204f6e6c7920747970652f7061737465207468652022636420433a5c6a6f7973747265616d2d6e6f64652d77696e646f77732d783634222c206e6f742074686520707265636564696e67203e20210a6060600000f6dd220000000000b659865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[123,"7b00000000000000100000000000000004000000110c23232323205365747570204e6f64650a0a476574207468652062696e617279205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36342e7a6970292e20546f206d616b65207468652061637475616c20636f6d6d616e6473207468652073616d6520666f7220616c6c2075736572732c2049276d20676f696e6720746f20736176652069742060433a5c6020616e6420756e7a69702069742074686572652e2060433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f3634602e204665656c206672656520746f2073746f726520697420736f6d65776865726520656c73652c206a757374206d616b65207375726520796f75207573652074686520636f7272656374207061746820696e2074686520696e737472756374696f6e73207468617420666f6c6c6f77732e0a0a496620796f7520646f6e277420686176652069742c20646f776e6c6f6164204d6963726f736f66742056697375616c2053747564696f20432b2b2072756e74696d652064697374726962757461626c652032303135205b686572655d2868747470733a2f2f7777772e6d6963726f736f66742e636f6d2f656e2d69652f646f776e6c6f61642f64657461696c732e617370783f69643d3438313435292e20200a0a47657420746865206d697373696e672053534c206c6962726172696573205b686572655d2868747470733a2f2f696e64792e66756c67616e2e636f6d2f53534c2f6f70656e73736c2d312e302e32712d7836345f38362d77696e36342e7a6970292c20657874726163742c20616e64206d6f7665207468652066696c6573206073736c65617933322e646c6c6020616e6420606c696265617933322e646c6c6020746f2060433a5c6a6f7973747265616d2d6e6f64652d77696e646f77732d783634602e0a0000f9dd220000000000c859865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[124,"7c00000000000000100000000000000005000000b10a4f70656e2060436f6d6d616e642050726f6d70746020287479706520696e20636d642e2e2e20616674657220636c69636b696e672077696e646f777320627574746f6e293a0a0a6060600a3e20636420433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36340a3e206a6f7973747265616d2d6e6f64652e6578650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c206275742064656661756c742069732032352e0a6060600000fbdd220000000000d459865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[125,"7d00000000000000100000000000000006000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a000405de220000000000105a865d00000000050e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e63656421fddd220000000000e059865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[126,"7e000000000000001000000000000000070000009d0323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e0a000018de220000000000825a865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[127,"7f00000000000000100000000000000008000000490b232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c617465722100002cde220000000000fa5a865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[128,"8000000000000000100000000000000009000000fd08352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0a0a446570656e64696e67206f6e20796f75722062726f777365722c20796f75206d69676874206861766520746f20636f6e6669726d20736176696e672074686520602235596f75724a6f7953657373696f6e416464726573732e6a736f6e22602e0a0a526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e00002ede220000000000065b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[129,"810000000000000010000000000000000a0000000d0f232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a496620796f7520686176656e277420616c72656164792c2067656e657261746520796f7572206b6579732e0a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b636020287477696365292e0a202020202a204f6e2057696e646f77732c2074686520666972737420606374726c2b63602077696c6c2070726f647563652061206c6f6e6720616e6420636f6e667573696e67206f75747075742e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a3e206a6f7973747265616d2d6e6f64652e657865202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a2320496620796f7520616c736f2077616e742069742073686f7720757020696e2074656c656d657472793a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a606060000036de220000000000365b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[130,"820000000000000010000000000000000b000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b65797329207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f75742061732061206056616c696461746f72602e000038de220000000000425b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[131,"830000000000000010000000000000000c0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e2000003cde2200000000005a5b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[132,"840000000000000010000000000000000d000000d10c2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e000040de220000000000725b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[133,"850000000000000010000000000000000e000000150b362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e000043de220000000000845b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[134,"860000000000000010000000000000000f000000c50d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e0a000047de2200000000009c5b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[135,"87000000000000001100000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e00006e1a230000000000eec5875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[136,"88000000000000001200000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e00006f1a230000000000f4c5875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[137,"890000000000000012000000000000000300000011092323204d61630a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c206974206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20602460206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a24206364207e2f0a23204f6e6c7920747970652f70617374652074686520226364207e2f2c206e6f742074686520707265636564696e67202420210a6060600000741a23000000000012c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[138,"8a00000000000000120000000000000004000000f10c23232323205365747570204e6f64650a0a4f70656e20746865207465726d696e616c20284170706c69636174696f6e732d3e5574696c6974696573293a0a0a6060600a24206364207e2f0a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a69700a2d2d2d2d0a2320496620796f7520646f6e27742068617665207767657420696e7374616c6c65642c20706173746520746865206c696e6b20696e20796f75722062726f7773657220736176652e0a2320417373756d696e67206974206765747320736176656420696e20796f7572207e2f446f776e6c6f61647320666f6c6465723a0a24206d76207e2f446f776e6c6f6164732f6a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a6970207e2f0a2d2d2d0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a69700a24202e2f6a6f7973747265616d2d6e6f64650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600000761a2300000000001ec6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[139,"8b00000000000000120000000000000005000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a0000781a2300000000002ac6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[140,"8c00000000000000120000000000000006000000990323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e00007b1a2300000000003cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[141,"8d00000000000000120000000000000007000000990e232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c61746572210a352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0000831a2300000000006cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[142,"8e000000000000001200000000000000080000002104526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e00008b1a2300000000009cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[143,"8f00000000000000120000000000000009000000290a232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600004bc1a230000000000c2c7875d00000000650b232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a496620796f7520686176656e277420616c72656164792c20676f205b686572655d282367656e65726174652d796f75722d6b6579732920746f2067656e657261746520796f7572206b6579732e0a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060608d1a230000000000a8c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[144,"900000000000000012000000000000000a000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b6579732d3129207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f7574206173206056616c696461746f72602e0000911a230000000000c0c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[145,"910000000000000012000000000000000b0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e200000931a230000000000ccc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[146,"920000000000000012000000000000000c000000d10c2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e0000961a230000000000dec6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[147,"930000000000000012000000000000000d000000150b362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e0000981a230000000000eac6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[148,"940000000000000012000000000000000e000000c10d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e00009b1a230000000000fcc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[149,"950000000000000011000000000000000300000021092323204c696e75780a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c2074686973206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20602460206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a24206364207e2f0a23204f6e6c7920747970652f70617374652074686520226364207e2f2c206e6f742074686520707265636564696e67202420210a6060600000a21a23000000000026c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[150,"9600000000000000110000000000000004000000950b23232323205365747570204e6f64650a0a4f70656e20746865207465726d696e616c3a0a0a6060600a24206364207e2f0a23203634206269742064656269616e206261736564206c696e75780a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d6c696e75782d7838365f36342e7461722e677a0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d6c696e75782d7838365f36342e7461722e677a0a232061726d76372028726173706265727279207069290a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d61726d76372e7461722e677a0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d61726d76372e7461722e677a0a2320466f7220626f74680a24202e2f6a6f7973747265616d2d6e6f64650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a6060600000a71a23000000000044c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[151,"97000000000000001100000000000000050000006d046060600a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600000a91a23000000000050c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[152,"9800000000000000110000000000000006000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a0000ac1a23000000000062c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[153,"99000000000000001100000000000000070000009d0323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e0a0000ae1a2300000000006ec7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[154,"9a00000000000000110000000000000008000000990e232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c61746572210a352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0000b11a23000000000080c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[155,"9b00000000000000110000000000000009000000ad05446570656e64696e67206f6e20796f75722062726f777365722c20796f75206d69676874206861766520746f20636f6e6669726d20736176696e672074686520602235596f75724a6f7953657373696f6e416464726573732e6a736f6e22602e0a0a526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e0a0000b41a23000000000092c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[156,"9c0000000000000011000000000000000a000000f90d232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a232061726d7637202872617370626572727920706929206f6e6c793a0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600000b71a230000000000a4c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[157,"9d0000000000000011000000000000000b000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b6579732d3229207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f7574206173206056616c696461746f72602e0000c21a230000000000e6c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[158,"9e0000000000000011000000000000000c0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e200000c41a230000000000f2c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[159,"9f0000000000000011000000000000000d000000cd0b2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0000c71a23000000000004c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[160,"a00000000000000011000000000000000e000000190c352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e0a362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e0000c91a23000000000010c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[161,"a10000000000000011000000000000000f000000c10d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e0000cb1a2300000000001cc8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[162,"a200000000000000130000000000000002000000a90a2323232323204578616d706c6520776974682075736572206a6f7973747265616d0a0a546865206578616d706c652062656c6f7720617373756d65732074686520666f6c6c6f77696e673a0a2d20596f752077616e7420746f207265737461727420796f7572206e6f64652065766572792032346820286038363430306073290a2d20596f7520686176652073657475702061207573657220606a6f7973747265616d6020746f2072756e20746865206e6f64650a2d20546865207061746820746f2074686520606a6f7973747265616d2d6e6f6465602062696e61727920697320602f686f6d652f6a6f7973747265616d2f6a6f7973747265616d2d6e6f6465600a0a6060600a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d204e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d6a6f7973747265616d0a576f726b696e674469726563746f72793d2f686f6d652f6a6f7973747265616d2f0a4578656353746172743d2f686f6d652f6a6f7973747265616d2f6a6f7973747265616d2d6e6f6465205c0a20202020202020202d2d6f75742d706565727320313030205c0a20202020202020202d2d696e2d706565727320313030205c0a20202020202020202d2d76616c696461746f72205c0a20202020202020202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e205c0a20202020202020202d2d6e616d65203c6e6f64656e616d653e0a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a526573746172745365633d330a4c696d69744e4f46494c453d383139320a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000ed1a230000000000e8c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[163,"a3000000000000001300000000000000030000002102496620796f75206a7573742077616e7420746f206861766520746865206e6f6465207265737461727420696620697420637261736865732c207265706c6163653a0a0a6060600a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a2320776974680a526573746172743d6f6e2d6661696c7572650a6060600a0000ef1a230000000000f4c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[164,"a400000000000000130000000000000004000000d9092323232323204578616d706c6520617320726f6f740a0a546865206578616d706c652062656c6f7720617373756d65732074686520666f6c6c6f77696e673a0a2d20596f752077616e7420746f207265737461727420796f7572206e6f64652065766572792032346820286038363430306073290a2d20596f752068617665207365747570206120757365722060726f6f746020746f2072756e20746865206e6f64650a2d20546865207061746820746f2074686520606a6f7973747265616d2d6e6f6465602062696e61727920697320602f726f6f742f6a6f7973747265616d2d6e6f6465600a0a6060600a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d204e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f742f0a4578656353746172743d2f726f6f742f6a6f7973747265616d2d6e6f6465205c0a20202020202020202d2d6f75742d706565727320313030205c0a20202020202020202d2d696e2d706565727320313030205c0a20202020202020202d2d76616c696461746f72205c0a20202020202020202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e205c0a20202020202020202d2d6e616d65203c6e6f64656e616d653e0a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a526573746172745365633d330a4c696d69744e4f46494c453d383139320a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000f11a23000000000000c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[165,"a5000000000000001300000000000000050000001d02496620796f75206a7573742077616e7420746f206861766520746865206e6f6465207265737461727420696620697420637261736865732c207265706c6163653a0a0a6060600a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a2320776974680a526573746172743d6f6e2d6661696c7572650a6060600000f21a23000000000006c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[166,"a6000000000000001300000000000000060000000d0d23232323205374617274696e672074686520736572766963650a0a596f752063616e206164642f72656d6f766520616e792060666c61677360206173206c6f6e6720617320796f752072656d656d62657220746f20696e636c75646520605c6020666f72206576657279206c696e652062757420746865206c6173742e20416c736f206e6f746520746861742073797374656d6420697320766572792073656e73697469766520746f2073796e7461782c20736f206d616b65207375726520746865726520617265206e6f20657874726120737061636573206265666f7265206f722061667465722074686520605c602e0a0a416674657220796f7520617265206861707079207769746820796f757220636f6e66696775726174696f6e3a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a232074686973206973206f6e6c79207374726963746c79206e656365737361727920616674657220796f75206368616e67656420746865202e736572766963652066696c652061667465722072756e6e696e672c20627574206368616e6365732061726520796f752077696c6c206e65656420746f20757365206974206f6e6365206f722074776963652e0a2320696620796f7572206e6f6465206973207374696c6c2072756e6e696e672c206e6f77206973207468652074696d6520746f206b696c6c2069742e0a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a232069662065766572797468696e6720697320636f72726563746c7920636f6e666967757265642c207468697320636f6d6d616e642077696c6c206e6f742072657475726e20616e797468696e672e0a2320546f2076657269667920697427732072756e6e696e673a0a242073797374656d63746c20737461747573206a6f7973747265616d2d6e6f64650a2320746869732077696c6c206f6e6c792073686f7720746865206c61737420666577206c696e65732e20546f2073656520746865206c61746573742031303020656e74726965732028616e6420666f6c6c6f77206173206e657720617265206164646564290a24206a6f75726e616c63746c202d6e20313030202d66202d75206a6f7973747265616d2d6e6f64650000f71a23000000000024c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[167,"a700000000000000130000000000000007000000b5056060600a2320546f206d616b65207468652073657276696365207374617274206175746f6d61746963616c6c7920617420626f6f743a0a242073797374656d63746c20656e61626c65206a6f7973747265616d2d6e6f64650a6060600a596f752063616e207265737461727420746865207365727669636520776974683a0a2d206073797374656d63746c2072657374617274206a6f7973747265616d2d6e6f6465600a0a496620796f752077616e7420746f206368616e676520736f6d657468696e6720286f72206a7573742073746f70292c2072756e3a0a2d206073797374656d63746c2073746f70206a6f7973747265616d2d6e6f6465600a0a4265666f726520796f75206d616b6520746865206368616e6765732e204166746572206368616e67696e673a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a6060600004011b23000000000060c9875d00000000a5052320546f206d616b65207468652073657276696365207374617274206175746f6d61746963616c6c7920617420626f6f743a0a242073797374656d63746c20656e61626c65206a6f7973747265616d2d6e6f64650a6060600a596f752063616e207265737461727420746865207365727669636520776974683a0a2d206073797374656d63746c2072657374617274206a6f7973747265616d2d6e6f6465600a0a496620796f752077616e7420746f206368616e676520736f6d657468696e6720286f72206a7573742073746f70292c2072756e3a0a2d206073797374656d63746c2073746f70206a6f7973747265616d2d6e6f6465600a0a4265666f726520796f75206d616b6520746865206368616e6765732e204166746572206368616e67696e673a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a606060f91a23000000000030c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[168,"a800000000000000130000000000000008000000b50623232323204572726f72730a0a496620796f75206d616b652061206d697374616b6520736f6d6577686572652c206073797374656d63746c207374617274206a6f7973747265616d2d6e6f6465602077696c6c2070726f6d70743a0a6060600a4661696c656420746f207374617274206a6f7973747265616d2d6e6f64652e736572766963653a20556e6974206a6f7973747265616d2d6e6f64652e73657276696365206973206e6f74206c6f616465642070726f7065726c793a20496e76616c696420617267756d656e742e0a5365652073797374656d206c6f677320616e64202773797374656d63746c20737461747573206a6f7973747265616d2d6e6f64652e736572766963652720666f722064657461696c732e0a6060600a466f6c6c6f772074686520696e737472756374696f6e732c20616e642073656520696620616e797468696e67206c6f6f6b732077726f6e672e20436f72726563742069742c207468656e3a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a6060600a0000051b23000000000078c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[169,"a900000000000000130000000000000009000000b10c23232053657474696e67730a0a496620796f7520646f6e27742077616e7420746f20757365207468652064656661756c742073657474696e67732c20686572652061726520736f6d65206f6620746865206f7074696f6e7320796f752063616e20636f6e6669677572652e0a0a2323232320426f6e64696e6720707265666572656e6365730a54686520626f6e64696e6720707265666572656e6365732064656369646573206f6e20686f7720776865726520796f757220284a6f7929207374616b696e672072657761726473206172652064697374726962757465642e2054686572652061726520746872656520616c7465726e6174697665733a0a312e20605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b652960202864656661756c74292e0a0a54686973206175746f6d61746963616c6c792073656e647320616c6c207265776172647320746865206073746173686020616464726573732c207768657265206974206765747320626f6e64656420617320616e206164646974696f6e616c207374616b652e20546869732077696c6c20696e63726561736520796f75722070726f626162696c697479206f662073746179696e6720696e20746865206076616c696461746f7260207365742e0a0a322e20605374617368206163636f756e742028646f206e6f20696e6372656173652074686520616d6f756e74206174207374616b6529600a0a4173206c696b652060312e602074686973206175746f6d61746963616c6c792073656e647320616c6c207265776172647320746865206073746173686020616464726573732c2062757420646f6573202a6e6f742a2067657420626f6e646564206173207374616b652c206d65616e696e6720796f752069742077696c6c206e6f742068656c70202267756172642220796f75722073706f7420696e20746865206076616c696461746f7260207365742e0a0a332e2060436f6e74726f6c6c6572206163636f756e74600a0a546869732073656e647320616c6c207265776172647320746f207468652060636f6e74726f6c6c6572602c20617420796f757220646973706f73616c2e0000091b23000000000090c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[170,"aa0000000000000013000000000000000a000000410a232323232056616c69646174696e6720707265666572656e6365730a312e205468652060756e7374616b65207468726573686f6c646020697320746865206e756d626572206f662074696d657320796f752063616e2067657420736c61736865642028666f72206265696e67206f66666c696e6529206265666f726520796f75277265206175746f6d61746963616c6c79205b756e7374616b65645d2823756e7374616b696e67292e2041206c6f77206e756d6265722063616e206d65616e20796f752073746f70206265696e67206076616c696461746f7260206a757374206265636175736520796f757220696e7465726e657420697320646f776e2061206d696e7574652c2062757420696620796f752073657420746865206e756d62657220746f6f20686967682c20796f752077696c6c2067657420736c61736865642068656176696c7920696620796f7572206e6f646520627265616b7320646f776e206f7220796f75206c6f73652074686520696e7465726e657420666f7220616e20686f75722e0a0a322e2054686520607061796d656e7420707265666572656e6365736020697320686f772074686520286a6f7929207374616b696e672072657761726473206172652073706c6974206265747765656e20796f757273656c6620616e6420616e7920706f74656e7469616c205b6e6f6d696e61746f72735d28236e6f6d696e6174696e67292e205468652064656661756c7420283029206d65616e73207468617420746865207265776172642069732073706c6974206261736564206f6e2074686520616d6f756e74206f6620626f6e646564207374616b6520746865206076616c696461746f726020616e6420606e6f6d696e61746f7273602068617665207075742075702e2000000e1b230000000000aec9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[171,"ab0000000000000013000000000000000b00000075064578616d706c653a0a0a4c657420607660205b4a6f795d2062652074686520626f6e64656420746f6b656e7320666f72207468652076616c696461746f7220607374617368600a4c657420607060205b4a6f795d2062652074686520607061796d656e7420707265666572656e6365602064656369646564206279207468652076616c696461746f720a4c657420606e3160205b4a6f795d20626520746865c2a0626f6e64656420746f6b656e7320666f7220746865206e6f6d696e61746f723120607374617368600a4c657420606e3260205b4a6f795d20626520746865c2a0626f6e64656420746f6b656e7320666f7220746865206e6f6d696e61746f723220607374617368600a4c657420607260205b4a6f795d206265207468652072657761726420746861742060657261600a0a6060600a23207061796f757420666f72207468652076616c696461746f720a70202b2028762f28762b6e312b6e32292a28722d7029290a23207061796f757420666f7220746865206e6f6d696e61746f72310a286e312f28762b6e312b6e32292a28722d7029290a6060600000101b230000000000bac9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[172,"ac0000000000000013000000000000000c0000006d092323204e6f6d696e6174696e670a0a496620796f752077616e7420746f2067657420736f6d652072657475726e206f6e20796f757220746f6b656e7320776974686f75742072756e6e696e672061206e6f646520796f757273656c662c20796f752063616e20606e6f6d696e6174656020616e6f74686572206076616c696461746f726020616e64206765742061207368617265206f6620746865697220726577617264732e0a0a54686973206d6967687420616c736f20636f6d6520696e2068616e64792069662074686572652061726520746f6f206d616e79206076616c696461746f72736020616e6420796f7520646f6e2774206861766520656e6f75676820746f6b656e732067657420612073706f742c206f7220696620796f75206861766520746f207368757420646f776e20796f7572206f776e206e6f646520666f722061207768696c652e0a0a232323232047656e6572617465206b6579730a496620796f7520686176656e277420616c7265616479206265656e207468726f756768207468652070726f63657373206f662073657474696e6720757020796f757220607374617368602c2060636f6e74726f6c6c65726020616e64206073657373696f6e60206b65792c20796f75206669727374206e65656420746f2067656e657261746520796f7572206b65797320287365652076616c696461746f72207365747570292e204e6f7465207468617420796f7520646f6e2774206e6565642061206073657373696f6e60206b657920746f206e6f6d696e6174652c20736f20796f752063616e20736b69702074686f73652073746570732e0000141b230000000000d2c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[173,"ad0000000000000013000000000000000d0000006d0b2323232320436f6e66696775726520796f7572206e6f6d696e6174696e67206b6579730a496e206f7264657220746f206265206120606e6f6d696e61746f72602c20796f75206e656564207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e20496620796f7520686176652070726576696f75736c79206265656e2061206056616c696461746f72602c206f7220747269656420746f20646f20736f2c20736b697020616865616420746f20737465702060392e602e0a0a312e20496e2074686520604d79204b6579736020736964656261722c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e0000191b230000000000f0c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[174,"ae0000000000000013000000000000000e000000e909362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020616e64206120604e6f6d696e6174696e676020627574746f6e2e20436c69636b20746865206c61747465722e0a31302e20496e2074686520706f7075702c2073656c6563742f70617374652074686520607374617368602061646472657373206f6620746865206056616c696461746f726020796f75207769736820746f206e6f6d696e6174652e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a496e20746865206e6578742060657261602c20796f752077696c6c2073686f77206173206120606e6f6d696e61746f7260206f6620746865206056616c696461746f726020796f75206e6f6d696e617465642e00001b1b230000000000fcc9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[175,"af00000000000000140000000000000002000000e10e232323232053657373696f6e206b65790a0a44696420796f75206163636964656e74616c6c792063686f6f736520605363686e6f72726b656c20287372323535313929602c20696e7374656164206f66206045647761726473202865643235353139296020666f7220796f7572206073657373696f6e60206b65792c20616e64206469646e2774206e6f74696365206265666f726520796f7520636f6e6669677572656420796f7572206056616c696461746f72206b657973603f20546869732063616e206265207265736f6c7665642e0a0a312e20476f20746f206056616c696461746f727360202d3e206056616c696461746f72205374616b696e676020616e642060556e7374616b65602e0a0a322e2047656e65726174652061206e6577206073657373696f6e60206b6579207769746820604564776172647320286564323535313929602c207265737461727420796f7572206e6f64652c20616e64207265706c616365207468652060726177207365656460207769746820746865206e6577206f6e652e0a0a332e205468656e2c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64207377697463682066726f6d20604261736963206665617475726573206f6e6c796020746f206046756c6c79206665617475726564602e0a0a342e20476f20746f206045787472696e73696373602c20616e642073656c65637420796f75722060636f6e74726f6c6c657260206b65792066726f6d207468652064726f70646f776e2061742074686520746f702e20496e20746865207365636f6e642064726f70646f776e2c2073656c656374206073657373696f6e602c20616e6420696e207468652074686972642c20607365744b6579602e2046696e616c6c792c2063686f6f736520796f7572206e6577206073657373696f6e60206b657920696e2074686520666f7572746820616e642066696e616c2064726f70646f776e2c20616e64207375626d69742e0a0a352e204f6e636520697420636f6e6669726d732c20676f206261636b20746f206056616c696461746f727360202d3e206056616c696461746f72205374616b696e676020616e6420605374616b65602e0a0a496e2074686520604e657874207570602c20796f7572206e6577206073657373696f6e60206b65792073686f756c642073686f772c20616e64206d61746368207468652060617574686f72697479206b65796020696e20796f7572206e6f64652e20286d696e7573207468652066696e616c20332063686172616374657273292e0a0000321b23000000000086ca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[176,"b000000000000000140000000000000003000000850b2323232320556e7374616b696e670a0a496620796f752073746f702076616c69646174696e67206279206b696c6c696e6720796f7572206e6f6465206265666f726520756e7374616b696e672c20796f752077696c6c2067657420736c617368656420616e64206b69636b65642066726f6d20746865206076616c696461746f7260207365742e20496620796f75206b6e6f7720696e20616476616e636520287e3168722920796f752063616e20646f2074686520666f6c6c6f77696e6720737465707320696e73746561643a0a0a46697273742c206d616b65207375726520796f75206861766520736574206046756c6c792046656174757265646020696e7465726661636520696e20746865206053657474696e67736020736964656261722e0a0a312e20496e206056616c696461746f72205374616b696e67602c20636c69636b206053746f702056616c69646174696e6760207769746820796f757220636f6e74726f6c6c65722e20546869732063616e20616c736f20626520646f6e6520766961206045787472696e736963603a20576974682060636f6e74726f6c6c657260202d3e20607374616b696e6760202d3e20606368696c6c2829602e0a0a496620796f7520617265206a7573742070617573696e6720746865206076616c696461746f726020616e6420696e74656e6420746f207374617274206974207570206c617465722c20796f752063616e2073746f7020686572652e205768656e20796f752061726520726561647920746f20737461727420616761696e2c206669726520757020796f7572206e6f64652c20676f20746f206056616c696461746f72205374616b696e67602c20616e6420636c69636b206056616c6964617465602e0a0a496620796f752077616e7420746f2073746f70206265696e672061206076616c696461746f726020616e64206d6f766520796f757220746f6b656e7320746f206f746865722f626574746572207573652c20636f6e74696e75652e0004401b230000000000daca875d00000000810b2323232320556e7374616b696e670a0a496620796f752073746f702076616c69646174696e67206279206b696c6c696e6720796f7572206e6f6465206265666f726520756e7374616b696e672c20796f752077696c6c2067657420736c617368656420616e64206b69636b65642066726f6d20746865206076616c696461746f7260207365742e20496620796f75206b6e6f7720696e20616476616e636520287e3168722920796f752063616e20646f2074686520666f6c6c6f77696e6720737465707320696e73746561643a0a0a46697273742c206d616b65207375726520796f75206861766520736574206046756c6c792046656174757265646020696e7465726661636520696e20746865206053657474696e67736020736964656261722e0a312e20496e206056616c696461746f72205374616b696e67602c20636c69636b206053746f702056616c69646174696e6760207769746820796f757220636f6e74726f6c6c65722e20546869732063616e20616c736f20626520646f6e6520766961206045787472696e736963603a20576974682060636f6e74726f6c6c657260202d3e20607374616b696e6760202d3e20606368696c6c2829602e0a0a496620796f7520617265206a7573742070617573696e6720746865206076616c696461746f726020616e6420696e74656e6420746f207374617274206974207570206c617465722c20796f752063616e2073746f7020686572652e205768656e20796f752061726520726561647920746f20737461727420616761696e2c206669726520757020796f7572206e6f64652c20676f20746f206056616c696461746f72205374616b696e67602c20616e6420636c69636b206056616c6964617465602e0a0a496620796f752077616e7420746f2073746f70206265696e672061206076616c696461746f726020616e64206d6f766520796f757220746f6b656e7320746f206f746865722f626574746572207573652c20636f6e74696e75652e361b2300000000009eca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[177,"b10000000000000014000000000000000400000011040a322e204e65787420796f75206d75737420756e626f6e642e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e2060756e626f6e642876616c7565296020616e642063686f6f736520686f77206d75636820796f752077616e7420746f20756e626f6e642c20603c756e626f6e64696e673e602e205375626d6974205472616e73616374696f6e2e0a0a4174207468697320706f696e742c20796f752063616e206a7573742077616974203268727320746f20626520737572652c20616e642070726f6365656420746f20737465702060362e60200a0a4f723a0a0004471b23000000000004cb875d0000000029042d2d2d0a0a322e204e65787420796f75206d75737420756e626f6e642e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e2060756e626f6e642876616c7565296020616e642063686f6f736520686f77206d75636820796f752077616e7420746f20756e626f6e642c20603c756e626f6e64696e673e602e205375626d6974205472616e73616374696f6e2e0a0a4174207468697320706f696e742c20796f752063616e206a7573742077616974203268727320746f20626520737572652c20616e642070726f6365656420746f20737465702060362e60204f723a0a0a2d2d2d3b1b230000000000bcca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[178,"b200000000000000140000000000000005000000550e332e20476f20746f2060436861696e20537461746560202d3e20607374616b696e6760202d3e20606c6564676572284163636f756e744964293a204f7074696f6e3c5374616b696e674c65646765723e602077697468207468652060636f6e74726f6c6c6572602e204f75747075743a0a6060600a2320496620796f752068617665207375636365737366756c6c7920696e6974696174656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c3c6163745f626f6e6465643e3a5b7b2276616c7565223a3c756e626f6e64696e673e2c22657261223a3c455f756e626f6e6465643e7d5d7d0a2320496620796f752068617665206e6f74207375636365737366756c6c7920696e6974696174656420756e7374616b696e672c206f722069742068617320616c726561647920636f6d706c657465643a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a2a20603c746f745f626f6e6465643e602049732074686520746f74616c20616d6f756e7420796f752068617665207374616b65642f626f6e6465640a2a20603c6163745f626f6e6465643e602049732074686520616d6f756e74206f6620746f6b656e732074686174206973206e6f74206265696e6720756e6c6f636b65640a2a20603c756e626f6e64696e673e602049732074686520616d6f756e74206f6620746f6b656e73207468617420697320696e207468652070726f63657373206f66206265696e672066726565640a20202a20603c756e626f6e64696e673e60202b20603c6163745f626f6e6465643e60203d20603c746f745f626f6e6465643e600a2a20603c455f756e626f6e6465643e6020497320746865206065726160207768656e20796f757220746f6b656e732077696c6c2062652022667265652220746f207472616e736665722f626f6e642f766f74650a0a5468652060657261602073686f756c64206f6e6c79206368616e67652065766572792036303020626c6f636b732c20627574206365727461696e206576656e7473206d617920747269676765722061206e6577206572612e20546f2063616c63756c617465207768656e20796f75722066756e647320617265202266726565220000421b230000000000e6ca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[179,"b300000000000000140000000000000006000000fd09342e20496e2060436861696e20537461746560202d3e20607374616b696e6760202d3e206063757272656e744572612829602e204c6574206f757470757420626520603c455f63757272656e743e600a352e20496e20604578706c6f7265646020636f6c6c65637420603c626c6f636b735f696e5f6572613e2f3630306020756e646572206572612e0a6060600a363030283c455f756e626f6e6465643e202d203c455f63757272656e743e202d203129202d203c626c6f636b735f696e5f6572613e203d203c626c6f636b735f6c6566743e0a283c626c6f636b735f6c6566743e202a2036292f3630203d203c6d696e757465735f6c6566743e0a6060600a416674657220603c6d696e757465735f6c6566743e6020686173207061737365642c2069652e20603c455f63757272656e743e60203d20603c455f756e626f6e6465643e602c20796f757220746f6b656e732073686f756c6420626520667265652e0a52657065617420737465702060332e6020696620796f752077616e7420746f20636f6e6669726d2e0a6060600a2320496620796f75206861766520636f6d706c6574656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a0a0a362e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e20607769746864726177556e626f6e6465642829600a0a596f757220746f6b656e732073686f756c64206e6f77206265202266726565222e0004521b23000000000046cb875d00000000090a342e20496e2060436861696e20537461746560202d3e20607374616b696e6760202d3e206063757272656e744572612829602e204c6574206f757470757420626520603c455f63757272656e743e600a352e20496e20604578706c6f7265646020636f6c6c65637420603c626c6f636b735f696e5f6572613e2f3630306020756e646572206572612e0a6060600a363030283c455f756e626f6e6465643e202d203c455f63757272656e743e202d203129202d203c626c6f636b735f696e5f6572613e203d203c626c6f636b735f6c6566743e0a283c626c6f636b735f6c6566743e202a2036292f3630203d203c6d696e757465735f6c6566743e0a6060600a416674657220603c6d696e757465735f6c6566743e6020686173207061737365642c2069652e20603c455f63757272656e743e60203d20603c455f756e626f6e6465643e602c20796f757220746f6b656e732073686f756c6420626520667265652e0a52657065617420737465702060332e6020696620796f752077616e7420746f20636f6e6669726d2e0a6060600a2320496620796f75206861766520636f6d706c6574656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a2d2d2d0a0a362e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e20607769746864726177556e626f6e6465642829600a0a596f757220746f6b656e732073686f756c64206e6f77206265202266726565222e491b23000000000010cb875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[180,"b400000000000000140000000000000007000000ad062323232320526573746172742076616c69646174696e672061667465722067657474696e6720626f6f7465640a496620796f7572206e6f6465207368757420646f776e206265666f726520796f75206861642073746f707065642076616c69646174696e6720616e642f6f722074686520677261636520706572696f6420666f7220607374616b696e672e6368696c6c602077617320636f6d706c657465642c20616c6c20796f75206e65656420746f206973207374617274206076616c69646174696e676020616761696e2066726f6d206056616c696461746f72205374616b696e67602e204a757374206d616b652073757265207468617420796f7572206e6f6465206973206261636b2075702c20616e64207468652060617574686f7269747960206b65792073686f77696e67206174206e6f64652073746172747570206973207468652073616d6520617320796f7572206073657373696f6e60206b65792e0a2a2a4e6f74652a2a0a497420646f65736e2774206d617474657220696620796f75722060737461736860206861732061206062616c616e636560203c2060626f6e646564602e0a00004c1b23000000000022cb875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"]],"threads":[[1,"01000000000000003c436f6465206f6620436f6e64756374010000000000000001000000000100000000000000be6d0f0000000000082c115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[2,"02000000000000001101546869732069732074686520666972737420706f7374206576657220666f7220746865204a6f7973747265616d205368697420506f7374696e6720436f6d6d756e697479030000000000000001000000000600000000000000366e0f0000000000de2e115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[3,"030000000000000070486f7720746f20537461727420412053746f72616765204e6f64653f010000000000000002000000000100000000000000416e0f0000000000202f115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[4,"04000000000000003c436f6e74656e742043757261746f720200000000000000010000000002000000000000006e950f0000000000c41a125d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[5,"05000000000000004043727970746f63757272656e63696573030000000000000002000000000200000000000000e7af0f00000000003cba125d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[6,"06000000000000006c496e74726f64756374696f6e3a2042656465686f204d656e64657201000000000000000300000000020000000000000079cb0f00000000004460135d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[7,"0700000000000000505374616b656420506f6463617374202d204570360300000000000000030000000003000000000000003733100000000000a0d1155d000000007cbd2c992945e5fc83d937a180e402ff32699718c1fc753f7a0214492e3ff035"],[8,"080000000000000078496d70726f76696e6720466f72756d2046756e6374696f6e616c6974793f01000000000000000400000000070000000000000016571100000000006aaf1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[9,"0900000000000000804469737472696275746f72202842616e6477696474682050726f76696465722902000000000000000200000001818d13000000000094052a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad744d65616e7420746f20626520612073756263617465676f72792e2e2e2e0100000000000000118d130000000000e8022a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[10,"0a000000000000008c4a6f7973747265616d20556e6f6666696369616c205475746f7269616c20566964656f010000000000000005000000000300000000000000b58f130000000000d8122a5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[11,"0b000000000000006041626f7574204a6f7973747265616d20426f756e746965730a0000000000000001000000000f000000000000006f43220000000000aab7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[12,"0c000000000000000501426f756e7479202330202d204669782062726f6b656e206c696e6b732c20666f726d617474696e672c2065746320696e20524541444d4573202d2024322f6669780a00000000000000020000000005000000000000007343220000000000c2b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[13,"0d00000000000000f4426f756e7479202331202d20496d70726f7665206e6574776f726b696e67202b2070726f6d6f74696f6e616c2063616d706169676e202d20243530302a0a00000000000000030000000009000000000000007943220000000000e6b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[14,"0e00000000000000f8426f756e7479202332202d204c697374206f66206d656469612066696c652074797065732f657874656e73696f6e7320706c617961626c65202d202435300a00000000000000040000000002000000000000007d43220000000000feb7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[15,"0f000000000000000d01426f756e7479202333202d20436f6d70696c65206c697374206f662066726565206d6564696120616e64206d6574616461746120736f7572636573202d20243230302a0a0000000000000005000000000600000000000000844322000000000028b8825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[16,"100000000000000078536574757020596f75722056616c696461746f72202857696e646f777329040000000000000001000000000f00000000000000f5642200000000008e81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[17,"110000000000000070536574757020596f75722056616c696461746f7220284c696e757829040000000000000002000000000f00000000000000fa64220000000000ac81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[18,"120000000000000068536574757020596f75722056616c696461746f7220284d616329040000000000000003000000000e00000000000000ff64220000000000ca81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[19,"1300000000000000c8416476616e636564202852756e20417320536572766963652c2053657474696e677320616e64204e6f6d696e6174696e6729040000000000000004000000000e0000000000000016652200000000005482835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[20,"14000000000000003c54726f75626c6573686f6f74696e670400000000000000050000000007000000000000001c652200000000007882835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[21,"15000000000000006c536574757020596f75722053746f726167652050726f766964657205000000000000000100000000190000000000000048652200000000008083835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[22,"16000000000000003c54726f75626c6573686f6f74696e670500000000000000020000000009000000000000004c652200000000009883835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[23,"1700000000000000685265676973746572696e6720466f72204d656d626572736869700600000000000000010000000003000000000000007f65220000000000ca84835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[24,"18000000000000007c4765742053746172746564204173204120436f756e63696c204d656d6265720600000000000000020000000008000000000000008365220000000000e284835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[25,"19000000000000003c54726f75626c6573686f6f74696e670600000000000000030000000001000000000000008665220000000000f484835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[26,"1a0000000000000034427567205265706f72746572730b000000000000000100000000030000000000000090652200000000003085835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[27,"1b000000000000005c4275696c646572732028436f6e7472696275746f7273290b00000000000000020000000001000000000000009e652200000000008485835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"]]} diff --git a/res/forum_data_acropolis_serialized.json b/res/forum_data_acropolis_serialized.json new file mode 100644 index 0000000000..42dff02702 --- /dev/null +++ b/res/forum_data_acropolis_serialized.json @@ -0,0 +1,110914 @@ +{ + "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": 1010118, + "time": 1561400376 + }, + "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": "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": 1010132, + "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": 1010212, + "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": 1021321, + "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": 1021334, + "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": 1021344, + "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": 1021369, + "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": 1190821, + "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": 1281336, + "time": 1563034584 + }, + "deleted": false, + "archived": false, + "num_direct_subcategories": 0, + "num_direct_unmoderated_threads": 0, + "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": 2245480, + "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": 2254128, + "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": 1011134, + "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": 1011254, + "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": 1011265, + "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": 1017392, + "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": 1018546, + "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": 1019406, + "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": 1021294, + "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": 1028071, + "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": 1030883, + "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": 1035129, + "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": 1061687, + "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": 1134118, + "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": 1136380, + "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": 1136406, + "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": [ + { + "expired_at": { + "block": 1150700, + "time": 1562247822 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150719, + "time": 1562247936 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150767, + "time": 1562248224 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150776, + "time": 1562248278 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150807, + "time": 1562248464 + }, + "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 + ] + } + ], + "created_at": { + "block": 1150684, + "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": 1218378, + "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": 1224663, + "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": 1271763, + "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": [ + { + "expired_at": { + "block": 1279770, + "time": 1563025104 + }, + "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, + 116, + 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 + ] + } + ], + "created_at": { + "block": 1271962, + "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": [ + { + "expired_at": { + "block": 1271997, + "time": 1562978346 + }, + "text": [ + 87, + 104, + 97, + 116, + 32, + 105, + 110, + 32, + 112, + 97, + 114, + 116, + 105, + 99, + 117, + 108, + 97, + 114, + 32, + 97, + 116, + 116, + 114, + 97, + 99, + 116, + 101, + 100, + 32, + 121, + 111, + 117, + 32, + 116, + 111, + 32, + 116, + 104, + 101, + 32, + 105, + 100, + 101, + 97, + 32, + 111, + 102, + 32, + 97, + 32, + 117, + 115, + 101, + 114, + 32, + 103, + 111, + 118, + 101, + 114, + 110, + 101, + 100, + 32, + 97, + 110, + 100, + 32, + 111, + 112, + 101, + 114, + 97, + 116, + 101, + 100, + 32, + 118, + 105, + 100, + 101, + 111, + 32, + 112, + 108, + 97, + 116, + 102, + 111, + 114, + 109, + 63 + ] + }, + { + "expired_at": { + "block": 1279806, + "time": 1563025320 + }, + "text": [ + 72, + 105, + 32, + 116, + 104, + 101, + 114, + 101, + 33, + 32, + 87, + 104, + 97, + 116, + 32, + 105, + 110, + 32, + 112, + 97, + 114, + 116, + 105, + 99, + 117, + 108, + 97, + 114, + 32, + 97, + 116, + 116, + 114, + 97, + 99, + 116, + 101, + 100, + 32, + 121, + 111, + 117, + 32, + 116, + 111, + 32, + 116, + 104, + 101, + 32, + 105, + 100, + 101, + 97, + 32, + 111, + 102, + 32, + 97, + 32, + 117, + 115, + 101, + 114, + 32, + 103, + 111, + 118, + 101, + 114, + 110, + 101, + 100, + 32, + 97, + 110, + 100, + 32, + 111, + 112, + 101, + 114, + 97, + 116, + 101, + 100, + 32, + 118, + 105, + 100, + 101, + 111, + 32, + 112, + 108, + 97, + 116, + 102, + 111, + 114, + 109, + 63 + ] + }, + { + "expired_at": { + "block": 1324500, + "time": 1563294780 + }, + "text": [ + 72, + 105, + 32, + 116, + 104, + 101, + 114, + 101, + 33, + 32, + 87, + 104, + 97, + 116, + 32, + 105, + 110, + 32, + 112, + 97, + 114, + 116, + 105, + 99, + 117, + 108, + 97, + 114, + 32, + 97, + 116, + 116, + 114, + 97, + 99, + 116, + 101, + 100, + 32, + 121, + 111, + 117, + 32, + 116, + 111, + 32, + 116, + 104, + 101, + 32, + 105, + 100, + 101, + 97, + 32, + 111, + 102, + 32, + 97, + 32, + 117, + 115, + 101, + 114, + 32, + 103, + 111, + 118, + 101, + 114, + 110, + 101, + 100, + 32, + 97, + 110, + 100, + 32, + 111, + 112, + 101, + 114, + 97, + 116, + 101, + 100, + 32, + 109, + 101, + 100, + 105, + 97, + 32, + 112, + 108, + 97, + 116, + 102, + 111, + 114, + 109, + 63 + ] + } + ], + "created_at": { + "block": 1271994, + "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": 1279782, + "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": 1281297, + "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": 1281973, + "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": [ + { + "expired_at": { + "block": 1306505, + "time": 1563186186 + }, + "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 + ] + } + ], + "created_at": { + "block": 1306501, + "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": 1309887, + "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": 1310797, + "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": 2134593, + "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": 2187819, + "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": [ + { + "expired_at": { + "block": 2270455, + "time": 1568998128 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270550, + "time": 1568998698 + }, + "text": [ + 35, + 32, + 79, + 118, + 101, + 114, + 118, + 105, + 101, + 119, + 10, + 84, + 104, + 105, + 115, + 32, + 116, + 104, + 114, + 101, + 97, + 100, + 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 + ] + } + ], + "created_at": { + "block": 2245487, + "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": [ + { + "expired_at": { + "block": 2270386, + "time": 1568997714 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270416, + "time": 1568997894 + }, + "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, + 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 + ] + } + ], + "created_at": { + "block": 2245491, + "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": [ + { + "expired_at": { + "block": 2270646, + "time": 1568999274 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270649, + "time": 1568999292 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2245497, + "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": [ + { + "expired_at": { + "block": 2270725, + "time": 1568999748 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270732, + "time": 1568999790 + }, + "text": [ + 35, + 35, + 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, + 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, + 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, + 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, + 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, + 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, + 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 + ] + }, + { + "expired_at": { + "block": 2270743, + "time": 1568999856 + }, + "text": [ + 35, + 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, + 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, + 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, + 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, + 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, + 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, + 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 + ] + } + ], + "created_at": { + "block": 2245501, + "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": [ + { + "expired_at": { + "block": 2270776, + "time": 1569000054 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2245508, + "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": [ + { + "expired_at": { + "block": 2285041, + "time": 1569085848 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254069, + "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": [ + { + "expired_at": { + "block": 2300521, + "time": 1569179088 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254074, + "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": [ + { + "expired_at": { + "block": 2300522, + "time": 1569179094 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254079, + "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": [ + { + "expired_at": { + "block": 2300646, + "time": 1569179838 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254102, + "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": [ + { + "expired_at": { + "block": 2300717, + "time": 1569180264 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2300720, + "time": 1569180282 + }, + "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, + 10 + ] + } + ], + "created_at": { + "block": 2254108, + "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": [ + { + "expired_at": { + "block": 2284752, + "time": 1569084114 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254152, + "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": [ + { + "expired_at": { + "block": 2284863, + "time": 1569084780 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254156, + "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": [ + { + "expired_at": { + "block": 2284917, + "time": 1569085104 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254207, + "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": [ + { + "expired_at": { + "block": 2284935, + "time": 1569085212 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254211, + "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": [ + { + "expired_at": { + "block": 2284980, + "time": 1569085482 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254214, + "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": [ + { + "expired_at": { + "block": 2285002, + "time": 1569085614 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254224, + "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": [ + { + "expired_at": { + "block": 2285021, + "time": 1569085728 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254238, + "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": [ + { + "expired_at": { + "block": 2270412, + "time": 1568997870 + }, + "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, + 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 + ] + } + ], + "created_at": { + "block": 2270391, + "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": [ + { + "expired_at": { + "block": 2270402, + "time": 1568997810 + }, + "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, + 49, + 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 + ] + } + ], + "created_at": { + "block": 2270395, + "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": 2270405, + "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": [ + { + "expired_at": { + "block": 2270579, + "time": 1568998872 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2270429, + "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": 2270458, + "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": [ + { + "expired_at": { + "block": 2270468, + "time": 1568998206 + }, + "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, + 10, + 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 + ] + } + ], + "created_at": { + "block": 2270463, + "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": 2270470, + "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": 2270475, + "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": 2270478, + "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": 2270484, + "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": [ + { + "expired_at": { + "block": 2270492, + "time": 1568998350 + }, + "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, + 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, + 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, + 91, + 67, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 32, + 66, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 93, + 40, + 35, + 99, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 45, + 98, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 41, + 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 + ] + } + ], + "created_at": { + "block": 2270486, + "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": [ + { + "expired_at": { + "block": 2270500, + "time": 1568998398 + }, + "text": [ + 45, + 32, + 42, + 42, + 66, + 111, + 117, + 110, + 116, + 121, + 42, + 42, + 10, + 32, + 32, + 45, + 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, + 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, + 91, + 67, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 32, + 66, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 93, + 40, + 35, + 99, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 45, + 98, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 41, + 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 + ] + } + ], + "created_at": { + "block": 2270496, + "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": 2270515, + "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": 2270518, + "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": [ + { + "expired_at": { + "block": 2270538, + "time": 1568998626 + }, + "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, + 105, + 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 + ] + } + ], + "created_at": { + "block": 2270523, + "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": 2270525, + "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": [ + { + "expired_at": { + "block": 2270541, + "time": 1568998644 + }, + "text": [ + 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 + ] + }, + { + "expired_at": { + "block": 2270545, + "time": 1568998668 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2270530, + "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": 2270572, + "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": 2270655, + "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": 2270660, + "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": 2270663, + "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": 2270666, + "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": 2270669, + "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": 2270674, + "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": 2270679, + "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": 2270707, + "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": 2270739, + "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": 2270779, + "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": 2270784, + "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": 2270787, + "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": 2270794, + "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": 2270802, + "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": 2284756, + "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": 2284759, + "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": 2284762, + "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": 2284764, + "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": 2284766, + "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": 2284768, + "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": 2284771, + "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": 2284774, + "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": 2284782, + "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": 2284793, + "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": 2284796, + "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": 2284800, + "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": 2284803, + "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": 2284807, + "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": 2284811, + "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": 2284813, + "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": 2284819, + "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": 2284822, + "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": 2284827, + "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": 2284831, + "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": 2284841, + "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": 2284848, + "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": 2284853, + "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": 2284857, + "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": 2284865, + "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": 2284868, + "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": 2284871, + "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": 2284877, + "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": 2284881, + "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": 2284883, + "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": 2284890, + "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": 2284894, + "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": 2284919, + "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": 2284921, + "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": [ + { + "expired_at": { + "block": 2284939, + "time": 1569085236 + }, + "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 + ] + } + ], + "created_at": { + "block": 2284932, + "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": [ + { + "expired_at": { + "block": 2284955, + "time": 1569085332 + }, + "text": [ + 35, + 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 + ] + } + ], + "created_at": { + "block": 2284947, + "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": 2284951, + "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": 2284957, + "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": 2284959, + "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": 2284961, + "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": 2284963, + "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": [ + { + "expired_at": { + "block": 2285012, + "time": 1569085674 + }, + "text": [ + 35, + 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 + ] + } + ], + "created_at": { + "block": 2285008, + "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": 2285010, + "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": 2285044, + "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": 2285046, + "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": 2285049, + "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": 2285051, + "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": [ + { + "expired_at": { + "block": 2285061, + "time": 1569085968 + }, + "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 + ] + } + ], + "created_at": { + "block": 2285053, + "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": 2285080, + "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": 2285100, + "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": 2285102, + "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": 2285110, + "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": 2285112, + "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": 2285116, + "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": 2285120, + "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": 2285123, + "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": 2285127, + "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": 2300526, + "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": 2300527, + "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": 2300532, + "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": 2300534, + "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": 2300536, + "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": 2300539, + "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": 2300547, + "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": 2300555, + "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": [ + { + "expired_at": { + "block": 2300604, + "time": 1569179586 + }, + "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, + 111, + 32, + 91, + 104, + 101, + 114, + 101, + 93, + 40, + 35, + 103, + 101, + 110, + 101, + 114, + 97, + 116, + 101, + 45, + 121, + 111, + 117, + 114, + 45, + 107, + 101, + 121, + 115, + 41, + 32, + 116, + 111, + 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, + 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 + ] + } + ], + "created_at": { + "block": 2300557, + "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": 2300561, + "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": 2300563, + "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": 2300566, + "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": 2300568, + "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": 2300571, + "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": 2300578, + "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": 2300583, + "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": 2300585, + "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": 2300588, + "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": 2300590, + "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": 2300593, + "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": 2300596, + "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": 2300599, + "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": 2300610, + "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": 2300612, + "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": 2300615, + "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": 2300617, + "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": 2300619, + "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": 2300653, + "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": 2300655, + "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": 2300657, + "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": 2300658, + "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": 2300663, + "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": [ + { + "expired_at": { + "block": 2300673, + "time": 1569180000 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2300665, + "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": 2300677, + "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": 2300681, + "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": 2300686, + "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": 2300688, + "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": 2300692, + "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": 2300697, + "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": 2300699, + "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": 2300722, + "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": [ + { + "expired_at": { + "block": 2300736, + "time": 1569180378 + }, + "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, + 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 + ] + } + ], + "created_at": { + "block": 2300726, + "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": [ + { + "expired_at": { + "block": 2300743, + "time": 1569180420 + }, + "text": [ + 45, + 45, + 45, + 10, + 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, + 79, + 114, + 58, + 10, + 10, + 45, + 45, + 45 + ] + } + ], + "created_at": { + "block": 2300731, + "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": 2300738, + "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": [ + { + "expired_at": { + "block": 2300754, + "time": 1569180486 + }, + "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, + 45, + 45, + 45, + 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 + ] + } + ], + "created_at": { + "block": 2300745, + "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": 2300748, + "time": 1569180450 + }, + "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" + } + ] + ], + "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": 1011134, + "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": 1011254, + "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": 1011265, + "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": 1021294, + "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": 1028071, + "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": 1035129, + "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": 1061687, + "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": 1136406, + "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": 1281409, + "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": 1281297, + "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": 1281973, + "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": 2245487, + "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": 2245491, + "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": 2245497, + "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": 2245501, + "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": 2245508, + "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": 2254069, + "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": 2254074, + "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": 2254079, + "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": 2254102, + "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": 2254108, + "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": 2254152, + "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": 2254156, + "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": 2254207, + "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": 2254211, + "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": 2254214, + "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": 2254224, + "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": 2254238, + "time": 1568900484 + }, + "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" + } + ] + ] +} \ No newline at end of file diff --git a/res/forum_data_empty.json b/res/forum_data_empty.json new file mode 100644 index 0000000000..22599fb4b7 --- /dev/null +++ b/res/forum_data_empty.json @@ -0,0 +1 @@ +{ "categories":[], "posts":[], "threads":[] } \ No newline at end of file diff --git a/res/initial_members.json b/res/initial_members.json deleted file mode 100644 index f0d069e5ac..0000000000 --- a/res/initial_members.json +++ /dev/null @@ -1,6 +0,0 @@ -[{ - "address": "5Gn9n7SDJ7VgHqHQWYzkSA4vX6DCmS5TFWdHxikTXp9b4L32", - "handle": "mokhtar", - "avatar_uri": "http://mokhtar.net/avatar.png", - "about": "Mokhtar" -}] \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 4aaa623176..1b085b21dc 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -306,7 +306,9 @@ fn staging_testnet_config_genesis() -> GenesisConfig { default_paid_membership_fee: 100u128, members: crate::members_config::initial_members(), }), - forum: Some(crate::forum_config::create(endowed_accounts[0].clone())), + forum: Some(crate::forum_config::from_serialized::create( + endowed_accounts[0].clone(), + )), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), @@ -431,7 +433,7 @@ pub fn testnet_genesis( default_paid_membership_fee: 100u128, members: initial_members, }), - forum: Some(crate::forum_config::create(root_key)), + forum: Some(crate::forum_config::from_serialized::create(root_key)), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), diff --git a/src/forum_config/from_encoded.rs b/src/forum_config/from_encoded.rs new file mode 100644 index 0000000000..108bd878e7 --- /dev/null +++ b/src/forum_config/from_encoded.rs @@ -0,0 +1,93 @@ +// This module is not used but included as sample code +// and highlights some pitfalls. + +use node_runtime::{ + forum::{ + Category, CategoryId, InputValidationLengthConstraint, Post, PostId, Thread, ThreadId, + }, + AccountId, BlockNumber, ForumConfig, Moment, +}; +use serde::Deserialize; +use serde_json::Result; + +use codec::Decode; + +#[derive(Deserialize)] +struct ForumData { + /// hex encoded categories + categories: Vec<(CategoryId, String)>, + /// hex encoded posts + posts: Vec<(PostId, String)>, + /// hex encoded threads + threads: Vec<(ThreadId, String)>, +} + +fn decode_post(encoded: String) -> Post { + // hex string must not include '0x' prefix! + let encoded = hex::decode(encoded.as_bytes()).expect("failed to parse hex string"); + Decode::decode(&mut encoded.as_slice()).unwrap() +} + +fn decode_category(encoded: String) -> Category { + // hex string must not include '0x' prefix! + let encoded = hex::decode(encoded.as_bytes()).expect("failed to parse hex string"); + Decode::decode(&mut encoded.as_slice()).unwrap() +} + +fn decode_thread(encoded: String) -> Thread { + // hex string must not include '0x' prefix! + let encoded = hex::decode(encoded.as_bytes()).expect("failed to parse hex string"); + Decode::decode(&mut encoded.as_slice()).unwrap() +} + +fn parse_forum_json() -> Result { + let data = include_str!("../../res/forum_data_acropolis_encoded.json"); + serde_json::from_str(data) +} + +fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { + return InputValidationLengthConstraint { min, max_min_diff }; +} + +pub fn create(forum_sudo: AccountId) -> ForumConfig { + let forum_data = parse_forum_json().expect("failed loading forum data"); + + let next_category_id: CategoryId = forum_data + .categories + .last() + .map_or(1, |category| category.0 + 1); + let next_thread_id: ThreadId = forum_data.threads.last().map_or(1, |thread| thread.0 + 1); + let next_post_id: PostId = forum_data.posts.last().map_or(1, |post| post.0 + 1); + + ForumConfig { + // Decoding will fail because of differnt type used for + // BlockNumber between Acropolis (u64) and Rome (u32) + // As long as types between chains are identical this approach works nicely + // since we don't need to use an intermediate format or do any transformation on source data. + category_by_id: forum_data + .categories + .into_iter() + .map(|category| (category.0, decode_category(category.1))) + .collect(), + thread_by_id: forum_data + .threads + .into_iter() + .map(|thread| (thread.0, decode_thread(thread.1))) + .collect(), + post_by_id: forum_data + .posts + .into_iter() + .map(|post| (post.0, decode_post(post.1))) + .collect(), + next_category_id, + next_thread_id, + next_post_id, + forum_sudo, + category_title_constraint: new_validation(10, 90), + category_description_constraint: new_validation(10, 490), + thread_title_constraint: new_validation(10, 90), + post_text_constraint: new_validation(10, 990), + thread_moderation_rationale_constraint: new_validation(10, 290), + post_moderation_rationale_constraint: new_validation(10, 290), + } +} diff --git a/src/forum_config.rs b/src/forum_config/from_serialized.rs similarity index 93% rename from src/forum_config.rs rename to src/forum_config/from_serialized.rs index ead4fbf7ac..85ed91c8f2 100644 --- a/src/forum_config.rs +++ b/src/forum_config/from_serialized.rs @@ -4,10 +4,10 @@ use node_runtime::{ }, AccountId, BlockNumber, ForumConfig, Moment, }; -use serde::{Deserialize, Serialize}; +use serde::Deserialize; use serde_json::Result; -#[derive(Serialize, Deserialize)] +#[derive(Deserialize)] struct ForumData { categories: Vec<(CategoryId, Category)>, posts: Vec<(PostId, Post)>, @@ -15,7 +15,7 @@ struct ForumData { } fn parse_forum_json() -> Result { - let data = include_str!("../res/forum_data.json"); + let data = include_str!("../../res/forum_data_acropolis_serialized.json"); serde_json::from_str(data) } diff --git a/src/forum_config/mod.rs b/src/forum_config/mod.rs new file mode 100644 index 0000000000..5d96f9b12f --- /dev/null +++ b/src/forum_config/mod.rs @@ -0,0 +1,4 @@ +pub mod from_serialized; + +// Not exported - only here as sample code +// mod from_encoded; diff --git a/src/members_config.rs b/src/members_config.rs index 94259c4e87..184dc20018 100644 --- a/src/members_config.rs +++ b/src/members_config.rs @@ -1,9 +1,9 @@ -use serde::{Deserialize, Serialize}; +use serde::Deserialize; use serde_json::Result; use primitives::crypto::{AccountId32, Ss58Codec}; -#[derive(Serialize, Deserialize)] +#[derive(Deserialize)] struct Member { /// SS58 Encoded public key address: String, @@ -25,7 +25,7 @@ struct Member { // } fn parse_members_json() -> Result> { - let data = include_str!("../res/initial_members.json"); + let data = include_str!("../res/acropolis_members.json"); serde_json::from_str(data) } From 1a08d88d4d1c437a823c83505bd9c308238dcd4c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Dec 2019 10:01:01 +0200 Subject: [PATCH 237/350] configure content working group --- src/chain_spec.rs | 62 ++++++++++++++++++++++++++--- src/forum_config/from_encoded.rs | 7 +--- src/forum_config/from_serialized.rs | 9 +---- src/forum_config/mod.rs | 6 +++ 4 files changed, 67 insertions(+), 17 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 1b085b21dc..ec68983a36 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -17,11 +17,11 @@ use hex_literal::hex; use node_runtime::{ versioned_store::InputValidationLengthConstraint as VsInputValidation, AccountId, ActorsConfig, - AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, CouncilConfig, - CouncilElectionConfig, DataObjectStorageRegistryConfig, DataObjectTypeRegistryConfig, - GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, Perbill, - ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, StakingConfig, - SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, + AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, ContentWorkingGroupConfig, + CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, + DataObjectTypeRegistryConfig, GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, + MembersConfig, Perbill, ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, + StakingConfig, SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, }; use primitives::{crypto::UncheckedInto, sr25519, Pair, Public}; use runtime_primitives::traits::{IdentifyAccount, Verify}; @@ -329,6 +329,32 @@ fn staging_testnet_config_genesis() -> GenesisConfig { class_name_constraint: new_vs_validation(1, 99), class_description_constraint: new_vs_validation(1, 999), }), + content_wg: Some(ContentWorkingGroupConfig { + // config() + mint: 0, + // config() + current_lead_id: 0, + lead_by_id: vec![], + next_lead_id: 0, + 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: 0, + 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_readble_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), + }), } } @@ -454,5 +480,31 @@ pub fn testnet_genesis( class_name_constraint: new_vs_validation(1, 99), class_description_constraint: new_vs_validation(1, 999), }), + content_wg: Some(ContentWorkingGroupConfig { + // This needs to be exist to ensure correct behavior + mint: 0, + // Can't set to None? -> use build() and genesis_extra because we need to call set_lead() + current_lead_id: 0, + lead_by_id: vec![], + next_lead_id: 0, + 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: 0, + 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_readble_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), + }), } } diff --git a/src/forum_config/from_encoded.rs b/src/forum_config/from_encoded.rs index 108bd878e7..2aa0634505 100644 --- a/src/forum_config/from_encoded.rs +++ b/src/forum_config/from_encoded.rs @@ -3,12 +3,13 @@ use node_runtime::{ forum::{ - Category, CategoryId, InputValidationLengthConstraint, Post, PostId, Thread, ThreadId, + Category, CategoryId, Post, PostId, Thread, ThreadId, }, AccountId, BlockNumber, ForumConfig, Moment, }; use serde::Deserialize; use serde_json::Result; +use super::new_validation; use codec::Decode; @@ -45,10 +46,6 @@ fn parse_forum_json() -> Result { serde_json::from_str(data) } -fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { - return InputValidationLengthConstraint { min, max_min_diff }; -} - pub fn create(forum_sudo: AccountId) -> ForumConfig { let forum_data = parse_forum_json().expect("failed loading forum data"); diff --git a/src/forum_config/from_serialized.rs b/src/forum_config/from_serialized.rs index 85ed91c8f2..06b0ee0b4c 100644 --- a/src/forum_config/from_serialized.rs +++ b/src/forum_config/from_serialized.rs @@ -1,7 +1,6 @@ +use super::new_validation; use node_runtime::{ - forum::{ - Category, CategoryId, InputValidationLengthConstraint, Post, PostId, Thread, ThreadId, - }, + forum::{Category, CategoryId, Post, PostId, Thread, ThreadId}, AccountId, BlockNumber, ForumConfig, Moment, }; use serde::Deserialize; @@ -19,10 +18,6 @@ fn parse_forum_json() -> Result { serde_json::from_str(data) } -fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { - return InputValidationLengthConstraint { min, max_min_diff }; -} - pub fn create(forum_sudo: AccountId) -> ForumConfig { let forum_data = parse_forum_json().expect("failed loading forum data"); diff --git a/src/forum_config/mod.rs b/src/forum_config/mod.rs index 5d96f9b12f..e72963da72 100644 --- a/src/forum_config/mod.rs +++ b/src/forum_config/mod.rs @@ -2,3 +2,9 @@ pub mod from_serialized; // Not exported - only here as sample code // mod from_encoded; + +use node_runtime::forum::InputValidationLengthConstraint; + +pub fn new_validation(min: u16, max_min_diff: u16) -> InputValidationLengthConstraint { + return InputValidationLengthConstraint { min, max_min_diff }; +} From 8891cf9780c863ab5b0fdd34d8cccacc0fbd2c64 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 9 Dec 2019 09:29:56 +0200 Subject: [PATCH 238/350] update runtime that includes content working group --- Cargo.lock | 92 +++++++++++++++++++++++++++++++++++++++++++++-- Cargo.toml | 3 +- src/chain_spec.rs | 16 +++------ 3 files changed, 95 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8096a3abb2..9241c9eaba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=98df5eec6176d7ce53bf47e1ddcd06c5494a24d6)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=f7f11141ecc90063fc6d414544855011e625fd81)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=98df5eec6176d7ce53bf47e1ddcd06c5494a24d6#98df5eec6176d7ce53bf47e1ddcd06c5494a24d6" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=f7f11141ecc90063fc6d414544855011e625fd81#f7f11141ecc90063fc6d414544855011e625fd81" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1420,9 +1420,13 @@ dependencies = [ "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", + "substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?rev=504cecb1e3e312a19fcc244419905ec9ea377a4f)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-stake-module 1.0.0 (git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8)", + "substrate-token-mint-module 1.0.0 (git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217)", "substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)", "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=02cfd53c132f95c99cb936bace4432a064b62b86)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4314,6 +4318,26 @@ dependencies = [ "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] +[[package]] +name = "substrate-hiring-module" +version = "1.0.0" +source = "git+https://github.com/mnaamani/substrate-hiring-module?rev=504cecb1e3e312a19fcc244419905ec9ea377a4f#504cecb1e3e312a19fcc244419905ec9ea377a4f" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-stake-module 1.0.0 (git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8)", +] + [[package]] name = "substrate-inherents" version = "2.0.0" @@ -4510,6 +4534,26 @@ dependencies = [ "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] +[[package]] +name = "substrate-recurring-reward-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61#417f7bb5b82ae50f02716ac4eefa2fc7952e0f61" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-token-mint-module 1.0.0 (git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217)", +] + [[package]] name = "substrate-rpc" version = "2.0.0" @@ -4642,6 +4686,25 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", ] +[[package]] +name = "substrate-stake-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8#0516efe9230da112bc095e28f34a3715c2e03ca8" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", +] + [[package]] name = "substrate-state-db" version = "2.0.0" @@ -4694,6 +4757,25 @@ dependencies = [ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-token-mint-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217#5570e3b56e9caffa7df1dbede6308b2e6ce18217" +dependencies = [ + "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", +] + [[package]] name = "substrate-transaction-graph" version = "2.0.0" @@ -5781,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=98df5eec6176d7ce53bf47e1ddcd06c5494a24d6)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=f7f11141ecc90063fc6d414544855011e625fd81)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6038,6 +6120,7 @@ dependencies = [ "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?rev=504cecb1e3e312a19fcc244419905ec9ea377a4f)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" @@ -6049,6 +6132,7 @@ dependencies = [ "checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)" = "" "checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" @@ -6056,9 +6140,11 @@ dependencies = [ "checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-stake-module 1.0.0 (git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8)" = "" "checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-token-mint-module 1.0.0 (git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217)" = "" "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" diff --git a/Cargo.toml b/Cargo.toml index 44e9a2743a..71f4c77d29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,8 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' +# rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' # versioned store only +rev = 'f7f11141ecc90063fc6d414544855011e625fd81' # working group integration # local development... # path = 'substrate-runtime-joystream' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index ec68983a36..6589e3f499 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -330,12 +330,8 @@ fn staging_testnet_config_genesis() -> GenesisConfig { class_description_constraint: new_vs_validation(1, 999), }), content_wg: Some(ContentWorkingGroupConfig { - // config() - mint: 0, - // config() - current_lead_id: 0, - lead_by_id: vec![], - next_lead_id: 0, + mint_capacity: 100000, + initial_lead: None, curator_opening_by_id: vec![], next_curator_opening_id: 0, curator_application_by_id: vec![], @@ -481,12 +477,8 @@ pub fn testnet_genesis( class_description_constraint: new_vs_validation(1, 999), }), content_wg: Some(ContentWorkingGroupConfig { - // This needs to be exist to ensure correct behavior - mint: 0, - // Can't set to None? -> use build() and genesis_extra because we need to call set_lead() - current_lead_id: 0, - lead_by_id: vec![], - next_lead_id: 0, + mint_capacity: 100000, + initial_lead: None, curator_opening_by_id: vec![], next_curator_opening_id: 0, curator_application_by_id: vec![], From 6b6604946afcfe16e387645d54b99cc15fe2d192 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 9 Dec 2019 15:00:05 +0200 Subject: [PATCH 239/350] bump runtime --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9241c9eaba..a71399852d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=f7f11141ecc90063fc6d414544855011e625fd81)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=f7f11141ecc90063fc6d414544855011e625fd81#f7f11141ecc90063fc6d414544855011e625fd81" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8#554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=f7f11141ecc90063fc6d414544855011e625fd81)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index 71f4c77d29..c1386a4d2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' # rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' # versioned store only -rev = 'f7f11141ecc90063fc6d414544855011e625fd81' # working group integration +rev = '554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8' # working group integration # local development... # path = 'substrate-runtime-joystream' From d1a3e88e8dd7ccd0e9b27baeb1bb1405385eda25 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 11 Dec 2019 10:41:17 +0200 Subject: [PATCH 240/350] bump runtime --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a71399852d..30742f728f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=41593f7f8e5da3db85b2c49d6326ffc67f6f9723)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8#554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=41593f7f8e5da3db85b2c49d6326ffc67f6f9723#41593f7f8e5da3db85b2c49d6326ffc67f6f9723" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=41593f7f8e5da3db85b2c49d6326ffc67f6f9723)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index c1386a4d2f..a38f4bedd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' # rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' # versioned store only -rev = '554c58b7341ff9e7d0d5a8ba826f03bc566cc2f8' # working group integration +rev = '41593f7f8e5da3db85b2c49d6326ffc67f6f9723' # working group integration # local development... # path = 'substrate-runtime-joystream' From 60f42146ff66558b9bb897aabe6ede4e13f04163 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 11 Dec 2019 11:25:57 +0200 Subject: [PATCH 241/350] set initial lead at genesis, root in devchain, ben in staging testnet --- src/chain_spec.rs | 14 +++++++++++--- src/members_config.rs | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 6589e3f499..1bcfab4aa9 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -331,7 +331,13 @@ fn staging_testnet_config_genesis() -> GenesisConfig { }), content_wg: Some(ContentWorkingGroupConfig { mint_capacity: 100000, - initial_lead: None, + // Ben - Not safest way to assign. Revisit how to ensure we are selecting correct memberid + initial_lead: Some(( + 7, + crate::members_config::decode_address(String::from( + "5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC", + )), + )), curator_opening_by_id: vec![], next_curator_opening_id: 0, curator_application_by_id: vec![], @@ -455,7 +461,9 @@ pub fn testnet_genesis( default_paid_membership_fee: 100u128, members: initial_members, }), - forum: Some(crate::forum_config::from_serialized::create(root_key)), + forum: Some(crate::forum_config::from_serialized::create( + root_key.clone(), + )), data_object_type_registry: Some(DataObjectTypeRegistryConfig { first_data_object_type_id: 1, }), @@ -478,7 +486,7 @@ pub fn testnet_genesis( }), content_wg: Some(ContentWorkingGroupConfig { mint_capacity: 100000, - initial_lead: None, + initial_lead: Some((0, root_key)), curator_opening_by_id: vec![], next_curator_opening_id: 0, curator_application_by_id: vec![], diff --git a/src/members_config.rs b/src/members_config.rs index 184dc20018..23172e9918 100644 --- a/src/members_config.rs +++ b/src/members_config.rs @@ -29,7 +29,7 @@ fn parse_members_json() -> Result> { serde_json::from_str(data) } -fn decode_address(address: String) -> AccountId32 { +pub fn decode_address(address: String) -> AccountId32 { AccountId32::from_ss58check(address.as_ref()).expect("failed to decode account id") } From 410b9ce00f3130edeee8fc3961e31e6ef1c25167 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Dec 2019 16:33:36 +0200 Subject: [PATCH 242/350] update Dockerfile and Readme --- Dockerfile | 16 ++++++++++++++++ README.md | 13 +++++++++++-- 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..efa8e2b79d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM liuchong/rustup:1.39.0 AS builder +LABEL description="Joystream substrate node" + +WORKDIR /joystream +COPY . /joystream +ENV TERM=xterm + +RUN apt-get update && apt-get install git clang -y \ + && ./setup.sh \ + && cargo build --release \ + && cp ./target/release/joystream-node . \ + && rm -fr target/ \ + && apt-get remove git clang -y \ + && rm -fr /var/lib/apt/lists/* +ENTRYPOINT ["/joystream/joystream-node"] + diff --git a/README.md b/README.md index 73c64fe668..2d608ede31 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,15 @@ When making changes to the runtime library remember to purge the chain after reb cargo run --release -- purge-chain --dev ``` -### Substrate node template +### Docker - experimental + +A joystream-node can be run in a docker container using the provided [Dockerfile](Dockerfile): + +```bash +# Build and tag a new docker image, which will compile joystream-node from source +# The image is specifically made run joystream-node full node inside a container. +docker build . -t joystream-node +# run a development chain by launching a new docker container, publishing the websocket port +docker run -p 9944:9944 joystream-node --dev --ws-external +``` -The full node is built based on the substrate node [template](https://github.com/shawntabrizi/substrate-package/tree/master/substrate-node-template) \ No newline at end of file From e6d84638ff740348aed059783ebc596f13cb6063 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 14 Dec 2019 08:08:44 +0200 Subject: [PATCH 243/350] .dockerignore --- .dockerignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000..2f7896d1d1 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +target/ From 6bd30a319d04be3c848cd2fec998e536c4bac205 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 14 Dec 2019 08:39:01 +0200 Subject: [PATCH 244/350] bump runtime --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 30742f728f..ad67047f53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=41593f7f8e5da3db85b2c49d6326ffc67f6f9723)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8f158b5d764dd18b4c19808db0b9452de7921de0)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=41593f7f8e5da3db85b2c49d6326ffc67f6f9723#41593f7f8e5da3db85b2c49d6326ffc67f6f9723" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8f158b5d764dd18b4c19808db0b9452de7921de0#8f158b5d764dd18b4c19808db0b9452de7921de0" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1420,7 +1420,7 @@ dependencies = [ "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", - "substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?rev=504cecb1e3e312a19fcc244419905ec9ea377a4f)", + "substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=6e9f399a94d7db7da8d0343fbcaaeecc59137001)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", @@ -4321,7 +4321,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-hiring-module?rev=504cecb1e3e312a19fcc244419905ec9ea377a4f#504cecb1e3e312a19fcc244419905ec9ea377a4f" +source = "git+https://github.com/joystream/substrate-hiring-module?rev=6e9f399a94d7db7da8d0343fbcaaeecc59137001#6e9f399a94d7db7da8d0343fbcaaeecc59137001" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=41593f7f8e5da3db85b2c49d6326ffc67f6f9723)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8f158b5d764dd18b4c19808db0b9452de7921de0)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6120,7 +6120,7 @@ dependencies = [ "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?rev=504cecb1e3e312a19fcc244419905ec9ea377a4f)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=6e9f399a94d7db7da8d0343fbcaaeecc59137001)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" diff --git a/Cargo.toml b/Cargo.toml index a38f4bedd7..65f440ddf4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' # rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' # versioned store only -rev = '41593f7f8e5da3db85b2c49d6326ffc67f6f9723' # working group integration +rev = '8f158b5d764dd18b4c19808db0b9452de7921de0' # working group integration # local development... # path = 'substrate-runtime-joystream' From 2a966a1922c7e06c04b779b5f45d36e49f92d2b3 Mon Sep 17 00:00:00 2001 From: Ben Holden-Crowther <4144334+blrhc@users.noreply.github.com> Date: Tue, 17 Dec 2019 16:50:44 +0000 Subject: [PATCH 245/350] Added new repo cover --- validator-node_new.svg | 96 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 validator-node_new.svg diff --git a/validator-node_new.svg b/validator-node_new.svg new file mode 100644 index 0000000000..5ea21f2875 --- /dev/null +++ b/validator-node_new.svg @@ -0,0 +1,96 @@ + + + + Validator node + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 469bf6254a7bd84fb492605e5d6172c408a4cf4c Mon Sep 17 00:00:00 2001 From: Ben Holden-Crowther <4144334+blrhc@users.noreply.github.com> Date: Tue, 17 Dec 2019 16:51:16 +0000 Subject: [PATCH 246/350] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f941cb7250..e331746eaf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![ Nodes for Joystream](./banner.svg) +![ Nodes for Joystream](./validator-node_new.svg) # Joystream Full Node @@ -79,4 +79,4 @@ cargo run --release -- purge-chain --dev ### Substrate node template -The full node is built based on the substrate node [template](https://github.com/shawntabrizi/substrate-package/tree/master/substrate-node-template) \ No newline at end of file +The full node is built based on the substrate node [template](https://github.com/shawntabrizi/substrate-package/tree/master/substrate-node-template) From 1f969ba7f6b0a6c34cbacebd309dc7eb64f3e842 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 8 Jan 2020 18:12:14 +0200 Subject: [PATCH 247/350] bump runtime --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ad67047f53..22d2f3786a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8f158b5d764dd18b4c19808db0b9452de7921de0)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=803f3f058df79352480834a9db7a1555dc7f5e43)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8f158b5d764dd18b4c19808db0b9452de7921de0#8f158b5d764dd18b4c19808db0b9452de7921de0" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=803f3f058df79352480834a9db7a1555dc7f5e43#803f3f058df79352480834a9db7a1555dc7f5e43" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1420,7 +1420,7 @@ dependencies = [ "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", - "substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=6e9f399a94d7db7da8d0343fbcaaeecc59137001)", + "substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", @@ -4321,7 +4321,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-hiring-module?rev=6e9f399a94d7db7da8d0343fbcaaeecc59137001#6e9f399a94d7db7da8d0343fbcaaeecc59137001" +source = "git+https://github.com/joystream/substrate-hiring-module?rev=cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc#cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8f158b5d764dd18b4c19808db0b9452de7921de0)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=803f3f058df79352480834a9db7a1555dc7f5e43)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6120,7 +6120,7 @@ dependencies = [ "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=6e9f399a94d7db7da8d0343fbcaaeecc59137001)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" diff --git a/Cargo.toml b/Cargo.toml index 65f440ddf4..2f1de9ede3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' # rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' # versioned store only -rev = '8f158b5d764dd18b4c19808db0b9452de7921de0' # working group integration +rev = '803f3f058df79352480834a9db7a1555dc7f5e43' # working group integration # local development... # path = 'substrate-runtime-joystream' From a072a994ef4addec23fb8238377a439dbcfee130 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 21 Jan 2020 10:03:05 +0200 Subject: [PATCH 248/350] new banner --- README.md | 2 +- validator-node_new.svg | 96 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+), 1 deletion(-) create mode 100644 validator-node_new.svg diff --git a/README.md b/README.md index 9fd468239d..5959744cd5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![ Nodes for Joystream](./banner.svg) +![ Nodes for Joystream](./validator-node_new.svg) # Joystream Full Node diff --git a/validator-node_new.svg b/validator-node_new.svg new file mode 100644 index 0000000000..5ea21f2875 --- /dev/null +++ b/validator-node_new.svg @@ -0,0 +1,96 @@ + + + + Validator node + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 2d7d98b5019ed3a3b6be1d7a37cfaecc212f1be8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 21 Jan 2020 11:49:32 +0200 Subject: [PATCH 249/350] removed old banner.svg --- banner.svg | 281 ----------------------------------------------------- 1 file changed, 281 deletions(-) delete mode 100644 banner.svg diff --git a/banner.svg b/banner.svg deleted file mode 100644 index 077dde4307..0000000000 --- a/banner.svg +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From d41455be3f1339ece7dc8c02d4ec149fca3dbfa9 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 21 Jan 2020 14:25:32 +0200 Subject: [PATCH 250/350] bump runtime --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 3 +-- src/chain_spec.rs | 10 ++++++++-- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22d2f3786a..fc12e02bbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=803f3f058df79352480834a9db7a1555dc7f5e43)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=803f3f058df79352480834a9db7a1555dc7f5e43#803f3f058df79352480834a9db7a1555dc7f5e43" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c#53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1420,7 +1420,7 @@ dependencies = [ "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", - "substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc)", + "substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=30ac830aecb2e61fb943a8c4327bcf52c289e383)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", @@ -1428,7 +1428,7 @@ dependencies = [ "substrate-stake-module 1.0.0 (git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8)", "substrate-token-mint-module 1.0.0 (git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217)", "substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)", - "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=02cfd53c132f95c99cb936bace4432a064b62b86)", + "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?rev=816b796b1b72bba05eebe128cdaa5e18611ac3ae)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4321,7 +4321,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-hiring-module?rev=cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc#cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc" +source = "git+https://github.com/Joystream/substrate-hiring-module?rev=30ac830aecb2e61fb943a8c4327bcf52c289e383#30ac830aecb2e61fb943a8c4327bcf52c289e383" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4842,7 +4842,7 @@ dependencies = [ [[package]] name = "substrate-versioned-store-permissions-module" version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=02cfd53c132f95c99cb936bace4432a064b62b86#02cfd53c132f95c99cb936bace4432a064b62b86" +source = "git+https://github.com/joystream/substrate-versioned-store-permissions-module?rev=816b796b1b72bba05eebe128cdaa5e18611ac3ae#816b796b1b72bba05eebe128cdaa5e18611ac3ae" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=803f3f058df79352480834a9db7a1555dc7f5e43)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6120,7 +6120,7 @@ dependencies = [ "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/joystream/substrate-hiring-module?rev=cd31dbb71d29ec0d7f14979aaec9c213c2dacfbc)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=30ac830aecb2e61fb943a8c4327bcf52c289e383)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" @@ -6149,7 +6149,7 @@ dependencies = [ "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)" = "" -"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?rev=02cfd53c132f95c99cb936bace4432a064b62b86)" = "" +"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?rev=816b796b1b72bba05eebe128cdaa5e18611ac3ae)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" diff --git a/Cargo.toml b/Cargo.toml index 2f1de9ede3..ac97949c35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,8 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -# rev = '98df5eec6176d7ce53bf47e1ddcd06c5494a24d6' # versioned store only -rev = '803f3f058df79352480834a9db7a1555dc7f5e43' # working group integration +rev = '53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c' # working group integration # local development... # path = 'substrate-runtime-joystream' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 1bcfab4aa9..feffa264fd 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -353,9 +353,12 @@ fn staging_testnet_config_genesis() -> GenesisConfig { 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_readble_text: crate::forum_config::new_validation(1, 2048), + 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), }), } } @@ -502,9 +505,12 @@ pub fn testnet_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_readble_text: crate::forum_config::new_validation(1, 2048), + 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), }), } } From b644202aa2ca816615d135044148ee4249ba8faf Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 22 Jan 2020 18:43:30 +0200 Subject: [PATCH 251/350] dump runtime - BTreeMap workaround --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc12e02bbe..458a5f58e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=dc1a7b336a101d0c2b078cf89e77dc4478b34968)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c#53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=dc1a7b336a101d0c2b078cf89e77dc4478b34968#dc1a7b336a101d0c2b078cf89e77dc4478b34968" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=dc1a7b336a101d0c2b078cf89e77dc4478b34968)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index ac97949c35..962d92c1a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = '53f1cd1ba064a0c5115c19d95b8e81c97e8cf55c' # working group integration +rev = 'dc1a7b336a101d0c2b078cf89e77dc4478b34968' # working group integration # local development... # path = 'substrate-runtime-joystream' From 4339007dfea4b24c2c3671707050ba1575b91a0c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 29 Jan 2020 12:07:24 +0200 Subject: [PATCH 252/350] testing hiring module fixes --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 458a5f58e8..3d0b4418dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=dc1a7b336a101d0c2b078cf89e77dc4478b34968)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=5e96b562e92ca101da507933fedf464812112015)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=dc1a7b336a101d0c2b078cf89e77dc4478b34968#dc1a7b336a101d0c2b078cf89e77dc4478b34968" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=5e96b562e92ca101da507933fedf464812112015#5e96b562e92ca101da507933fedf464812112015" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1420,7 +1420,7 @@ dependencies = [ "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", - "substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=30ac830aecb2e61fb943a8c4327bcf52c289e383)", + "substrate-hiring-module 1.0.0 (git+https://github.com/shamil-gadelshin/substrate-hiring-module.git?rev=b6071f7279a668c4aa02b2d6c985768e9fe0acf8)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", @@ -4321,7 +4321,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.0" -source = "git+https://github.com/Joystream/substrate-hiring-module?rev=30ac830aecb2e61fb943a8c4327bcf52c289e383#30ac830aecb2e61fb943a8c4327bcf52c289e383" +source = "git+https://github.com/shamil-gadelshin/substrate-hiring-module.git?rev=b6071f7279a668c4aa02b2d6c985768e9fe0acf8#b6071f7279a668c4aa02b2d6c985768e9fe0acf8" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=dc1a7b336a101d0c2b078cf89e77dc4478b34968)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=5e96b562e92ca101da507933fedf464812112015)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6120,7 +6120,7 @@ dependencies = [ "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=30ac830aecb2e61fb943a8c4327bcf52c289e383)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/shamil-gadelshin/substrate-hiring-module.git?rev=b6071f7279a668c4aa02b2d6c985768e9fe0acf8)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" diff --git a/Cargo.toml b/Cargo.toml index 962d92c1a3..09d3bace6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = 'dc1a7b336a101d0c2b078cf89e77dc4478b34968' # working group integration +rev = '5e96b562e92ca101da507933fedf464812112015' # working group integration - with hiring module fix # local development... # path = 'substrate-runtime-joystream' From 83edc208aa79fbc32e09a3eac103002de95fb7ea Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 3 Feb 2020 18:27:47 +0200 Subject: [PATCH 253/350] updated hiring module - with all fixes --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d0b4418dc..d88e25c290 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=5e96b562e92ca101da507933fedf464812112015)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=bf379791b4e959ef1a44818488fb2d083c00eb7a)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=5e96b562e92ca101da507933fedf464812112015#5e96b562e92ca101da507933fedf464812112015" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=bf379791b4e959ef1a44818488fb2d083c00eb7a#bf379791b4e959ef1a44818488fb2d083c00eb7a" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1420,7 +1420,7 @@ dependencies = [ "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", - "substrate-hiring-module 1.0.0 (git+https://github.com/shamil-gadelshin/substrate-hiring-module.git?rev=b6071f7279a668c4aa02b2d6c985768e9fe0acf8)", + "substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=b400e3008c98989da7b310c71b7d6d4e4dca34e4)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", @@ -4321,7 +4321,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.0" -source = "git+https://github.com/shamil-gadelshin/substrate-hiring-module.git?rev=b6071f7279a668c4aa02b2d6c985768e9fe0acf8#b6071f7279a668c4aa02b2d6c985768e9fe0acf8" +source = "git+https://github.com/Joystream/substrate-hiring-module?rev=b400e3008c98989da7b310c71b7d6d4e4dca34e4#b400e3008c98989da7b310c71b7d6d4e4dca34e4" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=5e96b562e92ca101da507933fedf464812112015)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=bf379791b4e959ef1a44818488fb2d083c00eb7a)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6120,7 +6120,7 @@ dependencies = [ "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/shamil-gadelshin/substrate-hiring-module.git?rev=b6071f7279a668c4aa02b2d6c985768e9fe0acf8)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=b400e3008c98989da7b310c71b7d6d4e4dca34e4)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" diff --git a/Cargo.toml b/Cargo.toml index 09d3bace6e..bffecb1937 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = '5e96b562e92ca101da507933fedf464812112015' # working group integration - with hiring module fix +rev = 'bf379791b4e959ef1a44818488fb2d083c00eb7a' # working group integration - with (correct) hiring module fix # local development... # path = 'substrate-runtime-joystream' From eeb102fcba31b38081c4a2068927c6f3138d90b3 Mon Sep 17 00:00:00 2001 From: F483 Date: Mon, 3 Feb 2020 21:00:44 +0100 Subject: [PATCH 254/350] Pass arguments correctly to node on startup. --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb640e22da..e3f19062fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,14 @@ ENV TERM=xterm RUN apt-get update && apt-get install git clang -y \ && ./init-wasm.sh \ && git clone https://github.com/Joystream/substrate-runtime-joystream.git \ + && cd substrate-runtime-joystream \ + && git fetch --tags \ + && git checkout v5.3.0 \ + && cd ../ \ && ./build-runtime.sh \ && cargo build --release \ && cargo install --path ./ \ && apt-get remove git clang -y \ && rm -rf /var/lib/apt/lists/* -ENTRYPOINT "/root/.cargo/bin/joystream-node" \ No newline at end of file + +ENTRYPOINT ["/root/.cargo/bin/joystream-node"] From 5766723a7a3d332f48bedf12b88b4de266bc20d5 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 4 Feb 2020 16:49:07 +0200 Subject: [PATCH 255/350] fix build instructions for current testnet --- .dockerignore | 1 + Cargo.lock | 4 ++-- Dockerfile | 6 +----- README.md | 4 ++-- 4 files changed, 6 insertions(+), 9 deletions(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000..2f7896d1d1 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +target/ diff --git a/Cargo.lock b/Cargo.lock index 1fb73d8ddb..7b6965c33c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1080,7 +1080,7 @@ dependencies = [ "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 5.1.0", + "joystream-node-runtime 5.3.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1104,7 +1104,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "5.1.0" +version = "5.3.0" dependencies = [ "parity-codec 3.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-codec-derive 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Dockerfile b/Dockerfile index e3f19062fe..50837b6634 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,11 +7,7 @@ ENV TERM=xterm RUN apt-get update && apt-get install git clang -y \ && ./init-wasm.sh \ - && git clone https://github.com/Joystream/substrate-runtime-joystream.git \ - && cd substrate-runtime-joystream \ - && git fetch --tags \ - && git checkout v5.3.0 \ - && cd ../ \ + && git clone -b v5.3.0 https://github.com/Joystream/substrate-runtime-joystream.git \ && ./build-runtime.sh \ && cargo build --release \ && cargo install --path ./ \ diff --git a/README.md b/README.md index 5959744cd5..40acb685dd 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,10 @@ cd substrate-node-joystream/ ``` ### Building -Clone the joystream runtime into the substrate-node-joystream directory: +Clone the joystream runtime into the substrate-node-joystream directory, release version v5.3.0: ```bash -git clone https://github.com/Joystream/substrate-runtime-joystream.git +git clone -b v5.3.0 https://github.com/Joystream/substrate-runtime-joystream.git ``` Build the WASM runtime library: From 4c657da96b69c44e1a0aaf9e5a4ae281c67e16a8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 11 Feb 2020 15:52:33 +0200 Subject: [PATCH 256/350] bump runtime - credential checker improvement --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d88e25c290..f002c255e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=bf379791b4e959ef1a44818488fb2d083c00eb7a)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=bf379791b4e959ef1a44818488fb2d083c00eb7a#bf379791b4e959ef1a44818488fb2d083c00eb7a" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65#cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1420,7 +1420,7 @@ dependencies = [ "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", - "substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=b400e3008c98989da7b310c71b7d6d4e4dca34e4)", + "substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=485c8be73891183910721e874cf9741dec6d824a)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", @@ -4321,7 +4321,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.0" -source = "git+https://github.com/Joystream/substrate-hiring-module?rev=b400e3008c98989da7b310c71b7d6d4e4dca34e4#b400e3008c98989da7b310c71b7d6d4e4dca34e4" +source = "git+https://github.com/Joystream/substrate-hiring-module?rev=485c8be73891183910721e874cf9741dec6d824a#485c8be73891183910721e874cf9741dec6d824a" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=bf379791b4e959ef1a44818488fb2d083c00eb7a)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6120,7 +6120,7 @@ dependencies = [ "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=b400e3008c98989da7b310c71b7d6d4e4dca34e4)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=485c8be73891183910721e874cf9741dec6d824a)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" diff --git a/Cargo.toml b/Cargo.toml index bffecb1937..699de43db3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = 'bf379791b4e959ef1a44818488fb2d083c00eb7a' # working group integration - with (correct) hiring module fix +rev = 'cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65' # working group integration branch # local development... # path = 'substrate-runtime-joystream' From 27f3321bae815633c67db0ce5c9b3f6e5c74c856 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 12 Feb 2020 14:38:55 +0200 Subject: [PATCH 257/350] update runtime - lead not set at genesis --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- src/chain_spec.rs | 8 -------- 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f002c255e5..1337e45204 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=0e0a3a5ec0563f5d6d819897f063c9bf73e97d25)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65#cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=0e0a3a5ec0563f5d6d819897f063c9bf73e97d25#0e0a3a5ec0563f5d6d819897f063c9bf73e97d25" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=0e0a3a5ec0563f5d6d819897f063c9bf73e97d25)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index 699de43db3..e619732793 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = 'cd83dcfee3fdd98c2b8fafc7eaf1b03d9f61fd65' # working group integration branch +rev = '0e0a3a5ec0563f5d6d819897f063c9bf73e97d25' # working group integration branch # local development... # path = 'substrate-runtime-joystream' diff --git a/src/chain_spec.rs b/src/chain_spec.rs index feffa264fd..3c6cb57489 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -331,13 +331,6 @@ fn staging_testnet_config_genesis() -> GenesisConfig { }), content_wg: Some(ContentWorkingGroupConfig { mint_capacity: 100000, - // Ben - Not safest way to assign. Revisit how to ensure we are selecting correct memberid - initial_lead: Some(( - 7, - crate::members_config::decode_address(String::from( - "5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC", - )), - )), curator_opening_by_id: vec![], next_curator_opening_id: 0, curator_application_by_id: vec![], @@ -489,7 +482,6 @@ pub fn testnet_genesis( }), content_wg: Some(ContentWorkingGroupConfig { mint_capacity: 100000, - initial_lead: Some((0, root_key)), curator_opening_by_id: vec![], next_curator_opening_id: 0, curator_application_by_id: vec![], From f257c630fc6b948859413728a91f494bf03e3f8d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 13 Feb 2020 10:04:51 +0200 Subject: [PATCH 258/350] bump runtime --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1337e45204..caf4d8e57f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=0e0a3a5ec0563f5d6d819897f063c9bf73e97d25)", + "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=07597698876808eae2dab3fd8135b28010bad559)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=0e0a3a5ec0563f5d6d819897f063c9bf73e97d25#0e0a3a5ec0563f5d6d819897f063c9bf73e97d25" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=07597698876808eae2dab3fd8135b28010bad559#07597698876808eae2dab3fd8135b28010bad559" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=0e0a3a5ec0563f5d6d819897f063c9bf73e97d25)" = "" +"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=07597698876808eae2dab3fd8135b28010bad559)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index e619732793..550335ab9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = '0e0a3a5ec0563f5d6d819897f063c9bf73e97d25' # working group integration branch +rev = '07597698876808eae2dab3fd8135b28010bad559' # working group integration branch # local development... # path = 'substrate-runtime-joystream' From 95305e230069baa93eabb062bf77eb2ddb64d0ca Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 27 Feb 2020 11:46:32 +0400 Subject: [PATCH 259/350] runtime v6.1.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index caf4d8e57f..bdc6108d54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=07597698876808eae2dab3fd8135b28010bad559)", + "joystream-node-runtime 6.1.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8267837a3b2020bd55e46eed250f58630523eaa0)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1385,8 +1385,8 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "6.0.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=07597698876808eae2dab3fd8135b28010bad559#07597698876808eae2dab3fd8135b28010bad559" +version = "6.1.0" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8267837a3b2020bd55e46eed250f58630523eaa0#8267837a3b2020bd55e46eed250f58630523eaa0" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.0.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=07597698876808eae2dab3fd8135b28010bad559)" = "" +"checksum joystream-node-runtime 6.1.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8267837a3b2020bd55e46eed250f58630523eaa0)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index 550335ab9f..00dfb06aab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = '07597698876808eae2dab3fd8135b28010bad559' # working group integration branch +rev = '8267837a3b2020bd55e46eed250f58630523eaa0' # v6.1.0 - fix/163 # local development... # path = 'substrate-runtime-joystream' From 99a0a795b055bdbd7db4bf6ce6cf9727e5b6c44c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 27 Feb 2020 13:44:03 +0400 Subject: [PATCH 260/350] change params for staging network --- src/chain_spec.rs | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 3c6cb57489..927b83c9f3 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -190,13 +190,12 @@ pub fn chain_spec_properties() -> json::map::Map { /// Staging testnet config pub fn staging_testnet_config() -> ChainSpec { let boot_nodes = vec![ - String::from("/dns4/bootnode1.joystream.org/tcp/30333/p2p/QmeDa8jASqMRpTh4YCkeVEuHo6nbMcFDzD9pkUxTr3WxhM"), - String::from("/dns4/bootnode2.joystream.org/tcp/30333/p2p/QmbjzmNMjzQUMHpzqcPHW5DnFeUjM3x4hbiDSMkYv1McD3"), + String::from("/dns4/rome-reckless.joystream.org/tcp/30333/p2p/QmaTTdEF6YVCtynSjsXmGPSGcEesAahoZ8pmcCmmBwSE7S") ]; ChainSpec::from_genesis( - "Joystream Staging Testnet", - "joy_staging_6", + "Joystream Rome Reckless Testnet", + "joy_rome_reckless_N", staging_testnet_config_genesis, boot_nodes, Some(TelemetryEndpoints::new(vec![( @@ -204,7 +203,7 @@ pub fn staging_testnet_config() -> ChainSpec { 0, )])), // protocol_id - Some(&*"joy.staging"), + Some(&*"/joy/rome/reckless/N"), // Properties Some(chain_spec_properties()), // Extensions @@ -214,19 +213,19 @@ pub fn staging_testnet_config() -> ChainSpec { fn staging_testnet_config_genesis() -> GenesisConfig { let initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)> = vec![( - hex!["0610d1a2b1d704723e588c842a934737491688b18b052baae1286f12e96adb65"].into(), // stash - hex!["609cee3edd9900e69be44bcbf7a1892cad10408840a2d72d563811d72d9bb339"].into(), // controller - hex!["65179fd9c39ec301457d1ee47a13f3bb0fef65812a57b6c93212e609b10d35d2"].unchecked_into(), // session key - hex!["8acbf7448d96592e61881c5ef0f0ab18da6955cf4824534eb19b26f03df56b5a"].unchecked_into(), - hex!["8acbf7448d96592e61881c5ef0f0ab18da6955cf4824534eb19b26f03df56b5a"].unchecked_into(), + hex!["4430a31121fc174b1c361b365580c54ef393813171e59542f5d2ce3d8b171a2d"].into(), // stash + hex!["58a743f1bab2f472fb99af98b6591e23a56fd84bc9c2a62037ed8867caae7c21"].into(), // controller + hex!["af5286fb1e403afd44d92ae3fb0b371a0f4f8faf3e6b2ff50ea91fb426b0015f"].unchecked_into(), // session - grandpa + hex!["d69529ed1549644977cec8dc027e71e1e2ae7aab99833a7f7dc08677a8d36307"].unchecked_into(), // session - babe + hex!["56bfd27715ce6c76e4d884c31374b9928391e461727ffaf27b94b6ce48570d39"].unchecked_into(), // session - im-online )]; let endowed_accounts = - vec![hex!["0ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"].into()]; + vec![hex!["00680fb81473784017291ef0afd968b986966daa7842d5b5063c8427c2b62577"].into()]; const CENTS: Balance = 1; const DOLLARS: Balance = 100 * CENTS; - const STASH: Balance = 50 * DOLLARS; - const ENDOWMENT: Balance = 100_000_000 * DOLLARS; + const STASH: Balance = 20 * DOLLARS; + const ENDOWMENT: Balance = 100_000 * DOLLARS; GenesisConfig { system: Some(SystemConfig { @@ -362,8 +361,8 @@ pub fn testnet_genesis( root_key: AccountId, endowed_accounts: Vec, ) -> GenesisConfig { - const STASH: Balance = 10000; - const ENDOWMENT: Balance = 100_000_000; + const STASH: Balance = 2000; + const ENDOWMENT: Balance = 10_000_000; // Static members let mut initial_members = vec![ From b144ba85ed6d59679dcc38d2ce1774af4821bede Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 27 Feb 2020 13:44:30 +0400 Subject: [PATCH 261/350] initial next_channel_id = 1 --- src/chain_spec.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 927b83c9f3..f5ea93d72f 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -335,7 +335,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { curator_application_by_id: vec![], next_curator_application_id: 0, channel_by_id: vec![], - next_channel_id: 0, + next_channel_id: 1, channel_id_by_handle: vec![], curator_by_id: vec![], next_curator_id: 0, @@ -486,7 +486,7 @@ pub fn testnet_genesis( curator_application_by_id: vec![], next_curator_application_id: 0, channel_by_id: vec![], - next_channel_id: 0, + next_channel_id: 1, channel_id_by_handle: vec![], curator_by_id: vec![], next_curator_id: 0, From 2afcbb04e788a6fd809aaf69364ad67a33e49052 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 27 Feb 2020 13:58:37 +0400 Subject: [PATCH 262/350] do not add sudo user as a member in dev chain --- src/chain_spec.rs | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/chain_spec.rs b/src/chain_spec.rs index f5ea93d72f..63a983f228 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -365,18 +365,20 @@ pub fn testnet_genesis( const ENDOWMENT: Balance = 10_000_000; // Static members - let mut initial_members = vec![ - // Make Root a member - ( - root_key.clone(), - String::from("system"), - String::from("http://joystream.org/avatar.png"), - String::from("I am root!"), - ), - ]; + let initial_members = crate::members_config::initial_members(); + + // let mut additional_members = vec![ + // // Make Root a member + // ( + // root_key.clone(), + // String::from("system"), + // String::from("http://joystream.org/avatar.png"), + // String::from("I am root!"), + // ), + // ]; - // Additional initial members - initial_members.append(&mut crate::members_config::initial_members()); + // // Additional members + // initial_members.append(&mut additional_members); GenesisConfig { //substrate modules From ce4ae287cc83aee841bcd00c20cd6600b55cf083 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 27 Feb 2020 16:19:18 +0400 Subject: [PATCH 263/350] update runtime to v6.1.0 --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bdc6108d54..9ec82adcc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1349,7 +1349,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.1.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8267837a3b2020bd55e46eed250f58630523eaa0)", + "joystream-node-runtime 6.1.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=b161c0c4ef847978a715c6beeaeadac0fadc9a72)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.1.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8267837a3b2020bd55e46eed250f58630523eaa0#8267837a3b2020bd55e46eed250f58630523eaa0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=b161c0c4ef847978a715c6beeaeadac0fadc9a72#b161c0c4ef847978a715c6beeaeadac0fadc9a72" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5863,7 +5863,7 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.1.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?rev=8267837a3b2020bd55e46eed250f58630523eaa0)" = "" +"checksum joystream-node-runtime 6.1.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=b161c0c4ef847978a715c6beeaeadac0fadc9a72)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" "checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index 00dfb06aab..b1f529dd09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,8 +59,8 @@ rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' [dependencies.node-runtime] package = 'joystream-node-runtime' -git = 'https://github.com/mnaamani/substrate-runtime-joystream' -rev = '8267837a3b2020bd55e46eed250f58630523eaa0' # v6.1.0 - fix/163 +git = 'https://github.com/joystream/substrate-runtime-joystream' +rev = 'b161c0c4ef847978a715c6beeaeadac0fadc9a72' # v6.1.0 # local development... # path = 'substrate-runtime-joystream' From e80e1ef64b4b02f128757d600fa53e70fd1dc215 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 2 Mar 2020 12:00:46 +0400 Subject: [PATCH 264/350] libp2p v0.13.0 - bump substrate --- Cargo.lock | 2253 ++++++++++++++++++++++++------------------------ Cargo.toml | 54 +- src/cli.rs | 2 +- src/service.rs | 58 +- 4 files changed, 1181 insertions(+), 1186 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9ec82adcc7..33b23a59db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,19 +52,6 @@ dependencies = [ "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "aio-limited" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "ansi_term" version = "0.11.0" @@ -240,15 +227,6 @@ dependencies = [ "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "block-buffer" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "block-buffer" version = "0.7.3" @@ -281,6 +259,11 @@ name = "bs58" version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "bs58" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "bstr" version = "0.2.8" @@ -299,11 +282,6 @@ name = "byte-slice-cast" version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "byte-tools" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "byte-tools" version = "0.3.1" @@ -329,6 +307,11 @@ dependencies = [ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "bytes" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "c2-chacha" version = "0.2.3" @@ -438,20 +421,6 @@ name = "constant_time_eq" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "core-foundation" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "core-foundation-sys" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "crc32fast" version = "1.2.0" @@ -524,20 +493,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "crypto-mac" -version = "0.4.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", + "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "crypto-mac" -version = "0.7.0" +name = "ct-logs" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -579,6 +547,18 @@ dependencies = [ "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "curve25519-dalek" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "data-encoding" version = "2.1.2" @@ -608,14 +588,6 @@ dependencies = [ "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "digest" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "digest" version = "0.8.1" @@ -651,14 +623,12 @@ dependencies = [ [[package]] name = "ed25519-dalek" -version = "1.0.0-pre.2" +version = "1.0.0-pre.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "curve25519-dalek 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -769,14 +739,14 @@ dependencies = [ [[package]] name = "fixed-hash" -version = "0.4.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -803,23 +773,10 @@ name = "fnv" version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "foreign-types-shared" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "fork-tree" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -859,6 +816,29 @@ name = "futures" version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "futures" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-channel" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-channel-preview" version = "0.3.0-alpha.19" @@ -868,6 +848,11 @@ dependencies = [ "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-core" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-core-preview" version = "0.3.0-alpha.19" @@ -882,6 +867,17 @@ dependencies = [ "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-executor" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-executor-preview" version = "0.3.0-alpha.19" @@ -892,11 +888,27 @@ dependencies = [ "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-io" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-io-preview" version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "futures-macro" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-preview" version = "0.3.0-alpha.19" @@ -910,11 +922,21 @@ dependencies = [ "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-sink" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-sink-preview" version = "0.3.0-alpha.19" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "futures-task" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "futures-timer" version = "0.4.0" @@ -925,6 +947,24 @@ dependencies = [ "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "futures-util" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "futures-util-preview" version = "0.3.0-alpha.19" @@ -945,15 +985,6 @@ name = "gcc" version = "0.3.55" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "generic-array" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "generic-array" version = "0.12.3" @@ -1125,16 +1156,6 @@ dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "hmac" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "hmac" version = "0.7.1" @@ -1144,16 +1165,6 @@ dependencies = [ "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "hmac-drbg" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "hmac-drbg" version = "0.2.0" @@ -1228,15 +1239,19 @@ dependencies = [ ] [[package]] -name = "hyper-tls" -version = "0.3.2" +name = "hyper-rustls" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1275,6 +1290,14 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "impl-serde" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "impl-trait-for-tuples" version = "0.1.3" @@ -1349,86 +1372,87 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.1.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=b161c0c4ef847978a715c6beeaeadac0fadc9a72)", + "joystream-node-runtime 6.2.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "joystream-node-runtime" -version = "6.1.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=b161c0c4ef847978a715c6beeaeadac0fadc9a72#b161c0c4ef847978a715c6beeaeadac0fadc9a72" +version = "6.2.0" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p#63da40df9979fabfbdcbc9687a25e5cd29e1e66e" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)", - "substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=485c8be73891183910721e874cf9741dec6d824a)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-stake-module 1.0.0 (git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8)", - "substrate-token-mint-module 1.0.0 (git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217)", - "substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)", - "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?rev=816b796b1b72bba05eebe128cdaa5e18611ac3ae)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=upgrade-libp2p)", + "substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?branch=upgrade-libp2p)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-recurring-reward-module 1.0.0 (git+https://github.com/mnaamani/substrate-recurring-reward-module?branch=upgrade-libp2p)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-stake-module 1.0.0 (git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p)", + "substrate-token-mint-module 1.0.0 (git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p)", + "substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)", + "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p)", "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1442,13 +1466,13 @@ dependencies = [ [[package]] name = "jsonrpc-client-transports" -version = "13.2.0" +version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1467,61 +1491,72 @@ dependencies = [ "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "jsonrpc-core" +version = "14.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "jsonrpc-core-client" -version = "13.2.0" +version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-derive" -version = "13.2.0" +version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-http-server" -version = "13.2.0" +version = "14.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-pubsub" -version = "13.2.0" +version = "14.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "jsonrpc-server-utils" -version = "13.2.0" +version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1529,13 +1564,13 @@ dependencies = [ [[package]] name = "jsonrpc-ws-server" -version = "13.2.0" +version = "14.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1614,35 +1649,34 @@ dependencies = [ [[package]] name = "libp2p" -version = "0.12.0" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core-derive 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-deflate 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-dns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-floodsub 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-kad 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mdns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mplex 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-noise 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-plaintext 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ratelimit 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-secio 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-tcp 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-uds 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-wasm-ext 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-websocket 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-yamux 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core-derive 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-deflate 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-dns 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-floodsub 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-identify 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-kad 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mdns 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-mplex 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-noise 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-ping 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-plaintext 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-secio 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-tcp 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-uds 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-wasm-ext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-websocket 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-yamux 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1652,42 +1686,42 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.12.0" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ed25519-dalek 1.0.0-pre.3 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "multistream-select 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "multistream-select 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-core-derive" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1696,38 +1730,38 @@ dependencies = [ [[package]] name = "libp2p-deflate" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-dns" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-floodsub" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1736,41 +1770,40 @@ dependencies = [ [[package]] name = "libp2p-identify" -version = "0.12.0" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-kad" -version = "0.12.0" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1783,17 +1816,17 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1805,13 +1838,13 @@ dependencies = [ [[package]] name = "libp2p-mplex" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1821,36 +1854,36 @@ dependencies = [ [[package]] name = "libp2p-noise" -version = "0.10.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", + "snow 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-ping" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1858,31 +1891,22 @@ dependencies = [ [[package]] name = "libp2p-plaintext" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-ratelimit" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "aio-limited 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-secio" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1892,17 +1916,18 @@ dependencies = [ "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1910,11 +1935,11 @@ dependencies = [ [[package]] name = "libp2p-swarm" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1923,14 +1948,14 @@ dependencies = [ [[package]] name = "libp2p-tcp" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "ipnet 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1939,23 +1964,23 @@ dependencies = [ [[package]] name = "libp2p-uds" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-wasm-ext" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1964,29 +1989,29 @@ dependencies = [ [[package]] name = "libp2p-websocket" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-rustls 0.10.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", + "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libp2p-yamux" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2003,19 +2028,6 @@ dependencies = [ "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "libsecp256k1" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "libsecp256k1" version = "0.3.2" @@ -2218,7 +2230,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "multistream-select" -version = "0.5.1" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2237,23 +2249,6 @@ dependencies = [ "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "native-tls" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)", - "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "net2" version = "0.2.33" @@ -2369,36 +2364,6 @@ name = "opaque-debug" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "openssl" -version = "0.10.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "openssl-probe" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "openssl-sys" -version = "0.9.52" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "owning_ref" version = "0.4.0" @@ -2429,6 +2394,23 @@ dependencies = [ "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parity-multiaddr" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "parity-multihash" version = "0.1.3" @@ -2443,6 +2425,20 @@ dependencies = [ "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parity-multihash" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "parity-scale-codec" version = "1.1.0" @@ -2524,6 +2520,15 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parking_lot" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "parking_lot_core" version = "0.3.1" @@ -2577,6 +2582,19 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "parking_lot_core" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "paste" version = "0.1.6" @@ -2651,12 +2669,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "primitive-types" -version = "0.5.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fixed-hash 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "impl-serde 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2701,6 +2719,11 @@ name = "proc-macro-hack-impl" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "proc-macro-nested" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "proc-macro2" version = "0.4.30" @@ -3018,14 +3041,15 @@ dependencies = [ [[package]] name = "ring" -version = "0.14.6" +version = "0.16.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3067,15 +3091,14 @@ dependencies = [ [[package]] name = "rustls" -version = "0.15.2" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "sct 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", + "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3101,15 +3124,6 @@ dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "schannel" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "schnorrkel" version = "0.8.5" @@ -3138,30 +3152,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sct" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "security-framework" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "security-framework-sys" -version = "0.3.3" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3226,18 +3221,6 @@ name = "sha1" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "sha2" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "sha2" version = "0.8.0" @@ -3334,20 +3317,20 @@ dependencies = [ "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "smallvec" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "snow" -version = "0.5.2" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3383,50 +3366,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sr-api-macros" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-arithmetic" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "sr-io" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sr-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3434,27 +3417,27 @@ dependencies = [ "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "sr-staking-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "sr-std" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3462,247 +3445,248 @@ dependencies = [ [[package]] name = "sr-version" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-authority-discovery" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-authorship" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-balances" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-executive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-finality-tracker" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-im-online" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-indices" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-offences" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-randomness-collective-flip" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-staking" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-staking-reward-curve" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3713,21 +3697,21 @@ dependencies = [ [[package]] name = "srml-sudo" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-support" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3736,110 +3720,118 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-support-procedural" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-support-procedural-tools-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "srml-system" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-system-rpc-runtime-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-timestamp" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "srml-transaction-payment" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] -name = "stable_deref_trait" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" +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 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", +] [[package]] -name = "static_assertions" -version = "0.2.5" +name = "stable_deref_trait" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3847,11 +3839,6 @@ name = "static_assertions" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "static_slice" -version = "0.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "stream-cipher" version = "0.3.2" @@ -3913,63 +3900,63 @@ dependencies = [ [[package]] name = "substrate-application-crypto" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-authority-discovery" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-authority-discovery-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-basic-authorship" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] @@ -3986,22 +3973,22 @@ dependencies = [ [[package]] name = "substrate-chain-spec" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-chain-spec-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4012,7 +3999,7 @@ dependencies = [ [[package]] name = "substrate-cli" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4030,17 +4017,17 @@ dependencies = [ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4048,7 +4035,7 @@ dependencies = [ [[package]] name = "substrate-client" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4060,25 +4047,25 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-client-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", @@ -4088,24 +4075,24 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-consensus-babe" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4119,93 +4106,93 @@ dependencies = [ "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-consensus-babe-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-consensus-common" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-consensus-slots" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-consensus-uncles" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-debug-derive" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4215,7 +4202,7 @@ dependencies = [ [[package]] name = "substrate-executor" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4224,14 +4211,14 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4239,21 +4226,21 @@ dependencies = [ [[package]] name = "substrate-externalities" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-finality-grandpa" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4261,17 +4248,17 @@ dependencies = [ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4279,107 +4266,107 @@ dependencies = [ [[package]] name = "substrate-finality-grandpa-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-forum-module" version = "1.1.0" -source = "git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a#4bdeadaadfcca1fd6e822c520f429d4beacc4c8a" +source = "git+https://github.com/mnaamani/substrate-forum-module?branch=upgrade-libp2p#a403cb2994790e2f29b2e9886a1f35ba5bdaf181" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-header-metadata" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-hiring-module" version = "1.0.0" -source = "git+https://github.com/Joystream/substrate-hiring-module?rev=485c8be73891183910721e874cf9741dec6d824a#485c8be73891183910721e874cf9741dec6d824a" +source = "git+https://github.com/mnaamani/substrate-hiring-module?branch=upgrade-libp2p#ac45de704e0147dfb9ad7fb8d3375a01fe9df6ad" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-stake-module 1.0.0 (git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-stake-module 1.0.0 (git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p)", ] [[package]] name = "substrate-inherents" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-keyring" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-keystore" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-network" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4387,11 +4374,11 @@ dependencies = [ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4405,13 +4392,13 @@ dependencies = [ "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4421,7 +4408,7 @@ dependencies = [ [[package]] name = "substrate-offchain" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4429,35 +4416,35 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "substrate-offchain-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-panic-handler" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4466,10 +4453,10 @@ dependencies = [ [[package]] name = "substrate-peerset" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4479,16 +4466,17 @@ dependencies = [ [[package]] name = "substrate-phragmen" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4496,7 +4484,7 @@ dependencies = [ "ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4504,18 +4492,18 @@ dependencies = [ "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4526,110 +4514,110 @@ dependencies = [ [[package]] name = "substrate-primitives-storage" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-recurring-reward-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61#417f7bb5b82ae50f02716ac4eefa2fc7952e0f61" +source = "git+https://github.com/mnaamani/substrate-recurring-reward-module?branch=upgrade-libp2p#84bc180bdff6709ad952135fff1cb13d4426758c" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-token-mint-module 1.0.0 (git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-token-mint-module 1.0.0 (git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p)", ] [[package]] name = "substrate-rpc" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-rpc-api" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core-client 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-derive 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-rpc-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-rpc-servers" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-http-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-ws-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-http-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-ws-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-serializer" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4638,7 +4626,7 @@ dependencies = [ [[package]] name = "substrate-service" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4652,23 +4640,23 @@ dependencies = [ "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4678,48 +4666,48 @@ dependencies = [ [[package]] name = "substrate-session" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-stake-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8#0516efe9230da112bc095e28f34a3715c2e03ca8" +source = "git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p#1829dfb79b5d26cc34619065bd12a38a9b0b4783" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-state-db" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-state-machine" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4727,10 +4715,10 @@ dependencies = [ "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4738,13 +4726,13 @@ dependencies = [ [[package]] name = "substrate-telemetry" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4760,62 +4748,62 @@ dependencies = [ [[package]] name = "substrate-token-mint-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217#5570e3b56e9caffa7df1dbede6308b2e6ce18217" +source = "git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p#bec7a1b121eff86d5d1c8a8de11ac09094b6fe78" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-transaction-graph" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-transaction-pool" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-trie" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4823,39 +4811,39 @@ dependencies = [ [[package]] name = "substrate-versioned-store" version = "1.1.0" -source = "git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe#d0c68722405355404840512edf3064d5ced3e1fe" +source = "git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p#025734d46efaddf4aed0f6ed4c4a4beff0cc5403" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-versioned-store-permissions-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-versioned-store-permissions-module?rev=816b796b1b72bba05eebe128cdaa5e18611ac3ae#816b796b1b72bba05eebe128cdaa5e18611ac3ae" +source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p#f981a6000eb210764c8e3b48d2142bc23af59fff" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)", - "substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)", + "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)", ] [[package]] @@ -4866,7 +4854,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "substrate-wasm-interface" version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3#0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3" +source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4901,17 +4889,6 @@ dependencies = [ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "synstructure" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "synstructure" version = "0.12.3" @@ -5134,15 +5111,15 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.10.0-alpha.4" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5345,9 +5322,14 @@ dependencies = [ "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "unsigned-varint" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "untrusted" -version = "0.6.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -5544,20 +5526,27 @@ dependencies = [ [[package]] name = "webpki" -version = "0.19.1" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", + "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "webpki-roots" -version = "0.16.0" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "webpki-roots" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", + "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5684,9 +5673,6 @@ dependencies = [ name = "zeroize" version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "zeroize_derive 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "zeroize" @@ -5694,15 +5680,9 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "zeroize_derive" -version = "0.9.3" +name = "zeroize" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", -] [metadata] "checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2" @@ -5711,7 +5691,6 @@ dependencies = [ "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" "checksum ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3" "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" -"checksum aio-limited 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c4dddf55b0b2da9acb7512f21c0a4f1c0871522ec4ab7fb919d0da807d1e32b3" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" "checksum anyhow 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" = "73232834f4ba605439f8ab8e134569bc52e29d19e7ec2d910c73fd6e8af46557" @@ -5734,19 +5713,19 @@ dependencies = [ "checksum bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" "checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330" "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" -"checksum block-buffer 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1339a1042f5d9f295737ad4d9a6ab6bf81c84a933dba110b9200cd6d1448b814" "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" "checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" "checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" "checksum bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188" +"checksum bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae" "checksum bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8d6c2c5b58ab920a4f5aeaaca34b4488074e8cc7596af94e6f8c6ff247c60245" "checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708" "checksum byte-slice-cast 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f6209f3b2c1edea170002e016d5ead6903d3bb0a846477f53bbeb614967a52a9" -"checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" +"checksum bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1" "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" "checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" "checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8" @@ -5760,8 +5739,6 @@ dependencies = [ "checksum const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b641a8c9867e341f3295564203b1c250eb8ce6cb6126e007941f78c4d2ed7fe" "checksum const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c750ec12b83377637110d5a57f5ae08e895b06c4b16e2bdbf1a94ef717428c59" "checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120" -"checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" -"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" @@ -5770,21 +5747,21 @@ dependencies = [ "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" "checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" -"checksum crypto-mac 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "779015233ac67d65098614aec748ac1c756ab6677fa2e14cf8b37c08dfed1198" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" +"checksum ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113" "checksum ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" "checksum ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7dfd2d8b4c82121dfdff120f818e09fc4380b0b7e17a742081a89b94853e87f" "checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" "checksum curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8b7dcd30ba50cdf88b55b033456138b7c0ac4afdc436d82e1b79f370f24cc66d" +"checksum curve25519-dalek 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "26778518a7f6cffa1d25a44b602b62b979bd88adb9e99ffec546998cf3404839" "checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97" "checksum derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6d944ac6003ed268757ef1ee686753b57efc5fcf0ebe7b64c9fc81e7e32ff839" "checksum derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe" -"checksum digest 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e5b29bf156f3f4b3c4f610a25ff69370616ae6e0657d416de22645483e72af0a" "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" "checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" "checksum ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d07e8b8a8386c3b89a7a4b329fdfa4cb545de2545e9e2ebbc3dd3929253e426" -"checksum ed25519-dalek 1.0.0-pre.2 (registry+https://github.com/rust-lang/crates.io-index)" = "845aaacc16f01178f33349e7c992ecd0cee095aa5e577f0f4dee35971bd36455" +"checksum ed25519-dalek 1.0.0-pre.3 (registry+https://github.com/rust-lang/crates.io-index)" = "978710b352437433c97b2bff193f2fb1dfd58a093f863dd95e225a19baa599a2" "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" "checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" @@ -5797,30 +5774,36 @@ dependencies = [ "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" "checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" "checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" -"checksum fixed-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "516877b7b9a1cc2d0293cbce23cd6203f0edbfd4090e6ca4489fecb5aa73050e" +"checksum fixed-hash 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3367952ceb191f4ab95dd5685dc163ac539e36202f9fcfd0cb22f9f9c542fefc" "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" "checksum flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" -"checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -"checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" "checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" +"checksum futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5c329ae8753502fb44ae4fc2b622fa2a94652c41e795143765ba0927f92ab780" +"checksum futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8" "checksum futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a" +"checksum futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a" "checksum futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba" "checksum futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "75236e88bd9fe88e5e8bfcd175b665d0528fe03ca4c5207fabc028c8f9d93e98" +"checksum futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6" "checksum futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "f4914ae450db1921a56c91bde97a27846287d062087d4a652efc09bb3a01ebda" +"checksum futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7" "checksum futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "3b1dce2a0267ada5c6ff75a8ba864b4e679a9e2aa44262af7a3b5516d530d76e" +"checksum futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6" "checksum futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "86f148ef6b69f75bb610d4f9a2336d4fc88c4b5b67129d1a340dd0fd362efeec" +"checksum futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27" "checksum futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "878f1d2fc31355fa02ed2372e741b0c17e58373341e6a122569b4623a14a7d33" +"checksum futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5" "checksum futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d" "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" -"checksum generic-array 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "fceb69994e330afed50c93524be68c42fa898c2d9fd4ee8da03bd7363acd26f2" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" "checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" @@ -5840,20 +5823,19 @@ dependencies = [ "checksum hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0" "checksum hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda" "checksum hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9d4c5c844e2fee0bf673d54c2c177f1713b3d2af2ff6e666b49cb7572e6cf42d" -"checksum hmac 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a13f4163aa0c5ca1be584aace0e2212b2e41be5478218d4f657f5f778b2ae2a" "checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" -"checksum hmac-drbg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe727d41d2eec0a6574d887914347e5ff96a3b87177817e2a9820c5c87fecc2" "checksum hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b" "checksum http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e06e336150b178206af098a055e3621e8336027e2b4d126bda0bc64824baaf" "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" "checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6" -"checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" +"checksum hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)" = "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952" "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" "checksum impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53" "checksum impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "58e3cae7e99c7ff5a995da2cf78dd0a5383740eda71d98cf7b1910c301ac69b8" +"checksum impl-serde 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5bbe9ea9b182f0fb1cabbd61f4ff9b7b7b9197955e95a7e4c27de5055eb29ff8" "checksum impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d" "checksum indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d7b3ea5827fcb9d4fda14bf4da5f136f0db2ae9c8f4bd4e2d1c6fde4e6db2" "checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" @@ -5863,16 +5845,17 @@ dependencies = [ "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" -"checksum joystream-node-runtime 6.1.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=b161c0c4ef847978a715c6beeaeadac0fadc9a72)" = "" +"checksum joystream-node-runtime 6.2.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p)" = "" "checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" -"checksum jsonrpc-client-transports 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dbf2466adbf6d5b4e618857f22be40b1e1cc6ed79d72751324358f6b539b06d" +"checksum jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" -"checksum jsonrpc-core-client 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "161dc223549fa6fe4a4eda675de2d1d3cff5a7164e5c031cdf1e22c734700f8b" -"checksum jsonrpc-derive 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4a76285ebba4515680fbfe4b62498ccb2a932384c8732eed68351b02fb7ae475" -"checksum jsonrpc-http-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "601fcc7bec888c7cbc7fd124d3d6744d72c0ebb540eca6fe2261b71f9cff6320" -"checksum jsonrpc-pubsub 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "64e0fb0664d8ce287e826940dafbb45379443c595bdd71d93655f3c8f25fd992" -"checksum jsonrpc-server-utils 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d415f51d016a4682878e19dd03e8c0b61cd4394912d7cd3dc48d4f19f061a4e" -"checksum jsonrpc-ws-server 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4699433c1ac006d7df178b4c29c191e5bb6d81e2dca18c5c804a094592900101" +"checksum jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fe3b688648f1ef5d5072229e2d672ecb92cbff7d1c79bcf3fd5898f3f3df0970" +"checksum jsonrpc-core-client 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "080dc110be17701097df238fad3c816d4a478a1899dfbcf8ec8957dd40ec7304" +"checksum jsonrpc-derive 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8609af8f63b626e8e211f52441fcdb6ec54f1a446606b10d5c89ae9bf8a20058" +"checksum jsonrpc-http-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "816d63997ea45d3634608edbef83ddb35e661f7c0b27b5b72f237e321f0e9807" +"checksum jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5b31c9b90731276fdd24d896f31bb10aecf2e5151733364ae81123186643d939" +"checksum jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95b7635e618a0edbbe0d2a2bbbc69874277c49383fcf6c3c0414491cfb517d22" +"checksum jsonrpc-ws-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b94e5773b2ae66e0e02c80775ce6bbba6f15d5bb47c14ec36a36fcf94f8df851" "checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" @@ -5882,29 +5865,27 @@ dependencies = [ "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" "checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" -"checksum libp2p 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4183fb4be621d97baebbbe0c499d6ae337e9e6ec955f9fa3cb29e55547dfacdb" -"checksum libp2p-core 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2a7ebd9d597299512e096cc1bd58e955c03ef28f33214a33b9c7e4ace109ff41" -"checksum libp2p-core-derive 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "baffb3527eac95b717e5ebcd6539007152019a06b00548352cbd74474c07db27" -"checksum libp2p-deflate 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "84bb91afe976893b9822103522cc178bd66eb7aa8e54c69ddd9e1825a3d894ab" -"checksum libp2p-dns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b43d79936984b46a5ef4d7b070eaf786f6fab2d1a57e07646306b492e38b2d7f" -"checksum libp2p-floodsub 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "798615b01761454818788dafe61b4fe2bda4306bfa5378cbe8715f57b752235f" -"checksum libp2p-identify 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0a630d5ab928403e426672187514884a9ed0ea2065970ef0ec64971770be6d5" -"checksum libp2p-kad 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a66d2214dd47fa67878eaf0d76d19fd129eff65c45f83617829eb177b7285f97" -"checksum libp2p-mdns 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cbd443101542670935b6e6863b7bb88c10ac04393062e662201a3c104d80ae00" -"checksum libp2p-mplex 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "59f283e603b078aa88e65c66c5d4f842f67bfbe4d016b0ae345b7e3bb78fe0af" -"checksum libp2p-noise 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6ab3c7b36cde3bfe18a1d7a0a5693361115066365d32c60f210acc8224b88017" -"checksum libp2p-ping 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006bbfcb7d6ca7e617cb2924d99fff0e391d4c6e42e7047e226692c8c3e1f6a0" -"checksum libp2p-plaintext 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4e673668e5ef47689ca832c33f2dc1e321ede245ee50b6084e4c45cce10fff6" -"checksum libp2p-ratelimit 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "838538f6df5941626047903d14edc3112afb2807fc139535a8ca78469ccaf1ac" -"checksum libp2p-secio 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a99533cb55b9554d2927ad8a220c87b4e0bbfdec22b738eb6030b03e6a722fa1" -"checksum libp2p-swarm 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "541f66cc794e522fb8072d35dba6be3fe4c3ffeadbed39bf4a6939d0695b4134" -"checksum libp2p-tcp 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4e56f7c7e31d303898d51b293f8d95dcb99e6293fefebe184df03e82dd37571" -"checksum libp2p-uds 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "180fa5ceb2f986786b4fca9582f6ffb98772db2e44df07c800693c97205e3310" -"checksum libp2p-wasm-ext 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a806f0e4985ae2dbac2cbebadb72d586ffe2e1f62a265f5e019e57a3f02aa481" -"checksum libp2p-websocket 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e0dd3cb203aaa1736a38cdd157709153f90bfaed06b87f4dc3ebb62b5d79a643" -"checksum libp2p-yamux 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a37bed07c8ee0ceeecdfb90d703aa6b1cec99a69b4157e5f7f2c03acacbfca15" +"checksum libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9b4674c6738fdd8b1cf7104dd046abcef78dc932fe25f8eb40f3a8e71341717d" +"checksum libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "01efc769c392d0d8863a7160d266f9b9f794968554f87490c8af4aa34ccaa94f" +"checksum libp2p-core-derive 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1eeb2704ac14c60f31967e351ed928b848526a5fc6db4104520020665012826f" +"checksum libp2p-deflate 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef2b0bf5d37692ac90e2bffa436bec26c0b0def6c0cab7ea85ff67a353d58aaa" +"checksum libp2p-dns 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3175fb0fc9016c95c8517a297bbdb5fb6bfbd5665bacd2eb23495d1cbdeb033" +"checksum libp2p-floodsub 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b360bbaad2560d6b8a905bd63528273d933fe54475a44def47f31e23108b3683" +"checksum libp2p-identify 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c087bcd044a6f67a994573a92a109487a902a31555e4e63bcc4ae144c45594fe" +"checksum libp2p-kad 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dcaf76a5b33b6c0203e85d450ae1855cae6860dc82eb0174ac1fee8bf68f7af5" +"checksum libp2p-mdns 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c4c2e225a7dfc571c3ad77a0a5ecccc9537afe42d72289ac9f19768567cd677d" +"checksum libp2p-mplex 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2fe584816d993dc0f893396521a3c93191d78a6f28a892b150baa714a12c3e5" +"checksum libp2p-noise 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d50494fcba7cdab08390d72b3cb9d2c72fcf178e6a0c1043855ab259d818b972" +"checksum libp2p-ping 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5b975ad345eb9bb29ddc64670664a50a8ab3e66e28357abb0f83cfc0a9ca2d78" +"checksum libp2p-plaintext 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6f07be6983e1c00e8f6a5676da54ed3a8cae7fb50f1fb6ea163414613ca656cc" +"checksum libp2p-secio 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04aa6d67a5fb2b36241a1ba54037a13deb2594cf141e43b597ce379521d530a8" +"checksum libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cd55bc9f5f9eac2bb1ff24ca3c8a655810a566ac38c7a6ee1f30aced5a62905b" +"checksum libp2p-tcp 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "234a7093d05651ab5630db926a4a42ca8978a65bab8c27c2ce2b66b200c76989" +"checksum libp2p-uds 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1e2fe0648967da3e56e4a55055c857c8c48326b66be0047d0e04c8ca60d34630" +"checksum libp2p-wasm-ext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f7b8f2bd81fb356e81352d4513856bc21215ecf91502aa1f55b6449642a9acf" +"checksum libp2p-websocket 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d74d4fc229ad7e8d1a973178786bdcd5dadbdd7b9822c4477c8687df6f82f66" +"checksum libp2p-yamux 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1913eb7dd6eb5515957b6f1770296f6921968db87bc9b985f0e974b6657e1003" "checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" -"checksum libsecp256k1 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "688e8d65e495567c2c35ea0001b26b9debf0b4ea11f8cccc954233b75fc3428a" "checksum libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd9a7c16c9487e710536b699c962f022266347c94201174aa0a7eb0546051aa" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" @@ -5928,9 +5909,8 @@ dependencies = [ "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" "checksum multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151" -"checksum multistream-select 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e8f3cb4c93f2d79811fc11fa01faab99d8b7b8cbe024b602c27434ff2b08a59d" +"checksum multistream-select 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fc3ef54aab1b2e37e911bcb99e376dbe4c1e0710afcdb8428608e4f993b39c47" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" -"checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" "checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" @@ -5945,18 +5925,18 @@ dependencies = [ "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" -"checksum openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2f372b2b53ce10fb823a337aaa674e3a7d072b957c6264d0f4ff0bd86e657449" -"checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c977d08e1312e2f7e4b86f9ebaa0ed3b19d1daff75fae88bbb88108afbd801fc" "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" +"checksum parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82afcb7461eae5d122543d8be1c57d306ed89af2d6ff7f8b0f5a3cc8f7e511bc" "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" +"checksum parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7a1cd2ba02391b81367bec529fb209019d718684fdc8ad6a712c2b536e46f775" "checksum parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f9f9d99dae413590a5f37e43cd99b94d4e62a244160562899126913ea7108673" "checksum parity-scale-codec-derive 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "492ac3aa93d6caa5d20e4e3e0b75d08e2dcd9dd8a50d19529548b6fe11b3f295" "checksum parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" "checksum parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "570093f39f786beea92dcc09e45d8aae7841516ac19a50431953ac82a0e8f85c" "checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" +"checksum parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc" "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" "checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" @@ -5965,6 +5945,7 @@ dependencies = [ "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" "checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" +"checksum parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1" "checksum paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "423a519e1c6e828f1e73b720f9d9ed2fa643dce8a7737fb43235ce0b41eeaa49" "checksum paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4214c9e912ef61bf42b81ba9a47e8aad1b2ffaf739ab162bf96d1e011f54e6c5" "checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" @@ -5976,12 +5957,13 @@ dependencies = [ "checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" "checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" -"checksum primitive-types 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "83ef7b3b965c0eadcb6838f34f827e1dfb2939bdd5ebd43f9647e009b12b0371" +"checksum primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e4336f4f5d5524fa60bcbd6fe626f9223d8142a50e7053e979acdf0da41ab975" "checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" "checksum proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b" "checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" "checksum proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842" +"checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" "checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" "checksum prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96d14b1c185652833d24aaad41c5832b0be5616a590227c1fbff57c616754b23" @@ -6016,23 +5998,20 @@ dependencies = [ "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" -"checksum ring 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "426bc186e3e95cac1e4a4be125a4aca7e84c2d616ffc02244eef36e2a60a093c" +"checksum ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)" = "741ba1704ae21999c00942f9f5944f801e977f54302af346b596287599ad1862" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" "checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd" "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" "checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum rustls 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f271e3552cd835fa28c541c34a7e8fdd8cdff09d77fe4eb8f6c42e87a11b096e" +"checksum rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b25a18b1bf7387f0145e7f8324e700805aade3842dd3db2e74e4cdeb4677c09e" "checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" "checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" -"checksum schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021" "checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" -"checksum sct 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f5adf8fbd58e1b1b52699dc8bed2630faecb6d8c7bee77d009d6bbe4af569b9" -"checksum security-framework 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "301c862a6d0ee78f124c5e1710205965fc5c553100dcda6d98f13ef87a763f04" -"checksum security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e31493fc37615debb8c5090a7aeb4a9730bc61e77ab10b9af59f1a202284f895" +"checksum sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" @@ -6041,7 +6020,6 @@ dependencies = [ "checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" "checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" -"checksum sha2 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d963c78ce367df26d7ea8b8cc655c651b42e8a1e584e869c1e17dae3ccb116a" "checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" "checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf" "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" @@ -6052,45 +6030,45 @@ dependencies = [ "checksum slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6" "checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" "checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" -"checksum snow 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5a64f02fd208ef15bd2d1a65861df4707e416151e1272d02c8faafad1c138100" +"checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" +"checksum snow 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "afb767eee7d257ba202f0b9b08673bc13b22281632ef45267b19f13100accd2f" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" -"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" -"checksum static_assertions 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c19be23126415861cb3a23e501d34a708f7f9b2183c5252d690941c2e69199d5" "checksum static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" -"checksum static_slice 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "92a7e0c5e3dfb52e8fbe0e63a1b947bbb17b4036408b151353c4491374931362" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" @@ -6098,65 +6076,64 @@ dependencies = [ "checksum structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "519621841414165d2ad0d4c92be8f41844203f2b67e245f9345a5a12d40c69d7" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" -"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" -"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-forum-module 1.1.0 (git+https://github.com/Joystream/substrate-forum-module?rev=4bdeadaadfcca1fd6e822c520f429d4beacc4c8a)" = "" -"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/Joystream/substrate-hiring-module?rev=485c8be73891183910721e874cf9741dec6d824a)" = "" -"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-recurring-reward-module 1.0.0 (git+https://github.com/joystream/substrate-recurring-reward-module?rev=417f7bb5b82ae50f02716ac4eefa2fc7952e0f61)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-stake-module 1.0.0 (git+https://github.com/joystream/substrate-stake-module?rev=0516efe9230da112bc095e28f34a3715c2e03ca8)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-token-mint-module 1.0.0 (git+https://github.com/joystream/substrate-token-minting-module/?rev=5570e3b56e9caffa7df1dbede6308b2e6ce18217)" = "" -"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" -"checksum substrate-versioned-store 1.1.0 (git+https://github.com/joystream/substrate-versioned-store-module?rev=d0c68722405355404840512edf3064d5ced3e1fe)" = "" -"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?rev=816b796b1b72bba05eebe128cdaa5e18611ac3ae)" = "" +"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=upgrade-libp2p)" = "" +"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?branch=upgrade-libp2p)" = "" +"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-recurring-reward-module 1.0.0 (git+https://github.com/mnaamani/substrate-recurring-reward-module?branch=upgrade-libp2p)" = "" +"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-stake-module 1.0.0 (git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p)" = "" +"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-token-mint-module 1.0.0 (git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p)" = "" +"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)" = "" +"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p)" = "" "checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" -"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3)" = "" +"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" "checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" "checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" -"checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f" "checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" "checksum sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4b2468c629cffba39c0a4425849ab3cdb03d9dfacba69684609aea04d08ff9" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" @@ -6178,7 +6155,7 @@ dependencies = [ "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" "checksum tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c56391be9805bc80163151c0b9e5164ee64f4b0200962c346fea12773158f22d" -"checksum tokio-rustls 0.10.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e5cebc3ca33110e460c4d2e7c5e863b159fadcbf125449d896720695b2af709" +"checksum tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2d7cf08f990090abd6c6a73cab46fed62f85e8aef8b99e4b918a9f4a637f0676" "checksum tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76" "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" "checksum tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd2c6a3885302581f4401c82af70d792bb9df1700e7437b0aeb4ada94d5388c" @@ -6201,7 +6178,8 @@ dependencies = [ "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" "checksum unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f0023a96687fe169081e8adce3f65e3874426b7886e9234d490af2dc077959" -"checksum untrusted 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" +"checksum unsigned-varint 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3b7ffb36714206d2f5f05d61a2bc350415c642f2c54433f0ebf829afbe41d570" +"checksum untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60369ef7a31de49bcb3f6ca728d4ba7300d9a1658f94c727d4cab8c8d9f4aece" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" "checksum url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61" "checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95" @@ -6223,8 +6201,9 @@ dependencies = [ "checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" "checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" "checksum web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "ce8e893e021539beb87de8f06e77bdb390a3ab0db4cfeb569c4e377b55ed20de" -"checksum webpki 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4f7e1cd7900a3a6b65a3e8780c51a3e6b59c0e2c55c6dc69578c288d69f7d082" -"checksum webpki-roots 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c10fa4212003ba19a564f25cd8ab572c6791f99a03cc219c13ed35ccab00de0e" +"checksum webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1f50e1972865d6b1adb54167d1c8ed48606004c2c9d0ea5f1eeb34d95e863ef" +"checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" +"checksum webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4" "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" @@ -6241,4 +6220,4 @@ dependencies = [ "checksum yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2758f29014c1cb7a6e74c1b1160ac8c8203be342d35b73462fc6a13cc6385423" "checksum zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4090487fa66630f7b166fba2bbb525e247a5449f41c468cc1d98f8ae6ac03120" "checksum zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86" -"checksum zeroize_derive 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "080616bd0e31f36095288bb0acdf1f78ef02c2fa15527d7e993f2a6c7591643e" +"checksum zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3cbac2ed2ba24cc90f5e06485ac8c7c1e5449fe8911aef4d8877218af021a5b8" diff --git a/Cargo.toml b/Cargo.toml index b1f529dd09..e660aed106 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,17 +27,17 @@ hex = '0.4' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-basic-authorship' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.babe] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-babe' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.babe-primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-consensus-babe-primitives' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.codec] package = 'parity-scale-codec' @@ -50,100 +50,106 @@ version = '3.0' [dependencies.inherents] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-inherents' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.network] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-network' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.node-runtime] package = 'joystream-node-runtime' -git = 'https://github.com/joystream/substrate-runtime-joystream' -rev = 'b161c0c4ef847978a715c6beeaeadac0fadc9a72' # v6.1.0 +# git = 'https://github.com/joystream/substrate-runtime-joystream' +git = 'https://github.com/mnaamani/substrate-runtime-joystream' +# rev = 'b161c0c4ef847978a715c6beeaeadac0fadc9a72' # v6.1.0 # local development... -# path = 'substrate-runtime-joystream' +# path = '/Users/mokhtar/joystream/runtime' +branch = 'upgrade-libp2p' [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.sr-io] git = 'https://github.com/paritytech/substrate.git' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.substrate-cli] git = 'https://github.com/paritytech/substrate.git' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.substrate-client] git = 'https://github.com/paritytech/substrate.git' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.substrate-executor] git = 'https://github.com/paritytech/substrate.git' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.substrate-service] git = 'https://github.com/paritytech/substrate.git' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.transaction-pool] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-transaction-pool' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.substrate-telemetry] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-telemetry' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.grandpa] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.grandpa-primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-finality-grandpa-primitives' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.im-online] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-im-online' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.substrate-rpc] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-rpc' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.authority-discovery] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-authority-discovery' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.client-db] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-client-db' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.runtime-primitives] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'sr-primitives' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' [dependencies.offchain] default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'substrate-offchain' -rev = '0e3001a1ad6fa3d1ba7da7342a8d0d3b3facb2f3' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' + +[dependencies.libp2p] +version = '0.13.2' +default-features = false [profile.release] panic = 'unwind' diff --git a/src/cli.rs b/src/cli.rs index 69011dd5c2..78339c7a65 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -44,7 +44,7 @@ where .map_err(|e| format!("{:?}", e)) }, ), - ParseAndPrepare::BuildSpec(cmd) => cmd.run(load_spec), + ParseAndPrepare::BuildSpec(cmd) => cmd.run::(load_spec), ParseAndPrepare::ExportBlocks(cmd) => cmd.run_with_builder( |config: Config<_>| Ok(new_full_start!(config).0), load_spec, diff --git a/src/service.rs b/src/service.rs index 190f52ddd9..2d9a6f24b3 100644 --- a/src/service.rs +++ b/src/service.rs @@ -78,7 +78,7 @@ macro_rules! new_full_start { .take() .ok_or_else(|| substrate_service::Error::SelectChainRequired)?; let (grandpa_block_import, grandpa_link) = - grandpa::block_import::<_, _, _, node_runtime::RuntimeApi, _, _>( + grandpa::block_import::<_, _, _, node_runtime::RuntimeApi, _>( client.clone(), &*client, select_chain, @@ -135,14 +135,19 @@ macro_rules! new_full { $config.disable_grandpa ); + // sentry nodes announce themselves as authorities to the network + // and should run the same protocols authorities do, but it should + // never actively participate in any consensus process. + let participates_in_consensus = is_authority && !$config.sentry_mode; + let (builder, mut import_setup, inherent_data_providers) = new_full_start!($config); // Dht event channel from the network to the authority discovery module. Use bounded channel to ensure // back-pressure. Authority discovery is triggering one event per authority within the current authority set. // This estimates the authority set size to be somewhere below 10 000 thereby setting the channel buffer size to // 10 000. - let (dht_event_tx, dht_event_rx) = - mpsc::channel::(10000); + let (dht_event_tx, _dht_event_rx) = + mpsc::channel::(10_000); let service = builder.with_network_protocol(|_| Ok(crate::service::NodeProtocol::new()))? .with_finality_proof_provider(|client, backend| @@ -156,7 +161,7 @@ macro_rules! new_full { ($with_startup_data)(&block_import, &babe_link); - if is_authority { + if participates_in_consensus { let proposer = substrate_basic_authorship::ProposerFactory { client: service.client(), transaction_pool: service.transaction_pool(), @@ -180,22 +185,25 @@ macro_rules! new_full { let babe = babe::start_babe(babe_config)?; service.spawn_essential_task(babe); - - let authority_discovery = authority_discovery::AuthorityDiscovery::new( - service.client(), - service.network(), - dht_event_rx, - ); - service.spawn_task(authority_discovery); - } - - let config = grandpa::Config { - // FIXME #1578 make this available through chainspec - gossip_duration: std::time::Duration::from_millis(333), - justification_period: 512, - name: Some(name), - keystore: Some(service.keystore()), - }; + } + + // if the node isn't actively participating in consensus then it doesn't + // need a keystore, regardless of which protocol we use below. + let keystore = if participates_in_consensus { + Some(service.keystore()) + } else { + None + }; + + let config = grandpa::Config { + // FIXME #1578 make this available through chainspec + gossip_duration: std::time::Duration::from_millis(333), + justification_period: 512, + name: Some(name), + observer_enabled: true, + keystore, + is_authority, + }; match (is_authority, disable_grandpa) { (false, false) => { @@ -217,8 +225,10 @@ macro_rules! new_full { on_exit: service.on_exit(), telemetry_on_connect: Some(service.telemetry_on_connect_stream()), voting_rule: grandpa::VotingRulesBuilder::default().build(), - }; - service.spawn_task(Box::new(grandpa::run_grandpa_voter(grandpa_config)?)); + }; + // the GRANDPA voter task is considered infallible, i.e. + // if it fails we take down the service with it. + service.spawn_essential_task(grandpa::run_grandpa_voter(grandpa_config)?); }, (_, true) => { grandpa::setup_disabled_grandpa( @@ -296,11 +306,11 @@ pub fn new_light( .ok_or_else(|| { "Trying to start light import queue without active fetch checker" })?; - let grandpa_block_import = grandpa::light_block_import::<_, _, _, RuntimeApi, _>( + let grandpa_block_import = grandpa::light_block_import::<_, _, _, RuntimeApi>( client.clone(), backend, + &*client, Arc::new(fetch_checker), - client.clone(), )?; let finality_proof_import = grandpa_block_import.clone(); From 4d77a3a55fcc20d5082241e260ef39b83dad1863 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 2 Mar 2020 12:01:18 +0400 Subject: [PATCH 265/350] update Dockerfile --- Dockerfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index efa8e2b79d..f576a02b8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM liuchong/rustup:1.39.0 AS builder +FROM liuchong/rustup:1.41.1 AS builder LABEL description="Joystream substrate node" WORKDIR /joystream @@ -9,8 +9,14 @@ RUN apt-get update && apt-get install git clang -y \ && ./setup.sh \ && cargo build --release \ && cp ./target/release/joystream-node . \ - && rm -fr target/ \ + && cargo clean \ + && rm -fr target \ + && rm -fr ~/.cargo \ + && rm -fr ~/.rustup \ && apt-get remove git clang -y \ && rm -fr /var/lib/apt/lists/* + +VOLUME ["/data", "/keystore"] + ENTRYPOINT ["/joystream/joystream-node"] From 063a4cf63695db1988b4c1b90268d9f630181247 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 3 Mar 2020 10:50:25 +0400 Subject: [PATCH 266/350] multistage dockerfile --- Dockerfile | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index f576a02b8d..4f76b919f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,22 +1,26 @@ -FROM liuchong/rustup:1.41.1 AS builder -LABEL description="Joystream substrate node" +FROM joystream/rust-builder AS node-build +LABEL description="Compiles joystream substrate node" WORKDIR /joystream +# if source files change will the intermediate image be rebuilt? COPY . /joystream ENV TERM=xterm -RUN apt-get update && apt-get install git clang -y \ - && ./setup.sh \ - && cargo build --release \ - && cp ./target/release/joystream-node . \ - && cargo clean \ - && rm -fr target \ - && rm -fr ~/.cargo \ - && rm -fr ~/.rustup \ - && apt-get remove git clang -y \ - && rm -fr /var/lib/apt/lists/* +RUN cargo build --release -VOLUME ["/data", "/keystore"] +FROM debian:stretch +LABEL description="Joystream node" + +WORKDIR /joystream +ENV TERM=xterm + +COPY --from=node-build /joystream/target/release/joystream-node /joystream -ENTRYPOINT ["/joystream/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 basepath isn't specified it will be inside container in ~/.local/share/joystream-node/ +VOLUME ["/data", "/keystore"] +ENTRYPOINT ["/joystream/joystream-node"] \ No newline at end of file From a7fb28036f90523047a2594a55b8c5f2e2e39932 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Mar 2020 02:28:57 +0400 Subject: [PATCH 267/350] cargo update dependencies --- Cargo.lock | 1683 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 2 +- 2 files changed, 834 insertions(+), 851 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33b23a59db..589cdabfb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,7 +22,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -41,15 +41,15 @@ name = "ahash" version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "const-random 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "aho-corasick" -version = "0.7.6" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -68,11 +68,6 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "anyhow" -version = "1.0.21" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "app_dirs" version = "1.2.1" @@ -91,7 +86,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "arrayref" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -121,15 +116,16 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "atty" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -138,24 +134,29 @@ name = "autocfg" version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "autocfg" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "backtrace" -version = "0.3.40" +version = "0.3.45" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace-sys" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -168,7 +169,7 @@ name = "base64" version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -188,7 +189,7 @@ dependencies = [ "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -224,7 +225,7 @@ version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -234,7 +235,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -266,20 +267,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bstr" -version = "0.2.8" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "bumpalo" -version = "2.6.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "byte-slice-cast" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -294,7 +295,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "byteorder" -version = "1.3.2" +version = "1.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -302,7 +303,7 @@ name = "bytes" version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -327,11 +328,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cc" -version = "1.0.47" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -349,12 +349,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "chrono" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -364,7 +363,7 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -374,11 +373,11 @@ version = "2.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -387,7 +386,7 @@ name = "clear_on_drop" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -400,25 +399,25 @@ dependencies = [ [[package]] name = "const-random" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "const-random-macro 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "const-random-macro" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "constant_time_eq" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -439,32 +438,35 @@ dependencies = [ [[package]] name = "crossbeam-deque" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crossbeam-epoch" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crossbeam-queue" -version = "0.1.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -478,10 +480,10 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.7.0" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -519,10 +521,10 @@ dependencies = [ [[package]] name = "ctrlc" -version = "3.1.3" +version = "3.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "nix 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -540,11 +542,11 @@ name = "curve25519-dalek" version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -552,16 +554,16 @@ name = "curve25519-dalek" version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "data-encoding" -version = "2.1.2" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -583,7 +585,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -601,8 +603,8 @@ name = "dns-parser" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -628,8 +630,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -639,7 +641,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "elastic-array" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -650,11 +652,11 @@ name = "env_logger" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -662,24 +664,24 @@ name = "env_logger" version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "environmental" -version = "1.0.2" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "erased-serde" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -696,7 +698,7 @@ name = "failure" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -705,9 +707,9 @@ name = "failure_derive" version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -718,10 +720,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fdlimit" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -732,8 +734,8 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -742,10 +744,10 @@ name = "fixed-hash" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -762,10 +764,10 @@ dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -778,7 +780,7 @@ name = "fork-tree" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -787,7 +789,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -864,7 +866,7 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -875,7 +877,7 @@ dependencies = [ "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -885,7 +887,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -904,9 +906,9 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -958,7 +960,7 @@ dependencies = [ "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -975,7 +977,7 @@ dependencies = [ "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1000,7 +1002,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1010,17 +1012,17 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "getrandom" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", + "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1033,11 +1035,11 @@ name = "globset" version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - "bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", + "bstr 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1045,16 +1047,16 @@ name = "h2" version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", - "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", + "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1075,7 +1077,7 @@ name = "hashbrown" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1106,10 +1108,10 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.1.3" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1119,7 +1121,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hex" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1177,12 +1179,12 @@ dependencies = [ [[package]] name = "http" -version = "0.1.19" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1192,7 +1194,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1206,7 +1208,7 @@ name = "humantime" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1218,23 +1220,23 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1248,7 +1250,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", "webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1261,7 +1263,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1271,7 +1273,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1279,7 +1281,7 @@ name = "impl-codec" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1287,7 +1289,7 @@ name = "impl-serde" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1295,7 +1297,7 @@ name = "impl-serde" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1303,22 +1305,22 @@ name = "impl-trait-for-tuples" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "indexmap" -version = "1.3.0" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "integer-sqrt" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1331,17 +1333,17 @@ name = "iovec" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "ipnet" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "itertools" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1349,42 +1351,40 @@ dependencies = [ [[package]] name = "itoa" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "jobserver" -version = "0.1.17" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "joystream-node" version = "2.0.0" dependencies = [ - "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "joystream-node-runtime 6.2.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -1410,11 +1410,11 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.2.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p#63da40df9979fabfbdcbc9687a25e5cd29e1e66e" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p#bc373e366b07a0d55887584c37d786aa497946aa" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -1453,15 +1453,15 @@ dependencies = [ "substrate-token-mint-module 1.0.0 (git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p)", "substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)", "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p)", - "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "js-sys" -version = "0.3.31" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1474,8 +1474,8 @@ dependencies = [ "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1486,9 +1486,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1498,9 +1498,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1517,9 +1517,9 @@ version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1544,7 +1544,7 @@ dependencies = [ "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1558,7 +1558,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1594,7 +1594,7 @@ name = "kvdb" version = "0.1.0" source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" dependencies = [ - "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", + "elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", ] @@ -1612,14 +1612,14 @@ name = "kvdb-rocksdb" version = "0.1.4" source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" dependencies = [ - "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", + "elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1635,7 +1635,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.65" +version = "0.2.67" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1643,7 +1643,7 @@ name = "libloading" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1678,9 +1678,9 @@ dependencies = [ "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1697,21 +1697,21 @@ dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "multistream-select 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1736,7 +1736,7 @@ dependencies = [ "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1765,7 +1765,7 @@ dependencies = [ "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1781,8 +1781,8 @@ dependencies = [ "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1803,11 +1803,11 @@ dependencies = [ "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1819,7 +1819,7 @@ name = "libp2p-mdns" version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1829,9 +1829,9 @@ dependencies = [ "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-udp 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1847,8 +1847,8 @@ dependencies = [ "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1864,10 +1864,10 @@ dependencies = [ "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", "snow 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1883,8 +1883,8 @@ dependencies = [ "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1900,7 +1900,7 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1914,7 +1914,7 @@ dependencies = [ "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1923,14 +1923,14 @@ dependencies = [ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1941,7 +1941,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1954,12 +1954,12 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ipnet 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ipnet 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1970,7 +1970,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-uds 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1979,11 +1979,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1998,10 +1998,10 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2013,7 +2013,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2023,22 +2023,23 @@ version = "5.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libsecp256k1" -version = "0.3.2" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2047,10 +2048,10 @@ name = "libz-sys" version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2071,7 +2072,7 @@ name = "lock_api" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owning_ref 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2080,15 +2081,15 @@ name = "lock_api" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "lock_api" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2112,8 +2113,8 @@ name = "malloc_size_of_derive" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2129,7 +2130,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "memchr" -version = "2.2.1" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2142,9 +2143,10 @@ dependencies = [ [[package]] name = "memory-db" -version = "0.15.2" +version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2157,18 +2159,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "merlin" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "miniz_oxide" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2176,14 +2178,15 @@ dependencies = [ [[package]] name = "mio" -version = "0.6.19" +version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2193,12 +2196,12 @@ dependencies = [ [[package]] name = "mio-extras" -version = "2.0.5" +version = "2.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2208,8 +2211,8 @@ version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2237,7 +2240,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2255,19 +2258,19 @@ version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "nix" -version = "0.14.1" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2278,7 +2281,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "nohash-hasher" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2286,55 +2289,55 @@ name = "nom" version = "4.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-bigint" -version = "0.2.3" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-integer" -version = "0.1.41" +version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-rational" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-traits" -version = "0.2.9" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num_cpus" -version = "1.11.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2366,7 +2369,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "owning_ref" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2382,14 +2385,14 @@ name = "parity-multiaddr" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2399,16 +2402,16 @@ name = "parity-multiaddr" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2419,8 +2422,8 @@ dependencies = [ "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2432,34 +2435,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unsigned-varint 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-scale-codec" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-slice-cast 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec-derive 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-slice-cast 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec-derive 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "parity-scale-codec-derive" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2515,7 +2518,7 @@ name = "parking_lot" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2525,7 +2528,7 @@ name = "parking_lot" version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2534,7 +2537,7 @@ name = "parking_lot_core" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2546,7 +2549,7 @@ name = "parking_lot_core" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2560,7 +2563,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2575,7 +2578,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2589,7 +2592,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2597,22 +2600,22 @@ dependencies = [ [[package]] name = "paste" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "paste-impl 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "paste-impl" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2620,7 +2623,7 @@ name = "pbkdf2" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2683,7 +2686,7 @@ name = "proc-macro-crate" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2691,9 +2694,9 @@ name = "proc-macro-error" version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2709,9 +2712,9 @@ name = "proc-macro-hack" version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2734,7 +2737,7 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2745,7 +2748,7 @@ name = "prost" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2757,7 +2760,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2773,7 +2776,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2795,7 +2798,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "quick-error" -version = "1.2.2" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -2811,7 +2814,7 @@ name = "quote" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2819,7 +2822,7 @@ name = "rand" version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2829,7 +2832,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2842,7 +2845,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2853,7 +2856,7 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2867,11 +2870,11 @@ dependencies = [ [[package]] name = "rand" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2913,7 +2916,7 @@ name = "rand_core" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -2945,7 +2948,7 @@ name = "rand_jitter" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2957,7 +2960,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2982,24 +2985,24 @@ dependencies = [ [[package]] name = "rayon" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon-core" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3017,18 +3020,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex" -version = "1.3.1" +version = "1.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "aho-corasick 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.6.12" +version = "0.6.16" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3044,12 +3047,12 @@ name = "ring" version = "0.16.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3058,16 +3061,16 @@ name = "rocksdb" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rpassword" -version = "4.0.1" +version = "4.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3078,7 +3081,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "rustc-hex" -version = "2.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3108,7 +3111,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3118,7 +3121,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "safe-mix" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3131,12 +3134,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "merlin 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3147,7 +3150,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "scopeguard" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -3179,35 +3182,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.102" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_derive" -version = "1.0.102" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_json" -version = "1.0.41" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sha-1" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3223,7 +3226,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sha2" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3263,7 +3266,7 @@ name = "slog" version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3282,10 +3285,10 @@ name = "slog-json" version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", - "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3327,11 +3330,11 @@ name = "snow" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3343,21 +3346,16 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sourcefile" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "spin" version = "0.5.2" @@ -3370,9 +3368,9 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3380,10 +3378,10 @@ name = "sr-arithmetic" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "integer-sqrt 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -3394,9 +3392,9 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3413,10 +3411,10 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3429,7 +3427,7 @@ name = "sr-staking-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -3448,8 +3446,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -3459,8 +3457,8 @@ name = "srml-authority-discovery" version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3477,7 +3475,7 @@ version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3493,8 +3491,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3512,9 +3510,9 @@ name = "srml-balances" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3527,8 +3525,8 @@ name = "srml-executive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3542,8 +3540,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3556,8 +3554,8 @@ name = "srml-grandpa" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3574,8 +3572,8 @@ name = "srml-im-online" version = "0.1.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3593,9 +3591,9 @@ name = "srml-indices" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3610,8 +3608,8 @@ name = "srml-metadata" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -3621,8 +3619,8 @@ name = "srml-offences" version = "1.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3636,8 +3634,8 @@ name = "srml-randomness-collective-flip" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3650,9 +3648,9 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3668,9 +3666,9 @@ name = "srml-staking" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3689,9 +3687,9 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3699,8 +3697,8 @@ name = "srml-sudo" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3717,9 +3715,9 @@ dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3734,11 +3732,11 @@ name = "srml-support-procedural" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3747,10 +3745,10 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3758,9 +3756,9 @@ 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.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3769,9 +3767,9 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3785,7 +3783,7 @@ 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 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -3795,8 +3793,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3809,7 +3807,7 @@ name = "srml-transaction-payment" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3822,8 +3820,8 @@ 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 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3862,23 +3860,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "structopt" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "structopt-derive" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3902,8 +3900,8 @@ name = "substrate-application-crypto" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3920,10 +3918,10 @@ dependencies = [ "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3936,7 +3934,7 @@ name = "substrate-authority-discovery-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3949,7 +3947,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3967,7 +3965,7 @@ dependencies = [ "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -3976,8 +3974,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -3991,9 +3989,9 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4003,22 +4001,22 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fdlimit 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rpassword 4.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4045,7 +4043,7 @@ dependencies = [ "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4073,7 +4071,7 @@ dependencies = [ "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4097,14 +4095,14 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "merlin 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4129,7 +4127,7 @@ name = "substrate-consensus-babe-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4148,7 +4146,7 @@ dependencies = [ "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4165,7 +4163,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4194,9 +4192,9 @@ name = "substrate-debug-derive" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4206,9 +4204,9 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4228,7 +4226,7 @@ name = "substrate-externalities" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "environmental 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4244,10 +4242,10 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4259,8 +4257,8 @@ dependencies = [ "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4268,8 +4266,8 @@ name = "substrate-finality-grandpa-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4282,9 +4280,9 @@ version = "1.1.0" source = "git+https://github.com/mnaamani/substrate-forum-module?branch=upgrade-libp2p#a403cb2994790e2f29b2e9886a1f35ba5bdaf181" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4311,9 +4309,9 @@ version = "1.0.0" source = "git+https://github.com/mnaamani/substrate-hiring-module?branch=upgrade-libp2p#ac45de704e0147dfb9ad7fb8d3375a01fe9df6ad" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4330,7 +4328,7 @@ name = "substrate-inherents" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4356,11 +4354,11 @@ dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4372,7 +4370,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4383,12 +4381,12 @@ dependencies = [ "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4399,7 +4397,7 @@ dependencies = [ "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4418,10 +4416,10 @@ dependencies = [ "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4446,7 +4444,7 @@ name = "substrate-panic-handler" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4460,7 +4458,7 @@ dependencies = [ "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4468,7 +4466,7 @@ name = "substrate-phragmen" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -4480,25 +4478,25 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4517,7 +4515,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -4528,9 +4526,9 @@ version = "1.0.0" source = "git+https://github.com/mnaamani/substrate-recurring-reward-module?branch=upgrade-libp2p#84bc180bdff6709ad952135fff1cb13d4426758c" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4552,9 +4550,9 @@ dependencies = [ "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4580,10 +4578,10 @@ dependencies = [ "jsonrpc-derive 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4595,7 +4593,7 @@ name = "substrate-rpc-primitives" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -4609,8 +4607,8 @@ dependencies = [ "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-ws-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -4619,8 +4617,8 @@ name = "substrate-serializer" version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4635,10 +4633,10 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4659,8 +4657,8 @@ dependencies = [ "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4680,9 +4678,9 @@ version = "1.0.0" source = "git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p#1829dfb79b5d26cc34619065bd12a38a9b0b4783" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4699,7 +4697,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -4711,10 +4709,10 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4735,13 +4733,13 @@ dependencies = [ "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4751,9 +4749,9 @@ version = "1.0.0" source = "git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p#bec7a1b121eff86d5d1c8a8de11ac09094b6fe78" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4773,7 +4771,7 @@ dependencies = [ "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -4786,7 +4784,7 @@ dependencies = [ "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4800,8 +4798,8 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memory-db 0.15.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4814,9 +4812,9 @@ version = "1.1.0" source = "git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p#025734d46efaddf4aed0f6ed4c4a4beff0cc5403" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4833,9 +4831,9 @@ version = "1.0.0" source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p#f981a6000eb210764c8e3b48d2142bc23af59fff" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4848,7 +4846,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -4866,7 +4864,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "subtle" -version = "2.2.1" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -4881,10 +4879,10 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.8" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4894,9 +4892,9 @@ name = "synstructure" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4907,8 +4905,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4928,8 +4926,8 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4937,10 +4935,10 @@ dependencies = [ [[package]] name = "termcolor" -version = "1.0.5" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4948,7 +4946,7 @@ name = "textwrap" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4959,12 +4957,20 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "thread_local" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "threadpool" version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -4972,7 +4978,7 @@ name = "time" version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4988,7 +4994,7 @@ dependencies = [ "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5006,20 +5012,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-current-thread 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-fs 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-udp 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-uds 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5034,21 +5040,21 @@ dependencies = [ [[package]] name = "tokio-codec" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-current-thread" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5064,26 +5070,26 @@ dependencies = [ [[package]] name = "tokio-executor" -version = "0.1.8" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-fs" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-io" -version = "0.1.12" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5093,20 +5099,20 @@ dependencies = [ [[package]] name = "tokio-reactor" -version = "0.1.10" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-sync 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5118,13 +5124,13 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-sync" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5133,81 +5139,81 @@ dependencies = [ [[package]] name = "tokio-tcp" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-threadpool" -version = "0.1.16" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-timer" -version = "0.2.11" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-udp" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-uds" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "toml" -version = "0.5.5" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5215,7 +5221,7 @@ name = "trie-db" version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", + "elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5241,7 +5247,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5250,7 +5256,7 @@ name = "twox-hash" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5263,9 +5269,9 @@ name = "uint" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5287,10 +5293,10 @@ dependencies = [ [[package]] name = "unicode-normalization" -version = "0.1.9" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5300,7 +5306,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "unicode-width" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -5319,12 +5325,12 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "unsigned-varint" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -5344,7 +5350,7 @@ dependencies = [ [[package]] name = "url" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5354,7 +5360,7 @@ dependencies = [ [[package]] name = "vcpkg" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -5368,7 +5374,7 @@ version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5399,30 +5405,30 @@ dependencies = [ [[package]] name = "wasi" -version = "0.7.0" +version = "0.9.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wasm-bindgen" -version = "0.2.54" +version = "0.2.59" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.54" +version = "0.2.59" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5432,63 +5438,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.54" +version = "0.2.59" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-macro-support 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.54" +version = "0.2.59" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-backend 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.54" +version = "0.2.59" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "wasm-bindgen-webidl" -version = "0.2.54" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "anyhow 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "wasm-timer" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", + "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5496,10 +5487,10 @@ name = "wasmi" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "num-rational 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5514,14 +5505,11 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.31" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "anyhow 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)", - "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-webidl 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", + "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5549,21 +5537,13 @@ dependencies = [ "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "weedle" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "which" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5592,7 +5572,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "winapi-util" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5603,30 +5583,21 @@ name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "wincolor" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "ws" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", - "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-extras 2.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5661,12 +5632,12 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "nohash-hasher 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "nohash-hasher 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5683,6 +5654,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "zeroize" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "zeroize_derive 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "zeroize_derive" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", +] [metadata] "checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2" @@ -5690,21 +5675,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" "checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" "checksum ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3" -"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" +"checksum aho-corasick 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)" = "d5e63fd144e18ba274ae7095c0197a870a7b9468abc801dd62f190d80817d2ec" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -"checksum anyhow 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" = "73232834f4ba605439f8ab8e134569bc52e29d19e7ec2d910c73fd6e8af46557" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" "checksum arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff" -"checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" +"checksum arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" "checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" "checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" "checksum asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638" "checksum asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502" -"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" +"checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" -"checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea" -"checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" +"checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" +"checksum backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)" = "ad235dabf00f36301792cfe82499880ba54c6486be094d1047b02bacb67c14e8" +"checksum backtrace-sys 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)" = "e17b52e737c40a7d75abca20b29a19a0eb7ba9fc72c5a72dd282a0a3c2c0dc35" "checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" "checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" @@ -5718,43 +5703,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" "checksum bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188" "checksum bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae" -"checksum bstr 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8d6c2c5b58ab920a4f5aeaaca34b4488074e8cc7596af94e6f8c6ff247c60245" -"checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708" -"checksum byte-slice-cast 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f6209f3b2c1edea170002e016d5ead6903d3bb0a846477f53bbeb614967a52a9" +"checksum bstr 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "502ae1441a0a5adb8fbd38a5955a6416b9493e92b465de5e4a9bde6a539c2c48" +"checksum bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1f359dc14ff8911330a51ef78022d376f25ed00248912803b58f00cb1c27f742" +"checksum byte-slice-cast 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3" "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" "checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" -"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" +"checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" "checksum bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1" "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" "checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" -"checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8" +"checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" "checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" -"checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" +"checksum chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01" "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -"checksum const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7b641a8c9867e341f3295564203b1c250eb8ce6cb6126e007941f78c4d2ed7fe" -"checksum const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c750ec12b83377637110d5a57f5ae08e895b06c4b16e2bdbf1a94ef717428c59" -"checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120" +"checksum const-random 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a" +"checksum const-random-macro 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a" +"checksum constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" -"checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" -"checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" -"checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" +"checksum crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285" +"checksum crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" +"checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db" "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" -"checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" +"checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" "checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" "checksum ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113" "checksum ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" -"checksum ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7dfd2d8b4c82121dfdff120f818e09fc4380b0b7e17a742081a89b94853e87f" +"checksum ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7a4ba686dff9fa4c1c9636ce1010b0cf98ceb421361b0bb3d6faeec43bd217a7" "checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" "checksum curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8b7dcd30ba50cdf88b55b033456138b7c0ac4afdc436d82e1b79f370f24cc66d" "checksum curve25519-dalek 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "26778518a7f6cffa1d25a44b602b62b979bd88adb9e99ffec546998cf3404839" -"checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97" +"checksum data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11c0346158a19b3627234e15596f5e465c360fcdb97d817bcb255e0510f5a788" "checksum derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6d944ac6003ed268757ef1ee686753b57efc5fcf0ebe7b64c9fc81e7e32ff839" "checksum derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe" "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" @@ -5763,16 +5748,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d07e8b8a8386c3b89a7a4b329fdfa4cb545de2545e9e2ebbc3dd3929253e426" "checksum ed25519-dalek 1.0.0-pre.3 (registry+https://github.com/rust-lang/crates.io-index)" = "978710b352437433c97b2bff193f2fb1dfd58a093f863dd95e225a19baa599a2" "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" -"checksum elastic-array 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "073be79b6538296faf81c631872676600616073817dd9a440c477ad09b408983" +"checksum elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)" = "580f3768bd6465780d063f5b8213a2ebd506e139b345e4a81eb301ceae3d61e1" "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" "checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" -"checksum environmental 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "34f8467a0284de039e6bd0e25c14519538462ba5beb548bb1f03e645097837a8" -"checksum erased-serde 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3beee4bc16478a1b26f2e80ad819a52d24745e292f521a63c16eea5f74b7eb60" +"checksum environmental 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "516aa8d7a71cb00a1c4146f0798549b93d083d4f189b3ced8f3de6b8f11ee6c4" +"checksum erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)" = "cd7d80305c9bd8cd78e3c753eb9fb110f83621e5211f1a3afffcc812b104daf9" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" "checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" "checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" -"checksum fdlimit 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ee15a7050e5580b3712877157068ea713b245b080ff302ae2ca973cfcd9baa" +"checksum fdlimit 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9084c55bb76efb1496328976db88320fe7d9ee86e649e83c4ecce3ba7a9a35d1" "checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" "checksum fixed-hash 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3367952ceb191f4ab95dd5685dc163ac539e36202f9fcfd0cb22f9f9c542fefc" "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" @@ -5806,7 +5791,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" -"checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" +"checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" @@ -5816,16 +5801,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead" "checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" -"checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" +"checksum hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" -"checksum hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "023b39be39e3a2da62a94feb433e91e8bcd37676fbc8bea371daf52b7a769a3e" +"checksum hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35" "checksum hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639" "checksum hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0" "checksum hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda" "checksum hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9d4c5c844e2fee0bf673d54c2c177f1713b3d2af2ff6e666b49cb7572e6cf42d" "checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" "checksum hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b" -"checksum http 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e06e336150b178206af098a055e3621e8336027e2b4d126bda0bc64824baaf" +"checksum http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" @@ -5837,16 +5822,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "58e3cae7e99c7ff5a995da2cf78dd0a5383740eda71d98cf7b1910c301ac69b8" "checksum impl-serde 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5bbe9ea9b182f0fb1cabbd61f4ff9b7b7b9197955e95a7e4c27de5055eb29ff8" "checksum impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d" -"checksum indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d7b3ea5827fcb9d4fda14bf4da5f136f0db2ae9c8f4bd4e2d1c6fde4e6db2" -"checksum integer-sqrt 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea155abb3ba6f382a75f1418988c05fe82959ed9ce727de427f9cfd425b0c903" +"checksum indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292" +"checksum integer-sqrt 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f65877bf7d44897a473350b1046277941cee20b263397e90869c50b6e766088b" "checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" "checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -"checksum ipnet 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f2f4b06b21db0228860c8dfd17d2106c49c7c6bd07477a4036985347d84def04" -"checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" -"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" -"checksum jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b1d42ef453b30b7387e113da1c83ab1605d90c5b4e0eb8e96d016ed3b8c160" +"checksum ipnet 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a859057dc563d1388c1e816f98a1892629075fc046ed06e845b883bb8b2916fb" +"checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" +"checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" +"checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" "checksum joystream-node-runtime 6.2.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p)" = "" -"checksum js-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d8657b7ca06a6044ece477f6900bf7670f8b5fd0cce177a1d7094eef51e0adf4" +"checksum js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" "checksum jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" "checksum jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fe3b688648f1ef5d5072229e2d672ecb92cbff7d1c79bcf3fd5898f3f3df0970" @@ -5863,7 +5848,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" +"checksum libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)" = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018" "checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" "checksum libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9b4674c6738fdd8b1cf7104dd046abcef78dc932fe25f8eb40f3a8e71341717d" "checksum libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "01efc769c392d0d8863a7160d266f9b9f794968554f87490c8af4aa34ccaa94f" @@ -5886,53 +5871,53 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum libp2p-websocket 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d74d4fc229ad7e8d1a973178786bdcd5dadbdd7b9822c4477c8687df6f82f66" "checksum libp2p-yamux 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1913eb7dd6eb5515957b6f1770296f6921968db87bc9b985f0e974b6657e1003" "checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" -"checksum libsecp256k1 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd9a7c16c9487e710536b699c962f022266347c94201174aa0a7eb0546051aa" +"checksum libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962" "checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" "checksum linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c" "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" "checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" -"checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" +"checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" "checksum malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" "checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" -"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" +"checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400" "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" -"checksum memory-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ef49315991403ba5fa225a70399df5e115f57b274cb0b1b4bcd6e734fa5bd783" +"checksum memory-db 0.15.3 (registry+https://github.com/rust-lang/crates.io-index)" = "5dabfe0a8c69954ae3bcfc5fc14260a85fb80e1bf9f86a155f668d10a67e93dd" "checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" -"checksum merlin 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "de2d16d3b15fec5943d1144f861f61f279d165fdd60998ca262913b9bf1c8adb" -"checksum miniz_oxide 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625" -"checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" -"checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" +"checksum merlin 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2b0942b357c1b4d0dc43ba724674ec89c3218e6ca2b3e8269e7cb53bcecd2f6e" +"checksum miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5" +"checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" +"checksum mio-extras 2.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" "checksum multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151" "checksum multistream-select 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fc3ef54aab1b2e37e911bcb99e376dbe4c1e0710afcdb8428608e4f993b39c47" "checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" -"checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" +"checksum nix 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363" "checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" -"checksum nohash-hasher 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4e657a6ec97f9a3ba46f6f7034ea6db9fcd5b71d25ef1074b7bc03da49be0e8e" +"checksum nohash-hasher 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "721a2bf1c26159ebf17e0a980bc4ce61f4b2fec5ec3b42d42fddd7a84a9e538f" "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -"checksum num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f9c3f34cdd24f334cb265d9bf8bfa8a241920d026916785747a92f0e55541a1a" -"checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" -"checksum num-rational 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454" -"checksum num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "443c53b3c3531dfcbfa499d8893944db78474ad7a1d87fa2d94d1a2231693ac6" -"checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" +"checksum num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" +"checksum num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba" +"checksum num-rational 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "da4dc79f9e6c81bef96148c8f6b8e72ad4541caa4a24373e900a36da07de03a3" +"checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096" +"checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" "checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" "checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" -"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" +"checksum owning_ref 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" "checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" "checksum parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82afcb7461eae5d122543d8be1c57d306ed89af2d6ff7f8b0f5a3cc8f7e511bc" "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" "checksum parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7a1cd2ba02391b81367bec529fb209019d718684fdc8ad6a712c2b536e46f775" -"checksum parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f9f9d99dae413590a5f37e43cd99b94d4e62a244160562899126913ea7108673" -"checksum parity-scale-codec-derive 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "492ac3aa93d6caa5d20e4e3e0b75d08e2dcd9dd8a50d19529548b6fe11b3f295" +"checksum parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f509c5e67ca0605ee17dcd3f91ef41cadd685c75a298fb6261b781a5acb3f910" +"checksum parity-scale-codec-derive 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a0ec292e92e8ec7c58e576adacc1e3f399c597c8f263c42f18420abe58e7245" "checksum parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" "checksum parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "570093f39f786beea92dcc09e45d8aae7841516ac19a50431953ac82a0e8f85c" "checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" @@ -5946,8 +5931,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" "checksum parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1" -"checksum paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "423a519e1c6e828f1e73b720f9d9ed2fa643dce8a7737fb43235ce0b41eeaa49" -"checksum paste-impl 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4214c9e912ef61bf42b81ba9a47e8aad1b2ffaf739ab162bf96d1e011f54e6c5" +"checksum paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "63e1afe738d71b1ebab5f1207c055054015427dbfc7bbe9ee1266894156ec046" +"checksum paste-impl 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc4a7f6f743211c5aab239640a65091535d97d43d92a52bca435a640892bb" "checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" "checksum pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27" "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" @@ -5965,20 +5950,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842" "checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" +"checksum proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" "checksum prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96d14b1c185652833d24aaad41c5832b0be5616a590227c1fbff57c616754b23" "checksum prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eb788126ea840817128183f8f603dce02cb7aea25c2a0b764359d8e20010702e" "checksum prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e7dc378b94ac374644181a2247cebf59a6ec1c88b49ac77f3a94b86b79d0e11" "checksum prost-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1de482a366941c8d56d19b650fac09ca08508f2a696119ee7513ad590c8bac6f" "checksum protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40361836defdd5871ff7e84096c6f6444af7fc157f8ef1789f54f147687caa20" -"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" "checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" +"checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" @@ -5991,36 +5976,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123" -"checksum rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b" +"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" +"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" -"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" -"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" +"checksum regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8" +"checksum regex-syntax 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "1132f845907680735a84409c3bebc64d1364a5683ffbce899550cd09d5eaefc1" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)" = "741ba1704ae21999c00942f9f5944f801e977f54302af346b596287599ad1862" "checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" -"checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd" +"checksum rpassword 4.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "99371657d3c8e4d816fb6221db98fa408242b0b53bac08f8676a41f8554fe99f" "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" -"checksum rustc-hex 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "403bb3a286107a04825a5f82e1270acc1e14028d3d554d7a1e08914549575ab8" +"checksum rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" "checksum rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b25a18b1bf7387f0145e7f8324e700805aade3842dd3db2e74e4cdeb4677c09e" "checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" -"checksum safe-mix 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f7bf422d23a88c16d5090d455f182bc99c60af4df6a345c63428acf5129e347" +"checksum safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c" "checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" -"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" +"checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" "checksum sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" -"checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" -"checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" -"checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" -"checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68" +"checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" +"checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" +"checksum serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)" = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25" +"checksum sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" "checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" -"checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" +"checksum sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "27044adfd2e1f077f649f59deb9490d3941d674002f7d062870a60ebe9bd47a0" "checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf" "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" @@ -6033,7 +6018,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" "checksum snow 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "afb767eee7d257ba202f0b9b08673bc13b22281632ef45267b19f13100accd2f" "checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" -"checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" "checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" @@ -6072,8 +6056,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -"checksum structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c167b61c7d4c126927f5346a4327ce20abf8a186b8041bbeb1ce49e5db49587b" -"checksum structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "519621841414165d2ad0d4c92be8f41844203f2b67e245f9345a5a12d40c69d7" +"checksum structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf" +"checksum structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e" "checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" "checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" "checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" @@ -6128,41 +6112,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)" = "" "checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p)" = "" -"checksum substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bd48273fe9d7f92c1f7d6c1c537bb01c8068f925b47ad2cd8367e11dc32f8550" +"checksum substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" -"checksum subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab3af2eb31c42e8f0ccf43548232556c42737e01a96db6e1777b0be108e79799" +"checksum subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c65d530b10ccaeac294f349038a597e435b18fb456aadd0840a623f83b9e941" "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" -"checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" +"checksum syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859" "checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" "checksum sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4b2468c629cffba39c0a4425849ab3cdb03d9dfacba69684609aea04d08ff9" "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" "checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" -"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" +"checksum termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +"checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" "checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" "checksum tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c5676413eaeb1ea35300a0224416f57abc3bd251657e0fafc12c47ff98c060" "checksum tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2" "checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" "checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" -"checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" -"checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" +"checksum tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b" +"checksum tokio-current-thread 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e" "checksum tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975" -"checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac" -"checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" -"checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" -"checksum tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c56391be9805bc80163151c0b9e5164ee64f4b0200962c346fea12773158f22d" +"checksum tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" +"checksum tokio-fs 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4" +"checksum tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" +"checksum tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" "checksum tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2d7cf08f990090abd6c6a73cab46fed62f85e8aef8b99e4b918a9f4a637f0676" -"checksum tokio-sync 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d06554cce1ae4a50f42fba8023918afa931413aded705b560e29600ccf7c6d76" -"checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" -"checksum tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "2bd2c6a3885302581f4401c82af70d792bb9df1700e7437b0aeb4ada94d5388c" -"checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" -"checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" -"checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" -"checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" +"checksum tokio-sync 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" +"checksum tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" +"checksum tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89" +"checksum tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296" +"checksum tokio-udp 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82" +"checksum tokio-uds 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5076db410d6fdc6523df7595447629099a1fdc47b3d9f896220780fa48faf798" +"checksum toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a" "checksum trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a" "checksum trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" @@ -6172,47 +6157,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e75a4cdd7b87b28840dba13c483b9a88ee6bbf16ba5c951ee1ecfcf723078e0d" "checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" -"checksum unicode-normalization 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf" +"checksum unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4" "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" -"checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" +"checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" "checksum unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f0023a96687fe169081e8adce3f65e3874426b7886e9234d490af2dc077959" -"checksum unsigned-varint 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3b7ffb36714206d2f5f05d61a2bc350415c642f2c54433f0ebf829afbe41d570" +"checksum unsigned-varint 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f38e01ad4b98f042e166c1bf9a13f9873a99d79eaa171ce7ca81e6dd0f895d8a" "checksum untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60369ef7a31de49bcb3f6ca728d4ba7300d9a1658f94c727d4cab8c8d9f4aece" "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" -"checksum url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61" -"checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95" +"checksum url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb" +"checksum vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168" "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" "checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba" "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" "checksum version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" -"checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" -"checksum wasm-bindgen 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "c4568ae1b4e07ca907b1a4de41174eaa3e5be4066c024475586b7842725f69a9" -"checksum wasm-bindgen-backend 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5a00cfdce37367770062065fd3abb9278cbae86a0d918cacd0978a7acd51b481" +"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" +"checksum wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "3557c397ab5a8e347d434782bcd31fc1483d927a6826804cec05cc792ee2519d" +"checksum wasm-bindgen-backend 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "e0da9c9a19850d3af6df1cb9574970b566d617ecfaf36eb0b706b6f3ef9bd2f8" "checksum wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" -"checksum wasm-bindgen-macro 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "7c568f4d3cf6d7c1d72b165daf778fb0d6e09a24f96ac14fc8c4f66a96e86b72" -"checksum wasm-bindgen-macro-support 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "430d12539ae324d16097b399e9d07a6d5ce0173b2a61a2d02346ca7c198daffe" -"checksum wasm-bindgen-shared 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "8ae7167f0bbffd7fac2b12da0fa1f834c1d84671a1ae3c93ac8bde2e97179c39" -"checksum wasm-bindgen-webidl 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "3021567c515a746a64ad0b269d120d46e687c0c95702a4750623db935ae6b5e7" +"checksum wasm-bindgen-macro 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "0f6fde1d36e75a714b5fe0cffbb78978f222ea6baebb726af13c78869fdb4205" +"checksum wasm-bindgen-macro-support 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "25bda4168030a6412ea8a047e27238cadf56f0e53516e1e83fec0a8b7c786f6d" +"checksum wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "fc9f36ad51f25b0219a3d4d13b90eb44cd075dff8b6280cca015775d7acaddd8" "checksum wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa3e01d234bb71760e685cfafa5e2c96f8ad877c161a721646356651069e26ac" "checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" "checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" -"checksum web-sys 0.3.31 (registry+https://github.com/rust-lang/crates.io-index)" = "ce8e893e021539beb87de8f06e77bdb390a3ab0db4cfeb569c4e377b55ed20de" +"checksum web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "721c6263e2c66fd44501cc5efbfa2b7dfa775d13e4ea38c46299646ed1f9c70a" "checksum webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1f50e1972865d6b1adb54167d1c8ed48606004c2c9d0ea5f1eeb34d95e863ef" "checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" "checksum webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4" -"checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" +"checksum winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -"checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" "checksum ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a2c47b5798ccc774ffb93ff536aec7c4275d722fd9c740c83cdd1af1f2d94" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" "checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" @@ -6221,3 +6203,4 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4090487fa66630f7b166fba2bbb525e247a5449f41c468cc1d98f8ae6ac03120" "checksum zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86" "checksum zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3cbac2ed2ba24cc90f5e06485ac8c7c1e5449fe8911aef4d8877218af021a5b8" +"checksum zeroize_derive 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de251eec69fc7c1bc3923403d18ececb929380e016afe103da75f396704f8ca2" diff --git a/Cargo.toml b/Cargo.toml index e660aed106..4b4807495f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ parking_lot = '0.9.0' tokio = '0.1.22' jsonrpc-core = '13.2.0' rand = '0.7.2' -structopt = '0.3.3' +structopt = '=0.3.5' serde_json = '1.0' serde = '1.0' hex = '0.4' From dfbb3d3516c417cd7f52b1d245dcd1025a16b882 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Mar 2020 02:29:28 +0400 Subject: [PATCH 268/350] Dockerfile: cache build artifacts --- Dockerfile | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4f76b919f1..545506a668 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,26 +1,30 @@ -FROM joystream/rust-builder AS node-build -LABEL description="Compiles joystream substrate node" - +# 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 -# if source files change will the intermediate image be rebuilt? COPY . /joystream -ENV TERM=xterm +RUN mkdir /build-output -RUN cargo build --release +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 -ENV TERM=xterm - -COPY --from=node-build /joystream/target/release/joystream-node /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 basepath isn't specified it will be inside container in ~/.local/share/joystream-node/ +# 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/joystream-node"] \ No newline at end of file +ENTRYPOINT ["/joystream/node"] \ No newline at end of file From 772b2d8d84811a49886ae1528e7aa382293d70f0 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Mar 2020 02:31:07 +0400 Subject: [PATCH 269/350] add travis --- .travis.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..e9d3ac6230 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +language: rust + +rust: + - 1.41.1 +# 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 + - rustup update nightly + - rustup target add wasm32-unknown-unknown --toolchain nightly + - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force + +script: + # Ensure all checked in code is cargo-fmt'ed + - cargo fmt --all -- --check + # WASM build check + - cargo build --release From 3844f4c3601e117d969dde8e5d2b6c186cfc0423 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Mar 2020 02:35:43 +0400 Subject: [PATCH 270/350] travis --- .travis.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index e9d3ac6230..d118eefaff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,6 @@ language: rust rust: - 1.41.1 -# 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 From 433618d1b52b045d7f5ea8f4a6ae065a793ded22 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Mar 2020 02:46:08 +0400 Subject: [PATCH 271/350] add rome-staging chain spec --- res/rome-staging.json | 112766 +++++++++++++++++++++++++++++++++++++++ src/chain_spec.rs | 4 +- 2 files changed, 112768 insertions(+), 2 deletions(-) create mode 100644 res/rome-staging.json diff --git a/res/rome-staging.json b/res/rome-staging.json new file mode 100644 index 0000000000..59fcb92aa5 --- /dev/null +++ b/res/rome-staging.json @@ -0,0 +1,112766 @@ +{ + "name": "Joystream Experimental", + "id": "joy_experimental_1", + "bootNodes": [ + "/dns4/rome-staging-1.joystream.org/tcp/30333/p2p/QmU75SBZ4ACL4ba4H8TfJoZL2itNrp8tDr9rmqFWz94Ay1" + ], + "telemetryEndpoints": [ + [ + "wss://telemetry.polkadot.io/submit/", + 0 + ] + ], + "protocolId": "/joy/experimental/1", + "properties": { + "tokenDecimals": 0, + "tokenSymbol": "JOY" + }, + "consensusEngine": null, + "genesis": { + "runtime": { + "system": { + "changesTrieConfig": null, + "code": "0x0061736d0100000001fe023460037f7f7f017f60027f7f017f60017f0060027f7f0060017f017e60037f7f7f0060057f7f7f7f7f017f60047f7f7f7f0060017e006000017f60047f7f7f7f017f60077f7f7f7f7f7f7f017f60017f017f60057f7f7f7f7f0060027f7f017e60000060027e7f017f60067f7f7e7e7f7f0060057f7f7e7f7f0060067f7f7e7f7f7f0060067f7f7f7e7f7f0060027f7e0060027f7e017f60077f7f7e7e7f7e7f0060057f7f7e7e7e0060087f7f7e7e7f7e7f7f0060027e7f0060017e017f60047f7e7f7f0060067f7f7e7e7e7e0060067f7e7e7f7f7f0060047f7f7e7f0060057f7f7e7e7f006000017e60047f7f7e7e0060057f7f7f7e7e0060037f7e7e017f60037f7e7e0060077f7e7f7f7f7f7f017f60037f7e7f0060067f7f7e7f7e7e0060037f7f7e0060097f7f7f7f7f7f7f7f7f0060057e7f7f7f7f017f60087f7e7e7e7e7e7e7e0060057f7e7e7e7f0060077f7e7e7e7e7e7e0060037f7e7f017f60037f7f7f017e60047f7e7e7f0060057f7e7e7e7e0060067f7e7e7e7e7f0002fc051e03656e760c6578745f74776f785f313238000503656e760e6578745f626c616b65325f323536000503656e76146578745f6765745f73746f726167655f696e746f000603656e76196578745f6765745f616c6c6f63617465645f73746f72616765000003656e76116578745f636c6561725f73746f72616765000303656e760f6578745f7365745f73746f72616765000703656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e760d6578745f7072696e745f6e756d000803656e76106578745f69735f76616c696461746f72000903656e76156578745f6c6f63616c5f73746f726167655f676574000a03656e76216578745f6c6f63616c5f73746f726167655f636f6d706172655f616e645f736574000b03656e76116578745f6e6574776f726b5f7374617465000c03656e76106578745f737232353531395f7369676e000603656e76166578745f7375626d69745f7472616e73616374696f6e000103656e76156578745f6c6f63616c5f73746f726167655f736574000d03656e76126578745f737232353531395f766572696679000a03656e76146578745f656432353531395f67656e6572617465000703656e76146578745f737232353531395f67656e6572617465000703656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000003656e76106578745f636c6561725f707265666978000303656e76266578745f736563703235366b315f65636473615f7265636f7665725f636f6d70726573736564000003656e76126578745f656432353531395f766572696679000a03656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000703656e760a6578745f6d616c6c6f63000c03656e76086578745f66726565000203656e760b6578745f74776f785f3634000503656e76076578745f6c6f67000d03656e76176578745f737232353531395f7075626c69635f6b657973000103ba05b8050c0c020200000c0c0e0f050305000f030d000101010301100204060a030300070101010301010105010100070601010001010001000201010101011112131314030315030303030c051516050d0205171819050305030303030205091a15031503031503030303150303031b151c1d030303050303030302020303030305050e0e030203030307020202020303010e030e030503030e03030e0303030e030503030303030e030e020e030305030305051e020e0203020109010e030e03030e03030e0e0e0e0315030303020303030303020302010101010303020702021f02030202050302050202030302030502020c02030302032002021503050303030f050202020305050502020203210502030003220202030303030302020202020202020202020202020202020202020202020202030215031515151503030303020303030303030c03151515030303081a1a05150315152202050302030523050303030c150303050505030505032403030c22250105032525030303030303030303030305030303020303152203030315030303151502031a03020503030303030203031a03031f260503032702030203030203030303030303030303020302030c032422112803020303030305031515031503030303150303030303030303040203030303030303031a2910102a2903051515152b071a232c2d0115030203030303030102020202030303020203030303030303030302030303031503032203030305052e2505010315030a250103020303030303030201010c0303020203010102020302030f020303030303240305020307020203020205020203020203030305031a070303050202030202032f0302020303050303030303030303151515151c1a0202020302030502021a0203020203030303030330272727150201030202050c030103010103000101010102000000003131323232330407017001d301d30105030100120619037f01418080c0000b7f0041ac8ac7000b7f0041ac8ac7000b07f80417066d656d6f72790200195f5f696e6469726563745f66756e6374696f6e5f7461626c65010009686173685f7465737400260c436f72655f76657273696f6e009d0112436f72655f657865637574655f626c6f636b009e0115436f72655f696e697469616c697a655f626c6f636b00ac01114d657461646174615f6d6574616461746100ae011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300b3011b426c6f636b4275696c6465725f66696e616c697a655f626c6f636b00b60120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300ba011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300c20118426c6f636b4275696c6465725f72616e646f6d5f7365656400c4012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00c601214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b657200d0011e4772616e6470614170695f6772616e6470615f617574686f72697469657300d70115426162654170695f636f6e66696775726174696f6e00d90121417574686f72697479446973636f766572794170695f617574686f72697469657300dc011a417574686f72697479446973636f766572794170695f7369676e00df011c417574686f72697479446973636f766572794170695f76657269667900e0011d4163636f756e744e6f6e63654170695f6163636f756e745f6e6f6e636500e1012153657373696f6e4b6579735f67656e65726174655f73657373696f6e5f6b65797300e2010a5f5f646174615f656e6403010b5f5f686561705f626173650302099203010041010bd2013432463ec1053f4051ab01d601f401f3019704ca0447c305a0052f30315637484b4c4d4e4f5455589701a305ea01e9018f05ef01ac04ab05aa04fb0487028602db0490028f02f10143a802ac02b202f8045785028402b702f3048b02c903cb03a602a502a702a805a7059502b802f704f604b902f904b002b102a904a804ba02b304a205a105bb02a4058805890586058505bc02da04d904bd02fa04be02f001df04de04bf02ce03d903c002e404f004c102c202c302c402f104f404c502ad05b905c6028e058d05c702d304c802db03e403c902aa05ac05ca02f701f901cb02fa01fc01cc028e029102cd02e801ce0296019501ab02ee01bd03cc04fd03a104cf02d002bf03be03c905ca03cd03cc03d803d703d603d503d403d303d203d103d003cf03dc038304820481048004ff03fe03a004d404af04ae04ad04ab04b504b404ce04cd04d504dc04f201dd04e004e904e804e704e604e504f20483058205840587058a05930592059005a505b205b105b005af05ae05ba05bb05bc0544c405c505c605c705c805ca050ad6e64bb80506002000101f0b0600200010190b0600200010210b06002000101a0b0a0020002001200210230b2801017f0240200210192203450d002003200020022001200120024b1b10cd051a2000101a0b20030b0600200010250b1c01017f0240200010192201450d0020014100200010cc051a0b20010bff0202017f037e230041206b220224002001ad42adfed5e4d485fda8d8007e42b9e0007c210302400240024002400240200141084b0d00200141014b0d0120010d02420021040c030b0240200141104b0d00200241106a2000290000200385420042adfed5e4d485fda8d800420010d205200241186a29030020022903107c200120006a41786a2900008521040c040b200120006a41786a2900002105200321040340200029000020048542adfed5e4d485fda8d8007e42178942adfed5e4d485fda8d8007e2003852103200041086a2100200442cf829ebbefefde82147c2104200141786a220141084b0d000b200320058521040c030b0240200141034b0d00200120006a417e6a33000042108620003300008420038521040c030b200120006a417c6a35000042208620003500008420038521040c020b200031000021040b200420038521040b20022004420042adfed5e4d485fda8d800420010d205200241086a290300210420022903002103200241206a2400200420037c42c300850b1100418080c0004111419480c0001028000b4701017f230041206b22032400200341146a4100360200200341e4fdc600360210200342013702042003200136021c200320003602182003200341186a360200200320021033000b8f0301067f230041306b2202240020012802002103024002402001280204220441037422050d00410021060c010b200341046a2107410021060340200728020020066a2106200741086a2107200541786a22050d000b0b024002400240024002400240200141146a2802000d00200621070c010b024020040d0041bc80c00041004100102a000b024002402006410f4b0d00200341046a280200450d010b200620066a220720064f0d010b4101210541002107200241086a21060c010b2007417f4c0d01200241086a2106024020070d0041012105410021070c010b2007101e2205450d020b200241003602102002200736020c200220053602082002200241086a360214200241186a41106a200141106a290200370300200241186a41086a200141086a29020037030020022001290200370318200241146a41cc80c000200241186a102b0d0220002006290200370200200041086a200641086a280200360200200241306a24000f0b102c000b20074101102d000b41e480c0004133200241186a419881c00041a881c000102e000b6c01017f230041306b2203240020032002360204200320013602002003411c6a41023602002003412c6a41013602002003420237020c2003419484c000360208200341013602242003200341206a360218200320033602282003200341046a360220200341086a20001033000bba06010a7f230041306b22032400200341246a2001360200200341033a002820034280808080800437030820032000360220410021042003410036021820034100360210024002400240024020022802082205450d0020022802002106200228020422072002410c6a2802002208200820074b1b2209450d01200241146a280200210a2002280210210b41012108200020062802002006280204200128020c1100000d03200541106a2102200641086a2100410121040240024003402003200241746a28020036020c20032002410c6a2d00003a00282003200241786a280200360208200241086a28020021084100210541002101024002400240200241046a2802000e03010002010b2008200a4f0d032008410374210c41002101200b200c6a220c2802044102470d01200c28020028020021080b410121010b2003200836021420032001360210200228020021080240024002402002417c6a2802000e03010002010b2008200a4f0d0420084103742101200b20016a22012802044102470d01200128020028020021080b410121050b2003200836021c200320053602180240200241706a2802002208200a4f0d00200b20084103746a2208280200200341086a20082802041101000d06200420094f0d05200041046a210120002802002105200241206a2102200041086a210041012108200441016a2104200328022020052001280200200328022428020c110000450d010c070b0b41e889c0002008200a102a000b41d889c0002008200a102a000b41d889c0002008200a102a000b2002280200210620022802042207200241146a2802002208200820074b1b220a450d002002280210210241012108200020062802002006280204200128020c1100000d02200641086a21004101210403402002280200200341086a200241046a2802001101000d022004200a4f0d01200041046a210120002802002105200241086a2102200041086a210041012108200441016a2104200328022020052001280200200328022428020c110000450d000c030b0b0240200720044d0d00410121082003280220200620044103746a22022802002002280204200328022428020c1100000d020b410021080c010b410121080b200341306a240020080b05001027000b0e0041a0e7c600412210c20500000b7e01017f230041c0006b220524002005200136020c2005200036020820052003360214200520023602102005412c6a41023602002005413c6a41033602002005420237021c200541a4c1c500360218200541043602342005200541306a3602282005200541106a3602382005200541086a360230200541186a20041033000bc10101037f024002402000280200220041046a2802002203200041086a28020022046b2002490d00200028020021030c010b0240200420026a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200028020020032004102221030b02402003450d0020002003360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420026a360200200320046a2001200210cd051a41000bd30401057f230041106b220224002000280200210002400240024002400240024002402001418001490d002002410036020c2001418010490d012002410c6a210302402001418080044f0d0020022001413f71418001723a000e20022001410676413f71418001723a000d20022001410c76410f7141e001723a000c410321010c040b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d410421010c030b024020002802082204200041046a280200460d00200028020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200028020020042003102221050b02402005450d0020002005360200200041046a2003360200200028020821040c020b20034101102d000b20022001413f71418001723a000d20022001410676411f7141c001723a000c2002410c6a2103410221010c010b200520046a20013a00002000200028020841016a3602080c030b0240200041046a2802002205200041086a28020022046b2001490d00200028020021050c020b200420016a22062004490d00200541017422042006200420064b1b22044100480d000240024020050d002004101e21050c010b200028020020052004102221050b02402005450d0020002005360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420016a360200200520046a2003200110cd051a0b200241106a240041000b6301017f230041206b2202240020022000280200360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41cc80c000200241086a102b2101200241206a240020010b0300000b3401017f230041106b220224002002200136020c20022000360208200241a484c000360204200241e4fdc60036020020021036000b0b002000350200200110350bd20203027f017e037f230041306b22022400412721030240024020004290ce005a0d00200021040c010b412721030340200241096a20036a2205417c6a200020004290ce0080220442f0b17f7e7ca7220641ffff037141e4006e220741017441e684c0006a2f00003b00002005417e6a2007419c7f6c20066a41ffff037141017441e684c0006a2f00003b00002003417c6a2103200042ffc1d72f5621052004210020050d000b0b02402004a7220541e3004c0d00200241096a2003417e6a22036a2004a7220641ffff037141e4006e2205419c7f6c20066a41ffff037141017441e684c0006a2f00003b00000b024002402005410a480d00200241096a2003417e6a22036a200541017441e684c0006a2f00003b00000c010b200241096a2003417f6a22036a200541306a3a00000b200141e4fdc6004100200241096a20036a412720036b10382103200241306a240020030b6601017f230041c0006b220124002001200036020c200141346a41013602002001420137022420014198e7c6003602202001410536023c2001200141386a36023020012001410c6a360238200141106a200141206a10292001280210200128021810c20500000b0d0042bf8ba683c682bb9da07f0be80501067f20002802002205410171220620046a21070240024020054104710d00410021010c010b4100210802402002450d00200221092001210a03402008200a2d000041c00171418001466a2108200a41016a210a2009417f6a22090d000b0b200720026a20086b21070b412b418080c40020061b21080240024020002802084101460d004101210a200020082001200210390d012000280218200320042000411c6a28020028020c110000210a0c010b02402000410c6a280200220920074b0d004101210a200020082001200210390d012000280218200320042000411c6a28020028020c1100000f0b0240024020054108710d004100210a200920076b22092105024002400240410120002d0020220720074103461b0e0402010001020b2009410176210a200941016a41017621050c010b410021052009210a0b200a41016a210a0340200a417f6a220a450d0220002802182000280204200028021c280210110100450d000b41010f0b200028020421052000413036020420002d002021064101210a200041013a0020200020082001200210390d014100210a200920076b22092102024002400240410120002d0020220820084103461b0e0402010001020b2009410176210a200941016a41017621020c010b410021022009210a0b200a41016a210a02400340200a417f6a220a450d0120002802182000280204200028021c280210110100450d000b41010f0b200028020421094101210a200028021820032004200028021c28020c1100000d01200241016a2108200028021c210220002802182101024003402008417f6a2208450d014101210a2001200920022802101101000d030c000b0b200020063a00202000200536020441000f0b200028020421094101210a200020082001200210390d00200028021820032004200028021c28020c1100000d00200541016a2108200028021c210220002802182100034002402008417f6a22080d0041000f0b4101210a200020092002280210110100450d000b0b200a0b5401017f024002402001418080c400460d0041012104200028021820012000411c6a2802002802101101000d010b024020020d0041000f0b2000280218200220032000411c6a28020028020c11000021040b20040b6f01017f230041306b2202240020022001360204200220003602002002411c6a41023602002002412c6a41013602002002420237020c200241b086c000360208200241013602242002200241206a3602182002200241046a36022820022002360220200241086a41c086c0001033000b6f01017f230041306b2202240020022001360204200220003602002002411c6a41023602002002412c6a41013602002002420237020c2002419087c000360208200241013602242002200241206a3602182002200241046a36022820022002360220200241086a41a087c0001033000b9307010c7f200041106a28020021030240024002400240200041086a28020022044101460d0020034101460d012000280218200120022000411c6a28020028020c11000021030c030b20034101470d010b0240024020020d00410021020c010b200120026a2105200041146a28020041016a21064100210720012103200121080340200341016a210902400240024020032c0000220a417f4a0d000240024020092005470d004100210b200521030c010b20032d0001413f71210b200341026a220921030b200a411f71210c0240200a41ff0171220a41df014b0d00200b200c41067472210a0c020b0240024020032005470d004100210d2005210e0c010b20032d0000413f71210d200341016a2209210e0b200d200b41067472210b0240200a41f0014f0d00200b200c410c7472210a0c020b02400240200e2005470d004100210a200921030c010b200e41016a2103200e2d0000413f71210a0b200b410674200c411274418080f0007172200a72220a418080c400470d020c040b200a41ff0171210a0b200921030b02402006417f6a2206450d00200720086b20036a21072003210820052003470d010c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b20044101460d002000280218200120022000411c6a28020028020c1100000f0b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b0240200220096b200028020c2206490d002000280218200120022000411c6a28020028020c1100000f0b410021074100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2209210a024002400240410020002d0020220320034103461b0e0402010001020b20094101762107200941016a410176210a0c010b4100210a200921070b200741016a2103024003402003417f6a2203450d0120002802182000280204200028021c280210110100450d000b41010f0b2000280204210941012103200028021820012002200028021c28020c1100000d00200a41016a2103200028021c210a20002802182100034002402003417f6a22030d0041000f0b20002009200a280210110100450d000b41010f0b20030bd40801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b2107418002210803400240200820014f0d00200020086a2c000041bf7f4c0d0041002105200821060c020b2008417f6a21064100210520084101460d01200720086a21092006210820094101470d000b0b200420063602142004200036021020044100410520051b36021c200441e4fdc60041d387c00020051b3602180240024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b200420023602202002450d0220022001460d02200141016a210903400240200220014f0d00200020026a2c000041404e0d040b2002417f6a210820024101460d0420092002462106200821022006450d000c040b0b20042002200320081b360228200441306a41146a4103360200200441c8006a41146a4104360200200441d4006a410436020020044203370234200441d887c0003602302004410136024c2004200441c8006a3602402004200441186a3602582004200441106a3602502004200441286a360248200441306a41f087c0001033000b200441e4006a4104360200200441c8006a41146a4104360200200441d4006a4101360200200441306a41146a4104360200200442043702342004418088c0003602302004410136024c2004200441c8006a3602402004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a360248200441306a41a088c0001033000b200221080b024020082001460d00410121060240024002400240200020086a22092c00002202417f4a0d0041002105200020016a220621010240200941016a2006460d00200941026a210120092d0001413f7121050b2002411f712109200241ff017141df014b0d01200520094106747221010c020b2004200241ff0171360224200441286a21020c020b4100210020062107024020012006460d00200141016a210720012d0000413f7121000b200020054106747221010240200241ff017141f0014f0d0020012009410c747221010c010b41002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d020b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441306a41146a4105360200200441ec006a4104360200200441e4006a4104360200200441c8006a41146a4106360200200441d4006a410736020020044205370234200441c088c000360230200420023602582004410136024c2004200441c8006a3602402004200441186a3602682004200441106a3602602004200441246a3602502004200441206a360248200441306a41e888c0001033000b41e988c700412b41b088c0001028000b1000200120002802002000280204103c0b7d01037f230041206b22022400024002402000200110420d002001411c6a2802002103200128021821042002411c6a4100360200200241e4fdc6003602182002420137020c200241d089c00036020820042003200241086a102b450d010b200241206a240041010f0b200041046a200110422101200241206a240020010bff0301067f230041106b22022400410121030240200128021841272001411c6a2802002802101101000d002002200028020010412002410c6a2d00002104200241086a28020021052002280200210002400240024020022802042206418080c400460d000c010b03402000210341dc002107410121000240024020030e0404040100040b200441ff017121034104210441032100024002400240024020030e06070302010004070b4103210041f5002107410321040c030b4102210441fb0021070c020b4102410120051b2104418080c4002005410274411c7176410f7141307221072005417f6a410020051b21050c010b4100210441fd0021070b4101210320012802182007200128021c280210110100450d000c030b0b03402000210341dc00210741012100024002400240024020030e0405010300050b200441ff01712103410421044103210002400240024020030e06070201000405070b4102210441fb0021070c040b20062005410274411c7176410f712203413072200341d7006a2003410a491b21074102410120051b21042005417f6a410020051b21050c030b4100210441fd0021070c020b41002100200621070c010b4103210041f5002107410321040b4101210320012802182007200128021c2802101101000d020c000b0b20012802184127200128021c28021011010021030b200241106a240020030bab0903047f017e037f4102210202400240024002400240200141776a2203411e4d0d00200141dc00470d010c020b41f40021040240024020030e1f05010202000202020202020202020202020202020202020202030202020203050b41f20021040c040b41ee0021040c030b2001410a7621040240024002400240024002400240024002400240024002400240024002400240024020014180d807490d00411e21022004418007460d0120014180fe037141087621050c050b200441928ac0006a2d00002202411e4b0d010b20024104742001410676410f7172418d8bc0006a2d00002204418b014f0d0141032102200441037441a08fc0006a29030042012001413f71ad8683500d02200141017267410276410773ad4280808080d0008421060c100b41808fc0002002411f102a000b41908fc0002004418b01102a000b20014180fe03712104200141808004490d01200441087621050b200141808008490d0120014190fc476a4190fc0b490d0a200141e28b746a41e28d2c490d0a2001419fa8746a419f18490d0a200141dee2746a410e490d0a200141feffff0071419ef00a460d0a200141a9b2756a4129490d0a200141cb91756a410a4d0d0a410121020c0c0b20044108762105419298c000210241002103200141ff017121070340200241026a2108200320022d000122046a2109024020022d000022022005460d00200220054b0d082009210320082102200841e498c000470d010c080b20092003490d02200941a5024b0d03200341e498c0006a2102024003402004450d012004417f6a210420022d00002103200241016a210220032007470d000c0c0b0b2009210320082102200841e498c000470d000c070b0b41d49dc000210241002103200141ff017121070340200241026a2108200320022d000122046a2109024020022d000022022005460d00200220054b0d0620092103200821022008419a9ec000470d010c060b20092003490d03200941a6014b0d042003419a9ec0006a2102024003402004450d012004417f6a210420022d00002103200241016a210220032007470d000c0b0b0b20092103200821022008419a9ec000470d000c050b0b20032009103b000b200941a502103a000b20032009103b000b200941a601103a000b200141ffff0371210741c09fc00021044101210302400340200441016a21090240024020042d0000220241187441187522084100480d00200921040c010b200941d8a2c000460d02200841ff007141087420042d0001722102200441026a21040b200720026b22074100480d0320034101732103200441d8a2c000470d000c030b0b41e988c700412b41c49dc0001028000b200141ffff0371210741899bc0002104410121030340200441016a21090240024020042d0000220241187441187522084100480d00200921040c010b200941c39dc000460d03200841ff007141087420042d0001722102200441026a21040b200720026b22074100480d0120034101732103200441c39dc000470d000b0b4101210220034101710d020c010b41e988c700412b41c49dc0001028000b200141017267410276410773ad4280808080d000842106410321020c010b0b200121040b2000200436020420002002360200200041086a20063702000ba90201037f23004180016b2202240002400240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103521000c020b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000b1c00200128021841b0a3c000410b2001411c6a28020028020c1100000b1c00200128021841bba3c000410e2001411c6a28020028020c1100000b5b01017f230041306b220324002003200136020c20032000360208200341246a41013602002003420137021420034198e7c6003602102003410436022c2003200341286a3602202003200341086a360228200341106a20021033000b140020002802002001200028020428020c1101000b15002001200028020022002802002000280204103c0ba20401077f230041306b220324000240024020020d00410021040c010b200341286a210502400240024002400340024020002802082d0000450d0020002802004185a4c0004104200028020428020c1100000d050b2003410a3602282003428a808080103703202003200236021c200341003602182003200236021420032001360210200341086a410a200120021049024002400240024020032802084101470d00200328020c210403402003200420032802186a41016a2204360218024002402004200328022422064f0d00200328021421070c010b200328021422072004490d00200641054f0d072003280210200420066b22086a22092005460d0420092005200610cf05450d040b200328021c22092004490d0220072009490d0220032006200341106a6a41176a2d0000200328021020046a200920046b10492003280204210420032802004101460d000b0b2003200328021c3602180b200028020841003a0000200221040c010b200028020841013a0000200841016a21040b2000280204210920002802002106024020044520022004467222070d00200220044d0d03200120046a2c000041bf7f4c0d030b200620012004200928020c1100000d04024020070d00200220044d0d04200120046a2c000041bf7f4c0d040b200120046a2101200220046b22020d000b410021040c040b20064104103a000b2001200241002004103d000b2001200220042002103d000b410121040b200341306a240020040bf30201067f410021040240024020024103712205450d00410420056b2205450d0020032005200520034b1b210441002105200141ff01712106034020042005460d01200220056a2107200541016a210520072d000022072006470d000b410121032007200141ff01714641016a41017120056a417f6a21050c010b200141ff017121060240024020034108490d002004200341786a22084b0d00200641818284086c210502400340200220046a220741046a2802002005732209417f73200941fffdfb776a7120072802002005732207417f73200741fffdfb776a7172418081828478710d01200441086a220420084d0d000b0b200420034b0d010b200220046a2109200320046b210241002103410021050240034020022005460d01200920056a2107200541016a210520072d000022072006470d000b410121032007200141ff01714641016a41017120056a417f6a21050b200520046a21050c010b20042003103b000b20002005360204200020033602000bbb0302047f027e230041c0006b2205240041012106024020002d00040d0020002d000521070240200028020022082d00004104710d00410121062008280218418ca4c0004189a4c000200741ff017122071b4102410320071b2008411c6a28020028020c1100000d014101210620002802002208280218200120022008411c6a28020028020c1100000d01410121062000280200220828021841b4c1c50041022008411c6a28020028020c1100000d0120032000280200200428020c11010021060c010b0240200741ff01710d00410121062008280218418ea4c00041032008411c6a28020028020c1100000d01200028020021080b41012106200541013a0017200541346a4194a4c000360200200520082902183703082005200541176a360210200829020821092008290210210a200520082d00203a00382005200a37032820052009370320200520082902003703182005200541086a360230200541086a2001200210480d00200541086a41b4c1c500410210480d002003200541186a200428020c1101000d00200528023041aca4c0004102200528023428020c11000021060b200041013a0005200020063a0004200541c0006a240020000b8b0201027f230041106b220224002002410036020c02400240024002402001418001490d002001418010490d012002410c6a21032001418080044f0d0220022001413f71418001723a000e20022001410676413f71418001723a000d20022001410c76410f7141e001723a000c410321010c030b200220013a000c2002410c6a2103410121010c020b20022001413f71418001723a000d20022001410676411f7141c001723a000c2002410c6a2103410221010c010b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d410421010b20002003200110482101200241106a240020010b6001017f230041206b2202240020022000360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41b0a4c000200241086a102b2101200241206a240020010b0d0020002802002001200210480b0b0020002802002001104b0b6301017f230041206b2202240020022000280200360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41b0a4c000200241086a102b2101200241206a240020010bd30202047f027e230041c0006b2203240041012104024020002d00080d00200028020421050240200028020022062d00004104710d00410121042006280218418ca4c00041cba4c00020051b4102410120051b2006411c6a28020028020c1100000d0120012000280200200228020c11010021040c010b024020050d0041012104200628021841cca4c00041022006411c6a28020028020c1100000d01200028020021060b41012104200341013a0017200341346a4194a4c000360200200320062902183703082003200341176a3602102006290208210720062902102108200320062d00203a00382003200837032820032007370320200320062902003703182003200341086a3602302001200341186a200228020c1101000d00200328023041aca4c0004102200328023428020c11000021040b200020043a00082000200028020441016a360204200341c0006a240020000b6401027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a102b2100200241206a240020000b8709010d7f230041306b220324004101210402400240200228021841222002411c6a2802002802101101000d000240024020010d00410021050c010b200020016a210620002107410021054100210802400240034020072109200741016a210a02400240024020072c0000220b417f4a0d0002400240200a2006470d004100210c200621070c010b20072d0001413f71210c200741026a220a21070b200b411f71210d0240200b41ff0171220b41df014b0d00200c200d41067472210b0c020b0240024020072006470d004100210e2006210f0c010b20072d0000413f71210e200741016a220a210f0b200e200c41067472210c0240200b41f0014f0d00200c200d410c7472210b0c020b02400240200f2006470d004100210b200a21070c010b200f41016a2107200f2d0000413f71210b0b200c410674200d411274418080f0007172200b72220b418080c400470d020c050b200b41ff0171210b0b200a21070b2003200b104102400240024002402003280200220a0e0401020100010b200328020820032d000c6a4101460d010b2003200136021420032000360210200320053602182003200836021c20082005490d0302402005450d0020052001460d00200520014f0d04200020056a2c000041bf7f4c0d040b02402008450d0020082001460d00200820014f0d04200020086a2c000041bf7f4c0d040b2002280218200020056a200820056b200228021c28020c1100000d0120032d000c210d2003280208210f024002402003280204220e418080c400470d000340200a21054101210a41dc00210c0240024020050e0404040100040b200d41ff017121054103210a4104210d024002400240024020050e06070302010004070b4103210d41f500210c4103210a0c030b4102210d41fb00210c0c020b41024101200f1b210d418080c400200f410274411c7176410f71413072210c200f417f6a4100200f1b210f0c010b4100210d41fd00210c0b2002280218200c200228021c280210110100450d000c040b0b0340200a210c4101210a41dc0021050240024002400240200c0e0405010300050b200d41ff0171210c4103210a4104210d024002400240200c0e06070201000405070b4102210d41fb0021050c040b200e200f410274411c7176410f712205413072200541d7006a2005410a491b210541024101200f1b210d200f417f6a4100200f1b210f0c030b4100210d41fd0021050c020b4100210a200e21050c010b4103210d41f50021054103210a0b20022802182005200228021c2802101101000d030c000b0b410121050240200b418001490d0041022105200b418010490d0041034104200b41808004491b21050b200520086a21050b200820096b20076a210820062007470d010c030b0b410121040c030b20032003411c6a3602282003200341186a3602242003200341106a360220200341206a1053000b2005450d0020052001460d00200520014f0d02200020056a2c000041bf7f4c0d020b2002280218200020056a200120056b200228021c28020c1100000d0020022802184122200228021c28021011010021040b200341306a240020040f0b2000200120052001103d000b2601017f20002802002201280200200128020420002802042802002000280208280200103d000bba0201037f23004180016b220224002000280200210002400240024002400240200128020022034110710d0020002d0000210420034120710d012004ad42ff01832001103521000c020b20002d00002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a21002004410476410f7122040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a21002004410476410f7122040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000b0b002000280200200110420b1c00200128021841c8e0c60041052001411c6a28020028020c1100000b800201027f230041106b22022400200128021841f8a4c00041092001411c6a28020028020c1100002103200241003a0005200220033a0004200220013602002002200036020c20024181a5c000410b2002410c6a41e0a4c000104a21012002200041046a36020c2001418ca5c00041092002410c6a4198a5c000104a1a20022d00042101024020022d0005450d00200141ff0171210041012101024020000d0020022802002201411c6a28020028020c210020012802182103024020012d00004104710d00200341c8a4c0004102200011000021010c010b200341caa4c0004101200011000021010b200220013a00040b200241106a2400200141ff01714100470bb50201027f230041106b2202240002400240200028020022002d00004101470d002002200128021841f0a4c00041042001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200041016a36020c20022002410c6a41d0a4c00010501a20022d00082101024020022802042203450d00200141ff0171210041012101024020000d00024020034101470d0020022d000941ff0171450d00200228020022002d00004104710d0041012101200028021841cea4c00041012000411c6a28020028020c1100000d010b2002280200220128021841cfa4c00041012001411c6a28020028020c11000021010b200220013a00080b200141ff017141004721010c010b200128021841f4a4c00041042001411c6a28020028020c11000021010b200241106a240020010bc70a03097f027e027f230041a0036b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a200641ec016a410272410041b20110cc051a200641386a200641ec016a41b40110cd051a200641306a22054200370300200641286a220b4200370300200641206a220c4200370300200641186a220d4200370300200641086a41086a220e42003703002006420037030841e801101e2209450d0520094100360200200941046a200641386a41b40110cd051a200941e0016a2005290300370300200941d8016a200b290300370300200941d0016a200c290300370300200941c8016a200d290300370300200941c0016a200e290300370300200920062903083703b801200829039001210f20082903382110200941086a200841c0006a20082f0106220541796a220b410374220c10cd052111200941e0006a20084198016a200c10cd052112200941b8016a200841d4016a2005417a6a220d41027410cd05210e200841063b01062009200b3b01060240200d450d0041002105200e210b0340200b280200220c20053b0104200c2009360200200b41046a210b200d200541016a2205470d000b0b200128020c22054107490d0120112005417a6a220c410374220d6a2011200541796a220b41037422016a221120092f0106200b6b41037410ce051a201120023703002012200d6a201220016a220d20092f0106200b6b41037410ce051a200d2003370300200920092f010641016a220d3b010620054102742201200e6a416c6a200e200c4102746a2205200d41ffff0371200c6b41027410ce051a20052004360200200c20092f0106220d4b0d02200120096a41a0016a210503402005280200220c200b41016a220b3b0104200c2009360200200541046a2105200b200d490d000c030b0b200841086a220c200128020c220541016a220b410374220d6a200c200541037422076a220c200920056b41037410ce051a200c2002370300200841e0006a2209200d6a200920076a220920082f010620056b41037410ce051a20092003370300200820082f010641016a22093b01062005410274200841b8016a220c6a41086a200c200b4102746a220c200941ffff0371200b6b41027410ce051a200c20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a2108200541027441c0016a210b0340200141046a2802002209200b6a280200220c200541026a3b0104200c2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220c200541016a220b410374220d6a200c200541037422016a220c20082f010620056b41037410ce051a200c2002370300200841e0006a220c200d6a200c20016a220c20082f010620056b41037410ce051a200c2003370300200820082f010641016a220c3b010620054102742201200841b8016a220d6a41086a200d200b4102746a220d200c41ffff0371200b6b41027410ce051a200d2004360200200520082f0106220d4f0d00200820016a41bc016a210b0340200b280200220c200541016a22053b0104200c2008360200200b41046a210b200d2005470d000b0b20002007360204200041206a200f370300200041186a20103703002000410c6a200a360200200041086a2008360200200041146a2007360200200041106a2009360200410121050b20002005360200200641a0036a24000f0b41c6a8c000413541a888c6001028000b41e8014108102d000ba10903097f017e017f230041f0016b220524000240024020012802002206417f6a2004470d000240024002400240200141046a28020022072f01062208410b490d002001280208210920054194016a410272410041da0010cc051a200541386a20054194016a41dc0010cd051a200541306a22044200370300200541286a220a4200370300200541206a220b4200370300200541186a220c4200370300200541086a41086a220d420037030020054200370308419001101e2208450d0520084100360200200841046a200541386a41dc0010cd051a20084188016a200429030037030020084180016a200a290300370300200841f8006a200b290300370300200841f0006a200c290300370300200841e8006a200d290300370300200820052903083703602007290338210e200841086a200741c0006a20072f0106220441796a220a41037410cd05210f200841e0006a200741fc006a2004417a6a220c41027410cd05210d200741063b01062008200a3b01060240200c450d0041002104200d210a0340200a280200220b20043b0104200b2008360200200a41046a210a200c200441016a2204470d000b0b200128020c22044107490d01200f2004417a6a220b4103746a200f200441796a220a4103746a220c20082f0106200a6b41037410ce051a200c2002370300200820082f010641016a220c3b010620044102742201200d6a416c6a200d200b4102746a2204200c41ffff0371200b6b41027410ce051a20042003360200200b20082f0106220c4b0d02200120086a41c8006a210403402004280200220b200a41016a220a3b0104200b2008360200200441046a2104200a200c490d000c030b0b200741086a220b200128020c220441016a220a4103746a200b20044103746a220b200820046b41037410ce051a200b2002370300200720072f010641016a22083b01062004410274200741e0006a220b6a41086a200b200a4102746a220b200841ffff0371200a6b41027410ce051a200b20033602000240200a20072f010622084b0d002003200a3b0104200320073602000240200a20084f0d002008417f6a2107200441027441e8006a210a0340200141046a2802002208200a6a280200220b200441026a3b0104200b2008360200200a41046a210a2007200441016a2204470d000b0b200128020c21040b20002001290200370204200041106a20043602002000410c6a200141086a280200360200410021040c020b200741086a220b200441016a220a4103746a200b20044103746a220b20072f010620046b41037410ce051a200b2002370300200720072f010641016a220b3b010620044102742201200741e0006a220c6a41086a200c200a4102746a220c200b41ffff0371200a6b41027410ce051a200c2003360200200420072f0106220c4f0d00200720016a41e4006a210a0340200a280200220b200441016a22043b0104200b2007360200200a41046a210a200c2004470d000b0b20002006360204200041186a200e3703002000410c6a2009360200200041086a2007360200200041146a2006360200200041106a2008360200410121040b20002004360200200541f0016a24000f0b41c6a8c000413541a888c6001028000b4190014108102d000b850d03077f017e047f23004180016b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a200641326a220942003700002006412a6a4200370000200641226a42003700002006411a6a4200370000200641126a42003700002006420037000a41e801101e2205450d054100210b200541003a001020054200370308200541003b01062005410036020020052006280079360011200541003a00202005420037031820052006280072360021200541003a0030200542003703282005200628006b360031200541146a200641f9006a41036a280000360000200541246a200641f2006a41036a280000360000200541346a200641eb006a41036a280000360000200541003a00402005420037033820054200370348200541003a005020054200370358200541003a006020052006280064360041200541c4006a200641e4006a41036a2800003600002005200628005d360051200541d4006a200641dd006a41036a28000036000020052006280056360061200541e4006a200641d6006a41036a280000360000200541003a007020054200370368200541003a00800120054200370378200541003a00900120054200370388012005200628004f360071200541f4006a200641cf006a41036a280000360000200520062800483600810120054184016a200641c8006a41036a280000360000200520062800413600910120054194016a200641c1006a41036a280000360000200541003a00a0012005420037039801200541a4016a2006413a6a41036a2800003600002005200628003a3600a101200541003a00b001200542003703a801200541e0016a2009290000370000200541d9016a2006412b6a290000370000200541d1016a200641236a290000370000200541c9016a2006411b6a290000370000200541c1016a200641136a290000370000200541b9016a200641036a41086a290000370000200520062900033700b10120082d0070210c2008290368210d200541086a200841f8006a20082f0106220941796a220e41047410cd05210f200541b8016a200841d4016a2009417a6a221041027410cd052111200841063b01062005200e3b010602402010450d002011210903402009280200220e200b3b0104200e2005360200200941046a21092010200b41016a220b470d000b0b200128020c220b4107490d01200f200b417a6a220e4104746a200f200b41796a22094104746a221020052f010620096b41047410ce051a201020033a000820102002370300200520052f010641016a22103b0106200b410274220120116a416c6a2011200e4102746a220b201041ffff0371200e6b41027410ce051a200b2004360200200e20052f010622104b0d02200120056a41a0016a210b0340200b280200220e200941016a22093b0104200e2005360200200b41046a210b20092010490d000c030b0b200841086a220e200128020c220541016a220b4104746a200e20054104746a220e200920056b41047410ce051a200e20033a0008200e2002370300200820082f010641016a22093b01062005410274200841b8016a220e6a41086a200e200b4102746a220e200941ffff0371200b6b41027410ce051a200e20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a2108200541027441c0016a210b0340200141046a2802002209200b6a280200220e200541026a3b0104200e2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220e200b41016a22094104746a200e200b4104746a220e20082f0106200b6b41047410ce051a200e20033a0008200e2002370300200820082f010641016a220e3b0106200b4102742201200841b8016a22106a41086a201020094102746a2210200e41ffff037120096b41027410ce051a20102004360200200b20082f010622104f0d00200820016a41bc016a210903402009280200220e200b41016a220b3b0104200e2008360200200941046a21092010200b470d000b0b20002007360204200041206a200c3a0000200041186a200d3703002000410c6a200a360200200041086a2008360200200041146a2007360200200041106a2005360200410121050b2000200536020020064180016a24000f0b41c6a8c000413541a888c6001028000b41e8014108102d000b8c0d03077f017e047f23004180016b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a2006413c6a220942003701002006410e6a41266a42003701002006412c6a42003701002006410e6a41166a42003701002006411c6a42003701002006420037011441e801101e2205450d054100210b200541003b011020054200370308200541003b0106200541003602002005200628017a360112200541003b01202005420037031820052006280174360122200541003b0130200542003703282005200628016e360132200541166a200641fa006a41046a2f01003b0100200541266a200641f4006a41046a2f01003b0100200541366a200641ee006a41046a2f01003b0100200541003b01402005420037033820054200370348200541003b015020054200370358200541003b016020052006280168360142200541c6006a200641e8006a41046a2f01003b010020052006280162360152200541d6006a200641e2006a41046a2f01003b01002005200628015c360162200541e6006a200641dc006a41046a2f01003b0100200541003b017020054200370368200541003b01800120054200370378200541003b019001200542003703880120052006280156360172200541f6006a200641d6006a41046a2f01003b0100200520062801503601820120054186016a200641d0006a41046a2f01003b01002005200628014a3601920120054196016a200641ca006a41046a2f01003b0100200541003b01a0012005420037039801200541a6016a200641c4006a41046a2f01003b0100200520062801443601a201200541003b01b001200542003703a801200541e0016a2009290100370100200541da016a200641366a290100370100200541d2016a2006412e6a290100370100200541ca016a200641266a290100370100200541c2016a2006411e6a290100370100200541ba016a2006410e6a41086a2901003701002005200629010e3701b20120082f0170210c2008290368210d200541086a200841f8006a20082f0106220941796a220e41047410cd05210f200541b8016a200841d4016a2009417a6a221041027410cd052111200841063b01062005200e3b010602402010450d002011210903402009280200220e200b3b0104200e2005360200200941046a21092010200b41016a220b470d000b0b200128020c220b4107490d01200f200b417a6a220e4104746a200f200b41796a22094104746a221020052f010620096b41047410ce051a201020033b010820102002370300200520052f010641016a22103b0106200b410274220120116a416c6a2011200e4102746a220b201041ffff0371200e6b41027410ce051a200b2004360200200e20052f010622104b0d02200120056a41a0016a210b0340200b280200220e200941016a22093b0104200e2005360200200b41046a210b20092010490d000c030b0b200841086a220e200128020c220541016a220b4104746a200e20054104746a220e200920056b41047410ce051a200e20033b0108200e2002370300200820082f010641016a22093b01062005410274200841b8016a220e6a41086a200e200b4102746a220e200941ffff0371200b6b41027410ce051a200e20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a2108200541027441c0016a210b0340200141046a2802002209200b6a280200220e200541026a3b0104200e2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220e200b41016a22094104746a200e200b4104746a220e20082f0106200b6b41047410ce051a200e20033b0108200e2002370300200820082f010641016a220e3b0106200b4102742201200841b8016a22106a41086a201020094102746a2210200e41ffff037120096b41027410ce051a20102004360200200b20082f010622104f0d00200820016a41bc016a210903402009280200220e200b41016a220b3b0104200e2008360200200941046a21092010200b470d000b0b20002007360204200041206a200c3b0100200041186a200d3703002000410c6a200a360200200041086a2008360200200041146a2007360200200041106a2005360200410121050b2000200536020020064180016a24000f0b41c6a8c000413541a888c6001028000b41e8014108102d000bd70c020e7f017e230041d0026b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a200641c4016a41046a410041d80010cc051a200641aa026a4200370100200641b2026a4200370100200641ba026a4200370100200641c2026a4200370100200641a0026a41286a22054200370100200642003701a20220064190016a41086a220b200641a0026a41086a29030037030020064190016a41106a220c200641a0026a41106a29030037030020064190016a41186a220d200641a0026a41186a29030037030020064190016a41206a220e200641a0026a41206a29030037030020064190016a41286a220f2005290300370300200620062903a00237039001200641346a200641c4016a41dc0010cd051a200641286a22054200370300200641206a22104200370300200641186a22114200370300200641106a22124200370300200641086a221342003703002006420037030041c001101e2209450d052009410036020020092006290390013702042009410c6a200b290300370200200941146a200c2903003702002009411c6a200d290300370200200941246a200e2903003702002009412c6a200f290300370200200941346a200641346a41dc0010cd051a200941b8016a2005290300370300200941b0016a2010290300370300200941a8016a2011290300370300200941a0016a201229030037030020094198016a20132903003703002009200629030037039001200841206a280200210f20082903682114200941086a200841246a20082f0106220b41796a220541027410cd052110200941386a200841f0006a200541037410cd05211120094190016a200841ac016a200b417a6a220d41027410cd05210e200841063b0106200920053b01060240200d450d0041002105200e210b0340200b280200220c20053b0104200c2009360200200b41046a210b200d200541016a2205470d000b0b200128020c22054107490d0120102005417a6a220c410274220d6a2010200541796a220b4102746a220120092f0106200b6b41027410ce051a200120023602002011200c4103746a200920054103746a220120092f0106200b6b41037410ce051a20012003370300200920092f010641016a22013b010620054102742202200e6a416c6a200e200d6a2205200141ffff0371200c6b41027410ce051a20052004360200200c20092f0106220d4b0d02200220096a41f8006a210503402005280200220c200b41016a220b3b0104200c2009360200200541046a2105200b200d490d000c030b0b200841086a220c200128020c220541016a220b410274220d6a200c200541027422076a220c200920056b41027410ce051a200c2002360200200841386a2209200b4103746a200920054103746a220920082f010620056b41037410ce051a20092003370300200820082f010641016a22093b0106200720084190016a220c6a41086a200c200d6a220c200941ffff0371200b6b41027410ce051a200c20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a210820054102744198016a210b0340200141046a2802002209200b6a280200220c200541026a3b0104200c2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220d200541016a220b41027422016a200d2005410274220c6a220d20082f010620056b41027410ce051a200d2002360200200841386a220d200b4103746a200d20054103746a220d20082f010620056b41037410ce051a200d2003370300200820082f010641016a220d3b0106200c20084190016a22026a41086a200220016a2201200d41ffff0371200b6b41027410ce051a20012004360200200520082f0106220d4f0d002008200c6a4194016a210b0340200b280200220c200541016a22053b0104200c2008360200200b41046a210b200d2005470d000b0b20002007360204200041206a2014370300200041106a200f3602002000410c6a200a360200200041086a2008360200200041186a2007360200200041146a2009360200410121050b20002005360200200641d0026a24000f0b41c6a8c000413541a888c6001028000b41c0014108102d000bb20302047f017e230041306b2202240020022001105f024002402002280200450d00200041003602000c010b200228020421032002420037020c200241908cc500360208024002402003450d000340200128020422044108490d022001280200220529000021062001200441786a3602042001200541086a360200200241086a200610602003417f6a22030d000b0b20022903082106200041086a2002280210360200200020063702000c010b20022802102104200228020c2103200228020821012000410036020002402003450d00200321050340200128026021012005417f6a22050d000b03402003417f6a22030d000b0b02402004450d0041002103410021054100210003402002200336022c200220053602282002200136022420022000360220200241086a200241206a1061200228021021002002280214210120022802182105200228021c21032004417f6a22040d000b0b200141908cc500460d0020012802002104200110202004450d0020042802002103200410202003450d00024020032802002201450d000340200310202001210320012802002204210120040d000b0b200310200b200241306a24000bcf0201067f0240024020012802042202450d00200128020022032d0000210420012002417f6a2205360204410121062001200341016a3602000240200441037122074103460d0002400240024020070e03000102000b20044102762107410021060c040b41012106024020050d000c040b20032d0001210520012002417e6a3602042001200341026a3602002005410874200472220141ffff0371418002490d03200141fcff03714102762107410021060c030b20054103490d01200341036a2d0000210620032f0001210720012002417c6a3602042001200341046a3602002007200641107472410874200472220141808004492106200141027621070c020b0240200441034d0d000c020b20054104490d012003280001210720012002417b6a3602042001200341056a36020020074180808080044921060c010b410121060b20002007360204200020063602000bc70903077f017e027f230041f0016b22022400024002400240024002400240024002402000280200220341908cc500460d00200028020421040c010b410021042002410272410041da0010cc051a41e000101e2203450d0120034100360200200341046a200241dc0010cd051a20004100360204200020033602000b03400240024020032f010622050d00410021060c010b20054103742107200341086a2108417f21060340024020070d00200521060c020b20082903002109200741786a2107200641016a2106200841086a2108417f200920015220092001561b41016a0e03010500010b0b02402004450d002004417f6a2104200320064102746a41e0006a28020021030c010b0b2000200028020841016a36020802400240024020032f01062207410b490d0002400240200341908cc500460d0020024190016a410272410041da0010cc051a41e000101e22070d0141e0004108102d000b41c8a6c000412d41a888c6001028000b20074100360200200741046a20024190016a41dc0010cd051a20032903382109200741086a200341c0006a20032f010641796a220841037410cd052104200341063b0106200720083b010620064107490d01200641037420046a41506a2004200641796a22064103746a2204200841ffff037120066b41037410ce051a20042001370300200720072f010641016a3b01060c020b200320064103746a220841106a200841086a2208200720066b41037410ce051a20082001370300200320032f010641016a3b01060c040b200341086a20064103746a220841086a200820032f010620066b41037410ce051a20082001370300200320032f010641016a3b01060b0240200328020022060d00410021030c020b200220032f010436020c20022000360208200220063602042002410136020020024190016a2002200920074100105a2002280290014101470d020340200228029c01210020022802a401210320022802a001210720022903a801210920022802980122062802002208450d022002280294012104200220062f010436020c20022000360208200220083602042002200441016a36020020024190016a2002200920072003105a2002280290014101460d000c030b0b41e0004108102d000b2002410272410041da0010cc051a20024190016a200241dc0010cd051a20024188016a2208420037030020024180016a22044200370300200241f8006a22054200370300200241f0006a220a4200370300200241e0006a41086a220b420037030020024200370360419001101e2206450d0120064100360200200641046a20024190016a41dc0010cd051a20064188016a200829030037030020064180016a2004290300370300200641f8006a2005290300370300200641f0006a200a290300370300200641e8006a200b290300370300200620022903603703602006200028020022083602602000200636020020002000280204220441016a360204200841003b01042008200636020020042003470d0220062f01062203410a4b0d03200620034103746a41086a20093703002006200341016a22034102746a41e0006a2007360200200620033b0106200720033b0104200720063602000b200241f0016a24000f0b4190014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b840303047f017e017f20012802082102200128020021030240024002400240200128020c2204200128020422052f0106490d00024002400240200541908cc500460d00200528020022010d012002ad2106410021010c020b41cfa5c000412841a888c6001028000b200341016a210320053301044220862002ad8421060b200510202006a721022006422088a7220720012f01064f0d01200121040c020b200441016a2101200520044103746a41086a29030021060c020b034002400240200128020022040d002002ad2106410021040c010b200341016a210320013301044220862002ad8421060b200110202006a72102200421012006422088a7220720042f01064f0d000b0b2003417f6a2101200741027420046a41e4006a2802002105200420074103746a41086a290300210641002103024020010d00410021010c010b0340200528026021052001417f6a22010d000b410021010b2000200336020820002006370300200041146a2001360200200041106a20023602002000410c6a20053602000bcf0603067f017e027f230041106b2202240020022000280208220336020c2002410c6a2001106320002802002104024020002802042200450d00200021050340200428026021042005417f6a22050d000b03402000417f6a22000d000b0b024002402003450d000240024020042f01060d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044103746a41086a2106200441027420006a41e4006a2802002104410021072005417f6a2200450d010340200428026021042000417f6a22000d000c020b0b200441086a2106410121070b2006290300210802400240200141046a2802002205200141086a28020022006b4108490d00200128020021050c010b200041086a22062000490d02200541017422002006200020064b1b22004100480d020240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a2206200041086a360200200520006a20083700002003417f6a2203450d00200141046a2109034002400240200720042f0106490d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044103746a41086a210a200441027420006a41e4006a2802002104410021072005417f6a2200450d010340200428026021042000417f6a22000d000c020b0b200420074103746a41086a210a200741016a21070b200a29030021080240024020092802002205200628020022006b4108490d00200128020021050c010b200041086a220a2000490d0320054101742200200a2000200a4b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020092000360200200628020021000c010b20004101102d000b2006200041086a360200200520006a20083700002003417f6a22030d000b0b200241106a24000f0b1027000ba10701037f0240024002400240024002400240024002402000280200220241c000490d00200241808001490d012002418080808004490d0202400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d04200241017422042003200420034b1b22044100480d040240024020020d002004101e21030c010b200128020020022004102221030b2003450d0520012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240200141046a2802002202200428020022006b4104490d00200128020021020c090b200041046a22042000490d03200241017422002004200020044b1b22004100480d030240024020020d002000101e21020c010b200128020020022000102221020b02402002450d0020012002360200200141046a2000360200200141086a28020021000c090b20004101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c070b200041016a22032000490d02200041017422042003200420034b1b22044100480d020240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c070b20044101102d000b0240200141046a2802002203200141086a28020022006b4102490d00200128020021030c050b200041026a22042000490d01200341017422002004200020044b1b22004100480d010240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c050b20004101102d000b0240200141046a2802002203200141086a28020022006b4104490d00200128020021030c030b200041046a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20044101102d000b200141086a200041046a360200200320006a20024102744102723600000f0b200141086a200041026a360200200320006a20024102744101723b00000f0b200141086a200041016a360200200320006a20024102743a00000f0b200141086a200041046a360200200220006a20033600000ba40903067f017e037f230041106b2202240020022000280208220336020c2002410c6a2001106320002802002104024020002802042200450d0020002105034020042802b80121042005417f6a22050d000b03402000417f6a22000d000b0b024002402003450d000240024020042f01060d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044104746a41086a2106200441027420006a41bc016a2802002104410021072005417f6a2200450d01034020042802b80121042000417f6a22000d000c020b0b200441086a2106410121070b200629030021080240024002400240200141046a2802002205200141086a28020022006b4108490d00200128020021050c010b200041086a22092000490d04200541017422002009200020094b1b22004100480d040240024020050d002000101e21050c010b200128020020052000102221050b2005450d0120012005360200200141046a2000360200200141086a28020021000b200141086a2209200041086a360200200520006a200837000020062f0108210a0240200141046a2802002205200928020022006b4102490d00200128020021050c020b200041026a22062000490d03200541017422002006200020064b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c020b20004101102d000b20004101102d000b200141086a2206200041026a360200200520006a200a3b00002003417f6a220a450d00034002400240200720042f0106490d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044104746a41086a2103200441027420006a41bc016a2802002104410021072005417f6a2200450d01034020042802b80121042000417f6a22000d000c020b0b200420074104746a41086a2103200741016a21070b200329030021080240024002400240200141046a22052802002209200628020022006b4108490d00200128020021090c010b200041086a220b2000490d0520094101742200200b2000200b4b1b22004100480d050240024020090d002000101e21090c010b200128020020092000102221090b2009450d012001200936020020052000360200200628020021000b2006200041086a360200200920006a200837000020032f01082109024020052802002203200628020022006b4102490d00200128020021030c020b200041026a220b2000490d0420034101742200200b2000200b4b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d002001200336020020052000360200200628020021000c020b20004101102d000b20004101102d000b2006200041026a360200200320006a20093b0000200a417f6a220a0d000b0b200241106a24000f0b1027000bb01103047f027e087f024002400240024020002802000e03010200010b0240200041246a28020022010d0041000f0b20002001417f6a3602242000410c6a2802002102200028020421030240024002400240200041106a2802002201200041086a28020022042f0106490d0002400240200428020022010d002002ad2105410021010c010b200341016a210320043301044220862002ad8421050b2005422088a7220420012f01064f0d01200521060c020b200141016a2107200420014103746a41086a21080c020b03402005220642ffffffff0f832105200341016a210320012f01042204200128020022012f01064f0d000b0b200120044103746a41086a2108200441027420016a41e4006a28020021042006a721024100210702402003417f6a2201450d000340200428026021042001417f6a22010d000b0b410021030b200020073602102000200236020c20002004360208200020033602040c020b0240200041246a28020022010d0041000f0b20002001417f6a22093602242000410c6a280200210a200028020421040240024002400240200041106a2802002203200041086a28020022012f0106490d0002400240200128020022030d00200aad2105410021030c010b200441016a21042001330104422086200aad8421050b2005422088a7220120032f01064f0d01200521060c020b200341016a210b200120034103746a41086a21080c020b03402005220642ffffffff0f832105200441016a210420032f01042201200328020022032f01064f0d000b0b200320014103746a41086a2108200141027420036a41e4006a28020021012006a7210a4100210b02402004417f6a2204450d000340200128026021012004417f6a22040d000b0b410021040b2000200b3602102000200a36020c2000200136020820002004360204200041cc006a28020021020340024002402002450d002000280250210c0c010b02400240200028024822030d004100210c0c010b20002003417f6a3602482000280230210d200028022821070240024020002802342203200028022c22022f0106490d0002400240200228020022030d00200dad2105410021030c010b200741016a21072002330104422086200dad8421050b02402005422088a7220220032f0106490d0003402005220642ffffffff0f832105200741016a210720032f01042202200328020022032f01064f0d000b200621050b200320024103746a41086a210c200241027420036a41e4006a28020021022005a7210d4100210e02402007417f6a2203450d000340200228026021022003417f6a22030d000b0b410021070c010b200341016a210e200220034103746a41086a210c0b2000200e3602342000200d3602302000200236022c200020073602280b2000200c360250410121022000410136024c0b200c450d0202400240417f20082903002205200c29030022065220052006541b41016a0e03040100040b410021022000410036024c0c010b024020090d0041000f0b20002009417f6a22093602240240024002400240200b20012f0106490d0002400240200128020022030d00200aad2105410021030c010b200441016a21042001330104422086200aad8421050b02402005422088a7220120032f0106490d0003402005220642ffffffff0f832105200441016a210420032f01042201200328020022032f01064f0d000b200621050b200320014103746a2107200141027420036a41e4006a28020021012005a7210a02402004417f6a2204450d000340200128026021012004417f6a22040d000b0b200741086a21084100210b2000410036024c200041003602102000200a36020c2000200136020820004100360204410021044100210320020d03410021044100210320002802482202450d0320002002417f6a3602482000280230210c2000280228210720002802342204200028022c22032f0106490d0102400240200328020022040d00200cad2105410021040c010b200741016a21072003330104422086200cad8421050b02402005422088a7220320042f0106490d0003402005220642ffffffff0f832105200741016a210720042f01042203200428020022042f01064f0d000b200621050b2007417f6a2102200341027420046a41e4006a28020021032005a7210c4100210702402002450d000340200328026021032002417f6a22020d000b0b410021040c020b2000410036024c2000200a36020c20002001360208200020043602042000200b41016a22033602102001200b4103746a41086a21082003210b410021020c030b200441016a21040b200020043602342000200c3602302000200336022c2000200736022841002104410021020c010b200321020c000b0b0240200041246a280200220d0d0041000f0b200041106a28020021092000410c6a280200210e200041086a28020021042000280204210203402000200d417f6a220d36022402400240200920042f0106490d0002400240200428020022010d00200ead2105410021010c010b200241016a21022004330104422086200ead8421050b02402005422088a7220420012f0106490d0003402005220642ffffffff0f832105200241016a210220012f01042204200128020022012f01064f0d000b200621050b2002417f6a2103200120044103746a41086a2108200441027420016a41e4006a28020021042005a7210e4100210202402003450d000340200428026021042003417f6a22030d000b0b410021090c010b200420094103746a41086a2108200941016a21090b200020093602102000200e36020c20002004360208200020023602042008290300210620002802282201280204210c02400340024002402001280200220a2f0106220b0d00410021010c010b200b4103742103200a41086a2107417f21010340024020030d00200b21010c020b20072903002105200341786a2103200141016a2101200741086a2107417f200520065220052006561b41016a0e03010300010b0b200c450d03200c417f6a210c200a20014102746a41e0006a21010c000b0b200d0d000b41000f0b20080b9ff70105047f027e127f027e187f230041d0036b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e0e0001020e0d0c0b040a0908070605000b20034184016a41013602002003420137027420034184e6c600360270200341043602e4012003418cb4c6003602e0012003200341e0016a36028001200341f0006a41d483c6001033000b2001410c6a2802002104200141086a2802002105200141046a2802002106024020022d0000220241014b0d00200141106a2903002107420021080240024020020e020100010b420321080b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c1c0b200341b4016a280200210b200341b0016a280200210c200341ac016a2802002102200341a8016a280200210d200341a4016a280200210e200341a0016a280200210f2003419c016a280200211020034198016a280200211120034194016a280200211220034190016a28020021132003418c016a280200211420034188016a280200211520034184016a280200210920034180016a2802002116200341fc006a2802002117200341f8006a28020021182003280274210a2003200341bc016a2802003602a003200850450d1a0240200c450d00200c21190340200228026021022019417f6a22190d000b0340200c417f6a220c0d000b0b0240200b450d004100210c410021194100211a03402003200c3602ec01200320193602e801200320023602e4012003201a3602e001200341f0006a200341e0016a10612003280278211a200328027c21022003280280012119200328028401210c200b417f6a220b0d000b0b200241908cc500460d192002280200210b20021020200b450d19200b280200210c200b1020200c450d19200c28020022020d020c180b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a0340200320023602ec01200320053602e801200320063602e4012003200a3602e001200341f0006a200341e0016a10612003280278210a200328027c2106200328028001210520032802840121022004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d1b20062802002102200610202002450d1b20022802002106200210202006450d1b20062802002202450d160340200610202002210620022802002205210220050d000c170b0b2001410c6a2802002104200141086a2802002105200141046a280200210620022d0000220941014b0d10200141106a280200210f200141286a2903002107200141206a290300211b200141186a290300211c2002411b6a280000210c200241176a280000210b200241136a28000021182002410b6a2900002108200241076a2800002115200241036a280000211220022f000121174100210a0240024020090e020100010b2002411f6a2f000021134101210a0b200341ff016a20133b0000200341fb016a200c360000200341f7016a200b360000200341f3016a2018360000200341eb016a2008370000200320153600e701200320123600e301200320173b00e1012003200a3a00e001410021100240200a450d0041032110201c500d0041022110200341e0016a410172220a201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702109200341f0026a41186a221320034189016a290000370300200341f0026a41106a220c20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020094101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2013290300370300200341a0036a41106a200c290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a200a412010cf05450d004126210941ceabc000210a0c150b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c150b200341b4016a2802002111200341b0016a2802002112200341ac016a2802002113200341a8016a280200211d200341a4016a280200211e200341a0016a280200211f412c2109200341f0006a412c6a280200210d20034198016a280200211a20034194016a280200211420034190016a280200210b2003418c016a280200211920034188016a280200211720034184016a280200210c200341fc006a2802002115200341f0006a41086a2802002118200328027421022003200341bc016a2802003602f0024184abc000210a024020100e0412140013120b2013210e20122116034002400240200e2f010622200d004100210a0c010b20204103742109200e41086a2110417f210a0340024020090d002020210a0c020b20102903002108200941786a2109200a41016a210a201041086a2110417f2008201b522008201b561b41016a0e03011400010b0b024020160d0041c0abc000210a410e21090c150b2016417f6a2116200e200a4102746a41e0006a280200210e0c000b0b0340200c10202002210c2002280200220b2102200b0d000c160b0b200341e0016a41206a200241206a2d00003a0000200341e0016a41186a200241186a290000370300200341e0016a41106a200241106a290000370300200341e0016a41086a200241086a290000370300200320022900003703e001200341f0026a41086a2001410c6a2802003602002003200141046a2902003703f002200341a0036a41086a200141186a2802003602002003200141106a2902003703a003200341f0006a2001411c6a41cc0010cd051a200341086a200341e0016a200341f0026a200341a0036a200341f0006a106a200328020c21092003280208210a0c180b2001410c6a2802002106200141086a2802002116200141046a28020021102003420037023c200341908cc500360238024002400240024020022d0000220541014b0d002002411b6a2800002109200241176a2800002113200241136a280000210c2002410b6a2900002107200241076a280000210b200241036a280000211820022f00012115410021040240024020050e020100010b2002411f6a2f0000210a410121040b200341e7006a200a3b0000200341e3006a2009360000200341df006a2013360000200341db006a200c360000200341c8006a410b6a20073700002003200b36004f2003201836004b200320153b0049200320043a00482010200641067422026a2114024020020d00201021040c020b200341f0006a4104722111200341a0036a4102722121200341e0016a4102722122200341f0006a41046a2123200341e0016a41046a211f200341f0006a410272220e41266a211e200e41106a211d200e41086a2120410021052010210403402004220241c0006a2104200229030022084202510d02200241306a280200210b2002412c6a2802002115200241286a2802002118200241206a290300211c200241186a290300210720022d003821122002290308211b024002400240024020022802100e03010002010b02402007a74101460d002007422088a721022003280238220a210c200328023c2219211a034002400240200c2f0106220f0d00410021060c010b200f4102742109200c41086a2113417f21060340024020090d00200f21060c020b201328020021172009417c6a2109200641016a2106201341046a21130240417f2017200247201720024b1b41016a0e03020001020b0b034002400240200a2f010622170d00410021060c010b20174102742109200a41086a2113417f21060340024020090d00201721060c020b2013280200210c2009417c6a2109200641016a2106201341046a21130240417f200c200247200c20024b1b41016a0e03020001020b0b200a20064103746a41386a290300211c0c040b02402019450d002019417f6a2119200a20064102746a4190016a280200210a0c010b0b41e988c700412b419489c7001028000b0240201a450d00201a417f6a211a200c20064102746a4190016a280200210c0c010b0b0240200b450d00200b4105742106201841086a2102034002400240200241786a280200220541014b0d00024020050e020002000b2002106b0c010b2002280200450d002002417c6a28020010200b200241206a2102200641606a22060d000b0b411b210941ce88c700210a2015450d08201810200c080b2003200b3602e801200320153602e401200320183602e001200341f0006a200341386a200341e0016a106c024020032802704101470d00200341f8006a28020021092003280274210a0c080b200341a0036a41086a201141086a28020022023602002003201129020022073703a003200341f0006a41086a200236020020032007370370200341286a200341c8006a2008201b2012410171201c200341f0006a106d2003280228220a450d02200328022c21090c070b200341f0006a200341c8006a2008201b2007106e2003290378210720032802704101460d0502400240024002402003280238220241908cc500460d00200328023c210c0c010b201f410041d80010cc051a201e4200370100200e41206a4200370100200e41186a4200370100201d420037010020204200370100200e4200370100419001101e2202450d014100210c20024100360200200220032903703702042002410c6a200341f0006a41086a290300370200200241146a200341f0006a41106a2903003702002002411c6a200341f0006a41186a290300370200200241246a200341f0006a41206a2903003702002002412c6a200341f0006a41286a290300370200200241346a200341e0016a41dc0010cd051a2003410036023c200320023602380b03400240024020022f0106220b0d00410021060c010b200b410274210a200241086a2109417f210603400240200a0d00200b21060c020b20092802002113200a417c6a210a200641016a2106200941046a21090240417f2013200547201320054b1b41016a0e03020001020b0b200220064103746a41386a20073703000c050b0240200c450d00200c417f6a210c200220064102746a4190016a28020021020c010b0b2003200328024041016a360240024020022f0106220a410b490d0002400240200241908cc500460d002023410041d80010cc051a202241266a4200370100202241206a4200370100202241186a4200370100202241106a4200370100202241086a420037010020224200370100419001101e220a0d014190014108102d000b41c8a6c000412d41a888c6001028000b200a4100360200200a20032903e001370204200a410c6a200341e0016a41086a290300370200200a41146a200341e0016a41106a290300370200200a411c6a200341e0016a41186a290300370200200a41246a200341e0016a41206a290300370200200a412c6a200341e0016a41286a290300370200200a41346a200341f0006a41dc0010cd051a2002290368210820022802202109200a41086a200241246a20022f010641796a221341027410cd05210c200a41386a200241f0006a201341037410cd05210b200241063b0106200a20133b01060240024020064107490d00200c2006417a6a22184102746a200c200641796a22064102746a220c201341ffff037120066b41027410ce051a200c2005360200200b20184103746a200b20064103746a220c200a41066a22132f010020066b41037410ce051a0c010b200241066a2113200241086a220c200641016a220b4102746a200c20064102746a220c20022f010620066b41027410ce051a200c2005360200200241386a220c200b4103746a200c20064103746a220c20022f010620066b41037410ce051a0b200c2007370300201320132f010041016a3b01000240200228020022060d0041002113200341386a21060c030b200320022f01043602ec01200320063602e4012003200341386a3602e801200341013602e001200341f0006a200341e0016a20092008200a4100105d20032802704101470d040340200328027c21062003280288012113200328028401210a2003290390012108200328028001210920032802782202280200220c450d032003280274210b200320022f01043602ec01200320063602e8012003200c3602e4012003200b41016a3602e001200341f0006a200341e0016a20092008200a2013105d20032802704101460d000c050b0b200241086a2209200641016a22134102746a200920064102746a2209200a20066b41027410ce051a20092005360200200241386a220a20134103746a200a20064103746a220a20022f010620066b41037410ce051a200a2007370300200220022f010641016a3b01060c030b4190014108102d000b201f410041d80010cc051a202141266a4200370100202141206a4200370100202141186a4200370100202141106a4200370100202141086a420037010020214200370100200341f0026a41086a220c200341a0036a41086a290300370300200341f0026a41106a220b200341a0036a41106a290300370300200341f0026a41186a2218200341a0036a41186a290300370300200341f0026a41206a2215200341a0036a41206a290300370300200341f0026a41286a2212200341a0036a41286a290300370300200320032903a0033703f002200341f0006a200341e0016a41dc0010cd051a200341c0026a41286a22174200370300200341c0026a41206a22194200370300200341c0026a41186a221a4200370300200341c0026a41106a220f4200370300200341c0026a41086a220d4200370300200342003703c00202400240024041c001101e2202450d0020024100360200200220032903f0023702042002410c6a200c290300370200200241146a200b2903003702002002411c6a2018290300370200200241246a20152903003702002002412c6a2012290300370200200241346a200341f0006a41dc0010cd051a200241b8016a2017290300370300200241b0016a2019290300370300200241a8016a201a290300370300200241a0016a200f29030037030020024198016a200d290300370300200220032903c0023703900120022006280200220c360290012006200236020020062006280204220b41016a360204200c41003b0104200c2002360200200b2013470d0120022f01062206410a4b0d02200220064103746a41386a2008370300200220064102746a41086a20093602002002200641016a22064102746a4190016a200a360200200220063b0106200a20063b0104200a20023602000c040b41c0014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200241346a280200210d02402007a74101460d002007422088a721022003280238220a210c200328023c2219211a034002400240200c2f0106220f0d00410021060c010b200f4102742109200c41086a2113417f21060340024020090d00200f21060c020b201328020021172009417c6a2109200641016a2106201341046a21130240417f2017200247201720024b1b41016a0e03020001020b0b034002400240200a2f010622170d00410021060c010b20174102742109200a41086a2113417f21060340024020090d00201721060c020b2013280200210c2009417c6a2109200641016a2106201341046a21130240417f200c200247200c20024b1b41016a0e03020001020b0b200a20064103746a41386a290300211c0c040b02402019450d002019417f6a2119200a20064102746a4190016a280200210a0c010b0b41e988c700412b419489c7001028000b0240201a450d00201a417f6a211a200c20064102746a4190016a280200210c0c010b0b0240200b450d00200b4105742106201841086a2102034002400240200241786a280200220541014b0d00024020050e020002000b2002106b0c010b2002280200450d002002417c6a28020010200b200241206a2102200641606a22060d000b0b411b210941ce88c700210a2015450d06201810200c060b2003200b3602e801200320153602e401200320183602e001200341f0006a200341386a200341e0016a106c024020032802704101470d00200341f8006a28020021092003280274210a0c060b200341a0036a41086a201141086a28020022023602002003201129020022073703a003200341f0006a41086a200236020020032007370370200341306a200341c8006a2008201b2012410171201c200d200341f0006a106f2003280230220a450d00200328023421090c050b200541016a210520042014470d000b201421040c010b41908cc50041004100107020102006107141e6aac000210a411e21092016450d1a201010200c1a0b2004201420046b410675107102402016450d00201010200b2003280238200328023c200328024010704100210a0c190b2003280274210a2007a721090b2004201420046b410675107102402016450d00201010200b2003280238200328023c200328024010700c170b2001410c6a2802002106200141086a2802002104200141046a2802002105024020022d0000220a41014b0d00200141206a2903002107200141186a2903002108200141106a290300211b20012d0001210c2002411b6a280000210b200241176a2800002118200241136a28000021152002410b6a290000211c200241076a2800002112200241036a280000211720022f000121144100210902400240200a0e020100010b2002411f6a2f00002113410121090b2003418f016a20133b00002003418b016a200b36000020034187016a201836000020034183016a2015360000200341fb006a201c3700002003201236007720032017360073200320143b0071200320093a0070200320063602e801200320043602e401200320053602e001200341206a200341f0006a201b2008200c41ff01714100472007200341e0016a106d200328022421092003280220210a0c170b02402006450d00200641186c21062005210203402002106b200241186a2102200641686a22060d000b0b41e6aac000210a411e21092004450d16200510200c160b2001410c6a2802002106200141086a2802002104200141046a2802002105024020022d0000220a41014b0d00200141026a2f0100210c200141206a2903002107200141186a2903002108200141106a290300211b20012d0001210b2002411b6a2800002118200241176a2800002115200241136a28000021122002410b6a290000211c200241076a2800002117200241036a280000211420022f000121114100210902400240200a0e020100010b2002411f6a2f00002113410121090b2003418f016a20133b00002003418b016a201836000020034187016a201536000020034183016a2012360000200341fb006a201c3700002003201736007720032014360073200320113b0071200320093a0070200320063602e801200320043602e401200320053602e001200341186a200341f0006a201b2008200b41ff01714100472007200c200341e0016a106f200328021c21092003280218210a0c160b02402006450d00200641186c21062005210203402002106b200241186a2102200641686a22060d000b0b41e6aac000210a411e21092004450d15200510200c150b20022d0000220641014b0d06200141186a2903002107200141106a2903002108200141086a290300211b2002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a290000211c200241076a280000210c200241036a280000210b20022f00012118410021050240024020060e020100010b2002411f6a2f00002104410121050b2003418f016a20043b00002003418b016a200a36000020034187016a200936000020034183016a2013360000200341fb006a201c3700002003200c3600772003200b360073200320183b0071200320053a0070200341e0016a200341f0006a201b20082007106e024020032802e0014101460d004100210a0c150b200341e8016a280200210920032802e401210a0c140b200141186a280200211a200141146a280200210d200141106a2802002110200141086a280200210e200141046a28020021160240024002400240024020022d0000220541014b0d002001410c6a280200211d200141306a2903002107200141286a290300211b200141206a290300211c2002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a2900002108200241076a280000210c200241036a280000210b20022f00012118410021060240024020050e020100010b2002411f6a2f00002104410121060b200341bf036a20043b0000200341bb036a200a360000200341b7036a2009360000200341b3036a2013360000200341ab036a20083700002003200c3600a7032003200b3600a303200320183b00a103200320063a00a0034100211102402006450d0041032111201c500d0041022111200341a0036a4101722206201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702105200341f0026a41186a220420034189016a290000370300200341f0026a41106a220a20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020054101460d00200341e0016a41186a4200370300200341e0016a41106a4200370300200341e0016a41086a4200370300200342003703e0010c010b200341e0016a41186a2004290300370300200341e0016a41106a200a290300370300200341e0016a41086a2002290300370300200320032903f0023703e0010b200341e0016a2006412010cf05450d0041ceabc000210a412621090c050b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c050b200341b4016a2802002114200341b0016a2802002118200341ac016a2802002104200341a8016a2802002124200341a4016a2802002123200341a0016a2802002121412c2109200341f0006a412c6a280200212020034198016a280200211720034194016a280200210b20034190016a28020021052003418c016a2802002112200341f0006a41186a280200211320034184016a2802002102200341fc006a2802002115200341f0006a41086a280200210c200328027421064184abc000210a024020110e0404030002040b200221192013210f03400240024020192f0106221f0d004100210a0c010b201f4103742109201941086a2111417f210a0340024020090d00201f210a0c020b20112903002108200941786a2109200a41016a210a201141086a2111417f2008201b522008201b561b41016a0e03010600010b0b0240200f0d0041f4abc000210a411221090c040b200f417f6a210f2019200a4102746a41e0006a28020021190c000b0b0240201a450d00201a41306c2106201041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200641506a22060d000b0b0240200d450d00201010200b41e6aac000210a411e2109200e450d17201610200c170b41b0abc000210a411021090b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402015450d004100210c41002111410021190340200320193602ec01200320113602e801200320063602e4012003200c3602e001200341f0006a200341e0016a10612003280278210c200328027c2106200328028001211120032802840121192015417f6a22150d000b0b0240200641908cc500460d0020062802002115200610202015450d002015280200210c20151020200c450d000240200c2802002206450d000340200c10202006210c20062802002215210620150d000b0b200c10200b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402012450d0041002106410021134100210c03402003200c3602ec01200320133602e801200320023602e401200320063602e001200341f0006a200341e0016a106120032802782106200328027c21022003280280012113200328028401210c2012417f6a22120d000b0b0240200241908cc500460d0020022802002113200210202013450d0020132802002106201310202006450d00024020062802002202450d000340200610202002210620022802002213210220130d000b0b200610200b0240200b450d00200b21020340200528026021052002417f6a22020d000b0340200b417f6a220b0d000b0b02402017450d004100210241002106410021130340200320133602ec01200320063602e801200320053602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2105200328028001210620032802840121132017417f6a22170d000b0b0240200541908cc500460d0020052802002102200510202002450d0020022802002106200210202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b024020204102490d0020212023202410720b02402018450d00201821020340200428026021042002417f6a22020d000b03402018417f6a22180d000b0b02402014450d004100210241002106410021050340200320053602ec01200320063602e801200320043602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2104200328028001210620032802840121052014417f6a22140d000b0b200441908cc500460d0120042802002102200410202002450d0120022802002106200210202006450d01024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c010b0240024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2007370018200341f0006a41186a22094200370300200341f0006a41106a22114200370300200341f0006a41086a2219420037030020034200370370200a4120200341f0006a1001200341e0016a41186a2009290300370300200341e0016a41106a2011290300370300200341e0016a41086a2019290300370300200320032903703703e001200a10200240200341e0016a412041e4fdc600410041001002417f470d0041b9d3c000210a411921090c040b201d201a720d0241d2d3c000210a413a21090c040b41184101102d000b41304101102d000b024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2007370018200341f0006a41186a22094200370300200341f0006a41106a22114200370300200341f0006a41086a2219420037030020034200370370200a4120200341f0006a1001200341e0016a41186a2009290300370300200341e0016a41106a2011290300370300200341e0016a41086a2019290300370300200320032903703703e001200a102020034100360270200341e0016a4120200341f0006a1003210a20032802702211417f460d03200a450d03200320113602f4022003200a3602f002200341f0006a200341f0026a10732003280278221f450d02200341a0016a28020021252003419c016a280200212620034194016a280200212720034190016a28020021282003418c016a280200212920034188016a280200212a20034184016a280200212220034180016a2802002109200328027c211e2011450d04200a10200c040b41184101102d000b41304101102d000b41ceb8c4004133200341c8006a41fcbfc4004184b9c400102e000b4100211f0b200342003702c402200341908cc5003602c002201f4108201f1b212b0240024020094100201f1b222c450d00202c41306c2111202b41186a210903402009280200220a417f4c0d02200941786a2802002119024002400240200a0d004101210f0c010b200a101e220f450d010b200f2019200a10cd0521192003200a3602782003200a36027420032019360270200941306a2109200341c0026a200341f0006a1074201141506a22110d010c020b0b200a4101102d000b20254100201f1b212d20264101201f1b212e20274100201f1b212f20284101201f1b213020294100201f1b2126202a4100201f1b213120224104201f1b2132201e4100201f1b212a02400240201a450d002010201a41306c6a2133201021270340202741186a22252802002109200341f0026a41086a220a4200370300200342003703f00241b287c7004125200341f0026a1000200341f0006a41086a220f200a290300370300200320032903f002370370200341e0016a200341f0006a1075024020032f01e201410020032f01e00141014622111b221941ffff0371200941ffff037122094d0d00418cd4c000210a411a21090c030b024020032f01e401410020111b20196a41ffff037120094f0d0041a6d4c000210a411921090c030b202741246a2802002111200a4200370300200342003703f00241d787c700412c200341f0026a1000200f200a290300370300200320032903f002370370200341e0016a200341f0006a10754120210941bfd4c000210a20032f01e201410020032f01e00141014622191b220f41ffff0371201141ffff037122114b0d0220032f01e401410020191b200f6a41ffff03712011490d02202741306a2134200341c0026a210a20032802c4022129034002400240200a28020022282f010622220d00410021220c010b2022410c6c2109202841086a210a202528020021112027280210211e4100210f03402009450d0102400240201e200a280200200a28020822192011201120194b1b10cf05221f450d0041012119201f41004e0d01200f21220c030b0240201120194f0d00200f21220c030b201120194721190b200a410c6a210a200f41016a210f200941746a210920190d000b412c210941dfd4c000210a0c040b02402029450d002029417f6a2129202820224102746a418c016a210a0c010b0b2025280200220a417f4c0d0320272802102109024002400240200a0d00410121110c010b200a101e2211450d010b20112009200a10cd0521092003200a3602782003200a36027420032009360270200341c0026a200341f0006a10742034212720342033470d010c020b0b200a4101102d000b201d410174210a202c41ffff037121192016210902400340200a450d01200a417e6a210a20092f01002111200941026a210920112019490d000b41342109418bd5c000210a0c010b02400240024002400240201a450d00201a41306c21112010210a03400240200a2f01004109470d00200a41086a2903002108024002404118101e2209450d00200941106a41002900dc8647370000200941086a41002900d48647370000200941002900cc864737000020094118413010222209450d0120092008370018200341f0006a41186a22194200370300200341f0006a41106a220f4200370300200341f0006a41086a221f42003703002003420037037020094120200341f0006a1001200341e0016a41186a2019290300370300200341e0016a41106a200f290300370300200341e0016a41086a201f290300370300200320032903703703e00120091020200341e0016a412041e4fdc600410041001002417f470d024137210941bfd5c000210a0c090b41184101102d000b41304101102d000b200a41306a210a201141506a22110d000b2010201a41306c6a21110240201a0d002010210a0c020b200341e0016a41266a210f200341e0016a41206a211f200341e0016a41186a211e200341e0016a41106a2122200341e0016a41086a21292010210a0340200a2f01002119200f200a41286a290100370100201f200a41226a290100370300201e200a411a6a2901003703002022200a41126a2901003703002029200a410a6a2901003703002003200a41026a2901003703e0010240024020194113460d00200341f0006a41266a2228200f290100370100200341f0006a41206a2227201f290300370300200341f0006a41186a2225201e290300370300200341f0006a41106a22342022290300370300200341f0006a41086a22332029290300370300200320032903e0013703700240202c202a460d00202a211a202c212a0c020b202a41016a2209202a490d06202a410174221a2009201a20094b1b221aad42307e2208422088a70d062008a722094100480d0602400240202a0d002009101e212b0c010b202b202a41306c20091022212b0b202b0d0120094108102d000b200a41306a210a0c030b202b202a41306c6a220920193b0100200920032903703701022009410a6a2033290300370100200941126a20342903003701002009411a6a2025290300370100200941226a2027290300370100200941286a2028290100370100024002400240201d200e460d00200e2119201d21090c010b200e41016a2209200e490d06200e410174222a2009202a20094b1b221920196a22092019490d0620094100480d0602400240200e0d002009101e21160c010b2016202a2009102221160b2016450d01200e21092019210e0b201620094101746a202c3b0100201d41016a211d201a212a202c41016a2228212c200a41306a220a2011470d010c040b0b20094102102d000b2010201a41306c6a21112010210a0b02402011200a460d0003400240200a41146a280200450d00200a41106a28020010200b200a41306a21090240200a41206a280200450d00200a411c6a28020010200b2009210a20112009470d000b0b200e2119202a211a202c21280b0240200d450d00201010200b024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2007370018200341f0006a41186a22094200370300200341f0006a41106a22114200370300200341f0006a41086a2210420037030020034200370370200a4120200341f0006a1001200341e0016a41186a2009290300370300200341e0016a41106a2011290300370300200341e0016a41086a2010290300370300200320032903703703e001200a102020034100360270200341e0016a4120200341f0006a1003210a2003280270220f417f460d03200a450d032003200f3602f4022003200a3602f002200341f0006a200341f0026a107320032802782211450d02200341a4016a2802002129200341a0016a280200212a2003419c016a280200212c20034198016a280200212220034194016a280200211e20034190016a280200211f2003418c016a280200211020034188016a280200210d20034184016a280200210e20034180016a2802002109200328027c212720032903702108200f450d04200a10200c040b41184101102d000b41304101102d000b41ceb8c4004133200341c8006a41fcbfc4004184b9c400102e000b410021110b2011410820111b210f02402009410020111b220a450d00200a41306c2109200f41206a210a03400240200a41746a280200450d00200a41706a28020010200b0240200a280200450d00200a417c6a28020010200b200a41306a210a200941506a22090d000b0b2010410020111b2110200d410020111b210a02402011450d002027450d00200f10200b200e410420111b210902402010200a460d00200a210f2010210a0c020b200a41016a220f200a490d00200a410174220e200f200e200f4b1b220fad420c7e221b422088a70d00201ba7220e4100480d0002400240200a0d00200e101e21090c010b2009200a410c6c200e102221090b20090d01200e4104102d000b1027000b2009200a410c6c6a220a201d360208200a2019360204200a2016360200200341a4016a2029410020111b360200200341a0016a202a410020111b36020020034198016a2022410020111b36020020034194016a201e410020111b3602002003418c016a201041016a36020020034188016a200f36020020034180016a2028360200200341f0006a410c6a201a3602002003202c410120111b221936029c012003201f410120111b3602900120032009360284012003202b36027820032008420020111b37037002400240202b0d00200341e0016a412010040c010b200341203602f4022003200341e0016a3602f002200341f0006a200341f0026a10760b02402003280278220a450d0002402003280280012209450d00200941306c2109200a41206a210a03400240200a41746a280200450d00200a41706a28020010200b0240200a280200450d00200a417c6a28020010200b200a41306a210a200941506a22090d000b0b0240200328027c450d00200328027810200b02402003418c016a2802002209450d00200328028401210a2009410c6c210903400240200a41046a280200450d00200a28020010200b200a410c6a210a200941746a22090d000b0b024020034188016a280200450d0020032802840110200b024020034194016a280200450d0020032802900110200b200341a0016a280200450d00201910200b20034180016a2007370300200341fa006a20263b0100200341f8006a41013a0000200341153a0070200341f0006a107720032802c00220032802c40220032802c802107802402026450d002026410c6c21092032210a03400240200a41046a280200450d00200a28020010200b200a410c6a210a200941746a22090d000b0b02402031450d00203210200b0240202f450d00203010200b4100210a0240202d450d00202e10200b0c040b20032802c00220032802c40220032802c80210780240202c450d00202c41306c2119202b41206a211103400240201141746a280200450d00201141706a28020010200b02402011280200450d002011417c6a28020010200b201141306a2111201941506a22190d000b0b0240202a450d00202b10200b02402026450d002026410c6c21192032211103400240201141046a280200450d00201128020010200b2011410c6a2111201941746a22190d000b0b02402031450d00203210200b0240202f450d00203010200b202d450d01202e10200c010b102c000b201a450d00201a41306c2119201041206a211103400240201141746a280200450d00201141706a28020010200b02402011280200450d002011417c6a28020010200b201141306a2111201941506a22190d000b0b0240200d450d00201010200b200e450d00201610200b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402015450d004100210c41002111410021190340200320193602ec01200320113602e801200320063602e4012003200c3602e001200341f0006a200341e0016a10612003280278210c200328027c2106200328028001211120032802840121192015417f6a22150d000b0b0240200641908cc500460d0020062802002115200610202015450d002015280200210c20151020200c450d000240200c2802002206450d000340200c10202006210c20062802002215210620150d000b0b200c10200b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402012450d0041002106410021134100210c03402003200c3602ec01200320133602e801200320023602e401200320063602e001200341f0006a200341e0016a106120032802782106200328027c21022003280280012113200328028401210c2012417f6a22120d000b0b0240200241908cc500460d0020022802002113200210202013450d0020132802002106201310202006450d00024020062802002202450d000340200610202002210620022802002213210220130d000b0b200610200b0240200b450d00200b21020340200528026021052002417f6a22020d000b0340200b417f6a220b0d000b0b02402017450d004100210241002106410021130340200320133602ec01200320063602e801200320053602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2105200328028001210620032802840121132017417f6a22170d000b0b0240200541908cc500460d0020052802002102200510202002450d0020022802002106200210202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b024020204102490d0020212023202410720b02402018450d00201821020340200428026021042002417f6a22020d000b03402018417f6a22180d000b0b02402014450d004100210241002106410021050340200320053602ec01200320063602e801200320043602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2104200328028001210620032802840121052014417f6a22140d000b0b200441908cc500460d1420042802002102200410202002450d1420022802002106200210202006450d14024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c140b0240200e450d00201610200b0240201a450d00201a41306c2106201041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200641506a22060d000b0b200d450d13201010200c130b200341e0016a41206a200241206a2d00003a0000200341e0016a41186a200241186a290000370300200341e0016a41106a200241106a290000370300200341e0016a41086a200241086a290000370300200320022900003703e001200341f0026a41086a2001410c6a2802003602002003200141046a2902003703f002200341a0036a41086a200141186a2802003602002003200141106a2902003703a003200341ac016a4200370200200341f0006a41206a420037030020034184016a4200370200200341003a00b801200341013a007c20034200370274200341908cc500360270200341003602b401200341908cc5003602a8012003410036029801200341908cc50036028c01200341908cc50036028001200341106a200341e0016a200341f0026a200341a0036a200341f0006a106a200328021421092003280210210a0c120b200141106a28020021102001410c6a280200210f200141086a280200210e200141046a280200211a02400240024002400240024020022d0000220541014b0d00200141286a2903002107200141206a290300211b200141186a290300211c2002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a2900002108200241076a280000210c200241036a280000210b20022f00012118410021060240024020050e020100010b2002411f6a2f00002104410121060b200341ff016a20043b0000200341fb016a200a360000200341f7016a2009360000200341f3016a2013360000200341eb016a20083700002003200c3600e7012003200b3600e301200320183b00e101200320063a00e0014100211102402006450d0041032111201c500d0041022111200341e0016a4101722206201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702105200341f0026a41186a220420034189016a290000370300200341f0026a41106a220a20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020054101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2004290300370300200341a0036a41106a200a290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a2006412010cf05450d004126210941ceabc000210a0c060b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c060b200341b4016a2802002115200341b0016a2802002113200341ac016a2802002102200341a8016a280200211d200341a4016a280200211e200341a0016a280200211f412c2109200341f0006a412c6a280200210d20034198016a280200211420034194016a280200211820034190016a28020021042003418c016a280200211720034188016a280200210b20034184016a280200210520034180016a2802002120200341fc006a2802002112200341f0006a41086a280200210c200328027421062003200341bc016a2802003602f0024184abc000210a024020110e0404030002040b200221192013211603400240024020192f010622220d004100210a0c010b20224103742109201941086a2111417f210a0340024020090d002022210a0c020b20112903002108200941786a2109200a41016a210a201141086a2111417f2008201b522008201b561b41016a0e03010600010b0b024020160d0041c0abc000210a410e21090c040b2016417f6a21162019200a4102746a41e0006a28020021190c000b0b41e6aac000210a411e2109201a4102490d16200e200f201010720c160b41b0abc000210a411021090b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402012450d004100210c41002111410021190340200320193602ac03200320113602a803200320063602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c2106200328028001211120032802840121192012417f6a22120d000b0b0240200641908cc500460d0020062802002112200610202012450d002012280200210c20121020200c450d000240200c2802002206450d000340200c10202006210c20062802002212210620120d000b0b200c10200b0240200b450d00200b21060340200528026021052006417f6a22060d000b0340200b417f6a220b0d000b0b02402017450d00410021064100210c4100210b03402003200b3602ac032003200c3602a803200320053602a403200320063602a003200341f0006a200341a0036a106120032802782106200328027c2105200328028001210c200328028401210b2017417f6a22170d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002105200610202005450d00024020052802002206450d00034020051020200621052006280200220c2106200c0d000b0b200510200b02402018450d00201821060340200428026021042006417f6a22060d000b03402018417f6a22180d000b0b02402014450d0041002106410021054100210c03402003200c3602ac03200320053602a803200320043602a403200320063602a003200341f0006a200341a0036a106120032802782106200328027c21042003280280012105200328028401210c2014417f6a22140d000b0b0240200441908cc500460d0020042802002106200410202006450d0020062802002105200610202005450d00024020052802002206450d000340200510202006210520062802002204210620040d000b0b200510200b200d4102490d01201f201e201d10720c010b0240200d4102490d00201f201e201d10720b1079210a200341b0016a2015360200200341ac016a2013360200200341a4016a2010360200200341a0016a200f3602002003419c016a200e36020020034194016a201436020020034190016a201836020020034188016a201736020020034184016a200b3602002003200a3602b401200320023602a8012003201a360298012003200436028c0120032005360280012003202036027c200320123602782003200c36027420032006360270200320032802f0023602b8012007200341f0006a107a4100210a0c130b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402015450d004100210641002105410021040340200320043602ac03200320053602a803200320023602a403200320063602a003200341f0006a200341a0036a106120032802782106200328027c2102200328028001210520032802840121042015417f6a22150d000b0b200241908cc500460d0020022802002105200210202005450d0020052802002106200510202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b201a4102490d11200e200f201010720c110b2001410c6a2802002104200141086a2802002105200141046a28020021060240024002400240024020022d0000220941014b0d00200141206a2903002107200141186a290300211b200141106a290300211c2002411b6a280000210c200241176a280000210b200241136a28000021182002410b6a2900002108200241076a2800002115200241036a280000211220022f000121174100210a0240024020090e020100010b2002411f6a2f000021134101210a0b200341ff016a20133b0000200341fb016a200c360000200341f7016a200b360000200341f3016a2018360000200341eb016a2008370000200320153600e701200320123600e301200320173b00e1012003200a3a00e001410021100240200a450d0041032110201c500d0041022110200341e0016a410172220a201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702109200341f0026a41186a221320034189016a290000370300200341f0026a41106a220c20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020094101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2013290300370300200341a0036a41106a200c290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a200a412010cf05450d004126210941ceabc000210a0c050b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c050b200341b4016a2802002111200341b0016a2802002112200341ac016a2802002113200341a8016a280200211e200341a4016a280200211f200341a0016a2802002116412c2109200341f0006a412c6a280200210e20034198016a280200211520034194016a280200211820034190016a28020021022003418c016a280200211a20034188016a280200211420034184016a280200210b20034180016a280200211d200341fc006a2802002119200341f0006a41086a28020021172003280274210c2003200341bc016a2802003602f0024184abc000210a024020100e0402040003020b2013210f2012210d034002400240200f2f010622200d004100210a0c010b20204103742109200f41086a2110417f210a0340024020090d002020210a0c020b20102903002108200941786a2109200a41016a210a201041086a2110417f2008201b522008201b561b41016a0e03010400010b0b0240200d0d0041c0abc000210a410e21090c050b200d417f6a210d200f200a4102746a41e0006a280200210f0c000b0b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a03402003200a3602ec01200320053602e801200320063602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c21062003280280012105200328028401210a2004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d1420062802002102200610202002450d1420022802002106200210202006450d14024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c140b02402018450d002018210a034020022802602102200a417f6a220a0d000b03402018417f6a22180d000b0b02402015450d004100210a41002109410021180340200320183602ac03200320093602a803200320023602a4032003200a3602a003200341f0006a200341a0036a10612003280278210a200328027c2102200328028001210920032802840121182015417f6a22150d000b0b0240200241908cc500460d0020022802002109200210202009450d002009280200210a20091020200a450d000240200a2802002202450d000340200a10202002210a20022802002209210220090d000b0b200a10200b10792102200341b0016a2011360200200341ac016a2012360200200341a4016a201e360200200341a0016a201f3602002003419c016a201636020020034194016a200436020020034190016a200536020020034188016a201a36020020034184016a2014360200200320023602b401200320133602a8012003200e360298012003200636028c012003200b360280012003201d36027c20032019360278200320173602742003200c360270200320032802f0023602b8012007200341f0006a107a4100210a0c130b41b0abc000210a411021090b02402017450d00201721100340200c280260210c2010417f6a22100d000b03402017417f6a22170d000b0b02402019450d0041002117410021104100210f03402003200f3602ac03200320103602a8032003200c3602a403200320173602a003200341f0006a200341a0036a106120032802782117200328027c210c2003280280012110200328028401210f2019417f6a22190d000b0b0240200c41908cc500460d00200c2802002119200c10202019450d0020192802002117201910202017450d0002402017280200220c450d00034020171020200c2117200c2802002219210c20190d000b0b201710200b02402014450d002014210c0340200b280260210b200c417f6a220c0d000b03402014417f6a22140d000b0b0240201a450d004100210c41002117410021140340200320143602ac03200320173602a8032003200b3602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c210b20032802800121172003280284012114201a417f6a221a0d000b0b0240200b41908cc500460d00200b280200210c200b1020200c450d00200c280200210b200c1020200b450d000240200b280200220c450d000340200b1020200c210b200c2802002217210c20170d000b0b200b10200b02402018450d002018210c034020022802602102200c417f6a220c0d000b03402018417f6a22180d000b0b02402015450d004100210c4100210b410021180340200320183602ac032003200b3602a803200320023602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c2102200328028001210b20032802840121182015417f6a22150d000b0b0240200241908cc500460d002002280200210b20021020200b450d00200b280200210c200b1020200c450d000240200c2802002202450d000340200c10202002210c2002280200220b2102200b0d000b0b200c10200b0240200e4102490d002016201f201e10720b02402012450d00201221020340201328026021132002417f6a22020d000b03402012417f6a22120d000b0b02402011450d00410021024100210c4100210b03402003200b3602ac032003200c3602a803200320133602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c2113200328028001210c200328028401210b2011417f6a22110d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320133602ac03200320053602a803200320063602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c2106200328028001210520032802840121132004417f6a22040d000b0b200641908cc500460d1020062802002102200610202002450d1020022802002106200210202006450d10024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c100b2001410c6a2802002104200141086a2802002105200141046a28020021060240024002400240024020022d0000220941014b0d00200141206a2903002107200141186a290300211b200141106a290300211c2002411b6a280000210c200241176a280000210b200241136a28000021182002410b6a2900002108200241076a2800002115200241036a280000211220022f000121174100210a0240024020090e020100010b2002411f6a2f000021134101210a0b200341ff016a20133b0000200341fb016a200c360000200341f7016a200b360000200341f3016a2018360000200341eb016a2008370000200320153600e701200320123600e301200320173b00e1012003200a3a00e001410021100240200a450d0041032110201c500d0041022110200341e0016a410172220a201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702109200341f0026a41186a221320034189016a290000370300200341f0026a41106a220c20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020094101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2013290300370300200341a0036a41106a200c290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a200a412010cf05450d004126210941ceabc000210a0c050b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c050b200341b4016a2802002111200341b0016a2802002112200341ac016a2802002113200341a8016a280200211e200341a4016a280200211f200341a0016a2802002116412c2109200341f0006a412c6a280200210e20034198016a280200211a20034194016a280200211420034190016a280200210b2003418c016a280200211520034188016a280200211820034184016a280200210220034180016a280200211d200341fc006a2802002119200341f0006a41086a28020021172003280274210c2003200341bc016a2802003602f0024184abc000210a024020100e0402040003020b2013210f2012210d034002400240200f2f010622200d004100210a0c010b20204103742109200f41086a2110417f210a0340024020090d002020210a0c020b20102903002108200941786a2109200a41016a210a201041086a2110417f2008201b522008201b561b41016a0e03010400010b0b0240200d0d0041c0abc000210a410e21090c050b200d417f6a210d200f200a4102746a41e0006a280200210f0c000b0b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a03402003200a3602ec01200320053602e801200320063602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c21062003280280012105200328028401210a2004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d1320062802002102200610202002450d1320022802002106200210202006450d13024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c130b02402018450d002018210a034020022802602102200a417f6a220a0d000b03402018417f6a22180d000b0b02402015450d004100210a41002109410021180340200320183602ac03200320093602a803200320023602a4032003200a3602a003200341f0006a200341a0036a10612003280278210a200328027c2102200328028001210920032802840121182015417f6a22150d000b0b0240200241908cc500460d0020022802002109200210202009450d002009280200210a20091020200a450d000240200a2802002202450d000340200a10202002210a20022802002209210220090d000b0b200a10200b10792102200341b0016a2011360200200341ac016a2012360200200341a4016a201e360200200341a0016a201f3602002003419c016a201636020020034194016a201a36020020034190016a201436020020034188016a200436020020034184016a2005360200200320023602b401200320133602a8012003200e360298012003200b36028c0120032006360280012003201d36027c20032019360278200320173602742003200c360270200320032802f0023602b8012007200341f0006a107a4100210a0c120b41b0abc000210a411021090b02402017450d00201721100340200c280260210c2010417f6a22100d000b03402017417f6a22170d000b0b02402019450d0041002117410021104100210f0340200320173602ac03200320103602a8032003200c3602a4032003200f3602a003200341f0006a200341a0036a10612003280278210f200328027c210c200328028001211020032802840121172019417f6a22190d000b0b0240200c41908cc500460d00200c2802002119200c10202019450d0020192802002117201910202017450d0002402017280200220c450d00034020171020200c2117200c2802002219210c20190d000b0b201710200b02402018450d002018210c034020022802602102200c417f6a220c0d000b03402018417f6a22180d000b0b02402015450d004100210c410021184100211703402003200c3602ac03200320183602a803200320023602a403200320173602a003200341f0006a200341a0036a106120032802782117200328027c21022003280280012118200328028401210c2015417f6a22150d000b0b0240200241908cc500460d0020022802002118200210202018450d002018280200210c20181020200c450d000240200c2802002202450d000340200c10202002210c20022802002218210220180d000b0b200c10200b02402014450d00201421020340200b280260210b2002417f6a22020d000b03402014417f6a22140d000b0b0240201a450d00410021024100210c410021180340200320183602ac032003200c3602a8032003200b3602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c210b200328028001210c2003280284012118201a417f6a221a0d000b0b0240200b41908cc500460d00200b2802002102200b10202002450d002002280200210c20021020200c450d000240200c2802002202450d000340200c10202002210c2002280200220b2102200b0d000b0b200c10200b0240200e4102490d002016201f201e10720b02402012450d00201221020340201328026021132002417f6a22020d000b03402012417f6a22120d000b0b02402011450d00410021024100210c4100210b0340200320023602ac032003200c3602a803200320133602a4032003200b3602a003200341f0006a200341a0036a10612003280278210b200328027c2113200328028001210c20032802840121022011417f6a22110d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320133602ac03200320053602a803200320063602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c2106200328028001210520032802840121132004417f6a22040d000b0b200641908cc500460d0f20062802002102200610202002450d0f20022802002106200210202006450d0f024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c0f0b20022d0000220541014b0d00200141186a2903002107200141106a290300211b200141086a290300211c20012d000121192002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a2900002108200241076a280000210c200241036a280000210b20022f00012118410021060240024020050e020100010b2002411f6a2f00002104410121060b200341ff016a20043b0000200341fb016a200a360000200341f7016a2009360000200341f3016a2013360000200341eb016a20083700002003200c3600e7012003200b3600e301200320183b00e101200320063a00e0014100211102402006450d0041032111201c500d0041022111200341e0016a4101722206201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702105200341f0026a41186a220420034189016a290000370300200341f0026a41106a220a20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020054101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2004290300370300200341a0036a41106a200a290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a2006412010cf05450d0041ceabc000210a412621090c0f0b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c0f0b200341b4016a2802002114200341b0016a221f2802002113200341ac016a221e2802002102200341a8016a2802002116200341a4016a221d280200210d200341a0016a2220280200210e412c2109200341f0006a412c6a280200211020034198016a280200211720034194016a2222280200211820034190016a222128020021042003418c016a280200211220034188016a2223280200210b20034184016a2224280200210520034180016a280200212c200341fc006a2802002115200341f0006a41086a280200210c20032802742106200341f0026a41026a222a200341bf016a2d00003a0000200320032f00bd013b01f0024184abc000210a024020110e0402040003020b2002211a2013210f034002400240201a2f010622290d004100210a0c010b20294103742109201a41086a2111417f210a0340024020090d002029210a0c020b20112903002108200941786a2109200a41016a210a201141086a2111417f2008201b522008201b561b41016a0e03010400010b0b0240200f0d0041c0abc000210a410e21090c050b200f417f6a210f201a200a4102746a41e0006a280200211a0c000b0b41e6aac000210a411e21090c0d0b1079210a201f2014360200201e2013360200201d20163602002020200d3602002003419c016a200e3602002022201736020020212018360200202320123602002024200b360200200320193a00b8012003200a3602b401200320023602a80120032010360298012003200436028c0120032005360280012003202c36027c200320153602782003200c36027420032006360270200341bb016a202a2d00003a0000200320032f01f0023b00b9012007200341f0006a107a4100210a0c0c0b41b0abc000210a411021090b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402015450d004100210c410021114100211903402003200c3602ac03200320113602a803200320063602a403200320193602a003200341f0006a200341a0036a106120032802782119200328027c21062003280280012111200328028401210c2015417f6a22150d000b0b0240200641908cc500460d0020062802002115200610202015450d002015280200210c20151020200c450d000240200c2802002206450d000340200c10202006210c20062802002215210620150d000b0b200c10200b0240200b450d00200b21060340200528026021052006417f6a22060d000b0340200b417f6a220b0d000b0b02402012450d00410021064100210c4100210b0340200320063602ac032003200c3602a803200320053602a4032003200b3602a003200341f0006a200341a0036a10612003280278210b200328027c2105200328028001210c20032802840121062012417f6a22120d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002105200610202005450d00024020052802002206450d00034020051020200621052006280200220c2106200c0d000b0b200510200b02402018450d00201821060340200428026021042006417f6a22060d000b03402018417f6a22180d000b0b02402017450d0041002106410021054100210c0340200320063602ac03200320053602a803200320043602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c2104200328028001210520032802840121062017417f6a22170d000b0b0240200441908cc500460d0020042802002106200410202006450d0020062802002105200610202005450d00024020052802002206450d000340200510202006210520062802002204210620040d000b0b200510200b024020104102490d00200e200d201610720b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402014450d004100210641002105410021040340200320063602ac03200320053602a803200320023602a403200320043602a003200341f0006a200341a0036a106120032802782104200328027c2102200328028001210520032802840121062014417f6a22140d000b0b200241908cc500460d0a20022802002105200210202005450d0a20052802002106200510202006450d0a024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c0a0b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a0340200320023602ec01200320053602e801200320063602e4012003200a3602e001200341f0006a200341e0016a10612003280278210a200328027c2106200328028001210520032802840121022004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d0920062802002102200610202002450d0920022802002106200210202006450d09024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c090b02402018450d002018210a034020022802602102200a417f6a220a0d000b03402018417f6a22180d000b0b02402015450d004100210a410021094100211803402003200a3602ac03200320093602a803200320023602a403200320183602a003200341f0006a200341a0036a106120032802782118200328027c21022003280280012109200328028401210a2015417f6a22150d000b0b0240200241908cc500460d0020022802002109200210202009450d002009280200210a20091020200a450d000240200a2802002202450d000340200a10202002210a20022802002209210220090d000b0b200a10200b10792102200341b0016a2011360200200341ac016a2012360200200341a4016a201d360200200341a0016a201e3602002003419c016a201f36020020034194016a201a36020020034190016a201436020020034188016a201936020020034184016a2017360200200320023602b401200320133602a8012003200d360298012003200b36028c012003200c360280012003200f36027c200320043602782003200536027420032006360270200320032802f0023602b8012007200341f0006a107a4100210a0c080b41b0abc000210a411021090b02402018450d00201821100340200228026021022010417f6a22100d000b03402018417f6a22180d000b0b02402015450d0041002118410021104100210f0340200320183602ac03200320103602a803200320023602a4032003200f3602a003200341f0006a200341a0036a10612003280278210f200328027c2102200328028001211020032802840121182015417f6a22150d000b0b0240200241908cc500460d0020022802002115200210202015450d0020152802002118201510202018450d00024020182802002202450d000340201810202002211820022802002215210220150d000b0b201810200b02402017450d00201721020340200c280260210c2002417f6a22020d000b03402017417f6a22170d000b0b02402019450d004100210241002118410021150340200320023602ac03200320183602a8032003200c3602a403200320153602a003200341f0006a200341a0036a106120032802782115200328027c210c200328028001211820032802840121022019417f6a22190d000b0b0240200c41908cc500460d00200c2802002102200c10202002450d002002280200210c20021020200c450d000240200c2802002202450d000340200c10202002210c20022802002218210220180d000b0b200c10200b02402014450d00201421020340200b280260210b2002417f6a22020d000b03402014417f6a22140d000b0b0240201a450d00410021024100210c410021180340200320023602ac032003200c3602a8032003200b3602a403200320183602a003200341f0006a200341a0036a106120032802782118200328027c210b200328028001210c2003280284012102201a417f6a221a0d000b0b0240200b41908cc500460d00200b2802002102200b10202002450d002002280200210c20021020200c450d000240200c2802002202450d000340200c10202002210c2002280200220b2102200b0d000b0b200c10200b0240200d4102490d00201f201e201d10720b02402012450d00201221020340201328026021132002417f6a22020d000b03402012417f6a22120d000b0b02402011450d00410021024100210c4100210b0340200320023602ac032003200c3602a803200320133602a4032003200b3602a003200341f0006a200341a0036a10612003280278210b200328027c2113200328028001210c20032802840121022011417f6a22110d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320023602ac03200320053602a803200320063602a403200320133602a003200341f0006a200341a0036a106120032802782113200328027c2106200328028001210520032802840121022004417f6a22040d000b0b200641908cc500460d0520062802002102200610202002450d0520022802002106200210202006450d05024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c050b200610200c040b200c10200b10792102200341b0016a2004360200200341ac016a2005360200200341a4016a200d360200200341a0016a200e3602002003419c016a200f36020020034194016a201136020020034190016a201236020020034188016a201436020020034184016a2015360200200320023602b401200320063602a80120032010360298012003201336028c0120032009360280012003201636027c20032017360278200320183602742003200a360270200320032802a0033602b8012007200341f0006a107a4100210a0c020b02402018450d00201821190340200a280260210a2019417f6a22190d000b03402018417f6a22180d000b0b02402017450d0041002118410021194100211a0340200320183602ec01200320193602e8012003200a3602e4012003201a3602e001200341f0006a200341e0016a10612003280278211a200328027c210a200328028001211920032802840121182017417f6a22170d000b0b0240200a41908cc500460d00200a2802002117200a10202017450d0020172802002118201710202018450d0002402018280200220a450d00034020181020200a2118200a2802002217210a20170d000b0b201810200b02402015450d002015210a034020092802602109200a417f6a220a0d000b03402015417f6a22150d000b0b02402014450d004100210a410021184100211503402003200a3602ec01200320183602e801200320093602e401200320153602e001200341f0006a200341e0016a106120032802782115200328027c21092003280280012118200328028401210a2014417f6a22140d000b0b0240200941908cc500460d002009280200210a20091020200a450d00200a2802002109200a10202009450d0002402009280200220a450d00034020091020200a2109200a2802002218210a20180d000b0b200910200b02402012450d002012210a034020132802602113200a417f6a220a0d000b03402012417f6a22120d000b0b02402011450d004100210a410021094100211803402003200a3602ec01200320093602e801200320133602e401200320183602e001200341f0006a200341e0016a106120032802782118200328027c21132003280280012109200328028401210a2011417f6a22110d000b0b0240201341908cc500460d002013280200210a20131020200a450d00200a2802002109200a10202009450d0002402009280200220a450d00034020091020200a2109200a2802002213210a20130d000b0b200910200b024020104102490d00200f200e200d10720b0240200c450d00200c210a034020022802602102200a417f6a220a0d000b0340200c417f6a220c0d000b0b0240200b450d004100210a410021094100211303402003200a3602ec01200320093602e801200320023602e401200320133602e001200341f0006a200341e0016a106120032802782113200328027c21022003280280012109200328028401210a200b417f6a220b0d000b0b410d210941d9aac000210a200241908cc500460d002002280200210c20021020200c450d00200c2802002113200c10202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320023602ec01200320053602e801200320063602e401200320133602e001200341f0006a200341e0016a106120032802782113200328027c2106200328028001210520032802840121022004417f6a22040d000b0b200641908cc500460d0020062802002102200610202002450d0020022802002106200210202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b0240024020012d00002202410d4b0d00410120027441f6f700710d010b0240024002400240024002402002417d6a220241094b0d000240024002400240024002400240024020020e0a0e0001020304050e06070e0b2001410c6a2802002106200141046a28020021020240200141086a2802002201450d00200121050340200228026021022005417f6a22050d000b03402001417f6a22010d000b0b02402006450d004100210141002105410021040340200320043602ec01200320053602e801200320023602e401200320013602e001200341f0006a200341e0016a106120032802782101200328027c2102200328028001210520032802840121042006417f6a22060d000b0b200241908cc500460d0d20022802002101200210202001450d0d20012802002102200110202002450d0d20022802002201450d0c0340200210202001210220012802002206210120060d000c0d0b0b2001410c6a2802002106200141046a28020021020240200141086a2802002201450d00200121050340200228026021022005417f6a22050d000b03402001417f6a22010d000b0b02402006450d004100210141002105410021040340200320043602ec01200320053602e801200320023602e401200320013602e001200341f0006a200341e0016a106120032802782101200328027c2102200328028001210520032802840121042006417f6a22060d000b0b200241908cc500460d0c20022802002101200210202001450d0c20012802002102200110202002450d0c20022802002201450d0a0340200210202001210220012802002206210120060d000c0b0b0b200141046a2802004102490d0b200141086a2802002001410c6a280200200141106a28020010720c0b0b0240200141086a280200450d00200141046a28020010200b0240200141146a280200450d00200141106a28020010200b200141246a28020021062001411c6a28020021020240200141206a2802002205450d00200521040340200228026021022004417f6a22040d000b03402005417f6a22050d000b0b02402006450d004100210541002104410021130340200320133602ec01200320043602e801200320023602e401200320053602e001200341f0006a200341e0016a106120032802782105200328027c2102200328028001210420032802840121132006417f6a22060d000b0b200241908cc500460d0720022802002105200210202005450d0720052802002106200510202006450d07200628020022020d050c060b0240200141086a280200450d00200141046a28020010200b200141146a280200450d09200141106a28020010200c090b0240200141086a280200450d00200141046a28020010200b0240200141186a2802002202450d00200241306c2106200141106a28020041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200641506a22060d000b0b200141146a280200450d08200128021010200c080b02402001410c6a2802002206450d00200141046a2802002102200641186c210603402002106b200241186a2102200641686a22060d000b0b200141086a280200450d07200128020410200c070b02402001410c6a2802002206450d00200141046a2802002102200641186c210603402002106b200241186a2102200641686a22060d000b0b200141086a280200450d06200128020410200c060b200141046a2802002001410c6a2802001071200141086a280200450d05200128020410200c050b0340200610202002210620022802002205210220050d000b0b200610200b200141346a28020021062001412c6a28020021020240200141306a2802002205450d00200521040340200228026021022004417f6a22040d000b03402005417f6a22050d000b0b02402006450d004100210541002104410021130340200320133602ec01200320043602e801200320023602e401200320053602e001200341f0006a200341e0016a106120032802782105200328027c2102200328028001210420032802840121132006417f6a22060d000b0b0240200241908cc500460d0020022802002105200210202005450d0020052802002106200510202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b200141c0006a2802002106200141386a280200210202402001413c6a2802002205450d00200521040340200228026021022004417f6a22040d000b03402005417f6a22050d000b0b02402006450d004100210541002104410021130340200320133602ec01200320043602e801200320023602e401200320053602e001200341f0006a200341e0016a106120032802782105200328027c2102200328028001210420032802840121132006417f6a22060d000b0b0240200241908cc500460d0020022802002105200210202005450d0020052802002106200510202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b0240200141c4006a2802004102490d00200141c8006a280200200141cc006a280200200141d0006a28020010720b200141dc006a2802002106200141d4006a28020021020240200141d8006a2802002201450d00200121050340200228026021022005417f6a22050d000b03402001417f6a22010d000b0b02402006450d004100210141002105410021040340200320043602ec01200320053602e801200320023602e401200320013602e001200341f0006a200341e0016a106120032802782101200328027c2102200328028001210520032802840121042006417f6a22060d000b0b200241908cc500460d0220022802002101200210202001450d0220012802002102200110202002450d02024020022802002201450d000340200210202001210220012802002206210120060d000b0b200210200c020b200210200c010b200210200b200020093602042000200a360200200341d0036a24000bfb0201057f230041f0006b22022400024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032001370033200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003413b20021001200241d0006a41186a2004290300370300200241d0006a41106a2005290300370300200241d0006a41086a2006290300370300200220022903003703502003102002400240200241d0006a412041e4fdc600410041001002417f460d0020022001107b200041046a200241cc0010cd051a410021030c010b200041e2adc000360204200041086a4121360200410121030b20002003360200200241f0006a24000f0b41334101102d000b41e6004101102d000bee1b03037f037e087f230041a0026b22022400024002400240024002400240024020014202560d00024002402001a70e03000103000b20024198016a41086a22034200370300200242003703980141e6ebc200412120024198016a1000200241286a41086a200329030037030020022002290398013703282002410036029801200241286a411020024198016a100321032002280298012204417f460d032003450d030240024020044108490d002003290000210120031020200241d8006a200110800120024198016a41386a200241d8006a41386a29030037030020024198016a41306a200241d8006a41306a29030037030020024198016a41286a200241d8006a41286a29030037030020024198016a41206a200241d8006a41206a29030037030020024198016a41186a200241d8006a41186a29030037030020024198016a41106a200241d8006a41106a29030037030020024198016a41086a200241d8006a41086a2903003703002002200229035837039801200241b4016a22032000470d01410121030c090b41ceb8c400413320024198016a41fcbfc4004184b9c400102e000b20032000412010cf054521030c070b200241086a10d102410021032002290308a7450d06200241d8006a200229031010d20220024198016a200241d8006a10d302024020022903a8014202510d0020022903980122014203510d07200241c0016a2903002105200241b8016a290300210620022903a0012107200241f8016a22082000460d040340024020014201520d0020024198016a200710d40220082000412010cf0520022802e001220472450d080240200441014b0d00024020040e020200020b20022802ec01450d0120022802e80110200c010b20022802ec01450d0020022802e80110200b2006a7450d08200241d8006a200510d20220024198016a200241d8006a10d30220022903a8014202510d0620022903c001210520022903b801210620022903a001210720022903980122014203520d000c080b0b418ddbc50041dd0041ecdbc5001045000b41002103200142e707580d0502400240024002400240024002404121101e2204450d0041002103200441206a41002d0096f0423a0000200441186a410029008ef042370000200441106a4100290086f042370000200441086a41002900feef42370000200441002900f6ef423700002004412141c20010222204450d01200420014298787c220137002120024198016a41186a2208420037030020024198016a41106a2209420037030020024198016a41086a220a420037030020024200370398012004412920024198016a1001200241d8006a41186a2008290300370300200241d8006a41106a2009290300370300200241d8006a41086a200a290300370300200220022903980137035820041020200241d8006a412041e4fdc600410041001002417f460d0c4121101e2203450d02200341206a41002d0096f0423a0000200341186a410029008ef042370000200341106a4100290086f042370000200341086a41002900feef42370000200341002900f6ef423700002003412141c20010222203450d032003200137002120024198016a41186a2204420037030020024198016a41106a2208420037030020024198016a41086a2209420037030020024200370398012003412920024198016a1001200241d8006a41186a2004290300370300200241d8006a41106a2008290300370300200241d8006a41086a20092903003703002002200229039801370358200310202002410036029801200241d8006a412020024198016a100321030240024002400240024002402002280298012204417f460d002003450d002004450d0c20032d0000220841024b0d0c2004417f6a2104024020080e03030500030b200441074b0d010c0c0b200241386a21030c020b200329000121012003102020024198016a200110d5022002280298014101460d08200241d8006a41086a200241f0016a290300370300200241d8006a41106a200241f8016a290300370300200241d8006a41186a20024180026a290300370300200241f8006a20024188026a290300370300200241d8006a41286a20024190026a2f01003b01002002200241e8016a290300370358200241e4016a280200210b200241e0016a2802002103200241d8016a280200210c200241d4016a2802002104200241cc016a280200210d200241c8016a280200210820024198016a41286a280200210e200241bc016a2802002109200241b4016a280200210a20024198016a41186a280200210f200241386a41086a200241ea006a290100370300200241386a41106a200241f2006a290100370300200241386a41186a200241fa006a290100370300200220022901623703380240200a450d00200f10200b02402009450d00200e450d00200910200b02402008450d00200d450d00200810200b02402004450d00200c450d00200410200b02402003450d00200b450d00200310200b200241386a21030c030b20031020200241386a21030b20024198016a41086a22044200370300200242003703980141e6ebc200412120024198016a1000200241286a41086a200429030037030020022002290398013703282002410036029801200241286a411020024198016a100321042002280298012208417f460d0a2004450d0a024020084108490d002004290000210120041020200241d8006a200110800120024198016a41206a200241d8006a41206a29030037030020024198016a41186a200241d8006a41186a29030037030020024198016a41286a200241d8006a41286a29030037030020024198016a41306a200241d8006a41306a29030037030020024198016a41386a200241d8006a41386a290300370300200320022902b401370000200341086a200241bc016a290200370000200341106a200241c4016a290200370000200341186a200241cc016a2902003700000c020b41ceb8c400413320024198016a41fcbfc4004184b9c400102e000b20044108490d07200329000121012003102020024198016a200110d6022002280298014101460d06200241d8006a41086a20024180026a2903002201370300200241d8006a41106a20024188026a2903002206370300200241d8006a41186a20024190026a2903002205370300200241f8006a20024198026a2903002207370300200241386a41086a2006370300200241386a41106a2005370300200241386a41186a20073703002002200241f8016a29030037035820022001370338200241f4016a2802002103200241f0016a280200210802400240200241e8016a280200220441014b0d0020040e020100010b2003450d00200810200b200241386a21030b20024198016a41186a200341186a29000037030020024198016a41106a200341106a29000037030020024198016a41086a200341086a2900003703002002200329000037039801024020024198016a2000470d00410121030c0d0b200020024198016a412010cf054521030c0c0b41214101102d000b41c2004101102d000b41214101102d000b41c2004101102d000b2002200229029c0137035841effbc2004112200241d8006a4184fcc2004194fcc200102e000b2002200229029c0137035841a4fcc2004112200241d8006a4184fcc20041b8fcc200102e000b41ceb8c400413320024198016a41fcbfc4004184b9c400102e000b200241186a10d102410021032002290318a7450d04200241d8006a200229032010d20220024198016a200241d8006a10d30202400240024020022903a8014202510d0020022903980122054203510d07200241c0016a2903002106200241b8016a290300210120022903a0012107200241ea016a22092000460d010340024020054202520d0020024198016a200710d70220092000412010cf052104024020022802ac01450d0020022802a80110200b024020022802b4012208450d0020022802b801450d00200810200b024020022802c0012208450d0020022802c401450d00200810200b024020022802cc012208450d0020022802d001450d00200810200b024020022802d8012208450d0020022802dc01450d00200810200b20040d00410121030c090b2001a7450d08200241d8006a200610d20220024198016a200241d8006a10d30220022903a8014202510d0320022903c001210620022903b801210120022903a001210720022903980122054203510d080c000b0b418ddbc50041dd0041ecdbc5001045000b024020054202510d0003402001a7450d07200241d8006a200610d20220024198016a200241d8006a10d30220022903a8014202510d0220022903c001210620022903b8012101200229039801427e7c22054201560d000b02402005a70e020007000b20022903a00121070b20024198016a200710d702024020022802ac01450d0020022802a80110200b024020022802b4012203450d0020022802b801450d00200310200b024020022802c0012203450d0020022802c401450d00200310200b024020022802cc012203450d0020022802d001450d00200310200b024020022802d8012203450d0020022802dc01450d00200310200b410121030c050b418ddbc50041dd0041ecdbc5001045000b410021030c030b0340024020014201520d0020024198016a200710d402024020022802e001220041014b0d00024020000e020500050b20022802ec01450d0120022802e80110200c010b20022802ec01450d0020022802e80110200b2006a7450d03200241d8006a200510d20220024198016a200241d8006a10d30220022903a8014202510d0120022903c001210520022903b801210620022903a001210720022903980122014203520d000c030b0b418ddbc50041dd0041ecdbc5001045000b410121030b200241a0026a240020030bd10201047f230041d0006b220324002003410036022820012002200341286a10032104024002400240024020032802282205417f460d0020040d010b200041003a00000c010b41002101200341003a0048034020052001460d02200341286a20016a200420016a2d00003a00002003200141016a22023a00482002210120024120470d000b200341086a41186a2201200341286a41186a290300370300200341086a41106a2202200341286a41106a290300370300200341086a41086a2206200341286a41086a2903003703002003200329032837030802402005450d00200410200b20002003290308370001200041013a0000200041196a2001290300370000200041116a2002290300370000200041096a20062903003700000b200341d0006a24000f0b0240200141ff0171450d00200341003a00480b41ceb8c4004133200341286a41fcbfc4004184b9c400102e000baa5205037f017e087f037e047f230041c0036b22052400200541286a200141136a2900003703002005412e6a200141196a29000037010020052001410b6a2900003703204101210602400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000220741014b0d00024020070e020002000b200541d8016a41106a200541a8026a41106a290300370300200541d8016a41086a200541a8026a41086a2903002208370300200541086a20083703002005410e6a200541d8016a410e6a290100370100200520052903a8023703000c020b41e6aac0002109411e210a0c150b200141076a2800002107200141036a280000210b20012f0001210c200541a8026a410e6a200541206a410e6a290100370100200541a8026a41086a2201200541206a41086a290300370300200541d8016a41106a200541a8026a41106a290300370300200541d8016a41086a220d20012903002208370300200541086a220620083703002005410e6a2209200541d8016a410e6a29010037010020052005290320370300200520073601262005200b3601222005200c3b0120200541326a2006290300370100200541386a20092901003700002005200529030037012a20014200370300200542003703a80241e6ebc2004121200541a8026a1000200d2001290300370300200520052903a8023703d801200541003602a802200541d8016a4110200541a8026a10032101024020052802a8022207417f460d002001450d0020074108490d0d2001290000210820011020200541a8026a2008108001200541c4026a200541206a412010cf05450d010b200541a8026a41086a22014200370300200542003703a80241d4bfc4004108200541a8026a1000200541d8016a41086a22072001290300370300200520052903a8023703d801200541a8026a200541d8016a4110106920052d00a8022101200541b8016a41186a220b200541c1026a290000370300200541b8016a41106a220c200541b9026a290000370300200541b8016a41086a220d200541b1026a290000370300200520052900a9023703b8010240024020014101460d00200541d8016a41186a4200370300200541d8016a41106a420037030020074200370300200542003703d8010c010b200541d8016a41186a200b290300370300200541d8016a41106a200c2903003703002007200d290300370300200520052903b8013703d8010b200541d8016a200541206a412010cf050d010b2003280208210e200328020421012003280200210d20022802042107200228020021062002280208210b200541a8026a41086a220c4200370300200542003703a802418388c7004122200541a8026a1000200541d8016a41086a200c290300370300200520052903a8023703d801200541a8026a200541d8016a107502400240024020052f01aa02410020052f01a802410146220c1b220941ffff0371200b41ffff0371220a4d0d0041efd2c00021094117210c0c010b024020052f01ac024100200c1b20096a41ffff0371200a4f0d004186d3c00021094116210c0c010b200541a8026a41086a220c4200370300200542003703a80241a588c7004129200541a8026a1000200541d8016a41086a200c290300370300200520052903a8023703d801200541a8026a200541d8016a1075411d210c419cd3c000210920052f01aa02410020052f01a802410146220a1b220f41ffff0371200e41ffff037122104b0d0020052f01ac024100200a1b200f6a41ffff037120104f0d010b02402001450d00200d10200b200cad210802402007450d00200610200b2008a7210a410021060c140b42002108200541a8026a41086a220c4200370300200542003703a80241fd86c700411a200541a8026a1000200541d8016a41086a200c290300370300200520052903a8023703d801200541003602a802200541d8016a4110200541a8026a1003210c024020052802a8022202417f460d00200c450d0020024108490d02200c2900002108200c10200b200541dc026a200e360200200541a8026a41306a2001360200200541d0026a200b360200200541cc026a2007360200200541a8026a41186a4200370300200541a8026a41106a4280808080c0003703002005200d3602d402200520063602c802200542083703b002200520083703a8024118101e220b450d02200b41106a41002900dc8647370000200b41086a41002900d48647370000200b41002900cc8647370000200b411841301022220b450d03200b2008370018200541b8016a41186a220c4200370300200541b8016a41106a22024200370300200541b8016a41086a22034200370300200542003703b801200b4120200541b8016a1001200541d8016a41186a200c290300370300200541d8016a41106a2002290300370300200541d8016a41086a2003290300370300200520052903b8013703d801200b1020200541203602242005200541d8016a360220200541a8026a200541206a107602402007450d00200610200b02402001450d00200d10200b42002111200541a8026a41086a22014200370300200542003703a80241fd86c700411a200541a8026a1000200541d8016a41086a2001290300370300200520052903a8023703d801200541003602a802200541d8016a4110200541a8026a10032101024020052802a8022207417f460d002001450d0020074108490d0520012900002111200110200b200541a8026a41086a22014200370300200542003703a80241fd86c700411a200541a8026a1000200541d8016a41086a2001290300370300200520052903a8023703d8012005201142017c3703a802200541d8016a4110200541a8026a41081005200541a8026a41106a2008370300200141003a0000200541153a00a802200541a8026a107720052008370318200541206a200441cc0010cd051a4133101e2201450d052001412f6a410028009aaa40360000200141286a4100290093aa40370000200141206a410029008baa40370000200141186a4100290083aa40370000200141106a41002900fba940370000200141086a41002900f3a940370000200141002900eba9403700002001413341e60010222201450d0620012008370033200541b8016a41186a22074200370300200541b8016a41106a220b4200370300200541b8016a41086a220c4200370300200542003703b8012001413b200541b8016a1001200541f0006a41186a2007290300370300200541f0006a41106a200b290300370300200541f0006a41086a200c290300370300200520052903b80137037020011020200541003602a802200541f0006a4120200541a8026a1003210f024020052802a8022210417f460d00200f450d00200520103602dc012005200f3602d801200541a8026a200541d8016a107c20052903f80222114202510d0820054190036a290300210820054188036a2903002112200541e4026a280200210d200529038003211320052802e802210620052802e002210120052802dc02211420052802d802211520052802d402211620052802d002211720052802cc02210920052802c802210420052802c402210720052802c002210a20052802bc02210220052802b802210b20052802b002210e20052802ac02210320052802a802210c02402010450d00200f10200b02402003450d002003210f0340200c280260210c200f417f6a220f0d000b03402003417f6a22030d000b0b0240200e450d00410021034100210f410021100340200520033602e4012005200f3602e0012005200c3602dc01200520103602d801200541a8026a200541d8016a106120052802b002211020052802b402210c20052802b802210f20052802bc022103200e417f6a220e0d000b0b200c41908cc500460d12200c280200210e200c1020200e450d12200e2802002103200e10202003450d122003280200220c0d0a0c110b2005200541186a36029401200541b8016a41186a22014200370300200541b8016a41106a22074200370300200541b8016a41086a220b4200370300200542003703b801419eaac000413b200541b8016a1001200541d8016a41186a2001290300370300200541d8016a41106a2007290300370300200541d8016a41086a200b290300370300200520052903b8013703d801200541003602a802200541d8016a4120200541a8026a10032101024020052802a8022207417f460d002001450d000240024020074108490d00200129000021082001102020054198016a2008107d200541003602a80220054198016a4120200541a8026a10032101024020052802a8022207417f460d0020010d020b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b2005200736029c032005200136029803200541a8026a20054198036a107c20052903f80222114202510d09200541d8016a200541a8026a41d00010cd051a200541b8016a41106a220b20054190036a290300370300200541b8016a41086a220c20054188036a29030037030020052005290380033703b80102402007450d00200110200b200541a8026a200541d8016a41d00010cd051a20054198036a41106a2201200b29030037030020054198036a41086a2207200c290300370300200520052903b80137039803200541d8016a200541a8026a41cc0010cd051a200541d0016a220b2001290300370300200520113703b80120052005290398033703c0012005200729030022113703c801200541a8026a200541d8016a41cc0010cd051a200541a8026a41d0006a200b410020114201511b360200200520054194016a3602f402200541003602a0032005420137039803200541a8026a20054198036a106220052d00b402210b0240200528029c0320052802a0032207460d0020052802980321010c100b200741016a22012007490d102007410174220c2001200c20014b1b220c4100480d100240024020070d00200c101e21010c010b2005280298032007200c102221010b02402001450d002005200c36029c0320052001360298030c100b200c4101102d000b42002112200541b8016a41186a22014200370300200541b8016a41106a22074200370300200541b8016a41086a220b4200370300200542003703b801419eaac000413b200541b8016a1001200541d8016a41186a2001290300370300200541d8016a41106a2007290300370300200541d8016a41086a200b290300370300200520052903b8013703d801200520052903183703a802200541d8016a4120200541a8026a41081005420021110c120b200428020821072004280200210102402004280204220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b200141908cc500460d0c2001280200210b20011020200b450d0c200b2802002107200b10202007450d0c200728020022010d090c0b0b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b41184101102d000b41304101102d000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b41334101102d000b41e6004101102d000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b034020031020200c2103200c280200220e210c200e0d000c070b0b034020071020200121072001280200220b2101200b0d000c020b0b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b200710200b200441186a2802002107200428021021010240200441146a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200441246a2802002107200428021c21010240200441206a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020042802284102490d002004412c6a280200200441306a280200200441346a28020010720b200441c0006a28020021072004280238210102402004413c6a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b0240200341046a280200450d00200328020010200b41c9adc00021094119210a200241046a280200450d06200228020010200c060b2005200741016a3602a003200120076a200b3a000020052d00f002210b02400240024002400240024002400240200528029c0320052802a0032207470d00200741016a220c2007490d082007410174220d200c200d200c4b1b220c4100480d080240024020070d00200c101e21010c010b20012007200c102221010b2001450d012005200c36029c0320052001360298030b2005200741016a3602a003200120076a200b3a0000200541b8026a20054198036a1062200541c4026a20054198036a106220052802d002220141024b0d0620010e03010203010b200c4101102d000b0240200528029c0320052802a0032201460d0020052802980321070c040b200141016a22072001490d052001410174220b2007200b20074b1b220b4100480d050240024020010d00200b101e21070c010b2005280298032001200b102221070b02402007450d002005200b36029c0320052007360298030c040b200b4101102d000b0240200528029c0320052802a0032201460d0020052802980321070c020b200141016a22072001490d042001410174220b2007200b20074b1b220b4100480d040240024020010d00200b101e21070c010b2005280298032001200b102221070b02402007450d002005200b36029c0320052007360298030c020b200b4101102d000b02400240200528029c0320052802a0032201460d0020052802980321070c010b200141016a22072001490d042001410174220b2007200b20074b1b220b4100480d040240024020010d00200b101e21070c010b2005280298032001200b102221070b02402007450d002005200b36029c0320052007360298030c010b200b4101102d000b2005200141016a3602a003200720016a41023a0000200541d4026a20054198036a10640c020b2005200141016a3602a003200720016a41013a00000c010b2005200141016a3602a003200720016a41003a00000b200541e0026a20054198036a106220052802ec02210b02400240200528029c03220720052802a00322016b4104490d0020052802980321070c010b200141046a220c2001490d012007410174220d200c200d200c4b1b220c4100480d010240024020070d00200c101e21070c010b2005280298032007200c102221070b02402007450d002005200c36029c0320052007360298030c010b200c4101102d000b2005200141046a3602a003200720016a200b360000200541a8026a41cc006a20054198036a108101200528029c03210120054198016a4120200528029803220720052802a003100502402001450d00200710200b20052802b002210720052802a8022101024020052802ac02220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541c0026a280200210720052802b80221010240200541bc026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541cc026a280200210720052802c40221010240200541c8026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020052802d0024102490d00200541d4026a280200200541d8026a280200200541dc026a28020010720b200541e8026a280200210720052802e00221010240200541e4026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200528029401210142002111200541b8016a41186a22074200370300200541b8016a41106a220b4200370300200541b8016a41086a220c4200370300200542003703b801419eaac000413b200541b8016a1001200541d8016a41186a2007290300370300200541d8016a41106a200b290300370300200541d8016a41086a200c290300370300200520052903b8013703d801200520012903003703a802200541d8016a4120200541a8026a41081005420121120c030b1027000b200310200b02402002450d002002210c0340200b280260210b200c417f6a220c0d000b03402002417f6a22020d000b0b0240200a450d004100210c410021024100210303402005200c3602e401200520023602e0012005200b3602dc01200520033602d801200541a8026a200541d8016a106120052802b002210320052802b402210b20052802b802210220052802bc02210c200a417f6a220a0d000b0b0240200b41908cc500460d00200b2802002102200b10202002450d002002280200210c20021020200c450d000240200c280200220b450d000340200c1020200b210c200b2802002202210b20020d000b0b200c10200b02402004450d002004210b034020072802602107200b417f6a220b0d000b03402004417f6a22040d000b0b02402009450d004100210b4100210c4100210403402005200b3602e4012005200c3602e001200520073602dc01200520043602d801200541a8026a200541d8016a106120052802b002210420052802b402210720052802b802210c20052802bc02210b2009417f6a22090d000b0b0240200741908cc500460d002007280200210c20071020200c450d00200c280200210b200c1020200b450d000240200b2802002207450d000340200b10202007210b2007280200220c2107200c0d000b0b200b10200b024020174102490d0020162015201410720b0240200d450d00200d21070340200128026021012007417f6a22070d000b0340200d417f6a220d0d000b0b02402006450d00410021074100210b4100210c03402005200c3602e4012005200b3602e001200520013602dc01200520073602d801200541a8026a200541d8016a106120052802b002210720052802b402210120052802b802210b20052802bc02210c2006417f6a22060d000b0b200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541a8026a200541206a41cc0010cd051a20054190036a200837030020054188036a201237030020054180036a2013370300200520113703f802200541203602dc012005200541f0006a3602d801200541a8026a200541d8016a107f20052802b002210720052802a8022101024020052802ac02220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200b3602c001200520013602bc012005200c3602b801200541d8016a200541b8016a106120052802e001210c20052802e401210120052802e801210b20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541c0026a280200210720052802b80221010240200541bc026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200c3602c001200520013602bc012005200b3602b801200541d8016a200541b8016a106120052802e001210b20052802e401210120052802e801210c20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541cc026a280200210720052802c40221010240200541c8026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200c3602c001200520013602bc012005200b3602b801200541d8016a200541b8016a106120052802e001210b20052802e401210120052802e801210c20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020052802d0024102490d00200541d4026a280200200541d8026a280200200541dc026a28020010720b200541e8026a280200210720052802e00221010240200541e4026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200c3602c001200520013602bc012005200b3602b801200541d8016a200541b8016a106120052802e001210b20052802e401210120052802e801210c20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b410021094119210a0c010b200428020821072004280200210102402004280204220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200441186a2802002107200428021021010240200441146a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200441246a2802002107200428021c21010240200441206a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020042802284102490d002004412c6a280200200441306a280200200441346a28020010720b200441c0006a28020021072004280238210102402004413c6a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b2006450d000240200341046a280200450d00200328020010200b200241046a280200450d00200228020010200b2000200a36020420002009360200200541c0036a24000beb0201027f0240024020002d0000220141114b0d0002400240024002400240024002400240024020010e120a0a0a0a0a0a0a0a000a01020304050607080a0b200041086a280200450d09200041046a28020010200f0b200041086a280200450d08200041046a28020010200f0b200041086a280200450d07200041046a28020010200f0b200041086a280200450d06200041046a28020010200f0b200041086a280200450d05200041046a28020010200f0b200041086a280200450d04200041046a28020010200f0b200041086a280200450d03200041046a28020010200f0b200041086a280200450d02200041046a28020010200f0b02402000410c6a2802002202450d00200041046a28020021012002410c6c210203400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200041086a280200450d01200028020410200c010b200041086a280200450d00200041046a28020010200f0b0bdf1103127f037e0c7f230041d0006b22032400200228020022042002280208220541057422066a210720022802042108024002400240024020050d00410821094100210a4100210b2004210c0c010b200341296a210d200441286a210e200641606a210f200341206a4104722110200341206a41106a2111200341206a41186a2112410021134100210a4100210b41082109200421020340200341206a41086a22052002410c6a2902003703002011200241146a29020037030020122002411c6a28020036020020032002290204370320200241206a210c200228020022144103460d01200341186a20122802002202360200200341106a20112903002215370300200341086a2005290300221637030020032003290320221737030020102017370200201041086a2016370200201041106a2015370200201041186a2002360200200320143602200240024002400240024002400240024020140e03000102000b200341c2006a41026a200d41026a2d00003a00002003200d2f00003b014220032903302115200328022c211820032d002821050c040b200328022421022001280200220621192001280204221a211b03400240024020192f0106221c0d00410021050c010b201c410274211d201941086a211e417f210503400240201d0d00201c21050c020b201e280200211f201d417c6a211d200541016a2105201e41046a211e0240417f201f200247201f20024b1b41016a0e03020001020b0b03400240024020062f0106221f0d00410021050c010b201f410274211d200641086a211e417f210503400240201d0d00201f21050c020b201e2802002119201d417c6a211d200541016a2105201e41046a211e0240417f2019200247201920024b1b41016a0e03020001020b0b200620054103746a41386a2903002115410921050c070b0240201a450d00201a417f6a211a200620054102746a4190016a28020021060c010b0b41e988c700412b41fc89c7001028000b0240201b450d00201b417f6a211b201920054102746a4190016a28020021190c010b0b200041ce88c70036020420004101360200200041086a411b360200200341206a10cb050c010b20032802242120200328022821210240200328022c22020d0041082118420021150c020b202020024104746a21224100210241082118420021152020211f0340201f41086a290300211602400240201f280200220541024b0d00024020050e03000105000b201f28020421022001280200220621192001280204221b211c03400240024020192f010622230d00410021050c010b2023410274211d201941086a211e417f210503400240201d0d00202321050c020b201e280200211a201d417c6a211d200541016a2105201e41046a211e0240417f201a200247201a20024b1b41016a0e03020001020b0b03400240024020062f0106221a0d00410021050c010b201a410274211d200641086a211e417f210503400240201d0d00201a21050c020b201e2802002119201d417c6a211d200541016a2105201e41046a211e0240417f2019200247201920024b1b41016a0e03020001020b0b200620054103746a41386a290300211602400240024020154220882217a722052015a7460d00200521020c010b200541016a22062005490d0c2017a72202410174221d20062006201d491b220641ffffffff01712006470d0c2006410374221d4100480d0c0240024020050d00201d101e21180c010b20182002410374201d102221180b2018450d012006ad21150b201820024103746a2016370300201542ffffffff0f83200241016a2202ad4220868421150c060b201d4108102d000b0240201b450d00201b417f6a211b200620054102746a4190016a28020021060c010b0b41e988c700412b418c8ac7001028000b0240201c450d00201c417f6a211c201920054102746a4190016a28020021190c010b0b200041ce88c70036020420004101360200200041086a411b36020002402021450d00202010200b2015a7450d03201810200c030b0240024020022015a7460d002015422088a721050c010b200241016a22052002490d06200241017422062005200620054b1b220541ffffffff01712005470d06200541037422064100480d060240024020020d002006101e21180c010b201820024103742006102221180b02402018450d00201542208821172005ad21152017a7220521020c010b20064108102d000b201820024103746a2016370300201542ffffffff0f83200541016a2202ad4220868421150b201f41106a221f2022460d020c000b0b02402007200c460d00034002400240200e41786a280200220241014b0d00024020020e020002000b200e106b0c010b200e280200450d00200e417c6a28020010200b200e41206a210e200f41606a220f0d000b0b02402008450d00200410200b0240200a450d002009210203402002106b200241186a2102201341686a22130d000b0b200b450d07200910200c070b411221052021450d00202010200b200341cc006a41026a2206200341c2006a41026a2d00003a0000200320032f01423b014c20032f0138211d200a200b470d01200a4101742202200a41016a221e2002201e4b1b220bad42187e2216422088a70d002016a722024100480d0002400240200a0d002002101e21090c010b2009200a41186c2002102221090b20090d0120024108102d000b1027000b2009200a41186c6a220220053a0000200241046a2018360200200220032f014c3b0001200241036a20062d00003a00002002201d3b0110200241086a201537030020022003280146360112200241166a200341c6006a41046a2f01003b010002400240201441024b0d0020140e03010001010b200341206a10cb050b200a41016a210a200f41606a210f200e41206a210e201341186a2113200c2102200c2007470d000c020b0b2007200c460d000340200c220241206a210c024002402002280200220541014b0d00024020050e020002000b200241086a106b0c010b200241086a280200450d00200241046a28020010200b2007200c470d000b0b02402008450d00200410200b20002009360204200041003602002000410c6a200a360200200041086a200b3602000b200341d0006a24000bab2e03047f017e2a7f230041b0016b22072400024002400240024020051089010d0020062802002108200628020821094186acc000210a410e21040c010b200741386a2005108a012007290340210b0240200741cc006a280200450d00200728024810200b200728025421090240200741dc006a280200220c450d00200c41186c210d2009210c0340200c106b200c41186a210c200d41686a220d0d000b0b0240200741d8006a280200450d00200910200b200741086a200b2006280200220820062802082209108b01024002400240024002402007280208220a0d002006280204210e200741386a2001200220032004ad2005108c01200741c0006a29030021020240024020072802384101460d00200741c8006a2903002103200741386a200b106720072802384101470d01200741c0006a2802002104200728023c210a0c060b200728023c210a2002a721040c050b200741fc006a280200210f200741f8006a2802002110200741f4006a2802002101200741f0006a2802002111200741ec006a2802002112200741e8006a2802002113200741e4006a2802002114200741e0006a2802002115200741dc006a2802002116200741d8006a2802002106200741d4006a2802002117200741d0006a2802002118200741cc006a280200210d410c2104200741386a410c6a2802002119200741c0006a280200211a200728023c210c02402002a7220a41024d0d004194acc000210a0c030b0240200a0e03040200040b200c211b201a211c034002400240201b2f0106221d0d004100210a0c010b201d4103742104201b41086a211e417f210a0340024020040d00201d210a0c020b201e2903002102200441786a2104200a41016a210a201e41086a211e417f200220035220022003561b41016a0e03010600010b0b0240201c0d0041c0acc000210a412921040c040b201c417f6a211c201b200a4102746a41e0006a280200211b0c000b0b200728020c21040c040b200741c8006a2d000041ff01710d0141a0acc000210a412021040b0240201a450d00201a211e0340200c280260210c201e417f6a221e0d000b0340201a417f6a221a0d000b0b02402019450d004100211a4100211e4100211b03402007201a36021c2007201e3602182007200c3602142007201b360210200741386a200741106a10612007280240211b2007280244210c2007280248211e200728024c211a2019417f6a22190d000b0b0240200c41908cc500460d00200c2802002119200c10202019450d002019280200211a20191020201a450d000240201a280200220c450d000340201a1020200c211a200c2802002219210c20190d000b0b201a10200b02402018450d002018210c0340200d280260210d200c417f6a220c0d000b03402018417f6a22180d000b0b02402017450d004100210c4100211a4100211803402007200c36021c2007201a3602182007200d36021420072018360210200741386a200741106a1061200728024021182007280244210d2007280248211a200728024c210c2017417f6a22170d000b0b0240200d41908cc500460d00200d280200210c200d1020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c280200221a210c201a0d000b0b200d10200b02402016450d002016210c034020062802602106200c417f6a220c0d000b03402016417f6a22160d000b0b02402015450d004100210c4100210d4100211a03402007200c36021c2007200d360218200720063602142007201a360210200741386a200741106a10612007280240211a200728024421062007280248210d200728024c210c2015417f6a22150d000b0b0240200641908cc500460d002006280200210c20061020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200b024020144102490d0020132012201110720b02402010450d002010210c034020012802602101200c417f6a220c0d000b03402010417f6a22100d000b0b0240200f450d004100210c4100210d4100210603402007200c36021c2007200d3602182007200136021420072006360210200741386a200741106a106120072802402106200728024421012007280248210d200728024c210c200f417f6a220f0d000b0b200141908cc500460d012001280200210c20011020200c450d01200c280200210d200c1020200d450d010240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200c010b02400240024020051089010d004180ddc000210a411a21040c010b024002400240024002404119101e220a450d00200a41186a41002d00fc86473a0000200a41106a41002900f48647370000200a41086a41002900ec8647370000200a41002900e48647370000200a411941321022220a450d01200a2005370019200741386a41186a22044200370300200741386a41106a221e4200370300200741386a41086a221b420037030020074200370338200a4121200741386a1001200741106a41186a2004290300370300200741106a41106a201e290300370300200741106a41086a201b29030037030020072007290338370310200a102020074100360238200741106a4120200741386a1003210a2007280238221e417f460d03200a450d032007201e3602342007200a360230200741386a200741306a108d0120072802482204450d02200741dc006a280200211f200741d8006a2802002120200741d4006a280200211c200728024c211b20072903402102201e450d04200a10200c040b41194101102d000b41324101102d000b41ceb8c4004133200741a8016a41fcbfc4004184b9c400102e000b410021040b024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2002420020041b370018200741386a41186a221e4200370300200741386a41106a221d4200370300200741386a41086a2221420037030020074200370338200a4120200741386a1001200741106a41186a201e290300370300200741106a41106a201d290300370300200741106a41086a202129030037030020072007290338370310200a10204100210a20074100360238200741106a4120200741386a1003211e2007280238221d417f460d03201e450d032007201d3602342007201e360230200741386a200741306a10732007280240220a450d02200741e8006a2802002122200741e4006a2802002123200741dc006a2802002124200741d8006a2802002125200741d4006a2802002126200741d0006a2802002127200741cc006a2802002128200741c8006a280200212120072802442129201d450d04201e10200c040b41184101102d000b41304101102d000b41ceb8c4004133200741a8016a41fcbfc4004184b9c400102e000b0b201b410020041b212a201c410820041b211d2020410020041b212b201f410020041b212020234101200a1b212c20254101200a1b212d20224100200a1b212520244100200a1b212420264100200a1b212620274100200a1b212320284104200a1b212720214100200a1b212120294100200a1b21222004410220041b212e200a4108200a1b2129024002400240024002400240024002400240024002402009450d002008200941186c6a212f201d202041186c6a211b2008211e0240024002400340201e41186a2128201d210a03400240201b200a470d0041cce0c000210a41e60021040c040b200a41106a2104200a41186a221c210a201e2f011020042f01002204470d000b202120044d0d052029200441306c6a220a450d05200741106a201e108f01410021300240024002400240024002400240024002400240024002400240024002400240024002400240200a2f01000e13120102030405060708090a0b0c0d0e0f101100120b200a2903082102200a2f01022131411221300c110b410121300c100b410221300c0f0b410321300c0e0b410421300c0d0b410521300c0c0b410621300c0b0b410721300c0a0b200a2f01022131410821300c090b200a2903082102410921300c080b200a2f01022131410a21300c070b200a2f01022131410b21300c060b200a2f01022131410c21300c050b200a2f01022131410d21300c040b200a2f01022131410e21300c030b200a2f01022131410f21300c020b200a2f01022131411021300c010b200a41046a2f01002132200a2f01022131411121300b200a2802182204417f4c0d06200a41106a2802002133200a41286a2d000021340240024020040d004101211f0c010b2004101e221f450d080b201f2033200410cd052133200a41246a280200221f417f4c0d06200a28021c213502400240201f0d004101210a0c010b201f101e220a450d090b200a2035201f10cd05210a20072002370340200720323b013c200720313b013a200720303b01382007201f36025c2007201f3602582007200a360254200720043602502007200436024c200720333602482007203441ff01714100473a00602007200741106a200741386a1090012007280200220a0d01200741386a201e108f01201c41686a220a106b200a41086a200741386a41086a290300370300200a20072903383703002028211e2028202f470d000b4119101e220a450d08200a41186a41002d00fc86473a0000200a41106a41002900f48647370000200a41086a41002900ec8647370000200a41002900e48647370000200a411941321022220a450d09200a2005370019200741386a41186a22044200370300200741386a41106a221e4200370300200741386a41086a221b420037030020074200370338200a4121200741386a1001200741106a41186a2004290300370300200741106a41106a201e290300370300200741106a41086a201b29030037030020072007290338370310200a102020074100360238200741106a4120200741386a1003210a2007280238221b417f470d020c0b0b200728020421040b02402020450d00202041186c211b201d211e0340201e106b201e41186a211e201b41686a221b0d000b0b0240202b450d00201d10200b02402021450d00202141306c211b202941206a211e03400240201e41746a280200450d00201e41706a28020010200b0240201e280200450d00201e417c6a28020010200b201e41306a211e201b41506a221b0d000b0b02402022450d00202910200b02402026450d002026410c6c211b2027211e03400240201e41046a280200450d00201e28020010200b201e410c6a211e201b41746a221b0d000b0b02402023450d00202710200b02402024450d00202d10200b02402025450d00202c10200b202a450d0c202e10200c0c0b200a450d082007201b3602342007200a360230200741386a200741306a108d012007280248221e450d07200741dc006a2802002128200741d8006a2802002130200741d4006a2802002104200741d0006a280200211f200728024c211c2007290340210320072903382102201b450d09200a10200c090b02402020450d00202041186c2104201d210a0340200a106b200a41186a210a200441686a22040d000b0b202b450d09201d10200c090b41e988c700412b41bce0c0001028000b102c000b20044101102d000b201f4101102d000b41194101102d000b41324101102d000b41ceb8c4004133200741a8016a41fcbfc4004184b9c400102e000b4100211e0b20044108201e1b211b024020284100201e1b220a450d00200a41186c2104201b210a0340200a106b200a41186a210a200441686a22040d000b0b20024200201e1b210220034200201e1b2103201f4100201e1b211f201c4100201e1b2104201e4102201e1b210a0240201e450d002030450d00201b10200b200741dc006a2020360200200741386a41206a202b360200200741d0006a201f360200200741cc006a20043602002007201d3602542007200a360248200720033703402007200237033802400240200a0d00200741106a412010040c010b200741203602342007200741106a360230200741386a200741306a10820102402004450d00200a10200b02402020450d00202041186c2104201d210a0340200a106b200a41186a210a200441686a22040d000b0b202b450d00201d10200b200741c8006a2005370300200741c0006a41033a0000200741153a0038200741386a10770b02402021450d00202141306c2104202941206a210a03400240200a41746a280200450d00200a41706a28020010200b0240200a280200450d00200a417c6a28020010200b200a41306a210a200441506a22040d000b0b02402022450d00202910200b02402026450d002026410c6c21042027210a03400240200a41046a280200450d00200a28020010200b200a410c6a210a200441746a22040d000b0b02402023450d00202710200b02402024450d00202d10200b02402025450d00202c10200b0240202a450d00202e10200b02402009450d00200941186c210a2008210903402009106b200941186a2109200a41686a220a0d000b0b4100210a0240200e450d00200810200b0c010b02402009450d00200941186c211e2008210903402009106b200941186a2109201e41686a221e0d000b0b200e450d00200810200b0240201a450d00201a21090340200c280260210c2009417f6a22090d000b0340201a417f6a221a0d000b0b02402019450d0041002109410021084100211a03402007200936021c200720083602182007200c3602142007201a360210200741386a200741106a10612007280240211a2007280244210c20072802482108200728024c21092019417f6a22190d000b0b0240200c41908cc500460d00200c2802002108200c10202008450d0020082802002109200810202009450d0002402009280200220c450d00034020091020200c2109200c2802002208210c20080d000b0b200910200b02402018450d002018210c0340200d280260210d200c417f6a220c0d000b03402018417f6a22180d000b0b02402017450d004100210c410021094100210803402007200c36021c200720093602182007200d36021420072008360210200741386a200741106a1061200728024021082007280244210d20072802482109200728024c210c2017417f6a22170d000b0b0240200d41908cc500460d00200d280200210c200d1020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c2802002209210c20090d000b0b200d10200b02402016450d002016210c034020062802602106200c417f6a220c0d000b03402016417f6a22160d000b0b02402015450d004100210c4100210d4100210903402007200c36021c2007200d3602182007200636021420072009360210200741386a200741106a106120072802402109200728024421062007280248210d200728024c210c2015417f6a22150d000b0b0240200641908cc500460d002006280200210c20061020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200b024020144102490d0020132012201110720b02402010450d002010210c034020012802602101200c417f6a220c0d000b03402010417f6a22100d000b0b0240200f450d004100210c4100210d4100210603402007200c36021c2007200d3602182007200136021420072006360210200741386a200741106a106120072802402106200728024421012007280248210d200728024c210c200f417f6a220f0d000b0b200141908cc500460d032001280200210c20011020200c450d03200c280200210d200c1020200d450d030240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200c030b02402009450d00200941186c210d2008210c0340200c106b200c41186a210c200d41686a220d0d000b0b200e0d010c020b02402009450d00200941186c210d2008210c0340200c106b200c41186a210c200d41686a220d0d000b0b200641046a280200450d010b200810200b200020043602042000200a360200200741b0016a24000b873c05027f017e147f057e037f230041c0026b22052400024002400240024020012d0000220641014d0d00411e210141e6aac00021060c010b42002107024020060e020200020b420321072002a74101470d0142022107200141016a2201200310680d01200541d8006a41086a220642003703002005420037035841d4bfc4004108200541d8006a1000200541f0016a41086a2006290300370300200520052903583703f00120054180016a200541f0016a4110106920052d0080012108200541d8006a41186a220920054199016a290000370300200541d8006a41106a220a20054191016a290000370300200620054189016a29000037030020052005290081013703580240024020084101460d0020054190026a41186a420037030020054190026a41106a420037030020054190026a41086a420037030020054200370390020c010b20054190026a41186a200929030037030020054190026a41106a200a29030037030020054190026a41086a200629030037030020052005290358370390020b20054190026a2001460d0120054190026a2001412010cf05450d014126210141ceabc00021060b2000200636020420004101360200200041086a20013602000c010b20054180016a2004106720054180016a41086a280200210a200528028401210102402005280280014101470d002000200136020420004101360200200041086a200a3602000c010b200541c4016a280200210b200541c0016a280200210c200541bc016a2802002109200541b8016a280200210d200541b4016a280200210e200541b0016a280200210f412c211020054180016a412c6a2802002111200541a8016a2802002112200541a4016a2802002113200541a0016a28020021062005419c016a280200211420054180016a41186a280200211520054194016a28020021082005418c016a28020021164184abc000211702400240024002402007a70e0403020001030b0240200541cc016a2d000041ff01710d00419cadc0002117411721100c020b200621182013211903400240024020182f0106221a0d00410021170c010b201a4103742110201841086a211b417f21170340024020100d00201a21170c020b201b2903002102201041786a2110201741016a2117201b41086a211b417f200220035220022003561b41016a0e03010500010b0b024020190d0041b3adc0002117411621100c030b2019417f6a2119201820174102746a41e0006a28020021180c000b0b41b0abc0002117411021100b2000201736020420004101360200200041086a20103602000240200a450d00200a21000340200128026021012000417f6a22000d000b0340200a417f6a220a0d000b0b02402016450d004100210a4100210041002117034020052017360264200520003602602005200136025c2005200a36025820054180016a200541d8006a1061200528028801210a200528028c012101200528029001210020052802940121172016417f6a22160d000b0b0240200141908cc500460d0020012802002116200110202016450d002016280200210a20161020200a450d000240200a2802002201450d000340200a10202001210a20012802002216210120160d000b0b200a10200b02402015450d00201521010340200828026021082001417f6a22010d000b03402015417f6a22150d000b0b02402014450d00410021014100210a410021150340200520153602642005200a3602602005200836025c2005200136025820054180016a200541d8006a10612005280288012101200528028c012108200528029001210a20052802940121152014417f6a22140d000b0b0240200841908cc500460d0020082802002101200810202001450d0020012802002108200110202008450d00024020082802002201450d00034020081020200121082001280200220a2101200a0d000b0b200810200b02402013450d00201321010340200628026021062001417f6a22010d000b03402013417f6a22130d000b0b02402012450d0041002101410021084100210a03402005200a360264200520083602602005200636025c2005200136025820054180016a200541d8006a10612005280288012101200528028c0121062005280290012108200528029401210a2012417f6a22120d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200b024020114102490d00200f200e200d10720b0240200c450d00200c21010340200928026021092001417f6a22010d000b0340200c417f6a220c0d000b0b0240200b450d00410021014100210641002108034020052001360264200520063602602005200936025c2005200836025820054180016a200541d8006a10612005280288012108200528028c01210920052802900121062005280294012101200b417f6a220b0d000b0b200941908cc500460d0120092802002101200910202001450d0120012802002106200110202006450d01024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200c010b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002404118101e2217450d00201741106a41002900dc8647370000201741086a41002900d48647370000201741002900cc864737000020174118413010222217450d0120172004370018200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00120174120200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f0013703900220171020024020054190026a412041e4fdc600410041001002417f460d00200541d8006a41086a2217420037030020054200370358419787c700411b200541d8006a100020054180016a41086a201729030037030020052005290358370380012005410036025820054180016a4110200541d8006a100321170240024020052802582210417f470d00420021020c010b024020170d00420021020c010b20104108490d0420172900002102201710200b200541a0016a420037030020054180016a41186a428080808080013703002005420237039001200520043703880120052002370380014119101e2217450d04201741186a41002d00fc86473a0000201741106a41002900f48647370000201741086a41002900ec8647370000201741002900e4864737000020174119413210222217450d052017200237001942002104200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00120174121200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f00137039002201710202005412036025c200520054190026a36025820054180016a200541d8006a108201200541d8006a41086a2217420037030020054200370358419787c700411b200541d8006a100020054180016a41086a201729030037030020052005290358370380012005410036025820054180016a4110200541d8006a10032117024020052802582210417f460d002017450d0020104108490d0720172900002104201710200b200541d8006a41086a2217420037030020054200370358419787c700411b200541d8006a100020054180016a41086a2210201729030037030020052005290358370380012005200442017c37035820054180016a4110200541d8006a4108100520054180016a41106a2002370300201041023a0000200541153a00800120054180016a10774134101e2217450d07201741306a41002800aba940360000201741286a41002900a3a940370000201741206a410029009ba940370000201741186a4100290093a940370000201741106a410029008ba940370000201741086a4100290083a940370000201741002900fba8403700002017413441e80010222217450d0820172002370034200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f0012017413c200541f0016a1001200541086a41186a2010290300370300200541086a41106a201b290300370300200541086a41086a2018290300370300200520052903f001370308201710202005410036028001200541086a412020054180016a10032117024002402005280280012210417f470d000c010b024020170d000c010b2005201036025c2005201736025820054180016a200541d8006a1083012005290388014202510d0a20052903800121042010450d00201710200b200520032004200742025122101b37033020052010ad3703284134101e2117024020100d002017450d0b201741306a41002800aba940360000201741286a41002900a3a940370000201741206a410029009ba940370000201741186a4100290093a940370000201741106a410029008ba940370000201741086a4100290083a940370000201741002900fba8403700002017413441e80010222217450d0c20172002370034200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f0012017413c200541f0016a1001200541386a41186a2010290300370300200541386a41106a201b290300370300200541386a41086a2018290300370300200520052903f00137033820171020200541d8006a200541386a108401200529036022044202510d18200541d8006a41206a290300210720052903682103410021170240200541d8006a41186a290300221c4201520d0020054190026a2007108501200541f0016a41186a20054190026a41186a290000221d370300200541f0016a41106a20054190026a41106a290000221e370300200541f0016a41086a20054190026a41086a290000221f370300200520052900900222203703f00120054180016a41186a2210201d37030020054180016a41106a221b201e37030020054180016a41086a2218201f37030020052020370380014120101e2217450d0e2017200529038001370000201741186a2010290300370000201741106a201b290300370000201741086a20182903003700000b024020044201510d00201c4201510d10200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f0013703900220054190026a412010040c170b20054190026a2003108501200541f0016a41186a20054190026a41186a290300221d370300200541f0016a41106a20054190026a41106a290300221e370300200541f0016a41086a20054190026a41086a290300221f370300200520052903900222203703f00120054180016a41186a221b201d37030020054180016a41106a2218201e37030020054180016a41086a2219201f37030020052020370380014120101e2210450d0e2010200529038001370000201041186a201b290300370000201041106a2018290300370000201041086a201929030037000020054100360280012010412020054180016a1003211b2005280280012218417f460d11201b450d1120052018360294022005201b3602900220054180016a20054190026a108301200529038801221d4202510d10200529039001211e200529038001211f02402018450d00201b10200b20054180016a41206a200737030020054198016a201c37030020054190016a201e3703002005201d370388012005201f370380012005412036029402200520103602900220054180016a20054190026a10860120101020410121180c170b2017450d11201741306a41002800aba940360000201741286a41002900a3a940370000201741206a410029009ba940370000201741186a4100290093a940370000201741106a410029008ba940370000201741086a4100290083a940370000201741002900fba8403700002017413441e80010222217450d1220172002370034200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f0012017413c200541f0016a1001200541386a41186a2010290300370300200541386a41106a201b290300370300200541386a41086a2018290300370300200520052903f001370338201710202005410036028001200541386a412020054180016a10032117024002402005280280012210417f460d002017450d002005201036025c2005201736025820054180016a200541d8006a10830120052903880122074202510d15200541a0016a290300210420054198016a2903002103200529039001211c2010450d01201710200c010b200520023703b002200541f0016a41186a22174200370300200541f0016a41106a22104200370300200541f0016a41086a221b4200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201729030037030020054190026a41106a201029030037030020054190026a41086a201b290300370300200520052903f00137039002200541003602800120054190026a412020054180016a100321170240024002402005280280012210417f460d002017450d00024020104108490d00201729000021042017102020054190026a2004108501200541003602800120054190026a412020054180016a1003211b02402005280280012218417f460d00201b0d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b42002103200541f0016a41186a22174200370300200541f0016a41106a22104200370300200541f0016a41086a221b4200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201729030037030020054190026a41106a201029030037030020054190026a41086a201b290300370300200520052903f00137039002200520023703800120054190026a412020054180016a410810050c010b2005201836025c2005201b36025820054180016a200541d8006a10830120052903880122034202510d16200541f0016a41086a221720054180016a41186a2219290300370300200541f0016a41106a221020054180016a41206a29030037030020052005290390013703f001200529038001211c02402018450d00201b10200b200541d8006a41106a2010290300221d370300200541d8006a41086a20172903002207370300200520052903f001221e37035820054180016a41106a20073703002019201d37030020052003370380012005201e3703880142012103200541e4006a2019410020074201511b3602002005201c3703582005200541b0026a360260200541203602f401200520054190026a3602f001200541d8006a200541f0016a10870120052903b0022107200541f0016a41186a221b42003703002010420037030020174200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201b29030037030020054190026a41106a201029030037030020054190026a41086a2017290300370300200520052903f00137039002200520073703800120054190026a412020054180016a410810050b420021070b20054180016a41206a200437030020054198016a200337030020054190016a201c37030020052007370388012005200541306a360280012005412036025c2005200541386a36025820054180016a200541d8006a1088010c170b200041b9d3c000360204200041086a4119360200410121170c170b41184101102d000b41304101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41194101102d000b41324101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41344101102d000b41e8004101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41344101102d000b41e8004101102d000b41204101102d000b41204101102d000b200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f00137039002200520073703800120054190026a412020054180016a410810050c060b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b41344101102d000b41e8004101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41002110410021180b02400240024002400240024020170d004100211b0c010b20054100360280012017412020054180016a1003211b2005280280012219417f460d02201b450d0220052019360294022005201b3602900220054180016a20054190026a1083012005290388014202510d01200541f8016a221a20054198016a2221290300370300200541f0016a41106a222220054180016a41206a222329030037030020052005290390013703f001200529038001210702402019450d00201b10200b20054180016a41106a221b20052903f0013703002021201a29030037030020232022290300370300201b2003370300200520073703800120052004370388012005412036029402200520173602900220054180016a20054190026a108601201710204101211b0b201820104572450d020c030b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b201010200b201745201b720d00201710200b200041086a2002370300410021170b200020173602000240200a450d00200a21000340200128026021012000417f6a22000d000b0340200a417f6a220a0d000b0b02402016450d004100210a410021004100211703402005200a360264200520003602602005200136025c2005201736025820054180016a200541d8006a10612005280288012117200528028c0121012005280290012100200528029401210a2016417f6a22160d000b0b0240200141908cc500460d0020012802002116200110202016450d002016280200210a20161020200a450d000240200a2802002201450d000340200a10202001210a20012802002216210120160d000b0b200a10200b02402015450d00201521010340200828026021082001417f6a22010d000b03402015417f6a22150d000b0b02402014450d00410021014100210a410021150340200520013602642005200a3602602005200836025c2005201536025820054180016a200541d8006a10612005280288012115200528028c012108200528029001210a20052802940121012014417f6a22140d000b0b0240200841908cc500460d0020082802002101200810202001450d0020012802002108200110202008450d00024020082802002201450d00034020081020200121082001280200220a2101200a0d000b0b200810200b02402013450d00201321010340200628026021062001417f6a22010d000b03402013417f6a22130d000b0b02402012450d0041002101410021084100210a03402005200a360264200520083602602005200636025c2005200136025820054180016a200541d8006a10612005280288012101200528028c0121062005280290012108200528029401210a2012417f6a22120d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200b024020114102490d00200f200e200d10720b0240200c450d00200c21010340200928026021092001417f6a22010d000b0340200c417f6a220c0d000b0b0240200b450d00410021014100210641002108034020052008360264200520063602602005200936025c2005200136025820054180016a200541d8006a10612005280288012101200528028c01210920052802900121062005280294012108200b417f6a220b0d000b0b200941908cc500460d0020092802002101200910202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200b200541c0026a24000b974203047f017e347f230041b0016b22082400024002400240024020051089010d00200728020021092007280208210a4186acc000210b410e21040c010b200841386a2005108a012008290340210c0240200841cc006a280200450d00200828024810200b2008280254210a0240200841dc006a280200220d450d00200d41186c210e200a210d0340200d106b200d41186a210d200e41686a220e0d000b0b0240200841d8006a280200450d00200a10200b200841086a200c200728020022092007280208220a108b01024002400240024002402008280208220b0d002007280204210f200841386a2001200220032004ad2005108c01200841c0006a29030021020240024020082802384101460d00200841c8006a2903002103200841386a200c106720082802384101470d01200841c0006a2802002104200828023c210b0c060b200828023c210b2002a721040c050b200841fc006a2802002110200841f8006a2802002111200841f4006a2802002101200841f0006a2802002112200841ec006a2802002113200841e8006a2802002114200841e4006a2802002115200841e0006a2802002116200841dc006a2802002117200841d8006a2802002107200841d4006a2802002118200841d0006a2802002119200841cc006a280200210e410c2104200841386a410c6a280200211a200841c0006a280200211b200828023c210d02402002a7220b41024d0d004194acc000210b0c030b0240200b0e03040200040b200d211c201b211d034002400240201c2f0106221e0d004100210b0c010b201e4103742104201c41086a211f417f210b0340024020040d00201e210b0c020b201f2903002102200441786a2104200b41016a210b201f41086a211f417f200220035220022003561b41016a0e03010600010b0b0240201d0d0041c0acc000210b412921040c040b201d417f6a211d201c200b4102746a41e0006a280200211c0c000b0b200828020c21040c040b200841c8006a2d000041ff01710d0141a0acc000210b412021040b0240201b450d00201b211f0340200d280260210d201f417f6a221f0d000b0340201b417f6a221b0d000b0b0240201a450d004100211b4100211f4100211c03402008201b36021c2008201f3602182008200d3602142008201c360210200841386a200841106a10612008280240211c2008280244210d2008280248211f200828024c211b201a417f6a221a0d000b0b0240200d41908cc500460d00200d280200211a200d1020201a450d00201a280200211b201a1020201b450d000240201b280200220d450d000340201b1020200d211b200d280200221a210d201a0d000b0b201b10200b02402019450d002019210d0340200e280260210e200d417f6a220d0d000b03402019417f6a22190d000b0b02402018450d004100210d4100211b4100211903402008200d36021c2008201b3602182008200e36021420082019360210200841386a200841106a1061200828024021192008280244210e2008280248211b200828024c210d2018417f6a22180d000b0b0240200e41908cc500460d00200e280200210d200e1020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d280200221b210d201b0d000b0b200e10200b02402017450d002017210d034020072802602107200d417f6a220d0d000b03402017417f6a22170d000b0b02402016450d004100210d4100210e4100211b03402008200d36021c2008200e360218200820073602142008201b360210200841386a200841106a10612008280240211b200828024421072008280248210e200828024c210d2016417f6a22160d000b0b0240200741908cc500460d002007280200210d20071020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200b024020154102490d0020142013201210720b02402011450d002011210d034020012802602101200d417f6a220d0d000b03402011417f6a22110d000b0b02402010450d004100210d4100210e4100210703402008200d36021c2008200e3602182008200136021420082007360210200841386a200841106a106120082802402107200828024421012008280248210e200828024c210d2010417f6a22100d000b0b200141908cc500460d012001280200210d20011020200d450d01200d280200210e200d1020200e450d010240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200c010b02400240024020051089010d004180ddc000210b411a21040c010b024002400240024002404119101e220b450d00200b41186a41002d00fc86473a0000200b41106a41002900f48647370000200b41086a41002900ec8647370000200b41002900e48647370000200b411941321022220b450d01200b2005370019200841386a41186a22044200370300200841386a41106a221f4200370300200841386a41086a221c420037030020084200370338200b4121200841386a1001200841106a41186a2004290300370300200841106a41106a201f290300370300200841106a41086a201c29030037030020082008290338370310200b102020084100360238200841106a4120200841386a1003210b2008280238221f417f460d03200b450d032008201f3602342008200b360230200841386a200841306a108d0120082802482204450d02200841dc006a2802002120200841d8006a280200211e200841d4006a280200211d200841d0006a2802002121200828024c211c20082903402102201f450d04200b10200c040b41194101102d000b41324101102d000b41ceb8c4004133200841a8016a41fcbfc4004184b9c400102e000b410021040b024002400240024002404118101e220b450d00200b41106a41002900dc8647370000200b41086a41002900d48647370000200b41002900cc8647370000200b411841301022220b450d01200b2002420020041b370018200841386a41186a221f4200370300200841386a41106a22224200370300200841386a41086a2223420037030020084200370338200b4120200841386a1001200841106a41186a201f290300370300200841106a41106a2022290300370300200841106a41086a202329030037030020082008290338370310200b10204100210b20084100360238200841106a4120200841386a1003211f20082802382224417f460d03201f450d03200820243602342008201f360230200841386a200841306a10732008280240220b450d02200841e8006a2802002125200841e4006a2802002126200841dc006a2802002127200841d8006a2802002128200841d4006a2802002129200841d0006a280200212a200841cc006a280200212b200841c8006a2802002123200828024421222024450d04201f10200c040b41184101102d000b41304101102d000b41ceb8c4004133200841a8016a41fcbfc4004184b9c400102e000b0b2020410020041b212c201e410020041b212d201d410820041b2124201c410020041b212e2004410220041b212f4101211e20264101200b1b213020284101200b1b213120254100200b1b213220274100200b1b2133202a4100200b1b2134202b4104200b1b213520234100200b1b212820224100200b1b2136200b4108200b1b21270240024020294100200b1b223741ffff0371200641ffff0371221d4b0d00419addc000210b411721040c010b4101211f2021410020041b410174210b202f210402400340200b450d01201f417f6a211f200b417e6a210b20042f0100211c200441026a2104201c201d470d000b41b1ddc000210b413821044101211e0c010b02400240024002402037200641ffff0371220b4d0d002035200b410c6c6a2204450d0002402035200b410c6c6a280208223820386a220b2038490d00200b417f4c0d0020042802002104024002400240200b0d004102211f0c010b200b101e221f450d010b201f2004203841017410cd052139202cad42187e2202422088a70d012002a7220b417f4c0d01024002400240200b0d00410821230c010b200b101e2223450d010b02400240024002400240024002400240024002400240202c0d00410021200c010b202c41186c212b41002104410021200340202420046a220b41106a2f010021224100211e024002400240024002400240024002400240024002400240024002400240024002400240024002400240200b2d00000e13140102030405060708090a0b0c0d0e0f101100140b200b410c6a280200221c41ffffffff0171201c470d21201c410374221d417f4c0d21200b41046a280200210b02400240201d0d004108211f0c010b201d101e221f450d1f0b201f200b201d10cd051a201cad220242208620028421024112211e0c110b4101211e200b41016a2d0000410047211d0c120b4102211e200b41026a2f0100211c0c100b200b41046a280200211f4103211e0c0e0b200b41086a29030021024104211e0c0d0b200b41026a2f0100211c4105211e0c0d0b200b41046a280200211f4106211e0c0b0b200b41086a29030021024107211e0c0a0b200b410c6a280200221c417f4c0d19200b41046a280200210b02400240201c0d004101211f0c010b201c101e221f450d160b201f200b201c10cd051a201cad220242208620028421024108211e0c090b200b41086a29030021024109211e0c080b200b410c6a280200221c417f4c0d17200b41046a280200210b02400240201c0d004101211f420021020c010b201c101e221f450d13201cad21020b201f200b201c10cd051a20022002422086842102410a211e0c070b200b410c6a280200221c201c6a221d201c490d16201d417f4c0d16200b41046a280200210b02400240201d0d004102211f0c010b201d101e221f450d110b201f200b201c41017410cd051a201cad22024220862002842102410b211e0c060b200b410c6a280200221c41ffffffff0371201c470d15201c410274221d417f4c0d15200b41046a280200210b02400240201d0d004104211f0c010b201d101e221f450d0f0b201f200b201d10cd051a201cad22024220862002842102410c211e0c050b200b410c6a280200221c41ffffffff0171201c470d14201c410374221d417f4c0d14200b41046a280200210b02400240201d0d004108211f0c010b201d101e221f450d0d0b201f200b201d10cd051a201cad22024220862002842102410d211e0c040b200b410c6a280200221c201c6a221d201c490d13201d417f4c0d13200b41046a280200210b02400240201d0d004102211f0c010b201d101e221f450d0b0b201f200b201c41017410cd051a201cad22024220862002842102410e211e0c030b200b410c6a280200221c41ffffffff0371201c470d12201c410274221d417f4c0d12200b41046a280200210b02400240201d0d004104211f0c010b201d101e221f450d090b201f200b201d10cd051a201cad22024220862002842102410f211e0c020b200b410c6a280200221c41ffffffff0171201c470d11201c410374221d417f4c0d11200b41046a280200210b02400240201d0d004108211f0c010b201d101e221f450d070b201f200b201d10cd051a201cad220242208620028421024110211e0c010b200841386a200b41046a108e01200829023c21022008280238211f4111211e0b0b0b202320046a220b201e3a0000200b41106a20223b0100200b41086a2002370300200b41046a201f360200200b41026a201c3b0100200b41016a201d3a0000200b41126a2008280138360100200b41166a200841386a41046a2f01003b0100202041016a2120202b200441186a2204470d000b0b024020380d0020242129202d211e202c212a0c0e0b203920384101746a2125200a41186c213a200941686a213b202041186c21262008413f6a213c200841106a41046a213d20242129202d211e202c212a2039212203402022220b41026a2122200b2f0100211c2026210b20232104024002400340200b450d01200b41686a210b200441106a211f200441186a2104201f2f0100201c470d000c020b0b0240024002400240024002402028201c4d0d002027201c41306c6a222b450d00203a210b203b211f2009210402400240024002400240024002400240024002400240024002400240024002400240024002400240024002400340200b450d01200b41686a210b201f41186a211f200441106a211d200441186a2104201d2f0100201c470d000b200841106a201f108f014100211c202b2f01000e131302030405060708090a0b0c0d0e0f10111201130b202b2d0028450d14418cdec000210b41c90021040c130b202b2903082102202b2f0102211d4112211c0c110b4101211c0c100b4102211c0c0f0b4103211c0c0e0b4104211c0c0d0b4105211c0c0c0b4106211c0c0b0b4107211c0c0a0b202b2f0102211d4108211c0c090b202b29030821024109211c0c080b202b2f0102211d410a211c0c070b202b2f0102211d410b211c0c060b202b2f0102211d410c211c0c050b202b2f0102211d410d211c0c040b202b2f0102211d410e211c0c030b202b2f0102211d410f211c0c020b202b2f0102211d4110211c0c010b202b41046a2f01002121202b2f0102211d4111211c0b202b280218220b417f4c0d15202b41106a280200213e202b41286a2d0000213f02400240200b0d00410121040c010b200b101e2204450d040b2004203e200b10cd05213e202b41246a2802002204417f4c0d15202b28021c21400240024020040d004101212b0c010b2004101e222b450d050b202b2040200410cd05212b20082002370340200820213b013c2008201d3b013a2008201c3b01382008200436025c200820043602582008202b3602542008200b3602502008200b36024c2008203e3602482008203f41ff01714100473a00602008200841106a200841386a10900102402008280200220b0d00201f41106a2f0100211c200841386a201f108f010240202a201e460d00201e2104202a211e0c080b201e41016a220b201e490d19201e4101742204200b2004200b4b1b2204ad42187e2202422088a70d192002a7220b4100480d1902400240201e0d00200b101e21290c010b2029201e41186c200b102221290b20290d07200b4108102d000b200828020421040b0240202a450d00202a41186c211c2029211f0340201f106b201f41186a211f201c41686a221c0d000b0b0240201e450d00202910200b02402020450d00202041186c211c2023211f0340201f106b201f41186a211f201c41686a221c0d000b0b0240202c450d00202310200b203910204100211e0c190b0240202a201e460d00201e2104202a211e0c040b201e41016a220b201e490d16201e4101742204200b2004200b4b1b2204ad42187e2202422088a70d162002a7220b4100480d1602400240201e0d00200b101e21290c010b2029201e41186c200b102221290b20290d03200b4108102d000b41e988c700412b41fcddc0001028000b200b4101102d000b20044101102d000b2029201e41186c6a220b41003a0000203c290000210220082900382103200b201c3b0110200b2003370001200b41086a2002370000200b2008280110360112200b41166a203d2f01003b01000c010b200841386a41086a2903002102200829033821032029201e41186c6a220b201c3b0110200b2003370300200b41086a2002370300200b2008280110360112200b41166a203d2f01003b01000b202a41016a212a2004211e0b20222025460d0e0c000b0b201d4108102d000b201d4104102d000b201d4102102d000b201d4108102d000b201d4104102d000b201d4102102d000b201c4101102d000b201c4101102d000b201d4108102d000b200b4108102d000b200b4102102d000b102c000b41e988c700412b41ecddc0001028000b024002400240024002404119101e220b450d00200b41186a41002d00fc86473a0000200b41106a41002900f48647370000200b41086a41002900ec8647370000200b41002900e48647370000200b411941321022220b450d01200b2005370019200841386a41186a22044200370300200841386a41106a221f4200370300200841386a41086a221c420037030020084200370338200b4121200841386a1001200841106a41186a2004290300370300200841106a41106a201f290300370300200841106a41086a201c29030037030020082008290338370310200b102020084100360238200841106a4120200841386a100321042008280238221f417f460d032004450d032008201f36023420082004360230200841386a200841306a108d012008280248220b450d02200841dc006a2802002124200841d8006a280200212b200841d4006a2802002122200841d0006a280200211d200828024c211c2008290340210320082903382102201f450d04200410200c040b41194101102d000b41324101102d000b41ceb8c4004133200841a8016a41fcbfc4004184b9c400102e000b4100210b0b200b4102200b1b211f02400240201d4100200b1b221d201c4100200b1b2204460d002004211c201d21040c010b200441016a221c2004490d0120044101742225201c2025201c4b1b221c201c6a2226201c490d0120264100480d010240024020040d002026101e211f0c010b201f202520261022211f0b201f450d020b20024200200b1b210220034200200b1b2103202b4100200b1b212b20224108200b1b2122201f20044101746a20063b0100201d41016a212602400240202a20244100200b1b221d4d0d000240201d450d00201d41186c21042022210b0340200b106b200b41186a210b200441686a22040d000b0b202b450d01202210200c010b0240202a450d00202a41186c21042029210b0340200b106b200b41186a210b200441686a22040d000b0b0240201e450d00202910200b20222129202b211e201d212a0b200841dc006a202a360200200841386a41206a201e360200200841d0006a2026360200200841cc006a201c360200200820293602542008201f360248200820033703402008200237033802400240201f0d00200841106a412010040c010b200841203602342008200841106a360230200841386a200841306a1082010240201c450d00201f10200b0240202a450d00202a41186c21042029210b0340200b106b200b41186a210b200441686a22040d000b0b201e450d00202910200b200841c8006a2005370300200841c2006a20063b0100200841c0006a41043a0000200841153a0038200841386a107702402020450d00202041186c21042023210b0340200b106b200b41186a210b200441686a22040d000b0b0240202c450d00202310200b02402038450d00203910200b02402028450d00202841306c2104202741206a210b03400240200b41746a280200450d00200b41706a28020010200b0240200b280200450d00200b417c6a28020010200b200b41306a210b200441506a22040d000b0b02402036450d00202710200b02402037450d002037410c6c21042035210b03400240200b41046a280200450d00200b28020010200b200b410c6a210b200441746a22040d000b0b02402034450d00203510200b02402033450d00203110200b02402032450d00203010200b0240202e450d00202f10200b0240200a450d00200a41186c210b2009210a0340200a106b200a41186a210a200b41686a220b0d000b0b4100210b0240200f450d00200910200b0c040b1027000b20264102102d000b02402028450d00202841306c211c202741206a211f03400240201f41746a280200450d00201f41706a28020010200b0240201f280200450d00201f417c6a28020010200b201f41306a211f201c41506a221c0d000b0b02402036450d00202710200b02402037450d002037410c6c211c2035211f03400240201f41046a280200450d00201f28020010200b201f410c6a211f201c41746a221c0d000b0b02402034450d00203510200b02402033450d00203110200b02402032450d00203010200b0240202e450d00202f10200b201e450d000240202c450d00202c41186c211c2024211f0340201f106b201f41186a211f201c41686a221c0d000b0b202d450d00202410200b0240200a450d00200a41186c211f2009210a0340200a106b200a41186a210a201f41686a221f0d000b0b200f450d00200910200b0240201b450d00201b210a0340200d280260210d200a417f6a220a0d000b0340201b417f6a221b0d000b0b0240201a450d004100210a410021094100211b03402008200a36021c200820093602182008200d3602142008201b360210200841386a200841106a10612008280240211b2008280244210d20082802482109200828024c210a201a417f6a221a0d000b0b0240200d41908cc500460d00200d2802002109200d10202009450d002009280200210a20091020200a450d000240200a280200220d450d000340200a1020200d210a200d2802002209210d20090d000b0b200a10200b02402019450d002019210d0340200e280260210e200d417f6a220d0d000b03402019417f6a22190d000b0b02402018450d004100210d4100210a4100210903402008200d36021c2008200a3602182008200e36021420082009360210200841386a200841106a1061200828024021092008280244210e2008280248210a200828024c210d2018417f6a22180d000b0b0240200e41908cc500460d00200e280200210d200e1020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d280200220a210d200a0d000b0b200e10200b02402017450d002017210d034020072802602107200d417f6a220d0d000b03402017417f6a22170d000b0b02402016450d004100210d4100210e4100210a03402008200d36021c2008200e360218200820073602142008200a360210200841386a200841106a10612008280240210a200828024421072008280248210e200828024c210d2016417f6a22160d000b0b0240200741908cc500460d002007280200210d20071020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200b024020154102490d0020142013201210720b02402011450d002011210d034020012802602101200d417f6a220d0d000b03402011417f6a22110d000b0b02402010450d004100210d4100210e4100210703402008200d36021c2008200e3602182008200136021420082007360210200841386a200841106a106120082802402107200828024421012008280248210e200828024c210d2010417f6a22100d000b0b200141908cc500460d032001280200210d20011020200d450d03200d280200210e200d1020200e450d030240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200c030b0240200a450d00200a41186c210e2009210d0340200d106b200d41186a210d200e41686a220e0d000b0b200f0d010c020b0240200a450d00200a41186c210e2009210d0340200d106b200d41186a210d200e41686a220e0d000b0b200741046a280200450d010b200910200b200020043602042000200b360200200841b0016a24000b990303027f017e017f02402001450d00034020002802900121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a4194016a2802002100410021032006417f6a2201450d01034020002802900121002001417f6a22010d000c020b0b200341016a21030b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bc80201047f02402001450d00200020014106746a210203402000220341c0006a2100024002402003280210220141014b0d00024020010e020200020b0240200341306a2802002201450d0020014105742104200341286a28020041086a2101034002400240200141786a280200220541014b0d00024020050e020002000b2001106b0c010b2001280200450d002001417c6a28020010200b200141206a2101200441606a22040d000b0b2003412c6a280200450d01200328022810200c010b0240200341306a2802002201450d0020014105742104200341286a28020041086a2101034002400240200141786a280200220541014b0d00024020050e020002000b2001106b0c010b2001280200450d002001417c6a28020010200b200141206a2101200441606a22040d000b0b2003412c6a280200450d00200328022810200b20002002470d000b0b0b990303027f017e017f02402001450d00034020002802b80121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41bc016a2802002100410021032006417f6a2201450d01034020002802b80121002001417f6a22010d000c020b0b200341016a21030b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0b870905037f017e097f027e017f230041306b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241206a200110e701200228022022060d01200041003602080c020b200041003602080c010b200241286a280200210720022802242108200241086a2001105f024020022802080d0002400240024002402001280204410c6e2209410c6c2203417f4c0d00200228020c210a0240024020030d004104210b0c010b2003101e220b450d020b0240200a450d004100210c410021034100210d0340200241206a200110e501024002402002280220220e450d00200d41016a21042002290224210f200d2009470d010240200c2004200c20044b1b2209ad420c7e2210422088a70d002010a722114100480d0002400240200d0d002011101e210b0c010b200b200320111022210b0b200b0d0220114104102d000b1027000b0240200d450d00200b210103400240200141046a280200450d00200128020010200b2001410c6a2101200341746a22030d000b0b2009450d07200b10200c070b200b20036a220d200e360200200d41046a200f370200200c41026a210c2003410c6a21032004210d200a2004470d000b0b200b450d04200241206a200110b70120022802202203450d03200241206a41086a220d280200210c20022802242104200241206a200110b7012002280220450d02200241106a41086a200d280200220136020020022002290320220f370310200041286a200c360200200041246a2004360200200041206a20033602002000411c6a200a360200200041186a2009360200200041146a200b360200200041106a20073602002000200836020c20002006360208200020053703002000412c6a200f370200200041346a20013602000c050b102c000b20034104102d000b2000410036020802402004450d00200310200b0240200a450d00200a410c6c2103200b210103400240200141046a280200450d00200128020010200b2001410c6a2101200341746a22030d000b0b02402009450d00200b10200b02402007450d00200741306c2103200641206a210103400240200141746a280200450d00200141706a28020010200b02402001280200450d002001417c6a28020010200b200141306a2101200341506a22030d000b0b2008450d02200610200c020b200041003602080240200a450d00200a410c6c2103200b210103400240200141046a280200450d00200128020010200b2001410c6a2101200341746a22030d000b0b02402009450d00200b10200b02402007450d00200741306c2103200641206a210103400240200141746a280200450d00200141706a28020010200b02402001280200450d002001417c6a28020010200b200141306a2101200341506a22030d000b0b2008450d01200610200c010b2000410036020802402007450d00200741306c2103200641206a210103400240200141746a280200450d00200141706a28020010200b02402001280200450d002001417c6a28020010200b200141306a2101200341506a22030d000b0b2008450d00200610200b200241306a24000b8e0f050b7f017e017f017e027f230041c0016b22022400200128020821032001280204210420012802002105024002400240024002402000280200220641908cc500460d00200028020421070c010b41002107200241086a410041840110cc051a418c01101e2206450d01200641003b010620064100360200200641086a200241086a41840110cd051a20004100360204200020063602000b034041002108024020062f01062209450d002009410c6c210a200641086a21014100210803400240200a0d00200921080c020b02400240200520012802002001280208220b20032003200b4b1b10cf05220c450d004101210b200c4100480d030c010b2003200b490d022003200b47210b0b2001410c6a2101200841016a2108200a41746a210a200b0d000b2004450d04200510200c040b02402007450d002007417f6a2107200620084102746a418c016a28020021060c010b0b2000200028020841016a36020802400240024020062f0106220a410b490d0002400240200641908cc500460d00200241086a410041840110cc051a418c01101e22070d01418c014104102d000b41c8a6c000412d41a888c6001028000b200741003b010620074100360200200741086a200241086a41840110cd05210a200641d4006a290200210d20062802502109200a200641dc006a20062f010641796a2201410c6c10cd05210a200641063b0106200720013b010620084107490d012008410c6c200a6a220a41b87f6a200a41ac7f6a220a200141ffff037120086b410c6c41d4006a10ce051a200a2003360208200a2004360204200a2005360200200720072f010641016a3b01060c020b20062008410c6c6a220141146a200141086a220b200a20086b410c6c10ce051a200141106a20033602002001410c6a2004360200200b2005360200200620062f010641016a3b01060c040b200641086a2008410c6c6a2201410c6a200120062f010620086b410c6c10ce051a200120033602082001200436020420012005360200200620062f010641016a3b01060b0240200628020022050d00410021040c020b200641046a2101200241086a410272210e4100210402400240034041000d0120012f0100210802400240024020052f01062201410b490d00200e410041b60110cc051a41bc01101e220b450d05200b4100360200200b41046a200241086a41b80110cd051a200541d4006a290200210f200541d0006a2802002110200b41086a200541dc006a20052f0106220141796a220a410c6c10cd052111200b418c016a200541a8016a2001417a6a220c41027410cd052106200541063b0106200b200a3b01060240200c450d00410021012006210a0340200a280200220320013b01042003200b360200200a41046a210a200c200141016a2201470d000b0b20084107490d012008410c6c20116a220141b87f6a200141ac7f6a2201200b2f010620086b410c6c41d4006a10ce051a2001200d37020420012009360200200b200b2f010641016a220a3b01062008410274220920066a416c6a20062008417a6a22014102746a2203200a41ffff0371220c20016b41027410ce051a20032007360200200c2001490d02200841796a2101200b20096a41f4006a210a0340200a2802002203200141016a22013b01042003200b360200200a41046a210a2001200c490d000c030b0b20052008410c6c6a220a41146a200a41086a2203200120086b410c6c10ce051a200a410c6a200d370200200320093602002005200141016a220a3b010620084102742005418c016a22036a41086a2003200841016a22014102746a2203200a41ffff0371220b20016b41027410ce051a200320073602002008200b4f0d0720052001417f6a22014102746a4190016a210a0340200a2802002203200141016a22013b010420032005360200200a41046a210a2001200b490d000c080b0b200541086a2008410c6c6a2201410c6a200120052f0106220a20086b410c6c10ce051a2001200d370204200120093602002005200a41016a22013b0106200841027422062005418c016a220a6a41086a200a200841016a220c4102746a220a200141ffff03712203200c6b41027410ce051a200a2007360200200820034f0d00200520066a4190016a210103402001280200220a200841016a22083b0104200a2005360200200141046a210120032008470d000b0b200441016a210402402005280200220a0d0020102109200f210d200b21070c050b200541046a210120102109200f210d200a2105200b21070c000b0b41c6a8c000413541a888c6001028000b41bc014104102d000b418c014104102d000b200241086a410272410041b60110cc051a02400240024041bc01101e2201450d0020014100360200200141046a200241086a41b80110cd051a20012000280200220a36028c012000200136020020002000280204220341016a360204200a41003b0104200a200136020020032004470d0120012f0106220a410a4b0d022001200a410c6c6a2203410c6a200d370200200341086a20093602002001200a41016a220a4102746a418c016a20073602002001200a3b01062007200a3b0104200720013602000c030b41bc014104102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200241c0016a24000b9c0101037f230041106b22022400410021032002410036020420014110200241046a100321010240024020022802042204417f460d002001450d0020044102490d012004417e714102460d0120012f0000210320012f0002210420011020200041046a20043b0100200020033b0102410121030b200020033b0100200241106a24000f0b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bbe0603017f017e087f230041106b22022400200241003602082002420137030020002903002103024002404108101e2204450d0020024288808080800137020420022004360200200420033700002000280208200041106a2802002002109b012000280214210520022000411c6a280200220436020c2002410c6a200210630240024002402004450d0020052004410c6c6a210603402005280200210720022005280208220436020c2002410c6a2002106302402004450d0020044101742108034020072f01002109024002402002280204220a200228020822046b4102490d002002280200210a0c010b200441026a220b2004490d05200a4101742204200b2004200b4b1b22044100480d0502400240200a0d002004101e210a0c010b2002280200200a20041022210a0b0240200a450d00200220043602042002200a360200200228020821040c010b20044101102d000b200741026a21072002200441026a360208200a20046a20093b00002008417e6a22080d000b0b2005410c6a22052006470d000b0b200028022021082002200041286a280200220436020c2002410c6a20021063024002402002280204220a200228020822076b2004490d002002280200210a0c010b200720046a22092007490d01200a41017422072009200720094b1b22074100480d0102400240200a0d002007101e210a0c010b2002280200200a20071022210a0b200a450d02200220073602042002200a360200200228020821070b2002200720046a360208200a20076a2008200410cd051a200028022c21082002200041346a280200220436020c2002410c6a2002106302402002280204220a200228020822076b2004490d002002280200210a0c040b200720046a22092007490d00200a41017422072009200720094b1b22074100480d0002400240200a0d002007101e210a0c010b2002280200200a20071022210a0b0240200a450d00200220073602042002200a360200200228020821070c040b20074101102d000b1027000b20074101102d000b41084101102d000b2002200720046a360208200a20076a2008200410cd051a2002280204210420012802002001280204200228020022072002280208100502402004450d00200710200b200241106a24000ba10e01067f230041a0036b22012400200141003602900141effbc000411020014190016a10032102024002402001280290012203417f460d002002450d00024020034104490d002002280000210320021020410021020c020b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b410121020b200141fc006a200336020020012002360278200141086a200041f00010cd051a4100210220014188016a4100360200200142013703800120014188036a41086a220042003703002001420037038803419281c700411120014188036a100020014198026a41086a2000290300370300200120012903880337039802200141003602900120014198026a411020014190016a10032100024002400240024002400240024002400240024002400240024002402001280290012203417f460d002000450d0020034104490d0120002800002102200010200b0240200241016a22002002490d0020014188036a41086a220242003703002001420037038803419281c700411120014188036a100020014198026a41086a22032002290300370300200120012903880337039802200120003602900120014198026a411020014190016a4104100520014190016a200141086a41880110cd051a2002420037030020014200370388034182fec000410d20014188036a100020032002290300370300200120012903880337039802200141003602880320014198026a411020014188036a10032100024002402001280288032202417f460d002002210320000d010b200141003602f002200142083703e80220014100360290032001420137038803200141003602d002200141d0026a20014188036a10632001280288032100200128028c0321032001280290032102200141e8026a10ff010b200120023602b002200120033602ac02200120003602a8022002450d022002417f6a210402400240024020002d0000220541037122064103460d0002400240024020060e03000102000b200541027621050c030b2004450d0320002d0001410874200572220541ffff0371418002490d03200541fcff037141027621050c020b20044103490d0220002f0001200041036a2d000041107472410874200572220541808004490d02200541027621050c010b200541034b0d0120044104490d0120002800012205418080808004490d010b41012106200541016a22042005490d000240200541c000490d0041022106200541808001490d00410441052005418080808004491b21060b410121000240200441c000490d0041022100200441808001490d00410441052004418080808004491b21000b024020002006460d002002200020066b6a220241046a2203417f4c0d050240024020030d00410121050c010b2003101e2205450d070b200120033602bc02200120053602b802200120023602c0022001200141b8026a36028803200420014188036a200010800220022000490d0720012802c00222032002490d0820012802b00222032006490d0920012802b802210520012802a80221042001200220006b22023602c8022001200320066b22033602cc0220022003470d0a200520006a200420066a200210cd051a20014190016a200141b8026a10810220012802c002210020012802bc02210320012802b802210220012802ac02450d0c20012802a80210200c0c0b2001200141a8026a36028803200420014188036a200010800220014190016a200141a8026a1081020c0a0b2003450d0b200010200c0b0b200141086a1082020c0b0b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b200141013602880320014188036a200141a8026a106320014190016a200141a8026a1081020c060b102c000b20034101102d000b20002002103b000b20022003103a000b20062003103b000b200141e8026a41146a4108360200200141f4026a4109360200200141d0026a41146a41033602002001200141c8026a360280032001200141cc026a3602840320014188036a41146a4100360200200142033702d40220014190fbc6003602d002200141093602ec02200141e4fdc600360298032001420137028c03200141e4fbc600360288032001200141e8026a3602e002200120014188036a3602f802200120014184036a3602f002200120014180036a3602e802200141d0026a41a0fcc6001033000b20012802b002210020012802ac02210320012802a80221020b2002450d0020014198026a411020022000100502402003450d00200210200b20014190016a10820220014188036a41086a2202420037030020014200370388034195fcc000410d20014188036a100020014198026a41086a2002290300370300200120012903880337039802200141003602900120014198026a411020014190016a100321022001280290012200417f460d012002450d01200041034d0d02200210200c010b20014190016a1082020b200141a0036a24000f0b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000be50303027f017e027f02402001450d000340200028028c0121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a4190016a280200210020012003410c6c6a2201410c6a2902002105200141086a2802002107410021032006417f6a2201450d010340200028028c0121002001417f6a22010d000c020b0b20002003410c6c6a2201410c6a2902002105200141086a2802002107200341016a21030b2007450d012002417f6a210202402005a7450d00200710200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bac0101047f230041206b22002400200041106a41086a22014200370300200042003703104195fcc000410d200041106a1000200041086a200129030037030020002000290310370300410021022000410036021020004110200041106a100321010240024020002802102203417f460d002001450d0020034104490d0120012800002102200110200b200041206a240020020f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000ba42e05077f027e017f017e0b7f230041d0026b2202240002400240024002400240024002400240024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032000370033200241e8006a41186a22044200370300200241e8006a41106a22054200370300200241e8006a41086a22064200370300200242003703682003413b200241e8006a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229036837030020031020200241003602b80120024120200241b8016a10032107024020022802b8012208417f460d002007450d002002200836026c20022007360268200241b8016a200241e8006a107c20022903880222094202510d03200241a0026a290300210020024198026a290300210a200241f4016a280200210b200229039002210c20022802f801210d20022802f001210320022802ec01210e20022802e801210f20022802e401211020022802e001211120022802dc01211220022802d801211320022802d401210420022802d001211420022802cc01211520022802c801210520022802c001211620022802bc01211720022802b801210602402008450d00200710200b02402017450d00201721070340200628026021062007417f6a22070d000b03402017417f6a22170d000b0b02402016450d00410021174100210741002108034020022017360274200220073602702002200636026c20022008360268200241b8016a200241e8006a106120022802c001210820022802c401210620022802c801210720022802cc0121172016417f6a22160d000b0b200641908cc500460d0920062802002116200610202016450d0920162802002117201610202017450d09201728020022060d050c080b20022000370320200241e8006a41186a22034200370300200241e8006a41106a22044200370300200241e8006a41086a2205420037030020024200370368419eaac000413b200241e8006a1001200241b8016a41186a2003290300370300200241b8016a41106a2004290300370300200241b8016a41086a2005290300370300200220022903683703b80120024100360268200241b8016a4120200241e8006a10032103024020022802682204417f460d002003450d000240024020044108490d002003290000210020031020200241286a2000107d200241003602b801200241286a4120200241b8016a10032103024020022802b8012204417f460d0020030d020b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200241c0026a41fcbfc4004184b9c400102e000b200220043602ac02200220033602a802200241b8016a200241a8026a107c20022903880222094202510d04200241e8006a200241b8016a41d00010cd051a200241c8006a41106a2205200241a0026a290300370300200241c8006a41086a220620024198026a290300370300200220022903900237034802402004450d00200310200b200241b8016a200241e8006a41d00010cd051a200241a8026a41106a22032005290300370300200241a8026a41086a22042006290300370300200220022903483703a802200241e8006a200241b8016a41cc0010cd051a200241e0006a2205200329030037030020022009370348200220022903a802370350200220042903002209370358200241b8016a200241e8006a41cc0010cd051a200241b8016a41d0006a2005410020094201511b3602002002200241206a36028402200241003602b002200242013703a802200241b8016a200241a8026a106220022d00c4012105024020022802ac0220022802b0022204460d0020022802a80221030c070b200441016a22032004490d07200441017422062003200620034b1b22064100480d070240024020040d002006101e21030c010b20022802a80220042006102221030b02402003450d00200220063602ac02200220033602a8020c070b20064101102d000b4200210a200241e8006a41186a22034200370300200241e8006a41106a22044200370300200241e8006a41086a2205420037030020024200370368419eaac000413b200241e8006a1001200241b8016a41186a2003290300370300200241b8016a41106a2004290300370300200241b8016a41086a2005290300370300200220022903683703b80120022000370368200241b8016a4120200241e8006a41081005420021090c090b41334101102d000b41e6004101102d000b41ceb8c4004133200241c0026a41fcbfc4004184b9c400102e000b41ceb8c4004133200241c0026a41fcbfc4004184b9c400102e000b0340201710202006211720062802002216210620160d000c030b0b2002200441016a3602b002200320046a20053a000020022d00800221050240024002400240024002400240024020022802ac0220022802b0022204470d00200441016a22062004490d082004410174220b2006200b20064b1b22064100480d080240024020040d002006101e21030c010b200320042006102221030b2003450d01200220063602ac02200220033602a8020b2002200441016a3602b002200320046a20053a0000200241c8016a200241a8026a1062200241d4016a200241a8026a106220022802e001220341024b0d0620030e03010203010b20064101102d000b024020022802ac0220022802b0022203460d0020022802a80221040c040b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802a80220032005102221040b02402004450d00200220053602ac02200220043602a8020c040b20054101102d000b024020022802ac0220022802b0022203460d0020022802a80221040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b20022802a80220032005102221040b02402004450d00200220053602ac02200220043602a8020c020b20054101102d000b0240024020022802ac0220022802b0022203460d0020022802a80221040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b20022802a80220032005102221040b02402004450d00200220053602ac02200220043602a8020c010b20054101102d000b2002200341016a3602b002200420036a41023a0000200241e4016a200241a8026a10640c020b2002200341016a3602b002200420036a41013a00000c010b2002200341016a3602b002200420036a41003a00000b200241f0016a200241a8026a106220022802fc0121050240024020022802ac02220420022802b00222036b4104490d0020022802a80221040c010b200341046a22062003490d012004410174220b2006200b20064b1b22064100480d010240024020040d002006101e21040c010b20022802a80220042006102221040b02402004450d00200220063602ac02200220043602a8020c010b20064101102d000b2002200341046a3602b002200420036a2005360000200241b8016a41cc006a200241a8026a107e20022802ac022103200241286a412020022802a802220420022802b002100502402003450d00200410200b20022802c001210420022802b8012103024020022802bc012205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241d0016a280200210420022802c80121030240200241cc016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241dc016a280200210420022802d40121030240200241d8016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b024020022802e0014102490d00200241e4016a280200200241e8016a280200200241ec016a28020010720b200241f8016a280200210420022802f00121030240200241f4016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b2002290320210a42002109200241e8006a41186a22034200370300200241e8006a41106a22044200370300200241e8006a41086a2205420037030020024200370368419eaac000413b200241e8006a1001200241b8016a41186a2003290300370300200241b8016a41106a2004290300370300200241b8016a41086a2005290300370300200220022903683703b8012002200a370368200241b8016a4120200241e8006a410810054201210a0c030b1027000b201710200b02402015450d00201521060340200528026021052006417f6a22060d000b03402015417f6a22150d000b0b02402014450d00410021064100211541002117034020022006360274200220153602702002200536026c20022017360268200241b8016a200241e8006a106120022802c001211720022802c401210520022802c801211520022802cc0121062014417f6a22140d000b0b0240200541908cc500460d0020052802002115200510202015450d0020152802002106201510202006450d00024020062802002205450d000340200610202005210620052802002215210520150d000b0b200610200b02402013450d00201321050340200428026021042005417f6a22050d000b03402013417f6a22130d000b0b02402012450d00410021054100210641002113034020022013360274200220063602702002200436026c20022005360268200241b8016a200241e8006a106120022802c001210520022802c401210420022802c801210620022802cc0121132012417f6a22120d000b0b0240200441908cc500460d0020042802002106200410202006450d0020062802002105200610202005450d00024020052802002204450d000340200510202004210520042802002206210420060d000b0b200510200b024020114102490d002010200f200e10720b0240200b450d00200b21040340200328026021032004417f6a22040d000b0340200b417f6a220b0d000b0b0240200d450d00410021044100210541002106034020022004360274200220053602702002200336026c20022006360268200241b8016a200241e8006a106120022802c001210620022802c401210320022802c801210520022802cc012104200d417f6a220d0d000b0b200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241b8016a200141cc0010cd051a200241a0026a200037030020024198026a200a37030020024190026a200c37030020022009370388022002412036026c20022002360268200241b8016a200241e8006a107f20022802c001210420022802b8012103024020022802bc012205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241d0016a280200210420022802c80121030240200241cc016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241dc016a280200210420022802d40121030240200241d8016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b024020022802e0014102490d00200241e4016a280200200241e8016a280200200241ec016a28020010720b200241f8016a280200210420022802f00121030240200241f4016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241d0026a24000b900801097f230041c0016b220224000240024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032001370033200241e8006a41186a22044200370300200241e8006a41106a22054200370300200241e8006a41086a22064200370300200242003703682003413b200241e8006a1001200241c8006a41186a2004290300370300200241c8006a41106a2005290300370300200241c8006a41086a2006290300370300200220022903683703482003102020024100360268200241c8006a4120200241e8006a100321040240024020022802682205417f470d00410321030c010b024020040d00410321030c010b200220053602bc01200220043602b801200241e8006a200241b8016a10910120022802900122034103460d03200241206a41206a200241e8006a41206a290300370300200241206a41186a200241e8006a41186a290300370300200241206a41106a200241e8006a41106a290300370300200241206a41086a200241e8006a41086a290300370300200241086a2002419c016a290200370300200241106a200241a4016a290200370300200241186a200241ac016a2902003703002002200229036837032020022002290294013703002005450d00200410200b200241e8006a41086a2204200241206a41086a290300370300200241e8006a41106a2205200241206a41106a290300370300200241e8006a41186a2206200241206a41186a290300370300200241e8006a41206a2207200241206a41206a290300370300200241c8006a41086a2208200241086a290300370300200241c8006a41106a2209200241106a290300370300200241c8006a41186a220a200241186a29030037030020022002290320370368200220022903003703480240024020034103470d0041002103200041003a0048200041013a000c20004200370204200041908cc50036020020004100360244200041908cc500360238200041908cc50036021c200041908cc5003602102000413c6a4200370200200041206a4200370200200041146a42003702000c010b200020022903683702002000412c6a2002290348370200200041206a2007290300370200200041186a2006290300370200200041106a2005290300370200200041086a2004290300370200200041346a20082903003702002000413c6a2009290300370200200041c4006a200a2903003702000b20002003360228200241c0016a24000f0b41334101102d000b41e6004101102d000b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000bec0b01127f230041d0016b22022400200241386a200110910102400240200228026022034103470d00200042023703500c010b200241f8006a2802002104200241386a413c6a2802002105200241f0006a2802002106200241ec006a2802002107200241e8006a280200210820022802642109200228025c210a2002280258210b2002280254210c2002280250210d200228024c210e2002280248210f2002280244211020022802402111200228023c2112200228023821132002200241fc006a29020037033020024188016a200110930102400240024002402002290388014202520d002000420237035002402012450d00201221000340201328026021132000417f6a22000d000b03402012417f6a22120d000b0b02402011450d004100211241002100410021010340200220123602cc01200220003602c801200220133602c401200220013602c001200241a8016a200241c0016a106120022802b001210120022802b401211320022802b801210020022802bc0121122011417f6a22110d000b0b201341908cc500460d0320132802002111201310202011450d0320112802002112201110202012450d03201228020022130d010c020b200241106a20024188016a41086a290300370200200241186a20024188016a41106a290300370200200241206a20024188016a41186a290300370200200220022903303703282002200229038801370208200020043602402000413c6a20053602002000200636023820002007360234200020083602302000200936022c200020033602282000200a3602242000200b3602202000200c36021c2000200d3602182000200e3602142000200f3602102000201036020c200020113602082000201236020420002013360200200020022903283702442000200229020437024c200041d4006a200241046a41086a290200370200200041dc006a200241046a41106a290200370200200041e4006a200241046a41186a290200370200200041ec006a200241246a2802003602000c030b0340201210202013211220132802002211211320110d000b0b201210200b0240200e450d00200e21130340200f280260210f2013417f6a22130d000b0340200e417f6a220e0d000b0b0240200d450d00410021134100210e410021120340200220123602cc012002200e3602c8012002200f3602c401200220133602c001200241a8016a200241c0016a106120022802b001211320022802b401210f20022802b801210e20022802bc012112200d417f6a220d0d000b0b0240200f41908cc500460d00200f280200210e200f1020200e450d00200e2802002113200e10202013450d0002402013280200220f450d00034020131020200f2113200f280200220e210f200e0d000b0b201310200b0240200b450d00200b210f0340200c280260210c200f417f6a220f0d000b0340200b417f6a220b0d000b0b0240200a450d004100210f410021134100210b03402002200b3602cc01200220133602c8012002200c3602c4012002200f3602c001200241a8016a200241c0016a106120022802b001210f20022802b401210c20022802b801211320022802bc01210b200a417f6a220a0d000b0b0240200c41908cc500460d00200c2802002113200c10202013450d002013280200210f20131020200f450d000240200f280200220c450d000340200f1020200c210f200c2802002213210c20130d000b0b200f10200b024020034102490d0020092008200710720b02402005450d002005210c034020062802602106200c417f6a220c0d000b03402005417f6a22050d000b0b02402004450d004100210c4100210f410021130340200220133602cc012002200f3602c801200220063602c4012002200c3602c001200241a8016a200241c0016a106120022802b001210c20022802b401210620022802b801210f20022802bc0121132004417f6a22040d000b0b200641908cc500460d002006280200210f20061020200f450d00200f280200210c200f1020200c450d000240200c2802002206450d000340200c10202006210c2006280200220f2106200f0d000b0b200c10200b200241d0016a24000b960201057f230041206b22022400024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032001370033200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003413b20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41334101102d000b41e6004101102d000bac0802047f017e0240024002400240024002400240200028020022020d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d03200341017422022004200220044b1b22024100480d030240024020030d002002101e21040c010b200128020020032002102221040b02402004450d0020012004360200200141046a2002360200200141086a28020021030c020b20024101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200229030021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22022003490d04200441017422032002200320024b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b0240200028020422040d000240200141046a280200200141086a2802002203460d00200128020021000c050b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c050b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021000c010b200341016a22002003490d01200341017422022000200220004b1b22024100480d010240024020030d002002101e21000c010b200128020020032002102221000b2000450d0220012000360200200141046a2002360200200141086a28020021030b200141086a2202200341016a360200200020036a41013a0000200429030021060240200141046a2802002200200228020022036b4108490d00200128020021000c030b200341086a22042003490d00200041017422032004200320044b1b22034100480d000240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c030b20034101102d000b1027000b20024101102d000b200141086a200341086a360200200020036a20063700000f0b200141086a200341016a360200200020036a41003a00000ba60801067f230041106b22022400200241003602082002420137030020002002106220002d000c2103024002400240200228020420022802082204460d00200228020021050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200228020020042006102221050b02402005450d0020022006360204200220053602000c010b20064101102d000b2002200441016a360208200520046a20033a000020002d0048210302400240024002400240024002400240200228020420022802082204470d00200441016a22062004490d08200441017422072006200720064b1b22064100480d080240024020040d002006101e21050c010b200520042006102221050b2005450d0120022006360204200220053602000b2002200441016a360208200520046a20033a0000200041106a200210622000411c6a200210622000280228220541024b0d0620050e03010203010b20064101102d000b0240200228020420022802082205460d00200228020021040c040b200541016a22042005490d05200541017422032004200320044b1b22034100480d050240024020050d002003101e21040c010b200228020020052003102221040b02402004450d0020022003360204200220043602000c040b20034101102d000b0240200228020420022802082205460d00200228020021040c020b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228020020052003102221040b02402004450d0020022003360204200220043602000c020b20034101102d000b02400240200228020420022802082205460d00200228020021040c010b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228020020052003102221040b02402004450d0020022003360204200220043602000c010b20034101102d000b2002200541016a360208200420056a41023a00002000412c6a200210640c020b2002200541016a360208200420056a41013a00000c010b2002200541016a360208200420056a41003a00000b200041386a20021062200028024421060240024020022802042203200228020822056b4104490d00200541046a2104200228020021030c010b200541046a22042005490d01200341017422072004200720044b1b22074100480d010240024020030d002007101e21030c010b200228020020032007102221030b02402003450d0020022007360204200220033602000c010b20074101102d000b20022004360208200320056a2006360000200041d0006a20021094012002280204210020012802002001280204200228020022052002280208100502402000450d00200510200b200241106a24000f0b1027000bb70601077f230041a0016b22022400024002400240411c101e2203450d00200341186a410028009fec42360000200341106a4100290097ec42370000200341086a410029008fec4237000020034100290087ec423700002003411c413810222203450d012003200137001c200241d8006a41186a22044200370300200241d8006a41106a22054200370300200241d8006a41086a220642003703002002420037035820034124200241d8006a1001200241386a41186a2004290300370300200241386a41106a2005290300370300200241386a41086a2006290300370300200220022903583703382003102020024100360258200241386a4120200241d8006a100321030240024020022802582204417f470d00420221010c010b024020030d00420221010c010b2002200436029c012002200336029801200241d8006a20024198016a10f003200229035822014202510d03200241306a20024190016a290300370300200241286a200241d8006a41306a290300370300200241206a200241d8006a41286a290300370300200241186a200241d8006a41206a290300370300200241106a200241d8006a41186a290300370300200241086a200241d8006a41106a290300370300200220022903603703002004450d00200310200b200241d8006a41306a2203200241306a290300370300200241d8006a41286a2204200241286a290300370300200241d8006a41206a2205200241206a290300370300200241d8006a41186a2206200241186a290300370300200241d8006a41106a2207200241106a290300370300200241d8006a41086a2208200241086a290300370300200220022903003703580240024020014202520d00420021012000420037021c20004200370310200041346a42003702002000412c6a4200370200200041246a42003702000c010b20002002290358370308200041386a2003290300370300200041306a2004290300370300200041286a2005290300370300200041206a2006290300370300200041186a2007290300370300200041106a20082903003703000b20002001370300200241a0016a24000f0b411c4101102d000b41384101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000baf0802047f017e0240024002400240024002400240200028020022020d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d03200341017422022004200220044b1b22024100480d030240024020030d002002101e21040c010b200128020020032002102221040b02402004450d0020012004360200200141046a2002360200200141086a28020021030c020b20024101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200228020029030021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22022003490d04200441017422032002200320024b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b0240200028020422040d000240200141046a280200200141086a2802002203460d00200128020021000c050b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c050b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021000c010b200341016a22002003490d01200341017422022000200220004b1b22024100480d010240024020030d002002101e21000c010b200128020020032002102221000b2000450d0220012000360200200141046a2002360200200141086a28020021030b200141086a2202200341016a360200200020036a41013a0000200429030021060240200141046a2802002200200228020022036b4108490d00200128020021000c030b200341086a22042003490d00200041017422032004200320044b1b22034100480d000240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c030b20034101102d000b1027000b20024101102d000b200141086a200341086a360200200020036a20063700000f0b200141086a200341016a360200200020036a41003a00000b840603017f017e067f230041106b220224002002410036020820024201370300200029030021030240024002404108101e2204450d00200242888080808001370204200220043602002004200337000020002903082103024020022802042205200228020822046b4108490d00200441086a2106200228020021050c020b200441086a22062004490d02200541017422072006200720064b1b22074100480d020240024020050d002007101e21050c010b200228020020052007102221050b02402005450d0020022007360204200220053602000c020b20074101102d000b41084101102d000b20022006360208200520046a2003370000200028021021062002200041186a280200220436020c2002410c6a2002106302402004450d0020044101742107034020062f010021080240024020022802042205200228020822046b4102490d00200228020021050c010b200441026a22092004490d03200541017422042009200420094b1b22044100480d030240024020050d002004101e21050c010b200228020020052004102221050b02402005450d002002200436020420022005360200200228020821040c010b20044101102d000b200641026a21062002200441026a360208200520046a20083b00002007417e6a22070d000b0b200028021c21062002200041246a280200220436020c2002410c6a2002106302402004450d00200441186c21070340200641106a2f010021080240024020022802042205200228020822046b4102490d00200228020021050c010b200441026a22092004490d03200541017422042009200420094b1b22044100480d030240024020050d002004101e21050c010b200228020020052004102221050b02402005450d002002200436020420022005360200200228020821040c010b20044101102d000b2002200441026a360208200520046a20083b000020062002109a01200641186a2106200741686a22070d000b0b2002280204210420012802002001280204200228020022062002280208100502402004450d00200610200b200241106a24000f0b1027000bbf0204027f017e037f047e02400240200128020422024108490d002001280200220329000021042001200241786a22053602042001200341086a22033602002005450d0120032d000021052001200241776a22063602042001200341016a2207360200200541014b0d01420021080240024020050e020100010b20064108490d022003290001210920012002416f6a22063602042001200341096a2207360200420121080b2006450d0120072d0000210220012006417f6a22033602042001200741016a360200200241014b0d014200210a0240024020020e020100010b20034108490d022007290001210b2001200641776a3602042001200741096a3602004201210a0b200020093703102000200837030820002004370300200041206a200b370300200041186a200a3703000f0b200042023703080f0b200042023703080b8b0202037f027e230041d0006b220224002002410036022020014120200241206a100321030240024020022802202204417f460d002003450d002002200436024c20022003360248200241206a200241c8006a1083010240200229032822054202510d00200241106a200241386a290300370300200241186a200241206a41206a290300370300200220022903303703082002290320210602402004450d00200310200b2001412010040c020b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420221050b200020053703082000200637030020002002290308370310200041186a200241106a290300370300200041206a200241186a290300370300200241d0006a24000b960201057f230041206b22022400024002404134101e2203450d00200341306a41002800aba940360000200341286a41002900a3a940370000200341206a410029009ba940370000200341186a4100290093a940370000200341106a410029008ba940370000200341086a4100290083a940370000200341002900fba8403700002003413441e80010222203450d0120032001370034200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003413c20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41344101102d000b41e8004101102d000bc60203017f017e047f024002400240024002404108101e2202450d002002200029030037000020002903082103200241084110102221020240024020034201510d002002450d03200241003a000841102104410921050c010b2002450d03200241013a0008200041106a29030021034120210420024110412010222202450d0420022003370009411121050b02400240200041186a2903004201510d00200220056a41003a0000200541016a21000c010b200220056a41013a0000200041206a290300210302402004200541016a22006b41074b0d002002200420044101742206200541096a2207200620074b1b220610222202450d060b200220006a2003370000200541096a21000b20012802002001280204200220001005200210200f0b41084101102d000b41104101102d000b41104101102d000b41204101102d000b20064101102d000bbc0203037f017e027f024002400240024002404108101e2202450d002002200029030037000020002802082103200241084110102221020240024020030d002002450d03200241003a000841102104410921030c010b2002450d03200241013a0008200329030021054120210420024110412010222202450d0420022005370009411121030b024002402000410c6a28020022000d00200220036a41003a0000200341016a21000c010b200220036a41013a00002000290300210502402004200341016a22006b41074b0d002002200420044101742206200341096a2207200620074b1b220610222202450d060b200220006a2005370000200341096a21000b20012802002001280204200220001005200210200f0b41084101102d000b41104101102d000b41104101102d000b41204101102d000b20064101102d000bcd0203027f017e037f20002802002102024002400240024002404108101e2203450d002003200229030037000020002903082104200341084110102221030240024020044201510d002003450d03200341003a000841102105410921020c010b2003450d03200341013a0008200041106a29030021044120210520034110412010222203450d0420032004370009411121020b02400240200041186a2903004201510d00200320026a41003a0000200241016a21000c010b200320026a41013a0000200041206a290300210402402005200241016a22006b41074b0d002003200520054101742206200241096a2207200620074b1b220610222203450d060b200320006a2004370000200241096a21000b20012802002001280204200320001005200310200f0b41084101102d000b41104101102d000b41104101102d000b41204101102d000b20064101102d000b8b0201057f230041c0006b22012400024002404119101e2202450d00200241186a41002d00fc86473a0000200241106a41002900f48647370000200241086a41002900ec8647370000200241002900e4864737000020024119413210222202450d0120022000370019200141206a41186a22034200370300200141206a41106a22044200370300200141206a41086a220542003703002001420037032020024121200141206a1001200141186a2003290300370300200141106a2004290300370300200141086a200529030037030020012001290320370300200210202001412041e4fdc6004100410010022102200141c0006a24002002417f470f0b41194101102d000b41324101102d000bb00501057f23004180016b220224000240024002404119101e2203450d00200341186a41002d00fc86473a0000200341106a41002900f48647370000200341086a41002900ec8647370000200341002900e4864737000020034119413210222203450d0120032001370019200241c8006a41186a22044200370300200241c8006a41106a22054200370300200241c8006a41086a220642003703002002420037034820034121200241c8006a1001200241286a41186a2004290300370300200241286a41106a2005290300370300200241286a41086a2006290300370300200220022903483703282003102020024100360248200241286a4120200241c8006a100321040240024020022802482205417f470d00410021030c010b024020040d00410021030c010b2002200536027420022004360270200241c8006a200241f0006a108d0120022802582203450d03200241186a41086a200241c8006a41086a290300370300200241086a200241e4006a290200370300200241106a200241ec006a280200360200200220022903483703182002200229025c3703002005450d00200410200b200241f0006a41086a2204200241186a41086a290300370300200241c8006a41086a2205200241086a290300370300200241c8006a41106a2206200241106a28020036020020022002290318370370200220022903003703480240024020030d002000420037030020004202370310200041086a4200370300200041206a4200370200200041186a428080808080013703000c010b2000200229037037030020002003360210200041146a2002290348370200200041086a20042903003703002000411c6a2005290300370200200041246a20062802003602000b20024180016a24000f0b41194101102d000b41324101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000b8a1303037f017e0b7f23004180016b22042400410021050240024020030d000c010b2002200341186c6a21060340024020022d00004109470d000240200229030822071089010d004186acc0002105410e21030c030b200441086a2007108a01200429031021070240200428021c450d00200428021810200b200428022421080240200428022c2203450d00200341186c21092008210303402003106b200341186a2103200941686a22090d000b0b02402004280228450d00200810200b200441086a2007107b02400240024020042802300e03010200010b20022f0110210a200428023c210b2004280234220c210d2004280238220e210f034002400240200d2f010622100d00410021090c010b20104104742108200d41086a2103417f21090340024020080d00201021090c020b0240417f2003290300220720015220072001561b22110d00417f200341086a2f010041ffff03712211200a41ffff0371221247201120124b1b21110b200341106a2103200841706a2108200941016a21090240201141016a0e03020001020b0b200c200e200b10720c030b0240200f450d00200f417f6a210f200d20094102746a41b8016a280200210d0c010b0b200c200e200b10720b20042802102109200428020821030240200428020c2208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b20042802202109200428021821030240200428021c2208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b200428022c210920042802242103024020042802282208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200836027c2004200d360278200420033602742004200f360270200441d8006a200441f0006a10612004280260210f200428026421032004280268210d200428026c21082009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b2004280248210920042802402103024020042802442208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200836027c2004200d360278200420033602742004200f360270200441d8006a200441f0006a10612004280260210f200428026421032004280268210d200428026c21082009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b41fbacc0002105412121030c030b20042802102109200428020821030240200428020c2208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200836027c2004200d360278200420033602742004200f360270200441d8006a200441f0006a10612004280260210f200428026421032004280268210d200428026c21082009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b20042802202109200428021821030240200428021c2208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b200428022c210920042802242103024020042802282208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b2004280248210920042802402103024020042802442208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b200241186a22022006470d000b410e21030b200020033602042000200536020020044180016a24000beb0901057f230041f0006b2206240041012107024002400240024020012d0000220841014b0d0020080e020102010b200041e6aac000360204200041086a411e3602000c020b200041086a4200370300410021070c010b02402002a74101460d00200041086a4203370300410021070c010b0240024002400240024002400240200141016a2207200310680d00200641286a41086a220842003703002006420037032841d4bfc4004108200641286a1000200641d0006a41086a2201200829030037030020062006290328370350200641286a200641d0006a4110106920062d00282108200641d0006a41186a2209200641c1006a290000370300200641d0006a41106a220a200641396a2900003703002001200641316a290000370300200620062900293703500240024020084101460d00200641086a41186a4200370300200641086a41106a4200370300200641086a41086a4200370300200642003703080c010b200641086a41186a2009290300370300200641086a41106a200a290300370300200641086a41086a2001290300370300200620062903503703080b200641086a2007460d00200641086a2007412010cf05450d00200041ceabc000360204200041086a41263602000c010b02402004a74101460d00200041106a2003370300200041086a4202370300410021070c070b4134101e2207450d02200741306a41002800aba940360000200741286a41002900a3a940370000200741206a410029009ba940370000200741186a4100290093a940370000200741106a410029008ba940370000200741086a4100290083a940370000200741002900fba8403700002007413441e80010222207450d0320072005370034200641286a41186a22014200370300200641286a41106a22084200370300200641286a41086a22094200370300200642003703282007413c200641286a1001200641d0006a41186a2001290300370300200641d0006a41106a2008290300370300200641d0006a41086a200929030037030020062006290328370350200710200240200641d0006a412041e4fdc600410041001002417f460d004134101e2207450d05200741306a41002800aba940360000200741286a41002900a3a940370000200741206a410029009ba940370000200741186a4100290093a940370000200741106a410029008ba940370000200741086a4100290083a940370000200741002900fba8403700002007413441e80010222207450d0620072005370034200641286a41186a22014200370300200641286a41106a22084200370300200641286a41086a22094200370300200642003703282007413c200641286a1001200641d0006a41186a2001290300370300200641d0006a41106a2008290300370300200641d0006a41086a2009290300370300200620062903283703502007102020064100360228200641d0006a4120200641286a100321070240024020062802282201417f460d002007450d0020014108490d01200729000021022007102020022003510d040b200041e9acc000360204200041086a41123602000c020b41ceb8c4004133200641286a41fcbfc4004184b9c400102e000b200041e9acc000360204200041086a41123602000b410121070c050b200041086a4201370300410021070c040b41344101102d000b41e8004101102d000b41344101102d000b41e8004101102d000b20002007360200200641f0006a24000bba0206037f017e017f017e017f017e230041206b220224000240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a36020020064108490d01200429000821072001200341706a3602042001200441106a360200200241106a200110e501200228021022030d02200041003602100c030b200041003602100c020b200041003602100c010b200241106a41086a2206280200210820022802142104200241106a200110e60102402002280210450d00200241086a20062802002201360200200220022903102209370300200041186a2008360200200020043602142000200336021020002007370308200020053703002000411c6a2009370200200041246a20013602000c010b200041003602102004450d00200310200b200241206a24000b890203017f017e077f02400240024020012802082202ad420c7e2203422088a70d002003a72204417f4c0d00200128020021050240024020040d00410421060c010b2004101e2206450d020b0240024020020d00410021070c010b20052002410c6c6a210841002107200621040340200541086a2802002201417f4c0d02200528020021090240024020010d004101210a0c010b2001101e220a450d050b200a2009200110cd052109200441086a2001360200200441046a2001360200200420093602002004410c6a2104200741016a21072005410c6a22052008470d000b0b2000200736020820002002360204200020063602000f0b102c000b20044104102d000b20014101102d000bcc0b01047f230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e130102030405060708090a0b0c0d0e0f10111200010b2001410c6a280200220341ffffffff01712003470d1320034103742204417f4c0d13200141046a28020021054108210102402004450d002004101e2201450d150b20012005200341037410cd0521012000410c6a2003360200200041086a2003360200200041046a2001360200200041123a00000c120b200041003a00000c110b200041013a0000200020012d00014100473a00010c100b200041023a0000200041026a200141026a2f01003b01000c0f0b200041033a0000200041046a200141046a2802003602000c0e0b200041043a0000200041086a200141086a2903003703000c0d0b200041053a0000200041026a200141026a2f01003b01000c0c0b200041063a0000200041046a200141046a2802003602000c0b0b200041073a0000200041086a200141086a2903003703000c0a0b2001410c6a2802002203417f4c0d0a200141046a28020021010240024020030d00410121040c010b2003101e2204450d0d0b20042001200310cd0521012000410c6a2003360200200041086a2003360200200041046a2001360200200041083a00000c090b200041093a0000200041086a200141086a2903003703000c080b2001410c6a2802002203417f4c0d08200141046a28020021010240024020030d0041012104410021050c010b200321052003101e2204450d0c0b20042001200310cd0521012000410c6a2003360200200041086a2005360200200041046a20013602002000410a3a00000c070b2001410c6a280200220320036a22042003490d072004417f4c0d07200141046a28020021010240024020040d00410221050c010b2004101e2205450d0c0b20052001200341017410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410b3a00000c060b2001410c6a280200220341ffffffff03712003470d0620034102742204417f4c0d06200141046a28020021054104210102402004450d002004101e2201450d0c0b20012005200341027410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410c3a00000c050b2001410c6a280200220341ffffffff01712003470d0520034103742204417f4c0d05200141046a28020021054108210102402004450d002004101e2201450d0c0b20012005200341037410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410d3a00000c040b2001410c6a280200220320036a22042003490d042004417f4c0d04200141046a28020021010240024020040d00410221050c010b2004101e2205450d0c0b20052001200341017410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410e3a00000c030b2001410c6a280200220341ffffffff03712003470d0320034102742204417f4c0d03200141046a28020021054104210102402004450d002004101e2201450d0c0b20012005200341027410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410f3a00000c020b2001410c6a280200220341ffffffff01712003470d0220034103742204417f4c0d02200141046a28020021054108210102402004450d002004101e2201450d0c0b20012005200341037410cd0521012000410c6a2003360200200041086a2003360200200041046a2001360200200041103a00000c010b2002200141046a108e01200041113a00002000410c6a200241086a280200360200200041046a20022903003702000b200241106a24000f0b102c000b20044108102d000b20034101102d000b20034101102d000b20044102102d000b20044104102d000b20044108102d000b20044102102d000b20044104102d000b20044108102d000bfc2c06027f017e097f017e077f017e23004190016b22032400200341186a2001108f0141002104024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022106411221040c110b410121040c100b410221040c0f0b410321040c0e0b410421040c0d0b410521040c0c0b410621040c0b0b410721040c0a0b20022f01022106410821040c090b200241086a2903002105410921040c080b20022f01022106410a21040c070b20022f01022106410b21040c060b20022f01022106410c21040c050b20022f01022106410d21040c040b20022f01022106410e21040c030b20022f01022106410f21040c020b20022f01022106411021040c010b200241046a2f0100210720022f01022106411121040b02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241186a2802002208417f4c0d002002280210210920022d0028210a0240024002400240024020080d004101210b0c010b2008101e220b450d010b200b2009200810cd05210c200241246a2802002209417f4c0d03200228021c210b0240024020090d004101210d0c010b2009101e220d450d020b200d200b200910cd05210d200341386a41086a220e200341186a41086a29030037030020032003290318220f3703384100210b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200fa7200a41ff01714100477241ff0171450d00200341f0006a2005370300200341ec006a20073b0100200341d8006a41126a20063b0100200341d8006a41086a200e290300370300200320032903382205370358200320043b01682005a741ff0171220741124b0d1520070e130102030405060708090a0b0c0d0e0f10111213010b02402008450d00200c10200b02402009450d00200d10200b200341386a106b0c170b2004450d120c130b20044101460d110c120b20044102460d100c110b20044103460d0f0c100b20044104460d0e0c0f0b20044105460d0d0c0e0b20044106460d0c0c0d0b20044107460d0b0c0c0b20044108460d0a0c0b0b20044109460d090c0a0b2004410a460d080c090b2004410b460d070c080b2004410c460d060c070b2004410d460d050c060b2004410e460d040c050b2004410f460d030c040b20044110460d020c030b20044111460d010c020b20044112470d010b4101210b0b200341d8006a106b02402008450d00200c10200b02402009450d00200d10200b200b0d024199dfc000210841cb0021090c2d0b20084101102d000b20094101102d000b200341086a2001108f0141002108024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022106411221080c110b410121080c100b410221080c0f0b410321080c0e0b410421080c0d0b410521080c0c0b410621080c0b0b410721080c0a0b20022f01022106410821080c090b200241086a2903002105410921080c080b20022f01022106410a21080c070b20022f01022106410b21080c060b20022f01022106410c21080c050b20022f01022106410d21080c040b20022f01022106410e21080c030b20022f01022106410f21080c020b20022f01022106411021080c010b200241046a2f0100210920022f01022106411121080b20022802182204417f4c0d00200228021021070240024020040d004101210a0c010b2004101e220a450d020b200a2007200410cd05210d20022802242207417f4c0d00200228021c210a0240024020070d004101210b0c010b2007101e220b450d030b200b200a200710cd05210a200341386a41086a200341086a41086a290300370300200341d0006a2005370300200341cc006a20093b0100200341ca006a20063b010020032003290308220f370338200320083b01480240200fa741ff01714109470d0020084109470d00200341386a41086a290300210f4118101e2208450d04200841106a41002900dc8647370000200841086a41002900d48647370000200841002900cc864737000020084118413010222208450d0520082005370018200341d8006a41186a22094200370300200341d8006a41106a22064200370300200341d8006a41086a220b42003703002003420037035820084120200341d8006a1001200341186a41186a2009290300370300200341186a41106a2006290300370300200341186a41086a200b290300370300200320032903583703182008102002400240200341186a412041e4fdc600410041001002417f470d0041b9d3c0002108411921090c010b0240200f1089010d004180ddc0002108411a21090c010b200341d8006a200f108a012003290360210f0240200341ec006a280200450d00200328026810200b200328027421060240200341fc006a2802002208450d00200841186c21092006210803402008106b200841186a2108200941686a22090d000b0b0240200341f8006a280200450d00200610200b200f2005510d0141d5dec0002108412a21090b200341386a106b02402004450d00200d10200b2007450d2b200a10200c2b0b200341386a106b02402004450d00200d10200b02402007450d00200a10200b200341386a2001108f0141002108024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022107411221080c110b410121080c100b410221080c0f0b410321080c0e0b410421080c0d0b410521080c0c0b410621080c0b0b410721080c0a0b20022f01022107410821080c090b200241086a2903002105410921080c080b20022f01022107410a21080c070b20022f01022107410b21080c060b20022f01022107410c21080c050b20022f01022107410d21080c040b20022f01022107410e21080c030b20022f01022107410f21080c020b20022f01022107411021080c010b200241046a2f0100210620022f01022107411121080b20022802182209417f4c0d00200228021021040240024020090d004101210a0c010b2009101e220a450d060b200a2004200910cd05210d20022802242204417f4c0d00200228021c210a0240024020040d004101210b0c010b2004101e220b450d070b200b200a200410cd05210a200341d8006a41086a220b200341386a41086a290300370300200341f0006a2005370300200341ec006a20063b0100200341ea006a20073b0100200320032903382205370358200320083b0168024002402005a741ff01714108470d00200b2802002106024020084108470d0041e4dfc0004100200341e4006a280200200741ffff03714b1b21082006450d02200328025c10200c020b410021082006450d01200328025c10200c010b200341d8006a106b410021080b02402009450d00200d10200b02402004450d00200a10200b4118210920080d2a200341086a2001108f0141002108024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022109411221080c110b410121080c100b410221080c0f0b410321080c0e0b410421080c0d0b410521080c0c0b410621080c0b0b410721080c0a0b20022f01022109410821080c090b200241086a2903002105410921080c080b20022f01022109410a21080c070b20022f01022109410b21080c060b20022f01022109410c21080c050b20022f01022109410d21080c040b20022f01022109410e21080c030b20022f01022109410f21080c020b20022f01022109411021080c010b200241046a2f0100210620022f01022109411121080b20022802182204417f4c0d00200228021021070240024020040d004101210a0c010b2004101e220a450d080b200a2007200410cd05210d20022802242207417f4c0d00200228021c210b4101210a02402007450d002007101e220a450d090b200a200b200710cd05210b200341386a41086a200341086a41086a290300370300200341d0006a2005370300200341cc006a20063b0100200341ca006a20093b010020032003290308220f370338200320083b0148200fa741ff017141766a220a41084b0d28024002400240024002400240024002400240200a0e09000102030405060708000b2008410a470d30200341c4006a280200200941ffff03714d210a41002110200341c0006a2802000d230c2f0b2008410b470d2f200341c4006a280200200941ffff03714d210a41002111200341c0006a2802000d210c2d0b2008410c470d2e200341386a410c6a280200200941ffff03714d210a41002112200341c0006a2802000d1f0c2a0b2008410d470d2d200341c4006a280200200941ffff03714d210a41002113200341c0006a2802000d1d0c270b2008410e470d2c200341c4006a280200200941ffff03714d210a41002114200341c0006a2802000d1b0c240b2008410f470d2b200341c4006a280200200941ffff03714d210a4100210e200341c0006a2802000d190c210b20084110470d2a200341c4006a280200200941ffff03714d210a4100210c200341c0006a2802000d170c1e0b20084111470d29200341c0006a28020021124100210a200328023c211402400240200341386a410c6a2802002213200941ffff03714b0d002013410c6c210a200641ffff0371210e2014210902400340200a450d0120092802082208417f4c0d05200928020021060240024020080d004101210c0c010b2008101e220c450d0f0b200c2006200810cd05210602402008450d00200610200b2009410c6a2109200a41746a210a2008200e4d0d000b02402013450d002013410c6c21092014210803400240200841046a280200450d00200828020010200b2008410c6a2108200941746a22090d000b0b41e4dfc0002108411821092012450d18201410200c180b4101210a2013450d010b2013410c6c21092014210803400240200841046a280200450d00200828020010200b2008410c6a2108200941746a22090d000b0b41002109024020120d00410121060c140b20141020410121060c130b20084112470d28200341c4006a280200210e200341386a41086a2802002115200328023c21164118101e2208450d0a200841106a41002900dc8647370000200841086a41002900d48647370000200841002900cc864737000020084118413010222208450d0b20082005370018200341d8006a41186a22064200370300200341d8006a41106a220a4200370300200341d8006a41086a220c42003703002003420037035820084120200341d8006a1001200341186a41186a2006290300370300200341186a41106a200a290300370300200341186a41086a200c29030037030020032003290358370318200810200240200341186a412041e4fdc600410041001002417f470d0041b9d3c0002108411921090c140b410021064100210a200e200941ffff03714d0d0c0c0d0b102c000b20044101102d000b20074101102d000b41184101102d000b41304101102d000b20094101102d000b20044101102d000b20044101102d000b20074101102d000b20084101102d000b41184101102d000b41304101102d000b2016200e4103746a21102016210c03400240200c2010470d004101210a0c020b0240200c2903001089010d004180ddc0002108411a21090c080b4119101e2208450d02200841186a41002d00fc86473a0000200841106a41002900f48647370000200841086a41002900ec8647370000200841002900e48647370000200c290300210f20084119413210222208450d032008200f370019200341d8006a41186a22094200370300200341d8006a41106a220a4200370300200341d8006a41086a220e42003703002003420037035820084121200341d8006a1001200341186a41186a2009290300370300200341186a41106a200a290300370300200341186a41086a200e290300370300200320032903583703182008102020034100360258200341186a4120200341d8006a100321090240024020032802582208417f470d004100210a0c010b20032008360284012003200936028001200341d8006a20034180016a108d012003280268220a450d05200328027c21132003280278211120032802742114200328026c2112200329036021172008450d00200910200b20134100200a1b21080240200a450d002012450d00200a10200b20144108200a1b210e02402008450d00200841186c2109200e210803402008106b200841186a2108200941686a22090d000b0b20174200200a1b210f0240200a450d002011450d00200e10200b200c41086a210c200f2005510d000b41d5dec0002108412a21090c060b2015450d03201610200c030b41194101102d000b41324101102d000b41ceb8c400413320034188016a41fcbfc4004184b9c400102e000b410121090b4101210c0c0a0b2015450d00201610200b024020032d003841766a4109490d00200341386a106b0b02402004450d00200d10200b2007450d15200b10200c150b200328023c10200c060b200328023c10200c070b200328023c10200c080b200328023c10200c090b200328023c10200c0a0b200328023c10200c0b0b200328023c10200c0b0b41012106410121090b4101210e0c010b41012106410121094101210c0b410121140c010b41012106410121094101210c4101210e0b410121130c010b41012106410121094101210c4101210e410121140b410121120c010b41012106410121094101210c4101210e41012114410121130b41012111410121100c030b41012106410121094101210c4101210e410121144101211341012112410121100c020b41012106410121094101210c4101210e410121144101211341012112410121110c010b41012106410121094101210c4101210e41012114410121134101211241012111410121104101210a0b0240024002400240024002400240024002400240024020032d003841766a220841084b0d0020080e09010203040506070809010b200341386a106b0c090b2010450d08200341c0006a280200450d08200328023c10200c080b2011450d07200341c0006a280200450d07200328023c10200c070b2012450d06200341c0006a280200450d06200328023c10200c060b2013450d05200341c0006a280200450d05200328023c10200c050b2014450d04200341c0006a280200450d04200328023c10200c040b200e450d03200341c0006a280200450d03200328023c10200c030b200c450d02200341c0006a280200450d02200328023c10200c020b2009450d010240200341386a410c6a2802002209450d00200328023c21082009410c6c210903400240200841046a280200450d00200828020010200b2008410c6a2108200941746a22090d000b0b200341c0006a280200450d01200328023c10200c010b2006450d00200341c0006a280200450d00200328023c10200b02402004450d00200d10200b02402007450d00200b10200b0240200a0d0041ffdec0002108411a21090c010b0240200241146a280200450d00200228021010200b410021080240200241206a280200450d00200228021c10200b0c010b0240200241146a280200450d00200228021010200b200241206a280200450d00200228021c10200b2001106b200020093602042000200836020020034190016a24000bd32107027f017e057f027e047f017e037f230041306b22022400200241086a2001105e0240024020022802082203450d00200229020c2104024020012802042205450d00200128020022062d0000210720012005417f6a22083602042001200641016a360200200741014b0d00410021090240024020070e020100010b410121090b200241026a41026a200241056a41026a2d00003a0000200220022f00053b01020240024002402008450d0020062d0001210720012005417e6a3602042001200641026a360200200741014b0d00410021080240024020070e020100010b410121080b200241086a2001105e200228020822050d01200041033602282004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0520032802002101200310202001450d0520012802002105200110202005450d05024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c050b200041033602282004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0420032802002101200310202001450d0420012802002105200110202005450d0420052802002203450d010340200510202003210520032802002201210320010d000c020b0b200229020c210a200241086a2001105e024020022802082206450d00200229020c210b200241086a200110920102402002280208220c4103460d00200241146a280200210d200241106a280200210e200228020c210f200241086a2001105e024020022802082207450d00200229020c21100240200128020422114104490d0020012802002212280000211320012011417c6a3602042001201241046a360200200241086a41026a200241026a41026a2d000022013a0000200220022f010222113b0108200020093a000c2000200437020420002003360200200020113b000d2000410f6a20013a0000200041c8006a20083a0000200041c4006a20133602002000413c6a2010370200200041386a2007360200200041346a200d360200200041306a200e3602002000200f36022c2000200c3602282000200b3702202000200636021c2000200a37021420002005360210200020022f00203b0049200041cb006a200241206a41026a2d00003a00000c070b200041033602282010422088a7210102402010a72200450d00200021080340200728026021072008417f6a22080d000b03402000417f6a22000d000b0b02402001450d0041002100410021084100210903402002200936022c200220083602282002200736022420022000360220200241086a200241206a1061200228021021002002280214210720022802182108200228021c21092001417f6a22010d000b0b0240200741908cc500460d0020072802002101200710202001450d0020012802002107200110202007450d00024020072802002201450d000340200710202001210720012802002200210120000d000b0b200710200b0240200c4102490d00200f200e200d10720b200b422088a721010240200ba72207450d00200721000340200628026021062000417f6a22000d000b03402007417f6a22070d000b0b02402001450d0041002107410021004100210803402002200836022c200220003602282002200636022420022007360220200241086a200241206a1061200228021021072002280214210620022802182100200228021c21082001417f6a22010d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002207210120070d000b0b200610200b200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200036022c200220073602282002200536022420022006360220200241086a200241206a1061200228021021062002280214210520022802182107200228021c21002001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200736022c200220063602282002200336022420022001360220200241086a200241206a1061200228021021012002280214210320022802182106200228021c21072005417f6a22050d000b0b200341908cc500460d0620032802002101200310202001450d0620012802002105200110202005450d06024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c060b200041033602280240200c4102490d00200f200e200d10720b200b422088a721010240200ba72207450d00200721000340200628026021062000417f6a22000d000b03402007417f6a22070d000b0b02402001450d0041002107410021004100210803402002200836022c200220003602282002200636022420022007360220200241086a200241206a1061200228021021072002280214210620022802182100200228021c21082001417f6a22010d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002207210120070d000b0b200610200b200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200036022c200220073602282002200536022420022006360220200241086a200241206a1061200228021021062002280214210520022802182107200228021c21002001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200736022c200220063602282002200336022420022001360220200241086a200241206a1061200228021021012002280214210320022802182106200228021c21072005417f6a22050d000b0b200341908cc500460d0520032802002101200310202001450d0520012802002105200110202005450d05024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c050b20004103360228200b422088a721010240200ba72207450d00200721000340200628026021062000417f6a22000d000b03402007417f6a22070d000b0b02402001450d0041002107410021004100210803402002200736022c200220003602282002200636022420022008360220200241086a200241206a1061200228021021082002280214210620022802182100200228021c21072001417f6a22010d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002207210120070d000b0b200610200b200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200036022c200220073602282002200536022420022006360220200241086a200241206a1061200228021021062002280214210520022802182107200228021c21002001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200736022c200220063602282002200336022420022001360220200241086a200241206a1061200228021021012002280214210320022802182106200228021c21072005417f6a22050d000b0b200341908cc500460d0420032802002101200310202001450d0420012802002105200110202005450d04024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c040b20004103360228200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200636022c200220073602282002200536022420022000360220200241086a200241206a1061200228021021002002280214210520022802182107200228021c21062001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0320032802002101200310202001450d0320012802002105200110202005450d03024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c030b200510200c020b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0020032802002101200310202001450d0020012802002105200110202005450d00024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200b200041033602280b200241306a24000bf517050a7f017e047f017e0b7f230041a0016b2202240002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a3602042001200441016a360200200541024b0d0420050e03010203010b200041033602000c040b200041003602000c030b200041013602000c020b200241086a2001105f024002400240024020022802080d00200228020c210620024200370214200241908cc50036021002402006450d00200241e8006a41066a220741286a2108200741206a210920024196016a210a4100210b0340024002400240200128020422054108490d0020012802002203290000210c2001200541786a22043602042001200341086a220336020020044102490d0020032f0000210d2001200541766a3602042001200341026a3602000240024002402002280210220541908cc500460d002002280214210e0c010b41b801101e2205450d014100210e200541003b011020054200370308200541003b01062005410036020020052002280120360112200541003b01202005420037031820052002280162360122200541003b0130200542003703282005200228015c360132200541166a200241206a41046a2f01003b0100200541266a200241e2006a41046a2f01003b0100200541366a200241dc006a41046a2f01003b0100200541003b01402005420037033820054200370348200541003b015020054200370358200541003b016020052002280156360142200541c6006a200241d6006a41046a2f01003b010020052002280150360152200541d6006a200241d0006a41046a2f01003b01002005200228014a360162200541e6006a200241ca006a41046a2f01003b0100200541003b017020054200370368200541003b01800120054200370378200541003b019001200542003703880120052002280144360172200541f6006a200241c4006a41046a2f01003b01002005200228013e3601820120054186016a2002413e6a41046a2f01003b0100200520022801383601920120054196016a200241386a41046a2f01003b0100200541003b01a0012005420037039801200541a6016a200241326a41046a2f01003b0100200520022801323601a201200541003b01b001200542003703a801200541b6016a200241e8006a41046a2f01003b0100200520022801683601b20120024100360214200220053602100b200b41016a210b03400240024020052f0106220f0d00410021040c010b200f4104742110200541086a2103417f21040340024020100d00200f21040c020b0240417f20032903002211200c522011200c561b22120d00417f200341086a2f010041ffff03712212200d41ffff0371221347201220134b1b21120b200341106a2103201041706a2110200441016a2104201241016a0e03010600010b0b0240200e450d00200e417f6a210e200520044102746a41b8016a28020021050c010b0b2002200228021841016a36021802400240024020052f01062203410b490d0002400240200541908cc500460d0041b801101e22030d0141b8014108102d000b41c8a6c000412d41a888c6001028000b200341003b011020034200370308200341003b01062003410036020020032002280120360112200341003b01202003420037031820032002280162360122200341003b0130200342003703282003200228015c360132200341166a200241206a41046a22132f01003b0100200341266a200241e2006a41046a22142f01003b0100200341366a200241dc006a41046a22152f01003b0100200341003b01402003420037033820034200370348200341003b015020034200370358200341003b016020032002280156360142200341c6006a200241d6006a41046a22162f01003b010020032002280150360152200341d6006a200241d0006a41046a22172f01003b01002003200228014a360162200341e6006a200241ca006a41046a22182f01003b0100200341003b017020034200370368200341003b01800120034200370378200341003b019001200342003703880120032002280144360172200341f6006a200241c4006a41046a22192f01003b01002003200228013e3601820120034186016a2002413e6a41046a221a2f01003b0100200320022801383601920120034196016a200241386a41046a221b2f01003b0100200341003b01a0012003420037039801200341a6016a200241326a41046a221c2f01003b0100200320022801323601a201200341003b01b001200342003703a801200341b6016a200241e8006a41046a2f01003b0100200320022801683601b20120052f0170211020052903682111200341086a200541f8006a20052f010641796a220e41047410cd052112200541063b01062003200e3b010620044107490d01200441047420126a41a07f6a2012200441796a220f4104746a2204200e41ffff0371200f6b41047410ce051a2004200d3b01082004200c370300200320032f010641016a3b01060c020b200520044104746a221041186a201041086a220e200320046b41047410ce051a201041106a200d3b0100200e200c370300200520052f010641016a3b01060c050b200541086a20044104746a220e41106a200e20052f010620046b41047410ce051a200e200d3b0108200e200c370300200520052f010641016a3b01060b0240200528020022040d004100210e200241106a21040c030b200220052f010436022c200220043602242002200241106a36022820024101360220200241e8006a200241206a2011201020034100105c20022802684101470d03034020022802742104200228027c210e2002280278210320022f01880121102002290380012111200228027022052802002212450d03200228026c210f200220052f010436022c20022004360228200220123602242002200f41016a360220200241e8006a200241206a201120102003200e105c20022802684101460d000c040b0b41b8014108102d000b20022802102002290214220ca7200c422088a710720c040b2008420037010020094200370100200741186a4200370100200741106a4200370100200741086a42003701002007420037010041e801101e2205450d04200541003b011020054200370308200541003b01062005410036020020052002280120360112200541003b01202005420037031820052002280162360122200541003b0130200542003703282005200228015c360132200541166a20132f01003b0100200541266a20142f01003b0100200541366a20152f01003b0100200541003b01402005420037033820054200370348200541003b015020054200370358200541003b016020052002280156360142200541c6006a20162f01003b010020052002280150360152200541d6006a20172f01003b01002005200228014a360162200541e6006a20182f01003b0100200541003b017020054200370368200541003b01800120054200370378200541003b019001200542003703880120052002280144360172200541f6006a20192f01003b01002005200228013e3601820120054186016a201a2f01003b0100200520022801383601920120054196016a201b2f01003b0100200541003b01a0012005420037039801200541a6016a201c2f01003b0100200520022801323601a201200541003b01b001200542003703a801200541e0016a200a290100370100200541da016a200241e8006a41286a290100370100200541d2016a200241e8006a41206a290100370100200541ca016a200241e8006a41186a290100370100200541c2016a200241e8006a41106a290100370100200541ba016a200241e8006a41086a290100370100200520022901683701b2012005200428020022123602b8012004200536020020042004280204220f41016a360204201241003b010420122005360200200f200e470d0520052f01062204410a4b0d06200520044104746a220e41106a20103b0100200e41086a20113703002005200441016a22044102746a41b8016a2003360200200520043b0106200320043b0104200320053602000b200b2006470d000b0b20022802102205450d002002290214210c2000200536020420004102360200200041086a200c3702000c050b200041033602000c040b41e8014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200041033602000b200241a0016a24000b8e0202057f047e0240024020012802042202450d00200128020022032d0000210420012002417f6a22053602042001200341016a2206360200200441014b0d00420021070240024020040e020100010b20054108490d01200329000121082001200241776a22053602042001200341096a2206360200420121070b2005450d0120062d0000210220012005417f6a22043602042001200641016a360200200241014b0d01420021090240024020020e020100010b20044108490d022006290001210a2001200541776a3602042001200641096a360200420121090b2000200837030820002007370300200041186a200a370300200041106a20093703000f0b200042023703000f0b200042023703000bae0802037f017e024002400240024002400240024020002903004201510d000240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b0240024002400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d05200241017422042003200420034b1b22044100480d050240024020020d002004101e21030c010b200128020020022004102221030b2003450d0120012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200029030821050240200141046a2802002203200428020022026b4108490d00200128020021030c020b200241086a22042002490d04200341017422022004200220044b1b22024100480d040240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c020b20024101102d000b20044101102d000b200141086a200241086a360200200320026a20053700000c010b200141086a200241016a360200200320026a41003a00000b024020002903104201510d000240200141046a280200200141086a2802002200460d00200128020021020c050b200041016a22022000490d01200041017422032002200320024b1b22034100480d010240024020000d002003101e21020c010b200128020020002003102221020b02402002450d0020012002360200200141046a2003360200200141086a28020021000c050b20034101102d000b02400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d01200241017422042003200420034b1b22044100480d010240024020020d002004101e21030c010b200128020020022004102221030b2003450d0220012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200029031821050240200141046a2802002202200428020022006b4108490d00200128020021020c030b200041086a22032000490d00200241017422002003200020034b1b22004100480d000240024020020d002000101e21020c010b200128020020022000102221020b02402002450d0020012002360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20044101102d000b200141086a200041086a360200200220006a20053700000f0b200141086a200041016a360200200220006a41003a00000b13002000410d36020420004184aec0003602000b3400200041abe5c10036020420004100360200200041146a4102360200200041106a41b4c0c000360200200041086a42193702000b971101067f23004180016b22022400200241c4006a4200370200200241286a42003703002002411c6a4200370200200241003a0050200241013a00142002420037020c200241908cc5003602082002410036024c200241908cc50036024020024100360230200241908cc500360224200241908cc5003602182002410036026020024201370358200241086a200241d8006a106220022d00142103024002400240200228025c20022802602204460d00200228025821050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200228025820042006102221050b02402005450d002002200636025c200220053602580c010b20064101102d000b2002200441016a360260200520046a20033a000020022d0050210302400240024002400240024002400240200228025c20022802602204470d00200441016a22062004490d08200441017422072006200720064b1b22064100480d080240024020040d002006101e21050c010b200520042006102221050b2005450d012002200636025c200220053602580b2002200441016a360260200520046a20033a0000200241186a200241d8006a1062200241246a200241d8006a10622002280230220541024b0d0620050e03010203010b20064101102d000b0240200228025c20022802602205460d00200228025821040c040b200541016a22042005490d05200541017422032004200320044b1b22034100480d050240024020050d002003101e21040c010b200228025820052003102221040b02402004450d002002200336025c200220043602580c040b20034101102d000b0240200228025c20022802602205460d00200228025821040c020b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228025820052003102221040b02402004450d002002200336025c200220043602580c020b20034101102d000b02400240200228025c20022802602205460d00200228025821040c010b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228025820052003102221040b02402004450d002002200336025c200220043602580c010b20034101102d000b2002200541016a360260200420056a41023a0000200241346a200241d8006a10640c020b2002200541016a360260200420056a41013a00000c010b2002200541016a360260200420056a41003a00000b200241c0006a200241d8006a1062200228024c210602400240200228025c2203200228026022056b4104490d00200541046a2104200228025821030c010b200541046a22042005490d01200341017422072004200720044b1b22074100480d010240024020030d002007101e21030c010b200228025820032007102221030b02402003450d002002200736025c200220033602580c010b20074101102d000b20022004360260200320056a2006360000200041086a20022802603602002000200229035837020020022802102104200228020821050240200228020c2200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200636027c200220033602782002200536027420022000360270200241d8006a200241f0006a1061200228026021002002280264210520022802682103200228026c21062004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b20022802202104200228021821050240200228021c2200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200636027c200220033602782002200536027420022000360270200241d8006a200241f0006a1061200228026021002002280264210520022802682103200228026c21062004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b200228022c210420022802242105024020022802282200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200036027c200220033602782002200536027420022006360270200241d8006a200241f0006a1061200228026021062002280264210520022802682103200228026c21002004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b024020022802304102490d002002280234200241386a2802002002413c6a28020010720b2002280248210420022802402105024020022802442200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200036027c200220033602782002200536027420022006360270200241d8006a200241f0006a1061200228026021062002280264210520022802682103200228026c21002004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b20024180016a24000f0b1027000bac7f03047f017e067f230041106b22022400024020002d0000417f6a2203410c4b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e0d000102030405060708090a0b0c000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d44200341017422052004200520044b1b22054100480d440240024020030d002005101e21040c010b200128020020032005102221040b2004450d0d20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c470b200341086a22052003490d43200441017422032005200320054b1b22034100480d430240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c470b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d43200341017422052004200520044b1b22054100480d430240024020030d002005101e21040c010b200128020020032005102221040b2004450d0d20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000024020002903184201510d000240200141046a28020020052802002203460d00200128020021040c420b200341016a22042003490d43200341017422052004200520044b1b22054100480d430240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c420b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d43200341017422052004200520044b1b22054100480d430240024020030d002005101e21040c010b200128020020032005102221040b2004450d0e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029032021060240200141046a2802002204200528020022036b4108490d00200128020021040c400b200341086a22052003490d42200441017422032005200320054b1b22034100480d420240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c400b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d42200341017422052004200520044b1b22054100480d420240024020030d002005101e21040c010b200128020020032005102221040b2004450d0e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000024020002903084201510d000240200141046a28020020052802002203460d00200128020021040c3e0b200341016a22042003490d42200341017422052004200520044b1b22054100480d420240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3e0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d42200341017422052004200520044b1b22054100480d420240024020030d002005101e21040c010b200128020020032005102221040b2004450d0f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c3c0b200341086a22052003490d41200441017422032005200320054b1b22034100480d410240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c3c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d41200341017422052004200520044b1b22054100480d410240024020030d002005101e21040c010b200128020020032005102221040b2004450d0f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c3a0b200341016a22042003490d41200341017422052004200520044b1b22054100480d410240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3a0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d41200341017422052004200520044b1b22054100480d410240024020030d002005101e21040c010b200128020020032005102221040b2004450d1020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c380b200341086a22052003490d40200441017422032005200320054b1b22034100480d400240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c380b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d40200341017422052004200520044b1b22054100480d400240024020030d002005101e21040c010b200128020020032005102221040b2004450d1020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c360b200341016a22042003490d40200341017422052004200520044b1b22054100480d400240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c360b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d40200341017422052004200520044b1b22054100480d400240024020030d002005101e21040c010b200128020020032005102221040b2004450d1120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c340b200341086a22052003490d3f200441017422032005200320054b1b22034100480d3f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c340b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3f200341017422052004200520044b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a0000024020002903184201510d000240200141046a28020020052802002203460d00200128020021040c320b200341016a22042003490d3f200341017422052004200520044b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c320b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3f200341017422052004200520044b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029032021060240200141046a2802002204200528020022036b4108490d00200128020021040c300b200341086a22052003490d3e200441017422032005200320054b1b22034100480d3e0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c300b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3e200341017422052004200520044b1b22054100480d3e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41063a00002000280204210820022000410c6a280200220336020c2002410c6a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d3e200541017422042007200420074b1b22044100480d3e0240024020050d002004101e21050c010b200128020020052004102221050b2005450d1320012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310cd051a200028021021082002200041186a280200220336020c2002410c6a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d3e200541017422042007200420074b1b22044100480d3e0240024020050d002004101e21050c010b200128020020052004102221050b2005450d1420012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310cd051a2000411c6a20011062200041286a2d0000210502400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d3e200341017422072004200720044b1b22074100480d3e0240024020030d002007101e21040c010b200128020020032007102221040b2004450d1520012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a20053a0000200041e4006a2d000021050240200141046a28020020072802002203460d00200128020021040c2e0b200341016a22042003490d3d200341017422072004200720044b1b22074100480d3d0240024020030d002007101e21040c010b200128020020032007102221040b02402004450d0020012004360200200141046a2007360200200141086a28020021030c2e0b20074101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3d200341017422052004200520044b1b22054100480d3d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1520012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41073a00002000280204210820022000410c6a280200220336020c2002410c6a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d3d200541017422042007200420074b1b22044100480d3d0240024020050d002004101e21050c010b200128020020052004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310cd051a200028021021052002200041186a280200220336020c2002410c6a200110630240200141046a2802002204200728020022006b2003490d00200128020021040c2c0b200020036a22072000490d3c200441017422002007200020074b1b22004100480d3c0240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c2c0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3c200341017422052004200520044b1b22054100480d3c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a0000024020002903204201510d000240200141046a28020020052802002203460d00200128020021040c2a0b200341016a22042003490d3c200341017422052004200520044b1b22054100480d3c0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c2a0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3c200341017422052004200520044b1b22054100480d3c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029032821060240200141046a2802002204200528020022036b4108490d00200128020021040c280b200341086a22052003490d3b200441017422032005200320054b1b22034100480d3b0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c280b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3b200341017422052004200520044b1b22054100480d3b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000024020002903084201510d000240200141046a28020020052802002203460d00200128020021040c260b200341016a22042003490d3b200341017422052004200520044b1b22054100480d3b0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c260b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3b200341017422052004200520044b1b22054100480d3b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c240b200341086a22052003490d3a200441017422032005200320054b1b22034100480d3a0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c240b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3a200341017422052004200520044b1b22054100480d3a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c220b200341016a22042003490d3a200341017422052004200520044b1b22054100480d3a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c220b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3a200341017422052004200520044b1b22054100480d3a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1920012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c200b200341086a22052003490d39200441017422032005200320054b1b22034100480d390240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c200b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b2004450d1920012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c1e0b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1e0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b2004450d1a20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c1c0b200341086a22052003490d38200441017422032005200320054b1b22034100480d380240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c1c0b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c1a0b200441016a22032004490d37200441017422052003200520034b1b22034100480d370240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c1a0b20034101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20044101102d000b20044101102d000b20074101102d000b20054101102d000b20044101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b200141086a2203200441016a360200200520046a410c3a00002000280204210920022000410c6a280200220036020c2002410c6a200110632000450d21200920004106746a210a200141046a2104034002400240024020092903004201510d000240200428020020032802002200460d00200128020021050c020b200041016a22052000490d21200041017422072005200720054b1b22074100480d210240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b0240024002400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d23200041017422072005200720054b1b22074100480d230240024020000d002007101e21050c010b200128020020002007102221050b2005450d012001200536020020042007360200200328020021000b2003200041016a360200200520006a41013a000020092903082106024020042802002205200328020022006b4108490d00200128020021050c020b200041086a22072000490d22200541017422002007200020074b1b22004100480d220240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c020b20004101102d000b20074101102d000b2003200041086a360200200520006a20063700000c010b2003200041016a360200200520006a41003a00000b20092d0038210702400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d1f200041017422082005200820054b1b22084100480d1f0240024020000d002008101e21050c010b200128020020002008102221050b02402005450d002001200536020020042008360200200328020021000c010b20084101102d000b2003200041016a360200200520006a20073a000002402009280210220041024b0d00024002400240024002400240024020000e03000102000b0240200428020020032802002200460d00200128020021050c040b200041016a22052000490d04200041017422072005200720054b1b22074100480d040240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c040b20074101102d000b0240200428020020032802002200460d00200128020021050c020b200041016a22052000490d03200041017422072005200720054b1b22074100480d030240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d03200041017422072005200720054b1b22074100480d030240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c010b20074101102d000b2003200041016a360200200520006a41023a000002400240024020092802184101460d000240200428020020032802002200460d00200128020021050c020b200041016a22052000490d05200041017422072005200720054b1b22074100480d050240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d05200041017422072005200720054b1b22074100480d050240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c010b20074101102d000b2003200041016a360200200520006a41013a0000200929032021060240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22072000490d05200541017422002007200020074b1b22004100480d050240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041086a360200200520006a20063700000c010b2003200041016a360200200520006a41003a0000200928021c21070240024020042802002205200328020022006b4104490d00200128020021050c010b200041046a22082000490d04200541017422002008200020084b1b22004100480d040240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041046a360200200520006a20073600000b20092f013421070240024020042802002205200328020022006b4102490d00200128020021050c010b200041026a22082000490d03200541017422002008200020084b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041026a360200200520006a20073b00002009280228210520022009280230220036020c2002410c6a200110632000450d04200041057421080340200541186a2f0100210b0240024020042802002207200328020022006b4102490d00200128020021070c010b200041026a220c2000490d0420074101742200200c2000200c4b1b22004100480d040240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020042000360200200328020021000c010b20004101102d000b2003200041026a360200200720006a200b3b000020052001109901200541206a2105200841606a22080d000c050b0b2003200041016a360200200520006a41013a000002400240024020092802184101460d000240200428020020032802002200460d00200128020021050c020b200041016a22052000490d04200041017422072005200720054b1b22074100480d040240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d04200041017422072005200720054b1b22074100480d040240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c010b20074101102d000b2003200041016a360200200520006a41013a0000200929032021060240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22072000490d04200541017422002007200020074b1b22004100480d040240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041086a360200200520006a20063700000c010b2003200041016a360200200520006a41003a0000200928021c21070240024020042802002205200328020022006b4104490d00200128020021050c010b200041046a22082000490d03200541017422002008200020084b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041046a360200200520006a20073600000b2009280228210520022009280230220036020c2002410c6a200110632000450d03200041057421080340200541186a2f0100210b0240024020042802002207200328020022006b4102490d00200128020021070c010b200041026a220c2000490d0320074101742200200c2000200c4b1b22004100480d030240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020042000360200200328020021000c010b20004101102d000b2003200041026a360200200720006a200b3b000020052001109901200541206a2105200841606a22080d000c040b0b2003200041016a360200200520006a41003a000020092903182106024020042802002205200328020022006b4108490d00200128020021050c020b200041086a22072000490d00200541017422002007200020074b1b22004100480d000240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c020b20004101102d000b1027000b2003200041086a360200200520006a20063700000b200941c0006a2209200a470d000c220b0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b20002d000121050240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1d200341017422072004200720044b1b22074100480d1d0240024020030d002007101e21040c010b200128020020032007102221040b2004450d0120012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a20053a0000200029032021060240200141046a2802002204200728020022036b4108490d00200128020021040c020b200341086a22052003490d1c200441017422032005200320054b1b22034100480d1c0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20074101102d000b200141086a2205200341086a360200200420036a20063700002000280204210420022000410c6a280200220336020c2002410c6a200110632003450d1e200341186c2107200141046a210b0340200441106a2f0100210802400240200b2802002200200528020022036b4102490d00200128020021000c010b200341026a22092003490d1c200041017422032009200320094b1b22034100480d1c0240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200b2003360200200528020021030c010b20034101102d000b2005200341026a360200200020036a20083b000020042001109a01200441186a2104200741686a22070d000c1f0b0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b20002d0001210502400240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1b200341017422072004200720044b1b22074100480d1b0240024020030d002007101e21040c010b200128020020032007102221040b2004450d0120012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a20053a00002000290320210602400240200141046a2802002204200728020022036b4108490d00200128020021040c010b200341086a22052003490d1b200441017422032005200320054b1b22034100480d1b0240024020040d002003101e21040c010b200128020020042003102221040b2004450d0220012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200637000020002f010221070240200141046a2802002204200528020022036b4102490d00200128020021040c030b200341026a22052003490d1a200441017422032005200320054b1b22034100480d1a0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c030b20034101102d000b20074101102d000b20034101102d000b200141086a2205200341026a360200200420036a20073b00002000280204210420022000410c6a280200220336020c2002410c6a200110632003450d1b200341186c2107200141046a210b0340200441106a2f0100210802400240200b2802002200200528020022036b4102490d00200128020021000c010b200341026a22092003490d19200041017422032009200320094b1b22034100480d190240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200b2003360200200528020021030c010b20034101102d000b2005200341026a360200200020036a20083b000020042001109a01200441186a2104200741686a22070d000c1c0b0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290318210602400240200141046a2802002200200141086a28020022036b4108490d00200128020021000c010b200341086a22042003490d15200041017422032004200320044b1b22034100480d150240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200020036a20063700000c180b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290330210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d12200441017422032005200320054b1b22034100480d120240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2207200341086a360200200420036a20063700002000280204210420022000410c6a280200220336020c2002410c6a2001106302402003450d0020034101742108200141046a2109034020042f0100210b0240024020092802002205200728020022036b4102490d00200128020021050c010b200341026a220c2003490d1420054101742203200c2003200c4b1b22034100480d140240024020050d002003101e21050c010b200128020020052003102221050b02402005450d002001200536020020092003360200200728020021030c010b20034101102d000b200441026a21042007200341026a360200200520036a200b3b00002008417e6a22080d000b0b2000280210200041186a2802002001109b010c150b200141086a200020036a360200200420006a2005200310cd051a0c140b200141086a2207200341016a360200200420036a20053a00002000412c6a20011062200041386a200110620240200041c4006a280200220341024b0d000240024002400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d14200341017422052004200520044b1b22054100480d140240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d13200341017422052004200520044b1b22054100480d130240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d13200341017422052004200520044b1b22054100480d130240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200420036a41023a0000200041c8006a200110640c020b200141086a200341016a360200200420036a41013a00000c010b200141086a200341016a360200200420036a41003a00000b200041d4006a20011062200041e0006a280200210402400240200141046a2802002200200728020022036b4104490d00200128020021000c010b200341046a22052003490d10200041017422032005200320054b1b22034100480d100240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341046a360200200020036a20043600000c130b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290328210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d0d200441017422032005200320054b1b22034100480d0d0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a20063700002000280204220341024b0d100240024002400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021000c040b200341016a22002003490d10200341017422042000200420004b1b22044100480d100240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c040b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021000c020b200341016a22002003490d0f200341017422042000200420004b1b22044100480d0f0240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c020b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d0f200341017422052004200520044b1b22054100480d0f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200420036a41023a0000200041086a200110640c120b200141086a200341016a360200200020036a41013a00000c110b200141086a200341016a360200200020036a41003a00000c100b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290320210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d0a200441017422032005200320054b1b22034100480d0a0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041046a200110620c0d0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290320210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041046a200110620c0a0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b200029031821060240024002400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b2004450d0120012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200637000020002d000121040240200141046a28020020052802002203460d00200128020021000c020b200341016a22002003490d05200341017422052000200520004b1b22054100480d050240024020030d002005101e21000c010b200128020020032005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021030c020b20054101102d000b20034101102d000b200141086a200341016a360200200020036a20043a00000c070b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290328210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b2004450d0220012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041046a20011062200041106a2d000021040240200141046a28020020052802002203460d00200128020021000c030b200341016a22002003490d00200341017422052000200520004b1b22054100480d000240024020030d002005101e21000c010b200128020020032005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021030c030b20054101102d000b1027000b20034101102d000b200141086a200341016a360200200020036a20043a00000c010b200141086a200341086a360200200420036a2006370000200041046a200110620b200241106a24000bcd0b02087f017e230041106b2202240002402000280200220341024b0d000240024002400240024002400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021040c070b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c070b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020421000240200141046a2802002204200528020022036b4104490d00200128020021040c050b200341046a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c050b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c020b200441016a22032004490d02200441017422052003200520034b1b22034100480d020240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b20054101102d000b200141086a2203200441016a360200200520046a41023a00002000280204210420022000410c6a280200220036020c2002410c6a200110632000450d0320004104742105034002400240024002400240024020042802004101460d0002400240200141046a220628020020032802002200460d00200128020021070c010b200041016a22072000490d08200041017422082007200820074b1b22084100480d080240024020000d002008101e21070c010b200128020020002008102221070b2007450d022001200736020020062008360200200328020021000b2003200041016a360200200720006a41003a0000200441046a2802002108024020062802002207200328020022006b4104490d00200128020021070c050b200041046a22092000490d07200741017422002009200020094b1b22004100480d070240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020062000360200200328020021000c050b20004101102d000b02400240200141046a220628020020032802002200460d00200128020021070c010b200041016a22072000490d07200041017422082007200820074b1b22084100480d070240024020000d002008101e21070c010b200128020020002008102221070b2007450d022001200736020020062008360200200328020021000b2003200041016a360200200720006a41013a0000200441086a290300210a024020062802002207200328020022006b4108490d00200128020021070c030b200041086a22082000490d06200741017422002008200020084b1b22004100480d060240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020062000360200200328020021000c030b20004101102d000b20084101102d000b20084101102d000b2003200041086a360200200720006a200a3700000c010b2003200041046a360200200720006a20083600000b200441106a2104200541706a22050d000c040b0b1027000b200141086a200341046a360200200420036a20003600000c010b200141086a200341016a360200200420036a41003a0000200041086a2001109a010b200241106a24000bbf3703047f017e057f230041106b22022400024020002d0000220341124b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e13000102030405060708090a0b0c0d0e0f101112000b0240200141046a280200200141086a2802002200460d00200128020021030c2f0b200041016a22032000490d24200041017422042003200420034b1b22044100480d240240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c2f0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d24200341017422052004200520044b1b22054100480d240240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000020002d000121040240200141046a28020020052802002200460d00200128020021030c2d0b200041016a22032000490d23200041017422052003200520034b1b22054100480d230240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c2d0b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d23200341017422052004200520044b1b22054100480d230240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000020002f010221040240200141046a2802002203200528020022006b4102490d00200128020021030c2b0b200041026a22052000490d22200341017422002005200020054b1b22004100480d220240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c2b0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d22200341017422052004200520044b1b22054100480d220240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200028020421040240200141046a2802002203200528020022006b4104490d00200128020021030c290b200041046a22052000490d21200341017422002005200020054b1b22004100480d210240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c290b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d21200341017422052004200520044b1b22054100480d210240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c270b200041086a22042000490d20200341017422002004200020044b1b22004100480d200240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c270b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d20200341017422052004200520044b1b22054100480d200240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a000020002f010221040240200141046a2802002203200528020022006b4102490d00200128020021030c250b200041026a22052000490d1f200341017422002005200020054b1b22004100480d1f0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c250b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1f200341017422052004200520044b1b22054100480d1f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a0000200028020421040240200141046a2802002203200528020022006b4104490d00200128020021030c230b200041046a22052000490d1e200341017422002005200020054b1b22004100480d1e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c230b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1e200341017422052004200520044b1b22054100480d1e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c210b200041086a22042000490d1d200341017422002004200020044b1b22004100480d1d0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c210b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1d200341017422052004200520044b1b22054100480d1d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a00002000280204210720022000410c6a280200220036020c2002410c6a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c1f0b200320006a22052003490d1c200441017422032005200320054b1b22034100480d1c0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c1f0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1c200341017422052004200520044b1b22054100480d1c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c1d0b200041086a22042000490d1b200341017422002004200020044b1b22004100480d1b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c1d0b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1a0b200341016a22042003490d1a200341017422052004200520044b1b22054100480d1a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1a0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c180b200341016a22042003490d19200341017422052004200520044b1b22054100480d190240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c180b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c160b200341016a22042003490d18200341017422052004200520044b1b22054100480d180240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c160b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c140b200341016a22042003490d17200341017422052004200520044b1b22054100480d170240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c140b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c120b200341016a22042003490d16200341017422052004200520044b1b22054100480d160240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c120b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c100b200341016a22042003490d15200341017422052004200520044b1b22054100480d150240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c100b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0e0b200341016a22042003490d14200341017422052004200520044b1b22054100480d140240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0e0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0c0b200341016a22042003490d13200341017422052004200520044b1b22054100480d130240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0a0b200341016a22042003490d12200341017422052004200520044b1b22054100480d120240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0a0b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b200141086a2205200341016a360200200420036a41123a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d1320004103742107200141046a21080340200329030021060240024020082802002204200528020022006b4108490d00200128020021040c010b200041086a22092000490d0a200441017422002009200020094b1b22004100480d0a0240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020082000360200200528020021000c010b20004101102d000b200341086a21032005200041086a360200200420006a2006370000200741786a22070d000c140b0b200141086a2207200341016a360200200420036a41113a00002000280204210420022000410c6a280200220036020c2002410c6a200110632000450d1220042000410c6c6a210a200141046a21090340200428020021082002200441086a280200220036020c2002410c6a200110630240024020092802002205200728020022036b2000490d00200128020021050c010b200320006a220b2003490d0920054101742203200b2003200b4b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b02402005450d002001200536020020092003360200200728020021030c010b20034101102d000b2007200320006a360200200520036a2008200010cd051a2004410c6a2204200a470d000c130b0b200141086a2205200341016a360200200420036a41103a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d1120004103742107200141046a21080340200329030021060240024020082802002204200528020022006b4108490d00200128020021040c010b200041086a22092000490d08200441017422002009200020094b1b22004100480d080240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020082000360200200528020021000c010b20004101102d000b200341086a21032005200041086a360200200420006a2006370000200741786a22070d000c120b0b200141086a2205200341016a360200200420036a410f3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d102000410274210703402003280200210802400240200141046a22092802002204200528020022006b4104490d00200128020021040c010b200041046a220b2000490d0720044101742200200b2000200b4b1b22004100480d070240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341046a21032005200041046a360200200420006a20083600002007417c6a22070d000c110b0b200141086a2205200341016a360200200420036a410e3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0f20004101742107200141046a2109034020032f010021080240024020092802002204200528020022006b4102490d00200128020021040c010b200041026a220b2000490d0620044101742200200b2000200b4b1b22004100480d060240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341026a21032005200041026a360200200420006a20083b00002007417e6a22070d000c100b0b200141086a2205200341016a360200200420036a410d3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0e20004103742107200141046a21080340200329030021060240024020082802002204200528020022006b4108490d00200128020021040c010b200041086a22092000490d05200441017422002009200020094b1b22004100480d050240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020082000360200200528020021000c010b20004101102d000b200341086a21032005200041086a360200200420006a2006370000200741786a22070d000c0f0b0b200141086a2205200341016a360200200420036a410c3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0d2000410274210703402003280200210802400240200141046a22092802002204200528020022006b4104490d00200128020021040c010b200041046a220b2000490d0420044101742200200b2000200b4b1b22004100480d040240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341046a21032005200041046a360200200420006a20083600002007417c6a22070d000c0e0b0b200141086a2205200341016a360200200420036a410b3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0c20004101742107200141046a2109034020032f010021080240024020092802002204200528020022006b4102490d00200128020021040c010b200041026a220b2000490d0320044101742200200b2000200b4b1b22004100480d030240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341026a21032005200041026a360200200420006a20083b00002007417e6a22070d000c0d0b0b200141086a2205200341016a360200200420036a410a3a00002000280204210320022000410c6a280200220736020c2002410c6a200110632007450d0b200141046a2109034020032d0000210802400240200928020020052802002200460d00200128020021040c010b200041016a22042000490d022000410174220b2004200b20044b1b220b4100480d020240024020000d00200b101e21040c010b20012802002000200b102221040b02402004450d00200120043602002009200b360200200528020021000c010b200b4101102d000b200341016a21032005200041016a360200200420006a20083a00002007417f6a22070d000c0c0b0b1027000b200141086a200041086a360200200320006a20063700000c090b200141086a200320006a360200200420036a2007200010cd051a0c080b200141086a200041086a360200200320006a20063700000c070b200141086a200041046a360200200320006a20043600000c060b200141086a200041026a360200200320006a20043b00000c050b200141086a200041086a360200200320006a20063700000c040b200141086a200041046a360200200320006a20043600000c030b200141086a200041026a360200200320006a20043b00000c020b200141086a200041016a360200200320006a20043a00000c010b200141086a200041016a360200200320006a41003a00000b200241106a24000bcf2d03077f017e017f230041106b2203240020032001360204200341046a2002106302402001450d002000200141306c6a2104200241046a2105200241086a210103400240024002400240024020002f0100220641124b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020060e13000102030405060708090a0b0c0d0e0f101112000b0240200528020020012802002206460d00200228020021070c320b200641016a22072006490d33200641017422082007200820074b1b22084100480d330240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c320b20084101102d000b0240200528020020012802002206460d00200228020021070c300b200641016a22072006490d32200641017422082007200820074b1b22084100480d320240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c300b20084101102d000b0240200528020020012802002206460d00200228020021070c2e0b200641016a22072006490d31200641017422082007200820074b1b22084100480d310240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c2e0b20084101102d000b0240200528020020012802002206460d00200228020021070c2c0b200641016a22072006490d30200641017422082007200820074b1b22084100480d300240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c2c0b20084101102d000b0240200528020020012802002206460d00200228020021070c2a0b200641016a22072006490d2f200641017422082007200820074b1b22084100480d2f0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c2a0b20084101102d000b0240200528020020012802002206460d00200228020021070c280b200641016a22072006490d2e200641017422082007200820074b1b22084100480d2e0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c280b20084101102d000b0240200528020020012802002206460d00200228020021070c260b200641016a22072006490d2d200641017422082007200820074b1b22084100480d2d0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c260b20084101102d000b0240200528020020012802002206460d00200228020021070c240b200641016a22072006490d2c200641017422082007200820074b1b22084100480d2c0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c240b20084101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d2c200641017422082007200820074b1b22084100480d2c0240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41083a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c220b200641026a22092006490d2b200741017422062009200620094b1b22064100480d2b0240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c220b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d2b200641017422082007200820074b1b22084100480d2b0240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41093a0000200041086a290300210a024020052802002207200128020022066b4108490d00200228020021070c200b200641086a22082006490d2a200741017422062008200620084b1b22064100480d2a0240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c200b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d2a200641017422082007200820074b1b22084100480d2a0240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410a3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c1e0b200641026a22092006490d29200741017422062009200620094b1b22064100480d290240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c1e0b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d29200641017422082007200820074b1b22084100480d290240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410b3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c1c0b200641026a22092006490d28200741017422062009200620094b1b22064100480d280240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c1c0b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d28200641017422082007200820074b1b22084100480d280240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410c3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c1a0b200641026a22092006490d27200741017422062009200620094b1b22064100480d270240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c1a0b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d27200641017422082007200820074b1b22084100480d270240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410d3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c180b200641026a22092006490d26200741017422062009200620094b1b22064100480d260240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c180b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d26200641017422082007200820074b1b22084100480d260240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410e3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c160b200641026a22092006490d25200741017422062009200620094b1b22064100480d250240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c160b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d25200641017422082007200820074b1b22084100480d250240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410f3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c140b200641026a22092006490d24200741017422062009200620094b1b22064100480d240240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c140b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d24200641017422082007200820074b1b22084100480d240240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41103a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c120b200641026a22092006490d23200741017422062009200620094b1b22064100480d230240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c120b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d23200641017422082007200820074b1b22084100480d230240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41113a0000200041026a2f010021080240024020052802002207200128020022066b4102490d00200228020021070c010b200641026a22092006490d23200741017422062009200620094b1b22064100480d230240024020070d002006101e21070c010b200228020020072006102221070b2007450d0c2002200736020020052006360200200128020021060b2001200641026a360200200720066a20083b0000200041046a2f01002108024020052802002207200128020022066b4102490d00200228020021070c100b200641026a22092006490d22200741017422062009200620094b1b22064100480d220240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c100b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d22200641017422082007200820074b1b22084100480d220240024020060d002008101e21070c010b200228020020062008102221070b2007450d0c2002200736020020052008360200200128020021060b2001200641016a360200200720066a41123a0000200041026a2f010021080240024020052802002207200128020022066b4102490d00200228020021070c010b200641026a22092006490d22200741017422062009200620094b1b22064100480d220240024020070d002006101e21070c010b200228020020072006102221070b2007450d0d2002200736020020052006360200200128020021060b2001200641026a360200200720066a20083b0000200041086a290300210a024020052802002207200128020022066b4108490d00200228020021070c0e0b200641086a22082006490d21200741017422062008200620084b1b22064100480d210240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c0e0b20064101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20064101102d000b20084101102d000b20064101102d000b2001200641086a360200200720066a200a3700000c120b2001200641026a360200200720066a20083b00000c110b2001200641026a360200200720066a20083b00000c100b2001200641026a360200200720066a20083b00000c0f0b2001200641026a360200200720066a20083b00000c0e0b2001200641026a360200200720066a20083b00000c0d0b2001200641026a360200200720066a20083b00000c0c0b2001200641026a360200200720066a20083b00000c0b0b2001200641026a360200200720066a20083b00000c0a0b2001200641086a360200200720066a200a3700000c090b2001200641026a360200200720066a20083b00000c080b2001200641016a360200200720066a41073a00000c070b2001200641016a360200200720066a41063a00000c060b2001200641016a360200200720066a41053a00000c050b2001200641016a360200200720066a41043a00000c040b2001200641016a360200200720066a41033a00000c030b2001200641016a360200200720066a41023a00000c020b2001200641016a360200200720066a41013a00000c010b2001200641016a360200200720066a41003a00000b200041286a2d0000210802400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d01200641017422092007200920074b1b22094100480d010240024020060d002009101e21070c010b200228020020062009102221070b2007450d022002200736020020052009360200200128020021060b2001200641016a360200200720066a20083a0000200041106a28020021092003200041186a2802002206360208200341086a200210630240024020052802002208200128020022076b2006490d00200228020021080c010b200720066a220b2007490d0120084101742207200b2007200b4b1b22074100480d010240024020080d002007101e21080c010b200228020020082007102221080b2008450d032002200836020020052007360200200128020021070b2001200720066a360200200820076a2009200610cd051a2000411c6a28020021092003200041246a280200220636020c2003410c6a20021063024020052802002208200128020022076b2006490d00200228020021080c040b200720066a220b2007490d0020084101742207200b2007200b4b1b22074100480d000240024020080d002007101e21080c010b200228020020082007102221080b02402008450d002002200836020020052007360200200128020021070c040b20074101102d000b1027000b20094101102d000b20074101102d000b2001200720066a360200200820076a2009200610cd051a200041306a22002004470d000b0b200341106a24000be80406097f047e047f027e047f027e200128020821032001280204210420012802002105200241386a2106200241286a210703404100210802400240024020042f01062209450d00200441086a220a200941d0006c6a210b2006290300210c2007290300210d2002290330210e2002290320210f2002280248211020022802402111410021120340201221080240200a200b470d00200921080c020b024002402002200a412010cf052212450d00417f410120124100481b21130c010b417f200f200a290320221485200d200a41286a29030022158584420052200f201454200d201554200d2015511b1b22130d00417f200e200a41306a290300221485200c200a41386a29030022158584420052200e201454200c201554200c2015511b1b22130d00200a41c8006a28020022162010201020164b1b2117200a2802402112417f21182011211903400240201841016a22182017490d00417f201020164720102016491b21130c020b0240201941106a201241106a412010cf052213450d00417f410120134100481b21130c020b2019290300221a2012290300221b54201941086a2903002215201241086a29030022145420152014511b0d03201241306a2112201941306a211941012113201a201b85201520148584500d000b0b200841016a2112200a41d0006a210a0240201341016a0e03020001020b0b4100210a0c010b20050d014101210a410021050b200020053602042000200a360200200041106a20083602002000410c6a2003360200200041086a20043602000f0b2001200336020820012005417f6a22053602002001200420084102746a41f8066a28020022043602040c000b0be01202067f027e230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210630240024002400240024020022802042203200228020822046b410e490d00200228020021030c010b2004410e6a22052004490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21030c010b200228020020032004102221030b2003450d012002200436020420022003360200200228020821040b200320046a220341066a41002900d6c24137000020022004410e6a360208200341002900d0c2413700002002410e36020c2002410c6a20021063024020022802042205200228020822036b410e490d00200228020021040c020b2003410e6a22042003490d02200541017422032004200320044b1b22064100480d020240024020050d002006101e21040c010b200228020020052006102221040b02402004450d00200220063602042002200436020020022802082103200621050c020b20064101102d000b20044101102d000b200420036a220641066a41002900d6c24137000020022003410e6a2203360208200641002900d0c2413700000240024002400240200520036b41034b0d00200341046a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21040c010b200420052003102221040b2004450d012002200336020420022004360200200228020821030b2002200341046a360208200420036a41063600000240024020022802042203200228020822046b4104490d00200228020021030c010b200441046a22052004490d04200341017422042005200420054b1b22044100480d040240024020030d002004101e21030c010b200228020020032004102221030b2003450d022002200436020420022003360200200228020821040b2002200441046a360208200320046a4101360000024020022802042203200228020822046b4104490d00200228020021030c030b200441046a22052004490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21030c010b200228020020032004102221030b02402003450d002002200436020420022003360200200228020821040c030b20044101102d000b20034101102d000b20044101102d000b2002200441046a360208200320046a41003600002002410a36020c2002410c6a2002106341e0c2c1002104034020042d0000210602400240024002400240024002400240024002400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d012002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441016a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d022002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441026a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d032002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441036a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d042002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d052002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441056a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d062002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441066a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d072002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441076a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d082002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441086a2802002106024020022802042205200228020822036b4104490d00200228020021050c090b200341046a22072003490d0a200541017422032007200320074b1b22034100480d0a0240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c090b20034101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2002200341046a360208200520036a20063600002004410c6a220441d8c3c100470d000b2002350208210820023502002109200241106a240020092008422086840f0b1027000bf01604037f017e057f017e230041b00b6b22022400024002402001450d00200220003602100c010b200241e4fdc6003602100b20022001360214200241c0086a200241106a109f0102400240024020022802c408450d00200241186a200241c0086a41fc0010cd051a20024198016a200241186a41fc0010cd051a20024198016a10a00102402002280298012201450d00200241c0086a2001417f6a10a101200241c0086a200241a8016a412010cf050d000240024020024190026a28020022030d004100210341042104410021010c010b024002402003ad420c7e2205422088a70d002005a722014100480d0020022802880221002001101e22040d0120014104102d000b1027000b200341d8026c210620034103742107200421010340200241c0086a200010a201200141086a200241c0086a41086a280200360200200120022903c0083702002001410c6a2101200041d8026a2100200641a87d6a22060d000b200741786a41037641016a21010b200220013602e005200220033602dc05200220043602d805200241c0086a200241d8056a10a3010240200241e8016a2201200241c0086a412010cf05450d0041c2e7c600410e1006200141201007200241c0086a412010070b02402001200241c0086a412010cf050d002002418c026a28020021082002280288022109200228029002210620024198026a20024198016a41f00010cd051a2009200641d8026c6a2100200228029802210a200921010240024002402006450d00200241d8056a41f0006a21042009210102400340200241f0046a200141e80010cd051a200141e8006a290300210520024188036a200141f0006a41e80110cd051a20054203510d01200241d8056a200241f0046a41e80010cd051a200220053703c006200420024188036a41e80110cd051a200241c0086a200241d8056a10a20120022802c8082106024020022802c408450d0020022802c00810200b200241c0086a200241d8056a41d80210cd051a200241003602980b200241b0086a200241c0086a2006200241980b6a10a40120022d00b0084101460d04024020022d00bc0822064102460d0020023100be08210520023100bd08210b20022802b808210720022802b408210341a1fec600410d100602402006450d00200b10080b200510082003450d002003200710060b200141d8026a22012000470d000c030b0b200141d8026a21010b20002001460d00034020014198016a10a5012000200141d8026a2201470d000b0b02402008450d00200910200b200210a6012002280204210120022802002100200241c0086a41086a22064200370300200242003703c00841b880c7004115200241c0086a1000200241d8056a41086a2006290300370300200220022903c0083703d80520022001410020001b3602c008200241d8056a4110200241c0086a41041005200a10a701200241c0086a10a801200220024198026a410c6a28020022073602a80b200228029c0221032002200241c0086a410c6a28020022013602ac0b20072001470d052007450d0420022802c4082104410021060340024002400240024002400240024002400240200320066a22012d00002209200420066a22002d0000470d000240024002400240024020090e050001020304000b20032004460d0c200141016a200041016a412010cf050d040c070b024020032004460d00200141016a280000200041016a280000470d040b200141106a2802002209200041106a280200470d03200141086a2802002208200041086a280200220a460d092008200a200910cf050d030c090b024020032004460d00200141016a280000200041016a280000470d030b200141106a2802002209200041106a280200470d02200141086a2802002208200041086a280200220a460d072008200a200910cf050d020c070b024020032004460d00200141016a280000200041016a280000470d020b200141106a2802002209200041106a280200470d01200141086a2802002208200041086a280200220a460d052008200a200910cf050d010c050b2001410c6a28020022092000410c6a280200470d00200141046a2802002208200041046a280200220a460d012008200a200910cf05450d010b41b6c1c50041141006200241d8056a200110a90120022802d805220920022802e0051007024020022802dc05450d00200910200b200241d8056a200010a90120022802d805220920022802e0051007024020022802dc05450d00200910200b20012d000020002d00002209470d0620090e050105040300010b2001410c6a28020022092000410c6a280200470d05200141046a2802002201200041046a2802002200460d0620012000200910cf05450d060c050b20032004460d050b200141016a200041016a412010cf050d030c040b024020032004460d00200141016a280000200041016a280000470d030b200141106a2802002209200041106a280200470d02200141086a2802002201200041086a2802002200460d0320012000200910cf050d020c030b024020032004460d00200141016a280000200041016a280000470d020b200141106a2802002209200041106a280200470d01200141086a2802002201200041086a2802002200460d0220012000200910cf050d010c020b024020032004460d00200141016a280000200041016a280000470d010b200141106a2802002209200041106a280200470d00200141086a2802002201200041086a2802002200460d0120012000200910cf05450d010b41f4afc100412741a888c6001028000b200641246a21062007417f6a22070d000c050b0b200241086a20022f00b10820022d00b3084110747210aa012002280208200228020c41a888c6001028000b41c5afc100412441a888c6001028000b41a9afc100411c41a888c6001028000b20024194036a4104360200200241ec056a4102360200200242023702dc05200241fcc3c0003602d8052002410436028c03200241f4c3c000360288032002410036029c01200241e4fdc60036029801200220024188036a3602e805200220024198016a36029003200241d8056a418cc4c0001033000b024020024198026a41306a2201200241c0086a41306a2200412010cf05450d0041c2e7c600410e10062001412010072000412010070b024020012000412010cf05450d00419bb0c100412841a888c6001028000b024020022802cc082200450d0020022802c4082101200041246c210003400240024020012d0000220641034b0d0002400240024020060e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b0240200241c8086a280200450d0020022802c40810200b024020022802a4022200450d00200228029c022101200041246c210003400240024020012d0000220641034b0d0002400240024020060e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b0240200241a0026a280200450d00200228029c0210200b200241b00b6a240042010f0b20024188036a41146a410836020020024188036a410c6a4109360200200241f0046a41146a41033602002002200241a80b6a3602980b2002200241ac0b6a3602b008200241d8056a41146a4100360200200242033702f40420024190fbc6003602f0042002410936028c03200241e4fdc6003602e805200242013702dc05200241ecafc1003602d805200220024188036a360280052002200241d8056a360298032002200241b0086a360290032002200241980b6a36028803200241f0046a41d483c6001033000bcb06050c7f017e017f017e017f230041e0086b2202240020024188066a200110ad0102400240200228028c0622030d00200041003602040c010b20024194066a280200210420022802900621052002280288062106200241086a20024198066a41e00010cd051a20022001105f024020022802000d0002400240200128020441d8026e220741d8026c2208417f4c0d00200228020421090240024020080d004108210a0c010b2008101e220a450d020b02402009450d0020024188066a41f0006a210b4100210c410021084100210d034020024188066a200110b401200241a0056a20024188066a41e80010cd051a20022903f006210e200241b8036a200b41e80110cd051a02400240200e4203510d00200d41016a210f200241d0026a200241a0056a41e80010cd051a200241e8006a200241b8036a41e80110cd051a200d2007470d010240200c200f200c200f4b1b2207ad42d8027e2210422088a70d002010a722114100480d0002400240200d0d002011101e210a0c010b200a200820111022210a0b200a0d0220114108102d000b1027000b0240200d450d00200a4198016a210f0340200f10a501200f41d8026a210f200841a87d6a22080d000b0b2007450d05200a10200c050b200a20086a200241d0026a41e80010cd05220d41e8006a200e370300200d41f0006a200241e8006a41e80110cd051a200c41026a210c200841d8026a2108200f210d2009200f470d000b0b200a450d0220024188066a200241086a41e00010cd051a2000410c6a2004360200200020053602082000200336020420002006360200200041106a20024188066a41e00010cd051a200041f8006a2009360200200041f4006a2007360200200041f0006a200a3602000c030b102c000b20084108102d000b2000410036020402402004450d00200441246c210f2003210803400240024020082d0000220d41034b0d00024002400240200d0e0404000102040b2008410c6a280200450d03200841086a28020010200c030b2008410c6a280200450d02200841086a28020010200c020b2008410c6a280200450d01200841086a28020010200c010b200841086a280200450d00200841046a28020010200b200841246a2108200f415c6a220f0d000b0b2005450d00200310200b200241e0086a24000b8840060d7f017e057f037e077f017e230041c0016b2201240041002102410021034104210402400240024002400240024002400240024002400240024002400240024002400240024002402000410c6a28020041246c2205450d00200028020421064104210441002102410021030340024020062d00004101470d00200641106a2802002207417f4c0d05200641086a2802002108200641016a28000021090240024020070d004101210a0c010b2007101e220a450d050b200a2008200710cd05210a200141c0006a41026a220b200141106a41026a2d00003a000020014198016a41086a220c200141e8006a41086a290200370300200120012f00103b01402001200129026837039801024020022003470d00200241016a22082002490d112002410174220d2008200d20084b1b2203ad42247e220e422088a70d11200ea722084100480d110240024020020d002008101e21040c010b2004200241246c2008102221040b2004450d040b2004200241246c6a220841013a000020082009360001200820073600102008200736000c2008200a360008200820012f01403b0005200841076a200b2d00003a000020082001290398013702142008411c6a200c290300370200200241016a21020b200641246a21062005415c6a22050d000b0b200141003602980141effbc000411020014198016a4104100520014198016a41086a2206420037030020014200370398014195fcc000410d20014198016a1000200141c0006a41086a22082006290300370300200120012903980137034020012000280200220f36029801200141c0006a411020014198016a4104100520064200370300200142003703980141b7fcc000410d20014198016a10002008200629030037030020012001290398013703402001410036027020014201370368200120023602980120014198016a200141e8006a10630240024020020d0020012802702108200128026c210a200128026821050c010b2004200241246c6a210d200128026c210a2001280270210620042107034020014198016a200710a901200128029801210b02400240200a20066b20012802a0012209490d00200620096a2108200128026821050c010b200620096a22082006490d10200a41017422052008200520084b1b220c4100480d1002400240200a0d00200c101e21050c010b2001280268200a200c102221050b02402005450d002001200c36026c20012005360268200c210a0c010b200c4101102d000b200741246a210720012008360270200520066a200b200910cd051a0240200128029c01450d00200b10200b20082106200d2007470d000b0b200041106a2109200141c0006a41102005200810050240200a450d00200510200b20014198016a41086a2206420037030020014200370398014184fcc000411120014198016a1000200141c0006a41086a200629030037030020012001290398013703402001200141c0006a360298012001411036029c01200920014198016a10b801024002400240024002404110101e2206450d00200641086a41002900ccfc40370000200641002900c4fc4037000020064110412010222207450d012007200f417f6a360010200141c0006a41186a22054200370300200141c0006a41106a22064200370300200141c0006a41086a220842003703002001420037034020074114200141c0006a100120014198016a41186a220a200529030037030020014198016a41106a200629030037030020014198016a41086a220620082903003703002001200129034037039801200710202001412036026c200120014198016a3602682009200141e8006a10b80120064200370300200142003703980141a2fcc000411520014198016a10002008200629030037030020012001290398013703402001411036029c012001200141c0006a36029801200041d0006a20014198016a10b8012006420037030020014200370398014182fec000410d20014198016a1000200820062903003703002001200129039801370340200141c0006a41101004200642003703002001420037039801419281c700411120014198016a1000200820062903003703002001200129039801370340200141c0006a411010044112101e2207450d02200741106a41002f009ffe403b0000200741086a4100290097fe403700002007410029008ffe4037000020054200370300200141c0006a41106a22094200370300200842003703002001420037034020074112200141c0006a1001200a200529030037030020014198016a41106a20092903003703002006200829030037030020012001290340370398012007102020014198016a412010152000280200210b109c02200b4105490d09200141c0006a41086a22064200370300200142003703404189a7c6004111200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a100321062001280298012208417f460d042006450d04200120083602442001200636024020014198016a200141c0006a10bf01200128029801220c450d03200129029c01210e2008450d08200610200c080b41104101102d000b41204101102d000b41124101102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b4104210c4200210e0c030b20084104102d000b20074101102d000b102c000b02400240200e422088a7220541c4006c22060d00410021090c010b200b417b6a2107200c20066a210841002109200c210602400340024020062d00004101460d00200641046a28020020074f0d020b200941016a21092008200641c4006a2206470d000b0b200920054b0d020b200520096b210d200e42ffffffff0f83210e200c200941c4006c22086a210a200c210702400340024020080d00200a21060c020b200841bc7f6a210820072d00002105200741c4006a2206210720054102470d000b0b02400340200a2006460d0120062d00002108200641c4006a210620084102470d000b0b0240200d450d0002402009450d00200c200c200941c4006c6a200d41c4006c10ce051a0b200dad422086200e84210e0b200141c0006a41086a22064200370300200142003703404189a7c6004111200141c0006a1000200141e8006a41086a20062903003703002001200129034037036820014198016a200c200e422088a7109d02200141e8006a4110200128029801220820012802a0011005200ea721060240200128029c01450d00200810200b2006450d00200c10200b200141c0006a41086a22084200370300200142003703404198edc6004117200141c0006a1000200141e8006a41086a2207200829030037030020012001290340370368200141003a0040200141e8006a4110200141c0006a4101100520014198016a109e024124101e2206450d01200620012903980137000020064114360220200641186a20014198016a41186a290300370000200641106a20014198016a41106a290300370000200641086a20014198016a41086a290300370000200142818080801037026c20012006360268200141e8006a109f02200b10a00220084200370300200142003703404184fcc0004111200141c0006a1000200720082903003703002001200129034037036820014198016a200141e8006a4110106920012d0098012106200141c0006a41186a2207200141b1016a290000370300200141c0006a41106a220520014198016a41116a2900003703002008200141a1016a29000037030020012001290099013703400240024020064101460d00200141e8006a41186a4200370300200141e8006a41106a4200370300200141f0006a4200370300200142003703680c010b200141e8006a41186a2007290300370300200141e8006a41106a2005290300370300200141e8006a41086a200141c0006a41086a290300370300200120012903403703680b200141c0006a41086a220642003703002001420037034041c8d2c0004127200141c0006a100020014198016a41086a200629030037030020012001290340370398012001410036024020014198016a4110200141c0006a1003210620012802402208417f460d032006450d032001200836021420012006360210200141c0006a200141106a10e30120012802402205450d02200141c8006a28020021092001290244210e2001280244210702402008450d00200610200b200ea7210a0240200e422088a7220841d100490d0020014198016a41186a2207200141e8006a41186a29030037030020014198016a41106a2209200141e8006a41106a29030037030020014198016a41086a220c200141e8006a41086a2903003703002001200129036837039801200b417f6a41d10070220620084f0d05200520064105746a2206200129039801370000200641186a2007290300370000200641106a2009290300370000200641086a200c290300370000200a21070c080b20014198016a41186a200141e8006a41186a29030037030020014198016a41106a200141e8006a41106a29030037030020014198016a41086a200141e8006a41086a290300370300200120012903683703980102402008200a460d0020014198016a2106200a2107200821090c070b20014198016a210620072008470d060c050b41c0d8c200411c41a888c6001028000b41244104102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b20014198016a41186a200141e8006a41186a29030037030020014198016a41106a200141e8006a41106a29030037030020014198016a41086a200141e8006a41086a2903003703002001200129036837039801410021074101210520014198016a2106410021090c010b41bcf8c60020062008102a000b200741016a22082007490d022007410174220a2008200a20084b1b220841ffffff3f712008470d022008410574220a4100480d020240024020070d00200a101e21050c010b20052007410574200a102221050b02402005450d00200821070c010b200a4101102d000b200520094105746a22082006290000370000200841186a200641186a290000370000200841106a200641106a290000370000200841086a200641086a290000370000200941016a21080b200141c0006a41086a220642003703002001420037034041c8d2c0004127200141c0006a100020014198016a41086a200629030037030020012001290340370398010240024020050d0020014198016a411010040c010b200141003602482001420137034020012008360210200141106a200141c0006a106302402008450d00200841057421082005210603402001200141c0006a3602102006200141106a10b901200641206a2106200841606a22080d000b0b2001280244210620014198016a4110200128024022082001280248100502402006450d00200810200b2007450d00200510200b200141c0006a41086a220642003703002001420037034041fcd5c3004115200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a10032106024002400240024002400240024002400240024002400240024002400240024002402001280298012208417f460d002006450d0020084104490d02200628000021082006102020080d010b200141c0006a41086a220642003703002001420037034041fcd5c3004115200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410136029801200141e8006a411020014198016a410410050b200b41e400700d04200141c0006a41086a220642003703002001420037034041adfdc1004118200141c0006a100020014198016a41086a200629030037030020012001290340370398012001410036026820014198016a4110200141e8006a1003210620012802682208417f460d022006450d022001200836024420012006360240200141e8006a200141c0006a10a10220012802682200450d01200129026c210e2008450d03200610200c030b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b410821004200210e0b200ea72110024002400240200e422088a72211450d002000201141306c6a210f41002108200141046a41026a21070340200141e8006a41206a2205200020086a220641206a290300370300200141e8006a41186a2209200641186a290300370300200141e8006a41106a220a200641106a290300370300200141e8006a41086a220c200641086a29030037030020072006412b6a2d00003a0000200120062903003703682001200641296a2f00003b0104200641286a2d000022124104460d012006412c6a280000210d20014198016a41086a200c29030037030020014198016a41106a200a29030037030020014198016a41186a200929030037030020014198016a41206a200529030037030020014190016a41026a20072d00003a00002001200129036837039801200120012f01043b019001200d200b4b0d02200841306a2108200641306a200f470d000b0b410821074100211102402010450d00200010200b410021130c010b200141106a41206a20014198016a41206a290300220e370300200141106a41186a20014198016a41186a2903002214370300200141106a41106a20014198016a41106a2903002215370300200141106a41086a20014198016a41086a29030022163703002001410c6a41026a220720014190016a41026a2d00003a0000200141c0006a41086a22052016370300200141c0006a41106a22092015370300200141c0006a41186a220a2014370300200141c0006a41206a220c200e3703002001200129039801220e370310200120012f0190013b010c2001200e370340200141086a41026a221720072d00003a0000200120012f010c3b01082001413c6a41026a221320172d00003a0000200120012f01083b013c4130101e2207450d0220072001290340370300200720123a0028200720012f013c3b00292007200d36002c200741206a200c290300370300200741186a200a290300370300200741106a2009290300370300200741086a20052903003703002007412b6a20132d00003a000002400240201141306c41506a2008470d0041012111410121130c010b200641306a2118201141306c20006a41506a2119200141046a41026a210541012111410121130340201821060340200141e8006a41206a2209200641206a290300370300200141e8006a41186a220a200641186a290300370300200141e8006a41106a220c200641106a290300370300200141e8006a41086a220d200641086a29030037030020012006290300370368200641286a2d0000210820052006412b6a2d00003a00002001200641296a2f00003b010420084104460d022006412c6a280000211220014198016a41086a2217200d29030037030020014198016a41106a220d200c29030037030020014198016a41186a220c200a29030037030020014198016a41206a220a200929030037030020014190016a41026a220920052d00003a00002001200129036837039801200120012f01043b01900102402012200b4b0d00200641306a2206200f470d010c030b0b200141106a41206a200a290300220e370300200141106a41186a200c2903002214370300200141106a41106a200d2903002215370300200141106a41086a201729030022163703002001410c6a41026a221820092d00003a0000200141c0006a41086a22092016370300200141c0006a41106a221a2015370300200141c0006a41186a221b2014370300200141c0006a41206a221c200e3703002001200129039801220e370310200120012f0190013b010c2001200e370340200141086a41026a221d20182d00003a0000200120012f010c3b01082001413c6a41026a2218201d2d00003a0000200120012f01083b013c20172009290300370300200d201a290300370300200c201b290300370300200a201c2903003703002001200129034037039801200141e8006a41026a221a20182d00003a0000200120012f013c3b0168024020132011470d00201141016a22092011490d0f201141017422132009201320094b1b2213ad42307e220e422088a70d0f200ea722094100480d0f0240024020110d002009101e21070c010b2007201141306c2009102221070b2007450d0d0b200641306a21182017290300210e200d2903002114200c2903002115200a2903002116200129039801211e2007201141306c6a220920083a00282009201e370300200941206a2016370300200941186a2015370300200941106a2014370300200941086a200e3703002009412c6a2012360000200920012f01683b00292009412b6a201a2d00003a0000201141016a211120192006470d000b0b2010450d00200010200b200141c0006a41086a220642003703002001420037034041adfdc1004118200141c0006a100020014198016a41086a20062903003703002001200129034037039801200141e8006a2007201110a20220014198016a411020012802682206200128027010050240200128026c450d00200610200b2013450d00200710200b200141c0006a41086a220642003703002001420037034041bbb5c600412c200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a10032106024002402001280298012208417f470d004201210e0c010b024020060d004201210e0c010b20084108490d022006290000210e200610200b4126101e2206450d022006411e6a41002900ccae46370000200641186a41002900c6ae46370000200641106a41002900beae46370000200641086a41002900b6ae46370000200641002900aeae463700002006412641cc0010222206450d032006200e370026200141c0006a41186a22084200370300200141c0006a41106a22074200370300200141c0006a41086a22054200370300200142003703402006412e200141c0006a100120014198016a41186a200829030037030020014198016a41106a200729030037030020014198016a41086a200529030037030020012001290340370398012006102020014198016a412041e4fdc600410041001002417f470d0e4135101e2206450d042006412d6a41002900a6ae46370000200641286a41002900a1ae46370000200641206a4100290099ae46370000200641186a4100290091ae46370000200641106a4100290089ae46370000200641086a4100290081ae46370000200641002900f9ad46370000200141c0006a41086a220842003703002001420037034041a4b4c600412b200141c0006a1000200141e8006a41086a2008290300370300200120012903403703682001410036029801200141e8006a411020014198016a10032108024002402001280298012207417f470d004201210e0c010b024020080d004201210e0c010b20074108490d062008290000210e200810200b4126101e2208450d062008411e6a41002900ccae46370000200841186a41002900c6ae46370000200841106a41002900beae46370000200841086a41002900b6ae46370000200841002900aeae463700002008412641cc0010222208450d072008200e370026200141c0006a41186a22074200370300200141c0006a41106a22054200370300200141c0006a41086a22094200370300200142003703402008412e200141c0006a100120014198016a41186a200729030037030020014198016a41106a200529030037030020014198016a41086a2009290300370300200120012903403703980120081020200141003602702001420137036820014135360240200141c0006a200141e8006a10630240200128026c2209200128027022056b4135490d00200541356a2108200128026821070c0a0b200541356a22082005490d0a200941017422072008200720084b1b220a4100480d0a0240024020090d00200a101e21070c010b20012802682009200a102221070b02402007450d002001200a36026c20012007360268200a21090c0a0b200a4101102d000b41304108102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b41264101102d000b41cc004101102d000b41354101102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b41264101102d000b41cc004101102d000b20094108102d000b20012008360270200720056a22052006290000370000200541086a200641086a290000370000200541106a200641106a290000370000200541186a200641186a290000370000200541206a200641206a290000370000200541286a200641286a2900003700002005412d6a2006412d6a290000370000200141013a004002400240024020092008460d00410121050c010b200841016a22052008490d02200841017422092005200920054b1b22094100480d020240024020080d002009101e21070c010b200720082009102221070b2007450d012001200936026c2001200736026820012d004021050b200720086a20053a000020014198016a41202007200841016a100502402009450d00200710200b20061020200141c0006a41086a220642003703002001420037034041a4b4c600412b200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a100321062001280298012208417f460d032006450d0320084108490d022006290000210e20061020200e42017c210e0c040b20094101102d000b1027000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b4202210e0b200141c0006a41086a220642003703002001420037034041a4b4c600412b200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001200e37039801200141e8006a411020014198016a410810050b02402002450d00200241246c21082004210603400240024020062d0000220741034b0d0002400240024020070e0404000102040b2006410c6a280200450d03200641086a28020010200c030b2006410c6a280200450d02200641086a28020010200c020b2006410c6a280200450d01200641086a28020010200c010b200641086a280200450d00200641046a28020010200b200641246a21062008415c6a22080d000b0b02402003450d00200410200b200141c0016a24000ba70301047f230041f0006b22022400024002404110101e2203450d00200341086a41002900ccfc40370000200341002900c4fc4037000020034110412010222203450d0120032001360010200241086a41186a22014200370300200241086a41106a22044200370300200241086a41086a220542003703002002420037030820034114200241086a1001200241306a41186a2001290300370300200241306a41106a2004290300370300200241306a41086a20052903003703002002200229030837033020031020200241086a200241306a41201069200241d0006a41086a200241116a290000370300200241d0006a41106a2203200241196a290000370300200241d0006a41186a2201200241216a290000370300200220022900093703500240024020022d00084101460d0020004200370000200041186a4200370000200041106a4200370000200041086a42003700000c010b20002002290350370000200041186a2001290300370000200041106a2003290300370000200041086a200241d0006a41086a2903003700000b200241f0006a24000f0b41104101102d000b41204101102d000bac1703077f027e057f230041206b220224000240024002400240024002400240024002400240024002400240024041da02101e2203450d00200241da0236020420022003360200200341003b000020024102360208024020012903684202520d00024020022802044102470d0020022802004102410410222203450d0320024104360204200220033602000b200228020041043a00022002200228020841016a3602080c080b024020022802044102470d0020022802004102410410222203450d0320024104360204200220033602000b20022802004184013a00022002200228020841016a3602082001200210de0220012d0024220341024b0d0602400240024020030e03000102000b0240200228020420022802082203460d00200228020021040c080b200341016a22042003490d0a200341017422052004200520044b1b22054100480d0a0240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c080b20054101102d000b0240200228020420022802082203460d00200228020021040c060b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c060b20054101102d000b0240200228020420022802082203460d00200228020021040c040b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c040b20054101102d000b41da024101102d000b41044101102d000b41044101102d000b2002200341016a360208200420036a41023a0000412521040340200120046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d06200341017422072005200720054b1b22074100480d060240024020030d002007101e21050c010b200228020020032007102221050b02402005450d002002200736020420022005360200200228020821030c010b20074101102d000b2002200341016a360208200520036a20063a0000200441016a220441e600470d000c030b0b2002200341016a360208200420036a41013a0000200141256a2108410021040340200820046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d05200341017422072005200720054b1b22074100480d050240024020030d002007101e21050c010b200228020020032007102221050b02402005450d002002200736020420022005360200200228020821030c010b20074101102d000b2002200341016a360208200520036a20063a0000200441016a220441c000470d000c020b0b2002200341016a360208200420036a41003a0000200141256a2108410021040340200820046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d04200341017422072005200720054b1b22074100480d040240024020030d002007101e21050c010b200228020020032007102221050b02402005450d002002200736020420022005360200200228020821030c010b20074101102d000b2002200341016a360208200520036a20063a0000200441016a220441c000470d000b0b024002400240200141e8006a22032903004201520d00200341106a290300200341086a2903002209420c88220a4201200a4201561b80210a024020022802042205200228020822046b4102490d00200228020021050c020b200441026a22062004490d04200541017422042006200420064b1b22044100480d040240024020050d002004101e21050c010b200228020020052004102221050b02402005450d002002200436020420022005360200200228020821040c020b20044101102d000b02400240200228020420022802082204460d00200228020021050c010b200441016a22052004490d04200441017422062005200620054b1b22064100480d040240024020040d002006101e21050c010b200228020020042006102221050b02402005450d002002200636020420022005360200200228020821040c010b20064101102d000b2002200441016a360208200520046a41003a00000c010b2002200441026a360208200520046a200aa741047420097aa7417f6a22044101200441014b1b2204410f2004410f491b723b00000b200341186a200210632002200341206a360210200241106a200210df020b20014198016a200210da0220022802082103200241003602182002420137031020022003417e6a36021c2002411c6a200241106a10630240024002402002280208220441014d0d00200228021021062002280214210b200228021821012002410036020820022802002103024002402004417e6a2207450d00410221082001450d09200320062d00003a00004101210c2002200228020841016a36020820014101470d010c090b0240024002402002280204220420014f0d00200441017422052001200520014b1b22054100480d070240024020040d002005101e21030c010b200320042005102221030b02402003450d002002200536020420022003360200200228020821080c020b20054101102d000b410021082001450d010b200320086a220420062d00003a0000024020014101470d00200841016a21080c010b2001417f6a2105200641016a2103200441016a21040340200420032d00003a0000200441016a2104200341016a21032005417f6a22050d000b200820016a21080b20022008360208410221080c070b200620016a210d200320062d00013a00012002200228020841016a36020841022108200641026a21052001417e6a220e0d014100210e0c020b41c0d8c200411c41a888c6001028000b024002402002280204220320046b200e490d00200228020021030c010b2004200e6a22082004490d02200341017422042008200420084b1b22044100480d020240024020030d002004101e21030c010b200228020020032004102221030b02402003450d0020022004360204200220033602000c010b20044101102d000b200320016a200341026a200710ce051a02400240200120022802082203460d00200120036b21082001417e6a2104200228020020036a210c410021030340024020042003470d00200121080c080b200c20036a20052d00003a00002002200228020841016a360208200541016a21052008200341016a2203470d000b200d20056b220e0d004100210e4101210c0c010b200e4100480d02200e101e220c0d00200e4101102d000b200121080b200d2005460d02200c20052d00003a00004101210f02400240200541016a2203200d470d00200c41016a21010c010b200c41016a21042006200120056b6a21050340200420032d00003a0000200441016a2104200d200341016a2203470d000b2005450d03200c20056a21012005210f0b024020022802042203200720086a22046b200f490d00200228020021030c020b2004200f6a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200228020020032004102221030b02402003450d0020022004360204200220033602000c020b20044101102d000b1027000b20032008200f6a220d6a200320086a200710ce051a0240200d20022802082203460d00200228020020036a21042008200f6a20036b2105200c2103034020012003460d01200420032d00003a00002002200228020841016a360208200341016a2103200441016a21042005417f6a22050d000b0b200d21080b200e450d00200c10200b2007450d010b0240200820022802082203460d002002280200220420036a200420086a200710ce051a0b2002200720036a3602080b0240200b450d00200610200b20002002290300370200200041086a200241086a280200360200200241206a24000be505030b7f017e037f230041206b2202240002400240024020012802082203417f4c0d00200128020421042001280200210502400240024020030d00410121060c010b2003101e2206450d010b200341ffffffff03712003470d0120034102742201417f4c0d0102400240024020010d00410421070c010b2001101e2207450d010b20052003410c6c6a2108024020030d004100210341002101410021092005210a0c040b4100210a20032101410021092005210b03400240200b280200220c0d00200b410c6a210a0c050b02400240024002402003200a6b200b41046a290200220d422088a7220e490d00200a200e6a210f0c010b200a200e6a220f200a490d0120034101742210200f2010200f4b1b22104100480d010240024020030d002010101e21060c010b200620032010102221060b02402006450d00201021030c010b20104101102d000b2006200a6a200c200e10cd051a024020092001460d0020012110200921010c020b200141016a220a2001490d0020014101742210200a2010200a4b1b221041ffffffff03712010470d002010410274220a4100480d000240024020010d00200a101e21070c010b20072001410274200a102221070b20070d01200a4104102d000b1027000b200720014102746a200e3602000240200da7450d00200c10200b200941016a2109200f210a20102101200b410c6a220b2008470d000c050b0b20014104102d000b20034101102d000b102c000b02402008200a460d000340200a410c6a210b0240200a41046a280200450d00200a28020010200b200b210a2008200b470d000b0b200121100b02402004450d00200510200b200241186a22014200370300200241106a220a4200370300200241086a220b42003703002002420037030020062007200920021018200041186a2001290300370000200041106a200a290300370000200041086a200b2903003700002000200229030037000002402010450d00200710200b02402003450d00200610200b200241206a24000bb31b03087f047e027f230041a0086b22042400200441b0046a200141d80210cd051a20044198026a200441b0046a10c701410121050240024002400240024020042d0098024101470d00200020042f0099023b0001200041013a0000200041036a20042d009b023a000020032802002106410021000c010b200441086a20044198026a41086a41900210cd051a02400240024002400240024002400240024002400240024020032802002206450d00200341086a28020021072003280204210841002109200441003602b00441effbc0004110200441b0046a10032101024020042802b0042205417f460d002001450d0020054104490d0220012800002109200110200b4114101e2201450d0241002105200141106a410028008e8147360000200141086a41002900868147370000200141002900fe804737000020014114412810222201450d032001200936001420044198026a41186a2209420037030020044198026a41106a220a420037030020044198026a41086a220b420037030020044200370398022001411820044198026a1001200441e0076a41186a2009290300370300200441e0076a41106a200a290300370300200441e0076a41086a200b29030037030020042004290398023703e00720011020200441203602b4042004200441e0076a3602b00420062007200441b0046a10a3022008450d00200610200b2004200441d8006a10c8012004280200210720042d00042108200441b0046a200441086a41900210cd051a0240024020042903d004220c4202520d0041002108200428028005410a460d010c0f0b200441b8076a41186a200441b0046a41186a290300370300200441b8076a41106a200441b0046a41106a290300370300200441b8076a41086a200441b0046a41086a290300370300200420042903b0043703b807200441f8046a290300210d200441f0046a290300210e200441e8046a280200210920042903d804210f20044198026a41086a2201420037030020044200370398024195fcc000410d20044198026a1000200441e0076a41086a200129030037030020042004290398023703e0072004410036029802200441e0076a411020044198026a100321010240200428029802220a417f460d002001450d00200a41034d0d05200110200b0240200c4201520d00200f4200510d060b4113101e2201450d06200141002900d4fc403700002001410f6a41002800e3fc40360000200141086a41002900dcfc4037000020044293808080b00237029c072004200136029807200441b8076a20044198076a10ca0120042802a0072101200428029807210a20044198026a41186a220b420037030020044198026a41106a2210420037030020044198026a41086a221142003703002004420037039802200a200120044198026a1001200441e0076a41186a200b290300370300200441e0076a41106a2010290300370300200441e0076a41086a201129030037030020042004290398023703e0070240200428029c07450d0020042802980710200b2004410036029802200441e0076a412020044198026a1003210a024002402004280298022201417f470d00410021010c010b0240200a0d00410021010c010b20014104490d08200a2800002101200a10200b024020012009470d004113101e2201450d0920084101712108200941016a2109200141002900d4fc403700002001410f6a41002800e3fc40360000200141086a41002900dcfc4037000020044293808080b00237029c072004200136029807200441b8076a20044198076a10ca0120042802a0072101200428029807210a20044198026a41186a220b420037030020044198026a41106a2210420037030020044198026a41086a221142003703002004420037039802200a200120044198026a1001200441e0076a41186a200b290300370300200441e0076a41106a2010290300370300200441e0076a41086a201129030037030020042004290398023703e0070240200428029c07450d0020042802980710200b2004200936029802200441e0076a412020044198026a4104100520044198026a2008200210cc010240200429039802220ca741ff01714101460d0020044198026a41086a22014200370300200442003703980241e780c700411720044198026a1000200441e0076a41086a2202200129030037030020042004290398023703e0072004200c4220883e029802200441e0076a411020044198026a4104100520044198026a2007200810cd01200429039802220ca741ff01714101460d0020014200370300200442003703980241cd80c700411a20044198026a10002002200129030037030020042004290398023703e0072004200c4220883e029802200441e0076a411020044198026a410410050c0b0b200c420888a7220141ff01714104460d0a200c421088a721020c0b0b41034102200120094b1b2102410021010c0a0b20044198026a20044184056a10cb01024020042d0098024101460d00200441c4026a2802002109200441c0026a280200210b200441bc026a2802002107200441b4026a2802002110200441b0026a280200210a0240200441b8026a2802002201450d002001410c6c2102200a210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b02402010450d00200a10200b02402009450d002009410c6c21022007210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200b450d0e200710200c0e0b20042f019a022102024020042d0099022209417e6a220141024b0d0020010e030e000e0e0b200241087420097221010c0a0b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b41144101102d000b41284101102d000b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b4180ecc6004119419cecc6001028000b41134101102d000b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b41134101102d000b20044198026a200e200d200441b8076a2007200810ce01024020042d0098024101460d00200441c4026a2802002109200441c0026a280200210a200441bc026a2802002107200441b4026a280200210b200441b0026a28020021080240200441b8026a2802002201450d002001410c6c21022008210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b0240200b450d00200810200b02402009450d002009410c6c21022007210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200a450d04200710200c040b20042f019a02210220042d0099022201417e6a220941024b0d0020090e03030003030b2002410874200141ff01717221010b20044180056a10cf0120044190076a41026a20044194076a41026a2d00003a0000200420042f0194073b019007200041036a20014110763a0000200020013b0001200041013a000020054521000b20000d022006450d02200341046a280200450d02200610200c020b20044180086a41186a200441b8076a41186a29030037030020044180086a41106a200441b8076a41106a29030037030020044180086a41086a200441b8076a41086a290300370300200420042903b80737038008410121080b20044198076a41186a220720044180086a41186a220129030037030020044198076a41106a220a20044180086a41106a220229030037030020044198076a41086a220b20044180086a41086a220929030037030020042004290380083703980720044198026a20044180056a41c00110cd051a200120072903003703002002200a2903003703002009200b2903003703002004200429039807370380084102210702402008450d00200441e0076a41186a2001290300370300200441e0076a41106a2002290300370300200441e0076a41086a200929030037030020042004290380083703e007410121070b200441c1076a200441e0076a41086a290300370000200441c9076a200441e0076a41106a290300370000200441d1076a200441e0076a41186a290300370000200420073a00b807200420042903e0073700b90720044180086a20044198026a200441b8076a10a40220044198026a41026a2004418b086a2d00003a0000200420042f0089083b019802200429038008210c024020042d00880822014102460d00200441b8076a41026a20044198026a41026a2d00003a0000200420042f0198023b01b8070b2004418c076a41026a2202200441b8076a41026a2d00003a0000200420042f01b8073b018c07024020014102460d0020044198026a41026a20022d00003a0000200420042f018c073b0198020b200441bc046a20013a0000200441bd046a20042f0198023b0000200441bf046a20044198026a41026a2d00003a00002004200c3702b404200441003a00b004200441b0046a1077200441003602b00441effbc0004110200441b0046a1003210202400240024020042802b0042209417f470d00410121020c010b024020020d00410121020c010b20094104490d012002280000210920021020200941016a21020b200420023602b00441effbc0004110200441b0046a410410052000410c6a20013a0000200041046a200c3702002000410d6a20042f018c073b00002000410f6a2004418e076a2d00003a0000200041003a00002006450d012005450d01200341046a280200450d01200610200c010b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b200441a0086a24000bdc2b01067f230041306b2201240002400240024002400240024002400240024002402000280200220241204b0d0002400240024002400240024002400240024002400240024002400240024002400240024020020e21001b1b011b1b02031b04051b1b1b060708090a0b0c1b0d0e0f1b101b111b1b1b1b000b0240200041086a280200220241064b0d00024002400240024020020e071f1f001f0102031f0b200041106a280200450d1e2000410c6a28020010200c1e0b200041106a280200450d1d2000410c6a28020010200c1d0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303400240200241046a280200450d00200228020010200b0240200241106a280200450d002002410c6a28020010200b200241186a2102200341686a22030d000b0b200041106a280200450d1c200028020c10200c1c0b0240200041146a2802002203450d002000410c6a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041106a280200450d1b200028020c10200c1b0b200041106a280200450d1a2000410c6a28020010200c1a0b02402000410c6a2802002202450d0020002802042204200241f0006c6a2105034002402004410c6a2802002203450d0020042802042102200341246c210303400240024020022d0000220641034b0d0002400240024020060e0404000102040b2002410c6a280200450d03200241086a28020010200c030b2002410c6a280200450d02200241086a28020010200c020b2002410c6a280200450d01200241086a28020010200c010b200241086a280200450d00200241046a28020010200b200241246a21022003415c6a22030d000b0b200441f0006a21020240200441086a280200450d00200428020410200b2002210420022005470d000b0b200041086a280200450d19200028020410200c190b200041086a2d0000417a6a220241074b0d180240024020020e08001a1a1a1a1a1a01000b200041106a280200450d192000410c6a28020010200c190b200041106a280200450d182000410c6a28020010200c180b200041086a280200450d17200028020410200c170b200041086a280200450d16200028020410200c160b02402000410c6a280200450d00200041086a28020010200b02402000411c6a2802002203450d00200041146a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041186a280200450d15200028021410200c150b02402000280204220241024b0d00024020020e03160016160b200041086a220228020010a50120022802001020200141306a24000f0b2000412c6a220228020010a50120022802001020200141306a24000f0b200041086a2d00004101470d130240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b200041286a280200450d13200041246a28020010200c130b200041086a2d00004103470d12200041d0006a280200450d12200041cc006a28020010200c120b20002d00044101470d112000410c6a280200450d11200041086a28020010200c110b200041086a280200450d10200028020410200c100b200041086a2d0000417f6a220241074b0d0f02400240024002400240024020020e080001020304151505000b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d14200041286a280200450d14200210200c140b200041106a280200450d132000410c6a28020010200c130b200041106a280200450d122000410c6a28020010200c120b200041106a280200450d112000410c6a28020010200c110b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d10200041286a280200450d10200210200c100b02402000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a2802002202450d002000413c6a280200450d00200210200b200041c4006a2802002202450d0f200041c8006a280200450d0f200210200c0f0b0240200041086a2d0000220241074b0d000240024002400240024020020e081414001401020304140b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d13200041186a28020010200c130b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d12200041186a28020010200c120b200041106a280200450d112000410c6a28020010200c110b200041106a280200450d102000410c6a28020010200c100b200041106a280200450d0f2000410c6a28020010200c0f0b200041106a280200450d0e2000410c6a28020010200c0e0b200041086a2d00004105470d0d200041106a280200450d0d2000410c6a28020010200c0d0b200041086a280200417f6a220241014b0d0c0240024020020e020001000b200041106a280200450d0d2000410c6a28020010200c0d0b200041106a280200450d0c2000410c6a28020010200c0c0b0240200041086a2d0000220241064b0d00024020020e070d000d0d0d0d0d0d0b200041306a280200450d0c2000412c6a28020010200c0c0b200041106a280200450d0b2000410c6a28020010200c0b0b02402000280204220241034b0d00024020020e040c000c0c0c0b2000410c6a280200450d0b200041086a28020010200c0b0b0240200041106a2802002203450d00200041086a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b2000410c6a280200450d0a200028020810200c0a0b0240200041086a2d00002202410c4b0d00024002400240024002400240024002400240024020020e0d14000114020304050607140809140b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d1320022802002106200210202006450d1320062802002103200610202003450d1320032802002202450d120340200310202002210320022802002206210220060d000c130b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d1220022802002106200210202006450d1220062802002103200610202003450d1220032802002202450d100340200310202002210320022802002206210220060d000c110b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d1120022802002106200210202006450d1120062802002103200610202003450d1120032802002202450d0e0340200310202002210320022802002206210220060d000c0f0b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1020022802002106200210202006450d1020062802002103200610202003450d1020032802002202450d0c0340200310202002210320022802002206210220060d000c0d0b0b2000410c6a2802004102490d0f200041106a280200200041146a280200200041186a28020010720c0f0b0240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b2000412c6a2802002103200041246a28020021020240200041286a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b200241908cc500460d0920022802002106200210202006450d0920062802002103200610202003450d09200328020022020d060c080b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d0d200041186a28020010200c0d0b0240200041106a280200450d002000410c6a28020010200b0240200041206a2802002202450d00200241306c2103200041186a28020041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200341506a22030d000b0b2000411c6a280200450d0c200028021810200c0c0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0b200028020c10200c0b0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0a200028020c10200c0a0b2000410c6a280200200041146a2802001071200041106a280200450d09200028020c10200c090b200041086a2d0000417f6a2202410e4b0d08024002400240024002400240024020020e0f000f010f020f0f030f0f040f0f0506000b0240200041306a280200450d002000412c6a28020010200b0240200041386a2802002202450d002000413c6a280200450d00200210200b0240200041c4006a2802002202450d00200041c8006a280200450d00200210200b0240200041d0006a2802002202450d00200041d4006a280200450d00200210200b200041dc006a2802002202450d0e200041e0006a280200450d0e200210200c0e0b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a280200450d002000411c6a2802002202450d00200041206a280200450d00200210200b0240200041286a280200450d002000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a280200450d002000413c6a2802002202450d00200041c0006a280200450d00200210200b200041c8006a280200450d0d200041cc006a2802002202450d0d200041d0006a280200450d0d200210200c0d0b200041186a280200450d0c200041146a28020010200c0c0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d0b20022802002106200210202006450d0b20062802002103200610202003450d0b20032802002202450d040340200310202002210320022802002206210220060d000c050b0b200041306a280200450d0a2000412c6a28020010200c0a0b200041106a280200450d092000410c6a28020010200c090b200041106a280200450d082000410c6a28020010200c080b0340200310202002210320022802002206210220060d000c020b0b200310200c060b200310200b2000413c6a2802002103200041346a28020021020240200041386a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b200041c8006a2802002103200041c0006a28020021020240200041c4006a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b0240200041cc006a2802004102490d00200041d0006a280200200041d4006a280200200041d8006a28020010720b200041e4006a2802002103200041dc006a28020021020240200041e0006a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d0420022802002106200210202006450d0420062802002103200610202003450d04024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200c040b200310200c030b200310200c020b200310200c010b200310200b200141306a24000b960101047f230041106b22012400410021022001410036020441effbc0004110200141046a1003210302400240024020012802042204417f470d000c010b024020030d000c010b20044104490d01200328000021042003102041effbc00041101004410121020b2000200236020020002004360204200141106a24000f0b41ceb8c4004133200141086a41fcbfc4004184b9c400102e000bbfa0020f077f027e057f017e047f017e0a7f017e037f037e017f017e177f0e7e017f230041c0066b2201240020014188056a41086a22024200370300200142003703880541b7eec600411020014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141e8026a200141a0046a109e03024002400240024002400240024002400240024002400240024020012d00e80222024102470d00200141e0056a21030c010b200141a0046a41101004200141b0016a41086a200141f1026a290000370300200141b0016a41106a200141e8026a41116a290000370300200141b0016a41186a220420014181036a290000370300200120012900e9023703b0010240200241037122024103460d00200141e0056a210320020e03010001010b200141e8046a41186a2004290300370300200141e8046a41106a200141b0016a41106a290300370300200141e8046a41086a200141b0016a41086a290300370300200120012903b0013703e80420014188056a41086a2202420037030020014200370388054190eec600411120014188056a1000200141a0046a41086a200229030037030020012001290388053703a00441002104200141003602e802200141a0046a4110200141e8026a10032102024002400240024002400240024020012802e8022205417f460d002002450d0020054104490d0120022800002104200210200b4116101e2202450d012002410e6a41002900afee46370000200241086a41002900a9ee46370000200241002900a1ee4637000020024116412c10222202450d0220022004360016200141e0056a41186a22054200370300200141e0056a41106a22064200370300200141e0056a41086a22074200370300200142003703e0052002411a200141e0056a100120014188056a41186a200529030037030020014188056a41106a200629030037030020014188056a41086a2007290300370300200120012903e0053703880520021020200141003602e80220014188056a4120200141e8026a1003210520012802e8022206417f460d042005450d04200120063602a404200120053602a004200141e8026a200141a0046a109f0320012802e8022202450d0320012902ec0221082006450d05200510200c050b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41164101102d000b412c4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410021020b2002410120021b2105024002402008420020021b22084220882209a72202418002490d004120101e2202450d03200220012903e804370000200241186a200141e8046a41186a290300370000200241106a200141e8046a41106a290300370000200241086a200141e8046a41086a2903003700004116101e2206450d042006410e6a41002900afee46370000200641086a41002900a9ee46370000200641002900a1ee4637000020064116412c10222206450d052006200441016a2207360016200141e0056a41186a22044200370300200141e0056a41106a220a4200370300200141e0056a41086a220b4200370300200142003703e0052006411a200141e0056a100120014188056a41186a200429030037030020014188056a41106a200a29030037030020014188056a41086a2204200b290300370300200120012903e0053703880520061020200141e8026a2002410110a00320014188056a412020012802e802220620012802f0021005024020012802ec02450d00200610200b200210202004420037030020014200370388054190eec600411120014188056a1000200141a0046a41086a200429030037030020012001290388053703a004200120073602e802200141a0046a4110200141e8026a41041005200141e0056a21030c010b200141a0046a41186a2207200141e8046a41186a290300370300200141a0046a41106a220a200141e8046a41106a290300370300200141a0046a41086a220b200141e8046a41086a290300370300200120012903e8043703a004024020022008a7470d00200241016a22062002490d0d2009a7220c4101742203200620062003491b220641ffffff3f712006470d0d200641057422034100480d0d0240024020020d002003101e21050c010b2005200c4105742003102221050b2005450d0a2008422088a721022006ad21080b200520024105746a220620012903a004370000200641186a2007290300370000200641106a200a290300370000200641086a200b2903003700004116101e2206450d052006410e6a41002900afee46370000200641086a41002900a9ee46370000200641002900a1ee4637000020064116412c10222206450d0620062004360016200141e0056a41186a22044200370300200141e0056a41106a22074200370300200141e0056a41086a220a4200370300200142003703e0052006411a200141e0056a100120014188056a41186a200429030037030020014188056a41106a200729030037030020014188056a41086a200a290300370300200120012903e0053703880520061020200141e8026a2005200241016a10a00320014188056a412020012802e802220220012802f0021005024020012802ec02450d00200210200b200842ffffffff0f832108200141e0056a21030b2008a7450d00200510200b20014188056a41086a22024200370300200142003703880541fc81c700411320014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d00200141003a00b8062004450d0720022d000022044101460d0120040d0720021020200141e8026a411010040b419ba9c100412b41a888c6001028000b20021020200141e8026a4110100420014188056a41086a22024200370300200142003703880541f58bc600411120014188056a1000200141e8026a41086a2204200229030037030020012001290388053703e802200141e8026a411010042002420037030020014200370388054198edc600411720014188056a10002004200229030037030020012001290388053703e802200141e8026a41101004200242003703002001420037038805418f82c700411a20014188056a10002004200229030037030020012001290388053703e802200141e0006a200141e8026a109202200242003703002001420037038805418f82c700411a20014188056a10002004200229030037030020012001290388053703e802200142003703b001200141e8026a4110200141b0016a4108100520024200370300200142003703880541ddd2c300411720014188056a10002004200229030037030020012001290388053703e8020240200141e8026a411041e4fdc600410041001002417f470d0010a902210820024200370300200142003703880541ddd2c300411720014188056a10002004200229030037030020012001290388053703e802200120083703b001200141e8026a4110200141b0016a410810050b20024200370300200142003703880541e8bfc500411020014188056a10002004200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a1003210220012802b0012204417f460d082002450d0820044104490d062002280000210d20021020200141e8026a411010044101210a0c090b41204101102d000b41164101102d000b412c4101102d000b41164101102d000b412c4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b20034101102d000b4100210a0b20014188056a41086a2202420037030020014200370388054194efc600411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d0041002105200141003a00b8060240024002402004450d0020022d0000220441014b0d0020040e020201020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410121050b2002102020054102460d0020050d010b024002404104101e2204450d002004410036020020014188056a41086a22024200370300200142003703880541f8bfc500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b801200142013703b001200141013602880520014188056a200141b0016a106320042802002107024020012802b401220620012802b80122056b4104490d0020012802b00121020c020b200541046a22022005490d032006410174220b2002200b20024b1b220b4100480d030240024020060d00200b101e21020c010b20012802b0012006200b102221020b02402002450d002001200b3602b401200120023602b001200b21060c020b200b4101102d000b41044104102d000b2001200541046a220b3602b801200220056a2007360000200141e8026a41102002200b100502402006450d00200210200b20041020024002404104101e2204450d002004410036020020014188056a41086a22024200370300200142003703880541edd3c500411620014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b801200142013703b001200141013602880520014188056a200141b0016a106320042802002107024020012802b401220620012802b80122056b4104490d0020012802b00121020c020b200541046a22022005490d032006410174220b2002200b20024b1b220b4100480d030240024020060d00200b101e21020c010b20012802b0012006200b102221020b02402002450d002001200b3602b401200120023602b001200b21060c020b200b4101102d000b41044104102d000b2001200541046a220b3602b801200220056a2007360000200141e8026a41102002200b100502402006450d00200210200b2004102020014188056a41086a2202420037030020014200370388054183d4c500411020014188056a1000200141e8026a41086a2204200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a410410052002420037030020014200370388054194efc600411520014188056a10002004200229030037030020012001290388053703e802200141013a00e005200141e8026a4110200141e0056a410110050b20014188056a41086a22024200370300200142003703880541f8bfc500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d002001200436028c052001200236028805200141b0016a20014188056a10c101024020012802b001220e450d0020012902b401210f2004450d02200210200c020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b4104210e4200210f0b20014188056a41086a22024200370300200142003703880541edd3c500411620014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d002001200436028c052001200236028805200141b0016a20014188056a10c101024020012802b0012207450d0020012902b401210902402004450d00200210200b200120073602a0042009422088a721100c020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41042107200141043602a00441002110420021090b200f422088a7211102400240024002400240200a0d002011417f6a220220114f0d01200220114b0d01200e20024102746a280200210d0b41002011419c7f6a22022002201141016a4b1b221220114b0d01200e20124102746a21132012450d032010ad2108200e210c0340200c280200210a024002400240024002402008a7220b41014b0d0041002102200b0e020201020b41002102200b2104034020022004410176220520026a2206200a200720064102746a280200491b2102200420056b220441014b0d000b0b200a2007200241027422046a2802002205460d022002200a20054b6a21020c010b410021020b200120023602e80241ccd4c500412e200141e8026a41fcd4c500418cd5c500102e000b20082002ad580d03200720046a2204200441046a2002417f73200b6a41027410ce051a200942ffffffff0f83200b417f6a2210ad422086842109200c41046a220c2013460d042008427f7c210820012802a00421070c000b0b4193d4c500412641bcd4c5001045000b41c0d8c200411c41a888c6001028000b41fad8c200411d41a888c6001028000b200f42ffffffff0f8321080240201120126b2202450d0002402012450d00200e2013200241027410ce051a2009422088a721100b20082002ad4220868421080b20012802a004210741002102024002400240024002400240024002400240024002400240201041014b0d0020100e020201020b20102104034020022004410176220520026a2206200d200720064102746a280200491b2102200420056b220441014b0d000b0b0240200d200720024102746a2802002204460d002002200d20044b6a21020b20102002490d010b20102009a7470d02201041016a22042010490d09201041017422052004200520044b1b220441ffffffff03712004470d092004410274220541004e0d010c090b41dcd8c200411e41a888c6001028000b0240024020100d002005101e21070c010b200720104102742005102221070b2007450d01200120073602a0042004ad21090b200720024102746a220441046a2004201020026b41027410ce051a2004200d3602000240024002402008422088220fa722042008a7470d00200441016a22022004490d09200fa722064101742205200220022005491b220241ffffffff03712002470d09200241027422054100480d090240024020040d002005101e210e0c010b200e200641027420051022210e0b200e450d012008422088a721042002ad21080b200e20044102746a200d360200201041016a22130d01419cd5c50041c30041a888c6001028000b20054104102d000b2013201341017622024d0d0220012802a004220520024102746a280200210d024020134101710d0020132002417f6a22024d0d02200520024102746a280200200d6a410176210d0b20014188056a41086a22024200370300200142003703880541f8bfc500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b801200142013703b0012001200441016a22113602880520014188056a200141b0016a10630240024020110d0020012802b801210a20012802b401210720012802b00121040c010b410020012802b80122026b2105200441027441046a210b20012802b4012107200e210603402006280200210c02400240200720056a4104490d0020012802b00121040c010b200241046a22042002490d092007410174220a2004200a20044b1b220a4100480d090240024020070d00200a101e21040c010b20012802b0012007200a102221040b02402004450d002001200a3602b401200120043602b001200a21070c010b200a4101102d000b200641046a21062001200241046a220a3602b801200420026a200c3600002005417c6a2105200a2102200b417c6a220b0d000b0b2008a72102200141e8026a41102004200a100502402007450d00200410200b02402002450d00200e10200b20012802a004210e20014188056a41086a22024200370300200142003703880541edd3c500411620014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200142013703b001200141003602b8012001201336028805201041027441046a210a20014188056a200141b0016a1063410020012802b80122026b21052009a7211020012802b4012107200e210603402006280200210c02400240200720056a4104490d0020012802b00121040c010b200241046a22042002490d082007410174220b2004200b20044b1b220b4100480d080240024020070d00200b101e21040c010b20012802b0012007200b102221040b02402004450d002001200b3602b401200120043602b001200b21070c010b200b4101102d000b200641046a21062001200241046a220b3602b801200420026a200c3600002005417c6a2105200b2102200a417c6a220a0d000b200141e8026a41102004200b100502402007450d00200410200b02402010450d00200e10200b20014188056a41086a2202420037030020014200370388054183d4c500411020014188056a1000200141e8026a41086a2204200229030037030020012001290388053703e8022001200d3602b001200141e8026a4110200141b0016a4104100502400240201141e500470d00200d419a086a10794b0d0020014188056a41086a22054200370300200142003703880541cac1c500411720014188056a1000200141e8026a41086a200529030037030020012001290388053703e8024108101e2205450d012005200d360004200541e400360000200141e8026a4110200541081005200510200b200242003703002001420037038805418cc6c500411d20014188056a10002004200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a1003210420012802b0012202417f460d062004450d0620012004360288052001200236028c050240024020024104490d002001200441046a3602880520012002417c6a220536028c0520054104490d00200428000021052001200241786a36028c052001200441086a3602880520042800042107200141b0016a20014188056a10d80120012802b0012202450d0020012902b401210841002106200141003a00b8060240200128028c05220a450d002001200a417f6a221036028c052001200128028805220c41016a36028805200c2d00004101460d020b0c070b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b201041044f0d040c050b41084101102d000b20054104102d000b41d0e0c60020022013102a000b41d0e0c60020022013102a000b2001200a417b6a36028c052001200c41056a36028805200c280001210b410121060b20041020200141c8016a200b360200200141bc016a2008370200200120063602c401200120023602b801200120073602b401200120053602b0010240024002400240024020052000470d002008422088a7210a0240024020060d00200aad42287e2208422088a70d052008a72204417f4c0d050240024020040d004108210b0c010b2004101e220b450d050b410021050240200a450d00200a41286c210641002105200b21040340200241086a2903002108200241106a2903002109200241186a290300210f20022903002114200441206a200241206a290300370300200441186a200f370300200441106a2009370300200441086a200837030020042014370300200441286a2104200541016a2105200241286a2102200641586a22060d000b0b20014198056a200736020020014188056a410c6a200536020020014188056a41086a200a3602002001200b36028c052001410036028805200141e8026a20014188056a10a1032001418b066a200141e8026a41086a280200360000200120012903e80237008306200141e8026a410c6a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe01200a450d01200b10200c010b200aad42287e2208422088a70d042008a72204417f4c0d040240024020040d004108210c0c010b2004101e220c450d030b02400240200a0d00410021050c010b200a41286c210641002105200c21040340200241086a2903002108200241106a2903002109200241186a290300210f20022903002114200441206a200241206a290300370300200441186a200f370300200441106a2009370300200441086a200837030020042014370300200441286a2104200541016a2105200241286a2102200641586a22060d000b0b2001419c056a200736020020014198056a200536020020014188056a410c6a200a36020020014188056a41086a200c3602002001200b36028c052001410136028805200141e8026a20014188056a10a1032001418b066a200141e8026a41086a280200360000200120012903e80237008306200141e8026a410c6a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe01200a450d00200c10200b20012802b401210720012802b00121050b200720056a2000470d0302404101101e2202450d00200142013702ec02200120023602e802200141013602f002200141013a00b806200241013a000020012802b80121042001200141c0016a28020022023602880520014188056a200141e8026a106302402002450d002004200241286c6a210703402004200141e8026a10ca01200441206a29030021080240024020012802ec02220520012802f00222026b4108490d0020012802e80221050c010b200241086a22062002490d09200541017422022006200220064b1b22024100480d090240024020050d002002101e21050c010b20012802e80220052002102221050b02402005450d00200120023602ec02200120053602e80220012802f00221020c010b20024101102d000b2001200241086a3602f002200520026a20083700002007200441286a2204470d000b0b200141b8016a210220012802ec02210441d4bfc500411420012802e802220520012802f002100502402004450d00200510200b200141e8026a41086a22042002290000370300200141e8026a41106a200241086a280000360200200141003602ec02200141053a00e802200141e8026a107720014188056a41086a220242003703002001420037038805418cc6c500411d20014188056a10002004200229030037030020012001290388053703e802200141e8026a411010040c050b41014101102d000b20044108102d000b20044108102d000b102c000b20012802bc01450d0020012802b80110200b20014188056a41086a22024200370300200142003703880541d8d3c500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a10032102024020012802b0012204417f460d002002450d00200141003a00b80602402004450d0020022d0000220541034b0d00024002400240024020050e0401030100010b2004417f6a41074b0d010c030b200210200c030b200228000521052002280001210420021020024020042000470d00200141043602b001200120053602b401200141e8026a200141b0016a10a1032001418b066a200141f0026a280200360000200120012903e80237008306200141f4026a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe010b200520046a2000470d02200141003602a00420014188056a41086a22024200370300200142003703880541d8d3c500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141b0016a200141a0046a10a203200141e8026a411020012802b001220220012802b8011005024020012802b401450d00200210200b200141023602ec02200141053a00e802200141e8026a10770c020b2004417f6a4108490d00200228000521052002280001210420021020024020042000470d00200141033602b001200120053602b401200141e8026a200141b0016a10a1032001418b066a200141f0026a280200360000200120012903e80237008306200141f4026a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe010b200520046a2000470d01200141023602a00420014188056a41086a22024200370300200142003703880541d8d3c500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141b0016a200141a0046a10a203200141e8026a411020012802b001220220012802b8011005024020012802b401450d00200210200b200141013602ec02200141053a00e802200141e8026a10770c010b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b200141e8026a10f70220012802e8022105024020012802f002220e450d00200e4106742104200541106a210203400240200241046a280200450d00200228020010200b200241c0006a2102200441406a22040d000b0b024020012802ec02450d00200510200b20014188056a41086a2202420037030020014200370388054196fac100411820014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141003602e802200141a0046a4110200141e8026a1003210202400240024002400240024020012802e8022204417f470d00413c21070c010b024020020d00413c21070c010b20044104490d0120022800002107200210200b200141e8026a10f70220012802e8022106024020012802f0022205450d0020054106742104200641106a210203400240200241046a280200450d00200228020010200b200241c0006a2102200441406a22040d000b0b024020012802ec02450d00200610200b20014188056a41086a22024200370300200142003703880541aefac100411b20014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141003602e802200520076c220541e4006e2115200141a0046a4110200141e8026a1003210220012802e8022204417f460d022002450d02200120043602b401200120023602b001200141e8026a200141b0016a10c10120012802e8022216450d0120012902ec0221092004450d03200210200c030b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b42002109410421160b024002402009422088a72202450d00201620024102746a2117200141b0016a41216a2118200541e3004b21192016210c0240024002400240024002400340200c280200210b02400240024002404119101e2202450d00200241186a41002d00e1fa413a0000200241106a41002900d9fa41370000200241086a41002900d1fa41370000200241002900c9fa4137000020024119413210222202450d012002200b360019200341186a22104200370000200341106a22134200370000200341086a220d4200370000200342003700002002411d2003100120014188056a41186a221a201029000037030020014188056a41106a221b201329000037030020014188056a41086a221c200d290000370300200120032900003703880520021020200141003602e80220014188056a4120200141e8026a100321040240024020012802e8022202417f470d0042002108410121120c010b200120023602b401200120043602b001200141e8026a200141b0016a10a30320012802e8022212450d0320012902ec0221082002450d00200410200b02402008422088a722110d004100210541002107410021064100210a0c040b201141216c2104201241206a21024100210a41002106410021074100210503400240024002400240024020022d00000e0401020300010b200541016a21050c030b200a41016a210a0c020b200641016a21060c010b200741016a21070b200241216a21022004415f6a2204450d040c000b0b41194101102d000b41324101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b200141e8026a200b108c03200128029403108d0321020240024002400240200e450d00410521042005200e460d010b2019200620154f71211d024002400240200e450d00200e2011460d010b2002450d0341022104201d0d010c020b41042104201d450d010b410321040b200b200410900322020d01107921114116101e2202450d032002410e6a41002900f0fa41370000200241086a41002900eafa41370000200241002900e2fa4137000020024116412c10222202450d042002200b3600162010420037000020134200370000200d4200370000200342003700002002411a20031001201a2010290000370300201b2013290000370300201c200d2900003703002001200329000037038805200210204104101e2202450d052002200b36000020024104410810222202450d062002200a36000420024108411010222202450d072002200736000c2002200636000820024110412010222202450d082002200536001002400240200441054d0d00411421100c010b024002400240024002400240024020040e06000102030405000b410021100c050b410121100c040b410221100c030b410321100c020b410421100c010b410521100b200120103a00b806200220103a0014411521100b200220106a201136000020014188056a41202002201041046a100520021020201820012f0088053b0000201841026a20014188056a41026a2d00003a0000200120043a00d001200120113602cc01200120053602c801200120073602c401200120063602c0012001200a3602bc012001200b3602b801200141043a00b401200141093a00b001200141b0016a10770b0240200128028003450d0020012802fc0210200b0240200128028c03450d0020012802880310200b200c41046a210c02402008a7450d00201210200b200c2017470d010c080b0b0240200128028003450d0020012802fc0210200b0240200128028c03450d0020012802880310200b02402008a7450d00201210200b02402009a7450d00201610200b2002412810060c070b41164101102d000b412c4101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b2009a7450d00201610200b200010a40320014188056a41086a22024200370300200142003703880541a1c6c100411220014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a1003210202400240024002400240024020012802b0012204417f470d00410121040c010b024020020d00410121040c010b20044104490d0120022800002104200210200b024020042000470d00200141e8026a41086a22022000360200200141003602ec022001410b3a00e802200141e8026a107720014188056a41086a22044200370300200142003703880541aac2c400411920014188056a10002002200429030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a10032102024020012802b0012204417f460d002002450d0041002105200141003a00b8060240024002402004450d0020022d0000220441014b0d0020040e020201020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410121050b2002102020054102460d002005450d010b200141e8026a10f702200141d8006a200141e8026a10a5030b20014188056a41086a22024200370300200142003703880541f8fac100411520014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141003602e802200141a0046a4110200141e8026a1003210220012802e8022204417f460d022002450d02200120043602b401200120023602b001200141e8026a200141b0016a109a0320012802e802221e450d0120012902ec02211f2004450d03200210200c030b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b4101211e4200211f0b0240201f422088a72202450d00201e20026a2120200141e8026a410d6a2106200141e8026a41086a2105200141f0006a41086a2115200141dd036a212120014188056a410d6a2107201e21220340024002400240024002400240024002400240024002404111101e2202450d00200241106a41002d009dfb413a0000200241086a4100290095fb413700002002410029008dfb4137000020222d0000210420024111412210222202450d01200220043a0011200341186a22134200370000200341106a220d4200370000200341086a220e4200370000200342003700002002411220031001200141a0046a41186a220a2013290000370300200141a0046a41106a220b200d290000370300200141a0046a41086a220c200e290000370300200120032900003703a00420021020200141003602e802200141a0046a4120200141e8026a1003210420012802e8022202417f460d0a200120023602b401200120043602b001200141e8026a200141b0016a10990320012903e8024201510d02200141e8026a41206a2903002123200141e8026a41106a22102903002114200129038003212420012903f002212520012802a803211602402002450d00200410200b2016450d0320002016700d0a4117101e2202450d042002410f6a41002900d5f841370000200241086a41002900cef841370000200241002900c6f84137000020222d0000210420024117412e10222202450d05200220043a001720134200370000200d4200370000200e4200370000200342003700002002411820031001200a2013290000370300200b200d290000370300200c200e290000370300200120032900003703a00420021020200141003602e802200141a0046a4120200141e8026a100321040240024020012802e8022202417f470d0041012126420021270c010b200120023602b401200120043602b001200141e8026a200141b0016a10e30120012802e8022226450d0720012902ec0221272002450d00200410200b2027422088a72202450d092002410574211a202621020340200241086a2900002108200241106a29000021092002290000210f200141e8026a41186a2211200241186a29000037030020102009370300200520083703002001200f3703e8024117101e2204450d08200441002900aff8413700002004410f6a41002900bef841370000200441086a41002900b7f84137000020014297808080f0023702b401200120043602b001200141e8026a200141b0016a10ca0120012802b801210420012802b001211220134200370000200d4200370000200e4200370000200342003700002012200420031001200a2013290000370300200b200d290000370300200c200e290000370300200120032900003703a004024020012802b401450d0020012802b00110200b200141003602e802200141a0046a4120200141e8026a1003211b0240024020012802e8022212417f470d00410421040c010b2001201236028c052001201b36028805200141e8026a20014188056a10a60320012d00f40222044104460d0a200141e0056a41086a2005280200360200200141b0016a41086a200641086a290000370300200141b0016a41106a200641106a290000370300200141b0016a41186a200641186a290000370300200141b0016a411f6a2006411f6a280000360000200120012903e8023703e005200120062900003703b0012012450d00201b10200b2015200141e0056a41086a22122802003602002005200141b0016a41086a2903003703002010200141b0016a41106a2903003703002011200141b0016a41186a290300370300200141e8026a411f6a221c200141b0016a411f6a280000360000200120012903e005370370200120012903b0013703e80202402004410446221b0d00200141e8046a41086a201528020036020020014188056a41086a200529030037030020014188056a41106a201029030037030020014188056a41186a201129030037030020014188056a411f6a201c280000360000200120012903703703e804200120012903e802370388050b200141a0016a41086a2211200141e8046a41086a28020036020020014180066a41086a221c20014188056a41086a221929030037030020014180066a41106a221820014188056a41106a29030037030020014180066a41186a221720014188056a41186a29030037030020014180066a411f6a221d20014188056a411f6a280000360000200120012903e8043703a00120012001290388053703800620122011280200360200200120012903a0013703e005200c201c290300370300200b2018290300370300200a2017290300370300200141a0046a411f6a2211201d28000036000020012001290380063703a0040240201b0d00200720012903a004370000201920122802002212360200200741086a200c290300370000200741106a200b290300370000200741186a200a2903003700002007411f6a2011280000360000200120012903e00537038805200120043a009405201220166a20004f0d00200141c8006a200710890302402001290348202554200141c8006a41086a290300220820145420082014511b0d00200141b0016a20012903880510a70320012903e0014202510d01200141e8026a200141b0016a41b80110cd051a200141f0006a20212024202310a803024020012802700d00200120153602e804200141e8046a10f4020b024020012802ac03450d0020012802a80310200b024020012802b803450d0020012802b40310200b024020012802c403450d0020012802c00310200b20012802d00320012802d40320012802d80310f5020c010b200141e8026a20072024202310a80320012802e8020d00200120053602b001200141b0016a10f4020b200241206a2102201a41606a221a0d000c0a0b0b41114101102d000b41224101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41a0fbc100413941dcfbc1001028000b41174101102d000b412e4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41174101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b2027a7450d00202610200b202241016a22222020470d000b0b0240201fa7450d00201e10200b200141f0006a41186a22024200370300200141f0006a41106a22044200370300200141f0006a41086a22054200370300200142003703704198abc1004118200141f0006a1001200141e0056a41186a2002290300370300200141e0056a41106a2004290300370300200141e0056a41086a2005290300370300200120012903703703e005200141003602e802200141e0056a4120200141e8026a100321020240024020012802e8022204417f460d002002450d00024020044108490d002002290000210820021020410021020c020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410121020b024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020d0020014180066a2008109602200141e8026a20014180066a109a0220012903a0034202510d13200141b0016a41186a2228200141e8026a41186a221a290300370300200141b0016a41106a2226200141e8026a41106a221b290300370300200141b0016a41086a2229200141e8026a41086a2212290300370300200141f0006a41086a222a200141e8026a41296a290000370300200141f0006a410f6a222b200141e8026a41306a222c290000370000200120012903e8023703b0012001200129008903370370200141e8026a41c8006a290300211f200141e8026a41d0006a290300212720012d008803210220014188056a41086a222d202929030037030020014188056a41106a222e202629030037030020014188056a41186a222f2028290300370300200141e0056a41086a2230202a290300370300200141e0056a410f6a2231202b290000370000200120012903b00137038805200120012903703703e00520024104460d00200141e8026a41386a2132200141f0006a41186a2133200141b0016a41386a213420014189036a2135200141fc026a2136200141a0046a41296a2137200141a0046a412c6a2138200141a0046a41086a213903402039200129038805370300203720012903e00537000041082116203941086a20014188056a41086a290300370300203941106a223a202e290300370300203941186a223b202f290300370300203741086a200141e0056a41086a2903003700002037410f6a2031290000370000200120083703a004200120023a00c804200120083703e00441002106410021054100211d410021044200210f0240200241ff01714103460d0020012802cc0422042102024020012802d0042205450d002005210620042102034020022802c00321022006417f6a22060d000b0b0240024020012802d404220c0d004100213c0c010b200141003602bc01200120383602b801200141003602b001200120023602b4010240024020022f01060d0002400240200228020022040d002038ad210841002106410021040c010b20023301044220862038ad842108410121060b02402008422088a7220720042f0106490d0003402008220942ffffffff0f832108200641016a210620042f01042207200428020022042f01064f0d000b200921080b200741027420046a41c4036a28020021022008a7210a02402006417f6a2205450d00034020022802c00321022005417f6a22050d000b0b2001200a3602f002200120023602ec0241002105200141003602e8020c010b200120383602f002200120023602ec0241002106200141003602e80241012105200221042038210a410021070b20012007360284032001200a36028003200120043602fc02200120063602f802200120053602f4024100213c200141e8026a210b034020074105742102200b28020c2107200b280208210a200b2802042104200b2802002105200c417f6a210c02402002203628020041e0006a6a22022d0018450d0020022802142206450d0020022006417f6a3602144101213c0b024002400240200c450d002001200a3602b801200120053602b001200120073602bc01200120043602b401200720042f0106490d0102400240200428020022020d00200aad2108410021020c010b200541016a21052004330104422086200aad8421080b02402008422088a7220720022f0106490d0003402008220942ffffffff0f832108200541016a210520022f01042207200228020022022f01064f0d000b200921080b200741027420026a41c4036a28020021042008a7210a02402005417f6a2206450d00034020042802c00321042006417f6a22060d000b0b2001200a3602f002200120043602ec0241002106200141003602e8020c020b20012802cc04210420012802d00421050c030b2001200a3602f002200120043602ec02200120053602e802200741016a2106200421020b20012007360284032001200a36028003200120023602fc02200120053602f802200120063602f4020c000b0b02402005450d00034020042802c00321042005417f6a22050d000b0b4100210720012802d404210a41002106024003400240200a0d004100210c0c020b02400240200620042f0106490d0002400240200428020022020d004100210541002104410021020c010b20042f01042104410121050b0240200420022f0106490d000340200541016a210520022f01042204200228020022022f01064f0d000b0b200220044105746a41e0006a210b200220044103746a41086a210c200441027420026a41c4036a2802002104410021062005417f6a2202450d01034020042802c00321042002417f6a22020d000c020b0b200420064103746a41086a210c200420064105746a41e0006a210b200641016a21060b200a417f6a210a200b2802140d000b200a21070b410821164100211d02400240200c0d004108213d4100211e410021114108210a0c010b200c290300210802404108101e2220450d0020202008370300410121114101212203400240024020070d00410021074100210b0c010b02400240200620042f0106490d0002400240200428020022020d004100210541002104410021020c010b20042f01042104410121050b0240200420022f0106490d000340200541016a210520022f01042204200228020022022f01064f0d000b0b200220044105746a41e0006a210a200220044103746a41086a210b200441027420026a41c4036a2802002104410021062005417f6a2202450d01034020042802c00321042002417f6a22020d000c020b0b200420064103746a41086a210b200420064105746a41e0006a210a200641016a21060b2007417f6a2107200a2802140d010b02400240200b450d00200b2903002108024020222011460d00201141016a21020c020b201141016a22022011490d1d201141017422052002200520024b1b222241ffffffff01712022470d1d202241037422054100480d1d0240024020110d002005101e21200c010b202020114103742005102221200b20200d0120054108102d000b0240024020110d00410021114108213d4100211e0c010b2011ad42287e2208422088a70d1d2008a722024100480d1d02402002101e223d450d00202020114103746a213e4100211e203d210e202021020340200241086a21212002290300210820012802d0042104203821020240034002400240200228020022062f0106220a0d00410021050c010b200a410374210b417f21054100210203400240200b2002470d00200a21050c020b200620026a2107200241086a2102200541016a21050240417f200741086a290300220920085220092008561b41016a0e03020001020b0b200120012802d404417f6a3602d40402400240024002400240024002400240024002400240024002402004450d00200541027420066a41c4036a280200210202402004417f6a2204450d00034020022802c00321022004417f6a22040d000b0b200241908cc500460d0220022903082109200241086a200241106a20022f010641037441786a10ce051a200241e8006a2903002123200241f0006a2903002125200241f8006a290300211420022903602124200241e0006a20024180016a20022f010641057441606a10ce051a200220022f0106417f6a3b0106200620054103746a41086a2009370300200620054105746a41e0006a220441186a2205290300210f20052014370300200441106a2205290300211420052025370300200441086a220529030021252005202337030020042903002123200420243703000c010b200641908cc500460d02200641086a220220054103746a2002200541016a22044103746a2005417f73220720062f01066a41037410ce051a200641e0006a220a20054105746a220241186a290300210f200241106a2903002114200241086a2903002125200229030021232002200a20044105746a200720062f01066a41057410ce051a200620062f0106417f6a3b0106200621020b024020022f010641044b0d0041002105034020022802002206450d010240024020022f010422020d00410021044100211820062f01060d0141e5dac500412841a888c6001028000b2002417f6a2104410121180b200541016a210d0240200641c0036a2202200441016a2207410274221c6a220b280200220a2f0106220c2002200441027422196a220228020022102f010622136a410b490d00024020180d00024002400240200c450d00200a2903082109200a41086a200a41106a200c41037441786a10ce051a200a41f8006a2903002124200a41f0006a290300213f200a41e8006a2903002140200a2903602141200a41e0006a200a4180016a200a2f0106220741057441606a10ce051a20050d01410021134101210d0c020b41f5a6c000412041a888c6001028000b200a2802c0032113200a41c0036a2207200a41c4036a200c41027410ce051a4100210b20134100360200034020072802002210200b3b01042010200a360200200741046a2107200c200b41016a220b470d000b2005417f6a210b200a2f010621070b200a2007417f6a3b0106200620044103746a41086a2207290300214220072009370300200620044105746a220441f8006a2206290300210920062024370300200441f0006a220629030021242006203f370300200441e8006a2206290300213f20062040370300200441e0006a22042903002140200420413703002002280200210202402005450d002013450d07200d417e6a200b470d0820022f01062204410a4b0d09200220044105746a220541f8006a2009370300200541f0006a2024370300200541e8006a203f370300200541e0006a2040370300200220044103746a41086a20423703002002200441016a22044102746a41c0036a22052013360200200220022f010641016a3b01062005280200220520043b0104200520023602000c040b20022f01062204410b4f0d09200220044103746a41086a2042370300200220044105746a220441f8006a2009370300200441f0006a2024370300200441e8006a203f370300200441e0006a2040370300200220022f010641016a3b01060c030b0240024002402013450d00201020134103746a2903002109201341057420106a220241d8006a2903002124200241d0006a290300213f200241c8006a2903002140200241c0006a290300214120050d01410021074101210d0c020b41f5a6c000412041a888c6001028000b201020134102746a41c0036a280200220741003602002005417f6a210a0b201020102f0106417f6a3b0106200620044103746a41086a2202290300214220022009370300200620044105746a220241f8006a2204290300210920042024370300200241f0006a220429030021242004203f370300200241e8006a2204290300213f20042040370300200241e0006a2202290300214020022041370300200b280200210602402005450d002007450d0a200d417e6a200a470d0b024020062f01062202410a4b0d00200641106a200641086a200241037410ce051a2006204237030820064180016a200641e0006a20062f010641057410ce051a200641f8006a2009370300200641f0006a2024370300200641e8006a203f37030020062040370360200641c4036a200641c0036a220220062f010641027441046a10ce051a200620073602c003200620062f010641016a22043b0106200441ffff037141016a21074100210403402002280200220520043b010420052006360200200241046a21022007200441016a2204470d000c050b0b41a8a5c000412741a888c6001028000b20062f01062202410b4f0d0b200641106a200641086a200241037410ce051a2006204237030820064180016a200641e0006a200241057410ce051a200641f8006a2009370300200641f0006a2024370300200641e8006a203f37030020062040370360200620062f010641016a3b01060c020b200b28020022102f0106220c2002280200220a2f010622136a2215410a4b0d0b200641086a220220044103746a220529030021092005200220074103746a2004417f73221820062f01066a41037410ce051a200a41086a220520134103746a20093703002005201341016a22024103746a201041086a200c41037410cd051a2012200641e0006a221720044105746a220541086a290300370300201b200541106a290300370300201a200541186a290300370300200120052903003703e8022005201720074105746a201820062f01066a41057410ce051a200a41e0006a221820134105746a220541186a201a290300370300200541106a201b290300370300200541086a2012290300370300200520012903e802370300201820024105746a201041e0006a200c41057410cd051a200b2006200441026a22044102746a41c0036a412c201c6b10ce0521050240200720062f0106220b4f0d002005280200220520073b0104200520063602002004200b460d00201920066a41c8036a210503402005280200220720043b010420072006360200200541046a2105200b200441016a2204470d000b0b200620062f0106417f6a3b0106200a200c200a2f01066a41016a3b01060240200d4102490d00200a20024102746a41c0036a201041c0036a200c41027441046a10cd051a2002201541026a4f0d00200c41016a2105200a20134102746a41c4036a210403402004280200220720023b01042007200a360200200441046a2104200241016a21022005417f6a22050d000b0b20101020024020062f01062204450d00200d21052006210220044105490d010c020b0b200141a0046a41306a2802002202450d0b20012002417f6a3602d004200120012802cc0422022802c00322043602cc0420044100360200200210200b200f42ff0183420285500d0d200fa7220241ff01714102460d0d200e2023370308200e20023a0020200e2008370300200e41106a2025370300200e41186a2014370300200e41276a200f4238883c0000200e41256a200f4228883d0000200e200f4208883e0021201e41016a211e200e41286a210e202121022021203e470d0e0c100b41c8a6c000412d41a888c6001028000b41c8a6c000412d41a888c6001028000b41e988c700412b4180a8c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b41a8a5c000412741a888c6001028000b41e988c700412b4198a7c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b4190a8c000413641a888c6001028000b41a7a6c000412141a888c6001028000b2004450d012004417f6a2104200620054102746a41c0036a21020c000b0b0b41e988c700412b41f0eec1001028000b20024108102d000b02402022450d00202010200b203d210a0c030b202020114103746a2008370300200221110c000b0b41084108102d000b41002105024002400240200a201e41286c6a2202203d460d002002203d6b210741082116410021044100211d410021050340200141a0046a41106a2202200229030022082008203d20046a220241106a290300220f200241086a290300221420012903a804220956200f200856200f2008511b22061b220f7d20092009201420061b220854ad7d22143703002001200920087d22093703a8042002290300212502402005201d470d00201d41016a2202201d490d1d201d41017422062002200620024b1b2202ad42287e2223422088a70d1d2023a722064100480d1d02400240201d0d002006101e21160c010b2016201d41286c2006102221160b2016450d032002211d0b201620046a22022025370300200241206a2014370300200241186a2009370300200241106a200f370300200241086a2008370300200541016a21052007200441286a2204470d000b0b02402011450d00200a10200b203c410171210620012d00c8042204410271450d01410021044200210f0c020b20064108102d000b024002400240024020012802d40422070d0041012104200141013a00c8040c010b20040d004100210420012802c40421020c010b20012802c4042202450d0120012002417f6a22023602c4040b2002450d004200210f0c010b200141a0046a41106a290300212520012903a8042114024020044103460d0020012802cc0420012802d00420071098020b203920012903e8043703002037200129008006370000203b200141e8046a41186a290300370300203a200141e8046a41106a290300370300203941086a200141e8046a41086a290300370300203741076a20014180066a41076a290000370000200141033a00c8044201210f410121040b02402004200672450d0020012903e00421084110101e2202450d03200241086a4100290090ab4137000020024100290088ab4137000020024110412010222204450d042004200837001020334200370300200141f0006a41106a22024200370300202a42003703002001420037037020044118200141f0006a1001200141e8046a41186a2033290300370300200141e8046a41106a2002290300370300200141e8046a41086a202a290300370300200120012903703703e8042004102020014188056a200141e8046a109a020240024020012903c00522094202520d00200120083703a0012033420037030020024200370300202a4200370300200142003703704198abc1004118200141f0006a1001200141e0056a41186a22062033290300370300200141e0056a41106a220720022903003703002030202a290300370300200120012903703703e005200141003602e802200141e0056a4120200141e8026a100321040240024020012802e802220a417f460d002004450d00200a41074b0d0141ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420021092033420037030020024200370300202a4200370300200142003703704198abc1004118200141f0006a100120062033290300370300200720022903003703002030202a290300370300200120012903703703e005200120083703e802200141e0056a4120200141e8026a41081005420021080c020b2004290000214320041020200141e0056a2043109602200141e8026a200141e0056a109a0220012903a0034202510d07200141b0016a200141e8026a41d80010cd051a20014180066a41306a2204200141b0016a41306a29030037030020014180066a41286a220a200141b0016a41286a29030037030020014180066a41206a220b200141b0016a41206a29030037030020014180066a41186a220c202829030037030020014180066a41106a2210202629030037030020014180066a41086a22132029290300370300200120012903b001370380062033203441186a2903003703002002203441106a2903002208370300202a203441086a29030037030020012034290300370370202c2004290300370300200141e8026a41286a200a290300370300200141e8026a41206a200b290300370300201a200c290300370300201b20102903003703002012201329030037030020012033410020084201511b3602a40320012001290380063703e8022001200141a0016a3602a003200141003602b801200142013703b001202c280200210a4104101e2204450d082004200a36000020014284808080c0003702b401200120043602b0010240024020012d0088034103470d00200141003a00b80620044104410810222204450d0b200420012d00b8063a0004200120043602b00120014288808080d0003702b4010c010b200141013a00b80620044104410810222204450d0b200420012d00b8063a0004200120043602b00120014288808080d0003702b401200141e8026a200141b0016a109b020b2032200141b0016a107e20012802b40121042003412020012802b001220a20012802b801100502402004450d00200a10200b024020012d0088034103460d00200128028c032001280290032001280294031098020b20012903a00121082033420037030020024200370300202a4200370300200142003703704198abc1004118200141f0006a100120062033290300370300200720022903003703002030202a290300370300200120012903703703e005200120083703e802200141e0056a4120200141e8026a4108100542012108420021090c010b20012903d805214320012903d005210820012903c805214420012d00a8054103460d0020012802ac0520012802b00520012802b4051098020b20012043370388032001200837038003200120443703f802200120093703f002200120393602e802200141003602b801200142013703b001200141a0046a41386a28020021044104101e2202450d092002200436000020014284808080c0003702b401200120023602b00102400240200141a0046a41286a2d00004103470d00200141003a00b80620024104410810222202450d0c200220012d00b8063a0004200120023602b00120014288808080d0003702b4010c010b200141013a00b80620024104410810222202450d0c200220012d00b8063a0004200120023602b00120014288808080d0003702b4012039200141b0016a109b020b2012200141b0016a10940120012802b4012102200141e8046a412020012802b001220420012802b80110052002450d00200410200b02402005450d00200541286c2104201641086a21020340200241086a290300210820022903002109200142eadee59bc7aed8b5e5003703b001200141e8026a200141b0016a10ae02200141b0016a200141e8026a20092008411f10930220012802b0014101460d0d20012903b8012108200120262903003703f002200120083703e802200241286a21022001200141e8026a3602b001200141b0016a109402200441586a22040d000b0b0240201d450d00201610200b0240200f4200510d00200142eadee59bc7aed8b5e5003703b001200141e8026a200141b0016a10ae02200141b0016a200141e8026a20142025411f10930220012802b0014101460d0d200141386a200141e0046a20012903b801202629030010af022001200141386a41086a2903003703f002200120012903383703e8022001200141e8026a3602b001200141b0016a1094020b024020012d00c8044103460d0020012802cc0420012802d00420012802d4041098020b201fa7450d0120014180066a2027109602200141e8026a20014180066a109a0220012903a0034202510d0d2028201a2903003703002026201b29030037030020292012290300370300202a203541086a290000370300202b2035410f6a290000370000200120012903e8023703b0012001203529000037037020012903b003211f20012903b803210920012d0088032102202d2029290300370300202e2026290300370300202f20282903003703002030202a2903003703002031202b290000370000200120012903b00137038805200120012903703703e005202721082009212720024104470d000b0b200341186a22024200370000200341106a22044200370000200341086a220542003700002003420037000041dccac000411720031001200141f0006a41186a2002290000370300200141f0006a41106a2004290000370300200141f0006a41086a200529000037030020012003290000370370200141003602e802200141f0006a4120200141e8026a10032102024020012802e8022204417f460d002002450d00200441074d0d122002290000210920021020200141e0056a200910e401200141e8026a200141e0056a10a90320012903b8034202510d0d20014188056a41086a2206200141e8026a41206a29030037030020014188056a41106a2207200141e8026a41286a29030037030020014188056a41186a220a200141e8026a41306a29030037030020014188056a41206a220b200141a0036a29030037030020014188056a41286a220c200141a8036a29030037030020014188056a41306a2210200141b0036a290300370300200120012903800337038805200141e8026a41086a22052903002114200141c8036a2903002123200141d0036a290300210f20012903e802212520012903f8022108200141a0046a41086a22132006290300370300200141a0046a41106a220d2007290300370300200141a0046a41186a220e200a290300370300200141a0046a41206a2211200b290300370300200141a0046a41286a2212200c290300370300200141a0046a41306a221a201029030037030020012001290388053703a00420084204510d00200141e8026a41186a2104200141b0016a41206a2102200141b8036a211c200141b0016a41086a21150340200220012903a004370300200141b0016a41106a221b2014370300200241306a201a290300370300200241286a2012290300370300200241206a2011290300370300200241186a200e290300370300200241106a200d290300370300200241086a2013290300370300200120253703b801200120093703b001200120083703c80120012009370370024020084203510d0020012802e8012000470d00200141b0016a41286a290300212420012903d001210920012802e00121180240024002402008a70e03020100020b4200201420247d2025200954ad7d2208202520097d2209202556200820145620082014511b22171b21244200200920171b21090c010b202420147c200920257c2208200954ad7c2124200821090b201b2024370300200120093703b8012001201820006a3602e801410f101e221b450d10201b41002900cdca40370000201b41076a41002900d4ca4037000020012903702108201b410f411e1022221b450d11201b200837000f200341186a22184200370000200341106a22174200370000200341086a221d420037000020034200370000201b41172003100120014180066a41186a201829000037030020014180066a41106a201729000037030020014180066a41086a201d2900003703002001200329000037038006201b1020200141e8026a20014180066a10a9030240024020012903b8034202520d0020014188056a200141f0006a10aa030c010b200a201c41186a2903003703002007201c41106a2903003703002006201c41086a2903003703002001201c290300370388050b2005200129038805370300200541086a2006290300370300200541106a2007290300370300200541186a200a290300370300200120153602e802200141203602a404200120014180066a3602a004200141e8026a200141a0046a10ab030b2023a7450d01200141e0056a200f10e401200141e8026a200141e0056a10a90320012903b8034202510d112006200441086a2903003703002007200441106a290300370300200a200441186a290300370300200b200441206a290300370300200c200441286a2903003703002010200441306a29030037030020012004290300370388052005290300211420012903e802212520012903c803212320012903d003212420012903f802210820132006290300370300200d2007290300370300200e200a2903003703002011200b2903003703002012200c290300370300201a201029030037030020012001290388053703a004200f21092024210f20084204520d000b0b200341186a22024200370000200341106a22044200370000200341086a220542003700002003420037000041e1f0c100412b20031001200141f0006a41186a2002290000370300200141f0006a41106a2004290000370300200141f0006a41086a200529000037030020012003290000370370200141003602e802200141f0006a4120200141e8026a1003210220012802e8022204417f460d132002450d1320044108490d102002290000210820021020410021020c140b41104101102d000b41204101102d000b41b8e7c50041920141cce8c5001045000b41044101102d000b41084101102d000b41084101102d000b41044101102d000b41084101102d000b41084101102d000b200120012902b4013703880541adbac100412220014188056a41e8aac10041d0bac100102e000b200120012902b4013703880541adbac100412220014188056a41e8aac10041d0bac100102e000b418ddbc50041dd0041ecdbc5001045000b418ddbc50041dd0041ecdbc5001045000b410f4101102d000b411e4101102d000b418ddbc50041dd0041ecdbc5001045000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b418ddbc50041dd0041ecdbc5001045000b410121020b02400240024020020d00200141e0056a200810ac03200141e8026a200141e0056a10ad0320012903d8034202510d0220014188056a41386a2226200141e8026a41386a222b29030037030020014188056a41306a2221200141e8026a41306a222e29030037030020014188056a41286a221e200141e8026a41286a222f29030037030020014188056a41206a223d200141e8026a41206a223e29030037030020014188056a41186a2210200141e8026a41186a221829030037030020014188056a41106a2213200141e8026a41106a222929030037030020014188056a41086a220d200141e8026a41086a220c29030037030020014180066a41086a2215200141e8026a41cc006a29020037030020014180066a41106a2219200141bc036a29020037030020014180066a41186a2217200141c4036a29020037030020014180066a41206a2236200141cc036a29020037030020014180066a41286a2238200141d4036a280200360200200120012903e80237038805200120012902ac033703800620012802a8032104200141a0046a41086a2216200d290300370300200141a0046a41106a22222013290300370300200141a0046a41186a22202010290300370300200141a0046a41206a2239203d290300370300200141a0046a41286a223c201e290300370300200141a0046a41306a222a2021290300370300200141a0046a41386a2237202629030037030020012001290388053703a004200141f0036a2903002109200141e8036a290300213f200141f0006a41286a22352038280200360200200141f0006a41206a22332036290300370300200141f0006a41186a220e2017290300370300200141f0006a41106a22112019290300370300200141f0006a41086a22122015290300370300200120012903800637037020044102460d00200141e8026a41d0006a213a200141ac036a210b200141d8036a213120014188026a213b200141b0016a41cc006a2107200141b0016a41086a2102200141f8016a212d200141b0016a41c0006a21300340200220012903a004370300200241086a2016290300370300200241106a2022290300370300200241186a2020290300370300200241206a2039290300370300200241286a203c290300370300200241306a202a290300370300200241386a2037290300370300200120083703b001200120043602f801200741286a2035280200360200200741206a2033290300370200200741186a200e290300370200200741106a2011290300370200200741086a201229030037020020072001290370370200024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240411a101e2204450d00200441186a41002f00d2ef41221d3b0000200441106a41002900caef412225370000200441086a41002900c2ef412223370000200441002900baef41222437000020012903b801210f2004411a41341022220a450d01200a200f37001a200341186a22044200370000200341106a22054200370000200341086a2206420037000020034200370000200a412220031001200141e8046a41186a221a2004290000370300200141e8046a41106a221b2005290000370300200141e8046a41086a221c2006290000370300200120032900003703e804200a1020200141e8046a412041e4fdc600410041001002417f460d0420012903b801210f411a101e220a450d02200a41186a201d3b0000200a41106a2025370000200a41086a2023370000200a2024370000200a411a41341022220a450d03200a200f37001a20044200370000200542003700002006420037000020034200370000200a412220031001201a2004290000370300201b2005290000370300201c2006290000370300200120032900003703e804200a1020200141003602e802200141e8046a4120200141e8026a1003210a02400240024020012802e8022228417f460d00200a450d00024020284110490d0020284170714110470d020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420021274200211f4200210f420021140c010b200a41086a2900002114200a290000210f200a41186a290000211f200a2900102127200a10200b20012802f8014101470d1a20012802fc012000470d1a200141b0016a41206a2228290300214420012903c8012143200120012903c00122413703a0012043204484500d14410f101e220a450d05200a41076a41002900d4ca402245370000200a41002900cdca402246370000200a410f411e1022220a450d06200a204137000f20044200370000200542003700002006420037000020034200370000200a411720031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200a1020200141f0006a412041e4fdc600410041001002417f460d0c410f101e220a450d07200a2046370000200a41076a204537000020012903a0012141200a410f411e1022220a450d08200a204137000f20044200370000200542003700002006420037000020034200370000200a411720031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200a1020200141003602e802200141f0006a4120200141e8026a1003210a20012802e8022234417f460d0a200a450d0a200120343602a4042001200a3602a004200141e8026a200141a0046a10ae0320012903f80222474204510d09200d201841086a2903003703002013201841106a2903003703002010201841186a2903003703002001201829030037038805200c2903002141200141e8026a41c0006a290300214820012903e802214920012903a003214a20012903b003214b2034450d0b200a10200c0b0b411a4101102d000b41344101102d000b411a4101102d000b41344101102d000b41ecfbc10041c20041a888c6001028000b410f4101102d000b411e4101102d000b410f4101102d000b411e4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420421470b2018201029030037030020292013290300370300200c200d29030037030020012001290388053703e8020240024020474204520d004200214b420321474200214a4200214842002149420021410c010b20172018290300370300201920292903003703002015200c290300370300200120012903e802370380060b20492043542234204120445420412044511b0d0020202017290300370300202220192903003703002016201529030037030020012001290380063703a004410f101e220a450d01200a2046370000200a41076a204537000020012903a001214c200a410f411e1022220a450d02204120447d2034ad7d2141204820447c204a20437c2245204a54ad7c2146204920437d2149200a204c37000f20044200370000200542003700002006420037000020034200370000200a411720031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200a1020200141e8026a200141f0006a10a9030240024020012903b8034202520d0020014188056a200141a0016a10aa030c010b2010203a41186a2903003703002013203a41106a290300370300200d203a41086a2903003703002001203a290300370388050b200141e8026a41c0006a2046370300201820012903a004370300203a200129038805370300201841086a2016290300370300201841106a2022290300370300201841186a2020290300370300203a41086a200d290300370300203a41106a2013290300370300203a41186a2010290300370300200120413703f002200120493703e802200120453703a003200120473703f8022001204b3703b003200141003602f004200142013703e8044110101e220a450d032001200a3602e804200a20012802f004222c6a2234204137000820342049370000200141103602ec042001202c41106a22343602f004024020474203520d0041002132200141003a00e0050240202c0d00200a411041201022220a450d06200141203602ec042001200a3602e80420012d00e005213220012802f00421340b2001203441016a3602f004200a20346a20323a00000c080b41012132200141013a00e0050240202c0d00200a411041201022220a450d06200141203602ec042001200a3602e80420012d00e005213220012802f00421340b2001203441016a3602f004200a20346a20323a0000200128029003212c024020012802ec04223420012802f004220a6b4104490d0020012802e80421340c070b200a41046a2232200a490d132034410174220a2032200a20324b1b220a4100480d130240024020340d00200a101e21340c010b20012802e8042034200a102221340b02402034450d002001200a3602ec04200120343602e80420012802f004210a0c070b200a4101102d000b2028290300214320302903002141200120012903e801224720012903c80122447c22453703e8012030204120437c2045204754ad7c3703002043201f7c204420277c2227204454ad7c211f0c080b410f4101102d000b411e4101102d000b41104101102d000b41204101102d000b41204101102d000b2001200a41046a3602f0042034200a6a202c3600000240024002400240024002402047a7220a41024b0d00024002400240200a0e03000102000b200141003a00b806024020012802ec0420012802f004220a460d004100212c20012802e80421340c060b200a41016a2234200a490d14200a410174222c2034202c20344b1b222c4100480d1402400240200a0d00202c101e21340c010b20012802e804200a202c102221340b02402034450d002001202c3602ec04200120343602e80420012d00b806212c20012802f004210a0c060b202c4101102d000b200141013a00b806024020012802ec0420012802f004220a460d004101212c20012802e80421340c040b200a41016a2234200a490d13200a410174222c2034202c20344b1b222c4100480d1302400240200a0d00202c101e21340c010b20012802e804200a202c102221340b02402034450d002001202c3602ec04200120343602e80420012d00b806212c20012802f004210a0c040b202c4101102d000b200141023a00b806024020012802ec0420012802f004220a460d004102212c20012802e80421340c020b200a41016a2234200a490d12200a410174222c2034202c20344b1b222c4100480d1202400240200a0d00202c101e21340c010b20012802e804200a202c102221340b02402034450d002001202c3602ec04200120343602e80420012d00b806212c20012802f004210a0c020b202c4101102d000b20012802ec04213420012802f004210a0c040b2001200a41016a3602f0042034200a6a202c3a000020012903800321412001203e2903003703e805200120413703e005200141e0056a212c0c020b2001200a41016a3602f0042034200a6a202c3a000020012903800321412001203e2903003703e805200120413703e005200141e0056a212c0c010b2001200a41016a3602f0042034200a6a202c3a000020012903800321412001203e2903003703e805200120413703e005200141e0056a212c0b0240024020012802ec04223420012802f004220a6b4110490d0020012802e80421320c010b200a41106a2232200a490d0e2034410174220a2032200a20324b1b224d4100480d0e0240024020340d00204d101e21320c010b20012802e8042034204d102221320b02402032450d002001204d3602ec04200120323602e80420012802f004210a204d21340c010b204d4101102d000b2032200a6a223241086a202c41086a2900003700002001200a41106a220a3602f0042032202c2900003700000b200128029803212c024002402034200a6b4104490d0020012802e80421340c010b200a41046a2232200a490d0d2034410174220a2032200a20324b1b220a4100480d0d0240024020340d00200a101e21340c010b20012802e8042034200a102221340b02402034450d002001200a3602ec04200120343602e80420012802f004210a0c010b200a4101102d000b2001200a41046a3602f0042034200a6a202c3600000b024002400240024020012802ec04223420012802f004220a6b4104490d0020012802e80421340c010b200a41046a222c200a490d0e2034410174220a202c200a202c4b1b220a4100480d0e0240024020340d00200a101e21340c010b20012802e8042034200a102221340b2034450d012001200a3602ec04200120343602e80420012802f004210a0b2001200a41046a3602f0042034200a6a204ba7360000024020012802ec04223420012802f004220a6b4110490d0020012802e80421340c020b200a41106a222c200a490d042034410174220a202c200a202c4b1b220a4100480d040240024020340d00200a101e21340c010b20012802e8042034200a102221340b02402034450d002001200a3602ec04200120343602e80420012802f004210a0c020b200a4101102d000b200a4101102d000b2034200a6a22342046370008203420453700002001200a41106a3602f004203a200141e8046a10940120012802ec04210a200141f0006a412020012802e804223420012802f00410050240200a450d00203410200b200141286a203b2043204410f3022001200141286a41086a2903003703f002200120012903283703e8022001200141e8026a3602880520014188056a10f4020b200141b0016a41306a220a2903002141200120012903d801224720437c22453703d801200a204120447c2045204754ad7c370300204420147c2043200f7c220f204354ad7c21140b024002402001280280024101460d00200141003602f8010c010b200141013602f801200120012802840220006a3602fc010b20012903b801214302400240024002400240024002400240024002400240411a101e220a450d00200a41186a201d3b0000200a41106a2025370000200a41086a2023370000200a2024370000200a411a41341022220a450d01200a204337001a20044200370000200542003700002006420037000020034200370000200a412220031001201a2004290000370300201b2005290000370300201c2006290000370300200120032900003703e804200a102020014188056a200141e8046a10af030240024020012903a80522254202520d00200120433703a0012004420037000020054200370000200642003700002003420037000041d4efc100412220031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200141003602e802200141f0006a4120200141e8026a1003210a0240024020012802e802221d417f460d00200a450d00201d41074b0d0141ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420021232004420037000020054200370000200642003700002003420037000041d4efc100412220031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200120433703e802200141f0006a4120200141e8026a41081005420021250c020b200a2900002140200a1020200141e0056a204010b003200141e8026a200141e0056a10af032001290388034202510d042016203e41086a29030022413703002022203e41106a29030022253703002020203e41186a29030022473703002001203e29030022453703a004200c29030021232018290300212420012903e802214320012903f8022144201720473703002019202537030020152041370300200120453703800620182024370300200120443703f802200120233703f002200120433703e80220012017410020254201511b36028c032001200141a0016a36028803200141003602a804200142013703a0044110101e220a450d05200a2043370000200a20233700082001429080808080023702a4042001200a3602a004200a411041201022220a450d06200a2044370010200a41186a2024370000200142a080808080043702a4042001200a3602a004203e200141a0046a107e20012802a404210a200141e0056a412020012802a004221d20012802a80410050240200a450d00201d10200b20012903a00121252004420037000020054200370000200642003700002003420037000041d4efc100412220031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200120253703e802200141f0006a4120200141e8026a4108100542012123420021250c010b20012903c005214020012903b805212320012903b00521420b2018201f370300200120273703f802200120143703f0022001200f3703e802200120403703a003200120233703980320012042370390032001202537038803200141003602900520014201370388054110101e220a450d05200a200f370000200a201437000820014290808080800237028c052001200a36028805200a411041201022220a450d06200a2027370010200a41186a201f370000200142a0808080800437028c052001200a36028805203e20014188056a109401200128028c05210a200141e8046a4120200128028805221d20012802900510050240200a450d00201d10200b4123101e220a450d07200a411f6a41002800ddf041360000200a41186a41002900d6f041370000200a41106a41002900cef041370000200a41086a41002900c6f041370000200a41002900bef041370000200a412341c6001022220a450d08200a200837002320044200370000200542003700002006420037000020034200370000200a412b20031001201a2004290000370300201b2005290000370300201c2006290000370300200120032900003703e804200a1020200141e8026a200141e8046a10ad030240024020012903d8034202520d0020014188056a200810b1030c010b2010203141186a2903003703002013203141106a290300370300200d203141086a29030037030020012031290300370388050b200c200129038805370300200c41086a200d290300370300200c41106a2013290300370300200c41186a2010290300370300200120023602e802200141003602a804200142013703a00420012903b80121084108101e2204450d09200141083602a404200120012802a804220541086a3602a804200120043602a004200420056a2008370000200141b0016a41106a2903002108024020012802a404220520012802a80422046b4108490d0020012802a00421050c0b0b200441086a22062004490d0b200541017422042006200420064b1b22044100480d0b0240024020050d002004101e21050c010b20012802a00420052004102221050b02402005450d00200120043602a404200120053602a00420012802a80421040c0b0b20044101102d000b411a4101102d000b41344101102d000b41b8e7c50041920141cce8c5001045000b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41234101102d000b41c6004101102d000b41084101102d000b2001200441086a3602a804200520046a2008370000203b200141a0046a10ca0120282903002108200141b0016a41186a290300210f0240024020012802a404220420012802a80422066b4110490d0020012802a00421050c010b200641106a22052006490d01200441017422062005200620054b1b220a4100480d010240024020040d00200a101e21050c010b20012802a0042004200a102221050b02402005450d002001200a3602a404200120053602a00420012802a8042106200a21040c010b200a4101102d000b200520066a220a2008370008200a200f3700002001200641106a22063602a80402400240202d2802004101460d004100210a200141003a00b8060240024020042006470d00200441016a22062004490d042004410174220a2006200a20064b1b22064100480d040240024020040d002006101e21050c010b200520042006102221050b2005450d01200120063602a404200120053602a00420012d00b806210a20012802a80421060b2001200641016a3602a804200520066a200a3a00000c020b20064101102d000b4101210a200141013a00b806024002400240024020042006470d00200441016a22062004490d052004410174220a2006200a20064b1b22064100480d050240024020040d002006101e21050c010b200520042006102221050b2005450d01200120063602a404200120053602a00420012d00b806210a20012802a80421060b2001200641016a3602a804200520066a200a3a000020012802fc01210620012802a404220520012802a80422046b4104490d0120012802a00421050c020b20064101102d000b200441046a220a2004490d0220054101742204200a2004200a4b1b22044100480d020240024020050d002004101e21050c010b20012802a00420052004102221050b02402005450d00200120043602a404200120053602a00420012802a80421040c010b20044101102d000b2001200441046a3602a804200520046a20063600000b024002400240200141b0016a41d0006a2802004101460d00200141003a00b806024020012802a40420012802a8042204460d004100210620012802a00421050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b20012802a00420042006102221050b02402005450d00200120063602a404200120053602a00420012d00b806210620012802a80421040c020b20064101102d000b200141013a00b8060240024020012802a40420012802a8042204460d004101210620012802a00421050c010b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b20012802a00420042006102221050b02402005450d00200120063602a404200120053602a00420012d00b806210620012802a80421040c010b20064101102d000b2001200441016a3602a804200520046a20063a000020012802840221060240024020012802a404220520012802a80422046b4104490d0020012802a00421050c010b200441046a220a2004490d0320054101742204200a2004200a4b1b22044100480d030240024020050d002004101e21050c010b20012802a00420052004102221050b02402005450d00200120043602a404200120053602a00420012802a80421040c010b20044101102d000b2001200441046a3602a804200520046a20063600000c010b2001200441016a3602a804200520046a20063a00000b200141b0016a41306a2903002108200141b0016a41286a290300210f0240024020012802a404220620012802a80422056b4110490d0020012802a00421040c010b200541106a22042005490d01200641017422052004200520044b1b220a4100480d010240024020060d00200a101e21040c010b20012802a0042006200a102221040b02402004450d002001200a3602a404200120043602a00420012802a8042105200a21060c010b200a4101102d000b200420056a220a2008370008200a200f3700002001200541106a22053602a80420302903002108200141b0016a41386a290300210f200620056b410f4b0d02200541106a220a2005490d0020064101742205200a2005200a4b1b220541004e0d010b1027000b0240024020060d002005101e21040c010b200420062005102221040b2004450d01200120053602a404200120043602a00420012802a80421050b200420056a220420083700082004200f3700002001200541106a3602a804200c200141a0046a10940120012802a4042104200141e8046a412020012802a004220520012802a80410052004450d01200510200c010b20054101102d000b203fa7450d01200141e0056a200910ac03200141e8026a200141e0056a10ad0320012903d8034202510d022026202b2903003703002021202e290300370300201e202f290300370300203d203e2903003703002010201829030037030020132029290300370300200d200c2903003703002015200b41086a2902003703002019200b41106a2902003703002017200b41186a2902003703002036200b41206a2902003703002038200b41286a280200360200200120012903e802370388052001200b2902003703800620012802a80321042016200d29030037030020222013290300370300202020102903003703002039203d290300370300203c201e290300370300202a20212903003703002037202629030037030020012001290388053703a00420012903f003210f20012903e803213f2035203828020036020020332036290300370300200e20172903003703002011201929030037030020122015290300370300200120012903800637037020092108200f210920044102470d000b0b200141186a10b2032001290318210820012903202109200120003602900620012009370388062001200837038006200141e8026a20014180066a10b3030240200141c4036a220d28020022024102460d00200141d8036a2113200141e8026a41286a210c200141b0016a41286a2110200141e8026a41086a2103034020012903e8022108200141b0016a200341d00010cd051a200128028404210a200128028004210b0240024020020d0020012802c803200128029006470d0120012902f403210920012802fc032102200128028804210420012802c003210520014188056a200141b0016a41d00010cd051a200141e8026a20014188056a41d00010cd051a200141b0016a41206a20014188056a41206a290300370300200141b0016a41186a20014188056a41186a290300370300200141b0016a41106a20014188056a41106a290300370300200141b0016a41086a20014188056a41086a2903003703002010200c290300370300201041086a200c41086a290300370300201041106a200c41106a290300370300201041186a200c41186a290300370300201041206a200c41206a29030037030020012001290388053703b001200141e8026a200141b0016a41d00010cd051a20134200370300201341086a4200370300201341106a4100360200200141908cc5003602d403200120003602c403200141003a00c003200141013602bc03200120053602b80320012004360280042001200a3602fc032001200b3602f803200120023602f403200120093702ec032008200141e8026a10b403200141e8026a20014180066a10b30320012802c40322024102470d020c030b20012802dc03210220012802e4032104024020012802e0032205450d000340200228026021022005417f6a22050d000b0b02402004450d0041002105410021064100210703402001200536027c200120063602782001200236027420012007360270200141a0046a200141f0006a106120012802a804210720012802ac04210220012802b004210620012802b40421052004417f6a22040d000b0b200241908cc500460d0020022802002105200210202005450d0020052802002104200510202004450d00024020042802002202450d000340200410202002210420022802002205210220050d000b0b200410200b0240200a450d00200b10200b200141e8026a20014180066a10b30320012802c40322024102470d000b0b200141086a10b2032001290308210820012903102109200120003602b004200120093703a804200120083703a004200141e8026a200141a0046a10b3030240200d2802004102460d002001419c026a2138200141e8026a41086a2111200141b0016a41306a213e034020012903e8022108200141b0016a201141a00110cd051a024002402001280284024101460d004102210a0c010b4102210a0240024002400240024020012d0088024101470d0020012802b00420012802900220012802b40222026a470d0020012802800221190240024020012802a402450d0020012038360290052001200128029c0236028c05200120012802a0023602880520014180066a20014188056a10ea0220012802b40221260c010b2001420037028406200141908cc50036028006200221260b20012802b80221024102211320012802bc02211e20012802b002212020012802ac02212220012802a802211641022103024020012802c00122044102460d0020012d00d001410146211b20012802c801410146210c20044101462103200141b0016a41086a290300212520012903b001211420012802cc01211020012802c401211a0b024020012802e80122044102460d0020012d00f801410146211820012802f001410146210d20044101462113203e290300212420012903d801212320012802f401210e20012802ec01211c0b20012802c802220b417f4c0d0120012802c002210402400240200b0d00410121120c010b200b101e2212450d030b20122004200b10cd051a2001280288062115200128028406211d20012802800621170240024020012802a402450d0020012038360290052001200128029c0236028c05200120012802a0023602880520014180066a20014188056a10ea020c010b2001420037028406200141908cc500360280060b20024101462121200141f0006a41086a20014180066a41086a28020036020020012001290380063703702001280290022136200128028c02213d4101210a20082127200128028402450d050b20012802a4022104200128029c022102024020012802a0022205450d000340200228026021022005417f6a22050d000b0b02402004450d0041002105410021064100210703402001200536028c0620012006360288062001200236028406200120073602800620014188056a20014180066a1061200128029005210720012802940521022001280298052106200128029c0521052004417f6a22040d000b0b200241908cc500460d0420022802002105200210202005450d0420052802002104200510202004450d04200428020022020d020c030b102c000b200b4101102d000b0340200410202002210420022802002205210220050d000b0b200410200b024020012802c402450d0020012802c00210200b0240200a4102470d00200141e8026a200141a0046a10b30320012802c4034102470d010c020b200141e0056a41086a200141f0006a41086a28020022023602002001200129037022083703e00520014180066a41086a20023602002001200837038006200d4101462013410247712107200c410146200341024771210a2018ad2109201bad210f2008a721020240024020012802840622050d00200221040c010b20022104200521060340200428026021042006417f6a22060d000b0340200220022f01064102746a41e0006a28020021022005417f6a22050d000b0b200942ff01832108200f42ff0183210920022f010621052001280288062106200142003702b401200141908cc5003602b00120012006360288032001200536028403200120023602fc02200142003702f402200120043602ec02200141003602e802200120014180066a36028003200120014180066a3602f002200141e8026a200141b0016a10b50320014188056a41086a20012802b801360200200120012903b001220f37038805200141053a00e8042001200e3602b401200120073602b001200120103602742001200a360270200fa7210202400240200128028c0522050d00200221040c010b2002210420052106034020042802f80621042006417f6a22060d000b0340200220022f01064102746a41f8066a28020021022005417f6a22050d000b0b200120012802900536028803200142003702f402200120043602ec02200141003602e802200120023602fc02200120022f010636028403200120014188056a36028003200120014188056a3602f0022001200141e8046a360294032001200141b0016a360290032001200141f0006a36028c03200141e8026a10b603200141e8026a41306a20243703002001202337039003200120253703f002200120143703e8022001200b360280042001200b3602fc03200120123602f8032001201e3602f403200120213602f003200120263602ec03200120203602e803200120223602e403200120163602e003200120153602dc032001201d3602d803200120173602d403200120363602d003200141013602cc032001203d3602c803200120003602c40320014182063b01c003200141013602bc03200120193602b803200120083703b0032001200e3602ac032001200d3602a8032001201c3602a403200120133602a003200120093703880320012010360284032001200c360280032001201a3602fc02200120033602f8022027200141e8026a10b403200128028805200128028c0520012802900510b7032001280288062104200128028006210202402001280284062205450d000340200228026021022005417f6a22050d000b0b02402004450d004100210541002106410021070340200120053602bc01200120063602b801200120023602b401200120073602b001200141e8026a200141b0016a106120012802f002210720012802f402210220012802f802210620012802fc0221052004417f6a22040d000b0b0240200241908cc500460d0020022802002105200210202005450d0020052802002104200510202004450d00024020042802002202450d000340200410202002210420022802002205210220050d000b0b200410200b200141e8026a200141a0046a10b30320012802c4034102470d000b0b200141c0066a24000f0b418ddbc50041dd0041ecdbc5001045000b418ddbc50041dd0041ecdbc5001045000b1027000bce1304057f017e047f047e230041f0016b2201240020014188016a41086a22024200370300200142003703880141b880c700411520014188016a1000200141b0016a41086a2203200229030037030020012001290388013703b001200141b0016a4110100420024200370300200142003703880141cd80c700411a20014188016a10002003200229030037030020012001290388013703b001200141b0016a4110100420024200370300200142003703880141e780c700411720014188016a10002003200229030037030020012001290388013703b001200141b0016a411010042002420037030020014200370388014195fcc000410d20014188016a10002003200229030037030020012001290388013703b001410021032001410036028801200141b0016a411020014188016a10032102024002400240024002402001280288012204417f460d002002450d0020044104490d012002280000210320021020200141b0016a411010040b20014188016a41086a2202420037030020014200370388014184fcc000411120014188016a1000200141b0016a41086a200229030037030020012001290388013703b00120014188016a200141b0016a41101069024002400240024020012d00880122040d00200141e8016a200141a1016a290000370300200141d0016a41106a20014188016a41116a290000370300200141d0016a41086a20014191016a29000037030020012001290089013703d001200141d0016a21020c010b200141b0016a41101004200141d0016a41186a2205200141a1016a290000370300200141d0016a41106a20014188016a41116a290000370300200141d0016a41086a20014191016a29000037030020012001290089013703d001200141d0016a210220044101460d010b200141206a4200370300200141186a4200370300200141106a4200370300200142003703080c010b200141086a41186a2005290300370300200141086a41106a200141d0016a41106a290300370300200141086a41086a200141d0016a41086a290300370300200120012903d001370308200141d0016a21020b4200210620014188016a41086a22044200370300200142003703880141b7fcc000410d20014188016a1000200141b0016a41086a200429030037030020012001290388013703b0012001410036028801200141b0016a411020014188016a10032104024002402001280288012205417f470d00410421070c010b024020040d00410421070c010b200120053602d401200120043602d00120014188016a200141d0016a10fd012001280288012207450d02200129028c01210602402005450d00200410200b200141b0016a411010040b20014188016a41086a22044200370300200142003703880141a2fcc000411520014188016a1000200141b0016a41086a200429030037030020012001290388013703b00120014188016a200141b0016a41101069024002400240024020012d00880122040d002002200129008901370000200241186a200141a1016a290000370000200241106a20014199016a290000370000200241086a20014191016a2900003700000c010b200141b0016a41101004200241186a2205200141a1016a290000370000200241106a20014199016a290000370000200241086a20014191016a290000370000200220012900890137000020044101460d010b200141c0006a4200370300200141386a4200370300200141306a4200370300200142003703280c010b200141286a41186a2005290000370300200141286a41106a200241106a290000370300200141286a41086a200241086a290000370300200120022900003703280b0240200341fb01490d00200341857e6a2204450d004110101e2202450d03200241086a41002900ccfc40370000200241002900c4fc4037000020024110412010222202450d0420022004360010200141b0016a41186a22044200370300200141b0016a41106a22054200370300200141b0016a41086a22084200370300200142003703b00120024114200141b0016a1001200141d0016a41186a2004290300370300200141d0016a41106a2005290300370300200141d0016a41086a2008290300370300200120012903b0013703d00120021020200141d0016a412010040b200141b0016a41186a22024200370300200141b0016a41106a22044200370300200141b0016a41086a22054200370300200142003703b001200141b0016a1013200141c8006a41186a2002290300370300200141c8006a41106a2004290300370300200141c8006a41086a2005290300370300200120012903b00137034820014188016a41186a2208200141086a41186a29030037030020014188016a41106a2209200141086a41106a29030037030020014188016a41086a220a200141086a41086a2903003703002001200129030837038801200242003703002004420037030020054200370300200142003703b00102400240024020014188016a4120200141b0016a1014450d00200141e8006a41086a2005290300220b370300200141e8006a41106a2004290300220c370300200141e8006a41186a2002290300220d370300200120012903b001220e370368200a200b3703002009200c3703002008200d3703002001200e37038801024002402006422088220ba722022006a7460d002006210c0c010b200241016a22042002490d03200ba74101742205200420042005491bad220c42247e220b422088a70d03200ba722044100480d030240024020020d002004101e21070c010b2007200241246c2004102221070b2007450d022006422088220ba721020b2007200241246c6a220241003a00002002200129038801370001200241096a20014190016a290300370000200241116a20014198016a290300370000200241196a200141a0016a290300370000200220012f00d0013b0021200241236a200141d2016a2d00003a0000200b422086200c42ffffffff0f83844280808080107c21060b200020012903083700102000200336020020002001290348370030200041286a200141086a41186a290300370000200041206a200141086a41106a290300370000200041186a200141086a41086a290300370000200041386a200141c8006a41086a290300370000200041c0006a200141c8006a41106a290300370000200041c8006a200141c8006a41186a290300370000200041086a200637020020002007360204200041e8006a200141286a41186a290300370000200041e0006a200141286a41106a290300370000200041d8006a200141286a41086a29030037000020002001290328370050200141f0016a24000f0b20044104102d000b1027000b41ceb8c400413320014188016a41fcbfc4004184b9c400102e000b41ceb8c400413320014188016a41fcbfc4004184b9c400102e000b41104101102d000b41204101102d000baa1701057f230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e050104020300010b20024100360208200242013703004101101e2203450d05200242818080801037020420022003360200200341003a0000200141046a280200210420022001410c6a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c190b200320016a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c190b20034101102d000b200241003602082002420137030002404101101e2203450d00200242818080801037020420022003360200200341023a00002002200236020c200141016a2002410c6a10b9010c190b41014101102d000b20024100360208200242013703004101101e2203450d04200242818080801037020420022003360200200341043a000020012d0001210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0820022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0002210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0920022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0003210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0a20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0004210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0b20022006360204200220053602000b2002200341016a360208200520036a20043a0000200128020821042002200141106a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c160b200320016a22062003490d02200541017422032006200320064b1b22034100480d020240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c160b20034101102d000b20024100360208200242013703004101101e2203450d04200242818080801037020420022003360200200341053a000020012d0001210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0b20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0002210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0c20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0003210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0d20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0004210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0e20022006360204200220053602000b2002200341016a360208200520036a20043a0000200128020821042002200141106a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c140b200320016a22062003490d01200541017422032006200320064b1b22034100480d010240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c140b20034101102d000b20024100360208200242013703004101101e2203450d04200242818080801037020420022003360200200341063a000020012d0001210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d0e20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0002210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d0f20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0003210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d1020022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0004210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d1120022006360204200220053602000b2002200341016a360208200520036a20043a0000200128020821042002200141106a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c120b200320016a22062003490d00200541017422032006200320064b1b22034100480d000240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c120b20034101102d000b1027000b41014101102d000b41014101102d000b41014101102d000b41014101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b2002200320016a360208200520036a2004200110cd051a0c030b2002200320016a360208200520036a2004200110cd051a0c020b2002200320016a360208200520036a2004200110cd051a0c010b2002200320016a360208200520036a2004200110cd051a0b200020022201290200370200200041086a200141086a280200360200200241106a24000ba70201037f412e21024180e8c60021030240024002402001417e6a22044102200441ff01714102491b41ff01710e03020100020b20014180feff0771410876210402402001410171450d00411f210241d4eac600210302400240200441ff01710e03000104000b41c100210241b4ebc60021030c030b41c100210241f3eac60021030c020b411f210241aee8c60021030240024002400240024002400240200441ff01710e080006010203040508000b4120210241b4eac60021030c070b4127210241d4e9c60021030c060b4117210241bde9c60021030c050b419ee9c60021030c040b4126210241f8e8c60021030c030b412b210241cde8c60021030c020b4139210241fbe9c60021030c010b4130210241d0e7c60021030b20002002360204200020033602000bb00201037f23004180016b220224002000280200210002400240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103521000c020b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000ba50301027f23004180026b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b20022001360204200241f8006a200210ad010240200228027c450d00200241086a200241f8006a41f00010cd051a200241086a10a0010240200241086a410c6a2802002200450d00200228020c2101200041246c210003400240024020012d0000220341034b0d0002400240024020030e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b0240200241106a280200450d00200228020c10200b20024180026a240042010f0b200241f4016a41043602002002411c6a41023602002002420237020c200241fcc3c000360208200241043602ec01200241c4c4c0003602e801200241003602fc01200241e4fdc6003602f8012002200241e8016a3602182002200241f8016a3602f001200241086a418cc4c0001033000b9f0a03077f037e057f230041d0026b2202240041002103200241003a00c8022001280204417f6a210402400240024002400240024003402004417f460d01200241a8026a20036a200128020022052d00003a0000200120043602042001200541016a3602002002200341016a22053a00c8022004417f6a21042005210320054120470d000b200241e8006a41086a200241a8026a41086a290300370300200241e8006a41106a200241a8026a41106a290300370300200241e8006a41186a200241a8026a41186a290300370300200220022903a80237036820022001105f20022802000d022002280204210641002104200241003a00c80220012802042107417f2103034020072004460d02200241a8026a20046a200128020022082d00003a00002001200720036a3602042001200841016a3602002002200441016a22053a00c8022003417f6a21032005210420054120470d000b200241a8016a41086a200241a8026a41086a2903002209370300200241a8016a41106a200241a8026a41106a290300220a370300200241a8016a41186a200241a8026a41186a290300220b37030020024188016a41086a200937030020024188016a41106a200a37030020024188016a41186a200b370300200220022903a80222093703a801200220093703880141002104200241003a00c802200720056b210c200720036a21030340200c2004460d04200241a8026a20046a200820046a220541016a2d00003a0000200120033602042001200541026a3602002002200441016a22053a00c8022003417f6a21032005210420054120470d000b200241e8016a41086a200241a8026a41086a2903002209370300200241e8016a41106a200241a8026a41106a290300220a370300200241e8016a41186a200241a8026a41186a290300220b370300200241c8016a41086a22042009370300200241c8016a41106a2203200a370300200241c8016a41186a2205200b370300200220022903a80222093703e801200220093703c801200241a8026a200110fd0120022802a8022201450d04200241c8006a41086a2208200241e8006a41086a290300370300200241c8006a41106a2207200241e8006a41106a290300370300200241c8006a41186a220c200241e8006a41186a290300370300200241286a41086a220d20024188016a41086a290300370300200241286a41106a220e20024188016a41106a290300370300200241286a41186a220f20024188016a41186a29030037030020022002290368370348200220022903880137032820022902ac022109200241086a41186a22102005290300370300200241086a41106a22052003290300370300200241086a41086a22032004290300370300200220022903c801370308200020093702082000200136020420002006360200200041106a2002290348370200200041186a2008290300370200200041206a2007290300370200200041286a200c290300370200200041306a2002290328370200200041386a200d290300370200200041c0006a200e290300370200200041c8006a200f290300370200200041e8006a2010290300370200200041e0006a2005290300370200200041d8006a2003290300370200200041d0006a20022903083702000c050b0240200341ff0171450d00200241003a00c8020b200041003602040c040b0240200441ff0171450d00200241003a00c8020b200041003602040c030b200041003602040c020b0240200441ff0171450d00200241003a00c8020b200041003602040c010b200041003602040b200241d0026a24000bfd2e020b7f017e230041d0006b22022400200241003602282002420137032002400240024002400240024002404104101e2203450d0020024284808080c00037022420022003360220200341edcad18b063600000240200228022420022802282203460d00200228022021040c020b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200228022020032005102221040b02402004450d0020022005360224200220043602200c020b20054101102d000b41044101102d000b2002200341016a360228200420036a41083a00004123200241206a10af0141b4c6c100210603402006280204210720062802082203200241206a10af010240024002400240024002400240024020022802242205200228022822046b2003490d00200228022021050c010b200420036a22082004490d08200541017422042008200420084b1b22044100480d080240024020050d002004101e21050c010b200228022020052004102221050b2005450d012002200436022420022005360220200228022821040b2002200420036a360228200520046a2007200310cd051a20022802242104200228022821030240200628020c4102470d00024020042003460d00200228022021040c060b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228022020032005102221040b02402004450d002002200536022420022004360220200228022821030c060b20054101102d000b0240024020042003460d00200228022021040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228022020032005102221040b2004450d022002200536022420022004360220200228022821030b2002200341016a360228200420036a41013a00000240200628020c4101470d002006280214210720062802182203200241206a10af010240024020022802242205200228022822046b2003490d00200228022021050c010b200420036a22082004490d09200541017422042008200420084b1b22044100480d090240024020050d002004101e21050c010b200228022020052004102221050b2005450d042002200436022420022005360220200228022821040b2002200420036a360228200520046a2007200310cd051a200628022021030240200628021c4101470d0020032006280228200241206a10b0010c070b2003200641246a280200200241206a10b0010c060b200241306a20062802101102002002280234210720022802382203200241206a10af010240024020022802242205200228022822046b2003490d00200228022021050c010b200420036a22082004490d08200541017422042008200420084b1b22044100480d080240024020050d002004101e21050c010b200228022020052004102221050b2005450d042002200436022420022005360220200228022821040b2002200420036a360228200520046a2007200310cd051a200228024021050240200228023c4101460d0020052002280244200241206a10b0010c060b200520022802482203200241206a10b00102402003450d00200341d8006c21074100210403400240200520046a220341346a280200450d002003413c6a280200450d00200341386a28020010200b0240200341c4006a280200450d00200341cc006a280200450d00200341c8006a28020010200b2007200441d8006a2204470d000b0b2002280244450d05200510200c050b20044101102d000b20054101102d000b20044101102d000b20044101102d000b2002200341016a360228200420036a41003a00000b2002280224210420022802282103024002400240200628022c4102470d00024020042003460d00200228022021040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200228022020032005102221040b02402004450d002002200536022420022004360220200228022821030c020b20054101102d000b024002400240024020042003460d00200228022021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022020032005102221040b2004450d012002200536022420022004360220200228022821030b2002200341016a360228200420036a41013a0000200628022c4101470d012006280230210420062802382203200241206a10af012003450d032003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0720074101742205200a2005200a4b1b22054100480d070240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b1012003200241206a10b2012003412c6a2103200841546a22080d000c040b0b20054101102d000b200241186a200628023011020020022802182104200228021c2203200241206a10af012003450d012003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0520074101742205200a2005200a4b1b22054100480d050240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b1012003200241206a10b2012003412c6a2103200841546a22080d000c020b0b2002200341016a360228200420036a41003a00000b2002280224210420022802282103024002400240200628023c4102470d00024020042003460d00200228022021040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200228022020032005102221040b02402004450d002002200536022420022004360220200228022821030c020b20054101102d000b024002400240024020042003460d00200228022021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022020032005102221040b2004450d012002200536022420022004360220200228022821030b2002200341016a360228200420036a41013a0000200628023c4101470d012006280240210420062802482203200241206a10af012003450d032003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0720074101742205200a2005200a4b1b22054100480d070240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b2012003200241206a10b2012003412c6a2103200841546a22080d000c040b0b20054101102d000b200241106a20062802401102002002280210210420022802142203200241206a10af012003450d012003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0520074101742205200a2005200a4b1b22054100480d050240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b2012003200241206a10b2012003412c6a2103200841546a22080d000c020b0b2002200341016a360228200420036a41003a00000b02400240200628024c4101470d002006280250210b20062802582203200241206a10af012003450d01200341386c210c410021070340200b20076a220341046a2802002109200341086a2802002204200241206a10af01024002400240024002400240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0a20084101742205200a2005200a4b1b22054100480d0a0240024020080d002005101e21080c010b200228022020082005102221080b2008450d012002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a200341106a2802002109200341146a2802002204200241206a10af010240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0a20084101742205200a2005200a4b1b22054100480d0a0240024020080d002005101e21080c010b200228022020082005102221080b2008450d022002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a0240200341186a2802004101470d002003411c6a2802002109200341246a2802002204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c050b200520046a220a2005490d0a20084101742205200a2005200a4b1b22054100480d0a0240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c050b20054101102d000b200241306a2003411c6a280200200341206a28020028020c1103002002280230210920022802382204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c030b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c030b20054101102d000b20054101102d000b20054101102d000b2002200520046a360228200820056a2009200410cd051a2002280234450d01200910200c010b2002200520046a360228200820056a2009200410cd051a0b200341286a200241206a10b201200c200741386a2207470d000c020b0b200241086a20062802501102002002280208210b200228020c2203200241206a10af012003450d00200341386c210c410021070340200b20076a220341046a2802002109200341086a2802002204200241206a10af01024002400240024002400240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b2008450d012002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a200341106a2802002109200341146a2802002204200241206a10af010240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b2008450d022002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a0240200341186a2802004101470d002003411c6a2802002109200341246a2802002204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c050b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c050b20054101102d000b200241306a2003411c6a280200200341206a28020028020c1103002002280230210920022802382204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c030b200520046a220a2005490d0820084101742205200a2005200a4b1b22054100480d080240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c030b20054101102d000b20054101102d000b20054101102d000b2002200520046a360228200820056a2009200410cd051a2002280234450d01200910200c010b2002200520046a360228200820056a2009200410cd051a0b200341286a200241206a10b201200c200741386a2207470d000b0b02400240200628025c4101470d002006280260210420062802682203200241206a10af012003450d012003411c6c21082004410c6a21030340200341786a28020021092003417c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0520074101742205200a2005200a4b1b22054100480d050240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a2003200241206a10b2012003411c6a2103200841646a22080d000c020b0b200220062802601102002002280200210420022802042203200241206a10af012003450d002003411c6c21082004410c6a21030340200341786a28020021092003417c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0420074101742205200a2005200a4b1b22054100480d040240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a2003200241206a10b2012003411c6a2103200841646a22080d000b0b200641ec006a220641f8e3c100470d000b2002280228220341046a2204417f4c0d0220022802242109200228022021080240024002400240024002400240024002402004450d002004101e2205450d0c200341c000490d07200341808001490d0520034180808080044f0d010240200441034b0d00200441017422074104200741044b1b22074100480d0a20052004200710222205450d07200721040b20052003410274410272360000410421070c080b4101210402404101101e2205450d00200541033a0000410521070c020b41014101102d000b200541033a00002004417f6a41044f0d01200441017422074105200741054b1b22074100480d070b20052004200710222205450d01200721040b20052003360001410521070c040b20074101102d000b0240200441014b0d0020052004200441017422074102200741024b1b220710222205450d08200721040b41022107200520034102744101723b00000c020b20074101102d000b200520034102743a0000410121070b200420076b20034f0d01200720036a22062007490d002004410174220a2006200a20064b1b22064100480d00200520042006102222050d0120064101102d000b1027000b200520076a2008200310cd051a200720036aad4220862005ad84210d02402009450d00200810200b200241d0006a2400200d0f0b102c000b20044101102d000b20074101102d000b950701037f024002400240024002400240024002400240200041c000490d00200041808001490d012000418080808004490d0202400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d04200241017422042003200420034b1b22044100480d040240024020020d002004101e21030c010b200128020020022004102221030b2003450d0520012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240200141046a2802002203200428020022026b4104490d00200128020021030c090b200241046a22042002490d03200341017422022004200220044b1b22024100480d030240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c090b20024101102d000b0240200141046a280200200141086a2802002202460d00200128020021030c070b200241016a22032002490d02200241017422042003200420034b1b22044100480d020240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c070b20044101102d000b0240200141046a2802002203200141086a28020022026b4102490d00200128020021030c050b200241026a22042002490d01200341017422022004200220044b1b22024100480d010240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c050b20024101102d000b0240200141046a2802002203200141086a28020022026b4104490d00200128020021030c030b200241046a22042002490d00200341017422022004200220044b1b22024100480d000240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c030b20024101102d000b1027000b20044101102d000b200141086a200241046a360200200320026a20004102744102723600000f0b200141086a200241026a360200200320026a20004102744101723b00000f0b200141086a200241016a360200200320026a20004102743a00000f0b200141086a200241046a360200200320026a20003600000bb51d010a7f230041106b220324002001200210af0102402001450d00200141d8006c2104410021050340200020056a220641046a2802002107200641086a2802002208200210af0102400240024002400240024002400240200241046a2209280200220a200241086a2201280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d03200a410174220b200c200b200c4b1b220b4100480d0302400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d012002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a200641d4006a2d0000210a0240200928020020012802002208460d002002280200210b0c020b200841016a220b2008490d0220084101742207200b2007200b4b1b22074100480d020240024020080d002007101e210b0c010b2002280200200820071022210b0b0240200b450d002002200b36020020092007360200200128020021080c020b20074101102d000b200b4101102d000b2001200841016a360200200b20086a200a3a000002402006410c6a2d0000220841024b0d0002400240024002400240024002400240024002400240024002400240024020080e03000102000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d102008410174220a200b200a200b4b1b220a4100480d100240024020080d00200a101e210b0c010b20022802002008200a1022210b0b200b450d032002200b3602002009200a360200200128020021080b2001200841016a360200200b20086a41003a0000200641146a2802002107200641186a2802002208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c0e0b200b20086a220c200b490d0f200a410174220b200c200b200c4b1b220b4100480d0f02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c0e0b200b4101102d000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0f2008410174220a200b200a200b4b1b220a4100480d0f0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b200b450d032002200b3602002009200a360200200128020021080b2001200841016a360200200b20086a41013a00002006410d6a2d0000210a02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0f20084101742207200b2007200b4b1b22074100480d0f0240024020080d002007101e210b0c010b2002280200200820071022210b0b200b450d042002200b36020020092007360200200128020021080b2001200841016a360200200b20086a200a3a0000200641146a2802002107200641186a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0f200a410174220b200c200b200c4b1b220b4100480d0f02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d052002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a200641206a2802002107200641246a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0f200a410174220b200c200b200c4b1b220b4100480d0f02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d062002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a2006410e6a2d0000210a0240200928020020012802002208460d002002280200210b0c0c0b200841016a220b2008490d0e20084101742207200b2007200b4b1b22074100480d0e0240024020080d002007101e210b0c010b2002280200200820071022210b0b0240200b450d002002200b36020020092007360200200128020021080c0c0b20074101102d000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0e2008410174220a200b200a200b4b1b220a4100480d0e0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b200b450d062002200b3602002009200a360200200128020021080b2001200841016a360200200b20086a41023a00002006410d6a2d0000210a02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0e20084101742207200b2007200b4b1b22074100480d0e0240024020080d002007101e210b0c010b2002280200200820071022210b0b200b450d072002200b36020020092007360200200128020021080b2001200841016a360200200b20086a200a3a0000200641146a2802002107200641186a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0e200a410174220b200c200b200c4b1b220b4100480d0e02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d082002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a200641206a2802002107200641246a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0e200a410174220b200c200b200c4b1b220b4100480d0e02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d092002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a2006412c6a2802002107200641306a2802002208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c0a0b200b20086a220c200b490d0d200a410174220b200c200b200c4b1b220b4100480d0d02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c0a0b200b4101102d000b200a4101102d000b200a4101102d000b20074101102d000b200b4101102d000b200b4101102d000b200a4101102d000b20074101102d000b200b4101102d000b200b4101102d000b2001200b20086a360200200a200b6a2007200810cd051a2006410e6a2d0000220841044b0d0202400240024002400240024002400240024020080e050001020304000b0240200928020020012802002208460d002002280200210b0c080b200841016a220b2008490d0b2008410174220a200b200a200b4b1b220a4100480d0b0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c080b200a4101102d000b0240200928020020012802002208460d002002280200210b0c060b200841016a220b2008490d0a2008410174220a200b200a200b4b1b220a4100480d0a0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c060b200a4101102d000b0240200928020020012802002208460d002002280200210b0c040b200841016a220b2008490d092008410174220a200b200a200b4b1b220a4100480d090240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c040b200a4101102d000b0240200928020020012802002208460d002002280200210b0c020b200841016a220b2008490d082008410174220a200b200a200b4b1b220a4100480d080240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c020b200a4101102d000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d082008410174220a200b200a200b4b1b220a4100480d080240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c010b200a4101102d000b2001200841016a360200200b20086a41043a00000c060b2001200841016a360200200b20086a41033a00000c050b2001200841016a360200200b20086a41023a00000c040b2001200841016a360200200b20086a41013a00000c030b2001200841016a360200200b20086a41003a00000c020b2001200841016a360200200b20086a200a3a00000c010b2001200b20086a360200200a200b6a2007200810cd051a0b0240200641346a2802004101470d00200641386a2802002107200641c0006a2802002208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c040b200b20086a220c200b490d01200a410174220b200c200b200c4b1b220b4100480d0102400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c040b200b4101102d000b2003200641386a2802002006413c6a28020028020c1103002003280200210720032802082208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c020b200b20086a220c200b490d00200a410174220b200c200b200c4b1b220b4100480d0002400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c020b200b4101102d000b1027000b2001200b20086a360200200a200b6a2007200810cd051a2003280204450d01200710200c010b2001200b20086a360200200a200b6a2007200810cd051a0b200641c4006a200210b2012004200541d8006a2205470d000b0b200341106a24000b880701087f2000280204210202400240024020002802004101470d002000410c6a2802002200200110af012000450d01200041186c2103200241146a2100200141086a2102200141046a21040340200041706a2802002105200041746a2802002206200110af01024002400240024020042802002207200228020022086b2006490d00200128020021070c010b200820066a22092008490d06200741017422082009200820094b1b22084100480d060240024020070d002008101e21070c010b200128020020072008102221070b2007450d012001200736020020042008360200200228020021080b2002200820066a360200200720086a2005200610cd051a2000417c6a280200210520002802002206200110af01024020042802002207200228020022086b2006490d00200128020021070c020b200820066a22092008490d05200741017422082009200820094b1b22084100480d050240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020042008360200200228020021080c020b20084101102d000b20084101102d000b2002200820066a360200200720086a2005200610cd051a200041186a2100200341686a22030d000c020b0b200041086a2802002200200110af012000450d00200041186c2103200241146a2100200141086a2102200141046a21040340200041706a2802002105200041746a2802002206200110af01024002400240024020042802002207200228020022086b2006490d00200128020021070c010b200820066a22092008490d05200741017422082009200820094b1b22084100480d050240024020070d002008101e21070c010b200128020020072008102221070b2007450d012001200736020020042008360200200228020021080b2002200820066a360200200720086a2005200610cd051a2000417c6a280200210520002802002206200110af01024020042802002207200228020022086b2006490d00200128020021070c020b200820066a22092008490d04200741017422082009200820094b1b22084100480d040240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020042008360200200228020021080c020b20084101102d000b20084101102d000b2002200820066a360200200720086a2005200610cd051a200041186a2100200341686a22030d000b0b0f0b1027000b880401087f2000280204210202400240024020002802004101470d002000410c6a2802002200200110af0120004103742200450d01200220006a2103200141086a2104034020022802002105200241046a2802002200200110af0102400240200141046a22062802002207200428020022086b2000490d00200128020021070c010b200820006a22092008490d04200741017422082009200820094b1b22084100480d040240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020062008360200200428020021080c010b20084101102d000b2004200820006a360200200720086a2005200010cd051a200241086a22022003470d000c020b0b200041086a2802002200200110af0120004103742200450d00200220006a2103200141086a2104034020022802002105200241046a2802002200200110af0102400240200141046a22062802002207200428020022086b2000490d00200128020021070c010b200820006a22092008490d03200741017422082009200820094b1b22084100480d030240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020062008360200200428020021080c010b20084101102d000b2004200820006a360200200720086a2005200010cd051a200241086a22022003470d000b0b0f0b1027000bc30e02037f027e230041c0086b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b20022001360204200241d8056a200210b4010240024002400240024002400240024002400240024020022903c0064203510d00200241186a200241d8056a41d80210cd051a200241f0026a200241186a41d80210cd051a200241c8056a200241f0026a10a20120022802d0052101200241d8056a200241f0026a41d80210cd051a200241b8086a20022802d005360200200220022903c8053703b008200241086a200241d8056a2001200241b0086a10a4014101410220022d000822004101461b2203101e2201450d01200241003602e005200220033602dc05200220013602d805024020004101470d00200241013602e005200141013a000020022d0009417e6a22014102200141ff01714102491b41ff0171220141024b0d0b02400240024020010e03000102000b024020022802dc0520022802e0052201460d0020022802d80521000c0d0b200141016a22002001490d07200141017422032000200320004b1b22034100480d070240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c0d0b20034101102d000b024020022802dc0520022802e0052201460d0020022802d80521000c0b0b200141016a22002001490d06200141017422032000200320004b1b22034100480d060240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c0b0b20034101102d000b024020022802dc0520022802e0052201460d0020022802d80521000c090b200141016a22002001490d05200141017422032000200320004b1b22034100480d050240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c090b20034101102d000b200241013602e005200141003a000020022802dc05210020022802e00521010240200241146a2d000022034102460d00024020002001460d0020022802d80521000c050b200141016a22002001490d05200141017422042000200420004b1b22044100480d050240024020010d002004101e21000c010b20022802d80520012004102221000b02402000450d00200220043602dc05200220003602d80520022802e00521010c050b20044101102d000b024020002001460d0020022802d80521000c030b200141016a22002001490d04200141017422032000200320004b1b22034100480d040240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c030b20034101102d000b200241246a410436020020024184036a4102360200200242023702f402200241fcc3c0003602f0022002410436021c200241dcc4c0003602182002410036020c200241e4fdc6003602082002200241186a360280032002200241086a360220200241f0026a418cc4c0001033000b20034101102d000b2002200141016a3602e005200020016a41003a00000c070b2002200141016a3602e005200020016a41013a000041002104024020034101470d000240024020022802dc0520022802e0052201460d0020022802d80521000c010b200141016a22002001490d02200141017422032000200320004b1b22034100480d020240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c010b20034101102d000b2002200141016a3602e005200020016a41013a000020022d001521040b0240024020022802dc0520022802e0052201460d0020022802d80521000c010b200141016a22002001490d01200141017422032000200320004b1b22034100480d010240024020010d002003101e21000c010b20022802d80520012003102221000b2000450d02200220033602dc05200220003602d80520022802e00521010b2002200141016a3602e005200020016a20043a0000200241166a2d00002103024020022802dc0520022802e0052201460d0020022802d80521000c030b200141016a22002001490d00200141017422042000200420004b1b22044100480d000240024020010d002004101e21000c010b20022802d80520012004102221000b02402000450d00200220043602dc05200220003602d80520022802e00521010c030b20044101102d000b1027000b20034101102d000b2002200141016a3602e005200020016a20033a00000c030b2002200141016a3602e005200020016a41023a0000200241086a410172200241d8056a10b5010c020b2002200141016a3602e005200020016a41013a00000c010b2002200141016a3602e005200020016a41003a00000b20023502e005210520023502d8052106200241c0086a240020062005422086840bf41104047f017e037f047e23004190076b22022400200241206a2001105f024002400240024002400240024020022802200d00024020022802242203450d0003402003417f6a22030d000b0b20012802042203450d01200128020022042d0000210520012003417f6a3602042001200441016a360200200541ff00714104470d0220054118744118754100480d03420221060c040b200042033703680c050b200042033703680c040b200042033703680c030b200241e8056a20011096030240024020022d00e8054102460d00200241c0056a41206a200241e8056a41206a280200360200200241c0056a41186a200241e8056a41186a290300370300200241c0056a41106a200241e8056a41106a290300370300200241c0056a41086a200241e8056a41086a290300370300200220022903e8053703c00520012802042205450d00200128020022042d0000210320012005417f6a3602042001200441016a360200200341024b0d00024002400240024002400240024020030e03000102000b41002103200241003a00c0042005417f6a2107417e21080240034020072003460d0120024180046a20036a200420036a220941016a2d00003a00002001200520086a3602042001200941026a3602002002200341016a22093a00c0042008417f6a210820092103200941c000470d000b200241d0066a41386a20024180046a41386a2903002206370300200241d0066a41306a20024180046a41306a290300220a370300200241d0066a41286a20024180046a41286a290300220b370300200241d0066a41206a20024180046a41206a290300220c370300200241d0066a41186a20024180046a41186a290300220d370300200241c0026a41086a20024180046a41086a290300370300200241c0026a41106a20024180046a41106a290300370300200241c0026a41186a200d370300200241c0026a41206a200c370300200241c0026a41286a200b370300200241c0026a41306a200a370300200241c0026a41386a200637030020022002290380043703c0022009417f7320056a2103200420096a41016a2104410021050c030b200341ff0171450d06200241003a00c004420221060c070b41002103200241003a00c0042005417f6a2107417e21080240034020072003460d0120024180046a20036a200420036a220941016a2d00003a00002001200520086a3602042001200941026a3602002002200341016a22093a00c0042008417f6a210820092103200941c000470d000b200241d0066a41386a20024180046a41386a2903002206370300200241d0066a41306a20024180046a41306a290300220a370300200241d0066a41286a20024180046a41286a290300220b370300200241d0066a41206a20024180046a41206a290300220c370300200241d0066a41186a20024180046a41186a290300220d370300200241c0026a41086a20024180046a41086a290300370300200241c0026a41106a20024180046a41106a290300370300200241c0026a41186a200d370300200241c0026a41206a200c370300200241c0026a41286a200b370300200241c0026a41306a200a370300200241c0026a41386a200637030020022002290380043703c0022009417f7320056a210341012105200420096a41016a21040c020b200341ff0171450d05200241003a00c004420221060c060b41002103200241003a00c1042005417f6a2107417e2108034020072003460d0220024180046a20036a200420036a220941016a2d00003a00002001200520086a3602042001200941026a3602002002200341016a22093a00c1042008417f6a210820092103200941c100470d000b200241c0026a20024180046a41c10010cd051a2009417f7320056a2103200420096a41016a2104410221050b2002418f066a200241c0026a41c10010cd051a2003450d032004310000210b20012003417f6a22083602042001200441016a360200200b50450d01420021060c020b200341ff0171450d02200241003a00c104420221060c030b2008450d012004310001210c20012003417e6a3602042001200441026a3602004202200b420f8386220a4204540d0142012106200c420886200b84420488200a420c88220b4201200b4201561b7e220b200a5a0d010b200241186a2001105f20022802180d00200228021c2104200220011097032002290300a70d00200241106a290300210d2002290308210c200241d0066a41206a200241c0056a41206a280200360200200241d0066a41186a200241c0056a41186a290300370300200241d0066a41106a200241c0056a41106a290300370300200241d0066a41086a200241c0056a41086a290300370300200220022903c0053703d00620024180046a2002418f066a41c10010cd051a0c010b420221060b20024198026a41086a2203200241d0066a41086a29030037030020024198026a41106a2208200241d0066a41106a29030037030020024198026a41186a2209200241d0066a41186a29030037030020024198026a41206a2207200241d0066a41206a280200360200200220022903d00637039802200241d7016a20024180046a41c10010cd051a20064202510d01200241b0016a41206a2007280200360200200241b0016a41186a2009290300370300200241b0016a41106a2008290300370300200241b0016a41086a200329030037030020022002290398023703b001200241ef006a200241d7016a41c10010cd051a0b20024180046a20011095032002280280042103200241c0026a20024180046a41047241bc0110cd051a024020034122460d00200020022903b001370300200041206a200241b0016a41206a280200360200200041186a200241b0016a41186a290300370300200041106a200241b0016a41106a290300370300200041086a200241b0016a41086a2903003703002002412e6a200241ef006a41c10010cd051a200020053a0024200041256a2002412e6a41c10010cd051a20004190016a200d37030020004188016a200c37030020004198016a200336020020004180016a2004360200200041f8006a200b3703002000200a370370200020063703682000419c016a200241c0026a41bc0110cd051a0c020b200042033703680c010b200042033703680b20024190076a24000b9a0c01057f230041106b22022400200141046a2802002103200141086a28020021040240024002400240024020002d00004101460d00024020032004460d00200128020021050c020b200441016a22032004490d02200441017422052003200520034b1b22034100480d020240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b0240024020032004460d00200128020021030c010b200441016a22032004490d02200441017422052003200520034b1b22054100480d020240024020040d002005101e21030c010b200128020020042005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021040c010b20054101102d000b200141086a200441016a360200200320046a41013a000020002d0001220441024b0d030240024002400240024020040e03000102000b0240200141046a280200200141086a2802002204460d00200128020021000c040b200441016a22002004490d05200441017422032000200320004b1b22034100480d050240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c040b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021000c020b200441016a22002004490d04200441017422032000200320004b1b22034100480d040240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c020b20034101102d000b0240024002400240200141046a280200200141086a2802002204460d00200128020021030c010b200441016a22032004490d06200441017422052003200520034b1b22054100480d060240024020040d002005101e21030c010b200128020020042005102221030b2003450d0120012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41023a000020002d000221030240200141046a28020020052802002204460d00200128020021000c020b200441016a22002004490d05200441017422052000200520004b1b22054100480d050240024020040d002005101e21000c010b200128020020042005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021040c020b20054101102d000b20054101102d000b200141086a200441016a360200200020046a20033a00000c050b200141086a200441016a360200200020046a41013a00000c040b200141086a200441016a360200200020046a41003a00000c030b200141086a2206200441016a36020041002103200520046a41003a0000024002400240024002400240024002400240024020002d00010e080806000102030405080b41022103200241023a000f0c080b41032103200241033a000f0c070b41042103200241043a000f0c060b41052103200241053a000f0c050b41062103200241063a000f0c040b200241073a000f0240200141046a28020020062802002204460d00200128020021030c020b200441016a22032004490d04200441017422052003200520034b1b22054100480d040240024020040d002005101e21030c010b200128020020042005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021040c020b20054101102d000b200241013a000f410121030c020b200141086a200441016a360200200320046a41073a000020002d000221030b200220033a000f0b0240200141046a280200200141086a2802002204460d00200128020021000c020b200441016a22002004490d00200441017422052000200520004b1b22054100480d000240024020040d002005101e21000c010b200128020020042005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021040c020b20054101102d000b1027000b200141086a200441016a360200200020046a20033a00000b200241106a24000bdc0c04067f017e037f017e230041c0016b22022400200241086a10a601200228020c21032002280208210420024180016a41086a22054200370300200242003703800141b880c700411520024180016a1000200241106a41086a2005290300370300200220022903800137031020022003410020041b3602a001200241106a4110200241a0016a41041005107910a70120054200370300200242003703800141b880c700411520024180016a100020024190016a41086a20052903003703002002200229038001370390012002410036021020024190016a4110200241106a1003210502400240024002400240024020022802102203417f460d002005450d00200341034d0d04200528000021062005102020060d010b41042107410021060c010b2006ad420c7e2208422088a70d032008a722054100480d032005101e2207450d0120072103410021040340024002400240024002404114101e2205450d00200541106a410028008e8147360000200541086a41002900868147370000200541002900fe804737000020054114412810222205450d0120052004360014200241106a41186a22094200370300200241106a41106a220a4200370300200241106a41086a220b42003703002002420037031020054118200241106a1001200241a0016a41186a2009290300370300200241a0016a41106a200a290300370300200241a0016a41086a200b290300370300200220022903103703a0012005102020024100360210200241a0016a4120200241106a100321052002280210220a417f460d032005450d032002200a360294012002200536029001200241106a20024190016a10b70120022802102209450d02200229021421080240200a450d00200510200b200241a0016a412010040c040b41144101102d000b41284101102d000b41ceb8c400413320024180016a41fcbfc4004184b9c400102e000b41012109420021080b20032009360200200341046a20083702002003410c6a21032006200441016a2204470d000b0b200220063602182002200636021420022007360210200241a0016a200241106a10a301200241106a41186a200241a0016a41186a290300370300200241106a41106a2205200241a0016a41106a290300370300200241106a41086a200241a0016a41086a290300370300200220022903a00137031020024180016a41086a22034200370300200242003703800141a2fcc000411520024180016a100020024190016a41086a20032903003703002002200229038001370390012002411036028401200220024190016a36028001200241106a20024180016a10b801200241106a10a80120024100360298012002420137039001200220024190016a3602a0012005200241a0016a10b901200241106a20024190016a1063200220024190016a3602a001200241c0006a200241a0016a10b901200220024190016a3602a001200241e0006a200241a0016a10b9012002280214210420022002411c6a28020022053602a001200241a0016a20024190016a106302402005450d00200541246c210b0340200241a0016a200410a90120022802a001210a02400240200228029401220920022802980122056b20022802a8012203490d0020022802900121090c010b200520036a22062005490d05200941017422052006200520064b1b22054100480d050240024020090d002005101e21090c010b20022802900120092005102221090b02402009450d002002200536029401200220093602900120022802980121050c010b20054101102d000b2002200520036a36029801200920056a200a200310cd051a024020022802a401450d00200a10200b200441246a2104200b415c6a220b0d000b0b2002350298014220862108200235029001210c0240200228021c2203450d0020022802142105200341246c210303400240024020052d0000220441034b0d0002400240024020040e0404000102040b2005410c6a280200450d03200541086a28020010200c030b2005410c6a280200450d02200541086a28020010200c020b2005410c6a280200450d01200541086a28020010200c010b200541086a280200450d00200541046a28020010200b200541246a21052003415c6a22030d000b0b2008200c8421080240200241186a280200450d00200228021410200b200241c0016a240020080f0b20054104102d000b41ceb8c400413320024180016a41fcbfc4004184b9c400102e000b1027000bec0101047f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b02402001280204200228020c22034f0d00200041003602000c010b2003417f4c0d01024002400240024020030d00410121040c010b200310242204450d0120012802042003490d0220042001280200200310cd051a200128020422052003490d052001200520036b3602042001200128020020036a3602000b2000200336020420002004360200200041086a20033602000c020b20034101102d000b20004100360200200410200b200241106a24000f0b102c000b20032005103b000bf70301027f20002d000021020240024002400240024002404101101e2203450d00200320023a000020002d0001210220034101410210222203450d01200320023a000120002d0002210220034102410410222203450d02200320023a0002200320002d00033a000320002d0004210220034104410810222203450d03200320023a0004200320002d00053a0005200320002d00063a0006200320002d00073a000720002d0008210220034108411010222203450d04200320023a0008200320002d00093a0009200320002d000a3a000a200320002d000b3a000b200320002d000c3a000c200320002d000d3a000d200320002d000e3a000e200320002d000f3a000f20002d0010210220034110412010222203450d05200320023a0010200320002d00113a0011200320002d00123a0012200320002d00133a0013200320002d00143a0014200320002d00153a0015200320002d00163a0016200320002d00173a0017200320002d00183a0018200320002d00193a0019200320002d001a3a001a200320002d001b3a001b200320002d001c3a001c200320002d001d3a001d200320002d001e3a001e200320002d001f3a001f20012802002001280204200341201005200310200f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000bd30501037f20002d0000210202400240024002400240024002404101101e2203450d00200320023a000020002d0001210220034101410210222203450d01200320023a000120002d0002210220034102410410222203450d02200320023a0002200320002d00033a000320002d0004210220034104410810222203450d03200320023a0004200320002d00053a0005200320002d00063a0006200320002d00073a000720002d0008210220034108411010222203450d04200320023a0008200320002d00093a0009200320002d000a3a000a200320002d000b3a000b200320002d000c3a000c200320002d000d3a000d200320002d000e3a000e200320002d000f3a000f20002d0010210220034110412010222203450d05200320023a0010200320002d00113a0011200320002d00123a0012200320002d00133a0013200320002d00143a0014200320002d00153a0015200320002d00163a0016200320002d00173a0017200320002d00183a0018200320002d00193a0019200320002d001a3a001a200320002d001b3a001b200320002d001c3a001c200320002d001d3a001d200320002d001e3a001e200320002d001f3a001f02402001280200220041046a2802002202200041086a28020022016b4120490d00200028020021020c070b0240200141206a22042001490d00200241017422012004200120044b1b22014100480d000240024020020d002001101e21020c010b200028020020022001102221020b02402002450d0020002002360200200041046a2001360200200041086a28020021010c080b20014101102d000b1027000b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b200041086a200141206a360200200220016a220041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020002003290000370000200310200bd72405017f027e0f7f027e017f230041f0036b22022400024002402001450d00200220003602100c010b200241e4fdc6003602100b20022001360214200241086a200241106a105f024020022802080d00200228020c21012002200241106a3602d801200241003a00d003200242003702c402200241908cc5003602c0022002200136022c200241003602282002200241d0036a3602342002200241d8016a360230200241286a200241c0026a10bb0120022802c002210120022902c4022103024020022d00d003450d0020012003a72003422088a710bc010c010b2001450d002002200337021c20022001360218200241286a200241186a10bd0102400240024002400240024002400240024020022802284101460d00200241286a41086a2201290300210342002104200142003703002002420037032841c4aac100410d200241286a1000200241c0026a41086a2001290300370300200220022903283703c00220024100360228200241c0026a4110200241286a10032101024020022802282200417f460d002001450d0020004108490d0220012900002104200110200b41d802101e2205450d022005200241c0026a41e80010cd05220642023703682006410236029801200620022903d801370370200641f8006a200241d8016a41086a29030037030020064180016a200241e8016a29030037030020064188016a200241f0016a29030037030020064190016a200241f8016a29030037030020062003200442b8177c220420032004561b3703a001200641a8016a200241286a41b00110cd051a200241186a2101200228021c21070240034002400240200128020022082f010622090d004100210a0c010b20094103742101200841086a2100417f210a0340024020010d002009210a0c020b200a41016a210a41c3dec6002000410810cf05220b450d03200141786a2101200041086a2100200b417f4a0d000b0b024020070d004101210c0c090b2007417f6a21072008200a4102746a41e4016a21010c000b0b20022008200a410c6c6a220141e8006a2802003602c4022002200141e0006a2802003602c002200241286a200241c0026a10be0102402002280228220d0d004101210c0c070b200228022c210e0240200241286a41086a22012802002209450d0020014200370300200242003703284189a7c6004111200241286a1000200241c0026a41086a2001290300370300200220022903283703c00220024100360228200241c0026a4110200241286a1003210120022802282200417f460d052001450d05200220003602dc01200220013602d801200241286a200241d8016a10bf012002280228220b450d04200229022c21032000450d06200110200c060b4101210c200e450d06200d10200c060b2002200229022c3703c00241d5abc1004128200241c0026a41e8aac1004180acc100102e000b41ceb8c4004133200241d0036a41fcbfc4004184b9c400102e000b41d8024108102d000b41ceb8c4004133200241d0036a41fcbfc4004184b9c400102e000b420021034104210b0b2003a7210f0240024002400240024002402003422088a7220c450d00200b200c41c4006c6a2107410021010340200b20016a220a2d00002100200241286a200a41016a41c30010cd051a20004102460d01200241c0026a41186a200241286a41186a290000370300200241c0026a41106a200241286a41106a290000370300200241c0026a41086a200241286a41086a290000370300200220022900283703c00220004101460d02200141c4006a2101200a41c4006a2007470d000b0b41012108410021100240200f450d00200b10200b410021110c010b200241d8016a41086a2200200241c0026a41086a290300370300200241d8016a41106a2212200241c0026a41106a290300370300200241d8016a41186a2210200241c0026a41186a290300370300200220022903c00222033703b003200220033703d8014120101e2208450d02200820022903d801370000200841186a2010290300370000200841106a2012290300370000200841086a200029030037000002400240200c41c4006c41bc7f6a2001470d0041012110410121110c010b200a41c4006a2100200c41c4006c200b6a41bc7f6a21134101211041012111034020002101034020012d00002100200241286a200141016a41c30010cd051a20004102460d02200241c0026a41186a220a200241286a41186a290000370300200241c0026a41106a220c200241286a41106a290000370300200241c0026a41086a2212200241286a41086a290000370300200220022900283703c002024020004101460d00200141c4006a22012007470d010c030b0b200241d8016a41086a20122903002203370300200241d8016a41106a200c2903002204370300200241d8016a41186a200a2903002214370300200220022903c00222153703d801200241b0036a41186a220c2014370300200241b0036a41106a22122004370300200241b0036a41086a22162003370300200220153703b003024020112010470d00201041016a22002010490d092010410174220a2000200a20004b1b221141ffffff3f712011470d09201141057422004100480d090240024020100d002000101e21080c010b200820104105742000102221080b2008450d040b200141c4006a2100200820104105746a220a20022903b003370000200a41186a200c290300370000200a41106a2012290300370000200a41086a2016290300370000201041016a211020132001470d000b0b200f450d00200b10200b200d200941f0006c6a210c200241c0026a41106a2113200241c0026a41086a21124200210341042116200d210b0340200b2802042101200b2802002100200241286a200b41086a41e80010cd051a200b41f0006a210b024020010d00200c200b460d0403400240200b410c6a2802002200450d00200b2802042101200041246c210003400240024020012d0000220a41034b0d00024002400240200a0e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b200b41f0006a21010240200b41086a280200450d00200b28020410200b2001210b2001200c470d000c050b0b200241d8016a200241286a41e80010cd051a200220013602c402200220003602c0022012200241d8016a41e80010cd051a10792101200241d0036a200241c0026a10c001024002400240024020022802c002417f6a220020014f0d00200241286a200010a101200241286a2013412010cf050d0020022802c002220f41002001417b6a2200200020014b1b490d002010410574210a200241d0036a20086b210941002101024003400240200a2001470d00410021070c020b4101210720092001460d01200820016a2100200141206a21012000200241d0036a412010cf050d000b0b200241286a200f10a101200241286a200241d0036a412010cf05210120070d0020010d010b024020022802cc022200450d0020022802c4022101200041246c210003400240024020012d0000220a41034b0d00024002400240200a0e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b20022802c802450d0120022802c40210200c010b200241d0036a200241c0026a10c001200241286a200241c0026a41f00010cd051a0240024020034220882204a722012003a7460d00200121000c010b200141016a22072001490d092004a722004101742209200720072009491bad220342f0007e2204422088a70d092004a722074100480d090240024020010d002007101e21160c010b2016200141f0006c2007102221160b20160d0020074104102d000b2016200041f0006c6a200241286a41f00010cd051a200241286a41186a2207200241d0036a41186a290300370300200241286a41106a2209200241d0036a41106a290300370300200241286a41086a220f200241d0036a41086a290300370300200220022903d003370328024020102011470d00201041016a22012010490d09201041017422112001201120014b1b221141ffffff3f712011470d09201141057422014100480d090240024020100d002001101e21080c010b2008200a2001102221080b2008450d020b200342ffffffff0f83200041016aad4220868421032008200a6a22012002290328370000200141186a2007290300370000200141106a2009290300370000200141086a200f290300370000201041016a21100b200b200c470d010c040b0b20014101102d000b20004101102d000b41204101102d000b0240200e450d00200d10200b02402011450d00200810200b0240200342ffffffff0f560d004101210c2003a7450d01201610200c010b024020160d004101210c0c010b200641d80241b00510222205450d01200541d8026a200241c0026a41e80010cd051a200542023703c003200520033703f803200520163602f403200541033602f003200520022903d8013703c803200541d0036a200241e0016a290300370300200541d8036a200241e8016a290300370300200541e0036a200241f0016a290300370300200541e8036a200241f8016a29030037030020054180046a200241286a41b00110cd051a4102210c0b200241186a2101200228021c210702400240024002400240034002400240200128020022082f010622090d004100210a0c010b20094103742101200841086a2100417f210a0340024020010d002009210a0c020b200a41016a210a41ed8bc6002000410810cf05220b450d03200141786a2101200041086a2100200b417f4a0d000b0b2007450d022007417f6a21072008200a4102746a41e4016a21010c000b0b200841e0006a200a410c6c6a22012802084104490d0020012802002800002108200241286a41086a220142003703002002420037032841f8bfc5004115200241286a1000200241c0026a41086a2001290300370300200220022903283703c00220024100360228200241c0026a4110200241286a100321010240024020022802282200417f460d002001450d00200220003602dc01200220013602d801200241286a200241d8016a10c10102402002280228220a450d00200229022c21032000450d02200110200c020b41ceb8c4004133200241d0036a41fcbfc4004184b9c400102e000b4104210a420021030b4100210002402003422088a72201417f6a220b20014b0d00200b20014f0d00200a200b4102746a2201450d00200128020020084721000b02402003a7450d00200a10200b20000d010b200c21120c010b2005200c41d8026c2201200c4101742200200c41016a2212200020124b1b41d8026c220010222205450d01200520016a200241c0026a41e80010cd0522014202370368200120022903d801370370200141f8006a200241d8016a41086a29030037030020014180016a200241e8016a29030037030020014188016a200241f0016a29030037030020014190016a200241f8016a2903003703002001419c016a20083602002001410836029801200141a8016a200241286a41b00110cd051a0b2002280218200228021c200228022010bc01200241003602c802200242013703c00220022012360228201241d8026c210c200241286a200241c0026a106320022802c402210720022802c80221012005210a0340200241286a200a10a2012002280228210902400240200720016b20022802302208490d00200120086a210020022802c002210b0c010b200120086a22002001490d042007410174220b2000200b20004b1b22064100480d040240024020070d002006101e210b0c010b20022802c002200720061022210b0b0240200b450d00200220063602c4022002200b3602c002200621070c010b20064101102d000b200220003602c802200b20016a2009200810cd051a0240200228022c450d00200910200b200a41d8026a210a20002101200c41a87d6a220c0d000b201241d8026c210a20054198016a21012000ad422086200bad8421030340200110a501200141d8026a2101200a41a87d6a220a0d000b20051020200241f0036a240020030f0b20004108102d000b41b0054108102d000b1027000b200241cc026a41043602002002413c6a41023602002002420237022c200241fcc3c000360228200241043602c402200241f4c4c0003602c002200241003602dc01200241e4fdc6003602d8012002200241c0026a3602382002200241d8016a3602c802200241286a418cc4c0001033000bd70405057f017e017f017e067f230041f0016b22022400024002402000280200220320002802044f0d00200028020c2104200141086a210520024190016a4102722106024003402000200341016a36020020024190016a20002802082802002203109d0320022d0090014101460d012002290091012107200241086a200310b70120022802082208450d01200229020c210920022007370300024002402001280200220a41908cc500460d002001280204210b0c010b2006410041da0010cc051a200241086a410041840110cc051a41e401101e220a450d044100210b200a4100360200200a41046a20024190016a41dc0010cd051a200a41e0006a200241086a41840110cd051a200141003602042001200a3602000b02400240034002400240200a2f0106220c0d004100210d0c010b200c4103742103200a41086a210e417f210d0340024020030d00200c210d0c020b200d41016a210d2002200e410810cf05220f450d03200341786a2103200e41086a210e200f417f4a0d000b0b0240200b450d00200b417f6a210b200a200d4102746a41e4016a280200210a0c010b0b2002200737021c200220053602182002200d360214200220013602102002200a36020c2002410036020820022009370294012002200836029001200241086a20024190016a10c3010c010b200a200d410c6c6a220341e4006a220e280200210d200e2009370200200341e0006a220e2802002103200e20083602002003450d00200d450d00200310200b200028020022032000280204490d000c020b0b200441013a00000b200241f0016a24000f0b41e4014104102d000be90303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41e8016a280200210020012003410c6c6a220141e4006a2902002105200141e0006a2802002107410021032006417f6a2201450d01034020002802e40121002001417f6a22010d000c020b0b20002003410c6c6a220141e4006a2902002105200141e0006a2802002107200341016a21030b2007450d012002417f6a210202402005a7450d00200710200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bfe0101067f2001280204210202400240034002400240200128020022032f010622040d00410021050c010b20044103742101200341086a2106417f21050340024020010d00200421050c020b200541016a210541a381c7002006410810cf052207450d03200141786a2101200641086a21062007417f4a0d000b0b02402002450d002002417f6a2102200320054102746a41e4016a21010c010b0b200041ab81c700360204200041086a41283602000c010b0240200341e0006a2005410c6c6a22012802084108490d00200041086a2001280200290000370300200041003602000f0b200041d381c700360204200041086a41293602000b200041013602000ba005030b7f017e017f230041d0026b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441f0006e220341f0006c2204417f4c0d01200228020c21050240024020040d00410421060c010b2004101e2206450d030b024002402005450d00200241e0016a41086a210741002108410021094100210a0340200241e0016a200110ad0120022802e401210b20022802e001210c200241f8006a200741e80010cd051a200b450d02200a41016a2104200241106a200241f8006a41e80010cd051a0240200a2003470d00024020082004200820044b1b2203ad42f0007e220d422088a70d00200da7220e4100480d0002400240200a0d00200e101e21060c010b20062009200e102221060b20060d01200e4104102d000b1027000b200620096a220a200c360200200a41046a200b360200200a41086a200241106a41e80010cd051a200841026a2108200941f0006a21092004210a20052004470d000b0b2000200336020420002006360200200041086a20053602000c010b200041003602000240200a450d00200620096a21082006210b03400240200b410c6a280200220a450d00200b2802042104200a41246c210a03400240024020042d0000220941034b0d0002400240024020090e0404000102040b2004410c6a280200450d03200441086a28020010200c030b2004410c6a280200450d02200441086a28020010200c020b2004410c6a280200450d01200441086a28020010200c010b200441086a280200450d00200441046a28020010200b200441246a2104200a415c6a220a0d000b0b200b41f0006a21040240200b41086a280200450d00200b28020410200b2004210b20082004470d000b0b2003450d00200610200b200241d0026a24000f0b102c000b20044104102d000be61002147f037e230041c0026b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441c4006e220341c4006c2204417f4c0d01200228020c21050240024020040d00410421060c010b2004101e2206450d030b0240024002402005450d0020024198026a410772210741002108034020012802042209450d022001280200220a2d0000210420012009417f6a220b3602042001200a41016a360200200441014b0d0202400240024020040e020001000b200b4104490d04200a280001210c20012009417b6a3602042001200a41056a360200200241d4016a41026a200241d8016a41026a2d00003a0000200241b8016a41086a200241f8016a41086a290200370300200241b8016a41106a200241f8016a41106a290200370300200241b8016a41186a200241f8016a41186a2d00003a000020024198016a41086a20024198026a41086a29010037030020024198016a41106a20024198026a41106a29010037030020024198016a41186a20024198026a41186a290100370300200220022f00d8013b01d401200220022902f8013703b801200220022901980237039801200220022f01f4013b0196014100210d0c010b4100210e200241003a00b8022009417e6a210d0240024002400240024002400340200b200e2204460d0120024198026a20046a200a20046a220e41016a2d00003a00002001200d3602042001200e41026a3602002002200441016a220e3a00b802200d417f6a210d200e4120470d000b200241f4016a41026a220f20022d009a023a0000200241d8016a41086a2210200741086a290000370300200241d8016a41106a2211200741106a290000370300200241d8016a41186a2212200741186a2d00003a0000200220022f0198023b01f401200220072900003703d801200b200e460d05200228009b022113200a200e6a220a41016a2d0000210b2001200d3602042001200a41026a360200200b41014b0d0541002114200b0e020201020b200441ff01710d030c040b4100210d200241003a00b802200e20096b41026a210b200920046b417c6a21040340200b200d6a450d0220024198026a200d6a200a200d6a220e41026a2d00003a0000200120043602042001200e41036a3602002002200d41016a220e3a00b8022004417f6a2104200e210d200e4120470d000b200241f8016a41186a20024198026a41186a290300370300200241f8016a41106a20024198026a41106a290300370300200241f8016a41086a20024198026a41086a29030037030020022002290398023703f801410121140b20024198016a41186a200241f8016a41186a29030037030020024198016a41106a200241f8016a41106a29030037030020024198016a41086a200241f8016a41086a290300370300200241d4016a41026a200f2d00003a0000200241b8016a41086a2010290300370300200241b8016a41106a2011290300370300200241b8016a41186a20122d00003a0000200220022903f80137039801200220022f01f4013b01d401200220022903d8013703b8014101210d201421152013210c0c030b200d41ff0171450d010b200241003a00b8020b4102210d0b20024192016a41026a2204200241d4016a41026a2d00003a0000200241f8006a41086a220a200241b8016a41086a290300370300200241f8006a41106a220b200241b8016a41106a290300370300200241f8006a41186a2209200241b8016a41186a2d00003a0000200241d8006a41086a220f20024198016a41086a290300370300200241d8006a41106a221020024198016a41106a290300370300200241d8006a41186a221120024198016a41186a290300370300200220022f01d4013b019201200220022903b8013703782002200229039801370358200220022f0196013b0156200d4102460d03200841016a210e200241d2006a41026a221220042d00003a0000200241386a41086a2213200a290300370300200241386a41106a220a200b290300370300200241386a41186a220b20092d00003a0000200241186a41086a2209200f290300370300200241186a41106a220f2010290300370300200241186a41186a22102011290300370300200220022f0192013b01522002200229037837033820022002290358370318200220022f01563b0116024020032008470d00024020084101742204200e2004200e4b1b2203ad42c4007e2216422088a70d002016a722044100480d000240024020080d002004101e21060c010b2006200841c4006c2004102221060b20060d0120044104102d000b1027000b2006200841c4006c6a2204200d3a00002004200c360004200441036a20122d00003a0000200420022f01523b0001200b2d0000210d200a29030021162013290300211720022903382118200420153a002120042018370008200441106a2017370000200441186a2016370000200441206a200d3a00002004413a6a2010290300370000200441326a200f2903003700002004412a6a200929030037000020042002290318370022200420022f01163b0042200e2108200e2005470d000b0b2000200336020420002006360200200041086a20053602000c020b20024192016a41026a200241d4016a41026a2d00003a0000200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a200241b8016a41106a290300370300200241f8006a41186a200241b8016a41186a2d00003a0000200241d8006a41086a20024198016a41086a290300370300200241d8006a41106a20024198016a41106a290300370300200241d8006a41186a20024198016a41186a290300370300200220022f01d4013b019201200220022903b8013703782002200229039801370358200220022f0196013b01560b200041003602002003450d00200610200b200241c0026a24000f0b102c000b20044104102d000b830401077f230041306b22022400200241003602082002420137030020022002360210200141106a200241106a10b90120012002106320022002360210200141306a200241106a10b90120022002360210200141d0006a200241106a10b9012001280204210320022001410c6a2802002201360210200241106a2002106302402001450d00200141246c21040340200241106a200310a901200228021021050240024020022802042206200228020822016b20022802182207490d00200228020021060c010b0240200120076a22082001490d00200641017422012008200120084b1b22014100480d000240024020060d002001101e21060c010b200228020020062001102221060b02402006450d002002200136020420022006360200200228020821010c020b20014101102d000b1027000b2002200120076a360208200620016a2005200710cd051a02402002280214450d00200510200b200341246a21032004415c6a22040d000b0b200228020421072002280208210320022802002101200241106a41186a22064200370300200241106a41106a22054200370300200241106a41086a220442003703002002420037031020012003200241106a1001200041186a2006290300370000200041106a2005290300370000200041086a20042903003700002000200229031037000002402007450d00200110200b200241306a24000bf002010b7f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b20012802042203417c712204417f4c0d01200228020c210502400240200341027622060d00410421070c010b2004101e2207450d030b024002402005450d0041002108410021094100210403402001280204220a4104490d02200441016a21032001280200220b280000210c2001200a417c6a3602042001200b41046a360200024020042006470d00024020082003200820034b1b220641ffffffff03712006470d002006410274220a4100480d000240024020040d00200a101e21070c010b20072009200a102221070b20070d01200a4104102d000b1027000b200720096a200c360200200841026a2108200941046a21092003210420052003470d000b0b2000200636020420002007360200200041086a20053602000c010b200041003602002006450d00200710200b200241106a24000f0b102c000b20044104102d000b8b2c05077f017e0a7f047e017f230041b0026b22022400024002402001450d00200220003602100c010b200241e4fdc6003602100b20022001360214200241c8006a200241106a109f01024002400240024002400240200228024c2203450d00200241c0016a2802002104200241bc016a2802002105200241b8016a2802002106200241c8006a410c6a280200210720022802502108200241086a200241106a105f20022802080d05200228020c21012002200241106a360228200241003a0038200242003702d401200241908cc5003602d0012002200136024c200241003602482002200241386a3602542002200241286a360250200241c8006a200241d0016a10bb0120022802d001210120022902d4012109024020022d0038450d0020012009a72009422088a710bc010c060b2001450d052002200937021c20022001360218200241013b01342002420037022c200241908cc500360228200241286a41086a210a2004450d022006200441d8026c6a210b200241d0016a410272210c2006210d0340200d41e8006a2903004202520d030240200d28029801410247220e0d00200d2903a0012109200241186a2101200228021c210f0240024002400240024002400240024002400240024002400240034002400240200128020022102f010622110d00410021120c010b20114103742101201041086a2100417f21120340024020010d00201121120c020b201241016a211241c7eec6002000410810cf052213450d03200141786a2101200041086a21002013417f4a0d000b0b200f450d02200f417f6a210f201020124102746a41e4016a21010c000b0b0240201041e0006a2012410c6c6a220128020841074b0d00201442808080807083422984210941cfeec60021110c020b200942f02e8020012802002900002214510d034131210f418cf1c10021110c020b201442808080807083421c84210941f8eec60021110b2009a7210f0b024002400240024002400240024002400240024020022d0035450d0041f8dec6002101413121000c010b2002280228200228022c200228023010bc012002420037022c200241908cc500360228200242e2c289abb68edbb7f40037033841002112200241d0016a410272410041da0010cc051a200241c8006a410041840110cc051a41e401101e2210450d0a20104100360200201041046a200241d0016a41dc0010cd051a201041e0006a200241c8006a41840110cd051a2002410036022c200220103602280240024020102f0106220d450d00200d4103742101201041086a2100417f21120340024020010d00200d21120c020b200241386a2000410810cf052213450d02200141786a2101201241016a2112200041086a2100201341004e0d000b0b200242e2c289abb68edbb7f40037025c2002200a360258200220123602542002201036024c200241003602482002200241286a360250200f41046a2212417f4c0d0c2012450d022012101e2201450d0d200241003602ac02200220013602d001200f41c000490d07200f41808001490d08200f418080808004490d09200141033a0000200241013602ac022012417f6a41034d0d03201221130c050b41cbdec6002101412d21000b2002200036024c2002200136024841a9dfc6004122200241c8006a41ccdfc60041dcdfc600102e000b200241003602ac0241012112200241013602d00102404101101e2201450d00200141033a0000200241013602ac02200220013602d001410521130c020b41014101102d000b201241017422004105200041054b1b22134100480d150b20012012201310222201450d01200220013602d0010b2001200f36000141052100200241053602ac020c100b20134101102d000b2001200f4102743a000041012100200241013602ac02201221130c0e0b02400240201241014d0d00201221130c010b20012012201241017422004102200041024b1b221310222201450d06200220013602d0010b410221002001200f4102744101723b0000200241023602ac020c0d0b024002400240201241034d0d00201221130c010b201241017422004104200041044b1b22134100480d1120012012201310222201450d01200220013602d0010b2001200f41027441027236000041042100200241043602ac020c0d0b20134101102d000b200e0d08200d2903a0012115200241c8006a200241186a10bd0120022802484101460d0520022903502109200241c8006a41086a220142003703002002420037034841c4aac100410d200241c8006a1000200241d0016a41086a2001290300370300200220022903483703d00120024100360248200241d0016a4110200241c8006a100321010240024020022802482200417f470d00420021160c010b024020010d00420021160c010b200041074d0d0520012900002116200110200b02402015200942b0ea017c560d004100210e2015201642b8177c2209540d080c090b201742808080807083422584210941b0abc10021180c060b41e4014104102d000b102c000b20124101102d000b20134101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b20023502502109200228024c21180b4101210e0b0240024002400240024002400240024020022d0035450d0041f8dec6002101413121000c010b024002400240200e450d002002280228200228022c200228023010bc012002420037022c200241908cc500360228200242f4d2b59bc7ae98b8303703380c010b20022802282110200242f4d2b59bc7ae98b830370338201041908cc500460d00200228022c210f0c010b200c410041da0010cc051a200241c8006a410041840110cc051a41e401101e2210450d024100210f20104100360200201041046a200241d0016a41dc0010cd051a201041e0006a200241c8006a41840110cd051a2002410036022c200220103602280b024003400240024020102f010622110d00410021120c010b20114103742101201041086a2100417f21120340024020010d00201121120c020b200241386a2000410810cf052213450d03200141786a2101201241016a2112200041086a21002013417f4a0d000b0b0240200f450d00200f417f6a210f201020124102746a41e4016a28020021100c010b0b200242f4d2b59bc7ae98b83037025c2002200a360258200220123602542002201036024c200241003602482002200241286a360250200241003602d801200242013703d0014101101e21010240200e0d002001450d04200141003a000020024281808080103702d401200220013602d00120014101410910222201450d05200120093700012002428980808090013702d401200220013602d0010c080b2001450d05200141013a000020024281808080103702d401200220013602d00120022009a72201360238200241386a200241d0016a1063024020022802d401221220022802d80122006b2001490d0020022802d00121120c070b200020016a22132000490d0e201241017422102013201020134b1b22134100480d0e0240024020120d002013101e21120c010b20022802d00120122013102221120b02402012450d00200220133602d401200220123602d0010c070b20134101102d000b41cbdec6002101412d21000b2002200036024c2002200136024841a9dfc6004122200241c8006a41ccdfc60041dcdfc600102e000b41e4014104102d000b41014101102d000b41094101102d000b41014101102d000b2002200020016a3602d801201220006a2018200110cd051a0b200241386a41086a200241d0016a41086a280200360200200220022903d001370338200241c8006a200241386a10c3012002200e3a0035200241003a003420092117200e450d00200241d0016a41086a200241286a41086a290300370300200220022903283703d0010c050b200d41d8026a220d200b470d000c030b0b200241346a4104360200200241e4016a4102360200200242023702d401200241fcc3c0003602d0012002410436022c20024190c5c0003602282002410036023c200241e4fdc6003602382002200241286a3602e0012002200241386a360230200241d0016a418cc4c0001033000b024002400240201320006b200f490d00201321120c010b2000200f6a22122000490d04201341017422102012201020124b1b22124100480d0420012013201210222201450d01200220013602d0010b20022000200f6a3602ac02200120006a2011200f10cd051a2002201236023c200220022802d001360238200220022802ac02360240200241c8006a200241386a10c30120024180023b0134200241d0016a41086a200241286a41086a290300370300200220022903283703d0010c020b20124101102d000b200241d0016a41086a200a290300370300200220022903283703d0010b2002280218200228021c200228022010bc0102402007450d00200741246c21002003210103400240024020012d0000221241034b0d0002400240024020120e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b02402008450d00200310200b02402004450d00200441d8026c210020064198016a21010340200110a501200141d8026a2101200041a87d6a22000d000b0b02402005450d00200610200b200241003602502002420137034820022d00dc012100024002404101101e2201450d002002410136024c20022002280250221241016a36025020022001360248200120126a20003a000020022d00dd0121120240200228024c20022802502201460d00200228024821000c020b200141016a22002001490d02200141017422132000201320004b1b22134100480d020240024020010d002013101e21000c010b200228024820012013102221000b02402000450d002002201336024c20022000360248200228025021010c020b20134101102d000b41014101102d000b2002200141016a360250200020016a20123a0000200220022802d8012211360228200241286a200241c8006a106320022802d00122122100024020022802d4012213450d002012210020132101034020002802e40121002001417f6a22010d000b0b02402011450d0041002110034002400240201020002f0106490d0002400240200028020022010d004100211241002100410021010c010b20002f01042100410121120b0240200020012f0106490d000340201241016a211220012f01042200200128020022012f01064f0d000b0b20012000410c6c6a41e0006a210f200120004103746a41086a2113200041027420016a41e8016a2802002100410021102012417f6a2201450d01034020002802e40121002001417f6a22010d000c020b0b20002010410c6c6a41e0006a210f200020104103746a41086a2113201041016a21100b20132d0000210d02400240024002400240024002400240024002400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d012002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0001210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d022002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0002210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d032002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0003210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d042002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0004210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d052002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0005210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d062002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0006210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d072002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0007211302400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220d2012200d20124b1b220d4100480d0c0240024020010d00200d101e21120c010b20022802482001200d102221120b2012450d082002200d36024c20022012360248200228025021010b2002200141016a360250201220016a20133a0000200f280200210d2002200f2802082201360228200241286a200241c8006a10630240200228024c2213200228025022126b2001490d00200228024821130c090b201220016a220f2012490d0b20134101742212200f2012200f4b1b22124100480d0b0240024020130d002012101e21130c010b200228024820132012102221130b02402013450d002002201236024c20022013360248200228025021120c090b20124101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200d4101102d000b2002201220016a360250201320126a200d200110cd051a2011417f6a22110d000b20022802d401211320022802d00121120b20023502482109200235025021142012201320022802d80110bc01200241b0026a240020092014422086840f0b1027000b200241d0016a410c6a4104360200200241dc006a41023602002002420237024c200241fcc3c000360248200241043602d40120024190c5c0003602d0012002410036022c200241e4fdc6003602282002200241d0016a3602582002200241286a3602d801200241c8006a418cc4c0001033000b831407027f017e057f027e017f017e0a7f230041b0036b2202240020002802102203200328020041016a36020020002902142104200028020c2105200028020821062000280200210320002802042100200241f0016a41086a2207200141086a280200360200200220012902003703f001024002400240024002400240024020002f01062201410b490d0002400240200041908cc500460d00200241d0026a410272410041da0010cc051a200241386a410041840110cc051a41e401101e22080d0141e4014104102d000b41c8a6c000412d41a888c6001028000b20084100360200200841046a200241d0026a41dc0010cd051a200841e0006a200241386a41840110cd052107200241386a41086a2209200041b0016a280200360200200220002902a8013703382000413c6a330000210a2000413e6a310000210b20002d003f210c2000350038210d200841086a200041c0006a20002f010641796a220141037410cd05210e2007200041b4016a2001410c6c10cd052107200041063b0106200820013b0106200241d0026a41086a2009280200360200200220022903383703d002200d200a200b4210868442208684210a0240024020054107490d002005410374200e6a41506a200e200541796a22094103746a220e200141ffff037120096b41037410ce051a200e20043700002005410c6c20076a220541b87f6a200541ac7f6a2205200841066a22012f010020096b410c6c10ce051a200541086a200241f0016a41086a280200360200200520022903f0013702000c010b200041086a20054103746a220741086a2007200041066a22012f010020056b41037410ce051a20072004370000200041e0006a2005410c6c6a2207410c6a200720012f010020056b410c6c10ce051a200741086a200241f0016a41086a280200360200200720022903f0013702000b200120012f010041016a3b0100200241286a41086a220f200241d0026a41086a22102802002205360200200241086a221120053602002002200c3a0017200220022903d00222043703282002200a3e02102002200a4230883c00162002200a4220883d01142002200437030020022903102104200028020022090d01410021120c020b200020054103746a220341106a200341086a2203200120056b41037410ce051a2003200437000020002005410c6c6a220341ec006a200341e0006a220120002f010620056b410c6c10ce051a200341e8006a2007280200360200200120022903f001370200200020002f010641016a3b01060c020b20002f01042113200241d0026a410272211441002100024002400340200220093602242002200341016a2212360220200f20112802003602002002200229030037032820032000470d01201341ffff0371210702400240024020092f01062203410b490d002014410041da0010cc051a200241f0016a200241d0026a41dc0010cd051a200241386a410041b40110cc051a419402101e2201450d0520014100360200200141046a200241f0016a41dc0010cd051a200141e0006a200241386a41b40110cd052100200941386a290000210a200241386a41086a220e200941b0016a2802003602002002200941a8016a290200370338200141086a200941c0006a20092f0106220541796a220341037410cd0521152000200941b4016a2003410c6c10cd052116200141e4016a20094180026a2005417a6a220c41027410cd052117200941063b0106200120033b01060240200c450d00410021032017210003402000280200220520033b010420052001360200200041046a2100200c200341016a2203470d000b0b2010200e280200220336020020022002290338220b3703d002200e20033602002002200b370338201341ffff037122004107490d0120152007417a6a22004103746a2015200741796a22034103746a220520012f010620036b41037410ce051a200520043700002007410c6c20166a220541b87f6a200541ac7f6a220520012f0106220c20036b410c6c10ce051a200541086a200f280200360200200520022903283702002001200c41016a22053b01062007410274221320176a416c6a201720004102746a220c200541ffff0371220720006b41027410ce051a200c200836020020072000490d02200120136a41cc016a2100034020002802002205200341016a22033b010420052001360200200041046a210020032007490d000c030b0b200941086a2205200741016a22004103746a200520074103746a2205200320076b220141037410ce051a2005200437000020092007410c6c6a220541ec006a200541e0006a220c2001410c6c10ce051a200541e8006a200241286a41086a280200360200200c20022903283702002009200341016a22033b01062007410274200941e4016a22056a41086a200520004102746a2205200341ffff0371220120006b41027410ce051a20052008360200201341ffff037120014f0d0620092000417f6a22034102746a41e8016a2100034020002802002205200341016a22033b010420052009360200200041046a210020032001490d000c070b0b200941086a2203200741016a220c4103746a200320074103746a220320092f0106220520076b221341037410ce051a20032004370000200941e0006a2007410c6c6a2203410c6a20032013410c6c10ce051a200341086a200f280200360200200320022903283702002009200541016a22033b010620074102742217200941e4016a22056a41086a2005200c4102746a2213200341ffff03712205200c6b41027410ce051a20132008360200200020054f0d00200920176a41e8016a2103034020032802002200200741016a22073b010420002009360200200341046a210320052007470d000b0b200241106a41086a200e280200220336020020112003360200200220022903382204370310200220043703000240200928020022030d0020012108200a21040c040b20092f0104211320032109200a21042001210820122100201221030c000b0b41c6a8c000413541a888c6001028000b4194024104102d000b200241d0026a410272410041da0010cc051a200241f0016a200241d0026a41dc0010cd051a200241386a410041b40110cc051a419402101e2203450d0120034100360200200341046a200241f0016a41dc0010cd051a200341e0006a200241386a41b40110cd0521052003200628020022003602e4012006200336020020062006280204220141016a360204200041003b010420002003360200200241386a41086a200241086a2802003602002002200229030037033820012012470d0220032f01062200410a4b0d0320052000410c6c6a22052002290338370200200320004103746a41086a2004370000200541086a200241386a41086a2802003602002003200041016a22004102746a41e4016a2008360200200320003b0106200820003b0104200820033602000b200241b0036a24000f0b4194024104102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b5302017f027e230041306b22022400200210c50120024100360228200242013703202002200241206a36022c20022002412c6a10b9012002350228210320023502202104200241306a240020042003422086840be41803057f017e297f230041b00d6b2201240020014100360204200141e4fdc60036020010792102200141086a41086a220342003703002001420037030841c8d2c0004127200141086a1000200141900d6a41086a2003290300370300200120012903083703900d200141003602082002417f6a41d100702102200141900d6a4110200141086a100321030240024020012802082204417f460d002003450d00200120043602ec0c200120033602e80c200141086a200141e80c6a10e301024020012802082205450d00200129020c21062004450d02200310200c020b41ceb8c4004133200141880d6a41fcbfc4004184b9c400102e000b41012105420021060b024002402006422088a722030d0020004200370000200041186a4200370000200041106a4200370000200041086a42003700000c010b200141086a410041e00c10cc051a200541206a2107200520034105746a2108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f410021204100212141002122410021234100212441002125410021264100212741002128200521034100212941d100212a024003402029212b20032104024002402002450d00200241016a2102200421030340024020082003470d00200521030b2003220441206a21032002417f6a22020d000b20040d010c030b024020042008460d00200441206a21030c010b20072103200521040b02400240024002402001280204220241056a222c417f4c0d002001280200212d02400240202c450d00202c101e222e450d0341002129200141003602980d2001202c3602940d2001202e3602900d0c010b200141003602980d2001202c3602940d200141013602900d4101101e222e450d03200141013602940d2001202e3602900d20012802980d21290b2001202941016a3602980d202e20296a202b3a0000200120023602880d200141880d6a200141900d6a1063024020012802940d222e20012802980d222c6b2002490d0020012802900d212e0c040b0240202c20026a2229202c490d00202e410174222c2029202c20294b1b222c4100480d0002400240202e0d00202c101e212e0c010b20012802900d202e202c1022212e0b0240202e450d002001202c3602940d2001202e3602900d20012802980d212c0c050b202c4101102d000b1027000b102c000b202c4101102d000b41014101102d000b2001202c20026a3602980d202e202c6a202d200210cd051a2001200141900d6a3602880d2004200141880d6a10b90120012802940d210420012802900d210220012802980d212c200141900d6a41186a222e4200370300200141900d6a41106a22294200370300200141900d6a41086a222d4200370300200142003703900d2002202c200141900d6a1001200141e80c6a41186a222c202e290300370300200141e80c6a41106a222e2029290300370300200141e80c6a41086a222f202d290300370300200120012903900d3703e80c02402004450d00200210200b202a417f6a212a202b41016a2129200141086a202b4103704105746a220220012903e80c370000200241186a202c290300370000200241106a202e290300370000200241086a202f2903003700004100210402400340202b202b41036e222c417d6c6a4102470d01200141086a20046a220241df006a2d000022282002411f6a2d0000222e712028202e722002413f6a2d000071722120200241de006a2d000022282002411e6a2d0000222e712028202e722002413e6a2d00007172211f200241dd006a2d000022282002411d6a2d0000222e712028202e722002413d6a2d00007172211e200241dc006a2d000022282002411c6a2d0000222e712028202e722002413c6a2d00007172211d200241db006a2d000022282002411b6a2d0000222e712028202e722002413b6a2d00007172211c200241da006a2d000022282002411a6a2d0000222e712028202e722002413a6a2d00007172211b200241d9006a2d00002228200241196a2d0000222e712028202e72200241396a2d00007172211a200241d8006a2d00002228200241186a2d0000222e712028202e72200241386a2d000071722119200241d7006a2d00002228200241176a2d0000222e712028202e72200241376a2d000071722118200241d6006a2d00002228200241166a2d0000222e712028202e72200241366a2d000071722117200241d5006a2d00002228200241156a2d0000222e712028202e72200241356a2d000071722116200241d4006a2d00002228200241146a2d0000222e712028202e72200241346a2d000071722115200241d3006a2d00002228200241136a2d0000222e712028202e72200241336a2d000071722114200241d2006a2d00002228200241126a2d0000222e712028202e72200241326a2d000071722113200241d1006a2d00002228200241116a2d0000222e712028202e72200241316a2d000071722112200241d0006a2d00002228200241106a2d0000222e712028202e72200241306a2d000071722111200241cf006a2d000022282002410f6a2d0000222e712028202e722002412f6a2d000071722110200241ce006a2d000022282002410e6a2d0000222e712028202e722002412e6a2d00007172210f200241cd006a2d000022282002410d6a2d0000222e712028202e722002412d6a2d00007172210e200241cc006a2d000022282002410c6a2d0000222e712028202e722002412c6a2d00007172210d200241cb006a2d000022282002410b6a2d0000222e712028202e722002412b6a2d00007172210c200241ca006a2d000022282002410a6a2d0000222e712028202e722002412a6a2d00007172210b200241c9006a2d00002228200241096a2d0000222e712028202e72200241296a2d00007172210a200241c8006a2d00002228200241086a2d0000222e712028202e72200241286a2d000071722109200241c7006a2d00002228200241076a2d0000222e712028202e72200241276a2d000071722121200241c6006a2d00002228200241066a2d0000222e712028202e72200241266a2d000071722122200241c5006a2d00002228200241056a2d0000222e712028202e72200241256a2d000071722123200241c4006a2d00002228200241046a2d0000222e712028202e72200241246a2d000071722124200241c3006a2d00002228200241036a2d0000222e712028202e72200241236a2d000071722125200241c2006a2d00002228200241026a2d0000222e712028202e72200241226a2d000071722126200241c1006a2d00002228200241016a2d0000222e712028202e72200241216a2d000071722127200241c0006a2d0000222820022d0000222e712028202e72200241206a2d000071722128200441800c460d01200141086a2004202c410574202b41096e41e0006c6b6a6a220241ff006a20203a0000200241fe006a201f3a0000200241fd006a201e3a0000200241fc006a201d3a0000200241fb006a201c3a0000200241fa006a201b3a0000200241f9006a201a3a0000200241f8006a20193a0000200241f7006a20183a0000200241f6006a20173a0000200241f5006a20163a0000200241f4006a20153a0000200241f3006a20143a0000200241f2006a20133a0000200241f1006a20123a0000200241f0006a20113a0000200241ef006a20103a0000200241ee006a200f3a0000200241ed006a200e3a0000200241ec006a200d3a0000200241eb006a200c3a0000200241ea006a200b3a0000200241e9006a200a3a0000200241e8006a20093a0000200241e7006a20213a0000200241e6006a20223a0000200241e5006a20233a0000200241e4006a20243a0000200241e3006a20253a0000200241e2006a20263a0000200241e1006a20273a0000200241e0006a20283a0000202c212b200441e0006a220441e00c470d000b0b41002102202a0d000b0b200020203a001f2000201f3a001e2000201e3a001d2000201d3a001c2000201c3a001b2000201b3a001a2000201a3a0019200020193a0018200020183a0017200020173a0016200020163a0015200020153a0014200020143a0013200020133a0012200020123a0011200020113a0010200020103a000f2000200f3a000e2000200e3a000d2000200d3a000c2000200c3a000b2000200b3a000a2000200a3a0009200020093a0008200020213a0007200020223a0006200020233a0005200020243a0004200020253a0003200020263a0002200020273a0001200020283a00000b02402006a7450d00200510200b200141b00d6a24000bc63805077f017e047f037e047f230041f00d6b22022400024002402001450d00200220003602080c010b200241e4fdc6003602080b2002200136020c20024190086a200241086a10b40102400240024002400240024002400240024002400240024002400240024020022903f8084203510d00200241c8006a20024190086a41d80210cd051a200241a0036a200241c8006a41d80210cd051a20024190086a200241a0036a10a20120022802980821030240200228029408450d0020022802900810200b20024190086a200241a0036a41d80210cd051a200241f8056a20024190086a10c70141012100024020022d00f8054101470d00200220022d00fb053a0013200220022f00f9053b0011200241013a00100c0a0b20024190086a200241f8056a41086a220141900210cd051a2002200241e0086a220410c8010240024020022903b0084202520d00200241106a41206a22014200370300200241106a41186a22004280808080c000370300200241013a0038200242043703202002427f37031820024200370310200241f8056a41206a22034200370300200241f8056a41186a22054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241d00b6a200241106a200241f8056a10c901200241106a41286a2206200241d00b6a41286a2903003703002001200241d00b6a41206a2903003703002000200241d00b6a41186a290300370300200241106a41106a2207200241d00b6a41106a290300370300200241106a41086a2208200241d00b6a41086a290300370300200220022903d00b3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241800c6a200241106a200241f8056a10c9012006200241800c6a41286a2903003703002001200241800c6a41206a2903003703002000200241800c6a41186a2903003703002007200241800c6a41106a2903003703002008200241800c6a41086a290300370300200220022903800c3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241b00c6a200241106a200241f8056a10c9012006200241b00c6a41286a2903003703002001200241b00c6a41206a2903003703002000200241b00c6a41186a2903003703002007200241b00c6a41106a2903003703002008200241b00c6a41086a290300370300200220022903b00c3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241e00c6a200241106a200241f8056a10c9012006200241e00c6a41286a2903003703002001200241e00c6a41206a2903003703002000200241e00c6a41186a2903003703002007200241e00c6a41106a2903003703002008200241e00c6a41086a290300370300200220022903e00c3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241900d6a200241106a200241f8056a10c9012006200241900d6a41286a2903003703002001200241900d6a41206a2903003703002000200241900d6a41186a2903003703002007200241900d6a41106a2903003703002008200241900d6a41086a290300370300200220022903900d3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241c00d6a200241106a200241f8056a10c901200241ac0b6a2200200241c00d6a41086a290300370200200220022903c00d3702a40b200241d40d6a2802002107200241c00d6a41186a2802002101200241c00d6a41206a2802002108200241e40d6a280200210320022802d00d210520022802dc0d210620022903e80d2109200241f00a6a41086a2000290200370300200220022902a40b3703f00a20022802e008410a460d01200241003a00fb05418102210020024181023b00f905200241013a00f8050c090b20022d0004210a20022802002108200241106a41206a22004200370300200241106a41186a22054280808080c000370300200241013a0038200242043703202002427f37031820024200370310200241f8056a41206a22064200370300200241f8056a41186a22074280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241f00a6a200241106a200241f8056a10c901200241106a41286a220b200241f00a6a41286a2903003703002000200241f00a6a41206a2903003703002005200241f00a6a41186a290300370300200241106a41106a220c200241f00a6a41106a290300370300200241106a41086a220d200241f00a6a41086a290300370300200220022903f00a3703102006420037030020074280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241a00b6a200241106a200241f8056a10c901200b200241a00b6a41286a2903003703002000200241a00b6a41206a2903003703002005200241a00b6a41186a290300370300200c200241a00b6a41106a290300370300200d200241a00b6a41086a290300370300200220022903a00b37031020014200370300200242003703f8054195fcc000410d200241f8056a1000200241c00d6a41086a2001290300370300200220022903f8053703c00d41002100200241003602f805200241c00d6a4110200241f8056a10032101024020022802f8052205417f460d002001450d0020054104490d0320012800002100200110200b2000ad210e427f2109024020022903b0084201520d0020022903b80822094200510d04200e200241c0086a290300220f200f200e541b221020097c2010200f7d2009827d21090b200241f8056a41206a4200370300200241f8056a41186a4280808080c000370300200241a4066a200241c30d6a280000360000200241013a00a0062002420437038806200242003703f805200220022800c00d3600a106200242002009200e7d220e200e2009561b37038006200241d00b6a200241106a200241f8056a10c901200241c00d6a41286a200241d00b6a41286a290300370300200241c00d6a41206a200241d00b6a41206a290300370300200241c00d6a41186a200241d00b6a41186a290300370300200241c00d6a41106a200241d00b6a41106a290300370300200241c00d6a41086a200241d00b6a41086a290300370300200220022903d00b3703c00d20022802c80821004113101e2201450d04200141002900d4fc403700002001410f6a41002800e3fc40360000200141086a41002900dcfc4037000020024293808080b0023702e40c200220013602e00c20024190086a200241e00c6a10ca0120022802e80c210120022802e00c2105200241106a41186a22064200370300200241106a41106a22074200370300200241106a41086a220b42003703002002420037031020052001200241106a1001200241900d6a41186a2006290300370300200241900d6a41106a2007290300370300200241900d6a41086a200b290300370300200220022903103703900d024020022802e40c450d0020022802e00c10200b20024100360210200241900d6a4120200241106a100321010240024020022802102205417f460d002001450d00024020054104490d002001280000210b20011020200b20004d0d02200220022800b00c3602e80a2002200241b30c6a2800003600eb0a200241003a001320024180063b0011200241013a001020022802d00d21030240200241d80d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b0240200241d40d6a280200450d00200310200b20022802dc0d21030240200241e40d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241e00d6a280200450d0c200310200c0c0b41ceb8c4004133200241e00c6a41fcbfc4004184b9c400102e000b4100210b0b410c101e2205450d054104101e2201450d06200242043702142002200136021020024190086a200241106a10ca01024020022802142206200228021822016b4104490d00200228021021070c080b200141046a22072001490d0b200641017422012007200120074b1b22014100480d0b0240024020060d002001101e21070c010b200228021020062001102221070b02402007450d002002200136021420022007360210200228021821010c080b20014101102d000b200241f8056a200241e4086a10cb01024020022d00f8054101470d0020022f00f90520022d00fb054110747221000c080b200241e00c6a41286a2200200241f8056a41306a290300370300200241e00c6a41206a220b200241f8056a41286a220c290300370300200241e00c6a41186a220d200241f8056a41206a220a290300370300200241e00c6a41106a2211200241f8056a41186a2212290300370300200241e00c6a41086a2213200241f8056a41106a221429030037030020022002290380063703e00c200241c00d6a41086a200241f00a6a41086a290300370300200241e40d6a2003360200200241c00d6a41206a2008360200200241c00d6a41186a2001360200200241d40d6a2007360200200220022903f00a3703c00d200220093703e80d200220063602dc0d200220053602d00d200c2000290300370300200a200b2903003703002012200d29030037030020142011290300370300200241f8056a41086a2013290300370300200220022903e00c3703f805200241900d6a200241c00d6a200241f8056a10c901200241106a41086a20022903900d370300200241106a41106a200241900d6a41086a290300370300200241106a41186a200241900d6a41106a290300370300200241106a41206a200241900d6a41186a290300370300200241106a41286a200241900d6a41206a290300370300200241106a41306a200241900d6a41286a290300370300200241003a00100c080b200241d4006a4104360200200241b4036a4102360200200242023702a403200241fcc3c0003602a0032002410436024c200241a8c5c000360248200241003602fc05200241e4fdc6003602f8052002200241c8006a3602b0032002200241f8056a360250200241a0036a418cc4c0001033000b41ceb8c4004133200241e00c6a41fcbfc4004184b9c400102e000b4180ecc6004119419cecc6001028000b41134101102d000b410c4104102d000b41044101102d000b410421062002200141046a360218200720016a2000360000200241900d6a41086a200228021822013602002002200229031022093703900d200541086a200136020020052009370200410021010240200b20004f0d00024002400240410c101e2206450d004104101e2201450d01200242043702142002200136021020024190086a200241106a10ca01024020022802142207200228021822016b4104490d00200228021021070c030b200141046a220b2001490d0720074101742201200b2001200b4b1b22014100480d070240024020070d002001101e21070c010b200228021020072001102221070b02402007450d002002200136021420022007360210200228021821010c030b20014101102d000b410c4104102d000b41044101102d000b2002200141046a360218200720016a2000417f6a360000200241900d6a41086a200228021822013602002002200229031022093703900d200641086a200136020020062009370200410121010b200241f8056a41206a428180808010370300200241f8056a41186a20013602002002418c066a2001360200200220022800b00c3602e80a2002200241b30c6a2800003600eb0a200241a4066a20022800eb0a360000200241013a00a006200220053602940620022006360288062002427f3703800620022008ad22093703f805200220022802e80a3600a106200241800c6a200241c00d6a200241f8056a10c901200241c00d6a41286a200241800c6a41286a290300370300200241c00d6a41206a200241800c6a41206a290300370300200241c00d6a41186a200241800c6a41186a290300370300200241c00d6a41106a200241800c6a41106a290300370300200241c00d6a41086a200241800c6a41086a290300370300200220022903800c3703c00d200241106a200a4101712201200310cc010240024020022d00100d00200241106a2008200110cd010240024020022d00100d00200241f8056a41206a22034200370300200241f8056a41186a22054280808080c000370300200220022800900d3602e00c2002200241930d6a2800003600e30c200241a4066a20022800e30c36000020024204370388062002427f370380062002427f200920011b3703f805200220022802e00c3600a106200241013a00a006200241b00c6a200241c00d6a200241f8056a10c901200241900d6a41286a200241b00c6a41286a290300370300200241900d6a41206a200241b00c6a41206a290300370300200241900d6a41186a2200200241b00c6a41186a290300370300200241900d6a41106a200241b00c6a41106a290300370300200241900d6a41086a200241b00c6a41086a290300370300200220022903b00c3703900d200241f8056a20022903d008200241d8086a29030020024190086a2008200110ce0120022d00f8054101460d01200241c00d6a41286a200241f8056a41306a290300370300200241c00d6a41206a200241f8056a41286a290300370300200241c00d6a41186a2003290300370300200241c00d6a41106a2005290300370300200241c00d6a41086a200241f8056a41106a29030037030020022002290380063703c00d200241e00c6a200241900d6a200241c00d6a10c901200241106a41086a20022903e00c370300200241106a41106a200241e00c6a41086a290300370300200241106a41186a200241e00c6a41106a290300370300200241106a41206a200241e00c6a41186a290300370300200241106a41286a200241e00c6a41206a290300370300200241106a41306a200241e00c6a41286a290300370300200241003a00100c050b20022f001120022d00134110747221010c020b200220022d00fb053a0013200220022f00f9053b0011200241013a001020022802a00d2103024020002802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b0240200241a40d6a280200450d00200310200b20022802ac0d21030240200241b40d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241b00d6a280200450d03200310200c030b20022f001120022d00134110747221010b200220022800900d3602e00c2002200241930d6a2800003600e30c200241013a0010200220013b0011200220014110763a001320022802d00d21030240200241d80d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b0240200241d40d6a280200450d00200310200b20022802dc0d21030240200241e40d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241e00d6a280200450d01200310200c010b200241013a0010200220003b0011200220004110763a001302402001450d002001410c6c21002005210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b02402007450d00200510200b02402003450d002003410c6c21002006210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b2008450d00200610200b200410cf0120022d001021000b024002404101101e2201450d00200242013702940820022001360290080240200041ff01714101470d002002410136029808200141013a0000200241106a41017220024190086a10b501200228029808210320022802900821010c060b2002410136029808200141003a0000200241186a2903002109024002402002280294082200417f6a41074b0d00200041017422034109200341094b1b22034100480d0420012000200310222201450d01200220033602940820022001360290080b200241093602980820012009370001200241286a28020021002002200241306a28020022013602a003200241a0036a20024190086a106302402001450d0020002001410c6c6a21080340200028020021062002200041086a28020022013602a003200241a0036a20024190086a106302400240200228029408220520022802980822036b2001490d0020022802900821050c010b200320016a22072003490d06200541017422042007200420074b1b22074100480d060240024020050d002007101e21050c010b20022802900820052007102221050b02402005450d00200220073602940820022005360290080c010b20074101102d000b2002200320016a36029808200520036a2006200110cd051a2000410c6a22002008470d000b0b200241346a280200210020022002413c6a28020022013602a003200241a0036a20024190086a10630240024020010d00200228029408210620022802980821080c010b20002001410c6c6a21040340200028020021072002200041086a28020022013602a003200241a0036a20024190086a106302400240200228029408220620022802980822036b2001490d0020022802900821050c010b200320016a22052003490d06200641017422082005200820054b1b22084100480d060240024020060d002008101e21050c010b20022802900820062008102221050b02402005450d0020022008360294082002200536029008200821060c010b20084101102d000b2002200320016a220836029808200520036a2007200110cd051a2000410c6a22002004470d000b0b200241206a29030021090240200620086b4108490d0020022802900821010c030b200841086a22012008490d03200641017422002001200020014b1b22004100480d030240024020060d002000101e21010c010b20022802900820062000102221010b02402001450d00200220003602940820022001360290080c030b20004101102d000b20034101102d000b41014101102d000b2002200841086a36029808200120086a2009370000200241c0006a2d000021052002280294082002280298082200470d02200041016a22032000490d00200041017422062003200620034b1b220341004e0d010b1027000b0240024020000d002003101e21010c010b200120002003102221010b2001450d02200220033602940820022001360290080b2002200041016a220336029808200120006a20053a00000b2003ad4220862001ad842109024020022d00100d000240200241306a2802002200450d00200241286a28020021012000410c6c210003400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b02402002412c6a280200450d00200228022810200b02402002413c6a2802002200450d00200241346a28020021012000410c6c210003400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241386a280200450d00200228023410200b200241f00d6a240020090f0b20034101102d000b8c1b07017f027e027f017e057f017e047f230041c00c6b22022400420221030240024002400240200129036822044202520d00200220014198016a41c00110cd051a0c010b2002418e026a200141246a41c20010cd051a200241d0026a41086a220520014188016a290300370300200241d0026a41106a220620014190016a290300370300200220014180016a2903003703d002200141f8006a29030021032001290370210720024188036a41206a200141206a28020036020020024188036a41186a200141186a29020037030020024188036a41106a200141106a29020037030020024188036a41086a200141086a2902003703002002200129020037038803200241e0076a20024188036a10b60220024198066a41086a2208200241e9076a29000037030020024198066a41106a2209200241f1076a29000037030020024198066a41186a220a200241f9076a290000370300200220022900e107370398060240024002400240024002400240024002400240024020022d00e0074101460d00200241e8026a41186a200a290300370300200241e8026a41106a2009290300370300200241e8026a41086a200829030037030020022002290398063703e802200241a8096a20014198016a41c00110cd051a200241e80a6a41106a2006290300370300200241e80a6a41086a2005290300370300200220022903d0023703e80a41002106200241a00c6a410010a101200241e00b6a41086a200241ab0c6a290000370300200241e00b6a41106a200241b30c6a290000370300200241f50b6a200241a00c6a41186a290000370000200220022900a30c3703e00b20022f01a00c210b20022d00a20c210c200241a00c6a41086a22014200370300200242003703a00c4195fcc000410d200241a00c6a1000200241800c6a41086a2001290300370300200220022903a00c3703800c200241003602a00c200241800c6a4110200241a00c6a10032101024020022802a00c2205417f460d002001450d0020054104490d0220012800002106200110200b41002105024020044201520d0020074200510d03417f21052006ad220d20032003200d541b220d200d20037d2007827d220d42ffffffff0f560d00200da721050b4110101e2201450d03200141086a41002900ccfc40370000200141002900c4fc4037000020014110412010222201450d0420012005360010200241a00c6a41186a22064200370300200241a00c6a41106a22084200370300200241a00c6a41086a22094200370300200242003703a00c20014114200241a00c6a1001200241800c6a41186a2006290300370300200241800c6a41106a220a2008290300370300200241800c6a41086a2009290300370300200220022903a00c3703800c2001102002400240200241800c6a412041e4fdc600410041001002417f470d00410121010c010b200241a00c6a200510a101200241c00b6a41086a200241ab0c6a290000370300200241c00b6a41106a200241b30c6a290000370300200241c00b6a41156a2006290000370000200241800c6a41086a200241e00b6a41086a290300370300200a200241e00b6a41106a290300370300200241800c6a41156a200241e00b6a41156a290000370000200220022900a30c3703c00b200220022903e00b3703800c20022f01a00c20022d00a20c411074722105410021010b200241a00b6a41156a2206200241800c6a41156a290000370000200241a00b6a41106a2208200241800c6a41106a290300370300200241a00b6a41086a2209200241800c6a41086a290300370300200241800b6a41086a220a200241c00b6a41086a290300370300200241800b6a41106a220e200241c00b6a41106a290300370300200241800b6a41156a220f200241c00b6a41156a290000370000200220022903800c3703a00b200220022903c00b3703800b024020010d00200241e0056a41156a22012006290000370000200241e0056a41106a22062008290300370300200241e0056a41086a22082009290300370300200241c0056a41086a2209200a290300370300200241c0056a41106a220a200e290300370300200241c0056a41156a220e200f290000370000200220022903a00b3703e005200220022903800b3703c00520024180066a41106a220f200241e80a6a41106a29030037030020024180066a41086a2210200241e80a6a41086a290300370300200220022903e80a37038006200241e0076a41046a200241a8096a41c00110cd051a20024198066a200241e0076a41c40110cd051a20024188036a20024198066a41046a41c00110cd051a200241fe046a200b200c41107472220b4110763a0000200241fc046a220c200b3b0100200241d8046a2003370300200241d0046a2007370300200241e0046a220b200229038006370300200241e8046a22112010290300370300200241f0046a200f290300370300200241ff046a20022903e00537000020024187056a20082903003700002002418f056a200629030037000020024194056a2001290000370000200220043703c804200241013602f8042002419e056a20054110763a00002002419c056a220620053b01002002419f056a20022903c005370000200241a7056a2009290300370000200241af056a200a290300370000200241b4056a200e2900003700004104101e2201450d06200242043702e407200220013602e00720024188036a200241e0076a10da02024020022903c8044201520d0020022903d80420022903d0042203420c882204420120044201561b802104024020022802e407220520022802e80722016b4102490d0020022802e00721050c0a0b200141026a22082001490d0b200541017422012008200120084b1b22014100480d0b0240024020050d002001101e21050c010b20022802e00720052001102221050b02402005450d00200220013602e407200220053602e00720022802e80721010c0a0b20014101102d000b024020022802e40720022802e8072201460d0020022802e00721050c080b200141016a22052001490d0a200141017422082005200820054b1b22084100480d0a0240024020010d002008101e21050c010b20022802e00720012008102221050b02402005450d00200220083602e407200220053602e00720022802e80721010c080b20084101102d000b200241a8096a10cf01200041036a41003a0000200041800a3b0001200041013a00000c0d0b200041013b0001200041013a0000200041036a41003a000020014198016a10cf010c0c0b41ceb8c4004133200241a00c6a41fcbfc4004184b9c400102e000b4180ecc6004119419cecc6001028000b41104101102d000b41204101102d000b41044101102d000b2002200141016a3602e807200520016a41003a00000c010b2002200141026a3602e807200520016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b200b200241e0076a1063200220113602980620024198066a200241e0076a10df0220022802f8042108024020022802e407220520022802e80722016b4104490d0020022802e00721050c020b200141046a22092001490d00200541017422012009200120094b1b22014100480d000240024020050d002001101e21050c010b20022802e00720052001102221050b02402005450d00200220013602e407200220053602e00720022802e80721010c020b20014101102d000b1027000b2002200141046a3602e807200520016a20083600002002200241e0076a36029806200c20024198066a10b9012002200241e0076a36029806200620024198066a10b90120022802e007210120022802e40721050240024020022802e80722064180024b0d002002418e026a20012006200241e8026a10c80421060c010b200241a00c6a41186a22084200370300200241a00c6a41106a22094200370300200241a00c6a41086a220a4200370300200242003703a00c20012006200241a00c6a1001200241800c6a41186a2008290300370300200241800c6a41106a2009290300370300200241800c6a41086a200a290300370300200220022903a00c3703800c2002418e026a200241800c6a4120200241e8026a10c80421060b02402005450d00200110200b2006450d01200241e8016a41086a200241e8026a41086a290300370300200241e8016a41106a200241e8026a41106a290300370300200241e8016a41186a200241e8026a41186a290300370300200241c0016a41086a200241d8046a290300370300200241c0016a41106a200241e0046a290300370300200241c0016a41186a200241e8046a290300370300200241e0016a200241f0046a290300370300200220022903e8023703e8012002200241d0046a2903003703c00120022903c8042103200220024188036a41c00110cd051a0b200041086a20022903e801370300200041286a2003370300200041306a20022903c001370300200041206a200241e8016a41186a290300370300200041186a200241e8016a41106a290300370300200041106a200241e8016a41086a290300370300200041386a200241c0016a41086a290300370300200041c0006a200241c0016a41106a290300370300200041c8006a200241c0016a41186a290300370300200041d0006a200241c0016a41206a290300370300200041d8006a200241c00110cd051a200041003a0000200241c00c6a24000f0b20004180083b0001200041013a0000200041036a41003a000020024188036a10cf010b200241c00c6a24000bdc0201027f410021024190ce00210302400240024002400240024002400240024020012802000e2200080101080203040808080808080508080808080808080808080808080808080808000b417f2103200141086a280200417f6a220141064b0d0541012102024020010e0708060700070707080b41c09a0c21030c070b410121020c050b200141086a280200417f6a220141034b0d0341c0843d210341002102024020010e0406000606060b41d086032103410121020c050b200141086a2d0000417f6a2201410e4b0d0241a0c21e21034100210202400240024020010e0f070700000101070701020202020202070b4180b5182103410021020c060b41b0e32d2103410021020c050b41002103410121020c040b41f093092103410021020c030b2001280204417f6a220141024b0d00410021034101210220010e03020002020b410021020b4190ce0021030b200020023a0004200020033602000bd30505017f027e077f017e017f230041206b220324002002290300210420012903002105200141106a21062002280210210702400240024002400240200141146a2802002208200141186a28020022096b200241186a280200220a490d00200628020021080c010b2009200a6a220b2009490d012008410174220c200b200c200b4b1b220bad420c7e220d422088a70d01200da7220c4100480d010240024020080d00200c101e21080c010b20062802002008410c6c200c102221080b2008450d0220012008360210200141146a200b3602000b20082009410c6c6a2007200a410c6c10cd051a200141186a2009200a6a36020020024100360218200341086a200641086a280200360200200320062902003703002001411c6a2106200228021c210b0240200141206a2802002208200141246a28020022096b200241246a280200220a490d00200628020021080c030b2009200a6a220c2009490d002008410174220e200c200e200c4b1b220cad420c7e220d422088a70d00200da7220e4100480d000240024020080d00200e101e21080c010b20062802002008410c6c200e102221080b02402008450d002001200836021c200141206a200c3602000c030b200e4104102d000b1027000b200c4104102d000b427f200520047c220420042005541b210520082009410c6c6a200b200a410c6c10cd051a200141246a2009200a6a36020020024100360224200341106a41086a200641086a28020036020020032006290200370310200229030822042001290308220d200d2004561b21040240024020012d0028450d004101210120022d00280d010b410021010b20002005370300200020032903003702102000200329031037021c200020013a002820002004370308200041186a200341086a280200360200200041246a200341106a41086a2802003602000240200241146a280200450d00200710200b0240200241206a280200450d00200b10200b200341206a24000b962901067f20002d0000210202400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141046a2203280200200141086a22042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0001210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0002210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0003210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0004210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0005210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0006210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0007210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0008210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0009210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000f210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1120012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0010210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0011210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0012210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0013210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0014210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0015210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0016210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0017210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0018210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0019210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d2020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001f21050240200328020020042802002200460d00200128020021030c210b200041016a22032000490d00200041017422062003200620034b1b22064100480d000240024020000d002006101e21030c010b200128020020002006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021000c210b20064101102d000b1027000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2004200041016a360200200320006a20053a00000bf90a020c7f017e230041306b2202240020012802202103200241206a10d3010240024002400240024002400240200228022820034b0d002002280224450d01200228022010200c010b20032002280220220420034105746a10d401210302402002280224450d00200410200b20030d010b10d5012205200128021c470d01200210d101200228020021062002280208200128022022074b0d0220004180083b0001200041013a0000200041036a41003a00000c030b20004180063b0001200041013a0000200041036a41003a00000c030b20004180063b0001200041013a0000200041036a41003a00000c020b20024100360228200242013703202001280200210402400240024002404104101e2203450d0020024284808080c00037022420022003360220200320043600002001280204210820022001410c6a2802002203360210200241106a200241206a106302400240024020022802242209200228022822046b2003490d00200228022021090c010b200420036a220a2004490d042009410174220b200a200b200a4b1b220a4100480d040240024020090d00200a101e21090c010b20022802202009200a102221090b2009450d012002200a360224200220093602200b2002200420036a360228200920046a2008200310cd051a200141106a28020021042002200141186a2802002203360210200241106a200241206a10630240024020030d00200228022421082002280228210c0c010b20042003410c6c6a210d03402004280200210b2002200441086a2802002203360210200241106a200241206a10630240024020022802242208200228022822096b2003490d002002280220210a0c010b200920036a220a2009490d062008410174220c200a200c200a4b1b220c4100480d060240024020080d00200c101e210a0c010b20022802202008200c1022210a0b0240200a450d002002200c3602242002200a360220200c21080c010b200c4101102d000b2002200920036a220c360228200a20096a200b200310cd051a2004410c6a2204200d470d000b0b200128021c210902402008200c6b4104490d00200c41046a2104200228022021030c030b200c41046a2204200c490d03200841017422032004200320044b1b220a4100480d030240024020080d00200a101e21030c010b20022802202008200a102221030b02402003450d002002200a36022420022003360220200a21080c030b200a4101102d000b200a4101102d000b41044101102d000b200220043602282003200c6a20093600002001280220210a024002400240200820046b41034d0d00200821090c010b200441046a22092004490d022008410174220b2009200b20094b1b22094100480d020240024020080d002009101e21030c010b200320082009102221030b2003450d0120022009360224200220033602200b200320046a200a3600002003200441046a200141246a200620074105746a22081010210402402009450d00200310200b2004450d0220004180083b0001200041013a0000200041036a41003a00000c030b20094101102d000b1027000b02400240410c101e2203450d004104101e2204450d0120024284808080c00037022420022004360220200420053600002008200241206a10ca01200241106a41086a2002280228220436020020022002290320220e370310200341086a20043602002003200e370200200041306a41013a0000200041286a428180808010370200200041246a2003360200200041206a4100360200200041186a4204370300200041106a4232370300200041086a427f370300200041316a2002280020360000200041346a200241236a280000360000200041003a00002002280204450d03200610200c030b410c4104102d000b41044101102d000b2002280204450d00200610200b200241306a24000ba80202047f017e230041206b22032400200341106a41086a220442003703002003420037031041e780c7004117200341106a1000200341086a200429030037030020032003290310370300410021042003410036021020034110200341106a100321050240024020032802102206417f460d002005450d0020064104490d0120052800002104200510200b02400240417f200420026a220520052004491b22044280808080f28ba80942808080c0f588fe0620011b22072007428094ebdc038022074280ec94a37c7e7c4280cab5ee01562007a76a4b0d00200041046a2004360200410021040c010b200041800c3b0001200041036a41003a0000410121040b200020043a0000200341206a24000f0b41ceb8c4004133200341106a41fcbfc4004184b9c400102e000b860201047f230041206b22032400200341106a41086a220442003703002003420037031041cd80c700411a200341106a1000200341086a200429030037030020032003290310370300410021042003410036021020034110200341106a100321050240024020032802102206417f460d002005450d0020064104490d0120052800002104200510200b02400240417f200441c0843d41b0e32d20021b2205200120052001491b6a220120012004491b220420054b0d00200041046a2004360200410021040c010b200041800c3b0001200041036a41003a0000410121040b200020043a0000200341206a24000f0b41ceb8c4004133200341106a41fcbfc4004184b9c400102e000bde0404037f027e017f047e230041c0006b22062400200641186a41086a2207420037030020064200370318418f82c700411a200641186a1000200641306a41086a20072903003703002006200629031837033020054101732108200641086a200641306a109202410021074200210902402006280208450d002006290310220942005521072009427f550d00428080808080808080807f420020097d2009428080808080808080807f511b21090b200620092009428094ebdc0380220a4280ec94a37c7e7ca7220b3602182006418094ebdc0336021c200641186a2003427f4200200a20051b220c4100200641186a200b418094ebdc034b4102746a28020020051b2205418094ebdc036e220b2005200b4180ec94a37c6c6a4180cab5ee014b6aad7c22092008ad220a7c220d4200200a20097d220e200e200a5642002009200c54ad220c200a200954ad7c7d220a420052200a501b22051b20071b220e20017c220f200f200e542208200c200d200954ad7c4200200a20051b20071b220920027c2008ad7c220a200954200a2009511b22051b2209427f200a20051b220a410141112001200284501b1093020240024020062802184101470d0020004180023b0001200041036a41003a0000410121050c010b200629032021012006200641186a41106a290300370320200620013703182006200641186a360230200641306a109402200041306a41013a0000200041286a4200370300200041206a4280808080c000370300200041186a4204370300200041106a427f370300200041086a2009427f200a501b370300410021050b200020053a0000200641c0006a24000bdc2b01067f230041306b2201240002400240024002400240024002400240024002402000280200220241204b0d0002400240024002400240024002400240024002400240024002400240024002400240024020020e21001b1b011b1b02031b04051b1b1b060708090a0b0c1b0d0e0f1b101b111b1b1b1b000b0240200041086a280200220241064b0d00024002400240024020020e071f1f001f0102031f0b200041106a280200450d1e2000410c6a28020010200c1e0b200041106a280200450d1d2000410c6a28020010200c1d0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303400240200241046a280200450d00200228020010200b0240200241106a280200450d002002410c6a28020010200b200241186a2102200341686a22030d000b0b200041106a280200450d1c200028020c10200c1c0b0240200041146a2802002203450d002000410c6a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041106a280200450d1b200028020c10200c1b0b200041106a280200450d1a2000410c6a28020010200c1a0b02402000410c6a2802002202450d0020002802042204200241f0006c6a2105034002402004410c6a2802002203450d0020042802042102200341246c210303400240024020022d0000220641034b0d0002400240024020060e0404000102040b2002410c6a280200450d03200241086a28020010200c030b2002410c6a280200450d02200241086a28020010200c020b2002410c6a280200450d01200241086a28020010200c010b200241086a280200450d00200241046a28020010200b200241246a21022003415c6a22030d000b0b200441f0006a21020240200441086a280200450d00200428020410200b2002210420022005470d000b0b200041086a280200450d19200028020410200c190b200041086a2d0000417a6a220241074b0d180240024020020e08001a1a1a1a1a1a01000b200041106a280200450d192000410c6a28020010200c190b200041106a280200450d182000410c6a28020010200c180b200041086a280200450d17200028020410200c170b200041086a280200450d16200028020410200c160b02402000410c6a280200450d00200041086a28020010200b02402000411c6a2802002203450d00200041146a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041186a280200450d15200028021410200c150b02402000280204220241024b0d00024020020e03160016160b200041086a220228020010cf0120022802001020200141306a24000f0b2000412c6a220228020010cf0120022802001020200141306a24000f0b200041086a2d00004101470d130240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b200041286a280200450d13200041246a28020010200c130b200041086a2d00004103470d12200041d0006a280200450d12200041cc006a28020010200c120b20002d00044101470d112000410c6a280200450d11200041086a28020010200c110b200041086a280200450d10200028020410200c100b200041086a2d0000417f6a220241074b0d0f02400240024002400240024020020e080001020304151505000b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d14200041286a280200450d14200210200c140b200041106a280200450d132000410c6a28020010200c130b200041106a280200450d122000410c6a28020010200c120b200041106a280200450d112000410c6a28020010200c110b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d10200041286a280200450d10200210200c100b02402000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a2802002202450d002000413c6a280200450d00200210200b200041c4006a2802002202450d0f200041c8006a280200450d0f200210200c0f0b0240200041086a2d0000220241074b0d000240024002400240024020020e081414001401020304140b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d13200041186a28020010200c130b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d12200041186a28020010200c120b200041106a280200450d112000410c6a28020010200c110b200041106a280200450d102000410c6a28020010200c100b200041106a280200450d0f2000410c6a28020010200c0f0b200041106a280200450d0e2000410c6a28020010200c0e0b200041086a2d00004105470d0d200041106a280200450d0d2000410c6a28020010200c0d0b200041086a280200417f6a220241014b0d0c0240024020020e020001000b200041106a280200450d0d2000410c6a28020010200c0d0b200041106a280200450d0c2000410c6a28020010200c0c0b0240200041086a2d0000220241064b0d00024020020e070d000d0d0d0d0d0d0b200041306a280200450d0c2000412c6a28020010200c0c0b200041106a280200450d0b2000410c6a28020010200c0b0b02402000280204220241034b0d00024020020e040c000c0c0c0b2000410c6a280200450d0b200041086a28020010200c0b0b0240200041106a2802002203450d00200041086a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b2000410c6a280200450d0a200028020810200c0a0b0240200041086a2d00002202410c4b0d00024002400240024002400240024002400240024020020e0d14000114020304050607140809140b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1320022802002106200210202006450d1320062802002103200610202003450d1320032802002202450d120340200310202002210320022802002206210220060d000c130b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1220022802002106200210202006450d1220062802002103200610202003450d1220032802002202450d100340200310202002210320022802002206210220060d000c110b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1120022802002106200210202006450d1120062802002103200610202003450d1120032802002202450d0e0340200310202002210320022802002206210220060d000c0f0b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1020022802002106200210202006450d1020062802002103200610202003450d1020032802002202450d0c0340200310202002210320022802002206210220060d000c0d0b0b2000410c6a2802004102490d0f200041106a280200200041146a280200200041186a28020010720c0f0b0240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b2000412c6a2802002103200041246a28020021020240200041286a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b200241908cc500460d0920022802002106200210202006450d0920062802002103200610202003450d09200328020022020d060c080b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d0d200041186a28020010200c0d0b0240200041106a280200450d002000410c6a28020010200b0240200041206a2802002202450d00200241306c2103200041186a28020041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200341506a22030d000b0b2000411c6a280200450d0c200028021810200c0c0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0b200028020c10200c0b0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0a200028020c10200c0a0b2000410c6a280200200041146a2802001071200041106a280200450d09200028020c10200c090b200041086a2d0000417f6a2202410e4b0d08024002400240024002400240024020020e0f000f010f020f0f030f0f040f0f0506000b0240200041306a280200450d002000412c6a28020010200b0240200041386a2802002202450d002000413c6a280200450d00200210200b0240200041c4006a2802002202450d00200041c8006a280200450d00200210200b0240200041d0006a2802002202450d00200041d4006a280200450d00200210200b200041dc006a2802002202450d0e200041e0006a280200450d0e200210200c0e0b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a280200450d002000411c6a2802002202450d00200041206a280200450d00200210200b0240200041286a280200450d002000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a280200450d002000413c6a2802002202450d00200041c0006a280200450d00200210200b200041c8006a280200450d0d200041cc006a2802002202450d0d200041d0006a280200450d0d200210200c0d0b200041186a280200450d0c200041146a28020010200c0c0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d0b20022802002106200210202006450d0b20062802002103200610202003450d0b20032802002202450d040340200310202002210320022802002206210220060d000c050b0b200041306a280200450d0a2000412c6a28020010200c0a0b200041106a280200450d092000410c6a28020010200c090b200041106a280200450d082000410c6a28020010200c080b0340200310202002210320022802002206210220060d000c020b0b200310200c060b200310200b2000413c6a2802002103200041346a28020021020240200041386a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200636022c200120043602282001200236022420012005360220200141086a200141206a1061200128021021052001280214210220012802182104200128021c21062003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b200041c8006a2802002103200041c0006a28020021020240200041c4006a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200636022c200120043602282001200236022420012005360220200141086a200141206a1061200128021021052001280214210220012802182104200128021c21062003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b0240200041cc006a2802004102490d00200041d0006a280200200041d4006a280200200041d8006a28020010720b200041e4006a2802002103200041dc006a28020021020240200041e0006a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d0420022802002106200210202006450d0420062802002103200610202003450d04024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200c040b200310200c030b200310200c020b200310200c010b200310200b200141306a24000ba73c05047f017e057f027e217f230041a0046b22022400024002400240024020014104490d00200041e4fdc60020011b2800002100410041002802a08a472201410120011b3602a08a47200141014b0d0320010e020102010b200241ec036a41043602002002419c016a41023602002002420237028c01200241fcc3c00036028801200241043602e403200241c4c5c0003602e0032002410036023c200241e4fdc6003602382002200241e0036a360298012002200241386a3602e80320024188016a418cc4c0001033000b410041d8fac6003602a88a47410041d7fac6003602a48a47410041023602a08a470c010b034041002802a08a474101460d000b0b024002400240024010094101470d0020024188016a41086a22014200370300200242003703880141dcbfc400411120024188016a1000200241e0036a41086a200129030037030020022002290388013703e003410021032002410036028801200241e0036a411020024188016a1003210102400240024002402002280288012204417f460d002001450d0020044104490d0120012800002103200110200b200241003602880141012105410141c1c9c400411c20024188016a100a210102402002280288012204417f470d0041012104410021010c020b2004ad2206422086200684210620014521042001450d0202402006422088a72205450d0020012d0000220741014b0d002005417f6a2105410021080240024020070e020100010b410121080b20054104490d00200128000121070240024020080d0020072000460d014100210520072000490d040c050b4101210520072003490d040b410021050c030b02402006a7450d00200110200b41f5f2c600412d10060c030b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b410121050b02400240200320004f0d0020050d010b20042006a745720d01200110200c010b024002400240024002400240024002400240024002400240024002404101101e2203450d00200341003a0000024020034101410510222203450d0020032000360001410141c1c9c400411c2001417f2006422088a720041b20034105100b210520031020024020042006a745720d00200110200b20050d0f20022000360224200241286a10d10120024188016a41e9dabdf30610d2012002280288012104200228028c012107024002400240024020022802900122010d00410121094100210a4100210b0c010b20014105742200410575220a41ffffff3f71200a470d15200a41057422034100480d152003101e2209450d01200420006a210820014105742105410021010340200420016a22002900002106200041086a290000210c200041106a290000210d200920016a220341186a200041186a290000370000200341106a200d370000200341086a200c370000200320063700002005200141206a2201470d000b200820046b41606a41057641016a210b0b02402007450d00200410200b200b4115490d054101450d07200b410176220e4105742201417f4c0d072001101e220f450d01200941606a2110200941a07f6a211141002112410421134100211441002115200b2116034020162107410021164101210502402007417f6a2203450d00024002400240024002400240200920034105746a2007410574220820096a41406a412010cf054100480d002007417e6a2104201120086a210141002116410021000340024020042000470d00200721050c080b200041016a2100200141206a2001412010cf052103200141606a21012003417f4a0d000b200041016a21052000417f7320076a21030c010b201120086a210102400340024020034101470d00410021030c020b2003417f6a2103200141206a2001412010cf052100200141606a210120004100480d000b0b20072003490d012007200b4b0d03200720036b22054101762204450d00201020086a2101200920034105746a2100034020024188016a41186a2208200041186a221729000037030020024188016a41106a2218200041106a221929000037030020024188016a41086a221a200041086a221b2900003703002002200029000037038801200141086a221c2900002106200141106a221d290000210c200141186a2216290000210d200020012900003700002017200d3700002019200c370000201b200637000020162008290300370000201d2018290300370000201c201a2903003700002001200229038801370000200141606a2101200041206a21002004417f6a22040d000b0b024020030d00200321160c050b0240200541094d0d00200321160c050b2007200b4b0d01200720036b2104200920034105746a2108034020072003417f6a2216490d040240200720166b22054102490d00200920034105746a2201200920164105746a2203412010cf05417f4a0d0020024188016a41186a221a200341186a220029000037030020024188016a41106a221b200341106a221729000037030020024188016a41086a221c200341086a22182900003703002002200329000037038801200320012900003700002018200141086a2900003700002017200141106a2900003700002000200141186a29000037000041012119024020054103490d00200341c0006a20024188016a412010cf05417f4a0d00410221002008210102400340200141186a200141386a290000370000200141106a200141306a290000370000200141086a200141286a2900003700002001200141206a221729000037000020042000460d01200141c0006a21182000211920172101200041016a2100201820024188016a412010cf05417f4a0d020c000b0b200021190b200320194105746a2201200229038801370000200141186a201a290300370000200141106a201b290300370000200141086a201c2903003700000b2016450d05200841606a2108200441016a2104201621032005410a4f0d050c000b0b20032007103b000b20072003417f6a2216490d010b2007200b103a000b20162007103b000b024002400240024020152012470d00201241016a22012012490d19201241017422002001200020014b1b220141ffffffff01712001470d19200141037422004100480d190240024020120d002000101e21130c010b201320124103742000102221130b2013450d0120012112201421150b201320154103746a2201200536020420012016360200201441016a2215211420154102490d020c010b20004104102d000b02400340024002400240024020132015417f6a22144103746a2201280200450d00201541037420136a220441746a2802002203200128020422004d0d000240201541024b0d0020152114410221152016450d0d0c080b20132015417d6a221a4103746a2802042201200020036a4d0d010240201541034b0d0020152114410321152016450d0d0c080b200441646a280200200120036a4d0d01201521140c060b20154103490d012001280204210020132015417d6a221a4103746a28020421010b20012000490d010b2015417e6a211a0b0240024002400240024002402015201a41016a221e4b221f450d002015201a4b2220450d012013201a4103746a221b2802042221201b2802006a22012013201e4103746a221c280200221d490d022001200b4b0d032009201d4105746a2218201c280204221941057422006a2104200141057421032001201d6b220720196b220120194f0d04200f20042001410574220010cd05221720006a21050240024020194101480d00200141014e0d010b20042101201721000c060b201020036a21032004210103402003200141606a2204200541606a220720072004412010cf0541004822081b2200290000370000200341186a200041186a290000370000200341106a200041106a290000370000200341086a200041086a2900003700002005200720081b2105024020182004200120081b2201490d00201721000c070b200341606a21032017210020172005490d000c060b0b41d0e0c600201e2015102a000b41d0e0c600201a2015102a000b201d2001103b000b2001200b103a000b200f2018200010cd05221720006a21050240024020194101480d00200720194a0d010b20182101201721000c010b200920036a21082017210020182101034020012004200020042000412010cf0541004822071b2203290000370000200141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a2900003700002000200041206a20071b2100200141206a2101200441206a200420071b220420084f0d01200520004b0d000b0b20012000200520006b41607110cd051a02402020450d00201b201d360200201b41046a202120196a360200201f450d02201c201c41086a2015201e417f736a41037410ce051a20142115201441014d0d030c010b0b41bcf8c600201a2015102a000b41fad8c200411d41a888c6001028000b2016450d050c000b0b20034101102d000b20014101102d000b41054101102d000b41014101102d000b02402012450d00201310200b200e450d01200f10200c010b200b4102490d002009200b417f6a22004105746a21054101210303400240024002400240200b20002201417f6a2200490d00200b20006b22074102490d03200920014105746a2201200920004105746a2204412010cf05417f4a0d0320024188016a41186a2215200441186a220829000037030020024188016a41106a2219200441106a221729000037030020024188016a41086a2213200441086a22182900003703002002200429000037038801200420012900003700002018200141086a2900003700002017200141106a2900003700002008200141186a2900003700004101210120074103490d02200441c0006a20024188016a412010cf05417f4a0d0241002107200521010340200141186a200141386a290000370000200141106a200141306a290000370000200141086a200141286a2900003700002001200141206a2217290000370000200320072208460d022008417f6a2107200141c0006a211820172101201820024188016a412010cf05417f4a0d020c000b0b2000200b103b000b410220086b21010b200420014105746a2201200229038801370000200141186a2015290300370000200141106a2019290300370000200141086a20132903003700000b200541606a21052003417f6a210320000d000b0b2002280228211d200228022c211f0240200228023022010d004101210041002103410021040c040b201d20014105746a211720024188016a41016a211b200241a0026a2122200241c9026a211c200241c0016a211120024188016a41306a210e20024188016a41286a21234100211a4100211e4101211641002107201d210503400240024002400240200b41014b0d004100210341002104410121000240200b0e020900090b034020024188016a41186a200541186a29000037030020024188016a41106a200541106a29000037030020024188016a41086a200541086a2900003703002002200529000037038801200920024188016a412010cf05450d03200741016a21072017200541206a2205470d000c020b0b034020024188016a41186a200541186a29000037030020024188016a41106a200541106a29000037030020024188016a41086a200541086a2900003703002002200529000037038801200541206a21050240200b450d0041002101200b210003402000410176220320016a22042001200920044105746a20024188016a412010cf054101481b2101200020036b220041014b0d000b200920014105746a20024188016a412010cf05450d040b200741016a210720052017470d000b0b201a2103201e2104201621000c060b200541206a2105410021010b0240200b20014b0d0041d0e0c6002001200b102a000b2002200736023420024188016a10d301024002400240024020022802900120074b0d00200228028c01450d0120022802880110200c010b2007200228028801220320074105746a10d40121000240200228028c01450d00200310200b20000d010b200241003602e003200241e0036a100c210020022802e0032203417f460d042002200336028c0120022000360288012003450d0420002d0000210420022003417f6a36028c012002200041016a360288014100212102400240200441014b0d0002400240024020040e020001000b200241186a20024188016a105f20022802180d01200228028c012204200228021c2208490d012008417f4c0d07024002400240024002400240024020080d004101212141010d010c080b200810242221450d0120212002280288012218200810cd0521152002200420086b36028c012002201820086a360288012015450d070b200241106a20024188016a105f20022802100d03200228028c01410c6e2224410c6c2204417f4c0d0c20022802142125024002400240024020040d00410421190c010b2004101e2219450d010b02402025450d004100212641002118410021130340200241086a20024188016a105f20022802080d06200228028c012215200228020c2204490d062004417f4c0d100240024020040d00410121270c010b200410242227450d0420272002280288012228200410cd051a2002201520046b36028c012002202820046a360288010b201341016a2115024020132024470d0020262015202620154b1b2224ad420c7e2206422088a70d1e2006a722284100480d1e0240024020130d002028101e21190c010b201920182028102221190b2019450d060b201920186a22132027360200201341046a2004ad2206422086200684370200202641026a21262018410c6a21182015211320252015470d000b0b2019450d05024020210d00410021210c080b20082112200821142019210f20242110202521200c070b20044104102d000b20044101102d000b20084101102d000b20284104102d000b2021212602402013450d004100210403400240201920046a221541046a280200450d00201528020010200b20182004410c6a2204470d000b0b2024450d01201910200c010b202121260b410021212008450d00202610200b2003450d020c010b410021210b200010200b2021450d042002280224212610d50121272002280234212420024100360290012002420137038801024002404104101e2200450d0020024284808080c00037028c01200220003602880120002026360000200220143602e003200241e0036a20024188016a10630240200228028c01220320022802900122006b2014490d0020022802880121030c020b200020146a22042000490d12200341017422082004200820044b1b22044100480d120240024020030d002004101e21030c010b20022802880120032004102221030b02402003450d002002200436028c0120022003360288010c020b20044101102d000b41044101102d000b2002200020146a36029001200320006a2021201410cd051a200220203602e003200241e0036a20024188016a1063024002402020450d00200f2020410c6c6a2113200f21030340200328020021152002200341086a28020022003602e003200241e0036a20024188016a106302400240200228028c01220820022802900122046b2000490d0020022802880121180c010b200420006a22182004490d14200841017422192018201920184b1b22194100480d140240024020080d002019101e21180c010b20022802880120082019102221180b02402018450d002002201936028c012002201836028801201921080c010b20194101102d000b2002200420006a221936029001201820046a2015200010cd051a2003410c6a22032013470d000c020b0b200228028c01210820022802900121190b02400240200820196b4104490d0020022802880121000c010b201941046a22002019490d11200841017422032000200320004b1b22034100480d110240024020080d002003101e21000c010b20022802880120082003102221000b02402000450d002002200336028c012002200036028801200321080c010b20034101102d000b2002201941046a220336029001200020196a20273600000240024002400240200820036b41034d0d00200821130c010b200341046a22042003490d13200841017422182004201820044b1b22134100480d130240024020080d002013101e21000c010b200020082013102221000b2000450d012002201336028c0120022000360288010b200020036a2024360000200241e9dabdf30636027820114200370300200e42003703002023420037030020024188016a41206a420037030020024188016a41186a420037030020024188016a41106a420037030020024188016a41086a42003703002002420037038801200241f8006a200920014105746a2000201941086a20024188016a100d450d0102402013450d00200010200b02402012450d00202110200b02402020450d002020410c6c2100200f210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b410121012010450d07200f10200c070b20134101102d000b200241e0036a41086a2201201b41086a290000370300200241e0036a41106a2203201b41106a290000370300200241e0036a41186a2204201b41186a290000370300200241e0036a41206a2208201b41206a290000370300200241e0036a41286a2218201b41286a290000370300200241e0036a41306a2215201b41306a290000370300200241e0036a41376a2219201b41376a2900003700002002201b2900003703e00320022d0088012125200241386a41086a22282001290300370300200241386a41106a22292003290300370300200241386a41186a222a2004290300370300200241386a41206a222b2008290300370300200241386a41286a222c2018290300370300200241386a41306a222d2015290300370300200241386a41376a222e2019290000370000200220022903e00337033802402013450d00200010200b2019202e2900003700002015202d2903003703002018202c2903003703002008202b2903003703002004202a2903003703002003202929030037030020012028290300370300200220022903383703e0030240410028029c8a474103490d002002410a360284012002410a36027c2002200241246a360280012002200241346a36027841002802a88a47210041002802a48a47211341002802a08a472128200241a6033602c801200242e0808080103703c00120024186cac4003602bc012002420e3702b401200241f8c9c4003602b001200242023703a8012002420237039801200241e0c9c400360294012002410836029001200241f0c9c40036028c012002410336028801200041b0e0c600202841024622281b28021021002002200241f8006a3602a401201341e4fdc60020281b20024188016a20001103000b201c20022903e003370000201c41086a2001290300370000201c41106a2003290300370000201c41186a2004290300370000201c41206a2008290300370000201c41286a2018290300370000201c41306a2015290300370000201c41376a2019290000370000200220253a00c802200220243602c402200220273602c002200220203602bc02200220103602b8022002200f3602b402200220143602b002200220123602ac02200220213602a802200220263602a4022002410a3602a002200242023703f001200241f8006a20024188016a10a201200228027c210120022802782203200228028001100e210002402001450d00200310200b202210cf010240201a201e470d00201a41016a2201201a490d11201a41017422032001200320014b1b221e4100480d1102400240201a0d00201e101e21160c010b2016201a201e102221160b2016450d020b2016201a6a4103410420001b3a0000201a41016a211a0b200741016a2107201a2103201e21042016210020052017460d050c010b0b201e4101102d000b102c000b410221010b410021030240201f450d00201d10200b201e2104201621000c010b0240201f450d00201d10200b4104210102402003450d0020002d00002201417c6a220541014b0d0041042101024020050e020001000b024020034101470d00410421010c010b20002d00012201417c6a220541014b0d0041042101024020050e020001000b4102210503402005450d0b024020032005470d00410421010c020b200020056a2107200541016a21054104210120072d000022074104460d000b20074105460d00200721010b02402004450d00200010200b4101210320014104460d010b0240200a450d00200910200b02402003200445720d00200010200b412e210441a2f3c6002100200241f8006a210320010e0401020304010b200228022421004101101e2201450d05200141013a000020014101410510222201450d0620012000360001410141c1c9c400411c20014105100f20011020200a450d04200910200c040b412d210441f5f2c6002100200241386a21030c020b411f210441d6f2c6002100200241e0036a21030c010b41a8f2c600210020024188016a21030b20032004360204200320003602002000200410060b200241a0046a240042010f0b41014101102d000b41054101102d000b1027000be805020f7f017e230041f0006b22012400200141c8006a41086a220242003703002001420037034841edbfc400410d200141c8006a1000200141106a41086a20022903003703002001200129034837031020014100360248200141106a4110200141c8006a1003210302400240024002400240024020012802482204417f460d002003450d002001200436022420012003360220200141086a200141206a105f024020012802080d00200128022422054160712202417f4c0d04200128020c210602400240200541057622070d00410121080c010b2002101e2208450d060b02402006450d004100210903402005210a200141003a00682009220b41016a2109410021020240024002400340200a2002460d01200141c8006a20026a2001280220220c2d00003a00002001200c41016a3602202001200241016a220c3a0068200c2102200c4120470d000b200141286a41186a220d200141c8006a41186a290300370300200141286a41106a220e200141c8006a41106a290300370300200141286a41086a220f200141c8006a41086a290300370300200120012903483703282007200b470d020240200b41017422022009200220094b1b220741ffffff3f712007470d002007410574220241004e0d020b1027000b200141003602240240200241ff0171450d00200141003a00680b2007450d04200810200c040b02400240200b0d002002101e21080c010b2008200b4105742002102221080b2008450d090b200a200c6b21052008200b4105746a22022001290328370000200241186a200d290300370000200241106a200e290300370000200241086a200f29030037000020092006470d000b2001200a200c6b3602240b20080d020b41ceb8c4004133200141c8006a41fcbfc4004184b9c400102e000b20004100360208200042013702000c010b2006ad4220862007ad84211002402004450d00200310200b20002010370204200020083602000b200141f0006a24000f0b102c000b20024101102d000b20024101102d000bec04010c7f230041e0006b2202240020022001360208410021032002410036020c200241086a2002410c6a101d21012002200228020c360214200220013602102002200241106a105f02400240024002400240024020022802000d00200228021422014160712204417f4c0d032002280204210502400240200141057622060d00410121070c010b2004101e2207450d050b02402005450d0041002108034020012109200241003a00582008220a41016a210841002101024002400240034020092001460d01200241386a20016a200228021022042d00003a00002002200441016a3602102002200141016a22043a00582004210120044120470d000b200241186a41186a220b200241386a41186a290300370300200241186a41106a220c200241386a41106a290300370300200241186a41086a220d200241386a41086a290300370300200220022903383703182006200a470d020240200a41017422012008200120084b1b220641ffffff3f712006470d002006410574220141004e0d020b1027000b200241003602140240200141ff0171450d00200241003a00580b2006450d04200710200c040b02400240200a0d002001101e21070c010b2007200a4105742001102221070b2007450d080b200920046b21012007200a4105746a220a2002290318370000200a41186a200b290300370000200a41106a200c290300370000200a41086a200d29030037000020082005470d000b2002200920046b3602140b20070d010b20004101360200410021050c010b20002007360200200621030b2000200536020820002003360204200241e0006a24000f0b102c000b20044101102d000b20014101102d000bee0102047f017e230041306b22012400200141186a41086a220242003703002001420037031841868cc6004112200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a10e301024020012802182204450d00200129021c210502402003450d00200210200b20002005370204200020043602000c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b20004100360208200042013702000b200141306a24000bb10801087f230041d0006b2202240010d5012103024002400240024002400240024002400240411b101e2204450d00200441176a41002800e7f346360000200441106a41002900e0f346370000200441086a41002900d8f346370000200441002900d0f3463700002004411b413610222204450d012004200336001b200241306a41186a22054200370300200241306a41106a22064200370300200241306a41086a22074200370300200242003703302004411f200241306a1001200241086a41186a22082005290300370300200241086a41106a2006290300370300200241086a41086a200729030037030020022002290330370308200410204120101e2204450d0220042002290308370000200441186a2008290300370000200441106a200241086a41106a2206290300370000200441086a200241086a41086a22072903003700002002200036022c20054200370300200241306a41106a22004200370300200241306a41086a22094200370300200242003703302002412c6a4104200241306a1001200820052903003703002006200029030037030020072009290300370300200220022903303703082004412041c00010222204450d0320042002290308370020200441386a200241206a290300370000200441306a2006290300370000200441286a2007290300370000200441c00041e4fdc6004100410010022105200410204101210402402005417f470d004117101e2204450d052004410f6a41002900b9c944370000200441086a41002900b2c944370000200441002900aac94437000020044117412e10222204450d0620042003360017200241306a41186a22054200370300200241306a41106a22084200370300200241306a41086a22064200370300200242003703302004411b200241306a1001200241086a41186a22072005290300370300200241086a41106a22052008290300370300200241086a41086a200629030037030020022002290330370308200410204120101e2204450d0720042002290308370000200441186a2007290300370000200441106a2005290300370000200441086a200241086a41086a2205290300370000200241086a200110d8042004412041c00010222204450d0820042002290308370020200441386a200241206a290300370000200441306a200241186a290300370000200441286a20052903003700004100210820024100360230200441c000200241306a100321050240024020022802302206417f470d000c010b024020050d000c010b20064104490d0a200528000021082005102020084100472105410121080b20041020200820057121040b200241d0006a240020040f0b411b4101102d000b41364101102d000b41204101102d000b41c0004101102d000b41174101102d000b412e4101102d000b41204101102d000b41c0004101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000bac0101047f230041206b22002400200041106a41086a22014200370300200042003703104191f6c6004114200041106a1000200041086a200129030037030020002000290310370300410021022000410036021020004110200041106a100321010240024020002802102203417f460d002001450d0020034104490d0120012800002102200110200b200041206a240020020f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000ba90201037f23004180016b2202240002400240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103521000c020b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000bfb0305047f017e017f017e027f230041206b220224002002410036021041d4bfc5004114200241106a100321030240024020022802102204417f460d002003450d002002200436020c20022003360208024002402004450d0020022004417f6a36020c2002200341016a36020820032d00002104200241106a200241086a10d80120022802102205450d0020022902142106200441ff01714101460d012006a7450d00200510200b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b200310200c010b41082105420021060b200241003602182002420137031020022006422088a72203360208200241086a200241106a106302402003450d002005200341286c6a21072005210403402004200241106a10ca01200441206a29030021080240024020022802142209200228021822036b4108490d00200228021021090c010b0240200341086a220a2003490d0020094101742203200a2003200a4b1b22034100480d000240024020090d002003101e21090c010b200228021020092003102221090b02402009450d002002200336021420022009360210200228021821030c020b20034101102d000b1027000b2002200341086a360218200920036a20083700002007200441286a2204470d000b0b2002350218422086200235021084210802402006a7450d00200510200b200241206a240020080bb105020c7f047e230041f0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020441286e220341286c2204417f4c0d01200228020421050240024020040d00410821060c010b2004101e2206450d030b02402005450d00410021070340200241003a00682007220841016a210720012802042109417f210a410021040240024002400240034020092004460d01200241c8006a20046a2001280200220b2d00003a000020012009200a6a3602042001200b41016a3602002002200441016a220c3a0068200a417f6a210a200c2104200c4120470d000b200241286a41186a2204200241c8006a41186a290300370300200241286a41106a220a200241c8006a41106a290300370300200241286a41086a220d200241c8006a41086a290300370300200220022903483703282009200c6b220c4108490d01200b290001210e2001200b41096a3602002001200c41786a360204200241086a41086a220c200d290300370300200241086a41106a2209200a290300370300200241086a41186a220a20042903003703002002200229032837030820032008470d030240200841017422042007200420074b1b2203ad42287e220f422088a70d00200fa7220441004e0d030b1027000b200441ff0171450d00200241003a00680b200041003602002003450d04200610200c040b0240024020080d002004101e21060c010b2006200841286c2004102221060b2006450d060b2006200841286c6a22042002290308370300200c290300210f20092903002110200a29030021112004200e370320200441186a2011370300200441106a2010370300200441086a200f37030020072005470d000b0b2000200336020420002006360200200041086a20053602000b200241f0006a24000f0b102c000b20044108102d000b20044108102d000bb10d03047f017e027f230041c0016b22022400200241086a41086a220342003703002002420037030841beedc6004110200241086a1000200241a0016a41086a2003290300370300200220022903083703a0014100210320024100360208200241a0016a4110200241086a1003210402400240024002400240024002400240024020022802082205417f470d000c010b024020040d000c010b2002200536027c20022004360278200241086a200241f8006a10d80120022802082203450d01200229020c21062005450d00200410200b200241086a41086a220542003703002002420037030841eeedc600410f200241086a1000200241a0016a41086a22042005290300370300200220022903083703a001200241f8006a200241a0016a10da0120022d00782105200241a0016a41186a220720024191016a290000370300200241a0016a41106a220820024189016a290000370300200420024181016a290000370300200220022900793703a0012006420020031b21062003410820031b21030240024020054101460d00200241d8006a41186a4200370300200241d8006a41106a4200370300200241d8006a41086a4200370300200242003703580c010b200241d8006a41186a2007290300370300200241d8006a41106a2008290300370300200241d8006a41086a2004290300370300200220022903a0013703580b2002412c6a2006370200200241086a41186a42043703002002413c6a200241d8006a41086a290300370200200241c4006a200241e8006a290300370200200241cc006a200241d8006a41186a2903003702002002200336022820024201370318200242e400370310200242f02e37030820022002290358370234200241013a00542002410036028001200242013703784108101e2203450d012002410836027c2002200228028001220441086a3602800120022003360278200320046a42f02e3700002002290310210602400240200228027c220420022802800122036b4108490d00200228027821040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200228027820042003102221040b2004450d032002200336027c2002200436027820022802800121030b2002200341086a36028001200420036a20063700002002290318210602400240200228027c220420022802800122036b4108490d00200228027821040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200228027820042003102221040b2004450d042002200336027c2002200436027820022802800121030b2002200341086a36028001200420036a2006370000200229032021060240200228027c220420022802800122036b4108490d00200228027821040c050b200341086a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200228027820042003102221040b02402004450d002002200336027c2002200436027820022802800121030c050b20034101102d000b41ceb8c4004133200241d8006a41fcbfc4004184b9c400102e000b41084101102d000b20034101102d000b20034101102d000b2002200341086a36028001200420036a2006370000200228022821042002200241086a41286a28020022033602a001200241a0016a200241f8006a106302402003450d002004200341286c6a210803402004200241f8006a10ca01200441206a290300210602400240200228027c220520022802800122036b4108490d00200228027821050c010b200341086a22072003490d03200541017422032007200320074b1b22034100480d030240024020050d002003101e21050c010b200228027820052003102221050b02402005450d002002200336027c2002200536027820022802800121030c010b20034101102d000b2002200341086a36028001200520036a20063700002008200441286a2204470d000b0b200241346a200241f8006a10db0120022d005421050240200228027c2002280280012203460d00200228027821040c020b200341016a22042003490d00200341017422072004200720044b1b22074100480d000240024020030d002007101e21040c010b200228027820032007102221040b02402004450d002002200736027c2002200436027820022802800121030c020b20074101102d000b1027000b2002200341016a36028001200420036a20053a000020023502800142208620023502788421060240200228022c450d00200228022810200b200241c0016a240020060bd10201057f230041d0006b220224002002410036022820014110200241286a10032103024002400240024020022802282204417f460d0020030d010b200041003a00000c010b41002101200241003a0048034020042001460d02200241286a20016a200320016a2d00003a00002002200141016a22053a00482005210120054120470d000b200241086a41186a2201200241286a41186a290300370300200241086a41106a2205200241286a41106a290300370300200241086a41086a2206200241286a41086a2903003703002002200229032837030802402004450d00200310200b20002002290308370001200041013a0000200041196a2001290300370000200041116a2005290300370000200041096a20062903003700000b200241d0006a24000f0b0240200141ff0171450d00200241003a00480b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000b962901067f20002d0000210202400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141046a2203280200200141086a22042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0001210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0002210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0003210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0004210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0005210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0006210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0007210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0008210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0009210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000f210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1120012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0010210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0011210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0012210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0013210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0014210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0015210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0016210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0017210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0018210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0019210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d2020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001f21050240200328020020042802002200460d00200128020021030c210b200041016a22032000490d00200041017422062003200620034b1b22064100480d000240024020000d002006101e21030c010b200128020020002006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021000c210b20064101102d000b1027000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2004200041016a360200200320006a20053a00000bda0607047f017e047f017e027f017e027f230041c0006b22022400200241086a2203420037030020024200370300418dc0c500411720021000200241206a41086a20032903003703002002200229030037032020024100360200200241206a41102002100321030240024020022802002204417f460d002003450d0020022004360234200220033602302002200241306a10dd01024020022802002205450d00200229020421062004450d02200310200c020b41ceb8c4004133200241386a41fcbfc4004184b9c400102e000b41012105420021060b4100210702400240024002402006422088a7220341057422080d00410421094100210a0c010b2008410575220aad420c7e220b422088a70d01200ba722044100480d012004101e22090d0020044104102d000b2006a7210c02402003450d00200841606a210d20092104200521030340200341086a2900002106200341106a290000210b2003290000210e200241186a200341186a290000370300200241106a200b370300200241086a20063703002002200e370300200241206a200210de01200441086a200241206a41086a280200360200200420022903203702002004410c6a2104200341206a2103200841606a22080d000b200d41057641016a21070b0240200c450d00200510200b200241003602082002420137030020022007360220200241206a20021063024020070d002002280208210d200228020021050c020b20092007410c6c6a210f2009210403402004280200210c2002200441086a2802002203360220200241206a200210630240024020022802042205200228020822086b2003490d00200228020021050c010b200820036a220d2008490d0220054101742210200d2010200d4b1b220d4100480d020240024020050d00200d101e21050c010b20022802002005200d102221050b02402005450d002002200d360204200220053602000c010b200d4101102d000b2002200820036a220d360208200520086a200c200310cd051a2004410c6a2204200f460d020c000b0b1027000b200dad42208621062005ad210b02402007450d002007410c6c21042009210303400240200341046a280200450d00200328020010200b2003410c6a2103200441746a22040d000b0b2006200b8421060240200a450d00200910200b200241c0006a240020060bb004010a7f230041d0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020422034160712204417f4c0d012002280204210502400240200341057622060d00410121070c010b2004101e2207450d030b02402005450d00410021080340200241003a00482008220941016a21082001280204417f6a21034100210402400240024003402003417f460d01200241286a20046a2001280200220a2d00003a0000200120033602042001200a41016a3602002002200441016a220a3a00482003417f6a2103200a2104200a4120470d000b200241086a41186a2204200241286a41186a290300370300200241086a41106a220a200241286a41106a290300370300200241086a41086a220b200241286a41086a2903003703002002200229032837030820062009470d020240200941017422032008200320084b1b220641ffffff3f712006470d002006410574220341004e0d020b1027000b0240200441ff0171450d00200241003a00480b200041003602002006450d04200710200c040b0240024020090d002003101e21070c010b200720094105742003102221070b2007450d060b200720094105746a22032002290308370000200341186a2004290300370000200341106a200a290300370000200341086a200b29030037000020082005470d000b0b2000200636020420002007360200200041086a20053602000b200241d0006a24000f0b102c000b20044101102d000b20034101102d000bf60301027f20012d000021020240024002400240024002404101101e2203450d00200320023a000020012d0001210220034101410210222203450d01200320023a000120012d0002210220034102410410222203450d02200320023a0002200320012d00033a000320012d0004210220034104410810222203450d03200320023a0004200320012d00053a0005200320012d00063a0006200320012d00073a000720012d0008210220034108411010222203450d04200320023a0008200320012d00093a0009200320012d000a3a000a200320012d000b3a000b200320012d000c3a000c200320012d000d3a000d200320012d000e3a000e200320012d000f3a000f20012d0010210220034110412010222203450d05200320023a0010200320012d00113a0011200320012d00123a0012200320012d00133a0013200320012d00143a0014200320012d00153a0015200320012d00163a0016200320012d00173a0017200320012d00183a0018200320012d00193a0019200320012d001a3a001a200320012d001b3a001b200320012d001c3a001c200320012d001d3a001d200320012d001e3a001e200320012d001f3a001f200042a08080808004370204200020033602000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000bc81607057f017e067f037e017f037e027f230041d0026b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b2002200136020420024188016a200210b70102400240024002402002280288012203450d0020024188016a41086a2802002104200228028c012105200241e8016a41086a22014200370300200242003703e801418dc0c5004117200241e8016a1000200241086a41086a2001290300370300200220022903e801370308200241003602e801200241086a4110200241e8016a1003210120022802e8012200417f460d022001450d02200220003602cc01200220013602c801200241e8016a200241c8016a10dd0120022802e8012206450d0120022902ec0121072000450d03200110200c030b200241146a4104360200200241fc016a4102360200200242023702ec01200241fcc3c0003602e8012002410436020c200241dcc5c000360208200241003602cc01200241e4fdc6003602c8012002200241086a3602f8012002200241c8016a360210200241e8016a418cc4c0001033000b41ceb8c4004133200241c8026a41fcbfc4004184b9c400102e000b41012106420021070b200241e8016a41e2c289ab0610d20120022802e801210820022802ec012109024002400240024002400240024002400240024020022802f00122000d004100210a4101210b410021010c010b20004105742201410575220a41ffffff3f71200a470d0420014100480d042001101e220b450d01200820016a210c2000410574210d410021010340200820016a2200290000210e200041086a290000210f200041106a2900002110200b20016a221141186a200041186a290000370000201141106a2010370000201141086a200f3700002011200e370000200d200141206a2201470d000b200c20086b41606a41057641016a21010b02402009450d00200810200b4100210d02402007422088a72200450d00200620004105746a210c20014105742109200621080340200841086a290000210e200841106a290000210f20082900002110200241e8016a41186a200841186a290000370300200241e8016a41106a200f370300200241e8016a41086a200e370300200220103703e801200841206a210820092100200b2101024003402000450d010240200241e8016a2001460d00200041606a21002001200241e8016a412010cf052111200141206a210120110d010b0b200241086a41186a200241e8016a41186a290300220e37030020024188016a41086a200241e8016a41086a29030037030020024188016a41106a200241e8016a41106a29030037030020024188016a41186a200e370300200220022903e801370388014101210d0c020b2008200c470d000b0b2007a721010240200a450d00200b10200b02402001450d00200610200b200241086a41186a220120024188016a41186a290300370300200241086a41106a220020024188016a41106a290300370300200241086a41086a221120024188016a41086a2903003703002002200229038801370308200d450d01200241e8006a41186a2001290300370300200241e8006a41106a2000290300370300200241e8006a41086a201129030037030020022002290308370368200241e2c289ab063602c801200241e8016a41386a22014200370300200241e8016a41306a22004200370300200241e8016a41286a22114200370300200241e8016a41206a22084200370300200241e8016a41186a4200370300200241e8016a41106a4200370300200241e8016a41086a4200370300200242003703e80102400240200241c8016a200241e8006a20032004200241e8016a100d0d00200241086a41386a220b2001290300370300200241086a41306a2000290300220e370300200241086a41286a2011290300220f370300200241086a41206a20082903002210370300200241086a41186a200241e8016a41186a2903002207370300200241086a41106a200241e8016a41106a2903002212370300200241086a41086a200241e8016a41086a2903002213370300200220022903e801221437030820024188016a41306a200e37030020024188016a41286a200f37030020024188016a41206a201037030020024188016a41186a200737030020024188016a41106a201237030020024188016a41086a201337030020024188016a41386a200b2903003703002002201437038801410121010c010b410021010b200241c8016a41186a2200200241e8006a41186a290300370300200241c8016a41106a2211200241e8006a41106a290300370300200241c8016a41086a2208200241e8006a41086a290300370300200220022903683703c8012001450d01200241e8016a41386a20024188016a41386a2201290300370300200241e8016a41306a20024188016a41306a220b290300370300200241e8016a41286a20024188016a41286a220d290300370300200241e8016a41206a20024188016a41206a2206290300370300200241e8016a41186a20024188016a41186a220a290300370300200241e8016a41106a20024188016a41106a2209290300370300200241e8016a41086a20024188016a41086a2204290300370300200241b0026a220c2008290300370300200241b8026a22152011290300370300200241c0026a2216200029030037030020022002290388013703e801200220022903c8013703a802200241086a200241e8016a41e00010cd051a200241e8016a200241086a41e00010cd051a2001200241086a41386a290000370300200b200241086a41306a290000370300200d200241086a41286a2900003703002006200241086a41206a290000370300200a200241086a41186a2900003703002009200241086a41106a2900003703002004200241086a41086a290000370300200220022900083703880120002016290300370300201120152903003703002008200c290300370300200220022903a8023703c80141002111410121084100210041002101034020024188016a20116a2d0000210d0240024020002001460d002000210b0c010b200041016a22012000490d052000410174220b2001200b20014b1b220b4100480d050240024020000d00200b101e21080c010b20082000200b102221080b02402008450d0020002101200b21000c010b200b4101102d000b200820016a200d3a0000200141016a2101201141016a221141c000470d000b200241e8006a200241c8016a10de0120022802702100200228026c210a2002280268210d0c020b20014101102d000b410021080b02402005450d00200310200b4101101e2211450d0120024281808080103702ec01200220113602e801024020080d00201141003a00002011ad42808080801084210e0c050b201141013a000020022001360208200241086a200241e8016a10630240024020022802ec01220620022802f00122116b2001490d0020022802e80121060c010b201120016a22032011490d01200641017422052003200520034b1b22034100480d010240024020060d002003101e21060c010b20022802e80120062003102221060b2006450d03200220033602ec01200220063602e8010b2002201120016a3602f001200620116a2008200110cd051a20022000360208200241086a200241e8016a1063024020022802ec01221120022802f00122016b2000490d0020022802e80121110c040b200120006a22062001490d00201141017422032006200320064b1b22064100480d000240024020110d002006101e21110c010b20022802e80120112006102221110b02402011450d00200220063602ec01200220113602e8010c040b20064101102d000b1027000b41014101102d000b20034101102d000b2002200120006a22063602f001201120016a200d200010cd051a2006ad422086210e2011ad210f0240200b450d00200810200b200e200f84210e200a450d00200d10200b200241d0026a2400200e0bf90b06057f017e017f017e067f077e230041f0016b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b20022001360204200241286a200210b701024002400240024020022802282203450d00200241306a2802002104200228022c2105200241e8006a200210b70120022802682206450d01200229026c2107200241e8006a200210b70120022802682208450d02200229026c210941002101200241003a00a8012007422088a7210a2006210002400240024002400340200a2001460d01200241e8006a20016a20002d00003a00002002200141016a220b3a00a801200041016a2100200b2101200b41c000470d000b200241b0016a41386a2201200241e8006a41386a290300370300200241b0016a41306a2200200241e8006a41306a290300370300200241b0016a41286a220a200241e8006a41286a290300370300200241b0016a41206a220c200241e8006a41206a290300370300200241b0016a41186a220d200241e8006a41186a290300370300200241b0016a41106a220e200241e8006a41106a290300370300200241b0016a41086a220f200241e8006a41086a290300370300200220022903683703b001200b41ff017141c000490d02200241286a41386a220b2001290300370300200241286a41306a20002903002210370300200241286a41286a200a2903002211370300200241286a41206a200c2903002212370300200241286a41186a200d2903002213370300200241286a41106a200e2903002214370300200241286a41086a200f2903002215370300200220022903b001221637032820002010370300200a2011370300200c2012370300200d2013370300200e2014370300200f20153703002001200b290300370300200220163703b00141002101200241003a0088012009422088a7210a200821000340200a2001460d02200241e8006a20016a20002d00003a00002002200141016a220b3a008801200041016a2100200b2101200b4120470d000b200241086a41186a2201200241e8006a41186a2200290300370300200241086a41106a220b200241e8006a41106a220a290300370300200241086a41086a220c200241e8006a41086a220d29030037030020022002290368370308200241e8006a41386a200241b0016a41386a290300370300200241e8006a41306a200241b0016a41306a290300370300200241e8006a41286a200241b0016a41286a290300370300200241e8006a41206a200241b0016a41206a2903003703002000200241b0016a41186a290300370300200a200241b0016a41106a290300370300200d200241b0016a41086a290300370300200220022903b001370368200241286a41186a2001290300370300200241286a41106a200b290300370300200241286a41086a200c2903003703002002200229030837032820032004200241e8006a200241286a10104521000c030b200141ff0171450d01200241003a00a8010c010b200141ff0171450d00200241003a0088010b410021000b02402009a7450d00200810200b02402007a7450d00200610200b02402005450d00200310200b4101101e2201450d03200120003a0000200241f0016a24002001ad428080808010840f0b200241bc016a4104360200200241fc006a41023602002002420237026c200241fcc3c000360268200241043602b401200241e8c5c0003602b0012002410036020c200241e4fdc6003602082002200241b0016a3602782002200241086a3602b801200241e8006a418cc4c0001033000b200241fc006a4102360200200241bc016a41043602002002420237026c200241fcc3c000360268200241043602b401200241e8c5c0003602b0012002410036022c200241e4fdc6003602282002200241b0016a3602782002200241286a3602b801200241e8006a418cc4c0001033000b200241fc006a4102360200200241bc016a41043602002002420237026c200241fcc3c000360268200241043602b401200241e8c5c0003602b0012002410036022c200241e4fdc6003602282002200241b0016a3602782002200241286a3602b801200241e8006a418cc4c0001033000b41014101102d000beb0503037f047e017f230041a0016b2202240041002103200241003a0048200041e4fdc60020011b2104024002400240024002400240034020012003460d01200241286a20036a200420036a2d00003a00002002200341016a22003a00482000210320004120470d000b200241086a41186a200241286a41186a22002903002205370300200241086a41106a200241286a41106a22012903002206370300200241086a41086a200241286a41086a22042903002207370300200220022903282208370308200241f0006a41186a2005370300200241f0006a41106a2006370300200241f0006a41086a2007370300200220083703704113101e2203450d03200341002900d4fc403700002003410f6a41002800e3fc40360000200341086a41002900dcfc4037000020024293808080b002370294012002200336029001200241f0006a20024190016a10ca01200228029801210320022802900121092000420037030020014200370300200442003703002002420037032820092003200241286a1001200241d0006a41186a2000290300370300200241d0006a41106a2001290300370300200241d0006a41086a2004290300370300200220022903283703500240200228029401450d0020022802900110200b20024100360228200241d0006a4120200241286a1003210320022802282200417f470d01410021000c020b0240200341ff0171450d00200241003a00480b2002413c6a4102360200200241fc006a41043602002002420237022c200241fcc3c00036022820024104360274200241f8c5c00036027020024100360254200241e4fdc6003602502002200241f0006a3602382002200241d0006a360278200241286a418cc4c0001033000b024020030d00410021000c010b20004104490d0220032800002100200310200b4104101e2203450d0220032000360000200241a0016a24002003ad4280808080c000840f0b41134101102d000b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000b41044101102d000bda1203027f017e087f23004190026b220224000240024020010d002002200136020c200241e4fdc6003602080c010b20022001417f6a36020c2002200041016a36020820002d0000220041014b0d0002400240024002400240024020000e020001000b4100210120024100360210410121030c010b200241206a200241086a10b70120022802202201450d0420022902242104200220013602102002200437021402402004422088a72205450d00410020016b410020014103711b2106200541796a4100200541074b1b210741002100034002400240200120006a2d000022084118744118752209417f4a0d00418002210302402008419182c0006a2d0000417e6a220a41024d0d004101210a0c080b02400240024002400240200a0e03000102000b200041016a22082005490d024100210a0c0a0b4100210a200041016a220b20054f0d092001200b6a2d0000210b02400240200841a07e6a2208410d4b0d000240024020080e0e0002020202020202020202020201000b200b41e0017141a001460d024101210a0c0d0b0240200b411874411875417f4c0d004101210a0c0d0b200b41ff017141a001490d014101210a0c0c0b02402009411f6a41ff0171410b4b0d000240200b411874411875417f4c0d004101210a0c0d0b200b41ff017141c001490d014101210a0c0c0b0240200b41ff017141bf014d0d004101210a0c0c0b0240200941fe017141ee01460d004101210a0c0c0b200b411874411875417f4c0d004101210a0c0b0b41002103200041026a220820054f0d0a200120086a2d000041c00171418001460d020c080b4100210a200041016a220b20054f0d082001200b6a2d0000210b02400240200841907e6a220841044b0d000240024020080e050002020201000b200b41f0006a41ff01714130490d024101210a0c0c0b0240200b411874411875417f4c0d004101210a0c0c0b200b41ff0171419001490d014101210a0c0b0b0240200b41ff017141bf014d0d004101210a0c0b0b02402009410f6a41ff017141024d0d004101210a0c0b0b200b411874411875417f4c0d004101210a0c0a0b200041026a220820054f0d08200120086a2d000041c00171418001470d0741002103200041036a220820054f0d09200120086a2d000041c00171418001460d0141800621034101210a0c090b4101210a200120086a2d000041c00171418001470d080b200841016a21000c010b0240200620006b4103710d000240200020074f0d000340200120006a220841046a280200200828020072418081828478710d01200041086a22002007490d000b0b200020054f0d010340200120006a2c00004100480d022005200041016a2200470d000c040b0b200041016a21000b20002005490d000b0b2004a7210b410021030b2002200536022420022001360220200241e7e485f3063602c001200241e0016a41186a22094200370300200241e0016a41106a220a4200370300200241e0016a41086a22064200370300200242003703e00141002100200241206a410020011b21070240024020010d00410021080c010b200741046a280200210c200728020021080b200241c0016a200841e4fdc60020081b200c410020081b200241e0016a101120024180016a41186a200929030037030020024180016a41106a200a29030037030020024180016a41086a2006290300370300200220022903e001370380012002200536022420022001360220200241e2c289ab063602c00120094200370300200a420037030020064200370300200242003703e0010240024020010d000c010b200741046a2802002108200728020021000b200241c0016a200041e4fdc60020001b2008410020001b200241e0016a1012200241a0016a41186a220a200241e0016a41186a2208290300370300200241a0016a41106a2206200241e0016a41106a2207290300370300200241a0016a41086a220c200241e0016a41086a2209290300370300200220022903e0013703a0012002200536028c022002200136028802200241e9dabdf30636028402200842003703002007420037030020094200370300200242003703e0010240024020010d00410021000c010b20024188026a410020011b220041046a2802002105200028020021000b20024184026a200041e4fdc60020001b2005410020001b200241e0016a1012200241c0016a41186a22002008290300370300200241c0016a41106a22052007290300370300200241c0016a41086a22082009290300370300200241206a41086a20024180016a41086a290300370300200241206a41106a20024180016a41106a290300370300200241206a41186a20024180016a41186a290300370300200220022903e0013703c0012002200229038001370320200241d8006a200a290300370300200241d0006a2006290300370300200241c8006a200c290300370300200220022903a001370340200241f8006a2000290300370300200241f0006a2005290300370300200241e8006a2008290300370300200220022903c001370360200241003602e801200242013703e001200241206a200241e0016a10ca01200241c0006a200241e0016a10ca01200241e0006a200241e0016a10ca0120022802e801210020022802e401210720022802e001210802402003200b45720d00200110200b024002400240200041046a2201417f4c0d000240024020010d00410121050c010b2001101e2205450d020b200241003602282002200136022420022005360220200220003602e001200241e0016a200241206a1063024020022802242205200228022822016b2000490d00200228022021050c030b0240200120006a22092001490d002005410174220a2009200a20094b1b22094100480d000240024020050d002009101e21050c010b200228022020052009102221050b02402005450d0020022009360224200220053602200c040b20094101102d000b1027000b102c000b20014101102d000b200520016a2008200010cd051a200120006aad4220862005ad84210402402007450d00200810200b20024190026a240020040f0b41800421034101210a0c010b410021030b200220003602202002200a2003723602244188edc1004116200241206a41b0c2c10041a0edc100102e000b200241ec016a4104360200200241346a410236020020024202370224200241fcc3c000360220200241043602e40120024190c6c0003602e001200241003602c401200241e4fdc6003602c0012002200241e0016a3602302002200241c0016a3602e801200241206a418cc4c0001033000bb004010a7f230041d0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020422034160712204417f4c0d012002280204210502400240200341057622060d00410121070c010b2004101e2207450d030b02402005450d00410021080340200241003a00482008220941016a21082001280204417f6a21034100210402400240024003402003417f460d01200241286a20046a2001280200220a2d00003a0000200120033602042001200a41016a3602002002200441016a220a3a00482003417f6a2103200a2104200a4120470d000b200241086a41186a2204200241286a41186a290300370300200241086a41106a220a200241286a41106a290300370300200241086a41086a220b200241286a41086a2903003703002002200229032837030820062009470d020240200941017422032008200320084b1b220641ffffff3f712006470d002006410574220341004e0d020b1027000b0240200441ff0171450d00200241003a00480b200041003602002006450d04200710200c040b0240024020090d002003101e21070c010b200720094105742003102221070b2007450d060b200720094105746a22032002290308370000200341186a2004290300370000200341106a200a290300370000200341086a200b29030037000020082005470d000b0b2000200636020420002007360200200041086a20053602000b200241d0006a24000f0b102c000b20044101102d000b20034101102d000bc90101057f230041206b2202240002400240410f101e2203450d00200341076a41002900d4ca40370000200341002900cdca403700002003410f411e10222203450d012003200137000f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b410f4101102d000b411e4101102d000bde02010a7f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b20012802042203417e712204417f4c0d01200228020c210502400240200341017622060d00410221070c010b2004101e2207450d030b024002402005450d0041002103410021080340200128020422094102490d02200841016a21042001280200220a2f0000210b20012009417e6a3602042001200a41026a360200024020082006470d00024020032004200320044b1b220620066a22092006490d0020094100480d000240024020080d002009101e21070c010b200720032009102221070b20070d0120094102102d000b1027000b200720036a200b3b0100200341026a21032004210820052004470d000b0b2000200636020420002007360200200041086a20053602000c010b200041003602002006450d00200710200b200241106a24000f0b102c000b20044102102d000bbf05020e7f027e230041f0006b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441186e220341186c2204417f4c0d01200228020c21050240024020040d00410821060c010b2004101e2206450d030b024002402005450d00200241e0006a410172220741076a2108410021094100210a410021040340024002402001280204220b41024f0d004113210c0c010b2001280200220c2f0000210d2001200b417e6a3602042001200c41026a360200200241e0006a200110eb01024020022d0060220c4113470d004113210c0c010b200241c0006a41046a200241da006a41046a2f01003b0100200220072900003703482002200829000037004f2002200228015a360240200d210e0b200241286a41046a220d200241c0006a41046a2f01003b0100200220022903483703302002200229004f37003720022002280240360228200c4113460d02200441016a210b200241106a41046a220f200d2f01003b01002002200229003737001f2002200229033037031820022002280228360210024020042003470d0002402009200b2009200b4b1b2203ad42187e2210422088a70d002010a7220d4100480d000240024020040d00200d101e21060c010b2006200a200d102221060b20060d01200d4108102d000b1027000b2006200a6a2204200c3a0000200229001f211020022903182111200441106a200e3b0000200441016a2011370000200441086a2010370000200441126a2002280210360000200441166a200f2f01003b0000200941026a2109200a41186a210a200b21042005200b470d000b0b2000200336020420002006360200200041086a20053602000c010b2000410036020002402004450d002006210403402004106b200441186a2104200a41686a220a0d000b0b2003450d00200610200b200241f0006a24000f0b102c000b20044108102d000bf70d050f7f017e057f017e027f230041f0006b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441306e220341306c2204417f4c0d02200228020c21050240024020040d00410821060c010b2004101e2206450d020b024002402005450d00200241d9006a41036a21074100210841002109410021040340024002402001280204220a0d004113210b0c010b2001280200220c2d0000210d2001200a417f6a220e3602042001200c41016a220f3602000240200d41124d0d004113210b0c010b4100210b02400240024002400240024002400240024002400240024002400240024002400240024002400240200d0e1313000102030405060708090a0b0c0d0e0f1011130b4101210b0c120b4102210b0c110b4103210b0c100b4104210b0c0f0b4105210b0c0e0b4106210b0c0d0b4107210b0c0c0b0240200e41024f0d004113210b0c0d0b200c2f000121102001200a417d6a220e3602042001200c41036a220f3602004108210b0c0a0b0240200e41084f0d004113210b0c0c0b200c29000121112001200a41776a220e3602044109210b2001200c41096a220f3602000c0a0b0240200e41024f0d004113210b0c0b0b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410a210b0c080b0240200e41024f0d004113210b0c0a0b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410b210b0c070b0240200e41024f0d004113210b0c090b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410c210b0c060b0240200e41024f0d004113210b0c080b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410d210b0c050b0240200e41024f0d004113210b0c070b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410e210b0c040b0240200e41024f0d004113210b0c060b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410f210b0c030b0240200e41024f0d004113210b0c050b200c2f000121102001200a417d6a220e3602042001200c41036a220f3602004110210b0c020b0240200e41024f0d004113210b0c040b200c2f000121102001200a417d6a220d3602042001200c41036a3602000240200d41024f0d004113210b0c040b200c2f000321122001200a417b6a220e3602042001200c41056a220f3602004111210b0c020b0240200e41024f0d004113210b0c030b200c2f000121102001200a417d6a220d3602042001200c41036a3602000240200d41084f0d004113210b0c030b200c29000321112001200a41756a220e3602042001200c410b6a220f3602004112210b0b0b0240200e0d004113210b0c010b200f2d0000210d2001200e417f6a3602042001200f41016a3602000240200d41014d0d004113210b0c010b4100210a02400240200d0e020100010b4101210a0b200241e0006a200110b70102402002280260220d0d004113210b0c010b2002280268210c2002280264210e200241e0006a200110b70102402002280260450d00200241c8006a41086a200241e0006a41086a280200360200200220022903603703482002200228005936024020022007280000360043200a2113200c2114200e2115200d21162011211720122118201021190c010b0240200e0d004113210b0c010b200d10204113210b0b200241306a41086a220a200241c8006a41086a28020036020020022002290348370330200220022802403602282002200228004336002b200b4113460d02200441016a210d200241186a41086a220e200a28020036020020022002290330370318200220022802283602102002200228002b360013024020042003470d0002402008200d2008200d4b1b2203ad42307e2211422088a70d002011a7220a4100480d000240024020040d00200a101e21060c010b20062009200a102221060b20060d01200a4108102d000b1027000b200620096a2204200b3b0100200441186a2014360100200441146a2015360100200441106a2016360100200441086a2017370100200441046a20183b0100200441026a20193b0100200e280200210b20022903182111200441286a20133a00002004411c6a2011370100200441246a200b360100200441296a20022802103600002004412c6a2002280013360000200841026a2108200941306a2109200d21042005200d470d000b0b2000200336020420002006360200200041086a20053602000c010b2000410036020002402004450d00200641206a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441306a2104200941506a22090d000b0b2003450d00200610200b200241f0006a24000f0b20044108102d000b102c000b34002000419de5c10036020420004100360200200041146a4108360200200041106a41f8d5c000360200200041086a420e3702000bb80101027f230041106b220224002002410036020820024201370300024002404108101e2203450d00200342003700002002428880808080013702042002200336020020034108411010222203450d0120034200370008200242908080808002370204200220033602002002410036020c2002410c6a200210632002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000f0b41084101102d000b41104101102d000ba70101027f230041106b22022400200241003602082002420137030002404108101e2203450d0020034200370000200242888080808001370204200220033602002002410036020c2002410c6a200210632002410036020c2002410c6a200210632002410036020c2002410c6a200210632002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000f0b41084101102d000bb01703057f017e067f230041d0006b220224000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200200541124b0d1320050e130102030405060708090a0b0c0d0e0f10111214010b200041133a00000c240b200041003a00000c230b02402006450d0020042d0001210520012003417e6a3602042001200441026a360200200541014b0d00410021010240024020050e020100010b410121010b200020013a0001200041013a0000200041026a2002290120370100200041086a200241266a2901003701000c230b200041133a00000c220b024020064102490d0020042f0001210520012003417d6a3602042001200441036a360200200041026a20053b0100200041023a0000200041046a20022902203702002000410c6a200241286a2802003602000c220b200041133a00000c210b024020064104490d002004280001210520012003417b6a3602042001200441056a360200200041033a0000200020022f00203b0001200041046a2005360200200041036a200241226a2d00003a00000c210b200041133a00000c200b024020064108490d00200429000121072001200341776a3602042001200441096a360200200041043a000020002002280020360001200041086a2007370300200041046a200241236a2800003600000c200b200041133a00000c1f0b024020064102490d0020042f0001210520012003417d6a3602042001200441036a360200200041026a20053b0100200041053a0000200041046a20022902203702002000410c6a200241286a2802003602000c1f0b200041133a00000c1e0b024020064104490d002004280001210520012003417b6a3602042001200441056a360200200041063a0000200020022f00203b0001200041046a2005360200200041036a200241226a2d00003a00000c1e0b200041133a00000c1d0b024020064108490d00200429000121072001200341776a3602042001200441096a360200200041073a000020002002280020360001200041086a2007370300200041046a200241236a2800003600000c1d0b200041133a00000c1c0b200241c0006a200110b70120022802400d0b200041133a00000c1b0b024020064108490d00200429000121072001200341776a3602042001200441096a360200200041093a000020002002280020360001200041086a2007370300200041046a200241236a2800003600000c1b0b200041133a00000c1a0b20022001105f024020022802000d0020012802042208417f4c0d14200228020421090240024020080d00410121060c010b2008101e2206450d160b02402009450d0041002104410021050340024002402001280204220a450d002001280200220b2d000021032001200a417f6a3602042001200b41016a360200200341014b0d004100210a0240024020030e020100010b4101210a0b200541016a210320052008470d0120042003200420034b1b22084100480d1d0240024020050d002008101e21060c010b200620052008102221060b20060d0120084101102d000b2008450d03200610200c030b200620056a200a3a0000200441026a21042003210520092003470d000b0b20060d0b0b200041133a00000c190b200241c0006a200110e50120022802400d0a200041133a00000c180b200241c0006a200110c10120022802400d0a200041133a00000c170b200241c0006a200110ec0120022802400d0a200041133a00000c160b200241086a2001105f024020022802080d0020012802042205417e712203417f4c0d10200228020c210c02400240200541017622060d00410221080c010b2003101e2208450d130b0240200c450d0041002105410021040340024002402001280204220a4102490d00200441016a21032001280200220b2f000021092001200a417e6a3602042001200b41026a36020020042006470d0120052003200520034b1b220620066a220a2006490d19200a4100480d190240024020040d00200a101e21080c010b20082005200a102221080b20080d01200a4102102d000b2006450d03200810200c030b200820056a20093b0100200541026a210520032104200c2003470d000b0b20080d0b0b200041133a00000c150b200241106a2001105f024020022802100d0020012802042205417c712203417f4c0d0f2002280214210d02400240200541027622080d004104210a0c010b2003101e220a450d130b0240200d450d004100210641002104410021030340024002402001280204220b4104490d00200341016a210520012802002209280000210c2001200b417c6a3602042001200941046a36020020032008470d0120062005200620054b1b220841ffffffff03712008470d182008410274220b4100480d180240024020030d00200b101e210a0c010b200a2004200b1022210a0b200a0d01200b4104102d000b2008450d03200a10200c030b200a20046a200c360200200641026a2106200441046a210420052103200d2005470d000b0b200a0d0b0b200041133a00000c140b200241186a2001105f024020022802180d00200128020422054178712203417f4c0d0e200228021c210c02400240200541037622080d004108210a0c010b2003101e220a450d130b0240200c450d004100210641002104410021030340024002402001280204220b4108490d00200341016a21052001280200220929000021072001200b41786a3602042001200941086a36020020032008470d0120062005200620054b1b220841ffffffff01712008470d172008410374220b4100480d170240024020030d00200b101e210a0c010b200a2004200b1022210a0b200a0d01200b4108102d000b2008450d03200a10200c030b200a20046a2007370300200641026a2106200441086a210420052103200c2005470d000b0b200a0d0b0b200041133a00000c130b200241c0006a200110ed0120022802400d0a200041133a00000c120b200041133a00000c110b200241c0006a200110ec0120022802400d09200041133a00000c100b2002412b6a200241c0006a41086a28020036000020022002290340370023200041083a000020002002290020370001200041086a200241276a2900003700000c0f0b2000410a3a0000200020022f00203b00012000410c6a2009360000200041086a2008360000200041046a2006360000200041036a200241226a2d00003a00000c0e0b200241206a410b6a200241c0006a41086a280200360000200220022903403700232000410b3a000020002002290020370001200041086a200241276a2900003700000c0d0b2002412b6a200241c0006a41086a280200360000200220022903403700232000410c3a000020002002290020370001200041086a200241276a2900003700000c0c0b2002412b6a200241c0006a41086a280200360000200220022903403700232000410d3a000020002002290020370001200041086a200241276a2900003700000c0b0b2000410e3a0000200020022f00203b00012000410c6a200c360000200041086a2006360000200041046a2008360000200041036a200241226a2d00003a00000c0a0b2000410f3a0000200020022f00203b00012000410c6a200d360000200041086a2008360000200041046a200a360000200041036a200241226a2d00003a00000c090b200041103a0000200020022f00203b00012000410c6a200c360000200041086a2008360000200041046a200a360000200041036a200241226a2d00003a00000c080b2002412b6a200241c0006a41086a28020036000020022002290340370023200041113a000020002002290020370001200041086a200241276a2900003700000c070b2002412b6a200241c0006a41086a28020036000020022002290340370023200041123a000020002002290020370001200041086a200241276a2900003700000c060b102c000b20084101102d000b20034102102d000b20034104102d000b20034108102d000b1027000b200241d0006a24000bf202020a7f017e230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020422034178712204417f4c0d01200228020c210502400240200341037622060d00410821070c010b2004101e2207450d030b024002402005450d0041002108410021094100210403402001280204220a4108490d02200441016a21032001280200220b290000210c2001200a41786a3602042001200b41086a360200024020042006470d00024020082003200820034b1b220641ffffffff01712006470d002006410374220a4100480d000240024020040d00200a101e21070c010b20072009200a102221070b20070d01200a4108102d000b1027000b200720096a200c370300200841026a2108200941086a21092003210420052003470d000b0b2000200636020420002007360200200041086a20053602000c010b200041003602002006450d00200710200b200241106a24000f0b102c000b20044108102d000b9f0303097f027e017f230041206b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b2001280204410c6e2203410c6c2204417f4c0d01200228020c21050240024020040d00410421060c010b2004101e2206450d030b024002402005450d004100210741002104410021080340200241106a200110b70120022802102209450d02200841016a210a2002290214210b024020082003470d0002402007200a2007200a4b1b2203ad420c7e220c422088a70d00200ca7220d4100480d000240024020080d00200d101e21060c010b20062004200d102221060b20060d01200d4104102d000b1027000b200620046a22082009360200200841046a200b370200200741026a21072004410c6a2104200a21082005200a470d000b0b2000200336020420002006360200200041086a20053602000c010b2000410036020002402008450d002006210a03400240200a41046a280200450d00200a28020010200b200a410c6a210a200441746a22040d000b0b2003450d00200610200b200241206a24000f0b102c000b20044104102d000b3400200041b2e1c00036020420004100360200200041146a4102360200200041106a41bce1c000360200200041086a42093702000b880101017f0240024002404110101e2202450d00200242003700082002420037000020024110412010222202450d0120024100360011200241003a00102002412041c00010222202450d0220024200370015200042c0808080d004370204200020023602002002411d6a42003700000f0b41104101102d000b41204101102d000b41c0004101102d000b3400200041c8e4c10036020420004100360200200041146a4101360200200041106a41fce3c000360200200041086a42183702000b100020002802002000280204200110520b0d00200141c8abc3004102103c0bfb0505027f027e017f027e027f230041a0016b220224002000280200210002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0220054290ce005441002004501b450d012005a72103412721000c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d02200141908ac0004102200241206a20006a41800120006b103821000c060b41272100200241186a21060340200241106a200520044290ce00420010d3052002200229031022072006290300220842f0b17f427f10d205200241206a20006a2203417c6a200520022903007ca7220941ffff037141e4006e220a41017441e684c0006a2f00003b00002003417e6a200a419c7f6c20096a41ffff037141017441e684c0006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000c040b0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d01200141908ac0004102200241206a20006a41800120006b103821000c040b2000418001103b000b2000418001103b000b2007a721030b02400240200341e3004a0d00200321090c010b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff037141017441e684c0006a2f00003b00000b024002402009410a480d00200241206a2000417e6a22006a200941017441e684c0006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141e4fdc6004100200241206a20006a412720006b103821000b200241a0016a240020000bb90202027f017e23004180016b220224002000280200210002400240024002400240200128020022034110710d002000290300210420034120710d0120042001103521000c020b20002903002104410021000340200220006a41ff006a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b20004180016a22034181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b20004180016a22034181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2003418001103b000b2003418001103b000b8b0902057f017e230041106b2202240020024100360208200242013703002000412c6a200210ca01200028020821030240024002400240024002400240024020022802042204200228020822056b4104490d00200228020021040c010b200541046a22062005490d05200441017422052006200520064b1b22054100480d050240024020040d002005101e21040c010b200228020020042005102221040b2004450d012002200536020420022004360200200228020821050b2002200541046a360208200420056a2003360000200029030021070240024020022802042204200228020822056b4108490d00200228020021040c010b200541086a22032005490d05200441017422052003200520034b1b22054100480d050240024020040d002005101e21040c010b200228020020042005102221040b2004450d022002200536020420022004360200200228020821050b2002200541086a360208200420056a2007370000200029031021070240024020022802042204200228020822056b4108490d00200228020021040c010b200541086a22032005490d05200441017422052003200520034b1b22054100480d050240024020040d002005101e21040c010b200228020020042005102221040b2004450d032002200536020420022004360200200228020821050b2002200541086a360208200420056a200737000020002903182107024020022802042204200228020822056b4108490d00200228020021040c040b200541086a22032005490d04200441017422052003200520034b1b22054100480d040240024020040d002005101e21040c010b200228020020042005102221040b02402004450d002002200536020420022004360200200228020821050c040b20054101102d000b20054101102d000b20054101102d000b20054101102d000b2002200541086a360208200420056a2007370000200041cc006a200210ca01024020002d006c220541024b0d00024002400240024020050e03000102000b410021040c020b410121040c010b410221040b200220043a000c02400240200228020420022802082205460d00200228020021030c010b200541016a22032005490d02200541017422062003200620034b1b22064100480d020240024020050d002006101e21030c010b200228020020052006102221030b02402003450d002002200636020420022003360200200228020821050c010b20064101102d000b2002200541016a360208200320056a20043a00000b200028022021032002200041286a280200220036020c2002410c6a20021063024020022802042204200228020822056b2000490d00200228020021040c020b200520006a22062005490d00200441017422052006200520064b1b22054100480d000240024020040d002005101e21040c010b200228020020042005102221040b02402004450d002002200536020420022004360200200228020821050c020b20054101102d000b1027000b2002200520006a360208200420056a2003200010cd051a2002280204210020012802002001280204200228020022052002280208100502402000450d00200510200b200241106a24000bee0803077f037e027f230041b0016b2202240041002103200241003a00a80120012802042104417f2105024002400240034020042003460d0120024188016a20036a200128020022062d00003a00002001200420056a3602042001200641016a3602002002200341016a22073a00a8012005417f6a21052007210320074120470d000b200241186a41086a20024188016a41086a290300370300200241186a41106a20024188016a41106a290300370300200241186a41186a20024188016a41186a29030037030020022002290388013703180240200420076b22044104490d00200628000121082001200641056a36020020012004417c6a2203360204200341084f0d020b200041033a006c0c020b0240200341ff0171450d00200241003a00a8010b200041033a006c0c010b2006290005210920012006410d6a3602002001200441746a22033602040240024002400240024020034108490d00200629000d210a2001200641156a36020020012004416c6a220336020420034108490d012006290015210b20012006411d6a3602002001200441646a220c36020441002103200241003a00a801200441636a21050340200c2003460d0320024188016a20036a200620036a2207411d6a2d00003a00002001200536020420012007411e6a3602002002200341016a22073a00a8012005417f6a21052007210320074120470d000b200241386a41086a20024188016a41086a290300370300200241386a41106a20024188016a41106a290300370300200241386a41186a20024188016a41186a2903003703002002200229038801370338200441646a2007460d03200620076a2207411d6a2d000021032001200536020420012007411e6a360200200341034f0d03200241d8006a200110b70120022802580d04200041033a006c0c050b200041033a006c0c040b200041033a006c0c030b0240200341ff0171450d00200241003a00a8010b200041033a006c0c020b200041033a006c0c010b200241086a41086a2201200241d8006a41086a28020036020020024188016a41086a2205200241186a41086a29030037030020024188016a41106a2207200241186a41106a29030037030020024188016a41186a2204200241186a41186a290300370300200241e8006a41086a2206200241386a41086a290300370300200241e8006a41106a220c200241386a41106a290300370300200241e8006a41186a220d200241386a41186a290300370300200220022903583703082002200229031837038801200220022903383703682000200b3703182000200a370310200020083602082000200937030020002002290308370320200041286a2001280200360200200020022903880137022c200041346a20052903003702002000413c6a2007290300370200200041c4006a20042903003702002000200229036837024c200041d4006a2006290300370200200041dc006a200c290300370200200041e4006a200d290300370200200020033a006c200041ef006a2002413a6a2d00003a0000200020022f00383b006d0b200241b0016a24000b3400200041eee4c10036020420004100360200200041146a4103360200200041106a41c0e6c000360200200041086a420d3702000bad0a01067f23004180046b2204240002400240024002404123101e2205450d00200541002900fee9403700002005411f6a410028009dea40360000200541186a4100290096ea40370000200541106a410029008eea40370000200541086a4100290086ea40370000200442a3808080b004370294032004200536029003200420044190036a3602082002200441086a10b90120042802900321052004280298032106200441f0016a41186a22074200370300200441f0016a41106a22084200370300200441f0016a41086a22094200370300200442003703f00120052006200441f0016a1001200441e0026a41186a2007290300370300200441e0026a41106a2008290300370300200441e0026a41086a2009290300370300200420042903f0013703e0020240200428029403450d0020042802900310200b2004410036029003200441e0026a412020044190036a100321072004280290032208417f460d022007450d02200420083602f401200420073602f00120044190036a200441f0016a10f60120042d00fc0322064103460d012004280290032105200441086a20044190036a41047241e80010cd051a200441de026a200441ff036a2d00003a0000200420042f00fd033b01dc022008450d03200710200c030b41234101102d000b41ceb8c4004133200441086a41fcbfc4004184b9c400102e000b410321060b20044190036a200441086a41e80010cd051a20044180036a41026a2207200441dc026a41026a2d00003a0000200420042f01dc023b0180030240024020064103470d0041012107411f21050c010b200441f0016a20044190036a41e80010cd051a200441ec016a41026a20072d00003a0000200420042f0180033b01ec01410021070b20044180016a200441f0016a41e80010cd051a200441fc006a41026a200441ec016a41026a2d00003a0000200420042f01ec013b017c024002402007450d0041f3cac00021020c010b20042005360208200441086a41047220044180016a41e80010cd051a200441f7006a200441fe006a2d00003a0000200420063a0074200420042f017c3b00750240200441d4006a22052001460d0020052001412010cf05450d004192cbc0002102413721052004412c6a280200450d01200428022810200c010b200420033a007420044190036a200441086a41f00010cd051a20044180016a41186a200241186a29000037030020044180016a41106a200241106a29000037030020044180016a41086a200241086a290000370300200420022900003703800102404123101e2205450d00200541002900fee9403700002005411f6a410028009dea40360000200541186a4100290096ea40370000200541106a410029008eea40370000200541086a4100290086ea40370000200442a3808080b004370284032004200536028003200420044180036a3602f00120044180016a200441f0016a10b90120042802800321052004280288032102200441f0016a41186a22064200370300200441f0016a41106a22074200370300200441f0016a41086a22084200370300200442003703f00120052002200441f0016a1001200441e0026a41186a2006290300370300200441e0026a41106a2007290300370300200441e0026a41086a2008290300370300200420042903f0013703e0020240200428028403450d0020042802800310200b200441203602f4012004200441e0026a3602f00120044190036a200441f0016a10f5010240200441b4036a280200450d0020042802b00310200b410021020c010b41234101102d000b200020053602042000200236020020044180046a24000b130020004107360204200041a4ebc0003602000b3400200041fbe4c10036020420004100360200200041146a4107360200200041106a41d0f0c000360200200041086a42193702000bb11903087f027e077f230041f0036b2204240041042105200141046a280000210620012d00002107200441b0016a41026a2208200141036a2d00003a000020044188026a41086a2209200141186a29000037030020044188026a41106a220a200141206a2d00003a0000200420012f00013b01b0012004200141106a290000370388024101210b200141086a290000210c024020074101470d00200441f0006a41026a20082d00003a0000200441286a41086a2009290300370300200441286a41106a200a2d00003a0000200420042f01b0013b017020042004290388023703284100210b200621050b200441b0036a41026a200441f0006a41026a2d00003a0000200441f8026a41086a200441286a41086a290300370300200441f8026a41106a200441286a41106a2d00003a0000200420042f01703b01b003200420042903283703f802024002400240024002400240200b0d002004411f6a200441f8026a41086a290300370000200441086a411f6a200441f8026a41106a2d00003a0000200420042f01b0033b01082004200c37000f2004200536000b200420042903f8023700172004200441b2036a2d00003a000a4127101e2201450d012001411f6a41002900eff840370000200141186a41002900e8f840370000200141106a41002900e0f840370000200141086a41002900d8f840370000200141002900d0f8403700002001412741ce0010222201450d0220012002370027200441b0036a41186a22054200370300200441b0036a41106a220b4200370300200441b0036a41086a22074200370300200442003703b0032001412f200441b0036a1001200441e8016a41186a2005290300370300200441e8016a41106a200b290300370300200441e8016a41086a2007290300370300200420042903b0033703e801200110202004410036028802200441e8016a412020044188026a1003210b2004280288022207417f460d03200b450d0341002101200441003a00980302400240024002400240034020072001460d01200441f8026a20016a200b20016a2d00003a00002004200141016a22053a0098032005210120054120470d000b200441b0036a41186a200441f8026a41186a290300220c370300200441b0036a41106a200441f8026a41106a290300370300200441b0036a41086a200441f8026a41086a290300370300200420042903f802220d3703b003200441ee036a20042d00b2033a0000200441dd036a200c370000200441d0036a41086a200441c3036a2900003703002004200d3d01ec03200420042900bb033703d00320042800b303210920042800b703210a41002101200441003a009803200720056b2106200b20056a2108034020062001460d02200441f8026a20016a200820016a2d00003a00002004200141016a22053a0098032005210120054120470d000b200441b0016a41086a200441f8026a41086a290300370300200441b0016a41106a200441f8026a41106a290300370300200441b0016a41186a200441f8026a41186a290300370300200420042903f8023703b00120062005460d02200820056a2d0000220541014b0d024100210120050e020403040b200141ff0171450d01200441003a0098030c010b200141ff0171450d00200441003a0098030b41ceb8c400413320044188026a41fcbfc4004184b9c400102e000b410121010b20044188026a41086a2205200441d0036a41086a29030037030020044188026a410d6a200441d0036a410d6a290000370000200441a5026a200441b0016a41086a2206290300370000200441ad026a200441b0016a41106a220829030037000020044188026a412d6a220e200441b0016a41186a220f290300370000200420042f01ec033b01b003200420042903d00337038802200420042903b00137009d022004200441ec036a41026a2d00003a00b203200441f8026a41086a22102005290300370300200441f8026a41106a220520044188026a41106a290300370300200441f8026a41186a221120044188026a41186a290300370300200441f8026a41206a221220044188026a41206a290300370300200441f8026a41286a221320044188026a41286a290300370300200441f8026a412d6a2214200e29000037000020042004290388023703f802200441d0036a41026a20042d00b2033a0000200420042f01b0033b01d003200441b0016a412d6a2014290000370000200441b0016a41286a2013290300370300200441b0016a41206a2012290300370300200f20112903003703002008200529030037030020062010290300370300200420042903f8023703b0012007450d04200b10200c040b419affc6002109410f210a02400240024002400240024020050e070001020304050a000b200c422088a7210a200ca721090c090b418cffc6002109410e210a0c080b4180ffc6002109410c210a0c070b41f7fec60021094109210a0c060b41e4fec60021094113210a0c050b41d3fec60021094111210a0c040b41274101102d000b41ce004101102d000b410221010b200441b0036a41026a2205200441d0036a41026a2d00003a000020044188026a41086a220b200441b0016a41086a29030037030020044188026a41106a2207200441b0016a41106a29030037030020044188026a41186a2206200441b0016a41186a29030037030020044188026a41206a2208200441b0016a41206a29030037030020044188026a41286a220e200441b0016a41286a29030037030020044188026a412d6a220f200441b0016a412d6a290000370000200420042f01d0033b01b003200420042903b001370388020240024020014102470d00410121054136210a41afccc00021090c010b200441ec036a41026a20052d00003a0000200441f8026a41086a200b290300370300200441f8026a41106a2007290300370300200441f8026a41186a2006290300370300200441f8026a41206a2008290300370300200441f8026a41286a200e290300370300200441f8026a412d6a200f290000370000200420042f01b0033b01ec0320042004290388023703f802410021050b200441ac016a41026a200441ec036a41026a2d00003a0000200441f0006a41086a200441f8026a41086a290300370300200441f0006a41106a200441f8026a41106a290300370300200441f0006a41186a200441f8026a41186a290300370300200441f0006a41206a200441f8026a41206a290300370300200441f0006a41286a200441f8026a41286a290300370300200441f0006a412d6a200441f8026a412d6a290000370000200420042f01ec033b01ac01200420042903f80237037020050d002004413b6a200441f8006a290300370000200441c3006a20044180016a290300370000200441cb006a20044188016a290300370000200441d3006a200441f0006a41206a290300370000200441db006a20044198016a290300370000200441e0006a2004419d016a290000370000200420042f01ac013b01282004200a36002f2004200936002b200420042903703700332004200441ae016a2d00003a002a200420013a00680240200441286a41206a200441086a412010cf05450d0041a9cdc000210941c500210a0c010b200420033a006820044188026a200441286a41c10010cd051a0240024002404127101e2201450d002001411f6a41002900eff840370000200141186a41002900e8f840370000200141106a41002900e0f840370000200141086a41002900d8f840370000200141002900d0f8403700002001412741ce0010222201450d0120012002370027200441b0036a41186a22054200370300200441b0036a41106a220b4200370300200441b0036a41086a22074200370300200442003703b0032001412f200441b0036a1001200441e8016a41186a2005290300370300200441e8016a41106a200b290300370300200441e8016a41086a2007290300370300200420042903b0033703e801200110202004410036028003200442013703f8022004200441f8026a3602b00120044188026a200441b0016a10b901200441a8026a200441f8026a10ca0120042d00c802210b024020042802fc022004280280032201460d0020042802f80221050c030b0240200141016a22052001490d00200141017422072005200720054b1b22074100480d000240024020010d002007101e21050c010b20042802f80220012007102221050b02402005450d00200420073602fc02200420053602f80220042802800321010c040b20074101102d000b1027000b41274101102d000b41ce004101102d000b2004200141016a36028003200520016a200b3a000020042802fc022101200441e8016a412020042802f8022205200428028003100502402001450d00200510200b20044198026a200237030020044190026a4181023b0100200441133a00880220044188026a1077410021090b2000200a36020420002009360200200441f0036a24000b130020004103360204200041f8f9c0003602000ba50a030e7f027e037f230041f0006b2202240020022001105f02400240024002402002280200450d00200041003602000c010b200128020441246e220341246c2204417f4c0d02200228020421050240024020040d00410421060c010b2004101e2206450d020b024002400240024020050d00410021040c010b200241356a2107200241db006a220841056a21094100210a4100210b03400240024002402001280204220c450d002001280200220d2d000021042001200c417f6a220e3602042001200d41016a360200200441064b0d000240024002400240024020040e0704050005020301040b41002104200241003a0068200c417e6a210c02400340200e2004460d01200241c8006a20046a200d20046a220f41016a2d00003a00002001200c3602042001200f41026a3602002002200441016a220f3a0068200c417f6a210c200f2104200f4120470d000b200220082900003703282002200929000037002d200228004f210d200228004b210f20022f0148210420022d004a210c20022900532110200741026a200241386a41026a2d00003a0000200720022f00383b000020104280808080708321112004200c41107472210c2010a72112410021130c070b200441ff0171450d04200241003a00680c040b200241c8006a200110e503200228024c220d450d0320022f014820022d004a41107472210c20022903502210428080808070832111200f41807e7120022d004b72210f2010a72112410121130c050b200241c8006a200110e503200228024c220d450d0220022f014820022d004a41107472210c20022903502210428080808070832111200f41807e7120022d004b72210f2010a72112410221130c040b200241c8006a200110e503200228024c220d450d0120022f014820022d004a41107472210c20022903502210428080808070832111200f41807e7120022d004b72210f2010a72112410321130c030b200241386a200110b7012002280238220f0d010b200241186a41086a200241286a41086a29030037030020022002290328370318200041003602000240200b450d002006210403400240024020042d0000220141034b0d0002400240024020010e0404000102040b2004410c6a280200450d03200441086a28020010200c030b2004410c6a280200450d02200441086a28020010200c020b2004410c6a280200450d01200441086a28020010200c010b200441086a280200450d00200441046a28020010200b200441246a2104200a415c6a220a0d000b0b2003450d06200610200c060b20022802402112200228023c210d200241286a41086a200241c8006a41086a2902003703002002200229024837032841042113420021110b200241186a41086a200241286a41086a2903002210370300200241086a41086a220e2010370300200220022903282210370318200220103703080240200b2003470d00200341016a22042003490d04200341017422142004201420044b1b2204ad42247e2210422088a70d042010a722144100480d040240024020030d002014101e21060c010b2006200341246c2014102221060b2006450d03200421030b2006200b41246c6a220420112012ad8437000c2004200d3600082004200f3600042004200c3b0001200420133a0000200441036a200c4110763a0000200420022903083700142004411c6a200e290300370000200a41246a210a200b41016a2204210b20042005470d000b0b2000200336020420002006360200200041086a20043602000c020b20144104102d000b1027000b200241f0006a24000f0b20044104102d000b102c000bf10805047f017e047f027e047f230041d0006b22012400200141186a41086a220242003703002001420037031841b7fcc000410d200141186a1000200141086a41086a20022903003703002001200129031837030820014100360218200141086a4110200141186a100321020240024020012802182203417f460d002002450d002001200336024420012002360240200141186a200141c0006a10fd01024020012802182204450d00200129021c210502402003450d00200210200b2005422088a721062005a721030c020b41ceb8c4004133200141186a41fcbfc4004184b9c400102e000b410421044100210642002105410021030b200141186a41206a2207200041206a280200360200200141186a41186a2208200041186a290200370300200141186a41106a2209200041106a290200370300200141186a41086a2202200041086a2902003703002001200029020037031802400240024020062003470d00024020062005a7470d00200641016a22002006490d03200641017422032000200320004b1bad220a42247e220b422088a70d03200ba722004100480d030240024020060d002000101e21040c010b2004200641246c2000102221040b2004450d02200542808080807083200a8421050b2005422088a721060b2004200641246c6a22002001290318370200200041206a2007280200360200200041186a2008290300370200200041106a2009290300370200200041086a2002290300370200200242003703002001420037031841b7fcc000410d200141186a1000200141086a41086a20022903003703002001200129031837030820014100360248200142013703402001200641016a220c360218200141186a200141c0006a106302400240200c20064f0d002001280248210220012802442109200128024021070c010b2004200c41246c6a210d2001280244210920012802482100200421030340200141186a200310a9012001280218210e02400240200920006b20012802202208490d00200020086a2102200128024021070c010b200020086a22022000490d04200941017422072002200720024b1b220f4100480d040240024020090d00200f101e21070c010b20012802402009200f102221070b02402007450d002001200f36024420012007360240200f21090c010b200f4101102d000b200341246a210320012002360248200720006a200e200810cd051a0240200128021c450d00200e10200b20022100200d2003470d000b0b200141086a411020072002100502402009450d00200710200b0240200c450d00200641246c41246a21022004210003400240024020002d0000220341034b0d0002400240024020030e0404000102040b2000410c6a280200450d03200041086a28020010200c030b2000410c6a280200450d02200041086a28020010200c020b2000410c6a280200450d01200041086a28020010200c010b200041086a280200450d00200041046a28020010200b200041246a21002002415c6a22020d000b0b02402005a7450d00200410200b200141d0006a24000f0b20004104102d000b1027000bf80201037f024020002802082201450d002000280200220020014188016c6a210203400240024020002d0000220141154b0d00024002400240024020010e1605050505050001020505050505050505050505050305050b200041046a2802000d042000410c6a280200450d04200041086a28020010200c040b200041046a2d00004102490d030240200041106a2802002201450d00200141d0006c2103200041086a28020041c0006a210103400240200141046a280200450d00200128020010200b200141d0006a2101200341b07f6a22030d000b0b2000410c6a280200450d03200028020810200c030b200041086a280200450d02200041046a28020010200c020b200041046a2d00000d012000412c6a280200450d01200041286a28020010200c010b200041086a2d00004107470d002000410c6a280200200041106a280200200041146a2802001083020b20004188016a21010240200041fc006a280200450d00200028027810200b2001210020012002470d000b0b0b9f0301027f230041e0006b22032400200341003a00050240024002400240200041c000490d00200041808001490d012000418080808004490d0241052104200341053a0005200341033a0000200320003600010c030b41012104200341013a0005200320004102743a00000c020b41022104200341023a0005200320004102744101723b01000c010b41042104200341043a0005200320004102744102723602000b024002402001280200220028020822012002490d0020002802002100200320023602082003200436020c20042002470d0120002003200210cd051a200341e0006a24000f0b20022001103a000b200341286a41146a4108360200200341346a4109360200200341106a41146a41033602002003200341086a36024020032003410c6a360244200341c8006a41146a41003602002003420337021420034190fbc6003602102003410936022c200341e4fdc6003602582003420137024c200341e4fbc6003602482003200341286a3602202003200341c8006a3602382003200341c4006a3602302003200341c0006a360228200341106a41a0fcc6001033000b870501057f230041106b2202240002400240024002400240024020002802704101460d0002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200028027421060240200141046a2802002204200528020022036b4104490d00200128020021040c050b200341046a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c050b20034101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c030b200341016a22042003490d00200341017422052004200520044b1b22054100480d000240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c030b20054101102d000b1027000b20054101102d000b200141086a200341016a360200200420036a41013a00000c010b200141086a200341046a360200200420036a20063600000b2000200110890220002802782103200220004180016a280200220036020c2002410c6a2001106302402000450d00200041057421000340200220013602082003200241086a10b901200341206a2103200041606a22000d000b0b200241106a24000bc50201027f0240024020002d0000220141154b0d00024002400240024020010e1605050505050001020505050505050505050505050305050b200041046a2802000d042000410c6a280200450d04200041086a28020010200c040b200041046a2d00004102490d030240200041106a2802002201450d00200141d0006c2102200041086a28020041c0006a210103400240200141046a280200450d00200128020010200b200141d0006a2101200241b07f6a22020d000b0b2000410c6a280200450d03200028020810200c030b200041086a280200450d02200041046a28020010200c020b200041046a2d00000d012000412c6a280200450d01200041286a28020010200c010b200041086a2d00004107470d002000410c6a280200200041106a280200200041146a2802001083020b0240200041fc006a280200450d00200028027810200b0b990303027f017e017f02402001450d00034020002802b80121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41bc016a2802002100410021032006417f6a2201450d01034020002802b80121002001417f6a22010d000c020b0b200341016a21030b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0b130020004107360204200041a4fec0003602000b3400200041f8e3c10036020420004100360200200041146a410d360200200041106a41d085c100360200200041086a42063702000b5f01017f230041206b22022400200241003602082002420837030020024100360218200242013703102002410036021c2002411c6a200241106a1063200041086a200228021836020020002002290310370200200210ff01200241206a24000b7201017f230041306b22022400200241186a4200370300200241106a4200370300200241086a42003703002002420037030020024100360228200242013703202002200241206a36022c20022002412c6a10b901200041086a200228022836020020002002290320370200200241306a24000bf40102047f017e230041306b22012400200141206a41086a220242003703002001420037032041b7fcc000410d200141206a1000200141086a41086a20022903003703002001200129032037030820014100360220200141086a4110200141206a100321020240024020012802202203417f460d002002450d002001200336021c20012002360218200141206a200141186a10fd01024020012802202204450d002001290224210502402003450d00200210200b20002005370204200020043602000c020b41ceb8c4004133200141206a41fcbfc4004184b9c400102e000b20004100360208200042043702000b200141306a24000bbbbe0204067f017e047f017e230041106b22022400024020002d0000220341164b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e17000102030405060708090a0b0c0d0e0f10111213141516000b0240200141046a280200200141086a2802002203460d00200128020021040c3f0b200341016a22052003490d3f200341017422042005200420054b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3f0b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d3f200341017422042005200420054b1b22044100480d3f0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41013a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d3f200341017422042005200420054b1b22044100480d3f0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1720012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041086a200110ca01200028020421050240200141046a2802002203200428020022006b4104490d00200128020021030c3d0b200041046a22042000490d3e200341017422002004200020044b1b22004100480d3e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c3d0b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c3b0b200341016a22052003490d3d200341017422042005200420054b1b22044100480d3d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c3b0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c390b200341016a22052003490d3c200341017422042005200420054b1b22044100480d3c0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c390b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d3c200341017422042005200420054b1b22044100480d3c0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1520012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41043a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d3c200341017422042005200420054b1b22044100480d3c0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200028020421050240200141046a2802002203200428020022006b4104490d00200128020021030c370b200041046a22042000490d3b200341017422002004200020044b1b22004100480d3b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c370b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c350b200341016a22052003490d3a200341017422042005200420054b1b22044100480d3a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c350b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c330b200341016a22052003490d39200341017422042005200420054b1b22044100480d390240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c330b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d39200341017422042005200420054b1b22044100480d390240024020030d002004101e21050c010b200128020020032004102221050b2005450d1420012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41073a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d39200341017422042005200420054b1b22044100480d390240024020030d002004101e21050c010b200128020020032004102221050b2005450d1520012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041106a200110f8022000280204210620022000410c6a280200220036020c2002410c6a200110630240200141046a2802002205200428020022036b2000490d00200128020021050c310b200320006a22042003490d38200541017422032004200320044b1b22034100480d380240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c310b20034101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c2f0b200341016a22052003490d37200341017422042005200420054b1b22044100480d370240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c2f0b20044101102d000b0240200141046a2204280200200141086a22032802002205460d00200128020021060c2d0b200541016a22062005490d36200541017422072006200720064b1b22074100480d360240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c2d0b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c220b200341016a22052003490d35200341017422042005200420054b1b22044100480d350240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c220b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c200b200341016a22052003490d21200341017422042005200420054b1b22044100480d210240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c200b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c1e0b200341016a22052003490d20200341017422042005200420054b1b22044100480d200240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c1e0b20044101102d000b0240200141046a2204280200200141086a22032802002205460d00200128020021060c1c0b200541016a22062005490d1f200541017422072006200720064b1b22074100480d1f0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c1c0b20074101102d000b0240200141046a2204280200200141086a22032802002205460d00200128020021060c1a0b200541016a22062005490d1e200541017422072006200720064b1b22074100480d1e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c1a0b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c180b200341016a22052003490d1d200341017422042005200420054b1b22044100480d1d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c180b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c160b200341016a22052003490d1c200341017422042005200420054b1b22044100480d1c0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c160b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c110b200341016a22052003490d1b200341017422042005200420054b1b22044100480d1b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c110b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c0f0b200341016a22052003490d10200341017422042005200420054b1b22044100480d100240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0f0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c0d0b200341016a22052003490d0f200341017422042005200420054b1b22044100480d0f0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0d0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c0b0b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0b0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c090b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c090b20044101102d000b0240200141046a2206280200200141086a22042802002203460d00200128020021050c070b200341016a22052003490d0c200341017422072005200720054b1b22074100480d0c0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c070b20074101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b2004200341016a360200200520036a41163a000020002d0008220341114b0d240240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e12000102030405060708090a0b0c0d0e0f1011000b200241003a00080240200628020020042802002203460d00200128020021050c220b200341016a22052003490d27200341017422072005200720054b1b22074100480d270240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c220b20074101102d000b200241013a00080240200628020020042802002203460d00200128020021050c200b200341016a22052003490d26200341017422072005200720054b1b22074100480d260240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c200b20074101102d000b200241023a00080240200628020020042802002203460d00200128020021050c1e0b200341016a22052003490d25200341017422072005200720054b1b22074100480d250240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c1e0b20074101102d000b200241033a00080240200628020020042802002203460d00200128020021050c1c0b200341016a22052003490d24200341017422072005200720054b1b22074100480d240240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c1c0b20074101102d000b200241043a00080240200628020020042802002203460d00200128020021050c1a0b200341016a22052003490d23200341017422072005200720054b1b22074100480d230240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c1a0b20074101102d000b200241053a00080240200628020020042802002203460d00200128020021050c180b200341016a22052003490d22200341017422072005200720054b1b22074100480d220240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c180b20074101102d000b200241063a00080240200628020020042802002203460d00200128020021050c160b200341016a22052003490d21200341017422072005200720054b1b22074100480d210240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c160b20074101102d000b200241073a00080240200628020020042802002203460d00200128020021050c140b200341016a22052003490d20200341017422072005200720054b1b22074100480d200240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c140b20074101102d000b200241083a00080240200628020020042802002203460d00200128020021050c120b200341016a22052003490d1f200341017422072005200720054b1b22074100480d1f0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c120b20074101102d000b200241093a00080240200628020020042802002203460d00200128020021050c100b200341016a22052003490d1e200341017422072005200720054b1b22074100480d1e0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c100b20074101102d000b2002410a3a00080240200628020020042802002203460d00200128020021050c0e0b200341016a22052003490d1d200341017422072005200720054b1b22074100480d1d0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0e0b20074101102d000b2002410b3a00080240200628020020042802002203460d00200128020021050c0c0b200341016a22052003490d1c200341017422072005200720054b1b22074100480d1c0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0c0b20074101102d000b2002410c3a00080240200628020020042802002203460d00200128020021050c0a0b200341016a22052003490d1b200341017422072005200720054b1b22074100480d1b0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0a0b20074101102d000b2002410d3a00080240200628020020042802002203460d00200128020021050c080b200341016a22052003490d1a200341017422072005200720054b1b22074100480d1a0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c080b20074101102d000b2002410e3a00080240200628020020042802002203460d00200128020021050c060b200341016a22052003490d19200341017422072005200720054b1b22074100480d190240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c060b20074101102d000b2002410f3a00080240200628020020042802002203460d00200128020021050c040b200341016a22052003490d18200341017422072005200720054b1b22074100480d180240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c040b20074101102d000b200241103a00080240200628020020042802002203460d00200128020021050c020b200341016a22052003490d17200341017422072005200720054b1b22074100480d170240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c020b20074101102d000b200241113a000802400240200628020020042802002203460d00200128020021050c010b200341016a22052003490d17200341017422072005200720054b1b22074100480d170240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c010b20074101102d000b2004200341016a360200200520036a41113a0000200220002d000922053a000802400240200628020020042802002200460d00200128020021030c010b200041016a22032000490d17200041017422062003200620034b1b22064100480d170240024020000d002006101e21030c010b200128020020002006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021000c010b20064101102d000b2004200041016a360200200320006a20053a00000c350b2004200341016a360200200520036a41103a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d16200341017422002005200020054b1b22004100480d160240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c340b2004200341016a360200200520036a410f3a0000200029033021080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d15200541017422032004200320044b1b22034100480d150240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c330b2004200341016a360200200520036a410e3a0000200029033021080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d14200541017422032004200320044b1b22034100480d140240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c320b2004200341016a360200200520036a410d3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d13200341017422002005200020054b1b22004100480d130240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c310b2004200341016a360200200520036a410c3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d12200341017422002005200020054b1b22004100480d120240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c300b2004200341016a360200200520036a410b3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d11200341017422002005200020054b1b22004100480d110240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2f0b2004200341016a360200200520036a410a3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d10200341017422002005200020054b1b22004100480d100240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2e0b2004200341016a360200200520036a41093a0000200029031021080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22072003490d0f200541017422032007200320074b1b22034100480d0f0240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b2004200341086a360200200520036a2008370000200029031821080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0f200341017422002005200020054b1b22004100480d0f0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2d0b2004200341016a360200200520036a41083a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0e200341017422002005200020054b1b22004100480d0e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2c0b2004200341016a360200200520036a41073a0000200029031821080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22072003490d0d200541017422032007200320074b1b22034100480d0d0240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a20083700002002200041146a280200220936020c2002410c6a20011063200028020c21030240200041106a2802002200450d00034020032802b80121032000417f6a22000d000b0b2009450d2b200141046a210a41002107034002400240200720032f0106490d0002400240200328020022000d004100210541002103410021000c010b20032f01042103410121050b0240200320002f0106490d000340200541016a210520002f01042203200028020022002f01064f0d000b0b200020034103746a220741e0006a210b200741086a210c200341027420006a41bc016a2802002103410021072005417f6a2200450d01034020032802b80121032000417f6a22000d000c020b0b200320074103746a220041e0006a210b200041086a210c200741016a21070b200c29030021080240024020062802002205200428020022006b4108490d00200128020021050c010b200041086a220c2000490d0e20054101742200200c2000200c4b1b22004100480d0e0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200520006a2008370000200b29030021080240024020062802002205200428020022006b4108490d00200128020021050c010b200041086a220b2000490d0e20054101742200200b2000200b4b1b22004100480d0e0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200520006a20083700002009417f6a22090d000c2c0b0b2004200341016a360200200520036a41063a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0c200341017422002005200020054b1b22004100480d0c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2a0b2004200341016a360200200520036a41053a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0b200341017422002005200020054b1b22004100480d0b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c290b2004200341016a360200200520036a41043a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0a200341017422002005200020054b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c280b2004200341016a360200200520036a41033a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d09200341017422002005200020054b1b22004100480d090240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c270b2004200341016a360200200520036a41023a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c260b2004200341016a360200200520036a41013a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d07200341017422002005200020054b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c250b2004200341016a360200200520036a41003a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d06200341017422002005200020054b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c240b200141086a200341016a360200200520036a41153a000020002d0008220341054b0d230240024002400240024002400240024002400240024020030e06000102030405000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c0a0b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0a0b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c080b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c080b20044101102d000b200241023a00080240200141046a280200200141086a2802002203460d00200128020021050c060b200341016a22052003490d0c200341017422042005200420054b1b22044100480d0c0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241033a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200141086a2802002103200241043a000802402003200141046a280200460d00200128020021050c020b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200241053a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41053a0000200041096a200110ca010c280b200141086a2204200341016a360200200520036a41043a00002000290310210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d09200541017422032004200320044b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341086a360200200520036a200837000020002f010a210502400240200141046a2802002203200428020022006b4102490d00200128020021030c010b200041026a22042000490d09200341017422002004200020044b1b22004100480d090240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041026a360200200320006a20053b00000c270b200141086a2204200341016a360200200520036a41033a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c260b200141086a2204200341016a360200200520036a41023a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d07200341017422002005200020054b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c250b200141086a2204200341016a360200200520036a41013a00002000290310210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d06200541017422032004200320044b1b22034100480d060240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341086a360200200520036a200837000020002f010a210502400240200141046a2802002203200428020022006b4102490d00200128020021030c010b200041026a22042000490d06200341017422002004200020044b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041026a360200200320006a20053b00000c240b200141086a2204200341016a360200200520036a41003a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d05200341017422002005200020054b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c230b200141086a2204200341016a360200200520036a41143a0000200041056a21050240024020002d00044101460d00200241003a00080240200141046a28020020042802002203460d00200128020021040c020b200341016a22042003490d05200341017422062004200620044b1b22064100480d050240024020030d002006101e21040c010b200128020020032006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021030c020b20064101102d000b200241013a000802400240200141046a28020020042802002200460d00200128020021030c010b200041016a22032000490d05200041017422042003200420034b1b22044100480d050240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a41013a00002005200110ca010c230b200141086a2206200341016a360200200420036a41003a00002005200110ca01200028022821042002200041306a280200220036020c2002410c6a2001106302400240200141046a2802002205200628020022036b2000490d00200128020021050c010b200320006a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200520036a2004200010cd051a0c220b200141086a2204200341016a360200200520036a41133a0000024002400240024002400240024020002d00080e0400010203000b200241003a00080240200141046a28020020042802002203460d00200128020021050c060b200341016a22052003490d08200341017422042005200420054b1b22044100480d080240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241013a00080240200141046a28020020042802002203460d00200128020021050c040b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241023a00080240200141046a28020020042802002203460d00200128020021050c020b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200241033a000802400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41033a0000200041096a200110ca012002200136020c200041296a2002410c6a10b9010c240b200141086a200341016a360200200520036a41023a0000200041096a200110ca012002200136020c200041296a2002410c6a10b9010c230b200141086a2204200341016a360200200520036a41013a00002000290310210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341086a360200200520036a2008370000200220002d000922053a000802400240200141046a28020020042802002200460d00200128020021030c010b200041016a22032000490d04200041017422042003200420034b1b22044100480d040240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a20053a00000c220b200141086a2204200341016a360200200520036a41003a00002000290350210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d03200541017422032004200320044b1b22034100480d030240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a20083700002002200136020c200041096a2002410c6a10b901200041296a200110ca010c210b200141086a200341016a360200200520036a41123a000020002d0001220341024b0d2002400240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41023a0000200220013602082002410c6a2103200241086a21050c020b200141086a200341016a360200200520036a41013a000020022001360208200241046a2103200241086a21050c010b200141086a200341016a360200200520036a41003a00002002200136020820022103200241086a21050b200041026a200510b9012003200041226a22003602002000200110ca010c200b200141086a2204200341016a360200200520036a41113a0000200141046a280200210520042802002103024020002903084201510d00024020052003460d00200128020021050c040b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b0240024020052003460d00200128020021050c010b200341016a22052003490d01200341017422042005200420054b1b22044100480d010240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a2204200341016a360200200520036a41013a0000200029031021080240200141046a2802002203200428020022006b4108490d00200128020021030c020b200041086a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c020b20004101102d000b1027000b200141086a200041086a360200200320006a20083700000c1d0b200141086a2204200341016a360200200520036a41003a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c1c0b200141086a200341016a360200200520036a41103a000020002d0001220341024b0d1b02400240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200141086a2802002103200141046a2802002105200241023a00080240024020052003460d00200128020021050c010b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41023a0000200041026a200110ca01024002400240024020002d00220e0400010203000b200241003a0008200241086a21050c050b200241013a0008200241086a21050c040b200241023a0008200241086a21050c030b200241033a0008200241086a21050c020b200141086a200341016a360200200520036a41013a0000200041026a200110ca01024002400240024020002d00220e0400010203000b200241003a0008200241086a21050c040b200241013a0008200241086a21050c030b200241023a0008200241086a21050c020b200241033a0008200241086a21050c010b200141086a200341016a360200200520036a41003a0000200041026a200110ca01024002400240024020002d00220e0400010203000b200241003a0008200241086a21050c030b200241013a0008200241086a21050c020b200241023a0008200241086a21050c010b200241033a0008200241086a21050b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d07200041017422042003200420034b1b22044100480d070240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a20052d00003a00000c1b0b200141086a2204200341016a360200200520036a410f3a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a2204200341016a360200200520036a41003a00002000280204210602400240200141046a2802002205200428020022036b4104490d00200128020021050c010b200341046a22042003490d06200541017422032004200320044b1b22034100480d060240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341046a360200200520036a20063600002000280208210502400240200141046a2802002203200428020022006b4104490d00200128020021030c010b200041046a22042000490d06200341017422002004200020044b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20053600000c1a0b2003200541016a360200200620056a410e3a000002400240024002400240024002400240024002400240024002400240024020002d00080e080001020304050607000b200241003a00080240200428020020032802002205460d00200128020021060c0e0b200541016a22062005490d12200541017422072006200720064b1b22074100480d120240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0e0b20074101102d000b200241013a00080240200428020020032802002205460d00200128020021060c0c0b200541016a22062005490d11200541017422072006200720064b1b22074100480d110240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0c0b20074101102d000b200241023a00080240200428020020032802002205460d00200128020021060c0a0b200541016a22062005490d10200541017422072006200720064b1b22074100480d100240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0a0b20074101102d000b200241033a00080240200428020020032802002205460d00200128020021060c080b200541016a22062005490d0f200541017422072006200720064b1b22074100480d0f0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c080b20074101102d000b200241043a00080240200428020020032802002205460d00200128020021060c060b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c060b20074101102d000b200241053a00080240200428020020032802002205460d00200128020021060c040b200541016a22062005490d0d200541017422072006200720064b1b22074100480d0d0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c040b20074101102d000b200241063a00080240200428020020032802002205460d00200128020021060c020b200541016a22062005490d0c200541017422072006200720064b1b22074100480d0c0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c020b20074101102d000b200241073a000802400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d0c200541017422072006200720064b1b22074100480d0c0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c010b20074101102d000b2003200541016a360200200620056a41073a0000024002400240200041096a2d00004101460d00200241003a00080240200428020020032802002205460d00200128020021060c020b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c020b20074101102d000b200241013a000802400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c010b20074101102d000b200141086a200541016a360200200620056a41013a00002000410a6a200110ca010c010b2003200541016a360200200620056a41003a00000b0240024020002d002a4101460d00200241003a00080240200428020020032802002200460d00200128020021050c020b200041016a22052000490d0d200041017422042005200420054b1b22044100480d0d0240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c020b20044101102d000b200241013a000802400240200428020020032802002203460d00200128020021050c010b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41013a00002000412b6a200110ca010c210b2003200041016a360200200520006a41003a00000c200b2003200541016a360200200620056a41063a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d0b200641017422052007200520074b1b22054100480d0b0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a2008370000200029031821080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0b200541017422002004200020044b1b22004100480d0b0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1f0b2003200541016a360200200620056a41053a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0a200541017422002004200020044b1b22004100480d0a0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1e0b2003200541016a360200200620056a41043a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d09200541017422002004200020044b1b22004100480d090240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1d0b2003200541016a360200200620056a41033a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d08200541017422002004200020044b1b22004100480d080240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1c0b2003200541016a360200200620056a41023a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d07200541017422002004200020044b1b22004100480d070240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1b0b2003200541016a360200200620056a41013a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d06200641017422052007200520074b1b22054100480d060240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a200837000041002106024020002d000922074102460d00200241013a000802400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d07200541017422092006200920064b1b22094100480d070240024020050d002009101e21060c010b200128020020052009102221060b02402006450d0020012006360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200620056a41013a0000200721060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d06200541017422092007200920074b1b22094100480d060240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a00000240024020002d000a22054102470d00200241003a00080240200428020020032802002200460d00200128020021050c020b200041016a22052000490d07200041017422042005200420054b1b22044100480d070240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c020b20044101102d000b200241013a000802400240200428020020032802002200460d00200128020021060c010b200041016a22062000490d07200041017422072006200720064b1b22074100480d070240024020000d002007101e21060c010b200128020020002007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021000c010b20074101102d000b2003200041016a360200200620006a41013a0000200220053a000802400240200428020020032802002200460d00200128020021040c010b200041016a22042000490d07200041017422062004200620044b1b22064100480d070240024020000d002006101e21040c010b200128020020002006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021000c010b20064101102d000b2003200041016a360200200420006a20053a00000c1b0b2003200041016a360200200520006a41003a00000c1a0b2003200541016a360200200620056a41003a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d05200541017422002004200020044b1b22004100480d050240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c190b2003200541016a360200200620056a410d3a000002400240024002400240024002400240024002400240024002400240024020002d00080e080001020304050607000b0240200428020020032802002205460d00200128020021060c0e0b200541016a22062005490d11200541017422072006200720064b1b22074100480d110240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0e0b20074101102d000b0240200428020020032802002205460d00200128020021060c0c0b200541016a22062005490d10200541017422072006200720064b1b22074100480d100240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0c0b20074101102d000b0240200428020020032802002205460d00200128020021060c0a0b200541016a22062005490d0f200541017422072006200720064b1b22074100480d0f0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0a0b20074101102d000b0240200428020020032802002205460d00200128020021060c080b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c080b20074101102d000b0240200428020020032802002205460d00200128020021060c060b200541016a22062005490d0d200541017422072006200720064b1b22074100480d0d0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c060b20074101102d000b0240200428020020032802002205460d00200128020021060c040b200541016a22062005490d0c200541017422072006200720064b1b22074100480d0c0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c040b20074101102d000b0240200428020020032802002205460d00200128020021060c020b200541016a22062005490d0b200541017422072006200720064b1b22074100480d0b0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c020b20074101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d0b200541017422072006200720064b1b22074100480d0b0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c010b20074101102d000b2003200541016a360200200620056a41073a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d0b200641017422052007200520074b1b22054100480d0b0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a200837000002400240024002400240200041206a2d00000e0400010203000b410021060c030b410121060c020b410221060c010b410321060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d0b200541017422092007200920074b1b22094100480d0b0240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a0000200029031821080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0b200541017422002004200020044b1b22004100480d0b0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1f0b2003200541016a360200200620056a41063a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d0a200641017422052007200520074b1b22054100480d0a0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a200837000002400240024002400240200041206a2d00000e0400010203000b410021060c030b410121060c020b410221060c010b410321060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d0a200541017422092007200920074b1b22094100480d0a0240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a0000200029031821080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0a200541017422002004200020044b1b22004100480d0a0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1e0b2003200541016a360200200620056a41053a0000200029033021080240024020042802002205200328020022036b4108490d00200128020021050c010b200341086a22042003490d09200541017422032004200320044b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c1d0b2003200541016a360200200620056a41043a0000200029033021080240024020042802002205200328020022036b4108490d00200128020021050c010b200341086a22042003490d08200541017422032004200320044b1b22034100480d080240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c1c0b2003200541016a360200200620056a41033a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d07200541017422002004200020044b1b22004100480d070240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1b0b2003200541016a360200200620056a41023a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d06200541017422002004200020044b1b22004100480d060240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1a0b2003200541016a360200200620056a41013a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d05200541017422002004200020044b1b22004100480d050240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c190b2003200541016a360200200620056a41003a0000200029033021080240024020042802002205200328020022036b4108490d00200128020021050c010b200341086a22042003490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c180b200141086a2204200341016a360200200520036a410c3a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41003a0000200041016a200110ca010c170b200141086a2204200341016a360200200520036a410b3a0000200141046a2802002105200428020021030240024020002802044101460d00024020052003460d00200128020021050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b0240024020052003460d00200128020021050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a2204200341016a360200200520036a41013a00002000280208210502400240200141046a2802002203200428020022006b4104490d00200128020021030c010b200041046a22042000490d03200341017422002004200020044b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20053600000c170b200141086a2204200341016a360200200520036a41003a00002000280208210502400240200141046a2802002203200428020022006b4104490d00200128020021030c010b200041046a22042000490d02200341017422002004200020044b1b22004100480d020240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20053600000c160b200141086a200341016a360200200520036a410a3a000020002d00042203410a4b0d15024002400240024002400240024002400240024002400240024002400240024020030e0b000102030405060708090a000b200241003a00080240200141046a280200200141086a2802002200460d00200128020021030c180b200041016a22032000490d22200041017422052003200520034b1b22054100480d220240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c180b20054101102d000b200241013a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d22200341017422042005200420054b1b22044100480d220240024020030d002004101e21050c010b200128020020032004102221050b2005450d0a20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41013a0000200028020821050240200141046a2802002203200428020022006b4104490d00200128020021030c160b200041046a22042000490d21200341017422002004200020044b1b22004100480d210240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c160b20004101102d000b200241023a00080240200141046a280200200141086a2802002200460d00200128020021030c140b200041016a22032000490d20200041017422052003200520034b1b22054100480d200240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c140b20054101102d000b200241033a00080240200141046a280200200141086a2802002200460d00200128020021030c120b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c120b20054101102d000b200141086a2802002100200241043a000802402000200141046a280200460d00200128020021030c100b200041016a22032000490d0b200041017422052003200520034b1b22054100480d0b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c100b20054101102d000b200241053a00080240200141046a280200200141086a2802002200460d00200128020021030c0e0b200041016a22032000490d0a200041017422052003200520034b1b22054100480d0a0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0e0b20054101102d000b200241063a00080240200141046a280200200141086a2802002200460d00200128020021030c0c0b200041016a22032000490d09200041017422052003200520034b1b22054100480d090240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0c0b20054101102d000b200241073a00080240200141046a280200200141086a2802002203460d00200128020021050c080b200341016a22052003490d08200341017422042005200420054b1b22044100480d080240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c080b20044101102d000b200141046a2802002105200241083a000802402005200141086a2802002203460d00200128020021050c060b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241093a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b2002410a3a00080240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b20044101102d000b200141086a200341016a360200200520036a410a3a0000200041056a200110ca012002200136020c200041256a2002410c6a10b901200041c5006a200110ca010c180b200141086a200341016a360200200520036a41093a0000200041056a200110ca012002200136020c200041256a2002410c6a10b9010c170b200141086a200341016a360200200520036a41083a0000200041056a200110ca010c160b200141086a2204200341016a360200200520036a41073a0000200028020821050240200141046a2802002203200428020022006b4104490d00200128020021030c020b200041046a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c020b20004101102d000b1027000b200141086a200041046a360200200320006a20053600000c130b200141086a200041016a360200200320006a41063a00000c120b200141086a200041016a360200200320006a41053a00000c110b200141086a200041016a360200200320006a41043a00000c100b200141086a200041016a360200200320006a41033a00000c0f0b200141086a200041016a360200200320006a41023a00000c0e0b200141086a200041046a360200200320006a20053600000c0d0b200141086a200041016a360200200320006a41003a00000c0c0b2003200541016a360200200620056a41093a000020002d0004220541064b0d0b024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e0700010203040506000b02400240200428020020032802002205460d00200128020021040c010b200541016a22042005490d22200541017422062004200620044b1b22064100480d220240024020050d002006101e21040c010b200128020020052006102221040b2004450d0720012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41003a0000200041056a200110ca01200028022821040240200141046a2802002205200628020022006b4104490d00200128020021050c180b200041046a22062000490d21200541017422002006200020064b1b22004100480d210240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c180b20004101102d000b02400240200428020020032802002205460d00200128020021040c010b200541016a22042005490d21200541017422062004200620044b1b22064100480d210240024020050d002006101e21040c010b200128020020052006102221040b2004450d0720012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41013a0000200041056a200110ca01200028022821040240200141046a2802002205200628020022006b4104490d00200128020021050c160b200041046a22062000490d20200541017422002006200020064b1b22004100480d200240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c160b20004101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d20200541017422072006200720064b1b22074100480d200240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41023a000020002802082107024020042802002206200328020022056b4104490d00200128020021060c140b200541046a22092005490d1f200641017422052009200520094b1b22054100480d1f0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c140b20054101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1f200541017422072006200720064b1b22074100480d1f0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b200141086a2207200541016a360200200620056a41033a0000200041056a200110ca01200028022821090240200141046a2802002206200728020022056b4104490d00200128020021060c120b200541046a22072005490d1e200641017422052007200520074b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c120b20054101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1e200541017422072006200720064b1b22074100480d1e0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41043a0000200028020821070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0820012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a20073600002000410c6a28020021070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0920012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a2007360000200041106a28020021070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0a20012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a2007360000200041146a28020021070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0b20012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a2007360000200041186a2802002107024020042802002206200328020022056b4104490d00200128020021060c100b200541046a22092005490d1d200641017422052009200520094b1b22054100480d1d0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c100b20054101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1d200541017422072006200720064b1b22074100480d1d0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41053a000020002802282106024020042802002205200328020022036b4104490d00200128020021050c0e0b200341046a22042003490d1c200541017422032004200320044b1b22034100480d1c0240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c0e0b20034101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1c200541017422072006200720064b1b22074100480d1c0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41063a000020002802082106024020042802002205200328020022006b4104490d00200128020021050c0c0b200041046a22042000490d1b200541017422002004200020044b1b22004100480d1b0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c0c0b20004101102d000b20064101102d000b20064101102d000b20074101102d000b20074101102d000b20074101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20074101102d000b20074101102d000b2003200041046a360200200520006a20063600000c110b200141086a200341046a360200200520036a20063600002002200136020c200041056a2002410c6a10b9010c100b2003200541046a360200200620056a20073600000240200041206a2d0000220541054b0d00024002400240024002400240024020050e06000102030405000b410021060c050b410121060c040b410221060c030b410321060c020b410421060c010b410521060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d0f200541017422092007200920074b1b22094100480d0f0240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a00000b2000411c6a28020021060240024020042802002205200328020022006b4104490d00200128020021050c010b200041046a22042000490d0e200541017422002004200020044b1b22004100480d0e0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041046a360200200520006a20063600000c0f0b2003200541046a360200200620056a2009360000024002400240024002400240024020002d00250e0400010203000b0240200428020020032802002200460d00200128020021050c060b200041016a22052000490d12200041017422042005200420054b1b22044100480d120240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c060b20044101102d000b0240200428020020032802002200460d00200128020021050c040b200041016a22052000490d11200041017422042005200420054b1b22044100480d110240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200428020020032802002200460d00200128020021050c020b200041016a22052000490d10200041017422042005200420054b1b22044100480d100240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d10200041017422042005200420054b1b22044100480d100240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c010b20044101102d000b2003200041016a360200200520006a41033a00000c110b2003200041016a360200200520006a41023a00000c100b2003200041016a360200200520006a41013a00000c0f0b2003200041016a360200200520006a41003a00000c0e0b2003200541046a360200200620056a200736000020002d0005220041054b0d0d024002400240024002400240024020000e06000102030405000b410021050c050b410121050c040b410221050c030b410321050c020b410421050c010b410521050b200220053a000802400240200428020020032802002200460d00200128020021040c010b200041016a22042000490d0c200041017422062004200620044b1b22064100480d0c0240024020000d002006101e21040c010b200128020020002006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021000c010b20064101102d000b2003200041016a360200200420006a20053a00000c0d0b2003200041046a360200200520006a20043600000c0c0b2003200041046a360200200520006a20043600000c0b0b200141086a200341016a360200200520036a41083a000020002d0001220341024b0d0a0240024002400240024002400240024020030e03000102000b200241003a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d10200341017422042005200420054b1b22044100480d100240024020030d002004101e21050c010b200128020020032004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200220002d000222053a00080240200141046a28020020042802002200460d00200128020021030c070b200041016a22032000490d0f200041017422042003200420034b1b22044100480d0f0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c070b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c050b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c050b20044101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0220012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41023a0000200220002d000222053a00080240200141046a28020020042802002200460d00200128020021030c030b200041016a22032000490d0d200041017422042003200420034b1b22044100480d0d0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c030b20044101102d000b20044101102d000b20044101102d000b200141086a200041016a360200200320006a20053a00000c0c0b200141086a200341016a360200200520036a41013a0000200041026a200110ca010c0b0b200141086a200041016a360200200320006a20053a00000c0a0b200141086a200320006a360200200520036a2006200010cd051a0c090b200141086a200341016a360200200520036a41063a000020002d0004220341024b0d080240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d09200041017422052003200520034b1b22054100480d090240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41023a0000200028020821052002200041106a280200220036020c2002410c6a200110632000450d0a2005200041d0006c6a210403402005200110ca012002200541206a36020c2002410c6a200110df022002200541306a36020c2002410c6a200110df022005280240210020022005280248220336020c2002410c6a20011063200541d0006a210502402003450d00200341306c21030340200041106a200110ca012002200036020c2002410c6a200110df02200041306a2100200341506a22030d000b0b20042005470d000c0b0b0b200141086a200041016a360200200320006a41013a00000c090b200141086a200341016a360200200520036a41003a0000200041056a200110ca010c080b200141086a200341016a360200200520036a41053a00002000280204220341024b0d070240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b200241023a000802400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a41023a00000c090b200141086a200041016a360200200320006a41013a00000c080b200141086a2204200341016a360200200520036a41003a0000200028020821032002200041106a280200220036020c2002410c6a200110632000450d072003200041286c6a2109200141046a210603402003200110ca01200341206a29030021080240024020062802002205200428020022006b4108490d00200128020021050c010b200041086a22072000490d07200541017422002007200020074b1b22004100480d070240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020062000360200200428020021000c010b20004101102d000b2004200041086a360200200520006a20083700002009200341286a2203470d000c080b0b200141086a200041046a360200200320006a20053600000c060b200141086a200341016a360200200520036a41033a000020002d0008220341024b0d05024002400240024002400240024002400240024020030e03000102000b200241003a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041186a29030021082000290310210d02400240200141046a2802002205200428020022036b4110490d00200128020021050c010b200341106a22042003490d0d200541017422032004200320044b1b22034100480d0d0240024020050d002003101e21050c010b200128020020052003102221050b2005450d0420012005360200200141046a2003360200200141086a28020021030b200141086a2204200341106a360200200520036a220320083700082003200d370000200041286a29030021082000290320210d0240200141046a2802002203200428020022006b4110490d00200128020021030c090b200041106a22052000490d0c200341017422002005200020054b1b22004100480d0c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c090b20004101102d000b200241013a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0c200341017422042005200420054b1b22044100480d0c0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0420012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41013a0000200041096a200110ca01200041386a29030021082000290330210d0240200141046a2802002203200428020022006b4110490d00200128020021030c070b200041106a22052000490d0b200341017422002005200020054b1b22004100480d0b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c070b20004101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0420012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41023a0000200028020c21050240200141046a2802002203200428020022006b4104490d00200128020021030c050b200041046a22042000490d0a200341017422002004200020044b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c050b20004101102d000b20044101102d000b20034101102d000b20044101102d000b20044101102d000b200141086a200041046a360200200320006a20053600000c070b200141086a200041106a360200200320006a220120083700082001200d3700000c060b200141086a200041106a360200200320006a220120083700082001200d3700000c050b200141086a200341016a360200200520036a41023a000020002d0008220341024b0d0402400240024002400240024002400240024020030e03000102000b200241003a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041096a200110ca01200041386a29030021082000290330210d0240200141046a2802002203200428020022006b4110490d00200128020021030c080b200041106a22052000490d0a200341017422002005200020054b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c080b20004101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c060b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b2005450d0220012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41023a0000200041096a200110ca01200041296a200110ca01200041d8006a29030021082000290350210d02400240200141046a2802002205200428020022036b4110490d00200128020021050c010b200341106a22042003490d09200541017422032004200320044b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b2005450d0320012005360200200141046a2003360200200141086a28020021030b200141086a2204200341106a360200200520036a220320083700082003200d370000200041e8006a29030021082000290360210d0240200141046a2802002203200428020022006b4110490d00200128020021030c040b200041106a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c040b20004101102d000b20044101102d000b20044101102d000b20034101102d000b200141086a200041106a360200200320006a220120083700082001200d3700000c060b200141086a200341016a360200200520036a41013a0000200041096a200110ca010c050b200141086a200041106a360200200320006a220120083700082001200d3700000c040b200141086a200041046a360200200320006a20053600000c030b200141086a2206200341016a36020041002105200420036a41003a000002402000410c6a2d000022044102460d00200241013a000802400240200141046a28020020062802002203460d00200128020021050c010b200341016a22052003490d02200341017422072005200720054b1b22074100480d020240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c010b20074101102d000b200141086a2207200341016a360200200520036a41013a000041002105024020044101470d00200241013a000802400240200141046a28020020072802002203460d00200128020021050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41013a000020002d000d21050b200220053a000802400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d02200341017422072004200720044b1b22074100480d020240024020030d002007101e21040c010b200128020020032007102221040b02402004450d0020012004360200200141046a2007360200200141086a28020021030c010b20074101102d000b200141086a200341016a360200200420036a20053a00002000410e6a2d000021050b200220053a00080240200141046a28020020062802002200460d00200128020021030c020b200041016a22032000490d00200041017422042003200420034b1b22044100480d000240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b1027000b200141086a200041016a360200200320006a20053a00000b200241106a24000bc30b030b7f047e067f230041206b22032400024020014102490d00200041206a210420022802002802002802002205280200220621072005280204220821090240024003400240024020072f0106220a0d004100210b0c010b200a4105742105200741086a210c417f210b0340024020050d00200a210b0c020b200b41016a210b2004200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020090d004200210e4200210f0c030b2009417f6a21092007200b4102746a41a8086a28020021070c000b0b2007200b4106746a220541f0026a290300210f200541e8026a290300210e20054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a290300200f7c2005290300220f200e7c220e200f54ad7c210f200541306a2105200c41506a220c0d000b0b0240024003400240024020062f010622070d004100210b0c010b20074105742105200641086a210c417f210b0340024020050d002007210b0c020b200b41016a210b2000200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020080d0042002110420021110c030b2008417f6a21082006200b4102746a41a8086a28020021060c000b0b2006200b4106746a220541f0026a2903002111200541e8026a290300211020054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a29030020117c2005290300221120107c2210201154ad7c2111200541306a2105200c41506a220c0d000b0b200e20105a200f20115a200f2011511b0d002000290000210f20002004290000370000200341186a2212200041186a2205290000370300200341106a2213200041106a220c290000370300200341086a2214200041086a220b290000370300200b200441086a290000370000200c200441106a2900003700002005200441186a2900003700002003200f37030041012115024020014103490d0041022116410121150340201641016a2117200020164105746a210420022802002802002802002205280200220621072005280204220821090240024003400240024020072f0106220a0d004100210b0c010b200a4105742105200741086a210c417f210b0340024020050d00200a210b0c020b200b41016a210b2004200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020090d004200210e4200210f0c030b2009417f6a21092007200b4102746a41a8086a28020021070c000b0b2007200b4106746a220541f0026a290300210f200541e8026a290300210e20054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a290300200f7c2005290300220f200e7c220e200f54ad7c210f200541306a2105200c41506a220c0d000b0b0240024003400240024020062f010622070d004100210b0c010b20074105742105200641086a210c417f210b0340024020050d002007210b0c020b200b41016a210b2003200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020080d0042002110420021110c030b2008417f6a21082006200b4102746a41a8086a28020021060c000b0b2006200b4106746a220541f0026a2903002111200541e8026a290300211020054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a29030020117c2005290300221120107c2210201154ad7c2111200541306a2105200c41506a220c0d000b0b200e20105a200f20115a200f2011511b0d01200441606a22052004290000370000200541186a200441186a290000370000200541106a200441106a290000370000200541086a200441086a290000370000201621152017211620172001470d000b0b200020154105746a22052003290300370000200541186a2012290300370000200541106a2013290300370000200541086a20142903003700000b200341206a24000b130020004105360204200041acffc6003602000bf70401067f230041a0016b22012400024002404120101e2202450d00200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b02402001412041e4fdc600410041001002417f460d004120101e2202450d02200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b2001412010042001413d6a200041086a290000370000200141c5006a200041106a290000370000200141cd006a200041186a290000370000200141013a0034200141143a003020012000290000370035200141306a10770b200141a0016a24000f0b41204101102d000b41204101102d000bf40601067f230041d0006b22012400024002400240024002404120101e2202450d00200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b02402001412041e4fdc600410041001002417f470d00410121020c050b200141306a41086a22024200370300200142003703304195fcc000410d200141306a1000200141086a200229030037030020012001290330370300410021032001410036023020014110200141306a10032102024020012802302204417f460d002002450d0020044104490d0220022800002103200210200b4120101e2202450d02200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202100200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020002002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b2001410036023020014120200141306a1003210220012802302200417f460d032002450d032001200036022420012002360220200141306a200141206a10b7010240024020012802302206450d0020012802342104200128022441044f0d012004450d00200610200b41ceb8c4004133200141306a41fcbfc4004184b9c400102e000b2001280220280000210502402000450d00200210200b200320054b21022004450d04200610200c040b41204101102d000b41ceb8c4004133200141306a41fcbfc4004184b9c400102e000b41204101102d000b200341004721020b200141d0006a240020020b340020004194e5c10036020420004100360200200041146a4103360200200041106a41e09dc100360200200041086a42093702000b3201017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241c0f0003600000bea0101057f230041106b2202240020024100360208200242013703002002410036020c2002410c6a200210630240024020022802042203200228020822046b4104490d00200441046a2105200228020021030c010b0240200441046a22052004490d00200341017422062005200620054b1b22064100480d000240024020030d002006101e21030c010b200228020020032006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b1027000b20022005360208200320046a4100360000200041086a200228020836020020002002290300370200200241106a24000b1300200041043602042000419ca4c1003602000b870102027f027e230041106b220224002002410036020420014110200241046a100321010240024020022802042203417f460d002001450d00024020034108490d002001290000210420011020420121050c020b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420021050b2000200437030820002005370300200241106a24000ba90402067f037e230041e0006b2205240002400240024002404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302001200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b20054100360240200541106a4120200541c0006a1003210620052802402207417f460d022006450d0220074110490d01200641086a290000210b2006290000210c200610200c030b41144101102d000b41ceb8c4004133200541c0006a41fcbfc4004184b9c400102e000b4200210c4200210b0b4101210602400240200c20027d220d200c56200b20037d200c200254ad7d220c200b56200c200b511b4101470d002000419b8ac500360204200041086a411d3602000c010b200541086a20012004200d200c1094040240200528020822060d002001200d200c109303200041106a2003370300200041086a2002370300410021060c010b200528020c210120002006360204200041086a2001360200410121060b20002006360200200541e0006a24000be60204017f017e027f037e230041206b2201240042002102200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a2003290300370300200120012903103703002001410036021020014110200141106a1003210302400240024020012802102204417f470d0042002102420021050c010b024020030d00420021050c010b20044110490d01200341086a290000210520032900002102200310200b2000280200220341086a290300210620032903002107200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a20032903003703002001200129031037030020014200200520067d2002200754ad7d2206200220077d2207200256200620055620062005511b22031b37031820014200200720031b37031020014110200141106a41101005200141206a24000f0b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000b340020004187e4c10036020420004100360200200041146a4102360200200041106a41f0acc100360200200041086a42073702000bc90101057f230041206b22022400024002404110101e2203450d00200341086a4100290090ab4137000020034100290088ab4137000020034110412010222203450d0120032001370010200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411820021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41104101102d000b41204101102d000bb62109087f027e047f017e057f057e057f017e0f7f23002202210320024180066b416071220424000240200128020422024104490d0020012802002205280000210620012002417c6a22073602042001200541046a220536020002402007450d0020052d0000210720012002417b6a22083602042001200541016a360200200741014b0d00410321090240024002400240024020070e020100010b20084110490d04200541096a290000210a2005290001210b20012002416b6a22073602042001200541116a3602002007450d0420052d0011210720012002416a6a22083602044112210c2001200541126a220d360200200741014b0d04410221090240024020070e020100010b20084104490d052005280012210e2001200241666a22073602042001200541166a3602002007450d0520052d001621072001200241656a22083602042001200541176a360200200741014b0d05410021090240024020070e020100010b410121090b20084104490d052005280017210f2001200241616a2208360204411b210c20012005411b6a220d360200200441a0056a41026a200441b0016a41026a2d00003a0000200420042f00b0013b01a0050b2004411c6a41026a200441a0056a41026a2d00003a0000200420042f01a0053b011c20084108490d04200d29000021102001200841786a36020420012005200c6a41086a360200200441106a2001105f20042802100d042004280214211120044200370224200441908cc50036022002402011450d00200441a0056a4102722112200441c0046a4102722113200441c0006a41197221144100211503400240024002400240200128020422054108490d002001280200220229000021162001200541786a22073602042001200241086a220236020020074104490d002002280000210d2001200541746a22073602042001200241046a3602002007450d0020022d000421072001200541736a220c3602042001200241056a360200200741014b0d00410021080240024020070e020100010b410121080b200c4104490d002002280005210c20012005416f6a22073602042001200241096a3602002007410f4d0d00200241116a29000021172002290009211820012005415f6a3602042001200241196a360200200420042800b0013602382004200441b0016a41036a28000036003b200420042802383602302004200428003b36003320142004280230360000201441036a20042800333600002004201737034820042018370340200420083a00582004200c3602542004200d360250024002402004280220220241908cc500460d002004280224210c0c010b2013410041da0010cc051a200441b0016a410041e00210cc051a41c003101e2202450d024100210c20024100360200200241046a200441c0046a41dc0010cd051a200241e0006a200441b0016a41e00210cd051a20044100360224200420023602200b201541016a211503400240024020022f0106220d0d00410021050c010b200d4103742107200241086a2108417f21050340024020070d00200d21050c020b20082903002117200741786a2107200541016a2105200841086a21080240417f201720165220172016561b41016a0e03020001020b0b200220054105746a220241f8006a2004290358370300200241f0006a2004290350370300200241e8006a2004290348370300200241e0006a20042903403703000c050b0240200c450d00200c417f6a210c200220054102746a41c0036a28020021020c010b0b2004200428022841016a3602282004290358211720042903502118200429034821192004290340211a02400240024020022f01062207410b490d0002400240200241908cc500460d002012410041da0010cc05211b200441b0016a410041e00210cc051a41c003101e221c0d0141c0034108102d000b41c8a6c000412d41a888c6001028000b201c4100360200201c41046a200441a0056a41dc0010cd051a201c41e0006a200441b0016a41e00210cd052108200441b0016a41086a221d200241a8026a290300370300200441b0016a41106a221e200241b0026a290300370300200441b0016a41186a221f200241b8026a290300370300200420022903a0023703b00120022903382120201c41086a200241c0006a20022f010641796a220741037410cd05210c2008200241c0026a200741057410cd052108200241063b0106201c20073b0106200441a0056a41186a2221201f290300370300200441a0056a41106a2222201e290300370300200441a0056a41086a2223201d290300370300200420042903b0013703a0050240024020054107490d00200c2005417a6a22244103746a200c200541796a220d4103746a2205200741ffff0371200d6b41037410ce051a20052016370300200820244105746a2008200d4105746a2205201c41066a22072f0100200d6b41057410ce051a200541186a201737030020052018370310200520193703082005201a3703000c010b200241066a2107200241086a2208200541016a220c4103746a200820054103746a220820022f010620056b41037410ce051a20082016370300200241e0006a2208200c4105746a200820054105746a220820022f010620056b41057410ce051a200841186a201737030020082018370310200820193703082008201a3703000b200720072f010041016a3b0100200441c0046a41186a20212903002217370300200441c0046a41106a20222903002216370300200441c0046a41086a20232903002218370300200441f0006a41186a22252017370300200441f0006a41106a22262016370300200441f0006a41086a22272018370300200420042903a00522173703c0042004201737037002402002280200220d0d0041002128202021170c060b20022f010421294100212820202116034020044190016a41186a222a202529030037030020044190016a41106a222b202629030037030020044190016a41086a222c2027290300370300200420042903703703900141000d02202941ffff0371210c024002400240200d2f01062202410b490d00201b410041da0010cc051a200441c0046a200441a0056a41dc0010cd051a200441b0016a410041900310cc051a41f003101e2208450d0620084100360200200841046a200441c0046a41dc0010cd051a200841e0006a200441b0016a41900310cd052105200d2903382117201f200d41b8026a290300370300201e200d41b0026a290300370300201d200d41a8026a2903003703002004200d2903a0023703b001200841086a200d41c0006a200d2f0106220741796a220241037410cd05212d2005200d41c0026a200241057410cd05212e200841c0036a200d41dc036a2007417a6a222441027410cd05212f200d41063b0106200820023b010602402024450d0041002102202f210503402005280200220720023b010420072008360200200541046a21052024200241016a2202470d000b0b2021201f29030022183703002022201e29030022193703002023201d290300221a370300200420042903b00122203703a005201f2018370300201e2019370300201d201a370300200420203703b001202941ffff037122244107490d01202d200c417a6a22054103746a202d200c41796a22024103746a220720082f010620026b41037410ce051a20072016370300202e20054105746a202e20024105746a220720082f010620026b41057410ce051a200741186a202a290300370300200741106a202b290300370300200741086a202c2903003703002007200429039001370300200820082f010641016a22073b0106200c4102742229202f6a416c6a202f20054102746a2224200741ffff0371220c20056b41027410ce051a2024201c360200200c2005490d02200820296a41a8036a2105034020052802002207200241016a22023b010420072008360200200541046a21052002200c490d000c030b0b200d41086a2207200c41016a22054103746a2007200c4103746a22072002200c6b220841037410ce051a20072016370300200d41e0006a220720054105746a2007200c4105746a2207200841057410ce051a200741186a202a290300370300200741106a202b290300370300200741086a202c2903003703002007200429039001370300200d200241016a22023b0106200c410274200d41c0036a22076a41086a200720054102746a2207200241ffff0371220220056b41027410ce051a2007201c360200200c20024f0d09201c20053b0104201c200d360200200520024f0d092002417f6a2108200d2005417f6a22024102746a41c8036a2105034020052802002207200241026a3b01042007200d360200200541046a21052008200241016a2202470d000c0a0b0b200d41086a2202200c41016a22054103746a2002200c4103746a2202200d2f01062207200c6b222941037410ce051a20022016370300200d41e0006a220220054105746a2002200c4105746a2202202941057410ce051a200241186a202a290300370300200241106a202b290300370300200241086a202c2903003703002002200429039001370300200d200741016a22023b0106200c410274222f200d41c0036a22076a41086a200720054102746a2229200241ffff0371220720056b41027410ce051a2029201c360200202420074f0d00200d202f6a41c4036a2102034020022802002205200c41016a220c3b01042005200d360200200241046a21022007200c470d000b0b202841016a21282025201f2903003703002026201e2903003703002027201d290300370300200420042903b0013703700240200d28020022020d002008211c0c070b200d2f010421292002210d201721162008211c0c000b0b200241086a2208200541016a220c4103746a200820054103746a2208200720056b41037410ce051a20082016370300200241e0006a2207200c4105746a200720054105746a220720022f010620056b41057410ce051a200741186a201737030020072018370310200720193703082007201a370300200220022f010641016a3b01060c050b41c6a8c000413541a888c6001028000b41f0034108102d000b20042802202004290224220ba7200b422088a71098020c090b41c0034108102d000b2013410041da0010cc051a200441a0056a200441c0046a41dc0010cd051a200441b0016a410041900310cc051a41f003101e2202450d0420024100360200200241046a200441a0056a41dc0010cd051a200241e0006a200441b0016a41900310cd0521072002200428022022053602c00320042004280224220841016a360224200541003b01042004200236022020052002360200201f2025290300370300201e2026290300370300201d2027290300370300200420042903703703b00120082028470d0520022f01062205410a4b0d06200720054105746a220720042903b001370300200220054103746a41086a2017370300200741086a201d290300370300200741106a201e290300370300200741186a201f2903003703002002200541016a22054102746a41c0036a201c360200200220053b0106201c20053b0104201c20023602000b20152011470d000b0b2004280220220c450d0420042902242117200441186a41026a2004411c6a41026a2d00003a0000200420042f011c3b01180b2000200b370300200020093a00202000200f36021c2000200e36021820002010370310200020042f01183b00212000200a370308200041286a2017370200200041246a200c360200200041236a2004411a6a2d00003a0000200041306a2006360200200324000f0b41f0034108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200041043a0020200324000f0b200041043a0020200324000bc40303027f017e027f02402001450d00034020002802c00321002001417f6a22010d000b0b4100210341002104024003402002450d0102400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41c4036a2802002100200120034105746a41f8006a2d00002107410021032006417f6a2201450d01034020002802c00321002001417f6a22010d000c020b0b200020034105746a41f8006a2d00002107200341016a21030b2002417f6a2102200741ff01714102470d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bf71006027f017e037f027e027f017e230041b0036b22022400024002400240024002400240024002404110101e2203450d00200341086a4100290090ab4137000020034100290088ab413700002000290300210420034110412010222203450d012003200437001020024180026a41186a2205420037030020024180026a41106a2206420037030020024180026a41086a2207420037030020024200370380022003411820024180026a1001200241086a41186a2005290300370300200241086a41106a2006290300370300200241086a41086a2007290300370300200220022903800237030820031020200241286a200241086a109a0202400240200229036022044202520d002002200036028401200542003703002006420037030020024180026a41086a2203420037030020024200370380024198abc100411820024180026a1001200241d8026a41186a2005290300370300200241d8026a41106a2006290300370300200241d8026a41086a200329030037030020022002290380023703d8022002410036028002200241d8026a412020024180026a10032103024002402002280280022205417f460d002003450d00024020054108490d00200329000021082003102020024188016a2008109602200241d8026a20024188016a109a022002290390034202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024180026a41fcbfc4004184b9c400102e000b4200210920024180026a41186a2203420037030020024180026a41106a2205420037030020024180026a41086a2206420037030020024200370380024198abc100411820024180026a1001200241d8026a41186a2003290300370300200241d8026a41106a2005290300370300200241d8026a41086a200629030037030020022002290380023703d8022002200029030037038002200241d8026a412020024180026a41081005420021040c020b20024180026a200241d8026a41d80010cd051a200241a8016a41306a220320024180026a41306a290300370300200241a8016a41286a220520024180026a41286a290300370300200241a8016a41206a220620024180026a41206a290300370300200241a8016a41186a220020024180026a41186a290300370300200241a8016a41106a220720024180026a41106a290300370300200241a8016a41086a220a20024180026a41086a29030037030020022002290380023703a801200241e0016a41186a220b200241d0026a290300370300200241e0016a41106a200241c8026a2903002204370300200241e0016a41086a200241c0026a290300370300200220022903b8023703e00120024194036a200b410020044201511b360200200241d8026a41306a220b2003290300370300200241d8026a41286a2005290300370300200241d8026a41206a2006290300370300200241d8026a41186a2000290300370300200241d8026a41106a2007290300370300200241d8026a41086a200a290300370300200220022903a8013703d802200220024184016a3602900320024100360288022002420137038002200b28020021054104101e2203450d042003200536000020024284808080c0003702840220022003360280020240024020022d00f8024103470d0020034104410810222203450d07200341003a000420024288808080d0003702840220022003360280020c010b20034104410810222203450d07200341013a000420024288808080d000370284022002200336028002200241d8026a20024180026a109b020b20024190036a20024180026a108101200228028402210320024188016a41202002280280022205200228028802100502402003450d00200510200b024020022d00f8024103460d00200241fc026a28020020024180036a28020020024184036a2802001098020b20022802840121034200210420024180026a41186a2205420037030020024180026a41106a2206420037030020024180026a41086a2200420037030020024200370380024198abc100411820024180026a1001200241d8026a41186a2005290300370300200241d8026a41106a2006290300370300200241d8026a41086a200029030037030020022002290380023703d8022002200329030037038002200241d8026a412020024180026a41081005420121090c010b200241f8006a2903002108200241f0006a29030021092002290368210c20022d00484103460d00200228024c200228025020022802541098020b200241a8036a2008370300200241a0036a200937030020024198036a200c370300200241d8026a41306a2203200141306a290300370300200241d8026a41286a200141286a290300370300200241d8026a41206a200141206a290300370300200241d8026a41186a200141186a290300370300200241d8026a41106a200141106a290300370300200241d8026a41086a200141086a2903003703002002200437039003200220012903003703d80220024100360288022002420137038002200328020021034104101e2201450d052001200336000020024284808080c0003702840220022001360280020240024020022d00f8024103470d0020014104410810222201450d08200141003a000420024288808080d0003702840220022001360280020c010b20014104410810222201450d08200141013a000420024288808080d000370284022002200136028002200241d8026a20024180026a109b020b20024190036a20024180026a1094012002280284022101200241086a41202002280280022203200228028802100502402001450d00200310200b024020022d00f8024103460d00200241fc026a28020020024180036a28020020024184036a2802001098020b200241b0036a24000f0b41104101102d000b41204101102d000b41044101102d000b41084101102d000b41084101102d000b41044101102d000b41084101102d000b41084101102d000bbd04020a7f047e230041b0016b220224002002410036025820014120200241d8006a1003210102400240024020022802582203417f460d0020010d010b200042023703380c010b2002200336022420022001360220200241d8006a200241206a1097020240024020022d007822044104460d00200241386a41186a2205200241d8006a41186a290300370300200241386a41106a2206200241d8006a41106a290300370300200241386a41086a2207200241d8006a41086a290300370300200241366a2208200241d8006a41236a2d00003a000020022002290358370338200220022f00793b01342002200229038801370328200241fc006a280200210920024180016a280200210a20024184016a280200210b20024190016a200241206a109301200229039001220c4202520d0120044103460d002009200a200b1098020b41ceb8c4004133200241d8006a41fcbfc4004184b9c400102e000b20002002290338370300200020043a0020200020022f01343b00212000200b36022c2000200a36022820002009360224200041186a2005290300370300200041106a2006290300370300200041086a2007290300370300200041236a20082d00003a000020002002290328370330200241086a41086a20024190016a41106a290300220d370300200241086a41106a20024190016a41186a290300220e3703002002200229039801220f3703082000200c3703382000200f370340200041c8006a200d370300200041d0006a200e3703002003450d00200110200b200241b0016a24000b831303017f027e097f230041106b22022400200041086a2903002103200029030021040240024002400240024002400240024002400240200141046a2802002205200141086a28020022066b4110490d00200128020021050c010b200641106a22072006490d08200541017422062007200620074b1b22064100480d080240024020050d002006101e21050c010b200128020020052006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021060b200141086a2207200641106a360200200520066a22062003370008200620043700000240200041206a2d000022054102470d000240200141046a28020020072802002206460d00200128020021050c070b200641016a22052006490d08200641017422072005200720054b1b22074100480d080240024020060d002007101e21050c010b200128020020062007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021060c070b20074101102d000b02400240200141046a28020020072802002206460d00200128020021070c010b200641016a22072006490d08200641017422082007200820074b1b22084100480d080240024020060d002008101e21070c010b200128020020062008102221070b2007450d0220012007360200200141046a2008360200200141086a28020021060b200141086a2208200641016a360200200720066a41013a00002000280218210902400240200141046a2802002207200828020022066b4104490d00200128020021070c010b200641046a22082006490d08200741017422062008200620084b1b22064100480d080240024020070d002006101e21070c010b200128020020072006102221070b2007450d0320012007360200200141046a2006360200200141086a28020021060b200141086a2208200641046a360200200720066a200936000002400240200141046a28020020082802002206460d00200128020021070c010b200641016a22072006490d08200641017422082007200820074b1b22084100480d080240024020060d002008101e21070c010b200128020020062008102221070b2007450d0420012007360200200141046a2008360200200141086a28020021060b200141086a2208200641016a360200200720066a20053a00002000411c6a28020021070240200141046a2802002205200828020022066b4104490d00200128020021050c050b200641046a22082006490d07200541017422062008200620084b1b22064100480d070240024020050d002006101e21050c010b200128020020052006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021060c050b20064101102d000b20064101102d000b20084101102d000b20064101102d000b20084101102d000b200141086a200641046a360200200520066a20073600000c010b200141086a200641016a360200200520066a41003a00000b2000290310210302400240200141046a2802002205200141086a28020022066b4108490d00200128020021050c010b200641086a22072006490d01200541017422062007200620074b1b22064100480d010240024020050d002006101e21050c010b200128020020052006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021060c010b20064101102d000b200141086a200641086a360200200520066a200337000020022000412c6a280200220a36020c2002410c6a20011063200041246a28020021060240200041286a2802002200450d00034020062802c00321062000417f6a22000d000b0b0240200a450d00200141046a210741002109034002400240200920062f0106490d0002400240200628020022000d004100210541002106410021000c010b20062f01042106410121050b0240200620002f0106490d000340200541016a210520002f01042206200028020022002f01064f0d000b0b200020064105746a41e0006a2108200020064103746a41086a210b200641027420006a41c4036a2802002106410021092005417f6a2200450d01034020062802c00321062000417f6a22000d000c020b0b200620094103746a41086a210b200620094105746a41e0006a2108200941016a21090b200b290300210302400240024002400240024002402007280200220b200141086a220028020022056b4108490d002001280200210b0c010b200541086a220c2005490d08200b4101742205200c2005200c4b1b22054100480d0802400240200b0d002005101e210b0c010b2001280200200b20051022210b0b200b450d012001200b36020020072005360200200028020021050b2000200541086a360200200b20056a20033700002008280210210c024002402007280200220b200028020022056b4104490d002001280200210b0c010b200541046a220d2005490d08200b4101742205200d2005200d4b1b22054100480d0802400240200b0d002005101e210b0c010b2001280200200b20051022210b0b200b450d022001200b36020020072005360200200028020021050b2000200541046a360200200b20056a200c36000020082d0018210c02400240200728020020002802002205460d002001280200210b0c010b200541016a220b2005490d082005410174220d200b200d200b4b1b220d4100480d080240024020050d00200d101e210b0c010b20012802002005200d1022210b0b200b450d032001200b3602002007200d360200200028020021050b2000200541016a360200200b20056a200c3a00002008280214210c024002402007280200220b200028020022056b4104490d002001280200210b0c010b200541046a220d2005490d08200b4101742205200d2005200d4b1b22054100480d0802400240200b0d002005101e210b0c010b2001280200200b20051022210b0b200b450d042001200b36020020072005360200200028020021050b2000200541046a360200200b20056a200c360000200841086a290300210320082903002104024020072802002208200028020022056b4110490d00200128020021080c050b200541106a220b2005490d0720084101742205200b2005200b4b1b22054100480d070240024020080d002005101e21080c010b200128020020082005102221080b02402008450d002001200836020020072005360200200028020021050c050b20054101102d000b20054101102d000b20054101102d000b200d4101102d000b20054101102d000b2000200541106a360200200820056a2200200337000820002004370000200a417f6a220a0d000b0b200241106a24000f0b1027000bc51104077f027e027f047e230041e0036b22002400200041b8036a41086a22014200370300200042003703b80341b7eec6004110200041b8036a1000200041e8026a41086a2001290300370300200020002903b8033703e802200041c0016a200041e8026a109e0341022102024002400240024020002d00c0014102470d00200041e0006a1088022000280260210302400240200028026822040d000c010b200441246c210520032101024002400340024020012d00004101470d00200141016a2800002106200141086a28020021022000200141106a28020036028c032000200236028803200641c28289aa04470d00200041c0016a20004188036a10b90320002d00c00122024102470d020b200141246a21012005415c6a22050d000b410221020c010b200020002800c40136005b200020002800c101360258200041c8016a29030021072000200041d0016a41d80010cd0541a8026a29030021080b2004450d00200441246c21052003210103400240024020012d0000220641034b0d0002400240024020060e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012005415c6a22050d000b0b02402000280264450d00200310200b200020002802583602b8012000200028005b3600bb01200041e0006a200041d80010cd051a41002101024020024102460d00200020002802b8013602c002200020002800bb013600c302200020073703b802200041c0016a200041e0006a41d80010cd051a200020083703b002200041b8036a41086a22014200370300200042003703b80341ceedc6004110200041b8036a1000200041e8026a41086a2001290300370300200020002903b8033703e8022000410036028803200041e8026a411020004188036a10032101024002402000280288032205417f460d002001450d0020054108490d042001290000210820011020200850450d010b200041b8026a200041b0026a20024101461b2903002108200041b8036a41086a22014200370300200042003703b80341ceedc6004110200041b8036a1000200041e8026a41086a22052001290300370300200020002903b8033703e8022000200837038803200041e8026a411020004188036a4108100520014200370300200042003703b80341beedc6004110200041b8036a100020052001290300370300200020002903b8033703e802410021012000410036028803200041e8026a411020004188036a10032105024002402000280288032206417f470d000c010b024020050d000c010b200020063602bc03200020053602b80320004188036a200041b8036a10d8012000280288032201450d05200029028c0321082006450d00200510200b200041b8036a41086a22054200370300200042003703b80341eeedc600410f200041b8036a1000200041e8026a41086a22062005290300370300200020002903b8033703e80220004188036a200041e8026a10da0120002d0088032103200041b8036a41186a2209200041a1036a290000370300200041b8036a41106a220a20004199036a290000370300200520004191036a29000037030020002000290089033703b8032001410820011b21040240024020034101460d00200041e8026a41186a4200370300200041e8026a41106a420037030020064200370300200042003703e8020c010b200041e8026a41186a2009290300370300200041e8026a41106a200a29030037030020062005290300370300200020002903b8033703e8020b200041c8026a41086a200041e8026a41086a290300220b370300200041c8026a41106a200041e8026a41106a290300220c370300200041c8026a41186a200041e8026a41186a290300220d370300200020002903e802220e3703c80220004188036a41086a22052008420020011b37030020004188036a41106a200e37030020004188036a41186a200b370300200041a8036a200c370300200041b0036a200d3703002000200436028c032000410036028803200041b8036a20004188036a10ba03200041f3026a200041b8036a41086a280200360000200020002903b8033700eb02200041c4036a200041ef026a290000370000200041c28289aa043600b903200041023a00b803200020002900e8023700bd03200041b8036a10fe012000280288030d002005280200450d00200028028c0310200b200041b8026a200041b0026a20024101461b2903002108200041b8036a41086a22014200370300200042003703b80341deedc6004110200041b8036a1000200041e8026a41086a2001290300370300200020002903b8033703e8022000200837038803200041e8026a411020004188036a410810054100210120020d0020004188036a41086a200041c0016a41086a29030037030020004188036a41106a200041c0016a41106a2d00003a0000200020002800c3023600cb02200020002802c0023602c802200020002903c00137038803410121010b200041c0016a41086a2007370300200041c0016a41106a200029038803370300200041d8016a20004188036a41086a290300370300200041e0016a20004188036a41106a2d00003a0000200020013a00c001200020002802c8023600c101200020002800cb023600c401200041b8036a41086a22054200370300200042003703b80341b7eec6004110200041b8036a1000200041e8026a41086a2005290300370300200020002903b8033703e8024101101e2205450d0320004201370264200020053602600240024020010d0020004101360268200541003a00000c010b20004101360268200541013a0000200041c0016a410172200041e0006a10db010b20002802642101200041e8026a411020002802602205200028026810052001450d00200510200b200041e0036a24000f0b41ceb8c4004133200041c8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200041c8026a41fcbfc4004184b9c400102e000b41014101102d000bc10701057f230041106b2203240020034100360208200342013703002003200236020c2003410c6a2003106302402002450d00200241c4006c210403400240024002400240024002400240024020012d00004101460d0002400240200328020420032802082202460d00200328020021050c010b200241016a22052002490d02200241017422062005200620054b1b22064100480d020240024020020d002006101e21050c010b200328020020022006102221050b2005450d032003200636020420032005360200200328020821020b2003200241016a360208200520026a41003a0000200141046a2802002106024020032802042205200328020822026b4104490d00200328020021050c070b200241046a22072002490d01200541017422022007200220074b1b22024100480d010240024020050d002002101e21050c010b200328020020052002102221050b02402005450d002003200236020420032005360200200328020821020c070b20024101102d000b02400240200328020420032802082202460d00200328020021050c010b200241016a22052002490d01200241017422062005200620054b1b22064100480d010240024020020d002006101e21050c010b200328020020022006102221050b2005450d032003200636020420032005360200200328020821020b2003200241016a360208200520026a41013a00002003200336020c200141016a2003410c6a10b9010240200141216a2d00004101460d000240200328020420032802082202460d00200328020021050c060b200241016a22052002490d01200241017422062005200620054b1b22064100480d010240024020020d002006101e21050c010b200328020020022006102221050b02402005450d002003200636020420032005360200200328020821020c060b20064101102d000b0240200328020420032802082202460d00200328020021050c040b200241016a22052002490d00200241017422062005200620054b1b22064100480d000240024020020d002006101e21050c010b200328020020022006102221050b02402005450d002003200636020420032005360200200328020821020c040b20064101102d000b1027000b20064101102d000b20064101102d000b2003200241016a360208200520026a41013a0000200141226a200310ca010c020b2003200241016a360208200520026a41003a00000c010b2003200241046a360208200520026a20063600000b200141c4006a2101200441bc7f6a22040d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000bb90902097f017e230041c0016b22012400200141c0006a41086a220242003703002001420037034041f58bc6004111200141c0006a1000200141106a41086a200229030037030020012001290340370310200141d0006a200141106a4110106920012d00502102200141206a41186a2203200141e9006a290000370300200141206a41106a2204200141d0006a41116a290000370300200141206a41086a2205200141d9006a290000370300200120012900513703200240024020024101470d0020002001290320370000200041186a2003290300370000200041106a2004290300370000200041086a20052903003700000c010b200110880220012802002106024002402001280208220741246c2202450d002002415c6a21032006210203400240024020022d00004101460d002003450d030c010b200241016a2800002104200241086a28020021052001200241106a280200360224200120053602200240200441c28289aa04460d0020030d010c030b200141d0006a200141206a10b90320012d005022024102460d02200141b4016a280200210520012802542108200141c0006a41086a220342003703002001420037034041868cc6004112200141c0006a1000200141106a41086a20032903003703002001200129034037031020014100360250200141106a4110200141d0006a100321040240024020012802502209417f460d002004450d002001200936022420012004360220200141d0006a200141206a10e301024020012802502203450d002001290254210a2009450d02200410200c020b41ceb8c4004133200141c0006a41fcbfc4004184b9c400102e000b410121034200210a0b02402008200520024101711b2202200a422088a74f0d00200320024105746a2202450d00200141206a41186a2204200241186a290000370300200141206a41106a2205200241106a290000370300200141206a41086a2208200241086a290000370300200120022900003703200240200aa7450d00200310200b200141d0006a41186a22022004290300370300200141d0006a41106a22032005290300370300200141d0006a41086a2204200829030037030020012001290320370350200141c0006a41086a220542003703002001420037034041f58bc6004111200141c0006a1000200141106a41086a200529030037030020012001290340370310200141103602442001200141106a360240200141d0006a200141c0006a108203200041186a2002290300370000200041106a2003290300370000200041086a2004290300370000200020012903503700000c040b200aa7450d02200310200c020b200241246a21022003415c6a21030c000b0b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b02402007450d00200741246c21032006210203400240024020022d0000220441034b0d0002400240024020040e0404000102040b2002410c6a280200450d03200241086a28020010200c030b2002410c6a280200450d02200241086a28020010200c020b2002410c6a280200450d01200241086a28020010200c010b200241086a280200450d00200241046a28020010200b200241246a21022003415c6a22030d000b0b2001280204450d00200610200b200141c0016a24000be00a07057f017e047f027e047f027e037f230041c0006b22012400200141106a41086a220242003703002001420037031041fcf9c600411e200141106a1000200141086a2203200229030037030020012001290310370300200141106a200110a704200128021021042001280214210520012903182106200028020821072000280204210820002802002109200242003703002001420037031041f3d6c3004116200141106a100020032002290300370300200120012903103703002001410036021020014110200141106a100321000240024020012802102202417f460d002000450d002001200236023420012000360230200141106a200141306a10e30102402001280210220a450d002001290214210b2002450d02200010200c020b41ceb8c4004133200141386a41fcbfc4004184b9c400102e000b4101210a4200210b0b2006420020051b210c2004410020051b210d2005410420051b210e024002400240024002402007450d00200b422088a72205450d002009200741246c6a210f2005410574211020092103034020032802202104200341086a2900002106200341106a290000211120032900002112200141106a41186a200341186a290000370300200141106a41106a2011370300200141106a41086a200637030020012012370310200341246a21032010210241002100200a2105024002400340200141106a2005460d0120002005200141106a412010cf0522074100476a21002007450d01200541206a2105200241606a22020d000c020b0b200d20046a2202200d490d000240200041016a2207200c422088a722054d0d000240200ca7220d20056b20072005200720054b1b221320056b22074f0d00200520076a22142005490d08200d41017422152014201520144b1b221441ffffffff03712014470d08201441027422154100480d0802400240200d0d002015101e210e0c010b200e200d41027420151022210e0b200e450d052014ad210c0b200e20054102746a210d0240024020074102490d00200d410020132005417f736a220741027410cc051a200e200520136a20056b4102746a417c6a210d200720056a21050c010b2007450d010b200d4100360200200541016a21050b200520004d0d05200e20004102746a2200200028020020046a360200200c42ffffffff0f832005ad42208684210c2002210d0b2003200f470d000b0b02402008450d00200910200b0240200ba7450d00200a10200b200141106a41086a220542003703002001420037031041fcf9c600411e200141106a1000200141086a20052903003703002001200129031037030002400240200e0d002001411010040c010b20014100360218200142013703104104101e2205450d022005200d36000020014284808080c000370214200120053602102001200c422088a72205360230200141306a200141106a10630240024020050d002001280218210420012802142103200128021021000c010b2005410274210d4100200128021822056b210220012802142103200e210703402007280200210a02400240200320026a4104490d00200128021021000c010b200541046a22002005490d07200341017422042000200420004b1b22044100480d070240024020030d002004101e21000c010b200128021020032004102221000b02402000450d002001200436021420012000360210200421030c010b20044101102d000b200741046a21072001200541046a2204360218200020056a200a3600002002417c6a210220042105200d417c6a220d0d000b0b2001411020002004100502402003450d00200010200b200e450d00200ca7450d00200e10200b200141c0006a24000f0b20154104102d000b41044101102d000b41bcf8c60020002005102a000b1027000b8b940109017f017e017f027e0c7f017e1d7f037e057f23004180076b22012400109c0202400240024020004101460d0042002102200141d8026a41086a22004200370300200142003703d80241deedc6004110200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d8032001410036028006200141d8036a411020014180066a1003210002400240024002402001280280062203417f460d002000450d0020034108490d0120002900002102200010200b42002104200141d8026a41086a22004200370300200142003703d80241afedc600410f200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d8032001410036028006200141d8036a411020014180066a10032100024002402001280280062203417f460d002000450d0020034108490d0120002900002104200010200b42002105200141d8026a41086a22004200370300200142003703d80241ceedc6004110200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d8032001410036028006200141d8036a411020014180066a10032100024002402001280280062203417f460d002000450d0020034108490d0120002900002105200010200b420020022005200442e4007e7c7d220420042002561b42e400540d05200141d8026a41086a22004200370300200142003703d8024191f6c6004114200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a005410021062001410036028006200141a0056a411020014180066a10032100024002402001280280062203417f460d002000450d0020034104490d0120002800002106200010200b200141d8026a41086a22004200370300200142003703d80241a5f6c6004115200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a10032100024002402001280280062203417f470d00410221070c010b024020000d00410221070c010b0240024002402003450d0020002d0000220341014b0d004100210720030e020201020b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b410121070b200010200b10d5012108200141086a10d101200141186a10d30120012802182109200128021c210a0240024002400240024020012802202200450d0020092000410574220b6a210c200141cc026a210d20014180066a41206a210e20014180026a410472210f200141d8016a410472210341002110410221000340200141d8006a41186a200920106a221141186a2900002202370300200141d8006a41106a201141106a2900002204370300200141d8006a41086a201141086a290000220537030020012011290000221237035820032012370000200341086a2005370000200341106a2004370000200341186a200237000020012000417e6a22133602d8014100211402402013200310d4010d0020014180026a41206a200141d8016a41206a28020036020020014180026a41186a200141d8016a41186a29030037030020014180026a41106a200141d8016a41106a29030037030020014180026a41086a200141d8016a41086a290300370300200120012903d8013703800220014198016a41186a2214200f41186a221529000037030020014198016a41106a2216200f41106a221729000037030020014198016a41086a2218200f41086a22192900003703002001200f2900003703980120014180066a41186a2213201529000037030020014180066a41106a2215201729000037030020014180066a41086a221720192900003703002001200f29000037038006200141a8026a20014180066a10b604200141b8016a41186a22192014290300370300200141b8016a41106a221a2016290300370300200141b8016a41086a2216201829030037030020012001290398013703b80120012802c8022214450d00200e20012903a802370300200e41186a200141a8026a41186a290300370300200e41106a200141a8026a41106a290300370300200e41086a200141a8026a41086a290300370300201320192903003703002015201a2903003703002017201629030037030020014188016a41086a2216200d41086a280200360200200120012903b801370380062001200d29020037038801200141d8026a41386a221820014180066a41386a290300370300200141d8026a41306a221920014180066a41306a290300370300200141d8026a41286a221a20014180066a41286a290300370300200141d8026a41206a221b200e290300370300200141d8026a41186a221c2013290300370300200141d8026a41106a22132015290300370300200141d8026a41086a2215201729030037030020012001290380063703d802200141d8036a41386a2018290300370300200141d8036a41306a2019290300370300200141d8036a41286a201a290300370300200141d8036a41206a201b290300370300200141d8036a41186a201c290300370300200141d8036a41106a2013290300370300200141d8036a41086a2015290300370300200120012903d8023703d803200141f8006a41086a201628020036020020012001290388013703780b200141a0056a41086a200141d8036a41086a290300370300200141a0056a41106a200141d8036a41106a290300370300200141a0056a41186a200141d8036a41186a290300370300200141a0056a41206a200141d8036a41206a290300370300200141a0056a41286a200141d8036a41286a290300370300200141a0056a41306a200141d8036a41306a290300370300200141a0056a41386a200141d8036a41386a290300370300200141c8006a41086a200141f8006a41086a280200360200200120012903d8033703a0052001200129037837034820140d02200041016a2100200b201041206a2210470d000b0b4100211d200141003602e003200142083703d80341082116200a0d01410021140c090b200141c0046a41386a2203200141a0056a41386a290300370300200141c0046a41306a220f200141a0056a41306a290300370300200141c0046a41286a2213200141a0056a41286a290300370300200141c0046a41206a2215200141a0056a41206a290300370300200141c0046a41186a2217200141a0056a41186a290300370300200141c0046a41106a2216200141a0056a41106a290300370300200141c0046a41086a2218200141a0056a41086a290300370300200141386a41086a2219200141c8006a41086a280200360200200120012903a0053703c00420012001290348370338200141286a41086a221a20192802003602002001200129033837032820014180066a41086a2219201829030037030020014180066a41106a2218201629030037030020014180066a41186a220d201729030037030020014180066a41206a2217201529030037030020014180066a41286a2215201329030037030020014180066a41306a2213200f29030037030020014180066a41386a220f2003290300370300200120012903c00437038006200141d8026a41086a2203201a280200360200200120012903283703d80241d000101e2216450d02201620012903800637030020162014360240201620012903d802370244201641386a200f290300370300201641306a2013290300370300201641286a2015290300370300201641206a2017290300370300201641186a200d290300370300201641106a2018290300370300201641086a2019290300370300201641cc006a20032802003602000240200b41606a2010470d00410121144101211d0c080b201141206a2103200b20106b41606a2117200141cc026a210d20014180026a410472210f200141d8016a41047221110340200141d8006a41186a200341186a2210290000370300200141d8006a41106a200341106a2214290000370300200141d8006a41086a200341086a22132900003703002001200329000037035820012000417f6a22153602d801201329000021022014290000210420032900002105201141186a2010290000370000201141106a2004370000201141086a2002370000201120053700004100211002402015201110d4010d0020014180026a41206a200141d8016a41206a28020036020020014180026a41186a200141d8016a41186a29030037030020014180026a41106a200141d8016a41106a29030037030020014180026a41086a200141d8016a41086a290300370300200120012903d8013703800220014198016a41186a2210200f41186a221329000037030020014198016a41106a220b200f41106a221529000037030020014198016a41086a2218200f41086a22192900003703002001200f2900003703980120014180066a41186a2214201329000037030020014180066a41106a2213201529000037030020014180066a41086a221520192900003703002001200f29000037038006200141a8026a20014180066a10b604200141b8016a41186a22192010290300370300200141b8016a41106a221a200b290300370300200141b8016a41086a220b201829030037030020012001290398013703b80120012802c8022210450d00200e20012903a802370300200e41186a200141a8026a41186a290300370300200e41106a200141a8026a41106a290300370300200e41086a200141a8026a41086a290300370300201420192903003703002013201a2903003703002015200b29030037030020014188016a41086a220b200d41086a280200360200200120012903b801370380062001200d29020037038801200141d8026a41386a221820014180066a41386a290300370300200141d8026a41306a221920014180066a41306a290300370300200141d8026a41286a221a20014180066a41286a290300370300200141d8026a41206a221b20014180066a41206a290300370300200141d8026a41186a221c2014290300370300200141d8026a41106a22142013290300370300200141d8026a41086a2213201529030037030020012001290380063703d802200141d8036a41386a2018290300370300200141d8036a41306a2019290300370300200141d8036a41286a201a290300370300200141d8036a41206a201b290300370300200141d8036a41186a201c290300370300200141d8036a41106a2014290300370300200141d8036a41086a2013290300370300200120012903d8023703d803200141f8006a41086a200b28020036020020012001290388013703780b200141a0056a41086a200141d8036a41086a290300370300200141a0056a41106a200141d8036a41106a290300370300200141a0056a41186a200141d8036a41186a290300370300200141a0056a41206a200141d8036a41206a290300370300200141a0056a41286a200141d8036a41286a290300370300200141a0056a41306a200141d8036a41306a290300370300200141a0056a41386a200141d8036a41386a290300370300200141c8006a41086a200141f8006a41086a280200360200200120012903d8033703a0052001200129037837034820100d02200341206a210341012114200041016a2100201741606a22170d000b4101211d0c070b20091020410021140c070b200141c0046a41386a221e200141a0056a41386a2219290300370300200141c0046a41306a221f200141a0056a41306a221a290300370300200141c0046a41286a2220200141a0056a41286a220d290300370300200141c0046a41206a2221200141a0056a41206a221b290300370300200141c0046a41186a2222200141a0056a41186a221c290300370300200141c0046a41106a2223200141a0056a41106a2224290300370300200141c0046a41086a2225200141a0056a41086a2226290300370300200141386a41086a2227200141c8006a41086a2228280200360200200120012903a0053703c00420012001290348370338200141286a41086a2229202728020036020020012001290338370328200341206a2103200141cc026a212a20014180026a410472210f200141d8016a4104722111410121144101211d0240034020014180066a41086a2217202529030037030020014180066a41106a220b202329030037030020014180066a41186a2218202229030037030020014180066a41206a222b202129030037030020014180066a41286a222c202029030037030020014180066a41306a222d201f29030037030020014180066a41386a222e201e290300370300200120012903c00437038006200141d8026a41086a222f2029280200360200200120012903283703d8020240201d2014470d00201441016a22132014490d0b201441017422152013201520134b1b221dad42d0007e2202422088a70d0b2002a722134100480d0b0240024020140d002013101e21160c010b2016201441d0006c2013102221160b2016450d020b2016201441d0006c6a2213200129038006370300200b290300210220182903002104202b2903002105202c2903002112202d2903002130202e29030021312017290300213220132010360240201341086a2032370300201341386a2031370300201341306a2030370300201341286a2012370300201341206a2005370300201341186a2004370300201341106a2002370300201320012903d802370244201341cc006a202f280200360200201441016a21142003200c460d070340200141d8006a41186a200341186a2210290000370300200141d8006a41106a200341106a2213290000370300200141d8006a41086a200341086a221529000037030020012003290000370358200120003602d801201529000021022013290000210420032900002105201141186a2010290000370000201141106a2004370000201141086a2002370000201120053700004100211002402000201110d4010d0020014180026a41206a200141d8016a41206a28020036020020014180026a41186a200141d8016a41186a29030037030020014180026a41106a200141d8016a41106a29030037030020014180026a41086a200141d8016a41086a290300370300200120012903d8013703800220014198016a41186a2210200f41186a221329000037030020014198016a41106a2215200f41106a223329000037030020014198016a41086a2234200f41086a22352900003703002001200f2900003703980120182013290000370300200b2033290000370300201720352900003703002001200f29000037038006200141a8026a20014180066a10b604200141b8016a41186a22132010290300370300200141b8016a41106a22332015290300370300200141b8016a41086a2215203429030037030020012001290398013703b80120012802c8022210450d00200e20012903a802370300200e41186a200141a8026a41186a290300370300200e41106a200141a8026a41106a290300370300200e41086a200141a8026a41086a29030037030020182013290300370300200b20332903003703002017201529030037030020014188016a41086a2213202a41086a280200360200200120012903b801370380062001202a29020037038801200141d8026a41386a2215202e290300370300200141d8026a41306a2233202d290300370300200141d8026a41286a2234202c290300370300200141d8026a41206a2235202b290300370300200141d8026a41186a22362018290300370300200141d8026a41106a2237200b290300370300202f201729030037030020012001290380063703d802200141d8036a41386a2015290300370300200141d8036a41306a2033290300370300200141d8036a41286a2034290300370300200141d8036a41206a2035290300370300200141d8036a41186a2036290300370300200141d8036a41106a2037290300370300200141d8036a41086a202f290300370300200120012903d8023703d803200141f8006a41086a201328020036020020012001290388013703780b2026200141d8036a41086a2903003703002024200141d8036a41106a290300370300201c200141d8036a41186a290300370300201b200141d8036a41206a290300370300200d200141d8036a41286a290300370300201a200141d8036a41306a2903003703002019200141d8036a41386a2903003703002028200141f8006a41086a280200360200200120012903d8033703a00520012001290378370348024020100d00200041016a2100200c200341206a2203470d010c090b0b201e2019290300370300201f201a2903003703002020200d2903003703002021201b2903003703002022201c290300370300202320242903003703002025202629030037030020272028280200360200200120012903a0053703c004200120012903483703382029202728020036020020012001290338370328200341206a2103200041016a21000c000b0b20134108102d000b41d0004108102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b0240200a450d00200910200b200120143602e0032001201d3602dc03200120163602d8030b10d5012103024002400240024002400240024002400240024002400240411b101e2200450d00200041176a41002800e7f346360000200041106a41002900e0f346370000200041086a41002900d8f346370000200041002900d0f3463700002000411b413610222200450d012000200336001b200141b8016a41186a22034200370300200141b8016a41106a22114200370300200141b8016a41086a22104200370300200142003703b8012000411f200141b8016a100120014180066a41186a200329030037030020014180066a41106a201129030037030020014180066a41086a2010290300370300200120012903b801370380062000102020014180066a4120101510d50121034117101e2200450d022000410f6a41002900b9c944370000200041086a41002900b2c944370000200041002900aac94437000020004117412e10222200450d0320002003360017200141b8016a41186a22034200370300200141b8016a41106a22114200370300200141b8016a41086a22104200370300200142003703b8012000411b200141b8016a100120014180066a41186a200329030037030020014180066a41106a2203201129030037030020014180066a41086a2010290300370300200120012903b801370380062000102020014180066a41201015024002402014450d0020014180066a200141d8036a10e803200141cb046a20014180066a41086a28020036000020012001290380063700c3042001418c066a200141c7046a290000370000200141023a008406200141063a008006200120012900c0043700850620014180066a107720012802102100200141003602e002200142013703d8022003200141d8036a41086a28020036020020012000360284062001200836028006200120012903d80337038806200141d8026a20014180066a10fc040c010b200141013a008406200141063a00800620014180066a1077201d450d00201610200b0240200128020c450d00200128020810200b200141d8026a41086a22004200370300200142003703d80241f7a6c6004112200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a100321162001280280062218417f460d052016450d05200120183602c404200120163602c0042001200141c0046a105f20012802000d0e20012802c404221141807f712200417f4c0d082001280204210902400240201141077622140d00410121170c010b2000101e2217450d050b02402009450d0020014180066a41206a2115200141d8036a410172210b410021100340200141003a00f803201041016a210f4100210002400240024002400240034020112000460d01200141d8036a20006a20012802c00422032d00003a00002001200341016a3602c0042001200041016a22033a00f8032003210020034120470d000b200141b8016a41086a2200200141d8036a41086a290300370300200141b8016a41106a220e200141d8036a41106a290300370300200141b8016a41186a2213200141d8036a41186a290300370300200120012903d8033703b8012001201120036b3602c404200141d8036a200141c0046a10f60220012d00d8034101460d0120014180066a41186a201329030037030020014180066a41106a200e29030037030020014180066a41086a2000290300370300200120012903b801370380062015200b41e00010cd051a200141d8026a20014180066a41800110cd051a20142010470d0420104101742200200f2000200f4b1b221441ffffff0f712014470d14201441077422004100480d1420100d022000101e21170c030b200141003602c404200041ff0171450d00200141003a00f8030b2014450d13201710200c130b201720104107742000102221170b2017450d090b201720104107746a200141d8026a41800110cd051a200f2009460d0120012802c4042111200f21100c000b0b2017450d0e2009ad42208621022014ad210402402018450d00201610200b200220048421300c070b411b4101102d000b41364101102d000b41174101102d000b412e4101102d000b20004101102d000b41012117420021300c010b20004101102d000b4100210002400240024002400240024002400240024002400240024002402030422088a7221941077422090d004101212f4100212a0c010b20094102762203101e222f450d01201941ffffff0f71212a0b02402019450d0020194107742111202f210020172103034020002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a290000370000200041206a210020034180016a2103201141807f6a22110d000b201941077441807f6a41077641016a21000b20074102472111200141d8026a41086a22034200370300200142003703d80241868cc6004112200141d8026a1000200141a0056a41086a2003290300370300200120012903d8023703a00520014100360288062001420137038006200120003602d802200141d8026a20014180066a106302402000450d0020004105742103202f21000340200020014180066a10ca01200041206a2100200341606a22030d000b0b2007201171211b2001280284062100200141a0056a41102001280280062203200128028806100502402000450d00200310200b0240201b450d00200141d8026a41086a22004200370300200142003703d80241baf6c600411a200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a100321002001280280062203417f460d002000450d00200120033602dc02200120003602d80220014180066a200141d8026a10c1012001280280062211450d02200129028406210202402003450d00200010200b200141a0056a411010042002a7450d00201110200b200141d8026a41086a22004200370300200142003703d80241d9f9c6004123200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d803410021032001410036028006200141d8036a411020014180066a1003210002402001280280062211417f460d002000450d0020114104490d0320002800002103200010200b200641016a211a200141d8026a41086a22134200370300200142003703d802419afac6004110200141d8026a1000200141d8036a41086a2013290300370300200120012903d8023703d803410121064100200141d8036a10d6042200200041ff01714104461b41ff0171220041034b0d044100213302400240024020000e0400010902000b201a20036b2200201a4b0d06200041064f0d010c060b200141d8026a41086a22004200370300200142003703d802419afac6004110200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d803200141d8036a411010040b200141a0056a10d3014100210020012802a405211620012802a005210b024020012802a805220341057422110d0041082115410021180c040b20114105752218ad42d0007e2202422088a70d102002a722104100480d102010101e22150d0320104108102d000b20034101102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b02402003450d00201141606a210d20014180066a41206a210020152110200b21030340200341086a2900002102200341106a290000210420032900002105200141d8036a41186a220f200341186a290000370300200141d8036a41106a22142004370300200141d8036a41086a220e2002370300200120053703d803200141d8026a200141d8036a10b60420014180066a41186a200f29030037030020014180066a41106a201429030037030020014180066a41086a200e290300370300200020012903d802370300200041086a200141d8026a41086a290300370300200041106a200141d8026a41106a290300370300200041186a200141d8026a41186a290300370300200041206a200141d8026a41206a290300370300200041286a200141d8026a41286a290300370300200120012903d80337038006201020014180066a41d00010cd0541d0006a2110200341206a2103201141606a22110d000b200d41057641016a21000b02402016450d00200b10200b20014180066a201a10ba0420012802800622330d0102402000450d00200041d0006c2103201541c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200341b07f6a22030d000b0b2018450d00201510200b410021330c010b200129028406213102402000450d00200041d0006c2103201541c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200341b07f6a22030d000b0b02402018450d00201510200b203345210620330d010b20134200370300200142003703d80241868cc6004112200141d8026a1000200141a0056a41086a2013290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a100321002001280280062203417f460d022000450d02200120033602dc02200120003602d80220014180066a200141d8026a10e301200128028006220c450d01200129028406211202402003450d00200010200b410021350c030b41012135203121122033210c0c020b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b410021354101210c420021120b200141d8026a41086a22004200370300200142003703d8024191f6c6004114200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001201a36028006200141a0056a411020014180066a41041005200120353a0098012001201720096a22243602bc01200120173602b8012001200141b8016a3602dc01200120014198016a3602d8014100210f024002402012422088a7220041057422030d004101211c410021340c010b2003410575223441ffffff0f712034470d06203441077422034100480d062003101e221c0d0020034101102d000b0240024002400240024002402000450d0020004105742110200141d8026a410172211620014180066a41206a210b200141c0046a41c0006a210d200141c0046a41206a21184100210f201c2114200c21000340200041086a2900002102200041106a290000210420002900002105200141a8026a41186a220e200041186a290000370300200141a8026a41106a22132004370300200141a8026a41086a22092002370300200120053703a80220014180026a200141a8026a10fd0220012802880221112001280280022103200141003602d80220032011200141d8026a100321110240024020012802d8022215417f460d002011450d00200120153602a405200120113602a005200141d8026a200141a0056a10f60220012d00d8024101460d04200141d8036a201641e00010cd051a02402015450d00201110200b200141a0056a200141d8036a41e00010cd051a200141d8026a200141a0056a41e00010cd051a200141d8036a200141d8026a41e00010cd051a410121110c010b200141d8026a200141a0056a41e00010cd051a410021110b0240200128028402450d00200310200b0240024020110d00200141c0046a410041e00010cc051a0c010b200141c0046a200141d8036a41e00010cd051a0b024020012802d8012d00000d0020012802dc01221128020022032011280204460d00201120034180016a36020002400240200141c0046a200341206a2211460d002011200141c0046a412010cf050d010b02402018200341c0006a2211460d0020112018412010cf050d010b200d200341e0006a2203460d012003200d412010cf05450d010b20012802d80141013a00000b200041206a210020014180066a41186a200e29030037030020014180066a41106a201329030037030020014180066a41086a2009290300370300200120012903a80237038006200b200141c0046a41e00010cd051a200f41016a210f201420014180066a41800110cd054180016a2114201041606a22100d000b0b02402012a7450d00200c10200b200f41ffffff0f71200f470d05200f4107742200417f4c0d0520012d009801210902400240024020000d00410121130c010b2000101e2213450d010b410021000240200f450d00201c200f4107746a210e20014180066a41e0006a210320014180066a41c0006a211120014180066a41206a211020132114201c2100034020014180066a41186a200041186a29000037030020014180066a41106a200041106a29000037030020014180066a41086a200041086a2900003703002001200029000037038006201041186a200041386a290000370000201041106a200041306a290000370000201041086a200041286a2900003700002010200041206a290000370000201141186a200041d8006a290000370000201141106a200041d0006a290000370000201141086a200041c8006a2900003700002011200041c0006a2900003700002003200041e0006a290000370000200341086a200041e8006a290000370000200341106a200041f0006a290000370000200341186a200041f8006a290000370000201420014180066a41800110cd054180016a211420004180016a2200200e470d000b200f41077441807f6a41077641016a21000b200141d8026a41086a22034200370300200142003703d80241f7a6c6004112200141d8026a1000200141a0056a41086a2003290300370300200120012903d8023703a00520014100360288062001420137038006200120003602d802200141d8026a20014180066a106302402000450d00201320004107746a2103201321000340200020014180066a10ca01200041206a20014180066a10ca01200041c0006a20014180066a10ca01200041e0006a20014180066a10ca0120004180016a22002003470d000b0b2001280284062100200141a0056a41102001280280062203200128028806100502402000450d00200310200b0240200f450d00201310200b200141d8026a41086a22004200370300200142003703d80241a5f6c6004115200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a005200120093a008006200141a0056a411020014180066a410110052001201a36028406200141043a00800620014180066a107702404108101e2203450d00200320243602042003201736020002400240201b0d0042002102200141d8036a41086a22004200370300200142003703d80341f0f1c600411c200141d8036a100020014180066a41086a2000290300370300200120012903d80337038006200141003602d80220014180066a4110200141d8026a10032100024020012802d8022211417f460d002000450d0020114108490d0220002900002102200010200b200110d50136028006200220014180066a108005200310200c070b2019450d04200320174180016a22143602002001201741226a2900003701820620012017412a6a29000037018a06200141c0046a41086a22002001290388063703002001201741326a29000037019206200141c0046a41106a221120012903900637030020012017413a6a28000036019a0620012017413e6a2f00003b019e06200141c0046a41186a2210200129039806370300200141003a00a0062001201741216a2d00003a008106200120172d00203a00800620012001290380063703c004200141d8026a41186a220e2010290300370300200141d8026a41106a22102011290300370300200141d8026a41086a22112000290300370300200120012903c0043703d8022017450d04200141d8036a41186a200e290300370300200141d8036a41106a2010290300370300200141d8036a41086a2011290300370300200120012903d8023703d803202420146b41077641016a220041286c2211417f4c0d0802402011101e2214450d00201420012903d80337030020144201370320201441186a200141d8036a41186a2226290300370300201441106a200141d8036a41106a2228290300370300201441086a200141d8036a41086a22072903003703000240200328020022112003280204221b470d0041012111200310200c070b200320114180016a220c3602002001201141226a2900003701820620012011412a6a29000037018a06200141c0046a41086a220e2001290388063703002001201141326a29000037019206200141c0046a41106a221320012903900637030020012011413a6a28000036019a0620012011413e6a2f00003b019e06200141c0046a41186a2209200129039806370300200141003a00a0062001201141216a2d00003a008106200120112d00203a00800620012001290380063703c004200141d8026a41186a22152009290300370300200141d8026a41106a220b2013290300370300200141d8026a41086a2216200e290300370300200120012903c0043703d8024102211141c800211003402026201529030022023703002028200b2903002204370300200720162903002205370300200120012903d80222123703d80320014180066a41186a2218200237030020014180066a41106a2219200437030020014180066a41086a221a20053703002001201237038006024002402011417f6a2000460d002000210d0c010b201b200c6b41077620006a41016a220d2000490d102000410174221b200d201b200d4b1b220dad42287e2202422088a70d102002a7221b4100480d100240024020000d00201b101e21140c010b2014200041286c201b102221140b20140d00201b4108102d000b201420106a221b41606a2200200129038006370300201a29030021022019290300210420182903002105201b4201370300200041186a2005370300200041106a2004370300200041086a20023703000240200328020022002003280204221b470d00200d2100200310200c080b200320004180016a220c3602002001200041226a2900003701820620012000412a6a29000037018a06200e2001290388063703002001200041326a29000037019206201320012903900637030020012000413a6a28000036019a0620012000413e6a2f00003b019e062009200129039806370300200141003a00a0062001200041216a2d00003a008106200120002d00203a00800620012001290380063703c00420152009290300370300200b20132903003703002016200e290300370300200120012903c0043703d802201041286a2110201141016a2111200d21000c000b0b20114108102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41084104102d000b20004101102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b200310204108211441002111410021000b200141d8036a41086a22034200370300200142003703d80341cac1c5004117200141d8036a100020014180066a41086a2003290300370300200120012903d80337038006200141d8026a20014180066a10bc040240024020012802d8024101460d0020012011360288062001200036028406200120143602800620014180066a4100410020011081050c010b20014180066a4110100420012902dc02210220012011360288062001200036028406200120143602800620014180066a2002a741012002422088a71081050b42002102200141d8036a41086a22004200370300200142003703d80341f0f1c600411c200141d8036a100020014180066a41086a2000290300370300200120012903d80337038006200141003602d80220014180066a4110200141d8026a10032100024020012802d8022203417f460d002000450d0020034108490d0220002900002102200010200b200141d8036a41086a22004200370300200142003703d80341f0f1c600411c200141d8036a100020014180066a41086a2000290300370300200120012903d803370380062001200242017c22023703d80220014180066a4110200141d8026a41081005200110d50136028006200220014180066a1080050b02404108101e2200450d00200020243602042000201736020002404108101e2203450d002003201c200f4107746a221a3602042003201c360200200141d8016a200041e4c1c50010e90320014180026a200341f8c3c50010e90320012802e001210320012802dc01210e20012802d8012114200141a8026a41086a20014180026a41086a28020036020020012001290380023703a80242002102200141d8036a41086a22004200370300200142003703d80341afedc600410f200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d8022001410036028006200141d8026a411020014180066a10032100024002402001280280062211417f460d002000450d0020114108490d0120002900002102200010200b0240200242017c22042002540d00200141d8036a41086a22004200370300200142003703d80341afedc600410f200141d8036a1000200141d8026a41086a22112000290300370300200120012903d8033703d8022001200437038006200141d8026a411020014180066a4108100520004200370300200142003703d80341beedc6004110200141d8036a100020112000290300370300200120012903d8033703d80220014100360288062001420137038006200120033602d803200141d8036a20014180066a106302402003450d002014200341286c6a210f201421030340200320014180066a10ca01200341206a290300210202400240200128028406221120012802880622006b4108490d0020012802800621110c010b200041086a22102000490d0d201141017422002010200020104b1b22004100480d0d0240024020110d002000101e21110c010b20012802800620112000102221110b02402011450d002001200036028406200120113602800620012802880621000c010b20004101102d000b2001200041086a36028806201120006a2002370000200f200341286a2203470d000b0b2001280284062100200141d8026a41102001280280062203200128028806100502402000450d00200310200b0240200e450d00201410200b0240200442017c22022004540d00200141d8036a41086a22004200370300200142003703d80341fdedc6004113200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d80220014180066a200141d8026a10da0120012d0080062100200141c0046a41186a220320014199066a290000370300200141c0046a41106a221120014191066a290000370300200141c0046a41086a221020014189066a29000037030020012001290081063703c0040240024020004101460d0020014198016a41186a420037030020014198016a41106a420037030020014198016a41086a420037030020014200370398010c010b20014198016a41186a200329030037030020014198016a41106a201129030037030020014198016a41086a2010290300370300200120012903c004370398010b200141d8036a41086a22004200370300200142003703d8034190eec6004111200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d802410021132001410036028006200141d8026a411020014180066a10032100024002402001280280062203417f460d002000450d0020034104490d0120002800002113200010200b200141d8036a41086a22004200370300200142003703d8034190eec6004111200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d8022001410036028006200141d8026a411020014180066a41041005200141a0056a41186a20014198016a41186a290300370300200141a0056a41106a20014198016a41106a290300370300200141a0056a41086a20014198016a41086a29030037030020012001290398013703a005417f201341016a220020002013491b410d74412872220b417f4c0d070240200b101e2215450d00201520012903a00537000020152002370020201541186a200141a0056a41186a290300370000201541106a200141a0056a41106a290300370000201541086a200141a0056a41086a2903003700004128210941002103410021100240024002400240024002400340024002400240024002402000200f460d0020100d010b034020102111200320134f0d024116101e2200450d0b2000410e6a41002900afee46370000200041086a41002900a9ee46370000200041002900a1ee4637000020004116412c10222200450d0a20002003360016200141c0046a41186a22104200370300200141c0046a41106a220f4200370300200141c0046a41086a22144200370300200142003703c0042000411a200141c0046a100120014180066a41186a201029030037030020014180066a41106a200f29030037030020014180066a41086a2014290300370300200120012903c0043703800620001020200141003602d80220014180066a4120200141d8026a1003210f0240024020012802d8022200417f470d004101211041002100420021020c010b200120003602dc032001200f3602d803200141d8026a200141d8036a109f0320012802d8022210450d0a20012902dc02210202402000450d00200f10200b20014180066a412010042002422088a721000b02402011450d00200e450d00201110200b200341016a21032002a7210e2000450d000b201020004105746a210f201021000b200141d8036a41186a2214200041186a290000370300200141d8036a41106a2216200041106a290000370300200141d8036a41086a2218200041086a290000370300200120002900003703d803200b20096b411f4b0d02200941206a22112009490d17200b41017422192011201920114b1b221141004e0d010c170b02402011450d00200e450d00201110200b200141c0046a41186a22034200370300200141c0046a41106a22114200370300200141c0046a41086a22104200370300200142003703c00420152009200141c0046a1001200141b8016a41186a2003290300370300200141b8016a41106a2011290300370300200141b8016a41086a2010290300370300200120012903c0043703b8010240200b450d00201510200b200141d8036a41086a22004200370300200142003703d80341fdedc6004113200141d8036a1000200141d8026a41086a220f2000290300370300200120012903d8033703d80220014110360284062001200141d8026a36028006200141b8016a20014180066a108203200141a0056a41186a20014198016a41186a2903002202370300200141a0056a41106a20014198016a41106a2903002204370300200141a0056a41086a20014198016a41086a2903002205370300200120012903980122123703a00520014180066a41186a200237030020014180066a41106a200437030020014180066a41086a2005370300200120123703800620004200370300200142003703d80341eeedc600410f200141d8036a1000200f2000290300370300200120012903d8033703d802200141103602dc032001200141d8026a3602d80320014180066a200141d8036a10b80120004200370300200142003703d80341fdedc6004113200141d8036a1000200f2000290300370300200120012903d8033703d80220014180066a200141d8026a10da0120012d0080062100200320014199066a290000370300201120014191066a290000370300201020014189066a29000037030020012001290081063703c00420004101460d04200141f0006a4200370300200141e8006a4200370300200141e0006a4200370300200142003703580c050b02400240200b0d002011101e21150c010b2015200b2011102221150b2015450d022011210b0b200041206a2100201520096a221120012903d803370000201141186a2014290300370000201141106a2016290300370000201141086a2018290300370000200941206a21090c000b0b20114101102d000b200141d8006a41186a200141c0046a41186a290300370300200141d8006a41106a200141c0046a41106a290300370300200141d8006a41086a200141c0046a41086a290300370300200120012903c0043703580b200141d8026a41086a2200200141a8026a41086a280200360200200141d8026a41246a200141d8006a41186a290300370200200141d8026a411c6a200141d8006a41106a290300370200200141d8026a41146a200141d8006a41086a290300370200200120012903a80222023703d802200120012903583702e402200141ac066a20014180036a28020036020020014180066a41246a200141f8026a29030037020020014180066a411c6a200141d8026a41186a29030037020020014180066a41146a200141d8026a41106a29030037020020014180066a410c6a200029030037020020012002370284062001410036028006200141d8036a20014180066a10ba03200141cb046a200141d8036a41086a280200360000200120012903d8033700c304200141d8036a410c6a200141c7046a290000370000200141c28289aa043600d903200141023a00d803200120012900c0043700dd03200141d8036a10fe0102402001280280060d0020014180066a41086a280200450d0020012802840610200b02404108101e2203450d00200320243602042003201736020002404108101e220c450d00200c201a360204200c201c36020010792100200141d8036a41086a22114200370300200142003703d80341dcbfc4004111200141d8036a1000200141d8026a41086a2011290300370300200120012903d8033703d8022001200041326a36028006200141d8026a411020014180066a410410052003280200220020032802042210460d0e200320004180016a220f3602002001200041e2006a290000370182062001200041ea006a29000037018a06200141c0046a41086a22112001290388063703002001200041f2006a29000037019206200141c0046a41106a22142001290390063703002001200041fa006a28000036019a062001200041fe006a2f00003b019e06200141c0046a41186a220e2001290398063703002001200041e0006a2f00003b01800620012001290380063703c004200141d8026a41186a2200200e290300370300200141d8026a41106a220e2014290300370300200141d8026a41086a22142011290300370300200120012903c0043703d802200141a0056a41186a22132000290300370300200141a0056a41106a200e290300370300200141a0056a41086a220e2014290300370300200120012903d8023703a0054101211102402010200f6b41077641016a22004105742210101e2214450d00201420012903a005370000201441186a2013290300370000201441106a200141a0056a41106a290300370000201441086a200e290300370000200328020022102003280204220d460d10200320104180016a221b3602002001201041e2006a290000370182062001201041ea006a29000037018a06200141c0046a41086a220e2001290388063703002001201041f2006a29000037019206200141c0046a41106a22132001290390063703002001201041fa006a28000036019a062001201041fe006a2f00003b019e06200141c0046a41186a22092001290398063703002001201041e0006a2f00003b01800620012001290380063703c004200141d8026a41186a22152009290300370300200141d8026a41106a220b2013290300370300200141d8026a41086a2216200e290300370300200120012903c0043703d802410221114120210f0340200141d8036a41186a20152903002202370300200141d8036a41106a200b2903002204370300200141d8036a41086a20162903002205370300200120012903d80222123703d80320014180066a41186a2218200237030020014180066a41106a2219200437030020014180066a41086a221a20053703002001201237038006024002402011417f6a2000460d00200021100c010b200d201b6b41077620006a41016a22102000490d152000410174220d2010200d20104b1b221041ffffff3f712010470d152010410574220d4100480d150240024020000d00200d101e21140c010b20142000410574200d102221140b20140d00200d4101102d000b2014200f6a2200200129038006370000200041186a2018290300370000200041106a2019290300370000200041086a201a2903003700000240200328020022002003280204220d470d00201021000c120b200320004180016a221b3602002001200041e2006a290000370182062001200041ea006a29000037018a06200e2001290388063703002001200041f2006a2900003701920620132001290390063703002001200041fa006a28000036019a062001200041fe006a2f00003b019e0620092001290398063703002001200041e0006a2f00003b01800620012001290380063703c00420152009290300370300200b20132903003703002016200e290300370300200120012903c0043703d802200f41206a210f201141016a2111201021000c000b0b20104101102d000b41084104102d000b41084104102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b412c4101102d000b41164101102d000b200b4101102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41c5fdc10041c90041a0fec1001045000b41c5fdc10041c9004190fec1001045000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41084104102d000b41084104102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b102c000b200310204101211441002111410021000c010b200310200b200141d8036a41086a22034200370300200142003703d80341edbfc400410d200141d8036a1000200141d8026a41086a2003290300370300200120012903d8033703d80220014100360288062001420137038006200120113602d803200141d8036a20014180066a106302402011450d0020114105742111201421030340200320014180066a10ca01200341206a2103201141606a22110d000b0b2001280284062103200141d8026a41102001280280062211200128028806100502402003450d00201110200b02402000450d00201410200b200c102002402034450d00201c10200b024020352006720d002031a7450d00203310200b0240202a450d00202f10200b2030a7450d00201710200b20014180076a24000f0b1027000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000bc90804117f017e017f047e230041b0016b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441306e220341306c2204417f4c0d01200228020c21050240024020040d00410821060c010b2004101e2206450d030b024002402005450d00410021070340200241003a00a8012007220841016a210720012802042109417f210a41002104024002400240034020092004460d0120024188016a20046a2001280200220b2d00003a000020012009200a6a3602042001200b41016a3602002002200441016a220c3a00a801200a417f6a210a200c2104200c4120470d000b200241e8006a41186a220d20024188016a41186a220e290300370300200241e8006a41106a220f20024188016a41106a2210290300370300200241e8006a41086a221120024188016a41086a2212290300370300200220022903880137036802402009200c6b22044108490d00200b29000121132001200b41096a3602002001200441786a360204200941786a200c460d00200b2d0009210a2001200b410a6a3602002001200441776a220c360204200a4104490d020b4104210a0c020b0240200441ff0171450d00200241003a00a8010b4104210a0c010b0240200c41034b0d004104210a0c010b200b28000a21142001200b410e6a3602002001200441736a360204201220112903003703002010200f290300370300200e200d290300370300200241e2006a41026a200241e5006a41026a2d00003a00002002200229036837038801200220022f00653b0162201321150b200241c0006a41086a220420024188016a41086a290300370300200241c0006a41106a220c20024188016a41106a290300370300200241c0006a41186a220920024188016a41186a2903003703002002413c6a41026a220b200241e2006a41026a2d00003a00002002200229038801370340200220022f01623b013c200a4104460d02200241186a41186a220d2009290300370300200241186a41106a2209200c290300370300200241186a41086a220c2004290300370300200241146a41026a220e200b2d00003a000020022002290340370318200220022f013c3b0114024020032008470d000240200841017422042007200420074b1b2203ad42307e2213422088a70d002013a722044100480d000240024020080d002004101e21060c010b2006200841306c2004102221060b20060d0120044108102d000b1027000b2006200841306c6a22042015370300200d290300211320092903002116200c2903002117200229031821182004200a3a002820042018370308200441106a2017370300200441186a2016370300200441206a20133703002004412c6a2014360000200420022f01143b00292004412b6a200e2d00003a000020072005470d000b0b2000200336020420002006360200200041086a20053602000c010b200041003602002003450d00200610200b200241b0016a24000f0b102c000b20044108102d000bee0403027f017e037f230041106b2203240020034100360208200342013703002003200236020c2003410c6a2003106302402002450d00200241306c21040340200141086a200310ca012001290300210502400240024002400240024020032802042206200328020822026b4108490d00200328020021060c010b200241086a22072002490d01200641017422022007200220074b1b22024100480d010240024020060d002002101e21060c010b200328020020062002102221060b2006450d022003200236020420032006360200200328020821020b2003200241086a360208200620026a2005370000200141286a2d0000210702400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422082006200820064b1b22084100480d010240024020020d002008101e21060c010b200328020020022008102221060b2006450d032003200836020420032006360200200328020821020b2003200241016a360208200620026a20073a00002001412c6a2802002107024020032802042206200328020822026b4104490d00200328020021060c040b200241046a22082002490d00200641017422022008200220084b1b22024100480d000240024020060d002002101e21060c010b200328020020062002102221060b02402006450d002003200236020420032006360200200328020821020c040b20024101102d000b1027000b20024101102d000b20084101102d000b200141306a21012003200241046a360208200620026a2007360000200441506a22040d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000ba70201057f230041106b22032400024002400240200141046a2204417f4c0d000240024020040d00410121050c010b2004101e2205450d020b2003410036020820032004360204200320053602002003200136020c2003410c6a20031063024020032802042206200328020822056b2001490d00200328020021040c030b0240200520016a22042005490d00200641017422072004200720044b1b22074100480d000240024020060d002007101e21040c010b200328020020062007102221040b02402004450d002003200736020420032004360200200721060c040b20074101102d000b1027000b102c000b20044101102d000b200420056a2000200110cd051a200228020020022802042004200520016a100502402006450d00200410200b200341106a24000bb8c80307017f017e047f017e057f067e0e7f230041a0096b220324000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012802000e22020103040105060708090a01010136353433323130012f1a19181701160101010100020b200341e0076a200141086a41b80110cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341b0016a200341e0076a200341f0066a10f902024020032802b0012201450d0020032802b401210220004181c2003b0108200020013602002000410a6a41003a0000200020023602040c4c0b200041023a00080c4b0b000b200141106a29030021042001410c6a280200210520022d00002102024002400240024002400240024002400240024002400240024002400240200141086a2802002206417f6a0e0700010203040509000b200241ff01710d070c0a0b2004a721070240200241ff01714101470d0020070d090c0a0b41e4fec6002101411321024104210620070d0b0c0c0b200241ff01710d054108101e2201450d1e2001200437000041b39dc100410a200141081005200110200c080b2004a721070240200241ff01710d0041fffbc000410520052004422088a7100520070d070c080b41d3fec6002101411121024105210620070d090c0a0b2004422088a721072004a721080240200241ff01710d000240200741186c2201450d00200520016a21022005210103402001280200200141086a2802002001410c6a280200200141146a2802001005200141186a22012002470d000b0b02402007450d00200741186c21022005210103400240200141046a280200450d00200128020010200b0240200141106a280200450d002001410c6a28020010200b200141186a2101200241686a22020d000b0b4107210120080d020c030b02402007450d00200741186c21022005210103400240200141046a280200450d00200128020010200b0240200141106a280200450d002001410c6a28020010200b200141186a2101200241686a22020d000b0b4105210120080d010c020b2004422088a721072004a721080240200241ff01710d0002402007410c6c2201450d00200520016a21022005210103402001280200200141086a28020010042001410c6a22012002470d000b0b02402007450d002007410c6c21022005210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b4107210120080d010c020b02402007450d002007410c6c21022005210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b410521012008450d010b200510200b02402006417f6a4107490d002004a7450d00200510200b20014107460d030b41d3fec600210141112102410521060c050b2004a72107200241ff01710d0220052004422088a710152007450d010b200510200b200041023a00080c4c0b41d3fec600210141112102410521062007450d010b200510200b200041013b010820002002360204200020013602002000410a6a20063a00000c490b024020022d00004102470d00200141086a2903002104200341a8026a41086a22014200370300200342003703a80241fc81c7004113200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e80102400240200341e8016a411041e4fdc600410041001002417f470d00200341a8026a41086a22014200370300200342003703a80241c4aac100410d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d4a2001450d4a024020024108490d002001290000210920011020200950450d020c4b0b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41c6a9c100413041a888c6001028000b200341a8026a41086a22014200370300200342003703a80241c4aac100410d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d0042b81721090c010b024020010d0042b81721090c010b20024108490d122001290000210920011020200942b8177c21090b20092004580d4841f6a9c10041ce0041a888c6001028000b20004181043b01082000410f3602042000419affc6003602002000410a6a41003a00000c480b2001410c6a2802002105200141086a280200210a2001280204210b02400240024020022d00004102460d00419affc600210c410f210d0c010b200341a8026a41086a22014200370300200342003703a8024198edc6004117200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d012001450d0141002106200341003a00e0030240024002402002450d0020012d0000220241014b0d0020020e020201020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b410121060b2001102020064102460d012006450d0141deacc600210c411c210d0b02402005450d00200b200541f0006c6a2107200b2106034002402006410c6a2802002202450d0020062802042101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b200641f0006a21010240200641086a280200450d00200628020410200b2001210620012007470d000b0b200a450d46200b10200c460b200341a8026a41086a22014200370300200342003703a8024198edc6004117200341a8026a1000200341e8016a41086a22022001290300370300200320032903a8023703e801200341013a00e007200341e8016a4110200341e0076a410110051079210620014200370300200342003703a8024189a7c6004111200341a8026a100020022001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072207417f460d0d2001450d0d200320073602f406200320013602f006200341e0076a200341f0066a10bf0120032802e0072202450d0e20032902e407210402402007450d00200110200b200320023602a0032004422088a721012004a721070c3f0b200341c0046a41086a2206200141146a290200370300200341c0046a41106a22072001411c6a290200370300200341c0046a41186a2208200141246a290200370300200341c0046a41206a220e2001412c6a28020036020020032001410c6a2902003703c004200141386a2903002109200141306a290300210f200141c8006a2903002110200141c0006a2903002111200141e0006a2903002112200141d8006a2903002113200141086a2802002105200141d0006a2903002114200341a0036a41026a220b200241036a2d00003a0000200341c0026a41086a220c200241186a290000370300200341c0026a41106a220d200241206a2d00003a0000200320022f00013b01a0032003200241106a2900003703c002200241086a290000210441042115200241046a280000211620022d0000210102400240024002400240024002400240024020050e050001020304000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41d483c6001033000b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200341fc016a41026a200b2d00003a0000200320032f01a0033b01fc01200341a8026a41086a200c290300370300200341a8026a41106a200d2d00003a0000200320032903c0023703a80241012102410421050240200141ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a000020034180026a41106a200341b0026a29030037030020034198026a200341a8026a41106a2d00003a0000200320032f01fc013b01e8012003200437038002200320032903a8023703880241002102201621050b200341c0036a41086a220120034180026a41086a2206290300370300200341c0036a41106a220720034180026a41106a2208290300370300200341c0036a41186a220e20034180026a41186a220b2d00003a0000200320032f01e8013b01a00220032003290380023703c0032003200341ea016a2d00003a00a2020240024020020d00200341ef036a2001290300370000200341f7036a2007290300370000200341ff036a200e2d00003a0000200320032d00a2023a00e203200320032f01a0023b01e003200320053600e303200320032903c0033700e703200341e0076a41206a200341f0066a41206a280200360200200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b602200620034191066a290000370300200820034199066a290000370300200b200341a1066a29000037030020032003290089063703800220032d0088064101460d12200341a8056a41186a20034180026a41186a290300370300200341a8056a41106a20034180026a41106a290300370300200341a8056a41086a20034180026a41086a29030037030020032003290380023703a805200341086a200341e0036a200341a8056a200f200910fa02200328020822010d010c450b419affc6002101410f2102024020050e0700120506070846000b20032802c003210120032802c40321020c450b200328020c21020c440b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200141ff01710d05200341e0076a41206a200341f0066a41206a280200360200200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b602200341c0036a41086a220120034188066a41106a290300370300200341c0036a41106a220220034188066a41186a290300370300200341c0036a41186a220520034188066a41206a2d00003a0000200320032f0089063b01a002200320032d008b063a00a202200320034188066a41086a2903003703c00320032d0088064101460d0f200328028c062106200341b7056a2001290300370000200341bf056a2002290300370000200341c7056a20052d00003a0000200320032d00a2023a00aa05200320032f01a0023b01a805200320063600ab05200320032903c0033700af054114101e2201450d11200141002900ce8a45370000200141106a41002800de8a45360000200141086a41002900d68a4537000020034294808080c0023702e407200320013602e007200341a8056a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e407450d0020032802e00710200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d402001450d4020024110490d10200141086a290000210420012900002114200110200c410b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200141ff01710d04200341e0076a41206a2201200341f0066a41206a280200360200200341e0076a41186a2202200341f0066a41186a290300370300200341e0076a41106a2205200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b602200341c0036a41086a220620034188066a41106a290300370300200341c0036a41106a220720034188066a41186a290300370300200341c0036a41186a220820034188066a41206a2d00003a0000200320032f0089063b01a002200320032d008b063a00a202200320034188066a41086a2903003703c00320032d0088064101460d0e200328028c06210e200341ef036a2006290300370000200341f7036a2007290300370000200341ff036a20082d00003a0000200320032d00a2023a00e203200320032f01a0023b01e0032003200e3600e303200320032903c0033700e703200220103703002005201137030020012014a7360200200320093703e8072003200f3703e00720034188066a200341e0076a10b60220034180026a41086a20034191066a29000037030020034180026a41106a20034199066a29000037030020034180026a41186a200341a1066a29000037030020032003290089063703800220032d0088064101460d0e200341a8056a41186a20034180026a41186a290300370300200341a8056a41106a20034180026a41106a290300370300200341a8056a41086a20034180026a41086a29030037030020032003290380023703a805200341106a200341e0036a200341a8056a2013201210fa0220032802102201450d41200328021421020c420b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200341fc016a41026a200b2d00003a0000200320032f01a0033b01fc01200341a8026a41086a200c290300370300200341a8026a41106a200d2d00003a0000200320032903c0023703a802410121020240200141ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002102201621150b200341c0036a41106a2201200341e0036a41086a290300370300200341c0036a41186a2205200341e0036a41106a2d00003a0000200320032f01e8063b01a002200320032903e0033703c8032003200341ea066a2d00003a00a202200320043703c003024020020d00200341ef036a200341c0036a41086a290300370000200341f7036a2001290300370000200341ff036a20052d00003a0000200320032d00a2023a00e203200320032f01a0023b01e003200320153600e303200320032903c0033700e703200341e0076a41206a200341f0066a41206a280200360200200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b60220034180026a41086a20034191066a29000037030020034180026a41106a20034199066a29000037030020034180026a41186a200341a1066a29000037030020032003290089063703800220032d0088064101460d0e200341a8056a41186a20034180026a41186a290300370300200341a8056a41106a20034180026a41106a290300370300200341a8056a41086a20034180026a41086a29030037030020032003290380023703a805200341186a200341e0036a200341a8056a200f200910fa0220032802182201450d41200328021c21020c420b419affc6002101410f2102024020150e07000e0102030442000b2004422088a721022004a721010c410b4180ffc6002101410c21020c400b41f7fec6002101410921020c3f0b41e4fec6002101411321020c3e0b41d3fec6002101411121020c3d0b200341e0076a41306a200141386a290300370300200341e0076a41286a200141306a290300370300200341e0076a41206a200141286a290300370300200341e0076a41186a200141206a290300370300200341e0076a41106a200141186a290300370300200341e0076a41086a200141106a2903003703002003200141086a2903003703e007200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341206a200341e0076a200341f0066a10fb02024020032802202201450d0020032802242102200041810c3b0108200020013602002000410a6a41003a0000200020023602040c460b200041023a00080c450b200141086a280200210a20012802042117200341e0076a2001410c6a41e40010cd051a200241086a290000210441042105200241046a280000210720022d00002106200341c0026a200341e0076a41046a41e00010cd051a200341fc016a41026a2208200241036a2d00003a0000200341a8026a41086a220e200241186a290000370300200341a8026a41106a220b200241206a2d00003a0000200320022f00013b01fc012003200241106a2900003703a80241012101024020064101470d00200341e8016a41026a20082d00003a0000200341e0036a41086a200e290300370300200341e0036a41106a200b2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101200721050b200341e8066a41026a200341e8016a41026a2d00003a0000200341c0036a41106a200341e0036a41086a290300370300200341c0036a41186a200341e0036a41106a2d00003a0000200320032f01e8013b01e806200320032903e0033703c803200320043703c00302402001450d00419affc6002101410f210202400240024002400240024020050e070001020304053d000b2004422088a721022004a721010c3c0b418cffc6002101410e21020c3b0b4180ffc6002101410c21020c3a0b41f7fec6002101410921020c390b41e4fec6002101411321020c380b41d3fec6002101411121020c370b200341a0036a41086a2201200341c0036a41086a290300370300200341a0036a41106a2202200341c0036a41106a290300370300200341a0036a41186a2206200341c0036a41186a2d00003a0000200320032f01e80622073b01a002200320032903c0033703a0032003200341e8066a41026a2d000022083a00a202200320083a00c204200320073b01c004200320053600c304200341cf046a2001290300370000200341d7046a2002290300370000200341df046a20062d00003a0000200320032903a0033700c704200341f0066a200341c0046a10fc022003280290072201450d06200341a8026a41086a200341b3076a290000370300200341a8026a41106a200341bb076a2d00003a000020032003419b076a2800003600bb01200341fc016a41026a20032d00be013a0000200320032900ab073703a802200320034198076a2802003602b801200320032f01bc013b01fc012003419f076a280000210220032900a30721040240200328029407450d00200110200b20034180026a41106a200341b0026a290300220937030020034198026a200341a8026a41106a2d000022013a0000200320032f01fc013b01c0032003200437038002200320032903a802220f370388022003200341fe016a2d00003a00c203200320023600c303200341df036a20013a0000200341d7036a2009370000200341cf036a200f370000200320043700c703200341e0036a200341c0026a41e00010cd051a20034180026a200341c0036a10fd0220032802880221022003280280022101200341003602f00620012002200341f0066a1003210220032802f0062205417f460d042002450d04200320053602ac05200320023602a805200341f0066a200341a8056a10f60220032d00f0064101460d0520034188066a200341f0066a41017241e00010cd051a02402005450d00200210200b200341a8056a20034188066a41e00010cd051a200341f0066a200341a8056a41e00010cd051a200341013a00c004200341c0046a410172200341f0066a41e00010cd051a0c350b0240024020022d00004102470d0020012802042101200341a8026a41086a22024200370300200342003703a80241e8bfc5004110200341a8026a1000200341e8016a41086a2002290300370300200320032903a8023703e801200341e8016a411041e4fdc600410041001002417f470d04107920014f0d0141d5c0c500412341a888c6001028000b20004181103b01082000410f3602042000419affc6003602002000410a6a41003a00000c440b200341a8026a41086a22024200370300200342003703a80241e8bfc5004110200341a8026a1000200341e8016a41086a2002290300370300200320032903a8023703e801200320013602e007200341e8016a4110200341e0076a41041005200041023a00080c430b200141086a280200210520012802042101024020022d00004101470d0002402005450d00200110200b200041023a00080c430b02402005450d00200110200b20004181123b010820004113360204200041e4fec6003602002000410a6a41003a00000c420b2001411c6a280200210c200141186a2802002115200141146a280200210d2001410c6a2802002116200141086a280200210a024002400240024002400240024020022d00004102470d00200141246a2802002118200141106a280200210510d5012117411b101e2201450d06200141176a41002800e7f346360000200141106a41002900e0f346370000200141086a41002900d8f346370000200141002900d0f3463700002001411b413610222201450d052001201736001b20034188066a41186a2202420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001411f20034188066a1001200341c0026a41186a22082002290300370300200341c0026a41106a2006290300370300200341c0026a41086a200729030037030020032003290388063703c002200110204120101e2201450d04200120032903c002370000200141186a2008290300370000200141106a200341c0026a41106a290300370000200141086a200341c0026a41086a290300370000200320183602e0072002420037030020034188066a41106a2206420037030020034188066a41086a220742003703002003420037038806200341e0076a410420034188066a100120034180026a41186a200229030037030020034180026a41106a2202200629030037030020034180026a41086a220620072903003703002003200329038806370380022001412041c00010222201450d032001200329038002370020200141386a20034180026a41186a290300370000200141306a2002290300370000200141286a2006290300370000200141c00041e4fdc600410041001002210220011020200341f0066a10d10120032802f006211902402002417f4722020d00201920184105746a410020032802f80620184b1b22010d030b41fbd3c4004190d4c40020021b21054115411820021b210620032802f406450d01201910200c010b200341063602e007419affc6002105410f21060b02402016450d00200a10200b0240200c450d00200c410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b02402015450d00200d10200b2005450d3220004181143b010820002006360204200020053602002000410a6a41003a00000c460b200341ed076a200141086a290000370000200341f5076a200141106a290000370000200341fd076a200141186a290000370000200341003a00e407200341063a00e007200320012900003700e507200341e0076a1077200341003602e807200342013703e007200320053602c004200341c0046a200341e0076a106302400240024020032802e407220220032802e80722016b2005490d0020032802e00721020c010b200120056a22062001490d40200241017422072006200720064b1b22064100480d400240024020020d002006101e21020c010b20032802e00720022006102221020b2002450d01200320063602e407200320023602e0070b2003200120056a3602e807200220016a200a200510cd051a2003200c3602c004200341c0046a200341e0076a10630240200c0d0020032802e807210e20032802e407210720032802e00721060c320b200d200c410c6c6a210b200d21020340200228020021082003200241086a28020022013602c004200341c0046a200341e0076a10630240024020032802e407220720032802e80722056b2001490d0020032802e00721060c010b200520016a22062005490d412007410174220e2006200e20064b1b220e4100480d410240024020070d00200e101e21060c010b20032802e0072007200e102221060b02402006450d002003200e3602e407200320063602e007200e21070c010b200e4101102d000b2003200520016a220e3602e807200620056a2008200110cd051a2002410c6a2202200b460d320c000b0b20064101102d000b41c0004101102d000b41204101102d000b41364101102d000b411b4101102d000b41a4c0c500413141a888c6001028000b200341f0066a200341a8056a41e00010cd051a200341003a00c0040c300b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b419facc6002101412721020c2f0b418cffc6002101410e21020c330b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41144101102d000b41042102200341043602a0034100210142002104410021070c310b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41084101102d000b200341e0076a200141086a41e80010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341a8016a200341e0076a200341f0066a1066024020032802a8012201450d0020032802ac01210220004181383b0108200020013602002000410a6a41003a0000200020023602040c360b200041023a00080c350b200141186a280200210c200141146a2802002116200141106a280200210b2001410c6a2802002115200141086a280200210d20012802042101200341e0036a41026a2205200241036a2d00003a0000200341a8056a41086a2206200241186a290000370300200341a8056a41106a2207200241206a2d00003a0000200320022f00013b01e0032003200241106a2900003703a80541042108200241046a280000210e200241086a2900002204a7211820022d00002102024002400240024002400240024002400240024002400240024002400240024020010e050001020304000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41d4a2c1001033000b200341e8016a41026a20052d00003a0000200341e0076a41086a2006290300370300200341e0076a41106a20072d00003a0000200320032f01e0033b01e801200320032903a8053703e00741012101410421050240200241ff01714101470d00200341e8066a41026a200341e8016a41026a2d00003a0000200341c0046a41086a200341e0076a41086a290300370300200341c0046a41106a200341e0076a41106a2d00003a0000200320032f01e8013b01e806200320032903e0073703c00441002101200e21050b20034188066a41086a2202200341c0046a41086a29030037030020034188066a41106a2206200341c0046a41106a2d00003a0000200320032f01e8063b01a002200320032903c004370388062003200341ea066a2d00003a00a20202400240024020010d00200341f0066a41176a20022903003700002003418f076a20062d00003a0000200320032d00a2023a00f206200320032f01a0023b01f006200320043700f706200320053600f30620032003290388063700ff064117101e2201450d0a200141002900aff8413700002001410f6a41002900bef841370000200141086a41002900b7f84137000020034297808080f0023702e407200320013602e007200341f0066a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e407450d0020032802e00710200b20034180026a412041e4fdc600410041001002417f470d024122210241e4a2c10021010c010b419affc6002101410f210202400240024002400240024020050e0700010203040506000b2004422088a72102201821010c050b418cffc6002101410e21020c040b4180ffc6002101410c21020c030b41f7fec6002101410921020c020b41e4fec6002101411321020c010b41d3fec6002101411121020b2015450d0c200d10200c0c0b0240024020164101460d00200341a8026a41086a22014200370300200342003703a8024186a3c1004119200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a10032101024020032802e0072202417f470d0041c0f000210e0c020b024020010d0041c0f000210e0c020b20024104490d082001280000210e200110200c010b200c41d804200c41d8044b1b210e0b200b417f4c0d1102400240200b0d00410121010c010b200b101e2201450d060b2001200d200b10cd052107200341a8026a41086a22014200370300200342003703a8024195fcc000410d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e80141002108200341003602e007200341e8016a4110200341e0076a10032101024020032802e0072202417f460d002001450d0020024104490d0520012800002108200110200b4120101e2201450d03200141002900bd9d41370000200141186a41002900d59d41370000200141106a41002900cd9d41370000200141086a41002900c59d41370000200342a080808080043702e407200320013602e007200341f0066a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a220c420037030020034200370388062002200120034188066a1001200341c0026a41186a2005290300370300200341c0026a41106a2006290300370300200341c0026a41086a200c29030037030020032003290388063703c002024020032802e407450d0020032802e00710200b200341003602e807200342013703e0072003200b3602c004200341c0046a200341e0076a1063024020032802e407220220032802e80722066b200b490d0020032802e00721010c0b0b2006200b6a22012006490d3b200241017422052001200520014b1b22054100480d3b0240024020020d002005101e21010c010b20032802e00720022005102221010b02402001450d00200320053602e407200320013602e007200521020c0b0b20054101102d000b200341fc016a41026a20052d00003a0000200341f0066a41086a2006290300370300200341f0066a41106a20072d00003a0000200320032f01e0033b01fc01200320032903a8053703f006410121010240200241ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341c0046a41086a200341f0066a41086a290300370300200341c0046a41106a200341f0066a41106a2d00003a0000200320032f01fc013b01e806200320032903f0063703c00441002101200e21080b20034188066a41086a2202200341c0046a41086a29030037030020034188066a41106a2205200341c0046a41106a2d00003a0000200320032f01e8063b01a002200320032903c004370388062003200341ea066a2d00003a00a202024020010d00200341f7076a2002290300370000200341ff076a20052d00003a0000200320032d00a2023a00e207200320032f01a0023b01e007200320043700e707200320083600e30720032003290388063700ef07200341e0076a108c020c0d0b419affc6002101410f210202400240024002400240024020080e0700010203040510000b2004422088a72102201822010d100c110b418cffc6002101410e2102418cffc6000d0f0c100b4180ffc6002101410c21024180ffc6000d0e0c0f0b41f7fec60021014109210241f7fec6000d0d0c0e0b41e4fec60021014113210241e4fec6000d0c0c0d0b41d3fec60021014111210241d3fec6000d0b0c0c0b0240200241ff0171450d004111210241d3fec60021010c0b0b200d41d8044f0d0641382102419fa3c10021010c0a0b200241ff01710d06200341a8026a41086a22014200370300200342003703a80241b5a2c100411c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e807200342013703e0072003200b3602f006200341f0066a200341e0076a106302400240200b0d0020032802e807210e20032802e407210720032802e00721060c010b200d200b410c6c6a210c200d21020340200228020021082003200241086a28020022013602f006200341f0066a200341e0076a10630240024020032802e407220720032802e80722056b2001490d0020032802e00721060c010b200520016a22062005490d3b2007410174220e2006200e20064b1b220e4100480d3b0240024020070d00200e101e21060c010b20032802e0072007200e102221060b02402006450d002003200e3602e407200320063602e007200e21070c010b200e4101102d000b2003200520016a220e3602e807200620056a2008200110cd051a2002410c6a2202200c470d000b0b200341e8016a41102006200e100502402007450d00200610200b0240200b450d00200b410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b2015450d0a200d10200c0a0b41204101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b200b4101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41174101102d000b200341a8026a41086a22014200370300200342003703a8024186a3c1004119200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e8012003200d3602e007200341e8016a4110200341e0076a410410050c040b0240200b450d00200b410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b02402015450d00200d10200b41d3fec6002101411121020c020b20032006200b6a22053602e807200120066a2007200b10cd051a024002400240024002400240200220056b41034d0d00200221060c010b200541046a22062005490d352002410174220c2006200c20064b1b22064100480d350240024020020d002006101e21010c010b200120022006102221010b2001450d01200320063602e407200320013602e0070b200120056a2008200e6a360000200341c0026a41202001200541046a100502402006450d00200110200b0240200b450d00200710200b200341c0046a41086a2201200341f0066a41086a290300370300200341c0046a41106a2202200341f0066a41106a290300370300200341c0046a41186a2205200341f0066a41186a290300370300200320032903f0063703c004200b0d01410121060c020b20064101102d000b200b101e2206450d010b2006200d200b10cd052106200341ed076a2001290300370000200341f5076a2002290300370000200341fd076a200529030037000020034185086a20032f0088063b000020034187086a2003418a066a2d00003a000020034190086a200b3602002003418c086a200b36020020034188086a2006360200200341003a00e407200341143a00e007200320032903c0043700e507200341e0076a10772015450d03200d10200c030b200b4101102d000b2001450d010b20004181343b010820002002360204200020013602002000410a6a41003a00000c350b200041023a00080c340b200341c0046a41086a220b200141206a290300370300200341c0046a41106a220c200141286a290300370300200320012800093602b80120032001410c6a2800003600bb012003200141186a2903003703c004200141086a2d00002105200141106a2903002109200341d0016a41026a2201200241036a2d00003a0000200341c0026a41086a2206200241186a290000370300200341c0026a41106a2207200241206a2d00003a0000200320022f00013b01d0012003200241106a2900003703c002200241086a29000021044104210e200241046a280000210820022d000021020240024002400240024002400240024002400240024002400240024020050e0400010203000b200341f4076a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a4194f8c0001033000b200341a8056a41086a200b290300370300200341a8056a41106a200c2d00003a0000200320032802b8013602a003200320032800bb013600a303200320032903c0043703a805200341fc016a41026a20012d00003a0000200320032f01d0013b01fc01200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032903c0023703a802410121010240200241ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e801200320032903a8023703e003410021012008210e0b200341e8066a41026a2202200341e8016a41026a2d00003a000020034180026a41106a2205200341e0036a41086a29030037030020034198026a2206200341e0036a41106a2d00003a0000200320032f01e8013b01e806200320032903e0033703880220032004370380020240024020010d00200341ff066a20034180026a41086a290300370000200341f0066a41176a2005290300370000200341f0066a411f6a20062d00003a0000200320032f01e8063b01f0062003200e3600f30620032003290380023700f706200320022d00003a00f206200341e0076a200341f0066a10fe0220032d00ec07450d0141e5ccc000210141c40021020c0b0b419affc6002101410f2102024002400240024002400240200e0e0700010203040510000b2004422088a721022004a721010c0f0b418cffc6002101410e21020c0e0b4180ffc6002101410c21020c0d0b41f7fec6002101410921020c0c0b41e4fec6002101411321020c0b0b41d3fec6002101411121020c0a0b200341e0076a41176a200341a8056a41086a290300370000200341e0076a411f6a200341a8056a41106a2d00003a0000200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef074123101e2201450d02200141002900fee9403700002001411f6a410028009dea40360000200141186a4100290096ea40370000200141106a410029008eea40370000200141086a4100290086ea40370000200342a3808080b0043702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d042001450d042003200236028c062003200136028806200341e0076a20034188066a10f60120032d00cc084103460d032003280284082105200328028008210602402002450d00200110200b02402005450d00200610200b200341a8026a41086a22014200370300200342003703a80241a4f8c000412c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d004201210f0c010b024020010d004201210f0c010b20024108490d062001290000210f200110200b200341f7076a200341a8056a41086a290300370000200341e0076a411f6a200341a8056a41106a2d00003a000020034188086a200341f0066a41086a29030037030020034190086a200341f0066a41106a29030037030020034198086a200341f0066a41186a290300370300200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef07200320032903f00637038008200341003a00a0084127101e2201450d062001411f6a41002900eff840370000200141186a41002900e8f840370000200141106a41002900e0f840370000200141086a41002900d8f840370000200141002900d0f8403700002001412741ce0010222201450d072001200f37002720034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2206420037030020034200370388062001412f20034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20062903003703002003200329038806370380022001102020034100360290062003420137038806200320034188066a3602e003200341e0076a200341e0036a10b90120034180086a20034188066a10ca01200320032d00a00822053a00e0030240200328028c062003280290062201460d0020032802880621020c090b200141016a22022001490d38200141017422052002200520024b1b22054100480d380240024020010d002005101e21020c010b20032802880620012005102221020b02402002450d002003200536028c06200320023602880620032d00e003210520032802900621010c090b20054101102d000b200341e0076a41086a2004370300200341e0076a41106a20032903c002370300200341e0076a41186a2006290300370300200341e0076a41206a20072d00003a0000200320023a00e007200320032f01d0013b00e107200320083602e407200320012d00003a00e30720034198016a200341e0076a2009410110fb01200328029c01210220032802980121010c080b200341e0076a41086a2004370300200341e0076a41106a20032903c002370300200341e0076a41186a2006290300370300200341e0076a41206a20072d00003a0000200320023a00e007200320032f01d0013b00e107200320083602e407200320012d00003a00e307200341a0016a200341e0076a2009410010fb0120032802a401210220032802a00121010c070b41234101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41f3cac0002101411f21020c040b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41274101102d000b41ce004101102d000b2003200141016a36029006200220016a20053a0000200328028c06210120034180026a41202003280288062202200328029006100502402001450d00200210200b200341a8026a41086a22014200370300200342003703a80241a4f8c000412c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f460d002001450d00024020024108490d002001290000210420011020200442017c21040c020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b420221040b200341a8026a41086a22014200370300200342003703a80241a4f8c000412c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200320043703e007200341e8016a4110200341e0076a41081005200341f7076a200341a8056a41086a290300370000200341ff076a200341a8056a41106a2d00003a0000200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef07024002400240024002404132101e2201450d00200141002900f7f840370000200141306a41002f00a7f9403b0000200141286a410029009ff940370000200141206a4100290097f940370000200141186a410029008ff940370000200141106a4100290087f940370000200141086a41002900fff840370000200342b2808080a0063702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d022001450d022003200236028c062003200136028806200341e0076a20034188066a10ec0120032802e0072205450d0120032902e407210402402002450d00200110200b200320053602c003200320043702c403200341c0036a21012004422088a722022004a7220b470d040c030b41324101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41002102200341003602c803200342083703c003200341c0036a21010b200141046a280200220b2002470d00200241016a22052002490d30200241017422062005200620054b1b220b41ffffffff0171200b470d30200b41037422054100480d300240024020020d002005101e21020c010b200128020020024103742005102221020b2002450d0220012002360200200141046a200b36020020032802c80321020b2001280200220c20024103746a200f3703002003200241016a22053602c803200341f7076a200341a8056a41086a290300370000200341ff076a200341a8056a41106a2d00003a0000200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef074132101e2201450d02200141002900f7f840370000200141306a41002f00a7f9403b0000200141286a410029009ff940370000200141206a4100290097f940370000200141186a410029008ff940370000200141106a4100290087f940370000200141086a41002900fff840370000200342b2808080a0063702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210620034188066a41186a2207420037030020034188066a41106a2208420037030020034188066a41086a220e420037030020034200370388062001200620034188066a100120034180026a41186a200729030037030020034180026a41106a200829030037030020034180026a41086a200e290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341003602e807200342013703e007200320053602880620034188066a200341e0076a10630240024020050d0020032802e807210820032802e407210720032802e00721020c010b410020032802e80722016b2105200241037441086a210e20032802e4072107200c210603402006290300210402400240200720056a4108490d0020032802e00721020c010b200141086a22022001490d32200741017422082002200820024b1b22084100480d320240024020070d002008101e21020c010b20032802e00720072008102221020b02402002450d00200320083602e407200320023602e007200821070c010b20084101102d000b200641086a21062003200141086a22083602e807200220016a2004370000200541786a210520082101200e41786a220e0d000b0b20034180026a412020022008100502402007450d00200210200b0240200b450d00200c10200b41002101200341e0076a41086a41003a0000200341e9076a20032802a003360000200341ec076a20032800a303360000200341e0076a41106a2009370300200341e0076a41186a20032903a80537030020034189086a20032903f00637000020034180086a200341a8056a41086a29030037030020034188086a200341a8056a41106a2d00003a000020034191086a200341f0066a41086a29030037000020034199086a200341f0066a41106a290300370000200341a1086a200341f0066a41186a290300370000200341133a00e007200341b0086a200f370300200341e0076a10770b02402001450d0020004181323b010820002002360204200020013602002000410a6a41003a00000c360b200041023a00080c350b20054108102d000b41324101102d000b200341cc016a41026a22062001410b6a2d00003a0000200341b8016a41086a2207200141206a290300370300200341b8016a41106a2208200141286a280200360200200320012f00093b01cc012003200141186a2903003703b801200141086a2d000021052001410c6a280200210c200141106a280200210e200141146a280200210b2001412c6a2802002117200141306a280200210a200141346a2802002119200141386a2903002109200141c0006a290300210f200341e4016a41026a2201200241036a2d00003a0000200341d0016a41086a220d200241186a290000370300200341d0016a41106a2215200241206a2d00003a0000200320022f00013b01e4012003200241106a2900003703d001200241086a290000210441042116200241046a280000211820022d000021020240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e0800010203090a0b0c000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41c0e9c0001033000b200341f7036a2007290300370000200341ff036a20082d00003a0000200320032f01cc013b01e0032003200b3600eb032003200e3600e7032003200c3600e303200320032903b8013700ef03200320062d00003a00e203200341fc016a41026a20012d00003a0000200320032f01e4013b01fc01200341a8026a41086a200d290300370300200341a8026a41106a20152d00003a0000200320032903d0013703a80241012101410421050240200241ff01714101470d00200341f0066a41026a200341fc016a41026a2d00003a0000200341e0076a41086a200341a8026a41086a290300370300200341e0076a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01f006200320032903a8023703e00741002101201821050b200341e8016a41026a2202200341f0066a41026a2d00003a0000200341c0036a41106a2206200341e0076a41086a290300370300200341d8036a2207200341e0076a41106a2d00003a0000200320032f01f0063b01e801200320032903e0073703c803200320043703c0030240024020010d00200341b7056a200341c0036a41086a290300370000200341bf056a2006290300370000200341c7056a20072d00003a0000200320032f01e8013b01a805200320053600ab05200320032903c0033700af05200320022d00003a00aa05200341a8056a10ff020d0141c9cbc0002101412721020c1f0b419affc6002101410f210202400240024002400240024020050e0700010203040524000b2004422088a721022004a721010c230b418cffc6002101410e21020c220b4180ffc6002101410c21020c210b41f7fec6002101410921020c200b41e4fec6002101411321020c1f0b41d3fec6002101411121020c1e0b200341e0076a200910800320032802e0074101460d1c200341f0076a2d0000210102400240200341e8076a280200450d0020032802e4071020200141ff0171450d1e0c010b200141ff0171450d1d0b200341e0076a41186a200341e0036a41186a290300370300200341e0076a41106a200341e0036a41106a290300370300200341e0076a41086a200341e0036a41086a290300370300200320032903e0033703e0074123101e2201450d0e200141002900fee9403700002001411f6a410028009dea40360000200141186a4100290096ea40370000200141106a410029008eea40370000200141086a4100290086ea40370000200342a3808080b0043702f406200320013602f0062003200341f0066a36028806200341e0076a20034188066a10b90120032802f006210120032802f806210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a1001200341c0046a41186a2005290300370300200341c0046a41106a2006290300370300200341c0046a41086a200729030037030020032003290388063703c004024020032802f406450d0020032802f00610200b0240200341c0046a412041e4fdc600410041001002417f460d0041d0e9c0002101412e21020c1e0b200341a8026a41086a22014200370300200342003703a80241a1eac0004125200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341d8046a2202200341f9076a290000370300200341c0046a41106a200341f1076a290000370300200341c0046a41086a200341e9076a290000370300200320032900e1073703c0040240024020014101460d0020034180026a41001081032003280280022108200328028402210c0240024002402003280288022201450d002008200141057422026a2105200821010340200141086a2900002104200141106a290000211020012900002111200341e0076a41186a200141186a290000370300200341e0076a41106a2010370300200341e0076a41086a2004370300200320113703e007200341e0076a108d02450d02200141206a2101200241606a22020d000b0b41b0edc10021014117210241012105200c450d01200810200c010b200341f0066a41086a2206200341e0076a41086a290300370300200341f0066a41106a2207200341e0076a41106a290300370300200341f0066a41186a220b200341e0076a41186a290300370300200320032903e00722043703c004200320043703f0064120101e220e450d12200e20032903f006370000200e41186a200b290300370000200e41106a2007290300370000200e41086a20062903003700000240024020024120470d004101210b4101210d0c010b200141206a2106200541606a21154101210b4101210d03402006210102400340200341e0076a41186a2202200141186a290000370300200341e0076a41106a2206200141106a290000370300200341e0076a41086a2207200141086a290000370300200320012900003703e007200341e0076a108d02450d012005200141206a2201470d000c030b0b20034188066a41086a2007290300220437030020034188066a41106a2006290300221037030020034188066a41186a20022903002211370300200320032903e007221437038806200341c0046a41186a22072011370300200341c0046a41106a22162010370300200341c0046a41086a22182004370300200320143703c0040240200d200b470d00200b41016a2202200b490d52200b41017422062002200620024b1b220d41ffffff3f71200d470d52200d41057422024100480d5202400240200b0d002002101e210e0c010b200e200b41057420021022210e0b200e450d1c0b200141206a2106200e200b4105746a220220032903c004370000200241186a2007290300370000200241106a2016290300370000200241086a2018290300370000200b41016a210b20152001470d000b0b0240200c450d00200810200b02400240200b0d00410121054117210241b0edc10021010c010b200341e0076a10c501200341f0066a41026a200e20032d00e70741077420032d00e60741067420032d00e50741057420032d00e40741047420032d00e30741037420032d00e20741027420032d00e10741017420032d00e0076a6a6a6a6a6a6a200b704105746a220541026a2d00003a0000200528000321012005280007210220052f00002106200341ed076a200541186a290000370000200341e8076a200541136a290000370300200320063b01f0062003200529000b3703e007410021050b200d450d00200e10200b200341ec066a41026a2206200341f0066a41026a2d00003a0000200341c0036a41086a2207200341e0076a41086a290300370300200341c0036a41106a200341e0076a41106a290300370300200320032f01f0063b01ec06200320032903e0073703c00320050d1f200341e8066a41026a20062d00003a0000200341a0036a41086a2007290300370300200341a0036a410d6a200341c0036a410d6a290000370000200320032f01ec063b01e806200320032903c0033703a0030c010b200341ea066a20032d00c2043a0000200341a0036a41086a200341d3046a290000370300200341ad036a2002290000370000200320032f01c0043b01e806200320032900cb043703a00320032800c304210120032800c70421020b1079210610a902210420034180026a41086a200341a8056a410772220541086a29000037030020034180026a41106a200541106a29000037030020034180026a41186a200541186a2d00003a0000200320032d00aa053a00a202200320032f01a8053b01a00220032005290000370380022019417f4c0d2220032800ab0521050240024020190d00410121070c010b2019101e2207450d110b20072017201910cd05210720034188086a201936020020034184086a20193602002003418e086a20032d00a2023a00002003418f086a200536000020034193086a2003290380023700002003419b086a20034180026a41086a290300370000200341a3086a20034180026a41106a290300370000200341ab086a20034180026a41186a2d00003a000020032007360280082003200f3703f807200320093703f007200320063602e807200320043703e007200320032f01a0023b018c08200341af086a2001360000200341b3086a2002360000200341ae086a200341ea066a2d00003a0000200341b7086a20032903a003370000200341bf086a200341a0036a41086a290300370000200341c4086a200341ad036a290000370000200341003a00cc08200320032f01e8063b01ac084123101e2201450d11200141002900fee9403700002001411f6a410028009dea40360000200141186a4100290096ea40370000200141106a410029008eea40370000200141086a4100290086ea40370000200342a3808080b0043702f406200320013602f0062003200341f0066a36028806200341e0036a20034188066a10b90120032802f006210120032802f806210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a1001200341c0046a41186a2005290300370300200341c0046a41106a2006290300370300200341c0046a41086a200729030037030020032003290388063703c004024020032802f406450d0020032802f00610200b200341203602f4062003200341c0046a3602f006200341e0076a200341f0066a10f5010240200328028408450d0020032802800810200b20034182086a20032903a805370100200341ea076a200341e0036a41086a290300370100200341fa076a200341e0036a41186a2903003701002003418a086a200341a8056a41086a29030037010020034192086a200341a8056a41106a2903003701002003419a086a200341a8056a41186a290300370100200341e0036a41106a2903002104200341123b01e007200341e0076a41126a2004370100200320032903e0033701e207200341e0076a1077410021010240200a450d00201710200b0c1e0b200341a8056a41026a20062d00003a000020034188066a41086a200729030037030020034188066a41106a20082d00003a0000200320032f01cc013b01a805200320032903b80137038806200341fc016a41026a20012d00003a0000200320032f01e4013b01fc01200341a8026a41086a200d290300370300200341a8026a41106a20152d00003a0000200320032903d0013703a80241012101410421050240200241ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002101201821050b20034180026a41106a2202200341e0036a41086a29030037030020034198026a2206200341e0036a41106a2d00003a0000200320032f01e8063b01a002200320032903e003370388022003200341e8066a41026a2d00003a00a20220032004370380020240024020010d00200341ff066a20034180026a41086a290300370000200341f0066a41176a2002290300370000200341f0066a411f6a20062d00003a0000200320032d00a2023a00f206200320032f01a0023b01f006200320053600f30620032003290380023700f7062003200341a8056a41026a2d00003a00e207200320032f01a8053b01e0072003200b3600eb072003200e3600e7072003200c3600e307200341e0076a41176a20034188066a41086a290300370000200341e0076a411f6a20034188066a41106a2d00003a000020032003290388063700ef0720034188016a200341f0066a200341e0076a410110f8012003280288012201450d01200328028c0121020c1f0b419affc6002101410f2102024020050e070003040506071f000b2004422088a721022004a721010c1e0b200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d122001450d12200320023602c404200320013602c004200341e0076a200341c0046a10e30120032802e0072205450d1120032902e407210402402002450d00200110200b2004422088a721012004a721020c1a0b200341a8056a41026a20062d00003a000020034188066a41086a200729030037030020034188066a41106a20082d00003a0000200320032f01cc013b01a805200320032903b80137038806200341fc016a41026a20012d00003a0000200320032f01e4013b01fc01200341a8026a41086a200d290300370300200341a8026a41106a20152d00003a0000200320032903d0013703a802410121010240200241ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101201821160b200341c0046a41176a200341e0036a41086a290300370000200341c0046a411f6a200341e0036a41106a2d00003a0000200320032f01e8013b01c004200320163600c304200320032903e0033700cf042003200341e8016a41026a2d00003a00c204200320043700c704024020010d00200341f0066a41186a2202200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f0062003200341a8056a41026a2d00003a00e207200320032f01a8053b01e0072003200b3600eb072003200e3600e7072003200c3600e307200341e0076a41176a20034188066a41086a290300370000200341e0076a411f6a20034188066a41106a2d00003a000020032003290388063700ef0720034190016a200341f0066a200341e0076a410210f80120032802900122010d0c200341ed076a200b360000200341e9076a200e360000200341f1076a20032903880637000020034182086a20032903f006370100200341f9076a20034188066a41086a29030037000020034181086a20034188066a41106a2d00003a00002003418a086a200341f0066a41086a29030037010020034192086a200341f0066a41106a2903003701002003419a086a200229030037010020034192043b01e007200320032f01a8053b01e2072003200c3600e5072003200341aa056a2d00003a00e407200341e0076a1077410021010c1d0b419affc6002101410f2102024020160e070001020304051d000b2004422088a721022004a721010c1c0b418cffc6002101410e21020c1b0b4180ffc6002101410c21020c1a0b41f7fec6002101410921020c190b41e4fec6002101411321020c180b41d3fec6002101411121020c170b20034188066a41026a20062d00003a0000200341f0066a41086a2007290300370300200341f0066a41106a20082d00003a0000200320032f01cc013b018806200320032903b8013703f00641d3fec60021010240200241ff01710d00200341f7076a200341f0066a41086a290300370000200341ff076a200341f0066a41106a2d00003a0000200320032f0188063b01e0072003200b3600eb072003200e3600e7072003200c3600e307200320032903f0063700ef0720032003418a066a2d00003a00e207200341a8026a41086a22014200370300200342003703a80241a1eac0004125200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341103602c4042003200341e8016a3602c004200341e0076a200341c0046a108203410021010b411121020c160b200241ff01710d02200341a8026a41086a22014200370300200342003703a80241a1eac0004125200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0070d03200341d8046a200341f9076a290000370300200341c0046a41106a200341f1076a290000370300200341c0046a41086a200341e9076a290000370300200320032900e1073703c0040c170b200341bf056a2007290300370000200341c7056a20082d00003a0000200320032f01cc013b01a8052003200b3600b3052003200e3600af052003200c3600ab05200320032903b8013700b705200320062d00003a00aa0541d3fec6002101200241ff01710d0e200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d0b2001450d0b200320023602f406200320013602f006200341e0076a200341f0066a10e30120032802e0072208450d0a20032902e40721042002450d0d200110200c0d0b0240200241ff01710d00200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e807200342013703e0072003200b3602f006200341f0066a200341e0076a10630240200b450d00200b4105742102200c210103402003200341e0076a3602f0062001200341f0066a10b901200141206a2101200241606a22020d000b0b20032802e4072101200341e8016a411020032802e007220220032802e807100502402001450d00200210200b200e450d16200c10200c160b200e450d00200c10200b4111210241d3fec60021010c130b200341e8016a41101004200341d8046a200341f9076a290000370300200341c0046a41106a200341f1076a290000370300200341c0046a41086a200341e9076a290000370300200320032900e1073703c0040c130b20032802940121020c100b41234101102d000b41204101102d000b20194101102d000b41234101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b410121054100210242002104410021010c070b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b42002104410121080c010b20024101102d000b2004a721180240024002402004422088a7220b410574220e450d00410021020340200341c0046a41186a200820026a220141186a2205290000370300200341c0046a41106a200141106a2206290000370300200341c0046a41086a200141086a2207290000370300200320012900003703c004200341e0076a41186a2005290000370300200341e0076a41106a2006290000370300200341e0076a41086a2007290000370300200320012900003703e007200341e0076a200341a8056a412010cf050d02200e200241206a2202470d000b0b410021164101211502402018450d00200810200b4100210d0c010b20034180026a41086a2205200341c0046a41086a29030037030020034180026a41106a2206200341c0046a41106a29030037030020034180026a41186a2207200341c0046a41186a290300370300200320032903c00422043703880620032004370380024120101e2215450d022015200329038002370000201541186a2007290300370000201541106a2006290300370000201541086a200529030037000002400240200b41057441606a2002470d004101210d410121160c010b200141206a21052008200b4105746a220c41606a210a4101210d410121160340200521010240034020034188066a41186a2207200141186a220229000037030020034188066a41106a220e200141106a220529000037030020034188066a41086a220b200141086a22062900003703002003200129000037038806200341e0076a41186a2002290000370300200341e0076a41106a2005290000370300200341e0076a41086a2006290000370300200320012900003703e007200341e0076a200341a8056a412010cf050d01200c200141206a2201470d000c030b0b200341c0026a41086a200b2903002204370300200341c0026a41106a200e2903002209370300200341c0026a41186a2007290300220f370300200320032903880622103703c0022007200f370300200e2009370300200b2004370300200320103703880602402016200d470d00200d41016a2202200d490d38200d41017422052002200520024b1b221641ffffff3f712016470d38201641057422024100480d3802400240200d0d002002101e21150c010b2015200d4105742002102221150b2015450d060b200141206a21052015200d4105746a2202200329038806370000200241186a2007290300370000200241106a200e290300370000200241086a200b290300370000200d41016a210d200a2001470d000b0b2018450d00200810200b200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e807200342013703e0072003200d3602f006200341f0066a200341e0076a10630240200d450d00200d41057421022015210103402003200341e0076a3602f0062001200341f0066a10b901200141206a2101200241606a22020d000b0b20032802e4072101200341e8016a411020032802e007220220032802e807100502402001450d00200210200b410021012016450d00201510200b411121020c050b41204101102d000b20024101102d000b200341d7046a20034188066a41086a290300370000200341df046a20034188066a41106a2d00003a0000200320032f01a8053b01c0042003200b3600cb042003200e3600c7042003200c3600c30420032003290388063700cf042003200341aa056a2d00003a00c20402400240024020012002460d00200221060c010b024020022004a72206470d00200241016a22012002490d33200241017422062001200620014b1b220641ffffff3f712006470d33200641057422014100480d330240024020020d002001101e21050c010b200520024105742001102221050b2005450d0220044280808080708321040b2004422088a721010b200520014105746a220220032903c004370000200241186a200341c0046a41186a290300370000200241106a200341c0046a41106a290300370000200241086a200341c0046a41086a290300370000200341a8026a41086a22024200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2002290300370300200320032903a8023703e8010240024020050d00200341e8016a411010040c010b200341003602e807200342013703e0072003200141016a22023602c004200341c0046a200341e0076a106302402002450d00200141057441206a21022005210103402003200341e0076a3602c0042001200341c0046a10b901200141206a2101200241606a22020d000b0b20032802e4072101200341e8016a411020032802e007220220032802e807100502402001450d00200210200b2006450d00200510200b200341ed076a200b360000200341e9076a200e360000200341f1076a20032903880637000020034182086a20032903f006370100200341f9076a20034188066a41086a29030037000020034181086a20034188066a41106a2d00003a00002003418a086a200341f0066a41086a29030037010020034192086a200341f0066a41106a2903003701002003419a086a20034188076a29030037010020034192023b01e007200320032f01a8053b01e2072003200c3600e5072003200341aa056a2d00003a00e407200341e0076a1077410021010c030b20014101102d000b41f0cbc0002101413f21020b200a450d00201710200b2001450d010b20004181303b010820002002360204200020013602002000410a6a41003a00000c330b200041023a00080c320b200141186a2d000021082001410c6a2802002107200141106a2903002204a721062004422088a7210520022d0000210202400240024002400240024002400240200141086a2802000e050001020304000b200341f4076a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a4194b4c6001033000b0240200241ff01710d00200341a8026a41086a22014200370300200342003703a80241a4b4c600412b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d00420121040c010b024020010d00420121040c010b20024108490d0720012900002104200110200b2005417f4c0d070240024020050d00410121010c010b2005101e2201450d090b20012007200510cd05210c4126101e2201450d092001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0a2001200437002620034188066a41186a2202420037030020034188066a41106a220e420037030020034188066a41086a220b420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200e29030037030020034180026a41086a200b29030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e807220e6b2005490d0020032802e00721010c190b200e20056a2201200e490d312002410174220b2001200b20014b1b220b4100480d310240024020020d00200b101e21010c010b20032802e0072002200b102221010b02402001450d002003200b3602e407200320013602e007200b21020c190b200b4101102d000b4111210141d3fec60021022006450d16200710200c160b0240200241ff0171450d0041d3fec6002102411121010c150b200341e0076a200141206a2903002204108003024020032802e0074101470d00200341e8076a280200210120032802e40721020c150b200341ea016a200341f3076a2d00003a0000200320032f00f1073b01e8012005417f4c0d05200341e8076a280200210120032802e407210e0240024020050d00410121020c010b2005101e2202450d0a0b20022007200510cd05210c02402001450d00200e10200b4126101e2201450d0a2001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0b2001200437002620034188066a41186a2202420037030020034188066a41106a220e420037030020034188066a41086a220b420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200e29030037030020034180026a41086a200b29030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e807220e6b2005490d0020032802e00721010c140b200e20056a2201200e490d2f2002410174220b2001200b20014b1b220b4100480d2f0240024020020d00200b101e21010c010b20032802e0072002200b102221010b02402001450d002003200b3602e407200320013602e007200b21020c140b200b4101102d000b200241ff01710d11200341e0076a2004108003024020032802e0074101470d00200341e8076a28020021010c020b200341fe016a200341f3076a2d00003a00002003200341f1076a2f00003b01fc01200341ec076a2802002105200341e0076a41086a280200210e20032802e40721084126101e2201450d0b2001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0c2001200437002620034188066a41186a2202420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200629030037030020034180026a41086a200729030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e80722066b2005490d0020032802e00721010c110b200620056a22012006490d2e200241017422072001200720014b1b22074100480d2e0240024020020d002007101e21010c010b20032802e00720022007102221010b02402001450d00200320073602e407200320013602e007200721020c110b20074101102d000b200241ff01710d10200341e0076a200410800320032802e0074101470d01200341e8076a28020021010b20032802e40721020c120b200341fe016a200341f3076a2d00003a00002003200341f1076a2f00003b01fc01200341ec076a2802002105200341e0076a41086a280200210e20032802e40721084126101e2201450d0a2001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0b2001200437002620034188066a41186a2202420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200629030037030020034180026a41086a200729030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e80722066b2005490d0020032802e00721010c0d0b200620056a22012006490d2b200241017422072001200720014b1b22074100480d2b0240024020020d002007101e21010c010b20032802e00720022007102221010b02402001450d00200320073602e407200320013602e007200721020c0d0b20074101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b102c000b20054101102d000b41264101102d000b41cc004101102d000b20054101102d000b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b2003200620056a22073602e807200120066a2008200510cd051a41002106200341003a00e00302400240024020022007460d00200221050c010b200241016a22052002490d20200241017422062005200620054b1b22054100480d200240024020020d002005101e21010c010b200120022005102221010b2001450d01200320053602e407200320013602e00720032d00e00321060b200120076a20063a000020034180026a41202001200741016a100502402005450d00200110200b0240200e450d00200810200b200341f0076a2004370300200341e8076a4201370300200341113a00e007200341e0076a10770c070b20054101102d000b2003200620056a22073602e807200120066a2008200510cd051a200341013a00e00302400240024020022007460d0020022105410121020c010b200241016a22052002490d1f200241017422062005200620054b1b22054100480d1f0240024020020d002005101e21010c010b200120022005102221010b2001450d01200320053602e407200320013602e00720032d00e00321020b200120076a20023a000020034180026a41202001200741016a100502402005450d00200110200b0240200e450d00200810200b200341f0076a2004370300200341e8076a4201370300200341113a00e007200341e0076a10770c060b20054101102d000b4111210141d3fec60021020c020b2003200e20056a220b3602e8072001200e6a200c200510cd051a200320083a00e0030240024002402002200b460d002002210e0c010b200241016a22082002490d1d2002410174220e2008200e20084b1b220e4100480d1d0240024020020d00200e101e21010c010b20012002200e102221010b2001450d012003200e3602e407200320013602e00720032d00e00321080b2001200b6a20083a000020034180026a41202001200b41016a10050240200e450d00200110200b02402005450d00200c10200b200341f0076a2004370300200341e8076a4201370300200341113a00e007200341e0076a10772006450d04200710200c040b200e4101102d000b2006450d00200710200b200041812e3b010820002001360204200020023602002000410a6a41003a00000c200b2003200e20056a220b3602e8072001200e6a200c200510cd051a200320083a00e003024002402002200b460d002002210e0c010b200241016a22082002490d192002410174220e2008200e20084b1b220e4100480d190240024020020d00200e101e21010c010b20012002200e102221010b2001450d022003200e3602e407200320013602e00720032d00e00321080b2001200b6a20083a000020034180026a41202001200b41016a10050240200e450d00200110200b02402005450d00200c10200b200341a8026a41086a22014200370300200342003703a80241a4b4c600412b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f460d002001450d00024020024108490d002001290000210920011020200942017c21090c020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b420221090b200341a8026a41086a22014200370300200342003703a80241a4b4c600412b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200320093703e007200341e8016a4110200341e0076a41081005200341e0076a41106a2004370300200341e0076a41086a4200370300200341113a00e007200341e0076a10772006450d00200710200b200041023a00080c1e0b200e4101102d000b200341e0076a200141086a41d80010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f00620034180016a200341e0076a200341f0066a10830302402003280280012201450d002003280284012102200041812c3b0108200020013602002000410a6a41003a0000200020023602040c1d0b200041023a00080c1c0b200341e0076a41286a200141306a290300370300200341e0076a41206a200141286a290300370300200341e0076a41186a200141206a290300370300200341e0076a41106a200141186a290300370300200341e0076a41086a200141106a2903003703002003200141086a2903003703e007200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341f8006a200341e0076a200341f0066a108403024020032802782201450d00200328027c210220004181283b0108200020013602002000410a6a41003a0000200020023602040c1c0b200041023a00080c1b0b200341e0076a200141086a41c80010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341f0006a200341e0076a200341f0066a108503024020032802702201450d002003280274210220004181263b0108200020013602002000410a6a41003a0000200020023602040c1b0b200041023a00080c1a0b200241086a290000210441042105200241046a280000210e2001410c6a2802002115200141086a28020021062001280204210820022d00002107200341fc016a41026a220b200241036a2d00003a0000200341a8026a41086a220c200241186a290000370300200341a8026a41106a220d200241206a2d00003a0000200320022f00013b01fc012003200241106a2900003703a80241012101024020074101470d00200341e8016a41026a200b2d00003a0000200341e0036a41086a200c290300370300200341e0036a41106a200d2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101200e21050b200341e8066a41026a200341e8016a41026a2d00003a000020034180026a41106a200341e0036a41086a29030037030020034180026a41186a200341e0036a41106a2d00003a0000200320032f01e8013b01e806200320032903e003370388022003200437038002024002400240024020010d00200341ff066a20034180026a41086a29030037000020034187076a20034180026a41106a2903003700002003418f076a20034198026a2d00003a0000200320032f01e8063b01f006200320053600f30620032003290380023700f7062003200341ea066a2d00003a00f206200341e0006a200341f0066a1086032003290360200341e0006a41086a2903008450450d01419686c5002101411b21020c020b419affc6002101410f210202400240024002400240024020050e0700010203040507000b2004422088a721022004a721010c060b418cffc6002101410e21020c050b4180ffc6002101410c21020c040b41f7fec6002101410921020c030b41e4fec6002101411321020c020b41d3fec6002101411121020c010b200341a8026a41086a22014200370300200342003703a802418486c5004112200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a10032101024002400240024020032802e0072202417f470d0041802021020c010b024020010d0041802021020c010b20024104490d0120012800002102200110200b0240201520024d0d0041b186c5002101410d21020c030b4109101e2201450d01200141086a41002d00c686453a0000200141002900be86453700002003428980808090013702e407200320013602e007200341f0066a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2207420037030020034188066a41086a220e420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200729030037030020034180026a41086a200e290300370300200320032903880637038002024020032802e407450d0020032802e00710200b200341203602e407200320034180026a3602e00720082015200341e0076a10a30202402006450d00200810200b200341e9076a200341f8066a290300370000200341f1076a20034180076a290300370000200341f9076a20034188076a2903003700002003410c3a00e007200320032903f0063700e107200341e0076a10770c030b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41094101102d000b02402006450d00200810200b2001450d0020004181243b010820002002360204200020013602002000410a6a41003a00000c1a0b200041023a00080c190b200341c2036a2206200141076a2d00003a0000200341c0026a41086a22072001411c6a290200370300200341c0026a41106a2208200141246a280200360200200320012f00053b01c0032003200141146a2902003703c002200141106a28020021052001410c6a280200210b200141086a280200210e20022d000021020240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0004220c0e050001020304000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41c8edc1001033000b0240200241ff01710d00410021010240200541057422020d004108210d410021150c0f0b2002410575221541ffffff1f712015470d24201541067422064100480d242006101e220d0d0e20064108102d000b200b450d0c200e10200c0c0b200341d7046a2007290300370000200341df046a20082d00003a0000200320032f01c0033b01c004200320053600cb042003200b3600c7042003200e3600c304200320032903c0023700cf04200320062d00003a00c204200241ff01710d0a0240200341c0046a10e302450d0041d8edc1002101412621020c0f0b200341f0066a41186a200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f006200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e0072003410036028806200341e0076a411020034188066a100321012003280288062202417f460d032001450d03200320023602ac05200320013602a80520034188066a200341a8056a10e4022003280288062205450d02200329028c06210402402002450d00200110200b200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e007200341e0076a21062004422088a722022004a7470d080c070b200341f7036a2007290300370000200341ff036a20082d00003a0000200320032f01c0033b01e003200320053600eb032003200b3600e7032003200e3600e303200320032903c0023700ef03200320062d00003a00e203200241ff01710d090240200341e0036a10e3020d0041feedc1002101411a21020c0e0b200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e007200341003602f006200341e0076a4110200341f0066a1003210120032802f0062202417f460d042001450d04200320023602c404200320013602c004200341f0066a200341c0046a10e40220032802f006220a450d0320032902f40621042002450d05200110200c050b200241ff01710d0902401079200e490d004198eec1002101411c21020c0e0b200341a8026a41086a22014200370300200342003703a80241a1c6c1004112200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e0072003200e3602f006200341e0076a4110200341f0066a410410050c0e0b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a29030037030041082105200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e0074200210441002102200341e0076a21060c030b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b420021044108210a0b200a2004422088a722194106746a21052004a7211a200a210102400240024002400240024002402019450d00200341e0076a41146a2102200341e0076a411c6a211741002106200341a8056a41186a2108200341a8056a41206a210d200341a8056a41286a211502400340200341a8056a41086a2216200a20066a2201411c6a290200370300200341a8056a41106a2218200141246a29020037030020082001412c6a290200370300200d200141346a29020037030020152001413c6a2802003602002003200141146a2902003703a805200141106a2802002207450d0120012903002104200141086a2903002109200220032903a805370200200241086a2016290300370200200241106a2018290300370200200241186a2008290300370200200241206a200d290300370200200241286a2015280200360200200320093703e807200320043703e007200320073602f00702402017200341e0036a412010cf050d00024020032802f407450d00200710200b200641c0006a2106200141c0006a2005470d010c040b0b200341c0046a41286a200241286a2802002208360200200341c0046a41206a200241206a290200220f37030020034188066a41086a200241086a290200221037030020034188066a41106a200241106a290200221137030020034188066a41186a200241186a290200221437030020034188066a41206a200f37030020034188066a41286a200836020020032002290200221237038806200341f0066a41286a22022008360200200341f0066a41206a2208200f370300200341f0066a41186a220d2014370300200341f0066a41106a22152011370300200341f0066a41086a22162010370300200320123703f006200341e0076a41286a22182002280200360200200341e0076a41206a22022008290300370300200341e0076a41186a2217200d290300370300200341e0076a41106a220d2015290300370300200341e0076a41086a22152016290300370300200320032903f0063703e00741c000101e2208450d062008200437030020082007360210200820032903e007370214200820093703082008411c6a2015290300370200200841246a200d2903003702002008412c6a2017290300370200200841346a20022903003702002008413c6a2018280200360200201941067441406a2006470d034101211b4101210d0c040b200141c0006a21010b20052001460d000340200141c0006a21020240200141146a280200450d00200141106a28020010200b2002210120052002470d000b0b410821084100210d0240201a0d004100211b0c030b200a10204100211b0c020b200341a8056a41086a2215200141dc006a290200370300200341a8056a41106a2216200141e4006a290200370300200341a8056a41186a2218200141ec006a290200370300200341a8056a41206a2217200141f4006a290200370300200341a8056a41286a2219200141fc006a2802003602002003200141d4006a2902003703a80520014180016a210602400240200141d0006a28020022070d004101210d4101211b0c010b200341f4076a2102200141c8006a2903002104200141c0006a2903002109200341e0076a411c6a211c4101210d4101211b03402006210102400340200220032903a805370200200241086a22062015290300370200200241106a221d2016290300370200200241186a221e2018290300370200200241206a221f2017290300370200200241286a22202019280200360200200320043703e807200320093703e007200320073602f007201c200341e0036a412010cf050d01024020032802f407450d00200710200b20052001460d04200141106a2802002107200141086a29030021042001290300210920152001411c6a2902003703002016200141246a29020037030020182001412c6a2902003703002017200141346a29020037030020192001413c6a2802003602002003200141146a2902003703a805200141c0006a210120070d000b200121060c020b200341c0046a41286a20202802002220360200200341c0046a41206a201f290200220f37030020034188066a41086a2006290200221037030020034188066a41106a201d290200221137030020034188066a41186a201e290200221437030020034188066a41206a200f37030020034188066a41286a202036020020032002290200221237038806200341f0066a41286a22062020360200200341f0066a41206a221d200f370300200341f0066a41186a221e2014370300200341f0066a41106a221f2011370300200341f0066a41086a22202010370300200320123703f006200341e0076a41286a22212006280200360200200341e0076a41206a2222201d290300370300200341e0076a41186a221d201e290300370300200341e0076a41106a221e201f290300370300200341e0076a41086a221f2020290300370300200320032903f0063703e0070240201b200d470d00200d41016a2206200d490d22200d410174221b2006201b20064b1b221b41ffffff1f71201b470d22201b41067422064100480d2202400240200d0d002006101e21080c010b2008200d4106742006102221080b2008450d060b2008200d4106746a220620043703082006200937030020062007360210200641146a20032903e0073702002006411c6a201f290300370200200641246a201e2903003702002006412c6a201d290300370200200641346a20222903003702002006413c6a2021280200360200200d41016a210d20052001460d02200141106a2802002107200141086a29030021042001290300210920152001411c6a2902003703002016200141246a29020037030020182001412c6a2902003703002017200141346a29020037030020192001413c6a2802003602002003200141146a2902003703a805200141c0006a210620070d000b200141c0006a21060b20052006460d000340200641c0006a21010240200641146a280200450d00200641106a28020010200b2001210620052001470d000b0b201a450d00200a10200b200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e007200341f0066a2008200d108703200341e0076a411020032802f006220120032802f8061005024020032802f406450d00200110200b0240200d450d00200d4106742102200841106a210103400240200141046a280200450d00200128020010200b200141c0006a2101200241406a22020d000b0b41002101201b450d08200810200c090b41c0004108102d000b20064108102d000b024020022004a7470d00200241016a22012002490d1b200241017422072001200720014b1b220141ffffff1f712001470d1b200141067422074100480d1b0240024020020d002007101e21050c010b200520024106742007102221050b2005450d022004428080808070832001ad8421040b2004422088a721020b200520024106746a220142083703102001420037030820014200370300200141186a41003602002001200629020037021c200141246a200641086a2902003702002001412c6a200641106a290200370200200141346a200641186a290200370200200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e007024020050d00200341e0076a41101004410021010c060b20034188066a2005200241016a2201108703200341e0076a4110200328028806220620032802900610050240200328028c06450d00200610200b2004a7210602402001450d00200541106a2101200241067441c0006a210203400240200141046a280200450d00200128020010200b200141c0006a2101200241406a22020d000b0b02402006450d00200510200b410021010c050b20074108102d000b41d3fec6002101411121020c030b41d3fec6002101411121020c030b02402005450d00200e20026a2116200541057421054100200e6b2118200d2101200e21020340200341e0076a41186a2206200241186a290000370300200341e0076a41106a2207200241106a290000370300200341e0076a41086a2208200241086a290000370300200320022900003703e007200141186a4100360200200141106a420837030020014200370308200142003703002001411c6a20032903e007370000200141246a20082903003700002001412c6a2007290300370000200141346a2006290300370000200141c0006a2101200241206a2102200541606a22050d000b201620186a41606a41057641016a21010b0240200b450d00200e10200b200341a8026a41086a22024200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2002290300370300200320032903a8023703e007200341f0066a200d2001108703200341e0076a411020032802f006220220032802f8061005024020032802f406450d00200210200b02402001450d0020014106742102200d41106a210103400240200141046a280200450d00200128020010200b200141c0006a2101200241406a22020d000b0b410021012015450d00200d10200b0b0240200c4101470d00200c417f6a4103490d00200b450d00200e10200b2001450d010b20004181223b010820002002360204200020013602002000410a6a41003a00000c190b200041023a00080c180b200341e0076a200141086a41d00010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341d8006a200341e0076a200341f0066a108803024020032802582201450d00200328025c210220004181203b0108200020013602002000410a6a41003a0000200020023602040c180b200041023a00080c170b200141386a2903002109200141306a290300210f2001412c6a280200211b200141286a280200210d200141246a2802002118200141206a28020021192001411c6a2802002115200141186a280200210a200141146a2802002117200141106a28020021162001410c6a2802002106200141086a2d0000210520012d0009211a200341d0016a41026a2207200241036a2d00003a0000200341a8056a41086a2208200241186a290000370300200341a8056a41106a220e200241206a2d00003a0000200320022f00013b01d0012003200241106a2900003703a805200241086a29000021044104210b200241046a280000210c20022d0000210102400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e06000102030a0b000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41fcb2c2001033000b200341fc016a41026a20072d00003a0000200341a8026a41086a2008290300370300200341a8026a41106a200e2d00003a0000200320032f01d0013b01fc01200320032903a8053703a80241012102410421070240200141ff01714101470d00200341ec066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01ec06200320032903a8023703e00341002102200c21070b200341e8066a41026a2201200341ec066a41026a2d00003a0000200341a0036a41106a2208200341e0036a41086a290300370300200341b8036a220e200341e0036a41106a2d00003a0000200320032f01ec063b01e806200320032903e0033703a803200320043703a0030240024020020d00200341cf046a200341a0036a41086a290300370000200341d7046a2008290300370000200341df046a200e2d00003a0000200320032f01e8063b01c004200320073600c304200320032903a0033700c704200320012d00003a00c204200341286a200341c0046a10890341dbb4c2002101412021022003290328200341286a41086a29030084500d26200341c0046a10ff020d010c260b419affc6002101410f210202400240024002400240024020070e070001020304052b000b2004422088a721022004a721010c2a0b418cffc6002101410e21020c290b4180ffc6002101410c21020c280b41f7fec6002101410921020c270b41e4fec6002101411321020c260b41d3fec6002101411121020c250b42002104200341a8026a41086a22014200370300200342003703a802418cb3c2004112200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d0042e40021100c010b024020010d0042e40021100c010b20024110490d0b200141086a290000210420012900002110200110200b02402010200f56200420095620042009511b450d00419eb3c2002101411021020c250b024020170d0041aeb3c2002101412221020c250b200341a8026a41086a22014200370300200342003703a802419db2c2004114200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d0041e40021020c010b024020010d0041e40021020c010b20024104490d0c20012800002102200110200b0240201720024d0d0041d0b3c2002101411021020c250b024020190d0041e0b3c2002101412921020c250b200341a8026a41086a22014200370300200342003703a80241b1b2c200411b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d004190ce0021020c010b024020010d004190ce0021020c010b20024104490d0d20012800002102200110200b0240201920024d0d004189b4c2002101411721020c250b0240201b0d0041a0b4c2002101412721020c250b200341a8026a41086a22014200370300200342003703a80241ccb2c2004118200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d00418089fa0021020c010b024020010d00418089fa0021020c010b20024104490d0e20012800002102200110200b0240201b20024d0d0041c7b4c2002101411421020c250b0240200341c0046a200f2009108a03450d0041fbb4c2002101411f21020c250b200341a8026a41086a22014200370300200342003703a80241e4b2c2004117200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f460d002001450d00024020024104490d002001280000210220011020200241016a211a0c020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b4101211a0b200341a8026a41086a22014200370300200342003703a80241e4b2c2004117200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e8012003201a3602e007200341e8016a4110200341e0076a4104100520034188066a41186a2202420037030020034188066a41106a2207420037030020034188066a41086a2208420037030020034200370388062018201b20034188066a1001200341f0066a41186a220e2002290300370300200341f0066a41106a220b2007290300370300200341f0066a41086a220c200829030037030020032003290388063703f006200341c0036a41086a200341c0046a410772220141086a290000370300200341c0036a41106a200141106a290000370300200341c0036a41186a200141186a2d00003a0000200320032f01c0043b01a002200320032d00c2043a00a202200320012900003703c00320032800c304211d200341c0026a41086a200c290300370300200341c0026a41106a200b290300370300200341c0026a41186a200e290300370300200320032903f0063703c0021079211e200341e0076a41186a200e290300370300200341e0076a41106a200b290300370300200341e0076a41086a200c290300370300200320032903f0063703e0074118101e2201450d0e200141002900ecfc41370000200141106a41002900fcfc41370000200141086a41002900f4fc413700002003429880808080033702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210e20024200370300200742003703002008420037030020034200370388062001200e20034188066a100120034180026a41186a200229030037030020034180026a41106a200729030037030020034180026a41086a2008290300370300200320032903880637038002024020032802e403450d0020032802e00310200b4101211c024020034180026a412041e4fdc600410041001002417f470d00200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e0074118101e2201450d104100211c200141002900ecfc41370000200141106a41002900fcfc41370000200141086a41002900f4fc413700002003429880808080033702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210220034188066a41186a2207420037030020034188066a41106a2208420037030020034188066a41086a220e420037030020034200370388062001200220034188066a100120034180026a41186a200729030037030020034180026a41106a200829030037030020034180026a41086a200e290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341203602e407200320034180026a3602e0072018201b200341e0076a10a302200d450d00201810200b20034188086a201936020020034184086a2015360200200341fc076a2017360200200341e0076a41186a201636020020034192086a20032d00a2023a000020034193086a201d36000020034197086a20032903c0033700002003419f086a200341c0036a41086a290300370000200341a7086a200341c0036a41106a290300370000200341af086a200341c0036a41186a2d00003a00002003200f3703e0072003201e36028c082003200a36028008200320063602f4072003201a3602f007200320032f01a0023b019008200320093703e807200341c8086a200341c0026a41186a290300370300200341c0086a200341c0026a41106a290300370300200341b8086a200341c0026a41086a290300370300200341d4086a20032800bb01360000200341003a00d008200320032903c0023703b008200320032802b8013600d1084113101e2201450d102001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d112001201a36001320034188066a41186a2202420037030020034188066a41106a2207420037030020034188066a41086a2208420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200729030037030020034180026a41086a2008290300370300200320032903880637038002200110202003412036028c06200320034180026a36028806200341e0076a20034188066a108b03024020032802f807450d0020032802f40710200b0240200328028408450d0020032802800810200b200341a8026a41086a22014200370300200342003703a80241aefac100411b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d132001450d132003200236028c062003200136028806200341e0076a20034188066a10c10120032802e0072219450d1220032902e407210402402002450d00200110200b20032019360288062003200437028c0620034188066a21012004422088a722022004a7221b470d220c210b200341fc016a41026a20072d00003a0000200341a8026a41086a2008290300370300200341a8026a41106a200e2d00003a0000200320032f01d0013b01fc01200320032903a8053703a80241012102410421050240200141ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002102200c21050b200341c0036a41106a2201200341e0036a41086a290300370300200341d8036a2207200341e0036a41106a2d00003a0000200320032f01e8063b01a002200320032903e0033703c8032003200341ea066a2d00003a00a202200320043703c0030240024020020d00200341cf046a200341c0036a41086a290300370000200341d7046a2001290300370000200341df046a20072d00003a0000200320032d00a2023a00c204200320032f01a0023b01c004200320053600c304200320032903c0033700c704200341c0046a10e3020d01419ab5c2002101412521020c270b419affc6002101410f2102024020050e0700030405060726000b2004422088a721022004a721010c250b4113101e2201450d132001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d142001200636001320034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2207420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20072903003703002003200329038806370380022001102020034180026a412041e4fdc600410041001002417f460d1f200341e0076a2006108c03024020032d00d008450d0041dbb5c2002101411d21020c1f0b0240200328028c08108d03450d0041f8b5c2002101412a21020c1f0b200341f0066a41186a200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f00620032006360290074122101e2201450d15200141002900c9b642370000200141206a41002f00e9b6423b0000200141186a41002900e1b642370000200141106a41002900d9b642370000200141086a41002900d1b642370000200342a2808080a0043702e403200320013602e003200341f0066a200341e0036a10ca012003280290072105024020032802e403220220032802e80322016b4104490d0020032802e00321020c1e0b200141046a22072001490d36200241017422012007200120074b1b22014100480d360240024020020d002001101e21020c010b20032802e00320022001102221020b02402002450d00200320013602e403200320023602e00320032802e80321010c1e0b20014101102d000b200341fc016a41026a20072d00003a0000200341a8026a41086a2008290300370300200341a8026a41106a200e2d00003a0000200320032f01d0013b01fc01200320032903a8053703a802410121020240200141ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a000020034180026a41106a200341b0026a29030037030020034198026a200341a8026a41106a2d00003a0000200320032f01fc013b01e8012003200437038002200320032903a8023703880241002102200c210b0b200341c0036a41086a220120034180026a41086a290300370300200341c0036a41106a220520034180026a41106a290300370300200341c0036a41186a220720034180026a41186a2d00003a0000200320032f01e8013b01a00220032003290380023703c0032003200341ea016a2d00003a00a202024020020d00200341c0046a410f6a2001290300370000200341d7046a2005290300370000200341df046a20072d00003a0000200320032d00a2023a00c204200320032f01a0023b01c0042003200b3600c304200320032903c0033700c7044113101e2201450d162001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d172001200636001320034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2207420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20072903003703002003200329038806370380022001102020034180026a412041e4fdc600410041001002417f470d0641bfb5c2002101411c21020c240b419affc6002101410f21020240200b0e0700010203040524000b20032802c003210120032802c40321020c230b418cffc6002101410e21020c220b4180ffc6002101410c21020c210b41f7fec6002101410921020c200b41e4fec6002101411321020c1f0b41d3fec6002101411121020c1e0b200341e0076a2006108c030240200341c0046a20034190086a412010cf05450d0041ebb6c2002101411c21020c160b024020032d00d008450d0041dbb5c2002101411d21020c160b42002109200341a8026a41086a22014200370300200342003703a8024187b7c2004119200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602f006200341e8016a4110200341f0066a100321010240024020032802f0062202417f470d00420521040c010b024020010d00420521040c010b20024110490d12200141086a290000210920012900002104200110200b200341386a200341c0046a20042009108e03200341f0066a41186a200341386a41186a29030037030020032003290348370380072003200341386a41086a2903003703f806200320032903383703f0062003200341f0066a3602880620034188066a109402200341c0046a20032903e007220f20047d200341e0076a41086a29030020097d200f200454ad7d108f03412821022006410110900322010d1520034198076a2006360200200341fd066a200341c0046a41086a29030037000020034185076a200341d0046a2903003700002003418d076a200341c0046a41186a290300370000200341013a00f406200341093a00f006200320032903c0043700f506200341f0066a10770240200341e0076a41186a280200450d0020032802f40710200b20034184086a280200450d1f20032802800810200c1f0b200141ff01710d134113101e2201450d112001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d122001200636001320034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2207420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20072903003703002003200329038806370380022001102020034180026a412041e4fdc600410041001002417f460d17200341e0076a2006108c0302400240024020032d00d008450d0041dbb5c2002101411d21020c010b20034190086a20032903e007200341e0076a41086a290300108f0341282102200641011090032201450d010b0240200341f8076a280200450d0020032802f40710200b20034184086a280200450d1d20032802800810200c1d0b200341f0066a41086a2006360200200341063a00f406200341093a00f006200341f0066a10770240200341f8076a280200450d0020032802f40710200b20034184086a280200450d1e20032802800810200c1e0b200141ff01710d12024020060d0041a0b7c2002101412921020c1d0b200341a8026a41086a22014200370300200342003703a8024196fac1004118200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200320063602e007200341e8016a4110200341e0076a410410050c1d0b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41184101102d000b41184101102d000b41134101102d000b41264101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41002102200341003602900620034204370388064104211920034188066a21010c0d0b41134101102d000b41264101102d000b41224101102d000b41134101102d000b41264101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41134101102d000b41264101102d000b41d3fec6002101411121020c090b0240200341f8076a280200450d0020032802f40710200b20034184086a280200450d0720032802800810200c070b2003200141046a3602e803200220016a200536000020032802e803210120032802e003210220034188066a41186a2205420037030020034188066a41106a2207420037030020034188066a41086a2208420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200729030037030020034180026a41086a2008290300370300200320032903880637038002024020032802e403450d0020032802e00310200b024020034180026a412041e4fdc600410041001002417f460d0041a2b6c2002101412721020c010b200341f0066a41186a200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f006200341f0066a2006201a1091030240200341e0076a41186a280200450d0020032802f40710200b20034184086a280200450d0820032802800810200c080b0240200341f8076a280200450d0020032802f40710200b20034184086a280200450d0620032802800810200c060b41bfb5c2002101411c21020c050b200141046a280200221b2002470d00200241016a22072002490d15200241017422082007200820074b1b221b41ffffffff0371201b470d15201b41027422074100480d150240024020020d002007101e21020c010b200128020020024102742007102221020b2002450d0120012002360200200141046a201b360200200328029006210220032802880621190b200128020020024102746a201a3602002003200241016a220136029006200341a8026a41086a22074200370300200342003703a80241aefac100411b200341a8026a1000200341e8016a41086a2007290300370300200320032903a8023703e8010240024020190d00200341e8016a411010040c010b200341003602e807200342013703e007200320013602e003200341e0036a200341e0076a10630240024020010d0020032802e807210b20032802e407210e20032802e00721020c010b410020032802e80722016b2107200241027441046a210c20032802e407210e2019210803402008280200211702400240200e20076a4104490d0020032802e00721020c010b200141046a22022001490d18200e410174220b2002200b20024b1b220b4100480d1802400240200e0d00200b101e21020c010b20032802e007200e200b102221020b02402002450d002003200b3602e407200320023602e007200b210e0c010b200b4101102d000b200841046a21082003200141046a220b3602e807200220016a20173600002007417c6a2107200b2101200c417c6a220c0d000b0b200341e8016a41102002200b10050240200e450d00200210200b201b450d00201910200b20034188086a201a360200200341ed076a200341c0046a41086a2201290300370000200341f5076a200341c0046a41106a2202290300370000200341fd076a200341c0046a41186a2207290300370000200341003a00e407200341093a00e007200320032903c0043700e507200341e0076a10770240200341c0046a10e302450d00200341e0076a41186a2007290300370300200341e0076a41106a2002290300370300200341e0076a41086a2001290300370300200320032903c0043703e007200341e0076a201a41011091030b0240200d450d00201c450d00201810200b20054101470d042005417f6a41014d0d0402402016450d00200610200b02402015450d00200a10200b200d450d04201810200c040b20074104102d000b0240200d450d00201810200b02402015450d00200a10200b2016450d00200610200b2001450d010b200041811e3b010820002002360204200020013602002000410a6a41003a00000c170b200041023a00080c160b200341a8056a41086a220b200141146a290200370300200341a8056a41106a220c2001411c6a290200370300200341a8056a41186a220d200141246a29020037030020032001410c6a2902003703a805200141086a28020021082001412c6a280200210e20012802042101200341d0016a41026a2205200241036a2d00003a0000200341b8016a41086a2206200241186a290000370300200341b8016a41106a2207200241206a2d00003a0000200320022f00013b01d0012003200241106a2900003703b801200241086a290000210441042115200241046a280000211620022d0000210202400240024002400240024020010e0400010203000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41d483c6001033000b200341fc016a41026a20052d00003a0000200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032f01d0013b01fc01200320032903b8013703a80241012101410421050240200241ff01714101470d00200341f0066a41026a200341fc016a41026a2d00003a0000200341e0076a41086a200341a8026a41086a290300370300200341e0076a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01f006200320032903a8023703e00741002101201621050b200341c0036a41026a2202200341f0066a41026a2d00003a0000200341c0026a41086a2206200341e0076a41086a220b290300370300200341c0026a41106a2207200341e0076a41106a220e2d00003a0000200320032f01f0063b01c003200320032903e0073703c00202400240024020010d00200341c0046a41176a2006290300370000200341c0046a411f6a20072d00003a0000200320032f01c0033b01c004200320043700c704200320053600c304200320032903c0023700cf04200320022d00003a00c204200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341e8016a41026a20032d00e3073a0000200341e0036a41086a200341e0076a41186a290300370300200341e0036a41106a20034180086a2d00003a0000200320032f00e1073b01e8012003200e2903003703e0030240024020014101460d00200341f0066a41186a420037030020034180076a4200370300200341f8066a4200370300200342003703f0060c010b200b290300210420032802e4072101200341f0066a41176a200341e8036a290300370000200341f0066a411f6a200341f0036a2d00003a0000200320032f01e8013b01f006200320043700f706200320013600f306200320032903e0033700ff062003200341ea016a2d00003a00f2060b200341c0046a200341f0066a412010cf05450d0241a8d3c4002101412221020c010b419affc6002101410f210202400240024002400240024020050e0700010203040506000b2004422088a721022004a721010c050b418cffc6002101410e21020c040b4180ffc6002101410c21020c030b41f7fec6002101410921020c020b41e4fec6002101411321020c010b41d3fec6002101411121020b200810cf01200810200c030b200341e0076a200841c00110cd051a200341003a00f00620034188066a200341e0076a200341f0066a10a40241012101024020032d00900622024102460d0020034191066a31000021092003310092062104200328028c062106200328028806210541a1fec600410d100602402002450d00200910080b20041008410021012005450d002005200610060b200320013a00e207200341083b01e007200341e0076a1077200810200c030b20034188066a41186a200d29030037030020034188066a41106a200c29030037030020034188066a41086a200b290300370300200320032903a80537038806200341fc016a41026a20052d00003a0000200320032f01d0013b01fc01200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032903b8013703a80241012101410421050240200241ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002101201621050b200341f0066a41026a2207200341e8066a41026a2d00003a0000200341e0076a41106a2202200341e0036a41086a220e290300370300200341f8076a2206200341e0036a41106a220b2d00003a0000200320032f01e8063b01f006200320032903e0033703e807200320043703e00702400240024020010d00200341cf046a200341e0076a41086a220c290300370000200341c0046a41176a2002290300370000200341c0046a411f6a20062d00003a0000200320032f01f0063b01c004200320053600c304200320032903e0073700c704200320072d00003a00c204200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341e8016a41026a20032d00e3073a0000200e2006290300370300200b20034180086a2d00003a0000200320032f00e1073b01e801200320022903003703e0030240024020014101460d0020034188076a420037030020034180076a4200370300200341f8066a4200370300200342003703f0060c010b200c290300210420032802e4072101200341f0066a41176a200341e8036a290300370000200341f0066a411f6a200341f0036a2d00003a0000200320032f01e8013b01f006200320043700f706200320013600f306200320032903e0033700ff062003200341ea016a2d00003a00f2060b200341c0046a200341f0066a412010cf05450d0141cad3c4002101413121020c040b419affc6002101410f21020240024002400240024020050e0700060102030408000b2004422088a721022004a721010c070b4180ffc6002101410c21020c060b41f7fec6002101410921020c050b41e4fec6002101411321020c040b41d3fec6002101411121020c030b200341ec076a20034188066a41086a290300370200200341f4076a20034188066a41106a290300370200200341fc076a20034188066a41186a290300370200200320083602e00720032003290388063702e407200341f0066a200341e0076a10b602200341c0036a41086a2201200341f0066a41106a290300370300200341c0036a41106a2202200341f0066a41186a290300370300200341c0036a41186a2205200341f0066a41206a2d00003a0000200320032f00f1063b01a002200320032d00f3063a00a2022003200341f0066a41086a2903003703c00320032d00f0064101460d0020032802f4062106200341ec066a41026a20032d00a2023a0000200341a0036a41086a2001290300370300200341a0036a41106a2002290300370300200341a0036a41186a20052d00003a0000200320032f01a0023b01ec06200320032903c0033703a00342002104200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341e8016a41026a220220032d00e3073a0000200341e0036a41086a200341e0076a41186a290300370300200341e0036a41106a20034180086a2d00003a0000200320032f00e1073b01e8012003200341e0076a41106a2903003703e0030240024020014101460d0041002101200341c0036a41026a41003a0000200341c8026a4200370300200341d0026a41003a0000200341003b01c003200342003703c002420021090c010b200341e0076a41086a290300210920032802e4072101200341c0036a41026a20022d00003a0000200341c0026a41086a200341e0036a41086a290300370300200341c0026a41106a200341e0036a41106a2d00003a0000200320032f01e8013b01c003200320032903e0033703c002200942ffffffff0f83210420094280808080708321090b200341e8066a41026a200341c0036a41026a2d000022023a000020034180026a41106a2205200341c0026a41086a29030037030020034180026a41186a2207200341c0026a41106a2d00003a0000200320032f01c00322083b01e806200320032903c0023703880220032009200484220437038002200341e9076a200437000020034188023b01e007200320083b01e207200320023a00e407200320013600e507200341f1076a200329038802370000200341f9076a200529030037000020034181086a20072d00003a0000200341e0076a1077200341ef076a200341a0036a41086a290300370000200341f7076a200341a0036a41106a290300370000200341ff076a200341a0036a41186a2d00003a00002003200341ec066a41026a2d00003a00e207200320032f01ec063b01e007200320063600e307200320032903a0033700e707200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341103602f4062003200341e8016a3602f006200341e0076a200341f0066a108203410021010c020b418cffc6002101410e21020c010b20034188066a41186a200d29030037030020034188066a41106a200c29030037030020034188066a41086a200b290300370300200320032903a80537038806200341fc016a41026a20052d00003a0000200320032f01d0013b01fc01200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032903b8013703a802410121010240200241ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101201621150b200341c0036a41106a2202200341e0036a41086a2205290300370300200341c0036a41186a2206200341e0036a41106a22072d00003a0000200320032f01e8013b01a002200320032903e0033703c8032003200341ea016a220b2d00003a00a202200320043703c003024002400240024020010d00200341cf046a200341c0036a41086a290300370000200341c0046a41176a2002290300370000200341c0046a411f6a20062d00003a0000200320032d00a2023a00c204200320032f01a0023b01c004200320153600c304200320032903c0033700c704200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200b20032d00e3073a00002005200341e0076a41186a290300370300200720034180086a2d00003a0000200320032f00e1073b01e8012003200341e0076a41106a2903003703e0030240024020014101460d0020034188076a420037030020034180076a4200370300200341f8066a4200370300200342003703f0060c010b200341e0076a41086a290300210420032802e4072101200341f0066a41176a200341e8036a290300370000200341f0066a411f6a200341f0036a2d00003a0000200320032f01e8013b01f006200320043700f706200320013600f306200320032903e0033700ff062003200341ea016a2d00003a00f2060b200341c0046a200341f0066a412010cf05450d0141a8d3c400210141222102200e10cf010c030b419affc6002101410f210202400240024002400240024020150e0700070102030405000b2004422088a721022004a72101200e10cf010c070b4180ffc6002101410c2102200e10cf010c060b41f7fec600210141092102200e10cf010c050b41e4fec600210141132102200e10cf010c040b41d3fec6002101411121020b200e10cf010c020b200341ec076a20034188066a41086a290300370200200341f4076a20034188066a41106a290300370200200341fc076a20034188066a41186a290300370200200320083602e00720032003290388063702e407200341f0066a200341e0076a10b602200341c0036a41026a220220032d00f3063a0000200341c0026a41086a2205200341f0066a41186a2206290300370300200341c0026a41106a2207200341f0066a41206a2d00003a0000200320032f00f1063b01c0032003200341f0066a41106a22082903003703c0024101210120032d00f0064101460d00200341f0066a41086a220b290300210420032802f406210c200341e8066a41026a220d20022d00003a000020034180026a41106a2202200529030037030020034180026a41186a220520072d00003a0000200320032f01c0033b01e8062003200437038002200320032903c00237038802200341e0076a200e41c00110cd051a200b20032903800237030020082003290388023703002006200229030037030020034190076a20052d00003a0000200341013a00f006200320032f01e8063b00f1062003200d2d00003a00f3062003200c3602f406200341e0036a200341e0076a200341f0066a10a402024020032d00e80322024102460d00200341e9036a310000210920033100ea03210420032802e403210620032802e003210541a1fec600410d100602402002450d00200910080b20041008410021012005450d002005200610060b200320013a00e20720034188043b01e007200341e0076a1077410021010c010b418cffc6002101410e2102200e10cf010b200e10200b2001450d00200041811c3b010820002002360204200020013602002000410a6a41003a00000c160b200041023a00080c150b411b101e2201450d01200141176a41002800e7f346360000200141106a41002900e0f346370000200141086a41002900d8f346370000200141002900d0f3463700002001411b413610222201450d022001201736001b20034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2208420037030020034200370388062001411f20034188066a1001200341c0026a41186a220b2002290300370300200341c0026a41106a2005290300370300200341c0026a41086a200829030037030020032003290388063703c002200110204120101e2201450d03200120032903c002370000200141186a200b290300370000200141106a200341c0026a41106a290300370000200141086a200341c0026a41086a290300370000200320183602e0072002420037030020034188066a41106a2205420037030020034188066a41086a220842003703002003420037038806200341e0076a410420034188066a100120034180026a41186a200229030037030020034180026a41106a2202200529030037030020034180026a41086a220520082903003703002003200329038806370380022001412041c00010222201450d042001200329038002370020200141386a20034198026a290300370000200141306a2002290300370000200141286a2005290300370000200341c0003602e407200320013602e0072006200e200341e0076a10a3022001102002402007450d00200610200b024020032802f406450d00201910200b02402016450d00200a10200b0240200c450d00200c410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b2015450d00200d10200b200041023a00080c130b411b4101102d000b41364101102d000b41204101102d000b41c0004101102d000b0240200328028402450d00200110200b200341e1046a211920034181056a211b200341e0036a41206a2116200341a0046a2118200341c0046a410172211a200341f0066a4101722102417421070340024002400240200741e4c3c1006a280000220141e2c289ab0646220d0d00200141e9dabdf306460d010240200141e7e485f306460d004100210541e4fdc60021060c030b41202105200341e0036a21060c020b41202105201621060c010b41202105201821060b20032005360290062003200636028c062003200136028806200341a8056a20034188066a109203200341f0066a20032802a805220820032802b005106920034188066a41086a220e200241086a29000037030020034188066a41106a220b200241106a29000037030020034188066a41186a220c200241186a29000037030020032002290000370388060240024020032d00f0064101470d0020034180026a41186a2215200c29030037030020034180026a41106a220c200b29030037030020034180026a41086a220b200e290300370300200320032903880637038002024020032802ac05450d00200810200b200341f0066a41186a2015290300370300200341f0066a41106a200c290300370300200341f0066a41086a200b29030037030020032003290380023703f006200341f0066a200341c0036a412010cf05450d0141c6acc6002101411821020c030b20032802ac05450d00200810200b0240024020032d00c0044101470d00024002400240200d0d00200141e9dabdf306460d010240200141e7e485f306460d004100210841e4fdc600210e0c030b41202108201a210e0c020b412021082019210e0c010b41202108201b210e0b024020052008470d002006200e460d022006200e200510cf05450d020b200320083602f8062003200e3602f406200320013602f00620034188066a200341f0066a10920320032802880622082003280290061004200328028c06450d00200810200b200320053602f806200320063602f406200320013602f00620034188066a200341f0066a109203200328028806210120032003280290063602f406200320013602f006200341c0036a200341f0066a108203200328028c06450d00200110200b200741046a22070d000b20034188066a200341c0036a10fd0220032802900621022003280288062101200341003602f806200342013703f006200341e0036a200341f0066a10ca012016200341f0066a10ca012018200341f0066a10ca0120032802f40621052001200220032802f006220620032802f806100502402005450d00200610200b0240200328028c06450d00200110200b200a450d01201710200c010b0240200a450d00201710200b2001450d00200041810e3b010820002002360204200020013602002000410a6a41003a00000c0d0b200041023a00080c0c0b42002114420021040b024002402014200f5422022004200954200420095122011b0d002014200f56200420095620011b450d0120032014200f7d3703e0072003200420097d2002ad7d3703e8072003200341e0076a3602880620034188066a1094020c010b2003200f20147d3703e0072003200920047d200f201454ad7d3703e8072003200341e0076a3602880620034188066a10f4020b200341a8056a200f200910930302400240024002404118101e2201450d00200141002900e28a45370000200141106a41002900f28a45370000200141086a41002900ea8a453700002003429880808080033702e407200320013602e007200341a8056a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e407450d0020032802e00710200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d022001450d0220024110490d01200141086a290000210420012900002109200110200c030b41184101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b42002109420021040b02400240200920115422022004201054200420105122011b0d002009201156200420105620011b450d012003200920117d3703e0072003200420107d2002ad7d3703e8072003200341e0076a3602880620034188066a1094020c010b2003201120097d3703e0072003201020047d2011200954ad7d3703e8072003200341e0076a3602880620034188066a10f4020b200341a8056a20112010109403410021010c010b410021010b02402001450d00200041810a3b010820002002360204200020013602002000410a6a41003a00000c090b200041023a00080c080b0240024020012007460d00200442208821090c010b0240024020012004a7470d00200141016a22072001490d03200141017422082007200820074b1bad220942c4007e220f422088a70d03200fa722074100480d030240024020010d002007101e21020c010b2002200141c4006c2007102221020b2002450d01200320023602a00320044280808080708320098421040b20044220882209a721010c010b20074104102d000b2002200141c4006c6a220141003a000020012006360204200120032f01fc013b0001200141036a200341fc016a41026a2d00003a0000200120032902e007370208200141106a200341e0076a41086a2217290200370200200141186a200341e0076a41106a2219290200370200200141206a200341e0076a41186a290200370200200141286a200341e0076a41206a290200370200200141306a200341e0076a41286a290200370200200141386a200341e0076a41306a290200370200200141c0006a200341e0076a41386a2802003602002009422086200442ffffffff0f83844280808080107c2104200b200541f0006c6a2107024020050d00200b21060c040b200341c0026a41186a2115200b210603402006280204210120062802002102200341e0076a200641086a41e80010cd051a200641f0006a21062001450d04200341f0066a200341e0076a41e80010cd051a200320013602e407200320023602e0072017200341f0066a41e80010cd051a20032802a003210e1079210120034188066a200341e0076a10c001024002400240024020032802e00722020d004190adc600210c4110210d0c010b0240200220014d0d00411a210d41a0adc600210c0c010b200341c0046a2002417f6a10a1010240200341c0046a2019412010cf05450d004119210d41baadc600210c0c010b024020032802e007220c41002001417b6a2202200220014b1b4f0d004126210d41d3adc600210c0c010b02400240200e200e20044220882209a7220841c4006c22026a460d00200e41016a2101034002402001417f6a2d00004101470d004101210520034188066a2001460d03200120034188066a412010cf05450d030b200141c4006a2101200241bc7f6a22020d000b0b410021050b200341c0046a200c10a101200341c0046a20034188066a412010cf052101200341a8056a41086a2202200341c0036a41086a290300370300200341a8056a41106a200341c0036a41106a290300370300200320032903c0033703a80541faacc600210c4116210d20050d0120010d020c010b200341a8056a41086a200341c0036a41086a290300370300200341a8056a41106a200341c0036a41106a290300370300200320032903c0033703a8050b024020032802ec072202450d0020032802e4072101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b024020032802e807450d0020032802e40710200b024020072006460d00034002402006410c6a2802002202450d0020062802042101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b200641f0006a21010240200641086a280200450d00200628020410200b2001210620012007470d000b0b0240200a450d00200b10200b2004a7450d07200e10200c070b200341e0036a410e6a2205200341a8056a410e6a290100370100200341e0036a41086a220c2002290300370300200320032903a8053703e003200341c0046a200341e0076a10c00120154200370300200341c0026a41106a220d4200370300200341c0026a41086a22164200370300200342003703c00241c800101e2201450d0220034188066a109e02200141186a20034188066a41186a290300370200200141106a20034188066a41106a290300370200200141086a20034188066a41086a220229030037020020012003290388063702002001410236022020014101360244200120032903c0023702242001412c6a2016290300370200200141346a200d2903003702002001413c6a2015290300370200200320013602a80520034282808080203702ac05200341a8056a109f0220034180026a41086a220d200341c0046a41086a29030037030020034180026a41106a2216200341c0046a41106a29030037030020034180026a41186a2218200341c0046a41186a2903003703002002200c29030037030020034188066a410e6a220c2005290100370100200320032903c00437038002200320032903e003370388060240024020082004a7460d002004210f0c010b200841016a22012008490d022009a74101742205200120012005491bad220f42c4007e2209422088a70d022009a722054100480d020240024020080d002005101e21010c010b200e200841c4006c2005102221010b2001450d04200320013602a00320044220882209a721080b20032802a003200841c4006c6a220141013a00002018290300210420162903002110200d2903002111200329038002211420014116360028200141faacc600360024200141003a00212001413a6a200c290100370000200141346a2002290300370000200120032903880637002c20012014370001200141096a2011370000200141116a2010370000200141196a2004370000200f42ffffffff0f83210420094220862109024020032802ec072202450d0020032802e4072101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b20092004842104024020032802e807450d0020032802e40710200b20044280808080107c210420062007470d000c050b0b1027000b41c8004104102d000b20054104102d000b20072006460d00034002402006410c6a2802002202450d0020062802042101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b200641f0006a21010240200641086a280200450d00200628020410200b2001210620012007470d000b0b0240200a450d00200b10200b200341a8026a41086a22014200370300200342003703a8024189a7c6004111200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a20032802a00322012004422088a7109d02200341e8016a411020032802e007220220032802e8071005024020032802e407450d00200210200b02402004a7450d00200110200b200041023a00080c020b20004181063b01082000200d3602042000200c3602002000410a6a41003a00000c010b200341a8026a41086a22014200370300200342003703a80241c4aac100410d200341a8026a1000200341e8016a41086a22022001290300370300200320032903a8023703e801200320043703e007200341e8016a4110200341e0076a4108100520014200370300200342003703a80241fc81c7004113200341a8026a100020022001290300370300200320032903a8023703e801200341013a00e003200341e8016a4110200341e0036a41011005200041023a00080b200341a0096a24000b130020004101360204200041f8b0c1003602000b3400200041fee3c10036020420004100360200200041146a4102360200200041106a41d8b4c100360200200041086a42093702000b1300200041013602042000418cb7c1003602000b3101017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242b8173700000bb00103017f017e027f230041206b2200240042002101200041106a41086a220242003703002000420037031041c4aac100410d200041106a1000200041086a2002290300370300200020002903103703002000410036021020004110200041106a100321020240024020002802102203417f460d002002450d0020034108490d0120022900002101200210200b200041206a240020010f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000bae0201057f230041106b2203240020034100360208200342013703002003200136020c2003410c6a2003106302402001450d002000200141216c6a210403402000200310ca01200041206a2d0000210502400240200328020420032802082201460d00200328020021060c010b0240200141016a22062001490d00200141017422072006200720064b1b22074100480d000240024020010d002007101e21060c010b200328020020012007102221060b02402006450d002003200736020420032006360200200328020821010c020b20074101102d000b1027000b2003200141016a360208200620016a20053a0000200041216a22002004470d000b0b2003280204210120022802002002280204200328020022002003280208100502402001450d00200010200b200341106a24000b3400200041e0bac10036020420004100360200200041146a4102360200200041106a41ecbac100360200200041086a42093702000b5001017f024002404104101e2202450d002002410036000020024104410810222202450d0120004288808080d00037020420002002360200200241003a00040f0b41044101102d000b41084101102d000bc50c04027f017e077f057e230041a0016b22032400024002400240024002400240024002404110101e2204450d00200441086a4100290090ab4137000020044100290088ab413700002000290300210520044110412010222204450d0120042005370010200341e0006a41186a22064200370300200341e0006a41106a22074200370300200341e0006a41086a220842003703002003420037036020044118200341e0006a1001200341c0006a41186a2006290300370300200341c0006a41106a2007290300370300200341c0006a41086a200829030037030020032003290360370340200410200240200341c0006a412041e4fdc600410041001002417f460d004110101e2204450d03200441086a4100290090ab4137000020044100290088ab413700002000290300210520044110412010222204450d0420042005370010200341e0006a41186a22064200370300200341e0006a41106a22074200370300200341e0006a41086a220842003703002003420037036020044118200341e0006a1001200341c0006a41186a2006290300370300200341c0006a41106a2007290300370300200341c0006a41086a2008290300370300200320032903603703402004102020034100360260200341c0006a4120200341e0006a1003210420032802602208417f460d062004450d062003200836029c012003200436029801200341e0006a20034198016a10970220032d00800122064104460d05200341206a41186a200341e0006a41186a290300370300200341206a41106a200341e0006a41106a290300370300200341206a41086a200341e0006a41086a2903003703002003411e6a20034183016a2d00003a000020032003290360370320200320032f0081013b011c20034184016a280200210920034188016a280200210a2003418c016a280200210720034190016a280200210b20034194016a280200210c2008450d07200410200c070b410421040c070b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41ceb8c4004133200341206a41fcbfc4004184b9c400102e000b410421060b200341c0006a41086a2204200341206a41086a290300370300200341c0006a41106a200341206a41106a290300370300200341c0006a41186a200341206a41186a290300370300200341e0006a41026a22082003411c6a41026a2d00003a000020032003290320370340200320032f011c3b01600240024020064104470d00410321064100210b0c010b20034198016a41026a20082d00003a0000200320032f01603b0198012004290300210d200329034021052003290350210e0b200341106a41026a20034198016a41026a2d00003a0000200320032f0198013b011002400240024020014101460d004100210420064103460d034102210420070d014101210420064102470d012009200a4100109802200341c0006a41086a2204290300210e2003290350210f200329035821102003290340211120034183016a200341106a41026a2d00003a00002003418c016a410036020020034188016a200a36020020034184016a20093602002003200e37036820032011370360200341033a008001200320103703782003200f370370200320032f01103b0081012003200c360294012003200b360290012000200341e0006a109902200342eadee59bc7aed8b5e500370340200341e0006a200341c0006a10ae02200341c0006a200341e0006a2005200d411f10930220032802404101460d02200320002004290300200341d0006a29030010af022003200341086a290300370368200320032903003703602003200341e0006a360240200341c0006a109402410521040c030b1079210802402002450d004100210420064103460d034102210420070d014101210420064102470d012003418c016a410036020020034188016a200a36020020034184016a200936020020034183016a200341106a41026a2d00003a000020032005370360200341013a0080012003200236027c200320083602782003200e370370200320032f01103b0081012003200c360294012003200b360290012003200d3703682000200341e0006a109902410521040c030b4103210420064103460d020b2009200a20071098020c010b2003200329024437032041adbac1004122200341206a41e8aac10041d0bac100102e000b200341a0016a240020040ba60401057f230041d0006b22022400200241ed003a00080240024002400240024002404101101e2203450d00200341ed003a0000200241ef003a000820034101410210222203450d01200341ef003a0001200241e4003a000820034102410410222203450d02200341e4003a0002200341ec003a0003200220012d000022043a000820034104410810222203450d03200320043a0004200320012d00013a0005200320012d00023a0006200320012d00033a0007200220012d000422043a000820034108411010222205450d04200520043a0008200520012d00053a0009200520012d00063a000a200520012d00073a000b200241003a0048410c210120052106410021030340200241003a0008200241086a20062001410047220410cd051a024020010d00200241003a00080b20012004490d06200241286a20036a20022d00083a00002002200341016a22033a0048200120046b2101200620046a210620034120470d000b200241086a41186a2201200241286a41186a290300370300200241086a41106a2203200241286a41106a290300370300200241086a41086a2204200241286a41086a2903003703002002200229032837030820051020200041186a2001290300370000200041106a2003290300370000200041086a200429030037000020002002290308370000200241d0006a24000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b20042001103b000bcc6f09027f017e027f027e027f077e057f017e0f7f230041f0066b2204240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240411f101e2205450d00200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd443370000200129030021062005411f413e10222205450d012005200637001f200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b00420054127200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441e0036a412041e4fdc600410041001002417f460d2a411f101e2205450d02200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d032005200637001f42002109200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b00420054127200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441003602e804200441e0036a4120200441e8046a10032105024020042802e8042201417f460d002005450d0020014108490d0520052900002109200510200b412a101e2205450d05200541286a41002f00c3ed423b0000200541206a41002900bbed42370000200541186a41002900b3ed42370000200541106a41002900abed42370000200541086a41002900a3ed423700002005410029009bed423700002005412a41d40010222205450d062005200937002a200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b00420054132200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441e0036a412041e4fdc600410041001002417f460d2a411f101e2205450d07200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d082005200637001f200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80420054127200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d1a411f101e2205450d09200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d0a2005200637001f4200210a200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80420054127200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441003602e804200441a0026a4120200441e8046a10032105024020042802e8042201417f460d002005450d0020014108490d0c2005290000210a200510200b2004200a3703d0014116101e2205450d0c2005410e6a41002900aad543370000200541086a41002900a4d5433700002005410029009cd54337000020054116412c10222205450d0d2005200a370016200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005411e200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d0e200441d8016a200a10e50220042d0088024101470d1920044189026a2d0000210b2004418c026a280200210c411f101e2205450d0f200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d102005200637001f200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80420054127200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441186a200441a0026a1084012004290320220a4202510d18200441186a41206a290300210d2004290328210e410021050240200441186a41186a290300220f4201520d00200441e0036a200d10e602200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a22012010370300200441e8046a41106a22072011370300200441e8046a41086a22082012370300200420133703e8044120101e2205450d12200520042903e804370000200541186a2001290300370000200541106a2007290300370000200541086a20082903003700000b0240200a4201510d00200f4201510d14200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80441acd4c3004127200441e8046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903e8043703e003200441e0036a412010040c170b200441e0036a200e10e602200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a22072010370300200441e8046a41106a22082011370300200441e8046a41086a22142012370300200420133703e8044120101e2201450d12200120042903e804370000200141186a2007290300370000200141106a2008290300370000200141086a2014290300370000200441003602e80420014120200441e8046a1003210720042802e8042208417f460d152007450d15200420083602ac06200420073602a806200441e8046a200441a8066a10830120042903f00422104202510d1420042903f804211120042903e804211202402008450d00200710200b200441e8046a41206a200d37030020044180056a200f370300200441f8046a2011370300200420103703f004200420123703e804200441203602ac06200420013602a806200441e8046a200441a8066a10860120011020410121080c170b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b412a4101102d000b41d4004101102d000b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b41164101102d000b412c4101102d000b41ceb4c400413e41a888c6001028000b411f4101102d000b413e4101102d000b41204101102d000b41204101102d000b200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80441acd4c3004127200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a2007290300370300200441b0046a41086a2008290300370300200420042903e8043703b0042004200d3703e804200441b0046a4120200441e8046a410810050c020b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b41002101410021080b02400240024002400240024020050d00410021070c010b200441003602e80420054120200441e8046a1003210720042802e8042214417f460d022007450d02200420143602b404200420073602b004200441e8046a200441b0046a10830120042903f0044202510d01200441b0066a221520044180056a2216290300370300200441a8066a41106a2217200441e8046a41206a2218290300370300200420042903f8043703a80620042903e804210d02402014450d00200710200b200441e8046a41106a220720042903a80637030020162015290300370300201820172903003703002007200e3703002004200d3703e8042004200a3703f004200441203602ac06200420053602a806200441e8046a200441a8066a10860120051020410121070b200820014572450d020c030b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b200110200b2005452007720d00200510200b107921142004419c026a2802002205417f4c0d02200441d8016a41206a290300210a200441e8016a290300210d200428029402210820042903f001211320042903e00121192004280284022115200428028002211620042903d801210e41012101024002400240024002400240024002400240024002400240024002402005450d002005101e2201450d010b20012008200510cd0521074116101e2201450d012001410029009cd5433700002001410e6a41002900aad543370000200141086a41002900a4d54337000020042903d001210f20014116412c10222201450d022001200f370016200441e8046a41186a22174200370300200441e8046a41106a22184200370300200441e8046a41086a221a4200370300200442003703e8042001411e200441e8046a1001200441a0026a41186a2017290300370300200441a0026a41106a2018290300370300200441a0026a41086a201a290300370300200420042903e8043703a00220011020200441003602e804200441a0026a4120200441e8046a10032101024020042802e8042217417f460d002001450d00200420173602ac06200420013602a806200441e8046a200441a8066a10d8020240024020042903f0044202510d00200441a8056a280200211820042802a405211a200441186a200441a8066a109301200429031822104202520d012018450d00201a10200b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b200441306a290300210f200441286a29030021112004290320211202402017450d00200110200b2018450d0d201a10200c0d0b2004200441d0016a3602c002200441e8046a41186a22014200370300200441e8046a41106a22174200370300200441e8046a41086a22184200370300200442003703e80441b2d5c300411e200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a2017290300370300200441b0046a41086a2018290300370300200420042903e8043703b004200441003602e804200441b0046a4120200441e8046a100321010240024020042802e8042217417f460d002001450d00024020174108490d002001290000210f20011020200441e0036a200f10e702200441e8046a200441e0036a10e80220042903f0044202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b42002111200441e8046a41186a22014200370300200441e8046a41106a22174200370300200441e8046a41086a22184200370300200442003703e80441b2d5c300411e200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a2017290300370300200441b0046a41086a2018290300370300200420042903e8043703b004200420042903d0013703e804200441b0046a4120200441e8046a41081005420021100c0d0b200441186a200441e8046a41e80010cd051a200441a8066a200441186a41c80010cd051a200441c8046a2201200441f8006a290300370300200441c0046a200441f0006a2903002210370300200441b0046a41086a200441e8006a290300370300200420042903603703b004200441e8046a200441a8066a41c80010cd051a200441b4056a2001410020104201511b3602002004200441c0026a3602b005200441003602202004420137031820042903e80421104108101e2201450d032004410836021c20042004280220221741086a36022020042001360218200120176a2010370000200428029005211802400240200428021c2217200428022022016b4104490d00200428021821170c010b200141046a221a2001490d0b20174101742201201a2001201a4b1b22014100480d0b0240024020170d002001101e21170c010b200428021820172001102221170b2017450d052004200136021c20042017360218200428022021010b2004200141046a360220201720016a2018360000200428029405211802400240200428021c2217200428022022016b4104490d00200428021821170c010b200141046a221a2001490d0b20174101742201201a2001201a4b1b22014100480d0b0240024020170d002001101e21170c010b200428021820172001102221170b2017450d062004200136021c20042017360218200428022021010b2004200141046a360220201720016a2018360000024020042903f0044201510d000240200428021c20042802202201460d00200428021821170c0a0b200141016a22172001490d0b200141017422182017201820174b1b22184100480d0b0240024020010d002018101e21170c010b200428021820012018102221170b02402017450d002004201836021c20042017360218200428022021010c0a0b20184101102d000b02400240200428021c20042802202201460d00200428021821170c010b200141016a22172001490d0b200141017422182017201820174b1b22184100480d0b0240024020010d002018101e21170c010b200428021820012018102221170b2017450d072004201836021c20042017360218200428022021010b2004200141016a360220201720016a41013a000020042903f80421100240200428021c2217200428022022016b4108490d00200428021821170c080b200141086a22182001490d0a201741017422012018200120184b1b22014100480d0a0240024020170d002001101e21170c010b200428021820172001102221170b02402017450d002004200136021c20042017360218200428022021010c080b20014101102d000b20054101102d000b41164101102d000b412c4101102d000b41084101102d000b20014101102d000b20014101102d000b20184101102d000b2004200141086a360220201720016a20103700000c010b2004200141016a360220201720016a41003a00000b0240024002402004290380054201510d000240200428021c20042802202201460d00200428021821170c020b200141016a22172001490d03200141017422182017201820174b1b22184100480d030240024020010d002018101e21170c010b200428021820012018102221170b02402017450d002004201836021c20042017360218200428022021010c020b20184101102d000b0240024002400240200428021c20042802202201460d00200428021821170c010b200141016a22172001490d05200141017422182017201820174b1b22184100480d050240024020010d002018101e21170c010b200428021820012018102221170b2017450d012004201836021c20042017360218200428022021010b2004200141016a360220201720016a41013a000020042903880521100240200428021c2217200428022022016b4108490d00200428021821170c020b200141086a22182001490d04201741017422012018200120184b1b22014100480d040240024020170d002001101e21170c010b200428021820172001102221170b02402017450d002004200136021c20042017360218200428022021010c020b20014101102d000b20184101102d000b2004200141086a360220201720016a20103700000c010b2004200141016a360220201720016a41003a00000b20044198056a200441186a10d90220042802a405211a2004200441ac056a28020022013602900320044190036a200441186a10630240200428021c2218200428022022176b2001490d00200428021821180c020b201720016a221b2017490d0020184101742217201b2017201b4b1b22174100480d000240024020180d002017101e21180c010b200428021820182017102221180b02402018450d002004201736021c20042018360218200428022021170c020b20174101102d000b1027000b2004201720016a360220201820176a201a200110cd051a200441e8046a41c8006a200441186a108101200428021c2101200441e0036a4120200428021822172004280220100502402001450d00201710200b0240200441a8056a280200450d00201a10200b20042802c002210142002110200441e8046a41186a22174200370300200441e8046a41106a22184200370300200441e8046a41086a221a4200370300200442003703e80441b2d5c300411e200441e8046a1001200441b0046a41186a2017290300370300200441b0046a41106a2018290300370300200441b0046a41086a201a290300370300200420042903e8043703b004200420012903003703e804200441b0046a4120200441e8046a41081005420121110b200441c8056a200f370300200441c0056a2011370300200441b8056a2012370300200441ac056a2005360200200441a8056a2005360200200441a0056a20143602002004419c056a200c36020020044199056a200b3a0000200441e8046a41206a200a370300200441f8046a200d370300200420103703b005200420073602a4052004410141022019420151200d2006527122012013420151200a20065271220b72220c1b3a009805200420153602940520042016360290052004200bad3703800520042001ad3703f0042004200e3703e8042004412036021c2004200441a0026a360218200441e8046a200441186a10e00202402005450d00200710200b0240200c450d0020044198026a280200450d02200810200c020b024002400240024002404112101e2205450d00200541106a41002f00e0d5433b0000200541086a41002900d8d543370000200541002900d0d54337000020054112412410222205450d012005200e370012200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005411a200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441003602e804200441a0026a4120200441e8046a1003210720042802e804221b417f460d032007450d032004201b36021c20042007360218200441e8046a200441186a10e9022004290388064202510d02200441b8036a41086a221c200441e8046a41086a221d29030037030020044190036a41086a221e20044184056a29020037030020044190036a41106a221f2004418c056a29020037030020044190036a41186a222020044194056a29020037030020044190036a41206a22212004419c056a280200360200200441f8026a41086a2222200441ac056a290200370300200441f8026a41106a2223200441b4056a280200360200200420042903e8043703b803200420042902fc0437039003200420042902a4053703f80220042802f804211720042802a0052124200441a8066a41086a2225200441cc056a290200370300200441a8066a41106a2226200441d4056a290200370300200441a8066a41186a2227200441dc056a290200370300200441a8066a41206a2228200441e4056a290200370300200420042902c4053703a80620042802c005210520042802bc05210120042802b805210c20042802ec05211620042802f005211520042802f405211820042802f805210820042802fc05210b2004280280062114200428028406211a0240201b450d00200710200b200441d8046a41086a201c290300370300200441b0046a41086a201e290300370300200441b0046a41106a201f290300370300200441b0046a41186a2020290300370300200441b0046a41206a2021280200360200200420042903b8033703d80420042004290390033703b00420044198046a41086a202229030037030020044198046a41106a2023280200360200200420042903f80237039804200441e8046a41206a2028290300370300200441e8046a41186a2027290300370300200441e8046a41106a2026290300370300201d2025290300370300200420042903a8063703e804410221070240024020014102470d0041012108410021054100210b410021144100211541002116410021014100210c410221170c010b20044188046a41086a200441d8046a41086a290300370300200441e0036a41086a200441b0046a41086a290300370300200441e0036a41106a200441b0046a41106a290300370300200441e0036a41186a200441b0046a41186a290300370300200441e0036a41206a200441b0046a41206a280200360200200441c8036a41086a20044198046a41086a290300370300200441c8036a41106a20044198046a41106a280200360200200420042903d80437038804200420042903b0043703e00320042004290398043703c803200441186a41206a200441e8046a41206a290300370300200441186a41186a200441e8046a41186a290300370300200441186a41106a200441e8046a41106a290300370300200441186a41086a200441e8046a41086a290300370300200420042903e804370318202421070b200441e8026a41086a20044188046a41086a290300370300200441c0026a41086a200441e0036a41086a290300370300200441c0026a41106a200441e0036a41106a290300370300200441c0026a41186a200441e0036a41186a290300370300200441c0026a41206a200441e0036a41206a28020036020020042004290388043703e802200420042903e0033703c002200441b0046a41106a200441c8036a41106a280200360200200441b0046a41086a200441c8036a41086a290300370300200420042903c8033703b004200441e8046a41206a200441186a41206a290300370300200441e8046a41186a200441186a41186a290300370300200441e8046a41106a200441186a41106a290300370300200441e8046a41086a200441186a41086a290300370300200420042903183703e8040c040b41124101102d000b41244101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b4102210741012108410021054100210b410021144100211541002116410021014100210c410221170b200441186a41086a200441e8026a41086a290300370300200441346a200441c0026a41086a2903003702002004413c6a200441c0026a41106a290300370200200441c4006a200441c0026a41186a290300370200200441cc006a200441c0026a41206a280200360200200441d0006a2007360200200420042903e80237031820042017360228200420042903c00237022c200441d4006a20042903b004370200200441dc006a200441b0046a41086a290300370200200441e4006a200441b0046a41106a280200360200200441f0006a20053602002004200c3602682004200136026c20044194016a2207200441e8046a41206a2903003702002004418c016a200441e8046a41186a29030037020020044184016a220c200441e8046a41106a290300370200200441fc006a200441e8046a41086a290300370200200441f4006a20042903e804370200200441b0016a2014360200200441ac016a200b360200200441a4016a20183602002004201a3602b401200420083602a801200420153602a0012004201636029c01024002400240024020014101470d0020044198016a28020021012007280200210720044190016a280200211841002114024002400240200541ff01710e03020100020b200441fc006a280200410146211620044180016a2802002115200441f8006a2802002117410221140c010b200441f8006a2802002117410121140b2005410876211a2004280274211b024002402004418c016a2802000d00200442003702c402200441908cc5003602c002200141016a211c2007417f6a211d410021010c010b2004200c3602f00420042004280284013602ec04200420044188016a2802003602e804200141016a211c2007417f6a211d200441c0026a200441e8046a10ea02200428026c450d04200428028c0121010b2004280284012105024020044188016a2802002207450d00200721080340200528026021052008417f6a22080d000b03402007417f6a22070d000b0b02402001450d0041002107410021084100210b03402004200b3602b406200420083602b006200420053602ac06200420073602a806200441e8046a200441a8066a106120042802f004210720042802f404210520042802f804210820042802fc04210b2001417f6a22010d000b0b200541908cc500460d0320052802002107200510202007450d0320072802002101200710202001450d03200128020022050d010c020b41a38bc500411441a888c6001028000b0340200110202005210120052802002207210520070d000b0b200110200b200c20042903c00237020020044180016a2015360200200441fc006a2016360200200441f8006a2017360200200c41086a200441c0026a41086a2802003602002004201b3602742004201a3a0071200420143a00702004410136026c2004201c360298012004201d360294012004201836029001200441e8046a200441186a41a00110cd051a0240024020042802bc054102470d00200e10eb020c010b200e200441e8046a10ec020b0240024020042802bc05220541024b0d0020050e03010002010b200441dc056a2802002101200441d4056a28020021050240200441d8056a2802002207450d00200721080340200528026021052008417f6a22080d000b03402007417f6a22070d000b0b02402001450d0041002107410021084100210b03402004200b3602bc04200420083602b804200420053602b404200420073602b004200441a8066a200441b0046a106120042802b006210720042802b406210520042802b806210820042802bc06210b2001417f6a22010d000b0b200541908cc500460d0020052802002107200510202007450d0020072802002101200710202001450d00024020012802002205450d000340200110202005210120052802002207210520070d000b0b200110200b200441fc056a280200450d0020042802f80510200b20044198026a280200450d0020042802940210200b0240024002400240024002400240024002400240024002404125101e2205450d002005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0120052006370025200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b0042005412d200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441e0036a412041e4fdc600410041001002417f460d1a4125101e2205450d022005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0320052006370025200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d1a4125101e2205450d042005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0520052006370025200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d064125101e2205450d072005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0820052006370025200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441003602e804200441a0026a4120200441e8046a1003210520042802e8042201417f460d0a2005450d0a2001450d0920052d0000220741014b0d092001417f6a210102400240024020070e020100010b4201210a200141074b0d010c0b0b4200210a20014108490d0a0b2005290001210d200510200c0b0b41254101102d000b41ca004101102d000b41254101102d000b41ca004101102d000b41254101102d000b41ca004101102d000b200441173602ec0420044185e0c2003602e80441f8c0c500412b200441e8046a4184fcc20041acfdc200102e000b41254101102d000b41ca004101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b4202210a0b4200200a200a42025122051ba74101470d01200441e8046a4200200d20051b220a10d60220042802e8044101460d02200441d8016a41086a20044188056a290300370300200441d8016a41106a20044190056a29030037030020044190036a41086a200441a0056a29030037030020044190036a41106a200441a8056a2903003703002004200441e8046a41186a2903003703d801200420044198056a29030037039003200441e8046a41106a290300210d200441e8046a41086a290300210e200441b0056a290300210f200441bc056a280200210b200441c0056a2802002108200441c4056a280200210c200441c8056a2802002105200441cc056a2d00002107200441b8056a2802002101200441a8066a41186a200441e8056a290300370300200441a8066a41106a200441e0056a290300370300200441a8066a41086a200441d8056a2903003703002004200441d0056a2903003703a80620014101470d032005417f4c0d004101210102402005450d002005101e2201450d050b20012008200510cd052101200420053602c802200420053602c402200420013602c002200441e8046a41186a200441d8016a41086a29030037030020044188056a200441d8016a41106a29030037030020044198056a20044190036a41086a290300370300200441a0056a20044190036a41106a290300370300200441b4056a200b360200200441c0056a20053602002004200d3703f0042004200e3703e804200420042903d8013703f804200420042903900337039005200441023602b0052004200f3703a805200441c4056a200741ff01714101463a0000200441b8056a20042903c002370300200441d0056a200441a8066a41086a290300370300200441d8056a200441a8066a41106a290300370300200441e0056a200441a8066a41186a290300370300200420042903a8063703c805200a200441e8046a10ed024125101e2205450d052005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0620052006370025200441e8046a41186a22014200370300200441e8046a41106a220b4200370300200441e8046a41086a22144200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a200b290300370300200441a0026a41086a2014290300370300200420042903e8043703a00220051020200441e8046a200441a0026a412010ee02024020042903e80442025122050d00200441a0026a412010040b20050d0d20044190056a290300210d2001290300210e200b2903002106410021050240200441e8046a41206a290300220f4201520d00200441e0036a200d10ef02200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a22012010370300200441e8046a41106a220b2011370300200441e8046a41086a22142012370300200420133703e8044120101e2205450d08200520042903e804370000200541186a2001290300370000200541106a200b290300370000200541086a20142903003700000b024020064201510d00200f4201510d0a200441e8046a41186a22014200370300200441e8046a41106a220b4200370300200441e8046a41086a22144200370300200442003703e80441e5f0c200412d200441e8046a1001200441e0036a41186a2001290300370300200441e0036a41106a200b290300370300200441e0036a41086a2014290300370300200420042903e8043703e003200441e0036a412010040c0c0b200441e0036a200e10ef02200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a220b2010370300200441e8046a41106a22142011370300200441e8046a41086a22152012370300200420133703e8044120101e2201450d08200120042903e804370000200141186a200b290300370000200141106a2014290300370000200141086a2015290300370000200441e8046a2001412010ee0220042903e8044202510d0a200441186a41186a200441e8046a41186a290300370300200441186a41106a200441e8046a41106a290300370300200441186a41086a200441e8046a41086a290300370300200441c0006a200d370300200441186a41206a200f370300200420042903e804370318200441203602ec04200420013602e804200441186a200441e8046a10f002200110204101210b0c0c0b102c000b41bcfdc20041c7004184fec2001028000b200420042902ec0437031841f8c0c500412b200441186a4184fcc2004194fec200102e000b41a4fec200412341c8fec2001028000b20054101102d000b41254101102d000b41ca004101102d000b41204101102d000b41204101102d000b200441e8046a41186a22014200370300200441e8046a41106a220b4200370300200441e8046a41086a22144200370300200442003703e80441e5f0c200412d200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a200b290300370300200441b0046a41086a2014290300370300200420042903e8043703b0042004200d3703e804200441b0046a4120200441e8046a410810050c010b41bde6c50041d8004198e7c5001045000b410021014100210b0b0240024002400240024020050d00410021140c010b200441e8046a2005412010ee0220042903e8044202510d01200441186a41186a2214200441e8046a41186a290300370300200441186a41106a2215200441e8046a41106a290300370300200441186a41286a200441e8046a41286a290300370300200441186a41206a200441e8046a41206a290300370300200441186a41086a200441e8046a41086a2903003703002014200e37030020152006370300200420042903e804370318200441203602ec04200420053602e804200441186a200441e8046a10f00220051020410121140b200b20014572450d010c020b41bde6c50041d80041a8e7c5001045000b200110200b2005452014720d00200510200b200441f8046a200a370300200441e8046a41086a410a4108200741ff01714101461b3a0000200441163a00e804200441e8046a1077200c450d00200810200b200441a8066a200910f102200441e8046a20042903b00610f2022004290398054202510d01200441186a200441e8046a41b80110cd051a200441086a2004418d016a2002200310f302200441f8046a2003200441086a41086a29030022097d20022004290308220654ad7d200920037d2006200254ad7d20062002582009200358200920035122051b22011b3703002004200220067d200620027d20011b3703f00420042006200256200920035620051b2205ad3703e804200441e8046a41086a21010240024020050d00200420013602d801200441d8016a1094020c010b200420013602d801200441d8016a10f4020b0240200441dc006a280200450d00200428025810200b0240200441e8006a280200450d00200428026410200b0240200441f4006a280200450d00200428027010200b20042802800120044184016a28020020044188016a28020010f50242002102420021030b2000200237030020002003370308200441f0066a24000f0b41e988c700412b41c0c2c1001028000b340020004189a2c50036020420004100360200200041146a4101360200200041106a41d8bec100360200200041086a42083702000b130020004102360204200041dcbfc1003602000b3701017f02404110101e22020d0041104101102d000b2002420037000820024201370000200042908080808002370204200020023602000bee0102057f017e230041106b220224000240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200200541014b0d0120050e020203020b200041023602000c030b200041023602000c020b200041003602000c010b02402006450d0020042d0001210520012003417e6a3602042001200441026a360200200541014b0d00410021030240024020050e020100010b2002200110b70120022802002203450d01200229020421070b2000200336020420004101360200200041086a20073702000c010b200041023602000b200241106a24000bab0702057f017e230041106b22022400200141046a2802002103200141086a28020021040240024002400240024002400240024020002802100d00024020032004460d00200128020021000c070b200441016a22002004490d01200441017422032000200320004b1b22034100480d010240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c070b20034101102d000b0240024020032004460d00200128020021030c010b200441016a22032004490d01200441017422052003200520034b1b22054100480d010240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a00002000280208210602400240200141046a2802002203200528020022046b4104490d00200128020021030c010b200441046a22052004490d01200341017422042005200420054b1b22044100480d010240024020030d002004101e21030c010b200128020020032004102221030b2003450d0320012003360200200141046a2004360200200141086a28020021040b200141086a2205200441046a360200200320046a20063600002000290300210702400240200141046a2802002203200528020022046b4108490d00200128020021030c010b200441086a22052004490d01200341017422042005200420054b1b22044100480d010240024020030d002004101e21030c010b200128020020032004102221030b2003450d0420012003360200200141046a2004360200200141086a28020021040b200141086a2205200441086a360200200320046a20073700002000411c6a200110ca01200028021021062002200041186a280200220436020c2002410c6a200110630240200141046a2802002203200528020022006b2004490d00200128020021030c050b200020046a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c050b20004101102d000b1027000b20054101102d000b20044101102d000b20044101102d000b200141086a200020046a360200200320006a2006200410cd051a0c010b200141086a200441016a360200200020046a41003a00000b200241106a24000b940701057f230041106b220224000240024002400240024002400240024020002802004101460d000240200141046a280200200141086a2802002203460d00200128020021000c070b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c070b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200141046a2802002104200528020021030240200028020422050d00024020042003460d00200128020021000c060b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c060b20044101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d01200341017422062004200620044b1b22064100480d010240024020030d002006101e21040c010b200128020020032006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41013a000020022000410c6a280200220336020c2002410c6a200110630240200141046a2802002204200628020022006b2003490d00200128020021040c040b200020036a22062000490d00200441017422002006200020064b1b22004100480d000240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c040b20004101102d000b1027000b20054101102d000b20064101102d000b200141086a200020036a360200200420006a2005200310cd051a0c020b200141086a200341016a360200200020036a41003a00000c010b200141086a200341016a360200200020036a41003a00000b200241106a24000bfd0602067f017e230041f0006b220224002002411c6a41026a2203200141036a2d00003a0000200241086a2204200141106a290200370300200241106a2205200141186a290200370300200241186a2206200141206a280200360200200220012f00013b011c2002200141086a290200370300200141046a280200210702400240024020012d00004101470d00024002400240410f101e2201450d00200141076a41002900a5c2413700002001410029009ec2413700002001410f411e10222201450d012001200741067636000f42002108200241c8006a41186a22034200370300200241c8006a41106a22044200370300200241c8006a41086a220542003703002002420037034820014113200241c8006a1001200241206a41186a2003290300370300200241206a41106a2004290300370300200241206a41086a2005290300370300200220022903483703202001102020024100360248200241206a4120200241c8006a100321030240024020022802482204417f470d00410121010c010b024020030d00410121010c010b2002200436024420022003360240200241c8006a200241c0006a10e30120022802482201450d03200229024c21082004450d00200310200b41002103024002402007413f7122042008422088a7490d000c010b200120044105746a2205450d00200241206a41026a200541026a2d00003a0000200120044105746a2203280003210720052f00002104200241d0006a2003410f6a290000370300200241d8006a200341176a290000370300200241e0006a2003411f6a2d00003a0000200220043b012020022003290007370348410121030b02402008a7450d00200110200b410121012003450d050c040b410f4101102d000b411e4101102d000b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b200241206a41026a20032d00003a0000200241c8006a41086a2004290300370300200241c8006a41106a2005290300370300200241c8006a41186a20062d00003a0000200220022f011c3b0120200220022903003703480b200020022f01203b0001200041046a2007360000200041086a2002290348370000200041036a200241226a2d00003a0000200041106a200241c8006a41086a290300370000200041186a200241c8006a41106a290300370000200041206a200241c8006a41186a2d00003a0000410021010b200020013a0000200241f0006a24000b130020004102360204200041fcfcc6003602000b130020004101360204200041a8a7c1003602000b1300200041033602042000419c87c5003602000b130020004103360204200041dccec3003602000b130020004101360204200041d4f6c6003602000b130020004103360204200041acefc6003602000b130020004103360204200041acbcc4003602000b13002000410136020420004188f4c6003602000b1300200041033602042000419cc0c4003602000b130020004107360204200041ccf1c1003602000b13002000410b360204200041c4c2c4003602000b3400200041e0e4c10036020420004100360200200041146a4102360200200041106a41fceac100360200200041086a42073702000b130020004104360204200041e0e6c1003602000b130020004102360204200041e0e5c1003602000b1300200041013602042000419cc8c4003602000b130020004108360204200041888fc6003602000b130020004108360204200041f4dcc5003602000b13002000410136020420004194d6c3003602000b130020004103360204200041e0f8c1003602000b130020004102360204200041e08cc6003602000b130020004103360204200041f0cdc0003602000b130020004104360204200041b8cfc0003602000b130020004102360204200041e8fcc0003602000b130020004106360204200041b0c6c0003602000b13002000411236020420004194f1c2003602000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241013600000b850204017f017e037f017e230041c0006b2201240042002102200141206a41186a22034200370300200141206a41106a22044200370300200141206a41086a22054200370300200142003703204197f0c2004129200141206a1001200141186a2003290300370300200141106a2004290300370300200141086a2005290300370300200120012903203703002001410036022020014120200141206a1003210302400240024020012802202204417f470d000c010b024020030d000c010b20044108490d012003290000210620031020420121020b2000200637030820002002370300200141c0006a24000f0b41ceb8c4004133200141206a41fcbfc4004184b9c400102e000bf80101057f230041206b22022400024002404121101e2203450d00200341206a41002d0096f0423a0000200341186a410029008ef042370000200341106a4100290086f042370000200341086a41002900feef42370000200341002900f6ef423700002003412141c20010222203450d0120032001370021200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412920021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41214101102d000b41c2004101102d000b830302047f067e230041c0006b220224002002410036022020014120200241206a10032101024002400240024020022802202203417f460d0020010d010b200042023703100c010b2002200336021c200220013602182003450d0120022003417f6a220436021c2002200141016a36021820012d0000220541024b0d014200210602400240024020050e03020001020b20044108490d032002200341776a36021c2002200141096a36021820012900012107420121060c010b20044108490d022002200341776a36021c2002200141096a36021820012900012107420221060b200241206a200241186a109301200229032022084202510d01200241106a200241386a2903002209370300200241086a200241206a41106a290300220a37030020022002290328220b3703002000200837031020002007370308200020063703002000200b370318200041206a200a370300200041286a2009370300200110200b200241c0006a24000f0b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000bba0401057f230041a0026b22022400024002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200137001f20024198016a41186a2204420037030020024198016a41106a2205420037030020024198016a41086a2206420037030020024200370398012003412720024198016a1001200241f8006a41186a2004290300370300200241f8006a41106a2005290300370300200241f8006a41086a20062903003703002002200229039801370378200310202002410036029801200241f8006a412020024198016a10032103024002402002280298012204417f470d00420221010c010b024020030d00420221010c010b2002200436029c02200220033602980220024198016a20024198026a10ef0320022903980122014202510d032002200241a0016a41f80010cd051a2004450d00200310200b20024198016a200241f80010cd051a0240024020014202520d004200210120004200370360200041003602482000420037032820004200370340200041f8006a4200370300200041f0006a4200370300200041e8006a4200370300200041186a4102360200200041306a4200370300200041386a41003602000c010b200041086a20024198016a41f80010cd051a0b20002001370300200241a0026a24000f0b411f4101102d000b413e4101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000be80a0b097f017e017f017e017f017e017f017e027f017e037f230041c0016b2202240002400240024002400240024002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200137001f200241c0006a41186a22044200370300200241c0006a41106a22054200370300200241c0006a41086a220642003703002002420037034020034127200241c0006a1001200241186a2004290300370300200241106a2005290300370300200241086a2006290300370300200220022903403703002003102002402002412041e4fdc600410041001002417f470d0020004181dac20036020420004101360200200041086a41123602000c080b411f101e2203450d02200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d032003200137001f200241c0006a41186a22044200370300200241c0006a41106a22054200370300200241c0006a41086a220642003703002002420037034020034127200241c0006a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290340370300200310202002410036024020024120200241c0006a1003210720022802402208417f460d052007450d05200220083602bc01200220073602b801200241c0006a200241b8016a10f10320022d00900122034102460d04200241286a2002419a016a290100370300200241306a200241a2016a290100370300200241386a200241aa016a290100370300200220024192016a29010037032020022d0091012109200228028c01210a200229028401210b200228028001210c2002290378210d2002280274210e200229026c210f2002280268211020022903602111200228025c21122002280258211320022802542105200228025021042002290348210120022903402114200241b4016a2802002115200241b3016a2d00002106200241b2016a2d000021162008450d06200710200c060b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000b410221030b200241c0006a41186a2207200241206a41186a290300370300200241c0006a41106a2208200241206a41106a290300370300200241c0006a41086a2217200241206a41086a290300370300200220022903203703400240024020034102470d0042002101200241186a4200370300200241106a4200370300200241086a4200370300200242003703004100211341012104410021054100210641002116410021094100210a4100210c4100210e410021104100211242002114410021030c010b200241186a2007290300370300200241106a2008290300370300200241086a2017290300370300200220022903403703000b200020093a0059200041d8006a20033a0000200041d4006a200a360200200041cc006a200b370200200041c8006a200c360200200041c0006a200d3703002000413c6a200e360200200041346a200f370200200041306a2010360200200041286a2011370300200041246a2012360200200041206a20133602002000411c6a2005360200200041186a2004360200200041106a2001370300200041086a20143703002000200229030037015a200041e2006a200241086a290300370100200041ea006a200241106a290300370100200041f2006a200241186a290300370100200041fc006a2015360200200020063a007b200020163a007a200041003602000b200241c0016a24000b8b0e03067f017e087f23004180036b2202240002400240024002400240024002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200137001f20024180026a41186a2204420037030020024180026a41106a2205420037030020024180026a41086a2206420037030020024200370380022003412720024180026a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290380023703002003102002402002412041e4fdc600410041001002417f460d00411f101e2203450d03200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d042003200137001f20024180026a41186a2204420037030020024180026a41106a2205420037030020024180026a41086a2206420037030020024200370380022003412720024180026a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290380023703002003102020024100360280022002412020024180026a100321052002280280022207417f460d062005450d06200220073602d401200220053602d00120024180026a200241d0016a10ef0320022903800222014202510d05200241c0016a41086a20024180026a41106a290300370300200241a0016a41086a200241a4026a290200370300200241a0016a41106a200241ac026a290200370300200241a0016a41186a200241b4026a290200370300200241e8006a41086a200241d4026a290200370300200241e8006a41106a200241dc026a290200370300200241e8006a41186a200241e4026a29020037030020024188016a200241ec026a29020037030020024190016a200241f4026a29020037030020024198016a200241fc026a28020036020020022002290388023703c0012002200229029c023703a001200220022902cc0237036820024180026a41186a2802002103200241c0026a2903002108200241c8026a280200210420022802bc0221062007450d07200510200c070b200041a6dec20036020420004101360200200041086a41163602000c070b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b420221010b200241f0016a41086a2205200241c0016a41086a290300370300200241d0016a41086a2207200241a0016a41086a290300370300200241d0016a41106a2209200241a0016a41106a290300370300200241d0016a41186a220a200241a0016a41186a29030037030020024180026a41086a220b200241e8006a41086a29030037030020024180026a41106a220c200241e8006a41106a29030037030020024180026a41186a220d200241e8006a41186a29030037030020024180026a41206a220e200241e8006a41206a29030037030020024180026a41286a220f200241e8006a41286a29030037030020024180026a41306a2210200241e8006a41306a280200360200200220022903c0013703f001200220022903a0013703d00120022002290368370380020240024020014202520d00420021082002412c6a4200370200200241246a42003702002002411c6a4200370200200241cc006a420037020041002104200241386a411c6a4100360200200242003702142002420037024441022103420021010c010b200241d8006a41086a2005290300370300200241386a41086a2007290300370300200241386a41106a2009290300370300200241386a41186a200a290300370300200241086a200b290300370300200241106a200c290300370300200241186a200d290300370300200241206a200e290300370300200241286a200f290300370300200241306a2010280200360200200220022903f001370358200220022903d00137033820022002290380023703000b200041086a2001370300200041106a2002290358370300200041186a200241d8006a41086a290300370300200041206a2003360200200041246a20022903383702002000412c6a200241386a41086a290300370200200041346a200241386a41106a2903003702002000413c6a200241386a41186a290300370200200041d0006a2004360200200041c8006a2008370300200041c4006a200636020020004100360200200041d4006a2002290300370200200041dc006a200241086a290300370200200041e4006a200241106a290300370200200041ec006a200241186a290300370200200041f4006a200241206a290300370200200041fc006a200241286a29030037020020004184016a200241306a2802003602000b20024180036a24000bc80601077f230041a0026b22022400024002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200137001f200241a0016a41186a22044200370300200241a0016a41106a22054200370300200241a0016a41086a22064200370300200242003703a00120034127200241a0016a1001200241f8006a41186a2004290300370300200241f8006a41106a2005290300370300200241f8006a41086a2006290300370300200220022903a00137037820031020200241003602a001200241f8006a4120200241a0016a100321040240024020022802a0012205417f470d00410221030c010b024020040d00410221030c010b2002200536029c022002200436029802200241a0016a20024198026a10f10320022d00f00122034102460d03200241286a200241a0016a41d00010cd051a2002411f6a20024190026a290000370000200241186a20024189026a290000370300200241106a20024181026a290000370300200241086a200241f9016a290000370300200220022900f1013703002005450d00200410200b200241a0016a200241286a41d00010cd051a200241f8006a411f6a22052002411f6a290000370000200241f8006a41186a2206200241186a290300370300200241f8006a41106a2207200241106a290300370300200241f8006a41086a2208200241086a290300370300200220022903003703780240024020034102470d00410021032000410036024c200041003602402000410036023420004100360228200042013703102000420037030020004200370051200041186a4200370300200041086a4200370300200041d9006a4200370000200041e1006a4200370000200041e9006a4200370000200041f0006a41003600000c010b2000200241a0016a41d00010cd05220441f0006a2005290000370000200441e9006a2006290300370000200441e1006a2007290300370000200441d9006a2008290300370000200420022903783700510b200020033a0050200241a0026a24000f0b411f4101102d000b413e4101102d000b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000be00606037f017e057f047e037f017e230041206b22022400024002400240024002400240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a220736020020064104490d01200728000021082001200341746a22063602042001200741046a36020020064104490d04200428000c21092001200341706a22063602042001200441106a22043602002006450d0520042d0000210620012003416f6a22073602042001200441016a220a360200200641014b0d054200210b20060e020302030b200042023703080c070b200042023703080c060b20074108490d022004290001210c2001200341676a22073602042001200441096a220a3602004201210b0b2007450d02200a2d0000210320012007417f6a22043602042001200a41016a2206360200200341014b0d024200210d0240024020030e020100010b20044108490d03200a290001210e2001200741776a22043602042001200a41096a22063602004201210d0b2004450d0320062d0000210320012004417f6a22073602042001200641016a360200200341024b0d034100210f02400240024020030e03020001020b20074104490d052006280001210a20012004417b6a22033602042001200641056a3602002003450d0520062d0005211020012004417a6a3602042001200641066a360200201041074f0d054101210f0c010b20074104490d042006280001210a20012004417b6a22033602042001200641056a36020020034104490d04200628000521112001200441776a22033602042001200641096a3602002003450d0420062d000921102001200441766a36020420012006410a6a3602004102210f201041074f0d040b200241106a200110b701024020022802100d00200042023703080c050b200241086a200241106a41086a2802002201360200200220022903102212370300200041386a2011360200200041346a200a360200200020103a0031200041306a200f3a00002000200936022c200041286a2008360200200041206a200e370300200041186a200d3703002000200c3703102000200b370308200020053703002000201237023c200041c4006a20013602000c040b200042023703080c030b200042023703080c020b200042023703080c010b200042023703080b200241206a24000bd70c01057f230041106b22022400024020002d0000220341024b0d000240024002400240024002400240024002400240024020030e03000102000b0240200141046a280200200141086a2802002200460d00200128020021030c0a0b200041016a22032000490d07200041017422042003200420034b1b22044100480d070240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0a0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020421060240200141046a2802002204200528020022036b4104490d00200128020021040c060b200341046a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c060b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000280204210602400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b2004450d0320012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200028020821060240200141046a2802002204200528020022036b4104490d00200128020021040c040b200341046a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c040b20034101102d000b20054101102d000b20054101102d000b20034101102d000b200141086a200341046a360200200420036a200636000020002d0001220041064b0d040240024002400240024002400240024020000e0700010203040506000b410021030c060b410121030c050b410221030c040b410321030c030b410421030c020b410521030c010b410621030b200220033a000f02400240200141046a280200200141086a2802002200460d00200128020021040c010b200041016a22042000490d02200041017422052004200520044b1b22054100480d020240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200420006a20033a00000c040b200141086a200341046a360200200420036a200636000020002d0001220041064b0d030240024002400240024002400240024020000e0700010203040506000b410021030c060b410121030c050b410221030c040b410321030c030b410421030c020b410521030c010b410621030b200220033a000f0240200141046a280200200141086a2802002200460d00200128020021040c020b200041016a22042000490d00200041017422052004200520044b1b22054100480d000240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b1027000b200141086a200041016a360200200420006a20033a00000c010b200141086a200041016a360200200320006a41003a00000b200241106a24000b8c850305047f017e067f017e017f230041e0006b2202240002402000280200220341214b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e22000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021000b0240200141046a280200200141086a2802002203460d00200128020021040c5d0b200341016a22042003490d5d200341017422052004200520044b1b22054100480d5d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c5d0b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c5b0b200041016a22032000490d5c200041017422042003200420034b1b22044100480d5c0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c5b0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d5c200341017422052004200520044b1b22054100480d5c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d5c200341017422052004200520044b1b22054100480d5c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002402000290308220642c000540d00200642808001540d012006428080808004540d024108200679a741037622046b41044f0d0341d58bc500413641a888c6001028000b0240200141046a28020020052802002200460d00200128020021030c5c0b200041016a22032000490d5e200041017422042003200420034b1b22044100480d5e0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c5c0b20044101102d000b0240200141046a2802002203200141086a28020022006b4102490d00200128020021030c5a0b200041026a22042000490d5d200341017422002004200020044b1b22004100480d5d0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c5a0b20004101102d000b0240200141046a2802002203200141086a28020022006b4104490d00200128020021030c580b200041046a22042000490d5c200341017422002004200020044b1b22004100480d5c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c580b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021070c560b200341016a22052003490d5b200341017422072005200720054b1b22054100480d5b0240024020030d002005101e21070c010b200128020020032005102221070b02402007450d0020012007360200200141046a2005360200200141086a28020021030c560b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d5b200341017422052004200520044b1b22054100480d5b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200141046a28020020052802002203460d00200128020021040c540b200341016a22042003490d5a200341017422052004200520044b1b22054100480d5a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c540b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c520b200041016a22032000490d59200041017422042003200420034b1b22044100480d590240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c520b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c500b200341016a22042003490d58200341017422052004200520044b1b22054100480d580240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c500b20054101102d000b0240200141046a2207280200200141086a22042802002203460d00200128020021050c4e0b200341016a22052003490d57200341017422082005200820054b1b22084100480d570240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c4e0b20084101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d57200341017422052004200520044b1b22054100480d570240024020030d002005101e21040c010b200128020020032005102221040b2004450d1e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d57200341017422052004200520044b1b22054100480d570240024020030d002005101e21040c010b200128020020032005102221040b2004450d1f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041106a200110ca01200041306a200110ca01200041d0006a200110ca012000280204210720022000410c6a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c4c0b200320006a22052003490d56200441017422032005200320054b1b22034100480d560240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c4c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d56200341017422052004200520044b1b22054100480d560240024020030d002005101e21040c010b200128020020032005102221040b2004450d1f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a00000240200141046a28020020052802002203460d00200128020021040c4a0b200341016a22042003490d55200341017422052004200520044b1b22054100480d550240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c4a0b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d55200341017422052004200520044b1b22054100480d550240024020030d002005101e21040c010b200128020020032005102221040b2004450d1f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d55200341017422052004200520044b1b22054100480d550240024020030d002005101e21040c010b200128020020032005102221040b2004450d2020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000280204210720022000410c6a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c480b200320006a22052003490d54200441017422032005200320054b1b22034100480d540240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c480b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d54200341017422052004200520044b1b22054100480d540240024020030d002005101e21040c010b200128020020032005102221040b2004450d2020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d54200341017422052004200520044b1b22054100480d540240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000280204210702400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d54200441017422032005200320054b1b22034100480d540240024020040d002003101e21040c010b200128020020042003102221040b2004450d2220012004360200200141046a2003360200200141086a28020021030b200141086a2208200341046a360200200420036a2007360000200041086a28020021072002200041106a2802002203360240200241c0006a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c460b200420036a22082004490d53200541017422042008200420084b1b22044100480d530240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c460b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c440b200041016a22032000490d52200041017422042003200420034b1b22044100480d520240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c440b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c420b200041016a22032000490d51200041017422042003200420034b1b22044100480d510240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c420b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c400b200041016a22032000490d50200041017422042003200420034b1b22044100480d500240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c400b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c3a0b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3a0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c380b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c380b20054101102d000b0240200141046a2207280200200141086a22042802002203460d00200128020021050c360b200341016a22052003490d38200341017422082005200820054b1b22084100480d380240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c360b20084101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c340b200341016a22042003490d37200341017422052004200520044b1b22054100480d370240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c340b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c320b200341016a22042003490d36200341017422052004200520044b1b22054100480d360240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c320b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c2a0b200341016a22042003490d35200341017422052004200520044b1b22054100480d350240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c2a0b20054101102d000b0240200141046a2205280200200141086a22032802002204460d00200128020021070c280b200441016a22072004490d29200441017422082007200820074b1b22084100480d290240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c280b20084101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c260b200041016a22032000490d28200041017422042003200420034b1b22044100480d280240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c260b20044101102d000b0240200141046a2207280200200141086a22032802002204460d00200128020021050c240b200441016a22052004490d27200441017422082005200820054b1b22084100480d270240024020040d002008101e21050c010b200128020020042008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021040c240b20084101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c200b200341016a22042003490d26200341017422052004200520044b1b22054100480d260240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c200b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1e0b200341016a22042003490d1f200341017422052004200520044b1b22054100480d1f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1e0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1c0b200341016a22042003490d1e200341017422052004200520044b1b22054100480d1e0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1c0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1a0b200341016a22042003490d1d200341017422052004200520044b1b22054100480d1d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1a0b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c180b200041016a22032000490d1c200041017422042003200420034b1b22044100480d1c0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c180b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c160b200341016a22042003490d1b200341017422052004200520044b1b22054100480d1b0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c160b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c140b200041016a22032000490d1a200041017422042003200420034b1b22044100480d1a0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c140b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c120b200041016a22032000490d19200041017422042003200420034b1b22044100480d190240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c120b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c100b200041016a22032000490d18200041017422042003200420034b1b22044100480d180240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c100b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c0e0b200041016a22032000490d17200041017422042003200420034b1b22044100480d170240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0e0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0c0b200341016a22042003490d16200341017422052004200520044b1b22054100480d160240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20034101102d000b200141086a200341016a360200200420036a41213a0000200041086a200110db020c350b200141086a200041016a360200200320006a41203a0000200110dc020c340b200141086a200041016a360200200320006a411f3a0000200110dc020c330b200141086a200041016a360200200320006a411e3a0000200110dc020c320b200141086a200041016a360200200320006a411d3a0000200110dc020c310b200141086a200341016a360200200420036a411c3a0000200041086a20011098010c300b200141086a200041016a360200200320006a411b3a0000200110dc020c2f0b200141086a200341016a360200200420036a411a3a00002000280204417f6a220341034b0d2e024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d08200041017422042003200420034b1b22044100480d080240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2207200341016a360200200420036a41033a0000200028020821042002200041106a2802002200360240200241c0006a200110632000450d3120042000410c6c6a2109200141046a210a0340200428020021082002200441086a2802002200360240200241c0006a2001106302400240200a2802002205200728020022036b2000490d00200128020021050c010b200320006a220b2003490d0820054101742203200b2003200b4b1b22034100480d080240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200a2003360200200728020021030c010b20034101102d000b2007200320006a360200200520036a2008200010cd051a2004410c6a22042009470d000c320b0b200141086a2205200341016a360200200420036a41023a00002000280208210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d06200341017422002005200020054b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c300b200141086a200041016a360200200320006a41013a00000c2f0b200141086a2207200341016a360200200420036a41003a0000200028020821082002200041106a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a0240024020002802144101460d000240200141046a28020020072802002200460d00200128020021030c020b200041016a22032000490d05200041017422042003200420034b1b22044100480d050240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41013a00002000280218210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d05200341017422002005200020054b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c2f0b200141086a200041016a360200200320006a41003a00000c2e0b200141086a200341016a360200200420036a41193a0000200041086a22042d0000417f6a220341024b0d2d0240024002400240024020030e03000102000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d06200041017422052003200520034b1b22054100480d060240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41023a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d05200341017422002004200020044b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2f0b200141086a2205200341016a360200200420036a41013a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d04200341017422002004200020044b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2e0b200141086a200041016a360200200320006a41003a000020022001360240200441016a200241c0006a10b9010c2d0b200141086a200341016a360200200420036a41183a0000200041086a22042d0000417f6a220341064b0d2c024002400240024002400240024002400240024002400240024020030e0700010203040506000b0240200141046a280200200141086a2802002203460d00200128020021050c0c0b200341016a22052003490d0d200341017422072005200720054b1b22074100480d0d0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0c0b20074101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c0a0b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0a0b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c080b200041016a22032000490d0b200041017422052003200520034b1b22054100480d0b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c080b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c060b200041016a22032000490d0a200041017422052003200520034b1b22054100480d0a0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d09200041017422042003200420034b1b22044100480d090240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200420036a41063a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d32200041057421000340200220013602402003200241c0006a10b901200341206a2103200041606a22000d000c330b0b200141086a200041016a360200200320006a41053a000020022001360240200441016a200241c0006a10b9010c310b200141086a200041016a360200200320006a41043a00000c300b200141086a200041016a360200200320006a41033a0000200441016a200110ca010c2f0b200141086a200041016a360200200320006a41023a000020022001360240200441016a200241c0006a10b9010c2e0b200141086a200041016a360200200320006a41013a000020022001360240200441016a200241c0006a10b9010c2d0b200141086a2207200341016a360200200520036a41003a000020022001360240200441016a200241c0006a10b9012000290338210602400240200141046a2802002204200728020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a20063700002000290340210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028022c21072002200041346a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c2c0b200141086a200341016a360200200420036a41173a00002000280208417f6a220341034b0d2b024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41033a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d04200341017422002004200020044b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2e0b200141086a2205200341016a360200200420036a41023a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d03200341017422002004200020044b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2d0b200141086a2205200341016a360200200420036a41013a00002000290320210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2207200341086a360200200420036a2006370000200028020c21082002200041146a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d02200541017422042007200420074b1b22044100480d020240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a200041186a2d0000210402400240200141046a28020020072802002200460d00200128020021030c010b200041016a22032000490d02200041017422052003200520034b1b22054100480d020240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a20043a00000c2c0b200141086a2207200341016a360200200420036a41003a0000200028020c21082002200041146a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d01200541017422042007200420074b1b22044100480d010240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a200041186a2d000021040240200141046a28020020072802002200460d00200128020021030c020b200041016a22032000490d00200041017422052003200520034b1b22054100480d000240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b1027000b200141086a200041016a360200200320006a20043a00000c290b2003200441016a360200200520046a41163a0000200041086a22042d0000417f6a220541074b0d2802400240024002400240024002400240024002400240024002400240024020050e080001020304050607000b0240200728020020032802002205460d00200128020021080c0e0b200541016a22082005490d112005410174220a2008200a20084b1b220a4100480d110240024020050d00200a101e21080c010b20012802002005200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021050c0e0b200a4101102d000b0240200728020020032802002200460d00200128020021050c0c0b200041016a22052000490d10200041017422082005200820054b1b22084100480d100240024020000d002008101e21050c010b200128020020002008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021000c0c0b20084101102d000b0240200728020020032802002200460d00200128020021030c0a0b200041016a22032000490d0f200041017422052003200520034b1b22054100480d0f0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0a0b20054101102d000b0240200728020020032802002205460d00200128020021080c080b200541016a22082005490d0e2005410174220a2008200a20084b1b220a4100480d0e0240024020050d00200a101e21080c010b20012802002005200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021050c080b200a4101102d000b0240200728020020032802002204460d00200128020021050c060b200441016a22052004490d0d200441017422082005200820054b1b22084100480d0d0240024020040d002008101e21050c010b200128020020042008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021040c060b20084101102d000b0240200728020020032802002200460d00200128020021050c040b200041016a22052000490d0c200041017422082005200820054b1b22084100480d0c0240024020000d002008101e21050c010b200128020020002008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021000c040b20084101102d000b0240200728020020032802002200460d00200128020021050c020b200041016a22052000490d0b200041017422082005200820054b1b22084100480d0b0240024020000d002008101e21050c010b200128020020002008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021000c020b20084101102d000b02400240200728020020032802002200460d00200128020021030c010b200041016a22032000490d0b200041017422052003200520034b1b22054100480d0b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a41073a0000200441016a200110ca010c2f0b2003200041016a360200200520006a41063a0000024002400240024002400240024020042d00010e0400010203000b0240200728020020032802002200460d00200128020021040c060b200041016a22042000490d0f200041017422052004200520044b1b22054100480d0f0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200728020020032802002200460d00200128020021040c040b200041016a22042000490d0e200041017422052004200520044b1b22054100480d0e0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020032802002200460d00200128020021040c020b200041016a22042000490d0d200041017422052004200520044b1b22054100480d0d0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020032802002200460d00200128020021040c010b200041016a22042000490d0d200041017422052004200520044b1b22054100480d0d0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b2003200041016a360200200420006a41033a00000c310b2003200041016a360200200420006a41023a00000c300b2003200041016a360200200420006a41013a00000c2f0b2003200041016a360200200420006a41003a00000c2e0b2003200041016a360200200520006a41053a0000024002400240024002400240024020042d00010e0400010203000b0240200728020020032802002200460d00200128020021040c060b200041016a22042000490d0e200041017422052004200520044b1b22054100480d0e0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200728020020032802002200460d00200128020021040c040b200041016a22042000490d0d200041017422052004200520044b1b22054100480d0d0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020032802002200460d00200128020021040c020b200041016a22042000490d0c200041017422052004200520044b1b22054100480d0c0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020032802002200460d00200128020021040c010b200041016a22042000490d0c200041017422052004200520044b1b22054100480d0c0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b2003200041016a360200200420006a41033a00000c300b2003200041016a360200200420006a41023a00000c2f0b2003200041016a360200200420006a41013a00000c2e0b2003200041016a360200200420006a41003a00000c2d0b200141086a2209200441016a360200200520046a41043a0000200028020c21042002200041146a2802002208360240200241c0006a200110632008450d2c200141046a210c034020042d0000210a02400240200728020020032802002200460d00200128020021050c010b200041016a22052000490d092000410174220b2005200b20054b1b220b4100480d090240024020000d00200b101e21050c010b20012802002000200b102221050b02402005450d0020012005360200200c200b360200200928020021000c010b200b4101102d000b200441016a21042003200041016a360200200520006a200a3a00002008417f6a22080d000c2d0b0b2003200541016a360200200820056a41033a000020042d0001210802400240200728020020032802002204460d00200128020021050c010b200441016a22052004490d072004410174220a2005200a20054b1b220a4100480d070240024020040d00200a101e21050c010b20012802002004200a102221050b02402005450d0020012005360200200141046a200a360200200141086a28020021040c010b200a4101102d000b2003200441016a360200200520046a20083a0000200041186a29030021062000290310210d0240024020072802002205200328020022046b4110490d00200128020021050c010b200441106a22082004490d07200541017422042008200420084b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441106a360200200520046a220420063700082004200d370000200041c0006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041c4006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041286a2903002106200041206a290300210d0240024020072802002205200328020022046b4110490d00200128020021050c010b200441106a22082004490d07200541017422042008200420084b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441106a360200200520046a220420063700082004200d370000200041c8006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041cc006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041d0006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041d4006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041d8006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041386a2903002106200041306a290300210d0240024020072802002204200328020022006b4110490d00200128020021040c010b200041106a22052000490d07200441017422002005200020054b1b22004100480d070240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041106a360200200420006a220020063700082000200d3700000c2b0b200141086a200041016a360200200320006a41023a0000200441016a200110ca010c2a0b2003200041016a360200200520006a41013a000020042d0001210502400240200728020020032802002200460d00200128020021030c010b200041016a22032000490d05200041017422072003200720034b1b22074100480d050240024020000d002007101e21030c010b200128020020002007102221030b02402003450d0020012003360200200141046a2007360200200141086a28020021000c010b20074101102d000b200141086a200041016a360200200320006a20053a0000200441026a200110ca010c290b2003200541016a360200200820056a41003a000020042d0001210802400240200728020020032802002204460d00200128020021050c010b200441016a22052004490d042004410174220a2005200a20054b1b220a4100480d040240024020040d00200a101e21050c010b20012802002004200a102221050b02402005450d0020012005360200200141046a200a360200200141086a28020021040c010b200a4101102d000b2003200441016a360200200520046a20083a0000200029031021060240024020072802002204200328020022006b4108490d00200128020021040c010b200041086a22052000490d04200441017422002005200020054b1b22004100480d040240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200420006a20063700000c280b200141086a200041016a360200200320006a41153a0000200110dc020c270b2003200441016a360200200720046a41143a0000200041086a22072d0000417f6a220441074b0d2602400240024002400240024002400240024002400240024002400240024020040e080001020304050607000b0240200528020020032802002200460d00200128020021040c0e0b200041016a22042000490d0f200041017422082004200820044b1b22084100480d0f0240024020000d002008101e21040c010b200128020020002008102221040b02402004450d0020012004360200200141046a2008360200200141086a28020021000c0e0b20084101102d000b0240200528020020032802002204460d00200128020021070c0c0b200441016a22072004490d0e200441017422082007200820074b1b22084100480d0e0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c0c0b20084101102d000b0240200528020020032802002204460d00200128020021080c0a0b200441016a22082004490d0d2004410174220a2008200a20084b1b220a4100480d0d0240024020040d00200a101e21080c010b20012802002004200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021040c0a0b200a4101102d000b0240200528020020032802002204460d00200128020021070c080b200441016a22072004490d0c200441017422082007200820074b1b22084100480d0c0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c080b20084101102d000b0240200528020020032802002204460d00200128020021070c060b200441016a22072004490d0b200441017422082007200820074b1b22084100480d0b0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c060b20084101102d000b0240200528020020032802002204460d00200128020021070c040b200441016a22072004490d0a200441017422082007200820074b1b22084100480d0a0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c040b20084101102d000b0240200528020020032802002204460d00200128020021070c020b200441016a22072004490d09200441017422082007200820074b1b22084100480d090240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c020b20084101102d000b02400240200528020020032802002204460d00200128020021070c010b200441016a22072004490d09200441017422082007200820074b1b22084100480d090240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c010b20084101102d000b2003200441016a360200200720046a41073a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d09200541017422042007200420074b1b22044100480d090240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d09200541017422042007200420074b1b22044100480d090240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2d0b2003200441016a360200200720046a41063a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2c0b2003200441016a360200200720046a41053a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d07200541017422042007200420074b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d07200541017422042007200420074b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2b0b2003200441016a360200200720046a41043a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d06200541017422042007200420074b1b22044100480d060240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d06200541017422042007200420074b1b22044100480d060240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2a0b2003200441016a360200200720046a41033a0000200029032821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2208200441086a360200200520046a2006370000200028020c210a2002200041146a2802002204360240200241c0006a2001106302400240200141046a2802002207200828020022056b2004490d00200128020021070c010b200520046a22082005490d05200741017422052008200520084b1b22054100480d050240024020070d002005101e21070c010b200128020020072005102221070b02402007450d0020012007360200200141046a2005360200200141086a28020021050c010b20054101102d000b200141086a2208200520046a360200200720056a200a200410cd051a200028021821072002200041206a2802002200360240200241c0006a2001106302400240200141046a2802002205200828020022046b2000490d00200128020021050c010b200420006a22082004490d05200541017422042008200420084b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2007200010cd051a0c290b2003200441016a360200200820046a41023a0000200029031021060240024020052802002204200328020022006b4108490d00200128020021040c010b200041086a22082000490d04200441017422002008200020084b1b22004100480d040240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200420006a200637000041002108024020072d000122044102460d0002400240200528020020032802002200460d00200128020021080c010b200041016a22082000490d052000410174220a2008200a20084b1b220a4100480d050240024020000d00200a101e21080c010b20012802002000200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021000c010b200a4101102d000b2003200041016a360200200820006a41013a0000200421080b02400240200528020020032802002200460d00200128020021040c010b200041016a22042000490d042000410174220a2004200a20044b1b220a4100480d040240024020000d00200a101e21040c010b20012802002000200a102221040b02402004450d0020012004360200200141046a200a360200200141086a28020021000c010b200a4101102d000b2003200041016a360200200420006a20083a000020052802002104200328020021000240024020072d000222074102470d00024020042000460d00200128020021040c020b200041016a22042000490d05200041017422052004200520044b1b22054100480d050240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b0240024020042000460d00200128020021040c010b200041016a22042000490d05200041017422082004200820044b1b22084100480d050240024020000d002008101e21040c010b200128020020002008102221040b02402004450d0020012004360200200141046a2008360200200141086a28020021000c010b20084101102d000b2003200041016a360200200420006a41013a000002400240200528020020032802002200460d00200128020021040c010b200041016a22042000490d05200041017422052004200520044b1b22054100480d050240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b2003200041016a360200200420006a20073a00000c290b2003200041016a360200200420006a41003a00000c280b2003200441016a360200200720046a41013a000002400240024020002903284201510d000240200528020020032802002204460d00200128020021050c020b200441016a22052004490d05200441017422072005200720054b1b22074100480d050240024020040d002007101e21050c010b200128020020042007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021040c020b20074101102d000b02400240200528020020032802002204460d00200128020021070c010b200441016a22072004490d05200441017422082007200820074b1b22084100480d050240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c010b20084101102d000b2003200441016a360200200720046a41013a0000200029033021060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441086a360200200520046a20063700000c010b2003200441016a360200200520046a41003a00000b200028020c21082002200041146a2802002204360240200241c0006a2001106302400240200141046a2802002207200141086a28020022056b2004490d00200128020021070c010b200520046a220a2005490d0320074101742205200a2005200a4b1b22054100480d030240024020070d002005101e21070c010b200128020020072005102221070b02402007450d0020012007360200200141046a2005360200200141086a28020021050c010b20054101102d000b200141086a220a200520046a360200200720056a2008200410cd051a200028021821072002200041206a2802002200360240200241c0006a2001106302400240200141046a2802002205200a28020022046b2000490d00200128020021050c010b200420006a22082004490d03200541017422042008200420084b1b22044100480d030240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2007200010cd051a0c270b2003200041016a360200200420006a41003a00000240024020072d00014101460d000240200528020020032802002200460d00200128020021040c020b200041016a22042000490d03200041017422052004200520044b1b22054100480d030240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200528020020032802002200460d00200128020021030c010b200041016a22032000490d03200041017422042003200420034b1b22044100480d030240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a41013a0000200741026a200110ca010c270b2003200041016a360200200420006a41003a00000c260b200141086a200341016a360200200420036a41133a0000200041086a22042d0000417f6a220341084b0d25024002400240024002400240024002400240024002400240024020030e09000102030405060708000b0240200141046a280200200141086a2802002203460d00200128020021040c120b200341016a22042003490d17200341017422052004200520044b1b22054100480d170240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c120b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c100b200341016a22042003490d16200341017422052004200520044b1b22054100480d160240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c100b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0e0b200341016a22042003490d15200341017422052004200520044b1b22054100480d150240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0e0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0c0b200341016a22042003490d14200341017422052004200520044b1b22054100480d140240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c080b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c080b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c060b200341016a22052003490d07200341017422072005200720054b1b22074100480d070240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c060b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d06200341017422072005200720054b1b22074100480d060240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c040b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d05200341017422072005200720054b1b22074100480d050240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c020b20074101102d000b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d05200041017422052003200520034b1b22054100480d050240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a41083a0000200441016a200110ca010c290b200141086a200341016a360200200520036a41073a0000200441016a200110ca012000412c6a200110dd020c280b200141086a2207200341016a360200200520036a41063a00002000290330210602400240200141046a2802002203200728020022006b4108490d00200128020021030c010b200041086a22052000490d03200341017422002005200020054b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a2006370000200441016a200110ca010c270b200141086a2207200341016a360200200520036a41053a00002000290330210602400240200141046a2802002203200728020022006b4108490d00200128020021030c010b200041086a22052000490d02200341017422002005200020054b1b22004100480d020240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a2006370000200441016a200110ca010c260b200141086a2205200341016a360200200420036a41043a0000200029033021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b1027000b200141086a200341086a360200200420036a20063700002000410c6a200110dd020c230b200141086a2205200341016a360200200420036a41033a00002000290318210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d09200441017422032005200320054b1b22034100480d090240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028020c21072002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d09200441017422032005200320054b1b22034100480d090240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c220b200141086a2205200341016a360200200420036a41023a00002000290318210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028020c21072002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c210b200141086a2205200341016a360200200420036a41013a00002000290318210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028020c21072002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c200b200141086a2205200341016a360200200420036a41003a00002000290330210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a20063700002000410c6a200110dd020c1f0b200141086a2205200341016a360200200420036a41123a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41003a00002000280204210720022000410c6a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c1e0b200141086a200341016a360200200420036a41113a0000200041046a22042d0000417f6a220341034b0d1d024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d07200041017422052003200520034b1b22054100480d070240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41033a00002000280208210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d07200341017422002005200020054b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c200b200141086a200041016a360200200320006a41023a0000200441016a200110ca010c1f0b200141086a200041016a360200200320006a41013a0000200441016a200110ca010c1e0b200141086a200341016a360200200420036a41003a0000200028020821032002200041106a2802002200360240200241c0006a200110632000450d1d2000410574210003402003200110ca01200341206a2103200041606a22000d000c1e0b0b2004200341016a360200200520036a41103a0000200041086a22052d0000417f6a220341104b0d1c02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e11000102030405060708090a0b0c0d0e0f10000b0240200728020020042802002203460d00200128020021050c200b200341016a22052003490d22200341017422082005200820054b1b22084100480d220240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c200b20084101102d000b0240200728020020042802002203460d00200128020021070c1e0b200341016a22072003490d21200341017422082007200820074b1b22084100480d210240024020030d002008101e21070c010b200128020020032008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021030c1e0b20084101102d000b0240200728020020042802002203460d00200128020021070c1c0b200341016a22072003490d20200341017422082007200820074b1b22084100480d200240024020030d002008101e21070c010b200128020020032008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021030c1c0b20084101102d000b0240200728020020042802002203460d00200128020021050c1a0b200341016a22052003490d1f200341017422082005200820054b1b22084100480d1f0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c1a0b20084101102d000b0240200728020020042802002203460d00200128020021050c180b200341016a22052003490d1e200341017422082005200820054b1b22084100480d1e0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c180b20084101102d000b0240200728020020042802002203460d00200128020021050c160b200341016a22052003490d1d200341017422082005200820054b1b22084100480d1d0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c160b20084101102d000b0240200728020020042802002203460d00200128020021050c140b200341016a22052003490d1c200341017422082005200820054b1b22084100480d1c0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c140b20084101102d000b0240200728020020042802002203460d00200128020021050c120b200341016a22052003490d1b200341017422082005200820054b1b22084100480d1b0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c120b20084101102d000b0240200728020020042802002203460d00200128020021050c100b200341016a22052003490d1a200341017422082005200820054b1b22084100480d1a0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c100b20084101102d000b0240200728020020042802002203460d00200128020021050c0e0b200341016a22052003490d19200341017422082005200820054b1b22084100480d190240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c0e0b20084101102d000b0240200728020020042802002203460d00200128020021050c0c0b200341016a22052003490d18200341017422082005200820054b1b22084100480d180240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c0c0b20084101102d000b0240200728020020042802002203460d00200128020021050c0a0b200341016a22052003490d17200341017422082005200820054b1b22084100480d170240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c0a0b20084101102d000b0240200728020020042802002203460d00200128020021050c080b200341016a22052003490d16200341017422082005200820054b1b22084100480d160240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c080b20084101102d000b0240200728020020042802002203460d00200128020021050c060b200341016a22052003490d15200341017422082005200820054b1b22084100480d150240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c060b20084101102d000b0240200728020020042802002200460d00200128020021030c040b200041016a22032000490d14200041017422052003200520034b1b22054100480d140240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d13200041017422052003200520034b1b22054100480d130240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d13200041017422082003200820034b1b22084100480d130240024020000d002008101e21030c010b200128020020002008102221030b02402003450d0020012003360200200141046a2008360200200141086a28020021000c010b20084101102d000b2004200041016a360200200320006a41103a000020052d0001210502400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d13200041017422072003200720034b1b22074100480d130240024020000d002007101e21030c010b200128020020002007102221030b02402003450d0020012003360200200141046a2007360200200141086a28020021000c010b20074101102d000b2004200041016a360200200320006a20053a00000c2c0b2004200041016a360200200320006a410f3a00000c2b0b2004200041016a360200200320006a410e3a00000c2a0b2004200341016a360200200520036a410d3a0000200041186a29030021062000290310210d0240024020072802002203200428020022006b4110490d00200128020021030c010b200041106a22052000490d10200341017422002005200020054b1b22004100480d100240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c290b2004200341016a360200200520036a410c3a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0f200341017422002007200020074b1b22004100480d0f0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c280b2004200341016a360200200520036a410b3a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0e200341017422002007200020074b1b22004100480d0e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c270b2004200341016a360200200520036a410a3a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0d200341017422002007200020074b1b22004100480d0d0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c260b2004200341016a360200200520036a41093a0000200041186a29030021062000290310210d0240024020072802002203200428020022006b4110490d00200128020021030c010b200041106a22052000490d0c200341017422002005200020054b1b22004100480d0c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c250b2004200341016a360200200520036a41083a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0b200341017422002007200020074b1b22004100480d0b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c240b2004200341016a360200200520036a41073a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0a200341017422002007200020074b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c230b2004200341016a360200200520036a41063a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d09200341017422002007200020074b1b22004100480d090240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c220b2004200341016a360200200520036a41053a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d08200341017422002007200020074b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c210b2004200341016a360200200520036a41043a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d07200341017422002007200020074b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c200b2004200341016a360200200520036a41033a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d06200341017422002007200020074b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c1f0b200141086a2208200341016a360200200720036a41023a000020022001360240200541016a200241c0006a10b901200541216a200110ca01200028024c21072002200041d4006a2802002200360240200241c0006a2001106302400240200141046a2802002205200828020022036b2000490d00200128020021050c010b200320006a22082003490d05200541017422032008200320084b1b22034100480d050240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b2004200320006a360200200520036a2007200010cd051a0c1e0b200141086a2208200341016a360200200720036a41013a000020022001360240200541016a200241c0006a10b901200041386a29030021062000290330210d02400240200141046a2802002203200828020022006b4110490d00200128020021030c010b200041106a22052000490d04200341017422002005200020054b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c1d0b2004200341016a360200200520036a41003a0000200041186a29030021062000290310210d0240024020072802002203200428020022006b4110490d00200128020021030c010b200041106a22052000490d03200341017422002005200020054b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c1c0b200141086a200341016a360200200420036a410f3a000020002d0008417f6a220341044b0d1b02400240024002400240024002400240024020030e050001020304000b0240200141046a280200200141086a2802002203460d00200128020021040c080b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c080b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41043a0000200028020c210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d06200341017422002005200020054b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c1f0b200141086a2205200341016a360200200420036a41033a0000200028020c210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d05200341017422002005200020054b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c1e0b200141086a2205200341016a360200200420036a41023a0000200028020c210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d04200341017422002005200020054b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c1d0b200141086a2205200341016a360200200420036a41013a0000200028020c210702400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341046a360200200420036a2007360000024002400240024002400240024020002d00090e0400010203000b0240200141046a28020020052802002200460d00200128020021030c060b200041016a22032000490d08200041017422042003200420034b1b22044100480d080240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c060b20044101102d000b0240200141046a28020020052802002200460d00200128020021030c040b200041016a22032000490d07200041017422042003200420034b1b22044100480d070240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200141046a28020020052802002200460d00200128020021030c020b200041016a22032000490d06200041017422042003200420034b1b22044100480d060240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200141046a28020020052802002200460d00200128020021030c010b200041016a22032000490d06200041017422042003200420034b1b22044100480d060240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a41033a00000c1f0b200141086a200041016a360200200320006a41023a00000c1e0b200141086a200041016a360200200320006a41013a00000c1d0b200141086a200041016a360200200320006a41003a00000c1c0b200141086a2205200341016a360200200420036a41003a0000200041386a29030021062000290330210d02400240200141046a2802002204200528020022036b4110490d00200128020021040c010b200341106a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2207200341106a360200200420036a220320063700082003200d370000200028020c21082002200041146a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d02200541017422042007200420074b1b22044100480d020240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a200028021821082002200041206a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d02200541017422042007200420074b1b22044100480d020240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a2000280224210520022000412c6a2802002200360240200241c0006a2001106302400240200141046a2802002204200728020022036b2000490d00200128020021040c010b200320006a22072003490d02200441017422032007200320074b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2005200010cd051a0c1b0b200141086a200341016a360200200420036a410e3a00002000280204417f6a220341024b0d1a02400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d00200341017422052004200520044b1b22054100480d000240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b1027000b200141086a200341016a360200200420036a41023a0000200041086a200110de02200028022c200110da020c180b200141086a200341016a360200200420036a41013a0000200041086a200110de020c170b200141086a200341016a360200200420036a41003a00002000280208200110da020c160b200141086a200041016a360200200320006a410d3a0000200110dc020c150b200141086a200041016a360200200320006a410c3a0000200110dc020c140b200141086a200041016a360200200320006a410b3a0000200110dc020c130b200141086a2208200420036a360200200520046a2007200310cd051a200041146a280200210520022000411c6a2802002203360240200241c0006a2001106302402003450d0020052003410c6c6a210c200141046a210b03402005280200210a2002200541086a2802002203360240200241c0006a2001106302400240200b2802002207200828020022046b2003490d00200128020021070c010b200420036a22092004490d10200741017422042009200420094b1b22044100480d100240024020070d002004101e21070c010b200128020020072004102221070b02402007450d0020012007360200200b2004360200200828020021040c010b20044101102d000b2008200420036a360200200720046a200a200310cd051a2005410c6a2205200c470d000b0b200041206a28020021050240024002400240200141046a2802002204200828020022036b4104490d00200128020021040c010b200341046a22072003490d10200441017422032007200320074b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b2004450d0120012004360200200141046a2003360200200141086a28020021030b200141086a2207200341046a360200200420036a2005360000200041246a28020021080240200141046a2802002204200728020022036b4104490d00200128020021040c020b200341046a22052003490d0f200441017422032005200320054b1b22034100480d0f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20034101102d000b200141086a2205200341046a360200200420036a2008360000200041286a210b410021030340200b20036a2d0000210702400240200141046a220828020020052802002200460d00200128020021040c010b200041016a22042000490d0f2000410174220a2004200a20044b1b220a4100480d0f0240024020000d00200a101e21040c010b20012802002000200a102221040b02402004450d00200120043602002008200a360200200528020021000c010b200a4101102d000b2005200041016a360200200420006a20073a0000200341016a220341c000470d000c130b0b200141086a200320006a360200200420036a2007200010cd051a0c110b200141086a200341016a360200200420036a41003a0000200041046a200110630c100b200141086a200320006a360200200420036a2007200010cd051a0c0f0b2004200341016a360200200520036a41063a0000200041086a22052d0000417f6a2203410e4b0d0e0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e0f000102030405060708090a0b0c0d0e000b0240200728020020042802002203460d00200128020021080c1c0b200341016a22082003490d252003410174220a2008200a20084b1b220a4100480d250240024020030d00200a101e21080c010b20012802002003200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021030c1c0b200a4101102d000b0240200728020020042802002203460d00200128020021040c1a0b200341016a22042003490d24200341017422052004200520044b1b22054100480d240240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1a0b20054101102d000b0240200728020020042802002203460d00200128020021040c180b200341016a22042003490d23200341017422052004200520044b1b22054100480d230240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c180b20054101102d000b0240200728020020042802002200460d00200128020021030c160b200041016a22032000490d22200041017422052003200520034b1b22054100480d220240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c160b20054101102d000b0240200728020020042802002203460d00200128020021040c140b200341016a22042003490d21200341017422052004200520044b1b22054100480d210240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c140b20054101102d000b0240200728020020042802002203460d00200128020021040c120b200341016a22042003490d20200341017422052004200520044b1b22054100480d200240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c120b20054101102d000b0240200728020020042802002200460d00200128020021030c100b200041016a22032000490d1f200041017422052003200520034b1b22054100480d1f0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c100b20054101102d000b0240200728020020042802002200460d00200128020021030c0e0b200041016a22032000490d1e200041017422082003200820034b1b22084100480d1e0240024020000d002008101e21030c010b200128020020002008102221030b02402003450d0020012003360200200141046a2008360200200141086a28020021000c0e0b20084101102d000b0240200728020020042802002203460d00200128020021040c0c0b200341016a22042003490d1d200341017422052004200520044b1b22054100480d1d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b0240200728020020042802002203460d00200128020021040c0a0b200341016a22042003490d1c200341017422052004200520044b1b22054100480d1c0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0a0b20054101102d000b0240200728020020042802002200460d00200128020021030c080b200041016a22032000490d1b200041017422052003200520034b1b22054100480d1b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c080b20054101102d000b0240200728020020042802002200460d00200128020021030c060b200041016a22032000490d1a200041017422052003200520034b1b22054100480d1a0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200728020020042802002203460d00200128020021040c040b200341016a22042003490d19200341017422052004200520044b1b22054100480d190240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d18200041017422042003200420034b1b22044100480d180240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d18200041017422052003200520034b1b22054100480d180240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b2004200041016a360200200320006a410e3a00000c1c0b200141086a200041016a360200200320006a410d3a0000200541016a200110ca010c1b0b200141086a200341016a360200200420036a410c3a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d1a2000410574210003402003200110ca01200341206a2103200041606a22000d000c1b0b0b2004200041016a360200200320006a410b3a00000c190b2004200041016a360200200320006a410a3a00000c180b200141086a200341016a360200200420036a41093a00002000410c6a200110630c170b200141086a200341016a360200200420036a41083a00002000410c6a200110de020c160b2004200041016a360200200320006a41073a000020052d0001220041024b0d150240024002400240024020000e03000102000b0240200728020020042802002200460d00200128020021030c040b200041016a22032000490d14200041017422052003200520034b1b22054100480d140240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d13200041017422052003200520034b1b22054100480d130240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d13200041017422052003200520034b1b22054100480d130240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b2004200041016a360200200320006a41023a00000c170b2004200041016a360200200320006a41013a00000c160b2004200041016a360200200320006a41003a00000c150b2004200041016a360200200320006a41063a00000c140b200141086a200341016a360200200420036a41053a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d13200041246c210003402003200110de02200341246a21032000415c6a22000d000c140b0b200141086a200341016a360200200420036a41043a00002002200041106a360240200241c0006a200110df020c120b2004200041016a360200200320006a41033a00000c110b200141086a200341016a360200200420036a41023a00002002200041106a360240200241c0006a200110df020c100b200141086a200341016a360200200420036a41013a00002002200041106a360240200241c0006a200110df020c0f0b200141086a200341016a360200200820036a41003a00002000410c6a200110de022002200041306a360240200241c0006a200110df0220052d0001220041024b0d0e0240024002400240024020000e03000102000b0240200728020020042802002200460d00200128020021030c040b200041016a22032000490d0d200041017422052003200520034b1b22054100480d0d0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b2004200041016a360200200320006a41023a00000c100b2004200041016a360200200320006a41013a00000c0f0b2004200041016a360200200320006a41003a00000c0e0b200141086a200341016a360200200420036a41053a00002000280208417f6a220341034b0d0d0240024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002204460d00200128020021050c060b200441016a22032004490d0f200441017422052003200520034b1b22034100480d0f0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c060b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c040b200441016a22032004490d0e200441017422052003200520034b1b22034100480d0e0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c040b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c020b200441016a22032004490d0d200441017422052003200520034b1b22034100480d0d0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b02400240200141046a280200200141086a2802002204460d00200128020021050c010b200441016a22032004490d0d200441017422052003200520034b1b22034100480d0d0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c010b20034101102d000b200041306a2103200141086a200441016a360200200520046a41033a00002000410c6a200110de02200241c0006a21000c030b200041d8006a2103200141086a200441016a360200200520046a41023a00002000410c6a200110de02200041306a200110de02200241206a21000c020b200041c0006a2103200141086a200441016a360200200520046a41013a00002000410c6a200110de022002200041306a3602002002200110df02200241086a21000c010b200041306a2103200141086a200441016a360200200520046a41003a00002000410c6a200110de02200241dc006a21000b200020033602002000200110df020c0d0b200141086a200041016a360200200320006a41043a0000200110dc020c0c0b200141086a2208200341016a360200200420036a41003a00002000280204210c20022000410c6a2802002200360240200241c0006a200110632000450d0b200c200041f0006c6a210e200141046a210b034020022001360240200c41106a200241c0006a10b901200c2001106320022001360240200c41306a200241c0006a10b90120022001360240200c41d0006a200241c0006a10b901200c28020421042002200c28020c2200360240200241c0006a2001106302402000450d00200041246c210a0340200241c0006a200410a9012002280240210702400240200b2802002205200828020022006b20022802482203490d00200128020021050c010b200020036a22092000490d0a200541017422002009200020094b1b22004100480d0a0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200b2000360200200828020021000c010b20004101102d000b2008200020036a360200200520006a2007200310cd051a02402002280244450d00200710200b200441246a2104200a415c6a220a0d000b0b200c41f0006a220c200e470d000c0c0b0b200141086a2205200341016a360200200720036a411320044102746b3a0000200220002903082206370300200441786a2103200141046a2107034002400240200728020020052802002200460d00200128020021040c010b200041016a22042000490d07200041017422082004200820044b1b22084100480d070240024020000d002008101e21040c010b200128020020002008102221040b02402004450d002001200436020020072008360200200528020021000c010b20084101102d000b2005200041016a360200200420006a2006a73a000020064208882106200341016a22002003492104200021032004450d000b200220063703002006500d0a200241206a41146a41083602002002412c6a410b360200200241086a41146a41033602002002200236023c200241908cc50036025c200241c0006a41146a41003602002002420337020c20024190fbc6003602082002410b360224200241e4fdc60036025020024201370244200241988cc5003602402002200241206a3602182002200241c0006a3602302002200241dc006a36022820022002413c6a360220200241086a41d483c6001033000b200141086a200041046a360200200320006a2006a74102744102723600000c090b200141086a200041026a360200200320006a2006a74102744101723b00000c080b200141086a200041016a360200200320006a2006a74102743a00000c070b200141086a200041016a360200200320006a41013a0000200110dc020c060b200141086a200341016a360200200420036a41003a00002000280208417f6a220341064b0d05024002400240024002400240024002400240024020030e0700010203040908000b0240200141046a280200200141086a2802002200460d00200128020021030c0e0b200041016a22032000490d09200041017422042003200420034b1b22044100480d090240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0e0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b2004450d0620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020c21072002200041146a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c0c0b200320006a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b2004450d0420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200029031021060240200141046a2802002203200528020022006b4108490d00200128020021030c0a0b200041086a22042000490d07200341017422002004200020044b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c0a0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200028020c21072002200041146a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c080b200320006a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c080b20034101102d000b024002400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22042003490d07200341017422052004200520044b1b22044100480d070240024020030d002004101e21050c010b200128020020032004102221050b2005450d0120012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41043a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d0b2003200041186c6a2109200141046a210703402003280200210a2002200341086a2802002200360240200241c0006a20011063024002400240024020072802002208200428020022056b2000490d00200128020021080c010b200520006a220b2005490d0a20084101742205200b2005200b4b1b22054100480d0a0240024020080d002005101e21080c010b200128020020082005102221080b2008450d012001200836020020072005360200200428020021050b2004200520006a360200200820056a200a200010cd051a2003410c6a280200210a2002200341146a2802002200360240200241c0006a20011063024020072802002208200428020022056b2000490d00200128020021080c020b200520006a220b2005490d0920084101742205200b2005200b4b1b22054100480d090240024020080d002005101e21080c010b200128020020082005102221080b02402008450d002001200836020020072005360200200428020021050c020b20054101102d000b20054101102d000b2004200520006a360200200820056a200a200010cd051a200341186a22032009470d000c0c0b0b20044101102d000b20054101102d000b20054101102d000b20054101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a0000200028020c21072002200041146a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c020b200320006a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200320006a360200200420036a2007200010cd051a0c060b024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41053a0000200028020c21042002200041146a2802002200360240200241c0006a200110632000450d0620042000410c6c6a2109200141046a210a0340200428020021082002200441086a2802002200360240200241c0006a2001106302400240200a2802002205200728020022036b2000490d00200128020021050c010b200320006a220b2003490d0320054101742203200b2003200b4b1b22034100480d030240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200a2003360200200728020021030c010b20034101102d000b2007200320006a360200200520036a2008200010cd051a2004410c6a22042009470d000c070b0b20054101102d000b1027000b200141086a200320006a360200200420036a2007200010cd051a0c030b200141086a200041086a360200200320006a20063700000c020b200141086a200320006a360200200420036a2007200010cd051a0c010b200141086a200041016a360200200320006a41003a00000b200241e0006a24000b9d800104047f017e027f017e230041106b22022400024020002d0000417f6a220341124b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e13000102030405060708090a0b0c0d0e0f101112000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b2004450d1320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000290360210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d51200441017422032005200320054b1b22034100480d510240024020040d002003101e21040c010b200128020020042003102221040b2004450d1420012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041016a200110ca01200041216a2d0000210702400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b2004450d1520012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a20073a00002000280224210720022000412c6a280200220336020c2002410c6a2001106302400240200141046a2802002205200828020022046b2003490d00200128020021050c010b200420036a22082004490d51200541017422042008200420084b1b22044100480d510240024020050d002004101e21050c010b200128020020052004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021040b200141086a2208200420036a360200200520046a2007200310cd051a200141046a2802002104200828020021030240200028023022070d00024020042003460d00200128020021040c500b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c500b20054101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041386a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c4e0b200420036a22082004490d50200541017422042008200420084b1b22044100480d500240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c4e0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d50200341017422052004200520044b1b22054100480d500240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000290328210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d50200441017422032005200320054b1b22034100480d500240024020040d002003101e21040c010b200128020020042003102221040b2004450d1820012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200029033021060240200141046a2802002204200528020022036b4108490d00200128020021040c4c0b200341086a22052003490d4f200441017422032005200320054b1b22034100480d4f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c4c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000290350210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d4f200441017422032005200320054b1b22034100480d4f0240024020040d002003101e21040c010b200128020020042003102221040b2004450d1920012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200141046a2802002104200528020021030240200028020422070d00024020042003460d00200128020021040c4a0b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c4a0b20054101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1a20012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a000020022000410c6a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c480b200420036a22082004490d4e200541017422042008200420084b1b22044100480d4e0240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c480b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4e200341017422052004200520044b1b22054100480d4e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1a20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000024020002903084201510d000240200141046a28020020052802002203460d00200128020021040c460b200341016a22042003490d4e200341017422052004200520044b1b22054100480d4e0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c460b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d4e200341017422052004200520044b1b22054100480d4e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c440b200341086a22052003490d4d200441017422032005200320054b1b22034100480d4d0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c440b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4d200341017422052004200520044b1b22054100480d4d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a0000024020002802044101460d000240200141046a28020020052802002203460d00200128020021040c420b200341016a22042003490d4d200341017422052004200520044b1b22054100480d4d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c420b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d4d200341017422052004200520044b1b22054100480d4d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020821070240200141046a2802002204200528020022036b4104490d00200128020021040c400b200341046a22052003490d4c200441017422032005200320054b1b22034100480d4c0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c400b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4c200341017422052004200520044b1b22054100480d4c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c3e0b200041086a22042000490d4b200341017422002004200020044b1b22004100480d4b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c3e0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4b200341017422052004200520044b1b22054100480d4b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c3c0b200041086a22042000490d4a200341017422002004200020044b1b22004100480d4a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c3c0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4a200341017422052004200520044b1b22054100480d4a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a00002000290310210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d4a200441017422032005200320054b1b22034100480d4a0240024020040d002003101e21040c010b200128020020042003102221040b2004450d1d20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041046a20011062200141046a28020021042005280200210302402000412c6a28020022054102470d00024020042003460d00200128020021000c3b0b200341016a22002003490d4a200341017422042000200420004b1b22044100480d4a0240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c3b0b20044101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d4a200341017422072004200720044b1b22074100480d4a0240024020030d002007101e21040c010b200128020020032007102221040b2004450d1e20012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a41013a0000200041206a29030021062000290318210902400240200141046a2802002204200728020022036b4110490d00200128020021040c010b200341106a22072003490d4a200441017422032007200320074b1b22034100480d4a0240024020040d002003101e21040c010b200128020020042003102221040b2004450d1f20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a2203200637000820032009370000200041286a280200210802400240200141046a2802002204200728020022036b4104490d00200128020021040c010b200341046a22072003490d4a200441017422032007200320074b1b22034100480d4a0240024020040d002003101e21040c010b200128020020042003102221040b2004450d2020012004360200200141046a2003360200200141086a28020021030b200141086a2207200341046a360200200420036a2008360000024020054101460d000240200141046a28020020072802002200460d00200128020021030c3a0b200041016a22032000490d4a200041017422042003200420034b1b22044100480d4a0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c3a0b20044101102d000b02400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d4a200341017422052004200520044b1b22054100480d4a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028023021040240200141046a2802002203200528020022006b4104490d00200128020021030c380b200041046a22052000490d49200341017422002005200020054b1b22004100480d490240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c380b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d49200341017422052004200520044b1b22054100480d490240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c360b200041086a22042000490d48200341017422002004200020044b1b22004100480d480240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c360b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d48200341017422052004200520044b1b22054100480d480240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c340b200041086a22042000490d47200341017422002004200020044b1b22004100480d470240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c340b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d47200341017422052004200520044b1b22054100480d470240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000290330210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d47200441017422032005200320054b1b22034100480d470240024020040d002003101e21040c010b200128020020042003102221040b2004450d2220012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a20063700002000290338210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d47200441017422032005200320054b1b22034100480d470240024020040d002003101e21040c010b200128020020042003102221040b2004450d2320012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041016a200110ca01024020002903404201510d000240200141046a28020020052802002203460d00200128020021040c320b200341016a22042003490d47200341017422052004200520044b1b22054100480d470240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c320b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d47200341017422052004200520044b1b22054100480d470240024020030d002005101e21040c010b200128020020032005102221040b2004450d2420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041d0006a2903002106200029034821090240200141046a2802002204200528020022036b4110490d00200128020021040c300b200341106a22052003490d46200441017422032005200320054b1b22034100480d460240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c300b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d46200341017422052004200520044b1b22054100480d460240024020030d002005101e21040c010b200128020020032005102221040b2004450d2420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a0000200029032821060240200141046a2802002204200528020022036b4108490d00200128020021040c2c0b200341086a22052003490d45200441017422032005200320054b1b22034100480d450240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c2c0b20034101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c2a0b200341016a22042003490d2b200341017422052004200520044b1b22054100480d2b0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c2a0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c280b200341016a22042003490d2a200341017422052004200520044b1b22054100480d2a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c280b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c260b200341016a22042003490d29200341017422052004200520044b1b22054100480d290240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c260b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c240b200341016a22042003490d28200341017422052004200520044b1b22054100480d280240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c240b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c220b200041016a22032000490d27200041017422042003200420034b1b22044100480d270240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c220b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c200b200341016a22042003490d26200341017422052004200520044b1b22054100480d260240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c200b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1e0b200341016a22042003490d25200341017422052004200520044b1b22054100480d250240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1e0b20054101102d000b20054101102d000b20034101102d000b20054101102d000b20044101102d000b20054101102d000b20054101102d000b20034101102d000b20054101102d000b20034101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20034101102d000b20074101102d000b20034101102d000b20034101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20034101102d000b20034101102d000b20054101102d000b20054101102d000b200141086a2205200341016a360200200420036a41123a0000200041106a29030021062000290308210902400240200141046a2802002203200528020022006b4110490d00200128020021030c010b200041106a22042000490d08200341017422002004200020044b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041106a360200200320006a22012006370008200120093700000c230b200141086a2205200341016a360200200420036a41113a000020002d0001210402400240200141046a28020020052802002200460d00200128020021030c010b200041016a22032000490d07200041017422052003200520034b1b22054100480d070240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a20043a00000c220b200141086a200041016a360200200320006a41103a00000c210b200141086a2205200341016a360200200420036a410f3a00002000290328210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041016a200110ca010c200b200141086a2205200341016a360200200420036a410e3a00002000290310210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a20063700002000280204210720022000410c6a280200220036020c2002410c6a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c1f0b200141086a2205200341016a360200200420036a410d3a00002000290310210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a20063700002000280204210720022000410c6a280200220036020c2002410c6a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c1e0b200141086a2205200341016a360200200420036a410c3a00002000290328210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041016a200110ca010c1d0b200141086a2205200341086a360200200420036a2006370000200029033021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b1027000b200141086a200341086a360200200420036a2006370000200041016a200110ca010c1a0b200141086a200341106a360200200420036a22032006370008200320093700000c010b200141086a200341016a360200200420036a41003a00000b02400240024020002903584201510d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d17200341017422052004200520044b1b22054100480d170240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d19200341017422052004200520044b1b22054100480d190240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041e8006a2903002106200029036021090240200141046a2802002204200528020022036b4110490d00200128020021040c020b200341106a22052003490d18200441017422032005200320054b1b22034100480d180240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200341106a360200200420036a22032006370008200320093700000c010b200141086a200341016a360200200420036a41003a00000b2000280224210520022000412c6a280200220036020c2002410c6a2001106302400240200141046a2802002204200141086a28020022036b2000490d00200128020021040c010b200320006a22072003490d15200441017422032007200320074b1b22034100480d150240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2005200010cd051a0c170b200141086a200041086a360200200320006a20063700000c160b200141086a200041086a360200200320006a20063700000c150b200141086a200041046a360200200320006a20043600000c140b200141086a200041016a360200200320006a41003a00000c130b200141086a200341016a360200200020036a41003a00000c120b200141086a200041086a360200200320006a20063700000c110b200141086a200041086a360200200320006a20063700000c100b200141086a200341046a360200200420036a20073600000c010b200141086a200341016a360200200420036a41003a00000b200041186a200110fa03200028020c21052002200041146a280200220036020c2002410c6a2001106302400240200141046a2802002204200141086a28020022036b2000490d00200128020021040c010b200320006a22072003490d0b200441017422032007200320074b1b22034100480d0b0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2005200010cd051a0c0d0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290318210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a200637000041002107024020002d000122044102460d0002400240200141046a28020020052802002203460d00200128020021070c010b200341016a22072003490d09200341017422082007200820074b1b22084100480d090240024020030d002008101e21070c010b200128020020032008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021030c010b20084101102d000b200141086a200341016a360200200720036a41013a0000200421070b0240024002400240024002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d0d200341017422052004200520044b1b22054100480d0d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20073a0000200141046a280200210420052802002103024020002d000222054102470d00024020042003460d00200128020021000c060b200341016a22002003490d0d200341017422042000200420004b1b22044100480d0d0240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c060b20044101102d000b0240024020042003460d00200128020021000c010b200341016a22002003490d0d200341017422042000200420004b1b22044100480d0d0240024020030d002004101e21000c010b200128020020032004102221000b2000450d0220012000360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200020036a41013a0000200141046a280200210320042802002100024020054101460d00024020032000460d00200128020021030c050b200041016a22032000490d0d200041017422042003200420034b1b22044100480d0d0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c050b20044101102d000b024020032000460d00200128020021030c030b200041016a22032000490d0c200041017422042003200420034b1b22044100480d0c0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c030b20044101102d000b20054101102d000b20044101102d000b200141086a200041016a360200200320006a41013a00000c0c0b200141086a200041016a360200200320006a41003a00000c0b0b200141086a200341016a360200200020036a41003a00000c0a0b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200041106a200110b502200041206a200110b502200041306a200110b502200041c0006a200110b502200141046a2802002104200141086a28020021030240024020002d000122054102470d00024020042003460d00200128020021000c020b200341016a22002003490d06200341017422042000200420004b1b22044100480d060240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c020b20044101102d000b0240024002400240024020042003460d00200128020021000c010b200341016a22002003490d09200341017422042000200420004b1b22044100480d090240024020030d002004101e21000c010b200128020020032004102221000b2000450d0120012000360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200020036a41013a0000200141046a280200210320042802002100024020054101460d00024020032000460d00200128020021030c040b200041016a22032000490d09200041017422042003200420034b1b22044100480d090240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b024020032000460d00200128020021030c020b200041016a22032000490d08200041017422042003200420034b1b22044100480d080240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b20044101102d000b200141086a200041016a360200200320006a41013a00000c090b200141086a200041016a360200200320006a41003a00000c080b200141086a200341016a360200200020036a41003a00000c070b200141086a200341086a360200200420036a2006370000200041016a200110ca010c060b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024002400240200028023c22070d00024020042003460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b024002400240024020042003460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041c4006a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c020b200420036a22082004490d04200541017422042008200420084b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20054101102d000b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024002400240200028024822070d00024020042003460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b024002400240024020042003460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041d0006a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c020b200420036a22082004490d04200541017422042008200420084b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20054101102d000b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024002400240200028025422070d00024020042003460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b024002400240024020042003460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041dc006a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c020b200420036a22082004490d04200541017422042008200420084b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20054101102d000b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024020002d00224101460d00024020042003460d00200128020021000c040b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c040b20044101102d000b024020042003460d00200128020021000c020b200341016a22002003490d00200341017422042000200420004b1b22044100480d000240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c020b20044101102d000b1027000b200141086a200341016a360200200020036a41013a00000c010b200141086a200341016a360200200020036a41003a00000b200241106a24000bfc0101077f230041106b220124002001410036020820014201370300200110dc02200128020421022001280200210302400240200041046a2802002204200041086a28020022056b20012802082206490d00200028020021040c010b0240200520066a22072005490d00200441017422052007200520074b1b22054100480d000240024020040d002005101e21040c010b200028020020042005102221040b02402004450d0020002004360200200041046a2005360200200041086a28020021050c020b20054101102d000b1027000b200041086a200520066a360200200420056a2003200610cd051a02402002450d00200310200b200141106a24000bf40c01067f230041106b22022400200141046a2802002103200141086a280200210402400240024002400240024002400240200028020022050d00024020032004460d00200128020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200128020020042006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021040c020b20064101102d000b024002400240024020032004460d00200128020021030c010b200441016a22032004490d05200441017422062003200620034b1b22064100480d050240024020040d002006101e21030c010b200128020020042006102221030b2003450d0120012003360200200141046a2006360200200141086a28020021040b200141086a2207200441016a360200200320046a41013a00002002200041086a2802002204360204200241046a200110630240200141046a2802002206200728020022036b2004490d00200128020021060c020b200320046a22072003490d04200641017422032007200320074b1b22034100480d040240024020060d002003101e21060c010b200128020020062003102221060b02402006450d0020012006360200200141046a2003360200200141086a28020021030c020b20034101102d000b20064101102d000b200141086a200320046a360200200620036a2005200410cd051a0c010b200141086a200441016a360200200320046a41003a00000b200141046a2802002103200141086a2802002104024002400240200028020c22050d00024020032004460d00200128020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200128020020042006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021040c020b20064101102d000b024002400240024020032004460d00200128020021030c010b200441016a22032004490d05200441017422062003200620034b1b22064100480d050240024020040d002006101e21030c010b200128020020042006102221030b2003450d0120012003360200200141046a2006360200200141086a28020021040b200141086a2207200441016a360200200320046a41013a00002002200041146a2802002204360208200241086a200110630240200141046a2802002206200728020022036b2004490d00200128020021060c020b200320046a22072003490d04200641017422032007200320074b1b22034100480d040240024020060d002003101e21060c010b200128020020062003102221060b02402006450d0020012006360200200141046a2003360200200141086a28020021030c020b20034101102d000b20064101102d000b200141086a200320046a360200200620036a2005200410cd051a0c010b200141086a200441016a360200200320046a41003a00000b200141046a2802002103200141086a28020021040240200028021822060d00024020032004460d00200128020021000c050b200441016a22002004490d01200441017422032000200320004b1b22034100480d010240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c050b20034101102d000b0240024020032004460d00200128020021030c010b200441016a22032004490d01200441017422052003200520034b1b22054100480d010240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a00002002200041206a280200220436020c2002410c6a200110630240200141046a2802002203200528020022006b2004490d00200128020021030c030b200020046a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20054101102d000b200141086a200020046a360200200320006a2006200410cd051a0c010b200141086a200441016a360200200020046a41003a00000b200241106a24000bba0801037f0240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034b0d01200241ef014b0d03200141046a280200200141086a2802002200460d02200128020021030c0a0b0240200141046a280200200141086a2802002202460d00200128020021030c090b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c090b20044101102d000b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d03200041017422042003200420034b1b22044100480d030240024020000d002004101e21030c010b200128020020002004102221030b2003450d0420012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a00000240200141046a2802002203200428020022006b4104490d00200128020021030c070b200041046a22042000490d02200341017422002004200020044b1b22004100480d020240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c070b20004101102d000b200041016a22032000490d01200041017422042003200420034b1b22044100480d010240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c080b20044101102d000b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d01200041017422042003200420034b1b22044100480d010240024020000d002004101e21030c010b200128020020002004102221030b2003450d0320012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240200141046a2802002203200428020022006b4102490d00200128020021030c040b200041026a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c040b20004101102d000b1027000b20044101102d000b20044101102d000b200141086a200041026a360200200320006a20023b00000f0b200141086a200041046a360200200320006a20023600000f0b200141086a200241016a360200200320026a41ff013a0000200041016a200110ca010f0b200141086a200041016a360200200320006a20023a00000b990a03017f027e057f230041e0006b2202240002400240024002400240024002400240024020002802002200290300220342c000544100200041086a29030022045022051b0d0020034280800154410020051b0d01200342808080800454410020051b0d02411020047920037942c0007c20044200521ba741037622066b41044f0d0341d58bc500413641a888c6001028000b0240200141046a280200200141086a2802002200460d00200128020021050c070b200041016a22052000490d03200041017422062005200620054b1b22064100480d030240024020000d002006101e21050c010b200128020020002006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021000c070b20064101102d000b0240200141046a2802002205200141086a28020022006b4102490d00200128020021050c050b200041026a22062000490d02200541017422002006200020064b1b22004100480d020240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c050b20004101102d000b0240200141046a2802002205200141086a28020022006b4104490d00200128020021050c030b200041046a22062000490d01200541017422002006200020064b1b22004100480d010240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c030b20004101102d000b02400240200141046a280200200141086a2802002205460d00200128020021070c010b200541016a22082005490d01200541017422072008200720084b1b22084100480d010240024020050d002008101e21070c010b200128020020052008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021050c010b20084101102d000b200141086a2208200541016a360200200720056a413320064102746b3a0000200029030021032002200041086a290300220437030820022003370300200641706a2105200141046a2107034002400240200728020020082802002200460d00200128020021060c010b200041016a22062000490d02200041017422092006200920064b1b22094100480d020240024020000d002009101e21060c010b200128020020002009102221060b02402006450d002001200636020020072009360200200828020021000c010b20094101102d000b2008200041016a360200200620006a2003a73a00002003420888200442388684210320044208882104200541016a22002005492106200021052006450d000b20022003370300200220043703082003200484500d04200241286a41146a4108360200200241346a410c360200200241106a41146a410336020020022002360240200241e08cc500360244200241c8006a41146a41003602002002420337021420024190fbc6003602102002410c36022c200241e4fdc6003602582002420137024c200241988cc5003602482002200241286a3602202002200241c8006a3602382002200241c4006a3602302002200241c0006a360228200241106a41d483c6001033000b1027000b200141086a200041046a360200200520006a2003a74102744102723600000c020b200141086a200041026a360200200520006a2003a74102744101723b00000c010b200141086a200041016a360200200520006a2003a74102743a00000b200241e0006a24000bc50c03017f017e057f230041106b220224002002410036020820024201370300200029030021030240024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200028022821050240024020022802042206200228020822046b4104490d00200441046a2107200228020021060c010b200441046a22072004490d08200641017422082007200820074b1b22084100480d080240024020060d002008101e21060c010b200228020020062008102221060b2006450d0220022008360204200220063602000b20022007360208200620046a2005360000200028022c21060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d08200741017422082005200820054b1b22054100480d080240024020070d002005101e21070c010b200228020020072005102221070b2007450d0320022005360204200220073602000b2002200441046a360208200720046a2006360000024020002903084201510d000240200228020420022802082204460d00200228020021070c070b200441016a22072004490d08200441017422062007200620074b1b22064100480d080240024020040d002006101e21070c010b200228020020042006102221070b02402007450d0020022006360204200220073602000c070b20064101102d000b02400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d08200441017422062007200620074b1b22064100480d080240024020040d002006101e21070c010b200228020020042006102221070b2007450d0420022006360204200220073602000b2002200441016a360208200720046a41013a000020002903102103024020022802042206200228020822046b4108490d00200441086a2107200228020021060c050b200441086a22072004490d07200641017422052007200520074b1b22054100480d070240024020060d002005101e21060c010b200228020020062005102221060b02402006450d0020022005360204200220063602000c050b20054101102d000b41084101102d000b20084101102d000b20054101102d000b20064101102d000b20022007360208200620046a20033700000c010b2002200441016a360208200720046a41003a00000b02400240024020002903184201510d000240200228020420022802082204460d00200228020021070c020b200441016a22072004490d03200441017422062007200620074b1b22064100480d030240024020040d002006101e21070c010b200228020020042006102221070b02402007450d0020022006360204200220073602000c020b20064101102d000b0240024002400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d05200441017422062007200620074b1b22064100480d050240024020040d002006101e21070c010b200228020020042006102221070b2007450d0120022006360204200220073602000b2002200441016a360208200720046a41013a000020002903202103024020022802042207200228020822046b4108490d00200228020021070c020b200441086a22062004490d04200741017422052006200520064b1b22064100480d040240024020070d002006101e21070c010b200228020020072006102221070b02402007450d0020022006360204200220073602000c020b20064101102d000b20064101102d000b2002200441086a360208200720046a20033700000c010b2002200441016a360208200720046a41003a00000b200041306a200210d902200028023c21052002200041c4006a280200220436020c2002410c6a20021063024020022802042206200228020822076b2004490d00200228020021060c020b200720046a22082007490d00200641017422072008200720084b1b22074100480d000240024020060d002007101e21060c010b200228020020062007102221060b02402006450d002002200736020420022006360200200228020821070c020b20074101102d000b1027000b2002200720046a360208200620076a2005200410cd051a200041c8006a20021094012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000b930803057f047e0a7f230041e0006b2202240020012802082103200128020021040240024002400240200128020c2205200128020422062f0106490d00024002400240200641908cc500460d00200628020022010d012003ad2107410021010c020b41cfa5c000412841a888c6001028000b200441016a210420063301044220862003ad8421070b200610202007a721052007422088a7220320012f01064f0d01200121060c020b2000200336020820002006360204200020043602002000200541016a36020c200241206a41186a200620054105746a220141206a2900002207370300200241206a41106a200141186a2900002208370300200241206a41086a200141106a29000022093703002000200141086a290000220a370010200041186a2009370000200041206a2008370000200041286a2007370000200041e8006a200620054106746a220141a0036a290300370300200041e0006a20014198036a290300370300200041d8006a20014190036a290300370300200041d0006a20014188036a290300370300200041c8006a20014180036a290300370300200041c0006a200141f8026a290300370300200041386a200141f0026a2903003703002000200141e8026a2903003703302002200a3703200c020b034002400240200128020022060d002005ad2107410021060c010b200441016a210420013301044220862005ad8421070b200110202007a72105200621012007422088a7220320062f01064f0d000b0b200241186a220b200620034105746a220141206a290000370300200241106a220c200141186a290000370300200241086a220d200141106a2900003703002002200141086a290000370300200241206a41386a220e200620034106746a220141a0036a290300370300200241d0006a220f20014198036a290300370300200241206a41286a221020014190036a290300370300200241206a41206a221120014188036a290300370300200241206a41186a221220014180036a290300370300200241206a41106a2213200141f8026a290300370300200241206a41086a2214200141f0026a2903003703002002200141e8026a290300370320200341027420066a41ac086a280200210102402004417f6a2206450d00034020012802a80821012006417f6a22060d000b0b2000410036020c2000200536020820002001360204200041003602002000200229030037001020002002290320370330200041186a200d290300370000200041206a200c290300370000200041286a200b290300370000200041386a2014290300370300200041c0006a2013290300370300200041c8006a2012290300370300200041d0006a2011290300370300200041d8006a2010290300370300200041e0006a200f290300370300200041e8006a200e2903003703000b200241e0006a24000ba90703057f047e087f230041d0006b2202240020012802082103200128020021040240024002400240200128020c2205200128020422062f0106490d00024002400240200641908cc500460d00200628020022010d012003ad2107410021010c020b41cfa5c000412841a888c6001028000b200441016a210420063301044220862003ad8421070b200610202007a721052007422088a7220320012f01064f0d01200121060c020b2000200336020820002006360204200020043602002000200541016a36020c200241206a41186a200620054105746a220141206a2900002207370300200241206a41106a200141186a2900002208370300200241206a41086a200141106a29000022093703002000200141086a290000220a370010200041186a2009370000200041206a2008370000200041286a2007370000200041d8006a2006200541306c6a22014190036a290300370300200041d0006a20014188036a290300370300200041c8006a20014180036a290300370300200041c0006a200141f8026a290300370300200041386a200141f0026a2903003703002000200141e8026a2903003703302002200a3703200c020b034002400240200128020022060d002005ad2107410021060c010b200441016a210420013301044220862005ad8421070b200110202007a72105200621012007422088a7220320062f01064f0d000b0b200241186a220b200620034105746a220141206a290000370300200241106a220c200141186a290000370300200241086a220d200141106a2900003703002002200141086a290000370300200241206a41286a220e2006200341306c6a22014190036a290300370300200241206a41206a220f20014188036a290300370300200241206a41186a221020014180036a290300370300200241206a41106a2211200141f8026a290300370300200241206a41086a2212200141f0026a2903003703002002200141e8026a290300370320200341027420066a41fc066a280200210102402004417f6a2206450d00034020012802f80621012006417f6a22060d000b0b2000410036020c2000200536020820002001360204200041003602002000200229030037001020002002290320370330200041186a200d290300370000200041206a200c290300370000200041286a200b290300370000200041386a2012290300370300200041c0006a2011290300370300200041c8006a2010290300370300200041d0006a200f290300370300200041d8006a200e2903003703000b200241d0006a24000bf30203047f017e037f230041306b22012400200141186a41086a2202420037030020014200370318418cc6c1004115200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a10e402024020012802182204450d00200129021c21052003450d02200210200c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b41082104420021050b20042005422088a722064106746a21072004210202400340024020022007470d00410021080c020b410121082002411c6a22032000460d01200341246a210220032000412010cf050d000b0b02402006450d0020064106742103200441106a210203400240200241046a280200450d00200228020010200b200241c0006a2102200341406a22030d000b0b02402005a7450d00200410200b200141306a240020080bed0c04127f027e067f057e230041c0026b22022400200241106a2001105f024002402002280210450d00200041003602000c010b0240024002400240024002400240200128020422034140712204417f4c0d002002280214210502400240200341067622060d00410821070c010b2004101e2207450d020b02402005450d0041002108410021090340200241003a00b8022009220a41016a21092001280204210b417f210441002103024002400340200b2003460d0120024198026a20036a2001280200220c2d00003a00002001200b20046a3602042001200c41016a3602002002200341016a220d3a00b8022004417f6a2104200d2103200d4120470d000b200241f8006a41186a220e20024198026a41186a220f290300370300200241f8006a41106a221020024198026a41106a2211290300370300200241f8006a41086a221220024198026a41086a22132903003703002002200229039802370378200b200d6b22034110490d0a200c41096a2900002114200c29000121152001200341706a3602042001200c41116a360200200241086a2001105f2002280208450d010c0a0b200341ff0171450d09200241003a00b8020c090b200128020441306e221641306c2203417f4c0d02200228020c21170240024020030d00410821180c010b2003101e2218450d050b02402017450d00410021190340200241003a00b8022019221a41016a21192001280204210b417f21044100210302400240024002400340200b2003460d0120024198026a20036a2001280200220c2d00003a00002001200b20046a3602042001200c41016a3602002002200341016a220d3a00b8022004417f6a2104200d2103200d4120470d000b200241f8016a41186a2203200f290300370300200241f8016a41106a22042011290300370300200241f8016a41086a221b201329030037030020022002290398023703f801200b200d6b220d4110490d01200c41096a290000211c200c290001211d2001200d41706a3602042001200c41116a360200200241b8016a41086a201b290300221e370300200241b8016a41106a2004290300221f370300200241b8016a41186a2003290300222037030020024198016a41186a2204202037030020024198016a41106a220d201f37030020024198016a41086a220b201e370300200220022903f801221e3703b8012002201e370398012016201a470d03201a41017422032019200320194b1b2216ad42307e221e422088a70d0d201ea7220341004e0d020c0d0b200341ff0171450d00200241003a00b8020b200241b8016a41086a200241d8016a41086a2903003703002016450d0c201810200c0c0b02400240201a0d002003101e21180c010b2018201a41306c2003102221180b2018450d080b2018201a41306c6a2203201c3703082003201d3703002003200229039801370310200341186a200b290300370300200341206a200d290300370300200341286a200429030037030020192017470d000b0b2018450d08200241386a41086a2012290300221c370300200241386a41106a2010290300221d370300200241386a41186a200e290300221e370300200241186a41086a2204201c370300200241186a41106a220d201d370300200241186a41186a220b201e37030020022002290378221c3703382002201c37031802402006200a470d00200a41017422032009200320094b1b220641ffffff1f712006470d08200641067422034100480d0802400240200a0d002003101e21070c010b2007200a4106742003102221070b2007450d070b2007200a4106746a220320143703082003201537030020032018360210200341146a2017ad4220862016ad843702002003411c6a2002290318370200200341246a20042903003702002003412c6a200d290300370200200341346a200b290300370200200841c0006a210820092005470d000b0b2000200636020420002007360200200041086a20053602000c070b102c000b20044108102d000b20034108102d000b20034108102d000b20034108102d000b1027000b200241386a41086a200241d8006a41086a290300370300200241386a41106a200241d8006a41106a290300370300200241386a41186a200241d8006a41186a29030037030020022002290358370338200041003602000240200a450d00200741106a210103400240200141046a280200450d00200128020010200b200141c0006a2101200841406a22080d000b0b2006450d00200710200b200241c0026a24000be20603057f017e027f230041b0016b22022400024002400240024002404116101e2203450d002003410e6a41002900aad543370000200341086a41002900a4d5433700002003410029009cd54337000020034116412c10222203450d0120032001370016200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411e200241e0006a1001200241c0006a41186a2004290300370300200241c0006a41106a2005290300370300200241c0006a41086a2006290300370300200220022903603703402003102020024100360260200241c0006a4120200241e0006a1003210320022802602204417f460d032003450d03200220043602ac01200220033602a801200241e0006a200241a8016a10d802200229036822014202510d02200241106a200241e0006a41186a290300370300200241186a200241e0006a41206a290300370300200241086a41186a200241e0006a41286a290300370300200241086a41206a200241e0006a41306a290300370300200241086a41286a20024198016a290300370300200241086a41306a200241a0016a29030037030020022002290370370308200229036021072004450d04200310200c040b41164101102d000b412c4101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420221010b200241e0006a41306a2203200241086a41306a290300370300200241e0006a41286a2204200241086a41286a290300370300200241e0006a41206a2205200241086a41206a290300370300200241e0006a41186a2206200241086a41186a290300370300200241e0006a41106a2208200241086a41106a290300370300200241e0006a41086a2209200241086a41086a290300370300200220022903083703600240024020014202520d002000420037030020004200370318200042003703282000420137023c200041086a4200370300200041306a41003a0000200041c4006a41003602000c010b2000200137030820002007370300200041106a2002290360370300200041186a2009290300370300200041206a2008290300370300200041286a2006290300370300200041306a2005290300370300200041386a2004290300370300200041c0006a20032903003703000b200241b0016a24000be70101057f230041206b2202240002400240411f101e2203450d00200341176a41002900a4d443370000200341106a410029009dd443370000200341086a4100290095d4433700002003410029008dd4433700002003411f413e10222203450d012003200137001f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411f4101102d000b413e4101102d000bd80101057f230041206b22022400024002404116101e2203450d002003410e6a41002900aad543370000200341086a41002900a4d5433700002003410029009cd54337000020034116412c10222203450d0120032001370016200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411e20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41164101102d000b412c4101102d000bdc0505027f017e067f017e057f230041f0016b2202240020024100360288012001412020024188016a100321010240024002402002280288012203417f460d0020010d010b200042023703080c010b200220033602542002200136025020024188016a200241d0006a10d8020240024020022903900122044202510d00200241d8006a41086a220520024188016a41186a290300370300200241d8006a41106a220620024188016a41206a290300370300200241d8006a41186a220720024188016a41286a290300370300200241d8006a41206a220820024188016a41306a290300370300200241d8006a41286a220920024188016a41386a280200360200200220022903980137035820024188016a41c0006a280200210a200229038801210b20022802c401210c20022802cc01210d200241d0016a200241d0006a10930120022903d0014202520d01200a450d00200c10200b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b200241206a41286a220e2009280200360200200241206a41206a22092008290300370300200241206a41186a22082007290300370300200241206a41106a22072006290300370300200241206a41086a22062005290300370300200241086a2205200241d0016a41086a290300370300200241106a220f200241d0016a41106a290300370300200241186a2210200241d0016a41186a29030037030020022002290358370320200220022903d001370300200020043703082000200b3703002000200d360244200041c0006a200a3602002000200c36023c20002002290320370310200041186a2006290300370300200041206a2007290300370300200041286a2008290300370300200041306a2009290300370300200041386a200e280200360200200041c8006a2002290300370300200041d0006a2005290300370300200041d8006a200f290300370300200041e0006a20102903003703002003450d00200110200b200241f0016a24000bf706040a7f017e017f027e230041a0036b22022400200241b8016a200110b90402400240200228028c0222034102470d00200042023703a0010c010b200241e0006a200241b8016a41d40010cd051a200241c8006a41106a2204200241b8016a41e8006a280200360200200241c8006a41086a2205200241b8016a41e0006a290300370300200241306a41086a2206200241b8016a4180016a290300370300200241306a41106a2207200241b8016a4188016a290300370300200220024190026a2903003703482002200241b0026a290300370330200241b8016a41ec006a2802002108200241a8026a2802002109200241b8016a41f4006a280200210a200241cc026a280200210b200241d0026a290300210c20022802c802210d200241d8026a2001109301024002400240024020022903d8024202520d00200042023703a0012003450d0302402009450d00200921010340200828026021082001417f6a22010d000b03402009417f6a22090d000b0b0240200a450d0041002109410021014100210003402002200936029c03200220013602980320022008360294032002200036029003200241f8026a20024190036a1061200228028003210020022802840321082002280288032101200228028c032109200a417f6a220a0d000b0b200841908cc500460d032008280200210a20081020200a450d03200a2802002109200a10202009450d03200928020022080d010c020b2000200241e0006a41d40010cd052101200241186a41106a20042802002200360200200241186a41086a2005290300220e370300200241086a22042006290300370300200241106a2205200729030037030020022002290348220f37031820022002290330370300200120033602542001200f370358200141e0006a200e370300200141e8006a2000360200200141f4006a200a36020020012009360270200141ec006a20083602002001200c370398012001200b360294012001200d360290012001200229030037037820014180016a200429030037030020014188016a2005290300370300200141b8016a200241f0026a290300370300200141b0016a200241d8026a41106a290300370300200141a8016a200241d8026a41086a290300370300200120022903d8023703a0010c030b034020091020200821092008280200220a2108200a0d000b0b200910200b200b450d00200d10200b200241a0036a24000bf206030c7f017e017f23004180026b2202240020012802042103024002400240024002400240024020012802002204450d002002200128020822053602a80120022004417f6a22063602a001200220032802603602a4012002200241a0016a10ea02200241a0016a410272410041da0010cc051a200241c0006a200241a0016a41dc0010cd051a200241386a22044200370300200241306a22074200370300200241286a22084200370300200241206a22094200370300200241106a41086a220a420037030020024200370310419001101e2201450d0220014100360200200141046a200241c0006a41dc0010cd051a20014188016a200429030037030020014180016a2007290300370300200141f8006a2008290300370300200141f0006a2009290300370300200141e8006a200a290300370300200120022903103703602001200228020022043602602002200136020020022002280204220b41016a36020420042001360200200441003b01042002210c20032f0106450d01200341e4006a2107200141086a210d200341086a21084100210a03402008290300210e200220053602a801200220063602a001200220072802003602a401200241c0006a200241a0016a10ea02200b2002280244470d0620012f01062209410a4b0d072002280248210f20022802402104200d20094103746a200e3703002001200941016a22094102746a41e0006a2004360200200120093b0106200420093b0104200420013602002002200f20022802086a41016a360208200841086a2108200741046a2107200a41016a220a20032f0106490d000c020b0b200241a0016a410272410041da0010cc051a41e000101e2209450d0220094100360200200941046a200241a0016a41dc0010cd051a2002420037024420022009360240200241c0006a210c20032f0106450d00200341086a210420092f0106220a41037420096a41086a2107410021010340200a20016a2208410b4f0d04200720042903003703002009200841016a3b01062002200141016a2201360248200441086a2104200741086a2107200120032f0106490d000b0b2000200c290200370200200041086a200c41086a28020036020020024180026a24000f0b4190014108102d000b41e0004108102d000b41a8a5c000412741a888c6001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000bd91807077f037e037f027e017f027e117f230041d0036b22012400024002400240024002404112101e2202450d00200241106a41002f00e0d5433b0000200241086a41002900d8d543370000200241002900d0d54337000020024112412410222202450d0120022000370012200141e0006a41186a22034200370300200141e0006a41106a22044200370300200141e0006a41086a22054200370300200142003703602002411a200141e0006a1001200141086a41186a2003290300370300200141086a41106a2004290300370300200141086a41086a200529030037030020012001290360370308200210202001410036028002200141086a412020014180026a100321032001280280022206417f460d032003450d03200120063602c403200120033602c00320014180026a200141c0036a10e90220012903a00322004202510d02200141e0006a20014180026a41d40010cd051a200141c8006a41086a200141e0026a290300370300200141d8006a200141e8026a280200360200200141386a41086a20014180036a280200360200200141286a41086a2001418c036a280200360200200120012903d802370348200120012903f802370338200120012902840337032820012802d402210720012802ec02210220012802f002210420012802f4022105200141b8036a2903002108200141b0036a290300210920012903a803210a200128029403210b200128029003210c02402006450d00200310200b200141086a412010040c040b41124101102d000b41244101102d000b41ceb8c4004133200141c8036a41fcbfc4004184b9c400102e000b420221000b024020004202510d004100210d0240024002400240024002400240024002400240024020094201520d0020014180026a200810b804200141e0006a41186a20014180026a41186a2203290000220e370300200141e0006a41106a20014180026a41106a2206290000220f370300200141e0006a41086a20014180026a41086a22102900002211370300200120012900800222123703602003200e3703002006200f3703002010201137030020012012370380024120101e220d450d01200d200129038002370000200d41186a2003290300370000200d41106a2006290300370000200d41086a20102903003700000b024020004201510d0020094201510d03200141e0006a41186a22034200370300200141e0006a41106a22064200370300200141e0006a41086a221042003703002001420037036041e2d5c300411a200141e0006a100120014180026a41186a200329030037030020014180026a41106a200629030037030020014180026a41086a2010290300370300200120012903603703800220014180026a412010040c090b20014180026a200a10b804200141e0006a41186a20014180026a41186a2203290300220e370300200141e0006a41106a20014180026a41106a2206290300220f370300200141e0006a41086a20014180026a41086a22102903002211370300200120012903800222123703602003200e3703002006200f3703002010201137030020012012370380024120101e2213450d012013200129038002370000201341186a2003290300370000201341106a2006290300370000201341086a201029030037000020014100360280022013412020014180026a100321032001280280022206417f460d042003450d042001200636024c2001200336024820014180026a200141c8006a10e90220012903a003220e4202510d03200141e0006a20014180026a41a00110cd051a20012903a803210f02402006450d00200310200b20014180026a200141e0006a41a00110cd051a200141a8036a200f370300200141b8036a2008370300200141b0036a20093703002001200e3703a003200141203602642001201336026020014180026a200141e0006a10c70420012802d402450d07200141f4026a2802002106200141ec026a28020021030240200141f0026a2802002210450d00201021140340200328026021032014417f6a22140d000b03402010417f6a22100d000b0b02402006450d00410021104100211441002115034020012015360254200120143602502001200336024c20012010360248200141e0006a200141c8006a106120012802682110200128026c210320012802702114200128027421152006417f6a22060d000b0b200341908cc500460d0720032802002110200310202010450d0720102802002106201010202006450d07200628020022030d050c060b41204101102d000b41204101102d000b200141e0006a41186a22034200370300200141e0006a41106a22064200370300200141e0006a41086a221042003703002001420037036041e2d5c300411a200141e0006a100120014180026a41186a200329030037030020014180026a41106a200629030037030020014180026a41086a201029030037030020012001290360370380022001200837036020014180026a4120200141e0006a410810050c050b41ceb8c4004133200141c8036a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b0340200610202003210620032802002210210320100d000b0b200610200b024020014194036a280200450d0020012802900310200b20131020410121160c010b41002113410021160b02400240200d0d00410021030c010b2001410036028002200d412020014180026a1003210302400240024002402001280280022206417f460d002003450d00200120063602c403200120033602c00320014180026a200141c0036a10e902024020012903a0034202510d00200141e0006a20014180026a41d40010cd051a200141c8006a41086a2210200141e0026a2214290300370300200141d8006a2215200141e8026a2217280200360200200141386a41086a221820014180036a2219280200360200200141286a41086a221a2001418c036a221b280200360200200120012903d802370348200120012903f802370338200120012902840337032820012802d402211c20012802ec02211d20012802f002211e20012802f402211f200141b8036a22202903002109200141b0036a22212903002108200129039803210e2001280294032122200128029003212302402006450d00200310200b20014180026a200141e0006a41d40010cd051a200141f4026a201f360200200141f0026a201e360200200141ec026a201d360200200141d8026a20012903483703002014201029030037030020172015280200360200200141f8026a200129033837030020192018280200360200201b201a2802003602002001201c3602d4022001200129032837028403202020093703002021200837030020014198036a200e37030020014194036a2022360200200141a8036a200a3703002001202336029003200120003703a003200141203602642001200d36026020014180026a200141e0006a10c70420012802d402450d0420012802f402210620012802ec022103024020012802f0022210450d00201021140340200328026021032014417f6a22140d000b03402010417f6a22100d000b0b02402006450d00410021104100211441002115034020012015360254200120143602502001200336024c20012010360248200141e0006a200141c8006a106120012802682110200128026c210320012802702114200128027421152006417f6a22060d000b0b200341908cc500460d0420032802002110200310202010450d0420102802002106201010202006450d04200628020022030d020c030b41ceb8c4004133200141c8036a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b0340200610202003210620032802002210210320100d000b0b200610200b0240200128029403450d0020012802900310200b200d1020410121030b02402016201345720d00201310200b0240200d452003720d00200d10200b2007410246211002402007417d71450d0002402004450d00200421030340200228026021022003417f6a22030d000b03402004417f6a22040d000b0b02402005450d0041002103410021044100210603402001200336026c20012004360268200120023602642001200636026020014180026a200141e0006a10612001280288022106200128028c022102200128029002210420012802940221032005417f6a22050d000b0b200241908cc500460d0020022802002104200210202004450d0020042802002103200410202003450d00024020032802002202450d000340200310202002210320022802002204210220040d000b0b200310200b20100d00200b450d004101200c20101b10200b200141d0036a24000bff13010b7f230041b0026b220224000240024002400240024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032000370012200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411a200241e0006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903603703082003102020024100360260200241086a4120200241e0006a10032106024020022802602207417f460d002006450d002002200736022c20022006360228200241e0006a200241286a10e90220022903800222004202510d03200241d0006a220820024190026a290300370300200241c8006a41106a220920024198026a2903003703002002200229038802370348200241d4016a2802002105200241cc016a280200210320022802f401210a20022802f001210b20022802d001210420022802b401210c02402007450d00200610200b200241286a41106a2008290300370300200241c0006a20092903003703002002200037032820022002290348370330200c450d0502402004450d00200421060340200328026021032006417f6a22060d000b03402004417f6a22040d000b0b02402005450d004100210441002106410021070340200220073602ac02200220063602a802200220033602a402200220043602a002200241e0006a200241a0026a106120022802682104200228026c210320022802702106200228027421072005417f6a22050d000b0b200341908cc500460d0520032802002105200310202005450d0520052802002104200510202004450d0520042802002203450d040340200410202003210420032802002205210320050d000c050b0b200241286a200010c6040c050b41124101102d000b41244101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b200410200b200a450d00200b10200b200241e0006a41106a200241286a41086a290300370300200241e0006a41186a200241286a41106a29030037030020024180016a200241286a41186a2903003703002002200229032837036820022001360260200241003602502002420137034820012802502104024002400240024002400240024002404104101e2203450d002002410436024c20022002280250220541046a36025020022003360248200320056a2004360000200141d4006a200241c8006a10cb04200128028401210502400240200228024c2204200228025022036b4104490d00200228024821040c010b200341046a22062003490d07200441017422032006200320064b1b22034100480d070240024020040d002003101e21040c010b200228024820042003102221040b2004450d022002200336024c20022004360248200228025021030b2002200341046a360250200420036a200536000002402001280288014101460d000240200228024c20022802502203460d00200228024821040c060b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c060b20054101102d000b02400240200228024c20022802502203460d00200228024821040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200228024820032005102221040b2004450d032002200536024c20022004360248200228025021030b2002200341016a360250200420036a41013a0000200128028c0121050240200228024c2204200228025022036b4104490d00200228024821040c040b200341046a22062003490d06200441017422032006200320064b1b22034100480d060240024020040d002003101e21040c010b200228024820042003102221040b02402004450d002002200336024c20022004360248200228025021030c040b20034101102d000b41044101102d000b20034101102d000b20054101102d000b2002200341046a360250200420036a20053600000c010b2002200341016a360250200420036a41003a00000b02400240024020012802104102470d000240200228024c20022802502203460d00200228024821040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c020b20054101102d000b02400240200228024c20022802502203460d00200228024821040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c010b20054101102d000b2002200341016a360250200420036a41013a00002001200241c8006a10fb030c010b2002200341016a360250200420036a41003a00000b024002400240200141386a2802004102470d000240200228024c20022802502203460d00200228024821040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c020b20054101102d000b02400240200228024c20022802502203460d00200228024821040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c010b20054101102d000b2002200341016a360250200420036a41013a0000200141286a200241c8006a10fb030c010b2002200341016a360250200420036a41003a00000b2001280290012105200220014198016a28020022033602a002200241a0026a200241c8006a10630240200228024c2204200228025022016b2003490d00200228024821040c020b200120036a22062001490d00200441017422012006200120064b1b22014100480d000240024020040d002001101e21040c010b200228024820042001102221040b02402004450d002002200136024c20022004360248200228025021010c020b20014101102d000b1027000b2002200120036a360250200420016a2005200310cd051a200241e0006a41086a200241c8006a109401200228024c2103200241086a4120200228024822012002280250100502402003450d00200110200b200241b0026a24000be70603087f017e047f230041b0026b220224000240024002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200037001f200241c8006a41186a22044200370300200241c8006a41106a22054200370300200241c8006a41086a220642003703002002420037034820034127200241c8006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903483703082003102020024100360248200241086a4120200241c8006a1003210320022802482204417f460d022003450d022002200436028c022002200336028802200241c8006a20024188026a10ef030240024020022903484202510d0020024198016a280200210720024190016a2802002105200228029c01210820024190026a20024188026a1093012002290390024202520d010240200541014b0d0020050e020100010b2008450d00200710200b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b200241e8016a41186a20024190026a41186a22062903002200370300200241e8016a41106a20024190026a41106a2209290300220a370300200241286a41086a220b20024190026a41086a220c290300370300200241286a41106a220d200a370300200241286a41186a220e2000370300200220022903900237032802402004450d00200310200b2006200e2903003703002009200d290300370300200c200b29030037030020022002290328370390020240200541014b0d0020050e020400040b2008450d03200710200c030b411f4101102d000b413e4101102d000b20024190026a200010f3030b200241c8006a200141800110cd051a200241e0016a200241a8026a290300370300200241d8016a200241a0026a290300370300200241d0016a20024198026a29030037030020022002290390023703c801200241203602ec012002200241086a3602e801200241c8006a200241e8016a10f40302400240200228029001220341014b0d00024020030e020200020b2002419c016a280200450d0120024198016a28020010200c010b2002419c016a280200450d0020024198016a28020010200b200241b0026a24000b880302037f067e230041d0006b220324002003410036023020012002200341306a10032101024002400240024020032802302202417f460d0020010d010b200042023703000c010b2003200236022c200320013602282002450d0120032002417f6a220436022c2003200141016a36022820012d0000220541014b0d0102400240024020050e020001000b42002106200441084f0d010c030b4201210620044108490d020b2003200241776a36022c2003200141096a36022820012900012107200341306a200341286a10930120032903304202510d01200341086a41186a200341306a41186a2903002208370300200341086a41106a200341306a41106a2903002209370300200341086a41086a200341306a41086a290300220a37030020032003290330220b3703082000200737030820002006370300200041106a200b370300200041186a200a370300200041206a2009370300200041286a2008370300200110200b200341d0006a24000f0b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000bf80101057f230041206b22022400024002404125101e2203450d002003411d6a41002900ddf042370000200341186a41002900d8f042370000200341106a41002900d0f042370000200341086a41002900c8f042370000200341002900c0f0423700002003412541ca0010222203450d0120032001370025200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412d20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41254101102d000b41ca004101102d000ba10203017f017e027f230041206b220224002002410036021020024201370308200029030021034101101e2104024002400240024020034201510d0002402004450d00200441003a0000200242818080801037020c2002200436020820022000290308370318200241186a21050c020b41014101102d000b2004450d01200441013a0000200242818080801037020c2002200436020820022000290308370318200241186a21050b20044101410910222204450d01200420052903003700012002200436020820024289808080900137020c200041106a200241086a109401200228020c210420012802002001280204200228020822002002280210100502402004450d00200010200b200241206a24000f0b41014101102d000b41094101102d000bfb07020e7f067e230041d0016b2202240002400240024002400240412a101e2203450d00200341286a41002f00c3ed423b0000200341206a41002900bbed42370000200341186a41002900b3ed42370000200341106a41002900abed42370000200341086a41002900a3ed423700002003410029009bed423700002003412a41d40010222203450d012003200137002a20024190016a41186a2204420037030020024190016a41106a2205420037030020024190016a41086a2206420037030020024200370390012003413220024190016a1001200241386a41186a2004290300370300200241386a41106a2005290300370300200241386a41086a20062903003703002002200229039001370338200310202002410036029001200241386a412020024190016a100321032002280290012204417f460d032003450d03200220043602042002200336020020024190016a200210f2032002290390014201510d02200241d8006a41306a2205200241c8016a290300370300200241d8006a41286a220620024190016a41306a2207290300370300200241d8006a41206a220820024190016a41286a2209290300370300200241d8006a41186a220a20024190016a41206a220b290300370300200241d8006a41106a220c20024190016a41186a220d290300370300200241d8006a41086a220e20024190016a41106a220f290300370300200220022903980137035802402004450d00200310200b200241306a20052903002201370300200241286a20062903002210370300200241206a20082903002211370300200241186a200a2903002212370300200241106a200c2903002213370300200241086a200e29030022143703002002200229035822153703002007200137030020092010370300200b2011370300200d2012370300200f201337030020024190016a41086a201437030020002015370300200041086a2014370300200041106a2013370300200041186a2012370300200041206a2011370300200041286a2010370300200041306a200137030020022015370390010c040b412a4101102d000b41d4004101102d000b41ceb8c4004133200241d8006a41fcbfc4004184b9c400102e000b20004200370300200041086a4200370300200041106a4200370300200041186a4200370300200041206a4200370300200041286a4200370300200041306a420037030020024190016a41306a200241306a29030037030020024190016a41286a200241286a29030037030020024190016a41206a200241206a29030037030020024190016a41186a200241186a29030037030020024190016a41106a200241106a29030037030020024190016a41086a200241086a29030037030020022002290300370390010b200241d0016a24000baf0601067f230041c0036b220224000240024002404118101e2203450d00200341106a410029008d8e46370000200341086a41002900858e46370000200341002900fd8d4637000020034118413010222203450d012003200137001820024188026a41186a2204420037030020024188026a41106a2205420037030020024188026a41086a2206420037030020024200370388022003412020024188026a1001200241b8016a41186a2004290300370300200241b8016a41106a2005290300370300200241b8016a41086a200629030037030020022002290388023703b801200310202002410036028802200241b8016a412020024188026a10032103024002402002280288022204417f470d00420221010c010b024020030d00420221010c010b200220043602dc01200220033602d80120024188026a200241d8016a10840420022903b80222014202510d0320024188016a41286a20024188026a41286a29030037030020024188016a41206a20024188026a41206a29030037030020024188016a41186a20024188026a41186a29030037030020024188016a41106a20024188026a41106a29030037030020024188016a41086a20024188026a41086a290300370300200220022903880237038801200241086a200241c0026a41800110cd051a2004450d00200310200b200241d8016a41086a220320024188016a41086a290300370300200241d8016a41106a220420024188016a41106a290300370300200241d8016a41186a220520024188016a41186a290300370300200241d8016a41206a220620024188016a41206a290300370300200241d8016a41286a220720024188016a41286a29030037030020022002290388013703d80120024188026a200241086a41800110cd051a024020014202510d00200020022903d801370300200041286a2007290300370300200041206a2006290300370300200041186a2005290300370300200041106a2004290300370300200041086a2003290300370300200041386a20024188026a41800110cd051a0b20002001370330200241c0036a24000f0b41184101102d000b41304101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bf00904067f047e017f017e230041a0016b2204240002400240024002404114101e2205450d00200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210a2005290000210b200510200c030b41144101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210b4200210a0b02400240024002404114101e2205450d00200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210c2005290000210d200510200c030b41144101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210d4200210c0b02404114101e2205450d00200d200b20027c220256200c200a20037c2002200b54ad7c220b56200c200b511b2106200b200c7d2002200d54ad7d2103200c200b7d200d200254ad7d210a2002200d7d210c200d20027d210d200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202107200441306a41186a22084200370300200441306a41106a22094200370300200441306a41086a220e42003703002004420037033020072005200441306a1001200441186a2008290300370300200441106a2009290300370300200441086a200e2903003703002004200429033037030002402004280224450d00200428022010200b200a200320061b210a200d200c20061b210d2006ad210f02402004412041e4fdc600410041001002417f470d00200441e8006a200b370300200441e0006a2002370300200441306a41086a41003a0000200441396a2001290000370000200441c1006a200141086a290000370000200441c9006a200141106a290000370000200441d1006a200141186a290000370000200441023a0030200441306a10770b20012002200b109303200441c0006a200a3703002004200d3703382004200f37033002402006450d002004200441386a36020020041094024200210c420021030b2000200c37030020002003370308200441a0016a24000f0b41144101102d000be50204017f017e027f037e230041206b2201240042002102200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a2003290300370300200120012903103703002001410036021020014110200141106a1003210302400240024020012802102204417f470d0042002102420021050c010b024020030d00420021050c010b20044110490d01200341086a290000210520032900002102200310200b2000280200220341086a290300210620032903002107200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a2003290300370300200120012903103703002001427f200520067c200220077c22062002542203ad7c22022003200220055420022005511b22031b3703182001427f200620031b37031020014110200141106a41101005200141206a24000f0b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000b990303027f017e017f02402001450d00034020002802b80121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200420002f0106490d00024002400240200041908cc500460d00200028020022010d012003ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862003ad842105410121060b200010202005a7210302402005422088a7220420012f0106490d00034002400240200128020022000d002003ad2105410021000c010b200641016a210620013301044220862003ad8421050b200110202005a72103200021012005422088a7220420002f01064f0d000b0b200441027420016a41bc016a2802002100410021042006417f6a2201450d01034020002802b80121002001417f6a22010d000c020b0b200441016a21040b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002203210120030d000b0b200010200b0b8b0701077f23004190026b2202240041002103200241003a002820012802042104417f21050240024002400240034020042003460d01200241086a20036a200128020022062d00003a00002001200420056a3602042001200641016a3602002002200341016a22073a00282005417f6a21052007210320074120470d000b200241e8006a41086a200241086a41086a290300370300200241e8006a41106a200241086a41106a290300370300200241e8006a41186a200241086a41186a2903003703002002200229030837036841002103200241003a0028200420076b2108200420056a2105034020082003460d02200241086a20036a200620036a220741016a2d00003a0000200120053602042001200741026a3602002002200341016a22073a00282005417f6a21052007210320074120470d000b20024188016a41086a200241086a41086a29030037030020024188016a41106a200241086a41106a29030037030020024188016a41186a200241086a41186a290300370300200220022903083703880141002103200241003a008802200620076a210603402005417f460d03200241e8016a20036a200620036a220741016a2d00003a0000200120053602042001200741026a3602002002200341016a22073a0088022005417f6a21052007210320074120470d000b200241a8016a41086a2201200241e8016a41086a290300370300200241a8016a41106a2203200241e8016a41106a290300370300200241a8016a41186a2205200241e8016a41186a290300370300200241086a41086a200241e8006a41086a290300370300200241086a41106a200241e8006a41106a290300370300200241086a41186a200241e8006a41186a290300370300200220022903e8013703a80120022002290368370308200241c0006a20024188016a41186a290300370300200241386a20024188016a41106a290300370300200241306a20024188016a41086a2903003703002002200229038801370328200241e0006a2005290300370300200241d8006a2003290300370300200241d0006a2001290300370300200220022903a801370348200041016a200241086a41e00010cd051a200041003a00000c030b0240200341ff0171450d00200241003a00280b200041013a00000c020b0240200341ff0171450d00200241003a00280b200041013a00000c010b0240200341ff0171450d00200241003a0088020b200041013a00000b20024190026a24000bee0102047f017e230041306b22012400200141186a41086a2202420037030020014200370318418cc6c1004115200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a10e402024020012802182204450d00200129021c210502402003450d00200210200b20002005370204200020043602000c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b20004100360208200042083702000b200141306a24000bcd1501047f20002d000021020240024002400240024002400240024002400240024002400240024002400240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0001210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0002210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0003210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0520012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0004210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0005210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0006210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0007210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0920012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0008210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0a20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0009210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000a210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000b210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0d20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000c210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000d210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000e210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d1020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000f21040240200141046a28020020052802002200460d00200128020021030c110b200041016a22032000490d00200041017422022003200220034b1b22024100480d000240024020000d002002101e21030c010b200128020020002002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021000c110b20024101102d000b1027000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b200141086a200041016a360200200320006a20043a00000ba9e9040f037f017e137f027e057f017e107f017e017f077e017f017e067f097e057f230041e00e6b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e14000102030405060708090a0b0c0d0e0f10111213000b20034194016a4101360200200342013702840120034184e6c60036028001200341043602840d2003418cb4c6003602800d2003200341800d6a3602900120034180016a419ca6c3001033000b200141226a2d00002104200141216a2d00002105200141e0006a2903002106200341d8096a41186a200141196a290000370300200341d8096a41106a200141116a290000370300200341d8096a41086a200141096a290000370300200320012900013703d809200341f8086a41086a2001412c6a2802003602002003200141246a2902003703f808200141306a2802002107200141346a2802002108200141386a28020021092001413c6a280200210a200141c0006a280200210b200141c4006a280200210c200141c8006a280200210d200141cc006a280200210e200141d0006a280200210f200141d4006a2802002110200141d8006a2802002111200141dc006a280200211241042113200241046a280000211420022d00002115200341d0066a41026a2216200241036a2d00003a0000200341e0036a41086a2217200241106a290000370300200341e0036a41106a2218200241186a290000370300200341e0036a41186a2219200241206a2d00003a0000200320022f00013b01d0062003200241086a2900003703e00341012102024020154101470d00200341800d6a41026a20162d00003a000020034180016a41086a201729030037030020034180016a41106a201829030037030020034180016a41186a20192d00003a0000200320032f01d0063b01800d200320032903e0033703800141002102201421130b410f2115200341f80b6a410f6a20034180016a41086a2903003700002003418f0c6a20034180016a41106a290300370000200341970c6a20034180016a41186a2d00003a0000200320032f01800d3b01f80b200320133600fb0b20032003290380013700ff0b2003200341800d6a41026a2d00003a00fa0b0240024020020d00200341b80a6a41186a200341f80b6a41186a290300370300200341b80a6a41106a200341f80b6a41106a290300370300200341b80a6a41086a200341f80b6a41086a290300370300200320032903f80b3703b80a4118101e2202450d15200241106a410029008d8e46370000200241086a41002900858e46370000200241002900fd8d4637000020024118413010222202450d1620022006370018200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00720024120200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d006200210200240200341d0066a412041e4fdc600410041001002417f470d00410f211541d8e7c20021140c770b4118101e2202450d17200241106a410029008d8e46370000200241086a41002900858e46370000200241002900fd8d4637000020024118413010222202450d1820022006370018200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00720024120200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d006200210202003410036028001200341d0066a412020034180016a10032102024002402003280280012213417f470d004202211a0c010b024020020d004202211a0c010b200320133602e403200320023602e00320034180016a200341e0036a10840420032903b001221a4202510d1a200341980b6a41286a20034180016a41286a290300370300200341980b6a41206a20034180016a41206a290300370300200341980b6a41186a20034180016a41186a290300370300200341980b6a41106a20034180016a41106a290300370300200341980b6a41086a20034180016a41086a29030037030020032003290380013703980b20034198056a200341b8016a41800110cd051a2013450d00200210200b200341e0076a41086a2202200341980b6a41086a290300370300200341e0076a41106a2213200341980b6a41106a290300370300200341e0076a41186a2215200341980b6a41186a290300370300200341e0076a41206a2214200341980b6a41206a290300370300200341e0076a41286a2216200341980b6a41286a290300370300200320032903980b3703e00720034180016a20034198056a41800110cd051a201a4202510d1a200341800d6a41286a2016290300370300200341800d6a41206a2014290300370300200341800d6a41186a2015290300370300200341800d6a41106a2013290300370300200341800d6a41086a2002290300370300200320032903e0073703800d200341e0036a20034180016a41800110cd051a2003201a3703b00d200341b80d6a200341e0036a41800110cd051a200341950e6a200341b80a6a412010cf05450d010240200341c40d6a280200450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f502412b211541e7e7c20021140c760b419affc600211402400240024002400240024020130e070001020304057b000b20032800ff0b211420032800830c21150c7a0b418cffc6002114410e21150c790b4180ffc6002114410c21150c780b41f7fec6002114410921150c770b41e4fec6002114411321150c760b41d3fec6002114411121150c750b200341f00d6a2802002102200341ec0d6a2802002113200341dc0d6a2802002115200341d00d6a280200211420032802e80d211620032802d80d211720032802cc0d21180240200341c40d6a280200450d0020032802c00d10200b02402014450d00201810200b02402015450d00201710200b20162013200210f502200341d0066a41086a22024200370300200342003703d0064186a3c300412a200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a100321020240024002402003280280012213417f460d002002450d0002402013450d0020022d0000221541014b0d004100211320150e020302030b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4193dac2002114412321150c760b410121130b200210204193dac20021144123211520134102460d742013450d744200211a200341d0066a41086a22024200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d1a2002290000211a200210200b2003201a3703800d200341013a00880d20034180016a2006200341800d6a10c803024002402003280280014101460d00200341f8016a2802002102200341f4016a2802002113200341f0016a2802002115200341e4016a2802002114200341e0016a2802002117200341d8016a2802002116200341d4016a28020021180240200341cc016a280200450d00200341c8016a28020010200b02402016450d00201810200b02402014450d00201710200b20152013200210f502200341013a00e8032003201a3703e003200341086a200341f8086a10850420032802082214450d01200328020c21150c760b20034188016a280200211520032802840121140c750b02402007450d00200341d0066a41086a22024200370300200342003703d00641dba3c300412a200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371200941ffff037122154d0d0041d5dac2002114411721150c760b20032f018401410020021b20136a41ffff037120154f0d0041ecdac2002114411621150c750b0240200a450d00200341d0066a41086a22024200370300200342003703d0064185a4c3004130200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371200c41ffff037122154d0d0041c8d9c2002114411d21150c760b20032f018401410020021b20136a41ffff037120154f0d0041e5d9c2002114411c21150c750b0240200d450d00200341d0066a41086a22024200370300200342003703d00641b5a4c300412b200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371200f41ffff037122154d0d004182dbc2002114411c21150c760b20032f018401410020021b20136a41ffff037120154f0d00419edbc2002114411b21150c750b02402010450d00200341d0066a41086a22024200370300200342003703d00641e0a4c300412b200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371201241ffff037122154d0d0041b9dbc2002114411c21150c760b20032f018401410020021b20136a41ffff037120154f0d0041d5dbc2002114411b21150c750b20034202370380012003201a3703880120034180016a10fc03211b2003280280092202417f4c0d1a20032802f8082116410121134101211502402002450d002002101e2215450d1c0b20152016200210cd05211510792114200341c8016a2012360200200341c4016a2011360200200341bc016a200f360200200341b8016a200e360200200341b0016a200c360200200341ac016a200b360200200341a4016a2009360200200341a0016a200836020020034180016a41186a200236020020034194016a2002360200200320053a00d101200341003a00d001200320143602cc01200320103602c0012003200d3602b4012003200a3602a8012003200736029c0120032015360290012003201b370388012003200637038001200341ea016a200341d8096a41186a290300370100200341e2016a200341e8096a290300370100200341da016a200341e0096a290300370100200341003a00f301200320043a00f201200320032903d8093701d201201a20034180016a10860402402002450d002002101e2213450d1d0b20132016200210cd0521144125101e2213450d1d2013411d6a41002900daee42370000201341186a41002900d5ee42370000201341106a41002900cdee42370000201341086a41002900c5ee42370000201341002900bdee42370000200342a5808080d004370284012003201336028001200320023602800d200341800d6a20034180016a10630240200328028401220720032802880122156b2002490d0020032802800121130c740b201520026a22132015490d5a2007410174220a2013200a20134b1b220a4100480d5a0240024020070d00200a101e21130c010b2003280280012007200a102221130b02402013450d002003200a360284012003201336028001200a21070c740b200a4101102d000b200141306a290300211a200141286a290300210620034198056a41186a200141196a29000037030020034198056a41106a200141116a29000037030020034198056a41086a200141096a2900003703002003200129000137039805200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a20061087042003280280014101460d70200341fb016a2d00002114200341fa016a2d00002116200341d9016a2d00002117200341d8016a2d00002118200341d4016a2802002119200341d0016a2802002109200341cc016a280200210e200341c8016a280200210a200341c4016a280200210c200341c0016a280200210b200341bc016a2802002107200341b8016a280200210f200341b4016a280200210820034180016a41306a2802002113200341ac016a280200211220034180016a41286a2802002110200341a4016a280200210220034180016a41206a28020021042003419c016a280200210d20034180016a41186a280200211120034180016a41106a290300211b200341d0066a41086a22154200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211502402003280280012205417f460d002015450d00200541074d0d1e201510200b200320063703800d200341013a00880d20034180016a201a200341800d6a10c8032003280280014101460d6f200341f8016a2802002115200341f4016a2802002105200341f0016a280200211c200341e4016a280200211d200341e0016a280200211e200341d8016a280200211f200341d4016a28020021200240200341cc016a280200450d00200341c8016a28020010200b0240201f450d00202010200b0240201d450d00201e10200b201c2005201510f502200320063703800d200341013a00880d200341c8016a2009360200200341c4016a200e360200200341bc016a200c360200200341b8016a200b360200200341b0016a200f360200200341ac016a2008360200200341a4016a2012360200200341a0016a201036020020034180016a41186a200436020020034194016a200d360200200320173a00d101200320183a00d001200320193602cc012003200a3602c001200320073602b401200320133602a8012003200236029c0120032011360290012003201b370388012003201a37038001200341ea016a20034198056a41186a290300370100200341e2016a200341a8056a290300370100200341da016a200341a0056a290300370100200320143a00f301200320163a00f20120032003290398053701d201200620034180016a108604200641011088040d6e201a200341800d6a1089040d6d20034190016a200637030020034188016a41013a0000200341163a00800120034180016a1077410021140c740b200141d0006a290300210620012d0001210a200341b80a6a41086a2001410c6a2802003602002003200141046a2902003703b80a200341980b6a41086a200141186a2902003703002003200141106a2902003703980b200341e0076a41086a200141286a2902003703002003200141206a2902003703e007200341e0036a41086a200141386a2902003703002003200141306a2902003703e00320034198056a41086a200141c8006a2902003703002003200141c0006a29020037039805200320063703d809200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a2006108704024002402003280280014101460d00200341cc016a280200211420034180016a41c8006a280200210220034180016a41c0006a280200210d200341bc016a2802002113200341b4016a280200211020034180016a41306a280200211520034180016a41286a2802002108200341a4016a280200210702402003419c016a280200450d0020034198016a28020010200b02402007450d002008450d00200710200b02402015450d002010450d00201510200b02402013450d00200d450d00201310200b02402002450d002014450d00200210200b20032802b80a2202450d01200341106a200341b80a6a10850420032802102214450d01200328021421150c6d0b200328028801211520032802840121140c6c0b024020032802980b22134101470d00200328029c0b450d00200341d0066a41086a22154200370300200342003703d00641dba3c300412a200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622151b220741ffff0371200341a40b6a28020041ffff037122144d0d0041d5dac2002114411721150c6d0b20032f018401410020151b20076a41ffff037120144f0d0041ecdac2002114411621150c6c0b024020032802e00722154101470d0020032802e407450d00200341d0066a41086a22074200370300200342003703d0064185a4c3004130200341d0066a1000200341f00c6a41086a2007290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622071b221441ffff0371200341ec076a28020041ffff0371220d4d0d0041c8d9c2002114411d21150c6d0b20032f018401410020071b20146a41ffff0371200d4f0d0041e5d9c2002114411c21150c6c0b024020032802e00322074101470d0020032802e403450d00200341d0066a41086a22144200370300200342003703d00641b5a4c300412b200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622141b220d41ffff0371200341ec036a28020041ffff037122104d0d004182dbc2002114411c21150c6d0b20032f018401410020141b200d6a41ffff037120104f0d00419edbc2002114411b21150c6c0b0240024002402003280298054101470d000240200328029c05220d0d00200341d8096a4102200341b80a6a200341980b6a200341e0076a200341e0036a20034198056a200a4102108a040c030b200341d0066a41086a22144200370300200342003703d00641e0a4c300412b200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622141b221041ffff0371200341a4056a28020041ffff037122084d0d0041b9dbc2002114411c21150c6f0b20032f018401410020141b20106a41ffff037120084f0d0141d5dbc2002114411b21150c6e0b200341d8096a4102200341b80a6a200341980b6a200341e0076a200341e0036a20034198056a200a4102108a040c010b200341d8096a4102200341b80a6a200341980b6a200341e0076a200341e0036a20034198056a200a4102108a04200341a0056a280200450d00200d10200b02402007450d0020032802e4032207450d00200341e8036a280200450d00200710200b02402015450d0020032802e4072215450d00200341e8076a280200450d00201510200b02402013450d00200328029c0b2213450d00200341a00b6a280200450d00201310200b4100211402402002450d0020032802bc0a450d00200210200b0c730b200141026a2d0000210a200141106a290300211a200141086a290300210620012d0001210d2003200141186a2903003703e00320034198056a41206a2213200241206a2d00003a000020034198056a41186a2215200241186a29000037030020034198056a41106a2207200241106a29000037030020034198056a41086a2214200241086a2900003703002003200229000037039805024002400240024020064201520d00200341800d6a41206a20132d00003a0000200341800d6a41186a2015290300370300200341800d6a41106a2007290300370300200341800d6a41086a201429030037030020032003290398053703800d20034180016a200341800d6a201a108b0402402003280280014101470d0020034188016a28020021150c020b200341dc016a2802002102200341d8016a2802002107410021140240200341d0016a280200221341014b0d0020130e020300030b02402002450d00200710200b0c020b200341800d6a41206a20132d00003a0000200341800d6a41186a2015290300370300200341800d6a41106a2007290300370300200341800d6a41086a201429030037030020032003290398053703800d20034180016a200341800d6a108c042003280280014101470d0220034180016a41086a28020021150b20032802840121140b20140d730b200341e0036a200d41c4a7c30041e08cc50041e08cc50041e08cc50041e08cc5004102200a108a04410021140c720b200141c8006a2903002106200141c0006a290300211a200141206a290300211b200141186a2903002121200141b0016a2f01002112200141ae016a2f01002104200141ac016a2f01002105200141a8016a280200211c200141a4016a280200211d200141a0016a280200211f2001419c016a280200211e20014198016a280200212020014194016a280200212220014190016a28020021232001418c016a280200212420014188016a280200212520014184016a280200212620014180016a2802002127200141fc006a2802002128200141f8006a2802002129200141f4006a280200212a200141f0006a2802002118200141ec006a280200210b200141e8006a2802002110200141e0006a2d0000210e200141dc006a2802002119200141d8006a2802002111200141d4006a2802002109200141d0006a2802002114200141386a2d00002116200141346a280200210c200141306a28020021172001412c6a280200210f200141286a280200210a200141086a2802002108200141046a280200210d2003200141396a2800003602800720032001413c6a280000360083072003200141e1006a2800003602f80b2003200141e4006a2800003600fb0b2001410c6a2802002107200141106a2802002113200141146a2802002115200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0402402003280280014101470d0020034180016a41086a280200211520032802840121140c690b200341d0066a41086a22024200370300200342003703d006418ba5c300412c200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800122024101461b222b41ffff0371201541ffff0371222c4d0d0041c8d9c2002114411d21150c690b024020032f018401410020024101461b202b6a41ffff0371202c4f0d0041e5d9c2002114411c21150c690b4102212c02400240200a4102470d004102212d0c010b2017410146212e200a410146212d201641ff0171410146212f0b0240024020144102470d000c010b201141014621302014410146212c200e41ff017141014621310b200320032800800d3602d80920032003280080013602f8082003200341800d6a41036a2800003600db09200320034180016a41036a2800003600fb08200320032800830736009b0b20032003280280073602980b200320032800fb0b3600e303200320032802f80b3602e00310792102024002400240024002400240200d450d004102212b200220084f0d010b024020104101470d004104212b200b450d010b42002132200341e0076a41086a4200370300200341e0076a41106a4100360200200320032802980b3602800d2003200328009b0b3600830d200320032802e00336029805200320032800e30336009b05200342003703e007200341d0066a41086a222b4200370300200342003703d00641dda8c4004114200341d0066a1000200341f0066a41086a202b290300370300200320032903d0063703f0062003410036028001200341f0066a411020034180016a1003212b02402003280280012233417f460d00202b450d0020334108490d21202b2900002132202b10200b200341b0016a2006370300200341a0016a20163a00002003419c016a200c36020020034198016a2017360200200341a4016a20032800830d360000200341c8016a200e3a0000200341c4016a2019360200200341c0016a2011360200200341bc016a2009360200200341b8016a20143602002003201b3703880120032021370380012003201a3703a8012003200f360294012003200a36029001200320032802800d3600a101200341d8016a20084100200d1b360200200341dc016a2002360200200341ec016a41908cc5003602002003418c026a200b36020020034194026a201336020020034198026a2015360200200341cc016a200328009b05360000200341f0016a20032903e007370300200341f8016a200341e0076a41086a29030037030020034180026a200341e0076a41106a280200360200200320023602d0012003200d4101733602d40120032018360284022003201036028802200320073602900220032003280298053600c901203220034180016a10b403200341d0066a41086a22024200370300200342003703d00641dda8c4004114200341d0066a1000200341f0066a41086a2002290300370300200320032903d0063703f0062003410036028001200341f0066a411020034180016a100321022003280280012213417f460d012002450d01024020134108490d002002290000213420021020203442017c21350c030b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b02402013450d00200710200b4134211541fde9c2002114202b417e6a22024101200241ff01714103491b41ff01710e03020375020b420121350b42002134200341d0066a41086a22024200370300200342003703d00641dda8c4004114200341d0066a1000200341f0066a41086a2002290300370300200320032903d0063703f0062003203537038001200341f0066a411020034180016a4108100520024200370300200342003703d00641d0a7c3004128200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d1f20022900002134200210200b200341d0066a41046a200341e0006a41046a2f01003b0100200320032802d8093602980b200320032800db0936009b0b200320032802f8083602b80a200320032800fb083600bb0a200320032801603602d0064126101e2202450d1f2002411e6a41002900e5ec42370000200241186a41002900dfec42370000200241106a41002900d7ec42370000200241086a41002900cfec42370000200241002900c7ec423700002002412641cc0010222202450d202010410146210a201d410146210d201e4101462110202241014621082024410146210e2026410146211120284101462116202a410146211720022034370026200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e0072002412e200341e0076a1001200341980c6a41186a2013290300370300200341980c6a41106a2015290300370300200341980c6a41086a2007290300370300200320032903e0073703980c2002102020034180016a200341980c6a4120108d04024020032903b8024202520d00200341800d6a2034108e040c6a0b200341800d6a41086a200341b8026a220241086a290300370300200341800d6a41106a200241106a290300370300200341800d6a41186a200241186a290300370300200320022903003703800d20032802b002211320032802a8022102024020032802ac022215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d004100211541002107410021140340200320153602ec03200320073602e803200320023602e403200320143602e00320034198056a200341e0036a106120032802a005211420032802a405210220032802a805210720032802ac0521152013417f6a22130d000b0b200241908cc500460d6920022802002115200210202015450d6920152802002113201510202013450d69201328020022020d210c680b412721154192e8c20021140c720b41b9e8c20021140c710b200141086a2903002106200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c042003280280014101460d0d20034180016a2006108f042003280280014101460d6c200341b4036a2802002110200341b0036a280200210d200341ac036a2802002113200341b8026a280200210a200341b4026a2802002107200341b0026a2802002102200341d4036a2802002111200341d0036a280200211720034194036a2802002116200329038801211a4112101e2215450d20201541106a41002f00e0d5433b0000201541086a41002900d8d543370000201541002900d0d54337000020154112412410222215450d212015201a370012200341e0076a41186a22144200370300200341e0076a41106a22084200370300200341e0076a41086a220b4200370300200342003703e0072015411a200341e0076a1001200341d0066a41186a2014290300370300200341d0066a41106a2008290300370300200341d0066a41086a200b290300370300200320032903e0073703d0062015102002400240200341d0066a412041e4fdc600410041001002417f460d0020034180016a201a109004200341800d6a41066a20034180016a41d00010cd051a20034198026a220e290300211b20034194026a220928020021182003418c026a220c280200210f200341f4016a2802002108200341f0016a22122802002114200341ec016a2204280200211520032802900221192003280288022105200328028402211c20032802d401210b20032802d001211d20034198056a200341800d6a41d60010cd051a200341e0036a20034198056a41066a41d00010cd051a200b0d011079211520034180016a200341e0036a41d00010cd051a200341800d6a41206a200341e0036a41206a290300370300200341800d6a41186a200341e0036a41186a290300370300200341800d6a41106a200341e0036a41106a290300370300200341800d6a41086a200341e0036a41086a290300370300200341800d6a41306a20034180016a41306a290300370300200341800d6a41386a20034180016a41386a290300370300200341800d6a41c0006a20034180016a41c0006a290300370300200341800d6a41c8006a20034180016a41c8006a290300370300200320032903e0033703800d200320032903a8013703a80d20034180016a200341800d6a41d00010cd051a20124200370300200441908cc500360200200341dc016a2015360200200341d8016a41003a0000200341f8016a420037030020034180026a4100360200200e201b3e020020092018360200200c200f360200200341013602d4012003201d3602d001200320193602900220032005360288022003201c36028402201a20034180016a10b40320034180016a41106a200637030020034180016a41086a41053a0000200341163a00800120034180016a10772016450d660240200d450d00200d21150340201328026021132015417f6a22150d000b0340200d417f6a220d0d000b0b02402010450d0041002115410021144100210d03402003201536028c0d200320143602880d200320133602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c012113200328029001211420032802940121152010417f6a22100d000b0b201341908cc500460d6620132802002114201310202014450d6620142802002115201410202015450d66201528020022130d210c650b4116211541dbe0c20021140c630b02402014450d002014210b034020152802602115200b417f6a220b0d000b03402014417f6a22140d000b0b02402008450d00410021144100210b4100210e03402003200e36028c0d2003200b3602880d200320153602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012115200328029001210b200328029401210e2008417f6a22080d000b0b201541908cc500460d6120152802002108201510202008450d6120082802002114200810202014450d61201428020022150d220c600b200141086a2903002106200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c042003280280014101460d2220034180016a2006108f042003280280014101460d6b200341b4036a2802002110200341b0036a280200210d200341ac036a2802002113200341b8026a280200210a200341b4026a2802002107200341b0026a2802002102200341d4036a2802002111200341d0036a280200211720034194036a2802002116200329038801211a4112101e2215450d23201541106a41002f00e0d5433b0000201541086a41002900d8d543370000201541002900d0d54337000020154112412410222215450d242015201a370012200341e0076a41186a22144200370300200341e0076a41106a22084200370300200341e0076a41086a220b4200370300200342003703e0072015411a200341e0076a1001200341d0066a41186a2014290300370300200341d0066a41106a2008290300370300200341d0066a41086a200b290300370300200320032903e0073703d00620151020024002400240200341d0066a412041e4fdc600410041001002417f460d0020034198056a201a10900420034180016a41066a20034198056a41a00110cd051a200341800d6a20034180016a41a60110cd051a200341e0036a200341800d6a41066a41a00110cd051a20032802b4044101470d5f200341b8046a2d000041037441f801712118200341bc046a2802002119200341d4046a2802000d0141908cc50021150c020b4116211541dbe0c20021140c5f0b2003200341cc046a36028801200320032802cc04360284012003200341d0046a28020036028001200341800d6a20034180016a10ea0220032802800d211520032802880d2114024020032802840d2208450d002008210b034020152802602115200b417f6a220b0d000b03402008417f6a22080d000b0b2014450d00410021084100210b4100210e03402003200e36028c0d2003200b3602880d200320153602840d200320083602800d20034180016a200341800d6a10612003280288012108200328028c012115200328029001210b200328029401210e2014417f6a22140d000b0b41808408201876210b201541908cc500460d5b20152802002108201510202008450d5b20082802002114200810202014450d5b201428020022150d250c5a0b200141206a2903002132200141186a2903002134200141306a29030021352001412c6a2802002104200141286a2802002112200141106a2903002121200341e00c6a41086a2001410c6a2802003602002003200141046a2902003703e00c200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0420034180016a41086a290300211b024002402003280280014101460d0020034180016a2021108f042003280280014101460d01200341b8026a280200210e200341b4026a280200210b200341b0026a280200210d200341a0026a28020021052003419c026a280200212320034190026a280200211c2003418c026a280200212420034180026a2802002125200341fc016a2802002122200341f8016a280200211e200341f4016a2802002120200341f0016a280200211d200341ec016a280200211f200341d4036a280200210a200341d0036a2802002110200329038801213620034194036a280200450d54200341b4036a2802002113200341ac036a28020021020240200341b0036a2802002215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d004100211541002107410021140340200320153602a405200320073602a0052003200236029c052003201436029805200341800d6a20034198056a106120032802880d2114200328028c0d210220032802900d210720032802940d21152013417f6a22130d000b0b200241908cc500460d5420022802002115200210202015450d5420152802002113201510202013450d54201328020022020d270c530b2003280284012114201ba721150c590b200328028801211520032802840121140c580b200141086a2903002106200341d8096a41026a2215200241036a2d00003a0000200341e0076a41086a220d200241106a290000370300200341e0076a41106a2210200241186a290000370300200341e0076a41186a2208200241206a2d00003a0000200320022f00013b01d8092003200241086a2900003703e0074104210a200241046a280000210e20022d0000210b200320063703980b20034180016a200341980b6a10c703410121142003280280014101460d69200341e0026a2802002111200341dc026a2802002116200341d8026a2802002117200341d4026a2802002118200341800d6a41306a200341b8016a290300370300200341800d6a41286a20034180016a41306a290300370300200341800d6a41206a20034180016a41286a290300370300200341800d6a41186a20034180016a41206a290300370300200341800d6a41106a20034180016a41186a290300370300200341800d6a41086a20034180016a41106a29030037030020032003290388013703800d200341f8026a2802002107200341f4026a2802002113200341f0026a2802002102200341d0066a41026a20152d00003a0000200320032f01d8093b01d006200341e0036a41086a200d290300370300200341e0036a41106a2010290300370300200341e0036a41186a20082d00003a0000200320032903e0073703e0030240200b41ff01714101470d00200341b80a6a41026a200341d0066a41026a2d00003a000020034180016a41086a200341e0036a41086a29030037030020034180016a41106a200341e0036a41106a29030037030020034180016a41186a200341e0036a41186a2d00003a0000200320032f01d0063b01b80a200320032903e0033703800141002114200e210a0b410f2115200341980c6a410f6a20034180016a41086a290300370000200341af0c6a20034180016a41106a290300370000200341b70c6a20034180016a41186a2d00003a0000200320032f01b80a3b01980c2003200a36009b0c200320032903800137009f0c2003200341ba0a6a2d00003a009a0c02402014450d00419affc6002114024002400240024002400240200a0e0700010203040556000b200328009f0c211420032800a30c21150c550b418cffc6002114410e21150c540b4180ffc6002114410c21150c530b41f7fec6002114410921150c520b41e4fec6002114411321150c510b41d3fec6002114411121150c500b20034198056a41186a200341980c6a41186a29030037030020034198056a41106a200341980c6a41106a29030037030020034198056a41086a200341980c6a41086a290300370300200320032903980c3703980541dedcc20021144117211520034198056a200341800d6a41186a412010cf050d4f4124211541b4e7c200211420032903900d201820172016201110910441ff01710e064c4b4a494f4d4c0b2003200141086a290300220637039805200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0402402003280280014101460d0020034180016a20034198056a10c7032003280280014101460d69200341f8026a2802002107200341f4026a2802002113200341f0026a28020021024124211541b4e7c200211402400240024002400240024020034198016a290300200341c4026a280200200341c8026a280200200341cc026a280200200341d0026a28020010910441ff01710e06010203040500010b20034190016a200637030020034188016a410c3a0000200341163a00800120034180016a107702402013450d00201321150340200228026021022015417f6a22150d000b03402013417f6a22130d000b0b02402007450d0041002113410021154100211403402003201336028c0d200320153602880d200320023602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012102200328029001211520032802940121132007417f6a22070d000b0b410021140240200241908cc500470d000c730b2002280200211520021020024020150d000c730b2015280200211320151020024020130d000c730b20132802002202450d4d0340201310202002211320022802002215210220150d000c4e0b0b4117211541e0e5c20021140c030b4114211541e6e6c20021140c020b411f211541fae6c20021140c010b411b21154199e7c20021140b02402013450d002013210a034020022802602102200a417f6a220a0d000b03402013417f6a22130d000b0b02402007450d00410021134100210a4100210d03402003201336028c0d2003200a3602880d200320023602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c012102200328029001210a20032802940121132007417f6a22070d000b0b200241908cc500460d6d20022802002107200210202007450d6d20072802002113200710202013450d6d20132802002202450d470340201310202002211320022802002207210220070d000c480b0b20034180016a41086a28020021150c690b200141e8006a2903002132200141e0006a2903002134200141d0006a2903002135200141c8006a2903002137200141d8006a290300211b200141c0006a2903002121200141386a290300211a200141306a2903002106200341b80a6a41186a200141196a290000370300200341b80a6a41106a200141116a290000370300200341b80a6a41086a200141096a290000370300200320012900013703b80a200141246a2802002111200141286a28020021082001412c6a280200211641042113200241046a280000210720022d00002115200341d0066a41026a2214200241036a2d00003a0000200341e0036a41086a220a200241106a290000370300200341e0036a41106a220d200241186a290000370300200341e0036a41186a2210200241206a2d00003a0000200320022f00013b01d0062003200241086a2900003703e00341012102024020154101470d00200341800d6a41026a20142d00003a000020034180016a41086a200a29030037030020034180016a41106a200d29030037030020034180016a41186a20102d00003a0000200320032f01d0063b01800d200320032903e0033703800141002102200721130b410f211520034180076a410f6a20034180016a41086a29030037000020034197076a20034180016a41106a2903003700002003419f076a20034180016a41186a2d00003a0000200320032f01800d3b01800720032013360083072003200329038001370087072003200341800d6a41026a2d00003a0082070240024020020d00200341980b6a41186a20034180076a41186a290300370300200341980b6a41106a20034180076a41106a290300370300200341980b6a41086a20034180076a41086a29030037030020032003290380073703980b20034180016a200610a703024020032903b0014202510d00200328028001210220034198056a20034180016a41047241b40110cd051a200320023602800d200341800d6a41047220034198056a41b40110cd051a200341950e6a200341980b6a412010cf0521020240200341c40d6a280200450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5022002450d020b20034180016a200610a703024020032903b0014202510d00200328028001210220034198056a20034180016a41047241b40110cd051a200320023602800d200341800d6a41047220034198056a41b40110cd051a200341f50d6a200341980b6a412010cf0521020240200341c40d6a280200450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5022002450d020b4133211541fceac20021140c460b419affc600211402400240024002400240024020130e070001020304054b000b2003280087072114200328008b0721150c4a0b418cffc6002114410e21150c490b4180ffc6002114410c21150c480b41f7fec6002114410921150c470b41e4fec6002114411321150c460b41d3fec6002114411121150c450b20034180016a201a108f0402402003280280014101470d00200328028801211520032802840121140c450b200341b4036a280200210a200341b0036a2802002107200341ac036a2802002102200341b8026a280200210e200341b4026a280200210b200341b0026a2802002113200341d4036a2802002118200341d0036a280200211920034194036a2802002110200329038801213842002136200341d0066a41086a22154200370300200342003703d00641d5efc2004121200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211502402003280280012214417f460d002015450d0020144108490d2420152900002136201510200b200341033a00880d200320363703800d20034180016a2006200341800d6a10c803410121172003280280014101460d41200341f8016a280200210d200341f4016a2802002114200341f0016a2802002115200341e4016a2802002117200341e0016a280200210c200341d8016a2802002109200341d4016a280200210f0240200341cc016a280200450d00200341c8016a28020010200b02402009450d00200f10200b2017450d42200c10200c420b200141306a2903002121200141286a2903002106200341e0006a41186a200141196a290000370300200341e0006a41106a200141116a290000370300200341e0006a41086a200141096a29000037030020032001290001370360200241026a2f00002115200241046a2800002107200241186a28000021142002411c6a350000211a200241206a310000211b20022d0001210a20022d0000211320034180016a41086a220d200241106a2900003703002003200241086a2900003703800102400240024020134101470d002003201a201b42208684221a3e00fb03200341ff036a201a4220883c0000200341ef036a200d290300370000200320073600e303200320153b00e1032003200a3a00e00320032003290380013700e703200320143600f70320034180016a200610a70320032903b0014202510d01200328028001210220034198056a20034180016a41047241b40110cd051a200320023602800d200341800d6a41047220034198056a41b40110cd051a200341c40d6a28020021020240200341950e6a200341e0036a412010cf050d0002402002450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5024124101e2202450d27200241206a41002800818f46360000200241186a41002900f98e46370000200241106a41002900f18e46370000200241086a41002900e98e46370000200241002900e18e463700002002412441c80010222202450d2820022021370025200241033a00244200211a200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e0072002412d200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210202003410036028001200341d0066a412020034180016a1003210202402003280280012213417f460d002002450d0020134108490d2a2002290000211a200210200b201a2006510d034120211541bbe0c20021140c6e0b02402002450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5024128211541d4eac20021140c6d0b410f211541b1eac20021140c6c0b4114211541c0eac20021140c6b0b411f101e2202450d26200241176a41002900a6ef42370000200241106a410029009fef42370000200241086a4100290097ef423700002002410029008fef423700002002411f413e10222202450d272002202137001f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024127200341e0076a100120034180076a41186a201329030037030020034180076a41106a201529030037030020034180076a41086a2007290300370300200320032903e0073703800720021020200341003602800120034180076a412020034180016a100321022003280280012214417f460d282002450d28200320143602d40c200320023602d00c20034180016a200341d00c6a10ef030240024020032903800122064202510d00200341980c6a41086a220a20034180016a41106a290300370300200341b80a6a41086a220d20034180016a41246a290200370300200341b80a6a41106a221020034180016a412c6a290200370300200341b80a6a41186a2208200341b4016a29020037030020032003290388013703980c2003200329029c013703b80a20034180016a41186a2802002113200341c0016a290300211a200341c8016a2802002115200341d0016a280200210b20032802bc01210720032802cc01210e20032802d401211120034198056a41206a2216200341f8016a29030037030020034198056a41186a2217200341f0016a29030037030020034198056a41106a2218200341e8016a29030037030020034198056a41086a2219200341e0016a2903003703002003200341d8016a29030037039805200341980b6a200341d00c6a10930120032903980b4202520d010240201541014b0d0020150e020100010b2011450d00200b10200b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b200341d0066a41086a2209200a290300370300200341d8096a41086a220a200d290300370300200341d8096a41106a220d2010290300370300200341d8096a41186a22102008290300370300200341e0076a41086a22082019290300370300200341e0076a41106a22192018290300370300200341e0076a41186a22182017290300370300200341e0076a41206a22172016290300370300200320032903980c3703d006200320032903b80a3703d80920032003290398053703e007200341e0036a41086a22162008290300370300200341e0036a41106a22082019290300370300200341e0036a41186a22192018290300370300200341e0036a41206a22182017290300370300200341f00c6a41086a2009290300370300200320032903e0073703e003200320032903d0063703f00c200341f8086a41186a2010290300370300200341f8086a41106a200d290300370300200341f8086a41086a200a290300370300200320032903d8093703f808200320113602880d2003200b3602840d2003200e3602800d200341800d6a412c6a2018290300370200200341800d6a41246a20192903003702002003419c0d6a2008290300370200200341940d6a2016290300370200200320032903e00337028c0d02402014450d00200210200b200341e00c6a41086a200341f00c6a41086a290300370300200341f80b6a41086a200341f8086a41086a290300370300200341f80b6a41106a200341f8086a41106a290300370300200341f80b6a41186a200341f8086a41186a29030037030020034198056a41086a200341800d6a41086a29020037030020034198056a41106a200341800d6a41106a29020037030020034198056a41186a200341800d6a41186a29020037030020034198056a41206a200341800d6a41206a29020037030020034198056a41286a200341800d6a41286a29020037030020034198056a41306a200341800d6a41306a280200360200200320032903f00c3703e00c200320032903f8083703f80b200320032902800d370398050c3f0b200141286a2903002106200341980c6a41186a200141196a290000370300200341980c6a41106a200141116a290000370300200341980c6a41086a200141096a290000370300200320012900013703980c200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a2006108b0402402003280280014101470d00200328028801211520032802840121140c6a0b200341dc016a2802002107200341d8016a2802002110200341d0016a280200211302402003290388014201520d0020034180016a41106a290300211a200341b80a6a41186a200341980c6a41186a290300370300200341b80a6a41106a200341980c6a41106a290300370300200341b80a6a41086a200341980c6a41086a290300370300200320032903980c3703b80a2003201a3703f80b4123101e2202450d292002411f6a41002800ddf041360000200241186a41002900d6f041370000200241106a41002900cef041370000200241086a41002900c6f041370000200241002900bef0413700002002412341c60010222202450d2a2002201a370023200341d8096a41186a22154200370300200341d8096a41106a22144200370300200341d8096a41086a220a4200370300200342003703d8092002412b200341d8096a1001200341f8086a41186a2015290300370300200341f8086a41106a2014290300370300200341f8086a41086a200a290300370300200320032903d8093703f808200210200240200341f8086a412041e4fdc600410041001002417f460d004123101e2202450d2c200241002900bef0413700002002411f6a41002800ddf041360000200241186a41002900d6f041370000200241106a41002900cef041370000200241086a41002900c6f04137000020032903f80b211a2002412341c60010222202450d2d2002201a370023200341d8096a41186a22154200370300200341d8096a41106a22144200370300200341d8096a41086a220a4200370300200342003703d8092002412b200341d8096a1001200341f8086a41186a2015290300370300200341f8086a41106a2014290300370300200341f8086a41086a200a290300370300200320032903d8093703f808200210202003410036028001200341f8086a412020034180016a100321022003280280012214417f460d3e2002450d3e2003201436029c05200320023602980520034180016a20034198056a10bb0320032802c00122154102460d2e200341800d6a41086a200341d8016a290300370300200341900d6a200341e0016a290300370300200341800d6a41186a200341e8016a2903003703002003200341d0016a2903003703800d20034180016a41186a290300213220034180016a41086a290300211b200341cc016a280200210f200341c8016a28020021092003290390012121200329038001211a20032802c401210c20032802bc01211920032802b801211820032802b401211720032802b001211620032802ac01211120032802a801210e20032802a401210b20032802a00121082014450d3f200210200c3f0b200341033a00800141b8a9c300412f20034180016a41e8a9c30041f8a9c300102e000b419ce0c2002114411f21150240201341014b0d00024020130e026b006b0b2007450d6a201010200c6a0b2007450d69201010200c690b200141106a2903002106200341e0036a41086a2001410c6a2802003602002003200141046a2902003703e003200320063703e00720034198056a41206a200241206a2d00003a000020034198056a41186a200241186a29000037030020034198056a41106a200241106a29000037030020034198056a41086a200241086a290000370300200320022900003703980520034180016a20034198056a2006108b0402402003280280014101470d0020032802880121152003280284012102024020032802e4030d00200221140c6a0b20032802e0031020200221140c690b200341800d6a20034180016a41086a41800110cd051a200341e0076a200341800d6a4101200341e0036a1092040240024020032802c80d220241014b0d00024020020e020200020b200341d40d6a280200450d01200341d00d6a28020010200c010b200341d40d6a280200450d00200341d00d6a28020010200b20032802e403450d3a20032802e00310200c3a0b200141106a2903002106200341b80a6a41086a2001410c6a2802003602002003200141046a2902003703b80a200320063703d809200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c040240024002402003280280014101460d0020034180016a20032903d80910d6022003280280014101470d0220032802880121150c010b20034180016a41086a28020021150b20032802840121020c390b200328028801210220034198056a2003418c016a41c40010cd051a200341e0076a41086a221520034180016a41e8006a290300370300200341e0076a41106a221420034180016a41f0006a290300370300200341e0076a41186a220a20034180016a41f8006a290300370300200341e0076a41206a220d20034180026a290300370300200320034180016a41e0006a2903003703e007200341dc016a280200211320034180016a41d8006a280200210720034180016a41d0006a2802000d3720034180016a41d4006a2802002110200341e0036a20034198056a41c40010cd051a200341980b6a41206a2208200d290300370300200341980b6a41186a220d200a290300370300200341980b6a41106a220a2014290300370300200341980b6a41086a22142015290300370300200320032903e0073703980b200320023602800d200341800d6a410472200341e0036a41c40010cd051a200341800d6a41d4006a2013360200200341800d6a41d0006a2007360200200341cc0d6a2010360200200341800d6a41d8006a20032903980b370300200341800d6a41e0006a2014290300370300200341800d6a41e8006a200a290300370300200341800d6a41f0006a200d290300370300200341800d6a41f8006a2008290300370300200341003602c80d20032802c00a2102200341d0066a41086a22134200370300200342003703d00641eea5c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622131b221541ffff0371200241ffff037122024d0d0041f8dec2002102412821150c390b20032f018401410020131b20156a41ffff037120024f0d3641d1dec2002102412721150c380b200141286a2903002106200341980d6a200141196a29000037030041112115200341800d6a41106a200141116a290000370300200341800d6a41086a200141096a290000370300200320012900013703800d41d3fec600211420022d00000d66200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d00201341074d0d2b20021020411b2115419adcc20021140c670b4200211a200341d0066a41086a22024200370300200342003703d0064188aac300411e200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d2c2002290000211a200210200b200341023a00e8032003201a3703e003200341023a00a0052003201a3703980520034180016a200620034198056a10c80302402003280280014101470d00200328028801211520032802840121140c670b200341f8016a280200210d200341f4016a280200210a200341f0016a2802002114200341e4016a2802002107200341e0016a280200210e200341d8016a2802002115200341d4016a280200210b200341cc016a2802002113200341c8016a280200210810792102200341a4016a200341800d6a41086a290300370200200341ac016a200341800d6a41106a290300370200200341b4016a200341980d6a290300370200200341003602940120032002360290012003420037038001200320032903800d37029c01201a20034180016a109304200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a22102002290300370300200320032903d0063703f00c2003201a37038001200341f00c6a411020034180016a4108100520024200370300200342003703d0064188aac300411e200341d0066a100020102002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012210417f460d002002450d00024020104108490d002002290000211b20021020201b42017c211b0c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4201211b0b200341d0066a41086a22024200370300200342003703d0064188aac300411e200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003201b37038001200341f00c6a411020034180016a410810052006200341e0036a108904450d3441cda6c300412141a8aac3001028000b20022d00000d32200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012213417f460d002002450d00024020134108490d00200229000021062002102020034180016a2006108001200341800d6a41206a200341b4016a2202290200221a370300200341800d6a41186a200341ac016a2213290200221b370300200341800d6a41106a200341a4016a22152902002221370300200341800d6a41086a2003419c016a2902002232370300200320032902940122343703800d20032802900121072003290388012135200329038001213720034198056a41206a2214201a37030020034198056a41186a220a201b37030020034198056a41106a220d202137030020034198056a41086a2032370300200320343703980520064102108804450d024180a7c300412341b8aac3001028000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41b5dcc2002114411721150c660b20034180016a41186a10793602002015200d2903003702002013200a290300370200200220142903003702002003410136029401200320073602900120032035370388012003203737038001200320032903a00537029c01200620034180016a109304200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d00201341074d0d2c20021020200341f00c6a411010040b20034190016a200637030020034188016a41033a0000200341163a00800120034180016a1077410021140c650b20012d00012113200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0420034180016a41086a210202402003280280014101460d00200341d0066a41086a22154200370300200342003703d0064186a3c300412a200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c200320133a008001200341f00c6a411020034180016a4101100520034189016a20133a0000200241113a0000200341163a00800120034180016a1077410021140c650b2002280200211520032802840121140c640b20022d00000d30200141106a290300211a200141086a290300211b42002106200341d0066a41086a22024200370300200342003703d00641f8a7c3004118200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d2b20022900002106200210200b410f101e2202450d2b200241076a41002900d4ca40370000200241002900cdca403700002002410f411e10222202450d2c2002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210202003410036028001200341d0066a412020034180016a100321022003280280012213417f460d2e2002450d2e200320133602840d200320023602800d20034180016a200341800d6a10ae0320032903900122214204510d2d20034198056a41086a200341b8016a290300370300200341a8056a200341c0016a290300370300200341b0056a200341c8016a2903003703002003200341b0016a2903003703980520034180016a41086a290300213420032903800121322013450d2f200210200c2f0b20034180016a41086a28020021150c5f0b41184101102d000b41304101102d000b41184101102d000b41304101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41e988c700412b41d4aec6001028000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b102c000b20024101102d000b20024101102d000b41254101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41264101102d000b41cc004101102d000b0340201310202002211320022802002215210220150d000c470b0b0340201510202013211520132802002214211320140d000c440b0b41124101102d000b41244101102d000b0340201410202015211420152802002208211520080d000c3e0b0b20034180016a41086a28020021150c490b41124101102d000b41244101102d000b0340201410202015211420152802002208211520080d000c350b0b0340201310202002211320022802002215210220150d000c2c0b0b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41244101102d000b41c8004101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b411f4101102d000b413e4101102d000b4200211a200341ac0c6a420037020041002115200341980c6a411c6a4100360200200341ac016a4200370200200341a4016a420037020020034180016a411c6a4200370200200342003702a40c200341f80b6a41086a200341980c6a41086a290200370300200341f80b6a41106a200341980c6a41106a290200370300200341f80b6a41186a200341980c6a41186a2902003703002003420037029401200320032902980c3703f80b20034198056a41306a20034180016a41306a28020036020020034198056a41286a20034180016a41286a29020037030020034198056a41206a20034180016a41206a29020037030020034198056a41186a20034180016a41186a29020037030020034198056a41106a20034180016a41106a29020037030020034198056a41086a20034180016a41086a29020037030020032003290280013703980541022113420021060c160b41234101102d000b41c6004101102d000b41234101102d000b41c6004101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b410f4101102d000b411e4101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b420421210b200320063703980b024002400240024002400240410f101e2202450d00200241076a41002900d4ca40370000200241002900cdca403700002002410f411e10222202450d012002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d8096a41186a2013290300370300200341d8096a41106a2015290300370300200341d8096a41086a2007290300370300200320032903e0073703d80920021020200341d8096a412041e4fdc600410041001002417f460d1a410f101e2202450d02200241002900cdca40370000200241076a41002900d4ca4037000020032903980b21062002410f411e10222202450d0342002034202142045122131b201a7c4200203220131b221a201b7c221b201a54ad7c211a2002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d0062002102020034180016a200341d0066a10a903024002400240024020032903d0014202510d002003290390012106200341800d6a41086a200341b8016a290300370300200341800d6a41106a200341c0016a290300370300200341800d6a41186a200341c8016a290300370300200320032903b0013703800d20032903a801212120032903a0012132200329039801213420064204520d01200341900c6a4100360200200341880c6a4200370300200342003703800c420321060c020b200341f80b6a41186a2202410036020020034198056a41086a420037030020034198056a41106a420037030020034198056a41186a2002290300370300200320032903f80b37039805420321060c020b200341f80b6a41186a200341800d6a41186a290300370300200341f80b6a41106a200341800d6a41106a290300370300200341f80b6a41086a200341800d6a41086a290300370300200320032903800d3703f80b0b20034198056a41086a200341f80b6a41086a29030037030020034198056a41106a200341f80b6a41106a29030037030020034198056a41186a200341f80b6a41186a290300370300200320032903f80b370398050b200341e0036a41186a20034198056a41186a2903002235370300200341e0036a41106a20034198056a41106a2903002237370300200341e0036a41086a20034198056a41086a2903002236370300200320032903980522393703e003200341a80d6a2021370300200341a00d6a2032370300200341b00d6a2039370300200341b80d6a2036370300200341c00d6a2037370300200341c80d6a20353703002003201a3703880d2003201b3703800d200320343703980d200320063703900d410f101e2202450d04200241002900cdca40370000200241076a41002900d4ca4037000020032903980b21062002410f411e10222202450d052002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d8096a41186a2013290300370300200341d8096a41106a2015290300370300200341d8096a41086a2007290300370300200320032903e0073703d8092002102020034180016a200341d8096a10a9030240024020032903d0014202520d0020034198056a200341980b6a10aa030c010b20034198056a41186a200341d0016a220241186a29030037030020034198056a41106a200241106a29030037030020034198056a41086a200241086a29030037030020032002290300370398050b20034180016a41106a200341a0056a29030037030020034180016a41186a20034198056a41106a29030037030020034180016a41206a20034198056a41186a2903003703002003200329039805370388012003200341800d6a36028001200341203602e4072003200341d8096a3602e00720034180016a200341e0076a10ab03410021140c390b410f4101102d000b411e4101102d000b410f4101102d000b411e4101102d000b410f4101102d000b411e4101102d000b4111211541d3fec60021140c320b20034180016a41106a201a37030020034180016a41086a41023a0000200341163a00800120034180016a107702402013450d00200810200b02402015450d00200b10200b02402007450d00200e10200b2014200a200d10f502410021140c310b200341d8096a200341800d6a4100200341b80a6a1092040240024020032802c80d220241014b0d00024020020e020200020b20032802d40d450d0120032802d00d10200c010b20032802d40d450d0020032802d00d10200b20032802bc0a450d0220032802b80a1020410021140c300b4115211541bcdec20021022013450d00200710200b024020032802bc0a0d00200221140c2f0b20032802b80a1020200221140c2e0b410021140c2d0b410221150b20034180016a41186a2202200341800d6a41186a29030037030020034180016a41106a2214200341800d6a41106a29030037030020034180016a41086a220a200341800d6a41086a290300370300200320032903800d370380010240024020154102470d004200211a200341980b6a41186a4200370300200341980b6a41106a4200370300200341980b6a41086a4200370300200342003703980b41002119410021184100211741002116410021114100210e4100210b410021084200211b420021214200213241002115410021090c010b200341980b6a41186a2002290300370300200341980b6a41106a2014290300370300200341980b6a41086a200a29030037030020032003290380013703980b0b200341980b6a41086a200341b80a6a41086a2903002234370300200341980b6a41106a200341b80a6a41106a2903002235370300200341980b6a41186a200341b80a6a41186a2903002237370300200320032903b80a22363703980b20034180076a41186a203737030020034180076a41106a203537030020034180076a41086a203437030020032036370380070240024002400240024002400240024002404123101e2202450d00200241002900bef0413700002002411f6a41002800ddf041360000200241186a41002900d6f041370000200241106a41002900cef041370000200241086a41002900c6f04137000020032903f80b21342002412341c60010222202450d0120022034370023200341d8096a41186a22144200370300200341d8096a41106a220a4200370300200341d8096a41086a220d4200370300200342003703d8092002412b200341d8096a1001200341f8086a41186a2014290300370300200341f8086a41106a200a290300370300200341f8086a41086a200d290300370300200320032903d8093703f8082002102020034198056a200341f8086a10ad030240024020032903880622344202520d002003200341f80b6a36026020144200370300200a4200370300200d4200370300200342003703d80941e1f0c100412b200341d8096a1001200341e0076a41186a2014290300370300200341e0076a41106a200a290300370300200341e0076a41086a200d290300370300200320032903d8093703e0072003410036028001200341e0076a412020034180016a100321022003280280012214417f460d012002450d010240024020144108490d002002290000213520021020200341d0066a203510ac0320034180016a200341d0066a10ad0320032903f0014202520d0141b8e7c50041920141cce8c5001045000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b200341800d6a20034180016a41900110cd051a200341e0036a200341800d6a41f00010cd051a200341f8076a2202200341880e6a290300370300200341f0076a200341800e6a2903002234370300200341e0076a41086a200341f80d6a290300370300200320032903f00d3703e00720034180016a200341e0036a41f00010cd051a200341f4016a2002410020344201511b3602002003200341e0006a3602f001200341003602880d200342013703800d20032903800121344108101e2202450d04200341083602840d200320032802880d221441086a3602880d200320023602800d200220146a20343700002003290388012134024020032802840d221420032802880d22026b4108490d0020032802800d21140c060b200241086a220a2002490d0620144101742202200a2002200a4b1b22024100480d060240024020140d002002101e21140c010b20032802800d20142002102221140b02402014450d00200320023602840d200320143602800d20032802880d21020c060b20024101102d000b200341a0066a290300213520034198066a290300213720032903900621360c090b42002134200341d8096a41186a22024200370300200341d8096a41106a22144200370300200341d8096a41086a220a4200370300200342003703d80941e1f0c100412b200341d8096a1001200341e0076a41186a2002290300370300200341e0076a41106a2014290300370300200341e0076a41086a200a290300370300200320032903d8093703e007200320032903f80b37038001200341e0076a412020034180016a41081005420021370c080b41234101102d000b41c6004101102d000b41084101102d000b2003200241086a3602880d201420026a2034370000200341d0016a200341800d6a10ca0120034198016a290300213420032903900121370240024020032802840d220220032802880d220a6b4110490d0020032802800d21140c010b200a41106a2214200a490d012002410174220a2014200a20144b1b220d4100480d010240024020020d00200d101e21140c010b20032802800d2002200d102221140b02402014450d002003200d3602840d200320143602800d20032802880d210a200d21020c010b200d4101102d000b2014200a6a220d2034370008200d20373700002003200a41106a220a3602880d0240024020032802c0014101460d00024002402002200a470d00200241016a220a2002490d042002410174220d200a200d200a4b1b220a4100480d040240024020020d00200a101e21140c010b20142002200a102221140b2014450d012003200a3602840d200320143602800d20032802880d210a0b2003200a41016a3602880d2014200a6a41003a00000c020b200a4101102d000b02400240024002402002200a470d00200241016a220a2002490d052002410174220d200a200d200a4b1b220a4100480d050240024020020d00200a101e21140c010b20142002200a102221140b2014450d012003200a3602840d200320143602800d20032802880d210a0b2003200a41016a3602880d2014200a6a41013a000020032802c401210a20032802840d221420032802880d22026b4104490d0120032802800d21140c020b200a4101102d000b200241046a220d2002490d0220144101742202200d2002200d4b1b22024100480d020240024020140d002002101e21140c010b20032802800d20142002102221140b02402014450d00200320023602840d200320143602800d20032802880d21020c010b20024101102d000b2003200241046a3602880d201420026a200a3600000b02400240024020032802c8014101460d00024020032802840d20032802880d2202460d0020032802800d21140c020b200241016a22142002490d032002410174220a2014200a20144b1b220a4100480d030240024020020d00200a101e21140c010b20032802800d2002200a102221140b02402014450d002003200a3602840d200320143602800d20032802880d21020c020b200a4101102d000b0240024020032802840d20032802880d2202460d0020032802800d21140c010b200241016a22142002490d032002410174220a2014200a20144b1b220a4100480d030240024020020d00200a101e21140c010b20032802800d2002200a102221140b02402014450d002003200a3602840d200320143602800d20032802880d21020c010b200a4101102d000b2003200241016a3602880d201420026a41013a000020032802cc01210a0240024020032802840d221420032802880d22026b4104490d0020032802800d21140c010b200241046a220d2002490d0320144101742202200d2002200d4b1b22024100480d030240024020140d002002101e21140c010b20032802800d20142002102221140b02402014450d00200320023602840d200320143602800d20032802880d21020c010b20024101102d000b2003200241046a3602880d201420026a200a3600000c010b2003200241016a3602880d201420026a41003a00000b200341a8016a290300213420032903a00121370240024020032802840d220a20032802880d22146b4110490d0020032802800d21020c010b201441106a22022014490d01200a41017422142002201420024b1b220d4100480d0102400240200a0d00200d101e21020c010b20032802800d200a200d102221020b02402002450d002003200d3602840d200320023602800d20032802880d2114200d210a0c010b200d4101102d000b200220146a220d2034370008200d20373700002003201441106a22143602880d200341b8016a290300213420032903b0012137200a20146b410f4b0d02201441106a220d2014490d00200a4101742214200d2014200d4b1b221441004e0d010b1027000b02400240200a0d002014101e21020c010b2002200a2014102221020b2002450d01200320143602840d200320023602800d20032802880d21140b200220146a22022034370008200220373700002003201441106a3602880d20034180016a41f0006a200341800d6a10810120032802840d2102200341d0066a412020032802800d221420032802880d100502402002450d00201410200b2003280260210242002134200341d8096a41186a22144200370300200341d8096a41106a220a4200370300200341d8096a41086a220d4200370300200342003703d80941e1f0c100412b200341d8096a1001200341e0076a41186a2014290300370300200341e0076a41106a200a290300370300200341e0076a41086a200d290300370300200320032903d8093703e0072003200229030037038001200341e0076a412020034180016a41081005420121370c010b20144101102d000b20034180016a41186a2032370300200341cc016a200f360200200341c4016a200c360200200341bc016a2019360200200341b8016a2018360200200341b4016a2017360200200341ac016a2011360200200341a8016a200e360200200341a4016a200b360200200341d8016a20034180076a41086a290300370300200341e0016a20034180076a41106a290300370300200341e8016a20034180076a41186a29030037030020032021370390012003201b370388012003201a37038001200320093602c801200320153602c001200320163602b001200320083602a00120032003290380073703d00120034188026a203537030020034180026a2037370300200341f8016a2036370300200320343703f001200341203602840d2003200341f8086a3602800d20034180016a200341800d6a10bc0320034180016a41086a410f3a000020034189016a20032903980c37000020034191016a200341980c6a41086a29030037000020034199016a200341980c6a41106a290300370000200341a1016a200341980c6a41186a290300370000200341b0016a2006370300200341163a00800120034180016a10774100211402400240201341014b0d00024020130e022e002e0b20070d010c2d0b20070d000c2c0b201010200c2b0b200341f00c6a41086a2202200341e00c6a41086a290300370300200341f8086a41086a2214200341f80b6a41086a290300370300200341f8086a41106a220a200341f80b6a41106a290300370300200341f8086a41186a220d200341f80b6a41186a290300370300200341e0036a41086a221020034198056a41086a290300370300200341e0036a41106a220820034198056a41106a280200360200200320032903e00c3703f00c200320032903f80b3703f80820032003290398053703e003200341fc036a200341e0006a41086a290300370200200341e0036a41246a200341e0006a41106a290300370200200341e0036a412c6a200341e0006a41186a290300370200200320032903603702f403200341800d6a41106a2002290300370300200341800d6a41186a2013360200200341c80d6a2015360200200341c00d6a201a370300200320063703800d200320032903f00c3703880d200341800d6a41246a2014290300370200200341800d6a412c6a200a290300370200200341b40d6a200d290300370200200320073602bc0d200320032903f80837029c0d200341d40d6a2010290300370200200341dc0d6a2008290300370200200341e40d6a200341e0036a41186a290300370200200341ec0d6a20034180046a290300370200200341f40d6a20034188046a290300370200200341fc0d6a20034190046a280200360200200320032903e0033702cc0d0240024002400240411f101e2202450d00200241176a41002900a6ef42370000200241106a410029009fef42370000200241086a4100290097ef423700002002410029008fef423700002002411f413e10222202450d012002202137001f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024127200341e0076a1001200341980c6a41186a2013290300370300200341980c6a41106a2015290300370300200341980c6a41086a2007290300370300200320032903e0073703980c200210202003410036028001200341980c6a412020034180016a100321022003280280012213417f460d022002450d02200320133602dc09200320023602d80920034180016a200341d8096a10ef03024002402003290380014202510d0020034198056a41086a200341e0016a29030037030020034198056a41106a200341e8016a29030037030020034198056a41186a2207200341f0016a29030037030020034198056a41206a2214200341f8016a2903003703002003200341d8016a29030037039805200341d0016a2802002110200341c8016a280200211520032802d401210d200341980b6a200341d8096a10930120032903980b4202520d010240201541014b0d0020150e020100010b200d450d00201010200b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b200341e0076a41206a2014290300370300200341e0076a41186a2007290300370300200341b80a6a41086a2207200341980b6a41086a290300370300200341b80a6a41106a2214200341980b6a41106a290300370300200341b80a6a41186a220a200341980b6a41186a290300370300200320032903980b3703b80a20034180016a41186a200a29030037030020034180016a41106a201429030037030020034180016a41086a2007290300370300200320032903b80a3703800102402013450d00200210200b20034198056a41186a20034180016a41186a29030037030020034198056a41106a20034180016a41106a29030037030020034198056a41086a20034180016a41086a2903003703002003200329038001370398050240201541014b0d0020150e020400040b200d450d03201010200c030b411f4101102d000b413e4101102d000b20034198056a202110f3030b20034180016a41106a20034198056a41086a29030037030020034180016a41186a20034198056a41106a290300370300200341a0016a20034198056a41186a2903003703002003200329039805370388012003200341800d6a36028001200341003602e807200342013703e007200341e00d6a200341e0076a10ca0102400240024020032903800d4201510d00024020032802e40720032802e8072202460d0020032802e00721130c020b200241016a22132002490d12200241017422152013201520134b1b22154100480d120240024020020d002015101e21130c010b20032802e00720022015102221130b02402013450d00200320153602e407200320133602e00720032802e80721020c020b20154101102d000b024002400240024020032802e40720032802e8072202460d0020032802e00721130c010b200241016a22132002490d14200241017422152013201520134b1b22154100480d140240024020020d002015101e21130c010b20032802e00720022015102221130b2013450d01200320153602e407200320133602e00720032802e80721020b2003200241016a3602e807201320026a41013a000020032903880d2106024020032802e407221320032802e80722026b4108490d0020032802e00721130c020b200241086a22152002490d13201341017422022015200220154b1b22024100480d130240024020130d002002101e21130c010b20032802e00720132002102221130b02402013450d00200320023602e407200320133602e00720032802e80721020c020b20024101102d000b20154101102d000b2003200241086a3602e807201320026a20063700000c010b2003200241016a3602e807201320026a41003a00000b024002400240200341980d6a2802004102470d00024020032802e40720032802e8072202460d0020032802e00721130c020b200241016a22132002490d12200241017422152013201520134b1b22154100480d120240024020020d002015101e21130c010b20032802e00720022015102221130b02402013450d00200320153602e407200320133602e00720032802e80721020c020b20154101102d000b0240024020032802e40720032802e8072202460d0020032802e00721130c010b200241016a22132002490d12200241017422152013201520134b1b22154100480d120240024020020d002015101e21130c010b20032802e00720022015102221130b02402013450d00200320153602e407200320133602e00720032802e80721020c010b20154101102d000b2003200241016a3602e807201320026a41013a0000200341900d6a200341e0076a10f5030c010b2003200241016a3602e807201320026a41003a00000b200341c80d6a200341e0076a10f603200341a80d6a290300210602400240024002400240024020032802e407221320032802e80722026b4108490d0020032802e00721130c010b200241086a22152002490d14201341017422022015200220154b1b22024100480d140240024020130d002002101e21130c010b20032802e00720132002102221130b2013450d01200320023602e407200320133602e00720032802e80721020b2003200241086a3602e807201320026a2006370000200341b00d6a29030021060240024020032802e407221320032802e80722026b4108490d0020032802e00721130c010b200241086a22152002490d14201341017422022015200220154b1b22024100480d140240024020130d002002101e21130c010b20032802e00720132002102221130b2013450d02200320023602e407200320133602e00720032802e80721020b2003200241086a3602e807201320026a2006370000200341b80d6a28020021150240024020032802e407221320032802e80722026b4104490d0020032802e00721130c010b200241046a22072002490d14201341017422022007200220074b1b22024100480d140240024020130d002002101e21130c010b20032802e00720132002102221130b2013450d03200320023602e407200320133602e00720032802e80721020b2003200241046a3602e807201320026a2015360000200341c00d6a2903002106024020032802e407221320032802e80722026b4108490d0020032802e00721130c040b200241086a22152002490d13201341017422022015200220154b1b22024100480d130240024020130d002002101e21130c010b20032802e00720132002102221130b02402013450d00200320023602e407200320133602e00720032802e80721020c040b20024101102d000b20024101102d000b20024101102d000b20024101102d000b2003200241086a3602e807201320026a200637000020034180016a41086a200341e0076a10940120032802e4072102200341980c6a412020032802e007221320032802e807100502402002450d00201310200b024020032903800d4202510d00024020032802c80d220241014b0d00024020020e020200020b200341d40d6a280200450d0120032802d00d10200c010b200341d40d6a280200450d0020032802d00d10200b20034180016a41086a410e3a000020034189016a200329036037000020034191016a200341e0006a41086a29030037000020034199016a200341f0006a290300370000200341a1016a200341f8006a290300370000200341b0016a2021370300200341163a00800120034180016a1077410021140c2a0b20034188016a280200211520032802840121140c010b20152014200d10f502024020344200201b42005222151b223920374200202142005222141b7c22362032420020151b2035420020141b7c2036203954ad7c223984500d00200341d0006a200341980b6a10890341b5ddc2002114411d2115410121172003290350203654200341d0006a41086a290300223a203954203a2039511b0d01200341c0006a200341980b6a108903200341386a200341980b6a411f2003290340223a20367d200341c0006a41086a29030020397d203a203654ad7d10940420032802380d010b200341d0066a41086a22154200370300200342003703d00641b7a5c3004137200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c20034180016a200341f00c6a107541012117024020032f018201410020032f01800122154101461b221441ffff0371201641ffff0371220d4d0d004122211541c1dfc20021140c010b41012117024020032f018401410020154101461b20146a41ffff0371200d4f0d004121211541a0dfc20021140c010b20034180016a2038202120372035201b20342032109504024002400240024020032d0080014101460d00200341d4026a2802002117200341d0026a280200210d200341cc026a28020021152003419c026a280200210420034198026a2802002105200341dc016a280200450d03200341fc016a2802002109200341f4016a28020021140240200341f8016a280200220c450d00200c210f034020142802602114200f417f6a220f0d000b0340200c417f6a220c0d000b0b02402009450d004100210c4100210f4100211203402003200c36028c0d2003200f3602880d200320143602840d200320123602800d20034180016a200341800d6a10612003280288012112200328028c012114200328029001210f200328029401210c2009417f6a22090d000b0b201441908cc500460d032014280200210c20141020200c450d03200c2802002109200c10202009450d03200928020022140d010c020b411b211541e2e9c200211402400240024002400240024020032d0081010e06000102030405000b4113211541ace1c2002114410121170c080b411e211541ede8c2002114410121170c070b411c2115418be9c2002114410121170c060b4115211541a7e9c2002114410121170c050b4126211541bce9c20021140b410121170c030b034020091020201421092014280200220c2114200c0d000b0b200910200b02402004450d00200510200b0240200d450d00200d21140340201528026021152014417f6a22140d000b0340200d417f6a220d0d000b0b02402017450d00410021144100210d4100210903402003201436028c0d2003200d3602880d200320153602840d200320093602800d20034180016a200341800d6a10612003280288012109200328028c012115200328029001210d20032802940121142017417f6a22170d000b0b0240201541908cc500460d002015280200210d20151020200d450d00200d2802002114200d10202014450d00024020142802002215450d00034020141020201521142015280200220d2115200d0d000b0b201410200b2013210d0240200b450d00200b21152013210d0340200d280260210d2015417f6a22150d000b200b211503402015417f6a22150d000b0b024002400240024002400240200e450d00200342003703880d2003200d3602840d200341003602800d20034180016a200341800d6a10612003418c016a280200210d20034190016a280200211420034194016a280200211720032802880121092003290380012136200e21150340200341800d6a203610f102024020032903880d2006520d0020034180016a20032903900d10e50220032d00b001210c024020032802c001450d0020032802bc0110200b200c41ff0171450d030b20154101460d012015417f6a21152003201736028c0d200320143602880d2003200d3602840d200320093602800d20034180016a200341800d6a10612003280288012109200328028c01210d2003280290012114200328029401211720032903800121360c000b0b200d41908cc500460d04200d2802002113200d10202013450d0420132802002115201310202015450d04201528020022130d010c030b024020154101460d004101211603402003201736028c0d200320143602880d2003200d3602840d200320093602800d20034180016a200341800d6a10612003280288012109200328028c01210d200328029001211420032802940121172015201641016a2216470d000b0b41afebc20021144137211541002117200d41908cc500460d04200d2802002109200d10202009450d0420092802002116200910202016450d042016280200220d450d01034020161020200d2116200d2802002209210d20090d000c020b0b0340201510202013211520132802002214211320140d000c020b0b201610200c020b201510200b420021360240024002400240024002400240024002400240202150450d00420021370c010b20034180016a200341980b6a20372035411f1093022003280280010d0120034190016a290300213520034188016a2903002121420121370b02400240201b50450d000c010b20034180016a200341980b6a20342032411f1093022003280280010d0220034190016a290300213220034188016a290300211b420121360b200341980c6a41106a203537030020034180076a41106a20323703002003201b370388072003203637038007200320213703a00c200320373703980c20034180016a20382037202120352036201b2032109504200341d8096a41086a200341e8016a290300370300200341d8096a41106a200341f0016a290300370300200341d8096a41186a200341f8016a2903003703002003200341e0016a2903003703d809200341dc016a280200211f200341c4016a2802002114200341c0016a28020021122003419c016a280200210420034180016a41186a280200210520034198026a280200213b2003419c026a280200211e200341a8026a290300211b200341b0026a290300212120032d0080012113200341f8086a41186a200341d0026a290300370300200341f8086a41106a200341c8026a290300370300200341f8086a41086a200341c0026a2903003703002003200341b8026a2903003703f8080240024020134101460d00200341d8026a2802002109200341dc026a280200210c200341e0026a280200210f200328029409210b200328029009210d200328028c09211320032802f409211720032802f009210e20032802ec0921150240201b4201520d0020034180016a202110e502200320034180016a20212005410146200420124101462014410310c40341ff017122143a00d8092014450d05200341c0016a280200450d0020032802bc0110200b4200211b200341d0066a41086a22144200370300200342003703d006418ca9c4004118200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211402402003280280012212417f460d002014450d0020124108490d062014290000211b201410200b2003201b3703c80c200341286a20032903980c20032903a00c200341980c6a41106a290300200341c80c6a1096042003290330212120032903282132200341186a20032903800720032903880720034180076a41106a290300200341c80c6a10960420032903202134200329031821351079211220032903c80c211b4116101e2214450d062014410e6a41002900aad543370000201441086a41002900a4d5433700002014410029009cd54337000020144116412c10222214450d072014201b370016200341e0076a41186a22044200370300200341e0076a41106a22054200370300200341e0076a41086a221c4200370300200342003703e0072014411e200341e0076a1001200341d0066a41186a2004290300370300200341d0066a41106a2005290300370300200341d0066a41086a201c290300370300200320032903e0073703d006201410202003410036028001200341d0066a412020034180016a100321142003280280012204417f460d082014450d08200320043602e407200320143602e00720034180016a200341e0076a10d80202402003290388014202510d00200341c0016a280200210520032802bc012125200341800d6a200341e0076a10930120032903800d4202520d022005450d00202510200b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b02402008450d00201110200b02402036500d00200320034180076a41086a3602800120034180016a10940220032903980c21370b02402037500d002003200341980c6a41086a3602800120034180016a1094020b41f8a8c300413041a8a9c3001028000b20034198056a41186a200341800d6a41186a221c290300221b37030020034198056a41106a200341800d6a41106a221d2903002237370300200341e0036a41086a2220200341800d6a41086a2222290300370300200341e0036a41106a22232037370300200341e0036a41186a2224201b370300200320032903800d3703e00302402004450d00201410200b201c2024290300370300201d202329030037030020222020290300370300200320032903e0033703800d2005450d07202510200c070b4190a8c300412941bca8c3001028000b4190a8c300412941bca8c3001028000b200341a4056a410d360200200341940d6a4102360200200342033702840d200341f4a8c4003602800d2003410d36029c052003200341d8096a3602e007200341f1a8c4003602e003200320034198056a3602900d2003200341e0036a3602a0052003200341e0076a36029805200341800d6a41d483c6001033000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41164101102d000b412c4101102d000b200341800d6a201b1098040b20034180016a41206a203437030020034180016a41106a2021370300200341b1016a200329009805370000200341c4016a2016360200200341c0016a2008360200200341b8016a2003419f056a280000360000200341d0016a200341800d6a41086a290300370300200341d8016a200341800d6a41106a290300370300200341e0016a200341800d6a41186a290300370300200341003a00b001200320123602ac012003200c20096a200f6a3602a801200320353703980120032032370388012003203837038001200320113602bc01200320032903800d3703c801200341203602e4032003200341d0066a3602e00320034180016a200341e0036a10e00202402008450d00201110200b200341d0066a41086a22144200370300200342003703d006418ca9c4004118200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032114024002402003280280012208417f460d002014450d00024020084108490d002014290000211b20141020201b42017c211b0c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4201211b0b200341d0066a41086a22144200370300200342003703d006418ca9c4004118200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c2003201b37038001200341f00c6a411020034180016a41081005200341800d6a203810900420034180016a41086a2214200341e40d6a290200370300200341e0036a41086a2208200341f40d6a2802003602002003200341dc0d6a290200370380012003200341ec0d6a2902003703e003024002400240024002400240024020032802d40d4101470d00200341800e6a2802002120200341fc0d6a2802002122200341d80d6a2802002123200341f80d6a280200211620032903c80c211b20034198056a41086a2008280200360200200320032903e0033703980520034198056a201b1060200341d00c6a41086a2014290300221b370300200320032903800122213703d00c2003280298052124200329029c052132200341e00c6a41086a201b370300200320213703e00c4112101e2214450d01201441106a41002f00e0d5433b0000201441086a41002900d8d543370000201441002900d0d54337000020144112412410222214450d0220142038370012200341e0076a41186a22084200370300200341e0076a41106a22114200370300200341e0076a41086a22094200370300200342003703e0072014411a200341e0076a1001200341d0066a41186a2008290300370300200341d0066a41106a2011290300370300200341d0066a41086a2009290300370300200320032903e0073703d006201410202003410036028001200341d0066a412020034180016a1003211102400240024002402003280280012209417f460d002011450d00200320093602e403200320113602e00320034180016a200341e0036a10e90220032903a0024202510d0720034198056a41086a220c200341c4016a29020037030020034198056a41106a220f200341cc016a280200360200200320032902bc013703980520034180016a41086a2903002121200329038001213420032802b801212d20032802b401212520032802b001212620032802ac01212720032802a801212820032802a401212920032802a001212a200328029c01212b200328029801212c200328029401212f2003280290012112200341f80b6a41086a221d200341e4016a290200370300200341f0066a41086a20034194026a290200370300200320032902dc013703f80b2003200329028c023703f00620032802d401210820032802d001210420032802ec01211420032903f001211b2003280284022105200328028802211c200328029c02212e02402009450d00201110200b200341e0076a41086a200c290300370300200341e0076a41106a200f280200360200200341d8096a41086a201d29030037030020032003290398053703e007200320032903f80b3703d8094102211d20084102470d014100211c200341003602fc0c200342013702f40c410021054100210841002104410221120c020b4100211c200341003602fc0c200342013702f40c200341c00c6a20032903f80c370300200320032903f00c3703b80c4102211d410021054100210841002104410221120c020b20034180016a41086a200341e0076a41086a29030037030020034180016a41106a200341e0076a41106a280200360200200341f8086a41086a200341d8096a41086a290300370300200320032903f0063703f00c200320032903e00737038001200320032903d8093703f8082003200341f0066a41086a2903003703f80c202d211d0b200341e0036a41086a20034180016a41086a290300370300200341e0036a41106a20034180016a41106a280200360200200341e0006a41086a200341f8086a41086a290300370300200341b80c6a41086a200341f00c6a41086a29030037030020032003290380013703e003200320032903f808370360200320032903f00c3703b80c0b201641016a212d200341e0076a41086a2231200341e0036a41086a220c290300370300200341e0076a41106a2230200341e0036a41106a280200360200200341d8096a41086a220f200341e0006a41086a290300370300200341f8086a41086a2233200341b80c6a41086a290300370300200320032903e0033703e007200320032903603703d809200320032903b80c3703f808200c200341e00c6a41086a290300370300200320032903e00c3703e0032008450d06201b422088a721080240201ba72211450d00201121160340201428026021142016417f6a22160d000b03402011417f6a22110d000b0b02402008450d004100211141002116410021090340200320093602a405200320163602a0052003201436029c05200320113602980520034180016a20034198056a10612003280288012111200328028c012114200328029001211620032802940121092008417f6a22080d000b0b201441908cc500460d0620142802002111201410202011450d0620112802002108201110202008450d06200828020022140d040c050b41fa8ac500412941a888c6001028000b41124101102d000b41244101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b0340200810202014210820142802002211211420110d000b0b200810200b200f200c290300370300200320032903e0033703d809200341b8016a201d360200200341b4016a2025360200200341b0016a2026360200200341ac016a2027360200200341a4016a2029360200200341a0016a202a3602002003419c016a202b36020020034198016a202c360200200341d8016a202336020020032021370388012003203437038001200320283602a8012003202f360294012003201236029001200341bc016a20032903e007370200200341c4016a2031290300370200200341cc016a2030280200360200200341013602d401200320043602d001200341e4016a200f290300370200200341dc016a20032903d80937020020034180026a2020360200200341fc016a2022360200200341f8016a202d360200200341f0016a2032370300200341ec016a20243602002003201c36028802200320053602840220034194026a20332903003702002003418c026a20032903f8083702002003202e36029c02203820034180016a10ec0202400240024020032802d401221441024b0d0020140e03010002010b200341f4016a280200210820032802ec012114024020032802f0012211450d00201121160340201428026021142016417f6a22160d000b03402011417f6a22110d000b0b02402008450d004100211141002116410021090340200320093602ec03200320163602e803200320143602e403200320113602e00320034198056a200341e0036a106120032802a005211120032802a405211420032802a805211620032802ac0521092008417f6a22080d000b0b201441908cc500460d0020142802002111201410202011450d0020112802002108201110202008450d00024020082802002214450d000340200810202014210820142802002211211420110d000b0b200810200b20034194026a280200450d0020032802900210200b20032903c80c21340240200341940e6a280200450d0020032802900e10200b0240201f450d000240200e450d00200e21140340201528026021152014417f6a22140d000b0340200e417f6a220e0d000b0b02402017450d0041002114410021084100210e03402003200e36028c0d200320083602880d200320153602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c0121152003280290012108200328029401210e2017417f6a22170d000b0b201541908cc500460d0020152802002108201510202008450d0020082802002114200810202014450d00024020142802002215450d000340201410202015211420152802002208211520080d000b0b201410200b0240201e450d00203b10200b0240200d450d00200d21150340201328026021132015417f6a22150d000b0340200d417f6a220d0d000b0b0240200b450d0041002115410021144100210d03402003200d36028c0d200320143602880d200320133602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c0121132003280290012114200328029401210d200b417f6a220b0d000b0b0240201341908cc500460d0020132802002114201310202014450d0020142802002115201410202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b4200211b200341d0066a41086a22134200370300200342003703d00641cca8c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211302400240024002400240024002400240024002402003280280012215417f460d002013450d0020154108490d012013290000211b201310200b200341f8086a41186a200341b80a6a41186a290300370300200341f8086a41106a200341b80a6a41106a290300370300200341f8086a41086a200341b80a6a41086a290300370300200320032903b80a3703f808412a101e2213450d01201341286a41002f00c3ed423b0000201341206a41002900bbed42370000201341186a41002900b3ed42370000201341106a41002900abed42370000201341086a41002900a3ed423700002013410029009bed423700002013412a41d40010222213450d022013201b37002a200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00720134132200341e0076a1001200341f80b6a41186a2015290300370300200341f80b6a41106a2014290300370300200341f80b6a41086a200d290300370300200320032903e0073703f80b2013102020034198056a200341f80b6a109904024020032903d00522214202520d002003201b370380072015420037030020144200370300200d4200370300200342003703e00741c5edc2004132200341e0076a1001200341d0066a41186a2015290300370300200341d0066a41106a2014290300370300200341d0066a41086a200d290300370300200320032903e0073703d0062003410036028001200341d0066a412020034180016a10032113024002402003280280012215417f460d002013450d00024020154108490d002013290000213220131020412a101e22130d02412a4101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b42002135200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00741c5edc2004132200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d0062003201b37038001200341d0066a412020034180016a41081005420021210c0a0b201341286a41002f00c3ed423b0000201341206a41002900bbed42370000201341186a41002900b3ed42370000201341106a41002900abed42370000201341086a41002900a3ed423700002013410029009bed423700002013412a41d40010222213450d042013203237002a200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00720134132200341e0076a1001200341d8096a41186a2015290300370300200341d8096a41106a2014290300370300200341d8096a41086a200d290300370300200320032903e0073703d8092013102020034180016a200341d8096a10990420032903b8014202510d05200341800d6a20034180016a41d80010cd051a200341e0036a41306a2213200341800d6a41306a290300370300200341e0036a41286a2215200341800d6a41286a290300370300200341e0036a41206a2214200341800d6a41206a290300370300200341e0036a41186a220d200341800d6a41186a290300370300200341e0036a41106a2208200341800d6a41106a290300370300200341e0036a41086a220b200341800d6a41086a290300370300200320032903800d3703e003200341e0076a41186a220e200341d00d6a290300370300200341e0076a41106a200341c80d6a2903002221370300200341e0076a41086a200341c00d6a290300370300200320032903b80d3703e007200341bc016a200e410020214201511b36020020034180016a41306a201329030037030020034180016a41286a201529030037030020034180016a41206a201429030037030020034180016a41186a2213200d29030037030020034180016a41106a200829030037030020034180016a41086a200b290300370300200320032903e00337038001200320034180076a3602b801200341003602880d200342013703800d2013200341800d6a10ca0120032903800121210240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d18201541017422132014201320144b1b22134100480d180240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d07200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a202137000020032903880121210240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d18201541017422132014201320144b1b22134100480d180240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d08200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a20213700002003290390012121024020032802840d221520032802880d22136b4108490d0020032802800d21150c090b201341086a22142013490d17201541017422132014201320144b1b22134100480d170240024020150d002013101e21150c010b20032802800d20152013102221150b02402015450d00200320133602840d200320153602800d20032802880d21130c090b20134101102d000b200341e8056a2903002132200341e0056a290300213520032903d80521370c080b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b412a4101102d000b41d4004101102d000b41d4004101102d000b41b8e7c50041920141cce8c5001045000b20134101102d000b20134101102d000b2003201341086a3602880d201520136a2021370000200341b8016a200341800d6a107e20032802840d2113200341d8096a412020032802800d221520032802880d100502402013450d00201510200b200329038007213542002121200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00741c5edc2004132200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d0062003203537038001200341d0066a412020034180016a41081005420121350b200341d0016a2032370300200341c8016a2035370300200341c0016a2037370300200341a0016a200341f8086a41086a290300370300200341a8016a20034188096a290300370300200341b0016a200341f8086a41186a290300370300200320343703900120032006370388012003201a37038001200320032903f80837039801200320213703b801200341003602880d200342013703800d20034180016a41186a200341800d6a10ca0120032903800121060240024002400240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d11201541017422132014201320144b1b22134100480d110240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d01200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a200637000020032903880121060240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d11201541017422132014201320144b1b22134100480d110240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d02200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a20063700002003290390012106024020032802840d221520032802880d22136b4108490d0020032802800d21150c030b201341086a22142013490d10201541017422132014201320144b1b22134100480d100240024020150d002013101e21150c010b20032802800d20152013102221150b02402015450d00200320133602840d200320153602800d20032802880d21130c030b20134101102d000b20134101102d000b20134101102d000b2003201341086a3602880d201520136a2006370000200341b8016a200341800d6a10940120032802840d2113200341f80b6a412020032802800d221520032802880d100502402013450d00201510200b200341d0066a41086a22134200370300200342003703d00641cca8c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032113024002402003280280012215417f460d002013450d00024020154108490d002013290000210620131020200642017c21060c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b420121060b200341d0066a41086a22134200370300200342003703d00641cca8c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c2003200637038001200341f00c6a411020034180016a41081005024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002404126101e2213450d004100210d2013411e6a41002900e5ec42370000201341186a41002900dfec42370000201341106a41002900d7ec42370000201341086a41002900cfec42370000201341002900c7ec423700002013412641cc0010222213450d012013201a37002642002106200341e0076a41186a22084200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e0072013412e200341e0076a1001200341980c6a41186a2008290300370300200341980c6a41106a2015290300370300200341980c6a41086a2014290300370300200320032903e0073703980c2013102020034180016a200341980c6a4120108d040240024020032903b8024202520d0041908cc50021054100211c410021084100210b4100210e410021114100211641002117410021094100210c4100210f4100211341022112410221040c010b20032802b402212620032f019c0221082003280298022125200328029402210b2003280290022124200328028c02210e20032802880221232003280284022111200328028002212220032802fc01211620032802f801212020032802f401211720032802f001211e20032802ec01210920032802e801211f20032802e401210c20032802e001210f20032802dc01211d20032802c00121272003280298012104200329038001210620032802d8012113200341f8086a41086a20034180016a41106a290300370300200341800d6a41086a200341a4016a290200370300200341800d6a41106a200341ac016a290200370300200341800d6a41186a220d200341b4016a290200370300200341800d6a41206a200341bc016a28020036020020032003290388013703f8082003200329029c013703800d200341e0036a41086a200341cc016a290200370300200341e0036a41106a200341d4016a280200360200200320032902c4013703e003200341f80b6a41086a200341a6026a2f01003b01002003200329019e023703f80b410221120240024020134102470d00420021064100210d41908cc50021054100211c410021084100210b4100210e410021114100211641002117410021094100210c4100210f41022104410021130c010b20034180076a41086a200341f8086a41086a29030037030020034198056a41086a200341800d6a41086a29030037030020034198056a41106a200341800d6a41106a29030037030020034198056a41186a200d29030037030020034198056a41206a200341800d6a41206a280200360200200320032903f80837038007200320032903800d3703980520032802a802210520032802ac02210d20032802b002211c200341d8096a41106a200341e0036a41106a280200360200200341d8096a41086a200341e0036a41086a290300370300200341d0066a41086a200341f80b6a41086a2f01003b0100200320032903e0033703d809200320032903f80b3703d006202721120b200341e00c6a41086a20034180076a41086a290300370300200341e0076a41086a20034198056a41086a290300370300200341e0076a41106a20034198056a41106a290300370300200341e0076a41186a20034198056a41186a290300370300200341e0076a41206a20034198056a41206a28020036020020032003290380073703e00c20032003290398053703e007200341800d6a41106a200341d8096a41106a280200360200200341800d6a41086a200341d8096a41086a290300370300200320032903d8093703800d200341f8086a41086a200341d0066a41086a2f01003b0100200320032903d0063703f8080b200341e0036a41186a2004360200200341fc036a20032903e007370200200341a0046a2012360200200341e0036a41106a200341e00c6a41086a29030037030020034184046a20142903003702002003418c046a201529030037020020034194046a200341e0076a41186a2903003702002003419c046a200341e0076a41206a280200360200200320063703e003200320032903e00c3703e803200341e0036a41d8006a2013360200200341bc046a201d360200200341c0046a200f360200200341c4046a200c360200200341c8046a201f360200200341cc046a2009360200200341d0046a201e360200200341d4046a2017360200200341d8046a2020360200200341dc046a2016360200200341e0046a2022360200200341e4046a2011360200200341e8046a2023360200200341ec046a200e360200200341f0046a2024360200200341f4046a200b360200200341f8046a2025360200200341fc046a20083b0100200341a4046a20032903800d370200200341ac046a200341800d6a41086a290300370200200341b4046a200341800d6a41106a2802003602002003418c056a200d36020020034190056a201c36020020034186056a200341f8086a41086a2f01003b0100200341fe046a20032903f8083701002003200536028805200320263602940520034188056a201b106020034198056a200341e0036a41b80110cd051a20034198056a41d8006a28020021154126101e2113024020154102470d002013450d032013411e6a41002900e5ec42370000201341186a41002900dfec42370000201341106a41002900d7ec42370000201341086a41002900cfec42370000201341002900c7ec423700002013412641cc0010222213450d042013201a370026200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e0072013412e200341e0076a1001200341f80b6a41186a2015290300370300200341f80b6a41106a2014290300370300200341f80b6a41086a200d290300370300200320032903e0073703f80b2013102020034180016a200341f80b6a4120108d04024020032903b802220642025122130d00200341f80b6a412010040b20130d14200341d0026a290300212120032903c002213220032802b002211120032802ac02210e20032802a802211520032802d8012109410021160240200341c8026a29030022344201520d00200341d8096a202110ec0320034180076a41186a200341d8096a41186a290300223537030020034180076a41106a200341d8096a41106a290300223737030020034180076a41086a200341d8096a41086a2903002236370300200320032903d80922393703800720034180016a41186a2213203537030020034180016a41106a2214203737030020034180016a41086a220d203637030020032039370380014120101e2216450d062016200329038001370000201641186a2013290300370000201641106a2014290300370000201641086a200d2903003700000b024020064201510d0020344201510d08200341e0076a41186a22134200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00741edecc200412e200341e0076a1001200341d8096a41186a2013290300370300200341d8096a41106a2014290300370300200341d8096a41086a200d290300370300200320032903e0073703d809200341d8096a412010040c130b200341d8096a203210ec03200341f8086a41186a200341d8096a41186a2903002235370300200341f8086a41106a200341d8096a41106a2903002237370300200341f8086a41086a200341d8096a41086a2903002236370300200320032903d80922393703f80820034180016a41186a2213203537030020034180016a41106a2214203737030020034180016a41086a220d203637030020032039370380014120101e2217450d062017200329038001370000201741186a2013290300370000201741106a2014290300370000201741086a200d29030037000020034180016a20174120108d0420032903b8024202510d08200341800d6a20034180016a41c80110cd051a200341d00e6a2021370300200341800d6a41c8016a20343703002003410036028801200342013703800120032903800d21214108101e2213450d0920034108360284012003200328028801221441086a360288012003201336028001201320146a2021370000200341a80e6a20034180016a1062200341800d6a41086a20034180016a10fa03200341b80e6a20034180016a1094012003280284012113201741202003280280012214200328028801100502402013450d00201410200b200341b00e6a280200211420032802a80e21130240200341ac0e6a280200220d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402014450d004100210d410021084100210b03402003200b3602ec07200320083602e807200320133602e4072003200d3602e00720034180016a200341e0076a1061200328028801210d200328028c0121132003280290012108200328029401210b2014417f6a22140d000b0b201341908cc500460d112013280200210d20131020200d450d11200d2802002114200d10202014450d11201428020022130d0a0c100b2013450d0a2013411e6a41002900e5ec42370000201341186a41002900dfec42370000201341106a41002900d7ec42370000201341086a41002900cfec42370000201341002900c7ec423700002013412641cc0010222213450d0b2013201a370026200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e0072013412e200341e0076a1001200341f80b6a41186a2015290300370300200341f80b6a41106a2014290300370300200341f80b6a41086a200d290300370300200320032903e0073703f80b2013102020034180016a200341f80b6a4120108d04024020032903b8024202520d00200341800d6a201a108e040c0f0b200341800d6a41086a200341b8026a221341086a290300370300200341800d6a41106a201341106a290300370300200341800d6a41186a201341186a290300370300200320132903003703800d20032802b002211520032802a8022113024020032802ac022214450d002014210d034020132802602113200d417f6a220d0d000b03402014417f6a22140d000b0b02402015450d00410021144100210d410021080340200320083602e4092003200d3602e009200320133602dc09200320143602d809200341e0076a200341d8096a106120032802e807211420032802ec07211320032802f007210d20032802f40721082015417f6a22150d000b0b201341908cc500460d0e20132802002114201310202014450d0e20142802002115201410202015450d0e201528020022130d0c0c0d0b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b41204101102d000b41204101102d000b200341e0076a41186a22134200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00741edecc200412e200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2014290300370300200341d0066a41086a200d290300370300200320032903e0073703d0062003202137038001200341d0066a412020034180016a410810050c0a0b41bde6c50041d8004198e7c5001045000b41084101102d000b034020141020201321142013280200220d2113200d0d000c060b0b41264101102d000b41cc004101102d000b0340201510202013211520132802002214211320140d000b0b201510200b20034180016a41106a200341800d6a41086a29030037030020034180016a41186a200341800d6a41106a29030037030020034180016a41206a200341800d6a41186a290300370300200320032903800d37038801200320034198056a36028001200341003602e807200342013703e007200329039805210602404108101e2213450d00200341083602e407200320032802e807221541086a3602e807200320133602e007201320156a2006370000200341c0066a200341e0076a106220034198056a41086a200341e0076a10fa0320034180016a41086a200341e0076a10940120032802e4072113200341f80b6a412020032802e007221520032802e80710052013450d08201510200c080b41084101102d000b201410200b201710204101210c0c010b410021174100210c0b0240024020160d00410021130c010b20034180016a20164120108d040240024002400240024020032903b8024202510d00200341800d6a20034180016a41d80110cd051a200341c00e6a2032370300200320063703b80e2003410036028801200342013703800120032903800d21064108101e2213450d0120034108360284012003200328028801221441086a360288012003201336028001201320146a2006370000200341a80e6a20034180016a1062200341800d6a41086a20034180016a10fa03200341b80e6a20034180016a1094012003280284012113201641202003280280012214200328028801100502402013450d00201410200b200341b00e6a280200211420032802a80e21130240200341ac0e6a280200220d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402014450d004100210d410021084100210b03402003200b3602ec07200320083602e807200320133602e4072003200d3602e00720034180016a200341e0076a1061200328028801210d200328028c0121132003280290012108200328029401210b2014417f6a22140d000b0b201341908cc500460d042013280200210d20131020200d450d04200d2802002114200d10202014450d04201428020022130d020c030b41bde6c50041d80041a8e7c5001045000b41084101102d000b034020141020201321142013280200220d2113200d0d000b0b201410200b20161020410121130b0240200c201745720d00201710200b02402016452013720d00201610200b20094102470d010b41908cc50021150c010b0240200e450d00200e21130340201528026021152013417f6a22130d000b0340200e417f6a220e0d000b0b2011450d0041002113410021144100210d03402003200d36028c0d200320143602880d200320153602840d200320133602800d20034180016a200341800d6a10612003280288012113200328028c0121152003280290012114200328029401210d2011417f6a22110d000b0b201541908cc500460d0020152802002113201510202013450d0020132802002115201310202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b024020032802f0054102460d00200341c8066a280200211520032802c00621130240200341c4066a2802002214450d002014210d034020132802602113200d417f6a220d0d000b03402014417f6a22140d000b0b02402015450d00410021144100210d4100210803402003200836028c0d2003200d3602880d200320133602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012113200328029001210d20032802940121082015417f6a22150d000b0b201341908cc500460d0020132802002114201310202014450d0020142802002115201410202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b20034198016a201b37030020034190016a201a37030020034188016a41093a0000200341163a00800120034180016a107702402010450d0002402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021154100210703402003200736028c0d200320153602880d200320023602840d200320133602800d20034180016a200341800d6a10612003280288012113200328028c01210220032802900121152003280294012107200a417f6a220a0d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b2018450d0920191020410021140c280b02402010450d0002402007450d002007210d034020022802602102200d417f6a220d0d000b03402007417f6a22070d000b0b0240200a450d00410021074100210d4100211003402003200736028c0d2003200d3602880d200320023602840d200320103602800d20034180016a200341800d6a10612003280288012110200328028c012102200328029001210d2003280294012107200a417f6a220a0d000b0b200241908cc500460d002002280200210a20021020200a450d00200a2802002107200a10202007450d00024020072802002202450d00034020071020200221072002280200220a2102200a0d000b0b200710200b02402018450d00201910200b2017450d000240200b450d00200b21020340201328026021132002417f6a22020d000b0340200b417f6a220b0d000b0b0240200e450d0041002102410021074100210a03402003200a36028c0d200320073602880d200320133602840d200320023602800d20034180016a200341800d6a10612003280288012102200328028c0121132003280290012107200328029401210a200e417f6a220e0d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200b2008450d26201110200c260b201310200c250b201310200c240b411b21154199e7c20021140c050b411f211541fae6c20021140c040b4114211541e6e6c20021140c030b4117211541e0e5c20021140c020b20034190016a200637030020034188016a410d3a0000200341163a00800120034180016a107702402013450d00201321150340200228026021022015417f6a22150d000b03402013417f6a22130d000b0b02402007450d004100211341002115410021140340200320133602a405200320153602a0052003200236029c05200320143602980520034180016a20034198056a10612003280288012114200328028c012102200328029001211520032802940121132007417f6a22070d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b410021140c1e0b02402013450d002013210a034020022802602102200a417f6a220a0d000b03402013417f6a22130d000b0b02402007450d00410021134100210a4100210d0340200320133602a4052003200a3602a0052003200236029c052003200d3602980520034180016a20034198056a1061200328028801210d200328028c012102200328029001210a20032802940121132007417f6a22070d000b0b200241908cc500460d1d20022802002107200210202007450d1d20072802002113200710202013450d1d024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c1d0b201310200b0240200a450d00201010200b20032802e00c21100240024020032802e40c22020d00201021080c010b20102108200221130340200828026021082013417f6a22130d000b0340201020102f01064102746a41e0006a28020021102002417f6a22020d000b0b20102f01062119024002400240024020032802e80c220f450d00024002400240024020082f01060d0002400240200828020022020d0041002115200341e00c6aad2106410021020c010b2008330104422086200341e00c6aad842106410121150b2006422088a7221320022f01064f0d012006211a0c020b200841086a210a41012114200341e00c6a2111200821130c020b03402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a210a201341027420026a41e4006a2802002113201aa72111410021142015417f6a2202450d000340201328026021132002417f6a22020d000b0b200341800d6a41046a2118200341a4026a211620034180016a4104722117200f2107034020034180016a200a10c70320032802a00221152003280280012102200341800d6a2017419c0110cd051a200341980b6a201641dc0010cd051a2007417f6a210702400240024020024101460d0020034198056a201841980110cd051a200341b80a6a200341980b6a41dc0010cd051a20154102470d010b2007450d03201420132f0106490d0102400240201328020022020d002011ad210641002115410021020c010b20133301044220862011ad842106410121150b02402006422088a7221320022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b201a21060b200220134103746a41086a210a201341027420026a41e4006a28020021132006a72111410021142015417f6a2202450d020340201328026021132002417f6a22020d000c030b0b200341e0036a20034198056a41980110cd051a200341d8096a200341b80a6a41dc0010cd051a200341e0076a200341d8096a41dc0010cd051a20034180016a200341e0036a41980110cd051a200341800d6a200341e0076a41dc0010cd051a024041f801101e2226450d00202620034180016a41980110cd0522022015360298012002419c016a200341800d6a41dc0010cd051a2007450d040240024002400240201420132f0106490d0002400240201328020022020d002011ad210641002115410021020c010b20133301044220862011ad842106410121150b2006422088a7221320022f01064f0d012006211a0c020b201441016a210a201320144103746a41086a21140c020b03402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a2114201341027420026a41e4006a2802002113201aa721114100210a2015417f6a2202450d000340201328026021132002417f6a22020d000b0b200341a4026a211620034180016a4104722117034020034180016a201410c70320032802a00221022003280280012115200341800d6a2017419c0110cd051a200341980b6a201641dc0010cd051a2007417f6a210702400240024020154101460d0020034198056a201841980110cd051a200341b80a6a200341980b6a41dc0010cd051a20024102470d010b2007450d07200a20132f0106490d0102400240201328020022020d002011ad210641002115410021020c010b20133301044220862011ad842106410121150b02402006422088a7221320022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b201a21060b200220134103746a41086a2114201341027420026a41e4006a28020021132006a721114100210a2015417f6a2202450d020340201328026021132002417f6a22020d000c030b0b200341e0036a20034198056a41980110cd051a200341d8096a200341b80a6a41dc0010cd051a200341f8086a200341d8096a41dc0010cd051a200341a4026a210920034180016a410472210c4100211541012117410121270340200341e0076a200341e0036a41980110cd051a20034180076a200341f8086a41dc0010cd051a20034180016a200341e0076a41980110cd051a200341e0036a20034180076a41dc0010cd051a02400240024020272017470d00201741016a22142017490d0d201741017422162014201620144b1b2227ad42f8017e2206422088a70d0d2006a722144100480d0d0240024020170d002014101e21260c010b2026201741f8016c2014102221260b2026450d010b2026201741f8016c6a20034180016a41980110cd0522144198016a20023602002014419c016a200341e0036a41dc0010cd051a201741016a21172007450d0a200320113602880d200320153602800d2003200a36028c0d200320133602840d0240200a20132f0106490d0002400240201328020022020d002011ad2106410021020c010b201541016a211520133301044220862011ad8421060b02402006422088a7221420022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042214200228020022022f01064f0d000b201a21060b2014410274200241e0006a220a6a41046a2802002113200220144103746a41086a21142006a7211102402015417f6a2202450d000340201328026021132002417f6a22020d000b0b2003200a3602940120032014360290012003410036028c012003201136028801200320133602840120034100360280010c020b200320113602880120032015360280012003200a41016a36028c0120032013360284012003201341e0006a3602940120032013200a4103746a41086a2214360290010c010b20144108102d000b20034180016a21160340201628020c210a20162802082111201628020421132016280200211520034180016a201410c70320032802a00221022003280280012114200341800d6a200c419c0110cd051a200341980b6a200941dc0010cd051a2007417f6a210702400240024020144101460d0020034198056a201841980110cd051a200341b80a6a200341980b6a41dc0010cd051a20024102470d010b2007450d0b200320113602880d200320153602800d2003200a36028c0d200320133602840d200a20132f0106490d0102400240201328020022020d002011ad2106410021020c010b201541016a211520133301044220862011ad8421060b02402006422088a7221420022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042214200228020022022f01064f0d000b201a21060b2014410274200241e0006a220a6a41046a2802002113200220144103746a41086a21142006a7211102402015417f6a2202450d000340201328026021132002417f6a22020d000b0b2003200a3602940120032014360290012003410036028c012003201136028801200320133602840120034100360280010c020b200341e0036a20034198056a41980110cd051a200341d8096a200341b80a6a41dc0010cd051a200341f8086a200341d8096a41dc0010cd051a0c020b200320113602880120032015360280012003200a41016a36028c0120032013360284012003201341e0006a3602940120032013200a4103746a41086a2214360290010c000b0b0b2013200a4103746a41086a2114200a41016a210a0c000b0b41f8014108102d000b201320144103746a41086a210a201441016a21140c000b0b410021170c020b41012117410121270b02402017450d002026201741f8016c6a21112026210a0340200a41f0016a2802002113200a41e8016a28020021020240200a41ec016a2802002215450d000340200228026021022015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201536028c0d200320073602880d200320023602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012102200328029001210720032802940121152013417f6a22130d000b0b200a41f8016a210a0240200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b200a2011470d000b0b2027450d00202610200b02402017200f460d0041d2ddc2002114412d21150c050b200342003702e40741908cc5002113200341908cc5003602e007410021114100210a0240200f450d000240024020082f01060d0002400240200828020022020d004100211541002113410021020c010b20082f01042113410121150b0240201320022f0106490d000340201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a2107201341027420026a41e4006a2802002113410021162015417f6a2202450d010340201328026021132002417f6a22020d000c020b0b200841086a210741012116200821130b200341a4026a2117200f2111034020034180016a200710c70320032802a002211520032802800121022003290398012106200341980b6a201741dc0010cd051a2011417f6a2111024020024101460d00200341e0036a200341980b6a41dc0010cd051a20154102460d00200341b80a6a200341e0036a41dc0010cd051a200328028c0b211520032802840b2102024020032802880b2207450d000340200228026021022007417f6a22070d000b0b02402015450d0041002107410021144100210a03402003200a3602a405200320143602a0052003200236029c052003200736029805200341800d6a20034198056a106120032802880d2107200328028c0d210220032802900d211420032802940d210a2015417f6a22150d000b0b0240200241908cc500460d0020022802002107200210202007450d0020072802002115200710202015450d00024020152802002202450d000340201510202002211520022802002207210220070d000b0b201510200b200341e0076a200610600b024002402011450d00201620132f0106490d0102400240201328020022020d004100211541002113410021020c010b20132f01042113410121150b0240201320022f0106490d000340201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a2107201341027420026a41e4006a2802002113410021162015417f6a2202450d020340201328026021132002417f6a22020d000c030b0b20032802e807211120032802e407210a20032802e00721130c020b201320164103746a41086a2107201641016a21160c000b0b2003419c0d6a2019360200200341940d6a20103602002003200f3602a00d200341800d6a41186a200341e00c6a3602002003420037028c0d200320083602840d200341003602800d2003200341e00c6a3602880d20034180016a200341800d6a10c60320032d00880122024104460d02200320032900890137039805200320034180016a41106a221529000037009f0520032903800121064118101e2210450d01201020023a0008201020063703002010200329039805370009201041106a200329009f0537000020034180016a41206a200341800d6a41206a28020036020020034180016a41186a200341800d6a41186a2903003703002015200341800d6a41106a29030037030020034180016a41086a200341800d6a41086a290300370300200320032903800d3703800120034198056a20034180016a10c6030240024020032d00a00522184104470d00410121154101210c0c010b4128210741022114410121154101210c034020032903a805210620032802a405211920032d00a305210920032d00a205211720032d00a1052116200329039805211a02402015200c470d00201541016a22022015490d0320142002201420024b1b220cad42187e2237422088a70d032037a722024100480d030240024020150d002002101e21100c010b2010200741706a2002102221100b20100d0020024108102d000b201020076a220220063700002002417c6a20193600002002417b6a20093a00002002417a6a20173a0000200241796a20163a0000200241786a20183a0000200241706a201a370300201441026a2114200741186a2107201541016a211520034198056a20034180016a10c60320032d00a00522184104470d000b0b200c450d03201010200c030b1027000b41184108102d000b410021150b02402015200f460d000240200a450d00200a21020340201328026021132002417f6a22020d000b0340200a417f6a220a0d000b0b02402011450d0041002102410021154100210703402003200236028c0d200320153602880d200320133602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c012113200328029001211520032802940121022011417f6a22110d000b0b41ffddc200211441272115201341908cc500460d0120132802002102201310202002450d0120022802002113200210202013450d01024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c010b20032011360280092003200a3602fc08200320133602f808024002400240024002400240024002400240024002400240024002400240024002404112101e2202450d00200241106a41002f00e0d5433b0000200241086a41002900d8d543370000200241002900d0d54337000020024112412410222202450d0120022036370012200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e0072002411a200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210200240024002400240024002400240200341d0066a412041e4fdc600410041001002417f460d0020034180016a20361090042003290380012106200329038801211a200341800d6a20034180016a41106a41900110cd051a200341e0036a200341800d6a41900110cd051a2003201a3703a005200320063703980520034198056a41106a200341e0036a41900110cd051a4101210a20032802ec054101470d05200341f0056a2d00000e03020301020b200341e0036a200341800d6a41900110cd051a4100210a0c0e0b200341f8056a2802002110200341f4056a2802002111410221020c020b200341f4056a2802002111410021020c010b200341f8056a2802002110200341f4056a2802002111410121020b024002402003418c066a280200450d00200320034184066a36028801200320032802840636028401200320034188066a28020036028001200341e0036a20034180016a10ea0220032802e00321130c010b200342003702e40341908cc5002113200341908cc5003602e0030b200320032902e4033702dc09200320133602d8094101210a20024101460d01410021170c070b0c080b4101211602404103410620032802a8054102461b22154106201f41014622021b22134102201d1b201320021b220a4106460d00410021170c070b410121174101211620154106202041014622021b22134102201e1b201320021b220a4106470d0641012117024020224101470d004102210a2025450d060b41012117024020224101470d004103210a41002116200341d0056a2802004102460d070b20032802f80822132102024020032802fc082207450d0020132102200721150340200228026021022015417f6a22150d000b2007211503402015417f6a22150d000b0b2003280280092214450d0420022f01060d0202400240200228020022130d004100211541002102410021130c010b20022f01042102410121150b0240200220132f0106490d000340201541016a211520132f01042202201328020022132f01064f0d000b0b201320024103746a41086a2107200241027420136a41e4006a28020021024100210a2015417f6a2213450d030340200228026021022013417f6a22130d000c040b0b41124101102d000b41244101102d000b200241086a21074101210a0b20072903002106024002404116101e2213450d0041002900aad543211a41002900a4d5432137410029009cd543213903402013410e6a201a370000201341086a20373700002013203937000002400240024020134116412c10222213450d0020132006370016200341e0076a41186a22154200370300200341e0076a41106a22184200370300200341e0076a41086a22194200370300200342003703e0072013411e200341e0076a1001200341d0066a41186a2015290300370300200341d0066a41106a2018290300370300200341d0066a41086a2019290300370300200320032903e0073703d006201310200240200341d0066a412041e4fdc600410041001002417f470d004104210a0c090b2014417f6a211420034180016a200729030010e50220032d008201211720032d0081012116024020032802c001450d0020032802bc0110200b2014450d05200a20022f0106490d0102400240200228020022130d004100211541002102410021130c010b20022f01042102410121150b0240200220132f0106490d000340201541016a211520132f01042202201328020022132f01064f0d000b0b201320024103746a41086a2107200241027420136a41e4006a28020021024100210a2015417f6a2213450d020340200228026021022013417f6a22130d000c030b0b412c4101102d000b2002200a4103746a41086a2107200a41016a210a0b200729030021064116101e22130d000b0b41164101102d000b20032802f808211320032802fc0821070b0240024020070d00201321020c010b20132102200721150340200228026021022015417f6a22150d000b0340201320132f01064102746a41e0006a28020021132007417f6a22070d000b0b20132f010621152003280280092107200342003702840d200341908cc5003602800d2003419c016a201536020020034194016a2013360200200320073602a00120034198016a200341f8086a3602002003420037028c0120032002360284014100211420034100360280012003200341f8086a3602880120034180016a200341800d6a10b503200341c00a6a20032802880d360200200320032903800d22063703b80a2006a7220a2113024020032802bc0a2217450d00200a211320172102034020132802f80621132002417f6a22020d000b2017210203402002417f6a22020d000b0b20032802c00a221821070240024002400340024020070d00200341013a00e007200341003602800d2003201d3602e4032003201f3602e0030240024020170d00200a21020c010b200a210220172113034020022802f80621022013417f6a22130d000b0340200a200a2f01064102746a41f8066a280200210a2017417f6a22170d000b0b2003419c016a200a2f010636020020034194016a200a360200200320183602a0012003420037028c0120032002360284012003410036028001200341ac016a200341e0076a360200200341a8016a200341800d6a36020020034198016a200341b80a6a3602002003200341b80a6a360288012003200341e0036a3602a40120034180016a10b60320032802d80922022107024020032802dc092215450d0020152113200221070340200728026021072013417f6a22130d000b0b20074520072f01064572210a2002211302402015450d0020152114200221130340201320132f01064102746a41e0006a28020021132014417f6a22140d000b0b024020134520132f010622144572201320144103746a22184572200a724101470d000240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114410021094102211820032802e009210a200341d8096a220721170c050b20032802f80822162114024020032802fc082217450d0020172113201621140340201428026021142013417f6a22130d000b0b20144520142f0106457221192016211302402017450d002017210a201621130340201320132f01064102746a41e0006a2802002113200a417f6a220a0d000b0b024020134520132f0106220a45722013200a4103746a221345722019724101470d000240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114410021094102211820032802e009210a200341d8096a220721170c050b024002400240024002402018290300223720142903082239540d00417f200729030822062013290300221a522006201a541b22134101460d002013450d0120372039520d0420150d02200221130c030b0240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114410021094102211820032802e009210a200341d8096a220721170c080b0240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f010621144100210941022118200341d8096a2117024020032802e00922150d00201721074100210a0c080b2015417f6a210a024020132f0106450d0041012109201721070c080b02400240201328020022150d0041002116200341d8096aad2106410021150c010b2013330104422086200341d8096aad842106410121160b024002402006422088a7221320152f01064f0d002006211a0c010b03402006221a42ffffffff0f832106201641016a211620152f01042213201528020022152f01064f0d000b0b41022118201341027420156a41e4006a2802002113201aa721072016417f6a2215450d060340201328026021132015417f6a22150d000c070b0b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f010621144100210941022118200341d8096a2107024020032802e00922150d00200721174100210a0c060b2015417f6a210a20140d0302400240200228020022150d0041002114200341d8096aad2106410021150c010b2002330104422086200341d8096aad842106410121140b02402006422088a722020d00034002400240201528020022020d00410021150c010b2015330104422086200642ffffffff0f83842106201441016a2114200221150b2006422088a72202450d000b0b41022118200241027420156a41dc006a280200210202402014417f6a2215450d000340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2006a7211720022f010621140c050b2003280280092219410476211820032802e009210a0240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114200341d8096a21070240200a20184b0d0041002109200341f8086a210c41012118200721170c050b0240024020170d00201621150c010b20162115201721180340201528026021152018417f6a22180d000b0340201620162f01064102746a41e0006a28020021162017417f6a22170d000b0b20162f0106211d410021184100210c41002109200721170c040b02400240201420132f0106490d0002400240201328020022020d004100211541002113410021020c010b20132f01042113410121150b0240201320022f0106490d000340201541016a211520022f01042213200228020022022f01064f0d000b0b2002201341c8006c6a41e0006a2116201341027420026a41fc066a2802002113410021142015417f6a2202450d01034020132802f80621132002417f6a22020d000c020b0b2013201441c8006c6a41e0006a2116201441016a21140b2007417f6a210720162d0030450d000b200a2017201810b7034105210a0c040b2014417f6a2114200721170c010b0b2003420037029c0b200341908cc5003602980b200341cc016a410036020020034180016a41c8006a2019360200200341c4016a201d360200200341bc016a2016360200200341b4016a4200370200200341ac016a2015360200200341a8016a200c360200200341a4016a200a360200200341a0016a20143602002003419c016a201736020020034198016a200236020020034194016a410036020020034190016a20093602002003418c016a200736020020034180016a41086a2013360200200341c0016a200341f8086a360200200341b0016a200341f8086a36020020034100360284012003201836028001024020034180016a10652202450d000340200341e0076a200210c20320022903002106200341800d6a200341e0076a41c80010cd051a200341e0036a200341980b6a2006200341800d6a10c303024020032903e8034202510d0020032802a004450d00200328029c0410200b20034180016a106522020d000b0b200341e0076a41086a200341980b6a41086a280200360200200320032903980b22063703e007200341023a00980b200320253602840d200320223602800d2003201e3602e403200320203602e0032006a721020240024020032802e40722150d00200221130c010b2002211320152107034020132802f80621132007417f6a22070d000b0340200220022f01064102746a41f8066a28020021022015417f6a22150d000b0b2003419c016a20022f010636020020034194016a2002360200200320032802e8073602a0012003420037028c012003201336028401200341ac016a200341980b6a360200200341a8016a200341800d6a36020020034180016a41186a200341e0076a3602002003200341e0076a360288012003200341e0036a3602a401200341003602800120034180016a10b60310792113200341800d6a203610900420034180016a200341800d6a41d00010cd051a200341e0036a41086a200341800d6a41086a290300370300200341e0036a41106a200341800d6a41106a290300370300200341e0036a41186a200341800d6a41186a290300370300200341e0036a41206a200341800d6a41206a290300370300200320032903800d3703e003200341800d6a41ec006a2802002115200341800d6a41f0006a2802002107200341800d6a41f4006a2802002114200341800d6a41f8006a280200210a200341800d6a41fc006a2802002116200341800d6a4180016a2802002117200341800d6a418c016a280200210220032802d00d211820032902840e210620032802d40d2119200341e0036a41c8006a20034180016a41c8006a290300370300200341e0036a41c0006a20034180016a41c0006a290300370300200341e0036a41386a20034180016a41386a290300370300200341e0036a41306a20034180016a41306a290300370300200320032903a8013703880420034180016a200341e0036a41d00010cd051a20034180016a418c016a200236020020034180016a4180016a20174100201941014622021b36020020034180016a41fc006a2016410020021b36020020034180016a41f8006a200a410020021b36020020034180016a41f4006a2014410020021b36020020034180016a41f0006a2007410020021b36020020034180016a41ec006a201541908cc50020021b360200200341e8016a2010360200200341e4016a4101360200200341e0016a2011360200200341dc016a2013360200200341d8016a4182083b010020034180016a4198016a200341800d6a4198016a2802003602002003200637028402200341013602d401200320183602d001200320032903900e37039002203620034180016a10b40320032802e00720032802e40720032802e80710b70320032802b80a20032802bc0a20032802c00a10b70320032802e009211320032802d8092102024020032802dc092215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b0240200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b024020032802ec05450d00200328028c0621132003280284062102024020034188066a2802002215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b0240200341ac066a280200450d0020032802a80610200b200341800d6a41086a200341f8086a41086a2802002214360200200320032903f80822063703800d2006a721020240024020032802840d22150d00200221130c010b20152107200221130340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2003419c016a20022f010636020020034198016a410036020020034194016a2002360200200320143602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a040c040b410021160b20032802e009211320032802d8092102024020032802dc092215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b0240200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b20032802ec05450d00200328028c0621132003280284062102024020034188066a2802002215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b200341ac066a280200450d0020032802a80610200b200341800d6a41086a200341f8086a41086a2802002214360200200320032903f80822063703800d2006a721020240024020032802840d22150d00200221130c010b20152107200221130340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2003419c016a20022f010636020020034198016a410036020020034194016a2002360200200320143602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a0441f7e5c2002114411b2115200a0e0701020304050800010b4102212720044102470d050c060b41ace1c2002114411321150c060b41bfe1c2002114411d21150c050b41dce1c20041a2e2c200201741ff017141014722021b41e4e2c20041a3e3c20020021b201641ff017141014622131b211441c60041c20020021b413f413b20021b20131b21150c040b41dee3c20041a4e4c200201741ff017141014722021b41e6e4c20041a5e5c20020021b201641ff017141014622131b211441c60041c20020021b413f413b20021b20131b21150c030b41e0e5c2002114411721150c020b4200213c200341d0066a41086a22024200370300200342003703d00641f8a7c3004118200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202400240024002402003280280012213417f460d002002450d0020134108490d012002290000213c200210200b410f101e2202450d01200241076a41002900d4ca40370000200241002900cdca403700002002410f411e10222202450d022002203c37000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210200240200341d0066a412041e4fdc600410041001002417f470d0041c5e6c2002114412121150c050b20042127201210794b0d034192e6c2002114413321150c040b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b410f4101102d000b411e4101102d000b1079212820034200370264200341908cc5003602600240200f450d000240024020082f01060d0002400240200828020022020d004100211341002115410021020c010b20082f01042115410121130b0240201520022f0106490d000340201341016a211320022f01042215200228020022022f01064f0d000b0b200220154103746a41086a2107201541027420026a41e4006a2802002108410021102013417f6a2202450d010340200828026021082002417f6a22020d000c020b0b200841086a2107410121100b202341014621292024410146212a2027410146213d200341800d6a410272213e20034198056a410272213f200341800d6a41e0006a211720034198056a410172211f200341f40d6a2104200341800d6a41206a210c200341980b6a41186a21402035a7214120034180016a41206a210a200341d00d6a211e200341a4026a2116200341c00b6a2142034020034180016a200710c70320032802a00221142003280280012102200341800d6a41086a2215200a41086a290200370300200341800d6a41106a2207200a41106a290200370300200341800d6a41186a2213200a41186a2902003703002003200a2902003703800d200329039001211a200329039801213520032903c0012106200341980b6a201641dc0010cd051a024020024101460d00200341f80b6a41186a22022013290300370300200341f80b6a41106a22112007290300370300200341f80b6a41086a22182015290300370300200320032903800d3703f80b200341e0036a200341980b6a41dc0010cd051a20144102460d00200341b80a6a200341e0036a41dc0010cd051a200341980c6a41186a22222002290300370300200341980c6a41106a22232011290300370300200341980c6a41086a22242018290300370300200320032903f80b3703980c42002139024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020274102460d00200341f0066a41086a22024200370300200342003703f00641f684c2004121200341f0066a1000200341b80c6a41086a22252002290300370300200320032903f0063703b80c200341003602800d200341b80c6a4110200341800d6a100321140240024020032802800d2211417f470d00420021360c010b20114108490d0f20142900002136201410200b200320363703800720024200370300200342003703f00641f684c2004121200341f0066a100020252002290300370300200320032903f0063703b80c2003203642017c3703800d200341b80c6a4110200341800d6a41081005411a101e2214450d0d201441002900baef412238370000201441186a41002f00d2ef41222b3b0000201441106a41002900caef41223a370000201441086a41002900c2ef41224337000020032903800721362014411a413410222226450d0c2026203637001a200341d8096a41186a22144200370300200341d8096a41106a22114200370300200341d8096a41086a22184200370300200342003703d80920264122200341d8096a1001200341f8086a41186a222c2014290300370300200341f8086a41106a222f2011290300370300200341f8086a41086a222e2018290300370300200320032903d8093703f8082026102020034198056a200341f8086a10af030240024020032903b80522364202520d00200320034180076a3602f00c201442003703002011420037030020184200370300200342003703d80941d4efc1004122200341d8096a1001200341e0076a41186a222d2014290300370300200341e0076a41106a22312011290300370300200341e0076a41086a22302018290300370300200320032903d8093703e007200341003602800d200341e0076a4120200341800d6a100321260240024020032802800d2233417f460d002026450d00203341074b0d0141ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b42002136201442003703002011420037030020184200370300200342003703d80941d4efc1004122200341d8096a1001202d20142903003703002031201129030037030020302018290300370300200320032903d8093703e00720032003290380073703800d200341e0076a4120200341800d6a41081005420021390c020b2026290000214420261020200341d0066a204410b003200341800d6a200341d0066a10af0320032903a00d4202510d0d2030200c41086a29030022453703002031200c41106a2903002236370300202d200c41186a29030022463703002003200c29030022473703e007201529030021392013290300214820032903800d214920032903900d214a20402046370300200341980b6a41106a2036370300200341980b6a41086a2045370300200320473703980b201320483703002003204a3703900d200320393703880d200320493703800d20032040410020364201511b3602a40d2003200341f00c6a3602a00d200341003602e807200342013703e0074110101e2226450d0c20262049370000202620393700082003429080808080023702e407200320263602e00720264110412010222226450d0b2026204a370010202641186a2048370000200342a080808080043702e407200320263602e007200c200341e0076a10810120032802e4072126200341d0066a412020032802e007223320032802e807100502402026450d00203310200b20032802f00c2126201442003703002011420037030020184200370300200342003703d80941d4efc1004122200341d8096a1001202d20142903003703002031201129030037030020302018290300370300200320032903d8093703e007200320262903003703800d200341e0076a4120200341800d6a4108100542012139420021360c010b20032903d005214420032903c805213920032903c005214b0b201342003703002007420037030020154200370300200342003703800d200320443703b80d200320393703b00d2003204b3703a80d200320363703a00d200341003602a00520034201370398054110101e2215450d08201542003700082015420037000020034290808080800237029c05200320153602980520154110412010222215450d0720154200370010201541186a4200370000200342a0808080800437029c052003201536029805200c20034198056a109401200328029c052115200341f8086a4120200328029805220720032802a005100502402015450d00200710200b2003290380072139200341800d6a201a10f20220032903b00d4202510d0620034198056a41086a200441086a29020037030020034198056a41106a200441106a29020037030020034198056a41186a200441186a29020037030020034198056a41206a200441206a2d00003a0000200320042902003703980520032802f00d210720032802ec0d212620032802e80d212d20032802dc0d213120032802d80d214c20032802d00d213020032802cc0d214d20032802c40d213320032802c00d214e20034180076a41186a223b201f41186a29000037030020034180076a41106a224f201f41106a29000037030020034180076a41086a2250201f41086a2900003703002003201f29000037038007410f101e2215450d05201541076a41002900d4ca40370000201541002900cdca403700002015410f411e10222215450d042015203c37000f201442003703002011420037030020184200370300200342003703d80920154117200341d8096a1001200341e0076a41186a2014290300370300200341e0076a41106a2011290300370300200341e0076a41086a2018290300370300200320032903d8093703e00720151020024002400240200341e0076a412041e4fdc600410041001002417f470d00410121150c010b411a101e2215450d05201541186a202b3b0000201541106a203a370000201541086a2043370000201520383700002015411a413410222215450d042015203937001a201442003703002011420037030020184200370300200342003703d80920154122200341d8096a1001202c2014290300370300202f2011290300370300202e2018290300370300200320032903d8093703f8082015102041002115200341f8086a412041e4fdc600410041001002417f460d0010792012490d01410221150b200320153a00800d41a885c2004125200341800d6a41d085c20041e085c200102e000b20024200370300200342003703f00641f085c200412a200341f0066a100020252002290300370300200320032903f0063703b80c200341003602800d200341b80c6a4110200341800d6a100321150240024020032802800d2214417f470d00420021360c010b20144108490d0220152900002136201510200b20024200370300200342003703f00641f085c200412a200341f0066a100020252002290300370300200320032903f0063703b80c2003203642017c3703800d200341b80c6a4110200341800d6a4108100520132032370300201e200329038007370300201e41086a2050290300370300201e41106a204f290300370300201e41186a203b290300370300200c4200370300200c41086a4200370300200c41106a4200370300200c41186a4200370300200320343703900d2003203c3703880d200320393703800d200320413602cc0d2003203d3602c80d200320123602c40d200341013602c00d2036200341800d6a10c00302402033450d00204e10200b02402030450d00204d10200b02402031450d00204c10200b202d2026200710f502420121390b200341e0076a203510e50220032903f007213820032903e807213a200341f0066a41086a22024200370300200342003703f00641d5efc2004121200341f0066a1000200341d0066a41086a22152002290300370300200320032903f0063703d006200341003602800d200341d0066a4110200341800d6a1003211302400240024020032802800d2207417f470d00420021350c010b024020130d00420021350c010b200741074d0d0120132900002135201310200b20052009203a42015122131b21092029201d20131b211d201c201920131b21192038203720131b2137200342013703800d200320353703880d200341800d6a10fc032138200341d8096a41186a22112022290300370300200341d8096a41106a22182023290300370300200341d8096a41086a22222024290300370300200320032903980c3703d809410221070240202a410220131b22134102460d00201d4101462114201341014621070b200341f8086a41186a22132011290300370300200341f8086a41106a22112018290300370300200341f8086a41086a22182022290300370300200320032903d8093703f8082003202041ff017122203602dc0d200341003602c80d200320383703c00d200320283602b80d200320063703b00d2003201b3703a80d200320093602a40d200320143602a00d2003201936029c0d200320073602980d200320373703900d200320363703880d200320393703800d201720032903f808370300201741086a2018290300370300201741106a2011290300370300201741186a20132903003703002035200341800d6a10ed02200341033a00880d200320353703800d0240201a200341800d6a1089040d0020024200370300200342003703f00641d5efc2004121200341f0066a100020152002290300370300200320032903f0063703d006200341003602800d200341d0066a4110200341800d6a1003211302400240024020032802800d2207417f460d002013450d00200741074d0d022013290000211a20131020201a42017c211a0c010b4201211a0b20024200370300200342003703f00641d5efc2004121200341f0066a100020152002290300370300200320032903f0063703d0062003201a3703800d200341d0066a4110200341800d6a410810050240024002402003280260220241908cc500460d00200328026421140c010b203f410041b20110cc051a41b801101e2202450d014100211420024100360200200241046a20034198056a41b40110cd051a20034100360264200320023602600b03400240024020022f010622110d00410021130c010b20114103742115200241086a2107417f21130340024020150d00201121130c020b2007290300211a201541786a2115201341016a2113200741086a21070240417f201a200652201a2006561b41016a0e03020001020b0b200220134103746a41e0006a20353703000c150b02402014450d002014417f6a2114200220134102746a41b8016a28020021020c010b0b2003200328026841016a36026802400240024020022f01062215410b490d0002400240200241908cc500460d00203e410041b20110cc051a41b801101e22150d0141b8014108102d000b41c8a6c000412d41a888c6001028000b20154100360200201541046a200341800d6a41b40110cd051a200229039001211a20022903382139201541086a200241c0006a20022f010641796a2207410374221410cd052111201541e0006a20024198016a201410cd052114200241063b0106201520073b010620134107490d012011201341037441506a22186a2011201341796a221341037422226a2211200741ffff037120136b41037410ce051a20112006370300201420186a201420226a2214201541066a22072f010020136b41037410ce051a0c020b200241086a22142013410374220741086a22116a201420076a2214201520136b41037410ce051a20142006370300200241e0006a221520116a201520076a221520022f010620136b41037410ce051a20152035370300200220022f010641016a3b01060c150b200241066a2107200241086a22112013410374221441086a22186a201120146a221120022f010620136b41037410ce051a20112006370300200241e0006a221120186a201120146a221420022f010620136b41037410ce051a0b20142035370300200720072f010041016a3b01000240200228020022130d0041002113200341e0006a21020c130b200320022f01043602a4052003201336029c052003200341e0006a3602a0052003410136029805200341800d6a20034198056a2039201a20154100105920032802800d4101470d130340200328028c0d210220032802940d211320032802900d211520032903a00d211a20032903980d213920032802880d22072802002214450d1320032802840d2111200320072f01043602a405200320023602a0052003201436029c052003201141016a36029805200341800d6a20034198056a2039201a20152013105920032802800d4101460d000c140b0b41b8014108102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41cda6c3004121419c86c2001028000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41344101102d000b411a4101102d000b411e4101102d000b410f4101102d000b41e988c700412b419885c2001028000b41204101102d000b41104101102d000b41204101102d000b41104101102d000b41b8e7c50041920141cce8c5001045000b41344101102d000b411a4101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b203f410041b20110cc051a200341800d6a20034198056a41b40110cd051a20424200370300200341980b6a41206a2214420037030020404200370300200341980b6a41106a22114200370300200341980b6a41086a22184200370300200342003703980b41e801101e2207450d0120074100360200200741046a200341800d6a41b40110cd051a200741e0016a2042290300370300200741d8016a2014290300370300200741d0016a2040290300370300200741c8016a2011290300370300200741c0016a2018290300370300200720032903980b3703b8012007200228020022143602b8012002200736020020022002280204221141016a360204201441003b01042014200736020020112013470d0220072f01062202410a4b0d03200720024103746a221341e0006a201a370300201341086a20393703002007200241016a22024102746a41b8016a2015360200200720023b0106201520023b0104201520073602000b024020032802a008450d00200328029c0810200b200328028c0b211320032802840b2102024020032802880b2215450d000340200228026021022015417f6a22150d000b0b02402013450d004100211541002107410021140340200320143602a405200320073602a0052003200236029c052003201536029805200341800d6a20034198056a106120032802880d2115200328028c0d210220032802900d210720032802940d21142013417f6a22130d000b0b200241908cc500460d0520022802002115200210202015450d0520152802002113201510202013450d05201328020022020d030c040b41e8014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b0340201310202002211320022802002215210220150d000b0b201310200b200f417f6a220f450d010240201020082f0106490d0002400240200828020022020d004100211341002115410021020c010b20082f01042115410121130b0240201520022f0106490d000340201341016a211320022f01042215200228020022022f01064f0d000b0b200220154103746a41086a2107201541027420026a41e4006a2802002108410021102013417f6a2202450d010340200828026021082002417f6a22020d000c020b0b200820104103746a41086a2107201041016a21100c000b0b2003418b0d6a200341e0006a41086a280200360000200320032903603700830d20034180016a41086a41073a000020034189016a20032900800d37000020034190016a200341800d6a41076a29000037000020034198016a2021370300200341163a00800120034180016a10770240200b450d00200b21020340200d280260210d2002417f6a22020d000b0340200b417f6a220b0d000b0b0240200e450d0041002102410021134100211503402003200236028c0d200320133602880d2003200d3602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c01210d20032802900121132003280294012102200e417f6a220e0d000b0b0240200d41908cc500460d00200d2802002102200d10202002450d0020022802002113200210202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b200341800d6a41086a200341e00c6a41086a280200220a360200200320032903e00c22063703800d2006a721020240024020032802840d22150d00200221130c010b20152107200221130340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2003419c016a20022f01063602004100211420034198016a410036020020034194016a20023602002003200a3602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a040c170b0240200b450d00200b21020340200d280260210d2002417f6a22020d000b0340200b417f6a220b0d000b0b0240200e450d0041002102410021134100210703402003200236028c0d200320133602880d2003200d3602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c01210d20032802900121132003280294012102200e417f6a220e0d000b0b200d41908cc500460d00200d2802002102200d10202002450d0020022802002113200210202013450d00024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200b200341800d6a41086a200341e00c6a41086a280200220d360200200320032903e00c22063703800d2006a721020240024020032802840d22070d00200221130c010b2007210a20022113034020132802602113200a417f6a220a0d000b0340200220022f01064102746a41e0006a28020021022007417f6a22070d000b0b2003419c016a20022f010636020020034198016a410036020020034194016a20023602002003200d3602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a040c150b201410200b200b41ff0171450d0220032802b404450d0020032802d404211420032802cc0421150240200341d0046a2802002208450d002008210b034020152802602115200b417f6a220b0d000b03402008417f6a22080d000b0b02402014450d00410021084100210b4100210e03402003200e36028c0d2003200b3602880d200320153602840d200320083602800d20034180016a200341800d6a10612003280288012108200328028c012115200328029001210b200328029401210e2014417f6a22140d000b0b201541908cc500460d0020152802002108201510202008450d0020082802002114200810202014450d00024020142802002215450d000340201410202015211420152802002208211520080d000b0b201410200b0240200341f4046a280200450d0020032802f00410200b411921154193e1c20021140b02402016450d000240200d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402010450d004100210d410021084100210b03402003200d36028c0d200320083602880d200320133602840d2003200b3602800d20034180016a200341800d6a1061200328028801210b200328028c0121132003280290012108200328029401210d2010417f6a22100d000b0b201341908cc500460d0020132802002110201310202010450d002010280200210d20101020200d450d000240200d2802002213450d000340200d10202013210d20132802002210211320100d000b0b200d10200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021074100210d03402003201336028c0d200320073602880d200320023602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c01210220032802900121072003280294012113200a417f6a220a0d000b0b200241908cc500460d1120022802002107200210202007450d1120072802002113200710202013450d11024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c110b1079211420034180016a200341e0036a41d00010cd051a200341800d6a41086a200341e0036a41086a290300370300200341800d6a41106a200341e0036a41106a290300370300200341800d6a41186a200341e0036a41186a290300370300200341800d6a41206a200341e0036a41206a290300370300200320032903e0033703800d200341e0036a41f0006a2802002108200341e0036a418c016a280200211520032802b004210b20032902e404211b20032802cc04210e20032802d404211820032802d804210920032802dc04210c20032802e004210f20032802b4042112200341800d6a41c8006a20034180016a41c8006a290300370300200341800d6a41c0006a20034180016a41c0006a290300370300200341800d6a41386a20034180016a41386a290300370300200341800d6a41306a20034180016a41306a290300370300200320032903a8013703a80d20034180016a200341800d6a41d00010cd051a20034180016a418c016a201536020020034180026a200f4100201241014622151b360200200341fc016a200c410020151b360200200341f8016a2009410020151b360200200341f4016a2018410020151b36020020034180016a41f0006a2008410020151b360200200341ec016a200e41908cc50020151b360200200341e0016a2014360200200341dc016a2019360200200341d8016a41013a000020034180016a4198016a200341e0036a4198016a2802003602002003201b37028402200341013602d4012003200b3602d001200320032903f00437039002201a20034180016a10b40320034180016a41106a200637030020034180016a41086a41063a0000200341163a00800120034180016a107702402016450d000240200d450d00200d21150340201328026021132015417f6a22150d000b0340200d417f6a220d0d000b0b02402010450d0041002115410021144100210d03402003201536028c0d200320143602880d200320133602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c012113200328029001211420032802940121152010417f6a22100d000b0b201341908cc500460d0020132802002114201310202014450d0020142802002115201410202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021154100210703402003201336028c0d200320153602880d200320023602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c01210220032802900121152003280294012113200a417f6a220a0d000b0b410021140240200241908cc500470d000c110b2002280200211520021020024020150d000c110b2015280200211320151020024020130d000c110b024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200c100b201410200b02402018450d00201910200b4122211541f1e0c20021140b02402016450d000240200d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402010450d004100210d410021084100210b03402003200d36028c0d200320083602880d200320133602840d2003200b3602800d20034180016a200341800d6a1061200328028801210b200328028c0121132003280290012108200328029401210d2010417f6a22100d000b0b201341908cc500460d0020132802002110201310202010450d002010280200210d20101020200d450d000240200d2802002213450d000340200d10202013210d20132802002210211320100d000b0b200d10200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021074100210d03402003201336028c0d200320073602880d200320023602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c01210220032802900121072003280294012113200a417f6a220a0d000b0b200241908cc500460d0d20022802002107200210202007450d0d20072802002113200710202013450d0d024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c0d0b201510200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021154100210703402003201336028c0d200320153602880d200320023602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c01210220032802900121152003280294012113200a417f6a220a0d000b0b410021140240200241908cc500470d000c0c0b2002280200211520021020024020150d000c0c0b2015280200211320151020024020130d000c0c0b024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200c0b0b201310200b20034180016a41106a201b370300200341b8016a2006370300200341b0016a201a370300200341a8016a202f3a0000200341a4016a200c36020020034180016a41206a202e3602002003419c016a200f36020020034180016a41186a202d360200200341ac016a200328009b0b360000200341d0016a20313a0000200341cc016a2019360200200341c8016a2030360200200341c4016a2009360200200341c0016a202c36020020032021370388012003203237038001200320032802980b3600a901200341d8016a200a360200200341dc016a200b360200200341e0016a2018360200200341e4016a2017360200200341e8016a2029360200200341ec016a2016360200200341f0016a2027360200200341f4016a2011360200200341f8016a2025360200200341fc016a200e36020020034180026a202336020020034184026a200836020020034188026a20203602002003418c026a201036020020034190026a201f36020020034194026a200d36020020034198026a201c360200200341a0026a20123b01002003419e026a20043b01002003419c026a20053b0100200341d4016a20032800bb0a360000200320032802b80a3600d101200341ac026a4200370200200341a6026a200341d4066a2f01003b0100200341a2026a20032802d006360100200341c0026a200341800d6a41086a290300370300200341c8026a200341800d6a41106a290300370300200341d0026a200341800d6a41186a290300370300200341908cc5003602a802200320032903800d3703b802200341003602a005200342013703980502400240024002404108101e2202450d002003410836029c05200320032802a005221341086a3602a0052003200236029805200220136a2032370000200341a8026a20034198056a106220034180016a41086a20034198056a10fa03200341b8026a20034198056a109401200328029c052102200341980c6a4120200328029805221320032802a005100502402002450d00201310200b20032802b002211320032802a8022102024020032802ac022215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d004100211541002107410021140340200320153602a405200320073602a0052003200236029c052003201436029805200341800d6a20034198056a106120032802880d2114200328028c0d210220032802900d210720032802940d21152013417f6a22130d000b0b200241908cc500460d0320022802002115200210202015450d0320152802002113201510202013450d03201328020022020d010c020b41084101102d000b0340201310202002211320022802002215210220150d000b0b201310200b200341d0066a41086a22024200370300200342003703d00641d0a7c3004128200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012213417f460d002002450d00024020134108490d002002290000210620021020200642017c21060c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b420121060b200341d0066a41086a22024200370300200342003703d00641d0a7c3004128200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003200637038001200341f00c6a411020034180016a4108100520034180016a41106a203437030020034180016a41086a41043a0000200341163a00800120034180016a1077410021140c090b2013450d08200710200c080b0240200328029805450d00200328029c052202450d00200341a0056a280200450d00200210200b024020032802e003450d0020032802e4032202450d00200341e8036a280200450d00200210200b024020032802e007450d0020032802e4072202450d00200341e8076a280200450d00200210200b024020032802980b450d00200328029c0b2202450d00200341a00b6a280200450d00200210200b20032802b80a2202450d0720032802bc0a450d07200210200c070b41cda6c300412141b4a7c3001028000b4180a7c300412341a4a7c3001028000b20034188016a280200211520032802840121140240200d450d00201110200b02402002450d002010450d00200210200b02402013450d002008450d00201310200b02402007450d00200b450d00200710200b200a450d04200e450d04200a10200c040b20032802880121150b20032802840121140c020b2003201520026a220a36028801201320156a2014200210cd051a200341e0076a41186a22154200370300200341e0076a41106a220d4200370300200341e0076a41086a22104200370300200342003703e0072013200a200341e0076a1001200341980c6a41186a2015290300370300200341980c6a41106a200d290300370300200341980c6a41086a2010290300370300200320032903e0073703980c02402007450d00201310200b2003410036028001200341980c6a412020034180016a10032113024002400240024002402003280280012215417f460d002013450d002003201536029c05200320133602980520034180016a20034198056a109b042003290380014201510d02200341800d6a41186a2207200341a0016a290300370300200341800d6a41106a220a20034180016a41186a220d290300370300200341800d6a41086a221020034180016a41106a220829030037030020032003290388013703800d02402015450d00201310200b200d2007290300221b3703002008200a290300222137030020034180016a41086a2010290300223237030020034198056a41086a202137030020034198056a41106a201b370300200320032903800d370380012003203237039805410021130c010b20032002360288012003200236028401200320143602800120034198056a20034180016a109c04410121130b20034180016a41106a200341a0056a29030037030020034198016a20034198056a41106a2903003703002003201a37038001200320032903980537038801200341203602840d2003200341980c6a3602800d20034180016a200341800d6a109d0420032802880122150d010c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b2003418c016a280200450d00201510200b024020034194016a2802002215450d0020034198016a280200450d00201510200b02402002452013720d00201410200b200341d0066a41086a22024200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012213417f460d002002450d00024020134108490d002002290000211b20021020201b42017c211b0c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4201211b0b200341d0066a41086a22024200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003201b37038001200341f00c6a411020034180016a41081005024002402006200341e0036a1089040d0020034180016a41106a201a3703004100211420034180016a41086a41003a0000200341163a00800120034180016a107720032802fc080d010c030b41cda6c300412141f0a6c3001028000b201610200c010b02402010450d002011450d00201010200b0240200d450d00200e450d00200d10200b0240200a450d00200b450d00200a10200b02402007450d002008450d00200710200b20032802fc08450d0020032802f80810200b0240024020012d0000220241104b0d00410120027441bef207710d010b200241786a220241074b0d000240024002400240024020020e080005050105050203000b2001410c6a2802002113200141046a28020021020240200141086a2802002201450d00200121070340200228026021022007417f6a22070d000b03402001417f6a22010d000b0b02402013450d0041002101410021074100210a03402003200136028c0d200320073602880d200320023602840d2003200a3602800d20034180016a200341800d6a1061200328028801210a200328028c012102200328029001210720032802940121012013417f6a22130d000b0b200241908cc500460d0420022802002101200210202001450d0420012802002102200110202002450d0420022802002201450d030340200210202001210220012802002213210120130d000c040b0b200141286a280200450d03200141246a28020010200c030b200141086a280200450d02200141046a28020010200c020b200141086a280200450d01200141046a28020010200c010b200210200b2000201536020420002014360200200341e00e6a24000bb20c02067f067e230041b0016b2205240002400240024002404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302001200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b20054100360240200541106a4120200541c0006a1003210620052802402207417f460d022006450d0220074110490d01200641086a290000210b2006290000210c200610200c030b41144101102d000b41ceb8c4004133200541c0006a41fcbfc4004184b9c400102e000b4200210c4200210b0b02400240024002404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302002200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b20054100360240200541106a4120200541c0006a1003210620052802402207417f460d022006450d0220074110490d01200641086a290000210d2006290000210e200610200c030b41144101102d000b41ceb8c4004133200541c0006a41fcbfc4004184b9c400102e000b4200210e4200210d0b02400240200c20037d220f200c56200b20047d200c200354ad7d220c200b56200c200b511b4101470d00418abfc5002106411d21010c010b200541086a20014102200f200c10940402400240200528020822060d00200e20037c2210200e542206200d20047c2006ad7c220b200d54200b200d511b450d0141a7bfc5002106412d21010c020b200528020c21010c010b41002106024020012002470d000c010b024020012002412010cf050d000c010b2001200f200c10930302404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302002200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b0240200541106a412041e4fdc600410041001002417f470d00200541f8006a200b370300200541f0006a2010370300200541c0006a41086a41003a0000200541c9006a2002290000370000200541d1006a200241086a290000370000200541d9006a200241106a290000370000200541e1006a200241186a290000370000200541023a0040200541c0006a10770b20022010200b10930320054200370348200542003703402005200541c0006a360210200541106a109402200541a8016a4200370300200541a0016a420037030020054198016a200437030020054190016a2003370300200541c0006a41086a41023a0000200541c9006a2001290000370000200541d1006a200141086a290000370000200541d9006a200141106a290000370000200541e1006a200141186a290000370000200541e9006a2002290000370000200541f1006a200241086a290000370000200541f9006a200241106a29000037000020054181016a200241186a290000370000200541023a0040200541c0006a1077410021060c010b41144101102d000b2000200136020420002006360200200541b0016a24000ba6d10105017f027e077f077e0f7f23004180066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e10000102030405060708090e0f10111415000b200341ac016a41013602002003420137029c0120034184e6c6003602980120034104360294022003418cb4c60036029002200320034190026a3602a80120034198016a41d483c6001033000b200141306a2903002104200141286a290300210520012d0001210620034190026a41206a200141246a28020036020020034190026a41186a2001411c6a29020037030020034190026a41106a200141146a29020037030020034190026a41086a2001410c6a290200370300410421072003200141046a29020037039002200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d00200341d0006a41026a200a2d00003a000020034190036a41086a200b29030037030020034190036a41106a200c2d00003a0000200320032f0188053b015020032003290398013703900341002101200821070b200341e0056a41026a200341d0006a41026a2d00003a0000200341e0026a41086a20034190036a41086a290300370300200341e0026a41106a20034190036a41106a2d00003a0000200320032f01503b01e00520032003290390033703e0020240024020010d00200341e7006a200341e0026a41086a290300370000200341ef006a200341e0026a41106a2d00003a0000200320032f01e0053b01502003200d37005720032007360053200320032903e00237005f2003200341e2056a2d00003a0052410e101e2202450d16200241002900d8d643370000200241066a41002900ded6433700002003428e808080e00137029c012003200236029801200341d0006a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b200341f8006a412041e4fdc600410041001002417f460d0141bab5c4002101411421090c300b419affc6002101410f2109024020070e0700260a0b0c2530000b200d422088a72109200da721010c2f0b20034198016a41206a20034190026a41206a28020036020020034198016a41186a20034190026a41186a29030037030020034198016a41106a20034190026a41106a29030037030020034198016a41086a20034190026a41086a29030037030020032003290390023703980120034190036a20034198016a10b602200341aa056a220220032d0093033a0000200341e0056a41086a220120034190036a41186a290300370300200341e0056a41106a220920034190036a41206a2d00003a0000200320032f0091033b01a805200320034190036a41106a2903003703e00520032d0090034101460d2420034190036a41086a290300210d2003280294032107200341f7026a2001290300370000200341ff026a20092d00003a0000200320032f01a8053b01e0022003200d3700e702200320073600e302200320032903e0053700ef02200320022d00003a00e202410e101e2202450d152002410029008ed543370000200241066a4100290094d5433700002003428e808080e00137029c012003200236029801200341e0026a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b200341f8006a412041e4fdc600410041001002417f470d2d200341d0006a200341e0026a10cf04410d101e2202450d16200241002900e6d643370000200241056a41002900ebd6433700002003428d808080d00137029c012003200236029801200341d0006a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b024002400240024002400240200641037122024103460d0020020e03010203010b200341f8006a41204101410010050c040b200341003a00a8050c020b200341013a00a8050c010b200341023a00a8050b4101101e2202450d18200220032d00a8053a0000200341f8006a4120200241011005200210200b2003200341d0006a108903200341086a290300210d2003290300210e200341c6016a20032d00523a0000200341c7016a200328005336000041002101200341c0016a410036020020034198016a41186a200d2004200e200554200d200454200d2004511b22091b220d370300200341cb016a200341d0006a4107722202290000370000200341d3016a200241086a290000370000200341db016a200241106a290000370000200341e3016a200241186a2d00003a0000200320032f01503b01c401200342083703b8012003200e200520091b22043703a8012003200d3703a0012003200437039801200341e0026a20034198016a10c504200341bc016a280200450d1020032802b80110200c2e0b200141106a2903002104200141086a290300210541042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b2003418f016a20034190026a41086a29030037000020034197016a20034190026a41106a2d00003a0000200320032f0190033b01782003200736007b200320032903900237008701200320034190036a41026a2d00003a007a2003200d37007f0240024020010d00200341e0056a41186a200341f8006a41186a290300370300200341e0056a41106a200341f8006a41106a290300370300200341e0056a41086a200341f8006a41086a290300370300200320032903783703e00520034198016a200341e0056a10b104410121020240024020032d0098014101460d00410b210941ceb5c40021010c010b200341aa056a20032d009b013a000020034190026a41086a200341ac016a2902003703002003419d026a200341b1016a290000370000200320032f0099013b01a8052003200341a4016a2902003703900220034198016a41086a280200210941002102200328029c0121010b20034188056a41026a2207200341a8056a41026a2d00003a000020034190036a41086a20034190026a41086a29030037030020034190036a41106a20034190026a41106a290300370300200320032f01a8053b01880520032003290390023703900320020d2f200341f3026a20034190036a41086a2202290300370000200341e0026a41186a2003419d036a290000370000200320032f0188053b01e002200320093600e702200320013600e30220032003290390033700eb02200320072d00003a00e20220034198016a200341e0026a10fc0220032802b80122090d0141d9b5c4002101411021090c2f0b419affc6002101410f2109024020070e070025090a0b242f000b200d422088a72109200da721010c2e0b200341d0006a41086a20034198016a41346a290200220d3703002002200d370300200341a0036a220720034198016a413c6a29020037030020034190036a41186a220820034198016a41c4006a2902003703002003200341c4016a290200220d3703502003200d37039003200341e4016a280200210a20034198016a41286a280200210b20034198016a410c6a350200210d200328029801210c200329029c01210e20032903a801210f20032802bc01210120034190026a41186a20034198016a41186a290300221037030020034190026a410c6a200d3e020020034190026a41286a200b360200200341b4026a20013602002003200f3703a0022003200e37029402200320093602b0022003200c3602900220034190026a41c4006a200829030037020020034190026a413c6a200729030037020020034190026a41346a200229030037020020032003290390033702bc022003200a3602dc02200341106a200341e0056a10890302402003290310220d20032903900222117d2212200d56200341106a41086a290300220e20034190026a41086a29030022137d200d201154ad7d220d200e56200d200e511b0d002003200520122012200556200d200456200d2004511b22021b2205200f7c220e3703a002200341a8026a2004200d20021b220d20107c200e200554ad7c3703002003200520117c2204370390022003200d20137c2004200554ad7c37039802200341e0026a20034190026a10c50420032802b40221010b2001450d2b20032802b00210200c2b0b200141106a2903002104200141086a290300210541042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b2003418f016a20034190026a41086a29030037000020034197016a20034190026a41106a2d00003a0000200320032f0190033b01782003200736007b200320032903900237008701200320034190036a41026a2d00003a007a2003200d37007f0240024020010d00200341e0026a41186a200341f8006a41186a29030037030041102109200341e0026a41106a200341f8006a41106a290300370300200341e0026a41086a200341f8006a41086a290300370300200320032903783703e00220034198016a200341e0026a10fc0220032802b80122070d0141d9b5c40021010c2e0b419affc6002101410f2109024020070e07002408090a232e000b200d422088a72109200da721010c2d0b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2209200d37030020034190036a41106a220820034198016a413c6a29020037030020034190036a41186a220a20034198016a41c4006a2902003703002003200341c4016a290200220d3703502003200d37039003200341e4016a280200210b20034198016a41286a280200210120034198016a410c6a350200210f200328029801210c200329029c01211120032903a801210d20032802bc01210220034190026a41186a20034198016a41186a290300220e37030020034190026a410c6a200f3e020020034190026a41286a2001360200200341b4026a20023602002003200d3703a0022003201137029402200320073602b0022003200c3602900220034190026a41c4006a200a29030037020020034190026a413c6a200829030037020020034190026a41346a200929030037020020032003290390033702bc022003200b3602dc0202402001411f4d0d0041e9b5c4002101412321092002450d2d200710200c2d0b02400240200d2005200d200554200e200454200e2004511b22091b2205200e200420091b220484500d00200341a8026a200e20047d200d200554ad7d3703002003200d20057d3703a00220034198016a41086a22094200370300200342003703980141c7f9c600411220034198016a1000200341d0006a41086a200929030037030020032003290398013703502003410036029801200341d0006a411020034198016a10032109024002402003280298012207417f470d0041a00521090c010b024020090d0041a00521090c010b20074104490d192009280000210220091020200241a0056a210920032802b402210220032802b80221010b024020012002470d00200241016a22012002490d27200241017422072001200720014b1b2201ad42187e220d422088a70d27200da722074100480d270240024020020d002007101e21020c010b20032802b002200241186c2007102221020b2002450d02200320013602b402200320023602b00220032802b80221010b20032802b002200141186c6a220220043703082002200537030020022009360210200320032802b80241016a3602b802200341e0026a20034190026a10c50420032802b40221020b2002450d2b20032802b0021020410021010c2d0b20074108102d000b41042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d00200341e0026a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01e00220032003290398013703900241002101200821070b20034180046a41026a200341e0026a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f01e0023b01800420032003290390023703e0050240024020010d00200341a7036a200341e0056a41086a29030037000041102109200341af036a200341e0056a41106a2d00003a0000200320032f0180043b0190032003200d370097032003200736009303200320032903e00537009f03200320034182046a2d00003a00920320034198016a20034190036a10fc0220032802b801220a0d0141d9b5c40021010c2d0b419affc6002101410f2109024020070e070023070809222d000b200d422088a72109200da721010c2c0b200341f8006a41086a200341cc016a290200370300200341f8006a41106a200341d4016a290200370300200341f8006a41186a200341dc016a2902003703002003200341c4016a29020037037820034198016a41186a290300210f200341c0016a280200210c200341a4016a350200210d20032903a801211120032802bc0121062003350298012105200329029c01210420034198016a41086a22024200370300200342003703980141c7f9c600411220034198016a1000200341d0006a41086a20022903003703002003200329039801370350410021072003410036029801200341d0006a411020034198016a1003210202402003280298012201417f460d002002450d0020014104490d1720022800002107200210200b200d422086200442208884210d20044220862005842104024002400240200c41186c2202450d00200a20026a2108200241686a2101200a21020340200241086a290300210e200229030021052007200241106a2802002209490d024200200d200e7d2004200554ad7d220e200420057d2205200456200e200d56200e200d511b22091b210d4200200520091b2104200141686a2101200241186a22022008470d000b0b4108210b4100210902402006450d00200a10200b4100210c0c010b4118101e220b450d18200b2005370300200b2009360210200b200e3703080240024020010d00410121094101210c0c010b200241186a2114200c41186c200a6a41686a2115410121094101210c03402014210202400340200241086a290300210e200229030021052007200241106a2802002201490d014200200d200e7d2004200554ad7d220e200420057d2205200456200e200d56200e200d511b22011b210d4200200520011b2104200241186a22022008470d000c030b0b0240200c2009470d00200941016a220c2009490d2720094101742214200c2014200c4b1b220cad42187e2212422088a70d272012a722144100480d270240024020090d002014101e210b0c010b200b200941186c20141022210b0b200b450d230b200241186a2114200b200941186c6a2216200e3703082016200537030020162001360210200941016a210920152002470d000b0b2006450d00200a10200b200341c0016a2009360200200341bc016a200c360200200320113703a80120034198016a41186a200f370300200341dc016a200341f8006a41186a290300370200200341d4016a20034188016a290300370200200341cc016a20034180016a2903003702002003200437039801200320032903783702c4012003200b3602b8012003200d3703a00102402011200f844200520d002009450d280b20034190036a20034198016a10c5040c280b200141106a2903002104200141086a290300210541042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b20034180046a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01800420032003290390023703e0050240024020010d0020034187026a200341e0056a41086a290300370000411021092003418f026a200341e0056a41106a2d00003a0000200320032f0180043b01f0012003200d3700f701200320073600f301200320032903e0053700ff01200320034182046a2d00003a00f20120034198016a200341f0016a10fc0220032802b80122020d0141d9b5c40021010c2c0b419affc6002101410f2109024020070e070022060708212c000b200d422088a72109200da721010c2b0b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2201200d37030020034190036a41106a220920034198016a413c6a29020037030020034190036a41186a220720034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210820034198016a410c6a350200210d200328029801210a200329029c01210e20032903a801210f20032902bc01211120034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e0200200341b4026a20113702002003200f3703a0022003200e37029402200320023602b0022003200a3602900220034190026a41c4006a200729030037020020034190026a413c6a200929030037020020034190026a41346a200129030037020020032003290390033702bc02200320083602dc0220034190026a412c6a220110a4044112101e2202450d17200241002900d3d443370000200241106a41002f00e3d4433b0000200241086a41002900dbd44337000020034292808080a00237029c012003200236029801200120034198016a10ca0120032802a00121022003280298012109200341c0036a41186a22074200370300200341c0036a41106a22084200370300200341c0036a41086a220a4200370300200342003703c00320092002200341c0036a1001200341f8006a41186a2007290300370300200341f8006a41106a2008290300370300200341f8006a41086a200a290300370300200320032903c0033703780240200328029c01450d0020032802980110200b2003410036029801200341f8006a412020034198016a1003210b0240200328029801220c417f460d00200b450d002003200c3602e4052003200b3602e005200341386a200341e0056a109703024020032802380d0020032802e4052202450d0020032002417f6a22093602e405200320032802e005220841016a22073602e00520082d0000220241014b0d004100210a02400240024002400240024020020e020100010b41002102200341003a00b801034020092002460d0220034198016a20026a200820026a220141016a2d00003a00002003200141026a3602e0052003200241016a22013a00b8012001210220014120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003200920016b22093602e4054101210a200820016a41016a21070b200341c0036a41186a20034190036a41186a290300370300200341c0036a41106a20034190036a41106a290300370300200341c0036a41086a20034190036a41086a29030037030020032003290390033703c0032009450d0420032009417f6a22093602e4052003200741016a3602e00520072d0000220141014b0d044100210220010e020201020b200341003602e405200241ff0171450d03200341003a00b8010c030b41002102200341003a00b801034020092002460d0220034198016a20026a200720026a220141016a2d00003a00002003200141026a3602e0052003200241016a22013a00b8012001210220014120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003200920016b3602e405410121020b200341a0046a41186a220820034190036a41186a2201290300370300200341a0046a41106a220620034190036a41106a2209290300370300200341a0046a41086a221420034190036a41086a2207290300370300200341c0046a41086a2216200341c0036a41086a290300370300200341c0046a41106a2215200341c0036a41106a290300370300200341c0046a41186a2217200341c0036a41186a29030037030020032003290390033703a004200320032903c0033703c00420034180046a41186a2218201729030037030020034180046a41106a2217201529030037030020034180046a41086a22152016290300370300200320032903c00437038004200341e0036a41186a22162008290300370300200341e0036a41106a22082006290300370300200341e0036a41086a22062014290300370300200320032903a0043703e00320034198016a41186a2214201829030037030020034198016a41106a2218201729030037030020034198016a41086a22172015290300370300200320032903800437039801200120162903003703002009200829030037030020072006290300370300200320032903e00337039003200a4102460d01200341e0026a41186a2014290300370300200341e0026a41106a2018290300370300200341e0026a41086a2017290300370300200341d0006a41086a2007290300370300200341d0006a41106a2009290300370300200341d0006a41186a200129030037030020032003290398013703e00220032003290390033703500240200c450d00200b10200b20034190036a41186a200341e0026a41186a29030037030020034190036a41106a200341e0026a41106a29030037030020034190036a41086a200341e0026a41086a290300370300200341e0056a41086a200341d0006a41086a290300370300200341e0056a41106a200341d0006a41106a290300370300200341e0056a41186a200341d0006a41186a290300370300200320032903e00237039003200320032903503703e0050c280b200341003602e405200241ff0171450d00200341003a00b8010b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b200320013602c805200341d0006a41186a22024200370300200341d0006a41106a22094200370300200341d0006a41086a220742003703002003420037035041e5d4c300411a200341d0006a100120034198016a41186a2208200229030037030020034198016a41106a220a200929030037030020034198016a41086a220b2007290300370300200320032903503703980120034190036a20034198016a41201069024020032d0090030d002002420037030020094200370300200742003703002003420037035041e5d4c300411a200341d0006a100120082002290300370300200a2009290300370300200b20072903003703002003200329035037039801200341203602e402200320034198016a3602e0022001200341e0026a108203410021024100210a0c260b20034188056a41186a200341a9036a29000037030020034188056a41106a200341a1036a29000037030020034188056a41086a20034199036a290000370300200320032900910337038805200341e0046a20034188056a10a5042003410036029801200341e0046a412020034198016a1003210a0240200328029801220c417f460d00200a450d002003200c3602d4052003200a3602d005200341206a200341d0056a10970302402003290320a70d0020032802d4052202450d00200341306a290300210d2003290328210e20032002417f6a22093602d405200320032802d005220841016a22073602d00520082d0000220241014b0d004100210b02400240024002400240024020020e020100010b41002102200341003a00b801034020092002460d0220034198016a20026a200820026a220141016a2d00003a00002003200141026a3602d0052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220f370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200f370300200341e0026a41186a20034198016a41186a2903003703002003200920016b22093602d40520032003290398013703e0024101210b200820016a41016a21070b200341d0006a41186a200341e0026a41186a290300370300200341d0006a41106a200341e0026a41106a290300370300200341d0006a41086a200341e0026a41086a290300370300200320032903e00237035041002102200341003a00a8052009450d0420032009417f6a22093602d4052003200741016a3602d00520072d0000220141014b0d0420010e020201020b200341003602d405200241ff0171450d03200341003a00b8010c030b200341003a00b801410021020340200341003a00a80520092002460d0220034198016a20026a200720026a220141016a2d00003a00002003200141026a3602d0052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220f370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200f370300200341e0026a41186a20034198016a41186a2903003703002003200920016b3602d40520032003290398013703e002410121020b200341a0046a41186a2208200341e0026a41186a2201290300370300200341a0046a41106a2206200341e0026a41106a2209290300370300200341a0046a41086a2214200341e0026a41086a2207290300370300200341c0046a41086a2216200341d0006a41086a2215290300370300200341c0046a41106a2217200341d0006a41106a2218290300370300200341c0046a41186a2219200341d0006a41186a221a290300370300200320032903e0023703a004200320032903503703c00420034180046a41186a221b201929030037030020034180046a41106a2219201729030037030020034180046a41086a22172016290300370300200320032903c00437038004200341e0036a41186a22162008290300370300200341e0036a41106a22082006290300370300200341e0036a41086a22062014290300370300200320032903a0043703e00320034198016a41186a2214201b29030037030020034198016a41106a221b201929030037030020034198016a41086a22192017290300370300200320032903800437039801200120162903003703002009200829030037030020072006290300370300200320032903e0033703e002200b4102460d01201a20142903003703002018201b29030037030020152019290300370300200341e0056a41086a2007290300370300200341e0056a41106a2009290300370300200341e0056a41186a20012903003703002003200329039801370350200320032903e0023703e0050240200c450d00200a10200b200341e0026a41186a220a200341d0006a41186a2201290300370300200341e0026a41106a2209200341d0006a41106a2207290300370300200341e0026a41086a220c200341d0006a41086a2208290300370300200341a8056a41086a2206200341e0056a41086a2214290300370300200341a8056a41106a2216200341e0056a41106a2215290300370300200341a8056a41186a2217200341e0056a41186a2218290300370300200320032903503703e002200320032903e0053703a8052003200b3a009801200341a1016a200c290300370000200341a9016a2009290300370000200341b1016a200a290300370000200320032903e00237009901200320023a00b901200341ba016a220b20032903a805370100200341c2016a2006290300370100200341ca016a2016290300370100200341d2016a20172903003701004100210a200341f4026a200b410020021b3602002003200d3703e8022003200e3703e0022003200341c8056a3602f00220034100360258200342013703502003200341e0026a3602e005200341e0056a200341d0006a10df022009200341d0006a10d00420032802542102200341e0046a4120200328025022092003280258100502402002450d00200910200b20032802c80521022001420037030020074200370300200842003703002003420037035041e5d4c300411a200341d0006a100120034198016a41186a200129030037030020034198016a41106a200729030037030020034198016a41086a20082903003703002003200329035037039801200341203602e402200320034198016a3602e0022002200341e0026a108203201420034188056a41086a290300370300201520034188056a41106a290300370300201820034188056a41186a29030037030020032003290388053703e005410121020c280b200341003602d405200241ff0171450d00200341003a00b8010b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b41b8e7c50041920141cce8c5001045000b2001410c6a280200210b200141086a280200210a41042108200141046a2802002107200241046a280000210c20022d0000210920034188056a41026a2206200241036a2d00003a000020034198016a41086a2214200241186a29000037030020034198016a41106a2216200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a20062d00003a000020034190026a41086a201429030037030020034190026a41106a20162d00003a0000200320032f0188053b01900320032003290398013703900241002101200c21080b20034180046a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01800420032003290390023703e0050240024020010d0020034187026a200341e0056a41086a290300370000411021092003418f026a200341e0056a41106a2d00003a0000200320032f0180043b01f0012003200d3700f701200320083600f301200320032903e0053700ff01200320034182046a2d00003a00f20120034198016a200341f0016a10fc0220032802b80122010d0141d9b5c40021010c250b419affc6002101410f210902400240024002400240024020080e070001020304052a000b200d422088a72109200da721010c290b418cffc6002101410e21090c280b4180ffc6002101410c21090c270b41f7fec6002101410921090c260b41e4fec6002101411321090c250b41d3fec6002101411121090c240b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2209200d37030020034190036a41106a220820034198016a413c6a29020037030020034190036a41186a220c20034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210620034198016a41286a280200211420034198016a410c6a350200210d2003280298012116200329029c01210420032903a801210520032802bc01210220034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e020020034190026a41286a201436020020034190026a41246a2002360200200320053703a0022003200437029402200320013602b002200320163602900220034190026a41c4006a200c29030037020020034190026a413c6a200829030037020020034190026a41346a200929030037020020032003290390033702bc02200320063602dc02200b0d20418cb6c400210141012108411721090c220b41042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b2003418f016a20034190026a41086a29030037000020034197016a20034190026a41106a2d00003a0000200320032f0190033b01782003200736007b200320032903900237008701200320034190036a41026a2d00003a007a2003200d37007f0240024020010d00200341e0026a41186a200341f8006a41186a29030037030041102109200341e0026a41106a200341f8006a41106a290300370300200341e0026a41086a200341f8006a41086a290300370300200320032903783703e00220034198016a200341e0026a10fc0220032802b80122020d0141d9b5c40021010c2a0b419affc6002101410f2109024020070e0700200405061f2a000b200d422088a72109200da721010c290b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2201200d37030020034190036a41106a220920034198016a413c6a29020037030020034190036a41186a220720034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210820034198016a410c6a350200210d200328029801210a200329029c01210420032903a801210520032902bc01210e20034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e0200200341b4026a220b200e370200200320053703a0022003200437029402200320023602b0022003200a3602900220034190026a41c4006a200729030037020020034190026a413c6a200929030037020020034190026a41346a200129030037020020032003290390033702bc02200320083602dc0220034190026a412c6a220210a304200210a404200b280200450d2620032802b0021020410021010c280b4104210720012d00012106200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b20034180046a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01800420032003290390023703e0050240024020010d00200341f7026a200341e0056a41086a29030037000041102109200341ff026a200341e0056a41106a2d00003a0000200320032f0180043b01e0022003200d3700e702200320073600e302200320032903e0053700ef02200320034182046a2d00003a00e20220034198016a200341e0026a10fc0220032802b80122020d0141d9b5c40021010c290b419affc6002101410f2109024020070e07001f0304051e29000b200d422088a72109200da721010c280b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2201200d37030020034190036a41106a220920034198016a413c6a29020037030020034190036a41186a220720034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210820034198016a410c6a350200210d200328029801210a200329029c01210420032903a801210520032902bc01210e20034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e0200200341b4026a200e370200200320053703a0022003200437029402200320023602b0022003200a3602900220034190026a41c4006a200729030037020020034190026a413c6a200929030037020020034190026a41346a200129030037020020032003290390033702bc02200320083602dc02410d101e2202450d15200241002900e6d643370000200241056a41002900ebd6433700002003428d808080d00137029c01200320023602980120034190026a412c6a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b024002400240024002400240200641037122024103460d0020020e03010203010b200341f8006a41204101410010050c040b200341003a00a8050c020b200341013a00a8050c010b200341023a00a8050b4101101e2202450d17200220032d00a8053a0000200341f8006a4120200241011005200210200b20032802b402450d2520032802b0021020410021010c270b200341d0006a41206a200141246a280200360200200341d0006a41186a2001411c6a290200370300200341d0006a41106a200141146a290200370300200341d0006a41086a2001410c6a290200370300410421072003200141046a290200370350200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b200341a8056a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01a80520032003290390023703e005024020010d00200341b7046a200341e0056a41086a290300370000200341bf046a200341e0056a41106a2d00003a0000200320032f01a8053b01a0042003200d3700a704200320073600a304200320032903e0053700af042003200341a8056a41026a22022d00003a00a20420034198016a200341a0046a10b104410121070240024020032d0098014101460d00410b210941ceb5c40021010c010b200220032d009b013a000020034190026a41086a200341ac016a2902003703002003419d026a200341b1016a290000370000200320032f0099013b01a8052003200341a4016a2902003703900220034198016a41086a280200210941002107200328029c0121010b20034188056a41026a20022d00003a000020034190036a41086a20034190026a41086a29030037030020034190036a41106a20034190026a41106a290300370300200320032f01a8053b01880520032003290390023703900320070d27200341d3046a20034190036a41086a290300370000200341c0046a41186a2003419d036a290000370000200320032f0188053b01c004200320093600c704200320013600c30420032003290390033700cb04200320034188056a41026a2d00003a00c20420034198016a41206a200341d0006a41206a28020036020020034198016a41186a200341d0006a41186a29030037030020034198016a41106a200341d0006a41106a29030037030020034198016a41086a200341d0006a41086a290300370300200320032903503703980120034190026a20034198016a10b60220034180046a41026a220220032d0093023a0000200341e0056a41086a220120034190026a41186a290300370300200341e0056a41106a220920034190026a41206a2d00003a0000200320032f0091023b018004200320034190026a41106a2903003703e00520032d0090024101470d040c1d0b419affc6002101410f2109024020070e07001d0102031c27000b200d422088a72109200da721010c260b4180ffc6002101410c21090c250b41f7fec6002101410921090c240b41e4fec6002101411321090c230b20034190026a41086a290300210d2003280294022107200341f7046a2001290300370000200341ff046a20092d00003a0000200320032f0180043b01e0042003200d3700e704200320073600e304200320032903e0053700ef04200320022d00003a00e204410e101e2202450d122002410029008ed543370000200241066a4100290094d5433700002003428e808080e00137029c012003200236029801200341e0046a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b200341f8006a412041e4fdc600410041001002417f470d21200341e0046a200341c0046a412010cf05450d20200341a0046a200341e0046a10cf04410e101e2202450d132002410029008ed543370000200241066a4100290094d5433700002003428e808080e00137029c012003200236029801200341c0046a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b2003410036029801200341f8006a412020034198016a10032101024002402003280298012209417f470d00410021020c010b024020010d00410021020c010b2003200936028404200320013602800420034198016a20034180046a10b20420032802b8012202450d15200341e0056a41186a20034198016a41186a290300370300200341e0056a41106a20034198016a41106a290300370300200341e0056a41086a20034198016a41086a29030037030020034190026a41086a200341c4016a29020037030020034190026a41106a200341cc016a29020037030020034190026a41186a200341d4016a29020037030020034190026a41206a200341dc016a290200370300200341b8026a200341e4016a28020036020020032003290398013703e005200320032902bc013703900202402009450d00200110200b200341f8006a412010040b200341a8056a41186a2208200341e0056a41186a290300370300200341a8056a41106a220a200341e0056a41106a290300370300200341a8056a41086a220b200341e0056a41086a29030037030020034190036a41086a220c20034190026a41086a220129030037030020034190036a41106a220620034190026a41106a220929030037030020034190036a41186a221420034190026a41186a220729030037030020034190036a41206a221620034190026a41206a29030037030020034190036a41286a221520034190026a41286a280200360200200320032903e0053703a8052003200329039002370390032001200b2903003703002009200a2903003703002007200829030037030020034198016a41086a2208200c29030037030020034198016a41106a220a200629030037030020034198016a41186a220b201429030037030020034198016a41206a220c201629030037030020034198016a41286a22062015280200360200200320032903a805370390022003200329039003370398012002450d2020034188056a41186a2214200729030037030020034188056a41106a2207200929030037030020034188056a41086a22092001290300370300200341e0026a41086a22012008290300370300200341e0026a41106a2216200a290300370300200341e0026a41186a2215200b290300370300200341e0026a41206a2217200c290300370300200341e0026a41286a220c200628020036020020032003290390023703880520032003290398013703e002200b2014290300370300200a200729030037030020082009290300370300200341bc016a20032903e002370200200341c4016a2001290300370200200341cc016a2016290300370200200341d4016a2015290300370200200341dc016a2017290300370200200341e4016a200c280200360200200320032903880537039801200320023602b801410e101e2202450d152002410029008ed543370000200241066a4100290094d5433700002003428e808080e001370294022003200236029002200341e0046a20034190026a10ca0120032802980221022003280290022101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029402450d0020032802900210200b20034100360298022003420137039002200341c4016a20034190026a10ca01200320034198016a3602900320034190036a20034190026a10df02200320034198016a41106a3602900320034190036a20034190026a10df0220032802b80121022003200341c0016a28020022013602900320034190036a20034190026a106302402001450d002002200141186c6a21010340200320023602900320034190036a20034190026a10df02200241106a20034190026a10632001200241186a2202470d000b0b2003280294022102200341f8006a41202003280290022201200328029802100502402002450d00200110200b20032802bc01450d2020032802b8011020410021010c220b20022d00000d16200141046a280200210220034198016a41086a2201420037030020034200370398014194f9c600411620034198016a1000200341d0006a41086a200129030037030020032003290398013703502003200236029801200341d0006a411020034198016a41041005410021010c210b20022d00000d1520034198016a41086a220242003703002003420037039801419afac600411020034198016a1000200341d0006a41086a20022903003703002003200329039801370350200341023a00a80502404101101e2202450d00200220032d00a8053a0000200341d0006a411020024101100520021020410021010c210b41014101102d000b20022d00000d1420034198016a41086a220242003703002003420037039801419afac600411020034198016a1000200341d0006a41086a20022903003703002003200329039801370350200341013a00a80502404101101e2202450d00200220032d00a8053a0000200341d0006a411020024101100520021020410021010c200b41014101102d000b200141086a2802002107200141046a280200210820022d00000d012001410c6a280200210220034198016a41086a220142003703002003420037039801418cb5c400411520034198016a1000200341d0006a41086a20012903003703002003200329039801370350200341003602a0012003420137039801200320023602900220034190026a20034198016a106302402002450d0020024105742101200821020340200220034198016a10ca01200241206a2102200141606a22010d000b0b200328029c012102200341d0006a4110200328029801220120032802a001100502402002450d00200110200b410021012007450d00200810200b0c1d0b41d3fec6002101411121092007450d1c200810200c1c0b200341b0016a200141196a29000037030041112109200341a8016a200141116a29000037030020034198016a41086a200141096a290000370300200320012900013703980141d3fec600210120022d00000d1b200342f3e885db96cddbb3203703e0022003107936025020034190026a20034198016a10d104200328029402210120032802900221022003280298022107200341a4026a200341e0026a3602002003200220074105746a36029c022003200236029802200320013602940220032002360290022003200341d0006a3602a00220034190036a20034190026a10ea0320034190026a41086a20034190036a41086a28020036020020032003290390033703900220034198016a20034190026a10d20420034198016a10a204410021010c1b0b20022d00000d0f20034198016a41086a220242003703002003420037039801419afac600411020034198016a1000200341d0006a41086a20022903003703002003200329039801370350200341033a00a80502404101101e2202450d00200220032d00a8053a0000200341d0006a411020024101100520021020410021010c1b0b41014101102d000b410e4101102d000b410e4101102d000b410d4101102d000b41014101102d000b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b41184108102d000b41124101102d000b410d4101102d000b41014101102d000b410e4101102d000b410e4101102d000b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b410e4101102d000b20144108102d000b41d3fec6002101411121090c0a0b418cffc6002101410e21090c090b0240024002400240200b41246c2201450d0020034190036a41086a2202200741096a29000037030020034190036a41106a2209200741116a29000037030020034190036a41186a2208200741196a290000370300200341af036a220c200741206a280000360000200320072900013703900320072d000022064102460d0020034198016a41096a200229030037000020034198016a41116a200929030037000020034198016a41196a200829030037000020034198016a41206a200c280000360000200320063a009801200320032903900337009901200341e0026a20034198016a10b602200341c0036a41086a200341e0026a41096a290000370300200341c0036a41106a200341e0026a41116a290000370300200341c0036a41186a200341e0026a41196a290000370300200320032900e1023703c00341012102024020032d00e0024101470d00200341a8056a41086a200341e0056a41086a290300370300200341a8056a41106a200341e0056a41106a290300370300200341a8056a41186a200341e0056a41186a290300370300200320032903e0053703a8050c020b200341d0006a41086a2202200341c0036a41086a290300370300200341d0006a41106a2208200341c0036a41106a290300370300200341d0006a41186a220c200341c0036a41186a290300370300200320032903c003220d3703a8052003200d37035002404120101e2209450d0020092003290350370000200941186a200c290300370000200941106a2008290300370000200941086a2002290300370000024002400240200720016a200741246a460d0020034190036a41086a22022007412d6a29000037030020034190036a41106a2201200741356a29000037030020034190036a41186a22082007413d6a290000370300200341af036a220c200741c4006a280000360000200320072900253703900320072d002422064102460d0020034198016a41096a200229030037000020034198016a41116a200129030037000020034198016a41196a200829030037000020034198016a41206a200c280000360000200320063a009801200320032903900337009901200341e0026a20034198016a10b602200341c0036a41086a200341e0026a41096a290000370300200341c0036a41106a200341e0026a41116a290000370300200341c0036a41186a200341e0026a41196a290000370300200320032900e1023703c00320032d00e0024101470d02200341a8056a41086a200341e0056a41086a290300370300200341a8056a41106a200341e0056a41106a290300370300200341a8056a41186a200341e0056a41186a290300370300200320032903e0053703a805410121020c010b410021020b4101210b410121080c040b200741c8006a2101200341a8056a41086a221c200341c0036a41086a221d290300220d370300200341d0006a41186a2217200341c0036a41186a221e290300370300200341d0006a41106a2218200341c0036a41106a221f290300370300200341d0006a41086a2219200d370300200320032903c003220d3703a8052003200d370350200b41246c41b87f6a2115200341e0026a410172210620034198016a410172210c20034190036a411f6a212041022116412021144102210b410121080340200341e0056a41186a221a2017290300370300200341e0056a41106a221b2018290300370300200341e0056a41086a22212019290300370300200320032903503703e0050240200b417f6a2008470d002016200b2016200b4b1b220841ffffff3f712008470d07200841057422024100480d07200920142002102222090d0020024101102d000b200920146a220220032903e005370000200241186a201a290300370000200241106a201b290300370000200241086a202129030037000041002102200b4110460d042015450d0420034190036a41086a221a200141096a29000037030020034190036a41106a221b200141116a29000037030020034190036a41186a2221200141196a2900003703002020200141206a280000360000200320012900013703900320012d000022224102460d04200c200329039003370000200c41086a201a290300370000200c41106a201b290300370000200c41186a2021290300370000200c411f6a2020280000360000200320223a009801200341e0026a20034198016a10b602201d200641086a290000370300201f200641106a290000370300201e200641186a290000370300200320062900003703c003024020032d00e0024101470d00200341a8056a41086a200341e0056a41086a290300370300200341a8056a41106a200341e0056a41106a290300370300200341a8056a41186a200341e0056a41186a290300370300200320032903e0053703a805410121020c050b200141246a2101201c201d290300220d3703002017201e2903003703002018201f2903003703002019200d370300200320032903c003220d3703a8052003200d370350201641026a2116201441206a2114200b41016a210b2015415c6a21150c000b0b41204101102d000b410021020b41002108410121090240200a450d00200710200b4100210b0c010b200a450d00200710200b024002402002450d002008450d01200910200c010b2009450d0020034190026a412c6a220110a304024002400240024002400240024002404112101e2202450d00200241002900e1d343370000200241106a41002f00f1d3433b0000200241086a41002900e9d34337000020034292808080a00237029c012003200236029801200120034198016a10ca0120032802a00121022003280298012107200341c0036a41186a220a4200370300200341c0036a41106a220c4200370300200341c0036a41086a22064200370300200342003703c00320072002200341c0036a1001200341f8006a41186a200a290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903c0033703780240200328029c01450d0020032802980110200b2003410036029801200341f8006a412020034198016a100321070240200328029801220a417f460d002007450d002003200a3602e405200320073602e005200341e0026a200341e0056a10e30120032802e0022214450d0520032802e402210c024020032802e4052202450d0020032002417f6a22063602e405200320032802e005221641016a22153602e00520162d0000220141014b0d004100210202400240024002400240024020010e020100010b41002102200341003a00b801034020062002460d0220034198016a20026a201620026a220141016a2d00003a00002003200141026a3602e0052003200241016a22013a00b8012001210220014120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003200620016b22063602e40541012102201620016a41016a21150b200341c0036a41186a20034190036a41186a290300370300200341c0036a41106a20034190036a41106a290300370300200341c0036a41086a20034190036a41086a29030037030020032003290390033703c0032006450d0420032006417f6a22163602e4052003201541016a3602e00520152d0000220641014b0d044100210120060e020201020b200341003602e405200241ff0171450d03200341003a00b8010c030b41002101200341003a00b801034020162001460d0220034198016a20016a201520016a220641016a2d00003a00002003200641026a3602e0052003200141016a22063a00b8012006210120064120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003201620066b3602e405410121010b200341a0046a41186a220620034190036a41186a2216290300370300200341a0046a41106a221520034190036a41106a2217290300370300200341a0046a41086a221820034190036a41086a2219290300370300200341c0046a41086a221a200341c0036a41086a290300370300200341c0046a41106a221b200341c0036a41106a290300370300200341c0046a41186a2221200341c0036a41186a29030037030020032003290390033703a004200320032903c0033703c00420034180046a41186a2220202129030037030020034180046a41106a2221201b29030037030020034180046a41086a221b201a290300370300200320032903c00437038004200341e0036a41186a221a2006290300370300200341e0036a41106a22062015290300370300200341e0036a41086a22152018290300370300200320032903a0043703e00320034198016a41186a202029030037030020034198016a41106a202129030037030020034198016a41086a201b2903003703002003200329038004370398012016201a2903003703002017200629030037030020192015290300370300200320032903e003370390030c080b200341003602e405200141ff0171450d00200341003a00b8010b200c450d0520141020410221020c060b2003200136028405200341d0006a41186a22024200370300200341d0006a41106a22074200370300200341d0006a41086a220a42003703002003420037035041f3d3c300411a200341d0006a100120034198016a41186a220c200229030037030020034198016a41106a2206200729030037030020034198016a41086a2214200a290300370300200320032903503703980120034190036a20034198016a41201069024020032d0090030d002002420037030020074200370300200a42003703002003420037035041f3d3c300411a200341d0006a1001200c2002290300370300200620072903003703002014200a2903003703002003200329035037039801200341203602e402200320034198016a3602e0022001200341e0026a10820341002101410021020c070b20034188056a41186a200341a9036a29000037030020034188056a41106a200341a1036a29000037030020034188056a41086a20034199036a290000370300200320032900910337038805200341e0046a20034188056a10a6042003410036029801200341e0046a412020034198016a1003210c2003280298012216417f460d01200c450d01200320163602cc052003200c3602c805200341d0056a200341c8056a10e30120032802d0052206450d0220032802d405210a024020032802cc052202450d00200341d8056a280200210720032002417f6a22153602cc05200320032802c805221741016a22183602c80520172d0000220241014b0d004100211402400240024002400240024020020e020100010b41002102200341003a00b801034020152002460d0220034198016a20026a201720026a220141016a2d00003a00002003200141026a3602c8052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220d370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200d370300200341e0026a41186a20034198016a41186a2903003703002003201520016b22153602cc0520032003290398013703e00241012114201720016a41016a21180b200341d0006a41186a200341e0026a41186a290300370300200341d0006a41106a200341e0026a41106a290300370300200341d0006a41086a200341e0026a41086a290300370300200320032903e00237035041002101200341003a00a8052015450d0420032015417f6a22153602cc052003201841016a3602c80520182d0000220241014b0d0420020e020201020b200341003602cc05200241ff0171450d03200341003a00b8010c030b200341003a00b801410021020340200341003a00a80520152002460d0220034198016a20026a201820026a220141016a2d00003a00002003200141026a3602c8052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220d370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200d370300200341e0026a41186a20034198016a41186a2903003703002003201520016b3602cc0520032003290398013703e002410121010b200341a0046a41186a2202200341e0026a41186a2215290300370300200341a0046a41106a2217200341e0026a41106a2218290300370300200341a0046a41086a2219200341e0026a41086a221a290300370300200341c0046a41086a221b200341d0006a41086a290300370300200341c0046a41106a2221200341d0006a41106a290300370300200341c0046a41186a2220200341d0006a41186a290300370300200320032903e0023703a004200320032903503703c00420034180046a41186a221d202029030037030020034180046a41106a2220202129030037030020034180046a41086a2221201b290300370300200320032903c00437038004200341e0036a41186a221b2002290300370300200341e0036a41106a22022017290300370300200341e0036a41086a22172019290300370300200320032903a0043703e00320034198016a41186a201d29030037030020034198016a41106a202029030037030020034198016a41086a20212903003703002003200329038004370398012015201b29030037030020182002290300370300201a2017290300370300200320032903e0033703e0020c050b200341003602cc05200241ff0171450d00200341003a00b8010b200a450d0220061020410221140c030b41124101102d000b41b8e7c50041920141cce8c5001045000b410221140b024020144102460d00200341d0006a41186a221820034198016a41186a290300370300200341d0006a41106a221920034198016a41106a290300370300200341d0006a41086a221a20034198016a41086a290300370300200341e0056a41086a221b200341e0026a41086a2215290300370300200341e0056a41106a2221200341e0026a41106a2202290300370300200341e0056a41186a2220200341e0026a41186a22172903003703002003200329039801370350200320032903e0023703e00502402016450d00200c10200b20172018290300370300200220192903003703002015201a290300370300200341a8056a41086a220c201b290300370300200341a8056a41106a22162021290300370300200341a8056a41186a22182020290300370300200320032903503703e002200320032903e0053703a805200320143a009801200341a1016a2015290300370000200341a9016a2002290300370000200341b1016a2017290300370000200320032903e00237009901200320013a00b901200341ba016a221420032903a805370100200341c2016a200c290300370100200341ca016a2016290300370100200341d2016a2018290300370100200220144100200141ff01714101461b360200200320073602e8022003200a3602e402200320063602e002200320034184056a3602ec022003410036025820034201370350200320073602e005200341e0056a200341d0006a1063200341ec026a210c02402007450d00200741057421012006210203402002200341d0006a10ca01200241206a2102200141606a22010d000b0b200c200341d0006a10d00420032802542102200341e0046a4120200328025022012003280258100502402002450d00200110200b0240200a450d00200610200b2003280284052102200341d0006a41186a22014200370300200341d0006a41106a22074200370300200341d0006a41086a220a42003703002003420037035041f3d3c300411a200341d0006a100120034198016a41186a200129030037030020034198016a41106a200729030037030020034198016a41086a200a2903003703002003200329035037039801200341203602e402200320034198016a3602e0022002200341e0026a108203200341e0056a41086a20034188056a41086a290300370300200341e0056a41106a20034188056a41106a290300370300200341e0056a41186a20034188056a41186a29030037030020032003290388053703e00541012101410021020c030b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b410221020b20024102460d01200341e0026a41186a220620034198016a41186a290300370300200341e0026a41106a221620034198016a41106a290300370300200341e0026a41086a221520034198016a41086a290300370300200341d0006a41086a221720034190036a41086a2218290300370300200341d0006a41106a221920034190036a41106a221a290300370300200341d0006a41186a221b20034190036a41186a222129030037030020032003290398013703e00220032003290390033703500240200a450d00200710200b20212006290300370300201a201629030037030020182015290300370300200341e0056a41086a2017290300370300200341e0056a41106a2019290300370300200341e0056a41186a201b290300370300200320032903e00237039003200320032903503703e005200c450d00201410200b200341a5016a200329039003370000200341ad016a20034190036a41086a290300370000200341b5016a20034190036a41106a290300370000200341bd016a20034190036a41186a290300370000200341c5016a20013a0000200341c6016a20032903e005370100200341ce016a200341e0056a41086a290300370100200341d6016a200341e0056a41106a290300370100200341de016a200341e0056a41186a290300370100200320023a00a4012003200bad4220862008ad8437029c012003200936029801200341203602e4022003200341f8006a3602e00220034198016a200341e0026a10e6030240200328029c01450d0020032802980110200b20032802b402450d0820032802b0021020410021010c0a0b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b418cffc6002101410e21094100210820032802b40221020c010b1027000b02402002450d0020032802b00210200b2008450d060b200a450d05200710200c050b200341a9016a200329039003370000200341b1016a20034190036a41086a290300370000200341b9016a20034190036a41106a290300370000200341c1016a20034190036a41186a290300370000200341c9016a20023a0000200341ca016a20032903e005370100200341d2016a200341e0056a41086a290300370100200341da016a200341e0056a41106a290300370100200341e2016a200341e0056a41186a290300370100200320043703a00120032005370398012003200a3a00a801200341003602e802200342013703e002200320034198016a360250200341d0006a200341e0026a10df0220034198016a41106a200341e0026a10e70320032802e4022102200341f8006a412020032802e002220120032802e802100502402002450d00200110200b20032802b402450d0220032802b0021020410021010c040b20034190026a41186a200341c4016a220241186a29000037030020034190026a41106a200241106a29000037030020034190026a41086a200241086a290000370300200342f3e885db96cddbb3203703a8052003200229000037039002200310793602e005200341e0026a20034190026a10d10420032802e402210120032802e002210220032802e8022109200341f4026a200341a8056a3602002003200220094105746a3602ec02200320023602e802200320013602e402200320023602e0022003200341e0056a3602f002200341d0006a200341e0026a10ea03200341e0026a41086a200341d0006a41086a280200360200200320032903503703e00220034190026a200341e0026a10d20420034190026a10a2040b20032802bc01450d0020032802b8011020410021010c020b410021010c010b41a1b5c4002101411921090b200020093602042000200136020020034180066a24000b970701097f230041e0016b2202240002400240410e101e2203450d002003410029008ed543370000200341066a4100290094d5433700002002428e808080e001370204200220033602002001200210ca01200228020821032002280200210120024190016a41186a2204420037030020024190016a41106a2205420037030020024190016a41086a2206420037030020024200370390012001200320024190016a1001200241d0006a41186a2004290300370300200241d0006a41106a2005290300370300200241d0006a41086a2006290300370300200220022903900137035002402002280204450d00200228020010200b2002410036029001200241d0006a412020024190016a10032101024002402002280290012204417f470d00410021030c010b024020010d00410021030c010b200220043602742002200136027020024190016a200241f0006a10b20420022802b0012203450d02200241306a41186a20024190016a41186a290300370300200241306a41106a20024190016a41106a290300370300200241306a41086a20024190016a41086a290300370300200241086a200241bc016a290200370300200241106a200241c4016a290200370300200241186a200241cc016a290200370300200241206a200241d4016a290200370300200241286a200241dc016a2802003602002002200229039001370330200220022902b4013703002004450d00200110200b200241f0006a41086a2201200241306a41086a290300370300200241f0006a41106a2204200241306a41106a290300370300200241f0006a41186a2205200241306a41186a29030037030020024190016a41086a2206200241086a29030037030020024190016a41106a2207200241106a29030037030020024190016a41186a2208200241186a29030037030020024190016a41206a2209200241206a29030037030020024190016a41286a220a200241286a28020036020020022002290330370370200220022903003703900102402003450d00200020022903703703002000200229039001370224200041186a2005290300370300200041106a2004290300370300200041086a20012903003703002000412c6a2006290300370200200041346a20072903003702002000413c6a2008290300370200200041c4006a2009290300370200200041cc006a200a2802003602000b20002003360220200241e0016a24000f0b410e4101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000bbf0401067f230041306b220224000240024002400240024002404110101e2203450d00200341086a41002900dfa646370000200341002900d7a646370000200242908080808002370214200220033602102002410d3602002002200241106a1063024020022802142204200228021822056b410d490d002005410d6a2106200228021021030c020b2005410d6a22062005490d02200441017422032006200320064b1b22074100480d020240024020040d002007101e21030c010b200228021020042007102221030b02402003450d002002200736021420022003360210200721040c020b20074101102d000b41104101102d000b20022006360218200320056a220541002900caa646370000200541056a41002900cfa64637000020022003200610a60502402004450d00200310200b20022802082203417f4c0d02200228020021060240024020030d00410121040c010b2003101e2204450d040b20042006200310cd05210702402002280204450d00200610200b200241106a200110d804200341206a22062003490d00200341017422042006200420064b1b22054100480d000240024020030d002005101e21040c010b200720032005102221040b20040d0120054101102d000b1027000b200420036a22032002290010370000200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a290000370000200020063602082000200536020420002004360200200241306a24000f0b102c000b20034101102d000b860601067f230041a0016b22022400024002404117101e2203450d00200341002900aff8413700002003410f6a41002900bef841370000200341086a41002900b7f84137000020024297808080f00237020c200220033602082001200241086a10ca012002280210210320022802082101200241f0006a41186a22044200370300200241f0006a41106a22054200370300200241f0006a41086a220642003703002002420037037020012003200241f0006a1001200241c0006a41186a2004290300370300200241c0006a41106a2005290300370300200241c0006a41086a2006290300370300200220022903703703400240200228020c450d00200228020810200b20024100360270200241c0006a4120200241f0006a100321010240024020022802702204417f470d00410421030c010b024020010d00410421030c010b2002200436026420022001360260200241f0006a200241e0006a10a60320022d007c22034104460d02200241306a41086a200241f0006a41086a280200360200200241086a41086a20024185016a290000370300200241186a2002418d016a290000370300200241206a20024195016a290000370300200241276a2002419c016a280000360000200220022903703703302002200229007d3703082004450d00200110200b200241e0006a41086a2201200241306a41086a280200360200200241f0006a41086a2204200241086a41086a290300370300200241f0006a41106a2205200241086a41106a290300370300200241f0006a41186a2206200241086a41186a290300370300200241f0006a411f6a2207200241086a411f6a2800003600002002200229033037036020022002290308370370024020034104460d00200020022903603703002000200229037037000d200041086a2001280200360200200041156a20042903003700002000411d6a2005290300370000200041256a20062903003700002000412c6a20072800003600000b200020033a000c200241a0016a24000f0b41174101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000be70401067f230041d0006b22012400024002404123101e2202450d00200241002900958e463700002002411f6a41002800b48e46360000200241186a41002900ad8e46370000200241106a41002900a58e46370000200241086a410029009d8e46370000200142a3808080b004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b4101210202402001412041e4fdc600410041001002417f470d004129101e2202450d02200241002900b88e46370000200241286a41002d00e08e463a0000200241206a41002900d88e46370000200241186a41002900d08e46370000200241106a41002900c88e46370000200241086a41002900c08e46370000200142a98080809005370224200120023602202000200141206a10ca012001280228210220012802202100200141306a41186a22034200370300200141306a41106a22044200370300200141306a41086a220542003703002001420037033020002002200141306a1001200141186a2003290300370300200141106a2004290300370300200141086a20052903003703002001200129033037030002402001280224450d00200128022010200b2001412041e4fdc600410041001002417f4721020b200141d0006a240020020f0b41234101102d000b41294101102d000bd70501087f230041e0006b220224000240024002400240024002404126101e2203450d002003411e6a41002900ccae46370000200341186a41002900c6ae46370000200341106a41002900beae46370000200341086a41002900b6ae46370000200341002900aeae463700002003412641cc0010222203450d0120032001370026200241386a41186a22044200370300200241386a41106a22054200370300200241386a41086a22064200370300200242003703382003412e200241386a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903383703082003102020024100360238200241086a4120200241386a1003210420022802382205417f460d022004450d022002200536023420022004360230200241386a200241306a10b70120022802382207450d05200228023c210320022802342206450d04200241c0006a280200210820022006417f6a36023420022002280230220641016a36023020062d0000220941014b0d04410021060240024020090e020100010b410121060b200241046a41026a2209200241dd006a41026a2d00003a0000200220022f005d3b010402402005450d00200410200b200241386a41026a20092d000022043a0000200241306a41026a20043a0000200220022f010422043b0138200220043b0130410021040c030b41264101102d000b41cc004101102d000b41022106200241386a41026a200241046a41026a2d00003a0000200220022f01043b0138410121040b0240024020040d0020002007360204200020022f01303b0011200041106a20063a00002000410c6a2008360200200041136a200241326a2d00003a0000410021040c010b200041988cc60036020441012104412d21030b20002004360200200041086a2003360200200241e0006a24000f0b2003450d00200710200b41ceb8c4004133200241386a41fcbfc4004184b9c400102e000bb90302047f017e230041d0006b22022400024002400240024002404117101e2203450d00410021042003410f6a41002900d5f841370000200341086a41002900cef841370000200341002900c6f8413700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a002820034117412e10222203450d01200320043a0017200241286a41186a22044200370300200241286a41106a22014200370300200241286a41086a220542003703002002420037032820034118200241286a1001200241186a2004290300370300200241106a2001290300370300200241086a200529030037030020022002290328370300200310202002410036022820024120200241286a1003210320022802282204417f460d032003450d032002200436022420022003360220200241286a200241206a10e30120022802282201450d02200229022c210602402004450d00200310200b20002006370204200020013602000c040b41174101102d000b412e4101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b20004100360208200042013702000b200241d0006a24000bf70301027f20002d000021020240024002400240024002404101101e2203450d00200320023a000020002d0001210220034101410210222203450d01200320023a000120002d0002210220034102410410222203450d02200320023a0002200320002d00033a000320002d0004210220034104410810222203450d03200320023a0004200320002d00053a0005200320002d00063a0006200320002d00073a000720002d0008210220034108411010222203450d04200320023a0008200320002d00093a0009200320002d000a3a000a200320002d000b3a000b200320002d000c3a000c200320002d000d3a000d200320002d000e3a000e200320002d000f3a000f20002d0010210220034110412010222203450d05200320023a0010200320002d00113a0011200320002d00123a0012200320002d00133a0013200320002d00143a0014200320002d00153a0015200320002d00163a0016200320002d00173a0017200320002d00183a0018200320002d00193a0019200320002d001a3a001a200320002d001b3a001b200320002d001c3a001c200320002d001d3a001d200320002d001e3a001e200320002d001f3a001f20012802002001280204200341201005200310200f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000ba37c05027f017e087f057e0a7f230041e0066b220324000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d000022040e09000102030b0c1b1a19000b20034184056a4101360200200342013702f40420034184e6c6003602f00420034104360284022003418cb4c60036028002200320034180026a36028005200341f0046a4180cfc2001033000b200141086a29030021054104210620012d00012107200241046a280000210820022d00002109200341e0016a41026a220a200241036a2d00003a0000200341f0046a41086a220b200241186a290000370300200341f0046a41106a220c200241206a2d00003a0000200320022f00013b01e0012003200241106a2900003703f0044101210d200241086a290000210e024020094101470d00200341b8036a41026a200a2d00003a000020034180026a41086a200b29030037030020034180026a41106a200c2d00003a0000200320032f01e0013b01b803200320032903f004370380024100210d200821060b20034188016a41176a20034180026a41086a290300370000200341a7016a20034180026a41106a2d00003a0000200320032f01b8033b0188012003200636008b012003200329038002370097012003200341b8036a41026a2d00003a008a012003200e37008f0102400240200d0d00200341b8066a41186a20034188016a41186a290300370300200341b8066a41106a20034188016a41106a290300370300200341b8066a41086a20034188016a41086a29030037030020032003290388013703b8064117101e2202450d17200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702f404200320023602f004200341b8066a200341f0046a10ca0120032802f804210220032802f004210d20034180026a41186a2206420037030020034180026a41106a2209420037030020034180026a41086a220842003703002003420037038002200d200220034180026a1001200341b8036a41186a2006290300370300200341b8036a41106a2009290300370300200341b8036a41086a200829030037030020032003290380023703b803024020032802f404450d0020032802f00410200b200341b8036a412041e4fdc600410041001002417f460d014190cfc200210d411421080c250b419affc600210d410f210802400240024002400240024020060e070001020304052a000b200e422088a72108200ea7210d0c290b418cffc600210d410e21080c280b4180ffc600210d410c21080c270b41f7fec600210d410921080c260b41e4fec600210d411321080c250b41d3fec600210d411121080c240b0240200710dd030d0041a4cfc200210d410d21080c240b200341f0046a200710de0320032802f0044101460d16200341a0056a290300210e20034198056a290300210f200341f0046a200510a7030240024020032903a0054202510d00200341e0056a2802002102200341d8056a280200210d200341c8056a280200210a200341c0056a280200210620032802dc05210920032802cc05210820032802bc05210b024020032802b405450d00200341b0056a28020010200b02402006450d00200b10200b02402008450d00200a10200b200d2009200210f502200341b8066a200f200e10df030d0141b1cfc200210d412121080c250b41c58cc600210d411821080c240b200341086a200341b8066a200f200e10e003200341f0046a41186a200341086a41186a29030037030020032003290318370380052003200341086a41086a2903003703f804200320032903083703f0042003200341f0046a3602800220034180026a109402200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a1003210220032802f0042206417f460d132002450d13200320063602bc03200320023602b803200341f0046a200341b8036a10a10220032802f004220d450d1420032902f404210e02402006450d00200210200b200e422088a72106200ea721090c210b20012d0001210d200341e8006a41186a2001411a6a290000370300200341e8006a41106a200141126a290000370300200341e8006a41086a2001410a6a2900003703002003200141026a2900003703682003200d3a00af0141042101200241046a280000210920022d00002106200341e0016a41026a2208200241036a2d00003a0000200341f0046a41086a220a200241186a290000370300200341f0046a41106a220b200241206a2d00003a0000200320022f00013b01e0012003200241106a2900003703f0044101210d200241086a290000210e024020064101470d00200341b8066a41026a20082d00003a000020034180026a41086a200a29030037030020034180026a41106a200b2d00003a0000200320032f01e0013b01b806200320032903f004370380024100210d200921010b200341d0016a41026a200341b8066a41026a2d00003a0000200341b8036a41086a20034180026a41086a290300370300200341b8036a41106a20034180026a41106a2d00003a0000200320032f01b8063b01d00120032003290380023703b80302400240200d0d00200341c7016a200341b8036a41086a290300370000200341cf016a200341b8036a41106a2d00003a0000200320032f01d0013b01b0012003200e3700b701200320013600b301200320032903b8033700bf012003200341d2016a2d00003a00b201200341b0016a10ff020d0141cad0c200210d412d21080c270b419affc600210d410f2108024020010e0700030405060727000b200e422088a72108200ea7210d0c260b200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a1003210220032802f0042201417f460d102002450d10200320013602bc03200320023602b803200341f0046a200341b8036a10a10220032802f004220a450d1120032902f40421052001450d1f200210200c1f0b200341b0016a41186a200141196a290000370300200341b0016a41106a200141116a290000370300200341b0016a41086a200141096a290000370300200320012900013703b00141042101200241046a280000210920022d00002106200341e0016a41026a2208200241036a2d00003a0000200341f0046a41086a220a200241186a290000370300200341f0046a41106a220b200241206a2d00003a0000200320022f00013b01e0012003200241106a2900003703f0044101210d200241086a290000210e024020064101470d0020034188016a41026a20082d00003a000020034180026a41086a200a29030037030020034180026a41106a200b2d00003a0000200320032f01e0013b018801200320032903f004370380024100210d200921010b200341d0016a41026a20034188016a41026a2d00003a0000200341b8036a41086a20034180026a41086a290300370300200341b8036a41106a20034180026a41106a2d00003a0000200320032f0188013b01d00120032003290380023703b8030240200d0d00200341cf066a200341b8036a41086a290300370000200341d7066a200341b8036a41106a2d00003a0000200320032f01d0013b01b8062003200e3700bf06200320013600bb06200320032903b8033700c7062003200341d2016a2d00003a00ba06200341f0046a200341b0016a10fe0220032d00fc0422024104460d06200341e0016a41086a20034185056a290000370300200341e0016a41106a2003418d056a29000037030041182108200341e0016a41186a20034195056a290000370300200320032900fd04220e370388012003200e3703e001200341f0046a20032903f004220e10a70320032903a0054202520d0741c58cc600210d0c250b419affc600210d410f2108024020010e0700010203040525000b200e422088a72108200ea7210d0c240b418cffc600210d410e21080c230b4180ffc600210d410c21080c220b41f7fec600210d410921080c210b41e4fec600210d411321080c200b41d3fec600210d411121080c1f0b41f7d0c200210d410c21080c1e0b20032802f0042101200341b8036a200341f0046a41047241b40110cd051a200320013602800220034180026a410472200341b8036a41b40110cd051a200341f5026a200341b8066a412010cf050d140c150b20022d00000d12200141306a290300210e200141286a2903002105200141206a290300210f200141186a2903002110200141106a2903002111200141086a2903002112200141d0006a2802002109200141cc006a2802002108200141c8006a280200210a200141c4006a280200210b200141c0006a280200210c2001413c6a2802002107200141386a280200211320012d000121064111101e2202450d064100210d200241106a41002d009dfb413a0000200241086a4100290095fb413700002002410029008dfb41370000024002400240024020060e0403000102030b4101210d0c020b4102210d0c010b4103210d0b2003200d3a00f00420024111412210222202450d052002200d3a001120034180026a41186a220d420037030020034180026a41106a2214420037030020034180026a41086a2215420037030020034200370380022002411220034180026a1001200341b8036a41186a200d290300370300200341b8036a41106a2014290300370300200341b8036a41086a201529030037030020032003290380023703b803200210204110101e2202450d04200220123700002002201137000820024110412010222202450d0320022007360014200220133600102002412041c00010222202450d022002201037001820022009360038200220083600342002200a3600302002200b36002c2002200c360028200241206a200f370000200241c00041800110222202450d012002200537003c200241c4006a200e370000200341b8036a4120200241cc0010052002102020034180026a20061081032003280284022109200328028002210602402003280288022202450d002002410574210d200621020340200241086a290000210e200241106a29000021052002290000210f200341f0046a41186a200241186a290000370300200341f0046a41106a2005370300200341f0046a41086a200e3703002003200f3703f004200342f2deb1abf6eb9cbaeb003703b803200341b8036a200341f0046a20122011417f411610e103200241206a2102200d41606a220d0d000b0b2009450d10200610200c100b200141086a280200210b200141046a280200210c20022d00000d102001410c6a2802002109200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f804200342013703f004200320093602b803200341b8036a200341f0046a10630240024020090d0020032802f804210820032802f404210120032802f004210d0c010b20032802f404210120032802f8042102200c21060340200320062d0000220a3a00b8060240024020022001460d0020032802f004210d0c010b200141016a220d2001490d1a20014101742208200d2008200d4b1b22084100480d1a0240024020010d002008101e210d0c010b20032802f004200120081022210d0b0240200d450d00200320083602f4042003200d3602f004200821010c010b20084101102d000b200641016a21062003200241016a22083602f804200d20026a200a3a0000200821022009417f6a22090d000b0b20034180026a4110200d2008100502402001450d00200d10200b4100210d0240200b0d000c1c0b200c10200c1b0b4180014101102d000b41c0004101102d000b41204101102d000b41104101102d000b41224101102d000b41114101102d000b4108210a420021050c0e0b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410021094108210d4200210e410021060c0d0b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b41174101102d000b200341f8046a280200210820032802f404210d0c0c0b200341d0066a200141196a29000037030041112108200341c8066a200141116a290000370300200341c0066a200141096a290000370300200320012900013703b80641d3fec600210d20022d00000d0e024002404117101e2202450d00200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702f404200320023602f004200341b8066a200341f0046a10ca0120032802f804210220032802f004210120034180026a41186a220d420037030020034180026a41106a2206420037030020034180026a41086a2209420037030020034200370380022001200220034180026a1001200341b8036a41186a200d290300370300200341b8036a41106a2006290300370300200341b8036a41086a200929030037030020032003290380023703b803024020032802f404450d0020032802f00410200b0240200341b8036a412041e4fdc600410041001002417f470d0041bcd1c200210d412821080c110b200341f0046a200341b8066a10fe0220032d00fc0422024104460d0120032903f0042105200341f0046a200210de03200341f0046a41086a2201290300210e024020032802f0044101460d00200341f0046a41106a220d290300210f200341b8056a2802002106200341f0046a41186a200341b8066a41186a290300370300200d200341b8066a41106a2903003703002001200341b8066a41086a290300370300200320032903b8063703f004200341f0046a200220052006200e200f10e2034100210d0c110b20032802f404210d200ea721080c100b41174101102d000b41e988c700412b41acd1c2001028000b4111210841d3fec600210d20022d00000d0a20012d0001210c200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024020032802f004220d417f460d002002450d002003200d3602bc03200320023602b803200341f0046a200341b8036a109a03024020032802f0042206450d0020032902f404210e200d450d02200210200c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b4200210e410121060b2006200e422088a722096a210b200ea7211441002102200c41ff0171210a0240024002400240034020092002460d01200620026a2d0000220d4104460d01200241016a2102200a200d460d000b4101101e2207450d03200620026a21022007200d3a0000200c41ff017121094101210a4101211302400340200b2002460d0120022d0000220d4104460d01200241016a21022009200d460d0002402013200a470d00200a41016a220c200a490d10200a4101742213200c2013200c4b1b22134100480d1002400240200a0d002013101e21070c010b2007200a2013102221070b2007450d050b2007200a6a200d3a0000200a41016a210a0c000b0b2014450d01200610200c010b410021134101210702402014450d00200610200b4100210a0b200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f804200342013703f0042003200a3602b803200341b8036a200341f0046a106302400240200a0d0020032802f804210b20032802f404210d20032802f00421060c010b20032802f404210d20032802f8042102200721090340200320092d0000220c3a00b806024002402002200d460d0020032802f00421060c010b200d41016a2206200d490d0e200d410174220b2006200b20064b1b220b4100480d0e02400240200d0d00200b101e21060c010b20032802f004200d200b102221060b02402006450d002003200b3602f404200320063602f004200b210d0c010b200b4101102d000b200941016a21092003200241016a220b3602f804200620026a200c3a0000200b2102200a417f6a220a0d000b0b20034180026a41102006200b10050240200d450d00200610200b4100210d2013450d0c200710200c0c0b20134101102d000b41014101102d000b20022d00000d0220012d0001210a200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024020032802f004220d417f460d002002450d002003200d3602bc03200320023602b803200341f0046a200341b8036a109a03024020032802f0042206450d0020032902f404210e200d450d02200210200c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b4200210e410121060b200e422088a72109200ea7210b41002102200a41ff017121080240034020092002460d01200620026a2d0000220d4104460d01200241016a2102200d2008470d000b200b450d01200610200c010b0240200b450d00200610200b200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a10032102024002400240024020032802f004220d417f460d002002450d002003200d3602bc03200320023602b803200341f0046a200341b8036a109a03024020032802f004220c450d0020032902f404210e0240200d450d00200210200b2003200c3602b8032003200e3702bc03200341b8036a210d200e422088a72202200ea72207470d030c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b41002102200341003602c003200342013703b8034101210c200341b8036a210d0b200d41046a28020022072002470d00200241016a22062002490d0a200241017422092006200920064b1b22074100480d0a0240024020020d002007101e21020c010b200d28020020022007102221020b2002450d01200d2002360200200d41046a200736020020032802c003210220032802b803210c0b200d28020020026a200a3a00002003200241016a22083602c003200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f004370380020240200c0d0020034180026a411010040c020b200341003602f804200342013703f004200320083602b806200341b8066a200341f0046a10630240024020080d0020032802f804210a20032802f404210d20032802f00421060c010b20032802f404210d20032802f8042102200c21090340200320092d0000220b3a00b806024002402002200d460d0020032802f00421060c010b200d41016a2206200d490d0c200d410174220a2006200a20064b1b220a4100480d0c02400240200d0d00200a101e21060c010b20032802f004200d200a102221060b02402006450d002003200a3602f404200320063602f004200a210d0c010b200a4101102d000b200941016a21092003200241016a220a3602f804200620026a200b3a0000200a21022008417f6a22080d000b0b20034180026a41102006200a10050240200d450d00200610200b2007450d01200c10200c010b20074101102d000b411121084100210d200441084b0d08410120047441ac02710d0b0c080b4111210841d3fec600210d200b450d0a200c10200c0a0b4111210841d3fec600210d0c060b20034195036a200341b8066a412010cf05450d004183d1c200210d412821080c010b200341f0046a200210de03200341f0046a41086a22012903002105024020032802f0044101460d00200341f0046a41106a220d290300210f200341b8056a2802002106200341f0046a41186a200341e0016a41186a2209290300370300200d200341e0016a41106a22082903003703002001200341e0016a41086a220d290300370300200320032903e0013703f004200341f0046a2002200e20062005200f10e203200341fa046a200d29030037010020034182056a20082903003701002003418a056a200929030037010020034192056a20023a000020034190043b01f004200320032903e0013701f204200341f0046a10770240200341c4026a280200450d0020032802c00210200b0240200341d0026a280200450d0020032802cc0210200b0240200341dc026a280200450d0020032802d80210200b20032802e802200341ec026a280200200341f0026a28020010f5024100210d0c080b20032802f404210d2005a721080b0240200341c4026a280200450d0020032802c00210200b0240200341d0026a280200450d0020032802cc0210200b0240200341dc026a280200450d0020032802d80210200b20032802e802200341ec026a280200200341f0026a28020010f5020c060b2003418c026a200341af016a3602002003200a360280022003200a2005422088a741306c6a360284022003200341b0016a360290022003200341e8006a36028802200341d8006a20034180026a20034190026a10c503024002402003290358a70d004100210641082109410021010c010b2003290360210e02404108101e2209450d002009200e370300200341f0046a41106a220d20034180026a41106a280200360200200341f0046a41086a20034180026a41086a29030037030020032003290380023703f004200341c8006a200341f0046a200d10c50302402003290348a70d0041012101410121060c020b2003290350210e410121024101210603400240024020062002460d00200241016a21010c010b200241016a22012002490d05200241017422062001200620014b1b220641ffffffff01712006470d05200641037422084100480d050240024020020d002008101e21090c010b200920024103742008102221090b20090d0020084108102d000b200920024103746a200e370300200341386a200341f0046a200d10c5032003290340210e200121022003280238450d020c000b0b41084108102d000b02402005a7450d00200a10200b0240024020010d0041d2cfc200210d411d21080c010b2009290300210e02400240024002400240024002400240024002400240024002404117101e2202450d00200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702f404200320023602f004200341e8006a200341f0046a10ca0120032802f804210220032802f004210120034180026a41186a220d420037030020034180026a41106a2208420037030020034180026a41086a220a420037030020034200370380022001200220034180026a100120034188016a41186a200d29030037030020034188016a41106a200829030037030020034188016a41086a200a290300370300200320032903800237038801024020032802f404450d0020032802f00410200b024020034188016a412041e4fdc600410041001002417f460d004190cfc200210d411421080c0e0b024020032d00af0110dd030d0041a4cfc200210d410d21080c0e0b200341f0046a20032d00af0110de03200341f8046a2802002108024002400240024020032802f0044101460d0020034184056a350200210f200341fc046a2902002105200341ac056a2802002102200341d0016a20032d00af0110810320032802d8012002490d0141efcfc200210d410f21080c020b20032802f404210d0c100b200341286a200341e8006a108903200329032820054220862008ad8422125a200341306a2903002211200f42208620054220888422055a20112005511b0d0141fecfc200210d411b21080b20032802d401450d0e20032802d00110200c0e0b20032d00af01210d4117101e2202450d01410021012002410f6a41002900d5f841370000200241086a41002900cef841370000200241002900c6f8413700000240024002400240200d0e0403000102030b410121010c020b410221010c010b410321010b200320013a00f00420024117412e10222202450d02200220013a001720034180026a41186a2201420037030020034180026a41106a220d420037030020034180026a41086a2208420037030020034200370380022002411820034180026a1001200341b8036a41186a2001290300370300200341b8036a41106a200d290300370300200341b8036a41086a200829030037030020032003290380023703b80320021020200341003602f004200341b8036a4120200341f0046a1003210220032802f0042201417f460d042002450d0420032001360284022003200236028002200341f0046a20034180026a10e30120032802f004220d450d0320032902f404210f02402001450d00200210200b2003200d360280022003200f3702840220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a2101200f422088a72202200fa7220d470d060c050b41174101102d000b41174101102d000b412e4101102d000b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410021022003410036028802200342013703800220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a21010b200141046a280200220d2002470d00200241016a220d2002490d0920024101742208200d2008200d4b1b220d41ffffff3f71200d470d09200d41057422084100480d090240024020020d002008101e21020c010b200128020020024105742008102221020b2002450d0120012002360200200141046a200d36020020032802880221020b200128020022082002410574220a6a2201200329038801370000200141186a20034188016a41186a290300370000200141106a20034188016a41106a290300370000200141086a20034188016a41086a2903003700002003200241016a220136028802200341003602f804200342013703f004200320013602b806200341b8066a200341f0046a1063024020012002490d00200a41206a21012008210203402002200341f0046a10ca01200241206a2102200141606a22010d000b0b20032802f4042102200341b8036a412020032802f004220120032802f804100502402002450d00200110200b0240200d450d00200810200b0240024002400240411b101e2202450d00200241176a41002800b0d042360000200241106a41002900a9d042370000200241086a41002900a1d04237000020024100290099d0423700002002411b413610222202450d012002200e37001b20034180026a41186a2201420037030020034180026a41106a220d420037030020034180026a41086a2208420037030020034200370380022002412320034180026a1001200341b8036a41186a2001290300370300200341b8036a41106a200d290300370300200341b8036a41086a200829030037030020032003290380023703b80320021020200341003602f004200341b8036a4120200341f0046a1003210220032802f0042201417f460d032002450d0320032001360284022003200236028002200341f0046a20034180026a10e30120032802f004220d450d0220032902f404210f02402001450d00200210200b2003200d360280022003200f3702840220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a2101200f422088a72202200fa7220d470d060c050b411b4101102d000b41364101102d000b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410021022003410036028802200342013703800220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a21010c010b20084101102d000b200141046a280200220d2002470d00200241016a220d2002490d0620024101742208200d2008200d4b1b220d41ffffff3f71200d470d06200d41057422084100480d060240024020020d002008101e21020c010b200128020020024105742008102221020b2002450d0120012002360200200141046a200d36020020032802880221020b200128020022082002410574220a6a2201200329038801370000200141186a20034188016a41186a290300370000200141106a20034188016a41106a290300370000200141086a20034188016a41086a2903003700002003200241016a220136028802200341003602f804200342013703f004200320013602b806200341b8066a200341f0046a1063024020012002490d00200a41206a21012008210203402002200341f0046a10ca01200241206a2102200141606a22010d000b0b20032802f4042102200341b8036a412020032802f004220120032802f804100502402002450d00200110200b0240200d450d00200810200b200342f2deb1abf6eb9cbaeb003703f004200341f0046a200341e8006a20122005417f411610e103200341e0016a41186a2202200341e8006a41186a290300370300200341e0016a41106a2201200341e8006a41106a290300370300200341e0016a41086a220d200341e8006a41086a290300370300200320032903683703e00120032d00af0121081079210a20034185056a200d2903003700002003418d056a200129030037000020034195056a2002290300370000200320083a00fc042003200e3703f0042003200a3602f804200320032903e0013700fd0402404117101e2202450d00200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702bc03200320023602b803200341e8006a200341b8036a10ca0120032802c003210220032802b803210120034180026a41186a220d420037030020034180026a41106a2208420037030020034180026a41086a220a420037030020034200370380022001200220034180026a100120034188016a41186a200d29030037030020034188016a41106a200829030037030020034188016a41086a200a290300370300200320032903800237038801024020032802bc03450d0020032802b80310200b2003410036028802200342013703800220032903f004210e0240024002400240024002404108101e2202450d0020034108360284022003200328028802220141086a360288022003200236028002200220016a200e37000020032d00fc040e0401020304010b41084101102d000b410021010c030b410121010c020b410221010c010b410321010b200320013a00b806024002402003280284022003280288022202460d00200328028002210d0c010b200241016a220d2002490d0720024101742208200d2008200d4b1b22084100480d070240024020020d002008101e210d0c010b200328028002200220081022210d0b200d450d0320032008360284022003200d3602800220032802880221020b2003200241016a36028802200d20026a20013a0000200341fd046a20034180026a10ca0120032802f804210d0240200328028402220120032802880222026b4104490d0020032802800221010c040b200241046a22082002490d06200141017422022008200220084b1b22024100480d060240024020010d002002101e21010c010b20032802800220012002102221010b02402001450d002003200236028402200320013602800220032802880221020c040b20024101102d000b41174101102d000b20084101102d000b20084101102d000b2003200241046a36028802200120026a200d360000200328028402210220034188016a41202003280280022201200328028802100502402002450d00200110200b200341f0046a41086a22024200370300200342003703f00441b4d0c2004116200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024002400240024020032802f0042201417f460d002002450d00200320013602bc03200320023602b803200341f0046a200341b8036a10e301024020032802f004220d450d0020032902f404210e02402001450d00200210200b2003200d3602b8032003200e3702bc0320034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a2903003703002003200329036837038801200341b8036a2101200e422088a72202200ea7220d470d030c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b41002102200341003602c003200342013703b80320034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a2903003703002003200329036837038801200341b8036a21010b200141046a280200220d2002470d00200241016a220d2002490d0520024101742208200d2008200d4b1b220d41ffffff3f71200d470d05200d41057422084100480d050240024020020d002008101e21020c010b200128020020024105742008102221020b2002450d0120012002360200200141046a200d36020020032802c00321020b200128020022082002410574220b6a2201200329038801370000200141186a20034188016a41186a290300370000200141106a20034188016a41106a290300370000200141086a20034188016a41086a2903003700002003200241016a22013602c003200341f0046a41086a220a4200370300200342003703f00441b4d0c2004116200341f0046a100020034180026a41086a200a290300370300200320032903f00437038002200341003602f804200342013703f004200320013602b806200341b8066a200341f0046a1063024020012002490d00200b41206a21012008210203402002200341f0046a10ca01200241206a2102200141606a22010d000b0b20032802f404210220034180026a411020032802f004220120032802f804100502402002450d00200110200b0240200d450d00200810200b200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a10032102024020032802f0042201417f460d002002450d00200320013602bc03200320023602b803200341f0046a200341b8036a10a102024020032802f0042207450d0020032902f404210e2001450d03200210200c030b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410821074200210e0c010b20084101102d000b200ea7211602400240024002400240200e422088a72217450d002007201741306c6a2113200341f0046a41086a210d41002101200341f0046a41296a221441036a2115034020034180026a41206a220a200720016a220241206a29030037030020034180026a41186a220b200241186a29030037030020034180026a41106a220c200241106a29030037030020034180026a41086a2204200241086a29030037030020032002290300370380022003200241296a2800003602a80620032002412c6a2800003600ab06200241286a2d000022084104460d01200341f0046a41206a200a290300370300200341f0046a41186a200b290300370300200341f0046a41106a200c290300370300200d2004290300370300201420032802a806360000201520032800ab0636000020032003290380023703f004200320083a009805200d200341e8006a412010cf050d02200141306a2101200241306a2013470d000b0b4108210d4100211402402016450d00200710200b410021180c010b200341b8066a41206a200341f0046a41206a290300220e370300200341b8066a41186a200341f0046a41186a2903002205370300200341b8066a41106a200341f0046a41106a290300220f370300200341b8066a41086a200341f0046a41086a2903002211370300200341b8036a41086a220a2011370300200341b8036a41106a220b200f370300200341b8036a41186a220c2005370300200341b8036a41206a2204200e370300200320032903f004220e3703b80620032014280000360288012003201441036a28000036008b012003200e3703b8032003200328008b013600b30620032003280288013602b006200320032800b3063600e301200320032802b0063602e0014130101e220d450d01200d20032903b803370300200d20083a0028200d20032802e001360029200d412c6a20032800e301360000200d41206a2004290300370300200d41186a200c290300370300200d41106a200b290300370300200d41086a200a29030037030002400240201741306c41506a2001470d0041012114410121180c010b200241306a210c201741306c20076a41506a2119200341f0046a41086a2108200341f0046a41296a221541036a211741012114410121180340200c2102034020034180026a41206a220a200241206a29030037030020034180026a41186a220b200241186a29030037030020034180026a41106a220c200241106a29030037030020034180026a41086a2204200241086a2903003703002003200229030037038002200241286a2d000021012003200241296a2800003602a80620032002412c6a2800003600ab0620014104460d02200341f0046a41206a221a200a290300370300200341f0046a41186a220a200b290300370300200341f0046a41106a220b200c29030037030020082004290300370300201520032802a806360000201720032800ab0636000020032003290380023703f004200320013a00980502402008200341e8006a412010cf050d00200241306a22022013470d010c030b0b200341b8066a41206a201a290300220e370300200341b8066a41186a200a2903002205370300200341b8066a41106a200b290300220f370300200341b8066a41086a20082903002211370300200341b8036a41086a220c2011370300200341b8036a41106a2204200f370300200341b8036a41186a221b2005370300200341b8036a41206a221c200e370300200320032903f004220e3703b80620032015280000360288012003201728000036008b012003200e3703b8032003200328008b013600b30620032003280288013602b006200320032800b3063600e301200320032802b0063602e0012008200c290300370300200b2004290300370300200a201b290300370300201a201c290300370300200320032903b8033703f004200320032802e00136028002200320032800e30136008302024020182014470d00201441016a220c2014490d0820144101742204200c2004200c4b1b2218ad42307e220e422088a70d08200ea7220c4100480d080240024020140d00200c101e210d0c010b200d201441306c200c1022210d0b200d450d050b200241306a210c2008290300210e200b2903002105200a290300210f201a290300211120032903f0042112200d201441306c6a220a20013a0028200a2012370300200a41206a2011370300200a41186a200f370300200a41106a2005370300200a41086a200e370300200a200328028002360029200a412c6a200328008302360000201441016a211420192002470d000b0b2016450d00200710200b200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341f0046a200d201410a20220034180026a411020032802f004220220032802f8041005024020032802f404450d00200210200b02402018450d00200d10200b20034192056a20032d00af013a0000200341fa046a200341f0006a29030037010020034182056a200341f8006a2903003701002003418a056a20034180016a29030037010020034190023b01f004200320032903683701f204200341f0046a1077024020032802d401450d0020032802d00110200b4100210d02402006450d00200910200b0c080b41304108102d000b200c4108102d000b2006450d05200910200c050b10792108200341f0046a41086a22024200370300200342003703f00441e9cec2004116200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024020032802f004220a417f470d0041ac02210a0c010b024020020d0041ac02210a0c010b200a4104490d032002280000210a200210200b200341b8036a41086a220b200341b8066a41086a290300370300200341b8036a41106a220c200341b8066a41106a290300370300200341b8036a41186a2213200341b8066a41186a290300370300200320032903b8063703b803024020062009470d00200ea7200e422088a72202470d00200241016a22062002490d0120024101742209200620062009491bad220f42307e2211422088a70d012011a722064100480d010240024020020d002006101e210d0c010b200d200241306c20061022210d0b200d450d04200e42808080807083200f84210e0b200d200e422088a7220641306c6a2202200537030020132903002105200c290300210f200b290300211120032903b8032112200220073a002820022012370308200241106a2011370300200241186a200f370300200241206a20053703002002200a20086a36022c200220032f00f0043b00292002412b6a200341f2046a2d00003a0000200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f0043703800202400240200d0d0020034180026a411010040c010b200ea72102200341f0046a200d200641016a10a20220034180026a411020032802f004220620032802f8041005024020032802f404450d00200610200b2002450d00200d10200b20034192056a20073a0000200341fa046a200341c0066a2903003701002003418a056a200341d0066a290300370100200341103b01f00420034182056a200341b8066a41106a290300370100200320032903b8063701f204200341f0046a10774100210d0c010b1027000b20044105470d02200141086a280200450d02200141046a28020010200c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b20064108102d000b200020083602042000200d360200200341e0066a24000bcce20107097f027e057f027e057f027e107f23004190056b220324000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e09000102030405060708000b200341d4026a4101360200200342013702c40220034184e6c6003602c002200341043602542003418cb4c6003602502003200341d0006a3602d002200341c0026a41d483c6001033000b20012d00012104200341d0006a41186a2001411a6a290000370300200341d0006a41106a200141126a290000370300200341d0006a41086a2001410a6a2900003703002003200141026a29000037035041d3fec6002105024020022d00000d00200341086a41086a220242003703002003420037030841e483c600410f200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a4110106920032d00c0022105200341086a41186a200341d9026a290000370300200341086a41106a200341d1026a2900003703002002200341c9026a290000370300200320032900c10237030841002102024020054101470d00200341f0016a41186a200341086a41186a290300370300200341f0016a41106a200341086a41106a290300370300200341f0016a41086a200341086a41086a290300370300200320032903083703f001410121020b02400240200441ff01714101460d00200341086a41086a220542003703002003420037030841e483c600410f200341086a1000200341e8036a41086a2005290300370300200320032903083703e803200341e8036a411010040c010b200341c0026a41186a200341d0006a41186a290300370300200341c0026a41106a200341d0006a41106a290300370300200341c0026a41086a200341d0006a41086a290300370300200320032903503703c002200341086a41086a220542003703002003420037030841e483c600410f200341086a1000200341e8036a41086a2005290300370300200320032903083703e803200341103602a4042003200341e8036a3602a004200341c0026a200341a0046a1082030b200341c9026a20023a0000200341c0026a41086a41073a0000200341ca026a20032903f001370100200341ea026a20043a0000200341eb026a2003290350370000200341d2026a200341f0016a41086a290300370100200341da026a200341f0016a41106a290300370100200341e2026a200341f0016a41186a290300370100200341f3026a200341d0006a41086a290300370000200341fb026a200341d0006a41106a29030037000020034183036a200341d0006a41186a2903003700002003410e3a00c002200341c0026a1077410021050b411121020c320b200141186a2802002106200141146a2802002107200141106a28020021082001410c6a2802002109200141086a280200210a41042104200141046a280200210b200141286a290300210c200141206a290300210d200241046a280000210e20022d0000210f200341e8036a41026a2210200241036a2d00003a0000200341c0026a41086a2211200241186a290000370300200341c0026a41106a2212200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200f4101470d00200341a0046a41026a20102d00003a0000200341d0006a41086a2011290300370300200341d0006a41106a20122d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200e21040b20034187026a200341d0006a41086a2903003700002003418f026a200341d0006a41106a2d00003a0000200320032f01a0043b01f001200320043600f301200320032903503700ff012003200341a0046a41026a2d00003a00f201200320133700f7010240024020050d00200341e0046a41186a200341f0016a41186a290300370300200341e0046a41106a200341f0016a41106a290300370300200341e0046a41086a200341f0016a41086a2204290300370300200320032903f0013703e004200341086a41086a220242003703002003420037030841e483c600410f200341086a100020042002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a220e20032d00c3023a00002004200341d4026a290200370300200341f0016a410d6a2210200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f0014101210f0240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a200e2d00003a0000200341a0046a41086a2004290300370300200341a0046a410d6a2010290000370000200320032f01303b01e803200320032903f0013703a0044100210f0b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200341a0046a41086a29030037030020034180046a41106a200341a0046a41106a290300370300200320032f01e8033b018005200320032903a00437038004200f0d32200341e3006a20034180046a41086a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034182056a2d00003a0052200341e0046a200341d0006a412010cf05450d01418684c6002105411621020c320b419affc6002105410f210202400240024002400240024020040e0700010203040537000b2013422088a721022013a721050c360b418cffc6002105410e21020c350b4180ffc6002105410c21020c340b41f7fec6002105410921020c330b41e4fec6002105411321020c320b41d3fec6002105411121020c310b200341086a41086a220242003703002003420037030841df82c700411d200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220541ffff0371200941ffff037122044d0d00419c84c6002105411921020c310b024020032f01c402410020021b20056a41ffff037120044f0d0041b584c6002105411821020c310b200341086a41086a220242003703002003420037030841fc82c7004123200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a107541cd84c6002105411e210220032f01c202410020032f01c00241014622041b220f41ffff0371200641ffff0371220e4b0d3020032f01c402410020041b200f6a41ffff0371200e490d30420021140240200d4200520d00200341086a21050c290b200341c0026a200c109a05024020032802c0024101470d00200341c8026a280200210220032802c40221050c310b200341cc026a280200220e41f8006c2105200341c8026a280200211120032802c40222102102024003402005450d01200241d4006a2104200241d5006a210f200541887f6a2105200241f8006a2102200f2d000020042d0000720d260c000b0b200e41026a41034d0d274126210241c585c60021050c250b200141026a2d00002110200141086a290300210c4104210420012d0001210e200241046a280000210a20022d00002107200341e8036a41026a220f200241036a2d00003a0000200341c0026a41086a2208200241186a290000370300200341c0026a41106a220b200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a2900002113024020074101470d00200341a0046a41026a200f2d00003a0000200341d0006a41086a2008290300370300200341d0006a41106a200b2d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200a21040b200341086a41086a200341d0006a41086a290300370300200341086a41106a200341d0006a41106a2d00003a0000200320032f01a0043b012c200320032903503703082003200341a0046a41026a2d00003a002e0240024020050d00200341f7046a200341086a41086a2202290300370000200341ff046a200341086a41106a2d00003a0000200320032d002e3a00e204200320032f012c3b01e004200320133700e704200320043600e304200320032903083700ef04200242003703002003420037030841e483c600410f200341086a1000200341f0016a41086a22042002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a220a20032d00c3023a00002004200341d4026a290200370300200341f0016a410d6a220f200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f001410121070240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a200a2d00003a0000200341a0046a41086a2004290300370300200341a0046a410d6a200f290000370000200320032f01303b01e803200320032903f0013703a004410021070b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200341a0046a41086a29030037030020034180046a41106a200341a0046a41106a290300370300200320032f01e8033b018005200320032903a0043703800420070d32200341e3006a20034188046a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034180056a41026a2d00003a0052200341e0046a200341d0006a412010cf05450d01418684c6002105411621020c320b419affc6002105410f210202400240024002400240024020040e0700010203040537000b2013422088a721022013a721050c360b418cffc6002105410e21020c350b4180ffc6002105410c21020c340b41f7fec6002105410921020c330b41e4fec6002105411321020c320b41d3fec6002105411121020c310b0240200e41ff01714102470d00201041ff01714102470d0041eb85c6002105411b21020c310b200341c0026a200c109a05024020032802c0024101470d00200341c8026a280200210220032802c40221050c310b200341c8026a280200211520032802c40221160240200341cc026a280200221741014d0d002017ad42f8007e2213422088a70d2b2013a72202417f4c0d2b4108211802402002450d002002101e2218450d070b2016201741f8006c6a2119410021074100210a0340201620076a220241386a2802002205417f4c0d2c20022903002113200241306a28020021040240024020050d004101210f0c010b2005101e220f450d090b200f2004200510cd05210f200241c4006a2802002204417f4c0d2c2002413c6a28020021080240024020040d004101210b0c010b2004101e220b450d0a0b200b2008200410cd052108200241c8006a290300210d200241d0006a280200210b200241d4006a2d00002111200241d5006a2d00002112200241086a2903002114200241106a2802002109200241186a290300211a200241206a290300211b200241286a2802002106200341a0046a41106a221c200241e6006a290100370300200341a0046a41186a221d200241ee006a29010037030020032005360214200320053602102003200f36020c200341a0046a41086a220f200241de006a2901003703002003200241d6006a2901003703a004201820076a220541286a2006360200200541206a201b370300200541186a201a370300200541106a2009360200200541086a2014370300200520133703002003290308211320032903102114200541d5006a20124100473a0000200541d4006a20114100473a0000200541d0006a200b360200200541c8006a200d370300200541c4006a2004360200200541c0006a20043602002005413c6a2008360200200541346a20143702002005412c6a2013370200200541d6006a20032903a004370100200541de006a200f290300370100200541e6006a201c290300370100200541ee006a201d290300370100200741f8006a2107200a41016a210a200241f8006a2019470d000b201841346a280200210220182802402105201828023c2104201828023021072018201841f8006a200a417f6a220841f8006c10ce05210f02402002450d00200710200b02402005450d00200410200b200a41f8006c41887f6a2105200f2102024003402005450d01200241d4006a2104200241d5006a2107200541887f6a2105200241f8006a210220072d000020042d000072450d000b02402008450d00200f41c0006a2102200a41f8006c41887f6a210503400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b200f1020419085c6002105413521020c240b02402008450d00200f41c0006a2102200a41f8006c41887f6a210503400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b200f10200b4112101e2202450d08200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d092002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22074200370300200342003703a0042002411a200341a0046a1001200341306a41186a2005290300370300200341306a41106a2004290300370300200341306a41086a2007290300370300200320032903a00437033020021020200341003602c002200341306a4120200341c0026a1003210220032802c0022205417f460d0b2002450d0b2003200536025420032002360250200341c0026a200341d0006a10970520032903d8024202510d0a20034180036a2802002112200341fc026a280200211c200341f4026a2802002109200341f0026a280200211d20032d009403210402402005450d00200210200b201041ff0171450d20200441ff0171450d2002402009450d00201d10200b418686c6002105412b21022012450d22201c10200c220b2001410c6a2802002111200141086a280200210a41042104200141046a280200210f200141206a290300210c200341306a41086a200141186a2802003602002003200141106a290200370330200241046a280000210820022d00002107200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a2900002113024020074101470d00200341a0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200821040b20034187026a200341d0006a41086a2903003700002003418f026a200341d0006a41106a2d00003a0000200320032f01a0043b01f001200320043600f301200320032903503700ff012003200341a0046a41026a2d00003a00f201200320133700f7010240024020050d0020034180046a41186a200341f0016a41186a29030037030020034180046a41106a200341f0016a41106a29030037030020034180046a41086a200341f0016a41086a290300370300200320032903f0013703800420034180046a10ff020d0141b186c6002105410f21020c200b419affc6002105410f210202400240024002400240024020040e0700010203040525000b2013422088a721022013a721050c240b418cffc6002105410e21020c230b4180ffc6002105410c21020c220b41f7fec6002105410921020c210b41e4fec6002105411321020c200b41d3fec6002105411121020c1f0b200341c0026a200c109a05024020032802c0024101470d00200341c8026a280200210220032802c40221050c1f0b200341cc026a280200220841f8006c2105200341c8026a280200210e20032802c402220b210203402005450d1d200241d4006a2104200241d5006a2107200541887f6a2105200241f8006a210220072d000020042d000072450d000b419085c6002105413521020c1d0b2001410c6a2802002111200141086a280200210741042104200141046a280200210f200141106a290300210c200241046a280000210820022d0000210a200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200a4101470d00200341a0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200821040b200341086a41086a200341d0006a41086a290300370300200341086a41106a200341d0006a41106a2d00003a0000200320032f01a0043b012c200320032903503703082003200341a0046a41026a2d00003a002e0240024020050d00200341b7026a200341086a41086a2202290300370000200341bf026a200341086a41106a2d00003a0000200320032d002e3a00a202200320032f012c3b01a002200320133700a702200320043600a302200320032903083700af02200242003703002003420037030841e483c600410f200341086a1000200341f0016a41086a22042002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a220820032d00c3023a00002004200341d4026a290200370300200341f0016a410d6a220b200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f0014101210a0240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a20082d00003a0000200341a0046a41086a2004290300370300200341a0046a410d6a200b290000370000200320032f01303b01e803200320032903f0013703a0044100210a0b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200341a0046a41086a29030037030020034180046a41106a200341a0046a41106a290300370300200320032f01e8033b018005200320032903a00437038004200a0d1c200341e3006a20034188046a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034182056a2d00003a0052200341a0026a200341d0006a412010cf05450d01418684c6002105411621020c1c0b419affc6002105410f210202400240024002400240024020040e0700010203040521000b2013422088a721022013a721050c200b418cffc6002105410e21020c1f0b4180ffc6002105410c21020c1e0b41f7fec6002105410921020c1d0b41e4fec6002105411321020c1c0b41d3fec6002105411121020c1b0b200341c0026a200c109b05024020032802c0024101470d0020032802c802210220032802c40221050c1b0b200341e0046a41086a200341fc026a290200370300200341e0046a41106a20034184036a290200370300200341e0046a41186a2003418c036a2902003703002003200341f4026a2902003703e004200341ec026a280200210e200341e8026a2802002104200341c0026a41106a290300211320034198036a2903002114200341a0036a2802002109200341a8036a2802002110200341ac036a280200210b200341b0036a2802002112200341b4036a2802002106200341b8036a280200211c200341bc036a280200211d20032903c802210d20034180046a41186a200341d8036a29030037030020034180046a41106a200341d0036a29030037030020034180046a41086a200341c8036a2903003703002003200341c0036a290300370380042004450d1841ea87c6002105411921020c190b200141106a290300210c200341e0046a41086a2001410c6a280200360200410421042003200141046a2902003703e004200241046a280000210a20022d00002107200341e8036a41026a220f200241036a2d00003a0000200341c0026a41086a2208200241186a290000370300200341c0026a41106a220b200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a2900002113024020074101470d0020034180046a41026a200f2d00003a0000200341d0006a41086a2008290300370300200341d0006a41106a200b2d00003a0000200320032f01e8033b018004200320032903c00237035041002105200a21040b2003411f6a200341d0006a41086a290300370000200341276a200341d0006a41106a2d00003a0000200320032f0180043b01082003200436000b20032003290350370017200320034180046a41026a2d00003a000a2003201337000f0240024020050d00200341a0046a41186a200341086a41186a290300370300200341a0046a41106a200341086a41106a290300370300200341a0046a41086a200341086a41086a2202290300370300200320032903083703a004200341a0046a10ff020d0141b186c6002105410f21020c180b419affc6002105410f210202400240024002400240024020040e070001020304051d000b2013422088a721022013a721050c1c0b418cffc6002105410e21020c1b0b4180ffc6002105410c21020c1a0b41f7fec6002105410921020c190b41e4fec6002105411321020c180b41d3fec6002105411121020c170b20032802e8042105200242003703002003420037030841ba83c7004118200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220441ffff0371200541ffff037122054d0d0041ed86c6002105411421020c170b024020032f01c402410020021b20046a41ffff037120054f0d00418187c6002105410e21020c170b200341c0026a200c109c05024020032802c0024101470d0020032802c802210220032802c40221050c170b200341ac036a280200210f200341a8036a280200210b200341ec026a2802002108200341e8026a280200210a200341c0026a200341d0026a290300109a0520032802c0024101460d14200341cc026a280200220e41f8006c2105200341c8026a280200211120032802c4022210210203402005450d14200241d4006a2104200241d5006a2107200541887f6a2105200241f8006a210220072d000020042d0000720d130c000b0b2001410c6a2802002111200141086a280200210741042104200141046a280200210f200141106a290300210c200241046a280000210820022d0000210a200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200a4101470d00200341a0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200821040b20034187026a200341d0006a41086a2903003700002003418f026a200341d0006a41106a2d00003a0000200320032f01a0043b01f001200320043600f301200320032903503700ff012003200341a0046a41026a2d00003a00f201200320133700f7010240024020050d00200341306a41186a200341f0016a41186a290200370300200341306a41106a200341f0016a41106a290200370300200341306a41086a200341f0016a41086a290200370300200320032902f001370330200341306a10ff020d0141b186c6002105410f21020c120b419affc6002105410f210202400240024002400240024020040e0700010203040517000b2013422088a721022013a721050c160b418cffc6002105410e21020c150b4180ffc6002105410c21020c140b41f7fec6002105410921020c130b41e4fec6002105411321020c120b41d3fec6002105411121020c110b200341086a41086a220242003703002003420037030841ba83c7004118200341086a1000200341a0046a41086a2002290300370300200320032903083703a004200341c0026a200341a0046a1075024020032f01c202410020032f01c00241014622021b220541ffff0371201141ffff037122044d0d0041ed86c6002105411421020c110b024020032f01c402410020021b20056a41ffff037120044f0d00418187c6002105410e21020c110b200341c0026a200c109d05024020032802c0024101470d0020032802c802210220032802c40221050c110b200341d0006a200341c8026a41a00110cd051a0240200341cc016a200341306a412010cf050d00410e101e2202450d09200241066a41002900e18846370000200241002900db88463700002002410e411c10222202450d0a2002200c37000e200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a220a4200370300200342003703a00420024116200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a200a290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003210520032802c0022204417f460d0f2005450d0f20032004360284042003200536028004200341c0026a20034180046a10940520032802a4032208450d0b200341e8036a41086a200341c0026a41086a290300370300200341a0046a41086a200341f4026a290200370300200341a0046a41106a200341fc026a290200370300200341a0046a41186a20034184036a290200370300200320032903c0023703e803200320032902ec023703a00420032903d002210c20032802d802211c20032802dc02211d20032802e002210e20032802e402211820032802e8022106200341e0046a41086a200341c4036a290200370300200341e0046a41106a200341cc036a290200370300200341e0046a41186a200341d4036a2902003703002003200341bc036a2902003703e004200341b8036a280200210a200341b4036a2802002102200341b0036a280200210b200341dc036a280200211720032802a803210920032802a0032112200328029c03211920032802980321102003290390032113200328028c0321162004450d10200510200c100b0240200341b8016a280200450d0020032802b40110200b0240200341f0006a2802002202450d002003280274450d00200210200b20032802c00121040240200341c8016a2802002202450d0020024105742105200441106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b0240200341c4016a280200450d00200410200b41b888c6002105412321020c100b2001410c6a2802002111200141086a280200210741042104200141046a280200210f200141106a290300210c200241046a280000210820022d0000210a200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200a4101470d00200341e0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01e004200320032903c00237035041002105200821040b20034180046a41026a200341e0046a41026a2d00003a0000200341a0046a41086a200341d0006a41086a290300370300200341a0046a41106a200341d0006a41106a2d00003a0000200320032f01e0043b018004200320032903503703a0040240024020050d00200341b7026a200341a0046a41086a220a290300370000200341bf026a200341a0046a41106a220e2d00003a0000200320032f0180043b01a002200320133700a702200320043600a302200320032903a0043700af02200320034180046a41026a2d00003a00a202200341086a41086a220242003703002003420037030841e483c600410f200341086a1000200341f0016a41086a22082002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a221020032d00c3023a00002008200341d4026a290200370300200341f0016a410d6a2212200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f0014101210b0240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a20102d00003a0000200a2008290300370300200341a0046a410d6a2012290000370000200320032f01303b01e803200320032903f0013703a0044100210b0b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200a29030037030020034180046a41106a200e290300370300200320032f01e8033b018005200320032903a00437038004200b0d0e200341e3006a20034188046a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034182056a2d00003a0052200341a0026a200341d0006a412010cf05450d01418684c6002105411621020c0e0b419affc6002105410f210202400240024002400240024020040e0700010203040513000b2013422088a721022013a721050c120b418cffc6002105410e21020c110b4180ffc6002105410c21020c100b41f7fec6002105410921020c0f0b41e4fec6002105411321020c0e0b41d3fec6002105411121020c0d0b200341c0026a200c109d05024020032802c0024101470d0020032802c802210220032802c40221050c0d0b200341c0036a280200210a200341bc036a2802002110200341b8036a280200210b200341b0036a280200210e200341ac036a2802002109200341ec026a2802002112200341e8026a2802002108200341d0026a290300211420032903c802210d200341086a41086a220242003703002003420037030841fb83c7004127200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00222024101461b220541ffff0371201141ffff037122064d0d0041e988c6002105412421020c0b0b20032f01c402410020024101461b20056a41ffff037120064f0d0b418d89c6002105412321020c0a0b20024108102d000b20054101102d000b20044101102d000b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b410021094101211d4101211c410021120c140b410e4101102d000b411c4101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b0240200e450d00200910200b02402008450d002012450d00200810200b0240200a450d00200a410574210a200b41106a210403400240200441046a280200450d00200428020010200b200441206a2104200a41606a220a0d000b0b2010450d01200b10200c010b1079211e10a902211a200341e8036a41086a200341a0026a410f6a220241086a290000370300200341e8036a41106a200241106a2d00003a0000200320032d00a2023a00fe03200320032f01a0023b01fc03200320022900003703e8032011417f4c0d190240024002400240024002400240024020110d00410121050c010b2011101e2205450d010b2005200f201110cd05211d200341086a41086a200341e8036a41086a290300370300200341086a41106a200341e8036a41106a2d00003a0000200320032f01fc033b012c200320032d00fe033a002e200320032903e803370308410e101e2202450d01200241066a41002900e18846370000200241002900db88463700002002410e411c10222202450d022002200c37000e200341a0046a41186a22064200370300200341a0046a41106a221c4200370300200341a0046a41086a22184200370300200342003703a00420024116200341a0046a1001200341306a41186a2006290300370300200341306a41106a201c290300370300200341306a41086a2018290300370300200320032903a00437033020021020200341003602c002200341306a4120200341c0026a1003210620032802c002221f417f460d042006450d042003201f3602e404200320063602e004200341c0026a200341e0046a10940520032802a4032202450d0320034180056a41086a200341c0026a41086a290300370300200341d0006a41086a200341f4026a290200370300200341d0006a41106a200341fc026a290200370300200341d0006a41186a20034184036a290200370300200320032903c00237038005200320032902ec02370350200341ac036a2802002117200341b0036a2802002120200341b4036a2802002115200341b8036a280200212120032802e002211c20032802e4022122200328028c032123200329039003210c2003280298032118200328029c03212420032802a003211620032802a8032119200341a0046a41186a200341d4036a290200370300200341a0046a41106a200341cc036a290200370300200341a0046a41086a200341c4036a2902003703002003200341bc036a2902003703a004200341dc036a2802002125201f450d05200610200c050b20114101102d000b410e4101102d000b411c4101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b410021020b4108210620034190026a41086a221f20034180056a41086a290300370300200341c0026a41086a2226200341d0006a41086a290300370300200341c0026a41106a2227200341d0006a41106a290300370300200341c0026a41186a2228200341d0006a41186a290300370300200341f0016a41086a2229200341a0046a41086a290300370300200341f0016a41106a222a200341a0046a41106a290300370300200341f0016a41186a222b200341a0046a41186a290300370300200320032903800537039002200320032903503703c002200320032903a0043703f0010240024020020d004200210c20034180046a41186a420037030020034180046a41106a420037030020034180046a41086a4200370300200341d0046a41086a42003703002003420037038004200342003703d004410121024100211c4100211841002116410021194100211741002115410021214101211f0c010b200341d0046a41086a201f290300370300200341e0046a41086a2026290300370300200341e0046a41106a2027290300370300200341e0046a41186a202829030037030020034180046a41086a202929030037030020034180046a41106a202a29030037030020034180046a41186a202b29030037030020032003290390023703d004200320032903c0023703e004200320032903f00137038004201c45211f202021060b20034187026a200341086a41086a2903003700002003418f026a200341086a41106a2d00003a0000200320113602ac04200320113602a8042003201d3602a404200320032f012c3b01f001200320032d002e3a00f201200320133700f701200320043600f301200320032903083700ff010240024020220d00201121040c010b20112104201f0d00201c102020032802ac04211120032802a804210420032802a404210520032802a004211d0b200341e0046a41186a221c200341f0016a41186a290200370300200341e0046a41106a2222200341f0016a41106a290200370300200341e0046a41086a221f200341f0016a41086a290200370300200320032902f0013703e004200341c0026a41086a200341d0046a41086a290300370300200341e8026a2011360200200341e4026a2004360200200341c0026a41206a2005360200200341dc026a201d360200200341c0026a41186a201e360200200320032903d0043703c0022003201a3703d002200341ec026a20032903e004370200200341f4026a201f290300370200200341fc026a202229030037020020034184036a201c290300370200200341b8036a2021360200200341b4036a2015360200200341ac036a2017360200200341a8036a201936020020034198036a20183602002003418c036a2023360200200320063602b003200320023602a403200320163602a0032003202436029c032003200c37039003200341d4036a20034180046a41186a290300370200200341cc036a20034180046a41106a290300370200200341c4036a20034180046a41086a29030037020020032003290380043702bc03200320253602dc030240024020020d00200341306a412010040c010b200341203602542003200341306a360250200341c0026a200341d0006a1098050b024020032802a4032202450d00024020032802a803450d00200210200b024020032802e0022202450d0020032802e402450d00200210200b0240200341b8036a2802002202450d002002410574210520032802b00341106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b200341b4036a280200450d0020032802b00310200b024002400240024002404110101e2202450d00200241086a410029009787463700002002410029008f874637000020024110412010222202450d0120022014370010200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22114200370300200342003703a00420024118200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a2011290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003210620032802c002221d417f460d032006450d032003201d3602a404200320063602a004200341c0026a200341a0046a10960520032802a0032202450d0220034180056a41086a200341c0026a41186a290300370300200341d0006a41086a200341ec026a290200370300200341d0006a41106a200341f4026a290200370300200341d0006a41186a200341fc026a290200370300200341f0006a20034184036a290200370300200341f8006a2003418c036a280200360200200320032903d00237038005200320032902e40237035020032903c802210c20032903c002211320032802e0022105200341e0046a41086a200341c0036a290300370300200341e0046a41106a200341c8036a290300370300200341e0046a41186a200341d0036a2903003703002003200341b8036a2903003703e004200341b4036a2802002116200341b0036a2802002118200341ac036a280200211120032902a403211a200328029c03211c20032802980321042003290390032114201d450d04200610200c040b41104101102d000b41204101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b410021020b20034180046a41086a220620034180056a41086a290300370300200341c0026a41086a221d200341d0006a41086a290300370300200341c0026a41106a2219200341d0006a41106a290300370300200341c0026a41186a2217200341d0006a41186a290300370300200341c0026a41206a2215200341d0006a41206a290300370300200341c0026a41286a2221200341d0006a41286a280200360200200320032903800537038004200320032903503703c002200341f0016a41086a221e200341e0046a41086a290300370300200341f0016a41106a2222200341e0046a41106a290300370300200341f0016a41186a2223200341e0046a41186a290300370300200320032903e0043703f0010240024020020d004200211a200341306a41186a4200370300200341306a41106a4200370300200341306a41086a4200370300200342003703304100211141012106417f211d410121024100210442002114410021054200210c420021130c010b200341d0046a41086a2006290300370300200341a0046a41086a201d290300370300200341a0046a41106a2019290300370300200341a0046a41186a2017290300370300200341a0046a41206a2015290300370300200341a0046a41286a2021280200360200200341306a41086a201e290300370300200341306a41106a2022290300370300200341306a41186a202329030037030020032003290380043703d004200320032903c0023703a004200320032903f001370330201641016a21062018417f6a211d0b200341c0026a41186a200341d0046a41086a290300370300200341c0026a41206a2005360200200341e4026a20032903a004370200200341ec026a200341a0046a41086a290300370200200341f4026a200341a0046a41106a290300370200200341fc026a200341a0046a41186a29030037020020034184036a200341a0046a41206a2903003702002003418c036a200341c8046a2802003602002003200c3703c802200320133703c002200320032903d0043703d002200341a4036a201a37020020034198036a2004360200200341c0036a200341306a41086a290300370300200341c8036a200341306a41106a290300370300200341d0036a200341306a41186a290300370300200320063602b4032003201d3602b003200320113602ac03200320023602a0032003201c36029c032003201437039003200320032903303703b803200341203602542003200341086a360250200341c0026a200341d0006a109905024020032802a0032202450d00024020032802a403450d00200210200b20032802e0022202450d0020032802e402450d00200210200b200341c0026a41106a200d370300200341c0026a41086a41053a00002003410e3a00c002200341c0026a10770240200e450d00200910200b02402008450d002012450d00200810200b0240200a450d00200a4105742105200b41106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b02402010450d00200b10200b410021052007450d17200f10200c1f0b2007450d1e200f10200c1e0b410021080b4108210420034190026a41086a2205200341e8036a41086a290300370300200341c0026a41086a2215200341a0046a41086a290300370300200341c0026a41106a2221200341a0046a41106a290300370300200341c0026a41186a221e200341a0046a41186a290300370300200341f0016a41086a2222200341e0046a41086a290300370300200341f0016a41106a2223200341e0046a41106a290300370300200341f0016a41186a2224200341e0046a41186a290300370300200320032903e80337039002200320032903a0043703c002200320032903e0043703f0010240024020080d004200211320034180056a41086a4200370300200341a0026a41086a4200370300200341a0026a41106a4200370300200341a0026a41186a4200370300200342003703800541012108200341013602d004200342003703a0024100210e410021104100211241002109410021024100210a0c010b20034180056a41086a200529030037030020034180046a41086a201529030037030020034180046a41106a202129030037030020034180046a41186a201e290300370300200341a0026a41086a2022290300370300200341a0026a41106a2023290300370300200341a0026a41186a2024290300370300200320032903900237038005200320032903c00237038004200320083602d004200320032903f0013703a002200b21040b1079211510a902210d200341bc016a2802002205417f4c0d1620032802b401210b024002400240024020050d00410121210c010b2005101e2221450d010b2021200b200510cd052121200320053602f403200320053602f003200320213602ec0302402009450d00200810200b2003200f3602d004200341a0046a41086a220f200341e8036a41086a290300370300200320032903e8033703a0040240200a2002460d0020022105200a21020c020b0240200241016a22052002490d00200241017422082005200820054b1b220541ffffff3f712005470d00200541057422084100480d000240024020020d002008101e21040c010b200420024105742008102221040b20040d0220084108102d000b1027000b20054101102d000b200420024105746a220220153602082002200d370300200241146a200f290300370200200220032903a00437020c200341c0026a41086a20034180056a41086a290300370300200341e8026a2006360200200341e4026a2018360200200341c0026a41206a200e360200200341dc026a201d360200200341c0026a41186a201c360200200341ec026a200329038004370200200341f4026a20034180046a41086a290300370200200341fc026a20034180046a41106a29030037020020034184036a20034180046a41186a29030037020020032003290380053703c0022003200c3703d00220034198036a20103602002003418c036a2016360200200341a8036a2007360200200341ac036a2011360200200341b4036a2005360200200341b8036a200a41016a360200200341c4036a200341a0026a41086a290300370200200341cc036a200341a0026a41106a290300370200200341d4036a200341a0026a41186a290300370200200320123602a0032003201936029c032003201337039003200320043602b003200320032802d00422023602a403200320032903a0023702bc03200320173602dc030240024020020d00200341086a412010040c010b200341203602a4042003200341086a3602a004200341c0026a200341a0046a1098050b024020032802a4032202450d00024020032802a803450d00200210200b024020032802e0022202450d0020032802e402450d00200210200b0240200341b8036a2802002202450d002002410574210520032802b00341106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b200341b4036a280200450d0020032802b00310200b20032903502113200341d8026a200341c8016a2802002202ad370300200341d0026a2013370300200341c8026a41063a00002003410e3a00c002200341c0026a10770240200341b8016a280200450d00200b10200b0240200341f0006a2802002205450d002003280274450d00200510200b20032802c001210402402002450d0020024105742105200441106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b200341c4016a280200450d0d20041020410021050c1c0b2007450d1b200f10200c1b0b0240200e450d00200e41f8006c2105201041c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b419085c6002105413521022011450d02201010200c020b200341c0026a200c200341e0046a200341a0046a109e05200341e0006a20032903c002370300200341d8006a41043a00002003410e3a0050200341d0006a10770240200341a8036a280200450d0020032802a40310200b0240200341e0026a2802002202450d0020032802e402450d00200210200b20032802b00321040240200341b8036a2802002202450d0020024105742105200441106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b0240200341b4036a280200450d00200410200b0240200e450d00200e41f8006c2105201041c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b02402011450d00201010200b0240200f450d00200b10200b0240200a450d002008450d00200a10200b4100210520032802e404450d1120032802e00410200c190b200341c8026a280200210220032802c40221050b0240200f450d00200b10200b200a450d002008450d00200a10200b20032802e404450d1620032802e00410200c160b200341086a41086a220242003703002003420037030841d283c7004129200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220541ffff0371201141ffff0371220a4d0d00419f87c6002105412621020c010b024020032f01c402410020021b20056a41ffff0371200a4f0d0041c587c6002105412521020c010b200341003602c802200342083703c0022013200341c0026a109f050240024020032802c8022218450d0020032802c4022119201841f8006c210520032802c0022216210203402005450d02200241d4006a210a200241d5006a2108200541887f6a2105200241f8006a210220082d0000200a2d000072450d000b201841f8006c2105201641c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b419085c6002105413521022019450d02201610200c020b418388c600412241a888c6001028000b1079210a10a902211a200341c0026a41186a200341a0026a41186a290300370300200341c0026a41106a200341a0026a41106a290300370300200341c0026a41086a200341a0026a41086a290300370300200320032903a0023703c0022011417f4c0d0f02400240024002400240024002400240024002400240024020110d00410121020c010b2011101e2202450d010b2002200f201110cd052104200341e0046a41086a200341c0026a41086a290300370300200341e0046a41106a200341c0026a41106a290300370300200341e0046a41186a200341c0026a41186a290300370300200320032903c0023703e0042012417f4c0d19410121024101210502402012450d002012101e2205450d020b20052010201210cd052105200341f0016a41186a2208200341e0046a41186a290300370300200341f0016a41106a220e200341e0046a41106a290300370300200341f0016a41086a2217200341e0046a41086a290300370300200320032903e0043703f00102402011450d002011101e2202450d030b20022004201110cd052102200341a8036a2012360200200341a4036a2012360200200341c0026a41206a2002360200200341c0026a41186a200a360200200341ec026a20032903f001370200200341f4026a2017290300370200200341fc026a200e29030037020020034184036a2008290300370200200341e4026a2011ad221b422086201b84370200200320053602a0032003200d3703c002200320063602ac03200320133703c8022003201a3703d0022003201d3602b4032003201c3602b00320034198036a2009360200200341c0036a20034180046a41086a290300370300200341c8036a20034180046a41106a290300370300200341d0036a20034180046a41186a290300370300200320143703900320032003290380043703b8034110101e2202450d03200241086a410029009787463700002002410029008f874637000020024110412010222202450d042002200c370010200341a0046a41186a22054200370300200341a0046a41106a220a4200370300200341a0046a41086a22084200370300200342003703a00420024118200341a0046a1001200341306a41186a2005290300370300200341306a41106a200a290300370300200341306a41086a2008290300370300200320032903a00437033020021020200341203602542003200341306a360250200341c0026a200341d0006a109905024020032802a403450d0020032802a00310200b024020032802e0022202450d0020032802e402450d00200210200b4112101e2202450d05200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d0620022013370012200341a0046a41186a22054200370300200341a0046a41106a220a4200370300200341a0046a41086a22084200370300200342003703a0042002411a200341a0046a1001200341306a41186a2005290300370300200341306a41106a200a290300370300200341306a41086a2008290300370300200320032903a00437033020021020200341003602c002200341306a4120200341c0026a1003211d20032802c0022221417f460d08201d450d082003202136020c2003201d360208200341c0026a200341086a10970520032903d80222134202510d07200341a0046a41086a200341e8026a290300370300200320032903e0023703a004200341f0026a2802002105200341f8026a280200210820034180036a280200211220034188036a280200210620034190036a280200212220032802d402211720032802d002210220032903c802211420032903c002210d20032802f402210a20032802fc02210e2003280284032109200328028c03211e20032f019403211c200341e8006a200341ae036a290100370300200341e0006a200341a6036a290100370300200341d0006a41086a2003419e036a290100370300200320032901960337035020032f01b60321152021450d09201d10200c090b20114101102d000b20124101102d000b20114101102d000b41104101102d000b41204101102d000b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b420221130b20034180056a41086a221d200341a0046a41086a290300370300200341086a41086a2221200341d0006a41086a290300370300200341086a41106a2223200341d0006a41106a290300370300200341086a41186a2224200341d0006a41186a290300370300200320032903a00437038005200320032903503703080240024020134202520d0042002114200341f0016a41186a4200370300200341f0016a41106a4200370300200341f0016a41086a4200370300200342003703f001417f211d4100210a41012105410021084101210e41002112410021094100211c4100210641012121410021024200210d420021130c010b200341e8036a41086a201d290300370300200341f0016a41086a2021290300370300200341f0016a41106a2023290300370300200341f0016a41186a202429030037030020032003290380053703e803200320032903083703f001202241016a2121201e417f6a211d0b200341e8026a200341e8036a41086a29030037030020034190036a202136020020034188036a200636020020034184036a200936020020034180036a2012360200200341fc026a200e360200200341f8026a2008360200200341f4026a200a360200200341f0026a2005360200200320133703d802200320173602d402200320023602d002200320143703c8022003200d3703c002200320032903e8033703e0022003201c3b0194032003201d36028c03200341ae036a20034188026a290300370100200341a6036a20034180026a2903003701002003419e036a200341f0016a41086a290300370100200320153b01b603200320032903f00137019603200341d0006a200341c0026a108c05200341306a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b200341d0026a200c370300200341c8026a41033a00002003410e3a00c002201841f8006c2105201641c0006a2102200341c0026a107703400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b02402019450d00201610200b0240200b450d00201010200b41002105024041000d002011450d00200410200b2007450d0d200f10200c150b0240200b450d00201010200b2004450d00200e450d00200410200b2007450d13200f10200c130b200341086a41086a2202420037030020034200370308419f83c700411b200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220541ffff0371201141ffff037122044d0d0041c086c6002105411721020c010b024020032f01c402410020021b20056a41ffff037120044f0d0041d786c6002105411621020c010b20032802382102200341086a41086a220542003703002003420037030841ba83c7004118200341086a1000200341e8036a41086a2005290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622051b220441ffff0371200241ffff037122024d0d0041ed86c6002105411421020c010b024020032f01c402410020051b20046a41ffff037120024f0d00418187c6002105410e21020c010b024002400240024002404112101e2202450d00200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d012002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22074200370300200342003703a0042002411a200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a2007290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003210220032802c0022205417f460d032002450d032003200536025420032002360250200341c0026a200341d0006a10970520032903d8024202510d0220034190036a280200210720034180036a2802002118200341f0026a280200211e200328028c03210420032802fc02212120032802f402211602402005450d00200210200b200441016a21100c040b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b4101212141002118410021164101211e41002107410121100b42002113200341086a41086a220242003703002003420037030841bd82c7004112200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341003602c002200341e8036a4110200341c0026a1003210202400240024002400240024002400240024002400240024020032802c0022205417f460d002002450d0020054108490d0120022900002113200210200b2011417f4c0d17410121024101210502402011450d002011101e2205450d020b2005200f201110cd0521041079210510a902210d200341e0046a41186a221220034180046a41186a290300370300200341e0046a41106a220920034180046a41106a290300370300200341e0046a41086a220620034180046a41086a29030037030020032003290380043703e00402402011450d002011101e2202450d030b20022004201110cd052102200341a8036a2011360200200341a4036a2011360200200341c0026a41206a410036020020034198036a2005360200200341c0036a2006290300370300200341c8036a2009290300370300200341d0036a2012290300370300200320023602a003200320133703c0022003201020076a3602ac032003200c3703c802200342003703b0032003200d37039003200320032903e0043703b8034110101e2202450d03200241086a410029009787463700002002410029008f874637000020024110412010222202450d0420022013370010200341a0046a41186a22054200370300200341a0046a41106a22074200370300200341a0046a41086a22104200370300200342003703a00420024118200341a0046a1001200341086a41186a2005290300370300200341086a41106a2007290300370300200341086a41086a2010290300370300200320032903a00437030820021020200341203602542003200341086a360250200341c0026a200341d0006a109905024020032802a403450d0020032802a00310200b024020032802e0022202450d0020032802e402450d00200210200b4200210d200341086a41086a220242003703002003420037030841bd82c7004112200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341003602c002200341e8036a4110200341c0026a10032102024020032802c0022205417f460d002002450d0020054108490d062002290000210d200210200b200341086a41086a220242003703002003420037030841bd82c7004112200341086a1000200341e8036a41086a2002290300370300200320032903083703e8032003200d42017c3703c002200341e8036a4110200341c0026a410810054112101e2202450d06200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d072002200c370012200341a0046a41186a22054200370300200341a0046a41106a22074200370300200341a0046a41086a22104200370300200342003703a0042002411a200341a0046a1001200341086a41186a2005290300370300200341086a41106a2007290300370300200341086a41086a2010290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003211d20032802c0022215417f460d09201d450d09200320153602a4042003201d3602a004200341c0026a200341a0046a10970520032903d802220c4202510d08200341a0026a41086a200341e8026a290300370300200341ee006a200341ae036a290100370100200341e8006a200341a8036a290300370300200341e0006a200341a0036a290300370300200341d0006a41086a20034198036a290300370300200320032903e0023703a002200320034190036a290300370350200341f0026a2802002105200341f8026a280200211020034180036a280200210920034188036a280200211c20032802d402211920032802d002210220032903c802211420032903c002210d20032802f402210720032802fc0221122003280284032106200328028c03212220032f01b60321172015450d0a201d10200c0a0b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b20114101102d000b20114101102d000b41104101102d000b41204101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b4202210c0b20034180056a41086a221d200341a0026a41086a290300370300200341c0026a41086a2215200341d0006a41086a290300370300200341c0026a41106a2223200341d0006a41106a290300370300200341c0026a41186a2224200341d0006a41186a290300370300200341c0026a411e6a2225200341d0006a411e6a290100370100200320032903a00237038005200320032903503703c00202400240200c4202520d0042002114200341a0046a411e6a4200370100200341a0046a41186a4200370300200341a0046a41106a4200370300200341a0046a41086a4200370300200342003703a0044100210741012105410021104101211241002109410021064100211c4101211d410021024200210d4200210c0c010b200341e8036a41086a201d290300370300200341a0046a41086a2015290300370300200341a0046a41106a2023290300370300200341a0046a41186a2024290300370300200341a0046a411e6a202529010037010020032003290380053703e803200320032903c0023703a004202241016a211d0b200341e8026a200341e8036a41086a29030037030020034188036a201c36020020034184036a200636020020034180036a2009360200200341fc026a2012360200200341f8026a2010360200200341f4026a2007360200200341f0026a20053602002003200c3703d802200320193602d402200320023602d002200320143703c8022003200d3703c002200320032903e8033703e0022003201d36028c0320034190036a20032903a00437030020034198036a200341a0046a41086a290300370300200341a0036a200341b0046a290300370300200341a8036a200341b8046a290300370300200341ae036a200341be046a290100370100200320173b01b603200341d0006a200341c0026a108c05200341086a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b02402016450d00201e10200b02402018450d00202110200b200341c0026a2013200341306a20034180046a109e050240200341a8036a280200450d0020032802a40310200b0240200341e0026a2802002202450d0020032802e402450d00200210200b20032802b00321070240200341b8036a2802002202450d0020024105742105200741106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b0240200341b4036a280200450d00200710200b200341d0026a2013370300200341c8026a41023a00002003410e3a00c002200341c0026a107702402011450d00200410200b02402008450d00200841f8006c2105200b41c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b0240200e450d00200b10200b02402003280234450d00200328023010200b41002105200a450d0a200f10200c120b02402008450d00200841f8006c2107200b41c0006a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441f8006a2104200741887f6a22070d000b0b200e450d00200b10200b02402003280234450d00200328023010200b200a450d10200f10200c100b024002400240024002404112101e2202450d00200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d012002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22074200370300200342003703a0042002411a200341a0046a1001200341f0016a41186a2005290300370300200341f0016a41106a2004290300370300200341f0016a41086a2007290300370300200320032903a0043703f00120021020200341003602c002200341f0016a4120200341c0026a1003210620032802c0022221417f460d032006450d0320032021360284042003200636028004200341c0026a20034180046a10970520032903d80222134202510d02200341a0046a41086a200341e8026a290300370300200341e8036a41086a20034190036a280200360200200320032903e0023703a004200320034188036a2903003703e803200341f0026a280200210f200341f4026a280200210a200341f8026a280200210720034180036a280200210520032802d402211920032802d002211120032903c802210d20032903c002211420032802fc0221042003280284032102200341d0006a41086a2003419e036a290100370300200341e0006a200341a6036a290100370300200341e8006a200341ae036a290100370300200320032901960337035020032d009503210820032d009403210b20032f01b60321182021450d04200610200c040b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b420221130b200341c0026a41086a2206200341a0046a41086a290300370300200341a0026a41086a2221200341e8036a41086a280200360200200341306a41086a221e200341d0006a41086a290300370300200341306a41106a2222200341d0006a41106a290300370300200341306a41186a2223200341d0006a41186a290300370300200320032903a0043703c002200320032903e8033703a002200320032903503703300240024020134202520d004200210d200341086a41186a4200370300200341086a41106a4200370300200341086a41086a42003703004100210220034180056a41086a41003602002003420037030820034200370380054101210441002105410021074100210a4101210f410021084100210b4100211142002114420021130c010b20034180046a41086a200629030037030020034180056a41086a2021280200360200200341086a41086a201e290300370300200341086a41106a2022290300370300200341086a41186a2023290300370300200320032903c00237038004200320032903a00237038005200320032903303703080b200341e8026a20034180046a41086a29030037030020034180036a2005360200200341f8026a2007360200200341f4026a200a360200200341f0026a200f360200200320133703d802200320193602d402200320113602d0022003200d3703c802200320143703c00220032003290380043703e0022003200236028403200320043602fc0220034188036a20032903800537030020034190036a20034180056a41086a28020036020020032008200e410171200e41ff01714102461b3a0095032003200b2010410171201041ff01714102461b3a009403200341ae036a200341206a290300370100200341a6036a200341186a2903003701002003419e036a200341086a41086a2903003701002003200329030837019603200320183b01b603200341d0006a200341c0026a108c05200341f0016a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b200341d0026a200c370300200341ca026a20103a0000200341c9026a200e3a0000200341c8026a41013a00002003410e3a00c002200341c0026a107702402009450d00201d10200b02402012450d00201c10200b02402017450d00201741f8006c2105201641c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b2015450d00201610200b410021050c0e0b02402017450d00201741f8006c2107201641c0006a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441f8006a2104200741887f6a22070d000b0b2015450d0d201610200c0d0b41352102419085c6002105200e450d010b200e41f8006c210f201041c0006a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441f8006a2104200f41887f6a220f0d000b0b2011450d09201010200c090b024002400240024002404112101e2202450d00200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d012002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a220f4200370300200342003703a0042002411a200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a200f290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003211820032802c0022217417f460d032018450d03200320173602a404200320183602a004200341c0026a200341a0046a10970520032903d80222134202510d02200341a0026a41086a200341c0026a41286a290300370300200341d0006a41086a20034194036a290200370300200341e0006a2003419c036a290200370300200341e8006a200341a4036a290200370300200341f0006a200341ac036a290200370300200341d0006a41286a200341b4036a2f01003b0100200320032903e0023703a0022003200329028c03370350200341f0026a280200211c200341f4026a2802002112200341f8026a280200210f20034180036a280200210520034188036a280200211520032802d402211920032802d002211d20032903c802210d20032903c002211420032802fc022104200328028403210220032f01b60321162017450d04201810200c040b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b420221130b20034180046a41086a2218200341a0026a41086a290300370300200341c0026a41086a2217200341d0006a41086a290300370300200341c0026a41106a2221200341d0006a41106a290300370300200341c0026a41186a221e200341d0006a41186a290300370300200341c0026a41206a2222200341d0006a41206a290300370300200341c0026a41286a2223200341d0006a41286a2f01003b0100200320032903a00237038004200320032903503703c0020240024020134202520d0041002102200341a0046a41286a41003b01004200210d200341a0046a41206a4200370300200341a0046a41186a4200370300200341a0046a41106a4200370300200341a0046a41086a4200370300200342003703a00441012104410021054100210f410021124101211c410121184100211d42002114420021130c010b20034180056a41086a2018290300370300200341a0046a41086a2017290300370300200341a0046a41106a2021290300370300200341a0046a41186a201e290300370300200341a0046a41206a2022290300370300200341a0046a41286a20232f01003b0100200320032903800437038005200320032903c0023703a004201541016a21180b200341c0026a41286a20034180056a41086a29030037030020034188036a201836020020034180036a2005360200200341f8026a200f360200200341f4026a2012360200200341f0026a201c360200200320133703d802200320193602d4022003201d3602d0022003200d3703c802200320143703c00220032003290380053703e0022003200236028403200320043602fc0220034194036a200341a0046a41086a2903003702002003419c036a200341b0046a290300370200200341a4036a200341b8046a290300370200200341ac036a200341a0046a41206a290300370200200341b4036a200341a0046a41286a2f01003b0100200320032903a00437028c03200320163b01b603200341d0006a200341c0026a108c05200341086a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b0240200e450d00200e41f8006c2105201041c0006a21022010280248210403400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b42012114200341086a21052011450d01201010200c010b41e988c700412b418085c6001028000b42002113200341086a41086a220242003703002003420037030841a982c7004114200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341003602c002200341e8036a4110200341c0026a10032102024020032802c002220f417f460d002002450d00200f4108490d0220022900002113200210200b2009417f4c0d020240024020090d00410121020c010b2009101e2202450d040b2002200b200910cd0521022006417f4c0d020240024020060d004101210f0c010b2006101e220f450d050b200f2008200610cd05210f1079210e10a902210d20034184036a200636020020034180036a2006360200200341f8026a2009360200200341f4026a2009360200200341e8026a2004360200200341e0026a200c370300200341c0026a41106a200e3602002003418e036a42003701002003419e036a200341e0046a41086a290300370100200341a6036a200341e0046a41106a290300370100200341ae036a200341f8046a29030037010020034200370388032003200f3602fc02200320023602f002200320143703d8022003200d3703c802200320133703c002200320032903e004370196034112101e2202450d05200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d0620022013370012200341a0046a41186a22044200370300200341a0046a41106a220f4200370300200341a0046a41086a220e4200370300200342003703a0042002411a200341a0046a1001200341086a41186a2004290300370300200341086a41106a200f290300370300200341086a41086a200e290300370300200320032903a00437030820021020200341d0006a200341c0026a108c0520054120200328025022022003280258100502402003280254450d00200210200b024020032802f402450d0020032802f00210200b0240200328028003450d0020032802fc0210200b200341086a41086a220242003703002003420037030841a982c7004114200341086a1000200341e8036a41086a2002290300370300200320032903083703e8032003201342017c3703c002200341e8036a4110200341c0026a41081005200341c0026a41106a201337030041002105200341c0026a41086a41003a00002003410e3a00c002200341c0026a107702402007450d00200810200b200a450d00200b10200b0c070b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b102c000b20094101102d000b20064101102d000b41124101102d000b41244101102d000b02402007450d00200810200b200a450d00200b10200b024020012d0000417f6a4108490d00200141086a280200450d00200141046a28020010200b200020023602042000200536020020034190056a24000bed8801040b7f017e067f047e230041a0076b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e0a00010203040506070f10000b200341f4056a4101360200200342013702e40520034184e6c6003602e005200341043602f4022003418cb4c6003602f0022003200341f0026a3602f005200341e0056a4180cec6001033000b200141246a2802002104200141206a28020021052001411c6a2802002106200141186a2802002107200141146a2802002108200141106a28020021092001410c6a280200210a200141086a280200210b4104210c200141046a280200210d200141286a290300210e200241046a280000210f20022d0000211020034198076a41026a2211200241036a2d00003a0000200341f0026a41086a2212200241106a290000370300200341f0026a41106a2213200241186a290000370300200341f0026a41186a2214200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341d0026a41026a20112d00003a0000200341e0056a41086a2012290300370300200341e0056a41106a2013290300370300200341e0056a41186a20142d00003a0000200320032f0198073b01d002200320032903f0023703e00541002102200f210c0b200341f4006a41026a200341d0026a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f01d0023b0174200320032903e0053703a8040240024020020d00200341a7016a200341a8046a41086a290300370000200341af016a200341a8046a41106a290300370000200341b7016a200341c0046a2d00003a0000200320032f01743b0198012003200c36009b01200320032903a80437009f012003200341f6006a2d00003a009a01200341f8006a41086a220242003703002003420037037841f1ccc6004120200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341003602e005200341d0006a4110200341e0056a1003210220032802e0052210417f460d012002450d010240024002402010450d0020022d0000220f41014b0d0041002110200f0e020201020b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b410121100b2002102020104102460d0120100d014117211041d1cfc600210f0c2e0b419affc600210f410f2110024002400240024002400240200c0e0700010203040533000b20032802a804210f20032802ac0421100c320b418cffc600210f410e21100c310b4180ffc600210f410c21100c300b41f7fec600210f410921100c2f0b41e4fec600210f411321100c2e0b41d3fec600210f411121100c2d0b200341f8006a41086a220242003703002003420037037841cdcec6004124200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341003602e005200341d0006a4110200341e0056a100321020240024020032802e0052210417f460d002002450d00200320103602f402200320023602f002200341e0056a200341f0026a10ec0120032802e005220c450d1120032902e40521152010450d01200210200c010b4108101e220c450d11200c420037030042818080801021150b2015422088a74103742102200c2110024002400340024020020d0041b9cfc600210f411821100c020b200241786a210220102903002116201041086a21102016200e520d000b4122101e2202450d13200241206a41002f0091cf463b0000200241186a4100290089cf46370000200241106a4100290081cf46370000200241086a41002900f9ce46370000200241002900f1ce463700002002412241c40010222202450d142002200e370022200341e0056a41186a22104200370300200341e0056a41106a220f4200370300200341e0056a41086a22114200370300200342003703e0052002412a200341e0056a1001200341f8006a41186a2010290300370300200341f8006a41106a200f290300370300200341f8006a41086a2011290300370300200320032903e00537037820021020200341003602e005200341f8006a4120200341e0056a10032102024020032802e0052210417f460d002002450d00200320023602f002200320103602f402024020104110490d002003201041706a3602f4022003200241106a3602f002200241086a290000211620022900002117200341e0056a200341f0026a10b70120032802e00522120d030b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b4193cfc600210f412621100b2015a7450d2d200c10200c2d0b20032802e40521112002102020174220882016422086842118201642208821162017a7210202402015a7450d00200c10200b0240024020034198016a20184220862002ad8422152016422086201842208884221610df03450d00200341f0026a41206a20043602002003418c036a200536020020034184036a2007360200200341f0026a41106a2008360200200341f0026a41086a200a3602002003200636028803200320093602fc022003200b3602f4022003200d3602f002200341e0056a200341f0026a10b30520032802e0054101470d01200341e0056a41086a280200211020032802e405210f0c2c0b41a9cec600210f41242110410121020c2c0b200341a8046a41206a200341e0056a410472220241206a280200360200200341a8046a41186a200241186a290200370300200341a8046a41106a200241106a290200370300200341a8046a41086a200241086a290200370300200320022902003703a8044112101e2202450d13200241106a41002f00f8cf463b0000200241086a41002900f0cf46370000200241002900e8cf4637000020034292808080a0023702f402200320023602f00220032802a8042113200320032802b00422103602e005200341e0056a200341f0026a1063024020032802f402220c20032802f802220f6b2010490d0020032802f00221020c290b200f20106a2202200f490d19200c41017422142002201420024b1b22144100480d1902400240200c0d002014101e21020c010b20032802f002200c2014102221020b02402002450d00200320143602f402200320023602f0022014210c0c290b20144101102d000b200141106a2903002116200341d0006a41086a2001410c6a2802003602004104210c2003200141046a290200370350200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f0c280b419affc600210f024002400240024002400240200c0e070001020304052d000b200328007f210f20032800830121100c2c0b418cffc600210f410e21100c2b0b4180ffc600210f410c21100c2a0b41f7fec600210f410921100c290b41e4fec600210f411321100c280b41d3fec600210f411121100c270b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d2441facfc600210f413421100c250b200141106a2903002116200341d0006a41086a2001410c6a2802003602004104210c2003200141046a290200370350200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f0c240b419affc600210f024002400240024002400240200c0e0700010203040529000b200328007f210f20032800830121100c280b418cffc600210f410e21100c270b4180ffc600210f410c21100c260b41f7fec600210f410921100c250b41e4fec600210f411321100c240b41d3fec600210f411121100c230b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d2041aed0c600210f413021100c210b2001410c6a2802002111200141086a28020021064104210c200141046a2802002109200141106a2903002116200241046a280000210f20022d0000211020034198076a41026a220d200241036a2d00003a0000200341f0026a41086a2205200241106a290000370300200341f0026a41106a2208200241186a290000370300200341f0026a41186a220b200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a200d2d00003a0000200341e0056a41086a2005290300370300200341e0056a41106a2008290300370300200341e0056a41186a200b2d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f0c200b419affc600210f024002400240024002400240200c0e0700010203040525000b200328007f210f20032800830121100c240b418cffc600210f410e21100c230b4180ffc600210f410c21100c220b41f7fec600210f410921100c210b41e4fec600210f411321100c200b41d3fec600210f411121100c1f0b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d1c41ded0c600210f41302110410121020c1d0b200141246a2802002107200141206a28020021082001411c6a2802002109200141186a2802002104200141146a2802002105200141106a28020021062001410c6a280200210a200141086a280200210b4104210c200141046a280200210d200141286a2903002116200241046a280000210f20022d0000211020034198076a41026a2211200241036a2d00003a0000200341f0026a41086a2212200241106a290000370300200341f0026a41106a2213200241186a290000370300200341f0026a41186a2214200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a20112d00003a0000200341e0056a41086a2012290300370300200341e0056a41106a2013290300370300200341e0056a41186a20142d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f41012111410121024101210c0c1b0b419affc600210f0240024002400240024002400240200c0e0700010203040506000b200328007f210f20032800830121100c050b418cffc600210f410e21100c040b4180ffc600210f410c21100c030b41f7fec600210f410921100c020b41e4fec600210f411321100c010b41d3fec600210f411121100b41002102410121114100210c0c1b0b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d17418ed1c600210f412e211041012111410121024101210c0c180b200141286a2903002116200341d0006a41186a200141196a290000370300200341d0006a41106a200141116a290000370300200341d0006a41086a200141096a290000370300200320012900013703504104210c200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d0020034198016a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b019801200320032903f0023703e00541002102200f210c0b200341f4006a41026a20034198016a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f0198013b0174200320032903e0053703a8040240024020020d00200341df026a200341b0046a290300370000200341e7026a200341b8046a29030037000041182110200341ef026a200341a8046a41186a2d00003a0000200320032f01743b01d0022003200c3600d302200320032903a8043700d7022003200341f6006a2d00003a00d202200341e0056a201610a7032003290390064202520d0141c58cc600210f0c2a0b419affc600210f410f2110200c0e0702030405060729020b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a200341e5036a200341d0026a412010cf050d1520034185046a2210200341d0006a412010cf050d130240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c280b200141286a2903002116200341d0006a41186a200141196a290000370300200341d0006a41106a200141116a290000370300200341d0006a41086a200141096a290000370300200320012900013703504104210c200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d0020034198016a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b019801200320032903f0023703e00541002102200f210c0b200341f4006a41026a20034198016a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f0198013b0174200320032903e0053703a804024020020d00200341df026a200341b0046a290300370000200341e7026a200341b8046a29030037000041182110200341ef026a200341a8046a41186a2d00003a0000200320032f01743b01d0022003200c3600d302200320032903a8043700d7022003200341f6006a2d00003a00d202200341e0056a201610a7032003290390064202520d0741c58cc600210f0c280b419affc600210f410f2110200c0e0700010203040527000b20032802a804210f20032802ac0421100c260b418cffc600210f410e21100c250b4180ffc600210f410c21100c240b41f7fec600210f410921100c230b41e4fec600210f411321100c220b41d3fec600210f411121100c210b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a200341e5036a2210200341d0026a412010cf050d0a2010200341d0006a412010cf050d090240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c200b200341d0026a41186a200141196a290000370300200341d0026a41106a200141116a290000370300200341d0026a41086a200141096a290000370300200320012900013703d002200141246a2802002106200141286a28020021052001412c6a2802002104200141306a2802002109200141346a2802002108200141386a28020021072001413c6a280200210d200141c0006a280200210b200141c4006a280200210a4104210c200241046a280000210f20022d0000211020034198076a41026a2211200241036a2d00003a0000200341f0026a41086a2212200241106a290000370300200341f0026a41106a2213200241186a290000370300200341f0026a41186a2214200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341f8006a41026a20112d00003a0000200341e0056a41086a2012290300370300200341e0056a41106a2013290300370300200341e0056a41186a20142d00003a0000200320032f0198073b0178200320032903f0023703e00541002102200f210c0b200341d0006a41026a200341f8006a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f01783b0150200320032903e0053703a804024002400240024020020d0020034198016a410f6a200341a8046a41086a221029030037000020034198016a41176a200341a8046a41106a220f29030037000020034198016a411f6a200341a8046a41186a22112d00003a0000200320032f01503b0198012003200c36009b01200320032903a80437009f012003200341d0006a41026a2d00003a009a01200341f8006a41086a22024200370300200342003703784196d2c600411d200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341e0056a200341d0006a4110106920032d00e005210c200341f8006a41186a200341f9056a290000370300200341f8006a41106a200341f1056a2900003703002002200341e9056a290000370300200320032900e105370378200c4101460d01411e211041bfd2c600210f0c020b419affc600210f410f2110024002400240024002400240200c0e0700010203040507000b20032802a804210f20032802ac0421100c060b418cffc600210f410e21100c050b4180ffc600210f410c21100c040b41f7fec600210f410921100c030b41e4fec600210f411321100c020b41d3fec600210f411121100c010b200341f4006a41026a20032d007a22023a00002010200341f8006a410f6a290000370300200f200341f8006a41176a2900003703002011200341f8006a411f6a2d00003a0000200320032f0178220c3b01742003200329007f3703a804200328007b2112200320023a00e2052003200c3b01e005200320123600e305200341e0056a410f6a2010290300370000200341e0056a41176a200f290300370000200341e0056a411f6a20112d00003a0000200320032903a8043700e705024020034198016a200341e0056a412010cf05450d00410c211041b3d2c600210f0c010b200341f8006a41086a220242003703002003420037037841f1ccc6004120200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341003602e005200341d0006a4110200341e0056a1003210220032802e0052210417f460d012002450d010240024002402010450d0020022d0000220f41014b0d0041002110200f0e020201020b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b410121100b2002102020104102460d0120100d014117211041d1cfc600210f0b02402006450d002005450d00200610200b02402009450d002008450d00200910200b200d450d20200b450d20200d10200c200b200341f0026a41206a200a3602002003418c036a200b36020020034184036a2007360200200341f0026a41106a2008360200200341f0026a41086a20043602002003200d36028803200320093602fc02200320053602f402200320063602f002200341e0056a200341f0026a10b305024020032802e0054101470d00200341e0056a41086a280200211020032802e405210f0c200b200341a8046a41206a200341e0056a410472220241206a280200360200200341a8046a41186a200241186a290200370300200341a8046a41106a200241106a290200370300200341a8046a41086a200241086a290200370300200320022902003703a8044112101e2202450d06200241106a41002f00f8cf463b0000200241086a41002900f0cf46370000200241002900e8cf4637000020034292808080a0023702f402200320023602f00220032802a8042106200320032802b00422103602e005200341e0056a200341f0026a1063024020032802f402220c20032802f802220f6b2010490d0020032802f00221020c080b200f20106a2202200f490d0b200c41017422092002200920024b1b22094100480d0b02400240200c0d002009101e21020c010b20032802f002200c2009102221020b02402002450d00200320093602f402200320023602f0022009210c0c080b20094101102d000b200341f0026a41186a220c200141196a29000037030041112110200341f0026a41106a2206200141116a290000370300200341f0026a41086a2209200141096a290000370300200320012900013703f00241d3fec600210f20022d00000d1e200341e0056a41186a200c290300370300200341e0056a41106a2006290300370300200341e0056a41086a2009290300370300200320032903f0023703e005200341f8006a41086a22024200370300200342003703784196d2c600411d200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341103602ac042003200341d0006a3602a804200341e0056a200341a8046a1082034100210f0c1e0b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b41084108102d000b41224101102d000b41c4004101102d000b41124101102d000b41124101102d000b2003200f20106a22093602f8022002200f6a2006201010cd051a200341e0056a41186a22104200370300200341e0056a41106a220f4200370300200341e0056a41086a220d4200370300200342003703e00520022009200341e0056a1001200341f8006a41186a2010290300370300200341f8006a41106a200f290300370300200341f8006a41086a200d290300370300200320032903e0053703780240200c450d00200210200b0240200341f8006a412041e4fdc600410041001002417f460d00024020032802ac04450d00200610200b0240200341b8046a280200450d0020032802b40410200b4190cec600210f41192110200341c4046a280200450d1820032802c00410200c180b200341f9056a220220034198016a41186a290300370000200341f1056a221020034198016a41106a290300370000200341e9056a220f20034198016a41086a29030037000020032003290398013700e105200341013a00e005200341d0026a200341a8046a200341e0056a10b4052116200341e0056a41086a41003a0000200f20032903d0023700002010200341d0026a41086a2903003700002002200341d0026a41106a29030037000020034181066a200341d0026a41186a29030037000020034190066a20163703002003410d3a00e005200341e0056a1077024020032802ac04450d00200610200b0240200341a8046a41106a280200450d0020032802b40410200b200341c4046a280200450d1320032802c00410204100210f0c170b02400240024002404123101e2202450d00200241002900958e463700002002411f6a41002800b48e46360000200241186a41002900ad8e46370000200241106a41002900a58e46370000200241086a410029009d8e46370000200342a3808080b0043702ac04200320023602a8042010200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e40521172010450d03200210200c030b41234101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b42002117410821050b02402017422088a7220c450d0041002110200521024100210f0240024003400240024002402002290300220e2016510d0020100d01410021100c020b201041016a21100c010b200f20106b2206200c4f0d02200220104103746b220629030021152006200e370300200220153703000b200241086a2102200c200f41016a220f460d020c000b0b41b0d8c2002006200c102a000b2010417f6a200c4f0d00200c20106bad422086201742ffffffff0f838421170b0240024020050d00200341f8006a412010040c010b200341003602e805200342013703e00520032017422088a722023602a804200341a8046a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b2002410374210d410020032802e80522026b210f20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d06200641017422092010200920104b1b22094100480d060240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2017a7450d00200510200b0240024002400240024002404123101e2202450d00200241002900958e463700002002411f6a41002800b48e46360000200241186a41002900ad8e46370000200241106a41002900a58e46370000200241086a410029009d8e46370000200342a3808080b0043702ac04200320023602a804200341d0006a200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e405210e02402010450d00200210200b200320053602a8042003200e3702ac04200341a8046a2102200e422088a72210200ea72208470d040c030b41234101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b41002110200341003602b004200342083703a80441082105200341a8046a21020b200241046a28020022082010470d00201041016a220f2010490d042010410174220c200f200c200f4b1b220841ffffffff01712008470d042008410374220f4100480d040240024020100d00200f101e21100c010b20022802002010410374200f102221100b2010450d0120022010360200200241046a200836020020032802b004211020032802a80421050b200228020020104103746a20163703002003201041016a22023602b0040240024020050d00200341f8006a412010040c010b200341003602e805200342013703e005200320023602980120034198016a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b410020032802e80522026b210f201041037441086a210d20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d07200641017422092010200920104b1b22094100480d070240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2008450d00200510200b200341ed036a200341d0006a41086a290300220e370000200341f5036a200341e0006a2903002215370000200341fd036a200341e8006a29030022173700002003200329035022183700e503200341e0056a41086a41043a0000200341e9056a2018370000200341f1056a200e370000200341f9056a201537000020034181066a201737000020034190066a20163703002003410d3a00e005200341e0056a10770240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c170b200f4108102d000b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f50241ecd1c600210f412a21100c150b02400240024002404129101e2202450d00200241002900b88e46370000200241286a41002d00e08e463a0000200241206a41002900d88e46370000200241186a41002900d08e46370000200241106a41002900c88e46370000200241086a41002900c08e46370000200342a980808090053702ac04200320023602a8042010200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e40521172010450d03200210200c030b41294101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b42002117410821050b02402017422088a7220c450d0041002110200521024100210f0240024003400240024002402002290300220e2016510d0020100d01410021100c020b201041016a21100c010b200f20106b2206200c4f0d02200220104103746b220629030021152006200e370300200220153703000b200241086a2102200c200f41016a220f460d020c000b0b41b0d8c2002006200c102a000b2010417f6a200c4f0d00200c20106bad422086201742ffffffff0f838421170b0240024020050d00200341f8006a412010040c010b200341003602e805200342013703e00520032017422088a722023602a804200341a8046a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b2002410374210d410020032802e80522026b210f20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d04200641017422092010200920104b1b22094100480d040240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2017a7450d00200510200b0240024002400240024002404129101e2202450d00200241002900b88e46370000200241286a41002d00e08e463a0000200241206a41002900d88e46370000200241186a41002900d08e46370000200241106a41002900c88e46370000200241086a41002900c08e46370000200342a980808090053702ac04200320023602a804200341d0006a200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e405210e02402010450d00200210200b200320053602a8042003200e3702ac04200341a8046a2102200e422088a72210200ea72208470d040c030b41294101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b41002110200341003602b004200342083703a80441082105200341a8046a21020b200241046a28020022082010470d00201041016a220f2010490d022010410174220c200f200c200f4b1b220841ffffffff01712008470d022008410374220f4100480d020240024020100d00200f101e21100c010b20022802002010410374200f102221100b2010450d0120022010360200200241046a200836020020032802b004211020032802a80421050b200228020020104103746a20163703002003201041016a22023602b0040240024020050d00200341f8006a412010040c010b200341003602e805200342013703e005200320023602980120034198016a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b410020032802e80522026b210f201041037441086a210d20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d05200641017422092010200920104b1b22094100480d050240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2008450d00200510200b2003418d046a200341d0006a41086a220229030037000020034195046a200341e0006a22102903003700002003419d046a200341e8006a220f2903003700002003200329035037008504200341e0056a200341f0026a41b80110cd051a2016200341e0056a10a905200341e0056a41086a41053a0000200341e9056a2003290350370000200341f1056a2002290300370000200341f9056a201029030037000020034181066a200f29030037000020034190066a20163703002003410d3a00e005200341e0056a10774100210f0c150b200f4108102d000b1027000b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f50241bcd1c600210f413021100c120b410121024101210c02402006450d00200320043602e805200320053602e405200320063602e005200341c8006a2016200341e0056a10b50502402003280248220f0d0002402005450d00200610200b4100210c0c010b200328024c211002402005450d00200610200b4100210c41012111410121020c010b024002400240024002402009450d00200320073602e805200320083602e405200320093602e005200341c0006a2016200341e0056a10b6052003280240220f0d0102402008450d00200910200b410021020b200d0d01410021100c020b2003280244211002402008450d00200910200b41002102410121110c030b2003200a3602e8052003200b3602e4052003200d3602e005200341386a2016200341e0056a10b7052003280238220f0d01410121100b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020240200b450d00200d452010720d00200d10200b02402005450d002006450d00200c450d00200610200b4100210f024020080d000c130b024020090d000c130b024020020d000c130b200910200c120b200328023c2110410021110b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020b200c45210c20024521020b0240200b450d00200d450d002011450d00200d10200b02402005450d00200645200c720d00200610200b2008450d0e2009452002720d0e200910200c0e0b200320113602e805200320063602e405200320093602e005200341306a2016200341e0056a10b70502402003280230220f0d000240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c0e0b20032802342110410021020b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5022002450d0c0b2006450d0b200910200c0b0b200341286a2016200341d0006a10b50502402003280228220f0d000240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f024020032802540d000c0c0b200328025010200c0b0b200328022c21100b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020b2003280254450d08200328025010200c080b200341206a2016200341d0006a10b60502402003280220220f0d000240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f024020032802540d000c090b200328025010200c080b200328022421100b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020b2003280254450d05200328025010200c050b2003200f20106a22143602f8022002200f6a2013201010cd051a200341e0056a41186a22104200370300200341e0056a41106a220f4200370300200341e0056a41086a22044200370300200342003703e00520022014200341e0056a1001200341f8006a41186a2010290300370300200341f8006a41106a200f290300370300200341f8006a41086a2004290300370300200320032903e0053703780240200c450d00200210200b0240200341f8006a412041e4fdc600410041001002417f460d00024020032802ac04450d00201310200b0240200341b8046a280200450d0020032802b40410200b4190cec600210f41192110200341c4046a280200450d0220032802c00410200c020b200320034198016a2015201610e003200341e0056a41186a200341186a290300370300200320032903103703f0052003200341086a2903003703e805200320032903003703e0052003200341e0056a3602f002200341f0026a109402200341e0056a41086a2202200e370300200341003a00e00520034198016a200341a8046a200341e0056a10b4052116200241003a0000200341e9056a200329039801370000200341f1056a20034198016a41086a290300370000200341f9056a20034198016a41106a29030037000020034181066a20034198016a41186a29030037000020034190066a20163703002003410d3a00e005200341e0056a1077024020032802ac04450d00201310200b0240200341a8046a41106a280200450d0020032802b40410200b0240200341c4046a280200450d0020032802c00410200b2011450d00201210200b4100210f0c030b410021020b02402011450d00201210200b2002450d010b0240200d450d00200b450d00200d10200b02402009450d002008450d00200910200b2006450d002005450d00200610200b024020012d0000417f6a220241084d0d00200241074b0d0002400240024002400240024020020e080001020304060605000b0240200141046a2802002202450d00200141086a280200450d00200210200b0240200141106a2802002202450d00200141146a280200450d00200210200b2001411c6a2802002202450d05200141206a280200450d05200210200c050b200141086a280200450d04200141046a28020010200c040b200141086a280200450d03200141046a28020010200c030b200141086a280200450d02200141046a28020010200c020b0240200141046a2802002202450d00200141086a280200450d00200210200b0240200141106a2802002202450d00200141146a280200450d00200210200b2001411c6a2802002202450d01200141206a280200450d01200210200c010b0240200141246a2802002202450d00200141286a280200450d00200210200b0240200141306a2802002202450d00200141346a280200450d00200210200b2001413c6a2802002202450d00200141c0006a280200450d00200210200b200020103602042000200f360200200341a0076a24000be30502067f047e230041d0006b2202240002400240024002404114101e2203450d00200341002900ce8a45370000200341106a41002800de8a45360000200341086a41002900d68a4537000020024294808080c002370224200220033602202001200241206a10ca012002280228210320022802202104200241306a41186a22054200370300200241306a41106a22064200370300200241306a41086a220742003703002002420037033020042003200241306a1001200241186a2005290300370300200241106a2006290300370300200241086a20072903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302204417f460d022003450d0220044110490d01200341086a290000210820032900002109200310200c030b41144101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b42002109420021080b02400240024002404118101e2203450d00200341002900e28a45370000200341106a41002900f28a45370000200341086a41002900ea8a45370000200242988080808003370224200220033602202001200241206a10ca012002280228210320022802202101200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020012003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302201417f460d022003450d0220014110490d01200341086a290000210a2003290000210b200310200c030b41184101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b4200210b4200210a0b2000200b20097c22093703002000200a20087c2009200b54ad7c370308200241d0006a24000bbb0403027f027e047f230041106b2203240020034100360208200342013703002003200236020c2003410c6a20031063024002402002450d00200120024106746a210403402001411c6a200310ca01200141086a2903002105200129030021060240024020032802042207200328020822026b4110490d00200328020021070c010b200241106a22082002490d03200741017422022008200220084b1b22024100480d030240024020070d002002101e21070c010b200328020020072002102221070b02402007450d002003200236020420032007360200200328020821020c010b20024101102d000b200720026a22072005370008200720063700002003200241106a3602082001280210210220032001280218220736020c2003410c6a2003106302402007450d00200741306c21090340200241106a200310ca01200241086a2903002105200229030021060240024020032802042208200328020822076b4110490d00200328020021080c010b200741106a220a2007490d0520084101742207200a2007200a4b1b22074100480d050240024020080d002007101e21080c010b200328020020082007102221080b02402008450d002003200736020420032008360200200328020821070c010b20074101102d000b200241306a2102200820076a22082005370008200820063700002003200741106a360208200941506a22090d000b0b200141c0006a22012004470d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000f0b1027000bf77f05017f027e067f0a7e047f230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e12000102090a0b0c0d0e0f1011121314151617000b200341dc056a4101360200200342013702cc0520034184e6c6003602c805200341043602dc022003418cb4c6003602d8022003200341d8026a3602d805200341c8056a41c0f0c4001033000b200141106a2903002104200141086a290300210541042106200241046a280000210720022d0000210820034198046a41026a2209200241036a2d00003a0000200341c8056a41086a220a200241186a290000370300200341c8056a41106a220b200241206a2d00003a0000200320022f00013b0198042003200241106a2900003703c80541012101200241086a290000210c024020084101470d00200341f8046a41026a20092d00003a0000200341d8026a41086a200a290300370300200341d8026a41106a200b2d00003a0000200320032f0198043b01f804200320032903c8053703d80241002101200721060b2003419c026a41026a200341f8046a41026a2d00003a000020034188026a41086a200341d8026a41086a29030037030020034188026a41106a200341d8026a41106a2d00003a0000200320032f01f8043b019c02200320032903d802370388020240024020010d00200341b7056a20034188026a41086a290300370000200341bf056a20034198026a2d00003a0000200320032f019c023b01a0052003200c3700a705200320063600a30520032003290388023700af0520032003419e026a2d00003a00a205200341306a200341a0056a1089034182f1c4002101412721022003290330200341306a41086a29030084500d43200341a0056a10ff02450d43200341286a10e10420032802282106200341206a10e10420032802204103470d0141d0f0c4002101411421020c430b419affc6002101410f2102024020060e0700030405063843000b200c422088a72102200ca721010c420b41a9f1c400210141202102200641034b0d410240024020060e0401434300010b41e988c700412b41ccf1c4001028000b411f101e2201450d162001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f470d004200210c200341c8056a41086a22014200370300200342003703c80541dcf1c400411f200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321010240024020032802c8052202417f470d0042e400210d0c010b024020010d0042e400210d0c010b20024110490d19200141086a290000210c2001290000210d200110200b200d200556200c200456200c2004511b450d0041e4f0c4002101411e21020c420b200341d8026a41186a200341a0056a41186a290300370300200341d8026a41106a200341a0056a41106a290300370300200341d8026a41086a200341a0056a41086a290300370300200320032903a0053703d8024122101e2201450d18200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b200341c8056a200341a0026a10e204200341e0056a290300210e200341c8056a41206a290300210f41fbf1c40021010240200341d8026a200520032903d005420020032903c80542015122021b221020052010200554200341d8056a290300420020021b220c200454200c2004511b22061b220d7d22112004200c200420061b22127d2005200d54ad7d220410ea04450d00419df2c4002101200341d8026a20112004108a030d002003200341d8026a10d704200341186a290300211320032903102105200341086a2903002114200329030021154122101e2201450d1a200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210620034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042006200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f460d004122101e2201450d1c200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210620034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042006200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b4110101e2201450d1d20012010200d7d3700002001200c20127d2010200d54ad7d37000820014110412010222201450d1e2001200e420020021b370010200141186a200f420020021b370000200341a0026a4120200141201005200110200b411f101e2201450d1e2001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b200341a0026a412041e4fdc600410041001002417f470d3f200341c8056a41086a22014200370300200342003703c8054195dec400411a200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a1003210120032802c8052202417f460d202001450d20200320023602fc04200320013602f804200341c8056a200341f8046a10e30120032802c8052206450d1f20032902cc05210c02402002450d00200110200b200341c8056a41186a200341d8026a41186a290300370300200341c8056a41106a200341d8026a41106a290300370300200341c8056a41086a200341d8026a41086a290300370300200320032903d8023703c8050240200c422088a72202200ca72208460d00200341c8056a21010c3f0b200341c8056a210120082008470d3e0c3d0b412221020c410b200141306a2903002104200141286a2903002105200341c4016a41026a200141036a2d00003a0000200341e8016a41086a200141186a290000370300200341e8016a41106a200141206a2d00003a0000200320012f00013b01c4012003200141106a2900003703e80141042106200141046a2800002116200141086a290000210d200241046a280000210720022d0000210820034198046a41026a2209200241036a2d00003a0000200341c8056a41086a220a200241186a290000370300200341c8056a41106a220b200241206a2d00003a0000200320022f00013b0198042003200241106a2900003703c80541012101200241086a290000210c024020084101470d00200341a0056a41026a20092d00003a0000200341d8026a41086a200a290300370300200341d8026a41106a200b2d00003a0000200320032f0198043b01a005200320032903c8053703d80241002101200721060b200341d4026a41026a200341a0056a41026a2d00003a0000200341c0026a41086a200341d8026a41086a290300370300200341c0026a41106a200341d8026a41106a2d00003a0000200320032f01a0053b01d402200320032903d8023703c002024020010d002003418f056a200341c0026a41086a29030037000020034197056a200341d0026a2d00003a0000200320032f01d4023b01f8042003200c3700ff04200320063600fb04200320032903c002370087052003200341d6026a2d00003a00fa04200341d0006a200341f8046a10890341caf3c4002101412621022003290350200341d0006a41086a29030084500d41200341f8046a10ff02450d41200341c8006a10e10420032802482106200341c0006a10e10441d0f0c40021014114210220032802404103460d4141f0f3c4002101411c21022006417f6a220641024b0d4120060e03064105060b419affc6002101410f2102024020060e0700010203043641000b200c422088a72102200ca721010c400b418cffc6002101410e21020c3f0b4180ffc6002101410c21020c3e0b41f7fec6002101410921020c3d0b41e4fec6002101411321020c3c0b41e988c700412b41c0f2c4001028000b4200210c200341c8056a41086a22014200370300200342003703c80541d0f2c400411e200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321010240024020032802c8052202417f470d00420a21100c010b024020010d00420a21100c010b20024110490d1a200141086a290000210c20012900002110200110200b41b6f3c4002101411421022010200556200c200456200c2004511b0d3a200341a0056a41186a200341f8046a41186a290300370300200341a0056a41106a200341f8046a41106a290300370300200341a0056a41086a200341f8046a41086a290300370300200320032903f8043703a005200341e0036a41026a200341c4016a41026a22012d00003a0000200341f0036a41086a200341e8016a41086a2202290300370300200341f0036a41106a200341e8016a41106a22062d00003a0000200320032f01c4013b01e003200320032903e8013703f0032003200d3700cf05200320163600cb05200320012d00003a00ca05200320032f01c4013b01c805200341df056a2002290300370000200341e7056a20062d00003a0000200320032903e8013700d7054115101e2201450d1a200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702dc02200320013602d8022003200341d8026a36029804200341c8056a20034198046a10b90120032802d802210120032802e002210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042001200220034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802dc02450d0020032802d80210200b0240200341a0026a412041e4fdc600410041001002417f460d0041a2f3c4002101411421020c3b0b4122101e2201450d1b200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b200341c8056a200341a0026a10e204200341c8056a41106a290300210f20032903d00521150240200341a0056a2005200341c8056a41186a290300420020032903c80542015122061b221120052011200554200341c8056a41206a290300420020061b220c200454200c2004511b22011b22107d22122004200c200420011b220e7d2005201054ad7d220410ea040d0041fbf1c4002101412221020c3b0b0240200341a0056a20122004108a03450d004183f3c4002101411f21020c3b0b200341c8056a41086a22014200370300200342003703c80541afdec400411b200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a1003210120032802c8052202417f460d1d2001450d1d200320023602dc02200320013602d802200341c8056a200341d8026a10e30120032802c8052208450d1c20032902cc05210502402002450d00200110200b2005422088a721012005a721020c340b200341c8016a41186a200141196a290000370300200341c8016a41106a200141116a290000370300200341c8016a41086a200141096a290000370300200320012900013703c801200341e8016a41186a200141396a290000370300200341e8016a41106a200141316a290000370300200341e8016a41086a200141296a2900003703002003200141216a2900003703e801200141c4006a2802002109200141c8006a2802002107200141cc006a280200210a41042106200241046a280000210b20022d0000210820034198046a41026a2216200241036a2d00003a0000200341c8056a41086a2217200241186a290000370300200341c8056a41106a2218200241206a2d00003a0000200320022f00013b0198042003200241106a2900003703c80541012101200241086a290000210c024020084101470d00200341a0056a41026a20162d00003a0000200341d8026a41086a2017290300370300200341d8026a41106a20182d00003a0000200320032f0198043b01a005200320032903c8053703d80241002101200b21060b200341e0036a41026a200341a0056a41026a2d00003a0000200341f0036a41086a200341d8026a41086a290300370300200341f0036a41106a200341d8026a41106a2d00003a0000200320032f01a0053b01e003200320032903d8023703f0030240024020010d00200341d4026a41026a200341e0036a41026a2d00003a0000200341c0026a41086a200341f0036a41086a290300370300200341c0026a41106a200341f0036a41106a2d00003a0000200320032f01e0033b01d402200320032903f0033703c002200a41204d0d01410e21024181f5c40021010c340b419affc6002101410f210202400240024002400240024020060e0700010203040539000b200c422088a72102200ca721010c380b418cffc6002101410e21020c370b4180ffc6002101410c21020c360b41f7fec6002101410921020c350b41e4fec6002101411321020c340b41d3fec6002101411121020c330b200341e8006a10e10420032802682101200341e0006a10e104024020032802604103470d004114210241d0f0c40021010c330b02402001417e6a220141014d0d00411f2102418ff5c40021010c330b0240024020010e020100010b41e988c700412b418cf4c4001028000b2003419c026a41026a200341d4026a41026a2d00003a000020034188026a41086a200341c0026a41086a29030037030020034188026a41106a200341c0026a41106a2d00003a0000200320032f01d4023b019c02200320032903c00237038802200341f0036a41186a200341c8016a41186a290300370300200341f0036a41106a200341c8016a41106a290300370300200341f0036a41086a200341c8016a41086a290300370300200320032903c8013703f003200341f8046a41186a200341e8016a41186a290300370300200341f8046a41106a200341e8016a41106a290300370300200341f8046a41086a200341e8016a41086a290300370300200320032903e8013703f8044115101e2201450d1d200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702cc05200320013602c8052003200341c8056a3602d802200341f0036a200341d8026a10b90120032802c805210120032802d005210220034198046a41186a2208420037030020034198046a41106a220b420037030020034198046a41086a2216420037030020034200370398042001200220034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a200b290300370300200341a0026a41086a201629030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f470d00419cf4c4002101411421020c310b200341d8026a200341f0036a10eb04024020032d00b803450d0041b0f4c4002101411521020c310b200341df056a20034190026a290300370000200341c8056a411f6a20034198026a2d00003a0000200320032f019c023b01c8052003200c3700cf05200320063600cb0520032003290388023700d70520032003419e026a2d00003a00ca050240200341c8056a200341d8026a41206a412010cf05450d0041c5f4c4002101411a21020c310b411f101e2201450d1e2001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702cc05200320013602c805200341f8046a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2208420037030020034198046a41106a220b420037030020034198046a41086a2216420037030020034200370398042002200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a200b290300370300200341a0026a41086a201629030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f470d0041dff4c4002101412221020c310b02400240200a0d00410121010c010b200a101e2201450d200b20012009200a10cd05210b200341a0056a41186a200341f8046a41186a290300370300200341a0056a41106a200341f8046a41106a290300370300200341a0056a41086a200341f8046a41086a290300370300200320032903f8043703a005200341a0026a200341a0056a10de01024020032802a402220820032802a80222016b200a490d0020032802a00221020c300b2001200a6a22022001490d37200841017422162002201620024b1b22164100480d370240024020080d002016101e21020c010b20032802a00220082016102221020b02402002450d00200320163602a402200320023602a002201621080c300b20164101102d000b20022d00000d2d200141046a2802002101107920014f0d2c200341c8056a41086a22024200370300200342003703c80541a1dfc4004115200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341003a00c8054101101e2202450d1f200220032d00c8053a000020024101410510222202450d202002200136000120034198046a4110200241051005200210200c370b20022d00000d2c200141046a2802002101107920014f0d2b200341c8056a41086a22024200370300200342003703c80541a1dfc4004115200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341023a00c8054101101e2202450d20200220032d00c8053a000020024101410510222202450d212002200136000120034198046a4110200241051005200210200c360b20022d00000d2b200141046a2802002101107920014f0d2a200341c8056a41086a22024200370300200342003703c80541a1dfc4004115200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341013a00c8054101101e2202450d21200220032d00c8053a000020024101410510222202450d222002200136000120034198046a4110200241051005200210200c350b20022d00000d2a200141046a2802002101200341f0006a10e10420032802704103470d282001450d27200341c8056a41086a22024200370300200342003703c8054181dfc4004120200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c340b20022d00000d29200141046a2802002101200341f8006a10e10420032802784103470d272001450d26200341c8056a41086a22024200370300200342003703c80541aef5c400411c200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c330b20022d00000d28200141046a280200210120034180016a10e1042003280280014103470d262001450d25200341c8056a41086a22024200370300200342003703c80541caf5c400411f200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c320b20022d00000d27200141106a290300210c200141086a290300210420034188016a10e1042003280288014103470d25200341c8056a41086a22014200370300200342003703c80541dcf1c400411f200341c8056a100020034198046a41086a2001290300370300200320032903c805370398042003200c3703d005200320043703c80520034198046a4110200341c8056a411010050c310b20022d00000d26200141046a280200210120034190016a10e1042003280290014103470d24024020010d0041e0f6c4002101412021020c320b200341c8056a41086a22024200370300200342003703c80541e9f5c400411f200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c300b20022d00000d25200141046a280200210120034198016a10e1042003280298014103470d23024020010d004180f7c4002101411b21020c310b200341c8056a41086a22024200370300200342003703c805419ff0c400411e200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321020240024020032802c8052206417f470d00411421060c010b024020020d00411421060c010b20064104490d1e20022800002106200210200b0240200620014f0d00419bf7c4002101413021020c310b200341c8056a41086a22024200370300200342003703c8054184f0c400411b200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c2f0b20022d00000d24200141046a2802002101200341a0016a10e10420032802a0014103470d22200341c8056a41086a22024200370300200342003703c8054184f0c400411b200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321020240024020032802c8052206417f470d00410a21060c010b024020020d00410a21060c010b20064104490d1e20022800002106200210200b0240200620014d0d0041cbf7c4002101413021020c300b200341c8056a41086a22024200370300200342003703c805419ff0c400411e200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c2e0b20022d00000d23200141106a290300210c200141086a2903002104200341a8016a10e10420032802a8014103470d21200341c8056a41086a22014200370300200342003703c80541d0f2c400411e200341c8056a100020034198046a41086a2001290300370300200320032903c805370398042003200c3703d005200320043703c80520034198046a4110200341c8056a411010050c2d0b20022d00000d22200341b0016a10e104024020032802b0014103470d0041fbf7c4002101412421020c2e0b200341003602f001200342083703e801200341c8056a41086a22014200370300200342003703c80541afdec400411b200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a1003210120032802c8052202417f460d1d2001450d1d200320023602dc02200320013602d802200341c8056a200341d8026a10e30120032802c8052219450d1c20032902cc05210d2002450d1e200110200c1e0b20022d00000d21200341c8056a10f702200341b8016a200341c8056a10a50320032802bc01210220032802b80121010c2c0b20022d00000d2020012d00012101200341c8056a41086a22024200370300200342003703c80541aac2c4004119200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013a00c80520034198046a4110200341c8056a410110050c2a0b411f4101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41224101102d000b41224101102d000b41224101102d000b41104101102d000b41204101102d000b411f4101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b200341c8056a41186a200341d8026a41186a290300370300200341c8056a41106a200341d8026a41106a290300370300200341c8056a41086a200341d8026a41086a290300370300200320032903d8023703c8054100210841012106200341c8056a2101410021020c1c0b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41154101102d000b41224101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b410121084100210242002105410021010c160b41154101102d000b411f4101102d000b200a4101102d000b41014101102d000b41054101102d000b41014101102d000b41054101102d000b41014101102d000b41054101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b4200210d410121190b02400240200d422088a722010d00410021164108210a0c010b2001410574210b200341c8056a41e1006a21094108210a4100210641002108201921010240024002400340200141086a290000210c200141106a290000210420012900002105200341c8056a41186a200141186a290000370300200341c8056a41106a2004370300200341c8056a41086a200c370300200320053703c8054115101e2202450d01200241002900eef2443700002002410d6a41002900fbf244370000200241086a41002900f6f24437000020034295808080d0023702dc02200320023602d8022003200341d8026a36029804200341c8056a20034198046a10b90120032802d802210220032802e002210720034198046a41186a2216420037030020034198046a41106a2217420037030020034198046a41086a2218420037030020034200370398042002200720034198046a1001200341a0026a41186a2016290300370300200341a0026a41106a2017290300370300200341a0026a41086a201829030037030020032003290398043703a002024020032802dc02450d0020032802d80210200b200341003602c805200341a0026a4120200341c8056a100321160240024020032802c8052202417f470d00410221070c010b2003200236029c042003201636029804200341c8056a20034198046a10da0320032d00a80622074102460d03200341d8026a200341c8056a41e00010cd051a200341f8046a411f6a2009411f6a290000370000200341f8046a41186a200941186a290000370300200341f8046a41106a200941106a290000370300200341f8046a41086a200941086a290000370300200320092900003703f8042002450d00201610200b200341c8056a200341d8026a41e00010cd051a200341a0056a411f6a2202200341f8046a411f6a290000370000200341a0056a41186a2216200341f8046a41186a290300370300200341a0056a41106a2217200341f8046a41106a290300370300200341a0056a41086a2218200341f8046a41086a290300370300200320032903f8043703a0050240024020074102470d004100210720034198046a410041e00010cc051a0c010b20034198046a200341c8056a41e00010cd051a200341f0036a411f6a2002290000370000200341f0036a41186a2016290300370300200341f0036a41106a2017290300370300200341f0036a41086a2018290300370300200320032903a0053703f0030b02400240024020082006460d0020062116200821020c010b200641016a22022006490d13200641017422162002201620024b1b2216ad4288017e220c422088a70d13200ca722024100480d130240024020060d002002101e210a0c010b200a20064188016c20021022210a0b200a450d012003200a3602e80120062102201621060b200141206a2101200a20024188016c6a20034198046a41e00010cd05220220073a0060200241e1006a20032903f003370000200241e9006a200341f0036a41086a290300370000200241f1006a200341f0036a41106a290300370000200241f9006a200341f0036a41186a29030037000020024180016a200341f0036a411f6a290000370000200841016a2108200b41606a220b450d040c010b0b20024108102d000b41154101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b200320163602ec01200320083602f0010b0240200da7450d00201910200b200342003702dc02200341908cc5003602d802200341e8016a200341d8026a410010ec0420032802e002210720032802d80221010240024020032802dc0222060d00200121020c010b2006210820012102034020022802a80821022008417f6a22080d000b0340200120012f01064102746a41a8086a28020021012006417f6a22060d000b0b200341e4056a20012f0106360200200341e0056a4100360200200341dc056a2001360200200320073602e805200341003602d805200342003703d005200320023602cc05200341003602c805200341c8056a10ed042016450d0d200a10200c0d0b41cbf6c4002101411521020c0d0b41a7f6c4002101412421020c0c0b4188f6c4002101411f21020c0b0b41d3fec6002101411121020c0a0b200220016a200b200a10cd051a20032001200a6a22013602a80220034198046a41186a2216420037030020034198046a41106a2217420037030020034198046a41086a2218420037030020034200370398042002200120034198046a1001200341c8056a41186a2016290300370300200341c8056a41106a2017290300370300200341c8056a41086a201829030037030020032003290398043703c80541bdf1c1002101024020034198036a200341c8056a412010cf050d00200341b9036a20032903a005370000200341c1036a200341a0056a41086a290300370000200341c9036a200341a0056a41106a290300370000200341d1036a200341a0056a41186a290300370000200341013a00b803410021010b02402008450d00200210200b0240024020010d00200341c8056a200341d8026a41880110cd051a200341a0056a41186a200341f0036a41186a290300370300200341a0056a41106a200341f0036a41106a290300370300200341a0056a41086a200341f0036a41086a290300370300200320032903f0033703a0054115101e2201450d01200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702e403200320013602e0032003200341e0036a36029804200341a0056a20034198046a10b90120032802e003210120032802e803210220034198046a41186a2208420037030020034198046a41106a2216420037030020034198046a41086a2217420037030020034200370398042001200220034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2016290300370300200341a0026a41086a201729030037030020032003290398043703a002024020032802e403450d0020032802e00310200b2003412036029c042003200341a0026a36029804200341c8056a20034198046a10c1030240200a450d00200b10200b4100210102402007450d00200910200b0c030b410c2102200a450d01200b10200c010b41154101102d000b2007450d00200910200b20010d07200341d4056a200c370200200341c8056a41086a2006360200200341dc056a20032903c002370200200341ed056a20032903c801370000200341e4056a200341c0026a41086a290300370200200341ec056a200341c0026a41106a2d00003a0000200341f5056a200341c8016a41086a290300370000200341fd056a200341c8016a41106a29030037000020034185066a200341c8016a41186a2903003700002003410a3a00cc052003410a3a00c805200320032f01d4023b00cd052003200341d6026a2d00003a00cf05200341a5066a200341e8016a41186a2903003700002003419d066a200341e8016a41106a29030037000020034195066a200341e8016a41086a2903003700002003418d066a20032903e801370000200341c8056a10770c060b2007450d06200910200c060b200341b7026a200341f0036a41086a290300370000200341bf026a200341f0036a41106a2d00003a0000200320032f01e0033b01a0022003200d3700a702200320163600a302200320032903f0033700af022003200341e2036a2d00003a00a20202400240024020012002460d00200221070c010b024020022005a72207470d00200241016a22012002490d06200241017422072001200720014b1b220741ffffff3f712007470d06200741057422014100480d060240024020020d002001101e21080c010b200820024105742001102221080b2008450d0220054280808080708321050b2005422088a721010b200820014105746a220220032903a002370000200241186a200341a0026a41186a290300370000200241106a200341a0026a41106a290300370000200241086a200341a0026a41086a290300370000200341c8056a41086a22024200370300200342003703c80541afdec400411b200341c8056a100020034198046a41086a2002290300370300200320032903c805370398040240024020080d0020034198046a411010040c010b200341003602d005200342013703c8052003200141016a22023602d802200341d8026a200341c8056a106302402002450d00200141057441206a21022008210103402003200341c8056a3602d8022001200341d8026a10b901200141206a2101200241606a22020d000b0b20032802cc05210120034198046a411020032802c805220220032802d005100502402001450d00200210200b2007450d00200810200b2003419c026a41026a2201200341e0036a41026a22022d00003a000020034188026a41086a2208200341f0036a41086a220729030037030020034188026a41106a2209200341f0036a41106a220a2d00003a0000200320032f01e0033b019c02200320032903f0033703880220034180066a200341a0056a41186a290300370300200341f8056a200341a0056a41106a290300370300200341f0056a200341a0056a41086a2903003703002003418f066a200d3700002003418b066a2016360000200320032903a0053703e8052003418a066a20022d00003a0000200320032f01e0033b01880620034197066a20032903f0033700002003419f066a2007290300370000200341a7066a200a2d00003a0000200341c8056a41186a200e370300200320103703d805200320043703d005200320123703c805200341003a00a8062003200d3700df02200320163600db02200320012d00003a00da02200320032f019c023b01d802200341ef026a2008290300370000200341f7026a20092d00003a000020032003290388023700e702024002400240024002404115101e2201450d00200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702cc01200320013602c8012003200341c8016a36029804200341d8026a20034198046a10b90120032802c801210120032802d001210220034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042001200220034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc01450d0020032802c80110200b200341203602dc022003200341a0026a3602d802200341c8056a200341d8026a10c1034122101e2201450d01200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042002200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f460d004122101e2201450d03200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042002200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b4110101e2201450d0420012015420020061b3700002001200f420020061b37000820014110412010222201450d052001201120107d370010200141186a200c200e7d2011201054ad7d370000200341a0026a4120200141201005200110200b200341d5056a200341f8046a41086a290300370000200341dd056a200341f8046a41106a290300370000200341e5056a20034190056a290300370000200341ed056a20032f01c4013b0000200341ef056a200341c6016a2d00003a0000200341f4056a200d370200200341f0056a2016360200200341093a00cc052003410a3a00c805200320032903f8043700cd05200341fc056a20032903e80137020020034184066a200341e8016a41086a2903003702002003418c066a200341e8016a41106a2d00003a0000200341c8056a10770c0a0b41154101102d000b41224101102d000b41224101102d000b41104101102d000b41204101102d000b20014101102d000b200841016a22072008490d02200841017422092007200920074b1b220741ffffff3f712007470d02200741057422094100480d020240024020080d002009101e21060c010b200620084105742009102221060b2006450d08200721080b200641206a2006200241057410ce051a200641186a200141186a290000370000200641106a200141106a290000370000200641086a200141086a29000037000020062001290000370000200341c8056a41086a22014200370300200342003703c8054195dec400411a200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804024020060d0020034198046a411010040c010b200341003602d005200342013703c8052003200241016a22013602f804200341f8046a200341c8056a106302402001450d00200241057441206a21022006210103402001200341c8056a10ca01200141206a2101200241606a22020d000b0b20032802cc05210120034198046a411020032802c805220220032802d005100502402001450d00200210200b2008450d00200610200b200341c8056a41186a200341d8026a41186a290300370300200341c8056a41106a200341d8026a41106a290300370300200341c8056a41086a200341d8026a41086a290300370300200320032903d8023703c805411f101e2201450d032001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702fc04200320013602f804200341c8056a200341f8046a10ca01200328028005210120032802f804210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802fc04450d0020032802f80410200b4110101e2201450d042001201520117c220c3700002001201420047c200c201554ad7c37000820014110412010222201450d0520012005200d7c220c370010200141186a201320127c200c200554ad7c370000200341a0026a412020014120100520011020200341dd056a200341b0056a290300370000200341e5056a200341a0056a41186a290300370000200341083a00cc05200341d5056a200341a0056a41086a2903003700002003410a3a00c805200320032903a0053700cd05200341c8056a10770c010b1027000b410021010b2000200236020420002001360200200341d0066a24000f0b411f4101102d000b41104101102d000b41204101102d000b20094101102d000bfd0202057f027e230041d0006b2202240002400240024002404114101e2203450d00200341002900ce8a45370000200341106a41002800de8a45360000200341086a41002900d68a4537000020024294808080c002370224200220033602202001200241206a10ca012002280228210320022802202101200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020012003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302201417f460d022003450d0220014110490d01200341086a290000210720032900002108200310200c030b41144101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b42002108420021070b2000200837030020002007370308200241d0006a24000bd60602067f047e230041e0006b2203240002400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370234200320043602302000200341306a10ca012003280238210420032802302105200341c0006a41186a22064200370300200341c0006a41106a22074200370300200341c0006a41086a220842003703002003420037034020052004200341c0006a1001200341106a41186a2006290300370300200341106a41106a2007290300370300200341106a41086a20082903003703002003200329034037031002402003280234450d00200328023010200b20034100360240200341106a4120200341c0006a1003210420032802402205417f460d022004450d0220054110490d01200441086a29000021092004290000210a200410200c030b41144101102d000b41ceb8c4004133200341c0006a41fcbfc4004184b9c400102e000b4200210a420021090b41c6bec50021040240200a2001542205200920025420092002511b0d00200341086a20004104200a20017d220a200920027d2005ad7d2209109404200328020822040d0002400240024002404118101e2204450d00200441002900e28a45370000200441106a41002900f28a45370000200441086a41002900ea8a45370000200342988080808003370234200320043602302000200341306a10ca012003280238210420032802302105200341c0006a41186a22064200370300200341c0006a41106a22074200370300200341c0006a41086a220842003703002003420037034020052004200341c0006a1001200341106a41186a2006290300370300200341106a41106a2007290300370300200341106a41086a20082903003703002003200329034037031002402003280234450d00200328023010200b20034100360240200341106a4120200341c0006a1003210420032802402205417f460d022004450d0220054110490d01200441086a290000210b2004290000210c200410200c030b41184101102d000b41ceb8c4004133200341c0006a41fcbfc4004184b9c400102e000b4200210c4200210b0b2000200c20017c2201200b20027c2001200c54ad7c1094032000200a2009109303410021040b200341e0006a240020040bf20803037f027e037f230041106b22022400200241003602082002420137030020002802102103024002400240024002400240024002404104101e2204450d0020024284808080c0003702042002200436020020042003360000200041306a200210ca01200041086a2903002105200029030021060240024020022802042203200228020822046b4110490d00200228020021030c010b200441106a22072004490d06200341017422042007200420074b1b22044100480d060240024020030d002004101e21030c010b200228020020032004102221030b2003450d022002200436020420022003360200200228020821040b200320046a22032005370008200320063700002002200441106a3602082000280214210820022000411c6a280200220436020c2002410c6a200210630240024020022802042207200228020822036b2004490d00200228020021070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b200228020020072003102221070b2007450d032002200336020420022007360200200228020821030b2002200320046a360208200720036a2008200410cd051a200028022021082002200041286a280200220436020c2002410c6a200210630240024020022802042207200228020822036b2004490d00200228020021070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b200228020020072003102221070b2007450d042002200336020420022007360200200228020821030b2002200320046a360208200720036a2008200410cd051a2002200236020c200041d0006a2002410c6a10b901200028022c2107024020022802042203200228020822046b4104490d00200228020021030c050b200441046a22082004490d05200341017422042008200420084b1b22044100480d050240024020030d002004101e21030c010b200228020020032004102221030b02402003450d002002200436020420022003360200200228020821040c050b20044101102d000b41044101102d000b20044101102d000b20034101102d000b20034101102d000b2002200441046a360208200320046a200736000020002d0070220041054b0d02024002400240024002400240024020000e06000102030405000b410021040c050b410121040c040b410221040c030b410321040c020b410421040c010b410521040b200220043a000c0240200228020420022802082200460d00200228020021030c020b200041016a22032000490d00200041017422072003200720034b1b22074100480d000240024020000d002007101e21030c010b200228020020002007102221030b02402003450d002002200736020420022003360200200228020821000c020b20074101102d000b1027000b2002200041016a360208200320006a20043a00000b2002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bb60501047f230041a0026b220224000240024002404113101e2203450d002003410f6a4100280093fd41360000200341086a410029008cfd4137000020034100290084fd4137000020034113412610222203450d0120032001360013200241a0016a41186a22014200370300200241a0016a41106a22044200370300200241a0016a41086a22054200370300200242003703a00120034117200241a0016a100120024180016a41186a200129030037030020024180016a41106a200429030037030020024180016a41086a2005290300370300200220022903a0013703800120031020200241003602a00120024180016a4120200241a0016a100321010240024020022802a0012204417f470d00410621030c010b024020010d00410621030c010b2002200436029c022002200136029802200241a0016a20024198026a10b80320022d00900222034106460d03200241106a200241a0016a41f00010cd051a200220024194026a28000036000b20022002280091023602082004450d00200110200b200241a0016a200241106a41f00010cd051a2002200228000b36009b0220022002280208360298020240024020034106470d002000420037033020004200370300200042003703502000410036022c20004201370214200041c8006a4200370300200041c0006a4200370300200041386a4200370300200041086a4200370300200041106a4100360200200041246a42003702002000411c6a428080808010370200200041d8006a4200370300200041e0006a4200370300200041e8006a4200370300200041f0006a41003a00000c010b2000200241a0016a41f00010cd05220020033a00702000200228029802360071200041f4006a200228009b023600000b200241a0026a24000f0b41134101102d000b41264101102d000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000bc50101047f230041206b2201240010792102200141106a41086a22034200370300200142003703104197fdc1004116200141106a1000200141086a2003290300370300200120012903103703002001410036021020014110200141106a1003210302400240024020012802102204417f470d0041900121040c010b024020030d0041900121040c010b20044104490d0120032800002104200310200b200141206a24002002200420006a4f0f0b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000bcf0302067f047e230041d0006b2204240002400240024002404118101e2205450d00200541002900e28a45370000200541106a41002900f28a45370000200541086a41002900ea8a45370000200442988080808003370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210a2005290000210b200510200c030b41184101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210b4200210a0b2001200b2002200b200b200256200a200356200a2003511b22051b220c7d200a2003200a20051b220d7d200b200c54ad7d109403200041186a2003200d7d2002200c54ad7d37030020002002200c7d3703102000200d3703082000200c370300200441d0006a24000b920602067f057e230041d0006b2203240002400240024002404118101e2204450d00200441002900e28a45370000200441106a41002900f28a45370000200441086a41002900ea8a45370000200342988080808003370224200320043602202000200341206a10ca012003280228210420032802202105200341306a41186a22064200370300200341306a41106a22074200370300200341306a41086a220842003703002003420037033020052004200341306a1001200341186a2006290300370300200341106a2007290300370300200341086a20082903003703002003200329033037030002402003280224450d00200328022010200b2003410036023020034120200341306a1003210420032802302205417f460d022004450d0220054110490d01200441086a29000021092004290000210a200410200c030b41184101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b4200210a420021090b02400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370224200320043602202000200341206a10ca012003280228210420032802202105200341306a41186a22064200370300200341306a41106a22074200370300200341306a41086a220842003703002003420037033020052004200341306a1001200341186a2006290300370300200341106a2007290300370300200341086a20082903003703002003200329033037030002402003280224450d00200328022010200b2003410036023020034120200341306a1003210420032802302205417f460d022004450d0220054110490d01200441086a290000210b2004290000210c200410200c030b41144101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b4200210c4200210b0b2000200c2001200a200a200156200920025620092002511b22041b22017c220d200b2002200920041b22027c200d200c54ad7c1093032000200a20017d200920027d200a200154ad7d109403200341d0006a24000bdf1e05047f017e077f027e057f230041e0036b22022400200241f8016a41086a22034200370300200242003703f80141aefac100411b200241f8016a1000200241a8016a41086a2003290300370300200220022903f8013703a801200241003602e802200241a8016a4110200241e8026a100321030240024020022802e8022204417f460d002003450d00200220043602fc01200220033602f801200241e8026a200241f8016a10c101024020022802e8022205450d0020022902ec02210602402004450d00200310200b2006422088a721070c020b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b4100210741042105420021060b20052006422088a741027422046a21082006a721092005210a0240024002400240024002400240024002400240024002400240024003402004450d012004417c6a2104200a280200210b200a41046a2203210a200b2000460d000b4104101e220c450d02200c200b3602004101210b4101210d0240034020082003460d0120032802002104200341046a220a210320042000460d000240200d200b470d00200b41016a2203200b490d0d200b410174220d2003200d20034b1b220d41ffffffff0371200d470d0d200d41027422034100480d0d02400240200b0d002003101e210c0c010b200c200b41027420031022210c0b200c450d090b200c200b4102746a2004360200200b41016a210b200a21030c000b0b2009450d01200510200c010b4104210c4100210b02402009450d00200510200b4100210d0b0240200b2007460d00024002400240200141ff01710e060b0b010201000b0b200241e8026a2000108c03200241206a20024198036a20022903e802200241e8026a41086a290300108e03200241f8016a41186a200241206a41186a29030037030020022002290330370388022002200241206a41086a29030037038002200220022903203703f8012002200241f8016a3602d001200241d0016a1094020240200241e8026a41186a280200450d0020022802fc0210200b2002418c036a280200450d0a20022802880310200c0a0b200241e8026a2000108c03200241e8016a200241b0036a290300370300200241d0016a41106a200241a8036a290300370300200241d0016a41086a200241a0036a29030037030020022002290398033703d0014200210e200241f8016a41086a22034200370300200242003703f80141d6fcc1004116200241f8016a1000200241a8016a41086a2003290300370300200220022903f8013703a801200241003602f801200241a8016a4110200241f8016a100321030240024020022802f8012204417f470d00420a21060c010b024020030d00420a21060c010b20044110490d04200341086a290000210e20032900002106200310200b2002200241d0016a2006200e108e03200241f8016a41186a200241186a29030037030020022002290310370388022002200241086a29030037038002200220022903003703f8012002200241f8016a3602a801200241a8016a109402200241d0016a20022903e802220f20067d200241e8026a41086a290300200e7d200f200654ad7d108f030240200241e8026a41186a280200450d0020022802fc0210200b2002418c036a280200450d0920022802880310200c090b200241e8026a2000108c03200241d0016a41186a200241d0036a290300370300200241d0016a41106a200241c8036a290300370300200241d0016a41086a200241c0036a290300370300200220022903b8033703d0014118101e2203450d03200341002900ecfc41370000200341106a41002900fcfc41370000200341086a41002900f4fc413700002002429880808080033702ac01200220033602a8012002200241a8016a3602f801200241d0016a200241f8016a10b90120022802a801210320022802b0012104200241f8016a41186a220a4200370300200241f8016a41106a22084200370300200241f8016a41086a22054200370300200242003703f80120032004200241f8016a1001200241c0006a41186a200a290300370300200241c0006a41106a2008290300370300200241c0006a41086a2005290300370300200220022903f801370340024020022802ac01450d0020022802a80110200b200241003602f801200241c0006a4120200241f8016a1003210320022802f801220a417f460d062003450d062002200a3602d401200220033602d001200241f8016a200241d0016a10b70120022802f8012204450d0420022902fc012106200a450d07200310200c070b41aefcc1002103200d450d0b200c10200c0b0b41044104102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b41184101102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b20034104102d000b41012104420021060b200241b8036a210320024198036a20022903e802200241e8026a41086a290300108f0341fffbc000410520042006422088a7100502402006a7450d00200410200b200241a0026a200036020020024185026a200341086a2900003700002002418d026a200341106a29000037000020024195026a200341186a290000370000200241053a00fc01200241093a00f801200220032900003700fd01200241f8016a10770240200241e8026a41186a280200450d0020022802fc0210200b2002418c036a280200450d0020022802880310200b200241f8016a41086a22034200370300200242003703f80141aefac100411b200241f8016a1000200241a8016a41086a2003290300370300200220022903f8013703a801200241003602f002200242013703e8022002200b3602f801200241f8016a200241e8026a106302400240200b0d0020022802f002210520022802ec02210820022802e80221040c010b200b4102742107410020022802f00222036b210a20022802ec022108200c210b0340200b2802002109024002402008200a6a4104490d0020022802e80221040c010b200341046a22042003490d03200841017422052004200520044b1b22054100480d030240024020080d002005101e21040c010b20022802e80220082005102221040b02402004450d00200220053602ec02200220043602e802200521080c010b20054101102d000b200b41046a210b2002200341046a22053602f002200420036a2009360000200a417c6a210a200521032007417c6a22070d000b0b200241a8016a411020042005100502402008450d00200410200b0240200d450d00200c10200b0240024002404113101e2203450d002003410f6a4100280093fd41360000200341086a410029008cfd4137000020034100290084fd4137000020034113412610222203450d0120032000360013200241f8016a41186a22044200370300200241f8016a41106a220a4200370300200241f8016a41086a220b4200370300200242003703f80120034117200241f8016a1001200241e0006a41186a2004290300370300200241e0006a41106a200a290300370300200241e0006a41086a200b290300370300200220022903f80137036020031020200241003602e802200241e0006a4120200241e8026a1003210c20022802e8022210417f460d04200c450d04200220103602ac012002200c3602a801200241e8026a200241a8016a10b80320022d00d803220d4106460d02200241f8016a41086a200241a0036a290300370300200241f8016a41106a200241a8036a290300370300200241f8016a41186a200241b0036a29030037030020022002290398033703f801200241e8026a41086a290300210e20022903e802210620022802940321042002280290032108200228028c03210b200228028803210a2002280284032109200228028003210720022802fc02210520022802f8022103200241d0016a41186a200241d0036a290300370300200241d0016a41106a200241c8036a290300370300200241d0016a41086a200241c0036a290300370300200220022903b8033703d001200220022800d9033602c8012002200241dc036a2800003600cb012010450d05200c10200c050b41134101102d000b41264101102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b1027000b4106210d0b200241c0006a41086a220c200241f8016a41086a290300370300200241c0006a41106a2210200241f8016a41106a290300370300200241c0006a41186a2211200241f8016a41186a290300370300200241e8026a41086a2212200241d0016a41086a290300370300200241e8026a41106a2213200241d0016a41106a290300370300200241e8026a41186a2214200241d0016a41186a290300370300200220022903f801370340200220022903d0013703e802200220022802c8013602f001200220022800cb013600f30102400240200d4106470d0042002106200241a8016a41186a4200370300200241a8016a41106a4200370300200241a8016a41086a420037030020024188016a41086a420037030020024188016a41106a420037030020024188016a41186a4200370300200242003703a80120024200370388014100210b4101210a4100210841012105410021074100210941002104410021034200210e0c010b200241a8016a41186a2011290300370300200241a8016a41106a2010290300370300200241a8016a41086a200c29030037030020024188016a41086a201229030037030020024188016a41106a201329030037030020024188016a41186a2014290300370300200220022903403703a801200220022903e80237038801200220022802f00136028001200220022800f301360083010b20024190036a20083602002002418c036a200b36020020024184036a2009360200200241e8026a41186a2007360200200241a0036a200241a8016a41086a290300370300200241a8036a200241a8016a41106a290300370300200241b0036a200241a8016a41186a2903003703002002200e3703f002200220063703e80220022004360294032002200a36028803200220053602fc02200220033602f802200220022903a80137039803200241c0036a20024188016a41086a290300370300200241c8036a20024188016a41106a290300370300200241d0036a20024188016a41186a290300370300200241dc036a200228008301360000200220013a00d80320022002290388013703b80320022002280280013600d903200241203602fc012002200241e0006a3602f801200241e8026a200241f8016a108b03024020022d00d8034106460d000240200228028003450d0020022802fc0210200b200228028c03450d0020022802880310200b200241e8026a41086a2000360200200220013a00ed02200241023a00ec02200241093a00e802200241e8026a1077410021030b200241e0036a240020030bea1202067f047e23004180026b22032400200341086a41186a200041186a290000370300200341086a41106a200041106a290000370300200341086a41086a200041086a2900003703002003200029000037030802400240024002400240024002400240024002400240024002400240024002404119101e2204450d00200441186a41002d00e1fa413a0000200441106a41002900d9fa41370000200441086a41002900d1fa41370000200441002900c9fa4137000020044119413210222204450d0120042001360019200341d8016a41186a22054200370300200341d8016a41106a22064200370300200341d8016a41086a22074200370300200342003703d8012004411d200341d8016a1001200341c8006a41186a2005290300370300200341c8006a41106a2006290300370300200341c8006a41086a2007290300370300200320032903d801370348200410200240200341c8006a412041e4fdc600410041001002417f470d004121101e2204450d0320042003290308370000200420023a0020200441186a200341086a41186a290300370000200441106a200341086a41106a290300370000200441086a200341086a41086a2903003700004119101e2205450d04200541186a41002d00e1fa413a0000200541106a41002900d9fa41370000200541086a41002900d1fa41370000200541002900c9fa4137000020054119413210222205450d0520052001360019200341d8016a41186a22064200370300200341d8016a41106a22074200370300200341d8016a41086a22084200370300200342003703d8012005411d200341d8016a1001200341c8006a41186a2006290300370300200341c8006a41106a2007290300370300200341c8006a41086a2008290300370300200320032903d801370348200510202003412036026c2003200341c8006a36026820044101200341e8006a10aa02200410200c0c0b200341286a41186a200341086a41186a290300370300200341286a41106a200341086a41106a290300370300200341286a41086a200341086a41086a290300370300200320032903083703284119101e2204450d05200441186a41002d00e1fa413a0000200441106a41002900d9fa41370000200441086a41002900d1fa41370000200441002900c9fa4137000020044119413210222204450d0620042001360019200341d8016a41186a22054200370300200341d8016a41106a22064200370300200341d8016a41086a22074200370300200342003703d8012004411d200341d8016a1001200341c8006a41186a2005290300370300200341c8006a41106a2006290300370300200341c8006a41086a2007290300370300200320032903d8013703482004102020034100360268200341c8006a4120200341e8006a1003210420032802682206417f460d082004450d08200320063602dc01200320043602d801200341e8006a200341d8016a10a30320032802682205450d07200329026c210902402006450d00200410200b200341e8006a41186a200341286a41186a290300370300200341e8006a41106a200341286a41106a290300370300200341e8006a41086a200341286a41086a29030037030020032003290328370368200341e8006a21062009422088a722042009a7470d0a0c090b41194101102d000b41324101102d000b41214101102d000b41194101102d000b41324101102d000b41194101102d000b41324101102d000b41ceb8c4004133200341f8016a41fcbfc4004184b9c400102e000b200341e8006a41186a200341286a41186a290300370300200341e8006a41106a200341286a41106a290300370300200341e8006a41086a200341286a41086a29030037030020032003290328370368420021094101210541002104200341e8006a21060b024020042009a7470d00200441016a22072004490d03200441017422082007200820074b1bad220a42217e220b422088a70d03200ba722074100480d030240024020040d002007101e21050c010b2005200441216c2007102221050b2005450d05200942808080807083200a8421090b2009422088a721040b2005200441216c6a22072006290000370000200641086a290000210a200641106a290000210b200641186a290000210c200720023a0020200741186a200c370000200741106a200b370000200741086a200a370000024020050d00200341c8006a412010040c010b2003412036026c2003200341c8006a3602682005200441016a200341e8006a10aa022009a7450d00200510200b200341e8006a41186a200041186a290000370300200341e8006a41106a200041106a290000370300200341e8006a41086a200041086a2900003703002003200136028801200320002900003703684122101e2204450d01200441002900c9b642370000200441206a41002f00e9b6423b0000200441186a41002900e1b642370000200441106a41002900d9b642370000200441086a41002900d1b642370000200342a2808080a00437022c20032004360228200341e8006a200341286a10ca0120032802880121060240200328022c2205200328023022046b4104490d00200328022821050c040b200441046a22072004490d00200541017422042007200420074b1b22044100480d000240024020050d002004101e21050c010b200328022820052004102221050b02402005450d002003200436022c20032005360228200328023021040c040b20044101102d000b1027000b41224101102d000b20074101102d000b2003200441046a360230200520046a20063600002003280230210420032802282105200341d8016a41186a22064200370300200341d8016a41106a22074200370300200341d8016a41086a22084200370300200342003703d80120052004200341d8016a1001200341c8006a41186a2006290300370300200341c8006a41106a2007290300370300200341c8006a41086a2008290300370300200320032903d8013703480240200328022c450d00200328022810200b02400240024002400240200241ff01710e0400010203000b410021050c030b410121050c020b410221050c010b410321050b200320053a006802404101101e2204450d00200420053a0000200341c8006a41202004410110052004102020034190016a20013602002003418d016a20023a0000200341f5006a200041086a290000370000200341fd006a200041106a29000037000020034185016a200041186a290000370000200341033a006c200341093a00682003200029000037006d200341e8006a107720034180026a24000f0b41014101102d000bfe0a010b7f230041c0006b2202240002400240024002404110101e2203450d00200341086a41002900efa646370000200341002900e7a646370000200242908080808002370224200220033602202002410d3602002002200241206a1063024020022802242204200228022822056b410d490d002005410d6a2106200228022021030c020b2005410d6a22062005490d02200441017422032006200320064b1b22074100480d020240024020040d002007101e21030c010b200228022020042007102221030b02402003450d002002200736022420022003360220200721040c020b20074101102d000b41104101102d000b20022006360228200320056a220541002900caa646370000200541056a41002900cfa64637000020022003200610a60502402004450d00200310200b20022802082206417f4c0d0120022802002103024002400240024002400240024020060d00410121040c010b2006101e2204450d010b20042003200610cd05210802402002280204450d00200310200b200141086a280200220741046a2204417f4c0d060240024020040d00410121030c010b2004101e2203450d020b20024100360228200220043602242002200336022020012d00002105024020040d004101101e2203450d0320024101360224200220033602200b20024101360228200320053a000020012d0001210902400240024002400240024002402002280224220520022802282204470d00200441016a22052004490d0c2004410174220a2005200a20054b1b22054100480d0c0240024020040d002005101e21030c010b200320042005102221030b2003450d0120022005360224200220033602200b2002200441016a220a360228200320046a20093a000020012d0002210b2005200a460d01200521090c020b20054101102d000b200541016a22092005490d092005410174220c2009200c20094b1b22094100480d090240024020050d002009101e21030c010b200320052009102221030b2003450d0120022009360224200220033602200b2002200441026a22053602282003200a6a200b3a000020012d0003210a20092005470d02200941016a220b2009490d082009410174220c200b200c200b4b1b220b41004e0d010c080b20094101102d000b0240024020090d00200b101e21030c010b20032009200b102221030b2003450d042002200b360224200220033602200b2002200441036a360228200320056a200a3a000020012802042105200220073602002002200241206a1063024020022802242201200228022822046b2007490d00200228022021030c050b200420076a22032004490d05200141017422092003200920034b1b22094100480d050240024020010d002009101e21030c010b200228022020012009102221030b02402003450d002002200936022420022003360220200921010c050b20094101102d000b20064101102d000b20044101102d000b41014101102d000b200b4101102d000b200320046a2005200710cd051a200241206a41186a22054200370300200241206a41106a22094200370300200241206a41086a220a4200370300200242003703202003200420076a200241206a1001200241186a2005290300370300200241106a2009290300370300200241086a200a2903003703002002200229032037030002402001450d00200310200b200641206a22032006490d00200641017422042003200420034b1b22014100480d000240024020060d002001101e21040c010b200820062001102221040b02402004450d00200420066a22062002290300370000200641186a200241186a290300370000200641106a200241106a290300370000200641086a200241086a290300370000200020033602082000200136020420002004360200200241c0006a24000f0b20014101102d000b1027000b102c000b9c0201057f230041d0006b2203240002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370224200320043602202000200341206a10ca012003280228210420032802202100200341306a41186a22054200370300200341306a41106a22064200370300200341306a41086a220742003703002003420037033020002004200341306a1001200341186a2005290300370300200341106a2006290300370300200341086a20072903003703002003200329033037030002402003280224450d00200328022010200b200320023703382003200137033020034120200341306a41101005200341d0006a24000f0b41144101102d000b9c0201057f230041d0006b2203240002404118101e2204450d00200441002900e28a45370000200441106a41002900f28a45370000200441086a41002900ea8a45370000200342988080808003370224200320043602202000200341206a10ca012003280228210420032802202100200341306a41186a22054200370300200341306a41106a22064200370300200341306a41086a220742003703002003420037033020002004200341306a1001200341186a2005290300370300200341106a2006290300370300200341086a20072903003703002003200329033037030002402003280224450d00200328022010200b200320023703382003200137033020034120200341306a41101005200341d0006a24000f0b41184101102d000bb5f30109077f017e037f027e017f087e1e7f047e017f230041c0086b220224000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200200541214b0d2320050e220102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122010b200041223602000c6f0b2006450d6d20042d0001210520012003417e6a22073602042001200441026a360200200541064b0d6d41012108024002400240024002400240024020050e0706000102030405060b200241c0056a200110b70120022802c0052206450d7320022902c4052109410221080c050b20074108490d72200429000221092001200341766a36020420012004410a6a360200410321080c040b200241c0056a200110b70120022802c0052206450d7120022902c4052109410421080c030b20022001105f20022802000d70200128020441186e220a41186c2204417f4c0d2d2002280204210b0240024020040d00410421060c010b2004101e2206450d2f0b0240200b450d004100210841002104410021050340200241d8026a200110b7010240024020022802d8022207450d0020022902dc022109200241c0056a200110b70120022802c005220c0d012009a7450d00200710200b02402005450d002006210103400240200141046a280200450d00200128020010200b0240200141106a280200450d002001410c6a28020010200b200141186a2101200441686a22040d000b0b200a450d73200610200c730b200541016a210320022902c405210d02402005200a470d0020082003200820034b1b220aad42187e220e422088a70d4b200ea7220f4100480d4b0240024020050d00200f101e21060c010b20062004200f102221060b2006450d370b200620046a22052007360200200541106a200d3702002005410c6a200c360200200541046a2009370200200841026a2108200441186a210420032105200b2003470d000b0b2006450d70200bad422086200aad842109410521080c020b200241c0056a200110ed0120022802c0052206450d6f20022902c4052109410621080c010b200241c0056a200110b70120022802c0052206450d6e20022902c4052109410721080b20004100360200200041106a20093702002000410c6a2006360200200041086a2008360200200041186a20024180076a41a80110cd051a0c6e0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c6d0b2006450d6a20042d0001210520012003417e6a22063602042001200441026a36020020050d6a2006450d6a20042d0002210520012003417d6a22083602042001200441036a360200024002400240200541037122064103460d000240024020060e03030001030b2008450d6e20042d0003210620012003417c6a3602042001200441046a3602002006410874200572220141ffff0371418002490d6e200141fcff0371410276ad21090c030b20084103490d6d200441056a2d0000210620042f0003210820012003417a6a3602042001200441066a3602002008200641107472410874200572220141808004490d6d2001410276ad21090c020b02402005410276220741044b0d000240024020070e050002020201000b20084104490d6e200428000321052001200341796a3602042001200441076a3602002005418080808004490d6e2005ad21090c030b20084108490d6d200429000321092001200341756a36020420012004410b6a360200200942ffffffffffffffff00560d020c6d0b200741046a220841084b0d6c2003417c6a2103200441046a2104410021054200210903402003417f460d6d2004417f6a310000210d20012003360204200120043602002003417f6a2103200441016a2104200d2005410374413871ad862009842109200541016a22062105200641ff01712008490d000b2009427f412820074103746b413871ad88580d6c0c010b2005410276ad21090b20004102360200200041086a2009370300200041106a20024180076a41b00110cd051a0c6c0b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241c0056a200110be0120022802c00522010d200b200041223602000c6b0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c6a0b02402006450d0020042d0001210520012003417e6a3602042001200441026a360200200541034b0d00024002400240024020050e0400010203000b200241c0056a200110960320022d00c0054102460d03200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241086a200110970320022802080d03200241186a290300211141012101200229031021120c6a0b200241c0056a200110960320022d00c0054102460d02200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241386a20011097032002290338a70d02200241386a41106a290300211120022903402112200241206a20011097032002290320a70d02200241206a41106a290300211320022903282114410221010c690b200241c0056a200110960320022d00c0054102460d01200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241c0056a200110960320022d00c0054102460d01200241d8026a41206a2203200241c0056a41206a280200360200200241d8026a41186a2205200241c0056a41186a290300370300200241d8026a41106a2206200241c0056a41106a290300370300200241d8026a41086a2208200241c0056a41086a290300370300200220022903c0053703d802200241d0006a20011097032002290350a70d01200241d0006a41106a2903002115200229035821162005290300211320062903002114200829030021112003350200211720022903d8022112410321010c680b200241c0056a200110960320022d00c0054102460d00200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241e8006a200110970320022802680d00200241f8006a290300211141042101200229037021120c670b200041223602000c690b2006450d6420042d0001210520012003417e6a22183602042001200441026a3602002005410e4b0d644104211902400240024002400240024002400240024002400240024002400240024020050e0f00010272030405060708090a0b0d0e000b200241c0056a200110960320022d00c0054102460d72200241cc056a2902002111200241dc056a2d0000211a200241db056a2d0000210f200241d7056a280000210b200241d6056a2d0000210a200241d5056a2d0000210c200241d4056a2d00002107200241dd056a3500002109200241e1056a3300002112200241e3056a310000211720022902c405210d20022802c005210620024180016a2001109703200229038001a70d7220012802042204450d7220024190016a2903002110200229038801210e200128020022032d0000210820012004417f6a360204410121192001200341016a360200200841024b0d72200920122017421086844220868421092011422088a7211b2011a7211c0c710b20024198016a2001109703200229039801a70d7120022903a001210d200241a8016a2903002209422088a7211b2009a7211c410221190c700b200241b0016a200110970320022903b001a70d7020022903b801210d200241c0016a2903002209422088a7211b2009a7211c410321190c6f0b200241c8016a200110970320022903c801a70d6f20022903d001210d200241d8016a2903002209422088a7211b2009a7211c410521194100210b0c6e0b200241e0016a2001105f20022802e0010d6e200128020441246e221d41246c2204417f4c0d2e20022802e401211e0240024020040d00410421060c010b2004101e2206450d310b0240201e450d00200241c0056a41017221034100210741002108410021040340200241c0056a2001109603200241d8026a41086a220c200341086a290000370300200241d8026a41106a220a200341106a290000370300200241d8026a41186a220b200341186a290000370300200241d8026a411f6a220f2003411f6a280000360000200220032900003703d8020240024020022d00c005221a4102460d00200441016a2105200241d8046a411f6a2219200f280000360000200241d8046a41186a220f200b290300370300200241d8046a41106a220b200a290300370300200241d8046a41086a220a200c290300370300200220022903d8023703d8042004201d470d0120072005200720054b1b221dad42247e2209422088a70d4d2009a7220c4100480d4d0240024020040d00200c101e21060c010b20062008200c102221060b20060d01200c4104102d000b201d450d71200610200c710b200620086a2204201a3a0000200441016a20022903d804370000200441096a200a290300370000200441116a200b290300370000200441196a200f290300370000200441206a2019280000360000200741026a2107200841246a210820052104201e2005470d000b0b2006450d6e201ead422086201dad84210d410621190c070b410721190c6c0b2018450d6c20042d0002210820012003417d6a3602042001200441036a360200200841034f0d6c410821194100211c4100211b0c6b0b200241c0056a200110960320022d00c0054102460d6b200241dd056a350000200241e1056a330000200241e3056a31000042108684422086842109200241cc056a290200220e422088a7211b200241dc056a2d0000211a200241db056a2d0000210f200241d7056a280000210b200241d6056a2d0000210a200241d5056a2d0000210c200241d4056a2d0000210720022902c405210d20022802c0052106200ea7211c410921190c6a0b200241e8016a2001105f20022802e8010d6a20022802ec012106410a21194200210d4100210c4100210a4100210b4100210f4100211c0c690b410b21190c680b410c21190c670b200241c0056a200110e30120022802c0052206450d6720022902c405210d410d21190b4100211c4100211b0c650b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105221e410876211d20022900d7052209423888a7210f2009421888a7210b2009421088a7210a2009420888a7210c200241cf056a290000220e422088a7211b20022900c705210d20022d00df05211a20022800c305210620022d00c00521082009a72107200ea7211c410e21190c650b200541ff0171450d65200241003a00e0050c650b410f21190c630b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241d8046a200110f60220022d00d8044101460d00200241f8036a200241d8046a41017241e00010cd051a200241d8046a200110b70120022802d80422010d1d0b200041223602000c670b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241f0016a2001105f20022802f0010d0020022802f40121012000410836020020002001360204200041086a20024180076a41b80110cd051a0c670b200041223602000c660b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241c0056a200110b70120022802c00522010d1c0b200041223602000c650b2006450d5e20042d0001210520012003417e6a22063602042001200441026a36020020050d5e20064104490d5e2004280002211920012003417a6a3602042001200441066a360200200241c0056a200110b70120022802c005220f450d5e200241c8056a280200211d20022802c405211a200241f8016a2001105f20022802f8010d5d2001280204410c6e220c410c6c2204417f4c0d2020022802fc01210a0240024020040d00410421080c010b2004101e2208450d240b0240200a450d004100210641002104410021050340200241c0056a200110b7010240024020022802c0052207450d00200541016a210320022902c40521092005200c470d0120062003200620034b1b220cad420c7e220d422088a70d3f200da7220b4100480d3f0240024020050d00200b101e21080c010b20082004200b102221080b20080d01200b4104102d000b02402005450d002008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c450d60200810200c600b200820046a22052007360200200541046a2009370200200641026a21062004410c6a210420032105200a2003470d000b0b2008450d5d200f450d5e02402001280204220341044f0d000240201a450d00200f10200b0240200a450d00200a410c6c21042008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c0d5d0c5f0b20012802002206280000210b20012003417c6a22043602042001200641046a36020020044104490d5b2006280004211e2001200341786a22073602042001200641086a36020041002104200241003a008006200341776a21030240034020072004460d01200241c0056a20046a200620046a220541086a2d00003a0000200120033602042001200541096a3602002002200441016a22053a0080062003417f6a210320052104200541c000470d000b200f450d5f200241c0056a41206a290300210920022903d805210d20022903f805210e20022802f405210120022f01f205210420022d00f005210320022903e805211020022802d405210520022d00d305210620022d00d205210720022d00d105211c20022d00d005211b20022903c805211120022903c0052112200020022d00f1053a0059200020063a003b200020073a003a2000201c3a0039200020193602042000410a360200200041c8006a2009370200200041c0006a200d370200200041e0006a200e370200200041dc006a2001360200200041da006a20043b0100200041d8006a20033a0000200041d0006a20103702002000413c6a2005360200200041386a201b3a0000200041306a2011370200200041286a2012370200200041246a201e360200200041206a200b3602002000411c6a200a360200200041186a200c360200200041146a2008360200200041106a201d3602002000410c6a201a360200200041086a200f360200200041e8006a20024180076a41d80010cd051a0c650b200441ff0171450d5a200241003a0080060c5a0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c630b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c620b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c610b2006450d5520042d0001210520012003417e6a3602042001200441026a360200200541024b0d5502400240024002400240024020050e03000102000b20024180076a20011095032002280280072101200241c0056a20024180076a41047241bc0110cd051a20014122470d020c5a0b20024180076a20011096034102210320022d0080074102460d592002419c076a290200210920024194076a290200210d2002418c076a290200210e200229028407211020022802800721040c020b20024180076a200110960320022d0080074102460d582002419c076a290200210920024194076a290200210d2002418c076a290200210e2002290284072110200228028007210420024180076a20011095032002280280072103200241c0056a20024180076a41047241bc0110cd051a20034122460d5820024180076a200241c0056a41bc0110cd051a41c001101e2201450d2420012003360200200141046a20024180076a41bc0110cd051a410321030c020b20024180076a200241c0056a41bc0110cd051a41c001101e2204450d2220042001360200200441046a20024180076a41bc0110cd051a410121030b0b200020033602042000410e360200200041246a20093702002000411c6a200d370200200041146a200e3702002000410c6a20103702002000412c6a2001360200200041086a2004360200200041306a200241d8026a41900110cd051a0c600b2006450d5320042d0001210520012003417e6a22063602042001200441026a360200200541044b0d5302400240024002400240024020050e050001020304000b20064110490d582004410a6a29000021092004290002210d20012003416e6a3602042001200441126a360200200241c0056a200110b70120022802c0052205450d58200241c8056a2206280200210720022802c4052104200241c0056a200110b70120022802c00522030d0420040d570c580b20064104490d572004280002210520012003417a6a22063602042001200441066a3602002006450d5720042d000621062001200341796a3602042001200441076a360200200641044f0d57410221080c540b20064104490d562004280002210520012003417a6a3602042001200441066a360200410321080c520b4104210820064104490d552004280002210520012003417a6a3602042001200441066a3602000c510b20064104490d542004280002210520012003417a6a3602042001200441066a36020041052108410021014200210e41002103410021040c500b2006280200210a20022802c405210c200241c0056a200110b70120022802c0052201450d5120022902c405210e410121080c4f0b2006450d4d20042d0001210520012003417e6a221b3602042001200441026a360200200541104b0d4d410f2106024002400240024002400240024002400240024002400240024002400240024020050e11000102030405060708090a0b0c0d260e0f000b201b4110490d5c2004410a6a29000021172004290002211220012003416e6a3602042001200441126a360200410121060c250b41002105200241003a00e0052003417e6a2107417d21060240034020072005460d01200241c0056a20056a200420056a220841026a2d00003a00002001200320066a3602042001200841036a3602002002200541016a22083a00e0052006417f6a21062008210520084120470d000b200320086b2203417e6a4110490d5c200241cf056a290000211720022900c705211220022d00df05211d20022900d705210e20022800c305211e20022f00c105210720022d00c005211c200420086a2204410a6a290000211141022106200441026a290000211020012003416e6a3602042001200441126a36020020074180fe037141087621194100210b0c250b200541ff0171450d5b200241003a00e0050c5b0b41002105200241003a00e005410220036b21072003417d6a2106024002400340200720056a450d01200241c0056a20056a200420056a220841026a2d00003a0000200120063602042001200841036a3602002002200541016a22083a00e0052006417f6a21062008210520084120470d000b200241d8026a410f6a200241c0056a410f6a290000370000200220022900c7053700df02200220022d00df053a00f702200220022900d7053700ef02200220022800c3053600db02200220022f00c1053b00d902200220022d00c0053a00d80241002105200241003a00e005200420086a2107200820036b41026a2103200241d8026a410372210f0340200320056a450d02200241c0056a20056a200720056a220441026a2d00003a0000200120063602042001200441036a3602002002200541016a22043a00e0052006417f6a21062004210520044120470d000b200220022900c7053703f803200220022d00df053a009004200220022900d705370388042002200241cf056a2900003703800420022800c305210a20022f00c105210820022d00c005210c200241c0056a200110b70120022802c005220b450d5c20022902c405210d200241d8046a41106a200f41106a290000370300200241d8046a41086a200f41086a290000370300200241d8046a41156a200f41156a2900003700002002200f2900003703d80420084180fe0371410876210f200241f8036a41086a290300211120022d00d802211c20022d00d902210720022d00da02211920022903f8032110200229038804210920022d009004211a200241e4046a290200211720022902ec04210e20022902dc04211220022d00f404211d20022802d804211e410321060c250b200541ff0171450d5b200241003a00e0050c5b0b200541ff0171450d5a200241003a00e0050c5a0b41042106201b4104490d592004280002211e20012003417a6a3602042001200441066a360200410021190c220b201b4104490d582004280002211e20012003417a6a3602042001200441066a360200410521060c210b201b4104490d572004280002211e20012003417a6a360204410621062001200441066a360200410021190c200b201b4104490d562004280002211e20012003417a6a3602042001200441066a36020041072106410021190c1f0b201b4104490d552004280002211e20012003417a6a3602042001200441066a36020041082106410021190c1e0b201b4104490d542004280002211e20012003417a6a3602042001200441066a36020041092106410021190c1d0b201b4110490d53410a21062004410a6a29000021172004290002211220012003416e6a3602042001200441126a3602000c1c0b201b4104490d522004280002211e20012003417a6a3602042001200441066a360200410b2106410021190c1b0b201b4104490d512004280002211e20012003417a6a3602042001200441066a36020042002112410c210641002119420021170c1a0b201b4104490d502004280002211e20012003417a6a3602042001200441066a36020042002112410d2106420021170c190b201b4110490d4f2004410a6a29000021172004290002211220012003416e6a3602042001200441126a360200410e21060c180b411021060c170b201b450d4d20042d0002210520012003417d6a3602042001200441036a360200200541014b0d4d411121064100211c20050e021615160b2006450d4b20042d0001210520012003417e6a22063602042001200441026a360200200541034b0d4b0240024002400240024020050e0400010203000b200241f8036a200110e30120022802f8032206450d4f200241f2036a41026a20024188026a41026a2d00003a0000200241d8026a41086a200241c0056a41086a290200370300200241d8026a41106a200241c0056a41106a280200360200200220022f0088023b01f203200220022902c0053703d80220022902fc032109410121050c030b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241f8036a41086a200241d7056a290000220937030041022105200241f2036a41026a20022d00c2053a0000200241e8026a200241df056a2d00003a0000200241d8026a41086a2009370300200220022900cf0522093703f803200220022f01c0053b01f203200220093703d80220022900c705210920022800c3052106200241eb026a200241f5036a41026a2d00003a0000200220022f00f5033b00e9020c030b200541ff0171450d4e200241003a00e0050c4e0b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241f8036a41086a200241d7056a2900002209370300200241f2036a41026a20022d00c2053a0000200241e8026a200241df056a2d00003a0000200241d8026a41086a2009370300200220022900cf0522093703f803200220022f01c0053b01f203200220093703d80220022900c705210920022800c3052106200241eb026a200241f5036a41026a2d00003a0000200220022f00f5033b00e902410321050c020b200541ff0171450d4d200241003a00e0050c4d0b4104210520064104490d4c2004280002210620012003417a6a3602042001200441066a360200200241f2036a41026a200241f8036a41026a2d00003a0000200241d8026a41086a200241c0056a41086a290200370300200241d8026a41106a200241c0056a41106a280200360200200220022f00f8033b01f203200220022902c0053703d8020b200241ee036a41026a200241f2036a41026a2d000022013a0000200241d8046a41086a2204200241d8026a41086a290300370300200241d8046a41106a2203200241d8026a41106a280200360200200220022f01f20322083b01ee03200220022903d8023703d804200020053a000420004111360200200020083b0005200041076a20013a00002000410c6a2009370200200041086a2006360200200041146a20022903d8043702002000411c6a2004290300370200200041246a2003280200360200200041286a20024180076a41980110cd051a0c5d0b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241c0056a200110b70120022802c00522010d160b200041223602000c5c0b02402006450d0020042d0001210520012003417e6a22063602042001200441026a360200200541084b0d000240024002400240024002400240024002400240024020050e09000102030405060708000b20064108490d0a2004290002210d2001200341766a36020420012004410a6a360200200241c0056a20011098034101210520022802c0054101460d0a200241e4056a2802002107200241e2056a2f01002101200241e0056a2d0000210c200241d8056a2903002110200241d0056a290300210e200241c8056a290300211120022d00e105210420022802c4052103420021090c530b20064108490d092004290002210e2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052203450d0920022902c4052111410221050c510b20064108490d082004290002210e2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052203450d0820022902c4052111410321050c500b20064108490d072004290002210e2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052203450d0720022902c4052111410421054200211041002104420021124100210f410021014100211a41002119420021090c050b20064108490d062004290002210d2001200341766a36020420012004410a6a360200200241c0056a200110980320022802c0054101460d06200241e4056a2802002107200241e2056a2f01002101200241e0056a2d0000210c200241d8056a2903002110200241d0056a290300210e200241c8056a290300211120022d00e105210420022802c405210341052105420021090c4f0b20064108490d052004290002210d2001200341766a220836020420012004410a6a36020041002105200241003a00e005200341756a21030240034020082005460d01200241c0056a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105220a4108762106200241cf056a290000210e20022900c705211120022d00df05210c20022900d705211020022800c305210320022d00c00521084106210542002109410021010c4f0b200541ff0171450d05200241003a00e0050c050b20064108490d042004290002210d2001200341766a220836020420012004410a6a36020041002105200241003a00e005200341756a21030240034020082005460d01200241c0056a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105220a4108762106200241cf056a290000210e20022900c705211120022d00df05210c20022900d705211020022800c305210320022d00c00521084107210542002109410021014100211a0c4e0b200541ff0171450d04200241003a00e0050c040b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241d8026a410f6a200241c0056a410f6a290000370000200220022900c7053700df02200220022d00df053a00f702200220022900d7053700ef02200220022800c3053600db02200220022f00c1053b00d902200220022d00c0053a00d802200241c0056a200110980320022802c0054101460d0441082105200241e0056a2d00002119200241db056a2800002101200241d8056a2d0000210b200241c0056a41106a2903002112200241c0056a41086a290300210d200241e1056a3500002109200241e5056a330000210e200241e7056a310000211020022d00df05211a20022d00da05210f20022d00d905210420022802c4052107200241d8046a41086a200241d8026a410372220341086a290000370300200241d8046a41106a200341106a290000370300200241d8046a41156a200341156a290000370000200220032900003703d8042009200e20104210868442208684210920022d00d802210820022d00d902210a20022d00da02210620022d00f404210c20022902ec04211020022902e404210e20022902dc04211120022802d80421030c4d0b200541ff0171450d03200241003a00e0050c030b41002105200241003a00e0052003417e6a21082003417d6a2103034020082005460d02200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105220a4108762106200241cf056a290000210e20022900c705211120022d00df05210c20022900d705211020022800c305210320022d00c005210841092105410021010b0c4a0b200541ff0171450d00200241003a00e0050b200041223602000c5b0b2006450d4420042d0001210520012003417e6a22063602042001200441026a360200200541074b0d440240024002400240024002400240024002400240024020050e080001020305060708000b2006450d4e20042d0002210c20012003417d6a3602042001200441036a360200200c41014b0d4e4200210d41002106024002400240200c0e020100010b41002105200241003a00e0052003417d6a21082003417c6a2103034020082005460d02200241c0056a20056a200420056a220641036a2d00003a0000200120033602042001200641046a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200220022900c70522093703f803200241d8026a41086a20022800fb03360000200220022900d70537038804200220022d00df053a0090042002200241cf056a290000220d37038004200220022800c3053600d902200220093e00dd02200220022f00c10522074108763a00d8022009423888200d42088684210920022d00c0052108200233008f04210d20022900870421104101210620022802d80221050b20022902dc02220e422088a72103200ea72104410121010c500b200541ff0171450d4e200241003a00e0050c4e0b2006450d4d20042d0002210520012003417d6a22063602042001200441036a360200200541014b0d4d4200210d0240024020050e020100010b20064108490d4e2004290003210e2001200341756a36020420012004410b6a3602004201210d0b200241c0056a200110b70120022802c0052205450d4d200241c8056a2206280200210320022802c4052104200241c0056a200110b70120022802c0050d0720040d020c4d0b20064108490d4c200429000221092001200341766a220536020420012004410a6a3602002005450d4c20042d000a21052001200341756a220736020420012004410b6a220c360200200541014b0d4c410221060240024020050e020100010b2007450d4d20042d000b21052001200341746a220736020420012004410c6a220c360200200541014b0d4d41002106024020050e020100010b410121060b2007450d4c200c2d0000210420012007417f6a22033602042001200c41016a360200200441014b0d4c410221080240024020040e020100010b2003450d4d200c2d0001210420012007417e6a3602042001200c41026a360200200441014b0d4d41002108024020040e020100010b410121080b2009422088a721032009a72104410321010c4d0b20064108490d4b2004290002210d2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4b200241c8056a2206280200210320022802c4052104200241c0056a200110b70120022802c0050d062004450d4b0b200510200c4a0b20064108490d49200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4920022902c405220d422088a72103200da72104410521014200210d0c4a0b20064108490d48200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4820022902c405220d422088a72103200da72104410621014200210d0c490b20064108490d47200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4720022902c405220d422088a72103200da72104410721014200210d0c480b20064108490d46200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4620022902c405220d422088a72103200da72104410821014200210d0c470b2006350200211020022903c005210941022101410021070c460b2006350200211020022903c0052109410421010c450b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c590b02402006450d0020042d0001210520012003417e6a22063602042001200441026a360200200541074b0d000240024002400240024002400240024020050e080001020304050607000b2006450d0720042d0002210820012003417d6a22053602042001200441036a360200200841034b0d0720054108490d07200429000321092001200341756a36020420012004410b6a3602004200210d4101210341002101420021120c490b2006450d0620042d0002210820012003417d6a22073602042001200441036a360200200841034b0d0641002105200241003a00e0052003417c6a21030240034020072005460d01200241c0056a20056a200420056a220641036a2d00003a0000200120033602042001200641046a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241e4046a200241cf056a290000370200200220022900d7053702ec04200220022900c7053702dc04200220022800c30522013602d804200220022d00df053a00f40420022f00c105220f410876210420022d00c005210b200241eb046a290000211220022900db04210920023300f304211720022900e304210d41022103410021194200210e4100211d4100211e420021160c490b200541ff0171450d06200241003a00e0050c060b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022800c3052204410876210120022f00c105220b410876210f200241cf056a290000210d20022900c705210920023100df05211720022900d705211220022d00c0052108410321030c480b200541ff0171450d05200241003a00e0050c050b2006450d0420042d0002210820012003417d6a3602042001200441036a360200200841034b0d04200241c0056a200110990320022903c0054201510d04200241f8056a2903002111200241f0056a2903002110200241d8056a2903002112200241d0056a290300210d20024190066a29030021162002418c066a280200211e2002418a066a2f0100211d20024188066a2d0000210a20024180066a290300210e200241ec056a280200210c200241e8056a2d0000211a200241e0056a290300211720022d008906211920022d00eb05210720022d00ea05210620022d00e905210520022903c8052109410421030c460b200241c0056a2001109a0320022802c0052204450d032004410876210120022902c40521094200210d41052103420021120c450b2006450d0220042d0002210820012003417d6a3602042001200441036a360200200841044f0d02410621030c440b2006450d0120042d0002210820012003417d6a3602042001200441036a360200200841044f0d01410721030c430b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b4108210320022800c3052204410876210120022f00c105220b410876210f200241cf056a290000210d20022900c705210920023100df05211720022900d705211220022d00c00521080c430b200541ff0171450d00200241003a00e0050b200041223602000c580b2006450d3f20042d0001210520012003417e6a22063602042001200441026a360200200541034b0d3f024002400240024020050e0400010203000b200241c0056a200110b70120022802c0052204450d4220022802c405210320012802042205450d40200241c8056a2802002106200128020022072d0000210820012005417f6a360204410121052001200741016a360200200841014b0d404100210120080e021514150b20064108490d41200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052204450d4120022802c405210320012802042205450d3e200241c8056a2802002106200128020022072d0000210820012005417f6a3602042001200741016a360200200841014b0d3e4102210541002101024020080e021500150b410121010c140b20064108490d40200429000221092001200341766a36020420012004410a6a3602002009422088a721062009a72103410321050c130b20064108490d3f200429000221092001200341766a36020420012004410a6a3602002009422088a721062009a72103410421050c120b2006450d3a20042d0001210520012003417e6a3602042001200441026a360200200541064b0d3a4105210b42002109420021170240024002400240024002400240024020050e0700010203070405000b41002105200241003a00e0052003417e6a2107417d21060240034020072005460d01200241c0056a20056a200420056a220841026a2d00003a00002001200320066a3602042001200841036a3602002002200541016a22083a00e0052006417f6a21062008210520084120470d000b200320086b2203417e6a4108490d4220022f00c1052107200241cf056a290000211020022900c705210e20022d00df05210c20022900d705210920022800c305210620022d00c005210a200420086a220441026a290000210d2001200341766a220536020420012004410a6a220836020020054108490d422008290000211120012003416e6a3602042001200441126a360200200241c0056a200110b70120022802c0052208450d422007410876210f200942808080807083211720022902c40521124101210b0c070b200541ff0171450d41200241003a00e0050c410b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4102210b0c050b200541ff0171450d40200241003a00e0050c400b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4103210b0c040b200541ff0171450d3f200241003a00e0050c3f0b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4104210b0c030b200541ff0171450d3e200241003a00e0050c3e0b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4106210b0c020b200541ff0171450d3d200241003a00e0050c3d0b200241c0056a200110e30120022802c0052206450d3c20022902c405210e420021124107210b41002108420021094200211742002110420021110b0b200041003a002b200041003b00292000200f3a000b200020073a000a2000200a3a000920004118360200200041186a2010370000200041106a200e370000200041c0006a2011370200200041386a200d370200200041306a20123700002000412c6a2008360000200041286a200c3a00002000410c6a2006360000200041086a200b3a0000200041206a2017200942ffffffff0f8384370000200041c8006a20024180076a41f80010cd051a0c560b2006450d3820042d0001210520012003417e6a22063602042001200441026a360200200541024b0d380240024002400240024020050e03000102000b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241cf056a290000210920022900c705210d20022d00df05210120022900d705210e20022800c305210420022f00c105210320022d00c0052105410121060c040b200541ff0171450d3c200241003a00e0050c3c0b20064108490d3b2004290002210d2001200341766a36020420012004410a6a360200410221060c010b20064108490d3a2004290002210d2001200341766a36020420012004410a6a360200410321060b4200210e410021030b200041003a002b200041003b0029200020033b000a200020053a0009200041193602002000412c6a4100360200200041286a20013a0000200041206a200e370200200041186a2009370200200041106a200d3702002000410c6a2004360000200041086a20063a0000200041306a20024180076a41900110cd051a0c550b2006450d3620042d0001210520012003417e6a220f360204410221082001200441026a360200200541034b0d36024002400240024020050e0400380102000b200241c0056a200110b70120022802c0052206450d3920022802c4052107200128020422040d020c380b200f4104490d382004280002210620012003417a6a3602042001200441066a360200410321084100210a410021070c360b200241c0056a200110ed0120022802c0052206450d3720022902c4052209422088a7210c2009a72107410421080c350b200241c8056a280200210c200128020022052d0000210320012004417f6a22083602042001200541016a360200200341014b0d354100210b0240024020030e020100010b20084104490d362005280001210a20012004417b6a3602042001200541056a3602004101210b0b410121080c340b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c530b2006450d3120042d0001210520012003417e6a22063602042001200441026a3602002005410c4b0d31024002400240024002400240024002400240024002400240024002400240024020050e0d0001020304050d0e060708090a000b20064108490d40200429000221092001200341766a36020420012004410a6a360200200241c0056a2001105e20022802c0052204450d402009a7220541807e71210120022902c405220d422088a721032009422088a72107200da72106420021104101210a4100210f42002117420021164200211542002114420021130c3e0b2006450d3f20042d0002210520012003417d6a2206360204410321072001200441036a360200200541014b0d3f410021080240024020050e020100010b20064108490d40200429000321092001200341756a2206360204410b210720012004410b6a360200410121080b20064108490d3f200420076a2204290000210d2001200641786a3602042001200441086a360200200241c0056a2001105e20022802c0052204450d3f20022902c405210e20012802042205450d3e200128020022062d0000210320012005417f6a3602042001200641016a360200200341014b0d3e4100210520030e020a090a0b2006450d3e20042d0002210520012003417d6a2208360204410321072001200441036a360200200541014b0d3e410021060240024020050e020100010b20084108490d3f200429000321092001200341756a2208360204410b210720012004410b6a360200410121060b20084108490d3e200420076a2204290000210d2001200841786a22033602042001200441086a3602002003450d3e20042d000821032001200841776a3602042001200441096a360200200341014b0d3e4100210c0240024020030e020100010b4101210c0b2009a7220541807e712101200d422088a7210f2009422088a72107200da72108420021104103210a4100210342002117420021164200211542002114420021134100210b0c3c0b2006450d3d20042d0002210620012003417d6a2208360204410321072001200441036a360200200641014b0d3d410021050240024020060e020100010b20084108490d3e2004290003210d2001200341756a2208360204410b210720012004410b6a360200410121050b20084108490d3d200420076a220429000021092001200841786a3602042001200441086a360200200241c0056a2001105e20022802c0052204450d3d200d422088a7210f20022902c405220e422088a72103200da72108200ea72106420021104104210a0c3a0b2006450d3c20042d0002210620012003417d6a2208360204410321072001200441036a360200200641014b0d3c410021050240024020060e020100010b20084108490d3d2004290003210d2001200341756a2208360204410b210720012004410b6a360200410121050b20084108490d3c200420076a220429000021092001200841786a3602042001200441086a360200200241c0056a2001105e20022802c0052204450d3c200d422088a7210f20022902c405220e422088a72103200da72108200ea72106420021104105210a0c390b2006450d3b20042d0002210520012003417d6a2206360204410321072001200441036a360200200541014b0d3b410021080240024020050e020100010b20064108490d3c200429000321092001200341756a2206360204410b210720012004410b6a360200410121080b20064108490d3b200420076a2204290000210d2001200641786a3602042001200441086a360200200241c0056a200110920120022802c00522044103460d3b200241cc056a280200220541807e71210120022902c405220e422088a72103200ea72106420021104106210a4100210f42002117420021164200211542002114420021130c390b2006450d3a20042d0002210520012003417d6a2206360204410321082001200441036a360200200541014b0d3a420021090240024020050e020100010b20064108490d3b2004290003210d2001200341756a2206360204410b210820012004410b6a360200420121090b20064108490d3a200420086a2204290000210e2001200641786a3602042001200441086a360200200241c0056a200110e50120022802c0052204450d3a200241c8056a2208280200210320022802c4052106200241c0056a200110e70120022802c00522050d0820060d360c3a0b2006450d3920042d0002210520012003417d6a2208360204410321072001200441036a360200200541014b0d39410021060240024020050e020100010b20084108490d3a200429000321092001200341756a2208360204410b210720012004410b6a360200410121060b20084108490d39200420076a2204290000210d2001200841786a3602042001200441086a3602002009a7220541807e7121012009422088a72107200da72108200d422088a7210f42002110410a210a4100210342002117420021164200211542002114420021134100210b0c370b2006450d3820042d0002210620012003417d6a22083602042001200441036a2207360200200641014b0d38410021050240024020060e020100010b20084108490d392004290003210d2001200341756a220836020420012004410b6a2207360200410121050b2008450d3820072d0000210420012008417f6a22033602042001200741016a360200200441014b0d384100210c0240024020040e020100010b4101210c0b20034108490d38200729000121092001200841776a22043602042001200741096a36020020044102490d3820072f0009210b2001200841756a360204410b210a20012007410b6a360200200241c0056a200110e60120022802c0052204450d38200d422088a7210f20022902c405220e422088a72103200da72108200ea7210642002110410021014200211742002116420021154200211442002113410021070c360b2006450d3720042d0002210620012003417d6a22083602042001200441036a2207360200200641014b0d37410021050240024020060e020100010b20084108490d382004290003210d2001200341756a220836020420012004410b6a2207360200410121050b2008450d3720072d0000210420012008417f6a22033602042001200741016a360200200441014b0d374100210c0240024020040e020100010b4101210c0b20034108490d37200729000121092001200841776a3602042001200741096a360200200241c0056a200110e60120022802c0052204450d37200d422088a7210f20022902c405220e422088a72103200da72108200ea7210642002110410c210a410021014200211742002116420021154200211442002113410021070c350b20024180026a2001105f2002280280020d36200128020422044140712203417f4c0d13200228028402211a024002402004410676220a0d00410821040c010b2003101e2204450d1a0b0240201a450d004100210b4100210c410021060340024002402001280204220f450d00200128020022072d000021082001200f417f6a22053602042001200741016a2203360200200841014b0d00420021090240024020080e020100010b20054108490d012007290001210d2001200f41776a22053602042001200741096a2203360200420121090b2005450d0020032d0000210820012005417f6a22073602042001200341016a360200200841014b0d004200210e0240024020080e020100010b4201210e0b2007450d0020032d0001210820012005417e6a22073602042001200341026a360200200841024b0d00024002400240024020080e03000102000b20074108490d03200329000221102001200541766a36020420012003410a6a3602002010422088a7210f2010a72108410021190c020b2007450d0220032d0002210820012005417d6a22073602042001200341036a360200200841014b0d0202400240024020080e020001000b20074104490d042003280003211b2001200541796a3602042001200341076a360200410021080c010b20074108490d03200329000321122001200541756a36020420012003410b6a360200410121080b200241c0056a2001109b0320022802c005450d02200241d8026a41086a200241c0056a41086a280200360200200220022903c0053703d8024101211920122110201b210f0c010b2007450d0120032d0002210820012005417d6a22073602042001200341036a360200200841014b0d0102400240024020080e020001000b20074104490d03200328000321182001200541796a22053602042001200341076a2203360200410021080c010b20074108490d02200329000321172001200541756a220536020420012003410b6a2203360200410121080b20084102460d0120054102490d0120032f0000210720012005417e6a3602042001200341026a360200200241c0056a2001109b0320022802c005450d01200241d8026a41086a200241c0056a41086a280200360200200220022903c0053703d80241022119201721102018210f0b200641016a210520022f01e202211d20022d00e102211e20022d00e002211c20022903d80221112006200a470d01200b2005200b20054b1b220a41ffffff1f71200a470d32200a41067422034100480d320240024020060d002003101e21040c010b2004200c2003102221040b20040d0120034108102d000b200420061071200a450d390c350b2004200c6a22032009370300200341206a2010370300200341186a200fad4220862008ad84370300200341386a200e370300200341346a200741ffff0371360200200341326a201d3b0100200341316a201e3a0000200341306a201c3a0000200341286a2011370300200341146a4100360200200341136a41003a0000200341116a41003b0000200341106a20193a0000200341086a200d370300200b41026a210b200c41c0006a210c20052106201a2005470d000b0b2004450d36201aad422086200aad842209422088a721032009a7210642002110410d210a410021014200211742002116420021154200211442002113410021054100210f4100210b0c340b410121050b200e422088a72103200ea72106420021104102210a4100210142002117420021164200211542002114420021134100210f0c320b200241c0056a200110b70120022802c0052204450d33200241c8056a2208280200210320022802c4052106200241c0056a200110b70120022802c0052205450d2e2008280200210820022802c4052107200241c0056a200110910120022802e8054103460d2c20022902e405220942ffffffff0f8321102009428080808070832116200541807e712101200241ec056a290200211320024184066a290200211220024180066a280200211f200241fc056a2d0000211c200241f4056a290200211120022f01fe05212020022d00fd05211820022802e005211e20022d00df05211d20022d00de05211920022d00dd05211a20022d00dc05211b20022902d405210e20022902cc05210d20022902c405210920022802c005210f420021174107210a42002115420021140c310b200241c0056a200110b70120022802c0052204450d324108210a200241c0056a41086a2208280200210320022802c4052106200241c0056a200110b70120022802c0052205450d2c200541807e7121012008280200210820022802c40521074200211042002117420021164200211542002114420021130c300b200541807e7121012008280200210820022802c4052107420021114109210a41002118410021204100211f420021124200211042002117420021164200211542002114420021130c2f0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c510b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c500b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c4f0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c4e0b2006450d2320042d0001210520012003417e6a22083602042001200441026a360200200541124b0d23411121214200211341002122410021234200210d024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e13000102030405060708090b0c0d0e0f10331112000b20084108490d38200429000221092001200341766a220c36020420012004410a6a36020041002105200241003a00a007200341756a210802400340200c2005460d0120024180076a20056a200420056a2206410a6a2d00003a00002001200836020420012006410b6a3602002002200541016a22073a00a0072008417f6a21082007210520074120470d000b200341766a2007460d3920022f00810721182002418f076a290000210e200229008707211020022d009f07210c2002290097072111200228008307210620022d008007211d200420076a2204410a6a2d0000211c2001200836020420012004410b6a360200201c41034f0d3920024180076a200110b7012002280280072219450d39200228028407211b200128020422030d130c380b200541ff0171450d38200241003a00a0070c380b20084108490d372004290002210d2001200341766a220536020420012004410a6a36020020054108490d37200429000a210920012003416e6a22083602042001200441126a36020041002105200241003a00a0072003416d6a21032009422088a7210b2009a7210a0240034020082005460d0120024180076a20056a200420056a220641126a2d00003a0000200120033602042001200641136a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f00810722184108762124200d422088a721252002290097072209422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d200da7211b2009a7211f200ea721072010a7211e410221210c300b200541ff0171450d37200241003a00a0070c370b20084108490d36200429000221092001200341766a220536020420012004410a6a3602002005450d3620042d000a21052001200341756a36020420012004410b6a360200200541014b0d36410021060240024020050e020100010b20024180076a200110b7012002280280072206450d37200229028407210d0b20024180076a200110b302200da72107200228028007221e4102470d112006450d362007450d36200610200c360b2008450d3520042d0002210520012003417d6a2206360204410321082001200441036a360200200541014b0d35410021070240024020050e020100010b20064108490d36200429000321092001200341756a2206360204410b210820012004410b6a360200410121070b20064108490d35200420086a2204290000210d2001200641786a22033602042001200441086a3602002003450d3520042d000821032001200641776a22053602042001200441096a2208360200200341014b0d354102211d0240024020030e020100010b2005450d3620042d000921032001200641766a220536020420012004410a6a2208360200200341014b0d364100211d024020030e020100010b4101211d0b2005450d3520082d0000210420012005417f6a22033602042001200841016a360200200441014b0d35410221180240024020040e020100010b2003450d3620082d0001210420012005417e6a3602042001200841026a360200200441014b0d3641002118024020040e020100010b410121180b200d422088a721262009422088a72120200da7211f2009a7211e41042121420021134100212741002122410021234100211c41002125410021284200210d4200210e0c2f0b2008450d3420042d0002210520012003417d6a22083602042001200441036a360200200541014b0d34410021060240024020050e020100010b20084104490d35200428000321072001200341796a3602042001200441076a360200410121060b20024180076a2001109c0320022802d0074102460d3420024180086a2903002117200241f8076a2903002112200241d0076a290300210e200241c8076a290300210920024198086a290300211120024190086a2d0000212920024188086a2903002110200241f0076a2d0000212a200241e8076a2903002116200241e0076a2903002115200241c0076a290300210d200241bc076a280200212b200241b8076a280200212c200241b4076a280200212d200241b0076a280200212e200241a4076a280200210f200241a0076a280200211a2002419c076a280200210b20024198076a280200210a200228029408212f20022f019208213020022d009108213120022802f407213220022d00f307213320022d00f207213420022d00f107213520022903d807211420022903a80721362002290390072137200228028c072119200228028807210c200229038007213820024180076a200110b7012002280280072227450d34200d428080808070832113200c4180808078712122200c4180807c712123200c410876211c2036422088a721282037422088a721252038422088a721262002290284072239422088a721202036a7213a2037a7211b2038a7211f2039a7211e410521210c2e0b20084108490d33200429000221092001200341766a36020420012004410a6a3602002009422088a721272009a72107410621210c040b20084108490d32200429000221092001200341766a36020420012004410a6a3602002009422088a721272009a72107410721210c030b20084108490d312004290002210d2001200341766a36020420012004410a6a36020020024180076a2001105e2002280280072206450d312002290284072109200128020422040d0d0c220b20084108490d30200429000221092001200341766a36020420012004410a6a3602002009422088a721272009a72107410921210c010b20084108490d2f200429000221092001200341766a360204410a212120012004410a6a3602002009422088a721272009a721070b4200211341002120410021260c1e0b20084108490d2d200429000221092001200341766a220536020420012004410a6a36020020054108490d2d2009422088a7210b2009a7210a200429000a210920012003416e6a220c3602042001200441126a36020041002105200241003a00a0072009422088a7210f2009a7211a416d210802400240024002400340200c2005460d0120024180076a20056a200420056a220641126a2d00003a00002001200320086a3602042001200641136a3602002002200541016a22073a00a0072008417f6a21082007210520074120470d000b2003416e6a2007460d3120022f00810721182002418f076a2900002110200229008707211120022d009f07210c2002290097072112200228008307210620022d008007211d200420076a220541126a2d000021042001200320086a22083602042001200541136a2219360200200441014b0d3120040e020201020b200541ff0171450d30200241003a00a0070c300b20084110490d2f200541136a29000021092005411b6a290000210d2001200320076b415d6a22083602042001200541236a2219360200200da7212c2009a7212e200d422088a7212b2009422088a7212d4101213a0c010b4100212d4100212c4100212b4100213a0b2008450d2d20192d0000210420012008417f6a22033602042001201941016a360200200441014b0d2d4200210e4200210d0240024020040e020100010b20034110490d2e201941096a290000210e2019290001210920012008416f6a3602042001201941116a3602004201210d0b20024180076a200110b7012002280280072219450d2d201841087621242002290284072217422088a721252012422088a721262011422088a721272010422088a721202017a7211b2012a7211f2011a721072010a7211e410b2121420021134100212241002123410021280c270b20084108490d2c2004290002210d2001200341766a220536020420012004410a6a36020020054108490d2c200429000a210920012003416e6a22083602042001200441126a36020041002105200241003a00a0072003416d6a21032009422088a7210b2009a7210a0240034020082005460d0120024180076a20056a200420056a220641126a2d00003a0000200120033602042001200641136a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f00810722184108762124200d422088a721252002290097072209422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d200da7211b2009a7211f200ea721072010a7211e410c21210c250b200541ff0171450d2c200241003a00a0070c2c0b20084108490d2b200429000221092001200341766a220836020420012004410a6a36020041002105200241003a00a007200341756a21030240034020082005460d0120024180076a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f008107221841087621242009422088a72125200229009707220d422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d2009a7211b200da7211f200ea721072010a7211e410d21210c1b0b200541ff0171450d2b200241003a00a0070c2b0b20084108490d2a200429000221092001200341766a36020420012004410a6a36020020024180076a200110b7012002280280072206450d2a2009422088a72120200229028407220d422088a721272009a7211e200da72107410e21210c180b20084108490d29200429000221092001200341766a36020420012004410a6a36020020024180076a200110b7012002280280072206450d292009422088a72120200229028407220d422088a721272009a7211e200da72107410f21210c170b20084108490d28200429000221092001200341766a220836020420012004410a6a36020041002105200241003a00a007200341756a21030240034020082005460d0120024180076a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f008107221841087621242009422088a72125200229009707220d422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d2009a7211b200da7211f200ea721072010a7211e411021210c180b200541ff0171450d28200241003a00a0070c280b2008450d2720042d0002210520012003417d6a3602042001200441036a360200200541014b0d27411221214200211341002127410021204100211e4100212641002122410021234100211c41002125410021284200210d4200210e4100211d024020050e022200220b4101211d41002127410021204100211e4100212641002122410021234100211c41002125410021284200210d4200210e0c210b20084110490d262004410a6a29000021092004290002210d20012003416e6a3602042001200441126a3602002009a7211e200d422088a721272009422088a72120200da721074113212142002113410021260c160b20024188076a2802002125200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d244100210a0240024020040e020100010b20024180076a200110b701200228028007220a450d252002290284072112200128020421030b2012a7210b2003450d23200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d234100210f0240024020040e020100010b20024180076a200110b701200228028007220f450d242002290284072117200128020421030b2017a7213a2003450d22200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d224100212e0240024020040e020100010b20024180076a200110b701200228028007222e450d232002290284072116200128020421030b2016a7212d2003450d21200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d214100212b0240024020040e020100010b20024180076a200110b701200228028007222b450d22200229028407210d200128020421030b2003450d20200128020022052d0000210420012003417f6a3602042001200541016a360200200441014b0d2020184108762124201242208821122017422088211720164220882116410021230240024020040e020100010b4180800421230b2012a7211a2017a721282016a7212c200d4280808080708321132011422088a721262010422088a72127200e422088a721202011a7211f2010a72107200ea7211e41012121410021220c1f0b2002418c076a2204280200212620024188076a2203280200211f200228028407212020024180076a200110b302200228028007220c4102460d1b200428020021252003280200211b200228028407211920024180076a200110b302200228028007220a4102460d1a2002418c076a2203280200210f20024188076a2204280200211a200228028407210b20024180076a200110b302200228028007223a4102460d192004280200212e200228028407212820012802042204450d162003280200212d200128020022052d0000210320012004417f6a22083602042001200541016a360200200341014b0d164102211d024020030e021900190b2008450d1620052d0001210320012004417e6a3602042001200541026a360200200341014b0d164100211d20030e021817180b200128020022032d0000210520012004417f6a22083602042001200341016a360200200541014b0d14410221250240024020050e020100010b20084110490d15200341096a29000021112003290001210e20012004416f6a22053602042001200341116a36020020054104490d152003280011211b20012004416b6a22053602042001200341156a3602002005450d1520032d0015210520012004416a6a22083602042001200341166a360200200541014b0d1541002125420021100240024020050e020100010b20084104490d16200335001621102001200441666a36020420012003411a6a360200410121250b2011422088a721192011a7210c0b200c4180808078712122200c4180807c71212341082121200c410876211c2010422088a7210b200e422088a72126200d422088a721202009422088a721272010a7210a200ea7211f200da7211e2009a7210742002113410021284200210d4200210e0c1d0b200041223602000c4c0b200041086a20022902c4053702002000200136020420004103360200200041106a20024180076a41b00110cd051a0c4b0b200220022902dc043703800720024180076a41086a200241f8036a41e00010cd051a200241c0056a20024180076a41e80010cd051a200241d8026a200241c0056a41e80010cd051a2000200136020420004107360200200041086a200241d8026a41e80010cd051a200041f0006a20024188026a41d00010cd051a0c4a0b200041086a20022902c4053702002000200136020420004109360200200041106a20024180076a41b00110cd051a0c490b4101211c0b200041003b004a2000200f3a002b200020083a002a2000200c3a0029200020193a000b200020073a000a2000201c3a000920004110360200200041386a2011370200200041306a2010370200200041186a2017370200200041106a2012370200200041d0006a200d370000200041cc006a200b360000200041c8006a201a3a0000200041c0006a20093702002000412c6a200a360000200041286a201d3a0000200041206a200e3702002000410c6a201e360200200041086a20063a0000200041d8006a20024180076a41e80010cd051a0c470b200041086a20022902c4053702002000200136020420004112360200200041106a20024180076a41b00110cd051a0c460b41012101410121050b200041003b001a20004117360200200041206a2009370200200041186a20013a00002000410c6a2004360200200041086a2005360200200041106a2006ad4220862003ad84370200200041286a20024180076a41980110cd051a0c440b102c000b20044104102d000b20044104102d000b20044104102d000b41c0014108102d000b41c0014108102d000b20034108102d000b200f4104102d000b420021134100212641002122410021234100211c41002125410021284200210d4200210e0c0b0b4200211341002122410021230c090b41002122410021234100211c41002125410021284200210d4200210e0c090b2009422088a7210102402009a72204450d00200421030340200628026021062003417f6a22030d000b03402004417f6a22040d000b0b02402001450d004100210441002103410021050340200220053602cc05200220033602c805200220063602c405200220043602c00520024180076a200241c0056a10612002280288072104200228028c072106200228029007210320022802940721052001417f6a22010d000b0b200641908cc500460d0e20062802002101200610202001450d0e20012802002104200110202004450d0e024020042802002201450d000340200410202001210420012802002203210120030d000b0b200410200c0e0b0240203a450d002028450d00202e450d00202810200b0240200a450d00200b450d00201a450d00200b10200b0240200c450d002019450d00201b450d00201910200b0240201e450d002020450d00201f450d00202010200b2006450d0d2007450d0d200610200c0d0b4101211d0b2009422088a7212b2009a7212c200d422088a72127410321214200211341002122410021234100211c4200210d4200210e0c050b0240200a450d00200b450d00201a450d00200b10200b0240200c450d002019450d00201b450d00201910200b0240201e450d002020450d00201f450d00202010200b2006450d0a2007450d0a200610200c0a0b0240200c450d002019450d00201b450d00201910200b0240201e450d002020450d00201f450d00202010200b2006450d092007450d09200610200c090b0240201e450d002020450d00201f450d00202010200b2006450d082007450d08200610200c080b4200211341002122410021230b410021284200210d4200210e0b200020303b00b201200020313a00b101200020333a009301200020343a009201200020353a009101200020243a000b200020183a000a2000201d3a000920004121360200200041a0016a201737020020004198016a2012370200200041f0006a200e370200200041e8006a2009370200200041b8016a2011370000200041b4016a202f360000200041b0016a20293a0000200041a8016a201037020020004194016a203236000020004190016a202a3a000020004188016a201637020020004180016a2015370200200041f8006a2014370200200041dc006a202b360200200041d8006a202c360200200041d4006a202d360200200041d0006a202e360200200041c4006a200f360200200041c0006a201a3602002000413c6a200b360200200041386a200a3602002000412c6a20193602002000410c6a2006360200200041086a20213a0000200041e0006a2013200d42ffffffff0f8384370200200041186a2020ad422086201ead84370200200041106a2027ad4220862007ad84370200200041c8006a2028ad422086203aad84370200200041306a2025ad422086201bad84370200200041206a2026ad422086201fad84370200200041286a20222023418080fc077172201c41ff017141087472200c41ff0171723602000c2f0b0240202b450d00200da7450d00202b10200b0240202e450d00202d450d00202e10200b0240200f450d00203a450d00200f10200b0240200a450d00200b450d00200a10200b201b450d04201910200c040b0240202e450d00202d450d00202e10200b0240200f450d00203a450d00200f10200b0240200a450d00200b450d00200a10200b201b450d03201910200c030b0240200f450d00203a450d00200f10200b0240200a450d00200b450d00200a10200b201b450d02201910200c020b0240200a450d00200b450d00200a10200b201b450d01201910200c010b201b450d00201910200b200041223602000c290b1027000b2007450d00200510200b20060d010c050b2006450d040b200410200c030b410021014200211742002116420021154200211442002113410021070b200020203b0062200020183a00612000201d3a0043200020193a00422000201a3a00412000200c3a00092000411c360200200041e8006a2012370000200041e4006a201f360000200041e0006a201c3a0000200041d8006a2011370200200041c4006a201e360000200041c0006a201b3a0000200041386a200e370200200041306a200d370200200041286a20093702002000411c6a20073602002000410c6a20043602002000410a6a200b3b0100200041086a200a3a0000200041c8006a2014201684201084370200200041186a2001200541ff017172360200200041d0006a2013201584201784370200200041206a200fad4220862008ad84370200200041106a2003ad4220862006ad84370200200041f0006a20024180076a41d00010cd051a0c220b200e422088a721010240200ea72203450d00200321050340200428026021042005417f6a22050d000b03402003417f6a22030d000b0b02402001450d004100210341002105410021060340200220063602e402200220053602e002200220043602dc02200220033602d802200241c0056a200241d8026a106120022802c805210320022802cc05210420022802d005210520022802d40521062001417f6a22010d000b0b200441908cc500460d0020042802002101200410202001450d0020012802002104200110202004450d00024020042802002201450d000340200410202001210420012802002203210120030d000b0b200410200b200041223602000c200b200020083602042000411a360200200041186a200a360200200041146a200b360200200041106a200c3602002000410c6a2007360200200041086a20063602002000411c6a20024180076a41a40110cd051a0c1f0b2007450d00200610200b200041223602000c1d0b200041223602000c1c0b200041223602000c1b0b2003450d020c010b2003450d010b200410200b200041223602000c170b200020013b000d2000201d3b0052200020193a0051200020073a0033200020063a0032200020053a00312000200f3a000b2000200b3a000a200020083a0009200041163602002000410f6a20014110763a0000200041c0006a2011370200200041386a2010370200200041206a2012370200200041186a200d370200200041d8006a2016370000200041d4006a201e360000200041d0006a200a3a0000200041c8006a200e370200200041346a200c360000200041306a201a3a0000200041286a2017370200200041106a20093702002000410c6a20043a0000200041086a20033a0000200041e0006a20024180076a41e00010cd051a0c160b200041223602000c150b200020073a000b200020083a000a200020063a000920004114360200200041306a200e370200200041286a200d370200200041206a2010370200200041186a20093702002000410c6a2005360200200041086a20013a0000200041106a2003ad4220862004ad84370200200041386a20024180076a41880110cd051a0c140b4200211041002104410021014100210f4100211a41002119420021094200210d0b2000201a3a00472000200f3a0042200020043a0041200020013b002a200020043a0029200020063a000b2000200a3a000a200020083a000920004113360200200041cf006a20094230883c0000200041cd006a20094220883d0000200041c9006a20093e0000200041c8006a20193a0000200041c3006a2001360000200041c0006a200b3a0000200041386a2012370200200041306a200d3702002000412c6a2007360000200041286a200c3a0000200041206a2010370200200041186a200e370200200041106a20113700002000410c6a2003360000200041086a20053a0000200041d0006a20024180076a41f00010cd051a0c120b200041223602000c110b200041223602000c100b0b200041003a000b200020063a00092000410f360200200041386a2009370200200041306a200d370200200041286a200e370200200041246a2001360200200041206a200a3602002000411c6a200c360200200041186a2003360200200041146a2007360200200041106a20043602002000410c6a2005360200200041086a20083a0000200041c0006a20024180076a41800110cd051a0c0e0b0240200c450d00200310200b2004450d010b200510200b200041223602000c0b0b200041223602000c0a0b0240201a450d00200f10200b0240200a450d00200a410c6c21042008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c450d030c010b0240201a450d00200f10200b0240200a450d00200a410c6c21042008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c450d020b200810200c010b201a450d00200f10200b200041223602000c050b200020093e00292000200f3a00272000200b3600232000200a3a00222000200c3a00212000201d3a000b2000201e3a000a200020083a0009200041063602002000412f6a20094230883c00002000412d6a20094220883d0000200041386a2010370200200041306a200e370200200041106a200d370200200041286a201a3a0000200041206a20073a00002000410c6a2006360200200041086a20193a0000200041186a201bad422086201cad84370200200041c0006a20024180076a41800110cd051a0c040b200041223602000c030b20004105360200200041e0006a2015370200200041d8006a2016370200200041c8006a2013370200200041c0006a2014370200200041386a2011370200200041306a2012370200200041286a2009370200200041206a200d370200200041186a200e370200200041106a2010370200200041d0006a20173702002000410c6a2004360200200041086a2001360200200041e8006a20024180076a41d80010cd051a0c020b200041223602000c010b200041223602000b200241c0086a24000bf30601067f230041f0006b2102024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a2206360204410121072001200441016a360200200541f001490d06200541847e6a220541034b0d0120050e0402030405020b200041023a00000f0b200041023a00000f0b20064102490d0420042f0001210520012003417d6a3602042001200441036a3602000240200541ef014d0d00410121070c040b200041023a00000f0b20064104490d042004280001210520012003417b6a3602042001200441056a36020041012107200541ffff034b0d02200041023a00000f0b024020064104490d00200041023a000020012003417b6a3602042001200441056a3602000f0b200041023a00000f0b41002105200241003a00682003417f6a21062003417e6a210302400240034020062005460d01200241c8006a20056a200420056a220741016a2d00003a0000200120033602042001200741026a3602002002200541016a22073a00682003417f6a21032007210520074120470d000b200241c6006a20022d004a3a0000200241306a200241d7006a290000370300200241386a200241df006a290000370300200241c0006a200241e7006a2d00003a0000200220022f01483b01442002200229004f370328200228004b2105410021010c010b0240200541ff0171450d00200241003a00680b410121010b200241246a41026a2203200241c4006a41026a2d00003a0000200241086a41086a2207200241286a41086a290300370300200241086a41106a2204200241286a41106a290300370300200241086a41186a2206200241286a41186a2d00003a0000200220022f01443b01242002200229032837030820010d03200241286a41026a20032d00003a0000200241c8006a41086a2007290300370300200241c8006a41106a2004290300370300200241c8006a41186a20062d00003a0000200220022f01243b012820022002290308370348410021070b200020073a0000200020022f01283b0001200041046a2005360200200041086a2002290348370200200041036a2002412a6a2d00003a0000200041106a200241c8006a41086a290300370200200041186a200241c8006a41106a290300370200200041206a200241c8006a41186a2802003602000f0b200041023a00000f0b200041023a00000f0b200041023a00000be20506067f017e027f017e017f017e230041206b220224000240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200024002400240200541037122074103460d0002400240024020070e03000102000b2005410276ad21080c040b410121072006450d0220042d0001210620012003417e6a3602042001200441026a3602002006410874200572220141ffff0371418002490d02200141fcff0371410276ad21080c030b4101210720064103490d01200441036a2d0000210620042f0001210920012003417c6a3602042001200441046a3602002009200641107472410874200572220141808004490d012001410276ad21080c020b02402005410276220a410c4b0d00024002400240200a0e0d00030303010303030303030302000b20064104490d052004350001210820012003417b6a3602042001200441056a36020020084280808080045421074200210b0c060b20064108490d04200429000121082001200341776a3602042001200441096a3602002008428080808080808080015421074200210b0c050b20064110490d03200441096a290000210b2004290001210820012003416f6a3602042001200441116a360200200b428080808080808080015421070c040b200a41046a220941104b0d022003417e6a2103200441026a21044100210541012107200241186a210c420021084200210b03402003417f460d01200241106a2004417f6a3100004200200541037441f8007110d00520012003360204200120043602002003417f6a2103200441016a2104200c290300200b84210b20022903102008842108200541016a22062105200641ff01712009490d000b2002427f427f41e800200a4103746b41f8007110d1052008200229030058200b200241086a290300220d58200b200d511b21070c030b0c020b4200210b410021070c010b410121070b20002008370308200041106a200b37030020002007ad370300200241206a24000bee0306047f017e027f017e027f017e230041106b220224000240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22033602042001200441016a360200200541014b0d00410021040240024020050e020100010b2002200110b70120022802002204450d0120022902042106200128020421030b2006a721052003450d03200128020022072d0000210820012003417f6a22033602042001200741016a360200200841014b0d034100210720080e020201020b200041013602000c030b2002200110b70120022802002207450d0120022902042109200128020421030b2009a7210802402003450d002001280200220a2d0000210b20012003417f6a3602042001200a41016a360200200b41014b0d004100210302400240200b0e020100010b2002200110b70120022802002203450d012002290204210c0b2000200436020420004100360200200041206a200c3702002000411c6a2003360200200041186a2009422088a7360200200041146a2008360200200041106a20073602002000410c6a2006422088a7360200200041086a20053602000c020b2000410136020002402007450d002008450d00200710200b2004450d012005450d01200410200c010b200041013602002004450d002005450d00200410200b200241106a24000bad0406017e027f027e037f027e057f420121020240200128020422034110490d002001280200220441086a2900002105200429000021062001200441106a3602002001200341706a220736020420074104490d002004280010210820012003416c6a22073602042001200441146a360200200741034d0d00200428001421092001200341686a22073602042001200441186a36020020074110490d00200441206a290000210a2004290018210b2001200341586a22073602042001200441286a36020020074104490d002004280028210c2001200341546a220736020420012004412c6a36020020074104490d00200428002c210d2001200341506a22073602042001200441306a36020020074104490d002004280030210e20012003414c6a22073602042001200441346a36020020074104490d002004280034210f2001200341486a22073602042001200441386a36020020074104490d00200428003821102001200341446a220736020420012004413c6a36020020074110490d0020002006370308200041286a200429003c370300200041206a200a370300200041186a200b370300200041106a2005370300200041d0006a2010360200200041cc006a200f360200200041c8006a200e360200200041c4006a200d360200200041c0006a200c3602002000413c6a2009360200200041386a2008360200200041306a200441c4006a2900003703002001200341b47f6a3602042001200441cc006a360200420021020b200020023703000bcd0201097f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b20012802042203417f4c0d01200228020c21040240024020030d00410121050c010b2003101e2205450d030b024002402004450d004100210641002107034020012802042208450d02200128020022092d0000210a20012008417f6a3602042001200941016a360200200a41044f0d02200741016a2108024020072003470d00024020062008200620084b1b22034100480d000240024020070d002003101e21050c010b200520072003102221050b20050d0120034101102d000b1027000b200520076a200a3a0000200641026a21062008210720042008470d000b0b2000200336020420002005360200200041086a20043602000c010b200041003602002003450d00200510200b200241106a24000f0b102c000b20034101102d000b8f0a03147f017e047f230041c0006b22022400200241106a2001105f02400240024002402002280210450d00200041003602000c010b200128020422034160712204417f4c0d022002280214210502400240200341057622060d00410821070c010b2004101e2207450d020b024002402005450d00410021084100210303400240024002400240200128020422044102490d00200128020022092f0000210a20012004417e6a220b3602042001200941026a2209360200200b450d0020092d0000210b20012004417d6a220c3602042001200941016a360200200b41024b0d0002400240024002400240200b0e03000102000b200241306a200110eb0120022d00304113470d020c040b200c4104490d032009280001210d2001200441796a3602042001200941056a3602004101210e41002104410021090c020b200241086a2001105f20022802080d0220012802042204417071220b417f4c0d0b200228020c210f024002400240200441047622090d00410821100c010b200b101e2210450d010b0240200f450d00410021114100210c4100210b03400240024020012802042212450d00200128020022042d0000211320012012417f6a22143602042001200441016a360200201341014b0d0002400240024020130e020001000b20144104490d022012417b6a2112200441056a211320042800012115410021140c010b20144108490d01201241776a2112200441096a211320042900012116410121140b200b41016a21042001201236020420012013360200200b2009470d0120112004201120044b1b220941ffffffff00712009470d09200941047422124100480d0902400240200b0d002012101e21100c010b2010200c2012102221100b20100d0120124108102d000b2009450d06201010200c060b2010200c6a220b2014360200200b41086a2016370200200b41046a2015360200201141026a2111200c41106a210c2004210b200f2004470d000b0b2010450d03200941807e7121044102210e200f21172010210d0c020b200b4108102d000b2002280230220941807e712104200228023c211820022802382119200228023421174100210e0b200241286a41046a200241306a41046a2f01003b010020022002280130360228200941ff0171200472211a0c010b200e210a4103210e0b200241206a41046a2209200241286a41046a2f01003b010020022002280228360220200e4103460d04200341016a2104200241186a41046a220b20092f01003b01002002200228022036021820062003470d01200341017422062004200620044b1b220641ffffff3f712006470d00200641057422094100480d000240024020030d002009101e21070c010b200720034105742009102221070b20070d0120094108102d000b1027000b200720034105746a2203200d3602042003200e360200200341186a200a3b0100200341146a2018360200200341106a20193602002003410c6a2017360200200341086a201a3602002003411a6a20022802183601002003411e6a200b2f01003b0100200841206a2108200a210e2004210320042005470d000b0b2000200636020420002007360200200041086a20053602000c010b2000410036020002402003450d00200741086a2103034002400240200341786a280200220141014b0d00024020010e020002000b2003106b0c010b2003280200450d002003417c6a28020010200b200341206a2103200841606a22080d000b0b2006450d00200710200b200241c0006a24000f0b20044108102d000b102c000b941104087f047e137f027e23004190016b220224000240024002400240024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a2206360204410121072001200441016a360200200541014b0d00410021080240024020050e020100010b20064104490d012004280001210920012003417b6a2206360204410521072001200441056a360200410121080b20064104490d03200420076a2203280000210720012006417c6a22053602042001200341046a3602002005450d0420032d0004210520012006417b6a22043602042001200341056a360200200541014b0d044102210320050e020201020b200041023602500c0c0b200241e8006a200110f803200241d0006a41086a220520024184016a290200370300200241d0006a41106a22042002418c016a2802003602002002200229027c370350200228027822034102460d02200241e8006a41086a290300210a2002290368210b200241386a41106a2004280200360200200241386a41086a20052903003703002002200229035037033820034103460d02200128020421040b200241086a41106a200241386a41106a280200360200200241086a41086a200241386a41086a290300370300200220022903383703082004450d02200128020022062d0000210520012004417f6a22043602042001200641016a360200200541014b0d02410221060240024020050e020100010b200241e8006a200110f803200241d0006a41086a220520024184016a290200370300200241d0006a41106a22042002418c016a2802003602002002200229027c370350200228027822064102460d03200241e8006a41086a290300210c2002290368210d200241386a41106a2004280200360200200241386a41086a20052903003703002002200229035037033820064103460d03200128020421040b200241206a41106a200241386a41106a280200360200200241206a41086a200241386a41086a290300370300200220022903383703202004450d032001280200220e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d03410021110240024020050e020100010b200f4102490d04200e2f0001211220012004417d6a22053602042001200e41036a36020020054102490d04200e2f0003211320012004417b6a220f3602042001200e41056a2210360200410121110b200f450d0420102d000021052001200f417f6a22043602042001201041016a220e360200200541014b0d04410021140240024020050e020100010b20044104490d05201028000121152001200f417b6a22043602042001201041056a220e360200410121140b2004450d05200e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d05410021160240024020050e020100010b200f4104490d06200e280001211720012004417b6a220f3602042001200e41056a2210360200410121160b200f450d0620102d000021052001200f417f6a22043602042001201041016a220e360200200541014b0d06410021180240024020050e020100010b20044104490d07201028000121192001200f417b6a22043602042001201041056a220e360200410121180b2004450d07200e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d074100211a0240024020050e020100010b200f4104490d08200e280001211b20012004417b6a220f3602042001200e41056a22103602004101211a0b200f450d0820102d000021052001200f417f6a22043602042001201041016a220e360200200541014b0d084100211c0240024020050e020100010b20044104490d092010280001211d2001200f417b6a22043602042001201041056a220e3602004101211c0b2004450d09200e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d094100211e0240024020050e020100010b200f4104490d0a200e280001211f20012004417b6a220f3602042001200e41056a22103602004101211e0b0240200f450d0020102d000021052001200f417f6a22043602042001201041016a360200200541014b0d004100210e0240024020050e020100010b20044104490d01201028000121202001200f417b6a3602042001201041056a3602004101210e0b200241e8006a41106a200241086a41106a2802002201360200200241e8006a41086a200241086a41086a2903002221370300200241d0006a41086a2205200241206a41086a290300370300200241d0006a41106a2204200241206a41106a280200360200200220022903082222370368200220022903203703502000200a3703082000200b370300200041306a200c3703002000200d37032820002003360210200020223702142000411c6a2021370200200041246a20013602002000200636023820004198016a20133b010020004196016a20123b010020004194016a20113b010020004190016a20203602002000418c016a200e36020020004188016a201f36020020004184016a201e36020020004180016a201d360200200041fc006a201c360200200041f8006a201b360200200041f4006a201a360200200041f0006a2019360200200041ec006a2018360200200041e8006a2017360200200041e4006a2016360200200041e0006a2015360200200041dc006a2014360200200041d8006a200736020020002009360254200020083602502000200229035037023c200041c4006a2005290300370200200041cc006a20042802003602002000419e016a2002413c6a2f01003b01002000200228013836019a010c0b0b200041023602500c0a0b200041023602500c090b200041023602500c080b200041023602500c070b200041023602500c060b200041023602500c050b200041023602500c040b200041023602500c030b200041023602500c020b200041023602500c010b200041023602500b20024190016a24000bf00204027f017e017f077e0240024020012802042202450d0020012802002203310000210420012002417f6a22053602042001200341016a3602002005450d012003310001210620012002417e6a22053602042001200341026a3602002005450d012003310002210720012002417d6a22053602042001200341036a3602002005450d012003310003210820012002417c6a22053602042001200341046a3602002005450d012003310004210920012002417b6a22053602042001200341056a3602002005450d012003310005210a20012002417a6a22053602042001200341066a3602002005450d012003310006210b2001200241796a22053602042001200341076a3602002005450d01200041003a00002003310007210c2001200241786a3602042001200341086a3602002000200c423886200b42308684200a422886842009422086842008421886842007421086842006420886842004843700010f0b200041013a00000f0b200041013a00000b800301057f230041d0006b220224002002410036022820014110200241286a100321030240024002400240024020022802282204417f460d0020030d010b200041023a00000c010b2004450d0220032d0000220541014b0d02410021010240024020050e020100010b41002101200241003a00482004417f6a2105200341016a2106034020052001460d03200241286a20016a200620016a2d00003a00002002200141016a22043a00482004210120044120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a29030037030020022002290328370308410121010b200020013a000020002002290308370001200041096a200241106a290300370000200041116a200241186a290300370000200041196a200241206a290300370000200310200b200241d0006a24000f0b200141ff0171450d00200241003a00480b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000bb004010a7f230041d0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020422034160712204417f4c0d012002280204210502400240200341057622060d00410121070c010b2004101e2207450d030b02402005450d00410021080340200241003a00482008220941016a21082001280204417f6a21034100210402400240024003402003417f460d01200241286a20046a2001280200220a2d00003a0000200120033602042001200a41016a3602002002200441016a220a3a00482003417f6a2103200a2104200a4120470d000b200241086a41186a2204200241286a41186a290300370300200241086a41106a220a200241286a41106a290300370300200241086a41086a220b200241286a41086a2903003703002002200229032837030820062009470d020240200941017422032008200320084b1b220641ffffff3f712006470d002006410574220341004e0d020b1027000b0240200441ff0171450d00200241003a00480b200041003602002006450d04200710200c040b0240024020090d002003101e21070c010b200720094105742003102221070b2007450d060b200720094105746a22032002290308370000200341186a2004290300370000200341106a200a290300370000200341086a200b29030037000020082005470d000b0b2000200636020420002007360200200041086a20053602000b200241d0006a24000f0b102c000b20044101102d000b20034101102d000b922901057f230041106b2203240020034100360208200342013703002003200236020c2003410c6a2003106302402002450d00200120024105746a2104034020012d0000210502400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d022003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141016a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d032003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141026a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d042003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141036a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d052003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141046a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d062003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141056a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d072003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141066a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d082003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141076a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d092003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141086a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0a2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141096a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0b2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410a6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0c2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410b6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0d2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410c6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0e2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410d6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0f2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410e6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d102003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410f6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d112003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141106a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d122003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141116a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d132003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141126a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d142003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141136a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d152003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141146a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d162003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141156a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d172003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141166a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d182003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141176a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d192003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141186a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1a2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141196a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1b2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411a6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1c2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411b6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1d2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411c6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1e2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411d6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1f2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411e6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d202003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411f6a2d000021050240200328020420032802082202460d00200328020021060c210b200241016a22062002490d00200241017422072006200720064b1b22074100480d000240024020020d002007101e21060c010b200328020020022007102221060b02402006450d002003200736020420032006360200200328020821020c210b20074101102d000b1027000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2003200241016a360208200620026a20053a0000200141206a22012004470d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000b830e03047f017e027f230041106b22022400200241003602082002420137030002402001280200220341044b0d000240024002400240024002400240024020030e050004030201000b02404101101e2203450d00200242818080801037020420022003360200200341013a00002001280204210420022001410c6a280200220336020c2002410c6a2002106302402003450d002004200341286c6a210503402004200210ca01200441206a29030021060240024020022802042207200228020822036b4108490d00200228020021070c010b200341086a22082003490d08200741017422032008200320084b1b22034100480d080240024020070d002003101e21070c010b200228020020072003102221070b02402007450d002002200336020420022007360200200228020821030c010b20034101102d000b2002200341086a360208200720036a20063700002005200441286a2204470d000b0b200141106a2802002107024020022802042204200228020822036b4104490d00200228020021040c080b200341046a22082003490d05200441017422032008200320084b1b22034100480d050240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c080b20034101102d000b41014101102d000b024002404101101e2203450d00200242818080801037020420022003360200200341053a000020012802042108024020022802042207200228020822036b4104490d00200341046a2104200228020021070c020b200341046a22042003490d05200741017422012004200120044b1b22014100480d050240024020070d002001101e21070c010b200228020020072001102221070b02402007450d0020022001360204200220073602000c020b20014101102d000b41014101102d000b20022004360208200720036a20083600000c060b024002404101101e2203450d00200242818080801037020420022003360200200341043a000020012802042107024020022802042204200228020822036b4104490d00200228020021040c020b200341046a22082003490d04200441017422012008200120084b1b22084100480d040240024020040d002008101e21040c010b200228020020042008102221040b02402004450d0020022008360204200220043602000c020b20084101102d000b41014101102d000b2002200341046a360208200420036a20073600000c050b024002404101101e2203450d00200242818080801037020420022003360200200341033a0000200141086a2903002106024020022802042207200228020822036b4108490d00200341086a2104200228020021070c020b200341086a22042003490d03200741017422082004200820044b1b22084100480d030240024020070d002008101e21070c010b200228020020072008102221070b02402007450d0020022008360204200220073602000c020b20084101102d000b41014101102d000b20022004360208200720036a20063700000c040b024002404101101e2203450d00200242818080801037020420022003360200200341023a000020012802042107024020022802042204200228020822036b4104490d00200228020021040c020b200341046a22082003490d02200441017422052008200520084b1b22084100480d020240024020040d002008101e21040c010b200228020020042008102221040b02402004450d0020022008360204200220043602000c020b20084101102d000b41014101102d000b2002200341046a360208200420036a2007360000200128020821042002200141106a280200220336020c2002410c6a2002106302402003450d002004200341286c6a210503402004200210ca01200441206a29030021060240024020022802042207200228020822036b4108490d00200228020021070c010b200341086a22082003490d03200741017422032008200320084b1b22034100480d030240024020070d002003101e21070c010b200228020020072003102221070b02402007450d002002200336020420022007360200200228020821030c010b20034101102d000b2002200341086a360208200720036a20063700002005200441286a2204470d000b0b200141146a2802002107024020022802042204200228020822036b4104490d00200228020021040c020b200341046a22082003490d00200441017422032008200320084b1b22034100480d000240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c020b20034101102d000b1027000b2002200341046a360208200420036a20073600000c010b2002200341046a360208200420036a20073600000b20002002290300370200200041086a200241086a280200360200200241106a24000bd60201037f0240024002400240024002400240024002400240024002400240024020012802000e0400010203000b410121024101101e2201450d05200141003a0000410121030c040b4101101e2202450d05200241013a00002001280204210320024101410510222202450d062002200336000120012802082104410a210320024105410a10222201450d07200120043600050c020b410121024101101e2201450d07200141023a0000410121030c020b4101101e2202450d07200241033a00002001280204210320024101410510222202450d082002200336000120012802082104410a210320024105410a10222201450d09200120043600050b410921020b2000200236020820002003360204200020013602000f0b41014101102d000b41014101102d000b41054101102d000b410a4101102d000b41014101102d000b41014101102d000b41054101102d000b410a4101102d000be905020c7f037e230041b0016b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020441216e220341216c2204417f4c0d01200228020421050240024020040d00410121060c010b2004101e2206450d030b02402005450d00410021070340200241003a00a8012007220841016a21072001280204417f6a210441002109024002400240024003402004417f460d0120024188016a20096a2001280200220a2d00003a0000200120043602042001200a41016a3602002002200941016a220b3a00a8012004417f6a2104200b2109200b4120470d000b200241e8006a41186a220b20024188016a41186a290300370300200241e8006a41106a220c20024188016a41106a290300370300200241e8006a41086a220d20024188016a41086a29030037030020022002290388013703682004417f460d01200a2d00012109200120043602042001200a41026a360200200941044f0d01200241286a41086a200d290300220e370300200241286a41106a200c290300220f370300200241286a41186a200b2903002210370300200241086a41086a220b200e370300200241086a41106a220a200f370300200241086a41186a220c201037030020022002290368220e3703282002200e37030820032008470d030240200841017422042007200420074b1b2203ad42217e220e422088a70d00200ea7220441004e0d030b1027000b200941ff0171450d00200241003a00a8010b200041003602002003450d04200610200c040b0240024020080d002004101e21060c010b2006200841216c2004102221060b2006450d060b2006200841216c6a22042002290308370000200b290300210e200a290300210f200c2903002110200420093a0020200441186a2010370000200441106a200f370000200441086a200e37000020072005470d000b0b2000200336020420002006360200200041086a20053602000b200241b0016a24000f0b102c000b20044101102d000b20044101102d000bd9a7010a037f017e027f017e037f017e067f037e187f087e23004180096b2201240020014180066a10e10420012802840621020240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001280280060e0400010216000b20022000470d15200141023a009c062001410a3a00980620014198066a1077200141b0076a41086a22004200370300200142003703b0074195dec400411a200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210020012802b0072202417f460d032000450d03200120023602c408200120003602c008200141b0076a200141c0086a10e30120012802b0072203450d0220012902b407210402402002450d00200010200b2004422088a721020c0a0b20022000470d14200141043a009c062001410a3a00980620014198066a1077200141b0076a41086a22004200370300200142003703b00741caf5c400411f200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072202417f470d0041e40021020c010b024020000d0041e40021020c010b20024104490d0420002800002102200010200b10792105200141b0076a41086a22004200370300200142003703b00741a1dfc4004115200141b0076a100020014198066a41086a2000290300370300200120012903b007370398064101101e2200450d04200041023a000020004101410510222200450d052000200520026a36000120014198066a411020004105100520001020200141053a009c062001410a3a00980620014198066a10770c140b20022000470d13200141063a009c062001410a3a00980620014198066a107720014100360290062001420837038806200141b0076a41086a22004200370300200142003703b00741afdec400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210020012802b0072202417f460d062000450d06200120023602c408200120003602c008200141b0076a200141c0086a10e30120012802b0072206450d0520012902b40721072002450d07200010200c070b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b4100210242002104410121030c060b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41014101102d000b41054101102d000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41012106420021070b024002402007422088a722000d0041082108410021020c010b200041057421094108210841002100410021022006210502400240034020014198066a200510eb040240024020022000460d002000210a0c010b200041016a22022000490d142000410174220a2002200a20024b1b220aad4288017e220b422088a70d14200ba722024100480d140240024020000d002002101e21080c010b200820004188016c2002102221080b2008450d02200120083602880620002102200a21000b200541206a2105200820024188016c6a20014198066a41880110cd051a200241016a2102200941606a2209450d020c000b0b20024108102d000b2001200a36028c0620012002360290060b02402007a7450d00200610200b2001420037029c08200141908cc500360298080240024002402002450d00200820024188016c6a210c200141b4066a210d0340024020082d0060450d00200841e0006a41016a21092001280298082206210e200128029c08220f21100240034002400240200e2f010622110d00410021050c010b20114105742100200e41086a2102417f21050340024020000d00201121050c020b20092002412010cf05220a450d03200041606a2100200541016a2105200241206a2102200a417f4a0d000b0b02402010450d002010417f6a2110200e20054102746a41a8086a280200210e0c010b0b200141c0086a41186a200941186a2200290000370300200141c0086a41106a200941106a2202290000370300200141c0086a41086a200941086a2205290000370300200120092900003703c008200141b0076a41186a220a2000290000370300200141b0076a41106a22002002290000370300200141b0076a41086a22022005290000370300200120092900003703b007200141e0056a200910d704200141e0056a41186a2903002107200141e0056a41086a290300211220012903f005210b20012903e0052113200d41086a2002290300370000200d41106a2000290300370000200d41186a200a290300370000200d20012903b007370000200141003602b006200142083703a8062001200b20137c2213370398062001200720127c2013200b54ad7c3703a006200141b0076a20014198086a200141c0086a20014198066a10ef04024020012802c0072200450d0020012802c407450d00200010200b2001280298082106200128029c08210f0b024003400240024020062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200541016a210520092002412010cf05220a450d03200041606a2100200241206a2102200a417f4a0d000b0b200f450d02200f417f6a210f200620054102746a41a8086a28020021060c000b0b20014198066a41186a220a200841386a29000037030020014198066a41106a220e200841306a29000037030020014198066a41086a220f200841286a2900003703002001200829002037039806200841086a2903002107200841186a2903002112200829030021132008290310210b200620054106746a220941f8026a2105024020094180036a22022802002200200941fc026a280200470d00200041016a22092000490d15200041017422062009200620094b1b2209ad42307e2214422088a70d152014a722064100480d150240024020000d002006101e21000c010b2005280200200041306c2006102221000b2000450d0420052000360200200541046a2009360200200228020021000b2005280200200041306c6a2200201220077c200b20137c2207200b54ad7c370308200020073703002000200129039806370310200041186a200f290300370300200041206a200e290300370300200041286a200a2903003703002002200228020041016a3602000b20084188016a2208200c470d000b0b200141a0076a41086a20014198086a41086a28020036020020012001290398083703a007200141b0076a41086a22004200370300200142003703b0074195dec400411a200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a10032100024020012802b0072202417f460d002000450d00200120023602c408200120003602c008200141b0076a200141c0086a10e301024020012802b007220c450d0020012902b40721142002450d03200010200c030b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b4101210c420021140c010b20064108102d000b02402014422088a72200450d00200c20004105746a2110200141b4066a2111200c210f0340200f220a41206a210f200141a0076a210020012802a40721080240034002400240200028020022062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200a2002412010cf052209450d03200041606a2100200541016a2105200241206a21022009417f4a0d000b0b02402008450d002008417f6a2108200620054102746a41a8086a21000c010b0b200141c0086a41186a200a41186a2200290000370300200141c0086a41106a200a41106a2202290000370300200141c0086a41086a200a41086a22052900003703002001200a2900003703c008200141b0076a41186a22092000290000370300200141b0076a41106a22002002290000370300200141b0076a41086a220220052900003703002001200a2900003703b007200141c0056a200a10d704200141c0056a41186a2903002107200141c0056a41086a290300211220012903d005210b20012903c0052113201141086a2002290300370000201141106a2000290300370000201141186a2009290300370000201120012903b007370000200141003602b006200142083703a8062001200b20137c2213370398062001200720127c2013200b54ad7c3703a006200141b0076a200141a0076a200141c0086a20014198066a10ef0420012802c0072200450d0020012802c407450d00200010200b200f2010470d000b0b02402014a7450d00200c10200b20012802a8072102200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210002400240024002400240024002400240024020012802b0072205417f470d00410a21050c010b024020000d00410a21050c010b20054104490d0120002800002105200010200b20022005460d0620012802a8072102200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072205417f470d00410a21050c010b024020000d00410a21050c010b20054104490d0220002800002105200010200b200220054d0d06200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072202417f470d00410a21150c010b024020000d00410a21150c010b20024104490d0320002800002115200010200b20012802a80721002001200141a0076a3602f007200020154d0d06200141b0076a41086a22004200370300200142003703b0074195dec400411a200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210020012802b0072202417f460d042000450d04200120023602c408200120003602c008200141b0076a200141c0086a10e30120012802b0072216450d0320012902b407210b2002450d05200010200c050b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b4200210b410121160b200ba721170240200b422088a72200450d00201620004105746a211820012802f0072200280200210f200028020421102016210e034020014198066a41186a200e41186a29000037030020014198066a41106a200e41106a29000037030020014198066a41086a200e41086a2900003703002001200e29000037039806200e41206a210e200f210a2010210802400240034002400240200a2f010622060d00410021050c010b20064105742100200a41086a2102417f21050340024020000d00200621050c020b20014198066a2002412010cf052209450d03200041606a2100200541016a2105200241206a21022009417f4a0d000b0b2008450d022008417f6a2108200a20054102746a41a8086a280200210a0c000b0b20014198086a41086a220020014198066a41086a29030037030020014198086a41106a220220014198066a41106a29030037030020014198086a41186a220520014198066a41186a2903003703002001200129039806220b3703c0082001200b3703980802400240024002400240024002400240024002400240024002400240024002400240024002404120101e2203450d002003200129039808370000200341186a2005290300370000200341106a2002290300370000200341086a20002903003700000240024002400240200e2018470d00410121194101211a0c010b410121194101211a034020012802f0072200280200210f20002802042110034020014198066a41186a2211200e41186a29000037030020014198066a41106a220c200e41106a29000037030020014198066a41086a220d200e41086a2900003703002001200e29000037039806200e41206a210e200f210a201021080240034002400240200a2f010622060d00410021050c010b20064105742100200a41086a2102417f21050340024020000d00200621050c020b20014198066a2002412010cf052209450d03200041606a2100200541016a2105200241206a21022009417f4a0d000b0b02402008450d002008417f6a2108200a20054102746a41a8086a280200210a0c010b0b200e2018470d010c030b0b20014198086a41086a200d290300220b37030020014198086a41106a200c290300220737030020014198086a41186a201129030022123703002001200129039806221337039808200141c0086a41186a22022012370300200141c0086a41106a22052007370300200141c0086a41086a2209200b370300200120133703c0080240201a2019470d00201941016a22002019490d2b2019410174220a2000200a20004b1b221a41ffffff3f71201a470d2b201a41057422004100480d2b0240024020190d002000101e21030c010b200320194105742000102221030b2003450d030b200320194105746a220020012903c008370000200041186a2002290300370000200041106a2005290300370000200041086a2009290300370000201941016a2119200e2018470d000b0b02402017450d00201610200b201920154d0d032001200141f0076a3602b0072001200141b0076a3602980620194115490d062019410176221b41ffffff3f71201b470d1a201b4105742200417f4c0d1a4101211c02402000450d002000101e221c450d020b200341606a211d4100211e4104211f410021202019212103400240024020212218417f6a22000d0041012105410021210c010b2018417e6a210f200320004105746a210a2001280298062802002802002200280200221021082000280204221121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d00420021124200210b0c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b2003200f4105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d0042002113420021070c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b0240024002400240024002402012201354200b200754200b2007511b450d00024003400240200f22210d00410021210c020b2021417f6a210f200320214105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d00420021124200210b0c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b2003200f4105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d0042002113420021070c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b2012201354200b200754200b2007511b0d000b0b20182021490d02201820194b0d04201820216b22054101762209450d01201d20184105746a2100200320214105746a2102034020014198086a41186a220a200241186a220829000037030020014198086a41106a2206200241106a220e29000037030020014198086a41086a220f200241086a22102900003703002001200229000037039808200041086a2211290000210b200041106a220c2900002107200041186a220d29000021122002200029000037000020082012370000200e20073700002010200b370000200d200a290300370000200c20062903003700002011200f2903003700002000200129039808370000200041606a2100200241206a21022009417f6a22090d000c020b0b03400240200f22210d0041002121201821050c070b2021417f6a210f200320214105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d00420021124200210b0c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b2003200f4105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d0042002113420021070c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b201220135a200b20075a200b2007511b0d000b201820216b21050b2021450d04200541094b0d04201820194b0d01201820216b21052021417f6a2100201d20214105746a2102034020182000490d0b2002200541016a220520014198066a108a022000417f6a220920004f0d04200241606a2102200921002005410a490d000c040b0b20212018103b000b20182021417f6a2200490d080b20182019103a000b200941016a21210b024002400240024002402020201e460d00202021000c010b201e41016a2200201e490d2d201e41017422022000200220004b1b220241ffffffff01712002470d2d200241037422004100480d2d02400240201e0d002000101e211f0c010b201f201e41037420001022211f0b201f450d01201e21002002211e0b201f20004103746a2200200536020420002021360200202041016a2222212020224102490d020c010b20004104102d000b024003400240024002400240201f2022417f6a22204103746a2200280200450d002022410374201f6a220941746a2802002205200028020422024d0d000240202241024d0d00201f2022417d6a22234103746a2802042200200220056a4d0d02202241034d0d00200941646a280200200020056a4d0d020b202221200c060b20224103490d0120002802042102201f2022417d6a22234103746a28020421000b20002002490d010b2022417e6a21230b0240024002400240024002402022202341016a22244b2225450d00202220234b2226450d01201f20234103746a2227280204222820272802006a2200201f20244103746a2229280200222a490d02200020194b0d032003202a4105746a22172029280204222b41057422026a2108200320004105746a210d2000202a6b2205202b6b2200202b4f0d04201c20082000410574220210cd05221620026a211802400240202b4101480d00200041014e0d010b200821112016210a0c060b200128029806212c200821110340201141606a210a201841606a2108202c28020028020022002802002206210e2000280204220f211002400240034002400240200e2f0106220c0d00410021050c010b200c4105742100200e41086a2102417f21050340024020000d00200c21050c020b200541016a210520082002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020100d00420021124200210b0c030b2010417f6a2110200e20054102746a41a8086a280200210e0c000b0b200e20054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b0240024003400240024020062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b0240200f0d0042002113420021070c030b200f417f6a210f200620054102746a41a8086a28020021060c000b0b200620054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b200d41606a220d200a20082012201354200b200754200b2007511b22021b2200290000370000200d41186a200041186a290000370000200d41106a200041106a290000370000200d41086a200041086a2900003700002018200820021b211802402017200a201120021b2211490d002016210a0c070b2016210a20162018490d000c060b0b41d0e0c60020242022102a000b41d0e0c60020232022102a000b202a2000103b000b20002019103a000b201c2017200210cd05220020026a211802400240202b4101480d002005202b4a0d010b201721112000210a0c010b20012802980621162000210a201721110340201628020028020022002802002206210e2000280204220f211002400240034002400240200e2f0106220c0d00410021050c010b200c4105742100200e41086a2102417f21050340024020000d00200c21050c020b200541016a210520082002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020100d00420021124200210b0c030b2010417f6a2110200e20054102746a41a8086a280200210e0c000b0b200e20054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b0240024003400240024020062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b0240200f0d0042002113420021070c030b200f417f6a210f200620054102746a41a8086a28020021060c000b0b200620054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b20112008200a2012201354200b200754200b2007511b22021b2200290000370000201141186a200041186a290000370000201141106a200041106a290000370000201141086a200041086a290000370000200a200a41206a20021b210a201141206a2111200841206a200820021b2208200d4f0d012018200a4b0d000b0b2011200a2018200a6b41607110cd051a02402026450d002027202a360200202741046a2028202b6a3602002025450d022029202941086a20222024417f736a41037410ce051a20202122202041014d0d030c010b0b41bcf8c60020232022102a000b41fad8c200411d41a888c6001028000b2021450d060c000b0b20004101102d000b20004101102d000b41204101102d000b201a450d14200310200c140b20002018103b000b0240201e450d00201f10200b201b450d01201c10200c010b4102210020194102490d0020032019417e6a22024105746a2105034020192002490d022005200020014198066a108a02200541606a2105200041016a21002002417f6a2202417f470d000b0b201920156b2200450d0c200320004105746a21212003212a0340202a220841206a212a20012802f007222928020421062029210002400240034002400240200028020022092f0106220e0d00410021020c010b200e410574210a417f21024100210003400240200a2000470d00200e21020c020b200241016a21022008200920006a41086a412010cf052205450d03200041206a21002005417f4a0d000b0b2006450d022006417f6a2106200920024102746a41a8086a21000c000b0b20292029280208417f6a360208024002402006450d00200241027420096a41ac086a280200210002402006417f6a2205450d00034020002802a80821002005417f6a22050d000b0b0240024020002f01060d00410021000c010b200041908cc500460d060b200041106a290000210b200041186a2900002107200041206a290000211220002900082113200041086a200041286a20002f0106220541057441606a10ce051a200041f0026a290300211420004180036a290300212d200041f8026a290300210420004190036a290300212e20004198036a290300212f200041a0036a290300213020002903e80221312000290388032132200041e8026a200041a8036a200541067441406a10ce051a20002005417f6a3b0106200920024105746a41086a220541186a2012370000200520073700102005200b37000820052013370000200941e8026a20024106746a220241386a2030370200200241306a202f370200200241286a202e37020020022032370220200241106a2205290300210b20052004370300200241186a202d37030020022031370300200241086a20143703000c010b200941908cc500460d05200941086a220020024105746a2000200241016a22054105746a2002417f73220020092f01066a41057410ce051a200941e8026a220a20024106746a220241106a290300210b2002200a20054106746a200020092f01066a41067410ce051a200920092f0106417f6a3b0106200921000b024020002f010641044b0d0041002102034020002802002209450d010240024020002f010422000d00410021054100210d20092f01060d0141e5dac500412841a888c6001028000b2000417f6a21054101210d0b200241016a21110240200941a8086a2200200541016a220a410274220c6a220628020022082f0106220e2000200541027422276a2200280200220f2f010622106a410b490d000240200d0d00024002400240200e450d00200841206a2900002107200841186a2900002112200841106a290000211320082900082114200841086a200841286a200e41057441606a10ce051a200841a0036a290300212d20084198036a290300210420084190036a290300212e20084180036a290300212f200841f8026a2903002130200841f0026a2903002131200829038803213220082903e8022133200841e8026a200841a8036a20082f0106220a41067441406a10ce051a20020d0141002110410121110c020b41f5a6c000412041a888c6001028000b20082802a8082110200841a8086a220a200841ac086a200e41027410ce051a41002106201041003602000340200a280200220f20063b0104200f2008360200200a41046a210a200e200641016a2206470d000b2002417f6a210620082f0106210a0b2008200a417f6a3b0106200920054105746a220a41206a2208290000213420082007370000200a41186a2208290000210720082012370000200a41106a2208290000211220082013370000200a41086a220a2900002113200a2014370000200920054106746a22054180036a220929030021142009202f370300200541f8026a2209290300212f20092030370300200541f0026a2209290300213020092031370300200541e8026a2209290300213120092033370300200541a0036a220929020021332009202d37020020054198036a2209290200212d2009200437020020054190036a220929020021042009202e37020020054188036a2205290200212e200520323702002000280200210002402002450d002010450d0a2011417e6a2006470d0b20002f01062205410a4b0d0c200020054105746a220241206a2034370000200241186a2007370000200241106a2012370000200241086a2013370000200020054106746a220241a0036a203337030020024198036a202d37030020024190036a200437030020024188036a202e37030020024180036a2014370300200241f8026a202f370300200241f0026a2030370300200241e8026a20313703002000200541016a22024102746a41a8086a22052010360200200020002f010641016a3b01062005280200220520023b0104200520003602000c040b20002f01062205410b4f0d0c200020054105746a220241206a2034370000200241186a2007370000200241106a2012370000200241086a2013370000200020054106746a220241f8026a202f370300200241f0026a2030370300200241e8026a2031370300200241a0036a203337030020024198036a202d37030020024190036a200437030020024188036a202e37030020024180036a2014370300200020002f010641016a3b01060c030b0240024002402010450d00200f2010417f6a220a4106746a220041a0036a290300210720004198036a290300211220004190036a290300211320004188036a290300211420004180036a290300212d200041f8026a2903002104200041f0026a290300212e200041e8026a290300212f200f200a4105746a220041206a2900002130200041186a2900002131200041106a2900002132200041086a290000213320020d014100210a410121110c020b41f5a6c000412041a888c6001028000b200f20104102746a41a8086a280200220a41003602002002417f6a210e0b200f200f2f0106417f6a3b0106200920054105746a220041206a2208290000213420082030370000200041186a2208290000213020082031370000200041106a2208290000213120082032370000200041086a2200290000213220002033370000200920054106746a22004180036a220529030021332005202d370300200041f8026a2205290300212d20052004370300200041f0026a220529030021042005202e370300200041e8026a2205290300212e2005202f370300200041a0036a2205290200212f2005200737020020004198036a220529020021072005201237020020004190036a220529020021122005201337020020004188036a22002902002113200020143702002006280200210502402002450d00200a450d0d2011417e6a200e470d0e024020052f01062200410a4b0d00200541286a200541086a200041057410ce051a200541186a2030370000200541106a203137000020052032370008200541206a2034370000200541a8036a200541e8026a20052f010641067410ce051a200541a0036a202f37030020054198036a200737030020054190036a201237030020054188036a201337030020054180036a2033370300200541f8026a202d370300200541f0026a20043703002005202e3703e802200541ac086a200541a8086a220020052f010641027441046a10ce051a2005200a3602a808200520052f010641016a22023b0106200241ffff037141016a210a4100210203402000280200220920023b010420092005360200200041046a2100200a200241016a2202470d000c050b0b41a8a5c000412741a888c6001028000b20052f01062200410b4f0d0e200541286a200541086a200041057410ce051a200541186a2030370000200541106a203137000020052032370008200541206a2034370000200541a8036a200541e8026a200041067410ce051a200541a0036a202f37030020054198036a200737030020054190036a2012370300200520133703880320054180036a2033370300200541f8026a202d370300200541f0026a20043703002005202e3703e802200520052f010641016a3b01060c020b2006280200220f2f0106220e200028020022082f010622106a2219410a4b0d0e20014198086a41086a2202200941086a220d20054105746a220041086a29000037030020014198086a41106a2218200041106a29000037030020014198086a41186a2216200041186a29000037030020012000290000370398082000200d200a4105746a2005417f73220d20092f01066a41057410ce051a200841086a221720104105746a220041186a2016290300370000200041106a2018290300370000200041086a200229030037000020002001290398083700002017201041016a22004105746a200f41086a200e41057410cd051a20014198066a41086a2218200941e8026a221620054106746a220241086a29030037030020014198066a41106a2217200241106a29030037030020014198066a41186a2222200241186a29030037030020014198066a41206a222c200241206a29030037030020014198066a41286a222b200241286a29030037030020014198066a41306a221f200241306a29030037030020014198066a41386a2223200241386a290300370300200120022903003703980620022016200a4106746a200d20092f01066a41067410ce051a200841e8026a220d20104106746a220241386a2023290300370300200241306a201f290300370300200241286a202b290300370300200241206a202c290300370300200241186a2022290300370300200241106a2017290300370300200241086a20182903003703002002200129039806370300200d20004106746a200f41e8026a200e41067410cd051a20062009200541026a22024102746a41a8086a412c200c6b10ce0521050240200a20092f010622064f0d0020052802002205200a3b01042005200936020020022006460d00202720096a41b0086a210503402005280200220a20023b0104200a2009360200200541046a21052006200241016a2202470d000b0b200920092f0106417f6a3b01062008200e20082f01066a41016a3b0106024020114102490d00200820004102746a41a8086a200f41a8086a200e41027441046a10cd051a2000201941026a4f0d00200e41016a2105200820104102746a41ac086a210203402002280200220a20003b0104200a2008360200200241046a2102200041016a21002005417f6a22050d000b0b200f1020024020092f01062205450d00201121022009210020054105490d010c020b0b20292802042202450d0e202928020022052802a808210020292002417f6a3602042029200036020020004100360200200510200b200b42ffffffff0f83500d00200ba72200450d00200b42808080807083500d00200010200b202a2021470d000c0d0b0b20022019103b000b41c8a6c000412d41a888c6001028000b41c8a6c000412d41a888c6001028000b41e988c700412b4180a8c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b41a8a5c000412741a888c6001028000b41e988c700412b4198a7c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b4190a8c000413641a888c6001028000b41a7a6c000412141a888c6001028000b201a450d03200310200c030b200e2018470d000b0b2017450d00201610200b20014188066a200141a0076a410110ec0420012802a807210a20012802a00721000240024020012802a40722050d00200021020c010b2005210920002102034020022802a80821022009417f6a22090d000b0340200020002f01064102746a41a8086a28020021002005417f6a22050d000b0b2001418c086a20002f010636020041002108200141f0076a41186a410036020020014184086a20003602002001200a360290082001410036028008200142003703f807200120023602f407200141003602f007024002400240200a450d002001200a417f6a22003602900820014198086a41086a200141f0076a41086a2202290300370300200120012903f0073703980820014198066a20014198086a10e102200220014198066a41086a2205290300370300200141b0076a41086a2202200141e4066a290200370300200141b0076a41106a2209200141ec066a290200370300200141b0076a41186a200141f4066a290200370300200141b0076a41206a220a200141fc066a290200370300200141b0076a41286a220620014184076a28020036020020012001290398063703f0072001200141dc066a2902003703b007200141d8066a280200220e450d00200141d0066a290300210b20012903c8062107200141c0086a41286a20062802002208360200200141c0086a41206a200a2903002212370300200141c0086a41186a200141b0076a41186a2903002213370300200141c0086a41106a20092903002214370300200141c0086a41086a2002290300222d370300200120012903b00722043703c00820014198066a41286a200836020020014198066a41206a201237030020014198066a41186a201337030020014198066a41106a20143703002005202d3703002001200437039806417f200041016a220220022000491b220a41ffffff1f71200a470d04200a4106742200417f4c0d0441082105024002402000450d002000101e2205450d010b200520073703002005200e3602102005200b370308200541146a2001290398063702002005411c6a20014198066a41086a290300370200200541246a20014198066a41106a2903003702002005412c6a20014198066a41186a290300370200200541346a20014198066a41206a2903003702002005413c6a20014198066a41286a28020036020020014198086a41206a200141f0076a41206a280200220036020020014198086a41186a200141f0076a41186a29030037030020014198086a41106a200141f0076a41106a29030037030020014198086a41086a200141f0076a41086a290300370300200120012903f007370398084101210802402000450d0020012000417f6a22093602b808200141f0086a41086a221f20014198086a41086a221029030037030020012001290398083703f00820014198066a200141f0086a10e102201020014198066a41086a2206290300370300200141b0076a41086a2211200141e4066a290200370300200141b0076a41106a200141ec066a290200370300200141b0076a41186a200141f4066a290200370300200141b0076a41206a200141fc066a290200370300200141b0076a41286a20014184076a2802003602002001200129039806370398082001200141dc066a22022902003703b00720014198066a41c0006a280200220c450d00200141d0066a2223290300210b20012903c80621074102210f41c0002108410121000340200141c0086a41286a200141b0076a41286a2222280200220e360200200141c0086a41206a200141b0076a41206a222c2903002212370300200141c0086a41186a200141b0076a41186a222b2903002213370300200141c0086a41106a200141b0076a41106a22032903002214370300200141c0086a41086a2011290300222d370300200120012903b00722043703c00820014198066a41286a220d200e36020020014198066a41206a2218201237030020014198066a41186a2216201337030020014198066a41106a221720143703002006202d370300200120043703980602402000220e200a470d00200e417f200941016a220020002009491b6a2200200e490d16200f2000200f20004b1b220a41ffffff1f71200a470d16200a41067422004100480d1620052008200010222205450d050b200520086a2200200b37030820002007370300200041106a200c360200200041146a2001290398063702002000411c6a2006290300370200200041246a20172903003702002000412c6a2016290300370200200041346a20182903003702002000413c6a200d28020036020002402009450d00200e41016a210020012009417f6a22093602b808201f201029030037030020012001290398083703f00820014198066a200141f0086a10e102201020062903003703002011200241086a2902003703002003200241106a290200370300202b200241186a290200370300202c200241206a2902003703002022200241286a280200360200200120012903980637039808200120022902003703b007200f41026a210f200841c0006a21082023290300210b20012903c806210720012802d806220c0d010b0b200e41016a21080b20014198086a10ed040c030b20004108102d000b200141f0076a10ed04410821054100210a0c010b20004108102d000b200141b0076a41086a22004200370300200142003703b00741e9f5c400411f200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210002400240024020012802b0072202417f470d0041e80721090c010b024020000d0041e80721090c010b20024104490d0120002800002109200010200b200141b0076a41086a22004200370300200142003703b007418cc6c1004115200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141b0076a2005200810870320014198066a411020012802b007220020012802b8071005024020012802b407450d00200010200b02402008450d0020084106742102200541106a210003400240200041046a280200450d00200028020010200b200041c0006a2100200241406a22020d000b0b0240200a450d00200510200b10792102200141b0076a41086a22054200370300200142003703b00741a1c6c1004112200141b0076a100020014198066a41086a22002005290300370300200120012903b007370398062001200220096a22023602b00720014198066a4110200141b0076a41041005200020023602002001410136029c062001410b3a00980620014198066a107720001079360200200141073a009c062001410a3a00980620014198066a1077200128028c06450d0c20012802880610200c0c0b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072205417f470d00410a21050c010b024020000d00410a21050c010b20054104490d0420002800002105200010200b20022005490d04200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321020240024020012802b0072200417f470d00410a21000c010b024020020d00410a21000c010b20004104490d0320022800002100200210200b200141b0076a41086a22024200370300200142003703b007419ff0c400411e200141b0076a100020014198066a41086a2002290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321050240024020012802b0072202417f470d00411421020c010b024020050d00411421020c010b20024104490d0220052800002102200510200b41e4fdc60021054100210920002002200020024b1b22242004422088a722274f0d0820274115490d062004422188a7222541ffffff3f712025470d0020254105742200417f4c0d0041012129024002402000450d002000101e2229450d010b200341606a212a200341a07f6a21204100212c410021214104210c20272122024003400240024020222208417f6a22050d004101210a410021220c010b200141a0056a200320054105746a10d704200141a0056a41186a2903002107200141a0056a41086a290300211220012903b005210b20012903a005211320014180056a2008410574220220036a41406a10d704024002400240024002400240200b20137c221320012903900522142001290380057c222d54200720127c2013200b54ad7c220b20014180056a41186a29030020014180056a41086a2903007c202d201454ad7c220754200b2007511b0d002008417e6a2105202020026a210041002122410021020340024020052002470d002008210a0c080b200141e0046a200041206a10d704200141e0046a41186a2903002107200141e0046a41086a290300211220012903f004210b20012903e0042113200141c0046a200010d704200041606a2100200241016a2102200b20137c221320012903d004221420012903c0047c222d5a200720127c2013200b54ad7c220b200141c0046a41186a290300200141c0046a41086a2903007c202d201454ad7c22075a200b2007511b0d000b200241016a210a2002417f7320086a21050c010b202020026a210002400340024020054101470d00410021050c020b200141a0046a200041206a10d704200141a0046a41186a2903002107200141a0046a41086a290300211220012903b004210b20012903a004211320014180046a200010d704200041606a21002005417f6a2105200b20137c221320012903900422142001290380047c222d54200720127c2013200b54ad7c220b20014180046a41186a29030020014180046a41086a2903007c202d201454ad7c220754200b2007511b0d000b0b20082005490d01200820274b0d03200820056b220a4101762209450d00202a20026a2100200320054105746a2102034020014198086a41186a2206200241186a220e29000037030020014198086a41106a220f200241106a221029000037030020014198086a41086a2211200241086a220d2900003703002001200229000037039808200041086a2218290000210b200041106a22162900002107200041186a2217290000211220022000290000370000200e201237000020102007370000200d200b370000201720062903003700002016200f290300370000201820112903003700002000200129039808370000200041606a2100200241206a21022009417f6a22090d000b0b024020050d00200521220c050b0240200a41094d0d00200521220c050b200820274b0d01200820056b2109200320054105746a2106034020082005417f6a2222490d040240200820226b220a4102490d00200141e0036a200320054105746a220010d704200141e0036a41186a2903002107200141e0036a41086a290300211220012903f003210b20012903e0032113200141c0036a200320224105746a220510d704200b20137c221320012903d003221420012903c0037c222d5a200720127c2013200b54ad7c220b200141c0036a41186a290300200141c0036a41086a2903007c202d201454ad7c22075a200b2007511b0d0020014198066a41186a2210200541186a220229000037030020014198066a41106a2211200541106a220e29000037030020014198066a41086a220d200541086a220f290000370300200120052900003703980620052000290000370000200f200041086a290000370000200e200041106a2900003700002002200041186a2900003700004101210f0240200a4103490d00200141a0036a200541c0006a10d704200141a0036a41086a2903002107200141a0036a41186a290300211220012903a003211320012903b003210b20014180036a20014198066a10d704200b20137c221320012903900322142001290380037c222d5a201220077c2013200b54ad7c220b20014180036a41186a29030020014180036a41086a2903007c202d201454ad7c22075a200b2007511b0d00410221022006210002400340200041186a200041386a290000370000200041106a200041306a290000370000200041086a200041286a2900003700002000200041206a220e29000037000020092002460d01200141e0026a200041c0006a10d704200141e0026a41086a2903002107200141e0026a41186a290300211220012903e002211320012903f002210b200141c0026a20014198066a10d7042002210f200e2100200241016a2102200b20137c221320012903d002221420012903c0027c222d5a201220077c2013200b54ad7c220b200141c0026a41186a290300200141c0026a41086a2903007c202d201454ad7c22075a200b2007511b0d020c000b0b2002210f0b2005200f4105746a2200200129039806370000200041186a2010290300370000200041106a2011290300370000200041086a200d2903003700000b2022450d05200641606a2106200941016a210920222105200a410a4f0d050c000b0b20052008103b000b20082005417f6a2222490d010b20082027103a000b20222008103b000b0240202c2021470d00202c41016a2200202c490d12202c41017422022000200220004b1b222141ffffffff01712021470d12202141037422004100480d1202400240202c0d002000101e210c0c010b200c202c41037420001022210c0b200c0d0020004104102d000b200c202c4103746a2200200a36020420002022360200202c41016a2210212c0240024020104102490d0003400240024002400240200c2010417f6a222c4103746a2200280200450d002010410374200c6a220941746a2802002205200028020422024d0d000240201041024b0d002010212c2022450d100c080b200c2010417d6a220d4103746a2802042200200220056a4d0d010240201041034b0d002010212c2022450d100c080b200941646a280200200020056a4d0d012010212c2022450d0f0c070b20104103490d0120002802042102200c2010417d6a220d4103746a28020421000b20002002490d010b2010417e6a210d0b02400240024002400240024002402010200d41016a222b4b221f450d002010200d4b2223450d01200c200d4103746a2218280204221920182802006a2200200c202b4103746a22162802002217490d02200020274b0d03200320174105746a220f2016280204221141057422026a210920004105742105200020176b220820116b220020114f0d04202920092000410574220210cd05220e20026a210a20114101480d0520004101480d05202a20056a2105200921000340200141e0016a200a41606a220910d704200141e0016a41086a2903002107200141e0016a41186a290300211220012903e001211320012903f001210b200141c0016a200041606a220810d704200520082009200b20137c221320012903d001221420012903c0017c222d54201220077c2013200b54ad7c220b200141c0016a41186a290300200141c0016a41086a2903007c202d201454ad7c220754200b2007511b22061b2202290000370000200541086a200241086a290000370000200541106a200241106a290000370000200541186a200241186a290000370000200a200920061b210a0240200f2008200020061b2200490d00200e21020c080b200541606a2105200e2102200e200a490d000c070b0b41d0e0c600202b2010102a000b41d0e0c600200d2010102a000b20172000103b000b20002027103a000b2029200f200210cd05220e20026a210a024020114101480d00200820114c0d00200320056a2106200e2102200f21000340200141a0026a200910d704200141a0026a41086a2903002107200141a0026a41186a290300211220012903a002211320012903b002210b20014180026a200210d704200020092002200b20137c221320012903900222142001290380027c222d54201220077c2013200b54ad7c220b20014180026a41186a29030020014180026a41086a2903007c202d201454ad7c220754200b2007511b22081b2205290000370000200041086a200541086a290000370000200041106a200541106a290000370000200041186a200541186a2900003700002002200241206a20081b2102200041206a2100200941206a200920081b220920064f0d03200a20024b0d000c030b0b200f2100200e21020c010b20092100200e21020b20002002200a20026b41607110cd051a2023450d0220182017360200201841046a201920116a360200201f450d042016201641086a2010202b417f736a41037410ce051a202c2110202c41014b0d000b0b2022450d090c010b0b41bcf8c600200d2010102a000b41fad8c200411d41a888c6001028000b20004101102d000b102c000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b10e3040c040b02402021450d00200c10200b2025450d01202910200c010b20274102490d0020032027417f6a22024105746a210a417f21050340024002400240024020022200417f6a220220274b0d00202720026b22084102490d03200141a0016a200320004105746a220010d704200141a0016a41186a2903002107200141a0016a41086a290300211220012903b001210b20012903a001211320014180016a200320024105746a220910d704200b20137c221320012903900122142001290380017c222d5a200720127c2013200b54ad7c220b20014180016a41186a29030020014180016a41086a2903007c202d201454ad7c22075a200b2007511b0d0320014198066a41186a220f200941186a220629000037030020014198066a41106a2210200941106a220e29000037030020014198066a41086a2211200941086a220c290000370300200120092900003703980620092000290000370000200c200041086a290000370000200e200041106a2900003700002006200041186a2900003700004101210020084103490d02200141e0006a200941c0006a10d704200141e0006a41086a2903002107200141e0006a41186a2903002112200129036021132001290370210b200141c0006a20014198066a10d704200b20137c22132001290350221420012903407c222d5a201220077c2013200b54ad7c220b200141c0006a41186a290300200141c0006a41086a2903007c202d201454ad7c22075a200b2007511b0d0241002108200a21000340200041186a200041386a290000370000200041106a200041306a290000370000200041086a200041286a2900003700002000200041206a220e290000370000200520082206460d02200141206a200041c0006a10d704200141206a41086a2903002107200141206a41186a2903002112200129032021132001290330210b200120014198066a10d704200641016a2108200e2100200b20137c22132001290310221420012903007c222d5a201220077c2013200b54ad7c220b200141186a290300200141086a2903007c202d201454ad7c22075a200b2007511b0d020c000b0b20022027103b000b200641026a21000b200920004105746a2200200129039806370000200041186a200f290300370000200041106a2010290300370000200041086a20112903003700000b200a41606a210a200541016a210520020d000b0b202720246b2109200321050b2005200910ee04200141b0076a41086a22004200370300200142003703b00741aef5c400411c200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072202417f470d0041e40021020c010b024020000d0041e40021020c010b20024104490d0320002800002102200010200b10792105200141b0076a41086a22004200370300200142003703b00741a1dfc4004115200141b0076a100020014198066a41086a2000290300370300200120012903b007370398064101101e2200450d03200041013a000020004101410510222200450d042000200520026a36000120014198066a411020004105100520001020200141033a009c062001410a3a00980620014198066a10770b2004a7450d00200310200b20014180096a24000f0b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41014101102d000b41054101102d000b1027000bd12009057f017e077f017e017f057e077f057e027f23004190026b22022400200241086a10e10402400240024020022802084103460d0041adddc4002103411c21040c010b200241a0016a41086a22054200370300200242003703a0014189ddc4004124200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a001200241f0006a4110200241a0016a10032105024002400240024002400240024020022802a0012206417f460d002005450d002002200636025420022005360250200241a0016a200241d0006a10e30120022802a0012203450d0120022902a401210702402006450d00200510200b02402007a7450d00200310202007428080808010540d010c070b20074280808080105a0d060b200241a0016a41086a22054200370300200242003703a0014195dec400411a200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a001200241f0006a4110200241a0016a100321050240024020022802a0012206417f460d002005450d002002200636025420022005360250200241a0016a200241d0006a10e30120022802a0012203450d0120022902a401210702402006450d00200510200b02402007a7450d00200310202007428080808010540d010c070b200742ffffffff0f560d060b200241a0016a41086a22054200370300200242003703a00141afdec400411b200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a001200241f0006a4110200241a0016a100321050240024020022802a0012206417f460d002005450d002002200636025420022005360250200241a0016a200241d0006a10e30120022802a0012203450d0120022902a401210702402006450d00200510200b02402007a7450d00200310202007428080808010540d010c070b200742ffffffff0f560d060b20012802002208200128020822054106746a21092001280204210a024020050d004101210b4100210c4100210d2008210e0c040b200241a0016a41106a2101200241a0016a41186a21034100210c4100210d4101210b200821050340200241a0016a41086a2204200541246a290200370300200541146a290200210f2005280210211020012005412c6a2902003703002003200541346a2902003703002002200529021c3703a001200541c0006a210e2010450d04200541086a290300211120052903002112200241106a41186a20032903002207370300200241106a41106a20012903002213370300200241106a41086a20042903002214370300200220022903a0012215370310200241306a41186a22162007370300200241306a41106a22172013370300200241306a41086a221820143703002002201537033002400240024002404122101e2205450d00200541002900cade442207370000200541206a41002f00eade4422193b0000200541186a41002900e2de442213370000200541106a41002900dade442214370000200541086a41002900d2de442215370000200242a2808080a00437025420022005360250200241306a200241d0006a10ca012002280258210520022802502106200342003703002001420037030020044200370300200242003703a00120062005200241a0016a1001200241f0006a41186a221a2003290300370300200241f0006a41106a221b2001290300370300200241f0006a41086a221c2004290300370300200220022903a00137037002402002280254450d00200228025010200b024002400240024002400240024002400240024002400240024002400240200241f0006a412041e4fdc600410041001002417f470d004122101e2205450d0220052007370000200541206a20193b0000200541186a2013370000200541106a2014370000200541086a2015370000200242a2808080a00437025420022005360250200241306a200241d0006a10ca012002280258210520022802502106200342003703002001420037030020044200370300200242003703a00120062005200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a00137037002402002280254450d00200228025010200b4110101e2205450d03200520123700002005201137000820054110412010222205450d0420054200370010200541186a4200370000200241f0006a412020054120100520051020200320162903003703002001201729030037030020042018290300370300200220022903303703a0010240200c200d470d00200c41016a2205200c490d12200c41017422062005200620054b1b220d41ffffff3f71200d470d12200d41057422054100480d1202400240200c0d002005101e210b0c010b200b200c41057420051022210b0b200b450d110b200b200c4105746a220520022903a001370000200541186a2003290300370000200541106a2001290300370000200541086a2004290300370000200c41016a210c0c010b4122101e2205450d0420052007370000200541206a20193b0000200541186a2013370000200541106a2014370000200541086a2015370000200242a2808080a00437025420022005360250200241306a200241d0006a10ca012002280258210520022802502106200342003703002001420037030020044200370300200242003703a00120062005200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a00137037002402002280254450d00200228025010200b200241a0016a200241f0006a10e20420022903a001211d200241a0016a41206a290300211e20022903b801211f2001290300212020022903a80121214110101e2205450d05200520214200201d42015122061b221d20127c221237000020052020420020061b20117c2012201d54ad7c37000820054110412010222205450d062005201f420020061b370010200541186a201e420020061b370000200241f0006a4120200541201005200510200b200f422088a741306c2205450d10201020056a2122201021050340200541086a290300211120052903002112200541106a290000211d200541186a290000211e200541206a290000211f200241d0006a41186a2217200541286a290000370300200241d0006a41106a2218201f370300200241d0006a41086a2223201e3703002002201d3703504122101e2206450d0720062007370000200641206a20193b0000200641186a2013370000200641106a2014370000200641086a2015370000200242a2808080a004370294012002200636029001200241d0006a20024190016a10ca0120022802980121062002280290012116200342003703002001420037030020044200370300200242003703a00120162006200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a0013703700240200228029401450d0020022802900110200b02400240200241f0006a412041e4fdc600410041001002417f470d004122101e2206450d0a20062007370000200641206a20193b0000200641186a2013370000200641106a2014370000200641086a2015370000200242a2808080a004370294012002200636029001200241d0006a20024190016a10ca0120022802980121062002280290012116200342003703002001420037030020044200370300200242003703a00120162006200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a0013703700240200228029401450d0020022802900110200b4110101e2206450d0b200642003700082006420037000020064110412010222206450d0c20062012370010200641186a2011370000200241f0006a412020064120100520061020200320172903003703002001201829030037030020042023290300370300200220022903503703a0010240200c200d470d00200c41016a2206200c490d13200c41017422162006201620064b1b220d41ffffff3f71200d470d13200d41057422064100480d1302400240200c0d002006101e210b0c010b200b200c41057420061022210b0b200b0d0020064101102d000b200b200c4105746a220620022903a001370000200641186a2003290300370000200641106a2001290300370000200641086a2004290300370000200c41016a210c0c010b4122101e2206450d0c20062007370000200641206a20193b0000200641186a2013370000200641106a2014370000200641086a2015370000200242a2808080a004370294012002200636029001200241d0006a20024190016a10ca0120022802980121062002280290012116200342003703002001420037030020044200370300200242003703a00120162006200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a0013703700240200228029401450d0020022802900110200b200241a0016a200241f0006a10e20420022903a001211d20022903b801211e200241a0016a41206a290300211f2001290300212020022903a80121214110101e2206450d0d200620204200201d42015122161b37000820062021420020161b37000020064110412010222206450d0e2006201e420020161b221d20127c2212370010200641186a201f420020161b20117c2012201d54ad7c370000200241f0006a4120200641201005200610200b200541306a22052022470d000c110b0b41224101102d000b41104101102d000b41204101102d000b41224101102d000b41104101102d000b41204101102d000b41224101102d000b41224101102d000b41104101102d000b41204101102d000b41224101102d000b41104101102d000b41204101102d000b41224101102d000b20054101102d000b1027000b0240200fa7450d00201010200b200e2105200e2009470d000c050b0b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b2009200e460d000340200e41c0006a21050240200e41146a280200450d00200e41106a28020010200b2005210e20092005470d000b0b0240200a450d00200810200b200241a0016a41086a22054200370300200242003703a0014189ddc4004124200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a801200242013703a0012002200c360250200241d0006a200241a0016a10630240200c450d00200b200c4105746a2106200b210503402005200241a0016a10ca012006200541206a2205470d000b0b20022802a4012105200241f0006a411020022802a001220620022802a801100502402005450d00200610200b0240200d450d00200b10200b41002103200241003a00a4012002410a3a00a001200241a0016a107710e3040c040b41fcddc4002103411921040c020b41e4ddc4002103411821040c010b41c9ddc4002103411b21040b2001280200210c024020012802082205450d0020054106742106200c41106a210503400240200541046a280200450d00200528020010200b200541c0006a2105200641406a22060d000b0b200141046a280200450d00200c10200b200020043602042000200336020020024190026a24000b9e0404037f017e087f047e230041d0006b21020240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a22073602002006450d0220072d000021082001200341776a22093602042001200741016a360200200841044f0d0241002107200241003a004841762106034020092007460d02200241286a20076a200420076a220a41096a2d00003a00002001200320066a3602042001200a410a6a3602002002200741016a220a3a00482006417f6a2106200a2107200a4120470d000b200241086a41186a2207200241286a41186a2206290300370300200241086a41106a2209200241286a41106a220b290300370300200241086a41086a220c200241286a41086a220d290300370300200220022903283703082003200a6b220341776a4104490d032004200a6a220a41096a28000021042001200341736a3602042001200a410d6a360200200d200c290300220e370300200b2009290300220f370300200620072903002210370300200220022903082211370328200020083a000c20002004360208200020053703002000201137000d200041156a200e3700002000411d6a200f370000200041256a20103700002000412d6a20022f00083b00002000412f6a2002410a6a2d00003a00000f0b200041043a000c0f0b0240200741ff0171450d00200241003a00480b200041043a000c0f0b200041043a000c0f0b200041043a000c0baf0601067f230041c0036b220224000240024002404118101e2203450d00200341106a410029008d8e46370000200341086a41002900858e46370000200341002900fd8d4637000020034118413010222203450d012003200137001820024188026a41186a2204420037030020024188026a41106a2205420037030020024188026a41086a2206420037030020024200370388022003412020024188026a1001200241b8016a41186a2004290300370300200241b8016a41106a2005290300370300200241b8016a41086a200629030037030020022002290388023703b801200310202002410036028802200241b8016a412020024188026a10032103024002402002280288022204417f470d00420221010c010b024020030d00420221010c010b200220043602dc01200220033602d80120024188026a200241d8016a10840420022903b80222014202510d0320024188016a41286a20024188026a41286a29030037030020024188016a41206a20024188026a41206a29030037030020024188016a41186a20024188026a41186a29030037030020024188016a41106a20024188026a41106a29030037030020024188016a41086a20024188026a41086a290300370300200220022903880237038801200241086a200241c0026a41800110cd051a2004450d00200310200b200241d8016a41086a220320024188016a41086a290300370300200241d8016a41106a220420024188016a41106a290300370300200241d8016a41186a220520024188016a41186a290300370300200241d8016a41206a220620024188016a41206a290300370300200241d8016a41286a220720024188016a41286a29030037030020022002290388013703d80120024188026a200241086a41800110cd051a024020014202510d00200020022903d801370300200041286a2007290300370300200041206a2006290300370300200041186a2005290300370300200041106a2004290300370300200041086a2003290300370300200041386a20024188026a41800110cd051a0b20002001370330200241c0036a24000f0b41184101102d000b41304101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bf00302067f037e230041e0006b22042400200420011086030240024002400240024002402004290300200441086a29030084500d004114101e2205450d01200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370234200420053602302001200441306a10ca012004280238210520042802302106200441c0006a41186a22074200370300200441c0006a41106a22084200370300200441c0006a41086a220942003703002004420037034020062005200441c0006a1001200441106a41186a2007290300370300200441106a41106a2008290300370300200441106a41086a20092903003703002004200429034037031002402004280234450d00200428023010200b20044100360240200441106a4120200441c0006a1003210520042802402206417f460d032005450d0320064110490d02200541086a290000210a2005290000210b200510200c040b200041f989c500360204200041086a4122360200410121010c040b41144101102d000b41ceb8c4004133200441c0006a41fcbfc4004184b9c400102e000b4200210b4200210a0b2001200b20027c220c200a20037c200c200b54ad7c109303200041106a2003370300200041086a2002370300410021010b20002001360200200441e0006a24000bb30202027f047e230041e0016b220224002002410036027020014120200241f0006a10032101024002400240024020022802702203417f460d0020010d010b200042023703500c010b2002200336021c20022001360218200241f0006a200241186a10ae032002290380014204510d01200241206a200241f0006a41d00010cd051a200241c0016a200241186a10930120022903c00122044202510d012000200241206a41d00010cd052100200241106a200241d8016a2903002205370300200241086a200241c0016a41106a2903002206370300200220022903c80122073703002000200437035020002007370358200041e0006a2006370300200041e8006a20053703002003450d00200110200b200241e0016a24000f0b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000bc91503047f037e017f23004190036b220224002002200136020c20024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241dccac000411720024190026a1001200241a0016a41186a2003290300370300200241a0016a41106a2004290300370300200241a0016a41086a200529030037030020022002290390023703a0012002410036029002200241a0016a412020024190026a100321030240024002402002280290022204417f460d002003450d00024020044108490d002003290000210620031020200241106a200610e40120024190026a200241106a10a90320022903e0024202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024190026a41fcbfc4004184b9c400102e000b20024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241dccac000411720024190026a1001200241a0016a41186a2003290300370300200241a0016a41106a2004290300370300200241a0016a41086a200529030037030020022002290390023703a0012002200129030037039002200241a0016a412020024190026a4108100520004200370310200042003703000c010b200241a0016a20024190026a41f00010cd051a200241306a200241a0016a41d00010cd051a20024198016a220120024188026a29030037030020024180016a41106a20024180026a290300220737030020024180016a41086a200241f8016a290300370300200220022903f0013703800120024190026a200241306a41d00010cd051a200241e4026a2001410020074201511b36020020022002410c6a3602e0022002410036028803200242013703800320024190026a41086a29030021072002290390022108024002400240024002400240024002404110101e2201450d002002200136028003200120022802880322046a220320073700082003200837000020024110360284032002200441106a220336028803024020022903a00222074203520d00024020040d0020014110412010222201450d032002412036028403200220013602800320022802880321030b2002200341016a36028803200120036a41003a00000c050b024020040d0020014110412010222201450d032002412036028403200220013602800320022802880321030b2002200341016a36028803200120036a41013a0000200241b8026a28020021040240200228028403220320022802880322016b4104490d0020022802800321030c040b200141046a22052001490d05200341017422012005200120054b1b22014100480d050240024020030d002001101e21030c010b20022802800320032001102221030b02402003450d002002200136028403200220033602800320022802880321010c040b20014101102d000b41104101102d000b41204101102d000b41204101102d000b2002200141046a36028803200320016a20043600000240024002400240024002402007a7220141024b0d0002400240024020010e03000102000b02402002280284032002280288032201460d0020022802800321030c060b200141016a22032001490d09200141017422042003200420034b1b22044100480d090240024020010d002004101e21030c010b20022802800320012004102221030b02402003450d002002200436028403200220033602800320022802880321010c060b20044101102d000b02402002280284032002280288032201460d0020022802800321030c040b200141016a22032001490d08200141017422042003200420034b1b22044100480d080240024020010d002004101e21030c010b20022802800320012004102221030b02402003450d002002200436028403200220033602800320022802880321010c040b20044101102d000b02402002280284032002280288032201460d0020022802800321030c020b200141016a22032001490d07200141017422042003200420034b1b22044100480d070240024020010d002004101e21030c010b20022802800320012004102221030b02402003450d002002200436028403200220033602800320022802880321010c020b20044101102d000b200228028403210320022802880321010c040b2002200141016a36028803200320016a41023a000020022903a80221072002200241b0026a2903003703a801200220073703a001200241a0016a21040c020b2002200141016a36028803200320016a41013a000020022903a80221072002200241b0026a2903003703a801200220073703a001200241a0016a21040c010b2002200141016a36028803200320016a41003a000020022903a80221072002200241b0026a2903003703a801200220073703a001200241a0016a21040b02400240200228028403220320022802880322016b4110490d0020022802800321050c010b200141106a22052001490d03200341017422012005200120054b1b22094100480d030240024020030d002009101e21050c010b20022802800320032009102221050b02402005450d00200220093602840320022005360280032002280288032101200921030c010b20094101102d000b200520016a220541086a200441086a2900003700002002200141106a220136028803200520042900003700000b200241c0026a280200210402400240200320016b4104490d0020022802800321030c010b200141046a22052001490d02200341017422012005200120054b1b22014100480d020240024020030d002001101e21030c010b20022802800320032001102221030b02402003450d002002200136028403200220033602800320022802880321010c010b20014101102d000b2002200141046a36028803200320016a20043600000b20022802d802210402400240200228028403220320022802880322016b4104490d0020022802800321030c010b200141046a22052001490d01200341017422012005200120054b1b22014100480d010240024020030d002001101e21030c010b20022802800320032001102221030b2003450d022002200136028403200220033602800320022802880321010b2002200141046a36028803200320016a2004360000200241d0026a290300210720022903c80221080240200228028403220320022802880322016b4110490d0020022802800321030c030b200141106a22042001490d00200341017422012004200120044b1b22014100480d000240024020030d002001101e21030c010b20022802800320032001102221030b02402003450d002002200136028403200220033602800320022802880321010c030b20014101102d000b1027000b20014101102d000b200320016a22032007370008200320083700002002200141106a3602880320024190026a41d0006a20024180036a1081012002280284032101200241106a41202002280280032203200228028803100502402001450d00200310200b200228020c210120024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241dccac000411720024190026a1001200241a0016a41186a2003290300370300200241a0016a41106a2004290300370300200241a0016a41086a200529030037030020022002290390023703a0012002200129030037039002200241a0016a412020024190026a41081005200041186a200637030020004201370310200042003703000b20024190036a24000ba20703027f027e057f230041206b2202240020024100360208200242013703002000280200220341086a2903002104200329030021050240024002400240024002400240024002404110101e2206450d0020062005370000200620043700082002429080808080023702042002200636020020032903102104200641104120102221060240024020044203520d002006450d03200641003a0010200242a080808090023702042002200636020041112107412021060c010b2006450d03200641013a00102006200341286a28020036001120022006360200200242a0808080d002370204024002402003280210220741024d0d00411521070c010b024002400240024020070e03000102000b200641003a001520024116360208200341186a29030021042002200341206a29030037031820022004370310200241106a21070c020b200641013a001520024116360208200341186a29030021042002200341206a29030037031820022004370310200241106a21070c010b200641023a001520024116360208200341186a29030021042002200341206a29030037031820022004370310200241106a21070b2006412041c00010222206450d05200620072900003700162006411e6a200741086a290000370000200242c0808080e00437020420022006360200412621070b2002200741046a360208200620076a200341306a28020036000020022802042106200228020821070b200328024821080240200620076b4104490d00200228020021090c050b200741046a22092007490d052006410174220a2009200a20094b1b220a4100480d050240024020060d00200a101e21090c010b20022802002006200a102221090b02402009450d002002200a36020420022009360200200a21060c050b200a4101102d000b41104101102d000b41204101102d000b41204101102d000b41c0004101102d000b2002200741046a220a360208200920076a2008360000200341c0006a2903002104200329033821052006200a6b410f4b0d02200a41106a2203200a490d00200641017422082003200820034b1b220341004e0d010b1027000b0240024020060d002003101e21090c010b200920062003102221090b2009450d0120022003360204200220093602000b2009200a6a22032004370008200320053700002002200741146a360208200041086a20021094012002280204210320012802002001280204200228020022062002280208100502402003450d00200610200b200241206a24000f0b20034101102d000bf80101057f230041206b22022400024002404123101e2203450d002003411f6a41002800ddf041360000200341186a41002900d6f041370000200341106a41002900cef041370000200341086a41002900c6f041370000200341002900bef0413700002003412341c60010222203450d0120032001370023200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412b20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41234101102d000b41c6004101102d000bb50202027f047e230041a0026b2202240020024100360290012001412020024190016a1003210102400240024002402002280290012203417f460d0020010d010b200042023703700c010b2002200336021c2002200136021820024190016a200241186a10bb0320022802d0014102460d01200241206a20024190016a41f00010cd051a20024180026a200241186a10930120022903800222044202510d012000200241206a41f00010cd052100200241106a20024198026a2903002205370300200241086a20024180026a41106a290300220637030020022002290388022207370300200020043703702000200737037820004180016a200637030020004188016a20053703002003450d00200110200b200241a0026a24000f0b41ceb8c400413320024190016a41fcbfc4004184b9c400102e000bee0507037f027e037f017e017f027e017f230041106b21020240024002400240200128020422034110490d002001280200220441086a2900002105200429000021062001200441106a3602002001200341706a22073602042007450d0320042d0010210720012003416f6a22083602042001200441116a2209360200200741014b0d034203210a0240024020070e020100010b20084104490d042004280011210b20012003416b6a22073602042001200441156a3602002007450d0420042d0015210720012003416a6a22093602042001200441166a2208360200200741024b0d04024002400240024020070e03000102000b4200210a200241086a220742003703002002420037030020094110490d072007200841086a2900003703002008290000210c20012003415a6a22033602042001200441266a22073602002002200c3703000c020b200241086a220742003703002002420037030020094110490d062007200841086a2900003703002008290000210a20012003415a6a22033602042001200441266a22073602002002200a3703004201210a0c010b200241086a220742003703002002420037030020094110490d052007200841086a2900003703002008290000210a20012003415a6a22033602042001200441266a22073602002002200a3703004202210a0b2002210220034104490d04200241086a290300210d2002290300210c2007280000210e20012003417c6a220836020420012004412a6a22093602000b20084104490d022009280000210320012008417c6a22043602042001200941046a36020020044110490d012000200c370318200020063703002000200a370310200041386a2009290004370300200041206a200d37030020002005370308200041c8006a2003360200200041306a200e360200200041286a200b360200200041c0006a2009410c6a29000037030020012008416c6a3602042001200941146a3602000f0b200042043703100f0b200042043703100f0b200042043703100f0b200042043703100be70202037f087e230041c0006b220224002002410036022020014120200241206a10032101024002400240024020022802202203417f460d0020010d010b200042023703200c010b200220013602182002200336021c20034110490d012002200141106a3602182002200341706a220436021c20044110490d01200141086a2900002105200129000021062002200341606a36021c2002200141206a360218200141186a290000210720012900102108200241206a200241186a109301200229032022094202510d01200241106a200241206a41186a290300220a370300200241086a200241206a41106a290300220b37030020022002290328220c370300200041186a2007370300200020083703102000200537030820002006370300200020093703202000200c370328200041306a200b370300200041386a200a370300200110200b200241c0006a24000f0b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000be70101057f230041206b2202240002400240411a101e2203450d00200341186a41002f00d2ef413b0000200341106a41002900caef41370000200341086a41002900c2ef41370000200341002900baef413700002003411a413410222203450d012003200137001a200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412220021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411a4101102d000b41344101102d000b9e1503047f027e017f230041e0036b2202240020022001370308200241d0026a41186a22034200370300200241d0026a41106a22044200370300200241d0026a41086a22054200370300200242003703d00241e1f0c100412b200241d0026a1001200241c0016a41186a2003290300370300200241c0016a41106a2004290300370300200241c0016a41086a2005290300370300200220022903d0023703c001200241003602d002200241c0016a4120200241d0026a10032103024002400240024020022802d0022204417f460d002003450d00024020044108490d002003290000210120031020200241106a200110ac03200241d0026a200241106a10ad0320022903c0034202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200241d0026a41fcbfc4004184b9c400102e000b200241d0026a41186a22034200370300200241d0026a41106a22044200370300200241d0026a41086a22054200370300200242003703d00241e1f0c100412b200241d0026a1001200241c0016a41186a2003290300370300200241c0016a41106a2004290300370300200241c0016a41086a2005290300370300200220022903d0023703c001200220013703d002200241c0016a4120200241d0026a4108100520004200370310200042003703000c010b200241c0016a200241d0026a41900110cd051a200241306a200241c0016a41f00010cd051a200241b8016a2203200241c8026a290300370300200241b0016a200241c0026a2903002206370300200241a0016a41086a200241b8026a290300370300200220022903b0023703a001200241d0026a200241306a41f00010cd051a200241c4036a2003410020064201511b3602002002200241086a3602c003200241003602c801200242013703c00120022903d00221060240024002400240024002400240024002404108101e2203450d00200241083602c401200220022802c801220441086a3602c801200220033602c001200320046a200637000020022903d80221060240024020022802c401220420022802c80122036b4108490d0020022802c00121040c010b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b20022802c00120042003102221040b2004450d02200220033602c401200220043602c00120022802c80121030b2002200341086a3602c801200420036a2006370000200241a0036a200241c0016a10ca01200241e8026a290300210620022903e00221070240024020022802c401220320022802c80122056b4110490d0020022802c00121040c010b200541106a22042005490d07200341017422052004200520044b1b22084100480d070240024020030d002008101e21040c010b20022802c00120032008102221040b2004450d03200220083602c401200220043602c00120022802c8012105200821030b200420056a22082006370008200820073700002002200541106a22053602c80102402002280290034101460d000240024020032005470d00200341016a22052003490d09200341017422082005200820054b1b22054100480d090240024020030d002005101e21040c010b200420032005102221040b2004450d01200220053602c401200220043602c00120022802c80121050b2002200541016a3602c801200420056a41003a00000c070b20054101102d000b024020032005470d00200341016a22052003490d07200341017422082005200820054b1b22054100480d070240024020030d002005101e21040c010b200420032005102221040b2004450d04200220053602c401200220043602c00120022802c80121050b2002200541016a3602c801200420056a41013a00002002280294032105024020022802c401220420022802c80122036b4104490d0020022802c00121040c050b200341046a22082003490d06200441017422032008200320084b1b22034100480d060240024020040d002003101e21040c010b20022802c00120042003102221040b02402004450d00200220033602c401200220043602c00120022802c80121030c050b20034101102d000b41084101102d000b20034101102d000b20084101102d000b20054101102d000b2002200341046a3602c801200420036a20053600000b0240024002402002280298034101460d00024020022802c40120022802c8012203460d0020022802c00121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00120032005102221040b02402004450d00200220053602c401200220043602c00120022802c80121030c020b20054101102d000b024002400240024020022802c40120022802c8012203460d0020022802c00121040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802c00120032005102221040b2004450d01200220053602c401200220043602c00120022802c80121030b2002200341016a3602c801200420036a41013a0000200228029c032105024020022802c401220420022802c80122036b4104490d0020022802c00121040c020b200341046a22082003490d04200441017422032008200320084b1b22034100480d040240024020040d002003101e21040c010b20022802c00120042003102221040b02402004450d00200220033602c401200220043602c00120022802c80121030c020b20034101102d000b20054101102d000b2002200341046a3602c801200420036a20053600000c010b2002200341016a3602c801200420036a41003a00000b200241f8026a290300210620022903f00221070240024020022802c401220520022802c80122046b4110490d0020022802c00121030c010b200441106a22032004490d01200541017422042003200420034b1b22084100480d010240024020050d002008101e21030c010b20022802c00120052008102221030b02402003450d00200220083602c401200220033602c00120022802c8012104200821050c010b20084101102d000b200320046a22082006370008200820073700002002200441106a22043602c80120024188036a29030021062002290380032107200520046b410f4b0d02200441106a22082004490d00200541017422042008200420084b1b220441004e0d010b1027000b0240024020050d002004101e21030c010b200320052004102221030b2003450d02200220043602c401200220033602c00120022802c80121040b200320046a22032006370008200320073700002002200441106a3602c801200241d0026a41f0006a200241c0016a107e20022802c4012103200241106a412020022802c001220420022802c801100502402003450d00200410200b20022903082106200241d0026a41186a22034200370300200241d0026a41106a22044200370300200241d0026a41086a22054200370300200242003703d00241e1f0c100412b200241d0026a1001200241c0016a41186a2003290300370300200241c0016a41106a2004290300370300200241c0016a41086a2005290300370300200220022903d0023703c001200220063703d002200241c0016a4120200241d0026a41081005200041186a200137030020004201370310200042003703000b200241e0036a24000f0b20044101102d000b850204017f017e037f017e230041c0006b2201240042002102200141206a41186a22034200370300200141206a41106a22044200370300200141206a41086a220542003703002001420037032041e2d5c300411a200141206a1001200141186a2003290300370300200141106a2004290300370300200141086a2005290300370300200120012903203703002001410036022020014120200141206a1003210302400240024020012802202204417f470d000c010b024020030d000c010b20044108490d012003290000210620031020420121020b2000200637030820002002370300200141c0006a24000f0b41ceb8c4004133200141206a41fcbfc4004184b9c400102e000bd00204027f017e017f027e23004190036b22022400200128020021032001420037030002400240024002402003450d00200241086a2001290308220410b804200241003602c801200241086a4120200241c8016a1003210320022802c8012205417f460d032003450d032002200536028c032002200336028803200241c8016a20024188036a10e90220022903e8024202510d02200241286a200241c8016a41a00110cd051a20024180036a2903002106200241f8026a290300210702402005450d00200310200b200241c8016a200241286a41a00110cd051a200241286a200241c8016a41a00110cd051a200120063703082001200737030020002004370300200041086a200241286a41a00110cd051a0c010b2000410236025c0b20024190036a24000f0b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000b418ddbc50041dd0041ecdbc5001045000ba709010b7f230041b0026b220224000240024002400240024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032000370012200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411a200241e0006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903603703082003102020024100360260200241086a4120200241e0006a10032106024020022802602207417f460d002006450d002002200736022c20022006360228200241e0006a200241286a10e90220022903800222004202510d03200241d0006a220820024190026a290300370300200241c8006a41106a220920024198026a2903003703002002200229038802370348200241d4016a2802002105200241cc016a280200210320022802f401210a20022802f001210b20022802d001210420022802b401210c02402007450d00200610200b200241286a41106a2008290300370300200241c0006a20092903003703002002200037032820022002290348370330200c450d0502402004450d00200421060340200328026021032006417f6a22060d000b03402004417f6a22040d000b0b02402005450d004100210441002106410021070340200220043602ac02200220063602a802200220033602a402200220073602a002200241e0006a200241a0026a106120022802682107200228026c210320022802702106200228027421042005417f6a22050d000b0b200341908cc500460d0520032802002105200310202005450d0520052802002104200510202004450d0520042802002203450d040340200410202003210420032802002205210320050d000c050b0b200241286a200010c6040c050b41124101102d000b41244101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b200410200b200a450d00200b10200b200241e0006a200141a00110cd051a20024198026a200241c0006a29030037030020024190026a200241386a29030037030020024188026a200241306a29030037030020022002290328370380022002412036024c2002200241086a360248200241e0006a200241c8006a10c704024020022802b401450d00200241d4016a2802002104200241cc016a28020021030240200241d0016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d00410021054100210641002107034020022007360214200220063602102002200336020c20022005360208200241286a200241086a1061200228023021052002280234210320022802382106200228023c21072004417f6a22040d000b0b200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b0240200241f4016a280200450d0020022802f00110200b200241b0026a24000b970402067f017e230041e0016b22022400024020002802202203450d002000280200210402400240200028020c2205200028020422062f0106490d0002400240200628020022000d0041002106410021000c010b200441016a210420062f010421060b0240200620002f0106490d000340200441016a210420002f01042206200028020022002f01064f0d000b0b200020064103746a41086a2107200641027420006a41e4006a28020021064100210002402004417f6a2204450d000340200628026021062004417f6a22040d000b0b410021040c010b200541016a2100200620054103746a41086a21070b0340200241086a200710c2032007290300210820024198016a200241086a41c80010cd051a200241d0006a2001200820024198016a10c3032003417f6a2103024020022903584202510d00200228029001450d00200228028c0110200b2003450d010240200020062f0106490d0002400240200628020022000d0041002106410021000c010b200441016a210420062f010421060b0240200620002f0106490d000340200441016a210420002f01042206200028020022002f01064f0d000b0b2004417f6a2105200020064103746a41086a2107200641027420006a41e4006a280200210641002100410021042005450d010340200628026021062005417f6a22050d000b410021040c010b200620004103746a41086a2107200041016a21000c000b0b200241e0016a24000baa0401097f024020002802202201450d002000412c6a2802002102200041286a2802002103200028022421042000280200210502400240200028020c2206200028020422072f0106490d0002400240200728020022000d0041002107410021000c010b200541016a210520072f010421070b0240200720002f0106490d000340200541016a210520002f01042207200028020022002f01064f0d000b0b2000200741c8006c6a41e0006a2108200020074103746a41086a2109200741027420006a41fc066a28020021074100210002402005417f6a2205450d00034020072802f80621072005417f6a22050d000b0b410021050c010b200641016a2100200720064103746a41086a21092007200641c8006c6a41e0006a21080b034020082009290300200428020020042802042003280200200328020420022d000010c4031a2001417f6a2201450d010240200020072f0106490d0002400240200728020022000d0041002107410021000c010b200541016a210520072f010421070b0240200720002f0106490d000340200541016a210520002f01042207200028020022002f01064f0d000b0b2005417f6a21062000200741c8006c6a41e0006a2108200020074103746a41086a2109200741027420006a41fc066a280200210741002100410021052006450d01034020072802f80621072006417f6a22060d000b410021050c010b200720004103746a41086a21092007200041c8006c6a41e0006a2108200041016a21000c000b0b0b820403027f017e037f02402001450d00034020002802f80621002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41fc066a28020021002001200341c8006c6a220141a0016a28020021072001419c016a2802002108200141e8006a2903002105410021032006417f6a2201450d01034020002802f80621002001417f6a22010d000c020b0b2000200341c8006c6a220141a0016a28020021072001419c016a2802002108200141e8006a2903002105200341016a21030b20054202510d012002417f6a210202402007450d00200810200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0be10903087f027e077f23004190016b220224000240024002400240200128020422034104490d0020012802002204280000210520012003417c6a22063602042001200441046a36020041002107200241003a008801417b21080240034020062007460d01200241e8006a20076a200420076a220941046a2d00003a00002001200320086a3602042001200941056a3602002002200741016a22093a0088012008417f6a21082009210720094120470d000b200241086a41086a200241e8006a41086a290300370300200241086a41106a200241e8006a41106a290300370300200241086a41186a200241e8006a41186a29030037030020022002290368370308200320096b2207417c6a4110490d02200420096a2208410c6a290000210a200841046a290000210b20012007416c6a3602042001200841146a360200200241e8006a200110b701200228026822060d03200041063a00700c040b0240200741ff0171450d00200241003a0088010b200041063a00700c030b200041063a00700c020b200041063a00700c010b200241f0006a2207280200210c200228026c210d200241e8006a200110b70102402002280268220e450d002007280200210f200228026c211041002107200241003a00880120012802042103417f210802400240034020032007460d01200241e8006a20076a200128020022042d00003a00002001200320086a3602042001200441016a3602002002200741016a22093a0088012008417f6a21082009210720094120460d020c000b0b0240200741ff0171450d00200241003a0088010b200041063a007002402010450d00200e10200b200d450d02200610200c020b200241286a41086a200241e8006a41086a290300370300200241286a41106a200241e8006a41106a290300370300200241286a41186a200241e8006a41186a2903003703002002200229036837032802400240200320096b22074104490d00200428000121082001200441056a36020020012007417c6a3602042003417c6a2009460d0120042d000521092001200441066a36020020012007417b6a360204200941064f0d01200241e8006a41186a2207200241086a41186a290300370300200241e8006a41106a2201200241086a41106a290300370300200241e8006a41086a2203200241086a41086a290300370300200241c8006a41086a2204200241286a41086a290300370300200241c8006a41106a2211200241286a41106a290300370300200241c8006a41186a2212200241286a41186a29030037030020022002290308370368200220022903283703482000200a3703082000200b3703002000200836022c2000200f360228200020103602242000200e3602202000200c36021c2000200d360218200020063602142000200536021020002002290368370330200041386a2003290300370300200041c0006a2001290300370300200041c8006a200729030037030020002002290348370350200041d8006a2004290300370300200041e0006a2011290300370300200041e8006a2012290300370300200020093a0070200041f4006a2002412b6a280000360000200020022800283600710c030b200041063a007002402010450d00200e10200b200d450d02200610200c020b200041063a007002402010450d00200e10200b200d450d01200610200c010b200041063a0070200d450d00200610200b20024190016a24000bd10903067f017e057f230041f0016b220224000240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a3602002005417f6a220541014b0d0320050e020102010b200041023a00000c030b0240024020064104490d002004280001210720012003417b6a22053602042001200441056a360200024020054108490d00200429000521082001200341736a36020420012004410d6a36020041002105200241003a00b001410d20036b2109200341726a210602400340200920056a450d0120024190016a20056a200420056a220a410d6a2d00003a0000200120063602042001200a410e6a3602002002200541016a220a3a00b0012006417f6a2106200a2105200a4120470d000b200241f0006a41186a20024190016a41186a290300370300200241f0006a41106a20024190016a41106a290300370300200241f0006a41086a20024190016a41086a290300370300200220022903900137037041002105200241003a00d0012004200a6a2109200a20036b410d6a210a0340200a20056a450d0420024190016a20056a200920056a2204410d6a2d00003a00002001200636020420012004410e6a3602002002200541016a22043a00d0012006417f6a210620042105200441c000470d000b200241106a41386a220120024190016a41386a290300370300200241106a41306a220520024190016a41306a290300370300200241106a41286a220620024190016a41286a290300370300200241106a41206a220420024190016a41206a290300370300200241106a41186a220a20024190016a41186a290300370300200241106a41106a220320024190016a41106a290300370300200241106a41086a220920024190016a41086a290300370300200241d0006a41086a220b200241f0006a41086a290300370300200241d0006a41106a220c200241f0006a41106a290300370300200241d0006a41186a220d200241f0006a41186a290300370300200220022903900137031020022002290370370350200041003a000020002002290350370001200041096a200b290300370000200041116a200c290300370000200041196a200d290300370000200041216a2002290310370000200041296a2009290300370000200041316a2003290300370000200041396a200a290300370000200041c1006a2004290300370000200041c9006a2006290300370000200041d1006a2005290300370000200041d9006a2001290300370000200041e3006a2002410f6a2d00003a0000200041e1006a20022f000d3b0000200041e8006a2008370300200041e4006a20073602000c060b0240200541ff0171450d00200241003a00b0010b200041023a00000c050b200041023a00000c040b200041023a00000c030b0240200541ff0171450d00200241003a00d0010b200041023a00000c020b024020064104490d002004280001210620012003417b6a22053602042001200441056a36020020054108490d00200041013a0000200020022f00103b0001200429000521082001200341736a36020420012004410d6a360200200041086a2008370300200041046a2006360200200041036a200241126a2d00003a0000200041106a20024190016a41e00010cd051a0c020b200041023a00000c010b200041023a00000b200241f0016a24000bc90403047f017e027f230041106b220224002002410036020820024201370300200128020021034101101e21040240024002400240024020034101460d0002402004450d00200242818080801037020420022004360200200441013a00002001280204210320022001410c6a280200220436020c2002410c6a2002106302402004450d002003200441286c6a210503402003200210ca01200341206a29030021060240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22082004490d05200741017422042008200420084b1b22044100480d050240024020070d002004101e21070c010b200228020020072004102221070b02402007450d002002200436020420022007360200200228020821040c010b20044101102d000b2002200441086a360208200720046a20063700002005200341286a2203470d000b0b200141106a200210db010c050b41014101102d000b2004450d01200242818080801037020420022004360200200441023a000020012802042107024020022802042203200228020822046b4104490d00200228020021030c030b200441046a22082004490d00200341017422052008200520084b1b22084100480d000240024020030d002008101e21030c010b200228020020032008102221030b02402003450d0020022008360204200220033602000c030b20084101102d000b1027000b41014101102d000b2002200441046a360208200320046a20073600000b20002002290300370200200041086a200241086a280200360200200241106a24000be60708037f017e017f017e037f027e037f047e230041d0006b210202400240024002400240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a36020020064108490d01200429000821072001200341706a22083602042001200441106a36020041002106200241003a0048416f2109034020082006460d03200241286a20066a200420066a220a41106a2d00003a00002001200320096a3602042001200a41116a3602002002200641016a220a3a00482009417f6a2109200a2106200a4120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a290300370300200220022903283703082003200a6b220941706a4110490d032004200a6a220641186a290000210b200641106a290000210c2001200941606a3602042001200641206a2204360200200341606a200a460d0720042d0000210a20012009415f6a22033602042001200641216a2204360200200a41014b0d07200a0e020405040b200041023602400f0b200041023602400f0b0240200641ff0171450d00200241003a00480b200041023602400f0b200041023602400f0b410021080c010b20034104490d01200641216a280000210d20012009415b6a22033602042001200641256a2204360200410121080b024002402003450d0020042d0000210620012003417f6a22093602042001200441016a220a360200200641014b0d004100210e0240024020060e020100010b20094104490d012004280001210f20012003417b6a22093602042001200441056a220a3602004101210e0b024020094110490d00200a41086a2900002110200a29000021112001200941706a22063602042001200a41106a36020020064110490d02200a2900102112200241286a41106a2206200241086a41106a290300370300200a41186a29000021132001200941606a3602042001200a41206a360200200241286a41086a2201200241086a41086a290300370300200241286a41186a2209200241086a41186a29030037030020022002290308370328200041386a201337030020002012370330200041286a201037030020002011370320200041186a200b3703002000200c370310200041cc006a200f360200200041c8006a200e3602002000200d360244200020083602402000200737030820002005370300200041d0006a2002290328370300200041d8006a2001290300370300200041e0006a2006290300370300200041e8006a20092903003703000f0b200041023602400f0b200041023602400f0b200041023602400f0b200041023602400bfc0d04017f017e047f017e230041106b2202240020024100360208200242013703002000290300210302400240024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200029030821030240024020022802042205200228020822046b4108490d00200441086a2106200228020021050c010b200441086a22062004490d07200541017422072006200720064b1b22074100480d070240024020050d002007101e21050c010b200228020020052007102221050b2005450d0220022007360204200220053602000b20022006360208200520046a2003370000200041d0006a200210ca01200041186a2903002103200029031021080240024020022802042204200228020822056b4110490d00200228020021060c010b200541106a22062005490d07200441017422052006200520064b1b22074100480d070240024020040d002007101e21060c010b200228020020042007102221060b2006450d03200220073602042002200636020020022802082105200721040b200620056a22072003370008200720083700002002200541106a2205360208024020002802404101460d000240024020042005470d00200441016a22052004490d09200441017422072005200720054b1b22054100480d090240024020040d002005101e21060c010b200620042005102221060b2006450d012002200536020420022006360200200228020821050b2002200541016a360208200620056a41003a00000c070b20054101102d000b024020042005470d00200441016a22052004490d07200441017422072005200720054b1b22054100480d070240024020040d002005101e21060c010b200620042005102221060b2006450d042002200536020420022006360200200228020821050b2002200541016a360208200620056a41013a000020002802442105024020022802042206200228020822046b4104490d00200228020021060c050b200441046a22072004490d06200641017422042007200420074b1b22044100480d060240024020060d002004101e21060c010b200228020020062004102221060b02402006450d002002200436020420022006360200200228020821040c050b20044101102d000b41084101102d000b20074101102d000b20074101102d000b20054101102d000b2002200441046a360208200620046a20053600000b02400240024020002802484101460d000240200228020420022802082204460d00200228020021060c020b200441016a22062004490d03200441017422052006200520064b1b22054100480d030240024020040d002005101e21060c010b200228020020042005102221060b02402006450d002002200536020420022006360200200228020821040c020b20054101102d000b0240024002400240200228020420022802082204460d00200228020021060c010b200441016a22062004490d05200441017422052006200520064b1b22054100480d050240024020040d002005101e21060c010b200228020020042005102221060b2006450d012002200536020420022006360200200228020821040b2002200441016a360208200620046a41013a0000200028024c2105024020022802042206200228020822046b4104490d00200228020021060c020b200441046a22072004490d04200641017422042007200420074b1b22044100480d040240024020060d002004101e21060c010b200228020020062004102221060b02402006450d002002200436020420022006360200200228020821040c020b20044101102d000b20054101102d000b2002200441046a360208200620046a20053600000c010b2002200441016a360208200620046a41003a00000b200041286a2903002103200029032021080240024020022802042205200228020822066b4110490d00200228020021040c010b200641106a22042006490d01200541017422062004200620044b1b22074100480d010240024020050d002007101e21040c010b200228020020052007102221040b02402004450d00200220073602042002200436020020022802082106200721050c010b20074101102d000b200420066a22072003370008200720083700002002200641106a2206360208200041386a290300210320002903302108200520066b410f4b0d02200641106a22072006490d00200541017422062007200620074b1b220641004e0d010b1027000b0240024020050d002006101e21040c010b200420052006102221040b2004450d012002200636020420022004360200200228020821060b200420066a22042003370008200420083700002002200641106a360208200041f0006a20021094012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000f0b20064101102d000b34002000418280c20036020420004100360200200041146a4104360200200041106a419480c200360200200041086a420f3702000b800e02057f027e23004180016b22022400200241e8006a4200370300200241e0006a4200370300200241d8006a420037030020024200370350200241003602482002410041c40010cc05220241003602782002420137037002400240024002400240024002400240024002404108101e2203450d0020024288808080800137027420022003360270200342003700000240024020022802742204200228027822036b4108490d00200341086a2105200228027021040c010b200341086a22052003490d07200441017422062005200620054b1b22064100480d070240024020040d002006101e21040c010b200228027020042006102221040b2004450d0220022006360274200220043602700b20022005360278200420036a4200370000200241d0006a200241f0006a10ca01200241186a2903002107200229031021080240024020022802742203200228027822046b4110490d00200228027021050c010b200441106a22052004490d07200341017422042005200420054b1b22064100480d070240024020030d002006101e21050c010b200228027020032006102221050b2005450d03200220063602742002200536027020022802782104200621030b200520046a22062007370008200620083700002002200441106a2204360278024020022802404101460d000240024020032004470d00200341016a22042003490d09200341017422062004200620044b1b22044100480d090240024020030d002004101e21050c010b200520032004102221050b2005450d012002200436027420022005360270200228027821040b2002200441016a360278200520046a41003a00000c070b20044101102d000b024020032004470d00200341016a22042003490d07200341017422062004200620044b1b22044100480d070240024020030d002004101e21050c010b200520032004102221050b2005450d042002200436027420022005360270200228027821040b2002200441016a360278200520046a41013a000020022802442104024020022802742205200228027822036b4104490d00200228027021050c050b200341046a22062003490d06200541017422032006200320064b1b22034100480d060240024020050d002003101e21050c010b200228027020052003102221050b02402005450d002002200336027420022005360270200228027821030c050b20034101102d000b41084101102d000b20064101102d000b20064101102d000b20044101102d000b2002200341046a360278200520036a20043600000b02400240024020022802484101460d000240200228027420022802782203460d00200228027021050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200228027020032004102221050b02402005450d002002200436027420022005360270200228027821030c020b20044101102d000b0240024002400240200228027420022802782203460d00200228027021050c010b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200228027020032004102221050b2005450d012002200436027420022005360270200228027821030b2002200341016a360278200520036a41013a0000200228024c2104024020022802742205200228027822036b4104490d00200228027021050c020b200341046a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21050c010b200228027020052003102221050b02402005450d002002200336027420022005360270200228027821030c020b20034101102d000b20044101102d000b2002200341046a360278200520036a20043600000c010b2002200341016a360278200520036a41003a00000b200241286a2903002107200229032021080240024020022802742204200228027822056b4110490d00200228027021030c010b200541106a22032005490d01200441017422052003200520034b1b22064100480d010240024020040d002006101e21030c010b200228027020042006102221030b02402003450d00200220063602742002200336027020022802782105200621040c010b20064101102d000b200320056a22062007370008200620083700002002200541106a2205360278200241386a290300210720022903302108200420056b410f4b0d02200541106a22062005490d00200441017422052006200520064b1b220541004e0d010b1027000b0240024020040d002005101e21030c010b200320042005102221030b2003450d012002200536027420022003360270200228027821050b200320056a220320073700082003200837000020002002290370370200200041086a200541106a36020020024180016a24000f0b20054101102d000b6101017f024002404110101e2202450d00200242003700082002420037000020024110412010222202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b41104101102d000b41204101102d000bf70301057f230041e0016b22022400024002404123101e2203450d002003411f6a41002800ddf041360000200341186a41002900d6f041370000200341106a41002900cef041370000200341086a41002900c6f041370000200341002900bef0413700002003412341c60010222203450d0120032000370023200241c8006a41186a22044200370300200241c8006a41106a22054200370300200241c8006a41086a22064200370300200242003703482003412b200241c8006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a20062903003703002002200229034837030820031020200241c8006a200241086a10ad030240024020022903b8014202520d00200241286a200010b1030c010b200241286a41186a200241b8016a220341186a290300370300200241286a41106a200341106a290300370300200241286a41086a200341086a290300370300200220032903003703280b200241c8006a200141f00010cd051a200241d0016a200241c0006a290300370300200241c8016a200241386a290300370300200241c0016a200241306a290300370300200220022903283703b801200241203602dc012002200241086a3602d801200241c8006a200241d8016a10bc03200241e0016a24000f0b41234101102d000b41c6004101102d000bfb0503017f027e047f230041106b220224002002410036020820024201370300200041206a200210ca012002200236020c200041c0006a2002410c6a10b901200041086a2903002103200029030021040240024002400240024020022802042205200228020822066b4110490d00200228020021070c010b200641106a22072006490d01200541017422062007200620074b1b22084100480d010240024020050d002008101e21070c010b200228020020052008102221070b02402007450d00200220083602042002200736020020022802082106200821050c010b20084101102d000b200720066a22082003370008200820043700002002200641106a2206360208200041186a29030021032000290310210402400240200520066b410f4d0d00200521080c010b200641106a22082006490d01200541017422062008200620084b1b22084100480d010240024020050d002008101e21070c010b200720052008102221070b2007450d022002200836020420022007360200200228020821060b200720066a22052003370008200520043700002002200641106a2205360208024020002d00604101460d000240024020082005470d00200841016a22002008490d03200841017422052000200520004b1b22004100480d030240024020080d002000101e21070c010b200720082000102221070b2007450d012002200036020420022007360200200228020821050b2002200541016a360208200720056a41003a00000c040b20004101102d000b0240024020082005470d00200841016a22052008490d02200841017422062005200620054b1b22054100480d020240024020080d002005101e21070c010b200720082005102221070b2007450d012002200536020420022007360200200228020821050b2002200541016a360208200720056a41013a0000200041e1006a200210ca010c030b20054101102d000b1027000b20084101102d000b2002280204210720012802002001280204200228020022002002280208100502402007450d00200010200b200241106a24000bed0605027f017e027f017e027f230041b0016b22022400024002400240024002404116101e2203450d002003410e6a41002900aad543370000200341086a41002900a4d5433700002003410029009cd5433700002001290300210420034116412c10222203450d0120032004370016200241e0006a41186a22014200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411e200241e0006a1001200241c0006a41186a2001290300370300200241c0006a41106a2005290300370300200241c0006a41086a2006290300370300200220022903603703402003102020024100360260200241c0006a4120200241e0006a1003210320022802602201417f460d032003450d03200220013602ac01200220033602a801200241e0006a200241a8016a10d802200229036822044202510d02200241106a200241e0006a41186a290300370300200241186a200241e0006a41206a290300370300200241086a41186a200241e0006a41286a290300370300200241086a41206a200241e0006a41306a290300370300200241086a41286a20024198016a290300370300200241086a41306a200241a0016a29030037030020022002290370370308200229036021072001450d04200310200c040b41164101102d000b412c4101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420221040b200241e0006a41306a2203200241086a41306a290300370300200241e0006a41286a2201200241086a41286a290300370300200241e0006a41206a2205200241086a41206a290300370300200241e0006a41186a2206200241086a41186a290300370300200241e0006a41106a2208200241086a41106a290300370300200241e0006a41086a2209200241086a41086a290300370300200220022903083703600240024020044202520d002000420037030020004200370318200042003703282000420137023c200041086a4200370300200041306a41003a0000200041c4006a41003602000c010b2000200437030820002007370300200041106a2002290360370300200041186a2009290300370300200041206a2008290300370300200041286a2006290300370300200041306a2005290300370300200041386a2001290300370300200041c0006a20032903003703000b200241b0016a24000bd71603077f097e077f230041a0096b220424000240024002400240024002400240024002402001280200220541908cc500460d00200128020421060c010b41002106200441e0076a410272410041da0010cc051a20044198016a410041980610cc051a41f806101e2205450d0120054100360200200541046a200441e0076a41dc0010cd051a200541e0006a20044198016a41980610cd051a20014100360204200120053602000b03400240024020052f010622070d00410021080c010b20074103742109200541086a210a417f21080340024020090d00200721080c020b200a290300210b200941786a2109200841016a2108200a41086a210a0240417f200b200252200b2002561b41016a0e03020001020b0b2005200841c8006c6a220541f8006a2208290300210b200341c0006a2903002102200341206a290300210c200341286a290300210d200341306a290300210e200341386a290300210f2003290300211020032903082111200329031021122008200341186a290300370300200541f0006a2208290300211320082012370300200541e8006a2208290300211220082011370300200541e0006a220829030021112008201037030020054198016a220829030021102008200f37030020054190016a2208290300210f2008200e37030020054188016a2208290300210e2008200d37030020054180016a2208290300210d2008200c370300200541a0016a2205290200210c20052002370200200041206a200d370300200041286a200e370300200041306a200f370300200041386a2010370300200020113703002000201237030820002013370310200041186a200b370300200041c0006a200c3703000c050b02402006450d002006417f6a2106200520084102746a41f8066a28020021050c010b0b2001200128020841016a360208200441e0076a200341c80010cd051a02400240024020052f01062209410b490d0002400240200541908cc500460d00200441c0086a410272410041da0010cc051a20044198016a410041980610cc051a41f806101e22140d0141f8064108102d000b41c8a6c000412d41a888c6001028000b20144100360200201441046a200441c0086a41dc0010cd051a201441e0006a20044198016a41980610cd05210a2005290338210b20044198016a20054190046a41c80010cd051a201441086a200541c0006a20052f010641796a220941037410cd052103200a200541d8046a200941c8006c10cd05210a200541063b0106201420093b0106200441c0086a20044198016a41c80010cd051a0240024020084107490d00200841037420036a41506a2003200841796a22064103746a2203200941ffff037120066b41037410ce051a20032002370300200841c8006c200a6a220841d07c6a200841887c6a2208201441066a22092f010020066b41c8006c10ce051a2008200441e0076a41c80010cd051a0c010b200541066a2109200541086a20084103746a220a41086a200a20052f010620086b41037410ce051a200a2002370300200541e0006a200841c8006c6a220a41c8006a200a20052f010620086b41c8006c10ce051a200a200441e0076a41c80010cd051a0b200920092f010041016a3b0100200441d0006a200441c0086a41c80010cd051a200441086a200441d0006a41c80010cd051a0240200528020022060d00410021150c050b20052f01042116200441c0086a4102722117410021150340200441d0006a200441086a41c80010cd051a41000d02201641ffff0371210302400240024020062f01062205410b490d002017410041da0010cc051a200441e0076a200441c0086a41dc0010cd051a20044198016a410041c80610cc051a41a807101e220a450d06200a4100360200200a41046a200441e0076a41dc0010cd051a200a41e0006a20044198016a41c80610cd0521082006290338210220044198016a20064190046a41c80010cd051a200a41086a200641c0006a20062f0106220941796a220541037410cd0521182008200641d8046a200541c8006c10cd052119200a41f8066a20064194076a2009417a6a220741027410cd05211a200641063b0106200a20053b010602402007450d0041002105201a210803402008280200220920053b01042009200a360200200841046a21082007200541016a2205470d000b0b200441c0086a20044198016a41c80010cd051a20044198016a200441c0086a41c80010cd051a201641ffff037122054107490d0120182003417a6a22084103746a2018200341796a22054103746a2209200a2f010620056b41037410ce051a2009200b370300200341c8006c20196a220941d07c6a200941887c6a2209200a2f010620056b41c8006c10ce051a2009200441d0006a41c80010cd051a200a200a2f010641016a22093b010620034102742216201a6a416c6a201a20084102746a2207200941ffff0371220320086b41027410ce051a2007201436020020032008490d02200a20166a41e0066a2108034020082802002209200541016a22053b01042009200a360200200841046a210820052003490d000c030b0b200641086a2209200341016a22084103746a200920034103746a2209200520036b220a41037410ce051a2009200b3703002006200341c8006c6a220941a8016a200941e0006a2209200a41c8006c10ce051a2009200441d0006a41c80010cd051a2006200541016a22053b01062003410274200641f8066a22096a41086a200920084102746a2209200541ffff0371220520086b41027410ce051a20092014360200201641ffff037120054f0d08201420083b010420142006360200200820054f0d082005417f6a210a20062008417f6a22054102746a4180076a2108034020082802002209200541026a3b010420092006360200200841046a2108200a200541016a2205470d000c090b0b200641086a2209200341016a22084103746a200920034103746a220920062f0106220720036b221641037410ce051a2009200b370300200641e0006a200341c8006c6a220941c8006a2009201641c8006c10ce051a2009200441d0006a41c80010cd051a2006200741016a22093b010620034102742216200641f8066a22076a41086a200720084102746a2207200941ffff0371220920086b41027410ce051a20072014360200200520094f0d00200620166a41fc066a2105034020052802002208200341016a22033b010420082006360200200541046a210520092003470d000b0b201541016a2115200441086a20044198016a41c80010cd051a0240200628020022050d00200a21142002210b0c060b20062f01042116200521062002210b200a21140c000b0b200520084103746a220a41106a200a41086a220a200920086b41037410ce051a200a20023703002005200841c8006c6a220941a8016a200941e0006a220920052f010620086b41c8006c10ce051a2009200441e0076a41c80010cd051a200520052f010641016a3b01060c040b41c6a8c000413541a888c6001028000b41a8074108102d000b41f8064108102d000b200441e0076a410272410041da0010cc051a200441c0086a200441e0076a41dc0010cd051a20044198016a410041c80610cc051a41a807101e2205450d0220054100360200200541046a200441c0086a41dc0010cd051a200541e0006a20044198016a41c80610cd0521092005200128020022083602f8062001200536020020012001280204220a41016a360204200841003b01042008200536020020044198016a200441086a41c80010cd051a200a2015470d0320052f01062208410a4b0d04200520084103746a41086a200b3703002009200841c8006c6a20044198016a41c80010cd051a2005200841016a22084102746a41f8066a2014360200200520083b0106201420083b0104201420053602000b200042023703080b200441a0096a24000f0b41a8074108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000be03409027f017e017f017e027f027e017f027e127f230041d0056b2207240041002108024020002d00300d0002400240024002400240024002400240024002400240200029031822094201520d002007200041206a29030037039004410c101e220a450d01200a428180808010370200200a41086a22084101360200200a4174460d0220074190046a2002200310ad02210220082008280200417f6a360200200a200a280200417f6a2203360200200241ff01712102024020030d00200a200a280204417f6a220336020420030d00200a10200b20024105470d030b410021020240200641ff01714101460d0002402000290308220b4201520d002007200041106a29030037039004410c101e220a450d05200a428180808010370200200a41086a22024101360200200a4174460d0620074190046a2004200510ad02210320022002280200417f6a360200200a200a280200417f6a2202360200200341ff01712103024020020d00200a200a280204417f6a220236020420020d00200a10200b20034105470d070b200ba721020b107921034116101e220a450d06200a410e6a41002900aad543370000200a41086a41002900a4d543370000200a410029009cd543370000200a4116412c1022220a450d07200a20013700164200210b20074190046a41186a2208420037030020074190046a41106a2204420037030020074190046a41086a220542003703002007420037039004200a411e20074190046a1001200741b8026a41186a2008290300370300200741b8026a41106a2004290300370300200741b8026a41086a200529030037030020072007290390043703b802200a10202007410036029004200741b8026a412020074190046a1003210a200728029004220c417f460d08200a450d082007200c3602fc012007200a3602f80120074190046a200741f8016a10d80202400240200729039804220b4202510d00200741d0046a2802002108200741b8046a280200210d200741b0046a290300210e200741a8046a290300210f20072802d404210520072802cc04210420072802bc04211020072903a00421112007290390042112200741206a200741f8016a10930120072903204202520d012008450d00200410200b41ceb8c4004133200741c0036a41fcbfc4004184b9c400102e000b200c450d09200a10200c090b410c4104102d000b4196e2c6004118200741c0036a41f8aac10041c0e2c600102e000b41b2aac40041a60141a888c6001028000b410c4104102d000b4196e2c6004118200741c0036a41f8aac10041c0e2c600102e000b41b2aac40041a60141a888c6001028000b41164101102d000b412c4101102d000b41012104410021054100210842002112410021104100210d4200210f0b200741e0006a2008360200200741d8006a2003360200200741d4006a2003360200200741d0006a410241012009502002457122131b22083a0000200741c8006a200d360200200741c0006a200e370300200741386a200f370300200720053602642007200436025c200720063a00512007201036024c200720113703302007200b3703282007201237032002400240024002404116101e220a450d00200a410e6a41002900aad543370000200a41086a41002900a4d543370000200a410029009cd543370000200a4116412c1022220a450d01200a200137001620074190046a41186a2206420037030020074190046a41106a2203420037030020074190046a41086a220442003703002007420037039004200a411e20074190046a1001200741186a2006290300370300200741106a2003290300370300200741086a20042903003703002007200729039004370300200a102020074100360290042007412020074190046a1003210a2007280290042206417f460d02200a450d02200720063602c4012007200a3602c00120074190046a200741c0016a10d802024002402007290398044202510d00200741d0046a280200210320072802cc042114200741f8016a200741c0016a10930120072903f8014202520d012003450d00201410200b41ceb8c4004133200741c0036a41fcbfc4004184b9c400102e000b200741d8036a41186a200741f8016a41186a22042903002201370300200741d8036a41106a200741f8016a41106a2205290300220b37030020074188036a41086a2210200741f8016a41086a220d29030037030020074188036a41106a220c200b37030020074188036a41186a22152001370300200720072903f8013703880302402006450d00200a10200b200420152903003703002005200c290300370300200d201029030037030020072007290388033703f8012003450d03201410200c030b41164101102d000b412c4101102d000b200741f8016a20011098040b20074190046a41106a200741f8016a41086a29030037030020074190046a41186a200741f8016a41106a290300370300200741b0046a200741f8016a41186a290300370300200720072903f801370398042007200741206a36029004200741003602e003200742013703d803200729032021010240024002400240024002400240024002404108101e220a450d00200741083602dc03200720072802e003220641086a3602e0032007200a3602d803200a20066a2001370000200741c8006a28020021030240024020072802dc03220620072802e003220a6b4104490d0020072802d80321060c010b200a41046a2204200a490d082006410174220a2004200a20044b1b220a4100480d080240024020060d00200a101e21060c010b20072802d8032006200a102221060b2006450d022007200a3602dc03200720063602d80320072802e003210a0b2007200a41046a3602e0032006200a6a2003360000200728024c21030240024020072802dc03220620072802e003220a6b4104490d0020072802d80321060c010b200a41046a2204200a490d082006410174220a2004200a20044b1b220a4100480d080240024020060d00200a101e21060c010b20072802d8032006200a102221060b2006450d032007200a3602dc03200720063602d80320072802e003210a0b2007200a41046a3602e0032006200a6a2003360000024020072903284201510d00024020072802dc0320072802e003220a460d0020072802d80321060c070b200a41016a2206200a490d08200a41017422032006200320064b1b22034100480d0802400240200a0d002003101e21060c010b20072802d803200a2003102221060b02402006450d00200720033602dc03200720063602d80320072802e003210a0c070b20034101102d000b0240024020072802dc0320072802e003220a460d0020072802d80321060c010b200a41016a2206200a490d08200a41017422032006200320064b1b22034100480d0802400240200a0d002003101e21060c010b20072802d803200a2003102221060b2006450d04200720033602dc03200720063602d80320072802e003210a0b2007200a41016a3602e0032006200a6a41013a000020072903302101024020072802dc03220620072802e003220a6b4108490d0020072802d80321060c050b200a41086a2203200a490d072006410174220a2003200a20034b1b220a4100480d070240024020060d00200a101e21060c010b20072802d8032006200a102221060b02402006450d002007200a3602dc03200720063602d80320072802e003210a0c050b200a4101102d000b41084101102d000b200a4101102d000b200a4101102d000b20034101102d000b2007200a41086a3602e0032006200a6a20013700000c010b2007200a41016a3602e0032006200a6a41003a00000b024002400240200741386a2903004201510d00024020072802dc0320072802e003220a460d0020072802d80321060c020b200a41016a2206200a490d03200a41017422032006200320064b1b22034100480d0302400240200a0d002003101e21060c010b20072802d803200a2003102221060b02402006450d00200720033602dc03200720063602d80320072802e003210a0c020b20034101102d000b024002400240024020072802dc0320072802e003220a460d0020072802d80321060c010b200a41016a2206200a490d05200a41017422032006200320064b1b22034100480d0502400240200a0d002003101e21060c010b20072802d803200a2003102221060b2006450d01200720033602dc03200720063602d80320072802e003210a0b2007200a41016a3602e0032006200a6a41013a000020072903402101024020072802dc03220620072802e003220a6b4108490d0020072802d80321060c020b200a41086a2203200a490d042006410174220a2003200a20034b1b220a4100480d040240024020060d00200a101e21060c010b20072802d8032006200a102221060b02402006450d002007200a3602dc03200720063602d80320072802e003210a0c020b200a4101102d000b20034101102d000b2007200a41086a3602e0032006200a6a20013700000c010b2007200a41016a3602e0032006200a6a41003a00000b200741d0006a200741d8036a10d902200728025c21042007200741e4006a280200220a3602880320074188036a200741d8036a1063024020072802dc03220320072802e00322066b200a490d0020072802d80321030c020b2006200a6a22052006490d00200341017422062005200620054b1b22064100480d000240024020030d002006101e21030c010b20072802d80320032006102221030b02402003450d00200720063602dc03200720033602d80320072802e00321060c020b20064101102d000b1027000b20072006200a6a3602e003200320066a2004200a10cd051a20074190046a41086a200741d8036a10940120072802dc03210a2007412020072802d803220620072802e00310050240200a450d00200610200b024020072903284202510d002007280260450d00200728025c10200b20002903002101024002400240024002404112101e2200450d00200041106a41002f00e0d5433b0000200041086a41002900d8d543370000200041002900d0d54337000020004112412410222200450d012000200137001220074190046a41186a220a420037030020074190046a41106a2206420037030020074190046a41086a2203420037030020074200370390042000411a20074190046a1001200741186a200a290300370300200741106a2006290300370300200741086a200329030037030020072007290390043703002000102020074100360290042007412020074190046a100321062007280290042216417f460d032006450d03200720163602242007200636022020074190046a200741206a10e90220072903b0054202510d02200741e0026a41086a221720074190046a41086a2218290300370300200741b8026a41086a2219200741ac046a290200370300200741b8026a41106a221a200741b4046a290200370300200741b8026a41186a221b200741bc046a290200370300200741b8026a41206a221c200741c4046a280200360200200741a0026a41086a221d200741d4046a290200370300200741a0026a41106a221e200741dc046a28020036020020072007290390043703e002200720072902a4043703b802200720072902cc043703a00220072802a004211520072802c804211f200741f8016a41086a2220200741f4046a290200370300200741f8016a41106a2221200741fc046a290200370300200741f8016a41186a222220074184056a290200370300200741f8016a41206a22232007418c056a290200370300200720072902ec043703f80120072802e804210020072802e404210a20072802e0042104200728029405210c200728029805210d200728029c05211420072802a005210320072802a405210520072802a805211020072802ac05212402402016450d00200610200b20074180046a41086a2017290300370300200741d8036a41086a2019290300370300200741d8036a41106a201a290300370300200741d8036a41186a201b290300370300200741d8036a41206a201c280200360200200720072903e00237038004200720072903b8023703d803200741c0036a41086a201d290300370300200741c0036a41106a201e280200360200200720072903a0023703c00320074190046a41206a202329030037030020074190046a41186a202229030037030020074190046a41106a202129030037030020182020290300370300200720072903f801370390044102210602400240200a4102470d00410121034100210041002105410021104100210d4100210c4100210a41002104410221150c010b200741b0036a41086a20074180046a41086a29030037030020074188036a41086a200741d8036a41086a29030037030020074188036a41106a200741d8036a41106a29030037030020074188036a41186a200741d8036a41186a29030037030020074188036a41206a200741d8036a41206a280200360200200741f0026a41086a200741c0036a41086a290300370300200741f0026a41106a200741c0036a41106a28020036020020072007290380043703b003200720072903d80337038803200720072903c0033703f002200741206a41206a20074190046a41206a290300370300200741206a41186a20074190046a41186a290300370300200741206a41106a20074190046a41106a290300370300200741206a41086a20074190046a41086a2903003703002007200729039004370320201f21060b200741e8016a41086a200741b0036a41086a290300370300200741c0016a41086a20074188036a41086a290300370300200741c0016a41106a20074188036a41106a290300370300200741c0016a41186a20074188036a41186a290300370300200741c0016a41206a20074188036a41206a280200360200200720072903b0033703e80120072007290388033703c001200741d8036a41106a200741f0026a41106a280200360200200741d8036a41086a200741f0026a41086a290300370300200720072903f0023703d80320074190046a41206a200741206a41206a29030037030020074190046a41186a200741206a41186a29030037030020074190046a41106a200741206a41106a29030037030020074190046a41086a200741206a41086a29030037030020072007290320370390040c040b41124101102d000b41244101102d000b41ceb8c4004133200741c0036a41fcbfc4004184b9c400102e000b41022106410121034100210041002105410021104100210d4100210c4100210a41002104410221150b200741206a41086a200741e8016a41086a2903003703002007413c6a200741c0016a41086a290300370200200741c4006a200741c0016a41106a290300370200200741cc006a200741c0016a41186a290300370200200741d4006a200741c0016a41206a280200360200200741d8006a2006360200200720072903e80137032020072015360230200720072903c001370234200741dc006a20072903d803370200200741e4006a200741d8036a41086a290300370200200741ec006a200741d8036a41106a280200360200200741f8006a2000360200200720043602702007200a3602742007419c016a20074190046a41206a29030037020020074194016a20074190046a41186a2903003702002007418c016a220420074190046a41106a29030037020020074184016a20074190046a41086a290300370200200741fc006a200729039004370200200741b8016a2010360200200741b4016a2005360200200741ac016a2014360200200720243602bc01200720033602b0012007200d3602a8012007200c3602a4010240024002400240200a4101470d00024002400240024020074198016a280200220a450d004100210520094200522002410047722106200728029c01210220072802a0012103200041ff01710e03030201030b41f6abc400412f41a888c6001028000b20074184016a280200410146210d20074188016a280200211020074180016a280200210c410221050c010b20074180016a280200210c410121050b20004108762115200220066a2114200320136a2113200a417f6a2124200728027c21160240024020074194016a2802000d00200742003702dc03200741908cc5003602d8034100210a0c010b20072004360298042007200728028c0136029404200720074190016a28020036029004200741d8036a20074190046a10ea022007280274450d04200728029401210a0b200728028c012100024020074190016a2802002206450d00200621020340200028026021002002417f6a22020d000b03402006417f6a22060d000b0b0240200a450d00410021064100210241002103034020072003360284022007200236028002200720003602fc01200720063602f80120074190046a200741f8016a10612007280298042106200728029c04210020072802a004210220072802a4042103200a417f6a220a0d000b0b200041908cc500460d0320002802002106200010202006450d032006280200210a20061020200a450d03200a28020022000d010c020b41d8abc400411e41a888c6001028000b0340200a10202000210a20002802002206210020060d000b0b200a10200b200420072902d80337020020074188016a201036020020074184016a200d36020020074180016a200c360200200441086a200741d8036a41086a2802003602002007201636027c200720153a0079200720053a007820074101360274200720133602a0012007201436029c01200720243602980120074190046a200741206a41a00110cd051a0240024020072802e4044102470d00200110eb020c010b200120074190046a10ec020b0240024020072802e404220041024b0d0020000e03010002010b20074184056a280200210a200741fc046a2802002100024020074180056a2802002206450d00200621020340200028026021002002417f6a22020d000b03402006417f6a22060d000b0b0240200a450d004100210641002102410021030340200720033602e403200720023602e003200720003602dc03200720063602d803200741f8016a200741d8036a1061200728028002210620072802840221002007280288022102200728028c022103200a417f6a220a0d000b0b200041908cc500460d0020002802002106200010202006450d002006280200210a20061020200a450d000240200a2802002200450d000340200a10202000210a20002802002206210020060d000b0b200a10200b200741a4056a280200450d0020072802a00510200b200741d0056a240020080bde0405067f017e037f017e087f230041f0026b22032400200341b8016a4104722104200341f0016a2105200341cd026a2106200341ad026a2107024003400240200128020022082001280204470d00420021090c020b2001200841306a36020002400240200841086a220a2001280208220b460d004100210c200a200b412010cf050d010b4100210c024020082d0028200128020c2d0000460d000c010b200341b8016a2008290300220d10a70320032903e80122094202510d0020034188016a41086a220c200441086a220a29020037030020034188016a41106a220b200441106a220e29020037030020034188016a41186a220f200441186a221029020037030020034188016a41206a2211200441206a221229020037030020034188016a41286a2213200441286a2214280200360200200320042902003703880120032802b8012115200341086a200541800110cd051a200228020021082004200329038801370200200a200c290300370200200e200b2903003702002010200f2903003702002012201129030037020020142013280200360200200320153602b801200320093703e8012005200341086a41800110cd051a4101210c024020072008460d0020072008412010cf05450d00024020062008470d004101210c0c010b20062008412010cf0545210c0b024020032802fc01450d0020032802f80110200b0240200328028802450d0020032802840210200b0240200328029402450d0020032802900210200b20032802a00220032802a40220032802a80210f5020b200c450d000b420121090b2000200d37030820002009370300200341f0026a24000bea0a03057f027e027f230041f0036b220224000240024020012802202203450d0020012003417f6a36022020012802082104200128020021050240024002400240200128020c2203200128020422062f0106490d0002400240200628020022030d002004ad2107410021030c010b200541016a210520063301044220862004ad8421070b2007422088a7220620032f01064f0d01200721080c020b200341016a2109200620034103746a41086a210a0c020b03402007220842ffffffff0f832107200541016a210520032f01042206200328020022032f01064f0d000b0b200320064103746a41086a210a200641027420036a41e4006a28020021062008a721044100210902402005417f6a2203450d000340200628026021062003417f6a22030d000b0b410021050b2001200936020c2001200436020820012006360204200120053602000340200241106a200a10c703024002400240024020022802104101460d0020022802b0014102460d00200228028802210620022802800221032002290320210802402002280284022205450d000340200328026021032005417f6a22050d000b0b02402006450d004100210541002104410021090340200220053602ec03200220043602e803200220033602e403200220093602e003200241a0026a200241e0036a106120022802a802210920022802ac02210320022802b002210420022802b40221052006417f6a22060d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002106200510202006450d00024020062802002203450d000340200610202003210620032802002205210320050d000b0b200610200b200241a0026a41086a22034200370300200242003703a00241d5efc2004121200241a0026a1000200241e0036a41086a2003290300370300200220022903a0023703e003200241003602a002200241e0036a4110200241a0026a100321030240024020022802a0022206417f470d00420021070c010b024020030d00420021070c010b200641074d0d0220032900002107200310200b200241033a00e803200220073703e003200241a0026a2008200241e0036a10c80320022802a0024101460d002002280298032103200228029403210620022802900321052002280284032104200228028003210120022802f802210920022802f402210a024020022802ec02450d0020022802e80210200b02402009450d00200a10200b02402004450d00200110200b20052006200310f502200220024199026a41036a28000036009302200220022800990236029002200220022800930236000b2002200228029002360208200220022802083602002002200228000b360003200041033a000820002007370300200041106a2007370000200020022802003600092000410c6a20022800033600000c060b20012802202203450d0420012003417f6a3602202001280208210920012802002104200128020c2203200128020422062f0106490d0102400240200628020022030d002009ad2107410021030c010b200441016a210420063301044220862009ad8421070b02402007422088a7220620032f0106490d0003402007220842ffffffff0f832107200441016a210420032f01042206200328020022032f01064f0d000b200821070b2004417f6a2105200320064103746a41086a210a200641027420036a41e4006a28020021062007a721094100210402402005450d000340200628026021062005417f6a22050d000b0b410021050c020b41ceb8c4004133200241a0026a41fcbfc4004184b9c400102e000b200341016a2105200620034103746a41086a210a0b2001200536020c2001200936020820012006360204200120043602000c000b0b200041043a00080b200241f0036a24000b871a05027f017e097f077e167f230041f0036b2202240002400240024002400240024002400240412a101e2203450d00200341286a41002f00c3ed423b0000200341206a41002900bbed42370000200341186a41002900b3ed42370000200341106a41002900abed42370000200341086a41002900a3ed423700002003410029009bed42370000200129030021042003412a41d40010222203450d012003200437002a200241b8026a41186a22014200370300200241b8026a41106a22054200370300200241b8026a41086a22064200370300200242003703b80220034132200241b8026a1001200241306a41186a2001290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903b802370330200310200240200241306a412041e4fdc600410041001002417f460d00412a101e2203450d03200341286a41002f00c3ed423b0000200341206a41002900bbed42370000200341186a41002900b3ed42370000200341106a41002900abed42370000200341086a41002900a3ed423700002003410029009bed423700002003412a41d40010222203450d042003200437002a200241b8026a41186a22014200370300200241b8026a41106a22054200370300200241b8026a41086a22064200370300200242003703b80220034132200241b8026a1001200241306a41186a2001290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903b80237033020031020200241003602b802200241306a4120200241b8026a1003210320022802b8022201417f460d062003450d062002200136026c20022003360268200241b8026a200241e8006a10f20320022903b8024201510d0520024188026a41086a2205200241b8026a41186a220729030037030020024188026a41106a2206200241b8026a41206a220829030037030020024188026a41186a2209200241b8026a41286a220a29030037030020024188026a41206a220b200241e8026a29030037030020024188026a41286a220c200241f0026a2903003703002002200241b8026a41106a220d2903003703880220022903c002210e02402001450d00200310200b200241e8006a41286a200c290300220f370300200241e8006a41206a200b2903002210370300200241e8006a41186a20092903002211370300200241e8006a41106a20062903002212370300200241e8006a41086a2005290300221337030020022002290388022214370368200a200f3703002008201037030020072011370300200d2012370300200241b8026a41086a2013370300200220143703b802200c200f370300200b201037030020092011370300200620123703002005201337030020022014370388020c070b20004193ddc20036020420004101360200200041086a41223602000c070b412a4101102d000b41d4004101102d000b412a4101102d000b41d4004101102d000b41ceb8c4004133200241186a41fcbfc4004184b9c400102e000b4200210e20024188026a41086a420037030020024188026a41106a420037030020024188026a41186a420037030020024188026a41206a420037030020024188026a41286a4200370300200241b8026a41286a200241e8006a41286a290300370300200241b8026a41206a200241e8006a41206a290300370300200241b8026a41186a200241e8006a41186a290300370300200241b8026a41106a200241e8006a41106a290300370300200241b8026a41086a200241e8006a41086a2903003703002002420037038802200220022903683703b8020b024002400240024002404126101e2203450d002003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d012003200e370026200241b8026a41186a22014200370300200241b8026a41106a22054200370300200241b8026a41086a22064200370300200242003703b8022003412e200241b8026a1001200241306a41186a2001290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903b80237033020031020200241003602b802200241306a4120200241b8026a1003211520022802b8022216417f460d032015450d03200220163602e401200220153602e001200241b8026a200241e0016a10f70320022802900322034102460d02200241c0016a41086a200241b8026a41106a290300370300200241e8006a41086a200241dc026a290200370300200241e8006a41106a200241e4026a29020037030020024180016a200241ec026a29020037030020024188016a200241f4026a280200360200200241a8016a41086a20024184036a290200370300200241a8016a41106a2002418c036a280200360200200220022903c0023703c001200220022902d402370368200220022902fc023703a80120022903b802210f20022802d002211720022802f8022118200241d4036a2f01002105200241d0036a2802002119200241cc036a2802002106200241c8036a280200211a200241c4036a2802002109200241c0036a280200211b200241bc036a280200210b200241b8036a280200211c200241b4036a280200210c200241b0036a280200211d200241ac036a2802002107200241a8036a280200211e200241a4036a2802002108200241a0036a280200211f2002419c036a280200210a20024198036a280200210d200228029403212020024198016a41086a200241de036a2f01003b0100200220022901d60337039801200241e0036a2802002101200241e4036a2802002121200241e8036a2802002122200241ec036a28020021232016450d04201510200c040b41264101102d000b41cc004101102d000b41ceb8c4004133200241186a41fcbfc4004184b9c400102e000b410221030b200241f8016a41086a2216200241c0016a41086a290300370300200241b8026a41086a2224200241e8006a41086a290300370300200241b8026a41106a2225200241e8006a41106a290300370300200241b8026a41186a2226200241e8006a41186a290300370300200241b8026a41206a2227200241e8006a41206a280200360200200220022903c0013703f801200220022903683703b802200241e0016a41086a2228200241a8016a41086a290300370300200241e0016a41106a2229200241a8016a41106a280200360200200220022903a8013703e001200241d0016a41086a222a20024198016a41086a2f01003b010020022002290398013703d001410221150240024020034102470d004200210f41908cc500210141002121410021224100210541002106410021094100210b4100210c41002107410021084100210a4100210d41022117410021030c010b200241d8006a41086a2016290300370300200241306a41086a2024290300370300200241306a41106a2025290300370300200241306a41186a2026290300370300200241306a41206a2027280200360200200241186a41086a2028290300370300200241186a41106a2029280200360200200220022903f801370358200220022903b802370330200220022903e001370318200241086a41086a202a2f01003b0100200220022903d001370308201821150b200041086a200e370300200041106a200229038802370300200041186a20024188026a41086a290300370300200041206a20024188026a41106a290300370300200041286a20024188026a41186a290300370300200041306a20024188026a41206a290300370300200041386a20024188026a41286a290300370300200041c8006a200f370300200041c0006a2004370300200041d0006a2002290358370300200041d8006a200241d8006a41086a290300370300200041e0006a201736020020004184016a200241306a41206a280200360200200041fc006a200241306a41186a290300370200200041f4006a200241306a41106a290300370200200041ec006a200241306a41086a290300370200200041e4006a200229033037020020004188016a20153602002000419c016a200241186a41106a28020036020020004194016a200241186a41086a2903003702002000418c016a2002290318370200200041e4016a20053b0100200041e0016a2019360200200041dc016a2006360200200041d8016a201a360200200041d4016a2009360200200041d0016a201b360200200041cc016a200b360200200041c8016a201c360200200041c4016a200c360200200041c0016a201d360200200041bc016a2007360200200041b8016a201e360200200041b4016a2008360200200041b0016a201f360200200041ac016a200a360200200041a8016a200d360200200041a4016a2020360200200041a0016a2003360200200041fc016a2023360200200041f8016a2022360200200041f4016a2021360200200041f0016a200136020020004100360200200041ee016a200241086a41086a2f01003b0100200020022903083701e6010b200241f0036a24000bca0b01167f23004190046b22032400200341d8026a200110a703024002402003290388034202520d00200041086a4118360200200041c58cc600360204200041013602000c010b20034198026a41086a2204200341e4026a29020037030020034198026a41106a2205200341ec026a29020037030020034198026a41186a2206200341f4026a29020037030020034198026a41206a2207200341d8026a41246a29020037030020034198026a41286a220820034184036a29020037030020034198026a41306a22092003418c036a29020037030020034198026a41386a220a20034194036a280200360200200320032902dc023703980220034198036a280200210b200341a0036a280200210c200341a8036a280200210d200341b0036a280200210e200341b8036a2903002101200341c0036a280200210f200341c8036a280200211020032802d8022111200328029c03211220032802a403211320032802ac03211420032802b403211520032802c403211620032d00cc032117200341d0016a200341cd036a41c30010cd051a20034190016a41086a2218200429030037030020034190016a41106a2204200529030037030020034190016a41186a2205200629030037030020034190016a41206a2206200729030037030020034190016a41286a2207200829030037030020034190016a41306a2208200929030037030020034190016a41386a2209200a280200360200200320032903980237039001200341c8006a200341d0016a41c30010cd051a200341086a41086a2018290300370300200341086a41106a2004290300370300200341086a41186a2005290300370300200341086a41206a2006290300370300200341086a41286a2007290300370300200341086a41306a2008290300370300200341086a41386a20092802003602002003200329039001370308200341d8026a200341c8006a41c30010cd051a024002400240024002402017450d00411e210241b6afc60021040c010b4124101e2204450d0241002105200441206a41002800818f46360000200441186a41002900f98e46370000200441106a41002900f18e46370000200441086a41002900e98e46370000200441002900e18e46370000024002400240024020022d00080e0403000102030b410121050c020b410221050c010b410321050b200320053a00d0012004412441c80010222204450d03200420053a00242004200229030037002541182102200341d0016a41186a22054200370300200341d0016a41106a22064200370300200341d0016a41086a22074200370300200342003703d0012004412d200341d0016a1001200341c8006a41186a2005290300370300200341c8006a41106a2006290300370300200341c8006a41086a2007290300370300200320032903d00137034820041020419eafc6002104200341c8006a412041e4fdc600410041001002417f460d010b2000200436020420004101360200200041086a200236020002402012450d00200b10200b0240200d450d00201310200b02402015450d00200e10200b200f2016201010f5020c030b200041086a20113602002000410c6a2003290308370200200041fc006a41003a0000200041f8006a2010360200200041f4006a2016360200200041f0006a200f360200200041e8006a2001370300200041e4006a2015360200200041e0006a200e360200200041dc006a2014360200200041d8006a200d360200200041d4006a2013360200200041d0006a200c360200200041cc006a2012360200200041c8006a200b360200200041146a200341086a41086a2903003702002000411c6a200341086a41106a290300370200200041246a200341206a2903003702002000412c6a200341086a41206a290300370200200041346a200341306a2903003702002000413c6a200341386a290300370200200041c4006a200341c0006a280200360200200041fd006a200341d8026a41c30010cd051a200041003602000c020b41244101102d000b41c8004101102d000b20034190046a24000b3400200041ac86c20036020420004100360200200041146a4109360200200041106a41b086c200360200200041086a42043702000bcf0101017f0240024002400240024002404101101e2202450d00200241003a000020024101410210222202450d01200241003a000120024102410410222202450d02200241003b000220024104410810222202450d032002410036000420024108411010222202450d042002420037000820024110412010222202450d052002420037001820024200370010200042a08080808004370204200020023602000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b130020004102360204200041e098c2003602000b3101017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242f02e3700000b3101017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242e4003700000b3400200041869ec20036020420004100360200200041146a410f360200200041106a41909ec200360200200041086a42093702000b9a0101017f02400240024002404104101e2202450d002002410036000020024104410810222202450d012002410036000420024108411010222202450d022002420037000820024110412010222202450d0320024100360015200241003a001420024100360010200042a08080809003370204200020023602000f0b41044101102d000b41084101102d000b41104101102d000b41204101102d000be00a03037f027e037f23004190016b22022400200241d0006a4200370300200241c8006a4200370300200241c0006a4200370300200241106a22034200370300200241086a41106a41003602002002412c6a4200370200200241246a428080808010370200200241e0006a4200370300200241e8006a4200370300200241f0006a4200370300200241f8006a41003a0000200242003703382002420037030820024200370358200241003602342002420137021c20024100360288012002420137038001024002400240024002400240024002404104101e2204450d0020024284808080c00037028401200220043602800120044100360000200241386a20024180016a10ca01200329030021052002290308210602400240200228028401220320022802880122046b4110490d0020022802800121030c010b200441106a22072004490d06200341017422042007200420074b1b22044100480d060240024020030d002004101e21030c010b20022802800120032004102221030b2003450d022002200436028401200220033602800120022802880121040b200320046a22032005370008200320063700002002200441106a36028801200228021c210820022002280224220436028c012002418c016a20024180016a106302400240200228028401220720022802880122036b2004490d0020022802800121070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b20022802800120072003102221070b2007450d032002200336028401200220073602800120022802880121030b2002200320046a36028801200720036a2008200410cd051a2002280228210820022002280230220436028c012002418c016a20024180016a106302400240200228028401220720022802880122036b2004490d0020022802800121070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b20022802800120072003102221070b2007450d042002200336028401200220073602800120022802880121030b2002200320046a36028801200720036a2008200410cd051a200220024180016a36028c01200241d8006a2002418c016a10b901200228023421070240200228028401220320022802880122046b4104490d0020022802800121030c050b200441046a22082004490d05200341017422042008200420084b1b22044100480d050240024020030d002004101e21030c010b20022802800120032004102221030b02402003450d002002200436028401200220033602800120022802880121040c050b20044101102d000b41044101102d000b20044101102d000b20034101102d000b20034101102d000b2002200441046a36028801200320046a200736000020022d0078220441054b0d02024002400240024002400240024020040e06000102030405000b410021030c050b410121030c040b410221030c030b410321030c020b410421030c010b410521030b200220033a008c0102402002280284012002280288012204460d0020022802800121070c020b200441016a22072004490d00200441017422082007200820074b1b22084100480d000240024020040d002008101e21070c010b20022802800120042008102221070b02402007450d002002200836028401200220073602800120022802880121040c020b20084101102d000b1027000b2002200441016a36028801200720046a20033a00000b2000200229038001370200200041086a20024180016a41086a28020036020002402002280220450d00200228021c10200b0240200228022c450d00200228022810200b20024190016a24000b3301017f02404104101e22020d0041044101102d000b20004284808080c000370204200020023602002002418089fa003600000b3201017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024190ce003600000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241e4003600000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024190013600000b3701017f02404110101e22020d0041104101102d000b200242003700082002420a370000200042908080808002370204200020023602000b3701017f02404110101e22020d0041104101102d000b2002420037000820024205370000200042908080808002370204200020023602000b3801017f02404110101e22020d0041104101102d000b20024200370008200242e400370000200042908080808002370204200020023602000b3001017f02404104101e22020d0041044101102d000b20004284808080c000370204200020023602002002413c3600000b13002000410536020420004188b8c2003602000bb40a03077f047e037f230041b0016b2202240041002103200241003a00a8012001280204415e6a21040240024002400240024002400240024003402004415e460d0120024188016a20036a200128020022052d00003a00002001200441216a3602042001200541016a3602002002200341016a22063a00a8012004417f6a21042006210320064120470d000b200241286a41086a20024188016a41086a290300370300200241286a41106a20024188016a41106a290300370300200241286a41186a20024188016a41186a290300370300200220022903880137032841002103200241003a00a801200441226a2107417f2108034020072003460d0220024188016a20036a200520036a220641016a2d00003a00002001200420036b41216a3602042001200641026a3602002002200341016a22063a00a8012008417f6a21082006210320064120470d000b200241c8006a41086a20024188016a41086a290300370300200241c8006a41106a20024188016a41106a290300370300200241c8006a41186a20024188016a41186a2903003703002002200229038801370348200420066b220441226a4110490d06200520066a220341096a2900002109200341016a290000210a2001200441126a22053602042001200341116a220836020020054110490d06200341196a290000210b2008290000210c2001200441026a3602042001200341216a22053602002007200641206a460d0520052d000021062001200441016a3602042001200341226a360200200641014b0d054100210520060e020302030b0240200341ff0171450d00200241003a00a8010b200041023a00600c060b0240200341ff0171450d00200241003a00a8010b200041023a00600c050b41002106200241003a00a80103402004417f460d0220024188016a20066a200320066a220541226a2d00003a0000200120043602042001200541236a3602002002200641016a22053a00a8012004417f6a21042005210620054120470d000b200241e8006a41186a20024188016a41186a290300370300200241e8006a41106a20024188016a41106a290300370300200241e8006a41086a20024188016a41086a2903003703002002200229038801370368410121050b200241086a41186a2206200241e8006a41186a2204290300370300200241086a41106a2208200241e8006a41106a2201290300370300200241086a41086a2207200241e8006a41086a220329030037030020024188016a41086a220d200241286a41086a29030037030020024188016a41106a220e200241286a41106a29030037030020024188016a41186a220f200241286a41186a2903003703002002200229036837030820022002290328370388012004200241c8006a41186a2903003703002001200241c8006a41106a2903003703002003200241c8006a41086a29030037030020022002290348370368200041186a200b3703002000200c370310200020093703082000200a3703002000200229038801370320200041286a200d290300370300200041306a200e290300370300200041386a200f29030037030020002002290368370340200041c8006a2003290300370300200041d0006a2001290300370300200041d8006a2004290300370300200020053a0060200041f9006a2006290300370000200041f1006a2008290300370000200041e9006a20072903003700002000200229030837006120004184016a200241cb006a28000036000020004181016a20022800483600000c030b200641ff0171450d00200241003a00a8010b200041023a00600c010b200041023a00600b200241b0016a24000b3400200041eac0c20036020420004100360200200041146a4108360200200041106a41f0c0c200360200200041086a42063702000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241ac023600000bc00203047f017e037f230041306b22012400200141186a41086a220242003703002001420037031841f8fac1004115200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a109a03024020012802182204450d00200129021c21052003450d02200210200c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b42002105410121040b2005422088a721032005a72106200041ff017121074100210202400340024020032002470d00410021080c020b0240200420026a2d000022004104470d00410021080c020b41012108200241016a210220002007470d000b0b02402006450d00200410200b200141306a240020080bf90301047f230041d0016b220224000240024002404111101e2203450d0041002104200341106a41002d009dfb413a0000200341086a4100290095fb413700002003410029008dfb413700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a007020034111412210222203450d01200320043a0011200241f0006a41186a22044200370300200241f0006a41106a22014200370300200241f0006a41086a220542003703002002420037037020034112200241f0006a1001200241186a2004290300370300200241106a2001290300370300200241086a200529030037030020022002290370370300200310202002410036027020024120200241f0006a100321030240024020022802702204417f460d002003450d00200220043602cc01200220033602c801200241f0006a200241c8016a10990320022903704201510d04200241206a200241f0006a41086a41d00010cd051a02402004450d00200310200b200241f0006a200241206a41d00010cd051a200041086a200241f0006a41d00010cd051a410021030c010b20004198d2c200360204200041086a4116360200410121030b20002003360200200241d0016a24000f0b41114101102d000b41224101102d000b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000bff0202057f027e230041d0006b2203240002400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370224200320043602202000200341206a10ca012003280228210420032802202100200341306a41186a22054200370300200341306a41106a22064200370300200341306a41086a220742003703002003420037033020002004200341306a1001200341186a2005290300370300200341106a2006290300370300200341086a20072903003703002003200329033037030002402003280224450d00200328022010200b2003410036023020034120200341306a1003210420032802302200417f460d022004450d0220004110490d01200441086a290000210820042900002109200410200c030b41144101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002109420021080b200341d0006a2400200920015a200820025a20082002511b0b9f0702067f067e230041d0006b2204240002400240024002404114101e2205450d00200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210a2005290000210b200510200c030b41144101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210b4200210a0b2001200b2002200b200b200256200a200356200a2003511b22051b220c7d200a2003200a20051b220d7d200b200c54ad7d109303024002402002200c7d220a2003200d7d2002200c54ad7d220e8450450d004200210b4200210e0c010b02400240024002404118101e2205450d00200541002900e28a45370000200541106a41002900f28a45370000200541086a41002900ea8a45370000200442988080808003370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210320052900002102200510200c030b41184101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b42002102420021030b20012002200a20022002200a562003200e562003200e511b22051b220b7d2003200e200320051b220f7d2002200b54ad7d109403200e200f7d200a200b54ad7d210e200f200d7c200b200c7c2202200b54ad7c2103200a200b7d210b0b2000200b37031020002002370300200041186a200e37030020002003370308200441d0006a24000bcf0a07037f017e047f057e017f047e027f230022062107200641c0006b416071220624001079210820062003370310200620023703082006200436021842012102200642013703002006200028000036021c20003500042103200641206a200110d10420032005ad42ff01834220868421092006280220210a2006280224210b0240024002400240024002400240024020062802282205450d00200a200541057422046a210c200641346a210d2006290318210e2006290310210f2006290308211020062903002103200a21050340200541086a2903002102200541106a290300211120052903002112200641206a41186a200541186a290300370300200641206a41106a22132011370300200641206a41086a2002370300200620123703204200210202400240200d2000460d00200d2900002000290000510d0002400240200628023020084b0d00420021110c010b20132903002114200629032821152006290320211642012111200629033821170b200321020c010b200921172003211120102116200f2115200e21140b20114201510d02200541206a210520022103200441606a22040d000b20062002370300200620103703082006200f3703102006200e3703180b410021040240200b450d00200a10200b41002118410821130c010b20062002370300200620103703082006200f3703102006200e3703184120101e2213450d05201320173703182013201637030020132015370308201341106a20143703000240024020044120470d0041012104410121180c010b200541206a2105200641346a211920022103410121044101211803400240024020192000460d00200321110340200641206a41186a200541186a290300370300200641206a41106a220d200541106a290300370300200641206a41086a200541086a290300370300200620052903003703200240024020192900002000290000510d000240200628023020084b0d0020112103420021110c020b200d290300211620062903282117200629032021122006290338211520112103420121110c010b42002102200642003703004200210320102112200f2117200e2116200921150b024020114201510d0020032111200c200541206a2205470d010c050b0b200541206a21050c010b024003402006420037030020034201510d0142002103200c200541206a2205470d000b420021020c030b200541206a2105420021024200210320102112200f2117200e2116200921150b024020182004470d00200441016a220d2004490d0420044101742218200d2018200d4b1b221841ffffff3f712018470d042018410574220d4100480d040240024020040d00200d101e21130c010b20132004410574200d102221130b2013450d070b201320044105746a220d2017370308200d2012370300200d41106a2016370300200d41186a2015370300200441016a21042005200c470d000b0b200b450d00200a10200b20024201520d02200641206a41106a22002006410872220541106a290300370300200641206a41086a220d200541086a2903003703002006200529030037032020042018470d01200441016a22052004490d00200441017422082005200820054b1b221841ffffff3f712018470d00201841057422054100480d000240024020040d002005101e21130c010b201320044105742005102221130b20130d0120054108102d000b1027000b201320044105746a22052006290320370300200541106a2000290300370300200541086a200d290300370300200541186a2009370300200441016a21040b2006200436022820062018360224200620133602202001200641206a10d204200724000f0b200d4108102d000b41204108102d000bf31101057f230041a0016b2206240010792107200642f2deb1abf6eb9cbaeb003703800120064180016a200020042005200720036a411610e103200641186a200041186a290000370300200641106a200041106a290000370300200641086a200041086a2900003703002006200029000037030020064180016a20011081032006280284012103200620062802800122002006280288014105746a36028c012006200036028801200620033602840120062000360280012006200636029001200641206a20064180016a10e30320062802202108200628022421092006280228210702400240024002400240024002400240024002404117101e2200450d00410021032000410f6a41002900d5f841370000200041086a41002900cef841370000200041002900c6f8413700000240024002400240200141ff01710e0403000102030b410121030c020b410221030c010b410321030b200620033a00800120004117412e10222200450d01200020033a001720064180016a41186a2203420037030020064180016a41106a2201420037030020064180016a41086a220a420037030020064200370380012000411820064180016a1001200641d0006a41186a2003290300370300200641d0006a41106a2001290300370300200641d0006a41086a200a2903003703002006200629038001370350200010202006410036028801200642013703800120062007360270200641f0006a20064180016a106302402007450d0020074105742103200821000340200020064180016a10ca01200041206a2100200341606a22030d000b0b2006280284012100200641d0006a41202006280280012203200628028801100502402000450d00200310200b02402009450d00200810200b411b101e2200450d02200041176a41002800b0d042360000200041106a41002900a9d042370000200041086a41002900a1d04237000020004100290099d0423700002000411b413610222200450d032000200237001b4200210420064180016a41186a2203420037030020064180016a41106a2207420037030020064180016a41086a2201420037030020064200370380012000412320064180016a1001200641d0006a41186a2003290300370300200641d0006a41106a2007290300370300200641d0006a41086a20012903003703002006200629038001370350200010202006410036028001200641d0006a412020064180016a10032103024002402006280280012207417f470d00410121000c010b024020030d00410121000c010b200620073602742006200336027020064180016a200641f0006a10e3012006280280012200450d0520062902840121042007450d00200310200b20062000360288012006200036028001200620043e028401200620002004422088a74105746a36028c012006200636029001200641306a20064180016a10e303200628023021072006280234210120062802382103411b101e2200450d05200041176a41002800b0d042360000200041106a41002900a9d042370000200041086a41002900a1d04237000020004100290099d0423700002000411b413610222200450d062000200237001b20064180016a41186a2208420037030020064180016a41106a2209420037030020064180016a41086a220a420037030020064200370380012000412320064180016a1001200641d0006a41186a2008290300370300200641d0006a41106a2009290300370300200641d0006a41086a200a2903003703002006200629038001370350200010202006410036028801200642013703800120062003360270200641f0006a20064180016a106302402003450d0020034105742103200721000340200020064180016a10ca01200041206a2100200341606a22030d000b0b2006280284012100200641d0006a41202006280280012203200628028801100502402000450d00200310200b02402001450d00200710200b20064180016a41086a22004200370300200642003703800141b4d0c200411620064180016a1000200641d0006a41086a200029030037030020062006290380013703502006410036028001200641d0006a411020064180016a100321032006280280012207417f460d082003450d08200620073602742006200336027020064180016a200641f0006a10e3012006280280012200450d0720062902840121042007450d09200310200c090b41174101102d000b412e4101102d000b411b4101102d000b41364101102d000b41ceb8c4004133200641c0006a41fcbfc4004184b9c400102e000b411b4101102d000b41364101102d000b41ceb8c4004133200641c0006a41fcbfc4004184b9c400102e000b41012100420021040b20062000360288012006200036028001200620043e028401200620002004422088a74105746a36028c012006200636029001200641c0006a20064180016a10e30320062802402107200628024421012006280248210020064180016a41086a22034200370300200642003703800141b4d0c200411620064180016a1000200641d0006a41086a200329030037030020062006290380013703502006410036028801200642013703800120062000360270200641f0006a20064180016a106302402000450d0020004105742103200721000340200020064180016a10ca01200041206a2100200341606a22030d000b0b2006280284012100200641d0006a41102006280280012203200628028801100502402000450d00200310200b02402001450d00200710200b02404117101e2200450d00200041002900aff8413700002000410f6a41002900bef841370000200041086a41002900b7f84137000020064297808080f002370274200620003602702006200641f0006a10ca01200628027821002006280270210320064180016a41186a2207420037030020064180016a41106a2201420037030020064180016a41086a2208420037030020064200370380012003200020064180016a1001200641d0006a41186a2007290300370300200641d0006a41106a2001290300370300200641d0006a41086a2008290300370300200620062903800137035002402006280274450d00200628027010200b200641d0006a412010042006108c02200641a0016a24000f0b41174101102d000ba60705067f037e067f017e027f23004180016b220224000240024002400240200141086a220328020022042001410c6a2802002205460d002001280210210603402003200441206a2207360200200441086a2900002108200441106a29000021092004290000210a200241e0006a41186a200441186a290000370300200241e0006a41106a2009370300200241e0006a41086a20083703002002200a37036002402006200241e0006a46220b0d00200241e0006a2006412010cf050d030b2007210420052007470d000b0b20004100360208200042013702002001280204450d01200128020010200c010b200241c0006a41086a2207200241e0006a41086a290300370300200241c0006a41106a2203200241e0006a41106a290300370300200241c0006a41186a220c200241e0006a41186a290300370300200220022903602208370300200220083703404120101e220d450d01200d2002290340370000200d41186a200c290300370000200d41106a2003290300370000200d41086a20072903003700002001280204210e2001280200210f4101210102400240200541606a2004470d004101210c0c010b0240200b450d004101210c0c010b200441206a2103200541606a2110410121014101210c03402003210402400340200241e0006a41186a2207200441186a290000370300200241e0006a41106a2203200441106a290000370300200241e0006a41086a220b200441086a29000037030020022004290000370360200241e0006a2006412010cf050d012005200441206a2204470d000c030b0b200241c0006a41086a200b2903002208370300200241c0006a41106a20032903002209370300200241c0006a41186a2007290300220a370300200220022903602211370340200241186a220b200a370300200241106a22122009370300200241086a22132008370300200220113703000240200c2001470d000240200141016a22072001490d00200141017422032007200320074b1b220c41ffffff3f71200c470d00200c41057422074100480d000240024020010d002007101e210d0c010b200d200141057420071022210d0b200d0d0120074101102d000b1027000b200441206a2103200d20014105746a22072002290300370000200741186a200b290300370000200741106a2012290300370000200741086a2013290300370000200141016a210120102004470d000b0b0240200e450d00200f10200b200020013602082000200c3602042000200d3602000b20024180016a24000f0b41204101102d000b130020004108360204200041b0d2c2003602000b800201077f230041106b2202240002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a3602002006450d0020042d0001210720012003417e6a22063602042001200441026a3602002006450d0020042d0002210820012003417d6a22063602042001200441036a3602002006450d0020042d0003210620012003417c6a3602042001200441046a3602002002200110b70120022802000d01200041003602040c020b200041003602040c010b200020022903003702042000410c6a200241086a280200360200200020074108742005722008411074722006411874723602000b200241106a24000ba00101047f230041106b2202240020024100360208200242013703002000280200210320022000280208220436020c2000410c6a21052002410c6a2002106302402004450d002004410574210003402003200210ca01200341206a2103200041606a22000d000b0b2005200210e7032002280204210320012802002001280204200228020022002002280208100502402003450d00200010200b200241106a24000bde0501037f02400240024002400240024020002d00004101460d000240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b02400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c010b20044101102d000b200141086a200241016a360200200320026a41013a0000200041016a200110ca010c010b200141086a200241016a360200200320026a41003a00000b024020002d00214101460d000240200141046a280200200141086a2802002200460d00200128020021020c040b200041016a22022000490d01200041017422032002200320024b1b22034100480d010240024020000d002003101e21020c010b200128020020002003102221020b02402002450d0020012002360200200141046a2003360200200141086a28020021000c040b20034101102d000b0240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d00200241017422042003200420034b1b22044100480d000240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b1027000b200141086a200241016a360200200320026a41013a0000200041226a200110ca010f0b200141086a200041016a360200200220006a41003a00000b850505027f017e0a7f037e037f230041206b2202240002400240024020012802082203ad42d0007e2204422088a70d002004a72205417f4c0d00200128020021060240024020050d00410821070c010b2005101e2207450d020b0240024020030d00410021080c010b2006200341d0006c6a2109410021082007210a0340200241186a220b200641186a290300370300200241106a220c200641106a290300370300200241086a220d200641086a29030037030020022006290300370300200641c8006a280200220ead42307e2204422088a70d022004a72205417f4c0d02200641386a2903002104200641306a290300210f200641286a2903002110200641c0006a2802002101200629032021110240024020050d00410821120c010b2005101e2212450d050b200641d0006a210602400240200e0d00410021130c010b2001200e41306c6a211441002113201221050340200520012903003703002005200141086a290300370308200541106a200141106a290300370300200541186a200141186a290300370300200541206a200141206a290300370300200541286a200141286a290300370300200541306a2105201341016a2113200141306a22012014470d000b0b200a2011370320200a2002290300370300200a41386a2004370300200a41306a200f370300200a41286a2010370300200a41c8006a2013360200200a41c4006a200e360200200a41c0006a2012360200200a41186a200b290300370300200a41106a200c290300370300200a41086a200d290300370300200841016a2108200a41d0006a210a20062009470d000b0b200020083602082000200336020420002007360200200241206a24000f0b102c000b20054108102d000b20054108102d000bdd0704067f017e097f027e230041f0006b22032400200341206a2001200228020c220411030002400240024002402003280220450d00200341c8006a41106a200341206a41106a290300370300200341c8006a41086a200341206a41086a290300370300200341c8006a41186a200341206a41186a290300370300200341c8006a41206a200341206a41206a280200360200200341086a200341d4006a290200370300200341106a200341dc006a290200370300200341186a200341e4006a290200370300200320032903203703482003200329024c370300200341c8006a200120022802102205110300417f2003280248220641016a220720072006491b2208ad42287e2209422088a70d022009a72206417f4c0d024108210a02402006450d002006101e220a450d040b200a2003290300370300200a4201370320200a41186a200341186a220b290300370300200a41106a200341106a220c290300370300200a41086a200341086a290300370300200341206a20012004110300024002400240024020032802200d004101210d0c010b200341c8006a410472210641c800210e4101210d0340200341c8006a41206a200341206a41206a280200360200200341c8006a41186a220f200341206a41186a290300370300200341c8006a41106a2210200341206a41106a290300370300200341c8006a41086a2211200341206a41086a29030037030020032003290320370348200341086a2207200641086a290200370300200c200641106a290200370300200b200641186a29020037030020032006290200370300200f200b2903003703002010200c29030037030020112007290300370300200320032903003703480240200d2008470d00200341206a200120051103002008417f2003280220220741016a221220122007491b6a22072008490d04200841017422122007201220074b1b2207ad42287e2209422088a70d042009a722124100480d040240024020080d002012101e210a0c010b200a200841286c20121022210a0b200a450d03200721080b200a200e6a221241606a220720032903483703002011290300210920102903002113200f290300211420124201370300200741186a2014370300200741106a2013370300200741086a2009370300200341206a20012004110300200e41286a210e200d41016a210d20032802200d000b0b2001200228020011020002402002280204450d00200110200b2000200d360208200020083602042000200a3602000c030b20124108102d000b1027000b2000410036020820004208370200200120022802001102002002280204450d00200110200b200341f0006a24000f0b102c000b20064108102d000bac0705077f037e097f017e017f23004180016b22022400024002400240200141086a220328020022042001410c6a2802002205460d0020012802102106200241f4006a2107034020032004220841206a2204360200200841086a2903002109200841106a290300210a2008290300210b200241e0006a41186a200841186a290300370300200241e0006a41106a200a370300200241e0006a41086a20093703002002200b3703600240200aa720062802004d0d002001280214220c2007460d002007290000200c290000520d030b20052004470d000b0b20004100360208200042083702002001280204450d01200128020010200c010b200241086a2204200241e0006a41086a290300370300200241106a2203200241e0006a41106a290300370300200241186a2207200241e0006a41186a29030037030020022002290360220a3703202002200a3703000240024002404120101e220d450d00200d2002290300370300200d41186a2007290300370300200d41106a2003290300370300200d41086a20042903003703002001280204210e2001280200210f200541606a2008460d01200841206a2110200541606a2111200241f4006a21014101211241012113200d21140340200c2001460d022010210802400340200241e0006a41186a2204200841186a290300370300200241e0006a41106a2203200841106a290300220a370300200241e0006a41086a2207200841086a290300370300200220082903003703600240200aa720062802004d0d002001290000200c290000520d020b2005200841206a2208470d000c050b0b200241206a41086a2007290300220a370300200241206a41106a20032903002209370300200241206a41186a2004290300220b3703002002200229036022153703202004200b370300200320093703002007200a37030020022015370360024020132012470d000240201241016a22132012490d00201241017422102013201020134b1b221341ffffff3f712013470d00201341057422104100480d000240024020120d002010101e21140c010b201420124105742010102221140b20140d0120104108102d000b1027000b200841206a2110201420124105746a22162002290360370300201641186a2004290300370300201641106a2003290300370300201641086a2007290300370300201241016a211220112008470d000c030b0b41204108102d000b4101211241012113200d21140b0240200e450d00200f10200b2000201236020820002013360204200020143602000b20024180016a24000be70101057f230041206b2202240002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200137001f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411f4101102d000b413e4101102d000bf80101057f230041206b22022400024002404126101e2203450d002003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d0120032001370026200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412e20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41264101102d000b41cc004101102d000bc00301067f230041306b22022400024002404125101e2203450d002003411d6a41002900daee42370000200341186a41002900d5ee42370000200341106a41002900cdee42370000200341086a41002900c5ee42370000200341002900bdee42370000200242a5808080d0043702042002200336020020012802002104200220012802082201360210200241106a20021063024020022802042205200228020822066b2001490d00200228020021030c020b0240200620016a22032006490d00200541017422072003200720034b1b22074100480d000240024020050d002007101e21030c010b200228020020052007102221030b02402003450d002002200736020420022003360200200721050c030b20074101102d000b1027000b41254101102d000b2002200620016a2207360208200320066a2004200110cd051a200241106a41186a22014200370300200241106a41106a22064200370300200241106a41086a220442003703002002420037031020032007200241106a1001200041186a2001290300370000200041106a2006290300370000200041086a20042903003700002000200229031037000002402005450d00200310200b200241306a24000be70101057f230041206b2202240002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200137001f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411f4101102d000b413e4101102d000b860e04077f037e067f047e230041f0006b2202240041002103200241003a004820012802042104417f210502400240024002400240024002400240024002400240034020042003460d01200241286a20036a200128020022062d00003a00002001200420056a3602042001200641016a3602002002200341016a22073a00482005417f6a21052007210320074120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a2903003703002002200229032837030820042007460d0420062d000121032001200420056a22053602042001200641026a2208360200200341014b0d0420030e020201020b0240200341ff0171450d00200241003a00480b200042023703000c090b20054108490d022006290002210920012006410a6a22083602002001200420076b41776a22053602044201210a0c010b4200210a0b024002400240024002402005450d0020082d0000210320012005417f6a22073602042001200841016a2204360200200341014b0d00410221060240024020030e020100010b20074108490d012008290001210b2001200541776a22033602042001200841096a3602002003450d0120082d000921032001200541766a220c36020420012008410a6a220d360200200341014b0d01410021060240024020030e020100010b200c4104490d02200828000a210e2001200541726a220c36020420012008410e6a220d360200410121060b200c450d01200d2d000021032001200c417f6a22073602042001200d41016a2204360200200341014b0d014100210f024020030e020100010b20074104490d01200d28000121102001200c417b6a22073602042001200d41056a22043602004101210f0b2007450d0a20042d0000210320012007417f6a22053602042001200441016a360200200341024b0d0a410021080240024020030e03060001060b2005450d0220042d0001210320012007417e6a22053602042001200441026a360200200341014b0d02410021080240024020030e020100010b410121080b20054104490d072004280002211120012007417a6a3602042001200441066a360200200241e0006a200110b70120022802600d03200241023a00380c0b0b0240024002402005450d0020042d0001210320012007417e6a22053602042001200441026a360200200341014b0d004100210c0240024020030e020100010b4101210c0b20054104490d012004280002211120012007417a6a3602042001200441066a360200200241e0006a200110b70120022802600d02200241023a00380c0d0b200241023a00380c0c0b200241023a00380c0b0b200241346a200241e8006a280200360200410221082002413b6a200241cd006a41026a2d00003a0000200220113602282002200229036037022c2002200c3a0038200220022f004d3b0039200241286a21030c030b200042023703000c0a0b200241023a00380c080b200241346a200241e8006a2802003602002002413b6a200241cf006a2d00003a0000200220113602282002200229036037022c200220083a0038200220022f004d3b003941012108200241286a21030b2003410c6a2902002112200341086a280200210c2003280204210d200128020421050b20054108490d022001280200220329000021132001200541786a22073602042001200341086a36020020074108490d02200329000821142001200541706a22073602042001200341106a220336020020074104490d022003280000210420012005416c6a22073602042001200341046a36020020074108490d030c040b200042023703000c050b200241023a00380c030b200042023703000240200841014b0d00024020080e020500050b200c450d04200d10200c040b200c450d03200d10200c030b200042023703000240200841014b0d00024020080e020400040b200c450d03200d10200c030b200c450d02200d10200c020b200329000421152001200541646a36020420012003410c6a360200200241286a41086a2203200241086a41086a290300370300200241286a41106a2201200241086a41106a290300370300200241286a41186a2205200241086a41186a29030037030020022002290308370328200041d8006a2012370300200041d4006a200c360200200041d0006a200d360200200041cc006a2011360200200041c8006a2008360200200041c0006a2015370300200041386a2004360200200041306a2014370300200041286a201337030020002010360224200041206a200f3602002000200e36021c200041186a2006360200200041106a200b370300200020093703082000200a370300200041e0006a2002290328370300200041e8006a2003290300370300200041f0006a2001290300370300200041f8006a20052903003703000c010b200042023703000b200241f0006a24000b860504077f027e017f047e41002102230041d0006b220341003a004820012802042104417f210502400240024002400240034020042002460d01200341286a20026a200128020022062d00003a00002001200420056a3602042001200641016a3602002003200241016a22073a00482005417f6a21052007210220074120470d000b200341086a41186a200341286a41186a290300370300200341086a41106a200341286a41106a290300370300200341086a41086a200341286a41086a2903003703002003200329032837030820042007460d0420062d000121022001200420056a22053602042001200641026a2208360200200241014b0d0420020e020201020b200241ff0171450d03200341003a00480c030b20054108490d02410a21022006290002210920012006410a6a22083602002001200420076b41776a22053602044201210a0c010b4200210a410221020b20054104490d002008280000210420012005417c6a22073602042001200620026a220241046a3602002007450d0020022d0004210720012005417b6a22063602042001200241056a360200200741014b0d00410021080240024020070e020100010b20064104490d012002280005210b2001200541776a3602042001200241096a360200410121080b200341286a41186a200341086a41186a290300220c370300200341286a41106a200341086a41106a290300220d370300200341286a41086a200341086a41086a290300220e37030020032003290308220f370328200041186a200b36020020002008360214200041106a2004360200200020093703082000200a3703002000200f37021c200041246a200e3702002000412c6a200d370200200041346a200c3702000f0b200042023703000bb71109087f017e027f017e027f017e047f017e0b7f230041d0006b2202240002400240024020012802042203450d00200128020022042d0000210520012003417f6a3602042001200441016a360200200541014b0d00410021030240024020050e020100010b410121030b200241286a200110b701200228022822050d01200041023a00500c020b200041023a00500c010b200228022c2104024020012802042206450d00200241306a2802002107200128020022082d0000210920012006417f6a22063602042001200841016a360200200941014b0d00410021080240024020090e020100010b200241286a200110b70120022802282208450d01200229022c210a200128020421060b200aa7210902402006450d002001280200220b2d0000210c20012006417f6a22063602042001200b41016a360200200c41014b0d004100210b02400240200c0e020100010b200241286a200110b7012002280228220b450d01200229022c210d200128020421060b200da7210c02402006450d002001280200220e2d0000210f20012006417f6a22063602042001200e41016a360200200f41014b0d004100210e02400240200f0e020100010b200241286a200110b7012002280228220e450d01200229022c2110200128020421060b2010a7211102402006450d00200128020022122d0000210f20012006417f6a22133602042001201241016a360200200f41014b0d004100211402400240200f0e020100010b200241286a200110b70120022802282214450d01200229022c2115200128020421130b2015a72116024002402013450d00200128020022172d0000211820012013417f6a22063602042001201741016a36020020184103490d010b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d05200510200c050b024002400240024002400240024002400240024020064108490d00200a422088a72119200d422088a7211a2010422088a7211b2015422088a7211c2017290001210a2001201341776a221d3602042001201741096a36020041002106200241003a00484176210f0340201d2006460d02200241286a20066a201720066a221241096a2d00003a000020012013200f6a36020420012012410a6a3602002002200641016a22123a0048200f417f6a210f2012210620124120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a29030037030020022002290328370308201341776a2012460d04201720126a220641096a2d0000211720012013200f6a36020420012006410a6a360200201741014b0d04201341766a210f4100211d20170e020302030b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d0d200510200c0d0b0240200641ff0171450d00200241003a00480b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d0c200510200c0c0b4101211d0b200f2012460d032006410a6a2d0000210f2001201320126b221341756a221236020420012006410b6a360200200f41014b0d0341002117200f0e020201020b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d09200510200c090b410121170b20124104490d022006410b6a28000021122001201341716a220f36020420012006410f6a221e360200200f4108490d01200241286a41086a220f200241086a41086a290300370300200241286a41106a221f200241086a41106a290300370300200241286a41186a2220200241086a41186a290300370300201e290000210d2001201341696a3602042001200641176a36020020022002290308370328200020183a0051200020033a00502000201236024c2000201c36024820002016360244200020143602402000201b36023c200020113602382000200e3602342000201a3602302000200c36022c2000200b36022820002019360224200020093602202000200836021c2000200736021820002004360214200020053602102000200d3703082000200a370300200041f2006a201d3a0000200041f3006a20173a0000200041ea006a2020290300370100200041e2006a201f290300370100200041da006a200f290300370100200041d2006a20022903283701000c070b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d06200510200c060b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d05200510200c050b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d04200510200c040b200041023a00500240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d03200510200c030b200041023a00500240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d02200510200c020b200041023a005002402008450d002009450d00200810200b2004450d01200510200c010b200041023a00502004450d00200510200b200241d0006a24000bea0302067f077e41002102230041d0006b220341003a004820012802042104417f210502400240034020042002460d01200341286a20026a200128020022062d00003a00002001200420056a3602042001200641016a3602002003200241016a22073a00482005417f6a21052007210220074120470d000b200341086a41186a200341286a41186a290300370300200341086a41106a200341286a41106a290300370300200341086a41086a200341286a41086a29030037030020032003290328370308200420076b22024108490d01200629000121082001200641096a3602002001200241786a220536020420054108490d01200629000921092001200641116a3602002001200241706a220536020420054108490d012006290011210a2001200641196a3602002001200241686a360204200341286a41086a200341086a41086a290300220b370300200341286a41106a200341086a41106a290300220c370300200341286a41186a200341086a41186a290300220d37030020032003290308220e370328200041186a200a370300200041106a200937030020002008370308200041206a200e370300200041286a200b370300200041306a200c370300200041386a200d370300200042003703000f0b200241ff0171450d00200341003a00480b200042013703000bc32104047f017e1c7f017e23004190046b2202240020022001370308200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a220542003703002002420037037041aeefc2004127200241f0006a1001200241b0036a41186a2003290300370300200241b0036a41106a2004290300370300200241b0036a41086a2005290300370300200220022903703703b00320024100360270200241b0036a4120200241f0006a1003210302400240024020022802702204417f460d002003450d00024020044108490d002003290000210120031020200241106a200110ee0320024100360270200241106a4120200241f0006a10032103024020022802702204417f460d0020030d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000b200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a220542003703002002420037037041aeefc2004127200241f0006a1001200241b0036a41186a2003290300370300200241b0036a41106a2004290300370300200241b0036a41086a2005290300370300200220022903703703b00320022001370370200241b0036a4120200241f0006a4108100520004200370310200042003703000c010b20022004360284032002200336028003200241f0006a20024180036a10ef0302400240200229037022064202510d00200241b0036a41386a2207200241b0016a290300370300200241b0036a41306a2208200241f0006a41386a290300370300200241b0036a41286a2209200241f0006a41306a290300370300200241b0036a41206a2205200241f0006a41286a290300370300200241b0036a41186a220a200241f0006a41206a290300370300200241b0036a41106a220b200241f0006a41186a290300370300200241b0036a41086a220c200241f0006a41106a290300370300200220022903783703b003200241b8016a280200210d200241c0016a280200210e20022802bc01210f20022802c401211020024188036a41206a2211200241e8016a29030037030020024188036a41186a2212200241e0016a29030037030020024188036a41106a2213200241d8016a29030037030020024188036a41086a2214200241d0016a2903003703002002200241c8016a29030037038803200241f0036a20024180036a10930120022903f0034202520d010240200d41014b0d00200d0e020100010b2010450d00200e10200b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000b200241c0026a41386a22152007290300370300200241c0026a41306a22072008290300370300200241c0026a41286a22082009290300370300200241c0026a41206a22092005290300370300200241c0026a41186a2216200a290300370300200241c0026a41106a2217200b290300370300200241c0026a41086a2218200c29030037030020024198026a41086a2219201429030037030020024198026a41106a221a201329030037030020024198026a41186a221b201229030037030020024198026a41206a221c2011290300370300200220022903b0033703c002200220022903880337039802200241f8016a41086a2211200241f0036a41086a290300370300200241f8016a41106a221d200241f0036a41106a290300370300200241f8016a41186a221e200241f0036a41186a290300370300200241306a41086a2018290300370300200241306a41106a2017290300370300200241306a41186a2016290300370300200241306a41206a2009290300370300200241306a41286a2008290300370300200241306a41306a2007290300370300200241306a41386a2015290300370300200220022903f0033703f801200220022903c0023703302005201c290300370300200a201b290300370300200b201a290300370300200c20192903003703002012201e2903003703002013201d2903003703002014201129030037030020022002290398023703b003200220022903f8013703880302402004450d00200310200b200241f0006a41386a2203200241306a41386a290300370300200241f0006a41306a2204200241306a41306a290300370300200241f0006a41286a2205200241306a41286a290300370300200241f0006a41206a220a200241306a41206a220b290300370300200241f0006a41186a220c200241306a41186a2212290300370300200241f0006a41106a2213200241306a41106a2214290300370300200241f0006a41086a2217200241306a41086a2207290300370300200241c0026a41086a2218200241b0036a41086a2208290300370300200241c0026a41106a2219200241b0036a41106a2209290300370300200241c0026a41186a221a200241b0036a41186a2211290300370300200241c0026a41206a221b200241b0036a41206a221529030037030020022002290330370370200220022903b0033703c00220024198026a41186a221c20024188036a41186a221629030037030020024198026a41106a221d20024188036a41106a221e29030037030020024198026a41086a221f20024188036a41086a222029030037030020022002290388033703980220082017290300370300200920132903003703002011200c2903003703002015200a290300370300200241b0036a41286a22172005290300370300200241b0036a41306a22212004290300370300200241b0036a41386a22222003290300370300200220022903703703b00320072018290300370300201420192903003703002012201a290300370300200b201b290300370300200220022903c0023703302016201c290300370300201e201d29030022233703002020201f290300370300200220022903980237038803200241c4016a2010360200200241c0016a200e360200200241bc016a200f3602002002200637037020132008290300370300200c2009290300370300200a2011290300370300200520152903003703002004201729030037030020032021290300370300200241b0016a20222903003703002002200d3602b801200220022903b003370378200241f4016a2016410020234201511b360200200241e8016a200b290300370300200241e0016a2012290300370300200241d8016a2014290300370300200241c8016a2002290330370300200220072903003703d0012002200241086a3602f001200241003602c802200242013703c002200241d0016a200241c0026a10ca0120022802c402210420022802c80221030240024002400240024002400240024020022903704201510d00024020042003460d0020022802c00221040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00220032005102221040b02402004450d00200220053602c402200220043602c00220022802c80221030c020b20054101102d000b024002400240024020042003460d0020022802c00221040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802c00220032005102221040b2004450d01200220053602c402200220043602c00220022802c80221030b2002200341016a3602c802200420036a41013a000020022903782106024020022802c402220420022802c80222036b4108490d0020022802c00221040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b20022802c00220042003102221040b02402004450d00200220033602c402200220043602c00220022802c80221030c020b20034101102d000b20054101102d000b2002200341086a3602c802200420036a20063700000c010b2002200341016a3602c802200420036a41003a00000b02400240024020024188016a2802004102470d00024020022802c40220022802c8022203460d0020022802c00221040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00220032005102221040b02402004450d00200220053602c402200220043602c00220022802c80221030c020b20054101102d000b0240024020022802c40220022802c8022203460d0020022802c00221040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00220032005102221040b02402004450d00200220053602c402200220043602c00220022802c80221030c010b20054101102d000b2002200341016a3602c802200420036a41013a000020024180016a200241c0026a10f5030c010b2002200341016a3602c802200420036a41003a00000b200241b8016a200241c0026a10f60320022903980121060240024020022802c402220420022802c80222036b4108490d0020022802c00221040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802c00220042003102221040b2004450d02200220033602c402200220043602c00220022802c80221030b2002200341086a3602c802200420036a2006370000200241a0016a29030021060240024020022802c402220420022802c80222036b4108490d0020022802c00221040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802c00220042003102221040b2004450d03200220033602c402200220043602c00220022802c80221030b2002200341086a3602c802200420036a2006370000200241a8016a28020021050240024020022802c402220420022802c80222036b4104490d0020022802c00221040c010b200341046a220a2003490d0120044101742203200a2003200a4b1b22034100480d010240024020040d002003101e21040c010b20022802c00220042003102221040b2004450d04200220033602c402200220043602c00220022802c80221030b2002200341046a3602c802200420036a200536000020022903b0012106024020022802c402220420022802c80222036b4108490d0020022802c00221040c050b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b20022802c00220042003102221040b02402004450d00200220033602c402200220043602c00220022802c80221030c050b20034101102d000b1027000b20034101102d000b20034101102d000b20034101102d000b2002200341086a3602c802200420036a2006370000200241f0016a200241c0026a107e20022802c4022103200241106a412020022802c002220420022802c802100502402003450d00200410200b0240024020022802b801220341014b0d00024020030e020200020b20022802c401450d0120022802c00110200c010b20022802c401450d0020022802c00110200b20022903082106200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a220542003703002002420037037041aeefc2004127200241f0006a1001200241b0036a41186a2003290300370300200241b0036a41106a2004290300370300200241b0036a41086a2005290300370300200220022903703703b00320022006370370200241b0036a4120200241f0006a41081005200041186a200137030020004201370310200042003703000b20024190046a24000bc40c03047f017e017f230041106b220224002002410036020820024201370300200041e0006a200210ca010240024002400240024002400240024020002903004201510d000240200228020420022802082203460d00200228020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c020b20054101102d000b0240024002400240200228020420022802082203460d00200228020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200228020020032005102221040b2004450d012002200536020420022004360200200228020821030b2002200341016a360208200420036a41013a000020002903082106024020022802042204200228020822036b4108490d00200228020021040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c020b20034101102d000b20054101102d000b2002200341086a360208200420036a20063700000c010b2002200341016a360208200420036a41003a00000b024002400240200041186a2802004102470d000240200228020420022802082203460d00200228020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c020b20054101102d000b02400240200228020420022802082203460d00200228020021040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c010b20054101102d000b2002200341016a360208200420036a41013a0000200041106a200210f5030c010b2002200341016a360208200420036a41003a00000b200041c8006a200210f603200029032821060240024020022802042204200228020822036b4108490d00200228020021040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200228020020042003102221040b2004450d022002200336020420022004360200200228020821030b2002200341086a360208200420036a2006370000200041306a29030021060240024020022802042204200228020822036b4108490d00200228020021040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200228020020042003102221040b2004450d032002200336020420022004360200200228020821030b2002200341086a360208200420036a2006370000200041386a28020021050240024020022802042204200228020822036b4104490d00200228020021040c010b200341046a22072003490d01200441017422032007200320074b1b22034100480d010240024020040d002003101e21040c010b200228020020042003102221040b2004450d042002200336020420022004360200200228020821030b2002200341046a360208200420036a200536000020002903402106024020022802042204200228020822036b4108490d00200228020021040c050b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c050b20034101102d000b1027000b20034101102d000b20034101102d000b20034101102d000b2002200341086a360208200420036a200637000020004180016a20021094012002280204210020012802002001280204200228020022032002280208100502402000450d00200310200b200241106a24000bdc0902017e047f2000290300210202400240024002400240024002400240024002400240200141046a2802002203200141086a28020022046b4108490d00200128020021030c010b200441086a22052004490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21030c010b200128020020032004102221030b2003450d0120012003360200200141046a2004360200200141086a28020021040b200141086a2205200441086a360200200320046a2002370000024020002802084101460d000240200141046a28020020052802002204460d00200128020021030c050b200441016a22032004490d06200441017422052003200520034b1b22054100480d060240024020040d002005101e21030c010b200128020020042005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021040c050b20054101102d000b02400240200141046a28020020052802002204460d00200128020021030c010b200441016a22032004490d06200441017422052003200520034b1b22054100480d060240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a0000200028020c21060240200141046a2802002203200528020022046b4104490d00200128020021030c030b200441046a22052004490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21030c010b200128020020032004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021040c030b20044101102d000b20044101102d000b20054101102d000b200141086a200441046a360200200320046a20063600000c010b200141086a200441016a360200200320046a41003a00000b024020002802104101460d000240200141046a280200200141086a2802002200460d00200128020021040c050b200041016a22042000490d01200041017422032004200320044b1b22034100480d010240024020000d002003101e21040c010b200128020020002003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021000c050b20034101102d000b02400240200141046a280200200141086a2802002204460d00200128020021030c010b200441016a22032004490d01200441017422052003200520034b1b22054100480d010240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a0000200028021421030240200141046a2802002204200528020022006b4104490d00200128020021040c030b200041046a22052000490d00200441017422002005200020054b1b22004100480d000240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20054101102d000b200141086a200041046a360200200420006a20033600000f0b200141086a200041016a360200200420006a41003a00000b940d01057f230041106b2202240002402000280200220341024b0d00024002400240024002400240024002400240024002400240024020030e03000102000b0240200141046a280200200141086a2802002200460d00200128020021030c0c0b200041016a22032000490d02200041017422042003200420034b1b22044100480d020240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0c0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041146a2d0000210602400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20063a00002000280204210602400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b2004450d0520012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200041086a28020021062002200041106a2802002200360208200241086a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c0a0b200320006a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0a0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0520012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041146a2d0000210602400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20063a00002000280204210602400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b2004450d0720012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200041086a28020021062002200041106a280200220036020c2002410c6a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c080b200320006a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c080b20034101102d000b1027000b20054101102d000b20054101102d000b20034101102d000b20054101102d000b20054101102d000b20034101102d000b200141086a200320006a360200200420036a2006200010cd051a0c020b200141086a200320006a360200200420036a2006200010cd051a0c010b200141086a200041016a360200200320006a41003a00000b200241106a24000bd70303037f017e017f230041c0026b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241a0016a2001105e20022802a00122030d01200041023602580c020b200041023602580c010b200241a0016a41086a280200210620022802a4012104200241a0016a2001109c03024020022802f0014102460d002002200241a0016a41a00110cd05210120002005370300200041086a200141a00110cd051a200041b0016a2006360200200041ac016a2004360200200041a8016a20033602000c010b2000410236025802402004450d00200421010340200328026021032001417f6a22010d000b03402004417f6a22040d000b0b02402006450d0041002104410021014100210003402002200436020c200220013602082002200336020420022000360200200241a0016a2002106120022802a801210020022802ac01210320022802b001210120022802b40121042006417f6a22060d000b0b200341908cc500460d0020032802002106200310202006450d0020062802002104200610202004450d00024020042802002203450d000340200410202003210420032802002206210320060d000b0b200410200b200241c0026a24000baa0303037f027e077f230041106b21020240200128020422034110490d002001280200220441086a2900002105200429000021062001200441106a3602002001200341706a22073602042007450d0020042d0010210720012003416f6a22083602042001200441116a360200200741014b0d00410021090240024020070e020100010b410121090b2008450d0020042d0011210720012003416e6a22083602042001200441126a220a360200200741014b0d004100210b0240024020070e020100010b20084104490d012004280012210c20012003416a6a22083602042001200441166a220a3602004101210b0b2008450d00200a2d0000210420012008417f6a22033602042001200a41016a360200200441014b0d00410021070240024020040e020100010b20034104490d01200a280001210d20012008417b6a3602042001200a41056a360200410121070b200020063703002000200c3602142000200b3602102000200228000936002120002005370308200041206a20093a00002000411c6a200d360200200041186a2007360200200041246a2002410c6a2800003600000f0b200041023602100bb21c02067f017e230041106b2202240020002d00502103024002400240024002400240024002400240024002400240024002400240200141046a280200200141086a2802002204460d00200128020021050c010b200441016a22052004490d07200441017422062005200620054b1b22064100480d070240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a20033a0000200028021021072002200041186a280200220436020c2002410c6a2001106302400240200141046a2802002203200628020022056b2004490d00200128020021030c010b200520046a22062005490d07200341017422052006200520064b1b22054100480d070240024020030d002005101e21030c010b200128020020032005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021050b200141086a2206200520046a360200200320056a2007200410cd051a200141046a2802002105200628020021040240200028021c22060d00024020052004460d00200128020021050c060b200441016a22052004490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c060b20034101102d000b0240024020052004460d00200128020021050c010b200441016a22052004490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21050c010b200128020020042003102221050b2005450d0320012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a00002002200041246a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c040b200520046a22072005490d06200341017422052007200520074b1b22054100480d060240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c040b20054101102d000b20064101102d000b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b200141046a2802002105200141086a2802002104024002400240200028022822060d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b024002400240024020052004460d00200128020021050c010b200441016a22052004490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21050c010b200128020020042003102221050b2005450d0120012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a00002002200041306a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c020b200520046a22072005490d04200341017422052007200520074b1b22054100480d040240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c020b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b200141046a2802002105200141086a2802002104024002400240200028023422060d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b024002400240024020052004460d00200128020021050c010b200441016a22052004490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21050c010b200128020020042003102221050b2005450d0120012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a000020022000413c6a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c020b200520046a22072005490d04200341017422052007200520074b1b22054100480d040240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c020b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b200141046a2802002105200141086a2802002104024002400240200028024022060d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b024002400240024020052004460d00200128020021050c010b200441016a22052004490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21050c010b200128020020042003102221050b2005450d0120012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a00002002200041c8006a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c020b200520046a22072005490d04200341017422052007200520074b1b22054100480d040240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c020b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b20002d0051210302400240200141046a280200200141086a2802002204460d00200128020021050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200128020020042006102221050b2005450d0220012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a20033a00002000290300210802400240200141046a2802002205200628020022046b4108490d00200128020021050c010b200441086a22032004490d01200541017422042003200420034b1b22044100480d010240024020050d002004101e21050c010b200128020020052004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021040b200141086a2203200441086a360200200520046a2008370000200041d2006a200110ca0120002d0072210602400240200141046a28020020032802002204460d00200128020021050c010b200441016a22052004490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21050c010b200128020020042003102221050b2005450d0420012005360200200141046a2003360200200141086a28020021040b200141086a2203200441016a360200200520046a20063a000020002d0073210602400240200141046a28020020032802002204460d00200128020021050c010b200441016a22052004490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21050c010b200128020020042003102221050b2005450d0520012005360200200141046a2003360200200141086a28020021040b200141086a2203200441016a360200200520046a20063a0000200028024c210602400240200141046a2802002205200328020022046b4104490d00200128020021050c010b200441046a22032004490d01200541017422042003200420034b1b22044100480d010240024020050d002004101e21050c010b200128020020052004102221050b2005450d0620012005360200200141046a2004360200200141086a28020021040b200141086a2203200441046a360200200520046a2006360000200029030821080240200141046a2802002204200328020022006b4108490d00200128020021040c070b200041086a22052000490d00200441017422002005200020054b1b22004100480d000240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c070b20004101102d000b1027000b20064101102d000b20044101102d000b20034101102d000b20034101102d000b20044101102d000b200141086a200041086a360200200420006a2008370000200241106a24000b832c01067f024002400240024002400240024020002802504101460d000240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b0240024002400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d05200241017422042003200420034b1b22044100480d050240024020020d002004101e21030c010b200128020020022004102221030b2003450d0120012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200028025421050240200141046a2802002203200428020022026b4104490d00200128020021030c020b200241046a22042002490d04200341017422022004200220044b1b22024100480d040240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c020b20024101102d000b20044101102d000b200141086a200241046a360200200320026a20053600000c010b200141086a200241016a360200200320026a41003a00000b20002802582106024002400240024002400240200141046a22032802002205200141086a220228020022046b4104490d00200128020021050c010b200441046a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b2005450d0120012005360200200141046a2004360200200141086a28020021040b2002200441046a360200200520046a2006360000024020002802104102470d000240200328020020022802002204460d00200128020021050c040b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c040b20064101102d000b0240200328020020022802002204460d00200128020021050c020b200441016a22052004490d04200441017422062005200620054b1b22064100480d040240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b20044101102d000b200141086a200441016a360200200520046a41013a00002000200110fb030c010b2002200441016a360200200520046a41003a00000b024002400240200041386a2802004102470d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b02400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c010b20064101102d000b200141086a200441016a360200200520046a41013a0000200041286a200110fb030c010b2002200441016a360200200520046a41003a00000b200328020021052002280200210402400240024020002f0194014101460d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240024020052004460d00200128020021050c010b200441016a22052004490d06200441017422062005200620054b1b22064100480d060240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020004196016a2f010021060240024020032802002205200228020022046b4102490d00200128020021050c010b200441026a22072004490d06200541017422042007200420074b1b22044100480d060240024020050d002004101e21050c010b200128020020052004102221050b2005450d0220012005360200200141046a2004360200200141086a28020021040b2002200441026a360200200520046a20063b000020004198016a2f01002106024020032802002205200228020022046b4102490d00200128020021050c030b200441026a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c030b20044101102d000b20064101102d000b20044101102d000b2002200441026a360200200520046a20063b00000c010b2002200441016a360200200520046a41003a00000b024002400240200028025c4101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802602106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b02400240024020002802644101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802682106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b024002400240200028026c4101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802702106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b02400240024020002802744101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802782106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b024002400240200028027c4101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a00002000280280012106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b0240024002402000280284014101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a00002000280288012106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b0240200028028c014101460d000240200328020020022802002200460d00200128020021030c050b200041016a22032000490d01200041017422042003200420034b1b22044100480d010240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c050b20044101102d000b02400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200128020020042006102221050b2005450d0220012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a00002000280290012104024020032802002203200228020022006b4104490d00200128020021030c030b200041046a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20064101102d000b2002200041046a360200200320006a20043600000f0b2002200041016a360200200320006a41003a00000b9b0b02027e047f200041086a290300210220002903002103024002400240024002400240024002400240024002400240200141046a2802002204200141086a28020022056b4110490d00200128020021040c010b200541106a22062005490d07200441017422052006200520064b1b22054100480d070240024020040d002005101e21040c010b200128020020042005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021050b200141086a2206200541106a360200200420056a220520023700082005200337000020002d0020210702400240200141046a28020020062802002205460d00200128020021040c010b200541016a22042005490d07200541017422062004200620044b1b22064100480d070240024020050d002006101e21040c010b200128020020052006102221040b2004450d0220012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a20073a0000024020002802104101460d000240200141046a28020020062802002205460d00200128020021040c060b200541016a22042005490d07200541017422062004200620044b1b22064100480d070240024020050d002006101e21040c010b200128020020052006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021050c060b20064101102d000b02400240200141046a28020020062802002205460d00200128020021040c010b200541016a22042005490d07200541017422062004200620044b1b22064100480d070240024020050d002006101e21040c010b200128020020052006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41013a0000200028021421070240200141046a2802002204200628020022056b4104490d00200128020021040c040b200541046a22062005490d06200441017422052006200520064b1b22054100480d060240024020040d002005101e21040c010b200128020020042005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021050c040b20054101102d000b20054101102d000b20064101102d000b20064101102d000b200141086a200541046a360200200420056a20073600000c010b200141086a200541016a360200200420056a41003a00000b024020002802184101460d000240200141046a280200200141086a2802002200460d00200128020021050c050b200041016a22052000490d01200041017422042005200420054b1b22044100480d010240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c050b20044101102d000b02400240200141046a280200200141086a2802002205460d00200128020021040c010b200541016a22042005490d01200541017422062004200620044b1b22064100480d010240024020050d002006101e21040c010b200128020020052006102221040b2004450d0220012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41013a0000200028021c21040240200141046a2802002205200628020022006b4104490d00200128020021050c030b200041046a22062000490d00200541017422002006200020064b1b22004100480d000240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20064101102d000b200141086a200041046a360200200520006a20043600000f0b200141086a200041016a360200200520006a41003a00000ba41206017f017e027f017e027f067e230041e0016b2201240042002102200141a0016a41086a22034200370300200142003703a0014189fdc2004123200141a0016a1000200141286a41086a2003290300370300200120012903a001370328200141003602a001200141286a4110200141a0016a1003210302400240024002400240024002400240024002400240024020012802a0012204417f460d002003450d0020044108490d0120032900002102200310200b200141a0016a41086a22034200370300200142003703a0014189fdc2004123200141a0016a1000200141286a41086a2003290300370300200120012903a001370328200141003602a001200141286a4110200141a0016a100321030240024020012802a0012204417f460d002003450d00024020044108490d002003290000210520031020200542017c21050c020b41ceb8c400413320014180016a41fcbfc4004184b9c400102e000b420121050b200141a0016a41086a22034200370300200142003703a0014189fdc2004123200141a0016a1000200141286a41086a2003290300370300200120012903a001370328200120053703a001200141286a4110200141a0016a410810054121101e2203450d01200341206a41002d0096f0423a0000200341186a410029008ef042370000200341106a4100290086f042370000200341086a41002900feef42370000200341002900f6ef423700002003412141c20010222203450d022003200237002120014180016a41186a2206420037030020014180016a41106a2204420037030020014180016a41086a2207420037030020014200370380012003412920014180016a1001200141086a41186a2006290300370300200141086a41106a2004290300370300200141086a41086a2007290300370300200120012903800137030820031020200141286a200141086a10d30202400240200129033822054202520d002001200237035820014180016a41186a22034200370300200442003703002007420037030020014200370380014197f0c200412920014180016a1001200141a0016a41186a2003290300370300200141a0016a41106a2004290300370300200141a0016a41086a200729030037030020012001290380013703a0012001410036028001200141a0016a412020014180016a10032103024002402001280280012204417f460d002003450d00024020044108490d002003290000210820031020200141e0006a200810d202200141a0016a200141e0006a10d30220012903b0014202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320014180016a41fcbfc4004184b9c400102e000b4200210920014180016a41186a2203420037030020014180016a41106a2204420037030020014180016a41086a2207420037030020014200370380014197f0c200412920014180016a1001200141a0016a41186a2003290300370300200141a0016a41106a2004290300370300200141a0016a41086a200729030037030020012001290380013703a0012001200237038001200141a0016a412020014180016a41081005420021050c020b20014180016a41086a200141a0016a41106a220341086a290300220a37030020014180016a41106a2204200341106a290300220537030020014180016a41186a200341186a290300220b37030020012003290300220c3703800120012903a001210920012903a801210d200141a0016a41186a2207200b37030020032005370300200141a0016a41086a200a3703002001200c3703a00120014194016a2007410020054201511b3602002001200d3703880120012009370380012001200141d8006a36029001200141003602d801200142013703d00102402009a7220341024b0d0002400240024020030e03000102000b02404101101e2203450d0020014281808080103702d401200120033602d001200341003a00000c030b41014101102d000b4101101e2203450d0720014281808080103702d401200120033602d001200341013a000020034101410910222203450d082001428980808090013702d401200120033602d0012003200d3700010c010b4101101e2203450d0820014281808080103702d401200120033602d001200341023a000020034101410910222203450d092001428980808090013702d401200120033602d0012003200d3700010b2004200141d0016a107e20012802d4012103200141e0006a412020012802d001220420012802d801100502402003450d00200410200b200129035821094200210520014180016a41186a2203420037030020014180016a41106a2204420037030020014180016a41086a2207420037030020014200370380014197f0c200412920014180016a1001200141a0016a41186a2003290300370300200141a0016a41106a2004290300370300200141a0016a41086a200729030037030020012001290380013703a0012001200937038001200141a0016a412020014180016a41081005420121090c010b200141d0006a2903002108200141c8006a29030021092001290340210d0b200141a0016a41206a2008370300200141b8016a2009370300200141b0016a200d370300200120053703a801200120003602a001200141003602302001420137032802402000280200220341024b0d0002400240024020030e03000102000b02404101101e2203450d00200142818080801037022c20012003360228200341003a00000c030b41014101102d000b4101101e2203450d09200142818080801037022c20012003360228200341013a00002000290308210520034101410910222203450d0a20014289808080900137022c20012003360228200320053700010c010b4101101e2203450d0a200142818080801037022c20012003360228200341023a00002000290308210520034101410910222203450d0b20014289808080900137022c20012003360228200320053700010b200141a8016a200141286a109401200128022c2103200141086a4120200128022822002001280230100502402003450d00200010200b200141e0016a240020020f0b41ceb8c400413320014180016a41fcbfc4004184b9c400102e000b41214101102d000b41c2004101102d000b41014101102d000b41094101102d000b41014101102d000b41094101102d000b41014101102d000b41094101102d000b41014101102d000b41094101102d000b3400200041d8fec20036020420004100360200200041146a4119360200200041106a41ecfec200360200200041086a42133702000b5001017f024002404101101e2202450d00200241003a000020024101410910222202450d0120004289808080900137020420002002360200200242003700010f0b41014101102d000b41094101102d000baa0e03047f017e017f23004190016b22022400200241f8006a4200370300200241f0006a4200370300200241e8006a4200370300200241186a4102360200200241306a4200370300200241386a4100360200200242003703602002410036024820024200370300200242003703282002420037034020024100360288012002420137038001200241e0006a20024180016a10ca010240024002400240024002400240024020022903004201510d0002402002280284012002280288012203460d0020022802800121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802800120032005102221040b02402004450d002002200536028401200220043602800120022802880121030c020b20054101102d000b02400240024002402002280284012002280288012203460d0020022802800121040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802800120032005102221040b2004450d012002200536028401200220043602800120022802880121030b2002200341016a36028801200420036a41013a0000200229030821060240200228028401220420022802880122036b4108490d0020022802800121040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b20022802800120042003102221040b02402004450d002002200336028401200220043602800120022802880121030c020b20034101102d000b20054101102d000b2002200341086a36028801200420036a20063700000c010b2002200341016a36028801200420036a41003a00000b02400240024020022802184102470d0002402002280284012002280288012203460d0020022802800121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802800120032005102221040b02402004450d002002200536028401200220043602800120022802880121030c020b20054101102d000b024002402002280284012002280288012203460d0020022802800121040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802800120032005102221040b02402004450d002002200536028401200220043602800120022802880121030c010b20054101102d000b2002200341016a36028801200420036a41013a0000200241106a20024180016a10f5030c010b2002200341016a36028801200420036a41003a00000b200241c8006a20024180016a10f6032002290328210602400240200228028401220420022802880122036b4108490d0020022802800121040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802800120042003102221040b2004450d022002200336028401200220043602800120022802880121030b2002200341086a36028801200420036a2006370000200241306a290300210602400240200228028401220420022802880122036b4108490d0020022802800121040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802800120042003102221040b2004450d032002200336028401200220043602800120022802880121030b2002200341086a36028801200420036a2006370000200241386a280200210502400240200228028401220420022802880122036b4104490d0020022802800121040c010b200341046a22072003490d01200441017422032007200320074b1b22034100480d010240024020040d002003101e21040c010b20022802800120042003102221040b2004450d042002200336028401200220043602800120022802880121030b2002200341046a36028801200420036a2005360000200229034021060240200228028401220420022802880122036b4108490d0020022802800121040c050b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b20022802800120042003102221040b02402004450d002002200336028401200220043602800120022802880121030c050b20034101102d000b1027000b20034101102d000b20034101102d000b20034101102d000b2002200341086a36028801200420036a2006370000200041086a2002280288013602002000200229038001370200024002402002280248220341014b0d00024020030e020200020b200241d4006a280200450d01200241d0006a28020010200c010b200241d4006a280200450d00200241d0006a28020010200b20024190016a24000bcf0201017f23004190016b22022400200241206a4200370300200241086a41086a4200370300200241e1006a4200370000200241e9006a4200370000200241f1006a4200370000200241f8006a410036000020024100360254200241003602482002410036023c2002410036023020024201370318200241003a0058200242003703082002420037005920024100360288012002420137038001200241086a20024180016a10f903200041086a200228028801360200200020022903800137020002402002411c6a280200450d00200228021810200b024020022802242200450d00200241286a280200450d00200010200b024020022802302200450d00200241346a280200450d00200010200b0240200228023c2200450d00200241c0006a280200450d00200010200b024020022802482200450d00200241cc006a280200450d00200010200b20024190016a24000b830503027f017e027f230041d0006b22022400200241386a4200370300200241306a4200370300200241286a4200370300200241206a22034200370300200241186a4200370300200241086a41086a42003703002002420037030820024100360248200242013703402003200241c0006a10ca012002290308210402400240024002400240024020022802442205200228024822036b4108490d00200228024021050c010b200341086a22062003490d01200541017422032006200320064b1b22034100480d010240024020050d002003101e21050c010b200228024020052003102221050b2005450d022002200336024420022005360240200228024821030b2002200341086a360248200520036a2004370000200229031021040240024020022802442205200228024822036b4108490d00200228024021050c010b200341086a22062003490d01200541017422032006200320064b1b22034100480d010240024020050d002003101e21050c010b200228024020052003102221050b2005450d032002200336024420022005360240200228024821030b2002200341086a360248200520036a200437000020022903182104024020022802442205200228024822036b4108490d00200228024021050c040b200341086a22062003490d00200541017422032006200320064b1b22034100480d000240024020050d002003101e21050c010b200228024020052003102221050b02402005450d002002200336024420022005360240200228024821030c040b20034101102d000b1027000b20034101102d000b20034101102d000b2002200341086a360248200520036a2004370000200041086a200228024836020020002002290340370200200241d0006a24000ba80401057f230041e0016b22022400200241ac016a42003702002002419c016a41003b010020024194016a41003602002002418c016a410036020020024184016a4100360200200241fc006a4100360200200241f4006a4100360200200241ec006a4100360200200241e0006a4200370300200241d8006a4100360200200241c0006a4102360200200241186a4102360200200241908cc5003602a80120024200370300200241003602c001200242013703b80102400240024002404108101e2203450d002002428880808080013702bc01200220033602b80120034200370000200241a8016a200241b8016a1062200241086a200241b8016a10fa03200041086a20022802c001360200200020022903b80137020020022802b001210320022802a8012100024020022802ac012204450d00200421050340200028026021002005417f6a22050d000b03402004417f6a22040d000b0b02402003450d004100210441002105410021060340200220043602dc01200220053602d801200220003602d401200220063602d001200241b8016a200241d0016a106120022802c001210620022802c401210020022802c801210520022802cc0121042003417f6a22030d000b0b200041908cc500460d0320002802002104200010202004450d0320042802002103200410202003450d03200328020022000d010c020b41084101102d000b0340200310202000210320002802002204210020040d000b0b200310200b200241e0016a24000bfe0903047f017e017f230041d0006b22022400200241346a42003702002002412c6a4200370200200241246a42003702002002420037021c200242003703102002420037030020024100360248200242013703402002411c6a200241c0006a10ca0102400240024002400240024002400240024020022903004201510d000240200228024420022802482203460d00200228024021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024020032005102221040b02402004450d002002200536024420022004360240200228024821030c020b20054101102d000b0240024002400240200228024420022802482203460d00200228024021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200228024020032005102221040b2004450d012002200536024420022004360240200228024821030b2002200341016a360248200420036a41013a000020022903082106024020022802442204200228024822036b4108490d00200228024021040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200228024020042003102221040b02402004450d002002200336024420022004360240200228024821030c020b20034101102d000b20054101102d000b2002200341086a360248200420036a20063700000c010b2002200341016a360248200420036a41003a00000b200228021021050240024020022802442204200228024822036b4104490d00200228024021040c010b200341046a22072003490d01200441017422032007200320074b1b22034100480d010240024020040d002003101e21040c010b200228024020042003102221040b2004450d022002200336024420022004360240200228024821030b2002200341046a360248200420036a2005360000024020022802144101460d000240200228024420022802482203460d00200228024021040c060b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200228024020032005102221040b02402004450d002002200536024420022004360240200228024821030c060b20054101102d000b02400240200228024420022802482203460d00200228024021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200228024020032005102221040b2004450d032002200536024420022004360240200228024821030b2002200341016a360248200420036a41013a000020022802182105024020022802442204200228024822036b4104490d00200228024021040c040b200341046a22072003490d00200441017422032007200320074b1b22034100480d000240024020040d002003101e21040c010b200228024020042003102221040b02402004450d002002200336024420022004360240200228024821030c040b20034101102d000b1027000b20034101102d000b20054101102d000b2002200341046a360248200420036a20053600000c010b2002200341016a360248200420036a41003a00000b20002002290340370200200041086a200241c0006a41086a280200360200200241d0006a24000ba216060e7f017e047f037e027f047e230041e0016b22022400200241b8016a200110b7010240024020022802b80122030d00200042023703300c010b200241c0016a2204280200210520022802bc012106200241b8016a200110b701024020022802b8012207450d002004280200210820022802bc012104200241b8016a200110b701024020022802b8012209450d0020022802bc01210a02402001280204220b4104490d00200241b8016a41086a280200210c2001280200220d280000210e2001200b417c6a220f3602042001200d41046a3602000240024002400240024002400240024002400240024002400240200f4108490d00200d29000421102001200b41746a22113602042001200d410c6a220f3602002011450d04200f2d000021112001200b41736a22123602042001200f41016a221336020041022114201141024b0d0420110e03020103020b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d0f200310200c0f0b4100210f200241003a00d801200b41736a211241722111024003402012200f460d01200241b8016a200f6a200d200f6a2213410d6a2d00003a00002001200b20116a36020420012013410e6a3602002002200f41016a22133a00d8012011417f6a21112013210f20134120470d000b200241a0016a41086a200241cf016a2900002215370300200241a0016a41106a200241d7016a2d0000220f3a0000200220022800bb01360013200220022802b801360210200220022900c70122163703a00120022002280210360298012002200228001336009b0120022900bf012117200241e0006a41106a200f3a0000200241e0006a41086a201537030020022016370360200241f4006a200241fb006a28000036000020022002280078360071200b20136b41736a2112200d20136a410d6a2113410121140c020b200f41ff0171450d02200241003a00d8010c020b20124108490d01200f29000121172001200b416b6a22123602042001200f41096a2213360200200241e0006a41086a200241b8016a41086a290300370300200241e0006a41106a200241b8016a41106a290300370300200220022800a00136029801200220022903b8013703602002200241a3016a28000036009b01410021140b200241c0006a41086a200241e0006a41086a290300370300200241c0006a41106a200241e0006a41106a2903003703002002200228009b0136005b2002200228029801360258200220022903603703402012450d0320132d0000210f20012012417f6a220b3602042001201341016a360200200f41014b0d0341002118200f0e020201020b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d0b200310200c0b0b410121180b200b450d0220132d0001210f20012012417e6a22113602042001201341026a2219360200200f41014b0d024200211502400240200f0e020100010b20114108490d03201329000221162001201241766a221136020420012013410a6a2219360200420121150b4100210f200241003a00d801417f210b03402011200f460d02200241b8016a200f6a2019200f6a220d2d00003a000020012011200b6a3602042001200d41016a3602002002200f41016a220d3a00d801200b417f6a210b200d210f200d4120470d000b200241a0016a41086a200241cf016a290000221a370300200241a0016a41106a200241d7016a2d0000220f3a0000200220022800bb01360013200220022802b801360210200220022900c701221b3703a0012002200228021036029001200220022800133600930120022900bf01211c200241f8006a41106a200f3a0000200241f8006a41086a201a3703002002201b3703784100210f200241003a00d8012011200d6b21132019200d6a21122011200b6a210b03402013200f460d04200241b8016a200f6a2012200f6a220d2d00003a00002001200b3602042001200d41016a3602002002200f41016a220d3a00d801200b417f6a210b200d210f200d4120470d000b200241a0016a41086a200241cf016a290000221a370300200241a0016a41106a200241d7016a2d0000220f3a0000200220022800bb01360013200220022802b801360210200220022900c701221b3703a00120022002280210360298012002200228001336009b0120022900bf01211d200241e0006a41106a200f3a0000200241e0006a41086a201a3703002002201b370360200241086a2001105f20022802080d05200228020c2111200242003702bc01200241908cc5003602b80102402011450d0003402001280204220b450d062001280200220f2d0000210d2001200b417f6a22133602042001200f41016a360200200d41034b0d0620134108490d06200f290001211a2001200b41776a3602042001200f41096a360200200241b8016a201a200d108b051a2011417f6a22110d000b0b20022802b8012201450d0520022902bc01211a200241b8016a41086a220f200241c0006a41086a290300370300200241b8016a41106a220b200241c0006a41106a290300370300200241a0016a41086a220d200241f8006a41086a290300370300200241a0016a41106a2211200241f8006a41106a2d00003a00002002200228005b36003b20022002280258360238200220022903403703b80120022002280290013602302002200228009301360033200220022903783703a001200241106a41106a2213200241e0006a41106a2d00003a0000200241106a41086a2212200241e0006a41086a2903003703002002200228009b0136002b200220022802980136022820022002290360370310200020143a00082000201037030020002017370310200020022802383600092000410c6a200228003b360000200020183a0074200041ec006a201a370200200041e8006a20013602002000200e360264200041e0006a200c360200200041dc006a200a360200200041d8006a2009360200200041d4006a2008360200200041d0006a20043602002000200736024c200041c8006a2005360200200041c4006a2006360200200041c0006a20033602002000201637033820002015370330200020022903b801370318200041206a200f290300370300200041286a200b290300370300200041fc006a201c3700002000419c016a201d370000200041f8006a20022800333600002000200228023036007520004194016a20112d00003a00002000418c016a200d29030037000020004184016a20022903a00137000020004198016a200228002b3600002000200228022836009501200041b4016a20132d00003a0000200041ac016a2012290300370000200041a4016a2002290310370000200041b7016a200241e2006a2d00003a0000200020022f00603b00b5010c090b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d08200310200c080b0240200f41ff0171450d00200241003a00d8010b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d07200310200c070b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d06200310200c060b0240200f41ff0171450d00200241003a00d8010b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d05200310200c050b20022802b80120022902bc012210a72010422088a710f5020b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d03200310200c030b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d02200310200c020b2000420237033002402004450d00200710200b2006450d01200310200c010b200042023703302006450d00200310200b200241e0016a24000b990501067f230041d0006b22022400200241306a41086a220342003703002002420037033041b0a3c300412b200241306a1000200241086a200329030037030020022002290330370300200241306a200210750240024020022f0132410020022f013041014622041b220541ffff0371200141086a280200220341ffff037122064d0d004197d9c2002101411921030c010b024020022f0134410020041b20056a41ffff037120064f0d0041b0d9c2002101411821030c010b024002404125101e2204450d002004411d6a41002900daee42370000200441186a41002900d5ee42370000200441106a41002900cdee42370000200441086a41002900c5ee42370000200441002900bdee42370000200242a5808080d004370224200220043602202001280200210620022003360230200241306a200241206a1063024020022802242205200228022822046b2003490d00200228022021010c020b0240200420036a22012004490d00200541017422072001200720014b1b22074100480d000240024020050d002007101e21010c010b200228022020052007102221010b02402001450d002002200736022420022001360220200721050c030b20074101102d000b1027000b41254101102d000b2002200420036a2207360228200120046a2006200310cd051a200241306a41186a22034200370300200241306a41106a22044200370300200241306a41086a220642003703002002420037033020012007200241306a1001200241186a2003290300370300200241106a2004290300370300200241086a20062903003703002002200229033037030002402005450d00200110200b410041b6dac2002002412041e4fdc600410041001002417f461b2101411f21030b2000200336020420002001360200200241d0006a24000bf60d03057f037e047f230041b0056b22022400024002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200037001f20024180036a41186a2204420037030020024180036a41106a2205420037030020024180036a41086a2206420037030020024200370380032003412720024180036a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903800337030820031020200241286a200241086a109e04024020022903a00122074202520d00200220003703c0012004420037030020024180036a41106a2203420037030020024180036a41086a2205420037030020024200370380034196eec200412720024180036a100120024198046a41186a200429030037030020024198046a41106a200329030037030020024198046a41086a2005290300370300200220022903800337039804200241003602800320024198046a412020024180036a100321030240024002402002280280032204417f460d002003450d00024020044108490d002003290000210020031020200241c8016a200010eb0320024198046a200241c8016a109e042002290390054202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024180036a41fcbfc4004184b9c400102e000b4200210820024180036a41186a2203420037030020024180036a41106a2204420037030020024180036a41086a2205420037030020024200370380034196eec200412720024180036a100120024198046a41186a200329030037030020024198046a41106a200429030037030020024198046a41086a2005290300370300200220022903800337039804200220003703800320024198046a412020024180036a410810050c010b20024180036a20024198046a41980110cd051a200241e8016a20024180036a41f80010cd051a200241f8026a220320024190046a290300370300200241f0026a20024188046a2903002207370300200241e8026a20024180046a290300370300200220022903f8033703e00220024198046a200241e8016a41f80010cd051a20024194056a2003410020074201511b3602002002200241c0016a360290052002410036028803200242013703800320024198046a20024180036a10f90320024198046a41f8006a20024180036a107e2002280284032103200241c8016a41202002280280032204200228028803100502402003450d00200410200b0240200241ac046a280200450d0020022802a80410200b024020022802b4042203450d00200241b8046a280200450d00200310200b024020022802c0042203450d00200241c4046a280200450d00200310200b024020022802cc042203450d00200241d0046a280200450d00200310200b024020022802d8042203450d00200241dc046a280200450d00200310200b20022903c001210720024180036a41186a2203420037030020024180036a41106a2204420037030020024180036a41086a2205420037030020024200370380034196eec200412720024180036a100120024198046a41186a200329030037030020024198046a41106a200429030037030020024198046a41086a2005290300370300200220022903800337039804200220073703800320024198046a412020024180036a41081005420121080b420021070c030b200241b8016a2903002100200241b0016a290300210820022903a8012109200228026c210a200228026821032002280260210b200228025c21042002280254210c200228025021052002280248210d200228024421060240200228023c450d00200228023810200b02402006450d00200d450d00200610200b02402005450d00200c450d00200510200b02402004450d00200b450d00200410200b2003450d02200a450d02200310200c020b411f4101102d000b413e4101102d000b20024198046a200141f80010cd051a200241a8056a2000370300200241a0056a200837030020024198056a200937030020022007370390052002410036028803200242013703800320024198046a20024180036a10f90320024198046a41f8006a20024180036a1094012002280284032103200241086a41202002280280032204200228028803100502402003450d00200410200b0240200241ac046a280200450d0020022802a80410200b024020022802b4042203450d00200241b8046a280200450d00200310200b024020022802c0042203450d00200241c4046a280200450d00200310200b024020022802cc042203450d00200241d0046a280200450d00200310200b024020022802d8042203450d00200241dc046a280200450d00200310200b200241b0056a24000bcf0602087f017e230041c0026b2203240041042104200141046a280000210520012d00002106200341086a41026a2207200141036a2d00003a0000200341c0016a41086a2208200141186a290000370300200341c0016a41106a2209200141206a2d00003a0000200320012f00013b01082003200141106a2900003703c0014101210a200141086a290000210b024020064101470d00200341c4006a41026a20072d00003a0000200341c8006a41086a2008290300370300200341c8006a41106a20092d00003a0000200320032f01083b0144200320032903c0013703484100210a200521040b200341c0006a41026a200341c4006a41026a2d00003a0000200341286a41086a200341c8006a41086a290300370300200341286a41106a200341c8006a41106a2d00003a0000200320032f01443b014020032003290348370328024002400240200a0d002003411f6a200341286a41086a290300370000200341276a200341386a2d00003a0000200320032f01403b01082003200b37000f2003200436000b200320032903283700172003200341c2006a2d00003a000a200341c0016a200210d50220032802c0014101470d01200020032902c401370204200041013602000c020b419affc6002101410f210a024002400240024002400240024020040e0700010203040506000b200b422088a7210a200ba721010c050b418cffc6002101410e210a0c040b4180ffc6002101410c210a0c030b41f7fec60021014109210a0c020b41e4fec60021014113210a0c010b41d3fec60021014111210a0b2000200136020420004101360200200041086a200a3602000c010b200341c8006a200341c0016a41086a41f80010cd051a0240200341086a2003419a016a412010cf050d00200041086a200341c8006a41f80010cd051a200041003602000c010b200041f0dbc20036020420004101360200200041086a412a3602000240200341dc006a280200450d00200328025810200b024020032802642201450d00200341e8006a280200450d00200110200b024020032802702201450d00200341f4006a280200450d00200110200b0240200328027c2201450d0020034180016a280200450d00200110200b2003280288012201450d002003418c016a280200450d00200110200b200341c0026a24000bfd1807057f017e057f017e057f017e027f230041e0056b220224000240024002404124101e2203450d0041002104200341206a41002800818f46360000200341186a41002900f98e46370000200341106a41002900f18e46370000200341086a41002900e98e46370000200341002900e18e463700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a00a80402402003412441c80010222203450d00200320043a002420032000370025200241a8046a41186a22044200370300200241a8046a41106a22054200370300200241a8046a41086a22064200370300200242003703a8042003412d200241a8046a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903a804370308200310200240200241086a412041e4fdc600410041001002417f470d0041a0b0c60021030c040b02404124101e2203450d0041002104200341206a41002800818f46360000200341186a41002900f98e46370000200341106a41002900f18e46370000200341086a41002900e98e46370000200341002900e18e463700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a00a80402402003412441c80010222203450d00200320043a00242003200037002542002107200241a8046a41186a22044200370300200241a8046a41106a22054200370300200241a8046a41086a22064200370300200242003703a8042003412d200241a8046a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903a80437030820031020200241003602a804200241086a4120200241a8046a100321030240024020022802a8042204417f460d002003450d0020044108490d0120032900002107200310200b200241a8046a200710a703024020022903d8044202520d0041c58cc60021030c070b20022802a8042103200241f4026a200241a8046a41047241b40110cd051a200241c0016a200241f4026a41b40110cd051a20022003360208200241086a410472200241c0016a41b40110cd051a200241f0006a2103200241f4006a2802002108200141ff01712109034002400240200328020022052f0106220a0d00410021060c010b200a4104742104200541086a21034100210b0340200b2106024020040d00200a21060c020b02400240200341086a2d0000220b2009460d00417f4101200b20094b1b210c0c010b2003290300220d2000560d02200d200052210c0b200641016a210b200341106a2103200441706a21040240200c41016a0e03020001020b0b200b417f6a2106200241f8006a22032003280200417f6a36020002400240024002400240024002400240024002400240024002402008450d00200641027420056a41bc016a280200210302402008417f6a2204450d00034020032802b80121032004417f6a22040d000b0b0240024020032f01060d00410021030c010b200341908cc500460d030b20032d001021082003290308210d200341086a200341186a20032f0106220441047441706a10ce051a20032004417f6a3b0106200520064104746a41086a2204200d37030020042d0008210e200420083a00080c010b200541908cc500460d02200520064104746a220341106a2d0000210e200341086a200341186a2006417f7320052f01066a41047410ce051a200520052f0106417f6a3b0106200521030b024020032f010641044b0d004100210f034020032802002206450d010240024020032f010422030d00410021044100211020062f01060d0141e5dac500412841a888c6001028000b2003417f6a2104410121100b0240200641b8016a2203200441016a2205410274220c6a2208280200220b2f0106220a2003200441027422116a220328020022092f010622126a410b490d00024020100d00024002400240200a450d00200b2d00102112200b290308210d200b41086a200b41186a200a41047441706a10ce051a200f0d0141002109417f21050c020b41f5a6c000412041a888c6001028000b200b2802b8012109200b41b8016a2205200b41bc016a200a41027410ce051a410021082009410036020003402005280200220c20083b0104200c200b360200200541046a2105200a200841016a2208470d000b200f417f6a21050b200b200b2f0106417f6a3b0106200620044104746a220441106a22062d00002108200620123a0000200441086a220429030021132004200d370300200328020021030240200f450d002009450d0720052005470d0820032f01062204410a4b0d09200320044104746a220541106a20083a0000200541086a20133703002003200441016a22044102746a41b8016a22052009360200200320032f010641016a3b01062005280200220520043b0104200520033602000c040b20032f01062204410b4f0d09200320044104746a220441106a20083a0000200441086a2013370300200320032f010641016a3b01060c030b0240024002402012450d00201241047420096a22032d0000210b200341786a290300210d200f0d0141002105417f21030c020b41f5a6c000412041a888c6001028000b200920124102746a41b8016a28020022054100360200200f417f6a21030b200920092f0106417f6a3b0106200620044104746a220441106a22062d0000210c2006200b3a0000200441086a220429030021132004200d370300200828020021060240200f450d002005450d0a20032003470d0b024020062f01062203410a4b0d00200641186a200641086a200341047410ce051a2006200c3a001020062013370308200641bc016a200641b8016a220320062f010641027441046a10ce051a200620053602b801200620062f010641016a22043b0106200441ffff037141016a21084100210403402003280200220520043b010420052006360200200341046a21032008200441016a2204470d000c050b0b41a8a5c000412741a888c6001028000b20062f01062203410b4f0d0b200641186a200641086a200341047410ce051a2006200c3a001020062013370308200620062f010641016a3b01060c020b200828020022092f0106220a2003280200220b2f010622126a2214410a4b0d0b200f41016a210f200641086a221020044104746a2203290300210d20032d000821152003201020054104746a2004417f7320062f01066a41047410ce051a200b41086a221020124104746a220320153a00082003200d3703002010201241016a22034104746a200941086a200a41047410cd051a20082006200441026a22044102746a41b8016a412c200c6b10ce0521080240200520062f0106220c4f0d002008280200220820053b0104200820063602002004200c460d00201120066a41c0016a210503402005280200220820043b010420082006360200200541046a2105200c200441016a2204470d000b0b200620062f0106417f6a3b0106200b200a200b2f01066a41016a3b01060240200f4102490d00200b20034102746a41b8016a200941b8016a200a41027441046a10cd051a2003201441026a4f0d00200a41016a2105200b20124102746a41bc016a210403402004280200220820033b01042008200b360200200441046a2104200341016a21032005417f6a22050d000b0b20091020024020062f01062204450d002006210320044105490d010c020b0b200241f4006a2802002203450d0b20022003417f6a3602742002200228027022032802b801220436027020044100360200200310200b200e41ff01714104460d12200241a8046a200241086a41b80110cd051a2007200241a8046a10a905200241c8046a20013a0000200241c0046a2000370300200241b8046a2007370300200241b0046a41073a00002002410d3a00a804200241a8046a1077410021030c130b41c8a6c000412d41a888c6001028000b41c8a6c000412d41a888c6001028000b41e988c700412b4180a8c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b41a8a5c000412741a888c6001028000b41e988c700412b4198a7c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b4190a8c000413641a888c6001028000b41a7a6c000412141a888c6001028000b2008450d062008417f6a2108200520064102746a41b8016a21030c000b0b41ceb8c4004133200241a8046a41fcbfc4004184b9c400102e000b41c8004101102d000b41244101102d000b41c8004101102d000b41244101102d000b41b3b0c600413f41f4b0c6001028000b200241e0056a240020030bac0403017f017e047f230041a0036b22022400200241c0016a2000200110c8030240024020022802c0014101470d0020022802c40121010c010b200241086a200241c8016a41b80110cd051a0240200241f0006a2001290300220320012d00082204108b05450d0041d4afc600413c4190b0c6001028000b200241c0016a200241086a41b80110cd051a2000200241c0016a10a905024002404124101e2201450d0041002105200141206a41002800818f46360000200141186a41002900f98e46370000200141106a41002900f18e46370000200141086a41002900e98e46370000200141002900e18e46370000024002400240024020040e0403000102030b410121050c020b410221050c010b410321050b200220053a00c0012001412441c80010222201450d01200120053a002420012003370025200241c0016a41186a22054200370300200241c0016a41106a22064200370300200241c0016a41086a22074200370300200242003703c0012001412d200241c0016a100120024180036a41186a200529030037030020024180036a41106a200629030037030020024180036a41086a2007290300370300200220022903c0013703800320011020200220003703c00120024180036a4120200241c0016a41081005200241c0016a41206a20043a00002005200337030020062000370300200741063a00002002410d3a00c001200241c0016a1077410021010c020b41244101102d000b41c8004101102d000b200241a0036a240020010ba44506037f017e0c7f057e027f017e230041e0066b22092400024002402002280200220a450d0002400240024002400240411f101e220b450d00200b41176a410029008eee42370000200b41106a4100290087ee42370000200b41086a41002900ffed42370000200b41002900f7ed423700002000290300210c200b411f413e1022220b450d01200b200c37001f200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a220f4200370300200942003703b004200b4127200941b0046a1001200941186a200d290300370300200941106a200e290300370300200941086a200f290300370300200920092903b004370300200b1020200941003602c80520094120200941c8056a1003210b20092802c805220e417f460d03200b450d032009200e3602b4042009200b3602b004200941c8056a200941b0046a10f10320092d0098064102460d02200928028c062110200928028806210f200928028006211120092802fc05211220092802f405211320092802f005211420092802e805211520092802e405211620092802e005210d20092802dc05211720092802d80521180240200e450d00200b10200b02402015450d002016450d00201610200b02402013450d002014450d00201410200b02402011450d002012450d00201210200b2010450d04200f450d04200f10200c040b411f4101102d000b413e4101102d000b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b410121184100210d410021170b0240024002400240024002404125101e220b450d00200b411d6a41002900daee42370000200b41186a41002900d5ee42370000200b41106a41002900cdee42370000200b41086a41002900c5ee42370000200b41002900bdee42370000200942a5808080d0043702cc052009200b3602c8052009200d3602b004200941b0046a200941c8056a1063024020092802cc05220f20092802d005220e6b200d490d0020092802c805210b0c020b200e200d6a220b200e490d02200f4101742212200b2012200b4b1b22124100480d0202400240200f0d002012101e210b0c010b20092802c805200f20121022210b0b0240200b450d00200920123602cc052009200b3602c8052012210f0c020b20124101102d000b41254101102d000b2009200e200d6a22123602d005200b200e6a2018200d10cd051a200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22144200370300200942003703b004200b2012200941b0046a1001200941186a200d290300370300200941106a200e290300370300200941086a2014290300370300200920092903b0043703000240200f450d00200b10200b02402017450d00201810200b4100210b200941003602c80520094120200941c8056a1003210d024002400240024002400240024002400240024020092802c805220e417f460d00200d450d002009200e3602dc012009200d3602d801200941c8056a200941d8016a109b0420092903c8054201510d01200941b0046a41186a220b200941c8056a41206a290300370300200941b0046a41106a220f200941c8056a41186a2218290300370300200941b0046a41086a2217200941c8056a41106a2212290300370300200920092903d0053703b0040240200e450d00200d10200b2018200b2903003703002012200f290300370300200941c8056a41086a2017290300370300200920092903b0043703c8052009412010044101210b0b200941d8016a41186a200941c8056a41186a290300220c370300200941d8016a41106a200941c8056a41106a2903002219370300200941d8016a41086a200941c8056a41086a290300221a370300200920092903c8053703d801200941e0006a41106a220d200c370300200941e0006a41086a220e20193703002009201a370360200b450d0820094198036a41106a200d29030037030020094198036a41086a200e2903003703002009200929036037039803200941a4036a210e0240024020092802a403220f0d004100210b0c010b200941f0026a200e10ed03200941b0046a41186a200941f0026a41186a290000220c370300200941b0046a41106a200941f0026a41106a2900002219370300200941b0046a41086a200941f0026a41086a290000221a370300200920092900f002221b3703b004200941c8056a41186a220d200c370300200941c8056a41106a22182019370300200941c8056a41086a2217201a3703002009201b3703c8054120101e220b450d02200b20092903c805370000200b41186a200d290300370000200b41106a2018290300370000200b41086a20172903003700000b024020092802980322140d00200f0d04200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22184200370300200942003703b00441e2eec200412d200941b0046a1001200941f0026a41186a200d290300370300200941f0026a41106a200e290300370300200941f0026a41086a2018290300370300200920092903b0043703f002200941f0026a412010040c070b200941f0026a20094198036a10ed03200941b0046a41186a200941f0026a41186a290000220c370300200941b0046a41106a200941f0026a41106a2900002219370300200941b0046a41086a200941f0026a41086a290000221a370300200920092900f002221b3703b004200941c8056a41186a2218200c370300200941c8056a41106a22172019370300200941c8056a41086a2212201a3703002009201b3703c8054120101e220d450d02200d20092903c805370000200d41186a2018290300370000200d41106a2017290300370000200d41086a2012290300370000200941003602c805200d4120200941c8056a1003211820092802c8052217417f460d052018450d0520092017360294042009201836029004200941c8056a20094190046a109b0420092903c8054201510d04200941b0046a41186a2216200941e8056a290300370300200941b0046a41106a2210200941c8056a41186a2211290300370300200941b0046a41086a2212200941c8056a41106a2213290300370300200920092903d0053703b00402402017450d00201810200b2011201629030037030020132010290300370300200941c8056a41086a2012290300370300200920092903b0043703c8052012200e41086a2802003602002009200e2902003703b0040240200941dc056a220e2802002218450d00200941e0056a280200450d00201810200b200e20092903b004370200200e41086a200941b0046a41086a280200360200200941203602b4042009200d3602b004200941c8056a200941b0046a109d04024020092802d005220e450d00200941d4056a280200450d00200e10200b024020092802dc05220e450d00200941e0056a280200450d00200e10200b200d10204101210e0c070b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41204101102d000b41204101102d000b200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22184200370300200942003703b00441e2eec200412d200941b0046a1001200941c8056a41186a200d290300370300200941c8056a41106a200e290300370300200941c8056a41086a2018290300370300200920092903b0043703c805200941203602b4042009200941c8056a3602b004200f200941ac036a280200200941b0046a10a3020c020b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b4100210d4100210e0b024002400240024002400240200b0d00410121180c010b200941003602c805200b4120200941c8056a1003211820092802c8052217417f460d022018450d0220092017360294042009201836029004200941c8056a20094190046a109b0420092903c8054201510d01200941b0046a41186a2216200941e8056a290300370300200941b0046a41106a2210200941c8056a41186a2211290300370300200941b0046a41086a2212200941c8056a41106a2213290300370300200920092903d0053703b00402402017450d00201810200b2011201629030037030020132010290300370300200941c8056a41086a22182012290300220c370300200920092903b0043703c805201220094198036a41086a28020036020020092009290398033703b0040240200ca72217450d00200941d4056a280200450d00201710200b201820092903b004370200201841086a200941b0046a41086a280200360200200941203602b4042009200b3602b004200941c8056a200941b0046a109d04024020092802d0052218450d00200941d4056a280200450d00201810200b0240200941dc056a2802002218450d00200941e0056a280200450d00201810200b200b1020410021180b200e200d4572450d020c030b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b200d10200b024002400240200b0d0020180d010c020b2018450d01200b10200b2014450d00200928029c03450d00201410200b200e200f45720d00200941a8036a280200450d00200f10200b200241086a280200220b417f4c0d0502400240024002400240200b0d004101210d0c010b200b101e220d450d010b200d200a200b10cd0521164125101e220d450d01200d411d6a41002900daee42370000200d41186a41002900d5ee42370000200d41106a41002900cdee42370000200d41086a41002900c5ee42370000200d41002900bdee42370000200942a5808080d0043702cc052009200d3602c8052009200b3602b004200941b0046a200941c8056a1063024020092802cc05220f20092802d005220e6b200b490d0020092802c805210d0c030b200e200b6a220d200e490d03200f4101742218200d2018200d4b1b22184100480d0302400240200f0d002018101e210d0c010b20092802c805200f20181022210d0b0240200d450d00200920183602cc052009200d3602c8052018210f0c030b20184101102d000b200b4101102d000b41254101102d000b2009200e200b6a22183602d005200d200e6a2016200b10cd051a200941b0046a41186a220e4200370300200941b0046a41106a22174200370300200941b0046a41086a22124200370300200942003703b004200d2018200941b0046a1001200941186a200e290300370300200941106a2017290300370300200941086a2012290300370300200920092903b0043703000240200f450d00200d10200b200941003602c80520094120200941c8056a1003210d024002400240024002400240024020092802c805220e417f460d00200d450d002009200e3602dc012009200d3602d801200941c8056a200941d8016a109b0420092903c8054201510d02200941b0046a41186a220f200941e8056a290300370300200941b0046a41106a2218200941c8056a41186a2217290300370300200941b0046a41086a2212200941c8056a41106a2214290300370300200920092903d0053703b0040240200e450d00200d10200b2017200f290300220c370300201420182903002219370300200941c8056a41086a2012290300221a370300200941d8016a41086a2019370300200941d8016a41106a200c370300200920092903b0043703c8052009201a3703d801410021110c010b2009200b3602d0052009200b3602cc05200920163602c805200941d8016a200941c8056a109c04410121110b200941d8016a41086a2802002112200941d8016a41106a2802002113200941ec016a280200211420092802d801210f20092802dc01211520092802e40121184108101e220d450d012009428880808080013702cc052009200d3602c805200d2000290300370000200d410841101022210d0240200f0d000240200d450d002009429080808090013702cc05200d41003a00082009200d3602c805410921174110210e0c060b41104101102d000b200d450d022009429080808090013702cc05200d41013a00082009200d3602c805200920123602b004200941b0046a200941c8056a1063024020092802cc05220e20092802d00522106b2012490d0020092802c805210d0c040b201020126a220d2010490d05200e4101742217200d2017200d4b1b22174100480d0502400240200e0d002017101e210d0c010b20092802c805200e20171022210d0b0240200d450d00200920173602cc052009200d3602c8052017210e0c040b20174101102d000b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41084101102d000b41104101102d000b2009201020126a22173602d005200d20106a200f201210cd051a0b024020180d0002400240200e2017470d00200e41016a2212200e490d03200e41017422142012201420124b1b22124100480d0302400240200e0d002012101e210d0c010b200d200e20121022210d0b200d450d01200920123602cc052009200d3602c8050b2009201741016a3602d005200d20176a41003a000020092802d005211220092802cc05210e20092802c805210d0c050b20124101102d000b0240200e2017470d00200e41016a2212200e490d01200e41017422102012201020124b1b22124100480d0102400240200e0d002012101e210d0c010b200d200e20121022210d0b200d450d02200920123602cc052009200d3602c8050b2009201741016a3602d005200d20176a41013a0000200920143602b004200941b0046a200941c8056a1063024020092802cc05220e20092802d00522176b2014490d0020092802c805210d0c030b201720146a220d2017490d00200e4101742212200d2012200d4b1b22124100480d0002400240200e0d002012101e210d0c010b20092802c805200e20121022210d0b0240200d450d00200920123602cc052009200d3602c8052012210e0c030b20124101102d000b1027000b20124101102d000b2009201720146a22123602d005200d20176a2018201410cd051a0b20094120200d201210050240200e450d00200d10200b0240200f450d002015450d00200f10200b02402018450d002013450d00201810200b200b452011720d00201610200b024002400240024002400240024002400240411f101e220b450d00200b41176a410029008eee42370000200b41106a4100290087ee42370000200b41086a41002900ffed42370000200b41002900f7ed423700002000290300210c200b411f413e1022220b450d01200b200c37001f4200210c200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a220f4200370300200942003703b004200b4127200941b0046a1001200941206a41186a200d290300370300200941206a41106a200e290300370300200941206a41086a200f290300370300200920092903b004370320200b1020200941c8056a200941206a109e04024002400240024020092903c0064202510d0020092802bc06211520092d00bb06211620092d00ba06211020092d00990621112009280294062113200929028c06211a2009280288062118200929038006211b20092802fc05211720092902f405211c20092802f005211220092903e805211d20092802e405211420092903d005211920092903c805210c20092d009806210f200941dc056a280200210d20092802e005210b20092802d805210e200941086a221e200941a2066a290100370300200941106a221f200941aa066a290100370300200941186a200941b2066a2901003703002009200929019a06370300200f4102470d0142002119200941c8046a4200370300200941b0046a41106a4200370300200941b0046a41086a4200370300200942003703b0044100210b4101210e4100210d41002116410021104100211141002113410021184100211741002112410021144200210c4100210f0c020b200941e0016a4200370300200941e8016a4200370300200941d8016a41186a4200370300200942003703d8014100210b4101210e4100210d420021194100211641002110410021114100210f41002113410021184100211741002112410021140c020b200941b0046a41186a200941186a290300370300200941b0046a41106a201f290300370300200941b0046a41086a201e290300370300200920092903003703b0040b200941d8016a41086a200941b0046a41086a290300370300200941d8016a41106a200941b0046a41106a290300370300200941d8016a41186a200941b0046a41186a290300370300200920092903b0043703d8010b200941c0006a41186a200941d8016a41186a290300370300200941c0006a41106a200941d8016a41106a290300370300200941c0006a41086a200941d8016a41086a290300370300200920092903d8013703400240200a450d00200241086a280200220b417f4c0d0a02400240200b0d00410121020c010b200b101e2202450d040b2002200a200b10cd0521020240200d450d00200e10200b200b210d2002210e0b0240024020032802004101460d00201d2120201421020c010b024002402003280204221e0d00410021020c010b2003410c6a280200220a417f4c0d0b02400240200a0d00410121020c010b200a101e2202450d060b2002201e200a10cd051a200aad222042208620208421200b201da7450d002014450d00201410200b0240024020042802004101460d00201c211d2012210a0c010b02400240200428020422140d004100210a0c010b2004410c6a2802002203417f4c0d0b0240024020030d004101210a0c010b2003101e220a450d070b200a2014200310cd051a2003ad221d422086201d84211d0b201ca7450d002012450d00201210200b0240024020052802004101460d00201b211c201721030c010b02400240200528020422120d00410021030c010b2005410c6a2802002204417f4c0d0b0240024020040d00410121030c010b2004101e2203450d080b20032012200410cd051a2004ad221c422086201c84211c0b201ba7450d002017450d00201710200b0240024020062802004101460d00201a211b201821040c010b02400240200628020422170d00410021040c010b2006410c6a2802002205417f4c0d0b0240024020050d00410121040c010b2005101e2204450d090b20042017200510cd051a2005ad221b422086201b84211b0b201aa7450d002018450d00201810200b200941a4016a201b37020020094198016a201c3703002009418c016a201d37020020094180016a2020370300200941e0006a41186a200b360200200941f4006a200d360200200941ba016a200941c0006a41086a290300370100200941c2016a200941c0006a41106a290300370100200941ca016a200941c0006a41186a290300370100200920113a00b1012009200f2001410171200141ff01714102461b3a00b001200920133602ac01200920043602a00120092003360294012009200a360288012009200236027c2009200e360270200920193703682009200c370360200920092903403701b201200920153602d401200920162008410171200841ff01714102461b3a00d30120092010200741ff0171220b410146200b4102461b3a00d201411f101e220b450d07200b41176a410029008eee42370000200b41106a4100290087ee42370000200b41086a41002900ffed42370000200b41002900f7ed423700002000290300210c200b411f413e1022220b450d08200b200c37001f200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22024200370300200942003703b004200b4127200941b0046a1001200941186a200d290300370300200941106a200e290300370300200941086a2002290300370300200920092903b004370300200b1020200941d8016a2009109e040240024020092903d002220c4202520d002009200036029403200d4200370300200e420037030020024200370300200942003703b0044196eec2004127200941b0046a1001200941c8056a41186a200d290300370300200941c8056a41106a200e290300370300200941c8056a41086a2002290300370300200920092903b0043703c805200941003602b004200941c8056a4120200941b0046a1003210b0240024020092802b004220d417f460d00200b450d000240200d4108490d00200b2900002119200b1020200941f0026a201910eb03200941c8056a200941f0026a109e0420092903c0064202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b4200211a200941b0046a41186a220b4200370300200941b0046a41106a220d4200370300200941b0046a41086a220e4200370300200942003703b0044196eec2004127200941b0046a1001200941c8056a41186a200b290300370300200941c8056a41106a200d290300370300200941c8056a41086a200e290300370300200920092903b0043703c805200920002903003703b004200941c8056a4120200941b0046a410810054200210c0c020b200941b0046a200941c8056a41980110cd051a20094198036a200941b0046a41f80010cd051a200941a8046a220b200941c0056a290300370300200941a0046a200941b8056a290300220c37030020094198046a200941b0056a290300370300200920092903a80537039004200941c8056a20094198036a41f80010cd051a200941c4066a200b4100200c4201511b360200200920094194036a3602c006200941003602b804200942013703b004200941c8056a200941b0046a10f903200941c8056a41f8006a200941b0046a10810120092802b404210b200941f0026a412020092802b004220d20092802b80410050240200b450d00200d10200b0240200941dc056a280200450d0020092802d80510200b024020092802e405220b450d00200941e8056a280200450d00200b10200b024020092802f005220b450d00200941f4056a280200450d00200b10200b024020092802fc05220b450d0020094180066a280200450d00200b10200b0240200928028806220b450d002009418c066a280200450d00200b10200b200928029403210b4200210c200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22024200370300200942003703b0044196eec2004127200941b0046a1001200941c8056a41186a200d290300370300200941c8056a41106a200e290300370300200941c8056a41086a2002290300370300200920092903b0043703c8052009200b2903003703b004200941c8056a4120200941b0046a410810054201211a0c010b200941e8026a2903002119200941e0026a290300211a20092903d802211b200928029c02210a200928029802210b2009280290022101200928028c02210d2009280284022108200928028002210e20092802f801210320092802f4012102024020092802ec01450d0020092802e80110200b02402002450d002003450d00200210200b0240200e450d002008450d00200e10200b0240200d450d002001450d00200d10200b200b450d00200a450d00200b10200b200941c8056a41206a2019370300200941e0056a201a370300200941d8056a201b3703002009200c3703d0052009200941e0006a3602c805200941003602b804200942013703b004200941e0006a200941b0046a10f903200941d0056a200941b0046a10940120092802b404210b2009412020092802b004220d20092802b80410050240200b450d00200d10200b024020092d00b0014102460d0002402009280274450d00200928027010200b0240200928027c220b450d0020094180016a280200450d00200b10200b0240200928028801220b450d002009418c016a280200450d00200b10200b0240200928029401220b450d0020094198016a280200450d00200b10200b20092802a001220b450d00200941a4016a280200450d00200b10200b200941c8056a41106a2000290300370300200941d0056a41103a0000200941163a00c805200941c8056a1077200941e0066a24000f0b411f4101102d000b413e4101102d000b200b4101102d000b200a4101102d000b20034101102d000b20044101102d000b20054101102d000b411f4101102d000b413e4101102d000b102c000bb50a03087f017e027f230041b0046b2203240041042104200141046a280000210520012d00002106200341cc016a41026a2207200141036a2d00003a0000200341a8036a41086a2208200141186a290000370300200341a8036a41106a2209200141206a2d00003a0000200320012f00013b01cc012003200141106a2900003703a8034101210a200141086a290000210b024020064101470d00200341b8026a41026a20072d00003a0000200341206a41086a2008290300370300200341206a41106a20092d00003a0000200320032f01cc013b01b802200320032903a8033703204100210a200521040b20034190026a41026a200341b8026a41026a2d00003a0000200341e0026a41086a200341206a41086a290300370300200341e0026a41106a200341206a41106a2d00003a0000200320032f01b8023b019002200320032903203703e0020240024002400240200a0d00200341176a200341e0026a41086a2903003700002003411f6a200341e0026a41106a2d00003a0000200320032f0190023b01002003200b37000720032004360003200320032903e00237000f200320034192026a2d00003a0002200341a8036a200210d60241012101024020032802a8034101470d0020032802b003210420032802ac03210c0c030b20032802b0032104200341e0026a200341b4036a41c40010cd051a200341b8026a41086a20034190046a290300370300200341b8026a41106a20034198046a290300370300200341b8026a41186a2201200341a0046a290300370300200341b8026a41206a2205200341a8046a290300370300200320034188046a2903003703b80220034184046a280200210a20034180046a2802002106200341f8036a2802000d01200341fc036a280200210d200341a8036a200341e0026a41c40010cd051a20034190026a41206a200529030037030020034190026a41186a200129030037030020034190026a41106a200341b8026a41106a29030037030020034190026a41086a200341b8026a41086a290300370300200320032903b80237039002410021010c020b419affc6002101410f210a024002400240024002400240024020040e0700010203040506000b200b422088a7210a200ba721010c050b418cffc6002101410e210a0c040b4180ffc6002101410c210a0c030b41f7fec60021014109210a0c020b41e4fec60021014113210a0c010b41d3fec60021014111210a0b2000200136020420004101360200200041086a200a3602000c020b411521044101210141bcdec200210c0240200a0d000c010b200610200b200341cc016a200341a8036a41c40010cd051a200341a0016a41206a220520034190026a41206a290300370300200341a0016a41186a220720034190026a41186a290300370300200341a0016a41106a220820034190026a41106a290300370300200341a0016a41086a220920034190026a41086a29030037030020032003290390023703a00102402001450d002000200c36020420004101360200200041086a20043602000c010b20032004360220200341206a410472200341cc016a41c40010cd051a200341f4006a200a360200200341f0006a2006360200200341ec006a200d360200200341f8006a20032903a00137030020034188016a200829030037030020034190016a200729030037030020034198016a20052903003703002003410036026820032009290300370380010240200320034180016a412010cf050d00200041086a200341206a41800110cd051a200041003602000c010b200041e3dfc20036020420004101360200200041086a41223602000b200341b0046a24000b970904037f017e047f017e230041d0016b22022400200241086a41086a220342003703002002420037030841e6ebc2004121200241086a1000200241b8016a41086a2003290300370300200220022903083703b80120024100360208200241b8016a4110200241086a100321030240024002400240024020022802082204417f460d002003450d0020044108490d032003290000210520031020200241c8006a2005108001200241086a41386a200241c8006a41386a290300370300200241086a41306a200241c8006a41306a290300370300200241086a41286a200241c8006a41286a290300370300200241086a41206a200241c8006a41206a290300370300200241086a41186a200241c8006a41186a290300370300200241086a41106a200241c8006a41106a290300370300200241086a41086a200241c8006a41086a2903003703002002200229034837030841042103200141046a280000210620012d00002107200241cc016a41026a2208200141036a2d00003a0000200241b8016a41086a200141186a290000370300200241b8016a41106a2209200141206a2d00003a0000200220012f00013b01cc012002200141106a2900003703b80141012104200141086a290000210a024020074101470d00200241b4016a41026a20082d00003a0000200241a0016a41086a200241b8016a41086a290300370300200241a0016a41106a20092d00003a0000200220022f01cc013b01b401200220022903b8013703a00141002104200621030b2002419c016a41026a200241b4016a41026a2d00003a000020024188016a41086a2201200241a0016a41086a29030037030020024188016a41106a200241a0016a41106a2d00003a0000200220022f01b4013b019c01200220022903a0013703880120040d01200241df006a2001290300370000200241e7006a20024188016a41106a2d00003a0000200220022f019c013b01482002200a37004f2002200336004b200220022903880137005720022002419e016a2d00003a004a200241c8006a200241246a412010cf050d0220004100360200200041086a2005370300200041106a2002290308370300200041186a200241086a41086a290300370300200041206a200241086a41106a290300370300200041286a200241086a41186a290300370300200041306a200241086a41206a290300370300200041386a200241086a41286a290300370300200041c0006a200241086a41306a290300370300200041c8006a200241086a41386a2903003703000c040b200041b5dcc20036020420004101360200200041086a41173602000c030b419affc6002101410f2104024002400240024002400240024020030e0700010203040506000b200a422088a72104200aa721010c050b418cffc6002101410e21040c040b4180ffc6002101410c21040c030b41f7fec6002101410921040c020b41e4fec6002101411321040c010b41d3fec6002101411121040b2000200136020420004101360200200041086a20043602000c020b200041ccdcc20036020420004101360200200041086a41123602000c010b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b200241d0016a24000bf20402057f047e230041b0036b22032400200341003602b00120012002200341b0016a1003210402400240024002400240024020032802b0012205417f460d0020040d010b200042023703b8010c010b2003200536020420032004360200200341b0016a200310f70320034188026a2802004102460d03200341086a200341b0016a41a80110cd051a200341e0026a2802002106200341dc026a280200210220032802e402210720032802d8022101200341e8026a2003109301024020032903e80222084202520d0002402002450d00200221040340200128026021012004417f6a22040d000b03402002417f6a22020d000b0b02402006450d004100210241002104410021000340200320023602ac03200320043602a803200320013602a403200320003602a00320034188036a200341a0036a1061200328029003210020032802940321012003280298032104200328029c0321022006417f6a22060d000b0b200141908cc500460d0420012802002106200110202006450d0420062802002102200610202002450d04200228020022010d020c030b2000200341086a41a80110cd05220020073602b401200020063602b001200020023602ac01200020013602a80120034188036a41106a20034180036a290300220937030020034190036a200341e8026a41106a290300220a370300200320032903f002220b37038803200020083703b8012000200b3703c001200041c8016a200a370300200041d0016a20093703002005450d00200410200b200341b0036a24000f0b0340200210202001210220012802002206210120060d000b0b200210200b41ceb8c4004133200341b0016a41fcbfc4004184b9c400102e000b8c0a03047f017e027f230041c0056b2202240020022001370300200241d8036a41186a22034200370300200241d8036a41106a22044200370300200241d8036a41086a22054200370300200242003703d80341edecc200412e200241d8036a100120024180026a41186a200329030037030020024180026a41106a200429030037030020024180026a41086a2005290300370300200220022903d80337038002200241003602d80320024180026a4120200241d8036a1003210302400240024020022802d8032204417f460d002003450d00024020044108490d002003290000210120031020200241086a200110ec03200241d8036a200241086a4120108d042002290390054202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200241d8036a41fcbfc4004184b9c400102e000b200241d8036a41186a22034200370300200241d8036a41106a22044200370300200241d8036a41086a22054200370300200242003703d80341edecc200412e200241d8036a100120024180026a41186a200329030037030020024180026a41106a200429030037030020024180026a41086a2005290300370300200220022903d80337038002200220013703d80320024180026a4120200241d8036a4108100520004200370310200042003703000c010b20024180026a200241d8036a41d80110cd051a200241286a20024180026a41b80110cd051a200241f8016a2203200241d0036a290300370300200241f0016a200241c8036a2903002206370300200241e0016a41086a200241c0036a290300370300200220022903b8033703e001200241d8036a200241286a41b80110cd051a20024194056a2003410020064201511b36020020022002360290052002410036028802200242013703800220022903d803210602400240024002404108101e2203450d0020024108360284022002200228028802220441086a360288022002200336028002200320046a200637000020024180056a20024180026a1062200241d8036a41086a20024180026a10fa03200241d8036a41b8016a20024180026a107e2002280284022103200241086a41202002280280022204200228028802100502402003450d00200410200b20024188056a28020021042002280280052103024020024184056a2802002205450d00200521070340200328026021032007417f6a22070d000b03402005417f6a22050d000b0b02402004450d004100210541002107410021080340200220083602bc05200220073602b805200220033602b405200220053602b00520024180026a200241b0056a10612002280288022105200228028c022103200228029002210720022802940221082004417f6a22040d000b0b200341908cc500460d0320032802002105200310202005450d0320052802002104200510202004450d03200428020022030d010c020b41084101102d000b0340200410202003210420032802002205210320050d000b0b200410200b20022903002106200241d8036a41186a22034200370300200241d8036a41106a22044200370300200241d8036a41086a22054200370300200242003703d80341edecc200412e200241d8036a100120024180026a41186a200329030037030020024180026a41106a200429030037030020024180026a41086a2005290300370300200220022903d80337038002200220063703d80320024180026a4120200241d8036a41081005200041186a200137030020004201370310200042003703000b200241c0056a24000ba51101227f230041b0036b22022400024002400240024002400240024002404126101e2203450d002003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d0120032001370026200241f8016a41186a22044200370300200241f8016a41106a22054200370300200241f8016a41086a22064200370300200242003703f8012003412e200241f8016a1001200241286a41186a2004290300370300200241286a41106a2005290300370300200241286a41086a2006290300370300200220022903f801370328200310200240200241286a412041e4fdc600410041001002417f460d004126101e2203450d032003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d0420032001370026200241f8016a41186a22044200370300200241f8016a41106a22054200370300200241f8016a41086a22064200370300200242003703f8012003412e200241f8016a1001200241286a41186a2004290300370300200241286a41106a2005290300370300200241286a41086a2006290300370300200220022903f80137032820031020200241003602f801200241286a4120200241f8016a1003210720022802f8012208417f460d062007450d06200220083602d401200220073602d001200241f8016a200241d0016a10f70320022802d00222034102460d05200241b0016a41086a200241f8016a41106a29030037030020024188016a41086a2002419c026a29020037030020024188016a41106a200241a4026a290200370300200241a0016a200241ac026a290200370300200241a8016a200241b4026a280200360200200241f0006a41086a200241c4026a290200370300200241f0006a41106a200241cc026a28020036020020022002290380023703b001200220022902940237038801200220022902bc0237037020022903f8012101200228029002210920022802b802210a20024194036a2f0100210620024190036a280200210b2002418c036a280200210c20024188036a280200210d20024184036a280200210e20024180036a280200210f200241fc026a2802002110200241f8026a2802002111200241f4026a2802002112200241f0026a2802002113200241ec026a2802002114200241e8026a2802002115200241e4026a2802002116200241e0026a2802002117200241dc026a2802002118200241d8026a280200211920022802d402211a200241e0006a41086a2002419e036a2f01003b01002002200229019603370360200241a0036a2802002104200241a4036a2802002105200241a8036a280200211b200241ac036a280200211c2008450d07200710200c070b200041f5dcc20036020420004101360200200041086a411e3602000c070b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b410221030b200241e8016a41086a2208200241b0016a41086a290300370300200241f8016a41086a221d20024188016a41086a290300370300200241f8016a41106a221e20024188016a41106a290300370300200241f8016a41186a221f20024188016a41186a290300370300200241f8016a41206a222020024188016a41206a280200360200200220022903b0013703e80120022002290388013703f801200241d0016a41086a2221200241f0006a41086a290300370300200241d0016a41106a2222200241f0006a41106a280200360200200220022903703703d001200241c0016a41086a2223200241e0006a41086a2f01003b0100200220022903603703c001410221070240024020034102470d004200210141908cc5002104410021054100211b410021064100210c4100210e41002110410021124100211441002116410021184100211941022109410021030c010b200241d0006a41086a2008290300370300200241286a41086a201d290300370300200241286a41106a201e290300370300200241286a41186a201f290300370300200241286a41206a2020280200360200200241106a41086a2021290300370300200241106a41106a2022280200360200200220022903e801370350200220022903f801370328200220022903d001370310200241086a20232f01003b0100200220022903c001370300200a21070b200241f8016a2001109004200041086a2001370300200041206a2009360200200041c8006a2007360200200041106a2002290350370300200041186a200241d0006a41086a290300370300200041246a20022903283702002000412c6a200241286a41086a290300370200200041346a200241286a41106a2903003702002000413c6a200241286a41186a290300370200200041c4006a200241286a41206a280200360200200041cc006a2002290310370200200041d4006a200241106a41086a290300370200200041dc006a200241106a41106a280200360200200041a4016a20063b0100200041a0016a200b3602002000419c016a200c36020020004198016a200d36020020004194016a200e36020020004190016a200f3602002000418c016a201036020020004188016a201136020020004184016a201236020020004180016a2013360200200041fc006a2014360200200041f8006a2015360200200041f4006a2016360200200041f0006a2017360200200041ec006a2018360200200041e8006a2019360200200041e4006a201a360200200041e0006a2003360200200041bc016a201c360200200041b8016a201b360100200041b4016a2005360100200041b0016a2004360100200041ae016a200241086a2f01003b0100200020022903003701a601200041c0016a200241f8016a41a00110cd051a200041003602000b200241b0036a24000bc60401057f23004190036b220224000240024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032001370012200241e8016a41186a22044200370300200241e8016a41106a22054200370300200241e8016a41086a22064200370300200242003703e8012003411a200241e8016a1001200241a0016a41186a2004290300370300200241a0016a41106a2005290300370300200241a0016a41086a2006290300370300200220022903e8013703a00120031020200241003602e801200241a0016a4120200241e8016a100321040240024020022802e8012205417f470d00410221030c010b024020040d00410221030c010b2002200536028c032002200436028803200241e8016a20024188036a10b90420022802bc0222034102460d03200241c8006a200241e8016a41d40010cd051a2002200241c0026a41c80010cd051a2005450d00200410200b200241e8016a200241c8006a41d40010cd051a200241a0016a200241c80010cd051a0240024020034102470d0020004200370284014100210320004100360250200042013703900120004102360210200041d8006a410036020020004198016a4100360200200041386a41023602000c010b2000200241e8016a41d40010cd0541d8006a200241a0016a41c80010cd051a0b2000200336025420024190036a24000f0b41124101102d000b41244101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000bb31003077f017e027f230041e0036b2205240002400240024002400240024002404116101e2206450d002006410e6a41002900aad543370000200641086a41002900a4d5433700002006410029009cd54337000020064116412c10222206450d0120062000370016200541b0026a41186a22074200370300200541b0026a41106a22084200370300200541b0026a41086a22094200370300200542003703b0022006411e200541b0026a1001200541086a41186a220a2007290300370300200541086a41106a220b2008290300370300200541086a41086a2009290300370300200520052903b0023703082006102002400240200541086a412041e4fdc600410041001002417f470d00410121060c010b200541b0026a200010e502200541106a2008290300370300200b2007290300370300200a200541b0026a41206a290300370300200541086a41206a200541b0026a41286a290300370300200541086a41286a200541b0026a41306a290300370300200541086a41306a200541b0026a41386a290300370300200541086a41386a200541f0026a290300370300200520052903b802370308200541b0026a20052903b002220c109004410021060b200541f0016a41386a2207200541086a41386a2208290300370300200541f0016a41306a2209200541086a41306a290300370300200541f0016a41286a220d200541086a41286a220e290300370300200541f0016a41206a200541086a41206a290300370300200541f0016a41186a200a290300370300200541f0016a41106a200b290300370300200541f0016a41086a220a200541086a41086a290300370300200520052903083703f001200541d0006a200541b0026a41a00110cd051a0240024020060d00200541086a41106a200a290300370300200541086a41186a200541f0016a41106a290300370300200541086a41206a200541f0016a41186a290300370300200e200541f0016a41206a29030037030020082009290300370300200541c8006a20072903003703002005200c370308200520052903f0013703102005200d290300370338200541b0026a200541d0006a41a00110cd051a4101210920052d00380d072005280284034101460d01410221090c070b410021090c070b20054188036a2d0000210d02400240200541a4036a2802000d0041908cc50021060c010b20052005419c036a3602582005200528029c033602542005200541a0036a280200360250200541f0016a200541d0006a10ea0220052802f001210620052802f8012107024020052802f4012208450d002008210a034020062802602106200a417f6a220a0d000b03402008417f6a22080d000b0b2007450d00410021084100210a4100210b03402005200b3602fc012005200a3602f801200520063602f401200520083602f001200541d0006a200541f0016a106120052802582108200528025c21062005280260210a2005280264210b2007417f6a22070d000b0b200641908cc500460d0420062802002108200610202008450d0420082802002107200810202007450d04200728020022060d020c030b41164101102d000b412c4101102d000b0340200710202006210720062802002208210620080d000b0b200710200b41022109200d41ff01710d004104410520052802c0024102461b4105200141014622061b2207410320021b200720061b22094105470d0041044105200541e8026a2802004102461b4105200341014622061b2207410320041b200720061b22094105470d002005200541086a20002001200220032004410010c40341ff017122063a00d70302400240024002402006450d00200528028403450d0320052802a4032107200528029c0321060240200541a0036a2802002208450d002008210a034020062802602106200a417f6a220a0d000b03402008417f6a22080d000b0b02402007450d00410021084100210a4100210b03402005200b3602fc012005200a3602f801200520063602f401200520083602f001200541d0006a200541f0016a106120052802582108200528025c21062005280260210a2005280264210b2007417f6a22070d000b0b200641908cc500460d0320062802002108200610202008450d0320082802002107200810202007450d03200728020022060d010c020b200541fc016a410d360200200541e4006a410236020020054203370254200541f4a8c4003602502005410d3602f4012005200541d7036a3602d803200541f1a8c4003602dc032005200541f0016a3602602005200541dc036a3602f8012005200541d8036a3602f001200541d0006a41d483c6001033000b0340200710202006210720062802002208210620080d000b0b200710200b0240200541c4036a280200450d0020052802c00310200b0240200541c8006a280200450d00200528024410200b410521090c010b0240200528028403450d00200541a4036a28020021072005419c036a28020021060240200541a0036a2802002208450d002008210a034020062802602106200a417f6a220a0d000b03402008417f6a22080d000b0b02402007450d00410021084100210a4100210b0340200520083602fc012005200a3602f801200520063602f4012005200b3602f001200541d0006a200541f0016a10612005280258210b200528025c21062005280260210a200528026421082007417f6a22070d000b0b200641908cc500460d0020062802002108200610202008450d0020082802002107200810202007450d00024020072802002206450d000340200710202006210720062802002208210620080d000b0b200710200b0240200541c4036a280200450d0020052802c00310200b200541c8006a280200450d00200528024410200b200541e0036a240020090bea4c09017f017e047f037e017f057e0e7f037e1b7f230041b0056b22042400024020012903004201520d0020012903082105024002400240024002400240024002404123101e2206450d002006411f6a41002800ddf041360000200641186a41002900d6f041370000200641106a41002900cef041370000200641086a41002900c6f041370000200641002900bef0413700002006412341c60010222206450d0120062005370023200441a0016a41186a22074200370300200441a0016a41106a22084200370300200441a0016a41086a22094200370300200442003703a0012006412b200441a0016a100120044180046a41186a200729030037030020044180046a41106a200829030037030020044180046a41086a2009290300370300200420042903a001370380042006102020044180046a412041e4fdc600410041001002417f460d054123101e2206450d022006411f6a41002800ddf041360000200641186a41002900d6f041370000200641106a41002900cef041370000200641086a41002900c6f041370000200641002900bef0413700002006412341c60010222206450d0320062005370023200441a0016a41186a22074200370300200441a0016a41106a22084200370300200441a0016a41086a22094200370300200442003703a0012006412b200441a0016a100120044180046a41186a200729030037030020044180046a41106a200829030037030020044180046a41086a2009290300370300200420042903a0013703800420061020200441003602a00120044180046a4120200441a0016a1003210720042802a0012209417f460d062007450d0620042009360294032004200736029003200441a0016a20044190036a10bb0320042802e00122064102460d04200441d0046a200441f8016a290300370300200441d8046a20044180026a290300370300200441c8046a41186a20044188026a2903003703002004200441f0016a2903003703c804200441d8016a290300210a200441c8016a290300210b200441a0016a41186a290300210c200441ec016a280200210d200441e8016a280200210820042903d001210e20042903c001210f20042903b001211020042903a801211120042903a00121122009450d07200710200c070b41234101102d000b41c6004101102d000b41234101102d000b41c6004101102d000b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b41c8aac3004116200441a8056a41e0aac30041f0aac300102e000b410221060b200441a0016a41186a2207200441c8046a41186a290300370300200441a0016a41106a2209200441c8046a41106a290300370300200441a0016a41086a2213200441c8046a41086a290300370300200420042903c8043703a0010240024020064102470d004200210e200441c0026a41186a4200370300200441c0026a41106a4200370300200441c0026a41086a4200370300200442003703c002410021064200210a4200210f4200210b420021104200210c4200211142002112410021080c010b200441c0026a41186a2007290300370300200441c0026a41106a2009290300370300200441c0026a41086a2013290300370300200420042903a0013703c002200641014621060b200441d8036a41086a2207200441c0026a41086a290300370300200441d8036a41106a2209200441c0026a41106a290300370300200441d8036a41186a2213200441c0026a41186a290300370300200420042903c0023703d8032006450d00200441d8016a200a370300200441c8016a200b370300200441a0016a41186a200c370300200441ec016a200d360200200441f8016a200729030037030020044180026a200929030037030020044188026a20132903003703002004200e3703d0012004200f3703c001200420103703b001200441003602e001200420113703a801200420123703a001200420042903d8033703f001200420084101463602e8012005200441a0016a10c0030b107921140240024002400240024002400240024002400240024002400240024002400240024020032802082206417f4c0d00200328020021074101210302402006450d002006101e2203450d020b20032007200610cd05210d200241ff0171211302400240200141186a28020022034102470d004101210902402006450d002006101e2209450d050b2009200d200610cd051a410a4108200241ff01714101461b2115200141186a28020021034100211641022117410221080c010b20044180046a41026a200441016a41026a2d00003a0000200420042f00013b01800441012117200141246a2001411c6a201341014622021b2802002118200141206a280200200320021b210820012903102105410b2115200d2109410121160b2000290300210a41022119200441046a41026a220220044180046a41026a2d00003a0000200420042f0180043b0104200441086a41086a200441a0016a41086a290300370300200441086a41106a200441a0016a41106a290300370300200441086a41186a200441a0016a41186a290300370300200420042800c8043602282004200441cb046a28000036002b200420042903a001370308200441c8046a41026a20022d00003a0000200420042f01043b01c80420044180016a41186a200141f8006a29000037030020044180016a41106a200141f0006a29000037030020044180016a41086a200141e8006a2900003703002004200129006037038001200141086a290300210f2001290300210b0240024020034102470d000c010b20034101462119200141206a280200410146211a200141246a280200211b2001411c6a280200211c200129031021100b4100210702400240024020012802480e03020100020b200141d8006a2802002203417f4c0d02200141d0006a28020021070240024020030d00410121020c010b2003101e2202450d060b200420033602a801200420033602a401200420023602a00120022007200310cd051a410221070c010b200141d8006a2802002203417f4c0d01200141d0006a280200211d410121074101210202402003450d002003101e2202450d060b200420033602a801200420033602a401200420023602a0012002201d200310cd051a0b200441306a41086a20044180016a41086a290300370300200441306a41106a20044180016a41106a290300370300200441306a41186a20044180016a41186a290300370300200441d4006a41026a200441c8046a41026a2d00003a00002004200429038001370330200420042f01c8043b0154200141386a280200211d200141306a290300210c200141286a29030021112001290340211202400240200741014b0d0020070e020100010b2003450d00200210200b200441fc006a41026a200441d4006a41026a2d00003a0000200441d8006a41086a200441306a41086a290300370300200441d8006a41106a200441306a41106a290300370300200441d8006a41186a200441306a41186a290300370300200420042f01543b017c20042004290330370358411f101e2201450d05200141176a41002900a6ef42370000200141106a410029009fef42370000200141086a4100290097ef423700002001410029008fef423700002000290300210e2001411f413e10222201450d062001200e37001f200441a0016a41186a22034200370300200441a0016a41106a22024200370300200441a0016a41086a22074200370300200442003703a00120014127200441a0016a100120044180016a41186a200329030037030020044180016a41106a200229030037030020044180016a41086a2007290300370300200420042903a0013703800120011020200441003602a00120044180016a4120200441a0016a100321010240024020042802a0012203417f460d002001450d0020042003360284042004200136028004200441a0016a20044180046a10ef030240024020042903a0014202510d0020044198036a20044180026a29030037030020044190036a41106a20044188026a29030037030020044190036a41186a220720044190026a29030037030020044190036a41206a221e20044198026a2903003703002004200441f8016a29030037039003200441f0016a280200211f200441e8016a280200210220042802f4012120200441c8046a20044180046a10930120042903c80422214202520d010240200241014b0d0020020e020100010b2020450d00201f10200b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b200441e0026a41206a201e290300370300200441e0026a41186a2007290300370300200441c8046a41106a2903002122200441c8046a41186a290300210e20042903d004212302402003450d00200110200b200241014b0d0120020e021201120b2004200036028c03200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22024200370300200442003703a00141aeefc2004127200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2002290300370300200420042903a00137038004200441003602a00120044180046a4120200441a0016a100321010240024020042802a0012203417f460d002001450d00024020034108490d002001290000210e20011020200441c0026a200e10ee03200441003602a001200441c0026a4120200441a0016a10032101024020042802a0012203417f460d0020010d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b42002122200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22024200370300200442003703a00141aeefc2004127200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2002290300370300200420042903a00137038004200420002903003703a00120044180046a4120200441a0016a41081005420021210c120b200420033602c404200420013602c004200441a0016a200441c0046a10ef030240024020042903a00122214202510d00200441c8046a41386a2202200441e0016a290300370300200441c8046a41306a2207200441a0016a41386a290300370300200441c8046a41286a221e200441a0016a41306a290300370300200441c8046a41206a2220200441a0016a41286a290300370300200441c8046a41186a221f200441a0016a41206a290300370300200441c8046a41106a2224200441a0016a41186a290300370300200441c8046a41086a2225200441a0016a41106a290300370300200420042903a8013703c804200441e8016a2802002126200441f0016a280200212720042802ec01212820042802f401212920044190036a41206a222a20044198026a29030037030020044190036a41186a222b20044190026a29030037030020044190036a41106a222c20044188026a29030037030020044190036a41086a222d20044180026a2903003703002004200441f8016a2903003703900320044188056a200441c0046a1093012004290388054202520d010240202641014b0d0020260e020100010b2029450d00202710200b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b20044180046a41386a222e200229030037030020044180046a41306a222f200729030037030020044180046a41286a2230201e29030037030020044180046a41206a2231202029030037030020044180046a41186a2232201f29030037030020044180046a41106a2233202429030037030020044180046a41086a22342025290300370300200441e0026a41086a2235202d290300370300200441e0026a41106a2236202c290300370300200441e0026a41186a2237202b290300370300200441e0026a41206a2238202a290300370300200420042903c8043703800420042004290390033703e002200441d8036a41086a22392035290300370300200441d8036a41106a223a2036290300370300200441d8036a41186a223b2037290300370300200441d8036a41206a223c2038290300370300200441b8036a41086a223820044188056a41086a290300370300200441b8036a41106a223d20044188056a41106a290300370300200441b8036a41186a223e20044188056a41186a290300370300200420042903e0023703d80320042004290388053703b8032002202e2903003703002007202f290300370300201e203029030037030020202031290300370300201f2032290300370300202420332903003703002025203429030037030020042004290380043703c804202a203c290300370300202b203b290300370300202c203a290300370300202d2039290300370300200420042903d803370390032037203e2903003703002036203d29030037030020352038290300370300200420042903b8033703e00202402003450d00200110200b200441a0016a41386a2201200441c8046a41386a2203290300370300200441a0016a41306a2202200441c8046a41306a2207290300370300200441a0016a41286a221e200441c8046a41286a2220290300370300200441a0016a41206a221f200441c8046a41206a2224290300370300200441a0016a41186a2225200441c8046a41186a222a290300370300200441a0016a41106a222b200441c8046a41106a222c290300370300200441a0016a41086a2236200441c8046a41086a222d29030037030020044180046a41086a223720044190036a41086a222e29030037030020044180046a41106a222f20044190036a41106a223029030037030020044180046a41186a223120044190036a41186a223529030037030020044180046a41206a223220044190036a41206a290300370300200420042903c8043703a00120042004290390033703800420044188056a41186a2233200441e0026a41186a29030037030020044188056a41106a2234200441e0026a41106a29030037030020044188056a41086a2238200441e0026a41086a290300370300200420042903e00237038805202d2036290300370300202c202b290300370300202a20252903003703002024201f2903003703002020201e2903003703002007200229030037030020032001290300370300200420042903a0013703c804200441d8036a41086a22362037290300370300200441d8036a41106a2237202f290300370300200441d8036a41186a222f2031290300370300200441d8036a41206a2231203229030037030020042004290380043703d80320352033290300370300203020342903002222370300202e2038290300370300200420042903880537039003200441f4016a2029360200200441f0016a2027360200200441ec016a2028360200200420213703a001202b202d2903003703002025202c290300370300201f202a290300370300201e20242903003703002002202029030037030020012007290300370300200441e0016a2003290300370300200420263602e801200420042903c8043703a801200441a4026a2035410020224201511b36020020044198026a203129030037030020044190026a202f29030037030020044188026a2037290300370300200441f8016a20042903d803370300200420362903003703800220042004418c036a3602a0022004410036028804200442013703800420044180026a20044180046a10ca0120042802840421032004280288042101024020042903a0014201510d00024020032001460d0020042802800421030c0c0b200141016a22032001490d0d200141017422022003200220034b1b22024100480d0d0240024020010d002002101e21030c010b20042802800420012002102221030b02402003450d002004200236028404200420033602800420042802880421010c0c0b20024101102d000b0240024020032001460d0020042802800421030c010b200141016a22032001490d0d200141017422022003200220034b1b22024100480d0d0240024020010d002002101e21030c010b20042802800420012002102221030b2003450d092004200236028404200420033602800420042802880421010b2004200141016a36028804200320016a41013a000020042903a80121210240200428028404220320042802880422016b4108490d0020042802800421030c0a0b200141086a22022001490d0c200341017422012002200120024b1b22014100480d0c0240024020030d002001101e21030c010b20042802800420032001102221030b02402003450d002004200136028404200420033602800420042802880421010c0a0b20014101102d000b2020450d10201f10200c100b102c000b20064101102d000b20064101102d000b20034101102d000b20034101102d000b411f4101102d000b413e4101102d000b20024101102d000b2004200141086a36028804200320016a20213700000c010b2004200141016a36028804200320016a41003a00000b024002400240200441b8016a2802004102470d0002402004280284042004280288042201460d0020042802800421030c020b200141016a22032001490d03200141017422022003200220034b1b22024100480d030240024020010d002002101e21030c010b20042802800420012002102221030b02402003450d002004200236028404200420033602800420042802880421010c020b20024101102d000b024002402004280284042004280288042201460d0020042802800421030c010b200141016a22032001490d03200141017422022003200220034b1b22024100480d030240024020010d002002101e21030c010b20042802800420012002102221030b02402003450d002004200236028404200420033602800420042802880421010c010b20024101102d000b2004200141016a36028804200320016a41013a0000200441b0016a20044180046a10f5030c010b2004200141016a36028804200320016a41003a00000b200441e8016a20044180046a10f60320042903c801212102400240200428028404220320042802880422016b4108490d0020042802800421030c010b200141086a22022001490d01200341017422012002200120024b1b22014100480d010240024020030d002001101e21030c010b20042802800420032001102221030b2003450d022004200136028404200420033602800420042802880421010b2004200141086a36028804200320016a2021370000200441d0016a290300212102400240200428028404220320042802880422016b4108490d0020042802800421030c010b200141086a22022001490d01200341017422012002200120024b1b22014100480d010240024020030d002001101e21030c010b20042802800420032001102221030b2003450d032004200136028404200420033602800420042802880421010b2004200141086a36028804200320016a2021370000200441d8016a280200210202400240200428028404220320042802880422016b4104490d0020042802800421030c010b200141046a22072001490d01200341017422012007200120074b1b22014100480d010240024020030d002001101e21030c010b20042802800420032001102221030b2003450d042004200136028404200420033602800420042802880421010b2004200141046a36028804200320016a200236000020042903e00121210240200428028404220320042802880422016b4108490d0020042802800421030c050b200141086a22022001490d00200341017422012002200120024b1b22014100480d000240024020030d002001101e21030c010b20042802800420032001102221030b02402003450d002004200136028404200420033602800420042802880421010c050b20014101102d000b1027000b20014101102d000b20014101102d000b20014101102d000b2004200141086a36028804200320016a2021370000200441a0026a20044180046a1081012004280284042101200441c0026a41202004280280042203200428028804100502402001450d00200310200b0240024020042802e801220141014b0d00024020010e020200020b20042802f401450d0120042802f00110200c010b20042802f401450d0020042802f00110200b200428028c03210142002121200441a0016a41186a22034200370300200441a0016a41106a22024200370300200441a0016a41086a22074200370300200442003703a00141aeefc2004127200441a0016a100120044180046a41186a200329030037030020044180046a41106a200229030037030020044180046a41086a2007290300370300200420042903a00137038004200420012903003703a00120044180046a4120200441a0016a41081005420121220b200441fc016a20134101463a0000200441f8016a2006360200200441f4016a2006360200200441f0016a2009360200200441ec016a2014360200200441d8016a201d360200200441d0016a200c370300200441c4016a201b360200200441a0016a41206a201a360200200441bc016a201c360200200441a0016a41186a2019360200200441ff016a200441fe006a2d00003a0000200420173602e801200420123703e001200420113703c801200420103703b0012004200f3703a8012004200b420151ad3703a001200420042f017c3b00fd01200441b8026a200e370300200441b0026a2022370300200441a8026a202337030020044198026a200441d8006a41186a29030037030020044190026a200441e8006a29030037030020044188026a200441e0006a290300370300200420213703a0022004200429035837038002200441203602cc04200420044180016a3602c804200441a0016a200441c8046a10f4030240024020042802e801220141014b0d00024020010e020200020b20042802f401450d0120042802f00110200c010b20042802f401450d0020042802f00110200b02400240024002400240024020084102460d00200441e4036a2018360200200420083602e003200420053703d8032000290300210e4125101e2201450d012001411d6a41002900ddf042370000200141186a41002900d8f042370000200141106a41002900d0f042370000200141086a41002900c8f042370000200141002900c0f0423700002001412541ca0010222201450d0220012005370025200441a0016a41186a22034200370300200441a0016a41106a22004200370300200441a0016a41086a22024200370300200442003703a0012001412d200441a0016a100120044180016a41186a200329030037030020044180016a41106a200029030037030020044180016a41086a2002290300370300200420042903a0013703800120011020200441c8046a20044180016a412010ee020240024020042903c8044202520d002004200537038805200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22004200370300200442003703a00141e5f0c200412d200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2000290300370300200420042903a00137038004200441003602a00120044180046a4120200441a0016a1003210102400240024020042802a0012203417f460d002001450d00024020034108490d002001290000210520011020200441c0026a200510ef02200441a0016a200441c0026a412010ee0220042903a001220f4202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b4200210f200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22004200370300200442003703a00141e5f0c200412d200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2000290300370300200420042903a00137038004200420053703a00120044180046a4120200441a0016a410810050c010b20044180046a41086a200441a0016a41186a2201290300220c37030020044180046a41106a2203200441a0016a41206a290300220b37030020044180046a41186a200441c8016a29030022113703002004200441a0016a41106a220029030022123703800420042903a8012110200120113703002000200b370300200441a0016a41086a200c370300200420123703a00120044194046a20014100200b4201511b3602002004201037038804200420044188056a360290042004200f37038004200441003602980320044201370390034101101e210102400240200f4201510d0002402001450d00200141003a00002004428180808010370294032004200136029003200420103703e002200441e0026a21000c020b41014101102d000b2001450d07200141013a00002004428180808010370294032004200136029003200420103703e002200441e0026a21000b20014101410910222201450d0720012000290300370001200420013602900320044289808080900137029403200320044190036a107e2004280294032101200441c0026a41202004280290032203200428029803100502402001450d00200310200b200429038805210f200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22004200370300200442003703a00141e5f0c200412d200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2000290300370300200420042903a001370380042004200f3703a00120044180046a4120200441a0016a410810054201210f0b4200210b20042802e403211820042802e00321080c010b200441f0046a2903002105200441c8046a41206a290300210f200441e0046a2903002110200441d8046a290300210b0b200441c8016a2005370300200441a0016a41206a200f370300200441b8016a20103703002004200b3703b0012004200e3703a801200442013703a001200441203602cc04200420044180016a3602c804200441a0016a200441c8046a10f002200441d8036a2008201810ad0241ff017122014105470d050b200441a0016a41086a20153a0000200441a9016a2004280228360000200441ac016a200428002b360000200441a0016a41106a200a370300200441a0016a41186a2004290308370300200441c0016a200441086a41086a290300370300200441c8016a200441086a41106a290300370300200441d0016a200441086a41186a290300370300200441163a00a001200441a0016a107702402006410047201641017371450d00200d10200b200441b0056a24000f0b41254101102d000b41ca004101102d000b41014101102d000b41094101102d000b200420013a00a0014180abc3004127200441a0016a41a8abc30041b8abc300102e000bd12204057f027e047f017e230041d0036b22022400024002400240024002400240024002400240024002400240024002400240411c101e2203450d00200341186a410028009fec42360000200341106a4100290097ec42370000200341086a410029008fec4237000020034100290087ec423700002003411c413810222203450d012003200037001c20024190026a41186a2204420037030020024190026a41106a2205420037030020024190026a41086a2206420037030020024200370390022003412420024190026a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903900237030820031020200241286a200241086a109f04024020022903284202520d00200220003703880120024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241a3ecc200412420024190026a1001200241f0026a41186a2003290300370300200241f0026a41106a2004290300370300200241f0026a41086a200529030037030020022002290390023703f0022002410036029002200241f0026a412020024190026a10032103024002402002280290022204417f460d002003450d00024020044108490d002003290000210020031020411c101e22030d02411c4101102d000b41ceb8c400413320024190026a41fcbfc4004184b9c400102e000b4200210720024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241a3ecc200412420024190026a1001200241f0026a41186a2003290300370300200241f0026a41106a2004290300370300200241f0026a41086a200529030037030020022002290390023703f0022002200037039002200241f0026a412020024190026a41081005420021080c0a0b200341186a410028009fec42360000200341106a4100290097ec42370000200341086a410029008fec4237000020034100290087ec423700002003411c413810222203450d032003200037001c20024190026a41186a2204420037030020024190026a41106a2205420037030020024190026a41086a2206420037030020024200370390022003412420024190026a100120024190016a41186a200429030037030020024190016a41106a200529030037030020024190016a41086a200629030037030020022002290390023703900120031020200241f0026a20024190016a109f0420022903f0024202510d0420024190026a200241f0026a41e00010cd051a200241b0016a41386a220320024190026a41386a290300370300200241b0016a41306a220420024190026a41306a290300370300200241b0016a41286a220520024190026a41286a290300370300200241b0016a41206a220620024190026a41206a290300370300200241b0016a41186a220920024190026a41186a290300370300200241b0016a41106a220a20024190026a41106a290300370300200241b0016a41086a220b20024190026a41086a29030037030020022002290390023703b001200241f0016a41186a220c200241e8026a290300370300200241f0016a41106a200241e0026a2903002207370300200241f0016a41086a200241d8026a290300370300200220022903d0023703f001200241b4036a200c410020074201511b360200200241f0026a41386a2003290300370300200241f0026a41306a2004290300370300200241f0026a41286a2005290300370300200241f0026a41206a2006290300370300200241f0026a41186a2009290300370300200241f0026a41106a200a290300370300200241f0026a41086a200b290300370300200220022903b0013703f002200220024188016a3602b003200241003602980220024201370390022002418c036a20024190026a10ca01024020022903f0024201510d0002402002280294022002280298022203460d0020022802900221040c090b200341016a22042003490d0b200341017422052004200520044b1b22054100480d0b0240024020030d002005101e21040c010b20022802900220032005102221040b02402004450d002002200536029402200220043602900220022802980221030c090b20054101102d000b024002402002280294022002280298022203460d0020022802900221040c010b200341016a22042003490d0b200341017422052004200520044b1b22054100480d0b0240024020030d002005101e21040c010b20022802900220032005102221040b2004450d062002200536029402200220043602900220022802980221030b2002200341016a36029802200420036a41013a000020022903f80221070240200228029402220420022802980222036b4108490d0020022802900221040c070b200341086a22052003490d0a200441017422032005200320054b1b22034100480d0a0240024020040d002003101e21040c010b20022802900220042003102221040b02402004450d002002200336029402200220043602900220022802980221030c070b20034101102d000b20024180016a2903002100200241f8006a2903002107200241f0006a290300210d200241e8006a29030021080c080b411c4101102d000b41384101102d000b41384101102d000b41b8e7c50041920141cce8c5001045000b20054101102d000b2002200341086a36029802200420036a20073700000c010b2002200341016a36029802200420036a41003a00000b20022802800321050240024002400240024002400240200228029402220420022802980222036b4104490d0020022802900221040c010b200341046a22062003490d07200441017422032006200320064b1b22034100480d070240024020040d002003101e21040c010b20022802900220042003102221040b2004450d012002200336029402200220043602900220022802980221030b2002200341046a36029802200420036a200536000002402002280284034101460d0002402002280294022002280298022203460d0020022802900221040c050b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b20022802900220032005102221040b02402004450d002002200536029402200220043602900220022802980221030c050b20054101102d000b024002402002280294022002280298022203460d0020022802900221040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b20022802900220032005102221040b2004450d022002200536029402200220043602900220022802980221030b2002200341016a36029802200420036a41013a000020022802880321050240200228029402220420022802980222036b4104490d0020022802900221040c030b200341046a22062003490d06200441017422032006200320064b1b22034100480d060240024020040d002003101e21040c010b20022802900220042003102221040b02402004450d002002200336029402200220043602900220022802980221030c030b20034101102d000b20034101102d000b20054101102d000b2002200341046a36029802200420036a20053600000c010b2002200341016a36029802200420036a41003a00000b200241b0036a20024190026a107e200228029402210320024190016a41202002280290022204200228029802100502402003450d00200410200b20022903880121074200210820024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241a3ecc200412420024190026a1001200241f0026a41186a2003290300370300200241f0026a41106a2004290300370300200241f0026a41086a200529030037030020022002290390023703f0022002200737039002200241f0026a412020024190026a41081005420121070b200241c8036a2000370300200241c0036a2007370300200241b8036a200d370300200241f0026a41386a200141386a290300370300200241f0026a41306a200141306a290300370300200241f0026a41286a200141286a290300370300200241f0026a41206a200141206a290300370300200241f0026a41186a200141186a290300370300200241f0026a41106a200141106a290300370300200241f0026a41086a200141086a290300370300200220083703b003200220012903003703f002200241003602980220024201370390022002418c036a20024190026a10ca0102400240024020022903f0024201510d0002402002280294022002280298022201460d0020022802900221030c020b200141016a22032001490d03200141017422042003200420034b1b22044100480d030240024020010d002004101e21030c010b20022802900220012004102221030b02402003450d002002200436029402200220033602900220022802980221010c020b20044101102d000b02400240024002402002280294022002280298022201460d0020022802900221030c010b200141016a22032001490d05200141017422042003200420034b1b22044100480d050240024020010d002004101e21030c010b20022802900220012004102221030b2003450d012002200436029402200220033602900220022802980221010b2002200141016a36029802200320016a41013a000020022903f80221000240200228029402220320022802980222016b4108490d0020022802900221030c020b200141086a22042001490d04200341017422012004200120044b1b22014100480d040240024020030d002001101e21030c010b20022802900220032001102221030b02402003450d002002200136029402200220033602900220022802980221010c020b20014101102d000b20044101102d000b2002200141086a36029802200320016a20003700000c010b2002200141016a36029802200320016a41003a00000b200228028003210402400240200228029402220320022802980222016b4104490d0020022802900221030c010b200141046a22052001490d01200341017422012005200120054b1b22014100480d010240024020030d002001101e21030c010b20022802900220032001102221030b2003450d022002200136029402200220033602900220022802980221010b2002200141046a36029802200320016a200436000002402002280284034101460d0002402002280294022002280298022201460d0020022802900221030c060b200141016a22032001490d01200141017422042003200420034b1b22044100480d010240024020010d002004101e21030c010b20022802900220012004102221030b02402003450d002002200436029402200220033602900220022802980221010c060b20044101102d000b024002402002280294022002280298022201460d0020022802900221030c010b200141016a22032001490d01200141017422042003200420034b1b22044100480d010240024020010d002004101e21030c010b20022802900220012004102221030b2003450d032002200436029402200220033602900220022802980221010b2002200141016a36029802200320016a41013a000020022802880321040240200228029402220320022802980222016b4104490d0020022802900221030c040b200141046a22052001490d00200341017422012005200120054b1b22014100480d000240024020030d002001101e21030c010b20022802900220032001102221030b02402003450d002002200136029402200220033602900220022802980221010c040b20014101102d000b1027000b20014101102d000b20044101102d000b2002200141046a36029802200320016a20043600000c010b2002200141016a36029802200320016a41003a00000b200241b0036a20024190026a1094012002280294022101200241086a41202002280290022203200228029802100502402001450d00200310200b200241d0036a24000bc20904067f047e017f047e23004180016b22052400024002402002410671450d000240024002400240024002404110101e2206450d00200641002900dfbd45370000200641086a41002900e7bd45370000200542908080808002370254200520063602502001200541d0006a10ca012005280258210620052802502107200541e0006a41186a22084200370300200541e0006a41106a22094200370300200541e0006a41086a220a42003703002005420037036020072006200541e0006a1001200541306a41186a2008290300370300200541306a41106a2009290300370300200541306a41086a200a2903003703002005200529036037033002402005280254450d00200528025010200b20054100360260200541306a4120200541e0006a1003210620052802602207417f460d062006450d0620074110490d0320074170714110460d032007417c714120460d03200641086a290000210b2006290000210c200641186a290000210d2006290010210e20062800202107200610204114101e2206450d01200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370254200520063602502001200541d0006a10ca012005280258210620052802502108200541e0006a41186a22094200370300200541e0006a41106a220a4200370300200541e0006a41086a220f42003703002005420037036020082006200541e0006a1001200541306a41186a2009290300370300200541306a41106a200a290300370300200541306a41086a200f2903003703002005200529036037033002402005280254450d00200528025010200b20054100360260200541306a4120200541e0006a1003210620052802602208417f460d042006450d0420084110490d02200641086a290000211020062900002111200610200c050b41104101102d000b41144101102d000b41ceb8c4004133200541e0006a41fcbfc4004184b9c400102e000b41ceb8c4004133200541e0006a41fcbfc4004184b9c400102e000b42002111420021100b42002112200541106a200d420041001079220620076b2207200720064b1bad2213420010d205200541206a20134200200e420010d205200542004200200e420010d2054200210e02402005290308200529031884420052200541286a2903002213200529030020052903107c7c220d201354720d00200b200d200c2005290320221256200b200d56200b200d511b22061b200d7d200c201220061b220d201254ad7d210e200d20127d21120b2012201120112012562010200e562010200e511b22061b200356200e201020061b220e200456200e2004511b450d0041a0bec5002101412621060c010b200541e0006a200110d10402400240200528026822010d00410021012005280264450d01200528026010200c010b2001410574210610792107200528026421082005280260220921010240034002402007200141106a2802004f0d002001290300200358200141086a290300220e200458200e2004511b0d002001411c6a2d000020027141ff01710d020b200141206a2101200641606a22060d000b410021012008450d01200910200c010b41efbdc50021012008450d00200910200b413121060b200020063602042000200136020020054180016a24000bd21c02157f017e23004180056b22082400024002400240024002400240024002400240024002400240024002404112101e2209450d00200941106a41002f00e0d5433b0000200941086a41002900d8d543370000200941002900d0d54337000020094112412410222209450d0120092001370012200841b0036a41186a220a4200370300200841b0036a41106a220b4200370300200841b0036a41086a220c4200370300200842003703b0032009411a200841b0036a1001200841e0046a41186a200a290300370300200841e0046a41106a200b290300370300200841e0046a41086a200c290300370300200820082903b0033703e00420091020024002400240200841e0046a412041e4fdc600410041001002417f460d00200841b0036a200110900420084188026a41056a200841b0036a41a00110cd051a200841e0006a20084188026a41a50110cd051a20084188026a200841e0006a41056a41a00110cd051a200841c0026a280200210920024201510d014102210a4100210d20094102460d020c0e0b200041013b01000c0f0b4101210a20094102460d0c4101210d4103210a20082903b0022202200385200841b8026a290300220120048584502002200358200120045820012004511b200841d0026a2d00004101461b4101470d0c0b20082802980221090240024020054201510d004102210a4100210e20094102460d010c0c0b4101210a20094102460d0b4101210e4103210a200829038802220220068520084190026a290300220120078584502002200658200120075820012007511b200841a8026a2d00004101461b4101470d0b0b20082802dc024101470d0202400240024002400240200841e0026a2d00000e03010200010b200841ec026a280200410146210f200841f0026a2802002110200841e8026a2802002111200841e4026a28020021124102210920082d00e10221130c030b200841e4026a2802002112410021090c010b200841e8026a2802002111200841e4026a2802002112410221090b0b02400240200841fc026a280200450d002008200841f4026a360268200820082802f4023602642008200841f8026a280200360260200841b0036a200841e0006a10ea020c010b200842003702b403200841908cc5003602b0030b200841e0046a41086a200841b0036a41086a280200220a360200200820082903b00322013703e004200828028803211420082802840321152008280280032116200841d0046a41086a200a360200200820013703d004024020090d0002402008280290034101460d00420021010c080b20084194036a280200211720082802d00421090240024020082802d404220b0d002009210a0c010b2009210a200b210c0340200a280260210a200c417f6a220c0d000b0340200920092f01064102746a41e0006a2802002109200b417f6a220b0d000b0b20092f0106210b20082802d804210c200842003702b403200841908cc5003602b003200841fc006a200b360200200841f4006a20093602002008200c36028001200841f8006a200841d0046a3602002008420037026c2008200a36026441002118200841003602602008200841d0046a360268200841e0006a200841b0036a10b503200841e8046a20082802b803360200200820082903b00322013703e0042001a72109024020082802e404220a450d00200a210b034020092802f8062109200b417f6a220b0d000b0340200a417f6a220a0d000b0b20082802e8042219450d0620092f01060d04024002402009280200220a0d004100210c4100210b4100210a0c010b20092f0104210b4101210c0b0240200b200a2f0106490d000340200c41016a210c200a2f0104220b200a280200220a2f01064f0d000b0b200a200b41c8006c6a41e0006a211a200b410274200a6a41fc066a280200210b4100211b200c417f6a220a450d050340200b2802f806210b200a417f6a220a0d000c060b0b200041043b00010c090b41124101102d000b41244101102d000b20004181083b01000c090b200941e0006a211a4101211b2009210b0b410021182019211c0340201c417f6a211c4100210a0240201a2d00300d00200841d0006a201a290308201a29031010c904200841c0006a201a290318201a29032010c9044101210a0b200a20186a2118201c450d010240201b200b2f0106490d0002400240200b280200220a0d004100210c4100210b4100210a0c010b200b2f0104210b4101210c0b0240200b200a2f0106490d000340200c41016a210c200a2f0104220b200a280200220a2f01064f0d000b0b200a200b41c8006c6a41e0006a211a200b410274200a6a41fc066a280200210b4100211b200c417f6a220a450d010340200b2802f806210b200a417f6a220a0d000c020b0b200b201b41c8006c6a41e0006a211a201b41016a211b0c000b0b02400240024020182017490d0020074200200e1b20044200200d1b7c20064200200e1b220120034200200d1b7c221d200154ad7c21064100210a03402019450d0602400240200a20092f0106490d00024002402009280200220a0d004100210b410021094100210a0c010b20092f010421094101210b0b02402009200a2f0106490d000340200b41016a210b200a2f01042209200a280200220a2f01064f0d000b0b200a200941c8006c6a211a200a20094103746a41086a210c2009410274200a6a41fc066a28020021090240200b417f6a220a450d00034020092802f8062109200a417f6a220a0d000b0b201a41e0006a210b4100210a0c010b2009200a4103746a41086a210c2009200a41c8006c6a41e0006a210b200a41016a210a0b2019417f6a2119200b2d00300d000b200841306a200b290308200b29031010c904200841306a41086a290300210120082903302102200841206a200b290318200b29032010c9042001200841206a41086a2903007c2002200829032022017c2205200154ad7c2101200cad21072019450d020240200a20092f0106490d00024002402009280200220a0d004100210b410021094100210a0c010b20092f010421094101210b0b02402009200a2f0106490d000340200b41016a210b200a2f01042209200a280200220a2f01064f0d000b0b200a200941c8006c6a41e0006a210c200a20094103746a41086a211c2009410274200a6a41fc066a28020021094100211a200b417f6a220a450d02034020092802f8062109200a417f6a220a0d000c030b0b200a41016a211a2009200a4103746a41086a211c2009200a41c8006c6a41e0006a210c0c010b20082802e00420082802e40420082802e80410b703420021010c020b03402019417f6a21190240200c2d00300d00200841106a200c290308200c29031010c904200841106a41086a2903002104200829031021022008200c290318200c29032010c90420052002200829030022037c22025820012004200841086a2903007c2002200354ad7c22045820012004511b0d00201cad210720022105200421010b2019450d010240201a20092f0106490d00024002402009280200220a0d004100210b410021094100210a0c010b20092f010421094101210b0b02402009200a2f0106490d000340200b41016a210b200a2f01042209200a280200220a2f01064f0d000b0b200a200941c8006c6a41e0006a210c200a20094103746a41086a211c2009410274200a6a41fc066a28020021094100211a200b417f6a220a450d01034020092802f8062109200a417f6a220a0d000c020b0b2009201a4103746a41086a211c2009201a41c8006c6a41e0006a210c201a41016a211a0c000b0b2007a72209450d0202400240201d200556200620015620062001511b0d00410121090c010b20092903002102410021090b20082802e00420082802e40420082802e80410b7034201210120090d010b200041086a20084188026a41a00110cd051a200041c8016a2010360200200041c4016a200f360200200041c0016a2011360200200041bc016a2012360200200041b9016a20133a0000200041b8016a41003a0000200041b0016a2002370300200041a8016a2001370300200041e0016a2014360200200041dc016a2015360200200041d8016a2016360200200041003a0000200041cc016a20082903d004370200200041d4016a200841d0046a41086a2802003602000c060b200041053a00010c010b41a5acc40041cb0041a888c6001028000b200041013a000020082802d804210a20082802d0042109024020082802d4042200450d002000210b034020092802602109200b417f6a220b0d000b03402000417f6a22000d000b0b0240200a450d00410021004100210b4100210c0340200820003602bc032008200b3602b803200820093602b4032008200c3602b003200841e0006a200841b0036a10612008280268210c200828026c21092008280270210b20082802742100200a417f6a220a0d000b0b200941908cc500460d0220092802002100200910202000450d022000280200210a20001020200a450d020240200a2802002209450d000340200a10202009210a20092802002200210920000d000b0b200a10200c020b2000200a3a0001200041013a0000200041026a41013a00000c010b2000200a3a0001200041013a0000200041026a41003a00000b024020082802dc02450d00200841fc026a280200210a200841f4026a28020021090240200841f8026a2802002200450d002000210b034020092802602109200b417f6a220b0d000b03402000417f6a22000d000b0b0240200a450d00410021004100210b4100210c03402008200c3602bc032008200b3602b803200820093602b403200820003602b003200841e0006a200841b0036a106120082802682100200828026c21092008280270210b2008280274210c200a417f6a220a0d000b0b200941908cc500460d0020092802002100200910202000450d002000280200210a20001020200a450d000240200a2802002209450d000340200a10202009210a20092802002200210920000d000b0b200a10200b2008419c036a280200450d0020082802980310200b20084180056a24000bba1f05057f037e017f027e037f23004190026b22052400200541286a2003370300200520023703202005200137031802400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001a74101470d00410c101e2206450d012006428180808010370200200641086a410136020020064174460d0242002101200541d0016a41086a22074200370300200542003703d00141d1aac1004117200541d0016a1000200541a0016a41086a2007290300370300200520052903d0013703a001200541003602d001200541a0016a4110200541d0016a10032107024020052802d0012208417f460d002007450d0020084108490d0420072900002101200710200b2005200137038001200541d0016a41086a22074200370300200542003703d00141d1aac1004117200541d0016a1000200541a0016a41086a2007290300370300200520052903d0013703a0012005200142017c3703d001200541a0016a4110200541d0016a4108100510792107200541033a00f001200520073602800220054180016a200541d0016a1099022005290380012101200641086a22072007280200417f6a3602002005200137033020062006280200417f6a2207360200024020070d0020062006280204417f6a220736020420070d00200610200b411f101e2206450d04200641176a41002900a4d443370000200641106a410029009dd443370000200641086a4100290095d4433700002006410029008dd4433700002006411f413e10222206450d052006200137001f200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820064127200541d8006a1001200541386a41186a2007290300370300200541386a41106a2008290300370300200541386a41086a20092903003703002005200529035837033820061020200541386a412041e4fdc600410041001002417f470d11411f101e2206450d06200641176a41002900a4d443370000200641106a410029009dd443370000200641086a4100290095d4433700002006410029008dd4433700002006411f413e10222206450d072006200137001f200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820064127200541d8006a1001200541386a41186a2007290300370300200541386a41106a2008290300370300200541386a41086a20092903003703002005200529035837033820061020200541003602d001200541386a4120200541d0016a100321060240024020052802d0012207417f460d002006450d00200520073602a401200520063602a001200541d0016a200541a0016a10830120052903d801220a4202510d0a200541f0016a2903002101200541e8016a290300210b20052903e001210c2007450d01200610200c010b20052001370378200541d8006a41186a22064200370300200541d8006a41106a22074200370300200541d8006a41086a220842003703002005420037035841acd4c3004127200541d8006a1001200541a0016a41186a2006290300370300200541a0016a41106a2007290300370300200541a0016a41086a2008290300370300200520052903583703a001200541003602d001200541a0016a4120200541d0016a1003210602400240024020052802d0012207417f460d002006450d00024020074108490d00200629000021012006102020054180016a200110e602200541003602d00120054180016a4120200541d0016a10032106024020052802d0012207417f460d0020060d030b41b8e7c50041920141cce8c5001045000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b4200210b200541d8006a41186a22064200370300200541d8006a41106a22074200370300200541d8006a41086a220842003703002005420037035841acd4c3004127200541d8006a1001200541a0016a41186a2006290300370300200541a0016a41106a2007290300370300200541a0016a41086a2008290300370300200520052903583703a001200520013703d001200541a0016a4120200541d0016a410810050c010b2005200736025c20052006360258200541d0016a200541d8006a10830120052903d801220b4202510d0b200541a0016a41086a2208200541d0016a41186a2209290300370300200541a0016a41106a220d200541d0016a41206a290300370300200520052903e0013703a00120052903d001210c02402007450d00200610200b200541d8006a41106a2206200d290300220e370300200541d8006a41086a22072008290300220a370300200520052903a001220f370358200541d0016a41106a200a3703002009200e3703002005200b3703d0012005200f3703d8014201210b200541ac016a20094100200a4201511b3602002005200c3703a0012005200541f8006a3602a8012005412036025c200520054180016a360258200541a0016a200541d8006a1087012005290378210a200541d8006a41186a2209420037030020064200370300200742003703002005420037035841acd4c3004127200541d8006a1001200541a0016a41186a2009290300370300200d200629030037030020082007290300370300200520052903583703a0012005200a3703d001200541a0016a4120200541d0016a410810050b4200210a0b200541d0016a41206a2001370300200541e8016a200b370300200541e0016a200c3703002005200a3703d801200520043602d001200541203602a4012005200541386a3602a001200541d0016a200541a0016a108801410c101e2206450d0a2006428180808010370200200641086a410136020020064174460d0b20052003370340200520023703384110101e2204450d0c20044100290088ab41370000200441086a4100290090ab413700002005290330210120044110412010222204450d0d20042001370010200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820044118200541d8006a1001200541d0016a41186a2007290300370300200541d0016a41106a2008290300370300200541d0016a41086a2009290300370300200520052903583703d001200410200240200541d0016a412041e4fdc600410041001002417f460d004110101e2204450d0f20044100290088ab41370000200441086a4100290090ab413700002005290330210120044110412010222204450d1020042001370010200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820044118200541d8006a1001200541a0016a41186a2007290300370300200541a0016a41106a2008290300370300200541a0016a41086a2009290300370300200520052903583703a00120041020200541003602d001200541a0016a4120200541d0016a1003210420052802d0012209417f460d142004450d142005200936025c20052004360258200541d0016a200541d8006a10970220052d00f00122074104460d1120054180016a41186a200541d0016a41186a29030037030020054180016a41106a200541d0016a41106a29030037030020054180016a41086a200541d0016a41086a290300370300200541fa006a200541f3016a2d00003a0000200520052903d00137038001200520052f00f1013b0178200541f4016a280200210d200541f8016a2802002110200541fc016a280200211120054180026a280200210820054184026a28020021122009450d15200410200c150b410321040c150b4200210220014201510d110c160b410c4104102d000b4196e2c600411820054188026a41f8aac10041c0e2c600102e000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b410c4104102d000b4196e2c600411820054188026a41f8aac10041c0e2c600102e000b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b41a4a9c40041c60041a888c6001028000b2005200541206a3602d001200541d0016a1094020c040b410421070b200541d0016a41086a20054180016a41086a290300370300200541d0016a41106a20054180016a41106a290300370300200541d0016a41186a20054180016a41186a290300370300200541a0016a41026a2204200541f8006a41026a2d00003a000020052005290380013703d001200520052f01783b01a0010240024020074104470d0041032107410021080c010b200541d8006a41026a20042d00003a0000200520052f01a0013b015820052903e80121010b200541c4016a41026a200541d8006a41026a2d00003a0000200520052f01583b01c401024002400240024020052903382202200541386a41086a290300220384500d004102210420074103470d01200541f8016a4200370300200541f4016a41908cc500360200200541023a00f001200541f3016a200541c4016a41026a2d00003a0000200520023703d001200520013703e801200542003703e001200520052f01c4013b00f10120052012360284022005200836028002200520033703d801200541306a200541d0016a109902200541386a41086a290300210220052903382101200542eadee59bc7aed8b5e5003703a001200541d0016a200541a0016a10ae02200541086a200541d0016a2001200210f302200541b0016a2002200541086a41086a290300220a7d20012005290308220354ad7d200a20027d2003200154ad7d2003200158200a200258200a20025122041b22071b3703002005200120037d200320017d20071b3703a80120052003200156200a20025620041b2204ad3703a001200541a0016a41086a210720040d02200520073602800120054180016a1094020c030b4100210420074103460d030b200d201020111098020c020b200520073602800120054180016a10f4020b410421040c010b2005200541386a3602d001200541d0016a1094020b200641086a22072007280200417f6a360200200520043a003820044104470d0120062006280200417f6a2204360200024020040d0020062006280204417f6a220436020420040d00200610200b20052903302101420121020b200020013703082000200237030020054190026a24000f0b200541ac016a410e360200200541e4016a4102360200200542033702d401200541eca9c4003602d0012005410e3602a4012005200541386a360258200541eaa9c400360280012005200541a0016a3602e001200520054180016a3602a8012005200541d8006a3602a001200541d0016a41d483c6001033000bd60101017f230041106b22022400024002400240024020002802002d00000e03010200010b2002200128021841a284c700410b2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b2002200128021841ad84c70041072001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841b484c70041092001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000baf1403047f017e027f230041f0026b220224002002200137030820024180026a41186a2203420037030020024180026a41106a2204420037030020024180026a41086a22054200370300200242003703800241b2d5c300411e20024180026a100120024198016a41186a200329030037030020024198016a41106a200429030037030020024198016a41086a2005290300370300200220022903800237039801200241003602800220024198016a412020024180026a100321030240024002402002280280022204417f460d002003450d00024020044108490d002003290000210120031020200241106a200110e70220024180026a200241106a10e8022002290388024202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024180026a41fcbfc4004184b9c400102e000b20024180026a41186a2203420037030020024180026a41106a2204420037030020024180026a41086a22054200370300200242003703800241b2d5c300411e20024180026a100120024198016a41186a200329030037030020024198016a41106a200429030037030020024198016a41086a2005290300370300200220022903800237039801200220013703800220024198016a412020024180026a4108100520004200370310200042003703000c010b20024198016a20024180026a41e80010cd051a200241306a20024198016a41c80010cd051a20024190016a2203200241f8016a29030037030020024188016a200241f0016a2903002206370300200241f8006a41086a200241e8016a290300370300200220022903e00137037820024180026a200241306a41c80010cd051a200241cc026a2003410020064201511b3602002002200241086a3602c802200241003602a001200242013703980120022903800221060240024002400240024002400240024002404108101e2203450d002002410836029c01200220022802a001220441086a3602a0012002200336029801200320046a200637000020022802a802210502400240200228029c01220420022802a00122036b4104490d0020022802980121040c010b200341046a22072003490d08200441017422032007200320074b1b22034100480d080240024020040d002003101e21040c010b20022802980120042003102221040b2004450d022002200336029c01200220043602980120022802a00121030b2002200341046a3602a001200420036a200536000020022802ac02210502400240200228029c01220420022802a00122036b4104490d0020022802980121040c010b200341046a22072003490d08200441017422032007200320074b1b22034100480d080240024020040d002003101e21040c010b20022802980120042003102221040b2004450d032002200336029c01200220043602980120022802a00121030b2002200341046a3602a001200420036a200536000002402002290388024201510d000240200228029c0120022802a0012203460d0020022802980121040c070b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802980120032005102221040b02402004450d002002200536029c01200220043602980120022802a00121030c070b20054101102d000b02400240200228029c0120022802a0012203460d0020022802980121040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802980120032005102221040b2004450d042002200536029c01200220043602980120022802a00121030b2002200341016a3602a001200420036a41013a000020022903900221060240200228029c01220420022802a00122036b4108490d0020022802980121040c050b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b20022802980120042003102221040b02402004450d002002200336029c01200220043602980120022802a00121030c050b20034101102d000b41084101102d000b20034101102d000b20034101102d000b20054101102d000b2002200341086a3602a001200420036a20063700000c010b2002200341016a3602a001200420036a41003a00000b0240024002402002290398024201510d000240200228029c0120022802a0012203460d0020022802980121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802980120032005102221040b02402004450d002002200536029c01200220043602980120022802a00121030c020b20054101102d000b0240024002400240200228029c0120022802a0012203460d0020022802980121040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802980120032005102221040b2004450d012002200536029c01200220043602980120022802a00121030b2002200341016a3602a001200420036a41013a000020022903a00221060240200228029c01220420022802a00122036b4108490d0020022802980121040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b20022802980120042003102221040b02402004450d002002200336029c01200220043602980120022802a00121030c020b20034101102d000b20054101102d000b2002200341086a3602a001200420036a20063700000c010b2002200341016a3602a001200420036a41003a00000b200241b0026a20024198016a10d90220022802bc0221072002200241c4026a28020022033602ec02200241ec026a20024198016a10630240200228029c01220520022802a00122046b2003490d0020022802980121050c020b200420036a22082004490d00200541017422042008200420084b1b22044100480d000240024020050d002004101e21050c010b20022802980120052004102221050b02402005450d002002200436029c01200220053602980120022802a00121040c020b20044101102d000b1027000b2002200420036a3602a001200520046a2007200310cd051a20024180026a41c8006a20024198016a107e200228029c012103200241106a4120200228029801220420022802a001100502402003450d00200410200b0240200241c0026a280200450d00200710200b2002290308210620024180026a41186a2203420037030020024180026a41106a2204420037030020024180026a41086a22054200370300200242003703800241b2d5c300411e20024180026a100120024198016a41186a200329030037030020024198016a41106a200429030037030020024198016a41086a2005290300370300200220022903800237039801200220063703800220024198016a412020024180026a41081005200041186a200137030020004201370310200042003703000b200241f0026a24000b960402087f017e230041c0016b220224002002410036026020014120200241e0006a10032101024002400240024020022802602203417f460d0020010d010b200042023703380c010b2002200336022420022001360220200241e0006a200241206a10f20320022903604201510d01200241286a41306a220420024198016a290300370300200241286a41286a2205200241e0006a41306a290300370300200241286a41206a2206200241e0006a41286a290300370300200241286a41186a2207200241e0006a41206a290300370300200241286a41106a2208200241e0006a41186a290300370300200241286a41086a2209200241e0006a41106a29030037030020022002290368370328200241a0016a200241206a10930120022903a001220a4202510d0120002002290328370300200041306a2004290300370300200041286a2005290300370300200041206a2006290300370300200041186a2007290300370300200041106a2008290300370300200041086a2009290300370300200241086a41086a2204200241a0016a41106a290300370300200241086a41106a2205200241a0016a41186a290300370300200220022903a8013703082000200a37033820002002290308370340200041c8006a2004290300370300200041d0006a20052903003703002003450d00200110200b200241c0016a24000f0b41ceb8c4004133200241e0006a41fcbfc4004184b9c400102e000bde0101037f230041306b22012400024020002802202202450d00200141086a41086a2103034020002002417f6a360220200141206a41086a200041086a220229020037030020012000290200370320200141086a200141206a10612002200341086a29020037020020002003290200370200200028022022020d000b0b02402000280204220041908cc500460d0020002802002103200010202003450d0020032802002102200310202002450d00024020022802002200450d000340200210202000210220002802002203210020030d000b0b200210200b200141306a24000be40208017f017e027f017e017f017e027f017e230041106b22022400420121030240200128020422044108490d002001280200220529000021062001200441786a22073602042001200541086a22053602002007450d0020052d000021072001200441776a22043602042001200541016a360200200741014b0d00410021050240024020070e020100010b2002200110b70120022802002205450d0120022902042108200128020421040b2008a7210702402004450d00200128020022092d0000210a20012004417f6a3602042001200941016a360200200a41014b0d004100210402400240200a0e020100010b2002200110b70120022802002204450d012002290204210b0b2000200436021c20002006370308200041206a200b370300200041186a2008422088a7360200200041146a2007360200200041106a2005360200420021030c010b2005450d002007450d00200510200b20002003370300200241106a24000b841103067f047e027f23004180016b22022400200241c8006a41186a22034200370300200241c8006a41106a22044200370300200241c8006a41086a220542003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2003290300370300200241106a41106a2004290300370300200241106a41086a20052903003703002002200229034837031020024100360248200241106a4120200241c8006a100321030240024002400240024002400240024002400240024002400240024020022802482204417f460d002003450d002002200436023420022003360230200241c8006a200241306a10b70120022802482205450d04200241d0006a2802002106200228024c210702402004450d00200310200b200220063602082002200736020420022005360200200241106a200210ed0320024100360248200241106a4120200241c8006a1003210320022802482204417f460d062003450d062002200436027420022003360270200241c8006a200241f0006a109b0420022903484201510d05200241306a41086a2205200241e0006a290300370300200241306a41106a2206200241e8006a2903003703002002200241c8006a41106a22072903003703302002290350210802402004450d00200310200b200720062903002209370300200241c8006a41086a2005290300220a37030020022002290330220b370348200620093703002005200a3703002002200b370330200228023c210c4108101e2203450d0720024288808080800137024c200220033602482003200837000020034108411010222203450d0820024290808080900137024c200341013a0008200220033602482001280200210d200220012802082205360270200241f0006a200241c8006a1063200228024c2204200228025022066b2005490d01200228024821030c020b02400240200128020022030d00200241c8006a41186a22014200370300200241c8006a41106a22034200370300200241c8006a41086a220442003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2001290300370300200241106a41106a2003290300370300200241106a41086a200429030037030020022002290348370310200241106a412010040c010b2001280204210420012802082101200241c8006a41186a22054200370300200241c8006a41106a22064200370300200241c8006a41086a220742003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2005290300370300200241106a41106a2006290300370300200241106a41086a2007290300370300200220022903483703102002412036024c2002200241106a36024820032001200241c8006a10a3022004450d00200310200b2000410036020c200041003602000c0c0b200620056a22032006490d01200441017422072003200720034b1b22074100480d010240024020040d002007101e21030c010b200228024820042007102221030b2003450d072002200736024c20022003360248200721040b2002200620056a2207360250200320066a200d200510cd051a0240200c0d0002400240024020042007460d00200421050c010b200441016a22052004490d03200441017422062005200620054b1b22054100480d030240024020040d002005101e21030c010b200320042005102221030b2003450d012002200536024c200220033602480b2002200741016a220c360250200320076a41003a00000c0b0b20054101102d000b024020042007470d00200441016a22052004490d01200441017422062005200620054b1b22054100480d010240024020040d002005101e21030c010b200320042005102221030b2003450d082002200536024c200220033602480b2002200741016a360250200320076a41013a00002002413c6a4100200c1b22032802002107200220032802082204360270200241f0006a200241c8006a10630240200228024c2205200228025022066b2004490d00200228024821030c090b200620046a22032006490d002005410174220c2003200c20034b1b220c4100480d000240024020050d00200c101e21030c010b20022802482005200c102221030b02402003450d002002200c36024c20022003360248200c21050c090b200c4101102d000b1027000b41ceb8c4004133200241f8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8006a41fcbfc4004184b9c400102e000b41b8e7c50041920141cce8c5001045000b41084101102d000b41104101102d000b20074101102d000b20054101102d000b2002200620046a220c360250200320066a2007200410cd051a0b200241106a41202003200c100502402005450d00200310200b024020022802302203450d002002280234450d00200310200b0240200228023c2203450d00200241c0006a280200450d00200310200b02400240200128020022030d00200241c8006a41186a22014200370300200241c8006a41106a22034200370300200241c8006a41086a220442003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2001290300370300200241106a41106a2003290300370300200241106a41086a200429030037030020022002290348370310200241106a412010040c010b2001280204210420012802082101200241c8006a41186a22054200370300200241c8006a41106a22064200370300200241c8006a41086a220742003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2005290300370300200241106a41106a2006290300370300200241106a41086a2007290300370300200220022903483703102002412036024c2002200241106a36024820032001200241c8006a10a3022004450d00200310200b20004100360200200020022902483702042000410c6a2002290300370200200041146a200241086a2802003602000b20024180016a24000be80601077f230041106b22022400024002400240024002400240024002404108101e2203450d0020024288808080800137020420022003360200200320002903003700002000280208210420034108411010222103024020040d0002402003450d00200242908080809001370204200341003a00082002200336020041092105411021060c050b41104101102d000b2003450d01200242908080809001370204200341013a0008200220033602002002200041106a280200220736020c2002410c6a20021063024020022802042206200228020822086b2007490d00200228020021030c030b200820076a22032008490d04200641017422052003200520034b1b22054100480d040240024020060d002005101e21030c010b200228020020062005102221030b02402003450d002002200536020420022003360200200521060c030b20054101102d000b41084101102d000b41104101102d000b2002200820076a2205360208200320086a2004200710cd051a0b0240200041146a28020022040d000240024020062005470d00200641016a22002006490d03200641017422072000200720004b1b22004100480d030240024020060d002000101e21030c010b200320062000102221030b2003450d0120022000360204200220033602000b2002200541016a360208200320056a41003a00002002280208210720022802042106200228020021030c050b20004101102d000b024020062005470d00200641016a22072006490d01200641017422082007200820074b1b22074100480d010240024020060d002007101e21030c010b200320062007102221030b2003450d0220022007360204200220033602000b2002200541016a360208200320056a41013a000020022000411c6a280200220036020c2002410c6a20021063024020022802042206200228020822056b2000490d00200228020021030c030b200520006a22032005490d00200641017422072003200720034b1b22074100480d000240024020060d002007101e21030c010b200228020020062007102221030b02402003450d002002200736020420022003360200200721060c030b20074101102d000b1027000b20074101102d000b2002200520006a2207360208200320056a2004200010cd051a0b2001280200200128020420032007100502402006450d00200310200b200241106a24000bfd0602167f017e23004180026b220224002002410036026820014120200241e8006a1003210102400240024020022802682203417f460d0020010d010b200042023703780c010b2002200336022420022001360220200241e8006a200241206a10f1030240024020022d00b8014102460d00200241d8006a41086a2204200241e8006a41086a29030037030020022002290368370358200241fc006a2802002105200241e8006a41186a2802002106200241e8006a41206a28020021072002418c016a280200210820024194016a280200210920024198016a280200210a200241a0016a280200210b200241a4016a280200210c200241ac016a280200210d2002280278210e200228028401210f2002280290012110200228029c01211120022802a8012112200241d0006a2213200241e8006a41f0006a290300370300200241286a41206a2214200241e8006a41e8006a290300370300200241286a41186a2215200241e8006a41e0006a290300370300200241286a41106a2216200241e8006a41d8006a290300370300200241286a41086a2217200241e8006a41d0006a2903003703002002200241b0016a290300370328200241e0016a200241206a10930120022903e00122184202520d0102402005450d00200e10200b0240200f450d002007450d00200f10200b02402010450d002009450d00201010200b02402011450d00200b450d00201110200b2012450d00200d450d00201210200b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b200020022903583703002000200d360244200020123602402000200c36023c2000200b360238200020113602342000200a3602302000200936022c2000201036022820002008360224200020073602202000200f36021c20002006360218200020053602142000200e360210200041086a2004290300370300200041f0006a2013290300370300200041e8006a2014290300370300200041e0006a2015290300370300200041d8006a2016290300370300200041d0006a201729030037030020002002290328370348200241086a41086a2204200241e0016a41106a290300370300200241086a41106a2205200241e0016a41186a290300370300200220022903e80137030820002018370378200020022903083703800120004188016a200429030037030020004190016a20052903003703002003450d00200110200b20024180026a24000bbf0403027f017e067f230041a0026b220224002002410036026820014120200241e8006a10032101024002400240024020022802682203417f460d0020010d010b200042023703000c010b2002200336026420022001360260200241c0016a200241e0006a10f00320022903c00122044202510d01200241086a41306a2205200241f8016a290300370300200241086a41286a2206200241c0016a41306a290300370300200241086a41206a2207200241c0016a41286a290300370300200241086a41186a2208200241c0016a41206a290300370300200241086a41106a2209200241c0016a41186a290300370300200241086a41086a220a200241c0016a41106a290300370300200220022903c80137030820024180026a200241e0006a1093012002290380024202510d01200241e8006a41306a2005290300370300200241e8006a41286a2006290300370300200241e8006a41206a2007290300370300200241e8006a41186a2008290300370300200241e8006a41106a2009290300370300200241e8006a41086a200a290300370300200241a8016a20024180026a41086a290300370300200241b0016a20024180026a41106a290300370300200241b8016a20024180026a41186a2903003703002002200229030837036820022002290380023703a001200241086a200241e8006a41d80010cd051a20002004370300200041086a200241086a41d80010cd051a2003450d00200110200b200241a0026a24000f0b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b0d00200141c8abc3004102103c0b130020004113360204200041ccabc3003602000ba00803067f047e027f230041b0016b22012400024002400240410e101e2202450d00200241002900d8d643370000200241066a41002900ded6433700002001428e808080e00137026c200120023602682000200141e8006a10ca01200128027021022001280268210320014188016a41186a2204420037030020014188016a41106a2205420037030020014188016a41086a2206420037030020014200370388012003200220014188016a1001200141286a41186a2004290300370300200141286a41106a2005290300370300200141286a41086a200629030037030020012001290388013703280240200128026c450d00200128026810200b20014188016a200141286a41201069024020012d0088012202450d00200141286a412010040b200141c8006a41186a2203200141a1016a2900002207370300200141c8006a41106a220420014199016a2900002208370300200141c8006a41086a220520014191016a29000022093703002001200129008901220a370348200141e8006a41186a22062007370300200141e8006a41106a220b2008370300200141e8006a41086a220c20093703002001200a370368024020024101470d00200141086a41186a20062903002207370300200141086a41106a200b2903002208370300200141086a41086a200c290300220937030020012001290368220a3703082003200737030020042008370300200520093703002001200a370348410e101e2202450d022002410029008ed543370000200241066a4100290094d5433700002001428e808080e00137022c20012002360228200141c8006a200141286a10ca01200128023021022001280228210320014188016a41186a2204420037030020014188016a41106a2205420037030020014188016a41086a2206420037030020014200370388012003200220014188016a1001200141e8006a41186a2004290300370300200141e8006a41106a2005290300370300200141e8006a41086a200629030037030020012001290388013703680240200128022c450d00200128022810200b200141e8006a412010040b410d101e2202450d02200241002900e6d643370000200241056a41002900ebd6433700002001428d808080d00137024c200120023602482000200141c8006a10ca01200128025021022001280248210320014188016a41186a2204420037030020014188016a41106a2205420037030020014188016a41086a2206420037030020014200370388012003200220014188016a1001200141e8006a41186a2004290300370300200141e8006a41106a2005290300370300200141e8006a41086a200629030037030020012001290388013703680240200128024c450d00200128024810200b200141e8006a41201004200010a304200010a404200141b0016a24000f0b410e4101102d000b410e4101102d000b410d4101102d000bd53205087f017e067f037e037f23004180066b220124000240024002404112101e2202450d00200241002900d3d443370000200241106a41002f00e3d4433b0000200241086a41002900dbd44337000020014292808080a0023702e404200120023602e0042000200141e0046a10ca0120012802e804210220012802e0042100200141b0026a41186a22034200370300200141b0026a41106a22044200370300200141b0026a41086a22054200370300200142003703b00220002002200141b0026a1001200141c8006a41186a2003290300370300200141c8006a41106a2004290300370300200141c8006a41086a2005290300370300200120012903b002370348024020012802e404450d0020012802e00410200b200141003602e004200141c8006a4120200141e0046a1003210620012802e0042207417f460d012006450d01200120073602e405200120063602e005200141306a200141e0056a109703024020012802300d0020012802e4052202450d0020012002417f6a22033602e405200120012802e005220541016a22043602e00520052d0000220241014b0d004100210802400240024002400240024020020e020100010b41002102200141003a008005034020032002460d02200141e0046a20026a200520026a220041016a2d00003a00002001200041026a3602e0052001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002209370300200141e8016a41086a200141e0046a41086a290300370300200141e8016a41106a2009370300200141e8016a41186a200141e0046a41186a2903003703002001200320006b22033602e405200120012903e0043703e80141012108200520006a41016a21040b200141a0046a41186a200141e8016a41186a290300370300200141a0046a41106a200141e8016a41106a290300370300200141a0046a41086a200141e8016a41086a290300370300200120012903e8013703a0042003450d0420012003417f6a22033602e4052001200441016a3602e00520042d0000220041014b0d044100210220000e020201020b200141003602e405200241ff0171450d03200141003a0080050c030b41002102200141003a008005034020032002460d02200141e0046a20026a200420026a220041016a2d00003a00002001200041026a3602e0052001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002209370300200141e8016a41086a200141e0046a41086a290300370300200141e8016a41106a2009370300200141e8016a41186a200141e0046a41186a2903003703002001200320006b3602e405200120012903e0043703e801410121020b200141e0036a41186a2205200141e8016a41186a2200290300370300200141e0036a41106a220a200141e8016a41106a2203290300370300200141e0036a41086a220b200141e8016a41086a220429030037030020014180046a41086a220c200141a0046a41086a29030037030020014180046a41106a220d200141a0046a41106a29030037030020014180046a41186a220e200141a0046a41186a290300370300200120012903e8013703e003200120012903a00437038004200141c0036a41186a220f200e290300370300200141c0036a41106a220e200d290300370300200141c0036a41086a220d200c29030037030020012001290380043703c003200141a0036a41186a220c2005290300370300200141a0036a41106a2205200a290300370300200141a0036a41086a220a200b290300370300200120012903e0033703a003200141e0046a41186a220b200f290300370300200141e0046a41106a220f200e290300370300200141e0046a41086a220e200d290300370300200120012903c0033703e0042000200c290300370300200320052903003703002004200a290300370300200120012903a0033703e801200141c0056a41046a22052001419a036a41046a2f01003b01002001200128019a033602c00520084102460d01200141f8026a41186a200b290300370300200141f8026a41106a200f290300370300200141f8026a41086a200e290300370300200141d8026a41086a2004290300370300200141d8026a41106a2003290300370300200141d8026a41186a2000290300370300200141d0026a41046a20052f01003b0100200120012903e0043703f802200120012903e8013703d802200120012802c0053602d00202402007450d00200610200b200141c8006a412010040c040b200141003602e405200241ff0171450d00200141003a0080050b41ceb8c400413320014180046a41fcbfc4004184b9c400102e000b41124101102d000b410221080b20014188016a41186a2200200141f8026a41186a29030037030020014188016a41106a2203200141f8026a41106a29030037030020014188016a41086a2204200141f8026a41086a290300370300200141e8006a41086a2205200141d8026a41086a290300370300200141e8006a41106a2206200141d8026a41106a290300370300200141e8006a41186a2207200141d8026a41186a290300370300200120012903f80237038801200120012903d802370368200141c8016a41086a220a2004290300370300200141c8016a41106a22042003290300370300200141c8016a41186a2203200029030037030020012001290388013703c801200141a8016a41086a22002005290300370300200141a8016a41106a22052006290300370300200141a8016a41186a22062007290300370300200120012903683703a801024002400240024020084102460d002001418a026a220720012903a801370100200141f1016a200a290300370000200141f9016a200429030037000020014181026a200329030037000020014192026a20002903003701002001419a026a2005290300370100200141a2026a2006290300370100200120083a00e801200120012903c8013700e901200120023a00890241002106024002400240024002400240200241ff01714101470d00200141e0046a200710a504200141e0056a41186a200141e0046a41186a22022900002209370300200141e0056a41106a200141e0046a41106a22002900002210370300200141e0056a41086a200141e0046a41086a22032900002211370300200120012900e00422123703e005200220093703002000201037030020032011370300200120123703e0044120101e2206450d01200620012903e004370000200641186a2002290300370000200641106a2000290300370000200641086a200329030037000020012d00e80121080b0240200841ff01714101460d0020012d0089024101460d03200141c0056a41186a22024200370300200141c0056a41106a22004200370300200141c0056a41086a22034200370300200142003703c00541e5d4c300411a200141c0056a1001200141e0046a41186a2002290300370300200141e0046a41106a2000290300370300200141e0046a41086a2003290300370300200120012903c0053703e004200141e0046a412010040c040b200141e0046a200141e8016a41017210a504200141e0056a41186a200141e0046a41186a22022903002209370300200141e0056a41106a200141e0046a41106a22002903002210370300200141e0056a41086a200141e0046a41086a22032903002211370300200120012903e00422123703e005200220093703002000201037030020032011370300200120123703e0044120101e2208450d01200820012903e004370000200841186a2002290300370000200841106a2000290300370000200841086a2003290300370000200141003602e00420084120200141e0046a10032107024020012802e004220b417f460d002007450d002001200b3602a404200120073602a004200141186a200141a0046a10970302402001290318a70d0020012802a4042202450d00200141286a29030021092001290320211020012002417f6a22033602a404200120012802a004220541016a22043602a00420052d0000220241014b0d004100210a02400240024002400240024020020e020100010b41002102200141003a008005034020032002460d02200141e0046a20026a200520026a220041016a2d00003a00002001200041026a3602a0042001200241016a22003a0080052000210220004120470d000b200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a200141e0046a41106a290300370300200141e0056a41186a200141e0046a41186a290300370300200120012903e0043703e0052001200320006b22033602a4044101210a200520006a41016a21040b200141c0056a41186a200141e0056a41186a290300370300200141c0056a41106a200141e0056a41106a290300370300200141c0056a41086a200141e0056a41086a290300370300200120012903e0053703c0052003450d0420012003417f6a22033602a4042001200441016a3602a00420042d0000220241014b0d0420020e020201020b200141003602a404200241ff0171450d03200141003a0080050c030b41002102200141003a008005034020032002460d02200141e0046a20026a200420026a220041016a2d00003a00002001200041026a3602a0042001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002211370300200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a2011370300200141e0056a41186a200141e0046a41186a2903003703002001200320006b3602a404200120012903e0043703e0050b200141e0036a41186a2202200141e0056a41186a2200290300370300200141e0036a41106a2203200141e0056a41106a2204290300370300200141e0036a41086a2205200141e0056a41086a220c29030037030020014180046a41086a220d200141c0056a41086a29030037030020014180046a41106a220e200141c0056a41106a29030037030020014180046a41186a220f200141c0056a41186a290300370300200120012903e0053703e003200120012903c00537038004200141c0036a41186a2213200f290300370300200141c0036a41106a220f200e290300370300200141c0036a41086a220e200d29030037030020012001290380043703c003200141a0036a41186a2002290300370300200141a0036a41106a2003290300370300200141a0036a41086a2005290300370300200120012903e0033703a003200141e0046a41186a22032013290300370300200141e0046a41106a2205200f290300370300200141e0046a41086a220d200e290300370300200120012903c0033703e004200141c0056a41046a220e2001419a036a41046a2f01003b01002001200128019a033602c005200a4102460d0120014189026a21022000200329030037030020042005290300370300200c200d290300370300200141c0046a41046a200e2f01003b0100200120012903e0043703e005200120012802c0053602c0040240200b450d00200710200b200141f1046a20012903e005370000200141f9046a200141e0056a41086a29030037000020014181056a200141e0056a41106a29030037000020014189056a200141e0056a41186a290300370000200141b6056a200141c4046a2f01003b0100200120103703e0042001200a3a00f004200120012802c0043601b205200120093703e80420014191056a200229000037000020014199056a200241086a290000370000200141a1056a200241106a290000370000200141a9056a200241186a290000370000200141b1056a200241206a2d00003a0000200141003602e805200142013703e0052001200141e0046a3602c005200141c0056a200141e0056a10df02200141e0046a41106a200141e0056a10e70320012802e40521022008412020012802e005220020012802e805100502402002450d00200010200b200810204101210a0c070b200141003602a404200241ff0171450d00200141003a0080050b41ceb8c400413320014180046a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b41204101102d000b41204101102d000b200141c0056a41186a22024200370300200141c0056a41106a22004200370300200141c0056a41086a22034200370300200142003703c00541e5d4c300411a200141c0056a1001200141e0046a41186a2002290300370300200141e0046a41106a2000290300370300200141e0046a41086a2003290300370300200120012903c0053703e004200141203602e4052001200141e0046a3602e0052007200141e0056a1082030b410021084100210a0b0240024020060d00410021020c010b200141003602e00420064120200141e0046a1003210720012802e004220b417f460d042007450d042001200b3602bc05200120073602b8052001200141b8056a1097032001290300a70d0320012802bc052202450d03200141106a29030021092001290308211020012002417f6a22033602bc05200120012802b805220541016a22043602b80520052d0000220241014b0d034100210c0240024002400240024020020e020100010b41002102200141003a008005034020032002460d02200141e0046a20026a200520026a220041016a2d00003a00002001200041026a3602b8052001200241016a22003a0080052000210220004120470d000b200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a200141e0046a41106a290300370300200141e0056a41186a200141e0046a41186a2903003703002001200320006b22033602bc05200120012903e0043703e0054101210c200520006a41016a21040b200141c0056a41186a200141e0056a41186a290300370300200141c0056a41106a200141e0056a41106a290300370300200141c0056a41086a200141e0056a41086a290300370300200120012903e0053703c0052003450d0620012003417f6a22033602bc052001200441016a3602b80520042d0000220241014b0d064100210520020e020201020b200141003602bc05200241ff0171450d05200141003a0080050c050b41002102200141003a008005034020032002460d04200141e0046a20026a200420026a220041016a2d00003a00002001200041026a3602b8052001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002211370300200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a2011370300200141e0056a41186a200141e0046a41186a2903003703002001200320006b3602bc05200120012903e0043703e005410121050b200141e0036a41186a2204200141e0056a41186a2202290300370300200141e0036a41106a220d200141e0056a41106a2200290300370300200141e0036a41086a220e200141e0056a41086a220329030037030020014180046a41086a220f200141c0056a41086a29030037030020014180046a41106a2213200141c0056a41106a29030037030020014180046a41186a2214200141c0056a41186a290300370300200120012903e0053703e003200120012903c00537038004200141c0036a41186a22152014290300370300200141c0036a41106a22142013290300370300200141c0036a41086a2213200f29030037030020012001290380043703c003200141a0036a41186a220f2004290300370300200141a0036a41106a2204200d290300370300200141a0036a41086a220d200e290300370300200120012903e0033703a003200141e0046a41186a220e2015290300370300200141e0046a41106a22152014290300370300200141e0046a41086a22142013290300370300200120012903c0033703e0042002200f290300370300200020042903003703002003200d290300370300200120012903a0033703e005200141c0056a41046a22042001419a036a41046a2f01003b01002001200128019a033602c005200c4102460d03200141f8026a41186a200e290300370300200141f8026a41106a2015290300370300200141f8026a41086a2014290300370300200141d8026a41086a2003290300370300200141d8026a41106a2000290300370300200141d8026a41186a2002290300370300200141d0026a41046a20042f01003b0100200120012903e0043703f802200120012903e0053703d802200120012802c0053602d0020240200b450d00200710200b20014191056a20053a000020014192056a20012903d8023701002001419a056a200141d8026a41086a290300370100200141a2056a200141d8026a41106a290300370100200141aa056a200141d8026a41186a290300370100200141b6056a200141d4026a2f01003b0100200120103703e004200120012802d0023601b205200120093703e80420014190056a200141e8016a41206a2d00003a000020014188056a200141e8016a41186a290300370300200141e0046a41206a200141e8016a41106a290300370300200141e0046a41186a200141e8016a41086a290300370300200120012903e8013703f004200141003602e805200142013703e0052001200141e0046a3602c005200141c0056a200141e0056a10df02200141e0046a41106a200141e0056a10e70320012802e40521022006412020012802e005220020012802e805100502402002450d00200010200b20061020410121020b0240200a200845720d00200810200b2006452002720d00200610200b20014180066a24000f0b200141003602bc05200241ff0171450d00200141003a0080050b41ceb8c400413320014180046a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b8b32050a7f017e067f037e057f230041b0056b22012400024002400240024002404112101e2202450d00200241002900e1d343370000200241106a41002f00f1d3433b0000200241086a41002900e9d34337000020014292808080a00237029c042001200236029804200020014198046a10ca0120012802a00421022001280298042100200141f0016a41186a22034200370300200141f0016a41106a22044200370300200141f0016a41086a22054200370300200142003703f00120002002200141f0016a1001200141086a41186a2003290300370300200141086a41106a2004290300370300200141086a41086a2005290300370300200120012903f0013703080240200128029c04450d0020012802980410200b2001410036029804200141086a412020014198046a100321042001280298042205417f460d032004450d03200120053602f404200120043602f00420014190056a200141f0046a10e3012001280290052206450d012001280294052107024020012802f4042202450d0020012002417f6a22083602f404200120012802f004220941016a220a3602f00420092d0000220241014b0d004100210002400240024002400240024020020e020100010b41002102200141003a00b804034020082002460d0220014198046a20026a200920026a220041016a2d00003a00002001200041026a3602f0042001200241016a22033a00b8042003210220034120470d000b200141f8036a41106a20014198046a41106a290300220b370300200141a8016a41086a20014198046a41086a290300370300200141a8016a41106a200b370300200141a8016a41186a20014198046a41186a2903003703002001200820036b22083602f40420012001290398043703a80141012100200920036a41016a210a0b200141d8036a41186a200141a8016a41186a290300370300200141d8036a41106a200141a8016a41106a290300370300200141d8036a41086a200141a8016a41086a290300370300200120012903a8013703d8032008450d0420012008417f6a22083602f4042001200a41016a3602f004200a2d0000220241014b0d044100210320020e020201020b200141003602f404200241ff0171450d03200141003a00b8040c030b41002102200141003a00b804034020082002460d0220014198046a20026a200a20026a220341016a2d00003a00002001200341026a3602f0042001200241016a22033a00b8042003210220034120470d000b200141f8036a41106a20014198046a41106a290300220b370300200141a8016a41086a20014198046a41086a290300370300200141a8016a41106a200b370300200141a8016a41186a20014198046a41186a2903003703002001200820036b3602f40420012001290398043703a801410121030b20014198036a41186a2202200141a8016a41186a220829030037030020014198036a41106a2209200141a8016a41106a220a29030037030020014198036a41086a220c200141a8016a41086a220d290300370300200141b8036a41086a220e200141d8036a41086a290300370300200141b8036a41106a220f200141d8036a41106a290300370300200141b8036a41186a2210200141d8036a41186a290300370300200120012903a80137039803200120012903d8033703b803200141f8026a41186a22112010290300370300200141f8026a41106a2210200f290300370300200141f8026a41086a220f200e290300370300200120012903b8033703f802200141d8026a41186a220e2002290300370300200141d8026a41106a22022009290300370300200141d8026a41086a2209200c29030037030020012001290398033703d80220014198046a41186a201129030037030020014198046a41106a201029030037030020014198046a41086a200f290300370300200120012903f802370398042008200e290300370300200a2002290300370300200d2009290300370300200120012903d8023703a8010c040b200141003602f404200241ff0171450d00200141003a00b8040b2007450d0120061020410221000c020b41124101102d000b410221000b024020004102460d00200141b8026a41186a20014198046a41186a290300370300200141b8026a41106a20014198046a41106a290300370300200141b8026a41086a20014198046a41086a29030037030020014198026a41086a200141a8016a41086a29030037030020014198026a41106a200141a8016a41106a29030037030020014198026a41186a200141a8016a41186a29030037030020012001290398043703b802200120012903a80137039802200120012f0190053b01960202402005450d00200410200b200141086a412010040c020b41ceb8c4004133200141d8036a41fcbfc4004184b9c400102e000b410221000b200141c8006a41186a2202200141b8026a41186a290300370300200141c8006a41106a2204200141b8026a41106a290300370300200141c8006a41086a2205200141b8026a41086a290300370300200141286a41086a220820014198026a41086a290300370300200141286a41106a220920014198026a41106a290300370300200141286a41186a220a20014198026a41186a290300370300200120012903b802370348200120012903980237032820014188016a41086a220c200529030037030020014188016a41106a2205200429030037030020014188016a41186a220420022903003703002001200129034837038801200141e8006a41086a22022008290300370300200141e8006a41106a22082009290300370300200141e8006a41186a2209200a29030037030020012001290328370368024020004102460d00200141ca016a220a2001290368370100200141b1016a200c290300370000200141b9016a2005290300370000200141c1016a2004290300370000200141d2016a2002290300370100200141da016a2008290300370100200141e2016a2009290300370100200120003a00a80120012001290388013700a901200120033a00c90141002102024002400240024002400240024002400240200341ff01714101470d0020014198046a200a10a60420014190056a41186a20014198046a41186a2200290000220b37030020014190056a41106a20014198046a41106a2203290000221237030020014190056a41086a20014198046a41086a2204290000221337030020012001290098042214370390052000200b370300200320123703002004201337030020012014370398044120101e2202450d012002200129039804370000200241186a2000290300370000200241106a2003290300370000200241086a200429030037000020012d00a80121000b0240200041ff01714101460d0020012d00c9014101460d03200141f0046a41186a22004200370300200141f0046a41106a22034200370300200141f0046a41086a22044200370300200142003703f00441f3d3c300411a200141f0046a100120014198046a41186a200029030037030020014198046a41106a200329030037030020014198046a41086a2004290300370300200120012903f0043703980420014198046a412010040c070b20014198046a200141a8016a41017210a60420014190056a41186a20014198046a41186a2200290300220b37030020014190056a41106a20014198046a41106a2204290300221237030020014190056a41086a20014198046a41086a2205290300221337030020012001290398042214370390052000200b370300200420123703002005201337030020012014370398044120101e2203450d012003200129039804370000200341186a2000290300370000200341106a2004290300370000200341086a200529030037000020014100360298042003412020014198046a10032105200128029804220a417f460d032005450d032001200a3602bc02200120053602b802200141f8036a200141b8026a10e30120012802f803220e450d0420012802fc032109024020012802bc022200450d0020014180046a280200210f20012000417f6a220c3602bc02200120012802b802220d41016a22103602b802200d2d0000220041014b0d004100210802400240024002400240024020000e020100010b41002100200141003a00b8040340200c2000460d0220014198046a20006a200d20006a220441016a2d00003a00002001200441026a3602b8022001200041016a22043a00b8042004210020044120470d000b20014190056a41086a20014198046a41086a29030037030020014190056a41106a20014198046a41106a29030037030020014190056a41186a20014198046a41186a2903003703002001200129039804370390052001200c20046b220c3602bc0241012108200d20046a41016a21100b200141f0046a41186a20014190056a41186a290300370300200141f0046a41106a20014190056a41106a290300370300200141f0046a41086a20014190056a41086a29030037030020012001290390053703f004200c450d042001200c417f6a220c3602bc022001201041016a3602b80220102d0000220041014b0d0420000e020201020b200141003602bc02200041ff0171450d03200141003a00b8040c030b41002100200141003a00b8040340200c2000460d0220014198046a20006a201020006a220441016a2d00003a00002001200441026a3602b8022001200041016a22043a00b8042004210020044120470d000b20014190056a41086a20014198046a41086a29030037030020014190056a41106a20014198046a41106a29030037030020014190056a41186a20014198046a41186a2903003703002001200c20046b3602bc022001200129039804370390050b20014198036a41186a220020014190056a41186a29030037030020014198036a41106a220420014190056a41106a29030037030020014198036a41086a220c20014190056a41086a290300370300200141b8036a41086a220d200141f0046a41086a290300370300200141b8036a41106a2210200141f0046a41106a290300370300200141b8036a41186a2211200141f0046a41186a290300370300200120012903900537039803200120012903f0043703b803200141f8026a41186a22152011290300370300200141f8026a41106a22112010290300370300200141f8026a41086a2210200d290300370300200120012903b8033703f802200141d8026a41186a2000290300370300200141d8026a41106a2004290300370300200141d8026a41086a200c29030037030020012001290398033703d80220014198046a41186a201529030037030020014198046a41106a201129030037030020014198046a41086a2010290300370300200120012903f802370398040c070b200141003602bc02200041ff0171450d00200141003a00b8040b2009450d04200e1020410221080c050b41204101102d000b41204101102d000b200141f0046a41186a22004200370300200141f0046a41106a22034200370300200141f0046a41086a22044200370300200142003703f00441f3d3c300411a200141f0046a100120014198046a41186a200029030037030020014198046a41106a200329030037030020014198046a41086a2004290300370300200120012903f004370398042001412036029405200120014198046a36029005200a20014190056a1082030c030b41bde6c50041d8004198e7c5001045000b410221080b024020084102460d00200141c9016a210020014190056a41186a220420014198046a41186a29030037030020014190056a41106a220c20014198046a41106a29030037030020014190056a41086a220d20014198046a41086a290300370300200120012903980437039005200120012f01f0043b01f8030240200a450d00200510200b200141a5046a200129039005370000200141ad046a200d290300370000200141b5046a200c290300370000200141bd046a2004290300370000200120083a00a4042001200f3602a0042001200936029c042001200e36029804200120012f01f8033b01e604200141c5046a2000290000370000200141cd046a200041086a290000370000200141d5046a200041106a290000370000200141dd046a200041186a290000370000200141e5046a200041206a2d00003a00002001412036029405200120033602900520014198046a20014190056a10e6030240200128029c04450d0020012802980410200b20031020410121080c020b41ceb8c4004133200141d8036a41fcbfc4004184b9c400102e000b41002103410021080b0240024002400240024020020d00410021000c010b20014100360298042002412020014198046a100321050240024002402001280298042209417f460d002005450d00200120093602ec04200120053602e804200141d8036a200141e8046a10e3014200210b20012802d803220d450d0120012802dc032110024020012802ec042200450d00200141e0036a350200211220012000417f6a220a3602ec04200120012802e804220c41016a220f3602e804200c2d0000220041014b0d004100210e02400240024002400240024020000e020100010b41002100200141003a00b8040340200a2000460d0220014198046a20006a200c20006a220441016a2d00003a00002001200441026a3602e8042001200041016a22043a00b8042004210020044120470d000b200141f8036a41106a20014198046a41106a290300221337030020014190056a41086a20014198046a41086a29030037030020014190056a41106a201337030020014190056a41186a20014198046a41186a2903003703002001200a20046b220a3602ec042001200129039804370390054101210e200c20046a41016a210f0b200141f0046a41186a20014190056a41186a290300370300200141f0046a41106a20014190056a41106a290300370300200141f0046a41086a20014190056a41086a29030037030020012001290390053703f004200a450d042001200a417f6a220a3602ec042001200f41016a3602e804200f2d0000220441014b0d044100210020040e020201020b200141003602ec04200041ff0171450d03200141003a00b8040c030b41002100200141003a00b8040340200a2000460d0220014198046a20006a200f20006a220441016a2d00003a00002001200441026a3602e8042001200041016a22043a00b8042004210020044120470d000b200141f8036a41106a20014198046a41106a290300220b37030020014190056a41086a20014198046a41086a29030037030020014190056a41106a200b37030020014190056a41186a20014198046a41186a2903003703002001200a20046b3602ec04200120012903980437039005410121000b20014198036a41186a220420014190056a41186a220a29030037030020014198036a41106a220c20014190056a41106a220f29030037030020014198036a41086a221120014190056a41086a2215290300370300200141b8036a41086a2216200141f0046a41086a290300370300200141b8036a41106a2217200141f0046a41106a290300370300200141b8036a41186a2218200141f0046a41186a290300370300200120012903900537039803200120012903f0043703b803200141f8026a41186a22192018290300370300200141f8026a41106a22182017290300370300200141f8026a41086a22172016290300370300200120012903b8033703f802200141d8026a41186a22162004290300370300200141d8026a41106a2204200c290300370300200141d8026a41086a220c201129030037030020012001290398033703d80220014198046a41186a201929030037030020014198046a41106a201829030037030020014198046a41086a2017290300370300200120012903f80237039804200a2016290300370300200f20042903003703002015200c290300370300200120012903d80237039005201242208621122010ad210b0c040b200141003602ec04200041ff0171450d00200141003a00b8040b2010450d01200d10200c010b41bde6c50041d80041a8e7c5001045000b4102210e420021120b200e4102460d01200141b8026a41186a20014198046a41186a290300370300200141b8026a41106a20014198046a41106a290300370300200141b8026a41086a20014198046a41086a29030037030020014198026a41086a220420014190056a41086a29030037030020014198026a41106a220a20014190056a41106a29030037030020014198026a41186a220c20014190056a41186a29030037030020012001290398043703b802200120012903900537039802200120012f01f0043b0196022012200b84210b02402009450d00200510200b200141c5046a20003a0000200141c6046a200129039802370100200141ce046a2004290300370100200141d6046a200a290300370100200141de046a200c290300370100200141ac046a200141a8016a41086a290300370200200141b4046a200141a8016a41106a290300370200200141bc046a200141a8016a41186a290300370200200141c4046a200141a8016a41206a2d00003a00002001200b37029c042001200d36029804200120012f0196023b01e604200120012903a8013702a4042001412036029405200120023602900520014198046a20014190056a10e6030240200128029c04450d0020012802980410200b20021020410121000b200820034572450d010c020b41ceb8c4004133200141d8036a41fcbfc4004184b9c400102e000b200310200b02402002452000720d00200210200b2006450d002007450d00200610200b200141b0056a24000bfc0101057f230041306b2202240002404112101e2203450d00200341002900d3d443370000200341106a41002f00e3d4433b0000200341086a41002900dbd44337000020024292808080a002370204200220033602002001200210ca012002280208210320022802002101200241106a41186a22044200370300200241106a41106a22054200370300200241106a41086a220642003703002002420037031020012003200241106a1001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229031037000002402002280204450d00200228020010200b200241306a24000f0b41124101102d000bfc0101057f230041306b2202240002404112101e2203450d00200341002900e1d343370000200341106a41002f00f1d3433b0000200341086a41002900e9d34337000020024292808080a002370204200220033602002001200210ca012002280208210320022802002101200241106a41186a22044200370300200241106a41106a22054200370300200241106a41086a220642003703002002420037031020012003200241106a1001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229031037000002402002280204450d00200228020010200b200241306a24000f0b41124101102d000bca0101037f230041206b220224002002410036021020014110200241106a10032101024002400240024020022802102203417f460d0020010d010b200041003602040c010b200220013602082002200336020c20034104490d0120022003417c6a36020c2002200141046a36020820012800002103200241106a200241086a10c10120022802102204450d01200020022902143702082000200436020420002003360200200110200b200241206a24000f0b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b13002000410f3602042000418cd7c3003602000b34002000419586c40036020420004100360200200041146a4113360200200041106a419c86c400360200200041086a42073702000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000b7701027f230041106b22022400200241003602082002420137030002404104101e2203450d002003410036000020024284808080c000370204200220033602002002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000f0b41044101102d000b3001017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242003700000b970201037f230041c0006b22022400200241186a4200370300200241106a22034200370300200241086a4200370300200241286a22044100360200200242003703002002420837032020024100360238200242013703302002200236023c2002413c6a200241306a10df022002200336023c2002413c6a200241306a10df022002280220210320022004280200220436023c2002413c6a200241306a106302402004450d00200441306c21040340200341106a200241306a10ca012002200336023c200341306a21032002413c6a200241306a10df02200441506a22040d000b0b20002002290330370200200041086a200241306a41086a28020036020002402002280224450d00200228022010200b200241c0006a24000b7001027f230041306b2202240020024200370310200242003703082002200241086a36021c02404101101e22030d0041014101102d000b20024201370224200220033602202002411c6a200241206a10df02200041086a200228022836020020002002290320370200200241306a24000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241043600000b9f0402057f027e230041d0016b22022400200241086a200110b1040240024020022d00084101470d00200241d0006a41186a200241216a290000370300200241d0006a41106a200241196a290000370300200241d0006a41086a200241116a2900003703002002200229000937035002400240410e101e2201450d002001410029008ed543370000200141066a4100290094d5433700002002428e808080e00137027420022001360270200241d0006a200241f0006a10ca01200228027821012002280270210320024180016a41186a2204420037030020024180016a41106a2205420037030020024180016a41086a2206420037030020024200370380012003200120024180016a1001200241306a41186a2004290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903800137033002402002280274450d00200228027010200b2002410036028001200241306a412020024180016a100321012002280280012203417f460d022001450d02200220033602542002200136025020024180016a200241d0006a10b20420022802a0012205450d0120024198016a2903002107200229039001210820022802a401210402402003450d00200110200b2004450d03200510200c030b410e4101102d000b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000b42002108420021070b2000200837030020002007370308200241d0016a24000bb60301057f230041f0006b220224000240410e101e2203450d00200341002900d8d643370000200341066a41002900ded6433700002002428e808080e001370254200220033602502001200241d0006a10ca012002280258210320022802502101200241086a41186a22044200370300200241086a41106a22054200370300200241086a41086a220642003703002002420037030820012003200241086a1001200241306a41186a2004290300370300200241306a41106a2005290300370300200241306a41086a20062903003703002002200229030837033002402002280254450d00200228025010200b200241086a200241306a41201069200241d0006a41086a200241086a41096a290000370300200241d0006a41106a200241086a41116a290000370300200241d0006a41186a200241086a41196a290000370300200220022900093703500240024020022d00084101460d00200041003a00000c010b200041013a000020002002290350370001200041096a200241d8006a290300370000200041116a200241e0006a290300370000200041196a200241e8006a2903003700000b200241f0006a24000f0b410e4101102d000bff0608047f047e057f027e017f017e017f017e230041a0016b2202240041002103200241003a0098012001280204417f6a2104024002400240024002400240024002400240024003402004417f460d01200241f8006a20036a200128020022052d00003a0000200120043602042001200541016a3602002002200341016a22053a0098012004417f6a21042005210320054120470d000b200241d8006a41186a200241f8006a41186a290300370300200241d8006a41106a200241f8006a41106a290300370300200241d8006a41086a200241f8006a41086a29030037030020022002290378370358200241c0006a20011097032002290340a70d01200241c0006a41106a290300210620022903482107200241286a20011097032002290328a70d08200241286a41106a290300210820022903302109200241206a2001105f20022802200d04200128020441186e220a41186c2204417f4c0d062002280224210b20040d024108210c0c030b0240200341ff0171450d00200241003a0098010b200041003602200c080b200041003602200c070b2004101e220c450d040b0240200b450d00200241086a41106a210d4100210e41002105410021030340200241086a2001109703024002402002290308a70d00200d290300210f2002290310211020022001105f20022802000d00200341016a2104200228020421112003200a470d010240200e2004200e20044b1b220aad42187e2212422088a70d002012a722134100480d000240024020030d002013101e210c0c010b200c200520131022210c0b200c0d0220134108102d000b1027000b200a450d03200c10200c030b200c20056a2203200f37030820032010370300200341106a2011360200200e41026a210e200541186a210520042103200b2004470d000b0b200c0d010b200041003602200c040b200241f8006a41186a200241d8006a41186a290300220f370300200241f8006a41106a200241d8006a41106a2903002210370300200241f8006a41086a200241d8006a41086a2903002212370300200220022903582214370378200041186a2008370300200020093703102000200637030820002007370300200041286a200b3602002000200a3602242000200c3602202000412c6a2014370200200041346a20123702002000413c6a2010370200200041c4006a200f3702000c030b102c000b20044108102d000b200041003602200b200241a0016a24000b130020004102360204200041a0a6c4003602000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241a0053600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241063600000bfd0501057f23004190016b2202240002400240410f101e2203450d00200341002900ffd443370000200341076a4100290086d5433700002002428f808080f001370214200220033602102001200241106a10ca012002280218210320022802102101200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a220642003703002002420037036020012003200241e0006a1001200241306a41186a2004290300370300200241306a41106a2005290300370300200241306a41086a20062903003703002002200229036037033002402002280214450d00200228021010200b20024100360260200241306a4120200241e0006a100321010240024020022802602204417f470d00410021030c010b024020010d00410021030c010b2002200436025420022001360250200241e0006a200241d0006a10b7042002280280012203450d02200241106a41186a200241e0006a41186a290300370300200241106a41106a200241e0006a41106a290300370300200241106a41086a200241e0006a41086a290300370300200241086a2002418c016a2802003602002002200229036037031020022002290284013703002004450d00200110200b200241e0006a41086a2201200241106a41086a290300370300200241e0006a41106a2204200241106a41106a290300370300200241e0006a41186a2205200241106a41186a290300370300200241d0006a41086a2206200241086a28020036020020022002290310370360200220022903003703500240024020030d002000420037030020004208370320200041186a4200370300200041106a4200370300200041086a4200370300200041286a41003602000c010b2000200229036037030020002003360220200041246a2002290350370200200041186a2005290300370300200041106a2004290300370300200041086a20012903003703002000412c6a20062802003602000b20024190016a24000f0b410f4101102d000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b920705017f047e087f057e017f23004180026b22022400200241c0006a200110970302400240024002400240024002400240024002402002290340a70d00200241c0006a41106a290300210320022903482104200241286a20011097032002290328a70d07200241286a41106a290300210520022903302106200241206a2001105f20022802200d03200128020441306e220741306c2208417f4c0d052002280224210920080d014108210a0c020b200041003602200c080b2008101e220a450d040b02402009450d004100210b0340200241003a00f801200b220c41016a210b2001280204417f6a21084100210d024002400240024003402008417f460d01200241d8016a200d6a2001280200220e2d00003a0000200120083602042001200e41016a3602002002200d41016a220e3a00f8012008417f6a2108200e210d200e4120470d000b200241b8016a41186a2208200241d8016a41186a290300370300200241b8016a41106a220d200241d8016a41106a290300370300200241b8016a41086a220e200241d8016a41086a290300370300200220022903d8013703b801200241086a20011097032002290308a70d01200241086a41106a290300210f20022903102110200241f8006a41086a200e2903002211370300200241f8006a41106a200d2903002212370300200241f8006a41186a20082903002213370300200241d8006a41086a220d2011370300200241d8006a41106a220e2012370300200241d8006a41186a22142013370300200220022903b8012211370378200220113703582007200c470d030240200c4101742208200b2008200b4b1b2207ad42307e2211422088a70d002011a7220841004e0d030b1027000b200d41ff0171450d00200241003a00f8010b200241f8006a41086a20024198016a41086a2903003703002007450d04200a10200c040b02400240200c0d002008101e210a0c010b200a200c41306c20081022210a0b200a450d080b200a200c41306c6a2208200f3703082008201037030020082002290358370310200841186a200d290300370300200841206a200e290300370300200841286a2014290300370300200b2009470d000b0b200a0d010b200041003602200c050b20002004370300200020073602242000200a3602202000200637031020002003370308200041286a2009360200200041186a20053703000c040b102c000b20084108102d000b200041003602200c010b20084108102d000b20024180026a24000bd80101057f230041206b22022400024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032001370012200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411a20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41124101102d000b41244101102d000bda1f03187f047e027f230041a0016b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020422034104490d0020012802002204280000210520012003417c6a22063602042001200441046a22073602002006450d1320072d0000210620012003417b6a22083602042001200741016a360200200641014b0d1302400240024020060e020001000b20084104490d15200728000121062001200341776a22083602042001200741056a220936020020064180807c71210a200641807e71210b4100210c0c010b2008450d1420072d0001210620012003417a6a22083602042001200741026a360200200641024b0d140240024002400240024020060e03000102000b4100210b2002410036027820084104490d182007280002210d2001200341766a3602042001200741066a3602002002200d360278410021060c020b20084104490d172007280002210d2001200341766a22043602042001200741066a3602004100210b2002410036027820044104490d172007280006210e2001200341726a36020420012007410a6a3602002002200e360278410121060c010b2008450d1620072d000221062001200341796a22083602042001200741036a360200200641044b0d1620084104490d162007280003210d2001200341756a22083602042001200741076a36020020084104490d162007280007210e2001200341716a220836020420012007410b6a3602002008450d1620042d000f21072001200341706a22083602042001200441106a360200200741014b0d162006410874210b410221064100210f024020070e020200020b2002410036027820084104490d162004280010211020012003416c6a3602042001200441146a36020020022010360278410221060b4101210f0b200241f8006a2001105e2002280278450d14200241c8006a41086a200241f8006a41086a28020036020020022002290378370348200128020422034104490d1320012802002207280000211120012003417c6a22043602042001200741046a36020020044104490d12200728000421122001200341786a22043602042001200741086a36020020044104490d11200728000821132001200341746a220836020420012007410c6a22093602004101210c4100210a20022802502104200228024c2107200228024821030b20084104490d032009280000211420012008417c6a22153602042001200941046a3602002015450d0620092d0004211520012008417b6a22163602042001200941056a2217360200201541014b0d064100211820150e020201020b200041023602540c130b20164104490d04200928000521192001200841776a22163602042001200941096a2217360200410121180b2016450d0620172d0000210820012016417f6a22093602042001201741016a360200200841014b0d064102211520080e020201020b20004102360254200c450d1002402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200136026c200220003602682002200336026420022007360260200241f8006a200241e0006a1061200228028001210720022802840121032002280288012100200228028c0121012004417f6a22040d000b0b200341908cc500460d1020032802002101200310202001450d1020012802002103200110202003450d1020032802002201450d0b0340200310202001210320012802002200210120000d000c0c0b0b200241f8006a200110f803200241e0006a41086a220820024194016a290200370300200241e0006a41106a22092002419c016a2802003602002002200229028c0137036020022802880122154102460d04200241f8006a41086a290300211a2002290378211b200241c8006a41106a2009280200360200200241c8006a41086a20082903003703002002200229036037034820154103460d04200128020421090b200241186a41106a200241c8006a41106a280200360200200241186a41086a200241c8006a41086a290300370300200220022903483703182009450d04200128020022162d0000210820012009417f6a3602042001201641016a360200200841014b0d044102210920080e020201020b20004102360254200c450d0d02402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0d20032802002101200310202001450d0d20012802002103200110202003450d0d20032802002201450d070340200310202001210320012802002200210120000d000c080b0b200241f8006a200110f803200241e0006a41086a220820024194016a290200370300200241e0006a41106a22162002419c016a2802003602002002200229028c0137036020022802880122094102460d02200241f8006a41086a290300211c2002290378211d200241c8006a41106a2016280200360200200241c8006a41086a20082903003703002002200229036037034820094103460d020b200241306a41106a2208200241c8006a41106a280200360200200241306a41086a2216200241c8006a41086a221729030037030020022002290348370330200241c8006a200110b70120022802480d0220004102360254200c450d0b02402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0b20032802002101200310202001450d0b20012802002103200110202003450d0b024020032802002201450d000340200310202001210320012802002200210120000d000b0b200310200c0b0b20004102360254200c450d0a02402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0a20032802002101200310202001450d0a20012802002103200110202003450d0a20032802002201450d030340200310202001210320012802002200210120000d000c040b0b20004102360254200c450d0902402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0920032802002101200310202001450d0920012802002103200110202003450d0920032802002201450d010340200310202001210320012802002200210120000d000c020b0b200241086a41086a22012017280200360200200241f8006a41086a2217200241186a41086a290300370300200241f8006a41106a221e200241186a41106a280200360200200241e0006a41086a221f2016290300370300200241e0006a41106a221620082802003602002002200229034837030820022002290318370378200220022903303703602000201a3703082000201b37030020002015360210200041306a201c3703002000201d37032820002009360238200020022903783702142000411c6a2017290300370200200041246a201e2802003602002000418c016a201936020020004188016a201836020020004184016a201436020020004180016a2013360200200041fc006a2012360200200041f8006a2011360200200041f4006a2004360200200041f0006a2007360200200041ec006a2003360200200041e8006a2010360200200041e4006a200f360200200041e0006a200e360200200041dc006a200d3602002000200b4180fe0371200641ff017172200a723602582000200c360254200020053602502000200229036037023c200041c4006a201f290300370200200041cc006a201628020036020020004198016a200128020036020020004190016a20022903083703000c080b200310200c070b200310200c060b200310200c050b200310200c040b20022802502103200228024821010240200228024c2207450d00200721040340200128026021012004417f6a22040d000b03402007417f6a22070d000b0b02402003450d0041002107410021044100210603402002200736026c200220043602682002200136026420022006360260200241f8006a200241e0006a1061200228028001210620022802840121012002280288012104200228028c0121072003417f6a22030d000b0b200141908cc500460d0220012802002107200110202007450d0220072802002103200710202003450d02024020032802002201450d000340200310202001210320012802002207210120070d000b0b200310200c020b20022802502103200228024821010240200228024c2207450d00200721040340200128026021012004417f6a22040d000b03402007417f6a22070d000b0b02402003450d0041002107410021044100210603402002200736026c200220043602682002200136026420022006360260200241f8006a200241e0006a1061200228028001210620022802840121012002280288012104200228028c0121072003417f6a22030d000b0b200141908cc500460d0120012802002107200110202007450d0120072802002103200710202003450d01024020032802002201450d000340200310202001210320012802002207210120070d000b0b200310200c010b20022802502103200228024821010240200228024c2207450d00200721040340200128026021012004417f6a22040d000b03402007417f6a22070d000b0b02402003450d0041002107410021044100210603402002200736026c200220043602682002200136026420022006360260200241f8006a200241e0006a1061200228028001210620022802840121012002280288012104200228028c0121072003417f6a22030d000b0b200141908cc500460d0020012802002107200110202007450d0020072802002103200710202003450d00024020032802002201450d000340200310202001210320012802002207210120070d000b0b200310200b200041023602540b200241a0016a24000bc3ec0115047f017e017f027e037f017e017f017e017f057e017f017e017f077e027f027e027f017e037f097e2a7f23004180146b22022400200241d00c6a41086a22034200370300200242003703d00c41fcf9c600411e200241d00c6a1000200241f0096a41086a22042003290300370300200220022903d00c3703f009200241d00c6a200241f0096a10a7040240024020022802d40c22050d004104210542002106410021070c010b200241f0096a4110100420022802d00c210720022903d80c21060b10a902210820034200370300200242003703d00c41ddd2c3004117200241d00c6a100020042003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a100321030240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022802d00c2204417f470d00420021090c010b024020030d00420021090c010b20044108490d0120032900002109200310200b200241d00c6a41086a220a4200370300200242003703d00c41ddd2c3004117200241d00c6a1000200241f0096a41086a220b200a290300370300200220022903d00c3703f009200220083703d00c200241f0096a4110200241d00c6a410810054100210c200820097d220d500d04200a4200370300200242003703d00c41f3d6c3004116200241d00c6a1000200b200a290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a1003210320022802d00c2204417f460d022003450d02200220043602c409200220033602c009200241d00c6a200241c0096a10e30120022802d00c220e450d0120022902d40c210f02402004450d00200310200b200f422088a721040c030b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b410021044101210e4200210f0b42002108200241d00c6a41086a22034200370300200242003703d00c41b5a8c4004111200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024002400240024020022802d00c2210417f470d0042002108420021110c010b024020030d00420021110c010b20104110490d01200341086a290000211120032900002108200310200b42002109200241f0056a200820112004ad420010d205200241d00c6a41086a22034200370300200242003703d00c41b88ac5004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103200241f0056a41086a290300211120022903f005211202400240024020022802d00c2204417f470d0042002109420021080c010b024020030d00420021080c010b20044110490d01200341086a290000210820032900002109200310200b200241e0056a20092008428094ebdc03420010d305200241d0056a20022903e0052213200241e0056a41086a29030022144280ec94a37c427f10d205200820112012200956201120085620112008511b22031b21082009201220031b211220022903d00520097c2115200d428086ebc7f500200d428086ebc7f500541b421f8042ffffffff0f83428094ebdc037e429880b5e50380210d4100210441d87d2103024002400340200241c0056a201320142003418cc6c1006a3502002209420010d2052004201220022903c0052211200920157e22092009428094ebdc038022094280ec94a37c7e7c4280cab5ee01562009a76aad7c22095a2008200241c0056a41086a2903002009201154ad7c22115a200820115122101b6a21042012200954200820115420101b0d01200341086a22030d000b200241b0056a2013201442e8aafa0b420010d205200241b8056a29030020022903b0052209201542e8aafa0b7e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208200954ad7c21110c010b02402004417f6a220320044d0d00200241b0046a2013201442c0f0f50b420010d205200241b8046a29030020022903b0042209201542c0f0f50b7e201542288022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208200954ad7c21110c010b02400240200341244b0d00200241a0056a201320142003410374221041e4c3c1006a2802002216ad2209420010d20520024180056a201220022903a0052211200920157e22092009428094ebdc038022094280ec94a37c7e7c4280cab5ee01562009a76aad7c220920122009562008200241a0056a41086a2903002009201154ad7c22115620082011511b22031b22172009201220031b22097d22122008201120031b2011200820031b7d2017200954ad7d41002004410374221841e4c3c1006a280200220420166b2216201620044b1b22044101200441014b1bad2208420010d305200241f0046a200229038005220920024180056a41086a29030022172008420010d20520024190056a20132014201041e8c3c1006a2802002204ad2219420010d205200241c0046a20174200201841e8c3c1006a28020022102004201020044b22161b2004201020161b6bad2211420010d205200241e0046a200942002011420010d205200241d0046a420042002009420010d205427f427f200241e0046a41086a290300220920022903c00420022903d0047c7c221720022903c80420022903d8048442005220172009547222161b2217427f20022903e00420161b2209201220022903f0047d20117e2008807c22082009542216ad7c221120162011201754200820095a1b22161b2112427f200820161b211120024190056a41086a2903002002290390052208201920157e22092009428094ebdc038022094280ec94a37c7e7c4280cab5ee01562009a76aad7c2209200854ad7c21082003201020044d730d014200200820127d2009201154ad7d2212200920117d2217200956201220085620122008511b22031b21114200201720031b21080c020b418cffc10020034125102a000b427f200820127c200920117c22122009542203ad7c22092003200920085420092008511b22031b2111427f201220031b21080b4200211a200241f0036a201320144280c2d72f420010d205200241e0036a20022903f003221220154280c2d72f7e2015420a8022094280ec94a37c7e7c4280cab5ee01562009a76aad7c2209200241f0036a41086a2903002009201254ad7c428094ebdc03420010d305200241a0046a20082011428094ebdc03420010d305200241d0036a20022903e0032211200241e0036a41086a29030022124280ec94a37c427f10d205200241c0036a20112012200d420010d20520024190046a20022903a0042211200241a0046a41086a29030022124280ec94a37c427f10d20520024180046a20112012200d420010d205200d200920022903d0037c7e221b428094ebdc0380211c20022903c003211d200241c0036a41086a290300211e200d20082002290390047c7e2209428094ebdc038021080240200f422088a722030d004200211f0c030b20052006422088a74102746a2120200e20034105746a2121200241b0036a2002290380042211200920084280ec94a37c7e7c4280cab5ee01562008a76aad7c220820024180046a41086a2903002008201154ad7c428094ebdc03420010d305200241a0036a20022903b0032222200241b0036a41086a29030022234280ec94a37c427f10d20520074101200741014b1b2224418094ebdc036e22034101200341014b1b2125200820022903a0037c2126200241d00c6a41086a2127200241f0096a41086a2118200521074200211a4200211f200e2116034020072020460d03024020072802002203450d0020024190036a202220232024200320242003491b20256ead428094ebdc037e202420256ead8042ffffffff0f832208420010d205200820267e2215428094ebdc03802108200229039003211120024190036a41086a290300211302400240024002404112101e2203450d00200341002900d3d443370000200341106a41002f00e3d4433b0000200341086a41002900dbd44337000020024292808080a0023702d40c200220033602d00c2016200241d00c6a10ca0120022802d80c210320022802d00c2104200241b0066a41186a22104200370300200241b0066a41106a22284200370300200241b0066a41086a22294200370300200242003703b00620042003200241b0066a100120024190096a41186a201029030037030020024190096a41106a202829030037030020024190096a41086a2029290300370300200220022903b00637039009024020022802d40c450d0020022802d00c10200b200241003602d00c20024190096a4120200241d00c6a1003210320022802d00c2204417f460d022003450d02200220043602d40c200220033602d00c200241f8026a200241d00c6a10970320022903f802a70d01200241f8026a41106a290300210920022903800321122004450d03200310200c030b41124101102d000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b42002112420021090b02400240024002400240024002402011201520084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208201220082012200854200920132008201154ad7c22115420092011511b22031b222a7d222b20112009201120031b222c7d2008202a54ad7d222d8450450d00420021134200211242002108420021090c010b200241d00c6a201610b60442002113200241e8026a20022903d00c220842012008420156202729030022084200522008501b22031b22152008420020031b2209428094ebdc03420010d30520022802f00c2128200241e8026a41086a290300212e20022903e802212f0240024020022802f80c22030d00420021120c010b200241d8026a20152009202f4201202f420156202e420052202e501b22041b220d202e420020041b221710d305200241b8026a202b202d428094ebdc03420010d305200241c8026a202b202d428094ebdc03420010d4050240024020022903d802220842ffffffff0f56200241d8026a41086a29030022114200522011501b0d0002402008a7450d002028200341306c6a2110200842ffffffff0f832119200241b8026a41086a290300213020022903b802213120022903c80221324200211342002112202821030340200241a8026a20152003290300220820152008542009200341086a29030022085420092008511b22041b2009200820041b200d201710d30520022903a8022208428080808010544100200241a8026a41086a290300501b450d0320024180026a20312030200842ffffffff0f83428094ebdc037e20198042ffffffff0f832208420010d20520024190026a200341106a22032002290380022211200820327e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c220820024180026a41086a2903002008201154ad7c10bb0420022903900221082002290398022111200241f0096a41106a20024190026a41106a2903002214370300200220113703f809200220083703f009024002402008a74101470d00427f201220147c201320117c22112013542204ad7c22082004200820125420082012511b22041b2112427f201120041b21130c010b20084201520d00200220183602c009200241c0096a10f4020b200341206a22032010460d040c000b0b200241f0016a20152028290300220820152008542009202841086a29030022085420092008511b22031b2009200820031b200d201710d30520022903f001428080808010544100200241f0016a41086a290300501b450d014180bcc400411941ecbbc4001028000b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041e0bac400102e000b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041dcbbc400102e000b200241e0016a20152009202f4201202f420156202e420052202e501b22031b2214202e420020031b220d10d30520022903e0012208428080808010544100200241e0016a41086a290300501b450d01200241d0016a201520022903e00c221120152011542009200241d00c6a41186a29030022115420092011511b22031b2009201120031b2014200d10d30520022903d0012209428080808010544100200241d0016a41086a290300501b450d022008a7450d03200241c0016a202b202d428094ebdc03420010d305200241b0016a20022903c0012211200241c0016a41086a29030022154280ec94a37c427f10d205200241a0016a20112015200942ffffffff0f83428094ebdc037e200842ffffffff0f838042ffffffff0f832208420010d20520022903a00122092008202b20022903b0017c7e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208200954ad2109200241a0016a41086a2903002111024020022802f40c450d00202810200b201120097c21090b20024188016a20162008202a7c22112009202c7c2011200854ad7c10bb0420022903880121082002290390012109200241d00c6a41106a20024188016a41106a2903002211370300200220093703d80c200220083703d00c02402008a74101470d00427f201220117c201320097c22092013542203ad7c22082003200820125420082012511b22031b2112427f200920031b21130c050b20084201510d030c040b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041e0bac400102e000b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041dcbbc400102e000b4180bcc400411941ecbbc4001028000b200220273602f009200241f0096a10f4020b427f201f20127c201a20137c2209201a542203ad7c220820032008201f542008201f511b22031b211f427f200920031b211a0b200741046a2107201641206a22162021470d000c030b0b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b201e201d201b201c4280ec94a37c7e7c4280cab5ee0156201ca76aad7c2208201d54ad7c211102402006a7450d00200510200b200241e80c6a201f370300200241d00c6a41106a201a370300200241d00c6a41086a220341003a000042002109200241f80c6a42002011201f7d2008201a54ad7d22122008201a7d2215200856201220115620122011511b22041b2211370300200241f00c6a4200201520041b2212370300200241033a00d00c200241d00c6a10772002201f3703d80c2002201a3703d00c2002200241d00c6a3602f009200241f0096a10f40220034200370300200242003703d00c41b88ac5004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a100321030240024020022802d00c2204417f470d0042002109420021080c010b024020030d00420021080c010b20044110490d02200341086a290000210820032900002109200310200b200241d00c6a41086a22034200370300200242003703d00c41b88ac5004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f0092002427f200820117c200920127c22132009542203ad7c22152003201520085420152008511b22031b3703d80c2002427f201320031b3703d00c200241f0096a4110200241d00c6a4110100520022008427f85201120031b3703d80c20022009427f85201220031b3703d00c2002200241d00c6a3602f009200241f0096a1094024101210c200fa7450d00200e10200b200a4200370300200242003703d00c41c7f9c6004112200241d00c6a1000200b200a290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a1003210302400240024020022802d00c2204417f470d00410021210c010b024020030d00410021210c010b20044104490d0120032800002121200310200b200241d00c6a41086a22034200370300200242003703d00c41c7f9c6004112200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f0092002202141016a22273602d00c200241f0096a4110200241d00c6a4104100502404117101e2203450d002003410f6a41002900d5a844370000200341086a41002900cea844370000200341002900c6a844370000024020034117412e10222203450d0020032021360017200241b0066a41186a22044200370300200241b0066a41106a22104200370300200241b0066a41086a22074200370300200242003703b0062003411b200241b0066a100120024190096a41186a200429030037030020024190096a41106a201029030037030020024190096a41086a2007290300370300200220022903b006370390092003102020024190096a41201004200241d00c6a41086a22034200370300200242003703d00c41d9f9c6004123200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a100321030240024020022802d00c2204417f460d002003450d00200441034d0d01200310200b200241d00c6a41086a220a4200370300200242003703d00c41d9f9c6004123200241d00c6a1000200241f0096a41086a220b200a290300370300200220022903d00c3703f009200220013602d00c200241f0096a4110200241d00c6a4104100502400240024002400240024002400240024002400240202741a105490d00200a4200370300200242003703d00c41c5fac6004112200241d00c6a1000200b200a290300370300200220022903d00c3703f00941002124200241003602d00c200241f0096a4110200241d00c6a1003210e0240024020022802d00c2233417f470d000c010b0240200e0d000c010b200220333602d40c2002200e3602d00c20024180016a200241d00c6a105f2002280280010d1f20022802d40c22164178712203417f4c0d15200228028401212902400240201641037622250d00410421240c010b2003101e2224450d0c0b02402029450d004100211841002107410021100340200241003602c0090240024020164104490d0020022016417c6a22163602d40c200220022802d00c220341046a3602d00c20032800002128200241003602c00920164104490d00201041016a210420022016417c6a22163602d40c2002200341086a3602d00c2003280004210320102025470d0120182004201820044b1b222541ffffffff01712025470d22202541037422204100480d220240024020100d002020101e21240c010b202420072020102221240b20240d0120204104102d000b2025450d22202410200c220b202420076a22102028360200201041046a2003360200201841026a2118200741086a21072004211020292004470d000b0b2024450d1f2029ad4220862025ad8421082033450d00200e10200b2024410420241b212902402008420020241b22084220882209a722032008a7470d00200341016a22042003490d1e2009a722074101742210200420042010491b220441ffffffff01712004470d1e200441037422104100480d1e0240024020030d002010101e21290c010b202920074103742010102221290b2029450d062008422088a721032004ad21080b202920034103746a2204200136020420042027360200200842ffffffff0f8321080240200341016a22162003490d00202141e17a6a2110200341ffffffff017141016a2107410021042029210302400340200328020020104f0d01200341086a21032007200441016a2204470d000b0b20162004490d0a201620046b2225450d0002402004450d002029202920044103746a202541037410ce051a0b20292802042128200241d00c6a41086a22244200370300200242003703d00c41a7f8c6004113200241d00c6a1000200241f0096a41086a22202024290300370300200220022903d00c3703f009200241d00c6a200241f0096a10bc044101210320022902d40c21090240024020022802d00c22044101460d00200441014621030c010b2009422088a722212028202820214b1b22182009a72204490d000240201820044d0d000340411a101e2203450d0c200341186a41002f0089c9443b0000200341106a4100290081c944370000200341086a41002900f9c844370000200341002900f1c8443700002003411a413410222203450d0b2003200436001a200241b0066a41186a22104200370300200241b0066a41106a22074200370300200241b0066a41086a22164200370300200242003703b0062003411e200241b0066a1001200241d0066a41186a2010290300370300200241d0066a41106a2007290300370300200241d0066a41086a2016290300370300200220022903b0063703d00620031020200241d0066a41201004200441016a2203210420182003470d000b0b202820214921032009428080808070832018ad8421090b20082025ad42208684210820244200370300200242003703d00c41a7f8c6004113200241d00c6a100020202024290300370300200220022903d00c3703f009024020030d00200241f0096a411010040c010b4108101e2203450d07200320093e0000200320094220883e0004200241f0096a4110200341081005200310200b200241d00c6a41086a22034200370300200242003703d00c41c5fac6004112200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009024020290d00200241f0096a411010040c010b200241003602d80c200242013703d00c20022008422088a722033602c009200241c0096a200241d00c6a10630240024020030d0020022802d80c210320022802d40c211020022802d00c21040c010b202920034103746a2121410020022802d80c22186b210720022802d40c2110410021030340201820036a2116202920036a2224280200212502400240201020076a4104490d0020022802d00c21040c010b201641046a22042016490d20201041017422282004202820044b1b22284100480d200240024020100d002028101e21040c010b20022802d00c20102028102221040b02402004450d00200220283602d40c200220043602d00c202821100c010b20284101102d000b2002201641046a22283602d80c200420186a20036a2025360000202441046a28020021250240201020076a417c6a41034b0d00202841046a22202028490d20201041017422282020202820204b1b22284100480d200240024020100d002028101e21040c010b200420102028102221040b2004450d04200220283602d40c200220043602d00c202821100b2002201641086a3602d80c200420186a20036a41046a2025360000200741786a2107200341086a2103202441086a2021470d000b201820036a21030b2008a72107200241f0096a411020042003100502402010450d00200410200b2007450d00202910200b200a4200370300200242003703d00c4194f9c6004116200241d00c6a1000200b200a290300370300200220022903d00c3703f00941002134200241003602d00c200241f0096a4110200241d00c6a10032103024002400240024002400240024020022802d00c2204417f460d002003450d0020044104490d0120032800002134200310200b200241d00c6a41086a22034200370300200242003703d00c41aaf9c600411d200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024002400240024020022802d00c2204417f460d0020030d010b410421040c010b20044104490d0320032800002104200310204101210b200441014d0d010b2004210b0b200241b0066a41186a22034200370300200241b0066a41106a22044200370300200241b0066a41086a22104200370300200242003703b00641e5d4c300411a200241b0066a1001200241d00c6a41186a2003290300370300200241d00c6a41106a2004290300370300200241d00c6a41086a2010290300370300200220022903b0063703d00c20024190096a200241d00c6a41201069200241c0096a41206a20024190096a41206a2d00003a0000200241c0096a41186a20024190096a41186a290300370300200241c0096a41106a20024190096a41106a290300370300200241c0096a41086a20024190096a41086a29030037030020022002290390093703c009200241d00c6a200241c0096a10bd040240024020022903d00c4201520d00200220022f01d80c3b01b808200220022900eb0c3703a8072002200241da0c6a2d00003a00ba082002200241d00c6a41206a2900003700ad07200241db0c6a2800002103200241df0c6a2800002104200241e30c6a2800002110200241e70c6a28000021074120101e2218450d04201820022f01b8083b00002018200736000f2018201036000b2018200436000720182003360003201820022903a807370013201841026a20022d00ba083a0000201841186a20022900ad07370000200241f0096a41206a200241c0096a41206a2d00003a0000200241f0096a41186a200241c0096a41186a290300370300200241f0096a41106a200241c0096a41106a290300370300200241f0096a41086a200241c0096a41086a290300370300200220022903c0093703f009200241d00c6a200241f0096a10bd0441012107024020022903d00c4201510d00410121210c020b200241d00c6a41086a2103410221164120211041012107410121210340200241d0066a41186a200341186a2903002208370300200241d0066a41106a200341106a2903002209370300200241d0066a41086a200341086a29030022113703002002200329030022123703d006200241b0066a41186a22242008370300200241b0066a41106a22252009370300200241b0066a41086a22282011370300200220123703b006024020072021470d00200741016a22042007490d2620162004201620044b1b222141ffffff3f712021470d26202141057422044100480d260240024020070d002004101e21180c010b201820102004102221180b2018450d0b0b201820106a220420022903b006370000200441186a2024290300370000200441106a2025290300370000200441086a2028290300370000201641026a2116201041206a2110200741016a2107200241d00c6a200241f0096a10bd0420022903d00c4201510d000c020b0b4101211841002107410021210b200241b0066a41186a22034200370300200241b0066a41106a22044200370300200241b0066a41086a22104200370300200242003703b00641f3d3c300411a200241b0066a1001200241d00c6a41186a2003290300370300200241d00c6a41106a2004290300370300200241d00c6a41086a2010290300370300200220022903b0063703d00c200241e0086a200241d00c6a4120106920024190096a41206a200241e0086a41206a2d00003a000020024190096a41186a200241e0086a41186a29030037030020024190096a41106a200241e0086a41106a29030037030020024190096a41086a200241e0086a41086a290300370300200220022903e00837039009200241d00c6a20024190096a10be0402400240024020022802f00c450d00412c101e2235450d06203520022903d00c370200203541286a200241d00c6a41286a2224280200360200203541206a200241d00c6a41206a2225290300370200203541186a200241d00c6a41186a2228290300370200203541106a200241d00c6a41106a2229290300370200203541086a200241d00c6a41086a2220290300370200200241c0096a41206a20024190096a41206a2d00003a0000200241c0096a41186a20024190096a41186a290300370300200241c0096a41106a20024190096a41106a290300370300200241c0096a41086a20024190096a41086a29030037030020022002290390093703c009200241f0096a200241c0096a10be0420022802900a0d0141012104410121360c020b4104213541002104410021360c010b41022116412c2110410121044101213603402024200241f0096a41286a2802003602002025200241f0096a41206a2903003703002028200241f0096a41186a2903003703002029200241f0096a41106a2903003703002020200241f0096a41086a290300370300200220022903f0093703d00c024020042036470d00200441016a22032004490d2520162003201620034b1b2236ad422c7e2208422088a70d252008a722034100480d250240024020040d002003101e21350c010b203520102003102221350b2035450d0b0b203520106a220320022903d00c370200200341286a2024280200360200200341206a2025290300370200200341186a2028290300370200200341106a2029290300370200200341086a2020290300370200201641026a21162010412c6a2110200441016a2104200241f0096a200241c0096a10be0420022802900a0d000b0b2002420037028406200241908cc50036028006200420076a2210ad42e0007e2208422088a70d192008a72203417f4c0d190240024020030d00410821160c010b2003101e2216450d050b200241003602980620022010360294062002201636029006200241e0086a41206a20024180066a360200200241003602f808200241f4086a200241f8136a36020020022018200741057422106a22293602ec08200220183602e808200220213602e408200220183602e008200220024190066a3602fc082002200241f8136a3602f00841022128410121250240024020070d000c010b420021122018210302400340200341086a2900002108200341106a290000210920032900002111200241d00c6a41186a2207200341186a290000370300200241d00c6a41106a22162009370300200241d00c6a41086a22242008370300200220113703d00c200241f0006a200241d00c6a10b004200241c0096a41086a4200370300200241c0096a41106a4200370300200241c0096a41186a4200370300200241b0066a41086a2024290300370300200241b0066a41106a2016290300370300200241b0066a41186a2007290300370300200242003703c009200220022903d00c3703b0062002290370427f200241f0006a41086a290300428080808010541b22084200520d01200341206a2103201041606a22100d000b200220293602e8080c010b200241d00c6a41086a2210200241c0096a41086a290300370300200241d00c6a41106a2207200241c0096a41106a290300370300200241d00c6a41186a2216200241c0096a41186a290300370300200241d0066a41086a2224200241b0066a41086a290300370300200241d0066a41106a2225200241b0066a41106a290300370300200241d0066a41186a2228200241b0066a41186a290300370300200220022903c0093703d00c200220022903b0063703d006200220022800b8083602b0082002200341206a3602e8082002200241bb086a2800003600b308200241c0086a41186a22032028290300370300200241c0086a41106a22282025290300370300200241c0086a41086a2225202429030037030020024190086a41186a201629030037030020024190086a41106a200729030037030020024190086a41086a2010290300370300200220022903d0063703c008200220022800b3083600eb07200220022802b0083602e807200220022903d00c37039008200241f0076a41186a2003290300370300200241f0076a41106a2028290300370300200241f0076a41086a2025290300370300200220022903c0083703f007200220022800eb0736009b07200220022802e8073602980741002125410021280b200241d00c6a41086a220320024190086a41086a290300370300200241d00c6a41106a221020024190086a41106a290300370300200241d00c6a41186a220720024190086a41186a290300370300200241c0096a41086a2216200241f0076a41086a290300370300200241c0096a41106a2224200241f0076a41106a290300370300200241c0096a41186a2229200241f0076a41186a29030037030020022002290390083703d00c200220022903f0073703c00920022002280298073602a0072002200228009b073600a30702402025450d00200241023a00c00a0c180b200241c8076a41186a22252007290300370300200241c8076a41106a22202010290300370300200241c8076a41086a220a2003290300370300200241a8076a41086a22272016290300370300200241a8076a41106a22162024290300370300200241a8076a41186a22242029290300370300200220022903d00c3703c807200220022903c0093703a807200220022802a0073602f006200220022800a3073600f306200241013602f808200241dc0c6a2229200a290300370200200241e40c6a220a2020290300370200200241d00c6a411c6a22202025290300370200200220022903c8073702d40c20024190096a41086a2225200329020037030020024190096a41106a2203201029020037030020024190096a41186a2210200729020037030020024190096a41206a2207200241d00c6a41206a280200360200200220022902d00c37039009200241f8066a41186a22012024290300370300200241f8066a41106a22242016290300370300200241f8066a41086a22162027290300370300200220022903a8073703f806200241800d6a2012370300200241f80c6a2008370300200241003602d00c20292025290300370200200a200329030037020020202010290300370200200241f40c6a200728020036020020022002290390093702d40c200241880d6a20022903f806370300200241900d6a2016290300370300200241980d6a2024290300370300200241a00d6a2001290300370300200241d00c6a41d8006a20283a0000200241ac0d6a20022800f306360000200241a90d6a20022802f006360000200241f0096a200241e0086a411c6a200241d00c6a10bf0420022d00c00a4102460d1741d800101e2221450d052021200241f0096a41d80010cd051a200241c0096a41086a200241e0086a41086a2903002208370300200241c0096a41206a200241e0086a41206a280200360200200241c0096a41186a200241e0086a41186a290300370300200241c0096a41106a200241e0086a41106a290300370300200220022903e0083703c00941012129024002402008a7220320022802cc092210460d00200241d40c6a210e200241a90d6a2137200241dc096a2138420021120340200341086a2900002108200341106a290000210920032900002111200241d00c6a41186a2207200341186a290000370300200241d00c6a41106a22162009370300200241d00c6a41086a22182008370300200220113703d00c200241e0006a200241d00c6a10b004200241c0086a41086a4200370300200241c0086a41106a4200370300200241c0086a41186a4200370300200241b0066a41086a2018290300370300200241b0066a41106a2016290300370300200241b0066a41186a2007290300370300200242003703c008200220022903d00c3703b0062002290360427f200241e0006a41086a290300428080808010541b22084200520d022010200341206a2203470d000b200220103602c8090b410121390c160b20024190086a41086a223a200241c0086a41086a222429030037030020024190086a41106a223b200241c0086a41106a222529030037030020024190086a41186a223c200241c0086a41186a2228290300370300200241d0066a41086a223d200241b0066a41086a2220290300370300200241d0066a41106a223e200241b0066a41106a220a290300370300200241d0066a41186a223f200241b0066a41186a2227290300370300200220022903c00837039008200220022903b0063703d006200220022800b8083602b0082002200341206a22033602c8092002200241b8086a41036a22402800003600b308200241f0076a41186a2241203f290300370300200241f0076a41106a2242203e290300370300200241f0076a41086a2243203d290300370300200220022903d0063703f007200220022800b3083600eb07200220022802b0083602e807200241880d6a2133200241d00c6a410472210120022802d8092144200241800d6a214541012129410121390340200241c8076a41186a2207203c290300370300200241c8076a41106a2216203b290300370300200241c8076a41086a2218203a290300370300200241a8076a41086a22462043290300370300200241a8076a41106a22472042290300370300200241a8076a41186a2248204129030037030020022002290390083703c807200220022903f0073703a807200220022802e8073602a007200220022800eb073600a3072002204441016a22493602d809200e41186a2007290300370200200e41106a2016290300370200200e41086a2018290300370200200e20022903c80737020020024190096a41086a224a200241d00c6a41086a220729020037030020024190096a41106a224b200241d00c6a41106a221629020037030020024190096a41186a224c200241d00c6a41186a221829020037030020024190096a41206a224d200241d00c6a41206a280200360200200220022902d00c37039009200241f8066a41186a224e2048290300370300200241f8066a41106a22482047290300370300200241f8066a41086a22472046290300370300200220022903a8073703f80620452012370300200220443602d00c2001200229039009370200200141086a204a290300370200200141106a204b290300370200200141186a204c290300370200200141206a204d280200360200200220083703f80c203320022903f806370200203341086a2047290300370200203341106a2048290300370200203341186a204e290300370200200241003a00a80d203741036a20022800a307360000203720022802a007360000200241f0096a2038200241d00c6a10bf0420022d00c00a4102460d17200241d00c6a200241f0096a41d80010cd051a024020392029470d00202941016a22442029490d24202941017422392044203920444b1b2239ad42d8007e2208422088a70d242008a722444100480d240240024020290d002044101e21210c010b2021202941d8006c2044102221210b2021450d0b0b2021202941d8006c6a200241d00c6a41d80010cd051a202941016a212920032010460d16024003402018200341186a2900003703002016200341106a2900003703002007200341086a290000370300200220032900003703d00c200241d0006a200241d00c6a10b0044200211220244200370300202542003703002028420037030020202007290300370300200a201629030037030020272018290300370300200242003703c008200220022903d00c3703b0062002290350427f200241d0006a41086a290300428080808010541b22084200520d012010200341206a2203470d000b200220103602c8090c170b203a2024290300370300203b2025290300370300203c2028290300370300203d2020290300370300203e200a290300370300203f2027290300370300200220022903c00837039008200220022903b0063703d006200220022800b8083602b0082002200341206a22033602c809200220402800003600b3082041203f2903003703002042203e2903003703002043203d290300370300200220022903d0063703f007200220022800b3083600eb07200220022802b0083602e807204921440c000b0b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41204101102d000b412c4104102d000b20034108102d000b41d8004108102d000b20284101102d000b20044101102d000b20034104102d000b20444108102d000b20104104102d000b41084101102d000b41344101102d000b411a4101102d000b41c0d8c200411c41a888c6001028000b20034104102d000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b412e4101102d000b41174101102d000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b200241023a00c00a0b024020022802c409450d0020022802c00910200b200220293602a806200220393602a406200220213602a0060c010b41002139200241003602a806200242083703a00602402021450d00201810200b41082121410021290b024002402029200b490d0002402002280294062203200228029806223a6b2004412c6c2210412c6d2207490d0020022802900621030c020b203a20076a2207203a490d0b200341017422162007201620074b1b2216ad42e0007e2208422088a70d0b2008a722074100480d0b0240024020030d002007101e21030c010b200228029006200341e0006c2007102221030b02402003450d0020022016360294062002200336029006200228029806213a0c020b20074108102d000b02402039450d00202110200b02402002280298062203450d00200341e0006c211020022802900641306a210303400240200341046a280200450d00200328020010200b200341e0006a2103201041a07f6a22100d000b0b0240200228029406450d0020022802900610200b20022802800620022802840620022802880610c00402402004450d002004412c6c2104203541206a210303400240200341046a280200450d00200328020010200b2003412c6a2103200441546a22040d000b0b2036450d07203510200c070b203520106a213802400240024020040d00203521370c010b2003203a41e0006c6a2133203521030240024002400340200241c0086a41186a2204200341186a290200370300200241c0086a41106a2210200341106a290200370300200241c0086a41086a2207200341086a290200370300200220032902003703c0082003412c6a213720032802202244450d04200341286a2802002128200341246a280200213b200241f0096a41186a223c2004290300370300200241f0096a41106a22412010290300370300200241f0096a41086a22422007290300370300200220022903c0083703f009200241c0006a200241f0096a10b0042028ad42c8007e2208422088a70d062008a72203417f4c0d06200241c0006a41086a2903002113200229034021140240024020030d004108210a0c010b2003101e220a450d020b0240024020280d0041002128410021200c010b204420284105746a210e2014427f2013428080808010541b211541002120204421250340202541086a2900002108202541106a290000210920252900002111200241d00c6a41186a2227202541186a290000370300200241d00c6a41106a220b2009370300200241d00c6a41086a22012008370300200220113703d00c202541206a212520024180066a2103200228028406211802400240034002400240200328020022162f010622240d00410021100c010b20244105742103201641086a2104417f21100340024020030d00202421100c020b201041016a2110200241d00c6a2004412010cf052207450d03200341606a2103200441206a21042007417f4a0d000b0b2018450d022018417f6a2118201620104102746a4194036a21030c000b0b2029201620104102746a41e8026a220428020022034d0d052021200341d8006c6a2203427f2003290320220820157c220920092008542210200341286a220329030022112010ad7c2212201154200920085a1b22101b3703202003427f201220101b370300200241b0066a41186a22102027290300370300200241b0066a41106a2207200b290300370300200241b0066a41086a22162001290300370300200220022903d00c3703b006200428020021040240024020202028460d00202021030c010b202841016a22032028490d13202841017422182003201820034b1b2218ad42c8007e2208422088a70d132008a722034100480d130240024020280d002003101e210a0c010b200a202841c8006c20031022210a0b200a450d0720282103201821280b200a200341c8006c6a2203420037030020032004360220200341186a4200370300200341106a4200370300200341086a4200370300200320022903b0063702242003412c6a2016290300370200200341346a20072903003702002003413c6a2010290300370200202041016a21200b2025200e470d000b0b0240203b450d00204410200b200241d0066a41186a2203203c290300370300200241d0066a41106a22042041290300370300200241d0066a41086a22102042290300370300200220022903f0093703d0062033420037030820332014427f2013428080808010541b37030020334200370310203341186a4200370300203341286a42003703002033420137032020332020360238203320283602342033200a360230203320022903d00637023c203341c4006a2010290300370200203341cc006a2004290300370200203341d4006a2003290300370200203a41016a213a203341e0006a21332037210320372038470d000b2002203a360298060c040b20034108102d000b41d0e0c60020032029102a000b20034108102d000b2002203a3602980620382037460d0003402037412c6a21030240203741246a280200450d00203741206a28020010200b2003213720382003470d000b0b02402036450d00203510200b2034ad42307e2208422088a70d002008a72203417f4c0d00024002400240024020030d00410821200c010b2003101e2220450d010b2034412c6c2203417f4c0d0202400240024020030d00410421360c010b2003101e2236450d010b4100210e02402029203420292034491b223c0d00410021252034214f0c030b202141a87f6a213a202941d8006c2138200241d00c6a41186a213b200241d00c6a41106a2101200241d00c6a41086a214420212103410021352034214f0240034002402029450d002038210403400240200341d0006a2d00000d0002400240200341206a2903002209200341286a29030022118450450d0042002108427f2109427f21110c010b427f2108200241306a427f427f2009201110d305200241306a41086a2903002111200229033021090b2003200937030020032011370308200341106a2008370300200341186a20083703000b200341d8006a2103200441a87f6a22040d000b0b024002402002280298062203450d002002280290062207200341e0006c6a21250340024020072802382203450d00200341c8006c2110200728023041206a210303402029200328020022044d0d0402402021200441d8006c6a22042d00500d0020042903202208200441286a290300220984500d00200241d00c6a2007290310200741186a2903002007290300200741086a2903002008200910c104200420042903002208427f2008427f20022903d80c20022802d00c41014622161b22117c220920092008542218200441086a22242903002208427f200129030020161b22127c2018ad7c220920085420092008511b22161b20112012845022181b37030020242008427f200920161b20181b3703000b200341c8006a2103201041b87f6a22100d000b0b200741e0006a22072025470d000b0b203541016a212520382103203a2104202121100340024020030d00203521250c070b200341a87f6a2103200441d8006a2104201041d0006a2107201041d8006a2216211020072d00000d000b02402003450d00200441086a2903002108200441186a2903002109200441106a2903002111200429030021154100211003400240201620106a220741d0006a2d00000d0020072903002113200741086a29030021120240024002402011200741106a2903002214852009200741186a290300220d8584500d00201120098450450d01410121180c020b417f20152013852008201285844200522015201354200820125420082012511b1b21180c010b02402014200d8450450d0041ff0121180c010b200241c0096a2015200810c204200241f0096a2014200d10c2042044200241c0096a41086a2218280200360200200220022903c0093703d00c200241e0086a200241d00c6a200241f0096a10c304024020022802f409450d0020022802f00910200b200241c0096a2013201210c204200241f0096a2011200910c20420442018280200360200200220022903c0093703d00c20024190096a200241d00c6a200241f0096a10c304024020022802f409450d0020022802f00910200b200241e0086a20024190096a10c40421180240200228029409450d0020022802900910200b20022802e408450d0020022802e00810200b20072004201841ff017141014622181b21042012200820181b21082013201520181b2115200d200920181b21092014201120181b21110b2003201041d8006a2210470d000b20040d00203521250c060b200441013a005002402002280298062203450d002002280290062210200341e0006c6a21372004410c6a2127200441306a210b0340201041e0006a2133024020102802382207450d0020102802302103200741c8006c210703400240024020272003460d00200341246a200b412010cf050d010b201041186a22162903002112200441086a22182903002108201029031021112004290300210920042903102115200341186a200441186a2224290300370300200341106a2015370300200320084200200820127d2009201154ad7d2215200920117d2213200956201520085620152008511b22281b201120128450220a1b370308200320094200201320281b200a1b37030020182903002108202429030021092004290300211120102004290310370320201041286a200937030020102011370310201620083703000b200341c8006a2103200741b87f6a22070d000b0b2033211020332037470d000b0b203b200441c8006a2900003703002001200441c0006a2900003703002044200441386a290000370300200220042900303703d00c200441286a29030021082004290320210902402035204f470d0020354101742203203541016a2204200320044b1b224fad42307e2211422088a70d102011a722034100480d100240024020350d002003101e21200c010b2020203541306c2003102221200b2020450d030b2044290300211120012903002112203b290300211520022903d00c21132020203541306c6a2203200937032020032013370300200341286a2008370300200341186a2015370300200341106a2012370300200341086a201137030020212103202521352025203c4f0d050c010b0b41bcf8c60020042029102a000b20034108102d000b20034104102d000b20034108102d000b02402002280298062203450d002002280290062218200341e0006c6a21352020202541306c6a2110200241c0096a41186a2101200241c0096a41106a2133200241c0096a41086a21374100210e024002400240024003402001201841d4006a2900003703002033201841cc006a2900003703002037201841c4006a2900003703002002201829003c3703c009024020182802382203450d0020182802302207200341c8006c6a21242018413c6a21274104210a410021164100210b034002402025450d0002400240200241d00c6a200741246a2204460d00202021030340200241d00c6a41186a200341186a290300370300200241d00c6a41106a200341106a290300370300200241d00c6a41086a200341086a290300370300200220032903003703d00c200241d00c6a41286a200341286a2903003703002002200341206a2903003703f00c200241d00c6a2004412010cf05450d02200341306a22032010460d030c000b0b202041086a2903002108202041106a2903002109202041186a290300211120202903002112200241d00c6a41286a202041286a290300370300200241d00c6a41186a2011370300200241d00c6a41106a2009370300200241d00c6a41086a2008370300200220123703d00c200220202903203703f00c0b200241f0096a41286a200241d00c6a41286a22032903002208370300200241f0096a41206a200241d00c6a41206a22042903002209370300200241f0096a41186a200241d00c6a41186a22282903002211370300200241f0096a41106a200241d00c6a41106a22292903002212370300200241f0096a41086a200241d00c6a41086a22212903002215370300200220022903d00c22133703f0092003200837030020042009370300202820113703002029201237030020212015370300200220133703d00c200241d00c6a2027460d00200241d00c6a2027412010cf05450d00024002400240201829032022082007290310220985201841286a22042903002211200741186a222829030022128584500d00200241c0086a2018290310201841186a29030010c204200241e0086a2009201210c20420024190096a41086a2203200241c0086a41086a2229280200360200200220022903c00837039009200241f0076a20024190096a200241e0086a10c304024020022802e408450d0020022802e00810200b200241c0086a2007290300200741086a29030010c204200241e0086a2008201110c20420032029280200360200200220022903c0083703900920024190086a20024190096a200241e0086a10c304024020022802e408450d0020022802e00810200b200241f0076a20024190086a10c40421030240200228029408450d0020022802900810200b024020022802f407450d0020022802f00710200b0240200341ff01710d00418094ebdc0321030c030b4100210320072903102018290320852028290300200429030085844200520d020c010b418094ebdc0321032018290310200729030085201841186a290300200741086a2903008584500d010b20024190096a428094ebdc0342002007290300200741086a2903002018290310201841186a29030010c104418094ebdc0321032002280290094101460d00200229039809220942ff93ebdc035620024190096a41106a29030022084200522008501b0d002009a721030b20022003360290092002418094ebdc033602940920024190096a2003418094ebdc034b4102746a280200210420024190096a41186a22282007413c6a29000037030020024190096a41106a2229200741346a29000037030020024190096a41086a22212007412c6a2900003703002002200729002437039009024002402016200b470d00201641016a22032016490d142016410174220b2003200b20034b1b220bad42247e2208422088a70d142008a722034100480d140240024020160d002003101e210a0c010b200a201641246c20031022210a0b200a450d010b200a201641246c6a220320022903900937020020212903002108202929030021092028290300211120032004360220200341186a2011370200200341106a2009370200200341086a2008370200201641016a21160c010b20034104102d000b200741c8006a22072024470d000b024020160d00200b450d01200a10200c010b02400240201641246c22070d00410021040c010b200a41206a2103410021040340200328020020046a2104200341246a21032007415c6a22070d000b0b02404100418094ebdc0320046b22032003418094ebdc034b1b222920166e2203418094ebdc032003418094ebdc03491b2228450d00200a41206a210341002104034020162004460d042002417f2003280200220720286a222420242007491b2207360290092002418094ebdc0336029409200320024190096a2007418094ebdc034b4102746a280200360200200341246a21032016200441016a2204470d000b0b02402029202820166c6b2228450d004100210303402016200320167022044d0d052002417f200a200441246c6a2204280220220741016a222420242007491b2207360290092002418094ebdc0336029409200420024190096a2007418094ebdc034b4102746a280200360220200341016a22032028490d000b0b200241d00c6a41186a22042001290300370300200241d00c6a41106a22072033290300370300200241d00c6a41086a22242037290300370300200220022903c0093703d00c0240200e2034470d00200e41016a2203200e490d11200e41017422282003202820034b1b2234ad422c7e2208422088a70d112008a722034100480d1102400240200e0d002003101e21360c010b2036200e412c6c2003102221360b2036450d050b2036200e412c6c6a220320022903d00c370200202429030021082007290300210920042903002111200320163602282003200b3602242003200a360220200341186a2011370200200341106a2009370200200341086a2008370200200e41016a210e0b201841e0006a22182035460d040c000b0b41d0e0c60020042016102a000b41d0e0c60020042016102a000b20034104102d000b20022802a40621390b02402039450d0020022802a00610200b02402002280298062203450d00200341e0006c210420022802900641306a210303400240200341046a280200450d00200328020010200b200341e0006a2103200441a07f6a22040d000b0b0240200228029406450d0020022802900610200b20022802800620022802840620022802880610c0042020450d06202541306c220341306e2104024002400240024002400240024020030d0042002131410121500c010b200441057422104100480d0f2010101e2250450d012004ad21310b024002402020202020036a470d00410021270c010b202541306c2110410021272050210320202104034020032004290000370000200341186a200441186a290000370000200341106a200441106a290000370000200341086a200441086a290000370000202741016a2127200341206a2103200441306a2104201041506a22100d000b0b200242003702fc06200241908cc5003602f806024020274105742203450d00205020036a2151200241d00c6a4102722152200241b0066a41136a2138200241d0066a41136a2153205021280340200241206a202810b004200241206a41086a290300210820022903202109202841086a2900002111202841106a290000211220282900002115200241c0096a41186a2229202841186a290000370300200241c0096a41106a22212012370300200241c0096a41086a220a2011370300200220153703c0090240024002400240024002400240024020022802f806221641908cc500460d0020022802fc0621180c010b200241f0096a410041e00210cc051a200241d00c6a410041900410cc051a41f806101e2216450d0141002118201641003b010620164100360200201641086a200241f0096a41e00210cd051a201641e8026a200241d00c6a41900410cd051a200241003602fc06200220163602f8060b2009427f2008428080808010541b2108202841206a2128024003400240024020162f010622240d00410021100c010b20244105742103201641086a2104417f21100340024020030d00202421100c020b201041016a2110200241c0096a2004412010cf052207450d03200341606a2103200441206a21042007417f4a0d000b0b02402018450d002018417f6a2118201620104102746a41f8066a28020021160c010b0b200241c0086a41186a22032029290300370300200241c0086a41106a20212903002209370300200241c0086a41086a200a2903002211370300200220022903c00922123703c008200220022802800741016a3602800720024190096a41106a223b200937030020024190096a41086a223c201137030020024190096a41186a22412003290300370300200220123703900920162f01062204410b490d0202400240201641908cc500460d00200241f0096a410041e00210cc051a200241d00c6a410041900410cc051a41f806101e22030d0141f8064108102d000b41c8a6c000412d41a888c6001028000b200341003b010620034100360200200341086a200241f0096a41e00210cd052107200341e8026a200241d00c6a41900410cd052118200241d0066a41086a2254201641d0016a290000370300200241d0066a41106a2255201641d8016a290000370300200241d0066a41186a2256201641e0016a290000370300200241d00c6a41086a220b20164190056a290300370300200241d00c6a41106a220120164198056a290300370300200241d00c6a41186a2233201641a0056a290300370300200241d00c6a41206a2237201641a8056a290300370300200241d00c6a41286a2235201641b0056a290300370300200220162900c8013703d00620022016290388053703d00c2007201641e8016a20162f010641796a220441057410cd0521072018201641b8056a200441306c10cd052118201641063b0106200320043b0106200220022f01d0063b01b808200220022d00d2063a00ba08200220532900003703a8072002205341056a22572900003700ad0720022800d306214320022800d706214620022800db06214720022800df062148200241f0096a41286a224a2035290300370300200241f0096a41206a224b2037290300370300200241f0096a41186a224c2033290300370300200241f0096a41106a224d2001290300370300200241f0096a41086a224e200b290300370300200220022903d00c3703f0090240024020104107490d00201041057420076a41c07e6a2007201041796a22244105746a2207200441ffff037120246b41057410ce051a200741186a2041290300370000200741106a203b290300370000200741086a203c2903003700002007200229039009370000201041306c20186a220441e07d6a200441b07d6a2204200341066a22072f010020246b41306c10ce051a200441186a4200370300200420083703102004420037030820042008370300200441286a4100360200200442083703200c010b201641066a2107201641086a20104105746a220441206a200420162f010620106b41057410ce051a200441186a2041290300370000200441106a203b290300370000200441086a203c2903003700002004200229039009370000201641e8026a201041306c6a220441306a200420162f010620106b41306c10ce051a200441186a4200370300200420083703102004420037030820042008370300200441286a4100360200200442083703200b200720072f010041016a3b0100200241f0076a41026a220420022d00ba083a0000200a204e2903003703002021204d2903003703002029204c290300370300200241c0096a41206a2242204b290300370300200241c0096a41286a2239204a290300370300200220022f01b8083b01f007200220022903a80737039008200220022900ad0737009508200220022903f0093703c009200241e0086a41286a223d2039290300370300200241e0086a41206a223e2042290300370300200241e0086a41186a223f2029290300370300200241e0086a41106a22452021290300370300200241e0086a41086a2249200a29030037030020024180066a41026a224020042d00003a0000200220022903c0093703e00820022002290390083703c80720022002290095083700cd07200220022f01f0073b0180060240201628020022180d0041002118200241f8066a2104200321100c060b20162f0104214441002158200321590340200241a0066a41026a225a20402d00003a0000200220022f0180063b01a006200220022903c80737039008200220022900cd07370095082039203d2903003703002042203e2903003703002029203f29030037030020212045290300370300200a2049290300370300200220022903e0083703c00941000d04204441ffff0371212402400240024020182f01062203410b490d002052410041a20710cc051a41a807101e2207450d0820074100360200200741046a200241d00c6a41a40710cd051a2056201841e0016a2900003703002055201841d8016a2900003703002054201841d0016a290000370300200220182900c8013703d0062035201841b0056a2903003703002037201841a8056a2903003703002033201841a0056a290300370300200120184198056a290300370300200b20184190056a29030037030020022018290388053703d00c200741086a201841e8016a20182f0106220441796a220341057410cd05215b200741e8026a201841b8056a200341306c10cd05215c200741f8066a20184194076a2004417a6a222541027410cd05213a201841063b0106200720033b010602402025450d0041002103203a210403402004280200221020033b010420102007360200200441046a21042025200341016a2203470d000b0b204a2035290300370300204b2037290300370300204c2033290300370300204d2001290300370300204e200b290300370300200220022903d00c3703f009200220022f01d0063b01b808200220022d00d2063a00ba0820022900d306210820022900db062109200220572900003700ad07200220532900003703a807203820022903a807370000203841056a222520022900ad07370000200220022d00ba083a00b206200220022f01b8083b01b006200220093700bb06200220083700b3062035204a2903003703002037204b2903003703002033204c2903003703002001204d290300370300200b204e290300370300200220022903f0093703d00c204441ffff037122044107490d01205b2024417a6a22104105746a205b202441796a22034105746a220420072f010620036b41057410ce051a200441186a2002290095083700002004204836000f2004204736000b2004204636000720042043360003200441026a205a2d00003a0000200420022f01a0063b00002004200229039008370013202441306c205c6a220441e07d6a200441b07d6a220420072f0106224420036b41306c10ce051a200441286a2039290300370300200441206a2042290300370300200441186a2029290300370300200441106a2021290300370300200441086a200a290300370300200420022903c0093703002007204441016a22043b010620244102742244203a6a416c6a203a20104102746a2224200441ffff037120106b41027410ce051a20242059360200201020072f010622244b0d02200720446a41e0066a2104034020042802002210200341016a22033b010420102007360200200441046a210420032024490d000c030b0b201841086a2204202441016a22104105746a200420244105746a2204200320246b220741057410ce051a2004204836000f2004204736000b2004204636000720042043360003200441026a205a2d00003a0000200420022f01a0063b00002004200229039008370013200441186a2002290095083700002018202441306c6a22044198036a200441e8026a2225200741306c10ce051a20044190036a203929030037030020044188036a204229030037030020044180036a2029290300370300200441f8026a2021290300370300200441f0026a200a290300370300202520022903c0093703002018200341016a22033b01062024410274201841f8066a22046a41086a200420104102746a2204200341ffff037120106b41027410ce051a200420593602000240202420182f010622034f0d00205920103b010420592018360200201020034f0d002003417f6a210720182010417f6a22034102746a4180076a2104034020042802002210200341026a3b010420102018360200200441046a21042007200341016a2203470d000b0b41001a200241f8066a1a20161a0c090b201841086a2203202441016a22104105746a200320244105746a220320182f0106224420246b223a41057410ce051a2003204836000f2003204736000b2003204636000720032043360003200341026a205a2d00003a0000200320022f01a0063b00002003200229039008370013200341186a200229009508370000201841e8026a202441306c6a220341306a2003203a41306c10ce051a200341286a2039290300370300200341206a2042290300370300200341186a2029290300370300200341106a2021290300370300200341086a200a290300370300200320022903c0093703002018204441016a22033b01062024410274223a201841f8066a22446a41086a204420104102746a2244200341ffff037120106b41027410ce051a20442059360200200420182f010622104f0d002018203a6a41fc066a2103034020032802002204202441016a22243b010420042018360200200341046a210320102024470d000b0b205841016a212420024190066a41026a220320022d00b2063a0000203c200b290300370300203b20012903003703002041203329030037030020024190096a41206a2204203729030037030020024190096a41286a22102035290300370300200220022f01b0063b019006200220022903d00c37039009200220382900003703f007200220252900003700f50720022800b306214320022800b706214620022800bb06214720022800bf062148203d2010290300370300203e2004290300370300203f20412903003703002045203b2903003703002049203c290300370300204020032d00003a000020022002290390093703e008200220022903f0073703c807200220022900f5073700cd07200220022f0190063b0180060240201828020022030d0020181a200241f8066a22041a20242118200721100c070b20182f01042144200241f8066a1a20181a2003211820072159202421580c000b0b2016201041306c6a22034180036a4200370300200341f8026a2008370300200341f0026a4200370300200341e8026a200837030020034190036a410036020020034188036a221028020021042003418c036a2802002103201042083703002004450d052003450d05200410200c050b41f8064108102d000b201620104105746a220341286a200341086a2207200420106b41057410ce051a200341206a2041290300370000200341186a203b290300370000200341106a203c29030037000020072002290390093700002016201041306c6a22034198036a200341e8026a220420162f010620106b41306c10ce051a20034190036a410036020020034188036a420837030020034180036a4200370300200341f8026a2008370300200341f0026a420037030020042008370300201620162f010641016a3b01060c030b41c6a8c000413541a888c6001028000b41a8074108102d000b2052410041a20710cc051a41a807101e2203450d0620034100360200200341046a200241d00c6a41a40710cd051a2003200428020022073602f8062004200336020020042004280204222441016a360204200741003b010420072003360200200241c0096a41026a222520402d00003a0000200220022f0180063b01c009200220022903c8073703f009200220022900cd073700f5092035203d2903003703002037203e2903003703002033203f29030037030020012045290300370300200b2049290300370300200220022903e0083703d00c20242018470d0520032f01062207410a4b0d04200320074105746a2204410a6a20252d00003a0000200441086a20022f01c0093b0000200441176a2048360000200441136a20473600002004410f6a20463600002004410b6a20433600002004411b6a20022903f009370000200441206a20022900f5093700002003200741306c6a220441e8026a20022903d00c370300200441f0026a200b290300370300200441f8026a200129030037030020044180036a203329030037030020044188036a203729030037030020044190036a20352903003703002003200741016a22044102746a41f8066a2010360200200320043b010620102003360200201020043b010441001a20161a0b20282051470d000b0b0240200e412c6c2203450d00203620036a210b2036212803400240202828022841246c2203450d002028280220222920036a21210340200241106a202810b00420022002290310427f200241106a41086a290300428080808010541b2208428094ebdc038022094200202922163502202211420010d205200241086a290300200229030022122011200820094280ec94a37c7e7c7e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208201254ad7c2109201641246a2129200241f8066a210320022802fc062124024002400240034002400240200328020022182f010622250d00410021100c010b20254105742103201841086a2104417f21100340024020030d00202521100c020b201041016a211020162004412010cf052207450d03200341606a2103200441206a21042007417f4a0d000b0b2024450d022024417f6a2124201820104102746a41f8066a21030c000b0b2018201041306c6a220341f8026a2204427f2004290300221120087c22122012201154220420034180036a2210290300221120097c2004ad7c221220115420122011511b22041b3703002010427f201220041b370300202841086a2900002111202841106a29000021122028290000211520024190096a41186a2216202841186a29000037030020024190096a41106a2218201237030020024190096a41086a22242011370300200220153703900920034188036a2107024020034190036a221028020022042003418c036a280200470d00200441016a22032004490d15200441017422252003202520034b1b220aad42307e2211422088a70d152011a722254100480d150240024020040d002025101e21030c010b2007280200200441306c2025102221030b2003450d0220072003360200200741046a200a360200201028020021040b20242903002111201829030021122016290300211520022903900921132007280200200441306c6a2203200837032020032013370300200341286a2009370300200341186a2015370300200341106a2012370300200341086a20113703002010201028020041016a3602000b20292021460d020c010b0b20254108102d000b2028412c6a2228200b470d000b0b200228028007212120022802fc06211020022802f8062128200241d00c6a41086a22034200370300200242003703d00c41f3d6c3004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024020022802d00c2204417f460d002003450d00200220043602c409200220033602c009200241d00c6a200241c0096a10e301024020022802d00c2229450d0020022902d40c21082004450d06200310200c060b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b42002108410121290c040b20104101102d000b41a8a5c000412741a888c6001028000b41f7a5c000413041a888c6001028000b41a8074108102d000b02402029450d002008422088a72203450d0020034105742107202921040340410f101e2203450d03200341002900ffd443370000200341076a4100290086d5433700002002428f808080f0013702d40c200220033602d00c2004200241d00c6a10ca0120022802d80c210320022802d00c2116200241b0066a41186a22184200370300200241b0066a41106a22244200370300200241b0066a41086a22254200370300200242003703b00620162003200241b0066a100120024190096a41186a201829030037030020024190096a41106a202429030037030020024190096a41086a2025290300370300200220022903b00637039009024020022802d40c450d0020022802d00c10200b200441206a210420024190096a41201004200741606a22070d000b0b02402008a7450d00202910200b02402010450d0020102103034020282802f80621282003417f6a22030d000b03402010417f6a22100d000b0b024020210d00427f2112427f21110c060b200242003703980920022028360294092002410036029009200241d00c6a20024190096a10e202200241f0096a41086a223a200241d00c6a41186a2218290300370300200241f0096a41106a2237200241d00c6a41206a290300370300200241f0096a41186a2235200241d00c6a41286a290300370300200220022903e00c3703f0092021417f6a212920022802d00c210b20022802d40c212820022802d80c210120022802dc0c21330240200241a00d6a28020022210d00427f2112427f21110c050b200241880d6a223b2903002115200241980d6a223c2903002113200241900d6a2903002114200241a40d6a290200210820022903800d210d200241d00c6a41106a2107427f2112427f21110340200241c0096a41186a20352903002209370300200241c0096a41106a203729030022173703004108210a200241c0096a41086a200241f0096a41086a22032903002219370300200220022903f00922303703c009203520093703002037201737030020032019370300200220303703f0094100214402402008422088a741306c2216450d00201641306d2244ad42307e2209422088a70d0b2009a722034100480d0b2003101e220a450d050b2008a72138410021100240202120166a2021460d0041002110200a2103202121040340200441286a2903002108200441206a29030021092018200441186a2903003703002007200441106a290300370300200241d00c6a41086a2224200441086a290300370300200220042903003703d00c2003200842002009427f5241002008501b22251b37030820032009427f20251b370300200341106a20022903d00c370300200341186a2024290300370300200341206a2007290300370300200341286a2018290300370300200341306a2103201041016a2110200441306a2104201641506a22160d000b0b02402038450d00202110200b2010ad42307e2208422088a70d012008a72203417f4c0d010240024020030d00410821250c010b2003101e2225450d040b201342002014427f5241002013501b22031b21082014427f20031b210920154200200d427f5241002015501b22031b2115200d427f20031b21130240024020100d00410021160c010b200a201041306c6a21244100211620252103200a21040340200320042903003703002003200441086a290300370308200341106a200441106a290300370300200341186a200441186a290300370300200341206a200441206a290300370300200341286a200441286a290300370300200341306a2103201641016a2116200441306a22042024470d000b0b20182015370300200220133703e00c200220093703d00c200220163602f80c200220103602f40c200220253602f00c200220083703d80c0240410f101e2203450d00200341002900ffd443370000200341076a4100290086d5433700002002428f808080f0013702e408200220033602e008200241f0096a200241e0086a10ca0120022802e808210320022802e0082104200241b0066a41186a22104200370300200241b0066a41106a22164200370300200241b0066a41086a22244200370300200242003703b00620042003200241b0066a100120024190096a41186a201029030037030020024190096a41106a201629030037030020024190096a41086a2024290300370300200220022903b00637039009024020022802e408450d0020022802e00810200b200241003602e808200242013703e0082002200241d00c6a3602c008200241c0086a200241e0086a10df02200220073602c008200241c0086a200241e0086a10df0220022802f00c2103200220022802f80c22043602c008200241c0086a200241e0086a106302402004450d00200441306c21040340200341106a200241e0086a10ca01200220033602c008200341306a2103200241c0086a200241e0086a10df02200441506a22040d000b0b20022802e408210320024190096a412020022802e008220420022802e808100502402003450d00200410200b200920125421032008201151210420082011542110024020022802f40c450d0020022802f00c10200b2003201020041b210302402044450d00200a10200b2008201120031b21112009201220031b21122029450d072002203336029c09200220013602980920022028360294092002200b36029009200241d00c6a20024190096a10e202203a200741086a2903003703002037200741106a2903003703002035200741186a290300370300200220072903003703f0092029417f6a2129203b2903002115203c290300211320022903800d210d20022903900d211420022802d00c210b20022802d40c212820022802d80c210120022802dc0c213320022902a40d210820022802a00d2221450d060c010b0b410f4101102d000b102c000b410f4101102d000b20034108102d000b20034108102d000b2029450d000340200220333602fc09200220013602f809200220283602f4092002200b3602f009200241d00c6a200241f0096a10e20220022802d40c212820022802a00d2203450d012029417f6a212920022802d00c210b20022802d80c210120022802dc0c2133024020022802a40d450d00200310200b20290d000b0b0240202841908cc500460d0020282802002103202810202003450d0020032802002104200310202004450d00024020042802002203450d000340200410202003210420032802002210210320100d000b0b200410200b200241d00c6a41086a22034200370300200242003703d00c41b5a8c4004111200241d00c6a1000200241f0096a41086a22042003290300370300200220022903d00c3703f009200220113703d80c200220123703d00c200241f0096a4110200241d00c6a4110100520034200370300200242003703d00c41f3d6c3004116200241d00c6a100020042003290300370300200220022903d00c3703f009200241003602d80c200242013703d00c200220273602c009200241c0096a200241d00c6a106302402027450d00202741057421042050210303402003200241d00c6a10ca01200341206a2103200441606a22040d000b0b20022802d40c2103200241f0096a411020022802d00c220420022802d80c100502402003450d00200410200b2027ad21080240200e450d00200e412c6c2104203641206a210303400240200341046a280200450d00200328020010200b2003412c6a2103200441546a22040d000b0b2008422086210802402034450d00203610200b20312008842108204f450d01202010200c010b200241d00c6a41086a22034200370300200242003703d00c41b5a8c4004111200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024020022802d00c2204417f460d002003450d002004410f4d0d02200310200b410021500b20002008370204200020503602000240200c417f732006a741004771450d00200510200b20024180146a24000f0b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b1027000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b8a0d021e7f037e230041f0026b220424000240024002400240410d101e2205450d00200541002900e6d643370000200541056a41002900ebd6433700002004428d808080d0013702e401200420053602e0012001200441e0016a10ca0120042802e801210520042802e0012106200441a0026a41186a22074200370300200441a0026a41106a22084200370300200441a0026a41086a22094200370300200442003703a00220062005200441a0026a1001200441a0016a41186a2007290300370300200441a0016a41106a2008290300370300200441a0016a41086a2009290300370300200420042903a0023703a001024020042802e401450d0020042802e00110200b200441003602a002200441a0016a4120200441a0026a1003210502400240024020042802a0022206417f460d002005450d002006450d0420052d0000220641034f0d042005102020060e03000201000b200441f8006a200110b10420042d00784101470d04200441c0016a41186a220720044191016a290000370300200441c0016a41106a220520044189016a290000370300200441c0016a41086a220620044181016a290000370300200420042900793703c001200441a0026a200441c0016a10fc02200441a0016a41186a22082007290300370300200441a0016a41106a22072005290300370300200441a0016a41086a22092006290300370300200420042903c0013703a00120042802c002220a450d04200441e0016a41186a220b2008290300370300200441e0016a41106a220c2007290300370300200441e0016a41086a220d2009290300370300200441e0016a41286a2207200441a0026a41086a2208290300370300200441e0016a41306a2209200441a0026a41106a220e290300370300200441e0016a41386a220f200441a0026a41186a2210290300370300200441086a41286a2211200441ec026a2212280200360200200441086a41206a2213200441e4026a2214290200370300200441086a41186a2215200441dc026a2216290200370300200441086a41106a2217200441d4026a2218290200370300200441086a41086a2219200441cc026a221a290200370300200420042903a0013703e001200420042903a00237038002200420042902c402370308200441386a41386a221b200f290300370300200441386a41306a221c2009290300370300200441386a41286a221d2007290300370300200441386a41206a221e200429038002370300200441386a41186a221f200b290300370300200441386a41106a2220200c290300370300200441386a41086a2221200d290300370300200420042903e001370338200f201b2903003703002009201c2903003703002007201d290300370300200441e0016a41206a221b201e290300370300200b201f290300370300200c2020290300370300200d2021290300370300200420042903383703e001200441f8006a41186a201f290300370300200441f8006a41106a2020290300370300200441f8006a41086a2021290300370300200420042903383703782010200f290300370300200e2009290300370300200820072903003703002004200a3602c0022004201b2903003703a002200441c4026a22072004290308370200201a20192903003702002018201729030037020020162015290300370200201420132903003702002012201128020036020020102903002122200e200e290300222320027c22243703002010202220037c2024202354ad7c37030020082903002122200420042903a002222320027c22243703a0022008202220037c2024202354ad7c370300200441c0016a20012002200310a80320043502c00121022005290300212220062903002103200441f8006a200441a0026a10c50402402007280200450d0020042802c00210200b200242018521020c050b200441a0026a200110b10420042d00a0024101470d03200441f8016a200441b9026a290000370300200441e0016a41106a200441b1026a290000370300200441e0016a41086a200441a9026a290000370300200420042900a1023703e001200441386a200441e0016a2002200310a80320043502384201852102200441386a41106a2903002122200441386a41086a29030021030c040b200441a0026a20012002200310a80320043502a0024201852102200441b0026a2903002122200441a8026a29030021030c030b410d4101102d000b41ceb8c4004133200441a0026a41fcbfc4004184b9c400102e000b420021020b2000200337030820002002370300200041106a2022370300200441f0026a24000baa0101037f230041206b22022400410021032002410036021420014110200241146a100321010240024020022802142204417f460d002001450d002002410036020c20044104490d0120012800002103200241003602102004417c714104460d012001280004210420011020200041086a200436020020002003360204410121030b20002003360200200241206a24000f0b41ceb8c4004133200241186a41fcbfc4004184b9c400102e000b930a05037f047e057f027e047f230022022103200241c0016b41607122022400200141186a220429000021052004200229039801370000200129001021062001200229039001370010200129000821072001200229038801370008200241003a00800120012900002108200120022903800137000020022005370378200220063703702002200737036820022008370360200141206a2d0000210420024180016a41176a2209200537000020024180016a41106a220a200229007137030020024180016a41086a220b200229006937030020022002290061370380010240024002402008a741ff01714101470d00200241186a41176a2009290000370000200241186a41106a200a290300370300200241186a41086a200b2903003703002002200229038001370318200220043a0037200241386a200241186a10a5042002410036028001200241386a412020024180016a1003210c0240200228028001220d417f460d00200c450d002002200d36025c2002200c3602582002200241d8006a1097032002290300a70d03200228025c2204450d03200241106a290300210e2002290308210f20022004417f6a220a36025c20022002280258221041016a220b36025820102d0000220441014b0d03410021110240024020040e020100010b410021040340200a2004460d042002201020046a41026a360258200441016a2209210420094120470d000b2002200a20096b220a36025c41012111201020096a41016a210b0b200a450d032002200a417f6a220a36025c2002200b41016a360258200b2d0000220941014b0d034100210402400240024020090e020100010b41002104200241003a00a0010340200a2004460d0220024180016a20046a200b20046a220941016a2d00003a00002002200941026a3602582002200441016a22093a00a0012009210420094120470d000b200241e0006a41086a20024180016a41086a290300370300200241e0006a41106a20024180016a41106a290300370300200241e0006a41186a20024180016a41186a29030037030020022002290380013703602002200a20096b36025c410121040b20024180016a41186a2209200241e0006a41186a220a29030037030020024180016a41106a220b200241e0006a41106a221029030037030020024180016a41086a2212200241e0006a41086a2213290300370300200220022903603703800120114102460d04200a20092903003703002010200b2903003703002013201229030037030020022002290380013703600240200d450d00200c10200b20024180016a41186a200241e0006a41186a2209290300220537030020024180016a41106a200241e0006a41106a220a290300220837030020024180016a41086a200241e0006a41086a220b29030022063703002002200229036022073703800120092005370300200a2008370300200b200637030020022007370360200120043a000020012007370001200141096a2006370000200141116a2008370000200141196a2005370000200041306a200e370300200041286a200f3703002000420137030020002002290318370008200041106a200241186a41086a290300370000200041186a200241186a41106a290300370000200041206a200241186a41186a290300370000200324000f0b2002410036025c200441ff0171450d03200241003a00a0010c030b418ddbc50041dd0041ecdbc5001045000b20004200370300200324000f0b2002410036025c0b41ceb8c4004133200241b8016a41fcbfc4004184b9c400102e000b9f0a03037f047e0c7f230022022103200241c0016b41607122022400200141186a220429000021052004200229039801370000200129001021062001200229039001370010200129000821072001200229038801370008200241003a00800120012900002108200120022903800137000020022005370378200220063703702002200737036820022008370360200141206a2d0000210420024180016a41176a2209200537000020024180016a41106a220a200229007137030020024180016a41086a220b2002290069370300200220022900613703800102400240024002402008a741ff01714101470d00200241086a41176a2009290000370000200241086a41106a200a290300370300200241086a41086a200b2903003703002002200229038001370308200220043a0027200241286a200241086a10a6042002410036028001200241286a412020024180016a1003210c0240200228028001220d417f460d00200c450d002002200d36024c2002200c360248200241d0006a200241c8006a10e3012002280250220e450d042002280254210f200228024c2204450d03200241d8006a280200211020022004417f6a220a36024c20022002280248221141016a220b36024820112d0000220441014b0d03410021120240024020040e020100010b410021040340200a2004460d042002201120046a41026a360248200441016a2209210420094120470d000b2002200a20096b220a36024c41012112201120096a41016a210b0b200a450d032002200a417f6a220a36024c2002200b41016a360248200b2d0000220941014b0d034100210402400240024020090e020100010b41002104200241003a00a0010340200a2004460d0220024180016a20046a200b20046a220941016a2d00003a00002002200941026a3602482002200441016a22093a00a0012009210420094120470d000b200241e0006a41086a20024180016a41086a290300370300200241e0006a41106a20024180016a41106a290300370300200241e0006a41186a20024180016a41186a29030037030020022002290380013703602002200a20096b36024c410121040b20024180016a41186a2209200241e0006a41186a220a29030037030020024180016a41106a220b200241e0006a41106a221129030037030020024180016a41086a2213200241e0006a41086a2214290300370300200220022903603703800120124102460d05200a20092903003703002011200b2903003703002014201329030037030020022002290380013703600240200d450d00200c10200b20024180016a41186a200241e0006a41186a2209290300220537030020024180016a41106a200241e0006a41106a220a290300220837030020024180016a41086a200241e0006a41086a220b29030022063703002002200229036022073703800120092005370300200a2008370300200b200637030020022007370360200120043a000020012007370001200141096a2006370000200141116a2008370000200141196a2005370000200041286a20103602002000200f3602242000200e36022020002002290308370000200041086a200241086a41086a290300370000200041106a200241086a41106a290300370000200041186a200241086a41186a290300370000200324000f0b2002410036024c200441ff0171450d03200241003a00a0010c030b418ddbc50041dd0041ecdbc5001045000b20004100360220200324000f0b2002410036024c0b200f450d00200e10200b41ceb8c4004133200241d0006a41fcbfc4004184b9c400102e000b882605017f037e097f047e107f23004180066b22032400200241306a2903002104200241286a2903002105200241d8006a290300210620022802002107200341206a41086a2002410c6a290200370300200341206a41106a200241146a290200370300200341206a41186a2002411c6a290200370300200341c0006a200241246a280200360200200341086a2208200241c0006a2209290300370300200341106a220a200241c8006a220b290300370300200341186a220c200241d0006a220d290300370300200320022902043703202003200241386a2202290300370300200341e8006a41086a200341206a410c6a290200370300200341e8006a41106a200341206a41146a290200370300200341e8006a41186a200341206a411c6a290200370300200341c8006a41086a220e2009290300370300200341c8006a41106a220f200b290300370300200341c8006a41186a220b200d290300370300200320032902243703682003200229030037034820012802002109200341c0026a41186a2202200c290300370300200341c0026a41106a220c200a290300370300200341c0026a41086a220a2008290300370300200320032903003703c002024002400240024002400240024002400240024041c800101e2208450d00200842003703002008200736022020082003290348370224200841186a4200370300200841106a4200370300200841086a42003703002008412c6a200e290300370200200841346a200f2903003702002008413c6a200b29030037020020034190026a41086a200a29030037030020034190026a41106a200c29030037030020034190026a41186a2002290300370300200320032903c002370390020240024002400240024020092802082202200941046a280200470d00200241016a220a2002490d022002410174220b200a200b200a4b1b220aad42e0007e2210422088a70d022010a7220b4100480d020240024020020d00200b101e21020c010b2009280200200241e0006c200b102221020b2002450d0120092002360200200941046a200a360200200928020821020b2009280200200241e0006c6a22024200370310200220043703082002200537030020022008360230200220032903900237023c200241286a4200370300200241206a4201370300200241186a4200370300200241346a428180808010370200200241c4006a20034190026a41086a2208290300370200200241cc006a20034190026a41106a220c290300370200200241d4006a20034190026a41186a22022903003702002009200928020841016a3602082001280204210d200341d0016a41186a200341c8006a41186a290300370300200341d0016a41106a200341c8006a41106a290300370300200341d0016a41086a200341c8006a41086a290300370300200320032903483703d001200d280200220a41908cc500460d02200d280204210b0c030b200b4108102d000b1027000b4100210b200341c0026a410041e00210cc051a20034190026a41286a410036020020034190026a41206a420037030020024200370300200c4200370300200842003703002003420037039002419403101e220a450d02200a41003b0106200a4100360200200a41086a200341c0026a41e00210cd051a200a4190036a200341b8026a280200360200200a4188036a200341b0026a290300370200200a4180036a200341a8026a290300370200200a41f8026a200341a0026a290300370200200a41f0026a20034190026a41086a290300370200200a2003290390023702e802200d4100360204200d200a3602000b0240034002400240200a2f0106220c0d00410021090c010b200c4105742102200a41086a2108417f21090340024020020d00200c21090c020b200941016a2109200341d0016a2008412010cf052201450d03200241606a2102200841206a21082001417f4a0d000b0b0240200b450d00200b417f6a210b200a20094102746a4194036a280200210a0c010b0b20034188016a41186a200341d0016a41186a2202290300221037030020034188016a41106a200341d0016a41106a2208290300221137030020034188016a41086a200341d0016a41086a22012903002212370300200320032903d001221337038801200d200d28020841016a360208200220103703002008201137030020012012370300200320133703d001200a2f0106220c410b490d0302400240200a41908cc500460d00200341c0026a410041e00210cc051a200341b8026a22024100360200200341b0026a22084200370300200341a8026a22014200370300200341a0026a220b420037030020034190026a41086a220c42003703002003420037039002419403101e220e0d014194034104102d000b41c8a6c000412d41a888c6001028000b200e41003b0106200e4100360200200e41086a200341c0026a41e00210cd05210f200e4190036a2002280200360200200e4188036a2008290300370200200e4180036a2001290300370200200e41f8026a200b290300370200200e41f0026a200c290300370200200e2003290390023702e8022003200a2f00c8013b018c022003200a41ca016a2d00003a008e02200a41cb016a2800002114200a41cf016a2800002115200a41d3016a2800002116200a41d7016a28000021172003200a41e0016a2900003700fd012003200a2900db013703f801200a280280032118200f200a41e8016a200a2f010641796a220841057410cd052101200e41e8026a200a4184036a200841027410cd05210b200a41063b0106200e20083b0106200320032f018c023b01f401200320032d008e023a00f601200320032903f80137039002200320032900fd01370095020240024020094107490d00200e41066a210220012009417a6a220c4105746a2001200941796a22094105746a2201200841ffff037120096b41057410ce051a200141186a200341d0016a41186a290300370000200141106a200341d0016a41106a290300370000200141086a200341d0016a41086a290300370000200120032903d001370000200b200c4102746a2101200b20094102746a21080c010b200a41086a2202200941016a22014105746a200220094105746a2208200a41066a22022f010020096b41057410ce051a200841186a200341d0016a41186a290300370000200841106a200341d0016a41106a290300370000200841086a200341d0016a41086a290300370000200820032903d001370000200a41e8026a220b20094102746a2108200b20014102746a2101200921090b2001200820022f010020096b41027410ce051a20082007360200200220022f010041016a3b0100200341f0016a41026a221920032d00f60122023a0000200341bc016a41026a221a20023a000020032003290095023700c50120032003290390023703c001200320032f01f40122023b01f001200320032900c5013700ad01200320032903c0013703a801200320023b01bc010240200a280200220b0d004100211b0c070b200a2f01042107200341c0026a410272211c4100211b03402019201a2d00003a0000200320032f01bc013b01f001200320032903a8013703d001200320032900ad013700d50141000d05200741ffff0371210a024002400240200b2f01062202410b490d00201c410041be0310cc051a41c403101e2201450d0920014100360200200141046a200341c0026a41c00310cd051a2003200b2f00c8013b018c022003200b41ca016a2d00003a008e022003200b41db016a2900003703f8012003200b41e0016a2900003700fd01200b41cb016a280000211d200b41cf016a280000211e200b41d3016a280000211f200b41d7016a2800002120200b4180036a2802002121200141086a200b41e8016a200b2f0106220841796a220241057410cd052122200141e8026a200b4184036a200241027410cd05212320014194036a200b41b0036a2008417a6a220c41027410cd05210f200b41063b0106200120023b01060240200c450d0041002102200f210803402008280200220920023b010420092001360200200841046a2108200c200241016a2202470d000b0b200320032d008e0222023a00f601200320032f018c0222083b01f401200320032903f80137039002200320032900fd0137009502200341c0016a41026a220c20023a0000200320083b01c00120032003290390023703c00220032003290095023700c502200741ffff037122084107490d012022200a417a6a22094105746a2022200a41796a22024105746a220820012f010620026b41057410ce051a200841186a20032900d5013700002008201736000f2008201636000b2008201536000720082014360003200841026a20192d00003a0000200820032f01f0013b0000200820032903d0013700132023200941027422086a202320024102746a220720012f0106221420026b41027410ce051a200720183602002001201441016a22073b0106200a4102742214200f6a416c6a200f20086a2208200741ffff0371220a20096b41027410ce051a2008200e360200200a2009490d02200120146a41fc026a2108034020082802002209200241016a22023b010420092001360200200841046a21082002200a490d000c030b0b200b41086a2208200a41016a22094105746a2008200a4105746a22082002200a6b41057410ce051a200841186a20032900d5013700002008201736000f2008201636000b2008201536000720082014360003200841026a200341f0016a41026a2d00003a0000200820032f01f0013b0000200820032903d001370013200b41e8026a2202200941027422086a2002200a41027422016a2202200b2f0106220c200a6b41027410ce051a20022018360200200b200c41016a22023b01062001200b4194036a220a6a41086a200a20086a2208200241ffff0371220120096b41027410ce051a2008200e360200200741ffff037120014f0d0a200b2009417f6a22024102746a4198036a2108034020082802002209200241016a22023b01042009200b360200200841046a210820022001490d000c0b0b0b200b41086a2202200a41016a22074105746a2002200a4105746a2202200b2f0106200a6b41057410ce051a200241186a20032900d5013700002002201736000f2002201636000b2002201536000720022014360003200241026a20192d00003a0000200220032f01f0013b0000200220032903d001370013200b41e8026a22092007410274220f6a2009200a41027422026a2209200b2f01062214200a6b41027410ce051a20092018360200200b201441016a22093b01062002200b4194036a22146a41086a2014200f6a220f200941ffff0371220920076b41027410ce051a200f200e360200200820094f0d00200b20026a4198036a2102034020022802002208200a41016a220a3b01042008200b360200200241046a21022009200a470d000b0b201b41016a211b201a200c2d00003a0000200320032f01c0013b01bc01200320032903c0023703a801200320032900c5023700ad010240200b28020022020d00201d211420202117201f2116201e21152001210e202121180c080b200b2f01042107201d211420202117201f2116201e21152002210b202121182001210e0c000b0b200a20094102746a41e8026a20073602000c060b41c8004108102d000b4194034104102d000b200a41086a220b200941016a220d4105746a200b20094105746a220b200c20096b41057410ce051a200b41186a2002290300370000200b41106a2008290300370000200b41086a2001290300370000200b20032903d001370000200a41e8026a2202200d4102746a200220094102746a2202200a2f010620096b41027410ce051a20022007360200200a200a2f010641016a3b01060c030b41c6a8c000413541a888c6001028000b41c4034104102d000b200341c0026a410272410041be0310cc051a41c403101e2202450d0120024100360200200241046a200341c0026a41c00310cd051a2002200d280200220836029403200d2002360200200d200d280204220941016a360204200841003b01042008200236020020034190026a41026a200341bc016a41026a2d00003a0000200320032f01bc013b019002200320032903a8013703c002200320032900ad013700c5022009201b470d0220022f01062209410a4b0d03200220094105746a2208410a6a20034190026a41026a2d00003a0000200841086a20032f0190023b0000200841176a2017360000200841136a20163600002008410f6a20153600002008410b6a20143600002008411b6a20032903c002370000200841206a20032900c5023700002002200941016a22084102746a4194036a200e360200200220094102746a41e8026a2018360200200220083b0106200e20083b0104200e20023602000b20002005370320200020032903683703002000200329034837033020002006370350200041286a2004370300200041186a200341e8006a41186a290300370300200041106a200341e8006a41106a290300370300200041086a200341e8006a41086a290300370300200041386a200341c8006a41086a290300370300200041c0006a200341c8006a41106a290300370300200041c8006a200341c8006a41186a29030037030020034180066a24000f0b41c4034104102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000bb30403037f017e017f230041206b2203240002402001450d00034020002802940321002001417f6a22010d000b0b02402002450d004100210441002105034002400240200420002f0106490d00024002400240200041908cc500460d00200028020022010d012005ad210641002107410021010c020b41cfa5c000412841a888c6001028000b20003301044220862005ad842106410121070b200010202006a7210502402006422088a7220420012f0106490d00034002400240200128020022000d002005ad2106410021000c010b200741016a210720013301044220862005ad8421060b200110202006a72105200021012006422088a7220420002f01064f0d000b0b200341186a200120044105746a220041206a290000370300200341106a200041186a290000370300200341086a200041106a2900003703002003200041086a290000370300200441027420016a4198036a2802002100410021042007417f6a2201450d01034020002802940321002001417f6a22010d000c020b0b200341186a200020044105746a220141206a290000370300200341106a200141186a290000370300200341086a200141106a2900003703002003200141086a290000370300200441016a21040b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002205210120050d000b0b200010200b200341206a24000bbb2e07017f017e017f027e017f027e187f23004180036b2207240002400240024002402001200284500d002003200484500d004201210820074198016a200320012003200156200420025620042002511b22091b220a2004200220091b220b20054201200542015620064200522006501b220c1b220520064200200c1b220610d30520074188016a200729039801220d20074198016a41086a290300220e2005200610d2052002200420091b21022001200320091b2104200a20072903880185200b20074188016a41086a290300858450450d01200d210a200e210b420021060c020b20004100360200200041106a4200370300200041086a42003703000c020b200741f8006a200420022005200610d305200741e8006a20072903782201200741f8006a41086a29030022032005200610d2054200200620042007290368852002200741e8006a41086a29030085845022091b21064201200520091b21082003200220091b21022001200420091b21040b200741386a200b42002004420010d205200741c8006a20024200200a420010d205200741d8006a200a42002004420010d205024002400240024002400240024002400240024002400240024002400240024002400240024002400240200b420052200242005271200729034042005272200729035042005272200741d8006a41086a2903002201200729033820072903487c7c2203200154724101470d004110101e2209450d032009200a3e020c2009200a4220883e02082009200b3e02042009200b4220883e020020074284808080c00037029c02200720093602980220074198026a10bd05200741a8016a41086a20072802a00236020020072007290398023703a8014110101e2209450d02200920043e020c200920044220883e0208200920023e0204200920024220883e020020074284808080c00037029c02200720093602980220074198026a10bd05200741b8016a41086a20072802a00236020020072007290398023703b8014110101e2209450d0120092008a7220f36020c200920084220883e0208200920063e0204200920064220883e020020074284808080c00037029c02200720093602980220074198026a10bd0520072802a0022110200728029c0221112007280298022112200741f0026a41086a200741b8016a41086a280200360200200720072903b8013703f00220074198026a41086a200741a8016a41086a280200360200200720072903a80137039802200741c8016a20074198026a200741f0026a10c304024020072802f402450d0020072802f00210200b200741c8016a10bd0520104101460d0420072802cc01211320072802c80121142010450d0e2012280200450d0e024020072802d0012215450d002014280200450d0f201520104d0d0f200720103602d401201520106b221641016a22174101201741014b1b221841ffffffff03712018470d0620184102742209417f4c0d0602400240024020090d00410421190c010b200910242219450d010b201041ffffffff03712010470d072010410274221a417f4c0d07024002400240201a0d004104211b0c010b201a1024221b450d010b410221094101210f2012280200220c67221c211d0240200c41ffffffff034b0d0041022109201c210c4101210f034020094101200c4101711b200f6c210f200c41034b211e200920096c2109200c410176221d210c201e0d000b0b200720153602f802200720133602f402200720143602f0024104211e02404104101e220c450d00200c20094101201d4101461b200f6c220f360200200742818080801037029c022007200c36029802200741d8016a200741f0026a20074198026a10c304200c102002400240201a450d00201a101e221e450d010b201e2012201041027410cd052109200720103602f802200720103602f402200720093602f00202404104101e2209450d002009200f360200200742818080801037029c022007200936029802200741e8016a200741f0026a20074198026a10c304200910200240024020072802d40120176a220920072802e001220c4d0d0002400240024002402009200c6b22090d004104210f410021090c010b200941ffffffff03712009470d012009410274221e4100480d01201e101e220f450d04200f4100200941027410cc051a0b20072802d801211d2009211e200c450d012009200c6a221e2009490d0020094101742214201e2014201e4b1b221e41ffffffff0371201e470d00201e41027422144100480d000240024020090d002014101e210f0c010b200f200941027420141022210f0b200f0d0120144104102d000b1027000b200f20094102746a201d200c41027410cd051a2009200c6a2109024020072802dc01450d00201d10200b200720093602e0012007201e3602dc012007200f3602d8010b200741e8016a10bd0502400240024002400240024002400240024002400240034020072016221f3602f401024020072802e001220920072802d401220c201f6a220f417f736a221e2009490d0041d0e0c600201e2009102a000b0240024002400240024002400240024002400240024002400240024002400240024020092009200f6b220f4d0d0020072802f00122092009200c6b220c4d0d0120072802e801200c4102746a35020022024200510d02201f201f4100476b211620072802d8012209201e4102746a35020021012009200f4102746a3502002104200741003602f80120072004200142208684200280220137038002200741003602880220072004200120027e7d42ffffffff0f83370390022007200741f4016a3602ac022007200741d8016a3602a8022007200741d4016a3602a4022007200741e8016a3602a002200720074188026a36029c022007200741f8016a3602980220074198026a10bf051a034020072802880241016a41004c0d04024020072903900242ffffffff0f560d0020074198026a10bf050d010b0b200729038002210220072802f401210920072802d401210c200741003a00f8022007200c20096a3602f402200720093602f0022007200741d8016a3602fc02200741b0026a200741f0026a10c00520072802f001220941ffffffff03712009470d292009410274220c417f4c0d2920072802e801210f02400240200c0d004104211e0c010b200c101e221e450d050b201e200f200c10cd05210c200720093602e802200720093602e4022007200c3602e0024108101e2209450d0520092002a72220360204200920024220883e020020074282808080203702f402200720093602f002200741c0026a200741e0026a200741f0026a10c3042009102020072802b802222120072802c8022222202120224b1b22144101201441014b1b220c41ffffffff0371200c470d29200c410274220f417f4c0d2920072802b402212320072802b002212402400240200f0d00410421250c010b200f10242225450d070b2014450d092022417f6a221720224b211520072802c00221262021417f6a221a20214b0d07200c417f6a21092025200f6a417c6a211d4100210f4200210203404100211e02402021201a200f6b22134d0d004100211e2013201a4b0d00202420134102746a280200211e0b201ead21044100211e024020150d0020222017200f6b22134d0d00201320174b0d00202620134102746a280200211e0b024002402004201ead22037d22012004560d00200120027d220a2001560d00200a42ffffffff0f832104420021020c010b20044280808080108420027d20037d2104420121020b200c20094d0d0c201d20043e0200201d417c6a211d2009417f6a2109200f41016a220f2014490d000c090b0b41d0e0c600200f2009102a000b41d0e0c600200c2009102a000b41e0e1c600411941e0e0c6001028000b4196e2c6004118200741f0026a41b0e2c60041c0e2c600102e000b200c4104102d000b41084104102d000b200f4104102d000b200c417f6a21092025200f6a417c6a211e4100211d4200210203404100210f024020150d004100210f20222017201d6b22134d0d004100210f201320174b0d00202620134102746a280200210f0b024002404200200fad22017d22044200520d00200420027d22032004560d00200342ffffffff0f832104420021020c010b428080808010200220017c7d2104420121020b200c20094d0d04201e20043e0200201e417c6a211e2009417f6a2109201d41016a221d2014490d000b0b41012113200250450d010b410021130b02402023450d00202410200b20072802d401221e20072802f401220f6a2215201e490d05200f20154f0d01200f417f7321090340200c200c200f6a20096a221d4d0d03200920072802e00122146a220f20094f0d0420072802d801200f4102746a2025201d4102746a2802003602002009417f6a210920072802f401210f201e417f6a221e0d000c050b0b41bcf8c6002009200c102a000b201e450d020c030b41d0e0c60020222021202220214b1b22074101200741014b1b200f6a20096a200c102a000b41bcf8c600200f2014102a000b200c200c2015417f7322096a200f6a220f4d0d0220072802e001220c20096a2209200c4f0d0320072802d80120094102746a2025200f4102746a28020036020020072802f401210f0b2018200f417f736a220920184f0d03201920094102746a202036020002402013450d00201820072802f401417f736a220920184f0d05201920094102746a22092009280200417f6a36020020072802f401210920072802d401210c200741003a00f8022007200c20096a3602f402200720093602f0022007200741d8016a3602fc02200741d0026a200741f0026a10c00520072802f001220941ffffffff03712009470d192009410274220c417f4c0d1920072802e801210f02400240200c0d004104211e0c010b200c101e221e450d070b201e200f200c10cd05210c200720093602f802200720093602f4022007200c3602f002200741e0026a200741f0026a200741d0026a10be05024020072802d401220920072802f40122146a220c2009490d00024002402014200c4f0d00200c417f73210920072802e002211320072802e802210f2014211e0340200f200f201e6a20096a221e4d0d0b200920072802e00122156a221d20094f0d0c20072802d801201d4102746a2013201e4102746a280200360200200941016a210920072802f401211e2014200c417f6a220c490d000c020b0b20090d0120072802e802210f2014211e0b201e2014417f7322096a220c200f6a221e200c4f0d0a20072802e001220c20096a2209200c4f0d0b20072802d80120094102746a20072802e002201e4102746a2802003602000b024020072802e402450d0020072802e00210200b20072802d402450d0020072802d00210200b20251020024020072802c402450d0020072802c00210200b201f0d000b0240201c0d0020072802e001211020072802dc01210f20072802d801211e201b1020410021090c1e0b4101210920072802d401220c4101460d1c4100200c6b2114201c411f7121134100201c6b411f7121152010410274201b6a417c6a210c417f210903400240200920072802e001221e6a220f2009490d0041d0e0c600200f201e102a000b201e200f417f6a221d4d0d0a201020096a221e20104f0d0b200c20072802d801221e201d4102746a280200201574201e200f4102746a28020020137672360200200c417c6a210c20142009417f6a2209460d1c0c000b0b41d0e0c600200f200c102a000b41bcf8c6002009200c102a000b41bcf8c60020092018102a000b41d0e0c60020092018102a000b200c4104102d000b41d0e0c600201e200f102a000b41bcf8c600201d2015102a000b41d0e0c600201e200f102a000b41bcf8c6002009200c102a000b41d0e0c600200f417f6a201e102a000b41bcf8c600201e2010102a000b201e4104102d000b41044104102d000b201a4104102d000b41044104102d000b201a4104102d000b20094104102d000b41d0e0c60041004100102a000b200741286a200729035820032008200610d30520004100360200200041106a200741286a41086a290300370300200041086a20072903283703000c140b41104104102d000b41104104102d000b41104104102d000b20074198026a41086a200741c8016a41086a280200221d360200200720072903c80137039802201d4101201d41014b1b221e41ffffffff0371201e470d00201e4102742209417f4c0d000240024020090d004104211a0c010b20091024221a450d020b201d450d03201d417f6a2114201a201e201d6b22134102746a210c200f4101200f41014b1bad21024200210441002109200728029802210f0340201e201320096a22154d0d03200c2004422086200f35020084220420028022013e020020142009460d04200c41046a210c200f41046a210f2004200120027e7d2104201d200941016a22094b0d000b41d0e0c6002009201d102a000b102c000b20094104102d000b41bcf8c6002015201e102a000b2007201e3602f8022007201e3602f4022007201a3602f002200728029c02450d0720072802980210200c070b20072802d40121090b20072802e001220c200c20096b220f4d0d012010201020096b22094d0d02201b20094102746a20072802d801200f4102746a280200201c411f7176360200410121092010210f201b211e0b024020072802ec01450d0020072802e80110200b2009450d0320072802dc01450d0320072802d80110200c030b41d0e0c600200f200c102a000b41bcf8c60020092010102a000b4100211902402013450d00201410200b0b4104101e2209450d01200941003602004104101e220c450d02200c41003602004101211d0240024020190d002009211941012118200c211e4101210f410121100c010b20091020200c10200b2007201836028002200720183602fc01200720193602f801200720103602a0022007200f36029c022007201e3602980220074198026a10bd05420021020240024020072802a00222094105744180014d0d00421d21040c010b4100211d024020090d00420021040c010b200728029802220c200941027422096a417c6a220f280200211e0240200c200f470d00201ead21040c010b200c41786a210f201ead2104200741206a211e4120210c420021020340200741186a200f20096a3502004200200c41e0007110d005201e29030020027c2007290318220220047c2204200254ad7c2102200c41206a210c2009417c6a22094104470d000b0b0240200728029c02450d0020072802980210200b201d0d030240200420084201882006423f8684562002200642018822045620022004511b450d0020074188026a41086a200741f8016a41086a280200360200200720072903f801370388024110101e2209450d0520094280808080103702082009420037020020074284808080c00037029c02200720093602980220074198026a10bd05200741f0026a41086a20072802a00236020020072007290398023703f002200741f8016a20074188026a200741f0026a10be0520072802f402450d0020072802f00210200b200741f0026a41086a200741f8016a41086a280200360200200720072903f8013703f0020b200741f0026a10bd0520074198026a41086a2209200741f0026a41086a280200360200200720072903f0023703980220074198026a10bd054200210202400240200928020022094105744180014d0d00421d21044101211d0c010b4100211d024020090d00420021040c010b200728029802220c200941027422096a417c6a220f280200211e0240200c200f470d00201ead21040c010b200c41786a210f201ead2104200741106a211e4120210c420021020340200741086a200f20096a3502004200200c41e0007110d005201e29030020027c2007290308220220047c2204200254ad7c2102200c41206a210c2009417c6a22094104470d000b0b0240200728029c02450d0020072802980210200b02400240201d450d0020004194e4c600360204200041086a4119360200410121090c010b200041106a2002370300200041086a2004370300410021090b200020093602002011450d04201210200c040b41044104102d000b41044104102d000b200720043e029c02200741f9e1c6003602980241c4e3c600412f20074198026a41f4e3c6004184e4c600102e000b41104104102d000b20074180036a24000b7701027f230041106b2203240002404110101e22040d0041104104102d000b200420013e020c200420014220883e0208200420023e0204200420024220883e020020034284808080c00037020420032004360200200310bd05200041086a200328020836020020002003290300370200200341106a24000bbf04030d7f017e017f02400240200241086a2802002203200141086a28020022046a22054101200541014b1b220641ffffffff03712006470d0020064102742205417f4c0d0002400240024020050d00410421070c010b200510242207450d010b2004450d022001280200210802400240024020030d0020082004417f6a22054102746a210320072006417f6a22024102746a21090340200420054d0d0302402003280200450d00200620024d0d03200941003602000b2003417c6a21032009417c6a21092002417f6a21022005417f6a2205417f470d000c060b0b200641027420076a417c6a210a200341027420022802006a417c6a210b4100210c2006210d03402004200c417f736a220520044f0d020240200820054102746a220e280200220f450d0042002110417f2105200a2102200b2109024003402006200d20056a22114d0d0120022009350200200fad7e20107c20023502007c22103e0200201042208821100240200320056a0d002006200c20036a417f736a220220064f0d05200720024102746a20103e02000c030b2002417c6a21022009417c6a2109200e280200210f20032005417f6a22056a22112003490d000b41d0e0c60020112003102a000b41d0e0c60020112006102a000b200a417c6a210a200d417f6a210d200c41016a220c2004460d050c000b0b41bcf8c60020022006102a000b41d0e0c60020052004102a000b20054104102d000b102c000b2000200636020820002006360204200020073602000240200141046a280200450d00200128020010200b0b9e0301087f200028020822024102742103410021042000280200220521000240024003402003450d012004417f6a21042003417c6a210320002802002106200041046a21002006450d000b410121072004417f73200641004741016a4101716a21080c010b41002107410020046b21080b200128020822094102742103410021042001280200220121000240024003402003450d012004417f6a21042003417c6a210320002802002106200041046a21002006450d000b410021032004417f73200641004741016a4101716a21000c010b410020046b2100410121030b024020070d00410020034101736b0f0b4101210402400240024020030d0020022008490d0120092000490d02417f200220086b2203200920006b22064720032006491b22040d0020062003200320064b1b2107200120004102746a2103200520084102746a2100417f210103400240200141016a22012007490d0041000f0b2003280200210420002802002106200341046a2103200041046a2100417f200620044720062004491b2204450d000b0b20040f0b20082002103b000b20002009103b000b820401067f230041e0006b22022400200242f3e885db96cddbb320370308200241086a2001412c6a22032001290300200141086a290300417f411f10e1030240410e101e2204450d002004410029008ed543370000200441066a4100290094d5433700002002428e808080e001370234200220043602302000200241306a10ca012002280238210420022802302100200241c0006a41186a22054200370300200241c0006a41106a22064200370300200241c0006a41086a220742003703002002420037034020002004200241c0006a1001200241106a41186a2005290300370300200241106a41106a2006290300370300200241106a41086a20072903003703002002200229034037031002402002280234450d00200228023010200b20024100360248200242013703402003200241c0006a10ca0120022001360230200241306a200241c0006a10df022002200141106a360230200241306a200241c0006a10df02200128022021042002200141286a2802002201360230200241306a200241c0006a106302402001450d002004200141186c6a2101034020022004360230200241306a200241c0006a10df02200441106a200241c0006a10632001200441186a2204470d000b0b20022802442104200241106a4120200228024022012002280248100502402004450d00200110200b200241e0006a24000f0b410e4101102d000bae1803047f017e027f230041d0036b2202240020022001370300200241e8016a41186a22034200370300200241e8016a41106a22044200370300200241e8016a41086a22054200370300200242003703e80141e2d5c300411a200241e8016a1001200241c8006a41186a2003290300370300200241c8006a41106a2004290300370300200241c8006a41086a2005290300370300200220022903e801370348200241003602e801200241c8006a4120200241e8016a1003210302400240024020022802e8012204417f460d002003450d00024020044108490d002003290000210120031020200241086a200110b804200241003602e801200241086a4120200241e8016a10032103024020022802e8012204417f460d0020030d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200241c0036a41fcbfc4004184b9c400102e000b200241e8016a41186a22034200370300200241e8016a41106a22044200370300200241e8016a41086a22054200370300200242003703e80141e2d5c300411a200241e8016a1001200241c8006a41186a2003290300370300200241c8006a41106a2004290300370300200241c8006a41086a2005290300370300200220022903e801370348200220013703e801200241c8006a4120200241e8016a4108100520004200370310200042003703000c010b200220043602ac03200220033602a803200241e8016a200241a8036a10e90202400240024002400240024002400240024020022903880322064202510d00200241c8006a200241e8016a41a00110cd051a200241286a41106a2205200241a0036a290300370300200241286a41086a220720024198036a290300370300200220022903900337032802402004450d00200310200b200241e8016a200241c8006a41a00110cd051a200241a8036a41106a22032005290300370300200241a8036a41086a22042007290300370300200220022903283703a803200241c8006a200241e8016a41a00110cd051a200241c0006a2205200329030037030020022006370328200220022903a803370330200220042903002206370338200241e8016a200241c8006a41a00110cd051a2002418c036a2005410020064201511b3602002002200236028803200241003602b003200242013703a80320022802b80221044104101e2203450d01200241043602ac03200220022802b003220541046a3602b003200220033602a803200320056a2004360000200241bc026a200241a8036a10cb0420022802ec0221050240024020022802ac03220420022802b00322036b4104490d0020022802a80321040c010b200341046a22072003490d08200441017422032007200320074b1b22034100480d080240024020040d002003101e21040c010b20022802a80320042003102221040b2004450d03200220033602ac03200220043602a80320022802b00321030b2002200341046a3602b003200420036a2005360000024020022802f0024101460d00024020022802ac0320022802b0032203460d0020022802a80321040c070b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c070b20054101102d000b0240024020022802ac0320022802b0032203460d0020022802a80321040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802a80320032005102221040b2004450d04200220053602ac03200220043602a80320022802b00321030b2002200341016a3602b003200420036a41013a000020022802f4022105024020022802ac03220420022802b00322036b4104490d0020022802a80321040c050b200341046a22072003490d07200441017422032007200320074b1b22034100480d070240024020040d002003101e21040c010b20022802a80320042003102221040b02402004450d00200220033602ac03200220043602a80320022802b00321030c050b20034101102d000b41ceb8c4004133200241c0036a41fcbfc4004184b9c400102e000b41044101102d000b20034101102d000b20054101102d000b2002200341046a3602b003200420036a20053600000c010b2002200341016a3602b003200420036a41003a00000b02400240024020022802f8014102470d00024020022802ac0320022802b0032203460d0020022802a80321040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c020b20054101102d000b0240024020022802ac0320022802b0032203460d0020022802a80321040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c010b20054101102d000b2002200341016a3602b003200420036a41013a0000200241e8016a200241a8036a10fb030c010b2002200341016a3602b003200420036a41003a00000b024002400240200241a0026a2802004102470d00024020022802ac0320022802b0032203460d0020022802a80321040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c020b20054101102d000b0240024020022802ac0320022802b0032203460d0020022802a80321040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c010b20054101102d000b2002200341016a3602b003200420036a41013a000020024190026a200241a8036a10fb030c010b2002200341016a3602b003200420036a41003a00000b20022802f8022107200220024180036a28020022033602c003200241c0036a200241a8036a1063024020022802ac03220520022802b00322046b2003490d0020022802a80321050c020b200420036a22082004490d00200541017422042008200420084b1b22044100480d000240024020050d002004101e21050c010b20022802a80320052004102221050b02402005450d00200220043602ac03200220053602a80320022802b00321040c020b20044101102d000b1027000b2002200420036a3602b003200520046a2007200310cd051a200241e8016a41a0016a200241a8036a107e20022802ac032103200241086a412020022802a803220420022802b003100502402003450d00200410200b024020022802bc02450d00200241dc026a2802002104200241d4026a28020021030240200241d8026a2802002205450d00200521070340200328026021032007417f6a22070d000b03402005417f6a22050d000b0b02402004450d004100210541002107410021080340200220083602cc03200220053602c803200220033602c403200220073602c003200241a8036a200241c0036a106120022802b003210720022802b403210320022802b803210520022802bc0321082004417f6a22040d000b0b200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b0240200241fc026a280200450d0020022802f80210200b20022903002106200241e8016a41186a22034200370300200241e8016a41106a22044200370300200241e8016a41086a22054200370300200242003703e80141e2d5c300411a200241e8016a1001200241c8006a41186a2003290300370300200241c8006a41106a2004290300370300200241c8006a41086a2005290300370300200220022903e801370348200220063703e801200241c8006a4120200241e8016a41081005200041186a200137030020004201370310200042003703000b200241d0036a24000bd40c01067f230041106b22022400200241003602082002420137030020002802502103024002400240024002400240024002404104101e2204450d0020024284808080c0003702042002200436020020042003360000200041d4006a200210cb0420002802840121050240024020022802042206200228020822046b4104490d00200441046a2103200228020021060c010b200441046a22032004490d07200641017422072003200720034b1b22074100480d070240024020060d002007101e21060c010b200228020020062007102221060b2006450d0220022007360204200220063602000b20022003360208200620046a200536000002402000280288014101460d000240200228020420022802082204460d00200228020021030c060b200441016a22032004490d07200441017422062003200620034b1b22064100480d070240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c060b20064101102d000b02400240200228020420022802082204460d00200228020021030c010b200441016a22032004490d07200441017422062003200620034b1b22064100480d070240024020040d002006101e21030c010b200228020020042006102221030b2003450d0320022006360204200220033602000b2002200441016a360208200320046a41013a0000200028028c012106024020022802042203200228020822046b4104490d00200228020021030c040b200441046a22052004490d06200341017422072005200720054b1b22054100480d060240024020030d002005101e21030c010b200228020020032005102221030b02402003450d0020022005360204200220033602000c040b20054101102d000b41044101102d000b20074101102d000b20064101102d000b2002200441046a360208200320046a20063600000c010b2002200441016a360208200320046a41003a00000b02400240024020002802104102470d000240200228020420022802082204460d00200228020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b02400240200228020420022802082204460d00200228020021030c010b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c010b20064101102d000b2002200441016a360208200320046a41013a00002000200210fb030c010b2002200441016a360208200320046a41003a00000b024002400240200041386a2802004102470d000240200228020420022802082204460d00200228020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b02400240200228020420022802082204460d00200228020021030c010b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c010b20064101102d000b2002200441016a360208200320046a41013a0000200041286a200210fb030c010b2002200441016a360208200320046a41003a00000b2000280290012105200220004198016a280200220436020c2002410c6a20021063024020022802042206200228020822036b2004490d00200228020021060c020b200320046a22072003490d00200641017422032007200320074b1b22034100480d000240024020060d002003101e21060c010b200228020020062003102221060b02402006450d002002200336020420022006360200200228020821030c020b20034101102d000b1027000b2002200320046a360208200620036a2005200410cd051a200041a0016a20021094012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bbd0602047f047e230041b0016b220424000240024002400240024020002d00000e03010200010b200441e8006a41186a22054200370300200441e8006a41106a22064200370300200441e8006a41086a220742003703002004420037036820012002200441e8006a1001200441086a41186a2005290300370300200441086a41106a2006290300370300200441086a41086a20072903003703002004200429036837030841002101200441a8016a41003a000020044188016a41186a420037030020044188016a41106a420037030020044188016a41086a42003703002004420037038801200441086a200041016a20044188016a10162200417f6a4103490d032000450d02200441fc006a41013602002004420137026c20044184e6c6003602682004410436024c200441b8e6c6003602482004200441c8006a360278200441e8006a4188e7c6001033000b20044188016a41186a200341186a29000037030020044188016a41106a200341106a29000037030020044188016a41086a200341086a290000370300200420032900003703880120012002200041016a20044188016a10174521010c020b20044188016a41186a200341186a29000037030020044188016a41106a200341106a29000037030020044188016a41086a200341086a290000370300200420032900003703880120012002200041016a20044188016a10104521010c010b200441286a41086a20044191016a22002900002208370300200441286a41106a20044199016a22012900002209370300200441286a41186a200441a1016a2202290000220a3703002004200429008901220b37032820042d008801210520002008370000200120093700002002200a370000200420053a0088012004200b37008901200441e8006a41186a22004200370300200441e8006a41106a22014200370300200441e8006a41086a220242003703002004420037036820044188016a4121200441e8006a1001200441c8006a41186a2000290300370300200441c8006a41106a2001290300370300200441c8006a41086a2002290300370300200420042903683703480240200441c8006a2003470d00410121010c010b200441c8006a2003412010cf054521010b200441b0016a240020010bcb0801087f23004190016b220324000240024002402001a70d0042002102420021010c010b024002400240024002400240024002400240024002400240410c101e2204450d002004428180808010370200200441086a410136020020044174460d014110101e2205450d02200541086a4100290090ab4137000020054100290088ab4137000020054110412010222205450d0320052002370010200341c8006a41186a22064200370300200341c8006a41106a22074200370300200341c8006a41086a220842003703002003420037034820054118200341c8006a1001200341286a41186a2006290300370300200341286a41106a2007290300370300200341286a41086a20082903003703002003200329034837032820051020200341286a412041e4fdc6004100410010022105200441086a22062006280200417f6a36020020042004280200417f6a2206360200024020060d0020042004280204417f6a220636020420060d00200410200b2005417f460d09410c101e2204450d042004428180808010370200200441086a410136020020044174460d054110101e2205450d06200541086a4100290090ab4137000020054100290088ab4137000020054110412010222205450d0720052002370010200341c8006a41186a22064200370300200341c8006a41106a22074200370300200341c8006a41086a220842003703002003420037034820054118200341c8006a1001200341286a41186a2006290300370300200341286a41106a2007290300370300200341286a41086a2008290300370300200320032903483703282005102020034100360248200341286a4120200341c8006a1003210520032802482209417f460d0a2005450d0a20032009360284012003200536028001200341c8006a20034180016a10970220032d006822064104460d08200341086a41186a200341c8006a41186a290300370300200341086a41106a200341c8006a41106a290300370300200341086a41086a200341c8006a41086a29030037030020032003290348370308200341ec006a2802002107200341f0006a2802002108200341f4006a280200210a2009450d0b200510200c0b0b410c4104102d000b4196e2c600411820034188016a41f8aac10041c0e2c600102e000b41104101102d000b41204101102d000b410c4104102d000b4196e2c600411820034188016a41f8aac10041c0e2c600102e000b41104101102d000b41204101102d000b41ceb8c400413320034188016a41fcbfc4004184b9c400102e000b41f4d2c30041cb0041a888c6001028000b410421060b200341086a41086a290300210120032903082102200441086a22052005280200417f6a36020020042004280200417f6a2205360200024020050d0020042004280204417f6a220536020420050d00200410200b2006417d6a41ff01714102490d0120072008200a1098020b200020023703002000200137030820034190016a24000f0b41bfd3c300412241a888c6001028000bda0201037f230041106b2202240002400240200028020022002d00004104460d002002200128021841efd2c40041032001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a41f4d2c400105021000c010b200220012802184184d3c40041022001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a4188d3c400105021000b20002d00082101024020002802042203450d00200141ff0171210441012101024020040d00024020034101470d0020002d0009450d00200028020022042d00004104710d0041012101200428021841cea4c00041012004411c6a28020028020c1100000d010b2000280200220128021841cfa4c00041012001411c6a28020028020c11000021010b200020013a00080b200241106a2400200141ff01714100470b8a1801067f230041106b220224000240024002400240024020002802004101460d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41013a0000024020002d0004220341024b0d0002400240024002400240024002400240024002400240024002400240024020030e03000102000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d12200341017422062004200620044b1b22064100480d120240024020030d002006101e21040c010b200128020020032006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a0000200028020821070240200141046a2802002204200628020022036b4104490d00200128020021040c0e0b200341046a22062003490d11200441017422032006200320064b1b22034100480d110240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0e0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d11200341017422062004200620044b1b22064100480d110240024020030d002006101e21040c010b200128020020032006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41013a00002000280208210702400240200141046a2802002204200628020022036b4104490d00200128020021040c010b200341046a22062003490d11200441017422032006200320064b1b22034100480d110240024020040d002003101e21040c010b200128020020042003102221040b2004450d0420012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a2007360000200028020c21070240200141046a2802002204200628020022036b4104490d00200128020021040c0c0b200341046a22062003490d10200441017422032006200320064b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b2004450d0420012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41023a000020002d0005210702400240200141046a28020020062802002203460d00200128020021040c010b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b2004450d0520012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a20073a00002000280208210702400240200141046a2802002204200628020022036b4104490d00200128020021040c010b200341046a22062003490d10200441017422032006200320064b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b2004450d0620012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a2007360000200028020c210702400240200141046a2802002204200628020022036b4104490d00200128020021040c010b200341046a22062003490d10200441017422032006200320064b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b2004450d0720012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a2007360000024020002802104101460d000240200141046a28020020062802002203460d00200128020021040c0b0b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021030c0b0b20064101102d000b02400240200141046a28020020062802002203460d00200128020021040c010b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b2004450d0820012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41013a0000200028021421070240200141046a2802002204200628020022036b4104490d00200128020021040c090b200341046a22062003490d0f200441017422032006200320064b1b22034100480d0f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c090b20034101102d000b20064101102d000b20064101102d000b20034101102d000b20064101102d000b20064101102d000b20034101102d000b20034101102d000b20064101102d000b200141086a200341046a360200200420036a20073600000c030b200141086a200341016a360200200420036a41003a00000c020b200141086a200341046a360200200420036a20073600000c010b200141086a200341046a360200200420036a20073600000b200041186a20011062200028022421060240024002400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b2004450d0120012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200028022821060240200141046a2802002204200528020022036b4104490d00200128020021040c020b200341046a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20034101102d000b200141086a200341046a360200200420036a20063600002002200028022c220436020c2002410c6a21050c010b200141086a200341016a360200200420036a41003a0000200220002802042204360208200241086a21050b0240200141046a2802002203200141086a28020022006b4104490d00200128020021030c020b200041046a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a2802002100200528020021040c020b20004101102d000b1027000b200141086a200041046a360200200320006a2004360000200241106a24000b3400200041f0acc40036020420004100360200200041146a4105360200200041106a41f8acc400360200200041086a42063702000bb50501047f230041e0006b22022400200241086a41086a4200370300200241386a41003a0000200241cc006a4100360200200242003703082002420037032020024200370330200242013702442002410036025820024201370350024002400240024002404108101e2203450d00200242888080808001370254200220033602502003420037000020022802504108411010222203450d0120024290808080c00137025420034100360008200220033602500240024002404110200228025822036b4104490d00200228025021040c010b200341046a22042003490d01411041017422052004200520044b1b22054100480d010240024041100d002005101e21040c010b200228025041102005102221040b2004450d0420022005360254200220043602500b2002200341046a360258200420036a410036000002400240200228025420022802582203460d00200228025021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200228025020032005102221040b2004450d0520022005360254200220043602500b2002200341016a360258200420036a41003a00000240200228025420022802582203460d00200228025021040c060b200341016a22042003490d00200341017422052004200520044b1b22054100480d000240024020030d002005101e21040c010b200228025020032005102221040b02402004450d0020022005360254200220043602500c060b20054101102d000b1027000b41084101102d000b41104101102d000b20054101102d000b20054101102d000b2002200341016a360258200420036a41003a0000200241386a200241d0006a10d9022002410036025c200241dc006a200241d0006a1063200041086a200228025836020020002002290350370200200241e0006a24000baa1001067f230041d0016b22022400200241e0006a4100360200200241a0016a4100360200200241c0006a41023602002002420037028c0120024200370358200242013703980120024102360218200241003602b001200242013703a801024002400240024002400240024002404104101e2203450d0020024284808080c0003702ac01200220033602a80120034100360000200241dc006a200241a8016a10cb04200228028c0121040240024020022802ac01220520022802b00122036b4104490d0020022802a80121050c010b200341046a22062003490d07200541017422032006200320064b1b22034100480d070240024020050d002003101e21050c010b20022802a80120052003102221050b2005450d02200220033602ac01200220053602a80120022802b00121030b2002200341046a3602b001200520036a200436000002402002280290014101460d00024020022802ac0120022802b0012203460d0020022802a80121050c060b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c060b20044101102d000b0240024020022802ac0120022802b0012203460d0020022802a80121050c010b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b20022802a80120032004102221050b2005450d03200220043602ac01200220053602a80120022802b00121030b2002200341016a3602b001200520036a41013a00002002280294012104024020022802ac01220520022802b00122036b4104490d0020022802a80121050c040b200341046a22062003490d06200541017422032006200320064b1b22034100480d060240024020050d002003101e21050c010b20022802a80120052003102221050b02402005450d00200220033602ac01200220053602a80120022802b00121030c040b20034101102d000b41044101102d000b20034101102d000b20044101102d000b2002200341046a3602b001200520036a20043600000c010b2002200341016a3602b001200520036a41003a00000b02400240024020022802184102470d00024020022802ac0120022802b0012203460d0020022802a80121050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c020b20044101102d000b0240024020022802ac0120022802b0012203460d0020022802a80121050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c010b20044101102d000b2002200341016a3602b001200520036a41013a0000200241086a200241a8016a10fb030c010b2002200341016a3602b001200520036a41003a00000b02400240024020022802404102470d00024020022802ac0120022802b0012203460d0020022802a80121050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c020b20044101102d000b0240024020022802ac0120022802b0012203460d0020022802a80121050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c010b20044101102d000b2002200341016a3602b001200520036a41013a0000200241306a200241a8016a10fb030c010b2002200341016a3602b001200520036a41003a00000b2002280298012106200220022802a00122033602c001200241c0016a200241a8016a1063024020022802ac01220420022802b00122056b2003490d0020022802a80121040c020b200520036a22072005490d00200441017422052007200520074b1b22054100480d000240024020040d002005101e21040c010b20022802a80120042005102221040b02402004450d00200220053602ac01200220043602a80120022802b00121050c020b20054101102d000b1027000b2002200520036a3602b001200420056a2006200310cd051a200041086a20022802b001360200200020022903a8013702000240200228025c450d00200241fc006a2802002105200241f4006a28020021030240200241f8006a2802002200450d00200021040340200328026021032004417f6a22040d000b03402000417f6a22000d000b0b02402005450d004100210041002104410021060340200220003602cc01200220043602c801200220033602c401200220063602c001200241a8016a200241c0016a106120022802b001210620022802b401210320022802b801210420022802bc0121002005417f6a22050d000b0b200341908cc500460d0020032802002100200310202000450d0020002802002105200010202005450d00024020052802002203450d000340200510202003210520032802002200210320000d000b0b200510200b0240200228029c01450d0020022802980110200b200241d0016a24000b8a0201057f230041d0006b220224000240410e101e2203450d00200341002900d8d643370000200341066a41002900ded6433700002002428e808080e001370224200220033602202000200241206a10ca012002280228210320022802202100200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020002003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b20024120360234200220023602302001200241306a108203200241d0006a24000f0b410e4101102d000bc90501047f200141046a2802002102200141086a2802002103024002400240024002400240200028020022040d00024020022003460d00200128020021020c020b200341016a22022003490d03200341017422042002200420024b1b22044100480d030240024020030d002004101e21020c010b200128020020032004102221020b02402002450d0020012002360200200141046a2004360200200141086a28020021030c020b20044101102d000b0240024020022003460d00200128020021020c010b200341016a22022003490d03200341017422052002200520024b1b22054100480d030240024020030d002005101e21020c010b200128020020032005102221020b02402002450d0020012002360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200220036a41013a00002004280200200110ca010c010b200141086a200341016a360200200220036a41003a00000b200141046a2802002102200141086a28020021030240200028020422040d00024020022003460d00200128020021000c040b200341016a22002003490d01200341017422022000200220004b1b22024100480d010240024020030d002002101e21000c010b200128020020032002102221000b02402000450d0020012000360200200141046a2002360200200141086a28020021030c040b20024101102d000b024020022003460d00200128020021000c020b200341016a22002003490d00200341017422022000200220004b1b22024100480d000240024020030d002002101e21000c010b200128020020032002102221000b02402000450d0020012000360200200141046a2002360200200141086a28020021030c020b20024101102d000b1027000b200141086a200341016a360200200020036a41013a00002004200110ca010f0b200141086a200341016a360200200020036a41003a00000bb307030b7f037e037f230041f0006b22022400024002400240024002400240410e101e2203450d00200341002900c78b45370000200341066a41002900cd8b453700002002428e808080e001370234200220033602302001200241306a10ca012002280238210320022802302101200241c0006a41186a22044200370300200241c0006a41106a22054200370300200241c0006a41086a220642003703002002420037034020012003200241c0006a1001200241106a41186a2004290300370300200241106a41106a2005290300370300200241106a41086a20062903003703002002200229034037031002402002280234450d00200228023010200b20024100360240200241106a4120200241c0006a1003210720022802402208417f460d032007450d032002200836023420022007360230200241086a200241306a105f20022802080d05200228023422034160712201417f4c0d01200228020c2109024002402003410576220a0d004108210b0c010b2001101e220b450d030b02402009450d004100210c41002106410021050340200241c0006a200241306a109d030240024020022d00404101460d00200228023422014110490d002002290041210d20022002280230220341106a3602302002200141706a220436023420044104490d00200341086a290000210e2003290000210f20022001416c6a22043602342002200341146a3602302004450d00200541016a210420032800102110200241e6006a41026a200241ed006a41026a2d000022113a0000200241e2006a41026a221220113a000020022001416b6a3602342002200341156a360230200220022f006d22013b0166200220013b016220032d001421012005200a470d010240200c2004200c20044b1b220a41ffffff3f71200a470d00200a41057422034100480d000240024020050d002003101e210b0c010b200b200620031022210b0b200b0d0220034108102d000b1027000b200a450d08200b10200c080b200b20066a2203411c6a20013a00002003200e3703082003200f370300200341146a200d370200200341106a20103602002003411d6a20022f01623b00002003411f6a20122d00003a0000200c41026a210c200641206a21062004210520092004470d000b0b200b450d052009ad422086200aad84210d02402008450d00200710200b2000200d3702042000200b3602000c040b410e4101102d000b102c000b20014108102d000b20004100360208200042083702000b200241f0006a24000f0b41ceb8c4004133200241c0006a41fcbfc4004184b9c400102e000bb90201057f230041d0006b220224000240410e101e2203450d00200341002900c78b45370000200341066a41002900cd8b453700002002428e808080e001370224200220033602202000200241206a10ca012002280228210320022802202100200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020002003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b200241306a20012802002203200128020810f50420024120200228023022002002280238100502402002280234450d00200010200b0240200141046a280200450d00200310200b200241d0006a24000f0b410e4101102d000b3400200041a3b6c40036020420004100360200200041146a4101360200200041106a41acb6c400360200200041086a42093702000bbd0201037f230041106b220224000240024020002d00004104470d002002200128021841e4c8c400410d2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841c8e0c60041052001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a41d4c8c4001050210120022d0008210020022802042203450d00200041ff0171210441012100024020040d00024020034101470d0020012d0009450d00200128020022042d00004104710d0041012100200428021841cea4c00041012004411c6a28020028020c1100000d010b2001280200220028021841cfa4c00041012000411c6a28020028020c11000021000b200120003a00080b200241106a2400200041ff01714100470bc50201037f230041206b2202240002400240200028020022002d00004103470d0020022001280218418886c70041262001411c6a28020028020c11000022003a001820022001360210200241003a0019200241003602140c010b2002200128021841ae86c700410e2001411c6a28020028020c1100003a001820022001360210200241003a0019200241003602142002200036020c200241106a2002410c6a41bc86c7001050210120022d0018210020022802142203450d00200041ff0171210441012100024020040d00024020034101470d0020012d0009450d00200128020022042d00004104710d0041012100200428021841cea4c00041012004411c6a28020028020c1100000d010b2001280200220028021841cfa4c00041012000411c6a28020028020c11000021000b200120003a00080b200241206a2400200041ff01714100470b810101027f230041106b220124002001410036020420004110200141046a1003210002400240024020012802042202417f470d00410421020c010b024020000d00410421020c010b2002450d0120002d0000220241044f0d01200010200b200141106a240020020f0b41ceb8c4004133200141086a41fcbfc4004184b9c400102e000bc00302057f047e230041d0006b220224000240024002400240411f101e2203450d002003410029008bc944370000200341176a41002900a2c944370000200341106a410029009bc944370000200341086a4100290093c9443700002002429f808080f003370224200220033602202001200241206a10ca012002280228210320022802202101200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020012003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302201417f460d022003450d0220014110490d0120014170714110460d01200341086a290000210720032900002108200341186a29000021092003290010210a200310200c030b411f4101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b4200210a4200210942002108420021070b2000200a37031020002008370300200041186a200937030020002007370308200241d0006a24000bdb0401047f230041206b2202240020012d000021030240024002400240024002404101101e2204450d00200420033a000020012d0001210320044101410210222204450d01200420033a000120012d0002210320044102410410222204450d02200420033a0002200420012d00033a000320012d0004210320044104410810222204450d03200420033a0004200420012d00053a0005200420012d00063a0006200420012d00073a000720012d0008210320044108411010222204450d04200420033a0008200420012d00093a0009200420012d000a3a000a200420012d000b3a000b200420012d000c3a000c200420012d000d3a000d200420012d000e3a000e200420012d000f3a000f20012d0010210320044110412010222204450d05200420033a0010200420012d00113a0011200420012d00123a0012200420012d00133a0013200420012d00143a0014200420012d00153a0015200420012d00163a0016200420012d00173a0017200420012d00183a0018200420012d00193a0019200420012d001a3a001a200420012d001b3a001b200420012d001c3a001c200420012d001d3a001d200420012d001e3a001e200420012d001f3a001f200241186a22014200370300200241106a22034200370300200241086a22054200370300200242003703002004412020021001200041186a2001290300370000200041106a2003290300370000200041086a20052903003700002000200229030037000020041020200241206a24000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b13002000410136020420004190cbc4003602000b3400200041caccc40036020420004100360200200041146a4104360200200041106a41d4ccc400360200200041086a42083702000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241003600000bc20201037f230041106b2202240002400240200028020022002d00004103470d002002200128021841e4c8c400410d2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841c8e0c60041052001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a4198d3c4001050210120022d0008210020022802042203450d00200041ff0171210441012100024020040d00024020034101470d0020012d0009450d00200128020022042d00004104710d0041012100200428021841cea4c00041012004411c6a28020028020c1100000d010b2001280200220028021841cfa4c00041012000411c6a28020028020c11000021000b200120003a00080b200241106a2400200041ff01714100470bd60101017f230041106b22022400024002400240024020002802002d00000e03010200010b20022001280218419285c700410d2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b20022001280218419f85c700410f2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841ae85c70041212001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000b130020004103360204200041a8d4c4003602000b3400200041eedbc40036020420004100360200200041146a4101360200200041106a41f4dbc400360200200041086a42043702000b4001017f230041206b22022400200241186a4200370300200241106a4200370300200241086a4200370300200242003703002000200210de01200241206a24000bb80201057f230041206b22012400200141106a41086a220242003703002001420037031041a1dfc4004115200141106a1000200141086a2002290300370300200120012903103703002001410036021020014110200141106a100321020240024020012802102203417f460d002002450d0002402003450d0020022d0000220441024b0d002003417f6a2105024002400240024020040e03000102000b410021032001410036021020054104490d032001200228000122043602100c020b2001410036021020054104490d02200120022800012204360210410121030c010b2001410036021020054104490d01200120022800012204360210410221030b200210200c020b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000b410321030b2000200436020420002003360200200141206a24000bd30102027f047e230041106b220224002002410036020420014120200241046a1003210102400240024020022802042203417f470d00420021040c010b024020010d00420021040c010b20034110490d0120034170714110460d01200141086a290000210420012900002105200141186a29000021062001290010210720011020200041206a2006370300200041186a2007370300200041106a200437030020002005370308420121040b20002004370300200241106a24000f0b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bc90401057f23004180016b22002400200041106a41086a220142003703002000420037031041ecdec4004115200041106a1000200041086a2001290300370300200020002903103703002000410036021020004110200041106a100321010240024020002802102202417f460d002001450d00024020024104490d002001280000210220011020200241016a21020c020b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000b410121020b200041106a41086a220142003703002000420037031041ecdec4004115200041106a1000200041086a22032001290300370300200020002903103703002000200236021020004110200041106a4104100520014200370300200042003703104181dfc4004120200041106a100020032001290300370300200020002903103703002000410036021020004110200041106a100321010240024002400240024020002802102203417f470d0041e40021030c010b024020010d0041e40021030c010b20034104490d0120012800002103200110200b10792104200041106a41086a220142003703002000420037031041a1dfc4004115200041106a1000200041086a2001290300370300200020002903103703004101101e2201450d01200141003a000020014101410510222201450d022001200420036a3600012000411020014105100520011020200041186a2002360200200041013a00142000410a3a0010200041106a107720004180016a24000f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000b41014101102d000b41054101102d000b3400200041b6dfc40036020420004100360200200041146a4111360200200041106a41c8dfc400360200200041086a420f3702000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241e8073600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241143600000b3001017f02404104101e22020d0041044101102d000b20004284808080c000370204200020023602002002410a3600000ba30603017f027e047f230041a0016b22022400200241086a410041e10010cc051a20024100360298012002420137039001200241286a20024190016a10ca01200220024190016a36029c01200241c8006a2002419c016a10b901200241106a29030021032002290308210402400240024002400240200228029401220520022802980122066b4110490d0020022802900121070c010b200641106a22072006490d01200541017422062007200620074b1b22084100480d010240024020050d002008101e21070c010b20022802900120052008102221070b02402007450d00200220083602940120022007360290012002280298012106200821050c010b20084101102d000b200720066a22082003370008200820043700002002200641106a220636029801200241206a29030021032002290318210402400240200520066b410f4d0d00200521080c010b200641106a22082006490d01200541017422062008200620084b1b22084100480d010240024020050d002008101e21070c010b200720052008102221070b2007450d022002200836029401200220073602900120022802980121060b200720066a22052003370008200520043700002002200641106a220536029801024020022d00684101460d000240024020082005470d00200841016a22052008490d03200841017422062005200620054b1b22054100480d030240024020080d002005101e21070c010b200720082005102221070b2007450d012002200536029401200220073602900120022802980121050b2002200541016a36029801200720056a41003a00000c040b20054101102d000b0240024020082005470d00200841016a22052008490d02200841017422062005200620054b1b22054100480d020240024020080d002005101e21070c010b200720082005102221070b2007450d012002200536029401200220073602900120022802980121050b2002200541016a36029801200720056a41013a0000200241e9006a20024190016a10ca010c030b20054101102d000b1027000b20084101102d000b2000200229039001370200200041086a20024190016a41086a280200360200200241a0016a24000b2f01017f02404101101e22020d0041014101102d000b200042818080801037020420002002360200200241013a00000bc50302067f037e230041e0006b2203240002400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370234200320043602302000200341306a10ca012003280238210420032802302105200341c0006a41186a22064200370300200341c0006a41106a22074200370300200341c0006a41086a220842003703002003420037034020052004200341c0006a1001200341106a41186a2006290300370300200341106a41106a2007290300370300200341106a41086a20082903003703002003200329034037031002402003280234450d00200328023010200b20034100360240200341106a4120200341c0006a1003210420032802402205417f460d022004450d0220054110490d01200441086a29000021092004290000210a200410200c030b41144101102d000b41ceb8c4004133200341c0006a41fcbfc4004184b9c400102e000b4200210a420021090b410021040240200a20017d220b200a56200920027d200a200154ad7d220a200956200a2009511b0d00200341086a20004104200b200a10940420032802084521040b200341e0006a240020040b890601067f230041e0026b22022400024002404115101e2203450d00200341002900eef2443700002003410d6a41002900fbf244370000200341086a41002900f6f24437000020024295808080d002370234200220033602302002200241306a3602d8012001200241d8016a10b9012002280230210320022802382101200241d8016a41186a22044200370300200241d8016a41106a22054200370300200241d8016a41086a22064200370300200242003703d80120032001200241d8016a100120024190016a41186a200429030037030020024190016a41106a200529030037030020024190016a41086a2006290300370300200220022903d8013703900102402002280234450d00200228023010200b200241003602d80120024190016a4120200241d8016a100321030240024020022802d8012204417f470d00410221010c010b024020030d00410221010c010b200220043602b401200220033602b001200241d8016a200241b0016a10da0320022d00b80222014102460d02200241306a200241d8016a41e00010cd051a200241276a200241d8026a290000370000200241206a200241d1026a290000370300200241186a200241c9026a290000370300200241106a200241c1026a290000370300200220022900b9023703082004450d00200310200b200241d8016a200241306a41e00010cd051a200241b0016a411f6a2204200241086a411f6a290000370000200241b0016a41186a2205200241086a41186a290300370300200241b0016a41106a2206200241086a41106a290300370300200241b0016a41086a2207200241086a41086a290300370300200220022903083703b0010240024020014102470d002000410041e10010cc051a0c010b2000200241d8016a41e00010cd05220320013a0060200341e1006a20022903b001370000200341e9006a2007290300370000200341f1006a2006290300370000200341f9006a200529030037000020034180016a20042900003700000b200241e0026a24000f0b41154101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000bd425030a7f077e097f23004190016b22032400024002400240024002400240024020002802082204450d002000280200220520044188016c6a210603400240024020052d00604101470d00200541e0006a41016a21072001280204210820012100034002400240200028020022092f0106220a0d004100210b0c010b200a4105742100200941086a2104417f210b0340024020000d00200a210b0c020b20072004412010cf05220c450d04200041606a2100200b41016a210b200441206a2104200c417f4a0d000b0b2008450d012008417f6a21082009200b4102746a41a8086a21000c000b0b200541206a210402402005290300220d200541086a290300220e84500d002004200d200e108f030b2005290310200541186a220b29030084500d004122101e2200450d03200041002900cade44370000200041206a41002f00eade443b0000200041186a41002900e2de44370000200041106a41002900dade44370000200041086a41002900d2de44370000200342a2808080a00437020c200320003602082004200341086a10ca012003280210210020032802082104200341306a41186a220c4200370300200341306a41106a22074200370300200341306a41086a220842003703002003420037033020042000200341306a1001200341f0006a41186a200c290300370300200341f0006a41106a2007290300370300200341f0006a41086a2008290300370300200320032903303703700240200328020c450d00200328020810200b200341086a200341f0006a10e2042003290308210e200341086a41206a290300210f200341086a41106a29030021102003290310211120032903202112200b29030021132005290310210d4110101e2200450d04200020104200200e42015122041b37000820002011420020041b37000020004110412010222200450d052000200d2012420020041b7c220e370010200041186a2013200f420020041b7c200e200d54ad7c370000200341f0006a4120200041201005200010200b20054188016a22052006470d000b0b200341086a41086a220042003703002003420037030841afdec400411b200341086a1000200341f0006a41086a20002903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d042000450d042003200436025420032000360250200341086a200341d0006a10e30120032802082209450d03200329020c21102004450d05200010200c050b41224101102d000b41104101102d000b41204101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b41012109420021100b024002400240024002402010422088a72200450d002000410574210b200921000340200041086a290000210d200041106a290000210e2000290000210f200341086a41186a200041186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f3703084115101e2204450d02200441002900eef2443700002004410d6a41002900fbf244370000200441086a41002900f6f24437000020034295808080d002370254200320043602502003200341d0006a360230200341086a200341306a10b901200328025021042003280258210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a22084200370300200342003703302004200c200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a20082903003703002003200329033037037002402003280254450d00200328025010200b200041206a2100200341f0006a41201004200b41606a220b0d000b0b02402010a7450d00200910200b200341086a41086a220042003703002003420037030841afdec400411b200341086a1000200341f0006a41086a2204200029030037030020032003290308370370200341f0006a4110100420004200370300200342003703084195dec400411a200341086a1000200420002903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082214450d01200329020c210d2004450d03200010200c030b41154101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b410121144200210d0b200da72115024002400240024002400240200d422088a72200450d00201420004105746a210a2001280200210620012802042116201421080340200841086a290000210d200841106a290000210e2008290000210f200341086a41186a200841186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f370308200841206a21082006210720162105024003400240024020072f010622090d004100210b0c010b20094105742100200741086a2104417f210b0340024020000d002009210b0c020b200341086a2004412010cf05220c450d03200041606a2100200b41016a210b200441206a2104200c417f4a0d000b0b02402005450d002005417f6a21052007200b4102746a41a8086a28020021070c010b0b200341306a41086a2200200341086a41086a290300370300200341306a41106a2204200341086a41106a290300370300200341306a41186a220b200341086a41186a29030037030020032003290308220d3703502003200d3703304120101e2217450d0420172003290330370000201741186a200b290300370000201741106a2004290300370000201741086a2000290300370000024002402008200a470d0041012118410121190c010b4101211841012119034020012802002106200128020421160340200341086a41186a221a200841186a290000370300200341086a41106a221b200841106a290000370300200341086a41086a221c200841086a29000037030020032008290000370308200841206a210820062107201621050240024003400240024020072f010622090d004100210b0c010b20094105742100200741086a2104417f210b0340024020000d002009210b0c020b200341086a2004412010cf05220c450d03200041606a2100200b41016a210b200441206a2104200c417f4a0d000b0b2005450d022005417f6a21052007200b4102746a41a8086a28020021070c000b0b2008200a470d010c030b0b200341306a41086a201c290300220d370300200341306a41106a201b290300220e370300200341306a41186a201a290300220f370300200320032903082210370330200341d0006a41186a2204200f370300200341d0006a41106a220b200e370300200341d0006a41086a220c200d37030020032010370350024020192018470d000240201841016a22002018490d00201841017422072000200720004b1b221941ffffff3f712019470d00201941057422004100480d000240024020180d002000101e21170c010b201720184105742000102221170b20170d0120004101102d000b1027000b201720184105746a22002003290350370000200041186a2004290300370000200041106a200b290300370000200041086a200c290300370000201841016a21182008200a470d000b0b02402015450d00201410200b2017201810ee042019450d03201710200c030b2008200a470d000b0b02402015450d00201410200b4101410010ee040b200341086a41086a22004200370300200342003703084195dec400411a200341086a1000200341f0006a41086a20002903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082209450d01200329020c21102004450d03200010200c030b41204101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002110410121090b02400240024002400240024002400240024002402010422088a72200450d002000410574210b200921000340200041086a290000210d200041106a290000210e2000290000210f200341086a41186a200041186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f370308411f101e2204450d022004410029008bc944370000200441176a41002900a2c944370000200441106a410029009bc944370000200441086a4100290093c9443700002003429f808080f00337025420032004360250200341086a200341d0006a10ca01200328025821042003280250210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a2208420037030020034200370330200c2004200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a20082903003703002003200329033037037002402003280254450d00200328025010200b200041206a2100200341f0006a41201004200b41606a220b0d000b0b02402010a7450d00200910200b200341086a41086a22094200370300200342003703084195dec400411a200341086a1000200341f0006a41086a220a200929030037030020032003290308370370200341f0006a411010042002450d0420094200370300200342003703084189ddc4004124200341086a1000200a20092903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082201450d01200329020c21112004450d03200010200c030b411f4101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002111410121010b02402011422088a72200450d002000410574210b2001210403404122101e2200450d03200041002900cade44370000200041206a41002f00eade443b0000200041186a41002900e2de44370000200041106a41002900dade44370000200041086a41002900d2de44370000200342a2808080a00437020c200320003602082004200341086a10ca01200328021021002003280208210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a2208420037030020034200370330200c2000200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a2008290300370300200320032903303703700240200328020c450d00200328020810200b200341086a200341f0006a10e204024020032903204200200329030842015122001b220d2003290310420020001b220e84200341086a41206a290300420020001b220f200341086a41106a290300420020001b22108484500d002004200d200e7c220e200f20107c200e200d54ad7c108f030b200441206a2104200b41606a220b0d000b0b2011a7450d00200110200b20094200370300200342003703084189ddc4004124200341086a1000200a20092903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082209450d01200329020c21102004450d03200010200c030b41224101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002110410121090b024002402010422088a72200450d002000410574210b200921040340200441086a290000210d200441106a290000210e2004290000210f200341086a41186a200441186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f3703084122101e2200450d02200041002900cade44370000200041206a41002f00eade443b0000200041186a41002900e2de44370000200041106a41002900dade44370000200041086a41002900d2de44370000200342a2808080a00437025420032000360250200341086a200341d0006a10ca01200328025821002003280250210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a2208420037030020034200370330200c2000200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a20082903003703002003200329033037037002402003280254450d00200328025010200b200441206a2104200341f0006a41201004200b41606a220b0d000b0b02402010a7450d00200910200b200341086a41086a22004200370300200342003703084189ddc4004124200341086a1000200341f0006a41086a2204200029030037030020032003290308370370200341f0006a41101004200042003703002003420037030841a1dfc4004115200341086a10002004200029030037030020032003290308370370200341f0006a4110100420034190016a24000f0b41224101102d000bef0101037f23004180016b22012400024020002802202202450d00034020002002417f6a360220200141f0006a41086a200041086a2202290200370300200120002902003703702001200141f0006a10e1022002200141086a2903003702002000200129030037020020012802402202450d0102402001280244450d00200210200b200028022022020d000b0b02402000280204220041908cc500460d0020002802002103200010202003450d0020032802002102200310202002450d00024020022802002200450d000340200210202000210220002802002203210020030d000b0b200210200b20014180016a24000ba21106047f017e047f027e077f047e230041b0016b22022400200241286a41086a22034200370300200242003703284195dec400411a200241286a100020024190016a41086a200329030037030020022002290328370390012002410036022820024190016a4110200241286a100321030240024020022802282204417f460d002003450d002002200436027420022003360270200241286a200241f0006a10e301024020022802282205450d00200229022c21062004450d02200310200c020b41ceb8c4004133200241d0006a41fcbfc4004184b9c400102e000b41012105420021060b2006a72107024002400240024002400240024002402006422088a72203450d00200520034105746a2108200141057421092005210a0340200a41086a2900002106200a41106a290000210b200a290000210c200241286a41186a200a41186a290000370300200241286a41106a200b370300200241286a41086a20063703002002200c370328200a41206a210a200921042000210303402004450d030240200241286a2003460d00200441606a21042003200241286a412010cf05210d200341206a2103200d0d010b0b200a2008470d000b0b4101210e4100210f02402007450d00200510200b410021100c010b20024190016a41086a2203200241286a41086a29030037030020024190016a41106a2204200241286a41106a29030037030020024190016a41186a220d200241286a41186a29030037030020022002290328220637035020022006370390014120101e220e450d01200e200229039001370000200e41186a200d290300370000200e41106a2004290300370000200e41086a200329030037000002400240200a2008470d004101210f410121100c010b200141057421114101210f410121100340200241286a41186a2209200a41186a290000370300200241286a41106a2212200a41106a290000370300200241286a41086a2213200a41086a2900003703002002200a290000370328200a41206a210a2011210420002103024003402004450d010240200241286a2003460d00200441606a21042003200241286a412010cf05210d200341206a2103200d0d010b0b200a2008470d010c020b20024190016a41086a2013290300220637030020024190016a41106a2012290300220b37030020024190016a41186a2009290300220c37030020022002290328221437039001200241d0006a41186a2204200c370300200241d0006a41106a220d200b370300200241d0006a41086a220920063703002002201437035002402010200f470d000240200f41016a2203200f490d00200f41017422122003201220034b1b221041ffffff3f712010470d00201041057422034100480d0002400240200f0d002003101e210e0c010b200e200f41057420031022210e0b200e0d0120034101102d000b1027000b200e200f4105746a22032002290350370000200341186a2004290300370000200341106a200d290300370000200341086a2009290300370000200f41016a210f200a2008470d000b0b2007450d00200510200b02402001450d002001410574210d200241086a41086a2113200241086a41186a21080340200241086a200010d704200829030021062002290318210b02402002290308220c2013290300221484500d002000200c2014108f030b0240200b200684500d004122101e2203450d04200341002900cade44370000200341206a41002f00eade443b0000200341186a41002900e2de44370000200341106a41002900dade44370000200341086a41002900d2de44370000200242a2808080a00437022c200220033602282000200241286a10ca01200228023021032002280228210420024190016a41186a220a420037030020024190016a41106a2209420037030020024190016a41086a2212420037030020024200370390012004200320024190016a1001200241f0006a41186a200a290300370300200241f0006a41106a2009290300370300200241f0006a41086a201229030037030020022002290390013703700240200228022c450d00200228022810200b200241286a200241f0006a10e2042002290328210c200241286a41206a290300211420022903402115200241286a41106a2903002116200229033021174110101e2203450d05200320174200200c42015122041b220c200b7c220b37000020032016420020041b20067c200b200c54ad7c37000820034110412010222203450d0620032015420020041b370010200341186a2014420020041b370000200241f0006a4120200341201005200310200b411f101e2203450d062003410029008bc944370000200341176a41002900a2c944370000200341106a410029009bc944370000200341086a4100290093c9443700002002429f808080f00337022c200220033602282000200241286a10ca01200228023021032002280228210420024190016a41186a220a420037030020024190016a41106a2209420037030020024190016a41086a2212420037030020024200370390012004200320024190016a1001200241f0006a41186a200a290300370300200241f0006a41106a2009290300370300200241f0006a41086a201229030037030020022002290390013703700240200228022c450d00200228022810200b200041206a2100200241f0006a41201004200d41606a220d0d000b0b200241286a41086a22034200370300200242003703284195dec400411a200241286a100020024190016a41086a2003290300370300200220022903283703900120024100360230200242013703282002200f360270200241f0006a200241286a10630240200f450d00200f4105742104200e210303402003200241286a10ca01200341206a2103200441606a22040d000b0b200228022c210320024190016a4110200228022822042002280230100502402003450d00200410200b02402010450d00200e10200b200241b0016a24000f0b41204101102d000b41224101102d000b41104101102d000b41204101102d000b411f4101102d000bc03104077f037e337f067e230041b00e6b2204240020044180026a41186a200241186a29000037030020044180026a41106a200241106a29000037030020044180026a41086a200241086a2900003703002004200229000037038002024002400240024002400240024002400240024002402001280200220541908cc500460d00200128020421060c010b41002106200441f0026a410041e00210cc051a200441d8056a410041c00510cc051a41a808101e2205450d01200541003b010620054100360200200541086a200441f0026a41e00210cd051a200541e8026a200441d8056a41c00510cd051a20014100360204200120053602000b024003400240024020052f010622070d00410021080c010b20074105742102200541086a2109417f21080340024020020d00200721080c020b200841016a210820044180026a2009412010cf05220a450d03200241606a2102200941206a2109200a417f4a0d000b0b02402006450d002006417f6a2106200520084102746a41a8086a28020021050c010b0b200441186a220220044180026a41186a2209290300370300200441106a20044180026a41106a220a290300220b370300200441086a20044180026a41086a2206290300220c3703002004200429038002220d3703002001200128020841016a36020820044188016a41106a2207200b37030020044188016a41086a220e200c37030020044188016a41186a220f20022903003703002004200d3703880120044180026a41386a2210200341386a29030037030020044180026a41306a2211200341306a29030037030020044180026a41286a2212200341286a29030037030020044180026a41206a2213200341206a2903003703002009200341186a290300370300200a200341106a2903003703002006200341086a2903003703002004200329030037038002024020052f01062203410b490d0002400240200541908cc500460d00200441f0026a410041e00210cc051a200441d8056a410041c00510cc051a41a808101e22140d0141a8084108102d000b41c8a6c000412d41a888c6001028000b201441003b010620144100360200201441086a200441f0026a41e00210cd052109201441e8026a200441d8056a41c00510cd05210a200441d8056a41086a2206200541f0056a290300370300200441d8056a41106a2203200541f8056a290300370300200441d8056a41186a220720054180066a290300370300200441d8056a41206a220e20054188066a290300370300200441d8056a41286a220f20054190066a290300370300200441d8056a41306a221020054198066a290300370300200441d8056a41386a2211200541a0066a290300370300200420052f00c8013b01ec022004200541ca016a2d00003a00ee02200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703d805200541cb016a2800002115200541cf016a2800002116200541d3016a2800002117200541d7016a28000021182009200541e8016a20052f010641796a220241057410cd052109200a200541a8066a200241067410cd05210a200541063b0106201420023b0106200420042f01ec023b01d402200420042d00ee023a00d602200420042903d8023703c002200420042900dd023700c502200441f0026a41386a2011290300370300200441f0026a41306a2010290300370300200441f0026a41286a200f290300370300200441f0026a41206a200e290300370300200441f0026a41186a2007290300370300200441f0026a41106a2003290300370300200441f0026a41086a2006290300370300200420042903d8053703f0020240024020084107490d0020092008417a6a22064105746a2009200841796a22084105746a2209200241ffff037120086b41057410ce051a200941186a20044188016a41186a290300370000200941106a20044188016a41106a290300370000200941086a20044188016a41086a2903003700002009200429038801370000200a20064106746a200a20084106746a2202201441066a22092f010020086b41067410ce051a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b200541066a2109200541086a2202200841016a220a4105746a200220084105746a220220052f010620086b41057410ce051a200241186a20044188016a41186a290300370000200241106a20044188016a41106a290300370000200241086a20044188016a41086a2903003700002002200429038801370000200541e8026a2202200a4106746a200220084106746a220220052f010620086b41067410ce051a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b200920092f010041016a3b0100200441e8016a41026a220220042d00d6023a0000200441a8016a41086a2219200441f0026a41086a221a290300370300200441a8016a41106a221b200441f0026a41106a221c290300370300200441a8016a41186a221d200441f0026a41186a221e290300370300200441a8016a41206a221f200441f0026a41206a2220290300370300200441a8016a41286a2221200441f0026a41286a2222290300370300200441a8016a41306a2223200441f0026a41306a2224290300370300200441a8016a41386a2225200441f0026a41386a2226290300370300200420042f01d4023b01e801200420042903c002370378200420042900c50237007d200420042903f0023703a801200441386a41386a22272025290300370300200441386a41306a22282023290300370300200441386a41286a22292021290300370300200441386a41206a222a201f290300370300200441386a41186a222b201d290300370300200441386a41106a222c201b290300370300200441386a41086a222d2019290300370300200441346a41026a222e20022d00003a0000200420042903a8013703382004200429007d37002520042004290378370320200420042f01e8013b01340240200528020022060d004100212f0c060b20052f01042130200441d8056a41027221314100212f0340200441fc016a41026a2232202e2d00003a0000200420042f01343b01fc01200420042903203703782004200429002537007d20044180026a41386a2233202729030037030020044180026a41306a2234202829030037030020044180026a41286a2235202929030037030020044180026a41206a2236202a29030037030020044180026a41186a2237202b29030037030020044180026a41106a2238202c29030037030020044180026a41086a2239202d290300370300200420042903383703800241000d04203041ffff0371210502400240024020062f01062202410b490d002031410041d20810cc051a41d808101e220a450d08200a4100360200200a41046a200441d8056a41d40810cd051a200420062f00c8013b01ec022004200641ca016a2d00003a00ee02200420062900db013703d8022004200641e0016a2900003700dd02200641cb016a280000213a200641cf016a280000213b200641d3016a280000213c200641d7016a280000213d200441d8056a41386a2207200641a0066a290300370300200441d8056a41306a220e20064198066a290300370300200441d8056a41286a220f20064190066a290300370300200441d8056a41206a221020064188066a290300370300200441d8056a41186a221120064180066a290300370300200441d8056a41106a2212200641f8056a290300370300200441d8056a41086a2213200641f0056a290300370300200420062903e8053703d805200a41086a200641e8016a20062f0106220941796a220241057410cd05213e200a41e8026a200641a8066a200241067410cd05213f200a41a8086a200641c4086a2009417a6a220341027410cd052140200641063b0106200a20023b010602402003450d00410021022040210903402009280200220820023b01042008200a360200200941046a21092003200241016a2202470d000b0b202620072903003703002024200e2903003703002022200f29030037030020202010290300370300201e2011290300370300201c2012290300370300201a2013290300370300200420042903d8053703f002200420042f01ec023b01d402200420042d00ee023a00d602200420042900dd023700c502200420042903d8023703c002200441d4056a41026a220320042d00d6023a0000200420042f01d4023b01d405200420042903c00237038801200420042900c50237008d0120072026290300370300200e2024290300370300200f2022290300370300201020202903003703002011201e2903003703002012201c2903003703002013201a290300370300200420042903f0023703d805203041ffff037122304107490d01203e2005417a6a22084105746a203e200541796a22024105746a2209200a2f010620026b41057410ce051a200941186a200429007d3700002009201836000f2009201736000b2009201636000720092015360003200941026a20322d00003a0000200920042f01fc013b000020092004290378370013203f20084106746a203f20024106746a2209200a2f010620026b41067410ce051a200941386a2033290300370300200941306a2034290300370300200941286a2035290300370300200941206a2036290300370300200941186a2037290300370300200941106a2038290300370300200941086a20392903003703002009200429038002370300200a200a2f010641016a22093b01062005410274221520406a416c6a204020084102746a2230200941ffff0371220520086b41027410ce051a2030201436020020052008490d02200a20156a4190086a2109034020092802002208200241016a22023b01042008200a360200200941046a210920022005490d000c030b0b200641086a2209200541016a22084105746a200920054105746a2209200220056b220a41057410ce051a2009201836000f2009201736000b2009201636000720092015360003200941026a200441fc016a41026a2d00003a0000200920042f01fc013b000020092004290378370013200941186a200429007d370000200641e8026a220920084106746a200920054106746a2209200a41067410ce051a200941386a20044180026a41386a290300370300200941306a20044180026a41306a290300370300200941286a20044180026a41286a290300370300200941206a20044180026a41206a290300370300200941186a20044180026a41186a290300370300200941106a20044180026a41106a290300370300200941086a20044180026a41086a29030037030020092004290380023703002006200241016a22023b01062005410274200641a8086a22096a41086a200920084102746a2209200241ffff037120086b41027410ce051a20092014360200203041ffff037120062f010622024f0d09201420083b010420142006360200200820024f0d092002417f6a210a20062008417f6a22024102746a41b0086a2109034020092802002208200241026a3b010420082006360200200941046a2109200a200241016a2202470d000c0a0b0b200641086a2202200541016a22094105746a200220054105746a220220062f0106220820056b224041057410ce051a2002201836000f2002201736000b2002201636000720022015360003200241026a20322d00003a0000200220042f01fc013b000020022004290378370013200241186a200429007d370000200641e8026a220220094106746a200220054106746a2202204041067410ce051a200241386a2033290300370300200241306a2034290300370300200241286a2035290300370300200241206a2036290300370300200241186a2037290300370300200241106a2038290300370300200241086a203929030037030020022004290380023703002006200841016a22023b010620054102742240200641a8086a22086a41086a200820094102746a2208200241ffff037120096b41027410ce051a20082014360200203020062f010622084f0d00200620406a41ac086a2102034020022802002209200541016a22053b010420092006360200200241046a210220082005470d000b0b202f41016a212f200441f8016a41026a220220032d00003a000020192013290300370300201b2012290300370300201d2011290300370300201f20102903003703002021200f2903003703002023200e29030037030020252007290300370300200420042f01d4053b01f80120042004290388013703e8012004200429008d013700ed01200420042903d8053703a801202720252903003703002028202329030037030020292021290300370300202a201f290300370300202b201d290300370300202c201b290300370300202d2019290300370300202e20022d00003a0000200420042903a801370338200420042900ed01370025200420042903e801370320200420042f01f8013b01340240200628020022020d00203a2115203d2118203c2117203b2116200a21140c070b20062f01042130203a2115203d2118203c2117203b211620022106200a21140c000b0b200541086a2202200841016a22014105746a200220084105746a2202200320086b41057410ce051a200241186a200f290300370000200241106a2007290300370000200241086a200e2903003700002002200429038801370000200541e8026a220220014106746a200220084106746a220220052f010620086b41067410ce051a200241386a2010290300370300200241306a2011290300370300200241286a2012290300370300200241206a2013290300370300200241186a2009290300370300200241106a200a290300370300200241086a20062903003703002002200429038002370300200520052f010641016a3b01060c050b200520084106746a22024180036a2209290300210b200341206a290300210c200341286a290300210d200341306a2903002141200341386a29030021422003290300214320032903082144200329031021452009200341186a290300370300200241f8026a2209290300214620092045370300200241f0026a2209290300214520092044370300200241e8026a2209290300214420092043370300200241a0036a220929020021432009204237020020024198036a220929020021422009204137020020024190036a220929020021412009200d37020020024188036a2202290200210d2002200c370200200041206a200d370300200041286a2041370300200041306a2042370300200041386a2043370300200020443703002000204537030820002046370310200041186a200b3703000c050b41a8084108102d000b41c6a8c000413541a888c6001028000b41d8084108102d000b200441d8056a410272410041d20810cc051a41d808101e2202450d0220024100360200200241046a200441d8056a41d40810cd051a2002200128020022093602a8082001200236020020012001280204220841016a360204200941003b01042009200236020020044180026a41026a200441346a41026a2d00003a0000200420042f01343b018002200420042903203703f002200420042900253700f502200441d8056a41386a200441386a41386a290300370300200441d8056a41306a200441386a41306a290300370300200441d8056a41286a200441386a41286a290300370300200441d8056a41206a200441386a41206a290300370300200441d8056a41186a200441386a41186a290300370300200441d8056a41106a200441386a41106a290300370300200441d8056a41086a200441386a41086a290300370300200420042903383703d8052008202f470d0320022f01062208410a4b0d04200220084105746a2209410a6a20044180026a41026a2d00003a0000200941086a20042f0180023b0000200941176a2018360000200941136a20173600002009410f6a20163600002009410b6a20153600002009411b6a20042903f002370000200941206a20042900f502370000200220084106746a220941e8026a20042903d805370300200941f0026a200441d8056a41086a290300370300200941f8026a200441e8056a29030037030020094180036a200441f0056a29030037030020094188036a200441d8056a41206a29030037030020094190036a20044180066a29030037030020094198036a20044188066a290300370300200941a0036a20044190066a2903003703002002200841016a22094102746a41a8086a2014360200200220093b0106201420093b0104201420023602000b200041003602100b200441b00e6a24000f0b41d8084108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b130020004111360204200041dcf8c4003602000b34002000419784c50036020420004100360200200041146a4102360200200041106a419c84c500360200200041086a42043702000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024180203600000b130020004100360204200041e4fdc6003602000b130020004101360204200041c886c5003602000bf40e03077f027e017f230041106b2203240020034100360208200342013703002003200236020c2003410c6a20031063024002402002450d0020024105742104410021050340200120056a220241146a2d0000210602400240024002400240024002400240024002400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d012003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241156a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d022003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241166a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d032003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241176a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d042003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241186a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d052003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241196a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d062003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a00002002411a6a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d072003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a00002002411b6a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d082003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241086a290300210a2002290300210b024020032802042206200328020822086b4110490d00200328020021070c090b200841106a22072008490d0b200641017422082007200820074b1b22094100480d0b0240024020060d002009101e21070c010b200328020020062009102221070b02402007450d00200320093602042003200736020020032802082108200921060c090b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b200720086a2209200a3700082009200b3700002003200841106a2208360208200241106a2802002109024002400240200620086b41034b0d00200841046a220c2008490d0520064101742208200c2008200c4b1b22084100480d050240024020060d002008101e21070c010b200720062008102221070b2007450d012003200836020420032007360200200328020821080b2003200841046a360208200720086a20093600002002411c6a2d000021080240200328020420032802082202460d00200328020021070c020b200241016a22072002490d04200241017422062007200620074b1b22064100480d040240024020020d002006101e21070c010b200328020020022006102221070b02402007450d002003200636020420032007360200200328020821020c020b20064101102d000b20084101102d000b2003200241016a360208200720026a20083a00002004200541206a2205470d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000f0b1027000b130020004104360204200041f08cc5003602000b340020004189a2c50036020420004100360200200041146a4105360200200041106a4194a2c500360200200041086a42083702000b3701017f02404110101e22020d0041104101102d000b2002420037000820024200370000200042908080808002370204200020023602000b130020004103360204200041a0b3c5003602000b34002000419db6c50036020420004100360200200041146a4103360200200041106a41a8b6c500360200200041086a42083702000b5b01027f230041106b2202240002404104101e22030d0041044101102d000b20024204370204200220033602002002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000b939a01080d7f017e017f017e097f017e1f7f127e230041e00f6b22022400200241c8026a200141086a10e803200028020821032000280204210420002802002105200128020421062001280200210720022802d002210820022802cc02210920022802c802210a0240024002400240024002404104101e220b450d00200b200736000020024284808080c00037029c072002200b36029807411b101e2200450d01200041176a4100280082f446360000200041106a41002900fbf346370000200041086a41002900f3f346370000200041002900ebf3463700002000411b413610222200450d02200042e5f4bcb3e68cdbb4ee00370023200042e9dab5f9e68ddbb4ee0037001b200241c8066a41186a220c4200370300200241c8066a41106a220d4200370300200241c8066a41086a220e4200370300200242003703c8062000412b200241c8066a1001200241e8076a41186a200c290300370300200241e8076a41106a200d290300370300200241e8076a41086a200e290300370300200220022903c8063703e80720001020200241003602b808200241e8076a4120200241b8086a1003210c20022802b808220d417f460d04200c450d042002200d3602fc052002200c3602f805200241b8086a200241f8056a10b70120022802b8082200450d0320022902bc08210f200d450d05200c10200c050b41044101102d000b411b4101102d000b41364101102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410021000b20022000410120001b22103602e8072002200f420020001b22114220883e02ec07200241c0026a200241e8076a105f20022802c402211241002113024002400240024002400240024002400240024002400240024002400240024002400240024020022802c0020d0020022802ec07220041246e221441246c220c417f4c0d0602400240200c0d00410421130c010b200c101e2213450d020b2012450d0041002115034002400240024020004104490d00201541016a211620022000417c6a220d3602ec07200220022802e807220e41046a3602e807200e280000211741002100200241003a00d80802400340200241003a00a804200d2000460d01200241b8086a20006a200e20006a220c41046a2d00003a00002002200c41056a3602e8072002200041016a220c3a00d808200c2100200c4120470d000b200241c8066a41086a220e200241b8086a41086a290300370300200241c8066a41106a2218200241b8086a41106a290300370300200241c8066a41186a2219200241b8086a41186a290300370300200220022903b8083703c8062002200d200c6b22003602ec0720142015470d032015410174220c2016200c20164b1b2214ad42247e220f422088a70d17200fa7220c41004e0d020c170b200241003602ec07200041ff0171450d00200241003a00d8080b02402014450d00201310200b410021130c030b0240024020150d00200c101e21130c010b2013201541246c200c102221130b2013450d050b2013201541246c6a220c2017360200200c20022903c806370204200c410c6a200e290300370200200c41146a2018290300370200200c411c6a20192903003702002016211520162012470d000b0b200241e8076a20024198076a10fd0420022802f007210c20022802e8072100200241003602b8082000200c200241b8086a1003210c20022802b808220d417f460d03200c450d032002200d3602fc052002200c3602f805200241b8086a200241f8056a10e30120022802b808221a450d0120022902bc08210f200d450d04200c10200c040b200c4104102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b200c4104102d000b4200210f4101211a0b024020022802ec07450d00200010200b200f422088211b02402011a7450d00201010200b2012410020131b211c2014410020131b211d2013410420131b2110201ba7211e200fa7211f200242003702dc02200241908cc5003602d802200a200841d0006c6a21200240024020080d00200a21120c010b200241b8036a41306a2121200241b8086a410c6a2122200341ffffff3f7120034721232003410574222441606a41057641016a2125200241b8086a41306a2126200241b8086a41206a2127200241b8086a410272212820024198056a41046a2129200241b8086a41c0006a212a200241e8076a41106a211920024198076a410472212b200241b8036a41c4006a212c200a2112024002400340200241b8086a41386a22132012220041386a2903003703002026200041306a290300370300200241b8086a41286a2214200041286a2903003703002027200041206a290300370300200241b8086a41186a222d200041186a290300370300200241b8086a41106a222e200041106a290300370300200241b8086a41086a222f200041086a290300370300200241e8076a41086a2218200041cc006a280200360200200220002903003703b8082002200041c4006a2902003703e807200041d0006a2112200041c0006a2802002200450d03200241f8026a41386a220c2013290300370300200241f8026a41306a220d2026290300370300200241f8026a41286a220e2014290300370300200241f8026a41206a22082027290300370300200241f8026a41186a2215202d290300370300200241f8026a41106a2216202e290300370300200241f8026a41086a2217202f290300370300200241e8026a41086a22302018280200360200200220022903b8083703f802200220022903e8073703e802200241b8036a41386a2231200c2903003703002021200d290300370300200241b8036a41286a2232200e290300370300200241b8036a41206a220e2008290300370300200241b8036a41186a22332015290300370300200241b8036a41106a22342016290300370300200241b8036a41086a22352017290300370300200220022903f8023703b803200220003602f803202c20022903e802370200202c41086a20302802003602000240024002404104101e220d450d00200d2007360000202241002900dbbe45370000202241086a41002900e3be4537000020024284808080c0003702bc082002200d3602b8082002200241b8036a3602d4084108101e2200450d01200242083702ec07200220003602e8072022200241e8076a10f802200241043602980720024198076a200241e8076a1063024020022802ec07220c20022802f00722006b4104490d0020022802e807210c0c030b200041046a22082000490d13200c41017422002008200020084b1b22004100480d1302400240200c0d002000101e210c0c010b20022802e807200c20001022210c0b0240200c450d00200220003602ec072002200c3602e80720022802f00721000c030b20004101102d000b41044101102d000b41084101102d000b2002200041046a3602f007200c20006a200d280000360000200241b8036a200241e8076a10ca012002200e3602980720024198076a200241e8076a10df02200220213602980720024198076a200241e8076a10df0220022802f80321002002200228028004220c3602980720024198076a200241e8076a10630240200c450d00200c41306c210c0340200041106a200241e8076a10ca012002200036029807200041306a210020024198076a200241e8076a10df02200c41506a220c0d000b0b20022802ec07210c20022802f007210e20022802e8072100200241c8066a41186a22154200370300200241c8066a41106a22164200370300200241c8066a41086a22174200370300200242003703c8062000200e200241c8066a100120024188046a41186a2236201529030037030020024188046a41106a2237201629030037030020024188046a41086a22382017290300370300200220022903c806370388040240200c450d00200010200b200d102002400240024002404110101e2200450d00200041002900b78b45220f370000200041086a41002900bf8b4522113700002002429080808080023702bc08200220003602b8082002200241b8086a3602980720024188046a20024198076a10b90120022802b808210020022802c008210c201542003703002016420037030020174200370300200242003703c8062000200c200241c8066a1001200241e8076a41186a223920152903003703002019201629030037030020182017290300370300200220022903c8063703e807024020022802bc08450d0020022802b80810200b200241e8076a412041e4fdc600410041001002417f460d020c010b41104101102d000b20022802fc03450d0120022802f80310200c010b200241a8046a41186a223a2033290300370300200241a8046a41106a22332034290300370300200241a8046a41086a22342035290300370300200220022903b8033703a8042002280280042208ad42307e221b422088a70d05201ba7220c417f4c0d052031290300211b2032290300213b20022903e803213c20022903d803213d20022802f80321000240024002400240024002400240024002400240024002400240024002400240200c0d00410821300c010b200c101e2230450d010b0240024020080d004100210d0c010b2000200841306c6a210e4100210d2030210c0340200c2000290300370300200c200041086a290300370308200c41106a200041106a290300370300200c41186a200041186a290300370300200c41206a200041206a290300370300200c41286a200041286a290300370300200c41306a210c200d41016a210d200041306a2200200e470d000b0b200241e8076a41386a201b370300200241e8076a41286a203b3703002039203a29030037030020192033290300370300201820342903003703002002203c370398082002203d37038808200220022903a8043703e8072002200d3602b008200220083602ac08200220303602a8080240024020022802d802220041908cc500460d0020022802dc02210c0c010b200241b8086a410041f00610cc051a41f806101e2200450d024100210c200041003b010620004100360200200041086a200241b8086a41f00610cd051a200241003602dc02200220003602d8020b200220003602bc082002200c3602b8082002200241d8026a3602c00820024198076a200241b8086a200241e8076a109c0102402002280298074101470d00202a202b290200370200202f201941086a290300370300202e201941106a290300370300202d201941186a2903003703002027201941206a2903003703002014201941286a2903003703002026201941306a2903003703002013201941386a290300370300202a41086a202b41086a290200370200200220192903003703b80820022802f407210e202941086a220c2018280200360200202920022903e807370200200241c8046a200241b8086a41d00010cd051a200241a8056a200241c8046a41d00010cd051a200220022802e00241016a3602e00220022802e805213020022802f005213520022802f405210d20022802ec0521002017200241c8046a41086a2903003703002016200241c8046a41106a2903003703002015200241c8046a41186a290300370300200241c8066a41206a2213200241c8046a41206a290300370300200241c8066a41286a2214200241c8046a41286a290300370300200241c8066a41306a2208200241c8046a41306a290300370300200241c8066a41386a2231200241c8046a41386a29030037030020024188076a41086a2233200c280200360200200220022903c8043703c806200220292902003703880720002f01062232410b490d0302400240200041908cc500460d00200241b8086a410041f00610cc051a41f806101e22320d0141f8064108102d000b41c8a6c000412d41a888c6001028000b203241003b010620324100360200203241086a200241b8086a41f00610cd05210c200241b8086a200041e8036a41d00010cd051a200c200041b8046a20002f010641796a223441d0006c10cd05210c200041063b0106203220343b0106200241e8076a200241b8086a41d00010cd051a02400240200d4107490d00200d41d0006c200c6a220c41a07c6a200c41d07b6a220c203441ffff0371200d6b41d0006c41b0046a10ce051a200c200e36020c200c41186a2017290300370300200c41206a2016290300370300200c41286a2015290300370300200c41306a2013290300370300200c41386a2014290300370300200c41c0006a2008290300370300200c41c8006a2031290300370300200c41086a2033280200360200200c200229038807370300200c20022903c806370310203220322f010641016a3b01060c010b200041086a200d41d0006c6a220c41d0006a200c20002f0106200d6b41d0006c10ce051a200c200e36020c200c41186a2017290300370300200c41206a2016290300370300200c41286a2015290300370300200c41306a2013290300370300200c41386a2014290300370300200c41c0006a2008290300370300200c41c8006a2031290300370300200c41086a2033280200360200200c200229038807370300200c20022903c806370310200020002f010641016a3b01060b20024198076a200241e8076a41d00010cd051a200241f8056a20024198076a41d00010cd051a0240200028020022080d00410021000c070b20002f0104213141002100034020024198076a200241f8056a41d00010cd051a20302000470d05203141ffff0371211302400240024020082f01062200410b490d002028410041a20710cc051a41a807101e220e450d09200e4100360200200e41046a200241b8086a41a40710cd051a200241b8086a200841e8036a41d00010cd051a200e41086a200841b8046a20082f0106220041796a220c41d0006c10cd052134200e41f8066a20084194076a2000417a6a221441027410cd052133200841063b0106200e200c3b010602402014450d00410021002033210c0340200c280200220d20003b0104200d200e360200200c41046a210c2014200041016a2200470d000b0b200241e8076a200241b8086a41d00010cd051a200241b8086a200241e8076a41d00010cd051a203141ffff037122004107490d01201341d0006c20346a220041a07c6a200041d07b6a2200200e2f010620136b41d0006c41b0046a10ce051a200020024198076a41d00010cd051a200e200e2f010641016a220c3b01062013410274223120336a416c6a20332013417a6a22004102746a220d200c41ffff0371221420006b41027410ce051a200d203236020020142000490d02201341796a2100200e20316a41e0066a210c0340200c280200220d200041016a22003b0104200d200e360200200c41046a210c20002014490d000c030b0b2008201341d0006c6a220c41d8006a200c41086a220c200020136b41d0006c10ce051a200c20024198076a41d00010cd051a2008200041016a220c3b01062013410274200841f8066a220d6a41086a200d201341016a22004102746a220d200c41ffff0371220c20006b41027410ce051a200d20323602002013200c4f0d0a203220003b0104203220083602002000200c4f0d0a200c417f6a210e20082000417f6a22004102746a4180076a210c0340200c280200220d200041026a3b0104200d2008360200200c41046a210c200e200041016a2200470d000c0b0b0b200841086a201341d0006c6a220c41d0006a200c20082f0106220d20136b41d0006c10ce051a200c20024198076a41d00010cd051a2008200d41016a220c3b010620134102742233200841f8066a220d6a41086a200d201341016a22144102746a2231200c41ffff0371220d20146b41027410ce051a203120323602002000200d4f0d00200820336a41fc066a210003402000280200220c201341016a22133b0104200c2008360200200041046a2100200d2013470d000b0b203041016a2100200241f8056a200241b8086a41d00010cd051a02402008280200220c0d00200e21320c080b20082f01042131200c2108200e2132200021300c000b0b20024198056a41086a202b41086a2902003703002002202b290200370398052008450d06203010200c060b200c4108102d000b41f8064108102d000b2000200d41d0006c6a220c41d8006a200c41086a22302032200d6b41d0006c10ce051a200c41146a200e360200200c41206a2017290300370300200c41286a2016290300370300200c41306a2015290300370300200c41386a2013290300370300200c41c0006a2014290300370300200c41c8006a2008290300370300200c41d0006a2031290300370300200c41106a20332802003602002030200229038807370300200c41186a20022903c806370300200020002f010641016a3b01060c030b41c6a8c000413541a888c6001028000b41a8074108102d000b2028410041a20710cc051a41a807101e220c450d01200c4100360200200c41046a200241b8086a41a40710cd051a200c2035280200220d3602f8062035200c36020020352035280204220e41016a360204200d41003b0104200d200c360200200241b8086a200241f8056a41d00010cd051a200e2000470d02200c2f01062200410a4b0d03200c200041d0006c6a41086a200241b8086a41d00010cd051a200c200041016a22004102746a41f8066a2032360200200c20003b0106203220003b01042032200c3602000b200241e8076a200241b8036a41d00010cd051a20230d0c2024417f4c0d0c0240024020240d004101210e0c010b2024101e220e450d040b0240024020030d00410021000c010b2024210d200e21002005210c03402000200c290000370000200041186a200c41186a290000370000200041106a200c41106a290000370000200041086a200c41086a290000370000200041206a2100200c41206a210c200d41606a220d0d000b202521000b200241b8086a200241e8076a41d00010cd051a20022000360290092002200336028c092002200e360288094110101e2200450d042000200f370000200041086a201137000020024290808080800237029c072002200036029807200220024198076a3602f80520024188046a200241f8056a10b901200228029807210020022802a007210c201542003703002016420037030020174200370300200242003703c8062000200c200241c8066a1001203920152903003703002019201629030037030020182017290300370300200220022903c8063703e8070240200228029c07450d0020022802980710200b200241003602a0072002420137039807200241b8086a20024198076a10ca01200220273602f805200241f8056a20024198076a10df02200220263602f805200241f8056a20024198076a10df0220022802f80821002002200228028009220c3602f805200241f8056a20024198076a10630240200c450d00200c41306c210c0340200041106a20024198076a10ca01200220003602f805200041306a2100200241f8056a20024198076a10df02200c41506a220c0d000b0b20022802880921002002200228029009220c3602f805200241f8056a20024198076a10630240200c450d00200c410574210c0340200020024198076a10ca01200041206a2100200c41606a220c0d000b0b200228029c072100200241e8076a4120200228029807220c20022802a007100502402000450d00200c10200b024020022802fc08450d0020022802f80810200b0240200228028c09450d0020022802880910200b20024198076a41186a2213203629030037030020024198076a41106a2214203729030037030020024198076a41086a22082038290300370300200220022903880437039807410021000240201c41014b0d000240201c0e020007000b202d2013290300370300202e2014290300370300202f200829030037030020022002290398073703b808410021000c070b201c210c03402000200c410176220d20006a220e2010200e41246c6a28020020074b1b2100200c200d6b220c41014b0d000c060b0b41a8074108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b20244101102d000b41104101102d000b02402010200041246c6a280200220c2007460d002000200c2007496a21000b202d2013290300370300202e2014290300370300202f200829030037030020022002290398073703b808201c20004f0d0041dcd8c200411e41a888c6001028000b0240201c201d470d00201c41016a220c201c490d12201c410174220d200c200d200c4b1b221dad42247e220f422088a70d12200fa7220c4100480d1202400240201c0d00200c101e21100c010b2010201c41246c200c102221100b2010450d030b2010200041246c6a220c41246a200c201c20006b41246c10ce051a200c2007360200200c411c6a202d290300370200200c41146a202e290300370200200c410c6a202f290300370200200c20022903b80837020420392013290300370300201920142903003703002018200829030037030020022002290398073703e8070240201e201f470d00201e41016a2200201e490d12201e410174220c2000200c20004b1b221f41ffffff3f71201f470d12201f41057422004100480d1202400240201e0d002000101e211a0c010b201a201e41057420001022211a0b201a450d040b201c41016a211c201a201e4105746a220020022903e807370000200041186a2039290300370000200041106a2019290300370000200041086a2018290300370000201e41016a211e0b20122020470d000b202021120c020b200c4104102d000b20004101102d000b024020202012460d000340201241d0006a21000240201241c4006a280200450d00201241c0006a28020010200b2000211220202000470d000b0b02402009450d00200a10200b024002400240024002400240024002400240024020022802e0020d0020022802d80220022802dc02410010fe04200b10200240201f450d00201a10200b0240201d450d00201010200b2004450d01200510200c010b024002400240201e450d00201e410574210c201a21000340200241b8086a200010ff0420022802f808220d0d02200041206a2100200c41606a220c0d000b0b4108212041002139410021350c010b20024198076a41386a2220200241b8086a41386a221229030037030020024198076a41306a222d200241b8086a41306a221529030037030020024198076a41286a222e200241b8086a41286a221629030037030020024198076a41206a222f200241b8086a41206a221729030037030020024198076a41186a220e200241b8086a41186a221829030037030020024198076a41106a2213200241b8086a41106a221929030037030020024198076a41086a2214200241b8086a41086a2222290300370300200241a8056a41086a2230200241b8086a41cc006a290200370300200241a8056a41106a2231200241b8086a41d4006a290200370300200241a8056a41186a2232200241b8086a41dc006a280200360200200220022903b808370398072002200241fc086a22082902003703a805200241e8076a41086a22262014290300370300200241e8076a41106a22272013290300370300200241e8076a41186a2239200e290300370300200241e8076a41206a2233202f290300370300200241e8076a41286a222f202e290300370300200241e8076a41306a222e202d290300370300200241e8076a41386a222d2020290300370300200241f8056a41086a22202030290300370300200241f8056a41106a22302031290300370300200241f8056a41186a2231203228020036020020022002290398073703e807200220022903a8053703f805202220262903003703002019202729030037030020182039290300370300201720332903003703002016202f2903003703002015202e2903003703002012202d290300370300200220022903e8073703b8082014202029030037030020132030290300370300200e2031280200360200200220022903f8053703980741e000101e2220450d07202020022903b8083703002020200d3602402020200229039807370244202041386a2012290300370300202041306a2015290300370300202041286a2016290300370300202041206a2017290300370300202041186a2018290300370300202041106a2019290300370300202041086a2022290300370300202041cc006a2014290300370200202041d4006a2013290300370200202041dc006a200e2802003602000240200c4120470d0041012139410121350c010b200041206a2115201a201e4105746a220d41606a212f410121394101213503402015210002400340200241b8086a200010ff0420022802f808220c0d01200d200041206a2200470d000c030b0b20024198076a41386a220e200241b8086a41386a221629030037030020024198076a41306a2215200241b8086a41306a221729030037030020024198076a41286a2230200241b8086a41286a221829030037030020024198076a41206a2231200241b8086a41206a221929030037030020024198076a41186a2213200241b8086a41186a222229030037030020024198076a41106a2214200241b8086a41106a222d29030037030020024198076a41086a2212200241b8086a41086a222e290300370300200241a8056a41086a2232200841086a290200370300200241a8056a41106a2226200841106a290200370300200241a8056a41186a2227200841186a280200360200200220022903b80837039807200220082902003703a805200241e8076a41086a22332012290300370300200241e8076a41106a22212014290300370300200241e8076a41186a222c2013290300370300200241e8076a41206a22342031290300370300200241e8076a41286a22312030290300370300200241e8076a41306a22302015290300370300200241e8076a41386a2215200e290300370300200241f8056a41086a220e2032290300370300200241f8056a41106a22322026290300370300200241f8056a41186a2226202728020036020020022002290398073703e807200220022903a8053703f805202e2033290300370300202d20212903003703002022202c29030037030020192034290300370300201820312903003703002017203029030037030020162015290300370300200220022903e8073703b8082012200e2903003703002014203229030037030020132026280200360200200220022903f80537039807024020352039470d00203941016a220e2039490d1820394101742215200e2015200e4b1b2235ad42e0007e220f422088a70d18200fa7220e4100480d180240024020390d00200e101e21200c010b2020203941e0006c200e102221200b2020450d080b200041206a21152020203941e0006c6a220e20022903b808370300200e41106a202d290300370300200e41086a202e2903003703002017290300210f201629030021112018290300211b2019290300213b2022290300213c200e41c0006a200c360200200e41186a203c370300200e41206a203b370300200e41286a201b370300200e41386a2011370300200e41306a200f370300200e41c4006a200229039807370200200e41cc006a2012290300370200200e41d4006a2014290300370200200e41dc006a2013280200360200203941016a2139202f2000470d000b0b200241d8086a201c360200200241d4086a201d360200200241c8086a201ead422086201fad843703002002201a3602c40820024284808080c0003702bc082002200b3602b808200220103602d008200241003602f007200242013703e8072002201c3602980720024198076a200241e8076a10630240201c450d002010201c41246c6a21142010210c0340200c280200210e0240024020022802ec07220d20022802f00722006b4104490d0020022802e807210d0c010b200041046a22132000490d18200d41017422002013200020134b1b22004100480d1802400240200d0d002000101e210d0c010b20022802e807200d20001022210d0b0240200d450d00200220003602ec072002200d3602e80720022802f00721000c010b20004101102d000b2002200041046a3602f007200d20006a200e3600002002200241e8076a36029807200c41046a20024198076a10b901200c41246a220c2014470d000b0b20022802f007210d20022802ec07210e20022802e807210c411b101e2200450d02200041176a4100280082f446360000200041106a41002900fbf346370000200041086a41002900f3f346370000200041002900ebf3463700002000411b413610222200450d03200042e5f4bcb3e68cdbb4ee00370023200042e9dab5f9e68ddbb4ee0037001b200241c8066a41186a22134200370300200241c8066a41106a22144200370300200241c8066a41086a22084200370300200242003703c8062000412b200241c8066a1001200241e8076a41186a2013290300370300200241e8076a41106a2014290300370300200241e8076a41086a2008290300370300200220022903c8063703e807200010202002412036029c072002200241e8076a36029807200c200d20024198076a10a3020240200e450d00200c10200b20024198076a200241b8086a10fd0420022802a007210e200228029807210d200241003602f007200242013703e8072002201e3602f805200241f8056a200241e8076a10630240201e450d00201e410574210c201a210003402002200241e8076a3602f8052000200241f8056a10b901200041206a2100200c41606a220c0d000b0b20022802ec072100200d200e20022802e807220c20022802f007100502402000450d00200c10200b0240200228029c07450d00200d10200b200b10200240201f450d00201a10200b0240201d450d00201010200b20022802d802210020022902dc02210f02402004450d00200510200b20000d010b2001280208210d0240200141106a2802002200450d00200041d0006c210c200d41c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200c41b07f6a220c0d000b0b2001410c6a280200450d13200d10200c130b2002200f3702bc03200220003602b8034104101e2200450d0220002007360000200241c0086a4284808080c00037030041002136200241c8086a41002900dbbe45370300200241d0086a41002900e3be45370300200220003602bc08200241073a00b808200241b8086a10772002418094ebdc033602bc08200220064101200641014b1b2200203941036c417d6a220c2000200c491b2000418094ebdc036e220c4101200c41014b1b220c6ead428094ebdc037e2000200c6ead22118042fcffffff0f83421480a7220d3602b808200241b8086a200d418094ebdc034b4102746a280200220e210d2039200f422088a76b22130d050c060b411b4101102d000b41364101102d000b41044101102d000b200e4108102d000b41e0004108102d000b2002418094ebdc033602bc08200220004100203920136b220d200d20394b1b41036c417d6a220d2000200d491b200c6ead428094ebdc037e20118042fcffffff0f83421480a722003602b808200241b8086a2000418094ebdc034b4102746a28020021002002418094ebdc033602bc0820024100200e20006b220c200c200e4b1b220c3602b808200241b8086a200c418094ebdc034b4102746a350200210f2002418094ebdc033602bc082002200f4100418094ebdc0320006b22002000418094ebdc034b1bad7e428094ebdc0380a722003602b808200241b8086a2000418094ebdc034b4102746a280200210d0b203941e0006c220041e0006e210c0240024020000d00410421310c010b200c4102742214101e2231450d02200c21360b410021120240202020006a2020460d00024020130d00203941e0006c210c410021122031210003402000200d360200201241016a2112200041046a2100200c41a07f6a220c0d000c020b0b2020203941e0006c6a2113203941057441606a2114203121002020210c0340200220022802b8033602ec07200220022802bc033602e8072002200241b8036a3602f007200241b8086a200241e8076a200c109c012000200d200e20022802b8084101461b360200200041046a21002013200c41e0006a220c470d000b201441057641016a21120b200241b8086a41086a22004200370300200242003703b80841aafac600411b200241b8086a1000200241e8076a41086a2000290300370300200220022903b8083703e807200241003602b808200241e8076a4110200241b8086a100321000240024020022802b808220c417f470d00410021180c010b024020000d00410021180c010b200c4104490d0320002800002118200010200b200241b8086a41086a22004200370300200242003703b80841c7f9c6004112200241b8086a1000200241e8076a41086a2000290300370300200220022903b8083703e80741002134200241003602b808200241e8076a4110200241b8086a10032100024020022802b808220c417f460d002000450d00200c4104490d0420002800002134200010200b4117101e2200450d042000410f6a41002900d5a844370000200041086a41002900cea844370000200041002900c6a84437000020004117412e10222200450d05200020343600174200213e200241a8056a41186a220c4200370300200241a8056a41106a220d4200370300200241a8056a41086a220e4200370300200242003703a8052000411b200241a8056a1001200241c8046a41186a200c290300370300200241c8046a41106a200d290300370300200241c8046a41086a200e290300370300200220022903a8053703c80420001020200241003602b808200241c8046a4120200241b8086a1003211620022802b8082217417f460d092016450d09200220173602fc02200220163602f802200241b8026a200241f8026a105f20022802b8020d0820022802fc02220e4140712200417f4c0d0020022802bc02211502400240200e41067622080d00410821190c010b2000101e2219450d070b02402015450d00410021140340200241003a00d8082014221341016a2114410021000240024002400340200241003a00a804200e2000460d01200241b8086a20006a20022802f802220d2d00003a00002002200d41016a3602f8022002200041016a220c3a00d808200c2100200c4120470d000b200241a8056a41186a2200200241b8086a41186a290300370300200241a8056a41106a2207200241b8086a41106a290300370300200241a8056a41086a2210200241b8086a41086a290300370300200220022903b8083703a805200e200c6b220c4110490d012002200d41116a3602f802200c41706a410f4b0d02200c41706a210c0c010b0240200041ff0171450d00200241003a00d8080b4100210c0b20024198076a41086a200241e8076a41086a290300370300200220022903e807370398072002200c3602fc022008450d0b201910200c0b0b200d41096a290000210f200d290001211120024198076a41086a220e201029030037030020024198076a41106a2210200729030037030020024198076a41186a220720002903003703002002200d41216a3602f802200220022903a805221b3703e8072002201b37039807200d41196a290000211b200d290011213b200241f8056a41186a220d2007290300370300200241f8056a41106a22072010290300370300200241f8056a41086a2210200e29030037030020022002290398073703f805024020082013470d00201341017422002014200020144b1b220841ffffff1f712008470d0f200841067422004100480d0f0240024020130d002000101e21190c010b201920134106742000102221190b2019450d0a0b200c41606a210e201920134106746a2200203b3703102000200f37030820002011370300200041186a201b370300200020022903f805370320200041286a2010290300370300200041306a2007290300370300200041386a200d29030037030020142015470d000b2002200c41606a3602fc020b2019450d082015ad4220862008ad84213e02402017450d00201610200b203e422088a7210c203ea721080c0a0b102c000b20144104102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b41174101102d000b412e4101102d000b20004108102d000b20004108102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410821194100210c410021080b0240024020122039203920124b1b221e0d004200213f420021400c010b200241b8086a410572213320024198076a41036a212c200241b8086a41086a21082018ad2141200241c1086a212d2020210e4200213f42002140410021160240024003402016210020084200370300200242003703b808418cb5c4004115200241b8086a1000200241e8076a41086a22222008290300370300200220022903b8083703e807200241003602b808200241e8076a4110200241b8086a1003210d0240024020022802b808220c417f460d002002200c36029c072002200d36029807200241b8086a20024198076a10e301024020022802b8082212450d0020022902bc08210f200c450d02200d10200c020b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b4200210f410121120b200041016a2116203120004102746a21072020200041e0006c6a220d41206a2117200f422088a7410574210c20122100024003400240200c0d00410021140c020b41012114200e2000460d012000200d412010cf052113200c41606a210c200041206a210020130d000b0b0240200fa7450d00201210200b0240024020140d00024002400240024002404112101e2200450d00200041002900d3d443370000200041106a41002f00e3d4433b0000200041086a41002900dbd44337000020024292808080a0023702bc08200220003602b808200d200241b8086a10ca0120022802c008210020022802b808210c200241a8056a41186a22134200370300200241a8056a41106a22144200370300200241a8056a41086a22124200370300200242003703a805200c2000200241a8056a1001200241c8046a41186a222e2013290300370300200241c8046a41106a222f2014290300370300200241c8046a41086a22302012290300370300200220022903a8053703c804024020022802bc08450d0020022802b80810200b0240200241c8046a412041e4fdc600410041001002417f460d00200d10a30420084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e80702404100200241e8076a10d6042200200041ff01714104461b41ff0171417f6a220041024b0d0020000e03010001010b20084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e807200241013a00a8044101101e2200450d02200020022d00a8043a0000200241e8076a4110200041011005200010200b200241a8026a2017290300220f201741086a2226290300428094ebdc03420010d30520024198026a20022903a8022211200241a8026a41086a290300221b4280ec94a37c427f10d20520024188026a2011201b2007350200223b420010d2052002290388022211203b200f2002290398027c7e220f200f428094ebdc0380220f4280ec94a37c7e7c4280cab5ee0156200fa76aad7c220f20024188026a41086a290300200f201154ad7c221184500d0520084200370300200242003703b80841868cc6004112200241b8086a100020024198056a41086a22102008290300370300200220022903b80837039805200241003602b80820024198056a4110200241b8086a1003210020022802b808220c417f460d032000450d032002200c3602ec07200220003602e807200241b8086a200241e8076a10e30120022802b8082227450d0220022902bc08211b200c450d04200010200c040b41124101102d000b41014101102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410121274200211b0b4102213202400240024002400240024002400240201b422088a72200450d00200041057421134100210c2027210002400340200e2000460d01200c2000200d412010cf0522144100476a210c2014450d01200041206a2100201341606a22130d000c020b0b20084200370300200242003703b80841baf6c600411a200241b8086a100020102008290300370300200220022903b80837039805200241003602b80820024198056a4110200241b8086a100321000240024020022802b8082214417f460d002000450d00200220143602ec07200220003602e807200241b8086a200241e8076a10c101024020022802b8082213450d0020022902bc08213b2014450d02200010200c020b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410021130b2013410420131b2118410021000240024002400240203b420020131b223b422088223ca7220741014b0d0020070e020201020b20072113034020002013410176221420006a2212200c201820124102746a280200491b2100201320146b221341014b0d000b0b410021320240200c201820004102746a2802002213470d00410021210c020b2000200c20134b6a21000b20084200370300200242003703b80841868cc6004112200241b8086a100020102008290300370300200220022903b80837039805200241003602b80820024198056a4110200241b8086a100321140240024020022802b8082212417f470d00410021130c010b024020140d00410021130c010b200220123602bc08200220143602b80820024180026a200241b8086a105f02400240200228028002450d00410021130c010b20022802840221130b2012450d00201410200b20132013418094ebdc036e22144180ec94a37c6c6aad4280fd87d1007e2242428094ebdc0380213d200020074b0d0702402007203ba7470d00200741016a22132007490d1120074101742212201320132012491b221341ffffffff03712013470d11201341027422124100480d110240024020070d002012101e21180c010b201820074102742012102221180b2018450d072013ad213b0b201820004102746a221341046a2013200720006b41027410ce051a2013200c36020041012121203b42ffffffff0f83200741016a2200ad223c42208684213b200020144180fd87d1006c203da76a2042203d4280ec94a37c7e7c4280cab5ee01566a4b21320b20084200370300200242003703b80841baf6c600411a200241b8086a100020102008290300370300200220022903b808370398050240024020180d0020024198056a411010040c010b200241003602c008200242013703b8082002203ca722133602e807200241e8076a200241b8086a10630240024020130d0020022802c008211020022802bc08210720022802b80821130c010b410020022802c00822006b2114201820134102746a211c20022802bc0821072018211203402012280200211502400240200720146a4104490d0020022802b80821130c010b200041046a22132000490d13200741017422102013201020134b1b22104100480d130240024020070d002010101e21130c010b20022802b80820072010102221130b02402013450d00200220103602bc08200220133602b808201021070c010b20104101102d000b2002200041046a22103602c008201320006a20153600002014417c6a211420102100201c201241046a2212470d000b0b203ba7210020024198056a411020132010100502402007450d00201310200b2000450d00201810200b2021450d00200241023602e8072002200cad3703f007200241b8086a200241e8076a10a103202c41086a2008280200360000202c20022903b8083700002033200229009807370000203341076a20024198076a41076a290000370000200241c6a4b9da043600b908200241023a00b808200241b8086a10fe01200241023a00a8044101101e2200450d01200020022d00a8043a000020004101410510222200450d022000200c360001203320022f00e8073b0000200241023a00b808203341026a200241e8076a41026a2d00003a0000200241c28289aa043600b90820024285808080d0003702c408200220003602c008200241b8086a10fe010b0240201ba7450d00202710200b024020324102460d002032410171450d0020084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e80702404100200241e8076a10d6042200200041ff01714104461b41ff0171417f6a220041024b0d0020000e03010001010b20084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e807200241013a00a8044101101e2200450d03200020022d00a8043a0000200241e8076a4110200041011005200010200b2026290300223b20112017290300223d200f54203b201154203b2011511b22001b2143203d200f20001b214402400240203e4220882245a722140d00420021114200210f0c010b2014410674210c201941206a2100420021114200210f034002400240200e2000460d002000200d412010cf050d010b427f200f200041706a221341086a2903007c201120132903007c221b2011542213ad7c221120132011200f542011200f511b22131b210f427f201b20131b21110b200041c0006a2100200c41406a220c0d000b0b200241e0016a200d20444200200d290330221b20117d223c203c201b56200d41386a290300223c200f7d201b201154ad7d220f203c56200f203c511b22001b221120112044564200200f20001b220f204356200f2043511b22001b22112043200f20001b220f10e003200241e0016a41086a290300214620022903e001214702402044201120022903f00122427d22487d22492043200f200241e0016a41186a2903007d2011204254ad7d224a7d2044204854ad7d221184500d00203d201b7d2242203b203c7d203d201b54ad7d220f84500d00200d280248220c450d00200d2802402100200241d0016a204242012042420156200f420052200f501b22131b221b200f420020131b220f428094ebdc03420010d305200241b0016a20492011428094ebdc03420010d305200241c0016a201b200f20022903d001221142012011420156200241d0016a41086a29030022114200522011501b22131b223c2011420020131b223d10d305200241a0016a20022903b0012242200241b0016a41086a290300224b4280ec94a37c427f10d20520022903c001221142ffffffff0f56200241c0016a41086a290300223b420052203b501b0d042011a7450d092000200c41306c6a2113204920022903a0017c2149201142ffffffff0f83214c034020024190016a201b20002903002211201b201154200f200041086a290300221154200f2011511b220c1b200f2011200c1b203c203d10d305200229039001221142808080801054410020024190016a41086a290300501b450d0c200241e0006a2042204b201142ffffffff0f83428094ebdc037e204c8042ffffffff0f832211420010d205200241f0006a200041106a2002290360223b201120497e22112011428094ebdc038022114280ec94a37c7e7c4280cab5ee01562011a76aad7c2211200241e0006a41086a2903002011203b54ad7c10e003427f2046200241f0006a41086a2903007c204720022903707c223b204754220cad7c2211200c201120465420112046511b220c1b2146427f203b200c1b2147200041306a22002013470d000b0b202e200d41186a2213290300370300202f200d41106a22122903003703002030200d41086a22072903003703002002200d2903003703c80402400240024002402014203ea7460d002014210c0c010b201441016a22002014490d112045a7220c4101742210200020002010491b220041ffffff1f712000470d11200041067422104100480d110240024020140d002010101e21190c010b2019200c4106742010102221190b2019450d012000ad213e0b200241c0006a20472046428094ebdc03420010d305200241306a2002290340220f200241c0006a41086a29030022114280ec94a37c427f10d205200241206a200f20112041420010d2052019200c4106746a220020483703102000204337030820002044370300200041186a204a370300200020022903c804370320200041286a2030290300370300200041306a202f290300370300200041386a202e290300370300200241033a00b808200241013a00c0082013290000210f201229000021112007290000211b200d290000213b200241b8086a41386a2043370300202d203b370000202d41086a201b370000202d41106a2011370000202d41186a200f370000200220443703e808200229033021112002290320210f200241206a41086a290300211b203e42ffffffff0f83200c41016aad42208684213e200241b8086a10770240200f204720117c20417e22112011428094ebdc038022114280ec94a37c7e7c4280cab5ee01562011a76aad7c2211201b2011200f54ad7c220f84500d00200d41d8006a28020022000d020b427f204020467c203f20477c2211203f542200ad7c220f2000200f204054200f2040511b22001b2140427f201120001b213f0c090b20104108102d000b200241106a2011204720472011562046200f562046200f511b220c1b2249200f2046200c1b224c2000ad420010d3052000410574210c200d2802502100200241106a41086a29030021422002290310214b2049213b204c213c034020022000204b203b203b204b56203c204256203c2042511b220d1b220f2042203c200d1b221110f302200241b8086a41106a2011200241086a290300223d7d200f2002290300221b54ad7d203d20117d201b200f54ad7d201b200f58203d201158203d201151220d1b22131b3703002002200f201b7d201b200f7d20131b3703c0082002201b200f56203d201156200d1b220dad3703b808203c20117d2111203b200f54ad211b02400240200d0d00200220083602e807200241e8076a1094020c010b200220083602e807200241e8076a10f4020b2011201b7d213c203b200f7d213b200041206a2100200c41606a220c450d070c000b0b41014101102d000b41054101102d000b41014101102d000b200241113602bc0820024199bcc4003602b80841ffb9c40041e000200241b8086a418cc0c40041e0bac400102e000b20124104102d000b41dcd8c200411e41a888c6001028000b427f427f2040203c7c203f203b7c2211203f542200ad7c220f2000200f204054200f2040511b22001b220f2046204c7d2047204954ad7d7c427f201120001b2211204720497d7c221b2011542200ad7c221120002011200f542011200f511b22001b2140427f201b20001b213f0b200e41e0006a210e2016201e4f0d030c010b0b200241d0006a201b20002903002211201b201154200f200041086a290300221154200f2011511b22001b200f201120001b203c203d10d3052002290350428080808010544100200241d0006a41086a290300501b450d004180bcc400411941ecbbc4001028000b200241113602bc0820024199bcc4003602b80841ffb9c40041e000200241b8086a418cc0c40041dcbbc400102e000b203e422088a7210c203ea721080b024002404117101e2200450d002000410f6a41002900d5a844370000200041086a41002900cea844370000200041002900c6a844370000024020004117412e10222200450d0020002034360017200241a8056a41186a220d4200370300200241a8056a41106a220e4200370300200241a8056a41086a22134200370300200242003703a8052000411b200241a8056a1001200241c8046a41186a200d290300370300200241c8046a41106a200e290300370300200241c8046a41086a2013290300370300200220022903a8053703c80420001020200241003602c008200242013703b8082002200c3602e807200241e8076a200241b8086a10630240200c450d00200c4106742114201921000340200041206a200241b8086a10ca01200041086a290300210f200029030021110240024020022802bc08220d20022802c008220e6b4110490d0020022802b808210c0c010b200e41106a220c200e490d07200d410174220e200c200e200c4b1b22134100480d0702400240200d0d002013101e210c0c010b20022802b808200d20131022210c0b0240200c450d00200220133602bc082002200c3602b80820022802c008210e2013210d0c010b20134101102d000b200c200e6a2213200f370008201320113700002002200e41106a220e3602c008200041186a290300210f200041106a2903002111024002400240200d200e6b410f4d0d00200d21130c010b200e41106a2213200e490d08200d410174220e2013200e20134b1b22134100480d0802400240200d0d002013101e210c0c010b200c200d20131022210c0b200c450d01200220133602bc082002200c3602b80820022802c008210e0b200041c0006a2100200c200e6a220d200f370008200d20113700002002200e41106a220d3602c008201441406a22140d010c050b0b20134101102d000b20022802c008210d20022802bc08211320022802b808210c0c020b412e4101102d000b41174101102d000b200241c8046a4120200c200d100502402013450d00200c10200b02402008450d00201910200b2002203f3703b808200220403703c0082002200241b8086a3602e807200241e8076a10940202402036450d00203110200b02402039450d00203941e0006c210c202041d4006a210003400240200041706a280200450d002000416c6a28020010200b02402000280200450d002000417c6a28020010200b200041e0006a2100200c41a07f6a220c0d000b0b02402035450d00202010200b20022802b80320022802bc0320022802c00310fe042001280208210d0240200141106a2802002200450d00200041d0006c210c200d41c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200c41b07f6a220c0d000b0b2001410c6a280200450d00200d10200b200241e00f6a24000f0b1027000bbf0601087f230041c0006b22022400024002400240024002400240411f101e2203450d00200341176a4100290082bf45370000200341106a41002900fbbe45370000200341086a41002900f3be45370000200341002900ebbe453700002003411f413e10222203450d01200342e5f4bcb3e68cdbb4ee00370027200342e9dab5f9e68ddbb4ee0037001f200241206a41186a22044200370300200241206a41106a22054200370300200241206a41086a22064200370300200242003703202003412f200241206a1001200241186a22072004290300370300200241106a2005290300370300200241086a200629030037030020022002290320370300200310204120101e2203450d0220032002290300370000200341186a2007290300370000200341106a200241106a290300370000200341086a200241086a2903003700002001280208220441046a2205417f4c0d03200128020021070240024020050d00410121010c010b2005101e2201450d050b200241003602282002200536022420022001360220200220043602002002200241206a1063024020022802242206200228022822016b2004490d00200228022021050c060b0240200120046a22052001490d00200641017422082005200820054b1b22084100480d000240024020060d002008101e21050c010b200228022020062008102221050b02402005450d002002200836022420022005360220200821060c070b20084101102d000b1027000b411f4101102d000b413e4101102d000b41204101102d000b102c000b20054101102d000b200520016a2007200410cd051a200241206a41186a22074200370300200241206a41106a22084200370300200241206a41086a22094200370300200242003703202005200120046a200241206a1001200241186a2007290300370300200241106a2008290300370300200241086a20092903003703002002200229032037030002402006450d00200510200b02402003412041c00010222203450d0020032002290300370020200341386a200241186a290300370000200341306a200241106a290300370000200341286a200241086a290300370000200042c0808080800837020420002003360200200241c0006a24000f0b41c0004101102d000bea0303027f017e037f02402001450d00034020002802f80621002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41fc066a28020021002001200341d0006c6a220141cc006a2802002107200141c8006a2802002108410021032006417f6a2201450d01034020002802f80621002001417f6a22010d000c020b0b2000200341d0006c6a220141cc006a2802002107200141c8006a2802002108200341016a21030b2008450d012002417f6a210202402007450d00200810200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bf70c030c7f017e067f230041a0026b220224000240024002404110101e2203450d00200341002900b78b45370000200341086a41002900bf8b453700002002429080808080023702e401200220033602e0012002200241e0016a3602a0012001200241a0016a10b90120022802e001210320022802e801210120024180016a41186a2204420037030020024180016a41106a2205420037030020024180016a41086a2206420037030020024200370380012003200120024180016a1001200241d8006a41186a2004290300370300200241d8006a41106a2005290300370300200241d8006a41086a20062903003703002002200229038001370358024020022802e401450d0020022802e00110200b200241003602e001200241d8006a4120200241e0016a1003210420022802e0012205417f460d012004450d012002200536027c2002200436027841002103200241003a0038024002400240034020052003460d01200241186a20036a200420036a22012d00003a00002002200141016a3602782002200341016a22013a00382001210320014120470d000b20024180016a41086a2206200241186a41086a220729030037030020024180016a41106a2208200241186a41106a220929030037030020024180016a41186a220a200241186a41186a220b29030037030020022002290318370380012002200520016b36027c200241186a200241f8006a10b70420022802382203450d01200241e0016a41186a220c200a290300370300200241e0016a41106a220a2008290300370300200241e0016a41086a220d2006290300370300200241e0016a41286a22062007290300370300200241e0016a41306a22072009290300370300200241e0016a41386a2208200b29030037030020022002290380013703e00120022002290318370380022002413c6a2802002101200241186a41286a2209290300210e200241a0016a41086a200d290300370300200241a0016a41106a200a290300370300200241a0016a41186a200c290300370300200241a0016a41206a220a200229038002370300200241a0016a41286a220b2006290300370300200241a0016a41306a220c2007290300370300200241a0016a41386a220d2008290300370300200220022903e0013703a001200241186a200241f8006a10e30120022802180d022001450d01200310200c010b2002410036027c200341ff0171450d00200241003a00380b41ceb8c4004133200241a0016a41fcbfc4004184b9c400102e000b20024180016a41086a220f200241186a41086a2210280200360200200241e0016a41086a2211200241a0016a41086a290300370300200241e0016a41106a2212200241a0016a41106a290300370300200241e0016a41186a2213200241a0016a41186a290300370300200241e0016a41206a2214200a2903003703002006200b2903003703002007200c2903003703002008200d2903003703002002200229031837038001200220022903a0013703e00120102011290300370300200241186a41106a2012290300370300200241186a41186a2013290300370300200241186a41206a201429030037030020092006290300370300200241186a41306a2007290300370300200241186a41386a2008290300370300200241086a41086a200f280200360200200220022903e00137031820022002290380013703082005450d02200410200c020b41104101102d000b410021030b200241e0016a41086a2204200241186a41086a290300370300200241e0016a41106a2205200241186a41106a290300370300200241e0016a41186a2206200241186a41186a290300370300200241e0016a41206a2207200241186a41206a290300370300200241e0016a41286a2208200241186a41286a290300370300200241e0016a41306a2209200241186a41306a290300370300200241e0016a41386a220a200241186a41386a290300370300200220022903183703e001200241a0016a41086a220b200241086a41086a280200360200200220022903083703a00102402003450d00200020022903e00137030020002001360244200041c8006a200e370200200041386a200a290300370300200041306a2009290300370300200041286a2008290300370300200041206a2007290300370300200041186a2006290300370300200041106a2005290300370300200041086a2004290300370300200041d8006a200b280200360200200041d0006a20022903a0013702000b20002003360240200241a0026a24000b8c0201057f230041c0006b2202240002400240411c101e2203450d00200341186a41002800a4f246360000200341106a410029009cf246370000200341086a4100290094f2463700002003410029008cf2463700002003411c413810222203450d012003200037001c200241206a41186a22044200370300200241206a41106a22054200370300200241206a41086a220642003703002002420037032020034124200241206a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290320370300200310202002200128020036022020024120200241206a41041005200241c0006a24000f0b411c4101102d000b41384101102d000bd80b02067f017e230041306b22042400200441186a41086a2205420037030020044200370318418cc6c500411d200441186a1000200441086a41086a2005290300370300200420042903183703080240024002400240024002400240024002400240200441086a411041e4fdc600410041001002417f470d001079210602400240024020024101470d00200441186a41086a220542003703002004420037031841a9c6c500411a200441186a1000200441086a41086a20052903003703002004200429031837030820044100360218200441086a4110200441186a10032105024020042802182207417f460d002005450d0020074104490d052005280000210720051020200720064b0d020b200441186a41086a220542003703002004420037031841a9c6c500411a200441186a1000200441086a41086a2005290300370300200420042903183703082004200620014101746a360218200441086a4110200441186a410410050b200028020821052000280204210820002802002109200441186a41086a2200420037030020044200370318418cc6c500411d200441186a1000200441086a41086a20002903003703002004200429031837030820044100360220200442013703184104101e2200450d042004410436021c20042004280220220741046a36022020042000360218200020076a2006360000200428021c2206200428022022006b4104490d01200428021821060c050b200041046a280200450d0a200028020010200c0a0b200041046a22072000490d04200641017422002007200020074b1b22004100480d040240024020060d002000101e21060c010b200428021820062000102221060b02402006450d002004200036021c20042006360218200428022021000c040b20004101102d000b200041046a280200450d08200028020010200c080b41ceb8c4004133200441186a41fcbfc4004184b9c400102e000b41044101102d000b2004200041046a360220200620006a20013600002004200536022c2004412c6a200441186a106302402005450d002009200541286c6a21072009210503402005200441186a10ca01200541206a290300210a02400240200428021c2201200428022022006b4108490d00200428021821010c010b200041086a22062000490d03200141017422002006200020064b1b22004100480d030240024020010d002000101e21010c010b200428021820012000102221010b02402001450d002004200036021c20042001360218200428022021000c010b20004101102d000b2004200041086a360220200120006a200a3700002007200541286a2205470d000b0b200428021c210520042802202100024020024101460d00024020052000460d00200428021821050c050b200041016a22052000490d01200041017422012005200120054b1b22014100480d010240024020000d002001101e21050c010b200428021820002001102221050b02402005450d002004200136021c20042005360218200428022021000c050b20014101102d000b0240024020052000460d00200428021821050c010b200041016a22052000490d01200041017422012005200120054b1b22014100480d010240024020000d002001101e21050c010b200428021820002001102221050b2005450d022004200136021c20042005360218200428022021000b2004200041016a360220200520006a41013a00000240200428021c2205200428022022006b4104490d00200428021821050c030b200041046a22012000490d00200541017422002001200020014b1b22004100480d000240024020050d002000101e21050c010b200428021820052000102221050b02402005450d002004200036021c20042005360218200428022021000c030b20004101102d000b1027000b20014101102d000b2004200041046a360220200520006a20033600000c010b2004200041016a360220200520006a41003a00000b200428021c2100200441086a4110200428021822052004280220100502402000450d00200510200b2008450d00200910200b200441306a24000b280020004101360204200041086a200128020420012802006b4107762201360200200020013602000bf40101047f230041d0006b21020240200128020022032001280204470d00200041003602000f0b200120034180016a3602002002200341c2006a29000037012a2002200341ca006a290000370132200241106a220120022903303703002002200341d2006a29000037013a200241186a220420022903383703002002200341da006a2800003601422002200341de006a2f00003b0146200241206a220520022903403703002002200341c0006a2f00003b01282002200229032837030820002003360200200020022903083700042000410c6a2001290300370000200041146a20042903003700002000411c6a20052903003700000bb905020b7f047e23004190016b22032400024002402001280200220420012802042205460d00200120044180016a22063602002003200441c2006a29000037016a2003200441ca006a290000370172200341c8006a41086a220720032903703703002003200441d2006a29000037017a200341c8006a41106a220820032903783703002003200441da006a280000360182012003200441de006a2f00003b018601200341c8006a41186a22092003290380013703002003200441c0006a2f00003b016820032003290368370348200341286a41186a220a2009290300370300200341286a41106a220b2008290300370300200341286a41086a220c200729030037030020032003290348370328200541807f6a210d02400340200341086a41186a200a290300220e370300200341086a41106a200b290300220f370300200341086a41086a200c2903002210370300200320032903282211370308200341e8006a41186a200e370300200341e8006a41106a200f370300200341e8006a41086a2010370300200320113703682002450d01200d2004460d02200120064180016a22053602002003200641c2006a29000037016a2003200641ca006a290000370172200720032903703703002003200641d2006a29000037017a200820032903783703002003200641da006a280000360182012003200641de006a2f00003b01860120092003290380013703002003200641c0006a2f00003b016820032003290368370348200a2009290300370300200b2008290300370300200c20072903003703002003200329034837032820044180016a21042002417f6a2102200521060c000b0b20002004360200200020032903683702042000410c6a200341f0006a290300370200200041146a200341f8006a2903003702002000411c6a20034180016a2903003702000c010b200041003602000b20034190016a24000b130020004101360204200041c4c6c5003602000b3400200041c4c7c50036020420004100360200200041146a4107360200200041106a41d4c7c500360200200041086a420f3702000b2201017f230041106b22022400200241003602002000200210a203200241106a24000b130020004101360204200041c8d6c5003602000b1300200041023602042000419cd8c5003602000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241e5003600000bb015020a7f017e23004190016b22032400024002400240024002400240024002402000280200220441908cc500460d00200028020421050c010b41b801101e2204450d0141002105200441003a001020044200370308200441003b01062004410036020020042003280008360011200441003a00202004420037031820042003280051360021200441003a0030200442003703282004200328004a360031200441146a200341086a41036a280000360000200441246a200341d1006a41036a280000360000200441346a200341ca006a41036a280000360000200441003a00402004420037033820044200370348200441003a005020044200370358200441003a006020042003280043360041200441c4006a200341c3006a41036a2800003600002004200328003c360051200441d4006a2003413c6a41036a28000036000020042003280035360061200441e4006a200341356a41036a280000360000200441003a007020044200370368200441003a00800120044200370378200441003a00900120044200370388012004200328002e360071200441f4006a2003412e6a41036a280000360000200420032800273600810120044184016a200341276a41036a280000360000200420032800203600910120044194016a200341206a41036a280000360000200441003a00a0012004420037039801200441a4016a200341196a41036a280000360000200420032800193600a101200441003a00b001200442003703a801200441b4016a200341d8006a41036a280000360000200420032800583600b10120004100360204200020043602000b200241ff0171210603400240024020042f010622070d00410021080c010b20074104742109200441086a210a4100210b0340200b2108024020090d00200721080c020b02400240200a41086a2d0000220b2006460d00417f4101200b20064b1b210c0c010b200a290300220d2001560d02200d200152210c0b200841016a210b200a41106a210a200941706a21090240200c41016a0e03020001020b0b410121040c040b02402005450d002005417f6a2105200420084102746a41b8016a28020021040c010b0b2000200028020841016a36020802400240024020042f0106220a410b490d0002400240200441908cc500460d0041b801101e220a0d0141b8014108102d000b41c8a6c000412d41a888c6001028000b200a41003a0010200a4200370308200a41003b0106200a4100360200200a2003280008360011200a41003a0020200a4200370318200a2003280051360021200a41003a0030200a4200370328200a200328004a360031200a41146a200341086a41036a280000360000200a41246a200341d1006a41036a280000360000200a41346a200341ca006a41036a280000360000200a41003a0040200a4200370338200a4200370348200a41003a0050200a4200370358200a41003a0060200a2003280043360041200a41c4006a200341c3006a41036a280000360000200a200328003c360051200a41d4006a2003413c6a41036a280000360000200a2003280035360061200a41e4006a200341356a41036a280000360000200a41003a0070200a4200370368200a41003a008001200a4200370378200a41003a009001200a420037038801200a200328002e360071200a41f4006a2003412e6a41036a280000360000200a200328002736008101200a4184016a200341276a41036a280000360000200a200328002036009101200a4194016a200341206a41036a280000360000200a41003a00a001200a420037039801200a41a4016a200341196a41036a280000360000200a20032800193600a101200a41003a00b001200a42003703a801200a41b4016a200341d8006a41036a280000360000200a20032800583600b10120042d007021092004290368210d200a41086a200441f8006a20042f010641796a220b41047410cd052105200441063b0106200a200b3b010620084107490d01200841047420056a41a07f6a2005200841796a220c4104746a2208200b41ffff0371200c6b41047410ce051a200820023a000820082001370300200a200a2f010641016a3b01060c020b200420084104746a220941186a200941086a220b200a20086b41047410ce051a200941106a20023a0000200b2001370300200420042f010641016a3b0106410021040c040b200441086a20084104746a220b41106a200b20042f010620086b41047410ce051a200b20023a0008200b2001370300200420042f010641016a3b01060b0240200428020022080d00410021080c020b200320042f0104360214200320003602102003200836020c2003410136020841002104200341d8006a200341086a200d2009200a4100105b20032802584101470d02034020032802642100200328026c21082003280268210a20032d007821092003290370210d2003280260220b2802002205450d02200328025c210c2003200b2f0104360214200320003602102003200536020c2003200c41016a360208200341d8006a200341086a200d2009200a2008105b20032802584101460d000c030b0b41b8014108102d000b20034187016a220b4200370000200341ff006a4200370000200341f7006a4200370000200341ef006a4200370000200341e7006a42003700002003420037005f41e801101e2204450d01200441003a001020044200370308200441003b01062004410036020020042003280008360011200441003a00202004420037031820042003280051360021200441003a0030200442003703282004200328004a360031200441146a200341086a41036a280000360000200441246a200341d1006a41036a280000360000200441346a200341ca006a41036a280000360000200441003a00402004420037033820044200370348200441003a005020044200370358200441003a006020042003280043360041200441c4006a200341c3006a41036a2800003600002004200328003c360051200441d4006a2003413c6a41036a28000036000020042003280035360061200441e4006a200341356a41036a280000360000200441003a007020044200370368200441003a00800120044200370378200441003a00900120044200370388012004200328002e360071200441f4006a2003412e6a41036a280000360000200420032800273600810120044184016a200341276a41036a280000360000200420032800203600910120044194016a200341206a41036a280000360000200441003a00a0012004420037039801200441a4016a200341196a41036a280000360000200420032800193600a101200441003a00b001200442003703a801200441e0016a200b290000370000200441d9016a20034180016a290000370000200441d1016a200341f8006a290000370000200441c9016a200341f0006a290000370000200441c1016a200341e8006a290000370000200441b9016a200341e0006a290000370000200420032900583700b10120042000280200220b3602b8012000200436020020002000280204220541016a360204200b41003b0104200b200436020020052008470d0220042f01062208410a4b0d03200420084104746a220b41106a20093a0000200b41086a200d3703002004200841016a22094102746a41b8016a200a360200200420093b0106200a20093b0104200a2004360200410021040b20034190016a240020040f0b41e8014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000bfe1103017f017e057f230041106b220224002002410036020820024201370300200129030021030240024002400240024002400240024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200128023021052002200141386a280200220436020c2002410c6a2002106302400240024020022802042206200228020822076b2004490d00200228020021060c010b200720046a22082007490d01200641017422072008200720084b1b22074100480d010240024020060d002007101e21060c010b200228020020062007102221060b2006450d032002200736020420022006360200200228020821070b2002200720046a360208200620076a2005200410cd051a200128023c21052002200141c4006a280200220436020c2002410c6a200210630240024020022802042206200228020822076b2004490d00200228020021060c010b200720046a22082007490d01200641017422072008200720084b1b22074100480d010240024020060d002007101e21060c010b200228020020062007102221060b2006450d042002200736020420022006360200200228020821070b2002200720046a360208200620076a2005200410cd051a200141106a28020021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d052002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200129030821030240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22062004490d01200741017422042006200420064b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d062002200436020420022007360200200228020821040b2002200441086a360208200720046a200337000020012d0054210602400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d01200441017422052007200520074b1b22054100480d010240024020040d002005101e21070c010b200228020020042005102221070b2007450d072002200536020420022007360200200228020821040b2002200441016a360208200720046a20063a000020012d0055210602400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d01200441017422052007200520074b1b22054100480d010240024020040d002005101e21070c010b200228020020042005102221070b2007450d082002200536020420022007360200200228020821040b2002200441016a360208200720046a20063a0000200128024821060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d092002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200128024c21060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d0a2002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200128025021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d0b2002200436020420022007360200200228020821040b2002200441046a360208200720046a20063600002002280204210720022802082104024020012903184201510d00024020072004460d00200228020021070c100b200441016a22072004490d01200441017422062007200620074b1b22064100480d010240024020040d002006101e21070c010b200228020020042006102221070b02402007450d002002200636020420022007360200200228020821040c100b20064101102d000b0240024020072004460d00200228020021070c010b200441016a22072004490d01200441017422062007200620074b1b22064100480d010240024020040d002006101e21070c010b200228020020042006102221070b2007450d0c2002200636020420022007360200200228020821040b2002200441016a360208200720046a41013a0000200141206a29030021030240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22062004490d01200741017422042006200420064b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d0d2002200436020420022007360200200228020821040b2002200441086a360208200720046a2003370000200141286a2802002106024020022802042207200228020822046b4104490d00200228020021070c0e0b200441046a22052004490d00200741017422042005200420054b1b22044100480d000240024020070d002004101e21070c010b200228020020072004102221070b02402007450d002002200436020420022007360200200228020821040c0e0b20044101102d000b1027000b41084101102d000b20074101102d000b20074101102d000b20044101102d000b20044101102d000b20054101102d000b20054101102d000b20044101102d000b20044101102d000b20044101102d000b20064101102d000b20044101102d000b2002200441046a360208200720046a20063600000c010b2002200441016a360208200720046a41003a00000b200141d6006a200210ca01200041086a200241086a28020036020020002002290300370200200241106a24000b130020004108360204200041dce8c5003602000b3400200041b7f2c50036020420004100360200200041146a410d360200200041106a41bcf2c500360200200041086a42053702000b5001017f024002404102101e2202450d00200241003b000020024102410410222202450d0120004284808080c00037020420002002360200200241003b00020f0b41024101102d000b41044101102d000b9b0a03027f017e047f230041b0016b22022400200241e8006a4200370300200241206a4100360200200241f4006a4200370200200241d8006a4100360200200241fc006a420037020020024184016a42003702002002418c016a420037020020024194016a420037020020024108360270200241086a420037030020024200370300200242808080801037036020024200370350200241003602a801200242013703a0010240024002400240024002404108101e2203450d002002428880808080013702a401200220033602a001200342003700002002290308210402400240024020022802a401220520022802a80122036b4108490d00200341086a210620022802a00121050c010b200341086a22062003490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21050c010b20022802a00120052007102221050b2005450d03200220073602a401200220053602a0010b200220063602a801200520036a2004370000200228026021070240024020022802a401220520022802a80122036b4104490d00200341046a210620022802a00121050c010b200341046a22062003490d01200541017422082006200820064b1b22084100480d010240024020050d002008101e21050c010b20022802a00120052008102221050b2005450d04200220083602a401200220053602a0010b200220063602a801200520036a2007360000200228026421072002200228026c22033602ac01200241ac016a200241a0016a10630240024020022802a401220520022802a80122066b2003490d0020022802a00121050c010b200620036a22082006490d01200541017422062008200620084b1b22064100480d010240024020050d002006101e21050c010b20022802a00120052006102221050b2005450d05200220063602a401200220053602a00120022802a80121060b2002200620036a3602a801200520066a2007200310cd051a200241106a200241a0016a10b40220022802702002280278200241a0016a109105200228025821050240024020022802a401220620022802a80122036b4104490d0020022802a00121060c010b200341046a22072003490d01200641017422032007200320074b1b22034100480d010240024020060d002003101e21060c010b20022802a00120062003102221060b2006450d06200220033602a401200220063602a00120022802a80121030b2002200341046a3602a801200620036a200536000020022903502104024020022802a401220620022802a80122036b4108490d0020022802a00121060c070b200341086a22052003490d00200641017422032005200320054b1b22034100480d000240024020060d002003101e21060c010b20022802a00120062003102221060b02402006450d00200220033602a401200220063602a00120022802a80121030c070b20034101102d000b1027000b41084101102d000b20074101102d000b20084101102d000b20064101102d000b20034101102d000b2002200341086a3602a801200620036a2004370000200241fc006a200241a0016a10ca01200041086a20022802a801360200200020022903a00137020002402002280268450d00200228026410200b024020022802202203450d002002280224450d00200310200b024020022802782203450d0020034105742106200228027041106a210303400240200341046a280200450d00200328020010200b200341206a2103200641606a22060d000b0b02402002280274450d00200228027010200b200241b0016a24000be60403077f017e017f230041106b2203240020032001360208200341086a2002106302402001450d00200141057421040340200041086a2802002105024002400240024002400240200241046a22062802002207200241086a220128020022086b4104490d00200228020021070c010b200841046a22092008490d01200741017422082009200820094b1b22084100480d010240024020070d002008101e21070c010b200228020020072008102221070b2007450d022002200736020020062008360200200128020021080b2001200841046a360200200720086a20053600002000290300210a0240024020062802002207200128020022086b4108490d00200228020021070c010b200841086a22052008490d01200741017422082005200820054b1b22084100480d010240024020070d002008101e21070c010b200228020020072008102221070b2007450d032002200736020020062008360200200128020021080b2001200841086a360200200720086a200a370000200041106a28020021092003200041186a280200220836020c2003410c6a20021063024020062802002205200128020022076b2008490d00200228020021050c040b200720086a220b2007490d0020054101742207200b2007200b4b1b22074100480d000240024020050d002007101e21050c010b200228020020052007102221050b02402005450d002002200536020020062007360200200128020021070c040b20074101102d000b1027000b20084101102d000b20084101102d000b200041206a21002001200720086a360200200520076a2009200810cd051a200441606a22040d000b0b200341106a24000bc80a02057f017e230041b0016b22022400200241ec006a4200370200200241e0006a4100360200200241286a4100360200200241f4006a4200370200200241fc006a420037020020024184016a42003702002002418c016a420037020020024194016a42003702002002419c016a410036020020024101360268200242003703082002420037035820024200370310200241003602a801200242013703a00102400240024002400240024002404108101e2203450d002002428880808080013702a401200220033602a00120034200370000200241003602ac01200241ac016a200241a0016a106302400240024020022802a401220420022802a80122036b4108490d0020022802a00121040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d03200220033602a401200220043602a00120022802a80121030b2002200341086a3602a801200420036a42003700000240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d04200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a4100360000200241186a200241a0016a10b402200228027821050240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22062003490d01200441017422032006200320064b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d05200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a2005360000200228027c21050240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22062003490d01200441017422032006200320064b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d06200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a2005360000200228026021050240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22062003490d01200441017422032006200320064b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d07200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a200536000020022903582107024020022802a401220420022802a80122036b4108490d0020022802a00121040c080b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b20022802a00120042003102221040b02402004450d00200220033602a401200220043602a00120022802a80121030c080b20034101102d000b1027000b41084101102d000b20034101102d000b20034101102d000b20034101102d000b20034101102d000b20034101102d000b2002200341086a3602a801200420036a200737000020024180016a200241a0016a10ca01200041086a20022802a801360200200020022903a0013702000240200228026c450d00200228026810200b024020022802282203450d00200228022c450d00200310200b200241b0016a24000bc90101017f23004180016b22022400200241c0006a428080808010370300200241c8006a4200370300200241186a4100360200200241d0006a4200370300200241d8006a4200370300200241e0006a4200370300200241e8006a4200370300200241f0006a4200370300200241f6006a4200370100200242013703382002420037030820024200370320200242003703102000200241086a108c0502402002413c6a280200450d00200228023810200b02402002280248450d00200228024410200b20024180016a24000bf31007037f017e017f017e0d7f027e017f230041f0016b2202240002400240024002400240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a36020002400240024020064108490d00200429000821072001200341706a22063602042001200441106a220436020020064104490d012004280000210820012003416c6a3602042001200441046a360200200241b0016a200110b70120022802b00122090d02200041003602640c0a0b200041003602640c090b200041003602640c080b20022802b401210a20012802042204450d06200241b8016a280200210b200128020022062d0000210320012004417f6a3602042001200641016a360200200341014b0d064100210c0240024020030e020100010b200241b0016a2001109505200241a0016a41086a2203200241b0016a41086a290300370300200241f8006a41086a2204200241b0016a41206a290300370300200241f8006a41106a2206200241d8016a290300370300200241f8006a41186a220d200241e0016a290300370300200241f8006a41206a220e200241e8016a290300370300200220022903b0013703a0012002200241b0016a41186a29030037037820022802c001220c450d0720022802c401210f200241e8006a41086a2003290300370300200241c0006a41086a2004290300370300200241c0006a41106a2006290300370300200241c0006a41186a200d290300370300200241c0006a41206a200e290300370300200220022903a001370368200220022903783703400b200241306a41086a200241e8006a41086a290300370300200241086a41086a200241c0006a41086a290300370300200241086a41106a200241c0006a41106a290300370300200241086a41186a200241c0006a41186a290300370300200241086a41206a200241c0006a41206a290300370300200220022903683703302002200229034037030820022001105f20022802000d05200128020422034160712204417f4c0d012002280204211002400240200341057622110d00410821120c010b2004101e2212450d030b02402010450d004100210e41002103410021060340024002402001280204220d4104490d002001280200220428000021132001200d417c6a22143602042001200441046a36020020144108490d00200429000421152001200d41746a36020420012004410c6a360200200241b0016a200110b70120022802b001220d450d00200641016a210420022902b401211620062011470d010240200e2004200e20044b1b221141ffffff3f712011470d00201141057422144100480d000240024020060d002014101e21120c010b201220032014102221120b20120d0220144108102d000b1027000b02402006450d00201241106a210103400240200141046a280200450d00200128020010200b200141206a2101200341606a22030d000b0b2011450d08201210200c080b201220036a22062015370300200641146a2016370200200641106a200d360200200641086a2013360200200e41026a210e200341206a21032004210620102004470d000b0b2012450d05200128020422044104490d032001280200220d280000211420012004417c6a22033602042001200d41046a36020020034108490d03200d29000421152001200441746a220e3602042001200d410c6a36020041002103200241003a009801200441736a21040c040b200041003602640c060b102c000b20044108102d000b2000410036026402402010450d0020104105742100201241106a210103400240200141046a280200450d00200128020010200b200141206a2101200041606a22000d000b0b02402011450d00201210200b0240200c450d00200f450d00200c10200b200a450d03200910200c030b02400340200e2003460d01200241f8006a20036a200d20036a2206410c6a2d00003a00002001200436020420012006410d6a3602002002200341016a22063a0098012004417f6a21042006210320064120470d000b200241c0006a41186a2201200241f8006a41186a290300370300200241c0006a41106a2203200241f8006a41106a290300370300200241c0006a41086a2204200241f8006a41086a290300370300200241a0016a41086a2206200241306a41086a290300370300200241b0016a41086a220d200241086a41086a290300370300200241b0016a41106a220e200241086a41106a290300370300200241b0016a41186a2213200241086a41186a290300370300200241b0016a41206a2217200241086a41206a29030037030020022002290378370340200220022903303703a001200220022903083703b00120002007370308200020053703002000200f3602242000200c360220200020022903a001370310200041186a2006290300370300200020022903b001370328200041306a200d290300370300200041386a200e290300370300200041c0006a2013290300370300200041c8006a2017290300370300200041f8006a2010360200200041f4006a2011360200200041f0006a2012360200200041ec006a200b3602002000200a3602682000200936026420002008360260200020143602582000201537035020004194016a20012903003702002000418c016a200329030037020020004184016a2004290300370200200041fc006a20022903403702000c030b0240200341ff0171450d00200241003a0098010b2000410036026402402010450d0020104105742100201241106a210103400240200141046a280200450d00200128020010200b200141206a2101200041606a22000d000b0b02402011450d00201210200b0240200c450d00200f450d00200c10200b200a450d02200910200c020b200041003602640240200c450d00200f450d00200c10200b200a450d01200910200c010b20004100360264200a450d00200910200b200241f0016a24000b9c0403057f017e037f23004180016b22022400024002400240200128020422034104490d0020012802002204280000210520012003417c6a22063602042001200441046a36020020064108490d00200429000421072001200341746a220836020420012004410c6a36020041002106200241003a0078200341736a21030240034020082006460d01200241d8006a20066a200420066a2209410c6a2d00003a00002001200336020420012009410d6a3602002002200641016a22093a00782003417f6a21032009210620094120470d000b200241186a41186a2204200241d8006a41186a2206290300370300200241186a41106a2208200241d8006a41106a2203290300370300200241186a41086a220a200241d8006a41086a220929030037030020022002290358370318200241c8006a200110b70120022802480d02200041003602100c030b0240200641ff0171450d00200241003a00780b200041003602100c020b200041003602100c010b2009200a2903003703002003200829030037030020062004290300370300200241146a200241c8006a41086a280200360200200220022903183703582002200229034837020c20002005360208200020073703002000200229020837020c200041146a200241086a41086a2902003702002000411c6a2002290358370200200041246a20092903003702002000412c6a2003290300370200200041346a20062903003702000b20024180016a24000b980d07037f017e037f017e097f017e027f230041f0016b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241b0016a200110b70120022802b00122030d01200041003602600c020b200041003602600c010b20022802b401210402400240024002400240024002400240200128020422064108490d00200241b0016a41086a28020021072001280200220829000021092001200641786a220a3602042001200841086a2208360200200a4104490d012008280000210b2001200641746a220a3602042001200841046a360200200a0d020c030b200041003602602004450d07200310200c070b200041003602602004450d06200310200c060b20082d0004210a2001200641736a220c3602042001200841056a360200200a41014b0d004100210802400240200a0e020100010b200241b0016a2001109505200241a0016a41086a2206200241b0016a41086a290300370300200241f8006a41086a220a200241b0016a41206a290300370300200241f8006a41106a220c200241d8016a290300370300200241f8006a41186a220d200241e0016a290300370300200241f8006a41206a220e200241e8016a290300370300200220022903b0013703a0012002200241b0016a41186a29030037037820022802c0012208450d0120022802c401210f200241e8006a41086a2006290300370300200241c0006a41086a200a290300370300200241c0006a41106a200c290300370300200241c0006a41186a200d290300370300200241c0006a41206a200e290300370300200220022903a001370368200220022903783703402001280204210c0b200241306a41086a200241e8006a41086a290300370300200241086a41086a200241c0006a41086a290300370300200241086a41106a200241c0006a41106a290300370300200241086a41186a200241c0006a41186a290300370300200241086a41206a200241c0006a41206a2903003703002002200229036837033020022002290340370308200c4104490d012001280200220d28000021102001200c417c6a22063602042001200d41046a36020020064104490d02200d28000421112001200c41786a22063602042001200d41086a36020020064104490d04200d28000821122001200c41746a22063602042001200d410c6a36020020064108490d04200d29000c21132001200c416c6a220e3602042001200d41146a36020041002106200241003a009801200c416b6a210a0340200e2006460d04200241f8006a20066a200d20066a220c41146a2d00003a00002001200a3602042001200c41156a3602002002200641016a220c3a009801200a417f6a210a200c2106200c4120470d000b200241c0006a41186a2201200241f8006a41186a290300370300200241c0006a41106a2206200241f8006a41106a290300370300200241c0006a41086a220a200241f8006a41086a290300370300200241a0016a41086a220c200241306a41086a290300370300200241b0016a41086a220d200241086a41086a290300370300200241b0016a41106a220e200241086a41106a290300370300200241b0016a41186a2214200241086a41186a290300370300200241b0016a41206a2215200241086a41206a29030037030020022002290378370340200220022903303703a001200220022903083703b00120002009370308200020053703002000200f36022420002008360220200020022903a001370310200041186a200c290300370300200020022903b001370328200041306a200d290300370300200041386a200e290300370300200041c0006a2014290300370300200041c8006a2015290300370300200041f4006a2011360200200041f0006a2010360200200041ec006a200b360200200041e8006a20073602002000200436026420002003360260200020123602582000201337035020004190016a200129030037030020004188016a200629030037030020004180016a200a290300370300200041f8006a20022903403703000c050b200041003602602004450d04200310200c040b2000410036026002402008450d00200f450d00200810200b2004450d03200310200c030b2000410036026002402008450d00200f450d00200810200b2004450d02200310200c020b0240200641ff0171450d00200241003a0098010b2000410036026002402008450d00200f450d00200810200b2004450d01200310200c010b2000410036026002402008450d00200f450d00200810200b2004450d00200310200b200241f0016a24000ba00a07037f017e087f017e077f027e017f230041d0006b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241286a200110b701200228022822030d01200042023703180c020b200042023703180c010b200241306a22062802002107200228022c2104200241286a200110b701024020022802282208450d00200228022c210902402001280204220a4104490d002006280200210b20012802002206280000210c2001200a417c6a220d3602042001200641046a360200200d4108490d002006290004210e2001200a41746a220d36020420012006410c6a2206360200024002400240200d450d0020062d0000210d2001200a41736a220f3602042001200641016a360200200d41014b0d0041002110200d0e020201020b2000420237031802402009450d00200810200b2004450d04200310200c040b410121100b02400240024002400240024002400240200f450d0020062d0001210d2001200a41726a220f3602042001200641026a360200200d41014b0d004100211102400240200d0e020100010b410121110b200f4104490d01200628000221122001200a416e6a220d3602042001200641066a360200200d4104490d02200628000621132001200a416a6a220d36020420012006410a6a360200200d4104490d05200628000a21142001200a41666a220d36020420012006410e6a360200200d450d0720062d000e210d2001200a41656a220f36020420012006410f6a2215360200200d41014b0d0742002116200d0e020403040b2000420237031802402009450d00200810200b2004450d09200310200c090b2000420237031802402009450d00200810200b2004450d08200310200c080b2000420237031802402009450d00200810200b2004450d07200310200c070b200f4108490d03200629000f21172001200a415d6a220d3602042001200641176a360200200d4104490d03200628001721182001200a41596a220f36020420012006411b6a2215360200420121160b41002106200241003a0048200f417f6a210a0340200f2006460d02200241286a20066a201520066a220d2d00003a00002001200a3602042001200d41016a3602002002200641016a220d3a0048200a417f6a210a200d2106200d4120470d000b200241086a41186a2201200241286a41186a290300370300200241086a41106a2206200241286a41106a290300370300200241086a41086a220a200241286a41086a29030037030020022002290328370308200020113a0055200020103a0054200041d0006a20143602002000201336024c200041c8006a2012360200200041c4006a200b360200200041c0006a20093602002000200836023c200041386a2007360200200041346a2004360200200041306a2003360200200041286a201836020020002017370220200020163702182000200c3602102000200e3703082000200537030020002002290308370156200041de006a200a290300370100200041e6006a2006290300370100200041ee006a20012903003701000c050b2000420237031802402009450d00200810200b2004450d04200310200c040b0240200641ff0171450d00200241003a00480b2000420237031802402009450d00200810200b2004450d03200310200c030b2000420237031802402009450d00200810200b2004450d02200310200c020b2000420237031802402009450d00200810200b2004450d01200310200c010b200042023703182004450d00200310200b200241d0006a24000bfe0703017f017e057f230041106b220224002002410036020820024201370300200029030021030240024002400240024002404108101e2204450d0020024288808080800137020420022004360200200420033700002000290308210302400240024020022802042205200228020822046b4108490d00200441086a2106200228020021050c010b200441086a22062004490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21050c010b200228020020052007102221050b2005450d0320022007360204200220053602000b20022006360208200520046a2003370000200028026021070240024020022802042205200228020822046b4104490d00200441046a2106200228020021050c010b200441046a22062004490d01200541017422082006200820064b1b22084100480d010240024020050d002008101e21050c010b200228020020052008102221050b2005450d0420022008360204200220053602000b20022006360208200520046a2007360000200028026421072002200041ec006a280200220436020c2002410c6a200210630240024020022802042205200228020822066b2004490d00200228020021050c010b200620046a22082006490d01200541017422062008200620084b1b22064100480d010240024020050d002006101e21050c010b200228020020052006102221050b2005450d052002200636020420022005360200200228020821060b2002200620046a360208200520066a2007200410cd051a200041106a200210b4022000280270200041f8006a2802002002109105200041d8006a28020021050240024020022802042206200228020822046b4104490d00200228020021060c010b200441046a22072004490d01200641017422042007200420074b1b22044100480d010240024020060d002004101e21060c010b200228020020062004102221060b2006450d062002200436020420022006360200200228020821040b2002200441046a360208200620046a200536000020002903502103024020022802042206200228020822046b4108490d00200228020021060c070b200441086a22052004490d00200641017422042005200420054b1b22044100480d000240024020060d002004101e21060c010b200228020020062004102221060b02402006450d002002200436020420022006360200200228020821040c070b20044101102d000b1027000b41084101102d000b20074101102d000b20084101102d000b20064101102d000b20044101102d000b2002200441086a360208200620046a2003370000200041fc006a200210ca012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bb70a03017f017e057f230041106b22022400200241003602082002420137030020002903002103024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200028026021052002200041e8006a280200220436020c2002410c6a2002106302400240024020022802042206200228020822076b2004490d00200228020021060c010b200720046a22082007490d01200641017422072008200720084b1b22074100480d010240024020060d002007101e21060c010b200228020020062007102221060b2006450d032002200736020420022006360200200228020821070b2002200720046a360208200620076a2005200410cd051a200029030821030240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22062004490d01200741017422042006200420064b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d042002200436020420022007360200200228020821040b2002200441086a360208200720046a2003370000200028026c21060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d052002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200041106a200210b402200028027021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d062002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200028027421060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d072002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200041d8006a28020021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d082002200436020420022007360200200228020821040b2002200441046a360208200720046a200636000020002903502103024020022802042207200228020822046b4108490d00200228020021070c090b200441086a22062004490d00200741017422042006200420064b1b22044100480d000240024020070d002004101e21070c010b200228020020072004102221070b02402007450d002002200436020420022007360200200228020821040c090b20044101102d000b1027000b41084101102d000b20074101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b2002200441086a360208200720046a2003370000200041f8006a200210ca012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bed0201057f230041c0006b22022400024002404112101e2203450d00200341106a41002f00fb84463b0000200341086a41002900f38446370000200341002900eb844637000020034112412410222203450d0120032001370012200241206a41186a22044200370300200241206a41106a22054200370300200241206a41086a22064200370300200242003703202003411a200241206a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290320370300200310200240024002402002412041e4fdc600410041001002417f460d004100210320024100360228200242083703202001200241206a109f0520022802282204450d02200020022903203702042000410c6a20043602000c010b200041a78bc600360204200041086a4118360200410121030b20002003360200200241c0006a24000f0b41bf8bc600412e41a888c6001028000b41124101102d000b41244101102d000bb50e05077f027e037f017e077f230041b0036b22022400024002400240024002400240024002404110101e2203450d00200341086a410029009787463700002003410029008f874637000020034110412010222203450d012003200137001020024198026a41186a2204420037030020024198026a41106a2205420037030020024198026a41086a2206420037030020024200370398022003411820024198026a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a20062903003703002002200229039802370368200310200240200241e8006a412041e4fdc600410041001002417f470d00200041d88ac60036020420004101360200200041086a41153602000c080b4110101e2203450d02200341086a410029009787463700002003410029008f874637000020034110412010222203450d032003200137001020024198026a41186a2204420037030020024198026a41106a2205420037030020024198026a41086a2206420037030020024200370398022003411820024198026a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a20062903003703002002200229039802370368200310202002410036029802200241e8006a412020024198026a100321072002280298022208417f460d052007450d052002200836022c2002200736022820024198026a200241286a10960520022802f8022203450d04200241d8016a41086a20024198026a41186a290300370300200241a8016a41086a200241c4026a290200370300200241a8016a41106a200241cc026a290200370300200241a8016a41186a200241d4026a290200370300200241c8016a200241dc026a290200370300200241d0016a200241e4026a280200360200200220022903a8023703d801200220022902bc023703a80120022903a0022109200229039802210a20022802b802210b20024188016a41086a20024198036a29030037030020024188016a41106a200241a0036a29030037030020024188016a41186a200241a8036a290300370300200220024190036a290300370388012002418c036a280200210420024188036a280200210520024184036a280200210620022902fc02210120022802f402210c20022802f002210d20022903e802210e2008450d06200710200c060b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41ceb8c4004133200241a8016a41fcbfc4004184b9c400102e000b410021030b20024188026a41086a2207200241d8016a41086a29030037030020024198026a41086a2208200241a8016a41086a29030037030020024198026a41106a220f200241a8016a41106a29030037030020024198026a41186a2210200241a8016a41186a29030037030020024198026a41206a2211200241a8016a41206a29030037030020024198026a41286a2212200241a8016a41286a280200360200200220022903d80137038802200220022903a80137039802200241e8016a41086a221320024188016a41086a290300370300200241e8016a41106a221420024188016a41106a290300370300200241e8016a41186a221520024188016a41186a29030037030020022002290388013703e8010240024020030d0042002101200241086a41186a4200370300200241086a41106a4200370300200241086a41086a420037030020024200370308410021044101210341002105410021064100210d4200210e4100210b420021094200210a0c010b200241d8006a41086a2007290300370300200241286a41086a2008290300370300200241286a41106a200f290300370300200241286a41186a2010290300370300200241286a41206a2011290300370300200241286a41286a2012280200360200200241086a41086a2013290300370300200241086a41106a2014290300370300200241086a41186a201529030037030020022002290388023703582002200229039802370328200220022903e8013703080b200041106a2009370300200041086a200a370300200041186a2002290358370300200041206a200241d8006a41086a290300370300200041286a200b3602002000412c6a2002290328370200200041346a200241286a41086a2903003702002000413c6a200241286a41106a290300370200200041c4006a200241286a41186a290300370200200041cc006a200241286a41206a290300370200200041d4006a200241286a41286a280200360200200041fc006a2004360200200041f8006a2005360200200041f4006a2006360200200041ec006a2001370200200041e8006a2003360200200041e4006a200c360200200041e0006a200d360200200041d8006a200e3703002000410036020020004180016a200229030837030020004188016a200241086a41086a29030037030020004190016a200241086a41106a29030037030020004198016a200241086a41186a2903003703000b200241b0036a24000bd10803037f017e0a7f230041a0026b2202240020024180016a2001109b05024002402002280280014101470d002000200229028401370204200041013602000c010b200241f0006a41086a20024180016a41206a290300370300200241386a41086a200241b8016a290300370300200241386a41106a200241c0016a290300370300200241386a41186a200241c8016a290300370300200241386a41206a200241d0016a290300370300200241386a41286a200241d8016a290300370300200241386a41306a200241e0016a290300370300200220024180016a41186a290300370370200220024180016a41306a29030037033820024180016a41106a290300210120024180016a41286a2802002103200241ac016a28020021042002290388012105200241086a41086a20024180016a41f8006a290300370300200241086a41106a20024180026a290300370300200241086a41186a20024188026a290300370300200241086a41206a20024190026a290300370300200241086a41286a20024198026a2903003703002002200241f0016a290300370308200241ec016a2802002106200241e8016a280200210702400240024020030d004100210820024100360288012002420837038001200120024180016a109f05200228028801220941f8006c210a200228028401210b200228028001220c210d02400340200a450d01200d41d4006a210e200d41d5006a210f200a41887f6a210a200d41f8006a210d200f2d0000200e2d000072450d000b419085c60021080b02402009450d00200941f8006c210a200c41c0006a210d03400240200d41746a280200450d00200d41706a28020010200b0240200d280200450d00200d417c6a28020010200b200d41f8006a210d200a41887f6a220a0d000b0b0240200b450d00200c10200b20080d01200041106a2001370300200041086a2005370300200041186a20022903703703002000412c6a2004360200200041286a4100360200200041306a2002290338370300200041206a200241f0006a41086a290300370300200041386a200241386a41086a290300370300200041c0006a200241386a41106a290300370300200041c8006a200241386a41186a290300370300200041d0006a200241386a41206a290300370300200041d8006a200241386a41286a290300370300200041e0006a200241386a41306a290300370300200041ec006a2006360200200041e8006a200736020020004100360200200041f0006a2002290308370300200041f8006a200241086a41086a29030037030020004180016a200241086a41106a29030037030020004188016a200241086a41186a29030037030020004190016a200241086a41206a29030037030020004198016a200241086a41286a2903003703000c030b200041d689c6003602044114210d0c010b200020083602044135210d0b20004101360200200041086a200d36020002402006450d00200710200b2003450d002004450d00200310200b200241a0026a24000be01505097f017e097f017e077f230041b0046b2202240002400240024002400240024002400240410e101e2203450d00200341066a41002900e18846370000200341002900db88463700002003410e411c10222203450d012003200137000e20024190036a41186a2204420037030020024190036a41106a2205420037030020024190036a41086a2206420037030020024200370390032003411620024190036a1001200241e8016a41186a2004290300370300200241e8016a41106a2005290300370300200241e8016a41086a200629030037030020022002290390033703e801200310200240200241e8016a412041e4fdc600410041001002417f470d0041012107411421080c080b410e101e2203450d02200341066a41002900e18846370000200341002900db88463700002003410e411c10222203450d032003200137000e20024190036a41186a2209420037030020024190036a41106a2207420037030020024190036a41086a220a420037030020024200370390032003411620024190036a1001200241e8016a41186a2009290300370300200241e8016a41106a2007290300370300200241e8016a41086a200a29030037030020022002290390033703e801200310202002410036029003200241e8016a412020024190036a10032107200228029003220a417f460d052007450d052002200a3602b401200220073602b00120024190036a200241b0016a10940520022802f4032209450d04200241d0026a41086a20024190036a41186a290300370300200241a8026a41086a200241c0036a290300370300200241a8026a41106a200241c8036a290300370300200241a8026a41186a200241d0036a290300370300200241c8026a200241d8036a290300370300200220022903a0033703d002200220022903b8033703a802200229039803210b200228029403210c200228029003210820022802b003210320022802b403210d20024188026a41086a20024194046a29020037030020024188026a41106a2002419c046a29020037030020024188026a41186a200241a4046a29020037030020022002418c046a2902003703880220024188046a280200210e20024184046a280200210f20024180046a2802002110200241ac046a280200211120022903f803210120022802f003211220022802ec03211320022802e803211420022903e0032115200a450d06200710200c060b410e4101102d000b411c4101102d000b410e4101102d000b411c4101102d000b41ceb8c4004133200241a8026a41fcbfc4004184b9c400102e000b410021090b4108210a20024180036a41086a2207200241d0026a41086a29030037030020024190036a41086a2216200241a8026a41086a29030037030020024190036a41106a2217200241a8026a41106a29030037030020024190036a41186a2218200241a8026a41186a29030037030020024190036a41206a2219200241a8026a41206a290300370300200241e0026a41086a221a20024188026a41086a290300370300200241e0026a41106a221b20024188026a41106a290300370300200241e0026a41186a221c20024188026a41186a290300370300200220022903d00237038003200220022903a8023703900320022002290388023703e0020240024020090d004200210b20024190016a41186a420037030020024190016a41106a420037030020024190016a41086a420037030020024200370390014100210c410121094100210e4100210f4200210141002108410021124100211442002115410021030c010b200241d8016a41086a2007290300370300200241b0016a41086a2016290300370300200241b0016a41106a2017290300370300200241b0016a41186a2018290300370300200241b0016a41206a201929030037030020024190016a41086a201a29030037030020024190016a41106a201b29030037030020024190016a41186a201c29030037030020022002290380033703d80120022002290390033703b001200220022903e002370390012010210a0b20024180016a41086a200241d8016a41086a290300370300200241d8006a41086a200241b0016a41086a290300370300200241d8006a41106a200241b0016a41106a290300370300200241d8006a41186a200241b0016a41186a290300370300200241d8006a41206a200241b0016a41206a290300370300200220022903d80137038001200220022903b00137035820024190036a41186a20024190016a41186a29030037030020024190036a41106a20024190016a41106a29030037030020024190036a41086a20024190016a41086a290300370300200220022903900137039003410021070b200241c8006a41086a20024180016a41086a290300370300200241206a41086a200241d8006a41086a290300370300200241206a41106a200241d8006a41106a290300370300200241206a41186a200241d8006a41186a290300370300200241206a41206a200241d8006a41206a290300370300200241086a2006290300370300200241106a2005290300370300200241186a20042903003703002002200229038001370348200220022903583703202002200229039003370300024002402007450d00200041b089c60036020420004101360200200041086a20083602000c010b200241d8006a41086a200241c8006a41086a290300370300200241a8026a41086a200241206a41086a290300370300200241a8026a41106a200241206a41106a290300370300200241a8026a41186a200241206a41186a290300370300200241a8026a41206a200241206a41206a290300370300200241b0016a41086a200241086a290300370300200241b0016a41106a200241106a290300370300200241b0016a41186a200241186a29030037030020022002290348370358200220022903203703a802200220022903003703b0010240024020030d0020024190036a200b109c050240024002402002280290034101460d00200241bc036a2802002104200241b8036a28020021030240200241fc036a280200450d00200241f8036a28020010200b20030d010c020b2000200229029403370204200041013602000c030b2004450d00200310200b200041106a200b3703002000410c6a200c360200200041086a2008360200200041186a20022903583703002000412c6a200d360200200041286a4100360200200041306a20022903a802370300200041206a200241d8006a41086a290300370300200041386a200241a8026a41086a290300370300200041c0006a200241a8026a41106a290300370300200041c8006a200241a8026a41186a290300370300200041d0006a200241a8026a41206a29030037030020004180016a200e360200200041fc006a200f360200200041f8006a200a360200200041f0006a2001370300200041ec006a2009360200200041e8006a2012360200200041e4006a2013360200200041e0006a2014360200200041d8006a2015370300200041a4016a201136020020004184016a20022903b0013702002000418c016a200241b0016a41086a29030037020020004194016a200241b0016a41106a2903003702002000419c016a200241b0016a41186a290300370200200041003602000c020b200041c489c60036020420004101360200200041086a41123602000b02402001a7450d00200910200b02402003450d00200d450d00200310200b0240200e450d00200e4105742103200a41106a210003400240200041046a280200450d00200028020010200b200041206a2100200341606a22030d000b0b200f450d00200a10200b200241b0046a24000bf71b090a7f027e047f017e017f017e017f027e077f230041d0036b22042400024002400240024002404110101e2205450d00200541086a410029009787463700002005410029008f874637000020054110412010222205450d012005200137001020044180036a41186a2206420037030020044180036a41106a2207420037030020044180036a41086a2208420037030020044200370380032005411820044180036a1001200441c0016a41186a2006290300370300200441c0016a41106a2007290300370300200441c0016a41086a200829030037030020042004290380033703c0012005102020044100360220200441c0016a4120200441206a1003210520042802202206417f460d032005450d0320042006360284032004200536028003200441206a20044180036a1096052004280280012209450d0220044194016a280200210820044190016a2802002107200428028401210a2004280244210b2004280240210c02402006450d00200510200b200741016a210d0c040b41104101102d000b41204101102d000b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b410121094100210a4100210c410021084101210d0b4200210e200441206a41086a220542003703002004420037032041cf82c7004110200441206a100020044180036a41086a200529030037030020042004290320370380032004410036022020044180036a4110200441206a10032105024002400240024002400240024002400240024002400240024020042802202206417f460d002005450d0020064108490d012005290000210e200510200b20022802082206417f4c0d0120022802002107410121054101210202402006450d002006101e2202450d030b20022007200610cd0521021079210710a902210f200441186a2210200341186a290000370300200441106a2211200341106a290000370300200441086a2212200341086a2900003703002004200329000037030002402006450d002006101e2205450d040b20052002200610cd0521032004418c016a200636020020044188016a2006360200200441c0006a410036020020044198016a4100360200200441f8006a2007360200200441cc006a20042902e001370200200441d4006a200441e0016a41086a290200370200200441dc006a200441e0016a41106a290200370200200441e4006a200441e0016a41186a29020037020020042003360284012004200d20086a221336028001200420013703282004200e37032020044208370390012004200f370370200441b4016a2010290300370200200441ac016a2011290300370200200441a4016a20122903003702002004200429030037029c01410e101e2203450d04200341066a41002900e18846370000200341002900db88463700002003410e411c10222203450d052003200e37000e20044180036a41186a2205420037030020044180036a41106a2208420037030020044180036a41086a220d420037030020044200370380032003411620044180036a1001200441c0016a41186a2005290300370300200441c0016a41106a2008290300370300200441c0016a41086a200d29030037030020042004290380033703c0012003102020044120360284032004200441c0016a36028003200441206a20044180036a1098050240200428028801450d0020042802840110200b024020042802402203450d002004280244450d00200310200b02402004280298012203450d002003410574210520042802900141106a210303400240200341046a280200450d00200328020010200b200341206a2103200541606a22050d000b0b0240200428029401450d0020042802900110200b200441206a41086a220342003703002004420037032041cf82c7004110200441206a100020044180036a41086a200329030037030020042004290320370380032004410036022020044180036a4110200441206a100321030240024020042802202205417f470d00420121140c010b024020030d00420121140c010b20054108490d072003290000211420031020201442017c21140b200441206a41086a220342003703002004420037032041cf82c7004110200441206a100020044180036a41086a200329030037030020042004290320370380032004201437032020044180036a4110200441206a410810054110101e2203450d07200341086a410029009787463700002003410029008f874637000020034110412010222203450d082003200137001020044180036a41186a2205420037030020044180036a41106a2208420037030020044180036a41086a220d420037030020044200370380032003411820044180036a100120044180026a41186a200529030037030020044180026a41106a200829030037030020044180026a41086a200d290300370300200420042903800337038002200310202004410036022020044180026a4120200441206a1003211120042802202215417f460d0a2011450d0a200420153602a402200420113602a002200441206a200441a0026a1096052004280280012203450d09200441b0036a41086a200441206a41186a29030037030020044180036a41086a200441cc006a29020037030020044180036a41106a200441d4006a29020037030020044180036a41186a200441dc006a290200370300200441a0036a200441e4006a290200370300200441a8036a200441ec006a280200360200200420042903303703b0032004200429024437038003200429032821162004290320211420042802402105200441e0026a41086a200441a0016a290300370300200441e0026a41106a200441a8016a290300370300200441e0026a41186a200441b0016a290300370300200420044198016a2903003703e00220044194016a280200211020044190016a28020021172004418c016a280200210d2004290284012118200428027c211220042802782108200429037021192015450d0b201110200c0b0b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b102c000b20064101102d000b20064101102d000b410e4101102d000b411c4101102d000b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b41104101102d000b41204101102d000b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b410021030b200441c0036a41086a2211200441b0036a41086a290300370300200441206a41086a221520044180036a41086a290300370300200441206a41106a221a20044180036a41106a290300370300200441206a41186a221b20044180036a41186a290300370300200441206a41206a221c20044180036a41206a290300370300200441206a41286a221d20044180036a41286a280200360200200420042903b0033703c0032004200429038003370320200441e0016a41086a221e200441e0026a41086a290300370300200441e0016a41106a221f200441e0026a41106a290300370300200441e0016a41186a2220200441e0026a41186a290300370300200420042903e0023703e0010240024020030d0042002118200441c0016a41186a4200370300200441c0016a41106a4200370300200441c0016a41086a4200370300200442003703c00141002110410121114100210d4101210341002108420021194100210542002116420021140c010b200441d0026a41086a2011290300370300200441a0026a41086a2015290300370300200441a0026a41106a201a290300370300200441a0026a41186a201b290300370300200441a0026a41206a201c290300370300200441a0026a41286a201d280200360200200441c0016a41086a201e290300370300200441c0016a41106a201f290300370300200441c0016a41186a2020290300370300200420042903c0033703d002200420042903203703a002200420042903e0013703c001201741016a21110b200441206a41186a2215200441d0026a41086a290300370300200441206a41206a2005360200200441c4006a20042903a002370200200441206a412c6a200441a0026a41086a290300370200200441206a41346a200441a0026a41106a290300370200200441206a413c6a200441a0026a41186a290300370200200441206a41c4006a200441a0026a41206a290300370200200441ec006a200441c8026a2802003602002004201637032820042014370320200420042903d00237033020044184016a2018370200200441206a41d8006a2008360200200441a0016a200441c0016a41086a290300370300200441a8016a200441c0016a41106a290300370300200441b0016a200441c0016a41186a290300370300200420103602940120042011360290012004200d36028c0120042003360280012004201236027c20042019370370200420042903c001370398012004412036028403200420044180026a36028003200441206a20044180036a10990502402004280280012203450d000240200428028401450d00200310200b20042802402203450d002004280244450d00200310200b20004200370310200020013703082000200e370300200041186a4200370300200041206a41003602002000412c6a2004290220370200200041346a200441206a41086a2902003702002000413c6a200441206a41106a290200370200200041c4006a2015290200370200200041f8006a410036020020004208370370200041ec006a2006360200200041e8006a20063602002000200236026420002013360260200041d8006a20073602002000200f37035020004194016a200441186a2903003702002000418c016a200441106a29030037020020004184016a200441086a2903003702002000200429030037027c0240200a450d00200910200b0240200b450d00200c450d00200c10200b200441d0036a24000b970d060b7f017e027f027e057f017e23004190026b22022400024002400240024002404112101e2203450d00200341106a41002f00fb84463b0000200341086a41002900f38446370000200341002900eb844637000020034112412410222203450d012003200037001220024198016a41186a2204420037030020024198016a41106a2205420037030020024198016a41086a2206420037030020024200370398012003411a20024198016a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a20062903003703002002200229039801370368200310202002410036029801200241e8006a412020024198016a100321032002280298012207417f460d032003450d032002200736020c2002200336020820024198016a200241086a10970520022903b00122004202510d022002200241e0016a2903003703582002200241e6016a29010037015e200241d8016a2802002105200241d0016a2802002108200241c8016a2802002109200241c0016a280200210a20022802dc01210420022802d401210620022802cc01210b20022802c401210c20022903b801210d20022802ac01210e20022802a801210f20022903a00121102002290398012111200241d0006a20024186026a290100370300200241c8006a200241fe016a290100370300200241c0006a200241f6016a290100370300200220022901ee0137033820022f018e0221122007450d04200310200c040b41124101102d000b41244101102d000b41ceb8c4004133200241386a41fcbfc4004184b9c400102e000b420221000b20024198016a41086a2203200241386a41086a29030037030020024198016a41106a2207200241386a41106a29030037030020024198016a41186a2213200241386a41186a29030037030020022002290358370388012002200229015e37018e0120022002290338370398010240024020004202520d0042002110200241086a41186a4200370300200241086a41106a4200370300200241086a41086a420037030020024200370308200242003703282002420037012e4100210b41012109410021084100210441002105410121064100210f42002111420021000c010b200241086a41086a2003290300370300200241086a41106a2007290300370300200241086a41186a20132903003703002002200229018e0137012e200220022903880137032820022002290398013703080b20024198016a41086a2207200241086a41086a29030037030020024198016a41106a2213200241086a41106a29030037030020024198016a41186a2214200241086a41186a290300370300200220022903283703682002200229012e37016e200220022903083703980102400240024002400240024020012802082203200141046a280200470d00200341016a22152003490d02200341017422162015201620154b1b2215ad42f8007e2217422088a70d022017a722164100480d020240024020030d002016101e21030c010b2001280200200341f8006c2016102221030b2003450d0120012003360200200141046a2015360200200128020821030b2001280200200341f8006c6a2203200636023c200320093602302003200c36022c200320003703182003200e360214200320103703082003201137030020032002290368370348200341c4006a2004360200200341c0006a2005360200200341386a2008360200200341346a200b360200200341286a200a360200200341206a200d370300200341106a200f360200200341ce006a200229016e370100200320123b01762003200229039801370156200341de006a2007290300370100200341e6006a2013290300370100200341ee006a20142903003701002001200128020841016a360208024020004201520d004112101e2203450d03200341106a41002f00fb84463b0000200341086a41002900f38446370000200341002900eb844637000020034112412410222203450d042003200d37001220024198016a41186a2204420037030020024198016a41106a2205420037030020024198016a41086a2206420037030020024200370398012003411a20024198016a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a2006290300370300200220022903980137036820031020200241e8006a412041e4fdc600410041001002417f460d05200d2001109f050b20024190026a24000f0b20164108102d000b1027000b41124101102d000b41244101102d000b41888ac60041d00041a888c6001028000b02000b130020004101360204200041dc93c6003602000b3400200041dd97c60036020420004100360200200041146a4107360200200041106a41e497c600360200200041086a42073702000b2f01017f02404101101e22020d0041014101102d000b200042818080801037020420002002360200200241003a00000b130020004101360204200041f4a4c6003602000b930201057f230041106b22022400024002404111101e2203450d0020024211370204200220033602002002410d36020c2002410c6a20021063024020022802042204200228020822036b410d490d002003410d6a2105200228020021040c020b02402003410d6a22052003490d00200441017422062005200620054b1b22064100480d000240024020040d002006101e21040c010b200228020020042006102221040b02402004450d0020022006360204200220043602000c030b20064101102d000b1027000b41114101102d000b20022005360208200420036a220341002900caa646370000200341056a41002900cfa64637000020002002290300370200200041086a2002280208360200200241106a24000bc904010b7f230041106b220324002003420037030820012002200341086a101b20032003290308370300200120026a21040240024002400240200241086a220520024f0d00200341086a2106200321074100210841002105410121094100210a0340200841017421022006200741016a220b6b210c034020072d00002107024002400240024020082005470d00200c2105024002400240200a41ff01710e03010200010b200420016b21050c010b417f200c200420016b6a22052005200c491b21050b2008417f200541016a220d200d2005491b6a22052008490d0720022005200220054b1b22054100480d070240024020080d002005101e21090c010b200920082005102221090b2009450d010b200920086a20073a00000240024002400240200a41ff01710e03010300010b20042001460d010c050b0240200b2006460d004100210a0c040b20042001470d040b200841016a21080c090b4101210a200b2006470d01200841016a21080c080b20054101102d000b200841016a2108200b21070c020b200841016a21084102210a200241026a21022001220741016a21010c000b0b0b410121092005450d0120054100480d002005101e22090d0120054101102d000b1027000b410021080340200920086a200320086a2d00003a0000200841016a22084108470d000b024020020d00410821080c010b200920086a210a410021080340200a20086a200120086a2d00003a00002002200841016a2208470d000b200420016b41086a21080b200020083602082000200536020420002009360200200341106a24000b1300200041013602042000419ca7c6003602000b3400200041a5a8c60036020420004100360200200041146a4103360200200041106a41b0a8c600360200200041086a420a3702000bba1e01097f230041d0006b22022400024002400240024002400240024002404118101e2203450d00200341106a410029008d8e46370000200341086a41002900858e46370000200341002900fd8d4637000020034118413010222203450d0120032000370018200241286a41186a22044200370300200241286a41106a22054200370300200241286a41086a220642003703002002420037032820034120200241286a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a200629030037030020022002290328370308200310202002410036023020024201370328200128024021062002200141c8006a280200220336024c200241cc006a200241286a106302400240200228022c2205200228023022046b2003490d00200228022821050c010b200420036a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200228022820052004102221050b2005450d032002200436022c20022005360228200228023021040b2002200420036a360230200520046a2006200310cd051a200128024c21062002200141d4006a280200220336024c200241cc006a200241286a106302400240200228022c2205200228023022046b2003490d00200228022821050c010b200420036a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200228022820052004102221050b2005450d042002200436022c20022005360228200228023021040b2002200420036a360230200520046a2006200310cd051a200128025821062002200141e0006a280200220336024c200241cc006a200241286a106302400240200228022c2205200228023022046b2003490d00200228022821050c010b200420036a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200228022820052004102221050b2005450d052002200436022c20022005360228200228023021040b2002200420036a360230200520046a2006200310cd051a2001280264210502400240200228022c2204200228023022036b4104490d00200228022821040c010b200341046a22062003490d08200441017422032006200320064b1b22034100480d080240024020040d002003101e21040c010b200228022820042003102221040b2004450d062002200336022c20022004360228200228023021030b2002200341046a360230200420036a2005360000200129030021000240200228022c2204200228023022036b4108490d00200228022821040c070b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200228022820042003102221040b02402004450d002002200336022c20022004360228200228023021030c070b20034101102d000b41184101102d000b41304101102d000b20044101102d000b20044101102d000b20044101102d000b20034101102d000b2002200341086a360230200420036a2000370000024020012d0008220341024b0d00024002400240024002400240024020030e03000102000b02400240200228022c20022802302203460d00200228022821040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228022820032005102221040b2004450d032002200536022c20022004360228200228023021030b2002200341016a360230200420036a41003a0000200129031021000240200228022c2204200228023022036b4108490d00200228022821040c060b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200228022820042003102221040b02402004450d002002200336022c20022004360228200228023021030c060b20034101102d000b0240200228022c20022802302203460d00200228022821040c040b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022820032005102221040b02402004450d002002200536022c20022004360228200228023021030c040b20054101102d000b0240200228022c20022802302203460d00200228022821040c020b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200228022820032005102221040b02402004450d002002200536022c20022004360228200228023021030c020b20054101102d000b20054101102d000b2002200341016a360230200420036a41023a00000c020b2002200341016a360230200420036a41013a0000200141096a200241286a10ca010c010b2002200341086a360230200420036a20003700000b20012d007421050240024002400240024002400240200228022c20022802302203460d00200228022821040c010b200341016a22042003490d06200341017422062004200620044b1b22064100480d060240024020030d002006101e21040c010b200228022820032006102221040b2004450d012002200636022c20022004360228200228023021030b2002200341016a360230200420036a20053a0000024020012903304201510d000240200228022c20022802302203460d00200228022821040c050b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022820032005102221040b02402004450d002002200536022c20022004360228200228023021030c050b20054101102d000b02400240200228022c20022802302203460d00200228022821040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022820032005102221040b2004450d022002200536022c20022004360228200228023021030b2002200341016a360230200420036a41013a0000200129033821000240200228022c2204200228023022036b4108490d00200228022821040c030b200341086a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200228022820042003102221040b02402004450d002002200336022c20022004360228200228023021030c030b20034101102d000b20064101102d000b20054101102d000b2002200341086a360230200420036a20003700000c010b2002200341016a360230200420036a41003a00000b200141f5006a200241286a10ca0120014195016a200241286a10ca012002200141f0006a220628020036024c200241cc006a200241286a1063200141e8006a28020021030240200141ec006a2802002204450d0020042105034020032802b80121032005417f6a22050d000b03402004417f6a22040d000b0b024020062802002208450d0002400240024002400240024020032f01060d0002400240200328020022040d004100210541002103410021040c010b20032f01042103410121050b0240200320042f0106490d000340200541016a210520042f01042203200428020022042f01064f0d000b0b200420034104746a41086a2109200341027420046a41bc016a28020021034100210602402005417f6a2204450d00034020032802b80121032004417f6a22040d000b0b20092d00080e0404030201040b41012106200341086a22092d00080e0403020100030b410321050c030b410221050c020b410121050c010b410021050b200220053a004c0240024002400240200228022c20022802302204460d00200228022821070c010b200441016a22072004490d042004410174220a2007200a20074b1b220a4100480d040240024020040d00200a101e21070c010b20022802282004200a102221070b2007450d012002200a36022c20022007360228200228023021040b2002200441016a360230200720046a20053a0000200929030021000240200228022c2205200228023022046b4108490d00200228022821050c020b200441086a22072004490d03200541017422042007200420074b1b22044100480d030240024020050d002004101e21050c010b200228022820052004102221050b02402005450d002002200436022c20022005360228200228023021040c020b20044101102d000b200a4101102d000b2002200441086a360230200520046a20003700002008417f6a2209450d000340024002400240024002400240200620032f0106490d0002400240200328020022040d004100210541002103410021040c010b20032f01042103410121050b0240200320042f0106490d000340200541016a210520042f01042203200428020022042f01064f0d000b0b200420034104746a41086a2108200341027420046a41bc016a28020021034100210602402005417f6a2204450d00034020032802b80121032004417f6a22040d000b0b20082d00080e0404030201040b20064104742104200641016a2106200320046a41086a22082d00080e0403020100030b410321050c030b410221050c020b410121050c010b410021050b200220053a004c0240024002400240200228022c20022802302204460d00200228022821070c010b200441016a22072004490d052004410174220a2007200a20074b1b220a4100480d050240024020040d00200a101e21070c010b20022802282004200a102221070b2007450d012002200a36022c20022007360228200228023021040b2002200441016a360230200720046a20053a0000200829030021000240200228022c2205200228023022046b4108490d00200228022821050c020b200441086a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200228022820052004102221050b02402005450d002002200436022c20022005360228200228023021040c020b20044101102d000b200a4101102d000b2002200441086a360230200520046a20003700002009417f6a22090d000b0b200228022c2103200241086a4120200228022822042002280230100502402003450d00200410200b0240200141c4006a280200450d00200128024010200b0240200141d0006a280200450d00200128024c10200b0240200141dc006a280200450d00200128025810200b2001280268200141ec006a280200200141f0006a28020010f502200241d0006a24000f0b1027000b340020004192b1c60036020420004100360200200041146a4103360200200041106a41a8b1c600360200200041086a42163702000b3001017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242013700000b130020004104360204200041e8b5c6003602000b340020004183b9c60036020420004100360200200041146a410f360200200041106a4190b9c600360200200041086a420a3702000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024180103600000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024180083600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241283600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241053600000bea0101057f230041106b2202240020024100360208200242013703002002410136020c2002410c6a200210630240024020022802042203200228020822046b4108490d00200441086a2105200228020021030c010b0240200441086a22052004490d00200341017422062005200620054b1b22064100480d000240024020030d002006101e21030c010b200228020020032006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b1027000b20022005360208200320046a4200370000200041086a200228020836020020002002290300370200200241106a24000bb20903067f017e047f230041206b220224002001280204412b200128020022031b2104200341a8d3c60020031b2105024002400240024020030d002000200536020420004101360200200041086a20043602000c010b200141086a2802002103200241106a41086a22064200370300200242003703104191cdc600411a200241106a1000200241086a2006290300370300200220022903103703002002410036021020024110200241106a100321060240024002400240024020022802102207417f470d00410521070c010b024020060d00410521070c010b20074104490d0120062800002107200610200b0240200720034d0d004110210641ddd2c60021030c030b200241106a41086a220642003703002002420037031041abcdc600411a200241106a1000200241086a2006290300370300200220022903103703002002410036021020024110200241106a100321060240024020022802102207417f470d00412821070c010b024020060d00412821070c010b20074104490d0220062800002107200610200b200720034f0d04410f210641edd2c60021030c020b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b2000200336020420004101360200200041086a20063602002004450d00200510200b0240200128020c2200450d00200141106a280200450d00200010200b20012802182200450d012001411c6a280200450d01200010200c010b02400240024002402001411c6a2902004200200128021822071b2208422088a72206417f4c0d004101210902402006450d002006101e2209450d020b20092007410120071b220a200610cd05210b200241106a41086a220742003703002002420037031041e2cdc600411d200241106a1000200241086a2007290300370300200220022903103703002002410036021020024110200241106a100321070240024020022802102209417f470d0041801021090c010b024020070d0041801021090c010b20094104490d0320072800002109200710200b02402008a7450d00200a10200b02400240200128020c22070d0041012107420021084100210c0c010b200141106a2902002208422088a7210c0b200241106a41086a220142003703002002420037031041c5cdc600411d200241106a1000200241086a2001290300370300200220022903103703002002410036021020024110200241106a10032101024002402002280210220a417f470d00418008210a0c010b024020010d00418008210a0c010b200a4104490d042001280000210a200110200b0240200a200c490d002000200536020420004100360200200041246a20062009200920064b1b360200200041206a20063602002000411c6a200b360200200041146a2008370200200041106a20073602002000410c6a2003360200200041086a20043602000c050b200041fcd2c60036020420004101360200200041086a411336020002402008a7450d00200710200b02402006450d00200b10200b2004450d04200510200c040b102c000b20064101102d000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b200241206a24000bef1907017f017e0a7f017e027f017e037f230041e0026b2203240042002104200341f0006a41086a2205420037030020034200370370418fd3c6004119200341f0006a1000200341a8026a41086a2005290300370300200320032903703703a80220034100360270200341a8026a4110200341f0006a10032105024002400240024002400240024002400240024002400240024002400240024020032802702206417f460d002005450d0020064108490d0120052900002104200510200b20012802082207417f4c0d01200128020021080240024020070d00410121050c010b2007101e2205450d030b20052008200710cd052109200141146a280200220a417f4c0d01200128020c210502400240200a0d00410121060c010b200a101e2206450d040b20062005200a10cd05210b200141206a280200220c417f4c0d012001280218210102400240200c0d00410121050c010b200c101e2205450d050b20052001200c10cd05210d1079210e10a902210f200341c8006a41206a200241206a290300370300200341c8006a41186a200241186a290300370300200341c8006a41106a200241106a290300370300200341c8006a41086a200241086a290300370300200341286a41086a200041086a2201290000370300200341286a41106a200041106a2205290000370300200341286a41186a200041186a22062900003703002003200229030037034820032000290000370328200341086a41186a2006290000370300200341086a41106a2005290000370300200341086a41086a2001290000370300200320002900003703084123101e2201450d05200141002900958e463700002001411f6a41002800b48e46360000200141186a41002900ad8e46370000200141106a41002900a58e46370000200141086a410029009d8e46370000200342a3808080b0043702cc02200320013602c8022000200341c8026a10ca0120032802d002210120032802c8022102200341f0006a41186a22054200370300200341f0006a41106a22064200370300200341f0006a41086a221042003703002003420037037020022001200341f0006a1001200341a8026a41186a2005290300370300200341a8026a41106a2006290300370300200341a8026a41086a2010290300370300200320032903703703a802024020032802cc02450d0020032802c80210200b20034100360270200341a8026a4120200341f0006a1003210120032802702202417f460d072001450d07200320023602cc02200320013602c802200341f0006a200341c8026a10ec0120032802702211450d062003290274211202402002450d00200110200b200320113602c802200320123702cc02200341c8026a21012012422088a722022012a72213470d090c080b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b102c000b20074101102d000b200a4101102d000b200c4101102d000b41234101102d000b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b41002102200341003602d002200342083703c80241082111200341c8026a21010b200141046a28020022132002470d00200241016a22052002490d05200241017422062005200620054b1b221341ffffffff01712013470d05201341037422054100480d050240024020020d002005101e21020c010b200128020020024103742005102221020b2002450d0120012002360200200141046a201336020020032802d002210220032802c80221110b200128020020024103746a20043703002003200241016a22013602d0020240024020110d00200341a8026a412010040c010b2003410036027820034201370370200320013602d802200341d8026a200341f0006a10630240024020010d002003280278211420032802742110200328027021020c010b4100200328027822016b2105200241037441086a2115200328027421102011210603402006290300211202400240201020056a4108490d00200328027021020c010b200141086a22022001490d08201041017422142002201420024b1b22144100480d080240024020100d002014101e21020c010b200328027020102014102221020b02402002450d002003201436027420032002360270201421100c010b20144101102d000b200641086a21062003200141086a2214360278200220016a2012370000200541786a210520142101201541786a22150d000b0b200341a8026a412020022014100502402010450d00200210200b2013450d00201110200b0240024002404129101e2201450d00200141002900b88e46370000200141286a41002d00e08e463a0000200141206a41002900d88e46370000200141186a41002900d08e46370000200141106a41002900c88e46370000200141086a41002900c08e46370000200342a980808090053702cc02200320013602c8022000200341c8026a10ca0120032802d002210120032802c8022102200341f0006a41186a22054200370300200341f0006a41106a22064200370300200341f0006a41086a221042003703002003420037037020022001200341f0006a1001200341a8026a41186a2005290300370300200341a8026a41106a2006290300370300200341a8026a41086a2010290300370300200320032903703703a802024020032802cc02450d0020032802c80210200b20034100360270200341a8026a4120200341f0006a1003210120032802702202417f460d022001450d02200320023602cc02200320013602c802200341f0006a200341c8026a10ec0120032802702200450d012003290274211202402002450d00200110200b200320003602c802200320123702cc02200341c8026a21012012422088a722022012a72211470d050c040b41294101102d000b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b41002102200341003602d002200342083703c80241082100200341c8026a21010c010b20054108102d000b200141046a28020022112002470d00200241016a22052002490d02200241017422062005200620054b1b221141ffffffff01712011470d02201141037422054100480d020240024020020d002005101e21020c010b200128020020024103742005102221020b2002450d0120012002360200200141046a201136020020032802d002210220032802c80221000b200128020020024103746a20043703002003200241016a22013602d0020240024020000d00200341a8026a412010040c010b2003410036027820034201370370200320013602d802200341d8026a200341f0006a10630240024020010d002003280278211420032802742110200328027021020c010b4100200328027822016b2105200241037441086a2115200328027421102000210603402006290300211202400240201020056a4108490d00200328027021020c010b200141086a22022001490d05201041017422142002201420024b1b22144100480d050240024020100d002014101e21020c010b200328027020102014102221020b02402002450d002003201436027420032002360270201421100c010b20144101102d000b200641086a21062003200141086a2214360278200220016a2012370000200541786a210520142101201541786a22150d000b0b200341a8026a412020022014100502402010450d00200210200b2011450d00200010200b200341f0006a41106a200341c8006a41086a290300370300200341f0006a41186a200341c8006a41106a290300370300200341f0006a41206a200341c8006a41186a29030037030020034198016a200341c8006a41206a290300370300200341d0016a200c360200200341cc016a200c360200200341c4016a200a360200200341c0016a200a360200200341b8016a2007360200200341b4016a20073602002003200f37037020032003290348370378200341908cc5003602d8012003200e3602d4012003200d3602c8012003200b3602bc01200320093602b001200342003703a001200341e4016a41003a0000200341dc016a4200370200200341ed016a200341286a41086a290300370000200341f5016a200341286a41106a290300370000200341fd016a200341286a41186a2903003700002003418d026a200341086a41086a29030037000020034195026a200341086a41106a2903003700002003419d026a200341086a41186a290300370000200320032903283700e5012003200329030837008502200341a7026a200341ca026a2d00003a0000200320032f00c8023b00a5022004200341f0006a10a90502400240024020070d00410121010c010b2007101e2201450d010b20012008200710cd052101200320073602782003200736027420032001360270200341f0006a200410b805200341f0006a41086a2201420037030020034200370370418fd3c6004119200341f0006a1000200341a8026a41086a2001290300370300200320032903703703a8022003200442017c370370200341a8026a4110200341f0006a41081005200341e0026a240020040f0b20074101102d000b20054108102d000b1027000bea0a030c7f017e087f23004190046b22032400200341d8026a200110a703024002402003290388034202520d0041c58cc6002104411821020c010b20034198026a41086a2204200341e4026a29020037030020034198026a41106a2205200341ec026a29020037030020034198026a41186a2206200341f4026a29020037030020034198026a41206a2207200341fc026a29020037030020034198026a41286a220820034184036a29020037030020034198026a41306a22092003418c036a29020037030020034198026a41386a220a20034194036a280200360200200320032902dc023703980220034198036a280200210b200341a0036a280200210c200341a8036a280200210d200341b0036a280200210e200341b8036a290300210f200341c0036a2802002110200341c8036a280200211120032802d8022112200328029c03211320032802a403211420032802b403211520032802c4032116200341d0016a200341cc036a41c40010cd051a20034190016a41086a2217200429030037030020034190016a41106a2204200529030037030020034190016a41186a2205200629030037030020034190016a41206a2206200729030037030020034190016a41286a2207200829030037030020034190016a41306a2208200929030037030020034190016a41386a2209200a280200360200200320032903980237039001200341c8006a200341d0016a41c40010cd051a200341086a41086a2017290300370300200341086a41106a2004290300370300200341086a41186a2005290300370300200341086a41206a2006290300370300200341086a41286a2007290300370300200341086a41306a2008290300370300200341086a41386a20092802003602002003200329039001370308200341d0016a200341c8006a41c40010cd051a200241086a2802002104200341d8026a41086a22054200370300200342003703d80241c5cdc600411d200341d8026a1000200341c8006a41086a2005290300370300200320032903d802370348200341003602d802200341c8006a4110200341d8026a100321050240024002400240024020032802d8022206417f470d0041800821060c010b024020050d0041800821060c010b20064104490d0120052800002106200510200b20062004490d010c020b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b02402013450d00200b10200b0240200d450d00201410200b02402015450d00200e10200b20102016201110f50241fcd2c6002104411321020c010b024002402004417f4c0d00200228020021020240024020040d00410121050c010b2004101e2205450d020b20052002200410cd0521020240200d450d00201410200b200341d8026a41106a2001370300200341d8026a41086a41023a00002003410d3a00d802200341d8026a1077200341e4026a200341086a41086a290300370200200341ec026a200341086a41106a290300370200200341f4026a200341206a290300370200200341fc026a200341286a29030037020020034184036a200341306a2903003702002003418c036a200341386a29030037020020034194036a200341c0006a280200360200200341c8036a2011360200200341c4036a2016360200200341b8036a200f370300200341b4036a2015360200200341ac036a2004360200200341a8036a2004360200200341a0036a200c360200200341d8026a41c4006a2013360200200320123602d802200320032903083702dc02200320103602c0032003200e3602b003200320023602a4032003200b36029803200341cc036a200341d0016a41c40010cd051a2001200341d8026a10a905410021040c020b102c000b20044101102d000b200020023602042000200436020020034190046a24000b890501077f23004190046b22032400200341d8026a200110a703024002402003290388034202520d0041012104411821050c010b20032802d802210520034184026a200341d8026a41047241d40010cd051a200341b0036a280200210620032802b4032107200341b0016a200341bc036a41d40010cd051a410021040b200341d8006a20034184026a41d40010cd051a200341046a200341b0016a41d40010cd051a024002402004450d0041c58cc60021040c010b20034184026a200341d8006a41d40010cd051a200341b0016a200341046a41d40010cd051a02400240024020022802082204417f4c0d00200228020021020240024020040d00410121080c010b2004101e2208450d020b20082002200410cd052109200341d8026a41086a22024200370300200342003703d80241e2cdc600411d200341d8026a1000200341d8006a41086a2002290300370300200320032903d802370358200341003602d802200341d8006a4110200341d8026a100321080240024020032802d8022202417f470d0041801021020c010b024020080d0041801021020c010b20024104490d0320082800002102200810200b2004200220042002491b210202402007450d00200610200b200341e8026a2001370300200341e0026a41013a00002003410d3a00d802200341d8026a1077200320053602d802200341d8026a41047220034184026a41d40010cd051a200341b8036a2002360200200341b4036a2004360200200320093602b003200341bc036a200341b0016a41d40010cd051a2001200341d8026a10a905410021040c030b102c000b20044101102d000b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b200020053602042000200436020020034190046a24000bf213030c7f017e0a7f230041d0046b2203240020034198036a200110a70302400240024020032903c8034202520d0041c58cc6002104411821050c010b200341d8026a41086a2204200341a4036a290200370300200341d8026a41106a2205200341ac036a290200370300200341d8026a41186a2206200341b4036a290200370300200341d8026a41206a2207200341bc036a290200370300200341d8026a41286a2208200341c4036a290200370300200341d8026a41306a2209200341cc036a290200370300200341d8026a41386a220a200341d4036a2802003602002003200329029c033703d802200341d8036a280200210b200341e0036a280200210c200341e8036a280200210d200341f0036a280200210e200341f8036a290300210f20034180046a280200211020034188046a2802002111200328029803211220032802dc03211320032802e403211420032802ec03211520032802f4032116200328028404211720034190026a2003418c046a41c40010cd051a200341d0016a41086a22182004290300370300200341d0016a41106a22042005290300370300200341d0016a41186a22052006290300370300200341d0016a41206a22062007290300370300200341d0016a41286a22072008290300370300200341d0016a41306a22082009290300370300200341d0016a41386a2209200a280200360200200320032903d8023703d00120034188016a20034190026a41c40010cd051a200341c8006a41086a2018290300370300200341c8006a41106a2004290300370300200341c8006a41186a2005290300370300200341c8006a41206a2006290300370300200341c8006a41286a2007290300370300200341c8006a41306a2008290300370300200341c8006a41386a2009280200360200200320032903d001370348200320034188016a41c40010cd052104200241086a280200210520044198036a41086a2206420037030020044200370398034191cdc600411a20044198036a100020044190026a41086a2006290300370300200420042903980337039002200441003602980320044190026a411020044198036a1003210602400240024002400240024002400240024002402004280298032207417f470d00410521070c010b024020060d00410521070c010b20074104490d0120062800002107200610200b0240200720054d0d004110210541ddd2c60021040c040b20044198036a41086a22064200370300200442003703980341abcdc600411a20044198036a100020044190026a41086a2006290300370300200420042903980337039002200441003602980320044190026a411020044198036a10032106024002402004280298032207417f470d00412821070c010b024020060d00412821070c010b20074104490d0220062800002107200610200b200720054f0d02410f210541edd2c60021040c030b41ceb8c400413320044198036a41fcbfc4004184b9c400102e000b41ceb8c400413320044198036a41fcbfc4004184b9c400102e000b024002404112101e2206450d00200641106a41002f00f8cf463b0000200641086a41002900f0cf46370000200641002900e8cf4637000020044292808080a00237028c01200420063602880120022802002109200420053602980320044198036a20044188016a10630240200428028c01220820042802900122076b2005490d0020042802880121060c020b200720056a22062007490d042008410174220a2006200a20064b1b220a4100480d040240024020080d00200a101e21060c010b2004280288012008200a102221060b02402006450d002004200a36028c012004200636028801200a21080c020b200a4101102d000b41124101102d000b2004200720056a220a36029001200620076a2009200510cd051a20044198036a41186a2207420037030020044198036a41106a2218420037030020044198036a41086a2219420037030020044200370398032006200a20044198036a100120044190026a41186a200729030037030020044190026a41106a201829030037030020044190026a41086a201929030037030020042004290398033703900202402008450d00200610200b20044190026a412041e4fdc600410041001002417f460d014190cec6002104411921050b02402013450d00200b10200b0240200d450d00201410200b02402016450d00200e10200b20102017201110f5020c040b4112101e2206450d01200641106a41002f00f8cf463b0000200641086a41002900f0cf46370000200641002900e8cf4637000020044292808080a00237028c0120042006360288012004200c3602980320044198036a20044188016a10630240200428028c01220820042802900122076b200c490d0020042802880121060c030b2007200c6a22062007490d002008410174220a2006200a20064b1b220a4100480d000240024020080d00200a101e21060c010b2004280288012008200a102221060b02402006450d002004200a36028c012004200636028801200a21080c030b200a4101102d000b1027000b41124101102d000b20042007200c6a220a36029001200620076a200b200c10cd051a20044198036a41186a2207420037030020044198036a41106a2218420037030020044198036a41086a220c420037030020044200370398032006200a20044198036a100120044190026a41186a200729030037030020044190026a41106a201829030037030020044190026a41086a200c29030037030020042004290398033703900202402008450d00200610200b20044190026a41201004024002402005417f4c0d000240024020050d00410121060c010b2005101e2206450d020b20062009200510cd052106200420053602a0032004200536029c03200420063602980320044198036a200110b8052002280204210202402013450d00200b10200b20044198036a41106a200137030020044198036a41086a41033a00002004410d3a00980320044198036a1077200441a4036a200441c8006a41086a290300370200200441ac036a200441c8006a41106a290300370200200441b4036a200441e0006a290300370200200441bc036a200441e8006a290300370200200441c4036a200441f0006a290300370200200441cc036a200441f8006a290300370200200441d4036a20044180016a28020036020020044188046a201136020020044184046a2017360200200441f8036a200f370300200441f4036a2016360200200441ec036a2015360200200441e8036a200d360200200441e0036a200536020020044198036a41c4006a200236020020042012360298032004200429034837029c0320042010360280042004200e3602f003200420143602e403200420093602d8032004418c046a200441c40010cd051a200120044198036a10a905410021040c030b102c000b20054101102d000b200241046a280200450d00200228020010200b2000200536020420002004360200200341d0046a24000bd00301087f230041d0006b22022400200028020821032000280204210420002802002105024002404112101e2200450d00200041106a41002f00f8cf463b0000200041086a41002900f0cf46370000200041002900e8cf4637000020024292808080a0023702242002200036022020022003360230200241306a200241206a1063024020022802242206200228022822076b2003490d00200228022021000c020b0240200720036a22002007490d00200641017422082000200820004b1b22084100480d000240024020060d002008101e21000c010b200228022020062008102221000b02402000450d002002200836022420022000360220200821060c030b20084101102d000b1027000b41124101102d000b2002200720036a2208360228200020076a2005200310cd051a200241306a41186a22034200370300200241306a41106a22074200370300200241306a41086a220942003703002002420037033020002008200241306a1001200241186a2003290300370300200241106a2007290300370300200241086a20092903003703002002200229033037030002402006450d00200010200b02402004450d00200510200b2002200137033020024120200241306a41081005200241d0006a24000b130020004109360204200041d4d3c6003602000b040041000b02000b02000ba30201077f0240024002400240200041086a2802002201450d00410020014102746b2102417f210320002802002204210503402002450d01200341016a2103200241046a210220052802002106200541046a21052006450d000b4100200641004741016a41017122056b2003460d002001200520036a2207490d012001200641004741016a4101716b20036b220541ffffffff03712005470d0220054102742203417f4c0d024104210102402003450d002003101e2201450d040b2001200420074102746a4104200641004741016a41017141027420026a6b10cd0521020240200041046a280200450d00200028020010200b20002002360200200041086a2005360200200041046a20053602000b0f0b20072001103b000b102c000b20034104102d000bbf0403067f017e097f02400240024002400240200141086a2802002203200241086a2802002204200320044b1b220541016a22064101200641014b1b220741ffffffff03712007470d0020074102742206417f4c0d000240024020060d00410421080c010b200610242208450d020b024020050d00420021090c040b2004417f6a220a20044b210b2002280200210c2003417f6a220d20034b0d022001280200210e20082007417f6a22024102746a210f410021064200210903404100211002402003200d20066b22114d0d00410021102011200d4b0d00200e20114102746a28020021100b410021110240200b0d002004200a20066b22124d0d002012200a4b0d00200c20124102746a28020021110b200720024d0d05200f20092010ad7c2011ad7c22093e0200200f417c6a210f2002417f6a210220094220882109200641016a22062005490d000c040b0b102c000b20064104102d000b20082007417f6a22024102746a21104100210f420021090340410021060240200b0d00410021062004200a200f6b22114d0d00410021062011200a4b0d00200c20114102746a28020021060b200720024d0d02201020092006ad7c22093e02002010417c6a21102002417f6a210220094220882109200f41016a220f2005490d000b0b024020072005417f736a220220074f0d00200020073602082000200736020420002008360200200820024102746a20093e02000240200141046a280200450d00200128020010200b0f0b41bcf8c60020022007102a000b41bcf8c60020022007102a000bca0302097f017e230041106b2201240002400240024002400240024002402000280200220228020041016a41004c0d002000280204220328020041016a41004c0d012000280208220441086a28020022054101200028020c22062802006b22076a220820054f0d02200720002802142802006b22052000280210220741086a28020022006a220920054f0d03024002402002290308220a42ffffffff0f560d0041002100200a200428020020084102746a3502007e2003290308422086200728020020094102746a35020084580d010b20022802000d052002410036020020022002290308427f7c370308200441086a2802002200200020062802006b22024d0d0620032802000d07200428020020024102746a350200210a200341003602002003200a20032903087c370308410121000b200141106a240020000f0b4196e2c6004118200141086a41b0e2c60041c0e2c600102e000b4196e2c6004118200141086a41b0e2c60041c0e2c600102e000b41d0e0c60020082005102a000b41d0e0c60020092000102a000b4193e3c6004110200141086a41a4e3c60041b4e3c600102e000b41d0e0c60020022000102a000b4193e3c6004110200141086a41a4e3c60041b4e3c600102e000b9d05010b7f02400240024002400240024002402001280204220220012802002203490d0020012d000841ff01710d00200128000c2104024002404100200220036b2205200520024b1b220141016a220620014f0d00200441086a2105410021074100210841002101410021064104210903402005280200220a2002417f736a220b200a4f0d04200320024f210a200220032002496b21022004280200200b4102746a280200210b024020012006470d002001417f41004100417f4100200220036b2206200620024b1b220641016a220c200c2006491b200a1b20022003491b220641016a220c200c2006491b6a22062001490d0320072006200720064b1b220641ffffffff03712006470d032006410274220c4100480d030240024020010d00200c101e21090c010b20092008200c102221090b2009450d060b200920086a200b360200200741026a2107200841046a2108200141016a21012002200349200a72450d000c070b0b024020060d00410421090c050b200641ffffffff03712006470d00200641027422014100480d002001101e22090d0420014104102d000b1027000b4104210941002101410021060c030b41d0e0c600200b200a102a000b200c4104102d000b02400240200220034d0d002002417f732101200441086a210a2009210803402001200a280200220b6a220720014f0d042008200428020020074102746a280200360200200141016a2101200841046a210820032002417f6a2202490d000b200541016a21010c010b4100210120022003470d0141012101200921080b200441086a28020022022003417f736a220320024f0d022008200428020020034102746a2802003602000b2000200136020820002006360204200020093602000f0b41d0e0c6002007200b102a000b41d0e0c60020032002102a000bb00301047f230041c0006b2202240020002802002103410121000240200128021841c9a3c000410c2001411c6a28020028020c1100000d0002400240200328020822000d0020032802002200200328020428020c11040042e4aec285979ba58811520d012002200036020c2002410f36021420022002410c6a36021020012802182104200128021c2105410121002002413c6a41013602002002420237022c200241d8a3c0003602282002200241106a36023820042005200241286a102b0d020c010b2002200036020c2002411036021420022002410c6a36021020012802182104200128021c2105410121002002413c6a41013602002002420237022c200241d8a3c0003602282002200241106a36023820042005200241286a102b0d010b200328020c2100200241106a41146a4101360200200241106a410c6a410136020020022000410c6a3602202002200041086a360218200241043602142002200036021020012802182100200128021c2101200241286a41146a41033602002002420337022c200241e8a3c0003602282002200241106a36023820002001200241286a102b21000b200241c0006a240020000b08002000200110060b6901037f230041206b220224002001411c6a280200210320012802182104200241086a41106a2000280200220141106a290200370300200241086a41086a200141086a2902003703002002200129020037030820042003200241086a102b2101200241206a240020010b040041010bb30101017f230041c0006b2202240020024100360210200242013703082002411036021c20022001410c6a3602202002200241206a3602182002200241086a3602242002413c6a41013602002002420137022c200241f0fac6003602282002200241186a360238200241246a41f8fac600200241286a102b1a2001280200200141046a280200200141086a28020020022802082002280210101c0240200228020c450d00200228020810200b200241c0006a24000bc10101037f024002402000280200220041046a2802002203200041086a28020022046b2002490d00200028020021030c010b0240200420026a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200028020020032004102221030b02402003450d0020002003360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420026a360200200320046a2001200210cd051a41000bac0301047f230041106b22022400200028020021002002410036020c02400240024002402001418001490d002001418010490d012001418080044f0d0220022001413f71418001723a000e20022001410676413f71418001723a000d20022001410c76410f7141e001723a000c410321010c030b200220013a000c410121010c020b20022001413f71418001723a000d20022001410676411f7141c001723a000c410221010c010b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d410421010b02400240200041046a2802002203200041086a28020022046b2001490d00200028020021030c010b0240200420016a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200028020020032004102221030b02402003450d0020002003360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420016a360200200320046a2002410c6a200110cd051a200241106a240041000b6301017f230041206b2202240020022000280200360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41f8fac600200241086a102b2101200241206a240020010b8f0201017f230041106b220224000240024002400240024020002d00000e0401020300010b2002200128021841bd84c700411a2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c030b2002200128021841d784c70041112001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b2002200128021841e884c70041142001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841fc84c70041162001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000bd60101017f230041106b22022400024002400240024020002802002d00000e03010200010b2002200128021841d885c70041202001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b2002200128021841cf85c70041092001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841f885c70041102001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000b9a0301027f024002402000280200220141014b0d00024020010e020002000b0240200041086a2d0000220141114b0d0002400240024002400240024002400240024020010e120b0b0b0b0b0b0b0b000b01020304050607080b0b200041106a280200450d0a2000410c6a28020010200f0b200041106a280200450d092000410c6a28020010200f0b200041106a280200450d082000410c6a28020010200f0b200041106a280200450d072000410c6a28020010200f0b200041106a280200450d062000410c6a28020010200f0b200041106a280200450d052000410c6a28020010200f0b200041106a280200450d042000410c6a28020010200f0b200041106a280200450d032000410c6a28020010200f0b0240200041146a2802002202450d002000410c6a28020021012002410c6c210203400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200041106a280200450d02200028020c10200c020b200041106a280200450d012000410c6a28020010200f0b200041086a280200450d00200028020410200f0b0b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f0240024020012000490d002002450d01200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000c020b0b2002450d002001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000b0b20000b4a01037f4100210302402002450d000240034020002d0000220420012d00002205470d01200041016a2100200141016a21012002417f6a2202450d020c000b0b200420056b21030b20030b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b3e01017f230041106b2205240020052001200220032004410010d505200529030021012000200541086a29030037030820002001370300200541106a24000b4c01017f230041206b22052400200542003703182005420037031020052001200220032004200541106a10d505200529031021012000200529031837030820002001370300200541206a24000be20502037f067e230041306b2206240002400240024002400240024002400240024002402002500d002003500d012004500d02200479a7200279a76b2207413f4b0d0341ff0020076b2108200741016a21070c080b02402004500d0020050d040c060b024002402005450d0020034200510d0620054200370308200520012003823703000c010b20034200510d050b200120038021010c060b2004500d030240024002402001500d0020047b4201510d01200479a7200279a76b2207413e4b0d0241ff0020076b2108200741016a21070c090b02402005450d0020054200370300200520022004823703080b200220048021010c070b02402005450d002005200137030020052004427f7c2002833703080b200220047a423f838821010c060b2005450d040c020b024020037b4201510d0041bf7f200379a7200279a76b22076b2108200741c1006a21070c060b02402005450d002005420037030820052003427f7c2001833703000b20034201510d06200641206a2001200220037aa710d105200641286a2903002102200629032021010c060b2005450d020b2005200137030020052002370308420021010c020b00000b420021010b420021020c010b200620012002200841ff007110d005200641106a20012002200741ff007110d105200641086a2903002102200641106a41086a2903002109200629030021012006290310210a0240024020070d004200210b4200210c0c010b4200210c4200210d03402009420186200a423f8884220b200b427f8520047c200a4201862002423f8884220a427f85220b20037c200b54ad7c423f87220b2004837d200a200b200383220e54ad7d2109200a200e7d210a420020024201862001423f8884842102200d2001420186842101200b420183220b210d2007417f6a22070d000b0b02402005450d002005200a370300200520093703080b200c20024201862001423f8884842102200b20014201868421010b2000200137030020002002370308200641306a24000b0bc78a070300418080c0000b9c8a076361706163697479206f766572666c6f770000002400100017000000eb020000050000007372632f6c6962616c6c6f632f7261775f7665632e727300cb0010004600000058010000130000001100000004000000040000001200000013000000140000006120666f726d617474696e6720747261697420696d706c656d656e746174696f6e2072657475726e656420616e206572726f720011000000000000000100000015000000b8001000130000003b020000050000007372632f6c6962616c6c6f632f666d742e72732f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f666d742f6d6f642e7273010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020202020202020202020202020202020202020202020202020202020203030303030303030303030303030303040404040400000000000000000000000000003402100020000000540210001200000011000000000000000100000016000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e646578206973203030303130323033303430353036303730383039313031313132313331343135313631373138313932303231323232333234323532363237323832393330333133323333333433353336333733383339343034313432343334343435343634373438343935303531353235333534353535363537353835393630363136323633363436353636363736383639373037313732373337343735373637373738373938303831383238333834383538363837383838393930393139323933393439353936393739383939000068031000060000006e031000220000005003100018000000b10a0000050000007372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820b003100016000000c60310000d0000005003100018000000b70a000005000000736c69636520696e64657820737461727473206174202062757420656e6473206174205b2e2e2e5d8e0410000b0000009a11100016000000041511000100000078041000160000009208000009000000781110000e00000086111000040000008a111000100000000415110001000000780410001600000096080000050000007804100016000000a70800000e0000008e0410000b0000009904100026000000bf04100008000000c70410000600000004151100010000007804100016000000a9080000050000007372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f6620600000000e05100002000000f8041000160000004604000024000000f8041000160000003c040000110000007372632f6c6962636f72652f666d742f6d6f642e72732e2e3078040f151b190312171100000e160000000000000000000000000000000000000000000000000000000006130000000000000000000000000000000000000002070a00080c1d1c181a00000000000000000000000000000000000005010000000000000000000000000000000000000010000000000b00090014000d00000000000000000000000000000000000000000000000000000000000f12000000000000000000000000001f0000000000000000000000000000004946661d0000000000000000000000008a3e000000000000000000000000004b530000000000000000000000006723420000000000000000000000003d0000000000230000000000000000007500002d000000000000000000000000824e3c0000000000000000000000006300000025005a000000000000008136000003000000000000000000002f000000000000000010000000000013000800000000000000000000000000430072008900000000000000000000070000007d05183f003787094064000021000000000000000000000000000a0000410000000000000000000000000c0030005c00000019777100604735442e0000743911652c515e7f500000003431000000530000000000003a00000000381a00885f2b6b695d4f5d84802a68143b0017000000000000000000000000005500005700000083000000000000000059000000000000266e1b1600000000006d4a1c000000000000000000002400007c0052007b06150000000048000000007e2876276c2900225b0e610d567062048520780200007a1e7901540033000000867358004d456f0b6a0000326c4c0000898a00008a8a8a3e0000000000000000000000f80b10001a000000380000000f000000f80b10001a0000003900000010000000000000000000000001000000000000000d000000000000001c000000000000004000000000000000b600000000000000bf00000000000000f803000000000000f007000000000000ff070000000000000010000000000000001e0000000000000038000000000000003f000000000000807f0000000000000080000000000000c0ff01000000000080ff030000000000008007000000000000007f000000000001208000000000000000a3000000000000fc7f030000000000000006000000000000ff070000000000008009000000000000000e0000000080007e0e00000000642000200000000040fe0f2000000000010000300000000000000040000000005c00004000000000000000600000000000845c8000000000000000c000000000000000e00000000000000000010000000000f00c01000000443060000c000000c13d60000c0000001e2080000c0000001e20c0000c000000fe21fe000c00000000000000200000000000000060000000440800006000000000000000f000000060000000000200007ffffff9db07000000000080f8070000000000e0bc0f00000000000020210000030000003c3b0000e70f0000003c00000000c09f9f3d00000000c0fbef3e000000000000c03f00000000000000f000000000000000fc0000100000f8feff0000ffff0000ffff0000ffffffffffff000000f8ffff0000010000000000c0ff01000000ffffffff0100000000000000030000000000008003000000000040a30300000000000000080000000c0000000c000400000000f80f00000000000000180000001c0000001c00000000c301001e000000000000001f0001008000c01f1f000700000080ef1f00ffffffffff1f20008639020000002300020000000030400000000000007e66000000fcfffffc6d000000000000007f00000000000028bf000000000000f0cf00000000030000a0020000f7fffd2110030300000000007806000000000080ff06000000000000c007000000000000f207000000008701040e0600000000000010081000000000001007000000000000140f0000000000f017000000000000f21fdfe0fffeffffff1f00000000000000200000000000f80f20070000000000c833000000000000b03f000000000080f73f04000000000000401e2080000c000040000000000080d340020000000000005003000000000000580000000000e0fd66fe0700000000f879030000000000c07f000000000000fe7f000000000000ff7f00000000000000807f0000000000008030000000ffff03806ef000000000008702000000000000900000407fe51ff89f000000000000f9a5000000000000f8a70000000000803cb00000000000007eb40000000000007fbf0000feffffffffbf11000000000000c00000000000009dc102000000000000d000000000a0c307f8ffffffffffff7ff8fffffffffffffffbbe2100000c0000fc00000000000000ff02000000000000ff000002000000ffff0000f8fffbffffff00000000ffffffffffffffffffffffff7372632f6c6962636f72652f756e69636f64652f6d6f642e727300010305050606030706080809110a1c0b190c140d120e0d0f0410031212130916011705180219031a071c021d011f1620032b042c022d0b2e01300331023201a702a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f183858ba4a6bebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f747596972f5f262e2fa7afb7bfc7cfd7df9a409798308f1fc0c1ceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100757070207150d500443032d03010411060f0c3a041d255f206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082b0582ff1118082f112d032010210f808c048297190b158894052f053b07020e180980b030740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880c73035040a06380846080c06740b1e035a0459098083181c0a16094808808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0058111000200000001a000000280000000006010103010402080809020a050b02100111041205131114021502170219041c051d0824016a036b02bc02d102d40cd509d602d702da01e005e102e802ee20f004f906fa020c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1ca8a9d8d909379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a22253e3fc5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d00c72a3a4cbcc6e6f5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a808617094e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b602048080a80a65e22450b0a060d1339070a362c041080c03c64530c0180a0451b4808531d398107460a1d03474937030e080a0639070a81361980c7320d839b66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b654b0439071140041c97f80882f3a50d811f3103110408818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b80d52d031a040281703a0501850080d7294c040a04028311444c3d80c23c06010455051b3402810e2c04640c560a0d035d033d391d0d2c040907020e06809a83d60a0d030b05740c59070c140c0438080a0628081e527703310380a60c14040305030d06856a7372632f6c6962636f72652f756e69636f64652f7072696e7461626c652e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f662060426f72726f774572726f72426f72726f774d75744572726f7270616e69636b65642061742000000001121000010000000212100003000000e4be110000000000001210000100000000121000010000003a27272c2020202020207b202c20207b0a000000110000000c000000040000001700000018000000190000002c0a00001100000004000000040000001a0000001b0000001c000000207d7d28280a2c291100000004000000040000001d0000001100000004000000040000001e000000536f6d654e6f6e65557466384572726f7276616c69645f75705f746f6572726f725f6c656e0000001100000004000000040000001f000000617373657274696f6e206661696c65643a2073656c662e6c656e2829203c204341504143495459617373657274696f6e206661696c65643a202173656c662e69735f7368617265645f726f6f742829617373657274696f6e206661696c65643a20656467652e686569676874203d3d2073656c662e686569676874202d2031617373657274696f6e206661696c65643a2073656c662e686569676874203e2030617373657274696f6e206661696c65643a202173656c662e6e6f64652e69735f7368617265645f726f6f742829617373657274696f6e206661696c65643a2073656c662e6c656e2829203e2030000000a813100056000000f4040000520000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6e6f64652e72730000a813100056000000050500004c000000617373657274696f6e206661696c65643a206c6566745f6c656e202b2072696768745f6c656e202b2031203c3d204341504143495459617373657274696f6e206661696c65643a20656467652e686569676874203d3d2073656c662e6e6f64652e686569676874202d203156657273696f6e656453746f72655065726d697373696f6e7320456e746974794d61696e7461696e65724279456e74697479496468656164206f662056657273696f6e656453746f72655065726d697373696f6e7320456e746974794d61696e7461696e65724279456e74697479496456657273696f6e656453746f72655065726d697373696f6e7320436c6173735065726d697373696f6e734279436c617373496468656164206f662056657273696f6e656453746f72655065726d697373696f6e7320436c6173735065726d697373696f6e734279436c61737349644e6f74526f6f744f726967696e4261644f726967696e3a4578706563746564526f6f744f725369676e65644163636573734c6576656c3a3a456e746974794d61696e7461696e65722d557365644f75744f66506c616365556e7370656369666965644163746f724e6f74496e41646d696e735365744f726967696e43616e6e6f744163745769746852657175657374656443726564656e7469616c4e6f74496e416464536368656d6173536574456e746974794e6f74466f756e64556e6b6e6f776e4163746f724d61696e7461696e65724e6f74476976656e416c6c5065726d697373696f6e7343726564656e7469616c4e6f74496e456e746974795065726d697373696f6e735570646174655365744e6f74456e6974794d61696e7461696e6572456e7469747943616e6e6f745265666572656e6365546172676574456e74697479456e74697469657343616e6e6f744265437265617465644e6f74496e437265617465456e7469746965735365744e6f745065726d6974746564546f437265617465436c617373436c6173735065726d697373696f6e734e6f74466f756e644279436c617373496400000000004019100010000000000000005019100002000000000000000000000080191000010000000000000000000000881910001c00000000000000a4191000030000000000000000000000e4be1100000000000000000000000000ec1910002100000000000000101a1000030000000000000000000000e4be1100000000000000000000000000581a10001900000000000000741a1000030000000000000000000000e4be1100000000000000000000000000bc1a10001d00000000000000741a1000030000000000000000000000e4be1100000000000000000000000000d91a10001e00000000000000f81a1000030000000000000000000000e4be1100000000000000000000000000401b10000c000000000000004c1b1000030000000000000000000000e4be1100000000000000000000000000941b10002500000000000000bc1b1000020000000000000000000000e4be1100000000000000000000000000ec1b10001000000000000000fc1b1000040000000000000000000000e4be11000000000000000000000000005c1c10000d000000000000006c1c10000200000000000000000000009c1c1000020000000000000000000000ac1c10001c00000000000000c81c1000050000000000000000000000e4be1100000000000000000000000000401d10001d00000000000000601d1000040000000000000000000000e4be1100000000000000000000000000c01d10000b00000000000000cc1d1000010000000000000000000000e4be110000000000000000007365745f636c6173735f61646d696e7300000000141f100008000000000000004625100007000000000000002b2010000600000000000000b31f10001c0000000f2010001c0000007365745f636c6173735f656e746974795f7065726d697373696f6e73000000000b1e10000f000000000000001a1e10001500000000000000141f10000800000000000000462510000700000000000000dd1f10001200000000000000ef1f1000200000007365745f636c6173735f656e7469746965735f63616e5f62655f63726561746564000000000000000b1e10000f000000000000001a1e10001500000000000000141f10000800000000000000462510000700000000000000cf1f10000e00000000000000a58e1100040000007365745f636c6173735f6164645f736368656d61735f736574000000000000000b1e10000f000000000000001a1e10001500000000000000141f10000800000000000000462510000700000000000000a51f10000e00000000000000b31f10001c0000007365745f636c6173735f6372656174655f656e7469746965735f7365747365745f636c6173735f7265666572656e63655f636f6e73747261696e7400000000000b1e10000f000000000000001a1e10001500000000000000141f100008000000000000004625100007000000000000007a1f10000a00000000000000841f1000210000006372656174655f636c617373000000005da010000400000000000000d68b11000700000000000000fa7811000b00000000000000d68b11000700000000000000521f10001100000000000000631f1000170000006372656174655f636c6173735f776974685f64656661756c745f7065726d697373696f6e73000000000000005da010000400000000000000d68b11000700000000000000fa7811000b00000000000000d68b1100070000006164645f636c6173735f736368656d61000000000b1e10000f000000000000001a1e10001500000000000000141f100008000000000000004625100007000000000000001c1f100013000000000000002f1f10000800000000000000371f10000e00000000000000451f10000d0000006372656174655f656e74697479000000000000000b1e10000f000000000000001a1e10001500000000000000141f1000080000000000000046251000070000007b1e100081000000fc1e1000180000006164645f736368656d615f737570706f72745f746f5f656e74697479000000000b1e10000f000000000000001a1e100015000000000000002f1e10001400000000000000a58e11000400000000000000431e100009000000000000003b2510000800000000000000721e100009000000000000004325100003000000000000004c1e10000f000000000000005b1e1000170000007570646174655f656e746974795f70726f70657274795f76616c756573000000000000000b1e10000f000000000000001a1e100015000000000000002f1e10001400000000000000a58e11000400000000000000431e100009000000000000003b25100008000000000000004c1e10000f000000000000005b1e1000170000007472616e73616374696f6e0000000000e41d10000a00000000000000ee1d10001d0000006f7065726174696f6e735665633c4f7065726174696f6e3c543a3a43726564656e7469616c3e3e776974685f63726564656e7469616c4f7074696f6e3c543a3a43726564656e7469616c3e61735f656e746974795f6d61696e7461696e6572656e746974795f696470726f70657274795f76616c7565735665633c436c61737350726f706572747956616c75653e736368656d615f696420437265617465732061206e657720656e74697479206f66207479706520636c6173735f69642e20546865206d61696e7461696e65722069732073657420746f20626520656974686572204e6f6e6520696620746865206f726967696e20697320726f6f742c206f72207468652070726f76696465642063726564656e7469616c206173736f6369617465642077697468207369676e65722e636c6173735f69646578697374696e675f70726f706572746965735665633c7531363e6e65775f70726f706572746965735665633c50726f70657274793e636c6173735f7065726d697373696f6e73436c6173735065726d697373696f6e73547970653c543e636f6e73747261696e745265666572656e6365436f6e73747261696e743c436c61737349642c207531363e63726564656e7469616c5f73657443726564656e7469616c5365743c543a3a43726564656e7469616c3e63616e5f62655f63726561746564656e746974795f7065726d697373696f6e73456e746974795065726d697373696f6e733c543a3a43726564656e7469616c3e2053657473207468652061646d696e7320666f72206120636c61737361646d696e7300000000000000e4201000190000000101010000000000462510000700000000000000631f10001700000000000000000000000000000000000000e4be11000021100000000000000000001021100001000000000000000100000000000000182110001a00000001010100000000003b2510000800000000000000322110000d00000000000000000000000000000000000000e4be110040211000000000000000000050211000010000000000000000000000436c6173735065726d697373696f6e734279436c617373496400000011000000000000000100000020000000b121100041000000456e746974794d61696e7461696e65724279456e746974794964543a3a43726564656e7469616c00110000000000000001000000210000005821100059000000204f776e6572206f6620616e20656e7469747920696e207468652076657273696f6e65642073746f72652e204966206974206973204e6f6e65207468656e206974206973206f776e6564206279207468652073797374656d2e20436c6173735065726d697373696f6e73206f6620636f72726573706f6e64696e6720436c617373657320696e207468652076657273696f6e65642073746f72650000372210000d0000001c2210001b000000b460110002000000ecaf11002b000000760300000100000042616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b4c22100010000000696e697469616c697a655f626c6f636b642210000f0000006170706c795f65787472696e736963007c22100013000000696e686572656e745f65787472696e7369637300982210000f000000636865636b5f696e686572656e747300b02210001400000076616c69646174655f7472616e73616374696f6ecc2210000f0000006f6666636861696e5f776f726b657200e4221000040000007369676ef0221000060000007665726966790000002310000d0000006163636f756e745f6e6f6e6365000000182310001500000067656e65726174655f73657373696f6e5f6b65797300000000000000382410000c0000000000000044241000010000000000000000000000e4be11000000000000000000000000004c24100010000000000000005c241000020000000000000000000000e4be11000000000000000000000000006c2410000d000000000000007c241000010000000000000000000000e4be11000000000000000000000000008424100017000000000000007c241000010000000000000000000000e4be11000000000000000000000000009b2410001100000000000000ac241000020000000000000000000000e4be1100000000000000000000000000bc2410000e0000000000000054441100010000000000000000000000cc2410000100000000000000436c617373437265617465644625100007000000436c617373536368656d61416464656446251000070000004325100003000000456e74697479437265617465640000003b25100008000000456e7469747950726f7065727469657355706461746564456e74697479536368656d6141646465643b251000080000004325100003000000466978436f6d70696c6174696f6e0000d424100067000000205468697320697320612066616b65206576656e7420746861742075736573204163636f756e7449642074797065206a75737420746f206d616b65205275737420636f6d70696c657220686170707920746f20636f6d70696c652074686973206d6f64756c652e456e746974794964753136436c6173734964546f6b656e4d696e74204d696e747368656164206f6620546f6b656e4d696e74204d696e7473436f6e74656e7420776974682074686973204944206e6f7420666f756e642e4f6e6c7920746865206c696169736f6e20666f722074686520636f6e74656e74206d6179206d6f6469667920697473207374617475732e4f6e6c7920616374697665206d656d62657273206d61792063726561746520636f6e74656e742e43616e6e6f742063726561746520636f6e74656e7420666f7220696e616374697665206f72206d697373696e672064617461206f626a65637420747970652e4e6f2064617461206f626a6563742073746f726167652072656c6174696f6e7368697020666f756e6420666f7220746869732049442e4f6e6c792073746f726167652070726f7669646572732063616e206372656174652064617461206f626a6563742073746f726167652072656c6174696f6e73686970732e4f6e6c79207468652073746f726167652070726f766964657220696e206120444f53522063616e20646563696465207768657468657220746865792772652072656164792e000000000000742710000c0000000000000080271000020000000000000000000000e4be1100000000000000000000000000902710000f0000000000000080271000020000000000000000000000e4be11000000000000000000000000009f2710000f0000000000000080271000020000000000000000000000e4be11000000000000000000436f6e74656e744164646564ae27100009000000d289110009000000436f6e74656e744163636570746564436f6e74656e7452656a6563746564436f6e74656e74496400000000006828100022000000000000008c281000030000000000000000000000e4be1100000000000000000000000000a42810002900000000000000d0281000020000000000000000000000e4be1100000000000000000000000000e02810001b00000000000000fc281000020000000000000000000000e4be11000000000000000000000000000c2910001d00000000000000fc281000020000000000000000000000e4be11000000000000000000446174614f626a65637453746f7261676552656c6174696f6e7368697041646465640000292910001f000000ae27100009000000d289110009000000446174614f626a65637453746f7261676552656c6174696f6e73686970526561647955706461746564000000292910001f000000a58e11000400000053746f7261676550726f76696465724164646564436f6e74656e7400d289110009000000ae2710000900000053746f7261676550726f766964657252656d6f766564436f6e74656e74446174614f626a65637453746f7261676552656c6174696f6e73686970496452616e646f6d6e657373436f6c6c656374697665466c69702052616e646f6d4d6174657269616c436c617373206e616d6520697320746f6f2073686f7274436c617373206e616d6520697320746f6f206c6f6e67436c617373206465736372697074696f6e20697320746f6f206c6f6e67436c61737320776173206e6f7420666f756e6420627920696443616e6e6f7420616464206120636c61737320736368656d61207769746820616e20656d707479206c697374206f662070726f7065727469657350726f7065727479206e616d6520697320746f6f2073686f727450726f7065727479206e616d6520697320746f6f206c6f6e6750726f7065727479206465736372697074696f6e20697320746f6f206c6f6e6750726f7065727479206e616d65206973206e6f7420756e697175652077697468696e2069747320636c6173734e657720636c61737320736368656d612072656665727320746f20616e20756e6b6e6f776e2070726f706572747920696e6465784e657720636c61737320736368656d612072656665727320746f20616e20756e6b6e6f776e20696e7465726e616c20636c617373206964000000000000b82d1000090000000101000000000000462510000700000000000000c12d10000500000000000000000000000000000000000000e4be1100c82d10000000000000000000e4be110000000000000000000100000000000000d82d10000a00000001010000000000003b2510000800000000000000e22d10000600000000000000000000000000000000000000e4be1100e82d10000000000000000000e4be110000000000000000000100000000000000f82d10000b0000000000000000000000462510000700000000000000000000000000000000000000000000000000000000000000e4be1100c03110000000000000000000e4be110000000000000000000100000000000000032e10000c00000000000000000000003b2510000800000000000000000000000000000000000000000000000000000000000000e4be1100c03110000000000000000000e4be1100000000000000000001000000000000000f2e10001600000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be110000000000000000000100000000000000252e10001d00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be110000000000000000000100000000000000422e10001300000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be110000000000000000000100000000000000552e10001a00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be1100000000000000000001000000436c61737342794964436c617373000011000000000000000100000022000000456e7469747942794964456e74697479110000000000000001000000230000004e657874436c61737349644e657874456e74697479496450726f70657274794e616d65436f6e73747261696e7450726f70657274794465736372697074696f6e436f6e73747261696e74436c6173734e616d65436f6e73747261696e74436c6173734465736372697074696f6e436f6e73747261696e740011000000000000000100000024000000456e7469747920776173206e6f7420666f756e64206279206964556e6b6e6f776e20636c61737320736368656d6120696443616e6e6f7420616464206120736368656d61207468617420697320616c726561647920616464656420746f207468697320656e74697479000000fc2f10003d000000c80100001f000000fc2f10003d000000d80100001e000000536f6d652072657175697265642070726f706572747920776173206e6f7420666f756e64207768656e20616464696e6720736368656d6120737570706f727420746f20656e74697479496e7465726e616c2070726f706572747920646f6573206e6f74206d617463682069747320636c617373566563746f722070726f7065727920697320746f6f206c6f6e67536f6d65206f66207468652070726f76696465642070726f70657274792076616c75657320646f6e2774206d61746368207468652065787065637465642070726f70657274792074797065546578742070726f7065727920697320746f6f206c6f6e672f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d76657273696f6e65642d73746f72652f7372632f6c69622e7273000000fc2f10003d0000002b02000022000000536f6d65206f66207468652070726f76696465642070726f7065727479206964732063616e6e6f7420626520666f756e64206f6e207468652063757272656e74206c697374206f662070726f706572792076616c756573206f66207468697320656e74697479546f6b656e4d696e7400000000006c3110000500000001010100000000007131100009000000000000007a3110002200000000000000000000000000000000000000e4be11009c3110000000000000000000ac31100001000000000000000100000000000000b43110000c0000000000000000000000713110000900000000000000000000000000000000000000000000000000000000000000e4be1100c03110000000000000000000d03110000100000000000000010000004d696e7473543a3a4d696e7449644d696e743c42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e11000000000000000100000025000000f5311000060000004d696e74734372656174656411000000000000000100000026000000d83110001d00000020546865206e756d626572206f66206d696e747320637265617465642e204d696e74730000000000543210000e0000000000000000000000a33611000c00000000000000000000000000000000000000000000000000000000000000e4be1100043c100000000000000000006432100003000000000000000100000052616e646f6d4d6174657269616c00007c32100058000000d4321000580000002c3310001100000020536572696573206f6620626c6f636b20686561646572732066726f6d20746865206c61737420383120626c6f636b73207468617420616374732061732072616e646f6d2073656564206d6174657269616c2e205468697320697320617272616e67656420617320612072696e672062756666657220776974682060626c6f636b5f6e756d626572202520383160206265696e672074686520696e64657820696e746f20746865206056656360206f6620746865206f6c6465737420686173682e00000000000000483410000f0000000000000000000000573410001100000000000000000000000000000000000000000000000000000000000000e4be1100043c10000000000000000000e4be110000000000000000000100000000000000683410001500000001010000000000007d3410000c00000000000000893410000d00000000000000000000000000000000000000e4be1100b03410000000000000000000e4be11000000000000000000000000000000000096341000170000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be1100b03410000000000000000000e4be11000000000000000000000000004b6e6f776e436f6e74656e744964735665633c543a3a436f6e74656e7449643e446174614f626a6563744279436f6e74656e744964543a3a436f6e74656e744964446174614f626a6563743c543e5072696d6172794c696169736f6e4163636f756e74496400000011000000000000000100000021000000633510003e000000710000000100000044617461206f626a6563742061726561647920616464656420756e646572207468697320636f6e74656e74206964446174614469726563746f727920446174614f626a6563744279436f6e74656e744964446174614469726563746f7279205072696d6172794c696169736f6e4163636f756e744964446174614469726563746f7279204b6e6f776e436f6e74656e744964732f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f73746f726167652f646174615f6469726563746f72792e727300000000000000d83610000b00000000000000e4361000040000000000000000000000e4be1100000000000000000000000000443710000e0000000000000054371000010000000000000000000000e4be11000000000000000000000000006c3710000e0000000000000054371000010000000000000000000000e4be11000000000000000000000000007a3710001e0000000000000050741000010000000000000000000000e4be1100000000000000000000000000983710002000000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000b8371000170000000000000054371000010000000000000000000000e4be1100000000000000000000000000cf3710001400000000000000e4371000010000000000000000000000e4be110000000000000000006164645f636f6e74656e740000000000073810000a000000000000007d3410000c000000000000001138100007000000000000001838100022000000000000003a3810000400000000000000ad71110003000000000000003e3810000f00000000000000d68b1100070000006163636570745f636f6e74656e74000000000000073810000a000000000000007d3410000c00000072656a6563745f636f6e74656e747365745f7072696d6172795f6c696169736f6e5f6163636f756e745f6964756e7365745f7072696d6172795f6c696169736f6e5f6163636f756e745f696472656d6f76655f6b6e6f776e5f636f6e74656e745f69647365745f6b6e6f776e5f636f6e74656e745f69640000000000fc3710000b000000000000005734100011000000636f6e74656e745f696473636f6e74656e745f6964747970655f69643c5420617320444f545254726169743e3a3a446174614f626a65637454797065496473697a65697066735f636f6e74656e745f696400000000000000b83a1000130000000000000000000000cb3a10002200000000000000000000000000000000000000000000000000000000000000e4be1100003b10000000000000000000e4be110000000000000000000100000000000000ed3a1000120000000000000000000000cb3a10002200000000000000000000000000000000000000000000000000000000000000e4be1100003b10000000000000000000e4be110000000000000000000100000000000000103b10000d0000000101000000000000cb3a100022000000000000001d3b10002000000000000000000000000000000000000000e4be1100403b10000000000000000000e4be110000000000000000000000000000000000503b10001800000001010000000000007d3410000c00000000000000683b10002700000000000000000000000000000000000000e4be1100043c10000000000000000000e4be1100000000000000000001000000000000008f3b10000f0000000000000000000000573410001100000000000000000000000000000000000000000000000000000000000000e4be1100043c10000000000000000000e4be1100000000000000000001000000000000009e3b10001c0000000101000000000000ba3b10001c00000000000000a58e11000400000000000000000000000000000000000000e4be1100d83b10000000000000000000e4be110000000000000000000100000000000000e83b10001b00000001010000000000007d3410000c000000000000001c3611001100000000000000000000000000000000000000e4be1100043c10000000000000000000e4be1100000000000000000001000000466972737452656c6174696f6e736869704964543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049644e65787452656c6174696f6e736869704964001100000000000000010000002700000052656c6174696f6e7368697073446174614f626a65637453746f7261676552656c6174696f6e736869703c543e0000001100000000000000010000002100000052656c6174696f6e73686970734279436f6e74656e7449645665633c543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049643e5265616479436f6e74656e7449647353746f7261676550726f7669646572536572766573436f6e74656e7428543a3a4163636f756e7449642c20543a3a436f6e74656e7449642900001100000000000000010000002100000053746f7261676550726f7669646572734279436f6e74656e7449640011000000000000000100000028000000a93c10004c0000007b00000001000000446174614f626a65637453746f726167655265676973747279204e65787452656c6174696f6e736869704964446174614f626a65637453746f7261676552656769737472792052656c6174696f6e7368697073446174614f626a65637453746f7261676552656769737472792052656c6174696f6e73686970734279436f6e74656e7449642f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f73746f726167652f646174615f6f626a6563745f73746f726167655f72656769737472792e7273000000000000007c3d100010000000000000008c3d1000010000000000000000000000e4be1100000000000000000000000000a43d10001600000000000000bc3d1000010000000000000000000000e4be1100000000000000000000000000d43d10001800000000000000bc3d1000010000000000000000000000e4be110000000000000000006164645f72656c6174696f6e7368697000000000ec3d100003000000000000007d3410000c0000007365745f72656c6174696f6e736869705f7265616479000000000000639c11000200000000000000cb3a100022000000756e7365745f72656c6174696f6e736869705f72656164796369643a65787472696e7369635f696e6465783a636f646553797374656d20506172656e744861736853797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d2044696765737453797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63650000000000c03e10001200000000000000d43e1000020000000000000000000000e4be1100000000000000000000000000e43e1000120000000000000054441100010000000000000000000000e4be110000000000000000004163636f756e74496e666f557064617465640000d289110009000000f63e10000c0000004163636f756e74496e666f52656d6f76656449504e534964656e7469747953797374656d204576656e747353797374656d204576656e74546f7069637300000000000000584010000a00000000000000e4be1100000000000000000000000000644010000100000000000000000000006c4010000600000000000000744010000100000000000000000000008c401000010000000000000000000000944010000e00000000000000a4401000010000000000000000000000bc401000010000000000000000000000c44010000800000000000000cc401000010000000000000000000000e4401000010000000000000000000000ec4010000b00000000000000f840100001000000000000000000000010411000010000000000000000000000184110000c00000000000000244110000100000000000000000000003c411000010000000000000000000000444110000b000000000000005041100001000000000000000000000068411000010000000000000066696c6c5f626c6f636b0000864210004800000072656d61726b0000000000007f4210000700000000000000d68b110007000000644210001b0000007365745f686561705f70616765730000000000005f4210000500000000000000ad71110003000000204210003f0000007365745f636f6465000000009d2d11000300000000000000d68b1100070000000e421000120000007365745f73746f726167650000000000fc4110000500000000000000014210000d000000e14110001b0000006b696c6c5f73746f7261676500000000c68b11000400000000000000d941100008000000bb4110001e0000006b696c6c5f7072656669780000000000b541100006000000000000004c2e1100030000007041100045000000204b696c6c20616c6c2073746f72616765206974656d7320776974682061206b657920746861742073746172747320776974682074686520676976656e207072656669782e707265666978204b696c6c20736f6d65206974656d732066726f6d2073746f726167652e5665633c4b65793e2053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b20412062696720646973706174636820746861742077696c6c20646973616c6c6f7720616e79206f74686572207472616e73616374696f6e20746f20626520696e636c756465642e000000000000484710000c0000000101000000000000969511000c00000000000000544710000800000000000000000000000000000000000000e4be1100d448100000000000000000005c47100001000000000000000100000000000000644710000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100b0471000000000000000000074471000010000000000000000000000000000007c4710001300000000000000000000008f4710000600000000000000000000000000000000000000000000000000000000000000e4be1100b047100000000000000000009847100001000000000000000000000000000000a0471000100000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100b04710000000000000000000c047100001000000000000000000000000000000c8471000090000000101000000000000026711000e00000000000000c53611000700000000000000000000000000000000000000e4be1100384810000000000000000000d447100001000000000000000100000000000000dc4710000d0000000101000000000000aba311000300000000000000d68b11000700000000000000000000000000000000000000e4be1100ec4710000000000000000000fc4710000100000000000000010000000000000004481000060000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100d448100000000000000000000c48100001000000000000000100000000000000144810000a0000000000000000000000c53611000700000000000000000000000000000000000000000000000000000000000000e4be11003848100000000000000000002048100001000000000000000100000000000000284810000e0000000000000000000000c53611000700000000000000000000000000000000000000000000000000000000000000e4be1100384810000000000000000000484810000100000000000000010000000000000050481000060000000000000000000000564810000b00000000000000000000000000000000000000000000000000000000000000e4be110064481000000000000000000074481000010000000000000001000000000000007c481000060000000000000000000000824810002300000000000000000000000000000000000000000000000000000000000000e4be1100a84810000000000000000000b848100001000000000000000100000000000000c04810000a0000000000000000000000ca4810000a00000000000000000000000000000000000000000000000000000000000000e4be1100d44810000000000000000000e448100001000000000000000100000000000000ec4810000b0000000201010000000000c8d510000200000000000000c53611000700000000000000f74810002100000000000000e4be1100045010000000000000000000184910000d00000000000000010000004163636f756e744e6f6e6365543a3a496e646578944e10001f00000045787472696e736963436f756e740000664e10002e000000416c6c45787472696e73696373576569676874576569676874000000214e100045000000416c6c45787472696e736963734c656e11000000000000000100000021000000d14d100050000000426c6f636b48617368000000ab4d10002600000045787472696e73696344617461000000110000000000000001000000290000005c4d10004f0000004e756d62657200001a4d100042000000506172656e74486173680000fe4c10001c00000045787472696e73696373526f6f7400001100000000000000010000002a000000b94c1000450000004469676573744469676573744f663c543e000000110000000000000001000000280000007d4c10003c0000004576656e74735665633c4576656e745265636f72643c543a3a4576656e742c20543a3a486173683e3e0000001100000000000000010000002b000000554c1000280000004576656e74436f756e744576656e74496e6465781100000000000000010000002c000000274c10002e0000004576656e74546f706963735665633c28543a3a426c6f636b4e756d6265722c204576656e74496e646578293e8049100049000000c949100025000000e4be110000000000ee4910004b000000394a10002a000000e4be110000000000634a100054000000b74a100051000000084b100039000000e4be110000000000414b100053000000944b100053000000e74b100040000000204d617070696e67206265747765656e206120746f7069632028726570726573656e74656420627920543a3a486173682920616e64206120766563746f72206f6620696e6465786573206f66206576656e747320696e2074686520603c4576656e74733c543e3e60206c6973742e20546865206669727374206b657920736572766573206e6f20707572706f73652e2054686973206669656c64206973206465636c6172656420617320646f75626c655f6d6170206a75737420666f7220636f6e76656e69656e6365206f66207573696e67206072656d6f76655f707265666978602e20416c6c20746f70696320766563746f727320686176652064657465726d696e69737469632073746f72616765206c6f636174696f6e7320646570656e64696e67206f6e2074686520746f7069632e205468697320616c6c6f7773206c696768742d636c69656e747320746f206c6576657261676520746865206368616e67657320747269652073746f7261676520747261636b696e67206d656368616e69736d20616e6420696e2063617365206f66206368616e67657320666574636820746865206c697374206f66206576656e7473206f6620696e7465726573742e205468652076616c756520686173207468652074797065206028543a3a426c6f636b4e756d6265722c204576656e74496e646578296020626563617573652069662077652075736564206f6e6c79206a7573742074686520604576656e74496e64657860207468656e20696e20636173652069662074686520746f70696320686173207468652073616d6520636f6e74656e7473206f6e20746865206e65787420626c6f636b206e6f206e6f74696669636174696f6e2077696c6c20626520747269676765726564207468757320746865206576656e74206d69676874206265206c6f73742e20546865206e756d626572206f66206576656e747320696e2074686520604576656e74733c543e60206c6973742e204576656e7473206465706f736974656420666f72207468652063757272656e7420626c6f636b2e20446967657374206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2045787472696e7369637320726f6f74206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2048617368206f66207468652070726576696f757320626c6f636b2e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e2045787472696e73696373206461746120666f72207468652063757272656e7420626c6f636b20286d61707320616e2065787472696e736963277320696e64657820746f206974732064617461292e204d6170206f6620626c6f636b206e756d6265727320746f20626c6f636b206861736865732e20546f74616c206c656e6774682028696e2062797465732920666f7220616c6c2065787472696e736963732070757420746f6765746865722c20666f72207468652063757272656e7420626c6f636b2e20546f74616c2077656967687420666f7220616c6c2065787472696e736963732070757420746f6765746865722c20666f72207468652063757272656e7420626c6f636b2e20546f74616c2065787472696e7369637320636f756e7420666f72207468652063757272656e7420626c6f636b2e2045787472696e73696373206e6f6e636520666f72206163636f756e74732e3a686561707061676573446973636f76657279204163636f756e74496e666f42794163636f756e74496400000000000000e84f1000120000000000000000000000fa4f10000800000000000000000000000000000000000000000000000000000000000000e4be110004501000000000000000000014501000010000000000000001000000000000001c501000160000000101000000000000969511000c00000000000000325010001b00000000000000000000000000000000000000e4be11005050100000000000000000006050100001000000000000000100000000000000685010000f0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be110078501000000000000000000088501000010000000000000001000000426f6f747374726170456e64706f696e74735665633c55726c3e0000110000000000000001000000280000000e511000270000004163636f756e74496e666f42794163636f756e7449644163636f756e74496e666f3c543a3a426c6f636b4e756d6265723e0000001100000000000000010000002d000000d05010003e00000044656661756c744c69666574696d65001100000000000000010000002e0000009050100040000000204c69666574696d65206f6620616e204163636f756e74496e666f207265636f726420696e204163636f756e74496e666f42794163636f756e744964206d6170204d617070696e67206f6620736572766963652070726f76696465727327204163636f756e7449647320746f207468656972204163636f756e74496e666f20426f6f74737472617020656e64706f696e7473206d61696e7461696e656420627920726f6f74446973636f7665727920426f6f747374726170456e64706f696e7473000000d7511000430000004f000000010000006f6e6c7920726f6c65206163636f756e74732063616e207365742069706e73206964446973636f766572792044656661756c744c69666574696d65646973636f766572793a2064656661756c74206c69666574696d65206d75737420626520677465206d696e696d756d206c69666574696d652f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f736572766963655f646973636f766572792f646973636f766572792e7273000000000000cc5210000b00000000000000d8521000020000000000000000000000e4be1100000000000000000000000000085310000d00000000000000e4be1100000000000000000000000000e4be11000000000000000000000000001553100014000000000000002c531000010000000000000000000000e4be11000000000000000000000000004453100017000000000000005c531000010000000000000000000000e4be110000000000000000007365745f69706e735f69640000000000639c11000200000000000000d68b110007000000000000008953100008000000000000009153100016000000756e7365745f69706e735f69647365745f64656661756c745f6c69666574696d6500000000000000895310000800000000000000026711000e0000007365745f626f6f7473747261705f656e64706f696e747300000000007453100009000000000000007d5310000c000000656e64706f696e74735665633c5665633c75383e3e6c69666574696d654f7074696f6e3c543a3a426c6f636b4e756d6265723e0000000000d45310000f00000000000000e4531000020000000000000000000000f453100004000000000000004e65774163636f756e74496e64657800d2891100090000008f5410000c0000001454100022000000e4be110000000000365410004100000077541000180000002041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e64657854696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b54696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c4d696e696d756d506572696f643e206265747765656e2073657175656e7469616c20626c6f636b7354696d657374616d70204e6f775374616b65506f6f6c205374616b6573437265617465641100000008000000040000002f000000110000000000000001000000300000005374616b65506f6f6c205374616b657368656164206f66205374616b65506f6f6c205374616b657354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e74206461746100000010561000600000001a0100001f0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f74696d657374616d702f7372632f6c69622e727300000000205710000b00000000000000000000002b5710000f00000000000000000000000000000000000000000000000000000000000000e4be11003c57100000000000000000004c57100001000000000000000100000000000000545710000700000001010000000000002b5710000f000000000000001c3611001100000000000000000000000000000000000000e4be11005c57100000000000000000006c5710000100000000000000010000004e657874456e756d536574543a3a4163636f756e74496e64657800001100000000000000010000002c0000008a5710001f000000456e756d536574001100000000000000010000002800000074571000160000002054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e506172656e7420686173682073686f756c642062652076616c69642e5472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e0000004358100032000000446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e53746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e00000000000000a45810000300000000000000a8581000010000000000000000000000c058100009000000000000007365740000000000425a10000300000000000000455a1000120000000859100016000000e4be1100000000001e591000560000007459100036000000e4be110000000000aa59100051000000fb59100011000000e4be1100000000000c5a10003600000020536574207468652063757272656e742074696d652e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e742073706563696669656420627920604d696e696d756d506572696f64602e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d7573742062652060496e686572656e74602e6e6f77436f6d706163743c543a3a4d6f6d656e743e0000000000085b1000030000000000000000000000118d10000900000000000000000000000000000000000000000000000000000000000000e4be11007c5e100000000000000000000c5b100001000000000000000100000000000000145b1000090000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100205b10000000000000000000305b10000100000000000000010000004e6f7700655b10002400000044696455706461746500000011000000000000000100000021000000385b10002d00000020446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e00000000000000c45b10000d00000000000000118d10000900000000000000e4be1100d45b10000000000000000000e45b100004000000000000004d696e696d756d506572696f6400000011000000000000000100000031000000045c10005a0000005e5c10005a000000b85c100059000000115d10001c00000020546865206d696e696d756d20706572696f64206265747765656e20626c6f636b732e204265776172652074686174207468697320697320646966666572656e7420746f20746865202a65787065637465642a20706572696f6420746861742074686520626c6f636b2070726f64756374696f6e206170706172617475732070726f76696465732e20596f75722063686f73656e20636f6e73656e7375732073797374656d2077696c6c2067656e6572616c6c7920776f726b2077697468207468697320746f2064657465726d696e6520612073656e7369626c6520626c6f636b2074696d652e20652e672e20466f7220417572612c2069742077696c6c20626520646f75626c65207468697320706572696f64206f6e2064656661756c742073657474696e67732e706f6f6c20686164206c657373207468616e2065787065637465642066756e64732100807710003a0000003a030000090000005374616b65506f6f6c000000000000001c5e1000060000000101010000000000501911000a00000000000000225e10002f00000000000000000000000000000000000000e4be1100545e10000000000000000000645e1000010000000000000001000000000000006c5e10000d0000000000000000000000501911000a00000000000000000000000000000000000000000000000000000000000000e4be11007c5e100000000000000000008c5e10000200000000000000010000005374616b65735374616b653c543a3a426c6f636b4e756d6265722c2042616c616e63654f663c543e2c20543a3a536c61736849643e000000110000000000000001000000320000003a5f10001d0000005374616b657343726561746564000000110000000000000001000000260000009c5e10006a000000065f100034000000204964656e7469666965722076616c756520666f72206e657874207374616b652c20616e6420636f756e74206f6620746f74616c207374616b6573206372656174656420286e6f74206e65636573736172696c7920746865206e756d626572206f662063757272656e74207374616b657320696e20746865205374616b6573206d6170206173207374616b65732063616e2062652072656d6f7665642e29204d617073206964656e7469666965727320746f2061207374616b652e0000000000b05f1000110000000000000000000000c15f10000a00000000000000000000000000000000000000000000000000000000000000e4be1100cc5f10000000000000000000e4be11000000000000000000010000004e6578744665654d756c7469706c6965724d756c7469706c6965720011000000000000000100000026000000000000004c6010001200000000000000a73711000c00000000000000e4be110060601000000000000000000070601000010000000000000000000000786010001200000000000000a73711000c00000000000000e4be11008c60100000000000000000009c60100001000000000000005472616e73616374696f6e42617365466565000011000000000000000100000033000000e7601000370000005472616e73616374696f6e42797465466565000011000000000000000100000034000000a460100043000000205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e496e646963657320456e756d53657400000011000000080000000400000035000000ecaf11002b000000740200001e0000006a6f7973747265616d2d6e6f64650000df6acb689907609b0200000037e397fc7c91f5e40100000040fe3ad401f8959a03000000d2bc9897eed08f1501000000f78b278be53f454c01000000ed99c5acb25eedf502000000cbca25e39f14238701000000687ad44ad37f03c201000000bc9d89904f5b923f01000000ab3c0572291feb8b010000006772616e62616265696d6f6e0000000040787d010065cd1d00e1f505d85aae1ec0542205b0508f1f38e4750488467020d853e903603c5121d0bf760338323222a8591903402013236039cd02480ef423a82a8f0268f8d42470955c02b8dab525c05a3302d8c4962648bd1102e0b27727a855f601e8a05828e8fedf0180773929c0cacd01586d1a2af8f1be019053fb2a50d8b201d00edc2be0fca80138edbc2c48f2a001e06d9d2d80669a01c80d7e2e500f9501c0575e2f08b6900140323f30e0278d0148202031b0418a0108a3ff3120e8870120bedf32f0fb85013856c03398698401f0fda03478218301b8d87f35d8178201d8c26036183d8101b8223e37508d800188d21c38c8fc7f0168b5f93898877f01a829d139d8297f0120d6ab3ab8db7e0168ae803b389d7e0100ca9a3b68957e01436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e647341740000000000f8711000060000000000000036000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a0000000000000000000000000000002c83100004000000000000003b0000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003c00000000000000000000000000000039000000000000000000000000000000fe71100009000000000000003d000000000000000000000000000000000000000000000000000000000000003e000000000000000000000002000000000000000000000000000000000000003f00000000000000000000000000000039000000000000000000000000000000259411000a000000000000004000000000000000000000000000000000000000000000000000000000000000410000000000000000000000020000000000000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000000772100007000000000000004200000000000000000000000000000000000000000000000000000000000000390000000000000000000000000000004300000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000000951110008000000000000004400000000000000000000000000000000000000000000000000000000000000450000000000000000000000000000004600000000000000000000000000000047000000000000000000000000000000390000000000000000000000000000000e72100012000000000000004800000000000000000000000000000000000000000000000000000002000000000000000000000000000000020000000000000000000000000000000000000049000000000000000000000000000000390000000000000000000000000000001503110007000000000000004a000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000004c0000000000000000000000000000004d00000000000000000000000000000039000000000000000000000000000000dd8b110007000000000000004e000000000000000000000000000000000000000000000000000000000000004f000000000000000000000000000000500000000000000000000000000000005100000000000000000000000000000039000000000000000000000000000000207210000f000000020000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000020000000000000000000000000000000000000053000000000000000000000000000000390000000000000000000000000000002f72100007000000000000005400000000000000000000000000000000000000000000000000000000000000550000000000000000000000000000005600000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000004a26110008000000000000005700000000000000000000000000000000000000000000000000000000000000580000000000000000000000000000005900000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000003672100012000000020000000000000000000000000000000000000000000000000000000000000000000000390000000000000000000000020000000000000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000001d5b110008000000000000005a00000000000000000000000000000000000000000000000000000000000000390000000000000000000000000000005b00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000004872100018000000000000005c0000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000ee2d110004000000000000005d000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000005f0000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000068f10000900000000000000600000000000000000000000000000000000000000000000000000000000000061000000000000000000000000000000620000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000b62f11000f0000000000000063000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000065000000000000000000000000000000390000000000000000000000000000003900000000000000000000000000000060721000070000000000000066000000000000000000000000000000000000000000000000000000000000006700000000000000000000000000000068000000000000000000000000000000390000000000000000000000000000003900000000000000000000000000000017421100040000000000000069000000000000000000000000000000000000000000000000000000000000006a0000000000000000000000000000006b00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000006772100007000000000000006c000000000000000000000000000000000000000000000000000000000000006d0000000000000000000000000000006e00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000003779110005000000000000006f0000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000710000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000231b110009000000000000007200000000000000000000000000000000000000000000000000000000000000390000000000000000000000000000007300000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000006aa0100006000000000000007400000000000000000000000000000000000000000000000000000000000000750000000000000000000000000000007600000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000009298110016000000000000007700000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000007900000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000006e7210000d000000000000007a000000000000000000000000000000000000000000000000000000000000007b0000000000000000000000000000007c00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000007b72100019000000000000007d000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000007f00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000009472100009000000000000008000000000000000000000000000000000000000000000000000000000000000810000000000000000000000000000008200000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000009d7210000e00000000000000830000000000000000000000000000000000000000000000000000000000000039000000000000000000000000000000840000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000ab7210001900000000000000850000000000000000000000000000000000000000000000000000000000000086000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000c47210000500000000000000870000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000c97210000700000000000000880000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000d072100010000000000000008900000000000000000000000000000000000000000000000000000000000000390000000000000000000000020000000000000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000007016110006000000000000008a000000000000000000000000000000000000000000000000000000000000003900000000000000000000000200000000000000000000000000000000000000390000000000000000000000000000003900000000000000000000000000000058bf100013000000000000008b000000000000000000000000000000000000000000000000000000000000008c0000000000000000000000000000008d0000000000000000000000000000003900000000000000000000000000000039000000000000000000000053797374656d54696d657374616d70496e64696365735472616e73616374696f6e5061796d656e7446696e616c697479547261636b65724772616e647061417574686f72697479446973636f7665727952616e646f6d6e657373436f6c6c656374697665466c6970436f756e63696c4d656d62657273446174614469726563746f7279446174614f626a65637453746f726167655265676973747279446973636f7665727956657273696f6e656453746f726556657273696f6e656453746f72655065726d697373696f6e735374616b654d696e74696e67526563757272696e675265776172647300000000387310001000000000000000b0231100010000000000000000000000e4be1100000000000000000000000000487310001500000000000000b0231100010000000000000000000000e4be11000000000000000000436f756e63696c5465726d456e6465644e6577436f756e63696c5465726d5374617274656400000000000000107410000b000000000000001c741000010000000000000000000000347410000100000000000000000000003c7410001200000000000000507410000100000000000000000000006874100001000000000000000000000070741000150000000000000088741000010000000000000000000000e4be1100000000000000000000000000a0741000100000000000000000401100010000000000000000000000b074100001000000000000007365745f636f756e63696c00000000007475100008000000000000001c361100110000001d751000570000006164645f636f756e63696c5f6d656d626572000000000000167510000700000000000000969511000c000000f47410002200000072656d6f76655f636f756e63696c5f6d656d62657200000000000000e37410001100000000000000969511000c0000007365745f7465726d5f656e64735f6174b87410002b0000002053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e646163636f756e745f746f5f72656d6f766520416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e7473000000002c7610000d0000000000000000000000397610002100000000000000000000000000000000000000000000000000000000000000e4be11005c7610000000000000000000e4be1100000000000000000001000000000000006c7610000a0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100787610000000000000000000e4be1100000000000000000001000000416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e0000110000000000000001000000280000005465726d456e6473417400001100000000000000010000008e0000005365656420697320616e207574663820737472696e670000ecaf11002b000000ea0300002e0000006e6f207374616b6564206163636f756e7420666f756e6400347710003a000000410000000100000063616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f726d757374207365742066757475726520626c6f636b206e756d6265722f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e72730000807710003a000000ef0000001d0000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d7374616b652d6d6f64756c652f7372632f6c69622e7273526563757272696e6752657761726420526563697069656e747368656164206f6620526563757272696e6752657761726420526563697069656e74732f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f6f70732f61726974682e7273526563757272696e675265776172642052657761726452656c6174696f6e736869707368656164206f6620526563757272696e675265776172642052657761726452656c6174696f6e736869707374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c696e76616c69642073616c7400000000000000007a10000f00000000000000107a1000020000000000000000000000207a1000030000000000000000000000387a10001000000000000000107a1000020000000000000000000000e4be1100000000000000000000000000487a10001500000000000000607a1000020000000000000000000000e4be1100000000000000000000000000bf2311000500000000000000707a1000030000000000000000000000887a1000040000000000000000000000a87a10000e00000000000000b87a1000010000000000000000000000e4be1100000000000000000000000000c07a10000e00000000000000d07a1000020000000000000000000000e07a1000010000000000000000000000e87a10000e0000000000000054231100010000000000000000000000f87a1000010000000000000050726f706f73616c4372656174656400d289110009000000aba31100030000005e7b100008000000c87b100027000000ef7b10004000000050726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564000000aba3110003000000ba7b10000e000000d289110009000000aba3110003000000b27b1000080000005e7b100008000000667b1000280000008e7b100014000000a27b10001000000054616c6c7946696e616c697a65640000467b10001800000052756e74696d65557064617465640000aba3110003000000f423110004000000187b10002e00000050726f706f73616c5665746f65640000007b10001800000020526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e54616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e4163746f7273204163746f7242794163636f756e7449644163746f7273204163636f756e744964734279526f6c6500000000000000e47c10000e00000000000000f47c1000020000000000000000000000e4be1100000000000000000000000000047d10000600000000000000f47c1000020000000000000000000000e4be11000000000000000000000000000a7d10000800000000000000f47c1000020000000000000000000000e4be11000000000000000000456e7472795265717565737465640000d289110009000000127d1000040000005374616b6564556e7374616b6564526f6c6550726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732041637469766550726f706f73616c49647350726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c732054616c6c79526573756c74734163746f727320417661696c61626c65526f6c65734163746f727320506172616d65746572730000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000f677100048000000120200002d000000617373657274696f6e206661696c65643a203c526563697069656e74733c543e3e3a3a657869737473282672656c6174696f6e736869702e726563697069656e742950726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c732052656a656374696f6e46656550726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c7320566f74696e67506572696f644163746f727320526f6c65456e747279526571756573747365706f636820696e64696365732077696c6c206e6576657220726561636820325e3634206265666f726520746865206465617468206f662074686520756e6976657273653b207165640000307f10005b000000960100001b000000307f10005b0000009e010000200000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f626162652f7372632f6c69622e7273009c7f10006600000033000000120000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d7072696d6974697665732f7372632f63757276652e7273526563757272696e6752657761726400000000000000748110000a00000001010100000000007e8110000e000000000000008c8110001700000000000000000000000000000000000000e4be1100a48110000000000000000000e4be110000000000000000000100000000000000b48110001100000000000000000000007e8110000e00000000000000000000000000000000000000000000000000000000000000e4be1100b48610000000000000000000e4be110000000000000000000100000000000000c5811000130000000101010000000000d88110001700000000000000ef8110005a00000000000000000000000000000000000000e4be11004c8210000000000000000000e4be1100000000000000000001000000000000005c8210001a0000000000000000000000d88110001700000000000000000000000000000000000000000000000000000000000000e4be1100b48610000000000000000000e4be1100000000000000000001000000526563697069656e7473543a3a526563697069656e744964526563697069656e743c42616c616e63654f663c543e3e001100000000000000010000008f000000526563697069656e74734372656174656452657761726452656c6174696f6e7368697073543a3a52657761726452656c6174696f6e73686970496452657761726452656c6174696f6e736869703c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c20543a3a0a4d696e7449642c20543a3a526563697069656e7449643e0000001100000000000000010000009000000052657761726452656c6174696f6e736869707343726561746564526563757272696e6752657761726420526563697069656e7473437265617465640048be100041000000fc0500002a0000004661696c656420746f20637265617465207265776172642072656c6174696f6e73686970210000001100000001000000010000009100000048be100041000000020600002b000000526563757272696e675265776172642052657761726452656c6174696f6e736869707343726561746564000048be1000410000003c060000110000004261626500000000488610000a0000000000000000000000ad7111000300000000000000000000000000000000000000000000000000000000000000e4be1100b4861000000000000000000054861000010000000000000001000000000000003c6611000b00000000000000000000005c8610002700000000000000000000000000000000000000000000000000000000000000e4be110020a41000000000000000000084861000010000000000000001000000000000008c8610000b0000000000000000000000ad7111000300000000000000000000000000000000000000000000000000000000000000e4be1100b486100000000000000000009886100002000000000000000100000000000000a88610000b0000000000000000000000ad7111000300000000000000000000000000000000000000000000000000000000000000e4be1100b48610000000000000000000c486100001000000000000000100000000000000cc8610000a0000000000000000000000d68610000800000000000000000000000000000000000000000000000000000000000000e4be1100408710000000000000000000e08610000a000000000000000100000000000000308710000e0000000000000000000000d68610000800000000000000000000000000000000000000000000000000000000000000e4be11004087100000000000000000005087100001000000000000000100000000000000588710000c0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11005c95100000000000000000006487100009000000000000000100000000000000ac871000110000000101000000000000aba311000300000000000000bd8710000d00000000000000000000000000000000000000e4be1100cc8710000000000000000000e4be110000000000000000000100000000000000dc8710000b0000000000000000000000e78710000800000000000000000000000000000000000000000000000000000000000000e4be1100f087100000000000000000000088100002000000000000000000000045706f6368496e64657800004b8c1000150000005665633c28417574686f7269747949642c2042616265417574686f72697479576569676874293e00308c10001b00000047656e65736973536c6f7400ce8b10003e0000000c8c10002400000043757272656e74536c6f740011000000000000000100000026000000b98b10001500000052616e646f6d6e6573735b75383b2033325d0000f38910002e000000e4be110000000000218a10000b000000e4be1100000000002c8a1000410000006d8a10003e000000ab8a100045000000f08a100045000000358b100041000000768b1000430000004e65787452616e646f6d6e657373000011000000000000000100000092000000dc891000170000005365676d656e74496e646578978810001f000000e4be110000000000b68810003d000000f3881000400000003389100025000000e4be110000000000588910003b0000009389100042000000d589100007000000556e646572436f6e737472756374696f6e5665633c5b75383b2033325d3e000011000000000000000100000028000000496e697469616c697a65644d617962655672660011000000000000000100000021000000108810004000000050881000470000002054656d706f726172792076616c75652028636c656172656420617420626c6f636b2066696e616c697a6174696f6e292077686963682069732060536f6d6560206966207065722d626c6f636b20696e697469616c697a6174696f6e2068617320616c7265616479206265656e2063616c6c656420666f722063757272656e7420626c6f636b2e2052616e646f6d6e65737320756e64657220636f6e737472756374696f6e2e205765206d616b6520612074726164656f6666206265747765656e2073746f7261676520616363657373657320616e64206c697374206c656e6774682e2057652073746f72652074686520756e6465722d636f6e737472756374696f6e2072616e646f6d6e65737320696e207365676d656e7473206f6620757020746f2060554e4445525f434f4e535452554354494f4e5f5345474d454e545f4c454e475448602e204f6e63652061207365676d656e7420726561636865732074686973206c656e6774682c20776520626567696e20746865206e657874206f6e652e20576520726573657420616c6c207365676d656e747320616e642072657475726e20746f206030602061742074686520626567696e6e696e67206f662065766572792065706f63682e204e6578742065706f63682072616e646f6d6e6573732e205468652065706f63682072616e646f6d6e65737320666f7220746865202a63757272656e742a2065706f63682e20232053656375726974792054686973204d555354204e4f54206265207573656420666f722067616d626c696e672c2061732069742063616e20626520696e666c75656e6365642062792061206d616c6963696f75732076616c696461746f7220696e207468652073686f7274207465726d2e204974204d4159206265207573656420696e206d616e792063727970746f677261706869632070726f746f636f6c732c20686f77657665722c20736f206c6f6e67206173206f6e652072656d656d626572732074686174207468697320286c696b652065766572797468696e6720656c7365206f6e2d636861696e29206974206973207075626c69632e20466f72206578616d706c652c2069742063616e20626520757365642077686572652061206e756d626572206973206e656564656420746861742063616e6e6f742068617665206265656e2063686f73656e20627920616e206164766572736172792c20666f7220707572706f7365732073756368206173207075626c69632d636f696e207a65726f2d6b6e6f776c656467652070726f6f66732e2043757272656e7420736c6f74206e756d6265722e2054686520736c6f74206174207768696368207468652066697273742065706f63682061637475616c6c7920737461727465642e2054686973206973203020756e74696c2074686520666972737420626c6f636b206f662074686520636861696e2e2043757272656e742065706f636820617574686f7269746965732e2043757272656e742065706f636820696e6465782e00000000d08c10000d00000000000000ad7111000300000000000000e4be1100e08c10000000000000000000f08c1000020000000000000000000000008d10001100000000000000118d10000900000000000000e4be11001c8d100000000000000000002c8d1000050000000000000045706f63684475726174696f6e00000011000000000000000100000093000000848e100043000000c78e10003f0000004578706563746564426c6f636b54696d65543a3a4d6f6d656e74000011000000000000000100000094000000548d100041000000958d100044000000d98d1000410000001a8e1000420000005c8e10002800000020546865206578706563746564206176657261676520626c6f636b2074696d6520617420776869636820424142452073686f756c64206265206372656174696e6720626c6f636b732e2053696e636520424142452069732070726f626162696c6973746963206974206973206e6f74207472697669616c20746f20666967757265206f7574207768617420746865206578706563746564206176657261676520626c6f636b2074696d652073686f756c64206265206261736564206f6e2074686520736c6f74206475726174696f6e20616e642074686520736563757269747920706172616d657465722060636020287768657265206031202d20636020726570726573656e7473207468652070726f626162696c697479206f66206120736c6f74206265696e6720656d707479292e20546865206e756d626572206f66202a2a736c6f74732a2a207468617420616e2065706f63682074616b65732e20576520636f75706c652073657373696f6e7320746f2065706f6368732c20692e652e2077652073746172742061206e65772073657373696f6e206f6e636520746865206e65772065706f636820626567696e732e50726f706f73616c730000000000389410000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100489410000000000000000000589410000200000000000000010000000000000068941000080000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be11007094100000000000000000008094100001000000000000000100000000000000889410000f0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100989410000000000000000000a894100001000000000000000100000000000000b09410000c0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100bc9410000000000000000000cc94100001000000000000000100000000000000303711000c0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100d49410000000000000000000e494100001000000000000000100000000000000ec9410000a0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f89410000000000000000000e4be11000000000000000000010000000000000008951000110000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11001c9510000000000000000000e4be1100000000000000000001000000000000002c9510000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11003c9510000000000000000000e4be1100000000000000000001000000000000004c9510000d0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11005c95100000000000000000006c95100001000000000000000100000000000000068f1000090000000101000000000000aba311000300000000000000749510004c00000000000000000000000000000000000000e4be1100c09510000000000000000000d095100001000000000000000100000000000000d8951000110000000000000000000000068f11000800000000000000000000000000000000000000000000000000000000000000e4be110020a410000000000000000000ec95100001000000000000000100000000000000f49510000e0000000101000000000000c53611000700000000000000d68b11000700000000000000000000000000000000000000e4be110004961000000000000000000014961000010000000000000001000000000000001c9610000f0000000101000000000000aba3110003000000000000002b9610001d00000000000000000000000000000000000000e4be1100489610000000000000000000e4be11000000000000000000010000000000000058961000180000000101000000000000709610001300000000000000b27b10000800000000000000000000000000000000000000e4be1100849610000000000000000000e4be110000000000000000000100000000000000949610000c0000000101000000000000aba311000300000000000000a09610001b00000000000000000000000000000000000000e4be1100bc9610000000000000000000e4be1100000000000000000001000000417070726f76616c51756f72756d000011000000000000000100000095000000bc98100032000000ee9810002f0000004d696e5374616b6511000000000000000100000096000000769810004600000043616e63656c6c6174696f6e46656500110000000000000001000000970000002a9810004c00000052656a656374696f6e46656511000000000000000100000098000000ee9710003c000000110000000000000001000000990000009d971000510000004e616d654d61784c656e00001100000000000000010000009a0000004465736372697074696f6e4d61784c656e0000001100000000000000010000009b0000005761736d436f64654d61784c656e00001100000000000000010000009c00000050726f706f73616c436f756e740000001100000000000000010000002c0000006e9710002f00000052756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c20540a3a3a486173683e1100000000000000010000009d0000004e9710002000000041637469766550726f706f73616c49647300000005971000490000005761736d436f6465427948617368000011000000000000000100000029000000cc96100039000000566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e11000000000000000100000028000000566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c2075333229001100000000000000010000002100000054616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e001100000000000000010000009e00000020476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7400c99b10003c000000d90000000100000050726f706f73616c73204d696e5374616b655374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f206269674f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c42616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e466565617070726f76616c2071756f726f6d206d7573742062652067726561746572207468616e207a65726f2f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727300000000000000e49c10000f00000000000000f49c1000040000000000000000000000549d1000040000000000000000000000749d10001000000000000000849d1000020000000000000000000000b49d1000040000000000000000000000d49d10000f00000000000000e49d1000010000000000000000000000fc9d1000010000000000000000000000049e10000d00000000000000e49d1000010000000000000000000000149e10000100000000000000000000001c9e10001300000000000000309e1000010000000000000000000000e4be110000000000000000006372656174655f70726f706f73616c0000000000124211000500000000000000a73711000c000000000000005da010000400000000000000d68b11000700000000000000fa7811000b00000000000000d68b1100070000000000000061a010000900000000000000d68b110007000000e99e1000440000002d9f100006000000d09f10008d000000cc9f100004000000766f74655f6f6e5f70726f706f73616c00000000de9e10000b00000000000000aba311000300000000000000683f11000400000000000000b27b100008000000e99e1000440000002d9f100006000000339f100099000000cc9f10000400000063616e63656c5f70726f706f73616c0000000000de9e10000b00000000000000aba3110003000000859e1000590000007665746f5f70726f706f73616c000000519e1000340000007365745f617070726f76616c5f71756f72756d0000000000489e10000900000000000000aba31100030000006e65775f76616c75652043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f67292060606020706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67296e616d657761736d5f636f64654163746f72730000000030a310000a0000000101000000000000127d100004000000000000003aa310002c00000000000000000000000000000000000000e4be1100d0a31000000000000000000068a310000100000000000000000000000000000070a310000e00000000000000000000007ea310000900000000000000000000000000000000000000000000000000000000000000e4be110088a31000000000000000000098a3100001000000000000000100000000000000a0a310000f00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be110020a410000000000000000000b0a3100001000000000000000100000000000000b8a31000100000000101000000000000969511000c00000000000000c8a310000800000000000000000000000000000000000000e4be1100d0a310000000000000000000e0a3100001000000000000000000000000000000e8a31000100000000101000000000000127d100004000000000000001c3611001100000000000000000000000000000000000000e4be110020a410000000000000000000f8a310000100000000000000010000000000000000a4100014000000010100000000000014a410000b000000000000001c3611001100000000000000000000000000000000000000e4be110020a41000000000000000000030a410000100000000000000010000000000000038a4100011000000000000000000000049a410000b00000000000000000000000000000000000000000000000000000000000000e4be110054a41000000000000000000064a410000600000000000000010000000000000094a410000f0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100a4a410000000000000000000b4a41000010000000000000001000000506172616d6574657273526f6c65506172616d65746572733c42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e000036a7100033000000417661696c61626c65526f6c65735665633c526f6c653e001100000000000000010000002800000015a71000210000004163746f724163636f756e744964730009a710000c0000004163746f7242794163636f756e7449644163746f723c543e11000000000000000100000021000000e4a61000250000004163636f756e744964734279526f6c65bea61000260000004163636f756e7449647342794d656d62657249644d656d62657249643c543e001100000000000000010000002800000093a610002b000000526f6c65456e747279526571756573747352657175657374733c543e11000000000000000100000028000000eea410004d0000003ba510004500000080a5100063000000e3a510003c0000001fa610003c0000005ba6100038000000526571756573744c69666554696d65001100000000000000010000009f000000bca410003200000020456e747279207265717565737420657870697265732061667465722074686973206e756d626572206f6620626c6f636b732046697273742073746570206265666f726520656e746572206120726f6c65206973207265676973746572696e6720696e74656e7420776974682061206e6577206163636f756e742f6b65792e205468697320697320646f6e652062792073656e64696e67206120726f6c655f656e7472795f7265717565737428292066726f6d20746865206e6577206163636f756e742e20546865206d656d626572206d757374207468656e2073656e642061207374616b652829207472616e73616374696f6e20746f20617070726f766520746865207265717565737420616e6420656e74657220746865206465736972656420726f6c652e20546865206163636f756e74206d616b696e672074686520726571756573742077696c6c20626520626f6e64656420616e64206d75737420686176652073756666696369656e742062616c616e636520746f20636f76657220746865206d696e696d756d207374616b6520666f722074686520726f6c652e20426f6e64696e67206f6e6c79206f6363757273206166746572207375636365737366756c20656e74727920696e746f206120726f6c652e206163746f72206163636f756e7473206173736f63696174656420776974682061206d656d626572206964206163746f72206163636f756e7473206173736f6369617465642077697468206120726f6c65206163746f72206163636f756e7473206d617070656420746f207468656972206163746f72204163746f7273206c6973742074686520726f6c6573206d656d626572732063616e20656e74657220696e746f20726571756972656d656e747320746f20656e74657220616e64206d61696e7461696e2073746174757320696e20726f6c65734163746f727320526571756573744c69666554696d6500e4a8100034000000ef000000010000006163636f756e7420616c72656164792075736564696e61637469766520726f6c6563616e6e6f742070617920726f6c6520656e7472792072657175657374206665656e6f20726f6c6520656e7472792072657175657374206d617463686573726f6c6520736c6f74732066756c6c6e6f7420656e6f7567682062616c616e636520746f207374616b654163746f7273204163636f756e7449647342794d656d62657249644163746f7273204163746f724163636f756e744964736d656d62657273206f6e6c792063616e206163636570742073746f7261676520656e74727920726571756573746e6f7420726f6c65206b65796f6e6c79206d656d6265722063616e20756e7374616b652073746f726167652070726f766964657200e4a81000340000009d010000190000006572726f7220747279696e6720746f2072656d6f7665206e6f6e206163746f72206163636f756e742f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f726f6c65732f6163746f72732e72736e6f20706172616d657465727320666f7220726f6c6500000000000090aa10001200000000000000a4aa1000020000000000000000000000e4be1100000000000000000000000000124211000500000000000000d4aa100002000000000000000000000004ab10000100000000000000000000000cab1000070000000000000014ab1000010000000000000000000000e4be11000000000000000000000000002cab1000130000000000000040ab1000020000000000000000000000e4be110000000000000000000000000070ab1000130000000000000084ab1000010000000000000000000000e4be11000000000000000000000000009cab10001600000000000000b4ab1000010000000000000000000000e4be1100000000000000000000000000ccab10001b00000000000000b4ab1000010000000000000000000000e4be1100000000000000000000000000e7ab10000c0000000000000014ab1000010000000000000000000000e4be11000000000000000000726f6c655f656e7472795f72657175657374000000000000f3ab10000400000000000000127d1000040000000000000000ae1100090000000000000014a410000b00000000000000f3ab10000400000000000000127d1000040000000000000002ac10000d00000000000000969511000c0000000fac100020000000756e7374616b65000000000002ac10000d00000000000000969511000c0000007365745f726f6c655f706172616d65746572730000000000f3ab10000400000000000000127d10000400000000000000fcab100006000000000000003aa310002c0000007365745f617661696c61626c655f726f6c65730000000000f7ab100005000000000000007ea31000090000006164645f746f5f617661696c61626c655f726f6c6573000000000000f3ab10000400000000000000127d10000400000072656d6f76655f66726f6d5f617661696c61626c655f726f6c657372656d6f76655f6163746f72726f6c65726f6c6573706172616d736163746f725f6163636f756e74204d656d6265722061637469766174696e6720656e7472792072657175657374004cbc1100480000000e02000023000000617373657274696f6e206661696c65643a20656e64203c3d206c656e617373657274696f6e206661696c65643a20696e646578203c3d206c656e617373657274696f6e206661696c65643a20696e646578203c206c656e4368616e6e656c2068616e646c6520746f6f2073686f72742e4368616e6e656c2068616e646c6520746f6f206c6f6e672e4368616e6e656c206465736372697074696f6e20746f6f2073686f72744368616e6e656c206465736372697074696f6e20746f6f206c6f6e674368616e6e656c20696420696e76616c69644368616e6e656c206372656174696f6e2063757272656e746c792064697361626c65644368616e6e656c2068616e646c6520697320616c72656164792074616b656e4368616e6e656c207469746c6520746f6f2073686f72744368616e6e656c207469746c6520746f6f206c6f6e674368616e6e656c206176617461722055524c20746f6f2073686f72744368616e6e656c206176617461722055524c20746f6f206c6f6e674368616e6e656c2062616e6e65722055524c20746f6f2073686f72744368616e6e656c2062616e6e65722055524c20746f6f206c6f6e674f726967696e20646f6573206e6f74206d61746368206368616e6e656c20726f6c65206163636f756e7443757272656e74206c65616420697320616c72656164792073657443757272656e74206c656164206973206e6f74207365744f726967696e206973206e6f74206c6561644f726967696e206973206e6f74206170706c6963616e7443757261746f72206f70656e696e6720646f6573206e6f7420657869737443757261746f72206170706c69636174696f6e20646f6573206e6f74206578697374496e73756666696369656e742062616c616e636520746f206170706c795375636365737366756c2063757261746f72612070706c69636174696f6e20646f6573206e6f742065786973744d656d626572206e6f206c6f6e676572207265676973747261626c652061732063757261746f7243757261746f7220646f6573206e6f7420657869737443757261746f72206973206e6f742061637469766543757261746f72206578697420726174696f6e616c65207465787420697320746f6f206c6f6e6743757261746f72206578697420726174696f6e616c65207465787420697320746f6f2073686f727443757261746f72206170706c69636174696f6e207465787420746f6f206c6f6e6743757261746f72206170706c69636174696f6e207465787420746f6f2073686f72745369676e6572206973206e6f742063757261746f7220726f6c65206163636f756e74556e7374616b657220646f6573206e6f7420657869737443757261746f7220686173206e6f20726563757272696e672072657761726443757261746f72206e6f7420636f6e74726f6c6c6564206279206d656d6265724f70656e696e6720646f6573206e6f742065786973744f70656e696e67204973204e6f7420696e2057616974696e6720746f20626567696e4f70656e696e67204973204e6f7420696e2057616974696e674f70656e696e67446f65734e6f7445786973744f70656e696e674e6f74496e526576696577506572696f6453746167654170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320746f6f2073686f72744170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320746f6f2073686f7274526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320746f6f2073686f7274526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320746f6f2073686f72744170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320726564756e64616e744170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320726564756e64616e74526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320726564756e64616e74526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320726564756e64616e744170706c69636174696f6e446f65734e6f7445786973744170706c69636174696f6e4e6f74496e416374697665537461676552657761726420706f6c6963792068617320696e76616c6964206e657874207061796d656e7420626c6f636b206e756d626572576f726b696e672067726f7570206d696e7420646f6573206e6f742065786973744170706c69636174696f6e4e6f744163746976654f70656e696e674e6f74416363657074696e674170706c69636174696f6e73556e7374616b696e67506572696f64546f6f53686f7274202e2e2e526564756e64616e74556e7374616b696e67506572696f6450726f7669646564202e2e2e4973206e6f742061206d656d6265724163636f756e74206973206e6f7420636f6e74726f6c6c6572206163636f756e74206f66206d656d6265724f70656e696e6720646f6573206e6f7420616374697661746520696e2074686520667574757265526f6c65207374616b6520616d6f756e74206c657373207468616e206d696e696d756d2063757272656e63792062616c616e63655374616b6550726f76696465645768656e526564756e64616e74202e2e2e5374616b654d697373696e675768656e5265717569726564202e2e2e5374616b65416d6f756e74546f6f4c6f77202e2e2e4f70656e696e674e6f74496e416363657074696e674170706c69636174696f6e7353746167654e65774170706c69636174696f6e57617343726f776465644f75744170706c69636174696f6e20726174696f6e696e6720686173207a65726f206d617820616374697665206170706c6963616e7473556e7369676e6564206f726967696e4d656d62657220696420697320696e76616c69645369676e657220646f6573206e6f74206d6174636820636f6e74726f6c6c6572206163636f756e744f726967696e206d75737420626520636f6e74726f6c6c6572206f7220726f6f74206163636f756e74206f66206d656d6265724d656d62657220616c72656164792068617320616e20616374697665206170706c69636174696f6e206f6e20746865206f70656e696e67436f6e74656e74576f726b696e6747726f75702043757272656e744c6561644964436f6e74656e74576f726b696e6747726f7570204c6561644279496468656164206f6620436f6e74656e74576f726b696e6747726f7570204c65616442794964436f6e74656e74576f726b696e6747726f75702043757261746f724f70656e696e674279496468656164206f6620436f6e74656e74576f726b696e6747726f75702043757261746f724f70656e696e6742794964436f6e74656e74576f726b696e6747726f75702043757261746f724170706c69636174696f6e4279496468656164206f6620436f6e74656e74576f726b696e6747726f75702043757261746f724170706c69636174696f6e42794964436f6e74656e74576f726b696e6747726f7570204368616e6e656c4279496468656164206f6620436f6e74656e74576f726b696e6747726f7570204368616e6e656c42794964436f6e74656e74576f726b696e6747726f7570204368616e6e656c4964427948616e646c6568656164206f6620436f6e74656e74576f726b696e6747726f7570204368616e6e656c4964427948616e646c65436f6e74656e74576f726b696e6747726f75702043757261746f724279496468656164206f6620436f6e74656e74576f726b696e6747726f75702043757261746f7242794964436f6e74656e74576f726b696e6747726f7570204e65787443757261746f724964436f6e74656e74576f726b696e6747726f7570205072696e636970616c4279496468656164206f6620436f6e74656e74576f726b696e6747726f7570205072696e636970616c42794964436f6e74656e74576f726b696e6747726f757020556e7374616b657242795374616b65496468656164206f6620436f6e74656e74576f726b696e6747726f757020556e7374616b657242795374616b654964000000000000acbb10000e00000000000000bcbb1000010000000000000000000000e4be1100000000000000000000000000c4bb10001b00000000000000bcbb1000010000000000000000000000e4be1100000000000000000000000000dfbb10000700000000000000e8bb1000010000000000000000000000e4be1100000000000000000000000000f0bb10000900000000000000e8bb1000010000000000000000000000e4be1100000000000000000000000000f9bb100013000000000000000cbc1000010000000000000000000000e4be110000000000000000000000000014bc10001b000000000000000cbc1000010000000000000000000000e4be11000000000000000000000000002fbc10001d000000000000000cbc1000010000000000000000000000e4be11000000000000000000000000004cbc1000140000000000000060bc1000020000000000000000000000e4be110000000000000000000000000070bc1000110000000000000084bc1000010000000000000000000000e4be11000000000000000000000000008cbc10001700000000000000a4bc1000020000000000000000000000e4be1100000000000000000000000000b4bc10000d0000000000000084bc1000010000000000000000000000e4be1100000000000000000000000000c1bc1000100000000000000084bc1000010000000000000000000000e4be1100000000000000000000000000d1bc10001c00000000000000f0bc1000010000000000000000000000e4be1100000000000000000000000000f8bc10001b00000000000000f0bc1000010000000000000000000000e4be110000000000000000000000000013bd100019000000000000002cbd1000020000000000000000000000e4be11000000000000000000000000003cbd10001b000000000000002cbd1000020000000000000000000000e4be110000000000000000000000000057bd10001d00000000000000bcbb1000010000000000000000000000e4be110000000000000000000000000074bd10001d00000000000000a8201100010000000000000000000000e4be110000000000000000004368616e6e656c437265617465640000e6bd1000090000004368616e6e656c4f776e6572736869705472616e736665727265644c6561645365740000e0bd1000060000004c656164556e73657443757261746f724f70656e696e674164646564aebd100010000000416363657074656443757261746f724170706c69636174696f6e73426567616e43757261746f724170706c69636174696f6e52657669657743757261746f724f70656e696e6746696c6c6564aebd100010000000bebd1000220000005465726d696e6174656443757261746f7200000091bd1000090000004170706c6965644f6e43757261746f724f70656e696e6700aebd1000100000009abd10001400000043757261746f7245786974656443757261746f72556e7374616b696e6743757261746f724170706c69636174696f6e5465726d696e617465640000009abd10001400000043757261746f724170706c69636174696f6e57697468647261776e43757261746f72526f6c654163636f756e745570646174656491bd100009000000d28911000900000043757261746f725265776172644163636f756e74557064617465644368616e6e656c5570646174656442794375726174696f6e4163746f724368616e6e656c4372656174696f6e456e61626c65645570646174656443757261746f72496443757261746f724170706c69636174696f6e496443757261746f724f70656e696e67496443757261746f724170706c69636174696f6e4964546f43757261746f7249644d61704c65616449644368616e6e656c49644368616e6e656c206d7573742065786973740000001100000008000000040000002f00000048be100041000000030800001100000043757261746f72206d757374206578697374000048be100041000000fd070000110000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f636f6e74656e745f776f726b696e675f67726f75702f6c69622e7273436f6e74656e74576f726b696e6747726f7570204e6578745072696e636970616c496448be100041000000b50a00001800000053686f756c64206e6f7420626520706f737369626c652c206f6e6c792063757261746f727320756e7374616b6520696e2074686973206d6f64756c652063757272656e746c792e0048be100041000000bc0a00000d00000048be100041000000c00a00002100000043757261746f72206d75737420626520696e20756e7374616b696e672073746167652e0048be100041000000cb0a000011000000436f6e74656e74576f726b696e6747726f7570000000000004c8100004000000000000000000000008c810001d00000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000028c810000100000000000000010000000000000030c810000d00000000000000000000003dc810000900000000000000000000000000000000000000000000000000000000000000e4be110048c81000000000000000000058c810000100000000000000000000000000000060c810000800000001010100000000003dc81000090000000000000068c810003b00000000000000000000000000000000000000e4be1100a4c810000000000000000000b4c8100001000000000000000100000000000000bcc810000a00000000000000000000003dc810000900000000000000000000000000000000000000000000000000000000000000e4be110020cc10000000000000000000c8c8100001000000000000000100000000000000d0c81000120000000101010000000000e2c810001300000000000000f5c810005300000000000000000000000000000000000000e4be110048c91000000000000000000058c910000100000000000000010000000000000060c91000140000000000000000000000e2c810001300000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000074c91000010000000000000001000000000000007cc9100016000000010101000000000092c910001700000000000000a9c910005500000000000000000000000000000000000000e4be110000ca1000000000000000000010ca10000100000000000000010000000000000018ca100018000000000000000000000092c910001700000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000030ca10000100000000000000010000000000000038ca10000b000000010101000000000043ca10000c000000000000004fca10004200000000000000000000000000000000000000e4be110094ca10000000000000000000a4ca100001000000000000000100000000000000acca10000d000000000000000000000043ca10000c00000000000000000000000000000000000000000000000000000000000000e4be110020cc10000000000000000000bcca100001000000000000000100000000000000c4ca1000110000000101010000000000d68b1100070000000000000043ca10000c00000000000000000000000000000000000000e4be110020cc10000000000000000000d8ca100003000000000000000100000000000000f0ca10000b0000000101010000000000fbca10000c0000000000000007cb10007f00000000000000000000000000000000000000e4be110088cb1000000000000000000098cb100001000000000000000100000000000000a0cb10000d0000000000000000000000fbca10000c00000000000000000000000000000000000000000000000000000000000000e4be110020cc10000000000000000000b0cb100001000000000000000100000000000000b8cb10000d0000000101010000000000c5cb10000e00000000000000d3cb10002500000000000000000000000000000000000000e4be1100f8cb1000000000000000000008cc10000100000000000000010000000000000010cc10000f0000000000000000000000c5cb10000e00000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000030cc10000100000000000000010000000000000038cc1000160000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be110050cc1000000000000000000060cc10000100000000000000010000000000000068cc100011000000010101000000000079cc10000a0000000000000083cc10002d00000000000000000000000000000000000000e4be1100b0cc10000000000000000000c0cc100001000000000000000100000000000000c8cc10001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e0cc100001000000000000000100000000000000e8cc10001600000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be110000000000000000000100000000000000fecc10001c00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be1100000000000000000001000000000000001acd10001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000031cd10001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000048cd10001800000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000060cd10002300000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000083cd10001800000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000004d696e743c54206173206d696e74696e673a3a54726169743e3a3a4d696e7449640000004ed110003800000043757272656e744c65616449644c65616449643c543e0000110000000000000001000000210000003cd11000120000004c656164427949644c6561643c543a3a4163636f756e7449642c20543a3a52657761726452656c6174696f6e7368697049642c20543a3a426c6f636b4e756d6265723e00110000000000000001000000a000000015d11000270000004e6578744c65616449640000efd010002600000043757261746f724f70656e696e674279496443757261746f724f70656e696e6749643c543e43757261746f724f70656e696e673c543a3a4f70656e696e6749642c20543a3a426c6f636b4e756d6265722c2042616c616e63654f663c543e2c0a43757261746f724170706c69636174696f6e49643c543e3e110000000000000001000000a1000000cbd01000240000004e65787443757261746f724f70656e696e6749649dd010002e00000043757261746f724170706c69636174696f6e4279496443757261746f724170706c69636174696f6e49643c543e43757261746f724170706c69636174696f6e3c543a3a4163636f756e7449642c2043757261746f724f70656e696e6749643c543e2c20543a3a4d656d62657249642c20540a3a3a4170706c69636174696f6e49643e0000110000000000000001000000a20000006ad01000330000004e65787443757261746f724170706c69636174696f6e496437d01000330000004368616e6e656c427949644368616e6e656c49643c543e4368616e6e656c3c543a3a4d656d62657249642c20543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c205072696e636970616c49643c543e3e000000110000000000000001000000a30000000dd010002a0000004e6578744368616e6e656c4964000000d7cf1000360000004368616e6e656c4964427948616e646c65000000f7ce10004e00000045cf100070000000b5cf10002200000043757261746f724279496443757261746f7249643c543e43757261746f723c543a3a4163636f756e7449642c20543a3a52657761726452656c6174696f6e7368697049642c20543a3a5374616b6549642c20543a3a0a426c6f636b4e756d6265722c204c65616449643c543e2c2043757261746f724170706c69636174696f6e49643c543e2c205072696e636970616c49643c543e3e0000110000000000000001000000a4000000cdce10002a0000004e65787443757261746f724964000000acce1000210000005072696e636970616c427949645072696e636970616c49643c543e5072696e636970616c3c43757261746f7249643c543e2c204368616e6e656c49643c543e3e110000000000000001000000210000008ece10001e0000004e6578745072696e636970616c496400110000000000000001000000260000007ace1000140000004368616e6e656c4372656174696f6e456e61626c656400001100000000000000010000002100000025ce100055000000556e7374616b657242795374616b6549645374616b6549643c543e576f726b696e6747726f7570556e7374616b65723c4c65616449643c543e2c2043757261746f7249643c543e3e110000000000000001000000a5000000e5cd1000400000004368616e6e656c48616e646c65436f6e73747261696e7400accd1000390000004368616e6e656c5469746c65436f6e73747261696e744368616e6e656c4465736372697074696f6e436f6e73747261696e744368616e6e656c417661746172436f6e73747261696e744368616e6e656c42616e6e6572436f6e73747261696e744f70656e696e6748756d616e5265616461626c655465787443757261746f724170706c69636174696f6e48756d616e5265616461626c655465787443757261746f7245786974526174696f6e616c65546578740011000000000000000100000024000000204c696d6974732074686520746f74616c206e756d626572206f662063757261746f72732077686963682063616e206265206163746976652e205265636f7665722063757261746f722062792074686520726f6c65207374616b652077686963682069732063757272656e746c7920756e7374616b696e672e20576865746865722069742069732063757272656e746c7920706f737369626c6520746f206372656174652061206368616e6e656c2076696120606372656174655f6368616e6e656c602065787472696e7369632e204e657874206964656e74696669657220666f72204d617073206964656e74696669657220746f207072696e636970616c2e204e657874206964656e74696669657220666f72206e65772063757261746f722e204d617073206964656e74696669657220746f20636f72726573706f6e64696e672063757261746f722e204d6170732028756e6971756529206368616e6e656c2068616e646c6520746f2074686520636f72726573706f6e64696e67206964656e74696669657220666f7220746865206368616e6e656c2e204d617070696e6720697320726571756972656420746f20616c6c6f7720656666696369656e7420284f286c6f67204e2929206f6e2d636861696e20766572696669636174696f6e207468617420612070726f706f7365642068616e646c6520697320696e6465656420756e69717565206174207468652074696d65206974206973206265696e672070726f706f7365642e204964656e74696669657220746f206265207573656420627920746865206e657874206368616e6e656c20696e74726f64756365642e204d617073206964656e74696669657220746f20636f72726573706f6e64696e67206368616e6e656c2e204e657874206964656e7469666965722076616c756520666f72206e65772063757261746f72206170706c69636174696f6e2e204d617073206964656e74696669657220746f2063757261746f72206170706c69636174696f6e206f6e206f70656e696e672e204e657874206964656e7469666965722076616c7565666f72206e65772063757261746f72206f70656e696e672e204d617073206964656e74696665697220746f2063757261746f72206f70656e696e672e204e657874206964656e74696669657220666f72206e65772063757272656e74206c6561642e204d617073206964656e74696669657220746f20636f72726573706f6e64696e67206c6561642e205468652063757272656e74206c6561642e20546865206d696e742063757272656e746c792066756e64696e6720746865207265776172647320666f722074686973206d6f64756c652e436f6e74656e74576f726b696e6747726f7570204368616e6e656c4372656174696f6e456e61626c6564436f6e74656e74576f726b696e6747726f7570204368616e6e656c48616e646c65436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c5469746c65436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c4465736372697074696f6e436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c417661746172436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c42616e6e6572436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204f70656e696e6748756d616e5265616461626c6554657874436f6e74656e74576f726b696e6747726f75702043757261746f724170706c69636174696f6e48756d616e5265616461626c6554657874436f6e74656e74576f726b696e6747726f75702043757261746f7245786974526174696f6e616c6554657874000048be1000410000004d04000001000000436f6e74656e74576f726b696e6747726f7570204e6578744368616e6e656c4964617373657274696f6e206661696c65643a20726567697374657265645f726f6c65000048be100041000000aa0400000d000000617373657274696f6e206661696c65643a20756e726567697374657265645f726f6c650048be100041000000cf0400000d00000048be100041000000d70400000d000000000000000000000000000000436f6e74656e74576f726b696e6747726f7570204e65787443757261746f724f70656e696e674964436f6e74656e74576f726b696e6747726f7570204d696e74617373657274696f6e206661696c65643a2077697468647261775f726573756c742e69735f6f6b282900000048be100041000000020a00000d000000436f6e74656e74576f726b696e6747726f7570204e65787443757261746f724170706c69636174696f6e4964617373657274696f6e206661696c65643a206164645f6170706c69636174696f6e5f726573756c742e69735f6f6b282948be100041000000da0600000d0000004d757374206265207365742c2073696e63652063757261746f722068617320726563757272696e6720726577617264001100000001000000010000009100000048be100041000000270700000d000000436f6e74656e74576f726b696e6747726f7570204e6578744c6561644964000048be1000410000009a0700000d00000048be100041000000b50700000d00000052656c6174696f73686970206d7573742065786973740000110000000000000001000000a600000048be1000410000001d0a00000d000000556e7374616b696e67206d75737420626520706f737369626c6520617420746869732074696d6500110000000100000001000000a700000048be100041000000590a00000d000000282900000000000010d910000e0000000000000020d91000090000000000000000000000f8d9100001000000000000000000000000da10001a000000000000001cda100003000000000000000000000064da10000500000000000000000000008cda10001700000000000000a4da10000700000000000000000000004cdb100001000000000000000000000054db1000200000000000000074db1000040000000000000000000000d4db1000010000000000000000000000dcdb10001300000000000000f0db100003000000000000000000000038dc100001000000000000000000000040dc10001b000000000000005cdc100001000000000000000000000074dc10000100000000000000000000007cdc10001e000000000000005cdc10000100000000000000000000009cdc1000010000000000000000000000a4dc10001400000000000000b8dc100003000000000000000000000000dd100001000000000000000000000008dd10001c0000000000000024dd1000010000000000000000000000e4be11000000000000000000000000003cdd10001d0000000000000024dd10000100000000000000000000005cdd100001000000000000000000000064dd100018000000000000007cdd10000600000000000000000000000cde100001000000000000000000000014de10001b0000000000000030de100003000000000000000000000078de100001000000000000000000000080de10001d00000000000000a0de1000020000000000000000000000d0de1000020000000000000000000000e0de10001200000000000000f4de100002000000000000000000000024df10000100000000000000000000002cdf10001600000000000000f4de100002000000000000000000000044df10000100000000000000000000004cdf1000080000000000000054df100002000000000000000000000084df10000100000000000000000000008cdf10000a00000000000000e4be110000000000000000000000000098df1000010000000000000000000000a0df10001c00000000000000bcdf100001000000000000000000000038dc1000010000000000000000000000d4df10001600000000000000ecdf100001000000000000000000000004e0100001000000000000006372656174655f6368616e6e656c000000000000fbe610000500000000000000c6a111000b00000000000000b6e010000c00000000000000969511000c0000000000000000e71000070000000000000007e7100012000000000000007d9c11000600000000000000d68b1100070000000000000093781100050000000000000019e710000c00000000000000fa7811000b0000000000000019e710000c0000000000000025e71000060000000000000019e710000c000000000000002be71000060000000000000019e710000c0000000000000031e71000120000000000000043e7100018000000e5e61000160000007472616e736665725f6368616e6e656c5f6f776e6572736869700000000000008de410000a0000000000000043ca10000c00000000000000dce610000900000000000000c6a111000b00000000000000c5e110001000000000000000969511000c00000090e5100035000000e4be110000000000c5e5100037000000fce51000430000003fe610009d0000007570646174655f6368616e6e656c5f61735f6f776e657200000000008de410000a0000000000000043ca10000c0000000000000001e510000a000000000000000be510000f000000000000001ae51000090000000000000023e51000140000000000000037e510000f0000000000000023e51000140000000000000046e510000a0000000000000023e51000140000000000000050e510000a0000000000000023e5100014000000000000005ae51000160000000000000070e5100020000000d3e410002e0000007570646174655f6368616e6e656c5f61735f6375726174696f6e5f6163746f720000000064e410000e0000000000000072e410001b000000000000008de410000a0000000000000043ca10000c0000000000000097e410000c00000000000000177311000c00000000000000a3e410001300000000000000b6e410001d00000041e41000230000006164645f63757261746f725f6f70656e696e670000000000d8e310000b00000000000000e3e310002900000000000000044211000a000000000000000ce4100035000000000000004ae210001300000000000000d68b110007000000b5e31000230000006163636570745f63757261746f725f6170706c69636174696f6e730000000000f1e110001200000000000000e2c810001300000072e3100043000000626567696e5f63757261746f725f6170706c6963616e745f726576696577000033e310003f00000066696c6c5f63757261746f725f6f70656e696e6700000000f1e110001200000000000000e2c810001300000000000000afe210002200000000000000d1e210001a00000000000000ebe210000d00000000000000f8e210003b00000096e210001900000077697468647261775f63757261746f725f6170706c69636174696f6e0000000080e21000160000000000000092c91000170000007465726d696e6174655f63757261746f725f6170706c69636174696f6e0000005de21000230000006170706c795f6f6e5f63757261746f725f6f70656e696e670000000000ae11000900000000000000c6a111000b00000000000000f1e110001200000000000000e2c810001300000000000000b6e010000c00000000000000969511000c0000000000000003e21000160000000000000019e2100014000000000000002de210001d0000000000000019e2100014000000000000004ae210001300000000000000d68b110007000000d5e110001c0000007570646174655f63757261746f725f726f6c655f6163636f756e74000000000000ae11000900000000000000c6a111000b0000000000000006e110000a00000000000000fbca10000c00000000000000c5e110001000000000000000969511000c0000008be110003a0000007570646174655f63757261746f725f7265776172645f6163636f756e740000000000000006e110000a00000000000000fbca10000c0000000000000079e110001200000000000000969511000c0000001ee110003b00000059e11000200000006c656176655f63757261746f725f726f6c6500000000000006e110000a00000000000000fbca10000c0000000000000010e110000e00000000000000d68b110007000000e8e010001e0000007465726d696e6174655f63757261746f725f726f6c650000c2e01000260000007365745f6c65616400000000b0e010000600000000000000c6a111000b00000000000000b6e010000c00000000000000969511000c00000080e0100030000000756e7365745f6c656164000061e010001f0000007365745f6368616e6e656c5f6372656174696f6e5f656e61626c6564000000005ae010000700000000000000a58e110004000000696e6372656173655f6d696e745f636170616369747900000000000032e01000130000000000000045e01000150000000ce01000260000002041646420746f206361706163697479206f662063757272656e74206163697665206d696e746164646974696f6e616c5f63617061636974796d696e74696e673a3a42616c616e63654f663c543e656e61626c6564204576696374207468652063757272656e746c7920756e736574206c65616420496e74726f647563652061206c656164207768656e206f6e65206973206e6f742063757272656e746c79207365742e6d656d626572726f6c655f6163636f756e74204c6561642063616e207465726d696e61746520616e64206163746976652063757261746f7220416e206163746976652063757261746f72206c656176657320726f6c6563757261746f725f6964726174696f6e616c655f7465787420416e206163746976652063757261746f722063616e207570646174652074686520726577617264206163636f756e74206173736f6369617465642077697468206120736574207265776172642072656c6174696f6e736869702e6e65775f7265776172645f6163636f756e7420416e206163746976652063757261746f722063616e2075706461746520746865206173736f63696174656420726f6c65206163636f756e742e6e65775f726f6c655f6163636f756e74204170706c79206f6e20612063757261746f72206f70656e696e672e63757261746f725f6f70656e696e675f69646f70745f726f6c655f7374616b655f62616c616e63654f7074696f6e3c42616c616e63654f663c543e3e6f70745f6170706c69636174696f6e5f7374616b655f62616c616e636568756d616e5f7265616461626c655f74657874204c656164207465726d696e6174652063757261746f72206170706c69636174696f6e63757261746f725f6170706c69636174696f6e5f69642046696c6c206f70656e696e6720666f722063757261746f727375636365737366756c5f63757261746f725f6170706c69636174696f6e5f69647343757261746f724170706c69636174696f6e49645365743c543e7265776172645f706f6c6963794f7074696f6e3c526577617264506f6c6963793c6d696e74696e673a3a42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e3e20426567696e20726576696577696e672c20616e64207468657265666f7265206e6f7420616363657074696e67206e6577206170706c69636174696f6e732e20426567696e20616363657074696e672063757261746f72206170706c69636174696f6e7320746f20616e206f70656e696e672074686174206973206163746976652e2041646420616e206f70656e696e6720666f7220612063757261746f7220726f6c652e61637469766174655f6174686972696e673a3a41637469766174654f70656e696e6741743c543a3a426c6f636b4e756d6265723e4f70656e696e67506f6c696379436f6d6d69746d656e743c543a3a426c6f636b4e756d6265722c2042616c616e63654f663c543e3e20557064617465206368616e6e656c2061732061206375726174696f6e206163746f726375726174696f6e5f6163746f724375726174696f6e4163746f723c43757261746f7249643c543e3e6368616e6e656c5f69646e65775f76657269666965646e65775f6375726174696f6e5f7374617475734f7074696f6e3c4368616e6e656c4375726174696f6e5374617475733e204368616e6e656c206f776e6572207570646174657320736f6d65206368616e6e656c2070726f706572746965736e65775f68616e646c654f7074696f6e3c5665633c75383e3e6e65775f7469746c654f7074696f6e3c4f7074696f6e616c546578743e6e65775f6465736372697074696f6e6e65775f6176617461726e65775f62616e6e65726e65775f7075626c69636174696f6e5f7374617475734f7074696f6e3c4368616e6e656c5075626c69636174696f6e5374617475733e20416e206f776e6572207472616e7366657273206368616e6e656c206f776e65727368697020746f2061206e6577206f776e65722e204e6f74696365207468617420776f726b696e672067726f7570207061727469636970616e74732063616e6e6f7420646f20746869732e204e6f7469636520746861742063656e736f726564206f7220756e6c6973746564206368616e6e656c206d6179207374696c6c206265207472616e736665727265642e204e6f746963652074686174207472616e73666572732061726520756e696c61746572616c2c20736f206e6577206f776e65722063616e6e6f7420626c6f636b2e2054686973206d61792062652070726f626c656d617469633a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f6973737565732f39356e65775f6f776e6572204372656174652061206e6577206368616e6e656c2e6f776e6572636f6e74656e744368616e6e656c436f6e74656e74547970654f7074696f6e616c5465787461766174617262616e6e65727075626c69636174696f6e5f7374617475734368616e6e656c5075626c69636174696f6e5374617475730000000000e0e710000600000000000000e8e71000020000000000000000000000f8e7100002000000000000000000000008e8100005000000000000002c44110002000000000000000000000010e8100001000000000000000000000018e810001a000000000000008cbb110001000000000000000000000034e8100002000000000000005265776172640000c044110007000000c044110007000000e6e81000540000003ae9100023000000536c6173680000009de81000490000004f6c64536c617368696e675265706f7274446973636172646564000044e81000470000008be810001200000020416e206f6c6420736c617368696e67207265706f72742066726f6d2061207072696f72206572612077617320646973636172646564206265636175736520697420636f756c64206e6f742062652070726f6365737365642e204f6e652076616c696461746f722028616e6420697473206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e20416c6c2076616c696461746f72732068617665206265656e207265776172646564206279207468652066697273742062616c616e63653b20746865207365636f6e64206973207468652072656d61696e6465722066726f6d20746865206d6178696d756d20616d6f756e74206f66207265776172642e5374616b696e672043757272656e744572615374617274617373657274696f6e206661696c65643a20543a3a5374616b6548616e646c657250726f76696465723a3a7374616b696e6728292e7374616b655f657869737473287374616b655f6964297374616b65204d55535420626520696e20746865207374616b65642073746174652e5374616b696e67204e6f6d696e61746f727368656164206f66205374616b696e67204e6f6d696e61746f7273486972696e67204170706c69636174696f6e496442795374616b696e67496468656164206f6620486972696e67204170706c69636174696f6e496442795374616b696e6749645374616b696e672056616c696461746f727368656164206f66205374616b696e672056616c696461746f72735374616b696e67205374616b6572735374616b696e67204c6564676572486972696e67204170706c69636174696f6e4279496468656164206f6620486972696e67204170706c69636174696f6e42794964486972696e67204f70656e696e674279496468656164206f6620486972696e67204f70656e696e67427949644d6967726174696f6e205370656356657273696f6e0000000000000040eb1000080000000000000048eb1000020000000000000000000000e4be110000000000000000004d69677261746564f82311000b000000aba31100030000005374616b696e6720426f6e6465645374616b696e672050617965655374616b696e672043757272656e74456c65637465640000000000000020ee1000040000000000000024ee10000300000000000000000000006cee10000f0000000000000000000000e4ee10000a00000000000000f0ee100001000000000000000000000008ef10000e000000000000000000000078ef1000060000000000000080ef100001000000000000000000000098ef100017000000000000000000000050f010001100000000000000e4be110000000000000000000000000064f01000100000000000000000000000e4f010000800000000000000ecf0100001000000000000000000000004f110000b00000000000000000000005cf11000080000000000000064f110000100000000000000000000007cf110000b0000000000000000000000d4f110000500000000000000e4be1100000000000000000000000000dcf110000b000000000000000000000034f21000090000000000000040f2100001000000000000000000000058f210000b0000000000000000000000b0f210000e00000000000000c0f21000010000000000000000000000d8f210000b000000000000000000000030f31000130000000000000044f310000100000000000000000000005cf3100001000000000000000000000064f310000d00000000000000e4be110000000000000000000000000074f310000500000000000000000000009cf310000d00000000000000e4be1100000000000000000000000000acf31000060000000000000000000000dcf310001100000000000000f0f3100001000000000000000000000008f4100001000000000000000000000010f410000d0000000000000020f4100001000000000000000000000038f4100001000000000000000000000040f410001400000000000000e4be110000000000000000000000000054f410000500000000000000626f6e64000000007bf710000a00000000000000b14a11002300000000000000d84a11000500000000000000caff1000150000000000000008f8100005000000000000000df810001100000013011100590000006c01110021000000e4be1100000000008d0111004c000000e4be110000000000d901110049000000e4be110000000000778b11000b0000002202110035000000a92c110008000000570211001a000000e4be110000000000710211005b000000cc02110049000000ba8b11000c000000626f6e645f6578747261000000000000050111000e00000000000000caff100015000000dfff100059000000380011000d000000e4be11000000000045001100540000009900110059000000f200110013000000e4be11000000000094f6100055000000e4be110000000000778b11000b000000e9f610003a000000a92c110008000000b0ff100010000000ba8b11000c000000756e626f6e64000000000000d84a11000500000000000000caff100015000000dffb10005500000034fc10004000000074fc100049000000e4be110000000000bdfc1000520000000ffd100030000000e4be1100000000003ffd10004f0000008efd10004f000000ddfd10003f000000e4be110000000000b3f7100055000000e4be1100000000001cfe100026000000e4be110000000000778b11000b00000042fe10005000000023f710002600000092fe100059000000ebfe10005c00000047ff100069000000b0ff100010000000c0ff10000a00000077697468647261775f756e626f6e646564000000d8f910004b000000e4be11000000000023fa10004d00000070fa100013000000e4be110000000000b3f7100055000000e4be11000000000083fa10001b000000e4be110000000000778b11000b0000009efa100055000000f3fa10005100000044fb10003d00000081fb10005e00000049f7100032000000ba8b11000c00000076616c696461746500000000b7f910000500000000000000bcf910001c0000007df910003a000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000e9f610003a00000023f710002600000049f7100032000000ba8b11000c0000006e6f6d696e617465000000004ef91000070000000000000055f910002800000065f8100044000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000a9f8100049000000f2f810002600000018f9100036000000ba8b11000c0000006368696c6c0000001ef8100032000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000e9f610003a00000050f810001500000049f7100032000000ba8b11000c0000007365745f70617965650000000000000008f8100005000000000000000df810001100000085f710002e000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000e9f610003a00000023f710002600000049f7100032000000ba8b11000c0000007365745f636f6e74726f6c6c65720000000000007bf710000a00000000000000b14a11002300000039f6100024000000e4be1100000000005df6100037000000e4be11000000000094f6100055000000e4be110000000000778b11000b000000e9f610003a00000023f710002600000049f7100032000000ba8b11000c0000007365745f76616c696461746f725f636f756e7400000000009d2d110003000000000000002df610000c0000000df6100020000000666f7263655f6e6f5f65726173000000e1f510002c000000e4be110000000000778b11000b000000d1f5100010000000ba8b11000c000000666f7263655f6e65775f65726100000056f5100053000000a9f5100028000000e4be110000000000778b11000b000000d1f5100010000000ba8b11000c0000007365745f696e76756c6e657261626c6573000000000000004cf510000a000000000000001c3611001100000019f5100033000000666f7263655f756e7374616b650000000000000014f510000500000000000000969511000c000000d1f4100043000000666f7263655f6e65775f6572615f616c776179737cf4100041000000e4be110000000000778b11000b000000bdf4100014000000ba8b11000c00000020466f72636520746865726520746f2062652061206e6577206572612061742074686520656e64206f662073657373696f6e7320696e646566696e6974656c792e202d204f6e652073746f7261676520777269746520466f72636520612063757272656e74207374616b657220746f206265636f6d6520636f6d706c6574656c7920756e7374616b65642c20696d6d6564696174656c792e737461736820536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f727320466f72636520746865726520746f2062652061206e6577206572612061742074686520656e64206f6620746865206e6578742073657373696f6e2e20416674657220746869732c2069742077696c6c20626520726573657420746f206e6f726d616c20286e6f6e2d666f7263656429206265686176696f75722e202d204e6f20617267756d656e74732e20466f72636520746865726520746f206265206e6f206e6577206572617320696e646566696e6974656c792e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e202852652d297365742074686520636f6e74726f6c6c6572206f6620612073746173682e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f206279207468652073746173682c206e6f742074686520636f6e74726f6c6c65722e202d20496e646570656e64656e74206f662074686520617267756d656e74732e20496e7369676e69666963616e7420636f6d706c65786974792e202d20436f6e7461696e732061206c696d69746564206e756d626572206f662072656164732e202d2057726974657320617265206c696d6974656420746f2074686520606f726967696e60206163636f756e74206b65792e636f6e74726f6c6c6572202852652d2973657420746865207061796d656e742074617267657420666f72206120636f6e74726f6c6c65722e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2062792074686520636f6e74726f6c6c65722c206e6f74207468652073746173682e706179656552657761726444657374696e6174696f6e204465636c617265206e6f2064657369726520746f206569746865722076616c6964617465206f72206e6f6d696e6174652e202d20436f6e7461696e73206f6e6520726561642e204465636c617265207468652064657369726520746f206e6f6d696e6174652060746172676574736020666f7220746865206f726967696e20636f6e74726f6c6c65722e202d20546865207472616e73616374696f6e277320636f6d706c65786974792069732070726f706f7274696f6e616c20746f207468652073697a65206f66206074617267657473602c2077686963682069732063617070656420617420604d41585f4e4f4d494e4154494f4e53602e202d20426f74682074686520726561647320616e642077726974657320666f6c6c6f7720612073696d696c6172207061747465726e2e746172676574735665633c3c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f757263653e204465636c617265207468652064657369726520746f2076616c696461746520666f7220746865206f726967696e20636f6e74726f6c6c65722e707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2052656d6f766520616e7920756e6c6f636b6564206368756e6b732066726f6d207468652060756e6c6f636b696e67602071756575652066726f6d206f7572206d616e6167656d656e742e205468697320657373656e7469616c6c7920667265657320757020746861742062616c616e636520746f206265207573656420627920746865207374617368206163636f756e7420746f20646f2077686174657665722069742077616e74732e2053656520616c736f205b6043616c6c3a3a756e626f6e64605d2e202d20436f756c6420626520646570656e64656e74206f6e2074686520606f726967696e6020617267756d656e7420616e6420686f77206d7563682060756e6c6f636b696e6760206368756e6b732065786973742e2020497420696d706c6965732060636f6e736f6c69646174655f756e6c6f636b656460207768696368206c6f6f7073206f76657220604c65646765722e756e6c6f636b696e67602c2077686963682069732020696e6469726563746c7920757365722d636f6e74726f6c6c65642e20536565205b60756e626f6e64605d20666f72206d6f72652064657461696c2e202d20436f6e7461696e732061206c696d69746564206e756d626572206f662072656164732c20796574207468652073697a65206f6620776869636820636f756c64206265206c61726765206261736564206f6e20606c6564676572602e205363686564756c65206120706f7274696f6e206f662074686520737461736820746f20626520756e6c6f636b656420726561647920666f72207472616e73666572206f75742061667465722074686520626f6e6420706572696f6420656e64732e2049662074686973206c656176657320616e20616d6f756e74206163746976656c7920626f6e646564206c657373207468616e20543a3a43757272656e63793a3a6d696e696d756d5f62616c616e636528292c207468656e20697420697320696e6372656173656420746f207468652066756c6c20616d6f756e742e204f6e63652074686520756e6c6f636b20706572696f6420697320646f6e652c20796f752063616e2063616c6c206077697468647261775f756e626f6e6465646020746f2061637475616c6c79206d6f7665207468652066756e6473206f7574206f66206d616e6167656d656e7420726561647920666f72207472616e736665722e204e6f206d6f7265207468616e2061206c696d69746564206e756d626572206f6620756e6c6f636b696e67206368756e6b73202873656520604d41585f554e4c4f434b494e475f4348554e4b5360292063616e20636f2d657869737473206174207468652073616d652074696d652e20496e207468617420636173652c205b6043616c6c3a3a77697468647261775f756e626f6e646564605d206e65656420746f2062652063616c6c656420666972737420746f2072656d6f766520736f6d65206f6620746865206368756e6b732028696620706f737369626c65292e2053656520616c736f205b6043616c6c3a3a77697468647261775f756e626f6e646564605d2e202d20496e646570656e64656e74206f662074686520617267756d656e74732e204c696d697465642062757420706f74656e7469616c6c79206578706c6f697461626c6520636f6d706c65786974792e202d20456163682063616c6c20287265717569726573207468652072656d61696e646572206f662074686520626f6e6465642062616c616e636520746f2062652061626f766520606d696e696d756d5f62616c616e6365602920202077696c6c2063617573652061206e657720656e74727920746f20626520696e73657274656420696e746f206120766563746f722028604c65646765722e756e6c6f636b696e676029206b65707420696e2073746f726167652e202020546865206f6e6c792077617920746f20636c65616e207468652061666f72656d656e74696f6e65642073746f72616765206974656d20697320616c736f20757365722d636f6e74726f6c6c656420766961206077697468647261775f756e626f6e646564602e202d204f6e6520444220656e7472792e203c2f7765696768743e436f6d706163743c42616c616e63654f663c543e3e2041646420736f6d6520657874726120616d6f756e742074686174206861766520617070656172656420696e207468652073746173682060667265655f62616c616e63656020696e746f207468652062616c616e636520757020666f72207374616b696e672e20557365207468697320696620746865726520617265206164646974696f6e616c2066756e647320696e20796f7572207374617368206163636f756e74207468617420796f75207769736820746f20626f6e642e20556e6c696b65205b60626f6e64605d206f72205b60756e626f6e64605d20746869732066756e6374696f6e20646f6573206e6f7420696d706f736520616e79206c696d69746174696f6e206f6e2074686520616d6f756e7420746861742063616e2062652061646465642e6d61785f6164646974696f6e616c2054616b6520746865206f726967696e206163636f756e74206173206120737461736820616e64206c6f636b207570206076616c756560206f66206974732062616c616e63652e2060636f6e74726f6c6c6572602077696c6c20626520746865206163636f756e74207468617420636f6e74726f6c732069742e206076616c756560206d757374206265206d6f7265207468616e2074686520606d696e696d756d5f62616c616e636560207370656369666965642062792060543a3a43757272656e6379602e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f20627920746865207374617368206163636f756e742e202d20496e646570656e64656e74206f662074686520617267756d656e74732e204d6f64657261746520636f6d706c65786974792e202d20546872656520657874726120444220656e74726965732e204e4f54453a2054776f206f66207468652073746f726167652077726974657320286053656c663a3a626f6e646564602c206053656c663a3a7061796565602920617265205f6e657665725f20636c65616e656420756e6c6573732074686520606f726967696e602066616c6c732062656c6f77205f6578697374656e7469616c206465706f7369745f20616e6420676574732072656d6f76656420617320647573742e5374616b696e6700000000a40911000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100880b11000000000000000000b409110001000000000000000100000000000000bc091100150000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100d40911000000000000000000e409110001000000000000000100000000000000ec0911000d00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100ec0c11000000000000000000fc09110003000000000000000100000000000000140a1100060000000101000000000000969511000c00000000000000969511000c00000000000000000000000000000000000000e4be1100540a110000000000000000001c0a110001000000000000000000000000000000240a1100060000000101000000000000969511000c000000000000002a0a11002900000000000000000000000000000000000000e4be1100540a11000000000000000000640a1100010000000000000000000000000000006c0a1100050000000101000000000000969511000c000000000000000df810001100000000000000000000000000000000000000e4be1100740a11000000000000000000840a1100010000000000000001000000000000004c8e11000a0000000101010000000000969511000c00000000000000bcf910001c00000000000000000000000000000000000000e4be11008c0a110000000000000000009c0a110001000000000000000100000000000000a40a11000a0000000101010000000000969511000c000000000000001c3611001100000000000000000000000000000000000000e4be1100ec0c11000000000000000000b00a110001000000000000000100000000000000b80a1100070000000101000000000000969511000c00000000000000bf0a11002400000000000000000000000000000000000000e4be1100e40a11000000000000000000f40a110004000000000000000100000000000000140b11000e00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100ec0c11000000000000000000240b1100010000000000000001000000000000002c0b11000a0000000000000000000000360b11000800000000000000000000000000000000000000000000000000000000000000e4be1100880b11000000000000000000400b110001000000000000000100000000000000480b11000f0000000000000000000000570b11000b00000000000000000000000000000000000000000000000000000000000000e4be11005c1911000000000000000000640b1100010000000000000001000000000000006c0b11001b00000000000000000000001bbc11000c00000000000000000000000000000000000000000000000000000000000000e4be1100880b11000000000000000000980b110001000000000000000100000000000000a00b1100160000000000000000000000b60b11000900000000000000000000000000000000000000000000000000000000000000e4be1100c00b11000000000000000000d00b110001000000000000000100000000000000d80b1100090000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100e40b11000000000000000000f40b1100030000000000000001000000000000000c0c1100080000000000000000000000140c11000700000000000000000000000000000000000000000000000000000000000000e4be11001c0c110000000000000000002c0c110001000000000000000100000000000000340c1100130000000000000000000000470c11000700000000000000000000000000000000000000000000000000000000000000e4be1100500c11000000000000000000600c110003000000000000000100000000000000780c11000a0000000000000000000000820c11001d00000000000000000000000000000000000000000000000000000000000000e4be1100ec0c11000000000000000000a00c110001000000000000000100000000000000a80c11000f0000000101000000000000360b11000800000000000000b70c11003200000000000000000000000000000000000000e4be1100ec0c11000000000000000000fc0c110001000000000000000100000056616c696461746f72436f756e740000f61211002a0000004d696e696d756d56616c696461746f72436f756e74000000110000000000000001000000a8000000a612110050000000496e76756c6e657261626c6573000000d21111005600000028121100530000007b1211002b000000426f6e646564000092111100400000004c65646765725374616b696e674c65646765723c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e001100000000000000010000002100000041111100510000005061796565000000110000000000000001000000210000000811110039000000110000000000000001000000a9000000b7101100510000004e6f6d696e61746f727300005e101100590000005374616b6572734578706f737572653c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e00110000000000000001000000aa000000a10f110053000000f40f110046000000e4be1100000000003a1011002400000043757272656e74456c65637465640000620f11003f00000043757272656e74457261457261496e64657800004b0f11001700000043757272656e7445726153746172744d6f6d656e744f663c543e00002d0f11001e00000043757272656e74457261537461727453657373696f6e496e646578001100000000000000010000002c000000f90e11003400000043757272656e74457261506f696e74734561726e6564457261506f696e747300110000000000000001000000ab000000b60e110043000000536c6f745374616b65000000110000000000000001000000340000003a0e11004c000000e4be110000000000860e110030000000466f726365457261466f7263696e670011000000000000000100000021000000f30d110047000000536c6173685265776172644672616374696f6e50657262696c6c00001100000000000000010000002c0000007c0d11003e000000e4be110000000000ba0d110039000000426f6e646564457261735665633c28457261496e6465782c2053657373696f6e496e646578293e00330d110049000000457261536c6173684a6f75726e616c5665633c536c6173684a6f75726e616c456e7472793c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e3e00000011000000000000000100000028000000040d11002f00000020416c6c20736c617368657320746861742068617665206f6363757272656420696e206120676976656e206572612e2041206d617070696e672066726f6d207374696c6c2d626f6e646564206572617320746f207468652066697273742073657373696f6e20696e646578206f662074686174206572612e205468652070657263656e74616765206f662074686520736c617368207468617420697320646973747269627574656420746f207265706f72746572732e205468652072657374206f662074686520736c61736865642076616c75652069732068616e646c6564206279207468652060536c617368602e205472756520696620746865206e6578742073657373696f6e206368616e67652077696c6c2062652061206e657720657261207265676172646c657373206f6620696e6465782e2054686520616d6f756e74206f662062616c616e6365206163746976656c79206174207374616b6520666f7220656163682076616c696461746f7220736c6f742c2063757272656e746c792e2054686973206973207573656420746f20646572697665207265776172647320616e642070756e6973686d656e74732e205265776172647320666f72207468652063757272656e74206572612e205573696e6720696e6469636573206f662063757272656e7420656c6563746564207365742e205468652073657373696f6e20696e646578206174207768696368207468652063757272656e742065726120737461727465642e20546865207374617274206f66207468652063757272656e74206572612e205468652063757272656e742065726120696e6465782e205468652063757272656e746c7920656c65637465642076616c696461746f7220736574206b65796564206279207374617368206163636f756e742049442e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e20596f752063616e27742069746572617465207468726f7567682076616c696461746f727320686572652c2062757420796f752063616e2066696e64207468656d20696e207468652053657373696f6e206d6f64756c652e2054686973206973206b6579656420627920746865207374617368206163636f756e742e20546865206d61702066726f6d206e6f6d696e61746f72207374617368206b657920746f2074686520736574206f66207374617368206b657973206f6620616c6c2076616c696461746f727320746f206e6f6d696e6174652e20546865206d61702066726f6d202877616e6e616265292076616c696461746f72207374617368206b657920746f2074686520707265666572656e636573206f6620746861742076616c696461746f722e2057686572652074686520726577617264207061796d656e742073686f756c64206265206d6164652e204b657965642062792073746173682e204d61702066726f6d20616c6c2028756e6c6f636b6564292022636f6e74726f6c6c657222206163636f756e747320746f2074686520696e666f20726567617264696e6720746865207374616b696e672e204d61702066726f6d20616c6c206c6f636b65642022737461736822206163636f756e747320746f2074686520636f6e74726f6c6c6572206163636f756e742e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c79206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c697a6520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e00000000901311000e000000000000001bbc11000c00000000000000e4be1100a01311000000000000000000b0131100010000000000000000000000b81311000f00000000000000360b11000800000000000000e4be1100c81311000000000000000000d8131100010000000000000053657373696f6e735065724572610000110000000000000001000000ac000000191411001c000000426f6e64696e674475726174696f6e00110000000000000001000000ad000000e013110039000000204e756d626572206f6620657261732074686174207374616b65642066756e6473206d7573742072656d61696e20626f6e64656420666f722e204e756d626572206f662073657373696f6e7320706572206572612e5374616b696e6720536c6f745374616b655374616b696e6720457261536c6173684a6f75726e616c486972696e67204e6578744f70656e696e674964000000051511002d000000d5bd11000c0000000415110001000000486972696e67204e6578744170706c69636174696f6e4964617373657274696f6e206661696c65643a20213c4170706c69636174696f6e496442795374616b696e6749643c543e3e3a3a657869737473286e65775f7374616b655f6964290400a8bd11002d000000d5bd11000c000000041511000100000060617373657274696f6e206661696c65643a2060286c65667420213d20726967687429600a20206c6566743a2060617373657274696f6e206661696c65643a20543a3a5374616b6548616e646c657250726f76696465723a3a7374616b696e6728292e696e6974696174655f756e7374616b696e6728267374616b655f69642c0a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020206f70745f756e7374616b696e675f706572696f64292e69735f6f6b28296f70656e696e67207374616765206d757374206265202741637469766527617373657274696f6e206661696c65643a202a6163746976655f6170706c69636174696f6e5f636f756e74203e2030606e756d6265725f6f665f6163746976655f6170706c69636174696f6e736020286c656e677468206f6620606163746976655f6170706c69636174696f6e735f697465726029203d3d2030486972696e67000000000000301811000b00000001010100000000003b1811000c00000000000000471811003700000000000000000000000000000000000000e4be11008018110000000000000000009018110001000000000000000100000000000000981811000d00000000000000000000003b1811000c00000000000000000000000000000000000000000000000000000000000000e4be11005c1911000000000000000000a818110001000000000000000100000000000000b01811000f0000000101010000000000bf1811001000000000000000cf1811003500000000000000000000000000000000000000e4be110004191100000000000000000014191100010000000000000001000000000000001c191100110000000000000000000000bf1811001000000000000000000000000000000000000000000000000000000000000000e4be11005c1911000000000000000000301911000100000000000000010000000000000038191100180000000101010000000000501911000a00000000000000bf1811001000000000000000000000000000000000000000e4be11005c19110000000000000000006c1911000100000000000000010000004f70656e696e6742794964543a3a4f70656e696e6749644f70656e696e673c42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c20543a3a4170706c69636174696f6e49643e0000110000000000000001000000ae000000441a11000a0000004e6578744f70656e696e6749640000001b1a1100290000004170706c69636174696f6e42794964543a3a4170706c69636174696f6e49644170706c69636174696f6e3c543a3a4f70656e696e6749642c20543a3a426c6f636b4e756d6265722c20543a3a5374616b6549643e110000000000000001000000af0000000e1a11000d0000004e6578744170706c69636174696f6e4964000000e11911002d0000004170706c69636174696f6e496442795374616b696e674964543a3a5374616b654964000011000000000000000100000026000000741911006d00000020496e7465726e616c20707572706f7365206f6620676976656e207374616b652c20692e652e2066726f2077686174206170706c69636174696f6e2c20616e64207768657468657220666f722074686520726f6c65206f7220666f7220746865206170706c69636174696f6e2e204964656e74696669657220666f72206e657874206170706c69636174696f6e20746f2062652061646465642e204170706c69636174696f6e73204964656e74696669657220666f72206e657874206f70656e696e6720746f2062652061646465642e204f70656e696e67732e617373657274696f6e206661696c65643a203c4170706c69636174696f6e427949643c543e3e3a3a657869737473286170706c69636174696f6e5f6964295374616b696e6720496e76756c6e657261626c6573636f6e74726f6c6c657220616c726561647920706169726564737461736820616c726561647920626f6e6465646e6f7420612073746173686e6f74206120636f6e74726f6c6c657263616e206e6f74207363686564756c65206d6f726520756e6c6f636b206368756e6b73746172676574732063616e6e6f7420626520656d7074794d6967726174696f6e00000000841b11000b0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100901b11000000000000000000a01b11000200000000000000000000005370656356657273696f6e0011000000000000000100000021000000b01b110058000000081c110046000000205265636f72647320617420776861742072756e74696d6520737065632076657273696f6e207468652073746f72652077617320696e697469616c697a65642e205468697320616c6c6f7773207468652072756e74696d6520746f206b6e6f77207768656e20746f2072756e20696e697469616c697a6520636f64652069662069742077617320696e7374616c6c656420617320616e207570646174652e73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c69642074797065000000941c11006b00000019000000090000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f737570706f72742f7372632f73746f726167652f756e6861736865642e727371202f2028712f246d617829203c202832202a20246d6178292e204d6163726f2070726576656e747320616e792074797065206265696e672063726561746564207468617420646f6573206e6f74207361746973667920746869733b2071656400701d11006b0000005d000000270000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d61726974686d657469632f7372632f7065725f7468696e67732e727300701d11006b0000006400000027000000701d11006b0000006f0000002100000000000000617474656d707420746f20646976696465206279207a65726f4661696c656420746f20636f6e76657274000000000000b01e11001100000000000000c41e1100010000000000000000000000cc1e1100010000000000000000000000d41e11000700000000000000e4be1100000000000000000000000000dc1e1100010000000000000000000000e41e11000b00000000000000f01e1100010000000000000000000000f81e110001000000000000004865617274626561745265636569766564000000c91f11000b000000991f110030000000416c6c476f6f6400641f110035000000536f6d654f66666c696e65004c1f110018000000001f11004c0000002041742074686520656e64206f66207468652073657373696f6e2c206174206c65617374206f6e63652076616c696461746f722077617320666f756e6420746f206265206f66666c696e652e5665633c4964656e74696669636174696f6e5475706c653e2041742074686520656e64206f66207468652073657373696f6e2c206e6f206f6666656e63652077617320636f6d6d69747465642e2041206e657720686561727462656174207761732072656365697665642066726f6d2060417574686f72697479496460417574686f7269747949645375646f204b6579496d4f6e6c696e6520476f737369704174496d4f6e6c696e65204b6579730000110000000000000001000000150000001100000008000000040000002f00000000000000a02011000500000000000000a8201100010000000000000000000000b0201100010000000000000000000000b82011000a0000000000000054441100010000000000000000000000c4201100010000000000000000000000cc2011000a00000000000000a8201100010000000000000000000000b020110001000000000000005375646964000000a58e11000400000012211100180000004b65794368616e6765640000d62011003c0000005375646f4173446f6e6520546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e2041207375646f206a75737420746f6f6b20706c6163652e436f756e63696c456c656374696f6e204175746f53746172740000000000282311000f00000000000000e4be11000000000000000000000000003823110001000000000000000000000040231100110000000000000054231100010000000000000000000000e4be11000000000000000000000000005c2311000f00000000000000e4be1100000000000000000000000000e4be11000000000000000000000000006b2311000d00000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000782311000b00000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000832311001000000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000932311000e00000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000a12311000e00000000000000b0231100010000000000000000000000e4be1100000000000000000000000000b8231100070000000000000054441100010000000000000000000000e4be1100000000000000000000000000bf2311000500000000000000c4231100020000000000000000000000e4be1100000000000000000000000000d42311000800000000000000dc231100030000000000000000000000e4be11000000000000000000456c656374696f6e53746172746564000324110017000000416e6e6f756e63696e6753746172746564000000aba3110003000000416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c656374656400f82311000b0000004170706c696564566f746564d289110009000000f42311000400000052657665616c6564d289110009000000f423110004000000d28911000900000048617368426c6f636b4e756d6265722041206e657720656c656374696f6e2073746172746564000000000000482411000b0000000000000054441100010000000000000000000000e4be110000000000000000004d656d6f5570646174656400110000000400000004000000b00000005374616b654e6f74466f756e6453657373696f6e20486973746f726963616c53657373696f6e73436f756e63696c456c656374696f6e204170706c6963616e745374616b6573496d4f6e6c696e6520417574686f726564426c6f636b7373726d6c2f696d2d6f6e6c696e652d776f726b65722d73746174757300000066251100080000006e25110020000000696d6f6e6c696e6573726d6c5f696d5f6f6e6c696e652f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f696d2d6f6e6c696e652f7372632f6c69622e72735b696e6465783a205d205265706f7274696e6720696d2d6f6e6c696e6520617420626c6f636b3a20000000000000bc2511000900000000000000c8251100020000000000000000000000e4be1100000000000000000068656172746265617400000000000000bc2511000900000000000000f82511001900000000000000112611000a000000000000001b2611002f0000004865617274626561743c543a3a426c6f636b4e756d6265723e5f7369676e61747572653c543a3a417574686f7269747949642061732052756e74696d654170705075626c69633e3a3a5369676e6174757265496d4f6e6c696e65000000000000b4271100080000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100f83511000000000000000000bc27110001000000000000000100000000000000c4271100040000000000000000000000c82711001300000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000dc27110001000000000000000100000000000000e42711001200000002010100000000001bbc11000c00000000000000f62711000900000000000000d68b11000700000000000000e4be11000028110000000000000000001028110002000000000000000000000000000000202811000e00000002010100000000001bbc11000c00000000000000308f11000e00000000000000aba311000300000000000000e4be1100f8351100000000000000000030281100020000000000000001000000476f73736970417447291100280000004b6579735665633c543a3a417574686f7269747949643e00132911003400000052656365697665644865617274626561747341757468496e6465780011000000000000000100000021000000b728110039000000f028110023000000417574686f726564426c6f636b7300004028110045000000852811003200000020466f7220656163682073657373696f6e20696e6465782c207765206b6565702061206d617070696e67206f662060543a3a56616c696461746f7249646020746f20746865206e756d626572206f6620626c6f636b7320617574686f7265642062792074686520676976656e20617574686f726974792e20466f7220656163682073657373696f6e20696e6465782c207765206b6565702061206d617070696e67206f66206041757468496e6465786020746f20606f6666636861696e3a3a4f70617175654e6574776f726b5374617465602e205468652063757272656e7420736574206f66206b6579732074686174206d61792069737375652061206865617274626561742e2054686520626c6f636b206e756d626572207768656e2077652073686f756c6420676f737369702e4572720000110000000400000004000000b10000004f6b0000110000000400000004000000b2000000110000000400000004000000b30000006f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b65794475706c696361746564206865617274626561742e4e6f6e206578697374656e74207075626c6963206b65792e00000000ac2a11000400000000000000b02a1100010000000000000000000000c82a11000a0000000000000000000000182b11000700000000000000202b1100010000000000000000000000382b1100090000000000000000000000802b11000700000000000000882b1100020000000000000000000000b82b11000b000000000000007375646f00000000172d110008000000000000001f2d110010000000a02d11004e000000e4be110000000000752c110034000000e4be110000000000778b11000b000000a92c110008000000b12c110019000000ca2c110018000000e22c110035000000ba8b11000c0000007365745f6b657900000000009d2d11000300000000000000b14a1100230000002f2d11005d000000e4be110000000000752c110034000000e4be110000000000778b11000b000000a92c110008000000b12c1100190000008c2d110011000000ba8b11000c0000007375646f5f617300000000009d4c11000300000000000000b14a11002300000000000000172d110008000000000000001f2d110010000000102c110054000000642c110011000000e4be110000000000752c110034000000e4be110000000000778b11000b000000a92c110008000000b12c110019000000ca2c110018000000e22c110035000000ba8b11000c0000002041757468656e7469636174657320746865207375646f206b657920616e64206469737061746368657320612066756e6374696f6e2063616c6c207769746820605369676e656460206f726967696e2066726f6d206120676976656e206163636f756e742e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2e202d204f2831292e202d204c696d697465642073746f726167652072656164732e202d204f6e6520444220777269746520286576656e74292e202d20556e6b6e6f776e20776569676874206f662064657269766174697665206070726f706f73616c6020657865637574696f6e2e70726f706f73616c426f783c543a3a50726f706f73616c3e2041757468656e74696361746573207468652063757272656e74207375646f206b657920616e6420736574732074686520676976656e204163636f756e7449642028606e6577602920617320746865206e6577207375646f206b65792e202d204f6e65204442206368616e67652e6e65772041757468656e7469636174657320746865207375646f206b657920616e64206469737061746368657320612066756e6374696f6e2063616c6c20776974682060526f6f7460206f726967696e2e5375646f0000000000004c2e1100030000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be1100502e11000000000000000000602e11000100000000000000010000004b657900110000000000000001000000b4000000682e1100210000002054686520604163636f756e74496460206f6620746865207375646f206b65792e436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f64436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e00000000000000a0351100090000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100ac3511000000000000000000e4be110000000000000000000100000000000000bc351100050000000000000000000000c13511001d00000000000000000000000000000000000000000000000000000000000000e4be1100e03511000000000000000000e4be110000000000000000000000000000000000f0351100050000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f83511000000000000000000e4be110000000000000000000100000000000000083611001400000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000e4be1100000000000000000001000000000000002d361100120000000101000000000000969511000c000000000000003f3611001f00000000000000000000000000000000000000e4be1100883611000000000000000000e4be1100000000000000000001000000000000005e3611000a00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000e4be110000000000000000000100000000000000683611000f0000000101000000000000969511000c00000000000000773611001000000000000000000000000000000000000000e4be1100883611000000000000000000e4be110000000000000000000100000000000000983611000b0000000000000000000000a33611000c00000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000e4be110000000000000000000100000000000000c0361100050000000101000000000000c53611000700000000000000cc3611004100000000000000000000000000000000000000e4be1100103711000000000000000000e4be11000000000000000000010000000000000020371100100000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11004c3711000000000000000000e4be110000000000000000000100000000000000303711000c0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11004c3711000000000000000000e4be1100000000000000000001000000000000003c3711000f0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11004c3711000000000000000000e4be1100000000000000000001000000000000005c3711000b0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100683711000000000000000000e4be110000000000000000000100000000000000783711000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100883711000000000000000000e4be110000000000000000000100000000000000983711000f0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100b43711000000000000000000e4be110000000000000000000100000000000000c43711000f0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100d43711000000000000000000e4be110000000000000000000100000000000000e43711000e0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100f43711000000000000000000e4be11000000000000000000010000004175746f5374617274000000110000000000000001000000b50000005374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e000011000000000000000100000021000000526f756e640000001100000000000000010000002c0000004578697374696e675374616b65486f6c646572735665633c543a3a4163636f756e7449643e5472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b6573456c656374696f6e5374616b653c543e001100000000000000010000008f000000436f6d6d69746d656e74735665633c543a3a486173683e0011000000000000000100000028000000566f746573543a3a486173685365616c6564566f74653c543a3a4163636f756e7449642c20456c656374696f6e5374616b653c543e2c20543a3a486173682c20543a3a4163636f756e7449643e000000110000000000000001000000b6000000416e6e6f756e63696e67506572696f64566f74696e67506572696f6452657665616c696e67506572696f64001100000000000000010000009a000000436f756e63696c53697a6500110000000000000001000000b700000043616e6469646163794c696d69740000110000000000000001000000b80000004d696e436f756e63696c5374616b6542616c616e63654f663c543e00110000000000000001000000960000004e65775465726d4475726174696f6e00110000000000000001000000b90000004d696e566f74696e675374616b65000011000000000000000100000098000000436f756e63696c456c656374696f6e20436f756e63696c53697a65436f756e63696c456c656374696f6e2043616e6469646163794c696d69740000001f3c11003b000000d002000001000000656c656374696f6e206e6f742072756e6e696e676d696e696d756d207374616b65206d7573742062652070726f76696465644f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167650000001f3c11003b000000e202000027000000436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b6521001f3c11003b000000f902000023000000436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74766f74696e67207374616b6520746f6f206c6f774f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e672073746167651f3c11003b0000000c03000026000000636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f77656473616c7420746f6f206c61726765656c656374696f6e206e6f7420696e2072657665616c696e67207374616765436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e6d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f707065642f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e7273000000000000483f11000500000000000000503f1100010000000000000000000000e4be1100000000000000000000000000683f110004000000000000006c3f1100020000000000000000000000e4be11000000000000000000000000009c3f11000600000000000000a43f1100030000000000000000000000e4be1100000000000000000000000000ec3f1100140000000000000000401100010000000000000000000000e4be110000000000000000000000000018401100130000000000000000401100010000000000000000000000e4be11000000000000000000000000002b401100100000000000000000401100010000000000000000000000e4be11000000000000000000000000003b4011001b0000000000000058401100010000000000000000000000e4be110000000000000000000000000070401100170000000000000058401100010000000000000000000000e4be1100000000000000000000000000874011001a0000000000000058401100010000000000000000000000e4be1100000000000000000000000000a14011001b00000000000000bc401100010000000000000000000000e4be1100000000000000000000000000d44011001b00000000000000f0401100010000000000000000000000e4be110000000000000000000000000008411100160000000000000020411100010000000000000000000000e4be110000000000000000000000000038411100190000000000000054411100010000000000000000000000e4be11000000000000000000000000006c4111001a00000000000000bc401100010000000000000000000000e4be1100000000000000000000000000864111001300000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000994111001400000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000ad4111000e00000000000000bc411100010000000000000000000000e4be110000000000000000006170706c7900000000000000124211000500000000000000a73711000c000000766f746500000000044211000a00000000000000c53611000700000000000000124211000500000000000000a73711000c00000072657665616c000000000000044211000a00000000000000c53611000700000000000000683f11000400000000000000969511000c000000000000000e4211000400000000000000d68b1100070000007365745f73746167655f616e6e6f756e63696e6700000000fd4111000700000000000000026711000e0000007365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f64000000000000f74111000600000000000000026711000e0000007365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b6500000000f14111000600000000000000a73711000c0000007365745f706172616d5f6e65775f7465726d5f6475726174696f6e0000000000e94111000800000000000000026711000e0000007365745f706172616d5f636f756e63696c5f73697a65000000000000dd4111000c00000000000000aba31100030000007365745f706172616d5f63616e6469646163795f6c696d697400000000000000d84111000500000000000000aba31100030000007365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f73746172740000000000d44111000400000000000000a58e110004000000666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64656e64735f6174636f6d6d69746d656e7473616c747374616b654d656d6f000000000017421100040000000101000000000000969511000c00000000000000cc4211000800000000000000000000000000000000000000e4be1100d44211000000000000000000e4be110000000000000000000100000000000000e44211000d0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f44211000000000000000000e4be11000000000000000000010000004d656d6f54657874110000000000000001000000290000004d61784d656d6f4c656e677468000000110000000000000001000000ba0000004d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f0000000000744311000b0000000000000080431100010000000000000000000000e4be110000000000000000007570646174655f6d656d6f0000000000984311000400000000000000cc421100080000006d656d6f00000000204411000a000000000000002c4411000200000000000000000000003c441100010000000000000000000000444411000d00000000000000544411000100000000000000000000005c4411000100000000000000000000006444110008000000000000006c4411000400000000000000000000008c44110001000000000000004e65774163636f756e740000d289110009000000c044110007000000de4411001b0000005265617065644163636f756e74000000d289110009000000c7441100170000005472616e73666572d289110009000000d289110009000000c044110007000000c044110007000000944411002c000000205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e42616c616e636520416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e62656e6566696369617279206163636f756e74206d757374207072652d6578697374746f6f2066657720667265652066756e647320696e206163636f756e7442616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e636575706461746564206f70656e696e672073686f756c6420626520696e206163746976652073746167657374616765204d555354206265206163746976654f6666656e636573205265706f72747342616c616e636573204c6f636b7350726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000204611003d000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656400000000000000000000000000000000000000000000002047110008000000000000002847110002000000000000000000000058471100190000000000000000000000204811000b000000000000002c481100030000000000000000000000744811000d0000000000000000000000dc4811000e00000000000000ec48110003000000000000000000000034491100020000000000000000000000444911001300000000000000284711000200000000000000000000005849110006000000000000007472616e7366657200000000d44a11000400000000000000b14a11002300000000000000d84a11000500000000000000dd4a110013000000b44c110036000000e4be110000000000ea4c1100420000002c4d110048000000744d110045000000b94d11002d000000e4be110000000000e64d110046000000e4be110000000000778b11000b0000002c4e11004c000000784e110033000000ab4e11005a000000e4be110000000000054f110013000000e4be110000000000184f1100540000006c4f11004b000000b74f110035000000ec4f11003700000023501100560000007950110052000000cb5011003e000000e4be110000000000ba8b11000c0000007365745f62616c616e636500000000009d4c11000300000000000000b14a11002300000000000000a04c11000800000000000000dd4a11001300000000000000a84c11000c00000000000000dd4a110013000000f04a110025000000e4be110000000000154b1100480000005d4b1100420000009f4b110046000000e54b11003a000000e4be1100000000001f4c11002d000000e4be110000000000778b11000b0000004c4c1100200000006c4c110031000000ba8b11000c000000666f7263655f7472616e73666572000000000000ab4a11000600000000000000b14a11002300000000000000d44a11000400000000000000b14a11002300000000000000d84a11000500000000000000dd4a1100130000004c4a110054000000a04a11000b0000007472616e736665725f6b6565705f616c697665008849110054000000dc49110010000000e4be110000000000ec4911002f000000e4be1100000000001b4a1100310000002053616d6520617320746865205b607472616e73666572605d2063616c6c2c206275742077697468206120636865636b207468617420746865207472616e736665722077696c6c206e6f74206b696c6c20746865206f726967696e206163636f756e742e20393925206f66207468652074696d6520796f752077616e74205b607472616e73666572605d20696e73746561642e205b607472616e73666572605d3a207374727563742e4d6f64756c652e68746d6c236d6574686f642e7472616e736665722045786163746c7920617320607472616e73666572602c2065786365707420746865206f726967696e206d75737420626520726f6f7420616e642074686520736f75726365206163636f756e74206d6179206265207370656369666965642e736f757263653c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f757263656465737476616c7565436f6d706163743c543a3a42616c616e63653e20536574207468652062616c616e636573206f66206120676976656e206163636f756e742e20546869732077696c6c20616c74657220604672656542616c616e63656020616e642060526573657276656442616c616e63656020696e2073746f726167652e2069742077696c6c20616c736f2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d202860546f74616c49737375616e636560292e20496620746865206e65772066726565206f722072657365727665642062616c616e63652069732062656c6f7720746865206578697374656e7469616c206465706f7369742c2069742077696c6c20726573657420746865206163636f756e74206e6f6e636520286073797374656d3a3a4163636f756e744e6f6e636560292e20546865206469737061746368206f726967696e20666f7220746869732063616c6c2069732060726f6f74602e202d20496e646570656e64656e74206f662074686520617267756d656e74732e202d20436f6e7461696e732061206c696d69746564206e756d626572206f6620726561647320616e64207772697465732e77686f6e65775f667265656e65775f7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572206163636f756e742e20607472616e73666572602077696c6c207365742074686520604672656542616c616e636560206f66207468652073656e64657220616e642072656365697665722e2049742077696c6c2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d2062792074686520605472616e73666572466565602e204966207468652073656e6465722773206163636f756e742069732062656c6f7720746865206578697374656e7469616c206465706f736974206173206120726573756c74206f6620746865207472616e736665722c20746865206163636f756e742077696c6c206265207265617065642e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d75737420626520605369676e65646020627920746865207472616e736163746f722e202d20446570656e64656e74206f6e20617267756d656e747320627574206e6f7420637269746963616c2c20676976656e2070726f70657220696d706c656d656e746174696f6e7320666f72202020696e70757420636f6e6669672074797065732e205365652072656c617465642066756e6374696f6e732062656c6f772e202d20497420636f6e7461696e732061206c696d69746564206e756d626572206f6620726561647320616e642077726974657320696e7465726e616c6c7920616e64206e6f20636f6d706c657820636f6d7075746174696f6e2e2052656c617465642066756e6374696f6e733a2020202d2060656e737572655f63616e5f77697468647261776020697320616c776179732063616c6c656420696e7465726e616c6c792062757420686173206120626f756e64656420636f6d706c65786974792e2020202d205472616e7366657272696e672062616c616e63657320746f206163636f756e7473207468617420646964206e6f74206578697374206265666f72652077696c6c20636175736520202020202060543a3a4f6e4e65774163636f756e743a3a6f6e5f6e65775f6163636f756e746020746f2062652063616c6c65642e2020202d2052656d6f76696e6720656e6f7567682066756e64732066726f6d20616e206163636f756e742077696c6c2074726967676572202020202060543a3a4475737452656d6f76616c3a3a6f6e5f756e62616c616e6365646020616e642060543a3a4f6e4672656542616c616e63655a65726f3a3a6f6e5f667265655f62616c616e63655f7a65726f602e2020202d20607472616e736665725f6b6565705f616c6976656020776f726b73207468652073616d652077617920617320607472616e73666572602c206275742068617320616e206164646974696f6e616c2020202020636865636b207468617420746865207472616e736665722077696c6c206e6f74206b696c6c20746865206f726967696e206163636f756e742e42616c616e63657300000000000000cc5211000d0000000000000000000000d95211000a00000000000000000000000000000000000000000000000000000000000000e4be1100845a11000000000000000000e452110001000000000000000100000000000000ec521100070000000101000000000000969511000c00000000000000f35211002b00000000000000000000000000000000000000e4be11002053110000000000000000003053110001000000000000000000000000000000385311000b0000000101000000000000969511000c00000000000000d95211000a00000000000000000000000000000000000000e4be1100845a11000000000000000000445311000b0000000000000001000000000000009c5311000f0000000101000000000000969511000c00000000000000d95211000a00000000000000000000000000000000000000e4be1100845a11000000000000000000ac5311000b00000000000000010000000000000004541100050000000101000000000000969511000c00000000000000095411002c00000000000000000000000000000000000000e4be110038541100000000000000000048541100010000000000000001000000546f74616c49737375616e6365543a3a42616c616e636500795911002600000056657374696e6756657374696e675363686564756c653c543a3a42616c616e63652c20543a3a426c6f636b4e756d6265723e00001100000000000000010000002100000043591100360000004672656542616c616e636500c956110027000000e4be110000000000f056110050000000405711005d0000009d57110055000000f25711004f00000041581100510000009258110015000000e4be110000000000a758110057000000fe58110045000000526573657276656442616c616e6365007e5411005d000000db54110027000000e4be110000000000025511005b0000005d55110049000000e4be110000000000a65511005d000000035611002d000000e4be110000000000305611005300000083561100460000004c6f636b735665633c42616c616e63654c6f636b3c543a3a42616c616e63652c20543a3a426c6f636b4e756d6265723e3e00000011000000000000000100000028000000505411002e00000020416e79206c6971756964697479206c6f636b73206f6e20736f6d65206163636f756e742062616c616e6365732e2054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e2920546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420616c6f6e65206973207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865722c2074686520604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e2075702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e2054686520746f74616c20756e6974732069737375656420696e207468652073797374656d2e0000000000485a11001200000000000000d95211000a00000000000000e4be1100845a110000000000000000005c5a1100010000000000000000000000645a11000b00000000000000d95211000a00000000000000e4be1100845a11000000000000000000705a1100010000000000000000000000785a11000b00000000000000d95211000a00000000000000e4be1100845a11000000000000000000945a110001000000000000004578697374656e7469616c4465706f7369740000e85a1100350000005472616e7366657246656500c35a1100250000004372656174696f6e46656500110000000000000001000000340000009c5a110027000000205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420726571756972656420746f206b65657020616e206163636f756e74206f70656e2e4f6666656e63657300000000000000305c1100070000000101000000000000375c11000d00000000000000445c11003400000000000000000000000000000000000000e4be1100785c11000000000000000000885c110001000000000000000000000000000000905c1100160000000201010000000000ffba1100040000000000000003bb11000e00000000000000a65c11001200000000000000e4be1100b85c11000000000000000000c85c110001000000000000000100000000000000d05c1100120000000101000000000000ffba11000400000000000000d68b11000700000000000000000000000000000000000000e4be1100e45c11000000000000000000f45c11000600000000000000010000005265706f7274735265706f727449644f663c543e4f6666656e636544657461696c733c543a3a4163636f756e7449642c20543a3a4964656e74696669636174696f6e5475706c653e110000000000000001000000210000008d5e110052000000436f6e63757272656e745265706f727473496e6465785665633c5265706f727449644f663c543e3e11000000000000000100000028000000435e11004a0000005265706f72747342794b696e64496e646578000011000000000000000100000029000000245d110044000000e4be110000000000685d11002f000000e4be110000000000975d110052000000e95d11005a00000020456e756d65726174657320616c6c207265706f727473206f662061206b696e6420616c6f6e672077697468207468652074696d6520746865792068617070656e65642e20416c6c207265706f7274732061726520736f72746564206279207468652074696d65206f66206f6666656e63652e204e6f74652074686174207468652061637475616c2074797065206f662074686973206d617070696e6720697320605665633c75383e602c207468697320697320626563617573652076616c756573206f6620646966666572656e7420747970657320617265206e6f7420737570706f7274656420617420746865206d6f6d656e7420736f2077652061726520646f696e6720746865206d616e75616c2073657269616c697a6174696f6e2e204120766563746f72206f66207265706f727473206f66207468652073616d65206b696e6420746861742068617070656e6564206174207468652073616d652074696d6520736c6f742e20546865207072696d61727920737472756374757265207468617420686f6c647320616c6c206f6666656e6365207265636f726473206b65796564206279207265706f7274206964656e746966696572732e42616c616e6365732056657374696e676163636f756e74206c6971756964697479207265737472696374696f6e732070726576656e74207769746864726177616c76657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c75656e6f7420656e6f75676820667265652066756e6473696d2d6f6e6c696e653a6f66666c696e4f6666656e63657320436f6e63757272656e745265706f727473496e64657862616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c75653a6772616e6470615f617574686f72697469657354696d657374616d702055706461746554696d657374616d7020526563656e7448696e7473417574686f72697479446973636f76657279204b65797346696e616c2068696e74206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b46696e616c697a6564206865696768742061626f766520626c6f636b206e756d62657263616c6c65642060526573756c743a3a756e77726170282960206f6e20616e2060457272602076616c756500e4be110000000000b4601100020000003a204469676573744974656d206e6f7420657175616c4772616e64706146696e616c697479205374616c6c6564000000110000000800000004000000bb000000bc0000000000000000000000bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000800000004000000bb000000bc0000000000000000000000bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004772616e64706146696e616c6974792050656e64696e674368616e67654772616e64706146696e616c697479204e657874466f726365640000000000706311001200000000000000846311000100000000000000000000009c63110001000000000000007265706f72745f6d69736265686176696f72000000000000bd6311000700000000000000d68b110007000000a463110019000000205265706f727420736f6d65206d69736265686176696f722e5f7265706f72744772616e64706146696e616c69747900000000003c6611000b0000000000000000000000e3b811000d00000000000000000000000000000000000000000000000000000000000000e4be11004866110000000000000000005866110004000000000000000100000000000000786611000500000000000000000000007d6611001b00000000000000000000000000000000000000000000000000000000000000e4be1100986611000000000000000000a866110001000000000000000100000000000000b06611000d0000000000000000000000bd6611002300000000000000000000000000000000000000000000000000000000000000e4be1100e06611000000000000000000f066110001000000000000000000000000000000f86611000a0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11009867110000000000000000001067110001000000000000000000000000000000186711000700000000000000000000001f6711002000000000000000000000000000000000000000000000000000000000000000e4be11004067110000000000000000005067110001000000000000000000000000000000586711000c0000000000000000000000646711000500000000000000000000000000000000000000000000000000000000000000e4be11006c67110000000000000000007c671100020000000000000001000000000000008c6711000c00000001010000000000006467110005000000000000001bbc11000c00000000000000000000000000000000000000e4be1100986711000000000000000000a8671100010000000000000000000000417574686f7269746965730011000000000000000100000028000000506911000b000000e4be1100000000005b69110058000000b369110025000000537461746553746f72656453746174653c543a3a426c6f636b4e756d6265723e110000000000000001000000be0000002c6911002400000050656e64696e674368616e676553746f72656450656e64696e674368616e67653c543a3a426c6f636b4e756d6265723e11000000000000000100000021000000fb681100310000004e657874466f72636564543a3a426c6f636b4e756d626572cc6811002f0000005374616c6c656428543a3a426c6f636b4e756d6265722c20543a3a426c6f636b4e756d626572290011000000000000000100000021000000a86811002400000043757272656e74536574496453657449640000001100000000000000010000002600000020681100570000007768110031000000536574496453657373696f6e11000000000000000100000021000000b0671100700000002041206d617070696e672066726f6d206772616e6470612073657420494420746f2074686520696e646578206f6620746865202a6d6f737420726563656e742a2073657373696f6e20666f7220776869636820697473206d656d62657273207765726520726573706f6e7369626c652e20546865206e756d626572206f66206368616e6765732028626f746820696e207465726d73206f66206b65797320616e6420756e6465726c79696e672065636f6e6f6d696320726573706f6e736962696c69746965732920696e20746865202273657422206f66204772616e6470612076616c696461746f72732066726f6d2067656e657369732e20607472756560206966207765206172652063757272656e746c79207374616c6c65642e206e65787420626c6f636b206e756d6265722077686572652077652063616e20666f7263652061206368616e67652e2050656e64696e67206368616e67653a20287369676e616c65642061742c207363686564756c6564206368616e6765292e205374617465206f66207468652063757272656e7420617574686f72697479207365742e20444550524543415445442054686973207573656420746f2073746f7265207468652063757272656e7420617574686f72697479207365742c20776869636820686173206265656e206d6967726174656420746f207468652077656c6c2d6b6e6f776e204752414e4450415f415554484f52495445535f4b455920756e686173686564206b65792e4772616e64706146696e616c69747920537461746554696d657374616d70204f72646572656448696e747354696d657374616d70204d656469616e616c77617973206174206c65617374206f6e6520726563656e742073616d706c653b20716564000000df6a110067000000990000002b000000726563656e7420616e64206f72646572656420636f6e7461696e207468652073616d65206974656d733b2071656400001100000004000000040000000a000000df6a110067000000a40000001b0000007072756e696e672064696374617465642062792077696e646f775f73697a6520776869636820697320616c776179732073617475726174656420617420313b207165642f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f66696e616c6974792d747261636b65722f7372632f6c69622e7273000000000000746b11000a00000000000000806b1100010000000000000000000000986b1100020000000000000066696e616c5f68696e74000000000000006c11000400000000000000046c110017000000a86b11003d000000e56b11001b0000002048696e7420746861742074686520617574686f72206f66207468697320626c6f636b207468696e6b732074686520626573742066696e616c697a656420626c6f636b2069732074686520676976656e206e756d6265722e68696e74436f6d706163743c543a3a426c6f636b4e756d6265723e00000000008c6c11000a00000000000000026711000e00000000000000e4be1100986c11000000000000000000a86c1100010000000000000000000000b06c11000d00000000000000026711000e00000000000000e4be1100c06c11000000000000000000d06c1100010000000000000057696e646f7753697a650000110000000000000001000000bf0000001f6d1100460000005265706f72744c6174656e6379000000110000000000000001000000b9000000d86c110047000000205468652064656c617920616674657220776869636820706f696e74207468696e6773206265636f6d6520737573706963696f75732e2044656661756c7420697320313030302e20546865206e756d626572206f6620726563656e742073616d706c657320746f206b6565702066726f6d207468697320636861696e2e2044656661756c74206973203130312e696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f646570726576696f75732f6e657874206f6e6c7920636f6e7461696e206578697374696e6720656e74697265733b0a090909090909776520656e756d6572617465207573696e67206e6578743b20656e747279206578697374733b207165640000fc6d1100770000007d0000000d0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f737570706f72742f7372632f73746f726167652f67656e657261746f722f6c696e6b65645f6d61702e72730000000000d46f11000f00000000000000e46f1100010000000000000000000000ec6f1100010000000000000000000000f46f11000f00000000000000047011000300000000000000000000001c701100030000000000000000000000347011000d00000000000000447011000100000000000000000000004c701100010000000000000000000000547011000f0000000000000044701100010000000000000000000000647011000100000000000000000000006c70110009000000000000007870110001000000000000000000000080701100010000000000000000000000887011000d000000000000007870110001000000000000000000000098701100010000000000000000000000a07011000f00000000000000b0701100020000000000000000000000c0701100020000000000000000000000d07011000c00000000000000dc701100020000000000000000000000ec701100010000000000000043617465676f727943726561746564000d7311000a000000237311001a00000043617465676f727955706461746564000d7311000a000000177311000c000000177311000c00000044721100260000006a72110052000000bc72110051000000546872656164437265617465640000003c7211000800000018721100240000005468726561644d6f6465726174656400f271110026000000506f73744164646564000000a771110006000000d271110020000000506f73744d6f64657261746564000000b071110022000000506f7374546578745570646174656400a771110006000000ad711100030000002a711100290000005371110054000000466f72756d5375646f53657419711100110000001971110011000000f47011002500000020476976656e206163636f756e74207761732073657420617320666f72756d207375646f2e4f7074696f6e3c4163636f756e7449643e20506f7374207769746820676976656e2069642068616420697473207465787420757064617465642e20546865207365636f6e6420617267756d656e74207265666c6563747320746865206e756d626572206f6620746f74616c206564697473207768656e20746865207465787420757064617465206f63637572732e506f7374496475363420506f73742077697468206769766e6520696420776173206d6f646572617465642e20506f7374207769746820676976656e2069642077617320637265617465642e204120746872656164207769746820676976656e20696420776173206d6f646572617465642e204120746872656164207769746820676976656e2069642077617320637265617465642e546872656164496420412063617465676f7279207769746820676976656e2069642077617320757064617465642e20546865207365636f6e6420617267756d656e74207265666c6563747320746865206e657720617263686976616c20737461747573206f66207468652063617465676f72792c206966206368616e6765642e2054686520746869726420617267756d656e74207265666c6563747320746865206e65772064656c6574696f6e20737461747573206f66207468652063617465676f72792c206966206368616e6765642e43617465676f727949644f7074696f6e3c626f6f6c3e20412063617465676f72792077617320696e74726f64756365644c696e6b616765206973207570646174656420696e206361736520656e7472792069732072656d6f7665643b0a0909090909697420616c7761797320706f696e747320746f206578697374696e67206b6579733b20716564000000fc6d1100770000009a00000017000000fc6d110077000000a5000000170000006865616420697320736574207768656e20666972737420656c656d656e7420697320696e7365727465640a090909090909616e6420756e736574207768656e206c61737420656c656d656e742069732072656d6f7665643b0a0909090909096966206865616420697320536f6d65207468656e20697420706f696e747320746f206578697374696e67206b65793b207165640000fc6d110077000000c50000002300000000000000bc7511000e00000000000000cc751100010000000000000000000000e4751100010000000000000000000000ec7511000f00000000000000fc751100030000000000000000000000447611000100000000000000000000004c7611000f000000000000005c761100030000000000000000000000a4761100010000000000000000000000ac7611000d00000000000000bc761100030000000000000000000000047711000100000000000000000000000c7711000f000000000000001c7711000200000000000000000000004c7711000100000000000000000000005477110008000000000000005c7711000200000000000000000000008c771100010000000000000000000000947711000e00000000000000a47711000200000000000000000000008c771100010000000000000000000000d47711000d00000000000000e47711000200000000000000000000001478110001000000000000007365745f666f72756d5f7375646f000000000000157911000e00000000000000237911001400000005791100100000006372656174655f63617465676f72790000000000e27811000600000000000000e87811001200000000000000937811000500000000000000d68b11000700000000000000fa7811000b00000000000000d68b110007000000ce781100140000007570646174655f63617465676f72790000000000887811000b000000000000000d7311000a00000000000000a87811001300000000000000177311000c00000000000000bb7811001300000000000000177311000c00000098781100100000006372656174655f74687265616400000000000000887811000b000000000000000d7311000a00000000000000937811000500000000000000d68b1100070000000000000013af11000400000000000000d68b1100070000006a7811001e0000006d6f6465726174655f74687265616400000000005178110009000000000000003c7211000800000000000000317811000900000000000000d68b1100070000005a781100100000006164645f706f7374000000005178110009000000000000003c721100080000000000000013af11000400000000000000d68b110007000000427811000f000000656469745f706f73745f746578740000000000002a7811000700000000000000a771110006000000000000003a7811000800000000000000d68b1100070000006d6f6465726174655f706f7374000000000000002a7811000700000000000000a77111000600000000000000317811000900000000000000d68b1100070000001c7811000e000000204d6f64657261746520706f7374706f73745f6964726174696f6e616c656e65775f74657874204564697420706f737420746578747468726561645f6964204d6f6465726174652074687265616420437265617465206e65772074687265616420696e2063617465676f727963617465676f72795f69647469746c65205570646174652063617465676f72796e65775f617263686976616c5f7374617475736e65775f64656c6574696f6e5f737461747573204164642061206e65772063617465676f72792e706172656e744f7074696f6e3c43617465676f727949643e6465736372697074696f6e2053657420666f72756d207375646f2e6e65775f666f72756d5f7375646f4f7074696f6e3c543a3a4163636f756e7449643e466f72756d00000000b47d11000c00000001010000000000000d7311000a00000000000000c07d11003100000000000000000000000000000000000000e4be1100f47d11000000000000000000047e1100010000000000000001000000000000000c7e11000e00000000000000000000000d7311000a00000000000000000000000000000000000000000000000000000000000000e4be1100e87e110000000000000000001c7e110001000000000000000100000000000000247e11000a00000001010000000000003c72110008000000000000002e7e11002f00000000000000000000000000000000000000e4be1100607e11000000000000000000707e110001000000000000000100000000000000787e11000c00000000000000000000003c7211000800000000000000000000000000000000000000000000000000000000000000e4be1100e87e11000000000000000000847e1100010000000000000001000000000000008c7e1100080000000101000000000000a77111000600000000000000947e11002d00000000000000000000000000000000000000e4be1100c47e11000000000000000000d47e110001000000000000000100000000000000dc7e11000a0000000000000000000000a77111000600000000000000000000000000000000000000000000000000000000000000e4be1100e87e11000000000000000000f87e110001000000000000000100000000000000007f1100090000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be11000c7f110000000000000000001c7f110001000000000000000000000000000000247f11001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f110000000000000000005c7f110003000000000000000100000000000000747f11001d00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000917f11001500000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000a67f11001200000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000b87f11002300000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000db7f11002100000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000043617465676f72794279496443617465676f72793c543a3a426c6f636b4e756d6265722c20543a3a4d6f6d656e742c20543a3a4163636f756e7449643e000000110000000000000001000000c00000009f811100330000004e65787443617465676f7279496400005b81110044000000546872656164427949645468726561643c543a3a426c6f636b4e756d6265722c20543a3a4d6f6d656e742c20543a3a4163636f756e7449643e000000110000000000000001000000c10000002c8111002f0000004e6578745468726561644964ea80110042000000506f737442794964506f73743c543a3a426c6f636b4e756d6265722c20543a3a4d6f6d656e742c20543a3a4163636f756e7449643e000000110000000000000001000000c2000000bf8011002b0000004e657874506f73744964000011000000000000000100000026000000838011003c000000466f72756d5375646f000000110000000000000001000000210000006c8011001700000043617465676f72795469746c65436f6e73747261696e74496e70757456616c69646174696f6e4c656e677468436f6e73747261696e7400000c801100120000001e801100400000005e8011000e00000043617465676f72794465736372697074696f6e436f6e73747261696e745468726561645469746c65436f6e73747261696e74506f737454657874436f6e73747261696e745468726561644d6f6465726174696f6e526174696f6e616c65436f6e73747261696e74506f73744d6f6465726174696f6e526174696f6e616c65436f6e73747261696e741100000000000000010000002400000020496e70757420636f6e73747261696e74732054686573652061726520616c6c20666f7277617264206c6f6f6b696e672c207468617420697320746865792061726520656e666f72636564206f6e20616c6c206675747572652063616c6c732e204163636f756e74206f6620666f72756d207375646f2e20506f7374206964656e7469666965722076616c756520746f206265207573656420666f7220666f72206e65787420706f737420637265617465642e204d617020706f7374206964656e74696669657220746f20636f72726573706f6e64696e6720706f73742e20546872656164206964656e7469666965722076616c756520746f206265207573656420666f72206e6578742054687265616420696e20746872656164427949642e204d617020746872656164206964656e74696669657220746f20636f72726573706f6e64696e67207468726561642e2043617465676f7279206964656e7469666965722076616c756520746f206265207573656420666f7220746865206e6578742043617465676f727920637265617465642e204d61702063617465676f7279206964656e74696669657220746f20636f72726573706f6e64696e672063617465676f72792e0000ea8411001e0000000500000032000000466f72756d20466f72756d5375646f466f72756d207375646f206e6f74207365742e4f726967696e206e6f7420666f72756d207375646f2e43617465676f7279207469746c6520746f6f2073686f72742e43617465676f7279207469746c6520746f6f206c6f6e672e43617465676f7279206465736372697074696f6e20746f6f206c6f6e672e466f72756d2043617465676f7279427949640000006d8511003a000000b202000027000000416e636573746f722063617465676f727920696d6d757461626c652c20692e652e2064656c65746564206f722061726368697665644d6178696d756d2076616c69642063617465676f72792064657074682065786365656465642e43617465676f7279206e6f74206265696e6720757064617465642e43617465676f72792063616e6e6f7420626520756e6172636869766564207768656e2064656c657465642e4e6f7420666f72756d20757365722e546872656164207469746c6520746f6f2073686f72742e546872656164207469746c6520746f6f206c6f6e672e506f7374207465787420746f6f2073686f72742e506f737420746f6f206c6f6e672e466f72756d2054687265616442794964546872656164206d6f6465726174696f6e20726174696f6e616c6520746f6f2073686f72742e546872656164206d6f6465726174696f6e20726174696f6e616c6520746f6f206c6f6e672e54687265616420616c7265616479206d6f646572617465642e617373657274696f6e206661696c65643a2021706174682e69735f656d7074792829000000ea8411001e00000002000000020000004163636f756e7420646f6573206e6f74206d6174636820706f737420617574686f722e466f72756d20506f737442794964506f7374206d6f6465726174696f6e20726174696f6e616c6520746f6f2073686f72742e506f7374206d6f6465726174696f6e20726174696f6e616c6520746f6f206c6f6e672e506f737420646f6573206e6f742065786973742e506f7374206973206d6f646572617465642e546872656164206973206d6f646572617465642e3c3a3a636f72653a3a6d6163726f733a3a70616e6963206d6163726f733e617373657274696f6e206661696c65643a203c43617465676f7279427949643c543e3e3a3a65786973747328266368696c645f706f736974696f6e5f696e5f706172656e742e706172656e745f69642954687265616420646f6573206e6f742065786973742f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d666f72756d2d6d6f64756c652f7372632f6c69622e727343617465676f727920646f6573206e6f742065786973742e617373657274696f6e206661696c65643a2063617465676f72795f747265655f706174682e6c656e2829203e203066696e616c6e756d417574686f727368697020417574686f7253657373696f6e2056616c696461746f727344617461204f626a656374205479706520776974682074686520676976656e204944206e6f7420666f756e642e6d656d6265722070726f66696c65206e6f7420666f756e6400000000000000b88611001800000000000000d0861100010000000000000000000000e4be1100000000000000000000000000d88611001500000000000000d0861100010000000000000000000000e4be11000000000000000000446174614f626a6563745479706552656769737465726564ed86110010000000446174614f626a6563745479706555706461746564446174614f626a6563745479706549644d656d62657273686970204d656d62657250726f66696c654d656d62657273686970204d656d6265724964734279526f6f744163636f756e7449644d656d62657273686970204d656d6265724964734279436f6e74726f6c6c65724163636f756e7449644d656d62657273686970204d656d62657273686970496442794163746f72496e526f6c6500000000000000e88811001000000000000000f8881100020000000000000000000000e4be110000000000000000000000000008891100160000000000000020891100010000000000000000000000e4be110000000000000000000000000028891100130000000000000020891100010000000000000000000000e4be11000000000000000000000000003b891100130000000000000020891100010000000000000000000000e4be11000000000000000000000000004e8911001400000000000000f8881100020000000000000000000000e4be1100000000000000000000000000628911001a00000000000000f8881100020000000000000000000000e4be11000000000000000000000000007c891100140000000000000090891100020000000000000000000000e4be1100000000000000000000000000a0891100160000000000000090891100020000000000000000000000e4be110000000000000000004d656d62657252656769737465726564b689110008000000d2891100090000004d656d6265725570646174656441626f7574546578740000b6891100080000004d656d626572557064617465644176617461724d656d6265725570646174656448616e646c654d656d626572536574526f6f744163636f756e744d656d626572536574436f6e74726f6c6c65724163636f756e744d656d62657252656769737465726564526f6c65b689110008000000be891100140000004d656d626572556e72656769737465726564526f6c654d656d62657249644163746f72496e526f6c653c4163746f7249643e4163636f756e7449640000000000088a11000800000000000000108a1100020000000000000000000000408a11000a000000000000007365745f6b65797300000000c68b11000400000000000000ca8b11000700000000000000d18b11000500000000000000d68b110007000000908a110039000000c98a110048000000118b110031000000e4be110000000000428b110035000000e4be110000000000778b11000b000000828b110022000000a48b110016000000ba8b11000c0000002053657473207468652073657373696f6e206b6579287329206f66207468652066756e6374696f6e2063616c6c657220746f20606b6579602e20416c6c6f777320616e206163636f756e7420746f20736574206974732073657373696f6e206b6579207072696f7220746f206265636f6d696e6720612076616c696461746f722e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e20546865206469737061746368206f726967696e206f6620746869732066756e6374696f6e206d757374206265207369676e65642e2023203c7765696768743e202d204f286c6f67206e2920696e206e756d626572206f66206163636f756e74732e202d204f6e6520657874726120444220656e7472792e2023203c2f7765696768743e6b657973543a3a4b65797370726f6f665665633c75383e53657373696f6e000000004c8e11000a0000000000000000000000568e11001300000000000000000000000000000000000000000000000000000000000000e4be110054a2110000000000000000006c8e110001000000000000000100000000000000748e11000c00000000000000000000001bbc11000c00000000000000000000000000000000000000000000000000000000000000e4be1100808e11000000000000000000908e110001000000000000000100000000000000988e11000d0000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100b89511000000000000000000ac8e110002000000000000000100000000000000bc8e11000a0000000000000000000000c68e11001e00000000000000000000000000000000000000000000000000000000000000e4be110054a211000000000000000000e48e110002000000000000000100000000000000f48e1100120000000000000000000000068f11000800000000000000000000000000000000000000000000000000000000000000e4be110054a211000000000000000000108f110003000000000000000100000000000000288f1100080000000204010000000000d68b11000700000000000000308f11000e00000000000000ca8b11000700000000000000e4be1100408f11000000000000000000508f110004000000000000000000000000000000708f1100080000000204010000000000d68b11000700000000000000788f11001400000000000000308f11000e00000000000000e4be11008ca3110000000000000000008c8f110004000000000000000000000056616c696461746f72735665633c543a3a56616c696461746f7249643e000000539211001f00000043757272656e74496e6465781100000000000000010000002c000000359211001e0000005175657565644368616e676564626f6f6c000000be9111004e0000000c921100290000005175657565644b6579735665633c28543a3a56616c696461746f7249642c20543a3a4b657973293e379111004f000000869111003800000044697361626c656456616c696461746f72735665633c7533323e0000ca90110020000000e4be110000000000ea9011004d0000004e6578744b657973543a3a56616c696461746f724964000011000000000000000100000021000000a390110027000000e4be110000000000f58f1100560000004b901100580000004b65794f776e6572284b65795479706549642c205665633c75383e29ac8f110049000000e4be110000000000f58f1100560000004b9011005800000020546865206f776e6572206f662061206b65792e20546865207365636f6e64206b65792069732074686520604b657954797065496460202b2074686520656e636f646564206b65792e20546865206669727374206b657920697320616c77617973206044454455505f4b45595f5052454649586020746f206861766520616c6c20746865206461746120696e207468652073616d65206272616e6368206f662074686520747269652e20486176696e6720616c6c206461746120696e207468652073616d65206272616e63682073686f756c642070726576656e7420736c6f77696e6720646f776e206f7468657220717565726965732e20546865206e6578742073657373696f6e206b65797320666f7220612076616c696461746f722e20496e6469636573206f662064697361626c65642076616c696461746f72732e205468652073657420697320636c6561726564207768656e20606f6e5f73657373696f6e5f656e64696e67602072657475726e732061206e657720736574206f66206964656e7469746965732e2054686520717565756564206b65797320666f7220746865206e6578742073657373696f6e2e205768656e20746865206e6578742073657373696f6e20626567696e732c207468657365206b6579732077696c6c206265207573656420746f2064657465726d696e65207468652076616c696461746f7227732073657373696f6e206b6579732e20547275652069662074686520756e6465726c79696e672065636f6e6f6d6963206964656e746974696573206f7220776569676874696e6720626568696e64207468652076616c696461746f727320686173206368616e67656420696e20746865207175657565642076616c696461746f72207365742e2043757272656e7420696e646578206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e000000000000ac9211001000000000000000bc9211000500000000000000e4be1100c49211000000000000000000d4921100020000000000000044454455505f4b45595f505245464958265b75385d000000110000000000000001000000c3000000e4921100590000003d9311000d0000002055736564206173206669727374206b657920666f7220604e6578744b6579736020616e6420604b65794f776e65726020746f2070757420616c6c20746865206461746120696e746f207468652073616d65206272616e6368206f662074686520747269652e3a73657373696f6e3a6b65797353657373696f6e204e6578744b65797353657373696f6e204b65794f776e657253657373696f6e205175657565644b657973417574686f727368697020556e636c6573000000000000c89311000a00000000000000d4931100010000000000000000000000ec93110001000000000000007365745f756e636c65730000000000000d9411000a00000000000000179411000e000000f4931100190000002050726f76696465206120736574206f6620756e636c65732e6e65775f756e636c65735665633c543a3a4865616465723e417574686f72736869700000000000389511000600000000000000000000003e9511003a00000000000000000000000000000000000000000000000000000000000000e4be1100789511000000000000000000889511000100000000000000010000000000000090951100060000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be11008ca311000000000000000000a495110001000000000000000000000000000000ac9511000c0000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100b89511000000000000000000c8951100010000000000000001000000556e636c65735665633c556e636c65456e7472794974656d3c543a3a426c6f636b4e756d6265722c20543a3a486173682c20543a3a4163636f756e7449643e3e110000000000000001000000280000001896110007000000417574686f72543a3a4163636f756e7449640000ff95110019000000446964536574556e636c657311000000000000000100000021000000d09511002f000000205768657468657220756e636c6573207765726520616c72656164792073657420696e207468697320626c6f636b2e20417574686f72206f662063757272656e7420626c6f636b2e20556e636c65736e6f206173736f6369617465642076616c696461746f7220494420666f72206163636f756e742e72656769737465726564206475706c6963617465206b6579556e636c657320616c72656164792073657420696e20626c6f636b2e756e636c6520616c726561647920696e636c75646564756e636c652069732067656e65736973756e636c6520697320746f6f206869676820696e20636861696e756e636c6520706172656e74206e6f7420696e20636861696e756e636c65206e6f7420726563656e7420656e6f75676820746f20626520696e636c7564656444656661756c742064617461206f626a656374207479706520666f7220617564696f20616e6420766964656f20636f6e74656e742e446174614f626a65637454797065526567697374727920446174614f626a6563745479706573649711003a000000a40100001b0000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f6d656d626572736869702f6d656d626572732e72734163746f72496e526f6c65416c726561647945786973747353757370656e6465644d656d62657243616e6e6f74456e746572526f6c65617373657274696f6e206661696c65643a2070726f66696c652e726f6c65732e72656769737465725f726f6c65286163746f725f696e5f726f6c6529649711003a000000ae020000090000004163746f72496e526f6c654e6f74466f756e64617373657274696f6e206661696c65643a2070726f66696c652e726f6c65732e756e72656769737465725f726f6c6528266163746f725f696e5f726f6c65290000649711003a000000c602000009000000446174614f626a65637454797065446174614f626a65637454797065526567697374727900000000b0991100150000000000000000000000c59911001300000000000000000000000000000000000000000000000000000000000000e4be1100a4a211000000000000000000e4be110000000000000000000100000000000000d8991100140000000000000000000000c59911001300000000000000000000000000000000000000000000000000000000000000e4be1100a4a211000000000000000000e4be110000000000000000000100000000000000ec9911000f0000000101000000000000c59911001300000000000000849811000e00000000000000000000000000000000000000e4be1100fc9911000000000000000000e4be11000000000000000000000000004669727374446174614f626a656374547970654964543a3a446174614f626a6563745479706549644e657874446174614f626a656374547970654964446174614f626a65637454797065730011000000000000000100000021000000989a1100230000004f9a1100490000005100000001000000446174614f626a656374547970655265676973747279204e657874446174614f626a6563745479706549642f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f73746f726167652f646174615f6f626a6563745f747970655f72656769737472792e72735f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e446174614f626a656374547970655265676973747279204669727374446174614f626a6563745479706549640000000000989b11001900000000000000b49b1100010000000000000000000000e4be1100000000000000000000000000cc9b11001700000000000000e49b1100020000000000000000000000e4be1100000000000000000000000000149c11001900000000000000309c1100010000000000000000000000e4be1100000000000000000000000000489c11001b00000000000000309c1100010000000000000000000000e4be1100000000000000000072656769737465725f646174615f6f626a6563745f7479706500000000000000659c11001000000000000000849811000e0000007570646174655f646174615f6f626a6563745f747970650000000000639c11000200000000000000c59911001300000000000000659c11001000000000000000849811000e00000061637469766174655f646174615f6f626a6563745f7479706500000000000000639c11000200000000000000c599110013000000646561637469766174655f646174615f6f626a6563745f747970656964646174615f6f626a6563745f7479706555736572496e666f68616e646c654d656d6265727368697000000000000000b8a111000e0000000000000000000000c6a111000b00000000000000000000000000000000000000000000000000000000000000e4be110058a411000000000000000000d4a1110002000000000000000100000000000000e4a111000d0000000101000000000000c6a111000b00000000000000f1a111000a00000000000000000000000000000000000000e4be11008ca311000000000000000000fca111000100000000000000000000000000000004a21100180000000101000000000000969511000c000000000000001ca211001000000000000000000000000000000000000000e4be110054a2110000000000000000002ca211000100000000000000010000000000000034a211001e0000000101000000000000969511000c000000000000001ca211001000000000000000000000000000000000000000e4be110054a21100000000000000000064a21100010000000000000001000000000000006ca21100070000000101000000000000d68b11000700000000000000c6a111000b00000000000000000000000000000000000000e4be110058a41100000000000000000074a21100010000000000000001000000000000007ca2110019000000000000000000000095a211000d00000000000000000000000000000000000000000000000000000000000000e4be1100a4a211000000000000000000b4a2110001000000000000000100000000000000bca2110017000000010100000000000095a211000d00000000000000d3a211001600000000000000000000000000000000000000e4be1100eca211000000000000000000fca211000100000000000000000000000000000004a311001900000000000000000000001da311001200000000000000000000000000000000000000000000000000000000000000e4be110030a31100000000000000000040a311000100000000000000010000000000000048a31100150000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be110060a31100000000000000000070a311000100000000000000010000000000000078a31100120000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be11008ca311000000000000000000e4be1100000000000000000000000000000000009ca311000f0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100b0a311000000000000000000e4be110000000000000000000100000000000000c0a311000f0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100d0a311000000000000000000e4be110000000000000000000100000000000000e0a31100120000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f4a311000000000000000000e4be11000000000000000000010000000000000004a41100120000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be110018a411000000000000000000e4be11000000000000000000010000000000000028a4110019000000010100000000000041a411001700000000000000c6a111000b00000000000000000000000000000000000000e4be110058a411000000000000000000e4be11000000000000000000010000004d656d6265727343726561746564543a3a4d656d6265724964000000e6a511005100000037a611003a0000004d656d62657250726f66696c6550726f66696c653c543e00b3a51100330000004d656d6265724964734279526f6f744163636f756e7449645665633c543a3a4d656d62657249643e72a51100410000004d656d6265724964734279436f6e74726f6c6c65724163636f756e7449640000110000000000000001000000280000002ba511004700000048616e646c657300f0a411003b0000004e657874506169644d656d626572736869705465726d734964543a3a506169645465726d4964000011000000000000000100000027000000d2a411001e000000506169644d656d626572736869705465726d7342794964506169644d656d626572736869705465726d733c543e00000011000000000000000100000021000000b5a411001d000000416374697665506169644d656d626572736869705465726d735665633c543a3a506169645465726d49643e00110000000000000001000000c400000098a411001d0000004e65774d656d6265727368697073416c6c6f776564000000110000000000000001000000b500000068a411003000000053637265656e696e67417574686f726974790000110000000000000001000000210000004d696e48616e646c654c656e6774687533320000110000000000000001000000c50000004d617848616e646c654c656e67746800110000000000000001000000c60000004d61784176617461725572694c656e6774680000110000000000000001000000c70000004d617841626f7574546578744c656e6774680000110000000000000001000000c80000004d656d62657273686970496442794163746f72496e526f6c654163746f72496e526f6c653c543a3a4163746f7249643e110000000000000001000000260000002049732074686520706c6174666f726d20697320616363657074696e67206e6577206d656d62657273206f72206e6f74204163746976652050616964206d656d62657273686970207465726d732050616964206d656d62657273686970207465726d73207265636f7264204e6578742070616964206d656d62657273686970207465726d73206964205265676973746572656420756e697175652068616e646c657320616e64207468656972206d617070696e6720746f207468656972206f776e6572204d617070696e67206f66206120636f6e74726f6c6c6572206163636f756e7420696420746f20766563746f72206f66206d656d6265722069647320697420636f6e74726f6c73204d617070696e67206f66206120726f6f74206163636f756e7420696420746f20766563746f72206f66206d656d6265722069647320697420636f6e74726f6c73204d617070696e67206f66206d656d626572277320696420746f207468656972206d656d626572736869702070726f66696c65204d656d626572496420746f2061737369676e20746f206e657874206d656d626572207468617420697320616464656420746f207468652072656769737472792c20616e6420697320616c736f2074686520746f74616c206e756d626572206f66206d656d6265727320637265617465642e204d656d626572496473207374617274206174205a65726f2e4d656d62657273686970204e65774d656d6265727368697073416c6c6f7765644d656d62657273686970204d696e48616e646c654c656e6774684d656d62657273686970204d617848616e646c654c656e6774684d656d62657273686970204d61784176617461725572694c656e6774684d656d62657273686970204d617841626f7574546578744c656e67746800649711003a000000e60000000100000068616e646c6520616c726561647920726567697374657265646e6f7420656e6f7567682062616c616e636520746f20627579206d656d626572736869704d656d6265727368697020416374697665506169644d656d626572736869705465726d734d656d6265727368697020506169644d656d626572736869705465726d734279496470616964206d656d62657273686970207465726d20696420646f6573206e6f7420657869737470616964207465726d73206964206e6f74206163746976656e6577206d656d62657273206e6f7420616c6c6f7765644d656d626572736869702048616e646c65736f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d6265722061626f757420746578746f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d626572206176617461726f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d6265722068616e646c656f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d62657220696e666f6f6e6c7920726f6f74206163636f756e742063616e20736574206e657720636f6e74726f6c6c6572206163636f756e746f6e6c7920726f6f74206163636f756e742063616e20736574206e657720726f6f74206163636f756e744d656d626572736869702053637265656e696e67417574686f726974796e6f742073637265656e65726e6f2073637265656e696e6720617574686f7269747920646566696e656468616e646c6520746f6f2073686f727468616e646c6520746f6f206c6f6e676176617461722075726920746f6f206c6f6e674d656d62657273686970204d656d626572734372656174656468616e646c65206d7573742062652070726f766964656420647572696e6720726567697374726174696f6e000000000060ab11000e0000000000000070ab1100020000000000000000000000a0ab1100010000000000000000000000a8ab11001800000000000000c0ab1100020000000000000000000000f0ab1100010000000000000000000000f8ab110014000000000000000cac11000200000000000000000000003cac110001000000000000000000000044ac1100140000000000000058ac110002000000000000000000000088ac110002000000000000000000000098ac11000e00000000000000a8ac1100020000000000000000000000d8ac1100010000000000000000000000e0ac11001600000000000000f8ac1100020000000000000000000000e4be110000000000000000000000000028ad1100100000000000000038ad1100020000000000000000000000e4be110000000000000000000000000068ad110013000000000000007cad1100020000000000000000000000e4be1100000000000000000000000000acad11001700000000000000c4ad1100010000000000000000000000e4be110000000000000000006275795f6d656d6265727368697000000000000036af11000d0000000000000095a211000d00000000000000f7ad11000900000000000000759c11000800000017af11001f0000006368616e67655f6d656d6265725f61626f75745f746578740000000000ae11000900000000000000c6a111000b0000000000000013af11000400000000000000d68b110007000000f8ae11001b0000006368616e67655f6d656d6265725f6176617461720000000000ae11000900000000000000c6a111000b00000000000000f5ae11000300000000000000d68b110007000000deae1100170000006368616e67655f6d656d6265725f68616e646c650000000000ae11000900000000000000c6a111000b000000000000007d9c11000600000000000000d68b1100070000006dae110057000000c4ae11001a0000007570646174655f70726f66696c6500000000000000ae11000900000000000000c6a111000b00000000000000f7ad11000900000000000000759c1100080000002fae11003e0000007365745f636f6e74726f6c6c65725f6163636f756e7400000000000000ae11000900000000000000c6a111000b0000000000000019ae11001600000000000000969511000c0000007365745f726f6f745f6163636f756e740000000000ae11000900000000000000c6a111000b0000000000000009ae11001000000000000000969511000c0000006164645f73637265656e65645f6d656d6265720000000000e5ad11001200000000000000969511000c00000000000000f7ad11000900000000000000759c1100080000007365745f73637265656e696e675f617574686f726974790000000000dcad11000900000000000000969511000c000000617574686f726974796e65775f6d656d6265725f6163636f756e74757365725f696e666f6d656d6265725f69646e65775f726f6f745f6163636f756e746e65775f636f6e74726f6c6c65725f6163636f756e7420557064617465206d656d626572277320616c6c206f7220736f6d65206f662068616e646c652c2061766174617220616e642061626f757420746578742e204368616e6765206d656d62657227732068616e646c652e2057696c6c20656e73757265206e65772068616e646c6520697320756e6971756520616e64206f6c64206f6e652077696c6c20626520617661696c61626c6520666f72206f74686572206d656d6265727320746f207573652e204368616e6765206d656d626572277320617661746172757269204368616e6765206d656d62657227732061626f7574207465787474657874204e6f6e2d6d656d626572732063616e20627579206d656d62657273686970706169645f7465726d735f6964756e636c65733030496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b20716564001100000008000000040000002f000000ecaf11002b0000002d030000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727300110000000000000001000000c9000000ca000000cb000000110000000000000001000000c9000000ca000000cb0000004572726f720000004cbc110048000000260b00000a00000070b0110068000000440000000d0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d61726974686d657469632f7372632f62696775696e742e72730000000000000000617474656d707420746f20646976696465206279207a65726f63616e6e6f74206669742061206e756d62657220696e746f2075313238616c7265616479206d757461626c7920626f72726f77656400001100000000000000010000003000000050b11100430000001e030000090000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f63656c6c2e7273616c726561647920626f72726f77656400110000000000000001000000cc00000050b11100430000006e0300000900000072656d696e646572206f6620646976206279206320697320616c77617973206c657373207468616e20633b20716564001100000008000000040000002f0000002db211006f000000680000001b000000726573756c742063616e6e6f742066697420696e20753132382f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d61726974686d657469632f7372632f68656c706572735f3132386269742e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d696f2f7372632f2e2e2f776974686f75745f7374642e7273000cb311002a000000696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64653a20000040b3110047000000606578745f736563703235366b315f65636473615f7265636f7665725f636f6d7072657373656460206f6e6c792072657475726e7320302c20312c2032206f7220333b20716564009cb2110067000000e303000012000000e4be11000000000052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e6748617368206e6f7420657175616c53797374656d2073746174652063757272656e746c792070726576656e74732074686973207472616e73616374696f6e5472616e73616374696f6e20646f6573206e6f742068617665207265717569726564207065726d697373696f6e73496e76616c69645472616e73616374696f6e20637573746f6d206572726f725472616e73616374696f6e20776f756c642065786861757374732074686520626c6f636b206c696d6974735472616e73616374696f6e2068617320616e20616e6369656e7420626972746820626c6f636b5472616e73616374696f6e20686173206120626164207369676e61747572655472616e73616374696f6e206973206f757464617465645472616e73616374696f6e2077696c6c2062652076616c696420696e2074686520667574757265496e6162696c69747920746f2070617920736f6d6520666565732028652e672e206163636f756e742062616c616e636520746f6f206c6f77295472616e73616374696f6e2063616c6c206973206e6f74206578706563746564556e6b6e6f776e5472616e73616374696f6e20637573746f6d206572726f72436f756c64206e6f742066696e6420616e20756e7369676e65642076616c696461746f7220666f722074686520756e7369676e6564207472616e73616374696f6e436f756c64206e6f74206c6f6f6b757020696e666f726d6174696f6e20726571756972656420746f2076616c696461746520746865207472616e73616374696f6e0000000000000000000000617474656d707420746f20646976696465206279207a65726f0000002cb611006c000000580000002b0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e7273417574686f727368697020446964536574556e636c6573426162652045706f6368496e6465784261626520417574686f726974696573426162652047656e65736973536c6f74426162652043757272656e74536c6f74426162652052616e646f6d6e65737342616265204e65787452616e646f6d6e65737342616265205365676d656e74496e6465784261626520556e646572436f6e737472756374696f6e4261626520496e697469616c697a656462616265736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214241424520696e686572656e742064617461206e6f7420666f756e6454696d657374616d7020496e697469616c697a65640000000000000030b811000e0000000000000040b8110001000000000000000000000048b8110001000000000000000000000050b811000600000000000000e4be110000000000000000000000000058b8110001000000000000000000000060b811000700000000000000e4be110000000000000000000000000068b8110001000000000000004e6577417574686f7269746965730000e3b811000d000000bfb8110024000000506175736564000098b8110027000000526573756d65640070b81100280000002043757272656e7420617574686f726974792073657420686173206265656e20726573756d65642e2043757272656e7420617574686f726974792073657420686173206265656e207061757365642e204e657720617574686f726974792073657420686173206265656e206170706c6965642e417574686f726974794c6973744772616e64706146696e616c6974792043757272656e7453657449644772616e64706146696e616c69747920536574496453657373696f6e4f6666636861696e206572726f723a206665746368696e67206e6574776f726b207374617465206661696c6564214f6666636861696e206572726f723a207369676e696e67206661696c6564214f6666636861696e206572726f723a206465636f64696e6720576f726b6572537461747573206661696c6564214f6666636861696e206572726f723a207375626d697474696e67207472616e73616374696f6e206661696c656421496d4f6e6c696e65205265636569766564486561727462656174734f6666656e636573205265706f72747342794b696e64496e64657800000000000034ba110007000000000000003cba11000200000000000000000000004cba110002000000000000004f6666656e636500ffba11000400000003bb11000e0000005cba110055000000b1ba11004e00000020546865726520697320616e206f6666656e6365207265706f72746564206f662074686520676976656e20606b696e64602068617070656e656420617420746865206073657373696f6e5f696e6465786020616e6420286b696e642d7370656369666963292074696d6520736c6f742e2054686973206576656e74206973206e6f74206465706f736974656420666f72206475706c696361746520736c61736865732e4b696e644f706171756554696d65536c6f7453657373696f6e2043757272656e74496e64657853657373696f6e205175657565644368616e67656453657373696f6e2044697361626c656456616c696461746f72730000000080bb11000a000000000000008cbb110001000000000000000000000094bb110002000000000000004e657753657373696f6e00001bbc11000c000000a4bb110055000000f9bb110022000000204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e53657373696f6e496e64657853657373696f6e2053746f72656452616e676500004cbc1100480000002c0b00000e0000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f736c6963652f6d6f642e72735374616b696e672056616c696461746f72436f756e745374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672043757272656e744572615374616b696e672043757272656e74457261537461727453657373696f6e496e6465785374616b696e672043757272656e74457261506f696e74734561726e65645374616b696e6720466f7263654572615374616b696e6720536c6173685265776172644672616374696f6e5374616b696e6720426f6e6465644572617300110000000000000001000000cd000000ce000000cb00000057bd110000000000110000000400000004000000cf000000d0000000d1000000a8bd11002d000000d5bd11000c000000e1bd110003000000617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a20ecbd11003400000064657374696e6174696f6e20616e6420736f7572636520736c69636573206861766520646966666572656e74206c656e6774687330be110049000000120000000d0000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f6d6163726f732f6d6f642e727300000000000000d4be11001000000000000000e4be1100000000000000000000000000e4be1100010000000000000000000000ecbe11000f00000000000000fcbe110001000000000000000000000004bf1100010000000000000045787472696e736963537563636573732ebf11002500000045787472696e7369634661696c65640021bf11000d0000000cbf11001500000020416e2065787472696e736963206661696c65642e44697370617463684572726f7220416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e52657175697265526f6f744f726967696e526571756972655369676e65644f726967696e426c6f636b46756c6c4261645369676e617475726543616e206e6f74206c6f6f6b7570526571756972654e6f4f726967696e0000000000000080bf11000c00000000000000e4be110000000000000000000000000077bf11000900000000000000e4be110000000000000000000000000064bf11001300000000000000e4be110000000000000000000000000053bf11001100000000000000e4be11000000000000000000000000009abf11000f00000000000000e4be1100000000000000000053797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e7369637357656967687453797374656d20416c6c45787472696e736963734c656e53797374656d2045787472696e7369634461746153797374656d204576656e74436f756e7474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e54696d657374616d702044696455706461746542616c616e636573204e6578744665654d756c7469706c696572466f72756d204e65787443617465676f72794964466f72756d204e6578745468726561644964466f72756d204e657874506f73744964466f72756d2043617465676f72795469746c65436f6e73747261696e74466f72756d2043617465676f72794465736372697074696f6e436f6e73747261696e74466f72756d205468726561645469746c65436f6e73747261696e74466f72756d20506f737454657874436f6e73747261696e74466f72756d205468726561644d6f6465726174696f6e526174696f6e616c65436f6e73747261696e74466f72756d20506f73744d6f6465726174696f6e526174696f6e616c65436f6e73747261696e74446561637469766174656449676e6f726564556e7374616b696e6752657761726452656c6174696f6e736869704e6f74466f756e64526563697069656e744e6f74466f756e64526577617264536f757263654e6f74466f756e644e6578745061796d656e744e6f74496e467574757265416c72656164795374616b656443616e6e6f745374616b655a65726f43616e6e6f745374616b654c6573735468616e4d696e696d756d42616c616e63654e6f745374616b656443616e6e6f74556e7374616b655768696c65536c61736865734f6e676f696e67416c7265616479556e7374616b696e67556e7374616b696e67506572696f6453686f756c644265477265617465725468616e5a65726f556e7374616b696e674572726f72110000000400000004000000d200000056657273696f6e656453746f726520436c6173734279496456657273696f6e656453746f726520456e746974794279496456657273696f6e656453746f7265204e657874436c617373496456657273696f6e656453746f7265204e657874456e74697479496456657273696f6e656453746f72652050726f70657274794e616d65436f6e73747261696e7456657273696f6e656453746f72652050726f70657274794465736372697074696f6e436f6e73747261696e7456657273696f6e656453746f726520436c6173734e616d65436f6e73747261696e7456657273696f6e656453746f726520436c6173734465736372697074696f6e436f6e73747261696e74456e746974794e6f744372656174656442794f7065726174696f6e63616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c7565a4c41100570000004a000000210000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d76657273696f6e65642d73746f72652d7065726d697373696f6e732d6d6f64756c652f7372632f6f7065726174696f6e732e727300a4c41100570000006200000025000000a4c4110057000000730000003100000000419c8ac7000b0800000000000000000041a48ac7000b08e4be110018b0110000b19904046e616d6501a89904d605000c6578745f74776f785f313238010e6578745f626c616b65325f32353602146578745f6765745f73746f726167655f696e746f03196578745f6765745f616c6c6f63617465645f73746f7261676504116578745f636c6561725f73746f72616765050f6578745f7365745f73746f72616765060e6578745f7072696e745f75746638070d6578745f7072696e745f686578080d6578745f7072696e745f6e756d09106578745f69735f76616c696461746f720a156578745f6c6f63616c5f73746f726167655f6765740b216578745f6c6f63616c5f73746f726167655f636f6d706172655f616e645f7365740c116578745f6e6574776f726b5f73746174650d106578745f737232353531395f7369676e0e166578745f7375626d69745f7472616e73616374696f6e0f156578745f6c6f63616c5f73746f726167655f73657410126578745f737232353531395f76657269667911146578745f656432353531395f67656e657261746512146578745f737232353531395f67656e657261746513106578745f73746f726167655f726f6f7414186578745f73746f726167655f6368616e6765735f726f6f7415106578745f636c6561725f70726566697816266578745f736563703235366b315f65636473615f7265636f7665725f636f6d7072657373656417126578745f656432353531395f76657269667918236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74190a6578745f6d616c6c6f631a086578745f667265651b0b6578745f74776f785f36341c076578745f6c6f671d176578745f737232353531395f7075626c69635f6b6579731e0c5f5f727573745f616c6c6f631f0a5f5f72675f616c6c6f63200e5f5f727573745f6465616c6c6f63210c5f5f72675f6465616c6c6f63220e5f5f727573745f7265616c6c6f63230c5f5f72675f7265616c6c6f6324135f5f727573745f616c6c6f635f7a65726f656425115f5f72675f616c6c6f635f7a65726f65642609686173685f746573742734616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a68326661656465366538356363393330382829636f72653a3a70616e69636b696e673a3a70616e69633a3a68393339353163376535643433626236342925616c6c6f633a3a666d743a3a666f726d61743a3a68363664643236666436663761663162312a36636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68356661653664326266376165363734612b23636f72653a3a666d743a3a77726974653a3a68663339663937666464356536343933662c48616c6c6f633a3a7261775f7665633a3a5261775665633c542c413e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303032393536373831386563373662392d08727573745f6f6f6d2e33636f72653a3a6f7074696f6e3a3a6578706563745f6e6f6e655f6661696c65643a3a68393135343765633731336333363531302f3a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a6862353138623437376563393464323339303b3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f636861723a3a6831336536316335313434326162613936313a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f666d743a3a68643564346562346661316135366238383239636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a6866343433663934323535353965623137332d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a6864356636313865643138383335646331344e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6837323331383637366562363039383337352f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a68313539643438633061303166646664633611727573745f626567696e5f756e77696e6437313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a68383638613836336362363134343234623835636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a68396130666533326262623136643737663943636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a68656439306635303832666261353430353a34636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68323763343161346339353839643134643b36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68346363383061663530333531643138303c2c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a68643962393264373763663062313061313d2e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a68383334333963373938343161353937313e323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68333332373535633663653862613838343f4a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686335313861646331303737633136643240323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a68373631366662616337373038323563374145636f72653a3a636861723a3a6d6574686f64733a3a3c696d706c20636861723e3a3a6573636170655f64656275675f6578743a3a68616265386536643961666639373831364249636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a683061663630373134663831666337626243453c636f72653a3a63656c6c3a3a426f72726f774572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683330383962396365303866366362393544483c636f72653a3a63656c6c3a3a426f72726f774d75744572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6836336330393734343762663034346338452e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a686335376663353432666431336432623346303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683633316535653636303437303138336447323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a683265386666313564623638366437343148533c636f72653a3a666d743a3a6275696c646572733a3a5061644164617074657220617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a6861623534363037663263343830626365492e636f72653a3a736c6963653a3a6d656d6368723a3a6d656d6368723a3a68616436353233663664353163303762334a3a636f72653a3a666d743a3a6275696c646572733a3a44656275675374727563743a3a6669656c643a3a68393265633432663831396264656637614b2f636f72653a3a666d743a3a57726974653a3a77726974655f636861723a3a68643363323364313838363864346337344c2e636f72653a3a666d743a3a57726974653a3a77726974655f666d743a3a68663731623165643538653866373835324d3a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a68643639333739323335323139303936344e3b3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f636861723a3a68393639323964343934646632663464324f3a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f666d743a3a68346230336539663261396261363937375039636f72653a3a666d743a3a6275696c646572733a3a44656275675475706c653a3a6669656c643a3a686663346336633532623135393534376351443c636f72653a3a666d743a3a417267756d656e747320617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a686164316338393536303432313532643952313c73747220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6832663935383663383433666432343732538001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a686136653663386665663535306231316454303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683139323137613362383632383637303255303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6832613930646563316434643965656564563e3c636f72653a3a666d743a3a4572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683032343632396430323262323336623957423c636f72653a3a7374723a3a557466384572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686236643730626162663235636539633458303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683936373238626666383837633964313359fe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68363136333132643263333430343261375afe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68373138323036663162663836623066635bfe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68623335313131646533646135633766305cfe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68663532666433623035643764323432325dfe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68666332326539353336356135643332355e6d3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a42547265655365743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68353934333135343061396335666131615f6b3c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c7533323e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68323830346338373938356434373131376048616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a68613166616133643066376339616139366153616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e617669676174653a3a6e6578745f756e636865636b65645f6465616c6c6f636174696e673a3a686432666431633136623663363435633062703c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a42547265655365743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686365343361633236386139303130393663713c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163745265663c7533323e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a683635343631363135613865646632303464703c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a42547265655365743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686639653764666163313833353238663865723c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a446966666572656e63653c543e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6838383966396364333062373965383961667b3c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a683530653035616565313162616535643167647375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f636c6173735f7065726d697373696f6e733a3a686136626239616339636234326339313468c7013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a436f6e74656e74576f726b696e6747726f757043726564656e7469616c73206173207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a43726564656e7469616c436865636b65723c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653e3e3a3a6163636f756e745f6861735f63726564656e7469616c3a3a6839366264303433653139313461643335693773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68386235313230663230353431643230336a587375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a6372656174655f636c6173733a3a68343266663130633964653765393030616b2b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a68303239313563646131646361343535326c7c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a6f7065726174696f6e733a3a706172616d657472697a65645f70726f70657274795f76616c7565735f746f5f70726f70657274795f76616c7565733a3a68353134613466383331646133626133626d6c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a646f5f7570646174655f656e746974795f70726f70657274795f76616c7565733a3a68366132343336613661643530656130376e5c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a646f5f6372656174655f656e746974793a3a68323865633830633130356564343830656f6b7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a646f5f6164645f736368656d615f737570706f72745f746f5f656e746974793a3a683233373539653135343335616462343370613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6861323961393534623930336465636336712b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a683039336564323765666436376536353172613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68623762313565636130376433303735367386017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a436c6173733e3a3a6465636f64653a3a68316638393138663338653337363733377448616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a6835663262663634613661313030393261753773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6839663135396232333330626431393461764a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6865613632613831396134343839323135774073726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6576656e745f696e64657865643a3a686130306165356663626163376531363178613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6863316431653936396565323164386436793773726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a626c6f636b5f6e756d6265723a3a68353963356631373664393634383134367a820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a68303165316633613635653339393735667b697375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a636c6173735f7065726d697373696f6e735f62795f636c6173735f69643a3a68333965343062623138653636663465637c7d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a68663934656134386336613831306439337d6f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a68363238383130323339323936366632667eca0173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e636f64654c696b654c696e6b6167653c504b65792c4e4b65792c4b65793e3e3a3a656e636f64655f746f3a3a68346339303533636337323435643234667f437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a683739633764666436353961336532633580017f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a68386164633830666365653563393734378101ca0173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e636f64654c696b654c696e6b6167653c504b65792c4e4b65792c4b65793e3e3a3a656e636f64655f746f3a3a686535383339353833643736326465373682014a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a686132633263313631356338623764346483017d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a683436383964333562633431343330646284013873726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a74616b653a3a683466663930646363333666656232343985016f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a68393637346438633332636537333266398601437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343033663032663631623162376639318701437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68653731313263643534633532666366358801437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a683536323331343236353534313030623489017573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6578697374733a3a68376436393033363831366463636661308a01457375627374726174655f76657273696f6e65645f73746f72653a3a4d6f64756c653c543e3a3a656e746974795f62795f69643a3a68313337303866386230636235616530398b01757375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f696e7465726e616c5f70726f70657274795f76616c7565735f7065726d69747465643a3a68366136343231613538623635353936358c015f7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a6465726976655f6163636573735f6c6576656c3a3a68353463313731366461363464386132318d0187017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a456e746974793e3a3a6465636f64653a3a68353534623337613130323431333837338e01443c616c6c6f633a3a7665633a3a5665633c543e20617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a68313239363830626338313739353061308f015a3c7375627374726174655f76657273696f6e65645f73746f72653a3a50726f706572747956616c756520617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a68353635396136376131336362613438639001577375627374726174655f76657273696f6e65645f73746f72653a3a4d6f64756c653c543e3a3a656e737572655f70726f70657274795f76616c75655f69735f76616c69643a3a68333632633262323533623238336337669101ff017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a7065726d697373696f6e733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a7065726d697373696f6e733a3a436c6173735065726d697373696f6e733c436c61737349642c43726564656e7469616c2c50726f7065727479496e6465782c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68333736396337613339303831616564669201e9017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a636f6e73747261696e743a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a636f6e73747261696e743a3a5265666572656e6365436f6e73747261696e743c436c61737349642c50726f7065727479496e6465783e3e3a3a6465636f64653a3a68346634653139633666316131633734649301b30173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a4c696e6b6167653c4b65793e3e3a3a6465636f64653a3a68613537373331653338623837363638399401b60173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a4c696e6b6167653c4b65793e3e3a3a656e636f64655f746f3a3a683461313138303362356335323739653295015a7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683535666637613233393566356365373796015c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a683966666463623465313635653162386597019a013c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a5f5f47657442797465537472756374436c6173735065726d697373696f6e734279436c61737349643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68393335373832646330303362653463619801b1017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a43616c6c3c543e3e3a3a656e636f64655f746f3a3a68383761636136623432656238356463669901db017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a6f7065726174696f6e733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a6f7065726174696f6e733a3a506172616d657472697a656450726f706572747956616c75653e3a3a656e636f64655f746f3a3a68323531353763666464343963306636339a0191017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a50726f706572747956616c75653e3a3a656e636f64655f746f3a3a68613863613065353130666636613061339b01483c5b545d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68643563663930633635383234666163339c0141616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365617263683a3a7365617263685f747265653a3a68383361326436303635643733393439669d010c436f72655f76657273696f6e9e0112436f72655f657865637574655f626c6f636b9f01a00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c45787472696e7369633e3e3a3a6465636f64653a3a6862346664386365646437633038376434a0017173726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c426c6f636b2c436f6e746578742c556e7369676e656456616c696461746f722c416c6c4d6f64756c65733e3a3a696e697469616c697a655f626c6f636b3a3a6838353632376165393238613666623237a1013573726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a626c6f636b5f686173683a3a6832376363333962336563383361343338a2019f013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f65787472696e7369633a3a556e636865636b656445787472696e7369633c416464726573732c43616c6c2c5369676e61747572652c45787472613e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6831313661663130363530663637616236a301693c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a6f7264657265645f747269655f726f6f743a3a6834356537346264353830653133393864a4017973726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c426c6f636b2c436f6e746578742c556e7369676e656456616c696461746f722c416c6c4d6f64756c65733e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6864666333326361363861643265656236a5012b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6862646666336137356364323530393937a6013873726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a74616b653a3a6835613734643564333265663535613737a701723c285475706c65456c656d656e74302c205475706c65456c656d656e7431292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a6865633234393639383162373038383030a8013373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a66696e616c697a653a3a6834643366366161653761353861643333a901723c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c486173683e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6863636462663065343865313834383232aa01363c5420617320636f72653a3a636f6e766572743a3a496e746f3c553e3e3a3a696e746f3a3a6862316163366430336533373464363939ab01303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6865623934666137353761633965366233ac0115436f72655f696e697469616c697a655f626c6f636bad01753c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c486173683e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834613662396232323535363434333666ae01114d657461646174615f6d65746164617461af016c3c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333262383261343231663536646133b001483c5b545d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6832343035616638386562633432353839b101683c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839356435313062313933633465613438b201683c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6861353163386663306336316533303337b3011c426c6f636b4275696c6465725f6170706c795f65787472696e736963b4019f013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f65787472696e7369633a3a556e636865636b656445787472696e7369633c416464726573732c43616c6c2c5369676e61747572652c45787472613e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838326534343537393237343238323135b501b00173725f7072696d6974697665733a3a7472616e73616374696f6e5f76616c69646974793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073725f7072696d6974697665733a3a7472616e73616374696f6e5f76616c69646974793a3a5472616e73616374696f6e56616c69646974794572726f723e3a3a656e636f64655f746f3a3a6865663562326236336333346262303732b6011b426c6f636b4275696c6465725f66696e616c697a655f626c6f636bb701543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832373139386364316634376665366436b801437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6861623931633961336432653561333236b901437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6863663639343766373934393866633437ba0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373bb016f3c636f72653a3a697465723a3a61646170746572733a3a526573756c745368756e743c492c453e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6833313161626361316535646336633439bc01613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6831393438313030653365386436323335bd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6830623662303936373737313162373832be01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6862626663376338633264666565323961bf01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834356436336232613636316135636339c001437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6865336330666631313866336532396661c101543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838356634356436346337373330313437c2011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473c3014b616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c4b2c563e3a3a696e736572743a3a6861353461323965323739326165356138c40118426c6f636b4275696c6465725f72616e646f6d5f73656564c5014073726d6c5f737570706f72743a3a7472616974733a3a52616e646f6d6e6573733a3a72616e646f6d5f736565643a3a6834316232653534316530636465363433c6012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ec701a5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f65787472696e7369633a3a556e636865636b656445787472696e7369633c416464726573732c43616c6c2c5369676e61747572652c45787472613e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c4c6f6f6b75703e3e3a3a636865636b3a3a6864626636333237336538623162366161c8016f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073725f7072696d6974697665733a3a776569676874733a3a4765744469737061746368496e666f3e3a3a6765745f64697370617463685f696e666f3a3a6838346662613930623938383535616332c9015673725f7072696d6974697665733a3a7472616e73616374696f6e5f76616c69646974793a3a56616c69645472616e73616374696f6e3a3a636f6d62696e655f776974683a3a6865653063323230316561333634333432ca01463c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835616431623666326166333637613231cb016c3c73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a56616c6964617465556e7369676e65643e3a3a76616c69646174655f756e7369676e65643a3a6865393765373266343065666334616632cc014273726d6c5f73797374656d3a3a436865636b5765696768743c543e3a3a636865636b5f626c6f636b5f6c656e6774683a3a6833323363343238313932663764366537cd013c73726d6c5f73797374656d3a3a436865636b5765696768743c543e3a3a636865636b5f7765696768743a3a6866353165373135393861306266613163ce017e3c73726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4368617267655472616e73616374696f6e5061796d656e743c543e2061732073725f7072696d6974697665733a3a7472616974733a3a5369676e6564457874656e73696f6e3e3a3a76616c69646174653a3a6861396466333232646365653462353536cf012b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6862646666336137356364323530393937d001214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b6572d1017473726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a76616c75653a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f7261676556616c75653c543e20666f7220473e3a3a6765743a3a6861363561383433346366653736366330d201a3017375627374726174655f6170706c69636174696f6e5f63727970746f3a3a737232353531393a3a3c696d706c207375627374726174655f6170706c69636174696f6e5f63727970746f3a3a7472616974733a3a52756e74696d655075626c696320666f72207375627374726174655f7072696d6974697665733a3a737232353531393a3a5075626c69633e3a3a616c6c3a3a6837336539656331393639363239396439d3013673726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a76616c696461746f72733a3a6835356134336161336133313537343339d4013b73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e3a3a69735f6f6e6c696e655f6175783a3a6830323437373938663331663063343336d5013973726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a63757272656e745f696e6465783a3a6862666633643839626338303832653632d60147636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207533323e3a3a666d743a3a6833656563666432343331623563306235d7011e4772616e6470614170695f6772616e6470615f617574686f726974696573d801543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832373735613137656566336362373334d90115426162654170695f636f6e66696775726174696f6eda013773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6866616431316364613262326163373431db014c3c5b543b2033325d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6863666166663666343561653761343737dc0121417574686f72697479446973636f766572794170695f617574686f726974696573dd01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839656533316466326165333763326163de01433c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6839363130326563653734333633303932df011a417574686f72697479446973636f766572794170695f7369676ee0011c417574686f72697479446973636f766572794170695f766572696679e1011d4163636f756e744e6f6e63654170695f6163636f756e745f6e6f6e6365e2012153657373696f6e4b6579735f67656e65726174655f73657373696f6e5f6b657973e301543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6833373130653833376164323936366265e4016f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6833373132363662373964656539336238e501543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839653638333839623963656531646264e601543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839636537666330356464303236393237e701543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831653330323861646439663437663166e801497375627374726174655f76657273696f6e65645f73746f72653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6861353535313430613834306462636231e901783c7375627374726174655f76657273696f6e65645f73746f72653a3a5f5f47657442797465537472756374456e74697479427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862336639383662356435626636336464ea01773c7375627374726174655f76657273696f6e65645f73746f72653a3a5f5f47657442797465537472756374436c617373427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861386266326666613564643535636134eb018e017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a50726f706572747956616c75653e3a3a6465636f64653a3a6831396335353130366431303232636561ec01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6862663432633738323237663866656634ed01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861656338653562626565663362326330ee014b7375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866663366346536396630323937663635ef01753c7375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a5f5f476574427974655374727563744d696e74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836363466653234646536643466643763f0014f73726d6c5f72616e646f6d6e6573735f636f6c6c6563746976655f666c69703a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6865316363343761306364333462633666f101303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6831373562393334636439386339383636f201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6832383161616430623730613338376233f301303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839363763346164313333656435613363f401303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839656439346633363031316362333562f5014a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6834303537323665346430326462643334f601ba016a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a446174614f626a6563743c543e3e3a3a6465636f64653a3a6862633462333331303863643036653733f7015f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863373031346462356331616666623430f801676a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a7570646174655f636f6e74656e745f6a756467656d656e743a3a6830363161316234623735653232643465f9015d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6836633732636539656231363061353231fa016d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831653034663936613533333135313135fb016e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a746f67676c655f646f73725f72656164793a3a6839363564636562613832613631346135fc016b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862646535613662333238653034636132fd01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863306139623362393132383864306430fe013673726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6c6f673a3a6833643033643532393336363135613463ff01463c616c6c6f633a3a7665633a3a5665633c543e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68343535373766343437636535633863308002703c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68303732626262313236656432346534328102463c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a683631303266613432386363313135336682022b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a68363132626530366331383363653534328302613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a683333376238303562356365383661343284023973726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683230633462303264326234386336393385023b73726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68616166663365323162636365666362398602663c73726d6c5f73797374656d3a3a5f5f476574427974655374727563744576656e74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636530313334323561326435326463638702693c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374426c6f636b486173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686430613662373061393462316666613788023173726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6469676573743a3a6837373639626365333139636131363664890283016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68663535646330353264616165646534338a022c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a68386161643062333962353838333536308b025b3c73726d6c5f73797374656d3a3a4d6f64756c653c543e2061732073726d6c5f6d657461646174613a3a4d6f64756c654572726f724d657461646174613e3a3a6d657461646174613a3a68616535643339346261653137633234328c02676a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a72656d6f76655f6163636f756e745f696e666f3a3a68306337396264346664613762353433338d026b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a69735f6163636f756e745f696e666f5f657870697265643a3a68356530356163633534336162636434368e02646a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68623666363936393338656261316561338f0298013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a5f5f4765744279746553747275637444656661756c744c69666574696d653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683330303438303730363630633633613290029f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a5f5f476574427974655374727563744163636f756e74496e666f42794163636f756e7449643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68626237373435666234633933663137349102626a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a686565656661623266613365323638646292023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6839343463303263393934313964306634930281013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a77697468647261773a3a683035333236323233373237353561303194027773726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a76616c75653a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f7261676556616c75653c543e20666f7220473e3a3a6d75746174653a3a686663323336303365626463386538613195023c73726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a683333393461303430333132303764656296026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a683136626430333430616538663964623597029d017375627374726174655f7374616b655f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f7374616b655f6d6f64756c653a3a5374616b653c426c6f636b4e756d6265722c42616c616e63652c536c61736849643e3e3a3a6465636f64653a3a68613031623731373831383565366333349802613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68646434623534353530373833386539649902820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a68303337333464633239323335363030629a023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68313538363433623735326462636237399b02a6017375627374726174655f7374616b655f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f7374616b655f6d6f64756c653a3a5374616b656453746174653c426c6f636b4e756d6265722c42616c616e63652c536c61736849643e3e3a3a656e636f64655f746f3a3a68303463336664316134346630313063399c023673726d6c5f626162653a3a4d6f64756c653c543e3a3a646f5f696e697469616c697a653a3a68663066333936383335666238613565619d023c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a68386237396132366633336532343066389e023573726d6c5f617574686f72736869703a3a4d6f64756c653c543e3a3a617574686f723a3a68303930386464316333616538663365639f023973726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7265776172645f62795f6964733a3a6837653463623938626566393133376561a0028a013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e496e697469616c697a653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f696e697469616c697a653a3a6863633862653531666363633131343831a102543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6836376138333033316439373066383732a2023c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6865303339303865643934323536646239a302437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6837373938633535333862393039373137a402623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6831373238633737383064613863656437a5023c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6864353634656663636661393033626231a6023e73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6865383838353363653362616538343931a7024773726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6864356135653866626231653634383565a80298013c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a4d696e696d756d506572696f6444656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834373766383838326536323033653162a9023173726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a6e6f773a3a6838356535643937623361396666303339aa02437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6834623863613439646634373938643433ab02467375627374726174655f7374616b655f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866366538626131663837373463613731ac02713c7375627374726174655f7374616b655f6d6f64756c653a3a5f5f476574427974655374727563745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832343131613832386132366335303563ad02487375627374726174655f7374616b655f6d6f64756c653a3a4d6f64756c653c543e3a3a696e6974696174655f756e7374616b696e673a3a6837373737383763333139386566306665ae024b73725f7072696d6974697665733a3a7472616974733a3a4163636f756e744964436f6e76657273696f6e3a3a696e746f5f6163636f756e743a3a6864363165306337303138326264386532af02ae013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a436f6e74656e74576f726b696e6747726f75705374616b696e674576656e7448616e646c6572206173207375627374726174655f7374616b655f6d6f64756c653a3a5374616b696e674576656e747348616e646c65723c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653e3e3a3a756e7374616b65643a3a6835326163336636633462356233306539b0024873726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6836343666323336613663663137666436b1025173726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6865656564306139383966636361323534b202a7013c73726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a5472616e73616374696f6e4261736546656544656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839306235363936653163316131323233b302593c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839356634333966303036346634623433b4025c3c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6836633336323666626239336336366161b5025c3c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6837346265316439316335363537636563b6025b3c73726d6c5f696e64696365733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a5374617469634c6f6f6b75703e3a3a6c6f6f6b75703a3a6837623237626665346536616231313238b7024a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a6830616632323436353239306466363336b8024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a6837386339613464653965336632623632b9024c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a6834383161643332313130306234613932ba024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a6864623930383361653433663938396136bb024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a6839336639346132343263343030613332bc024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6772616e6470613a3a6864373334626562346661323936356466bd024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696d5f6f6e6c696e653a3a6863623663306135623336623564396662be024c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6f6666656e6365733a3a6836333065663364613934373736633836bf02486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6831666337653835373765663338613733c0024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6836613035393032323431346264643961c1024c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6835616566303239386232323332646133c2025b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6837333065653033326132383433643637c302596a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6834343439353561356262623030646564c4024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a6836353836653537353462626339626534c502486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a6831326438343138643263353039356136c6024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d626572733a3a6861326130323339613831636535333932c702496a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666f72756d3a3a6861616161343332373934316130396164c8024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d6967726174696f6e3a3a6838646333396434323039383337306262c9024a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6163746f72733a3a6863306235326265343934396434643061ca025d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f747970655f72656769737472793a3a6866613037613136336134336233626165cb02526a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6469726563746f72793a3a6839663438653663353930613036326266cc02606a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f73746f726167655f72656769737472793a3a6866613630363737316164643663313335cd024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646973636f766572793a3a6838303730356439336263653438313962ce02536a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f76657273696f6e65645f73746f72653a3a6863303365393965386130613034306539cf024e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f6e74656e745f77673a3a6832336430383231366364636565343235d0028a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864613934373730643037623932323461d1024a73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a726561645f686561643a3a6834323634663965626631343435663837d2026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6833393365613036333430623438356635d3023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6866646232343461363034353062613564d4027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6833303731353139613837333133656662d5026c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6368616e6e656c5f69645f69735f76616c69643a3a6836393937636530663933303131626566d602676a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f63757261746f725f6578697374733a3a6831643530313836663234396231363563d7027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6839666432383630383038616538643133d802d1017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a4170706c69636174696f6e3c4f70656e696e6749642c426c6f636b4e756d6265722c5374616b6549643e3e3a3a6465636f64653a3a6834333266616566666662373137313366d902c7017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a4170706c69636174696f6e53746167653c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6832613339333136643533653463396634da0282016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c3e3a3a656e636f64655f746f3a3a6835623263366139626165393534366262db02bd016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43616c6c3c543e3e3a3a656e636f64655f746f3a3a6838313037383362643064656561353734dc023f7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64655f746f3a3a6830373063363331393734613138306563dd02b0016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a55736572496e666f3e3a3a656e636f64655f746f3a3a6834346566346438353866366364623062de027b3c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6833613032323632633764396165326331df02723c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163745265663c753132383e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830323630316439343531643434326130e002437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6864333563366235303938643136306532e10253616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e617669676174653a3a6e6578745f756e636865636b65645f6465616c6c6f636174696e673a3a6839323938316131626334636432373639e20253616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e617669676174653a3a6e6578745f756e636865636b65645f6465616c6c6f636174696e673a3a6862303039626639666464653562633030e302576a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a69735f636f756e63696c6f723a3a6862363938643737346438356339316434e402543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861356432343065613235623339386163e5027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6862386636613561643539623234636664e6026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6836346563323935653839626435663536e7026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6838303463313161323932646330376537e8023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6864616262663037393931646439383461e9027d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a6863356431326332646537643662626636ea026e3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a636c6f6e655f737562747265653a3a6861383935343537366133376136326365eb02820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a72656d6f76653a3a6864326262383739366562623864366637ec02820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6837626165636662393963663831336665ed02820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6861326437306334623661333332326165ee023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6831363735333136636265626232613134ef026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6832613862643766666235613635393965f002437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862343633303433336134313365356638f1027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6864373263383035343839633633313464f2027273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a6864356633643130646563346434363636f30289013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6465706f7369745f6372656174696e673a3a6833346231333430326333326462303833f4027773726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a76616c75653a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f7261676556616c75653c543e20666f7220473e3a3a6d75746174653a3a6861313034356432376130666265353336f502613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830643766663230373931336462376265f60286016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a53657373696f6e4b6579733e3a3a6465636f64653a3a6839633637383133353138633830653462f702596a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a6163746976655f636f756e63696c3a3a6862313636376466336165323261326263f8024c3c5b543b2031365d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6833616232336332333763623434623161f90281013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6839646634613262343235393764386231fa0281013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7472616e736665723a3a6838363631303665373637333031366562fb025b3c73726d6c5f7374616b696e673a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6866633131646362303831633262663032fc023273726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6c65646765723a3a6833353163613736633662346434333965fd026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a646f75626c655f6d61703a3a53746f72616765446f75626c654d61703a3a73746f726167655f646f75626c655f6d61705f66696e616c5f6b65793a3a6863643462623265356366626338616266fe02586a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a6163746f725f62795f6163636f756e745f69643a3a6862373765616163323463326536633234ff025c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a69735f6d656d6265725f6163636f756e743a3a68633237643738616164663438376335618003716a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a656e737572655f646174615f6f626a6563745f747970653a3a686531636136316262396161623766356581037273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a686536396139653139343662343230333482034a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68333331303133316163393936393761318303743c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a68323664316339363037643361376438368403653c7375627374726174655f666f72756d5f6d6f64756c653a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a683530613734316366316431326261323085037a3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6837313236396630656463396533316462860386013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a683639373936396366613161646166633287033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a683435366537303065303966373638636188037b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6836353061323737623335323137383535890385013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68656631356434616634366130356237368a038a013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a68633636393566613634663934386162368b034a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68623764613734636361653739303833648c03566a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a70726f706f73616c733a3a68376536366434303837313831303234648d03656a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a69735f766f74696e675f706572696f645f657870697265643a3a68353732386433376132653739613164318e0391013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a68656133653663396262376263356161658f038c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a68346566613836663537343264356531379003646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a683562383061303239643532613830333591035a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f70726f636573735f766f74653a3a683035306265613539313139353835373992036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a646f75626c655f6d61703a3a53746f72616765446f75626c654d61703a3a73746f726167655f646f75626c655f6d61705f66696e616c5f6b65793a3a686631363733313363366630316466636493033f73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f667265655f62616c616e63653a3a686265613636333134363530336234366494034373726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f72657365727665645f62616c616e63653a3a686531616530336434656561646437353995037f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c3e3a3a6465636f64653a3a68373533343461633534663234333464359603783c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683033373036353039333462336634623297036c3c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c753132383e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68326365623763303731303339343938399803ad016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a55736572496e666f3e3a3a6465636f64653a3a68386435616237353061663934326536659903bc016a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c65506172616d65746572733c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68303966613637383338613435393932659a03543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68363266393434306464363630326238399b03543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68373638346533356364616232623130309c03df016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4f70656e696e67506f6c696379436f6d6d69746d656e743c426c6f636b4e756d6265722c42616c616e63653e3e3a3a6465636f64653a3a68333839373536633764643665623437619d03483c5b543b20385d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68306339613565613339313165663139379e033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68623931333065623233313539616161639f03543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6865306539303665633630333030633439a0033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6833646131393137373631656432393732a1033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6831663739353863633266343665383936a2033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6864646465353132653532626466623661a303543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6862333336303361326563353637633832a403a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a6834346134616662646161316463666538a5035a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746172745f656c656374696f6e3a3a6832393234356138343331326533313734a603a1016a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163746f723c543e3e3a3a6465636f64653a3a6834613331303266643538303963643866a703596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a6d656d6265725f70726f66696c653a3a6865613236656135356161393665353132a8038e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6465706f7369745f696e746f5f6578697374696e673a3a6832346439323532386330333266646433a9033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6866653530666436396361383634363664aa035173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6864643330383132613437633961376433ab03437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862663363613339326535393931643461ac036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6865333538376438373133643361616262ad033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6865343234353238363831633137323361ae03aa017375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a6d696e743a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a6d696e743a3a4d696e743c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6835636632323462383662373638326264af033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6838653463316561313236323866353636b0036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6862633331383363356332343966653838b1035173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6861333939663634343464306465613061b2034a73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a726561645f686561643a3a6838363131306338656334373239633639b30384013c73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e756d657261746f723c4b2c562c473e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6834623736313336323465353035376135b403820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6831326131336362666166636563643061b503633c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a666f6c643a3a6831343531383735643662653866663162b603633c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a666f6c643a3a6863303332396138393935643937353232b703613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6837363563353836313135323136663564b803e3016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c4163636f756e7449642c42616c616e63652c426c6f636b4e756d6265722c486173683e3e3a3a6465636f64653a3a6833383066306261306134613165613034b903b5017375627374726174655f636f6e73656e7375735f626162655f7072696d6974697665733a3a6469676573743a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f636f6e73656e7375735f626162655f7072696d6974697665733a3a6469676573743a3a526177426162655072654469676573743e3a3a6465636f64653a3a6861393430666537616561666332316539ba033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6838633638613137623262616236376137bb03d5017375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a52657761726452656c6174696f6e736869703c4163636f756e7449642c42616c616e63652c426c6f636b4e756d6265722c4d696e7449642c526563697069656e7449643e3e3a3a6465636f64653a3a6862646536646661336465636131386364bc03437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6866363438366633663938616530653933bd03517375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863393537616336393732373565646562be0389013c7375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a5f5f4765744279746553747275637452657761726452656c6174696f6e73686970733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866663665646531633435386338333836bf0380013c7375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a5f5f47657442797465537472756374526563697069656e74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861343136326333336337623965363065c003820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6863646531393764343332653464396261c1034a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6861643731663564343532376630316537c2037f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6837643666663138343332386163363131c30348616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a6837363633373436326639333561373532c4035f7375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a7472795f746f5f696e6974696174655f6170706c69636174696f6e5f646561637469766174696f6e3a3a6839393563383666643762383535353266c503673c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6836653038353062336139626433313438c603673c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6863333337643133333932326636656430c703736a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f63757261746f725f6170706c69636174696f6e5f6578697374733a3a6835633164353534643437313739396262c803666a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a63616e5f72656769737465725f726f6c655f6f6e5f6d656d6265723a3a6863656364613630323839373837366133c9033973726d6c5f626162653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866333035656531393334353432303738ca03683c73726d6c5f626162653a3a5f5f4765744279746553747275637452616e646f6d6e6573733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865373962313137306438383264646461cb034273726d6c5f626162653a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6861353735396561396139623735356439cc0397013c73726d6c5f626162653a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a4578706563746564426c6f636b54696d6544656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836653562636139663130366138633066cd0393013c73726d6c5f626162653a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a45706f63684475726174696f6e44656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834353832363739653564343435316161ce035d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831383233353135343863396634336263cf038e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832653536313264396634323830323636d0038b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863643835653238333839363931343535d10390013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865393831633765353334623038333363d20393013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838306637373839306130373432386264d3038c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834313239393363343733373332623930d4038e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861373031633363316463386166396664d5038e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838363335343832663265386536356532d60391013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865643336633663386262313336356338d7038a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836303432643862623661646465323531d80390013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839336263396531326135393031633938d9035b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862663261616637326166396438663661da03d2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c4163636f756e7449642c5374616b652c486173682c566f74653e3e3a3a6465636f64653a3a6835323632626131393233376336623565db03556a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831633738373565663536646265613030dc0389013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f5f47657442797465537472756374526571756573744c69666554696d653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835373034323862616535623963666462dd03566a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a69735f726f6c655f617661696c61626c653a3a6861313935373139633531333261633461de035b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a656e737572655f726f6c655f706172616d65746572733a3a6839333633323463306434666439616564df0382013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f736c6173683a3a6838393563643130353437373034376664e0037e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a6866643765646636656566626531626239e10389013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a4c6f636b61626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7365745f6c6f636b3a3a6830376436663235336361323364373130e203526a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a6170706c795f756e7374616b653a3a6862333336313166373262613832383135e303513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6861643262396564643830663332613134e403536a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6866643263636131343062663563373531e5037d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a6862666536613062313437333935373131e603437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6866363031393532636439393864323839e703b60173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a4c696e6b6167653c4b65793e3e3a3a656e636f64655f746f3a3a6831336566633831643438343633306435e803443c616c6c6f633a3a7665633a3a5665633c543e20617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a6864373835623535323863393335656335e903513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6834323138316437313765633631666665ea03513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6866646261326232383036663866376135eb036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6831323531323534323937643939363366ec036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6835386233343233383339636361386561ed036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6837336331626664633266326134323363ee036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6839393066653532623166393461383762ef0396026a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f723c4163636f756e7449642c52657761726452656c6174696f6e7368697049642c5374616b6549642c426c6f636b4e756d6265722c4c65616449642c43757261746f724170706c69636174696f6e49642c5072696e636970616c49643e3e3a3a6465636f64653a3a6863633935663234306533633762353134f003e3016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4c6561643c4163636f756e7449642c52657761726452656c6174696f6e7368697049642c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6832373864316132633032613663313564f103e6016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4368616e6e656c3c4d656d62657249642c4163636f756e7449642c426c6f636b4e756d6265722c5072696e636970616c49643e3e3a3a6465636f64653a3a6862643235373639383835396433636131f203f8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f724170706c69636174696f6e3c4163636f756e7449642c43757261746f724f70656e696e6749642c4d656d62657249642c4170706c69636174696f6e49643e3e3a3a6465636f64653a3a6864643832306137666539326130353761f3035173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6834613236313931386661373462303933f403437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6834343638616437373736653830656534f503e2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f72526f6c655374616b6550726f66696c653c5374616b6549642c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6836643166623764653739366532666431f603d3016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f72526f6c6553746167653c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6835383838313332666230653163353366f703f5016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f724f70656e696e673c4f70656e696e6749642c426c6f636b4e756d6265722c42616c616e63652c43757261746f724170706c69636174696f6e49643e3e3a3a6465636f64653a3a6836386231633162316234313963373837f803cf017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5374616b696e67506f6c6963793c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6839653265306261646661393333636231f903e9016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4368616e6e656c3c4d656d62657249642c4163636f756e7449642c426c6f636b4e756d6265722c5072696e636970616c49643e3e3a3a656e636f64655f746f3a3a6838656464643766623762313936373830fa03e2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4f70656e696e67506f6c696379436f6d6d69746d656e743c426c6f636b4e756d6265722c42616c616e63653e3e3a3a656e636f64655f746f3a3a6830393433623632316165353934363732fb03d2017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5374616b696e67506f6c6963793c42616c616e63652c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6832643737386630353065656365393034fc03636a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a6164645f6e65775f7072696e636970616c3a3a6863346664643032383135643663333932fd03626a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863613862613538646365383633633362fe0398013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f47657442797465537472756374556e7374616b657242795374616b6549643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831326630393936633463626462373636ff0392013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f4765744279746553747275637443757261746f72427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862323336373735653631623637643430800492013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f476574427974655374727563744368616e6e656c427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686134623933373231623763303436626681049d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f4765744279746553747275637443757261746f724170706c69636174696f6e427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862336431653335636132613264633630820499013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f4765744279746553747275637443757261746f724f70656e696e67427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683930393033356333386566613564643183048f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f476574427974655374727563744c656164427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623663326236333266653936643634658404af016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a50726f66696c653c543e3e3a3a6465636f64653a3a68376232336631373034663861313931618504706a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6368616e6e656c5f68616e646c655f69735f76616c69643a3a68633863323963333633306162386136368604820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a683933653564643336643339343833336187046d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6368616e6e656c5f6f776e65725f7369676e65643a3a683166333634376266623435613665343788045a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a756e72656769737465725f726f6c653a3a68383862656239393561646439343338618904626a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a72656769737465725f726f6c655f6f6e5f6d656d6265723a3a68356364366665396535346232323266628a04606a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a7570646174655f6368616e6e656c3a3a68363764653937666437323665653762398b046e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6163746976655f63757261746f725f7369676e65643a3a68306264636436326361326566356632638c046b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6f726967696e5f69735f7365745f6c6561643a3a68353564316131306632643134663662338d043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68396238666362613363316565663134348e045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a68313462323935666133646266376130398f046f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f63757261746f725f6f70656e696e675f6578697374733a3a686430383561636265313738386266303690047f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a683962623734343231323966336539316191044b7375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a64656163746976655f6170706c69636174696f6e3a3a68633431636435626537323430343032399204646a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a646561637469766174655f63757261746f723a3a68623266336265636633363761366265379304820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a683263663831363230373435326230323294048c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f63616e5f77697468647261773a3a68303434653430336636613462663164339504517375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f63616e5f6164645f6170706c69636174696f6e3a3a68336162343263613031623533623163669604567375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a696e66616c6c69626c655f6f70745f7374616b655f696e6974696174696f6e3a3a68633933623036386661393639343338619704303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683336636339323262373634363834383198045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a686131663538356565316336616434396399043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68626238316333633561353364363663649a04613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68376563313238643938633336646136329b047d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a68636533653932646266313035343933349c045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a68383130666337396366393961373763389d04437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68613862393865316639353531303666349e043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68323761333362316238616664363035659f043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6862313931653931376164306665643564a004303c282920617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6830663233306363623135316135373830a104606a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6835306164303634626636613365616437a2043673726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6b696c6c5f73746173683a3a6830393161663361343862383563393130a304820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a72656d6f76653a3a6865393035346366643966353932396436a404820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a72656d6f76653a3a6838343732343737323636663063613830a5046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6836356266643336313431376163636166a6046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6830656538383165303964343563656465a7043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6836343631313932623363313636313335a8043a73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838393134623730653532313238623435a9043c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6864326162626133656564386466633530aa04703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374457261536c6173684a6f75726e616c3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866633937656636616232363034616535ab04773c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637443757272656e74457261506f696e74734561726e65643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865316639363861323665333166646165ac04703c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637443757272656e7445726153746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866336435626163313535313135366462ad04683c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563745374616b6572733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861353132383838363731346564363739ae046b3c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838356332303463356132643138303735af04763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865643734616535636236353464616664b0044073726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a736c61736861626c655f62616c616e63655f6f663a3a6831383433343138623963323332303230b1043273726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a626f6e6465643a3a6830343034316461356661396637383361b204870173726d6c5f7374616b696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a5374616b696e674c65646765723c4163636f756e7449642c42616c616e63653e3e3a3a6465636f64653a3a6839363962623163386331386334303333b3044573726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6865303664366465616336306533353732b40498013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a426f6e64696e674475726174696f6e44656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862306236646533646438363463623730b50497013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a53657373696f6e7350657245726144656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863333734303330313230616266626239b6043373726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7374616b6572733a3a6863643361326639396561373733323936b704820173726d6c5f7374616b696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a4578706f737572653c4163636f756e7449642c42616c616e63653e3e3a3a6465636f64653a3a6865356364373830313639613137623764b8046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6864346563636433353361383063323433b904c9017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a4f70656e696e673c42616c616e63652c426c6f636b4e756d6265722c4170706c69636174696f6e49643e3e3a3a6465636f64653a3a6836663262353139303532333835646465ba043373726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6e65775f6572613a3a6861323063363763646165653237313033bb043773726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d616b655f7061796f75743a3a6839343236373039346333666266393735bc043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6834393339353235356462383935333937bd0484013c73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e756d657261746f723c4b2c562c473e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6866623533316465656433396533396332be0484013c73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e756d657261746f723c4b2c562c473e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6862303937373266633362306238643562bf046a636f72653a3a6f70733a3a66756e6374696f6e3a3a696d706c733a3a3c696d706c20636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653c413e20666f7220266d757420463e3a3a63616c6c5f6f6e63653a3a6835653562626666663533376330386330c004613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6833343536313235626535643739613436c1044673725f61726974686d657469633a3a68656c706572735f3132386269743a3a6d756c7469706c795f62795f726174696f6e616c3a3a6865376337343031363137383536333334c2043d73725f61726974686d657469633a3a68656c706572735f3132386269743a3a746f5f6269675f75696e743a3a6864343335633066373766396464373463c3043773725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6d756c3a3a6833306638363834343738643865326266c4044b3c73725f61726974686d657469633a3a62696775696e743a3a42696755696e7420617320636f72653a3a636d703a3a4f72643e3a3a636d703a3a6832326331623133326634643430623439c5043973726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7570646174655f6c65646765723a3a6838313465316263373232363733326463c6045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6862383737306565363436656133343566c704437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6863646261343664363365633731633739c8045b3c73725f7072696d6974697665733a3a4d756c74695369676e61747572652061732073725f7072696d6974697665733a3a7472616974733a3a5665726966793e3a3a7665726966793a3a6832386434323932353537656634623437c9044b7375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a6765745f6f70745f7374616b655f616d6f756e743a3a6861663931313432346331346333333164ca04303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839356161623539313330633930623863cb04c9017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a4f70656e696e6753746167653c426c6f636b4e756d6265722c4170706c69636174696f6e49643e3e3a3a656e636f64655f746f3a3a6862363563643463636432303933313231cc04477375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866373538666336653531396261356232cd047b3c7375627374726174655f686972696e675f6d6f64756c653a3a5f5f476574427974655374727563744170706c69636174696f6e427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861616635623632303431396331663638ce04773c7375627374726174655f686972696e675f6d6f64756c653a3a5f5f476574427974655374727563744f70656e696e67427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866313434306661396131306233363737cf047573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6838373038666234383233623639383665d004ca0173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e636f64654c696b654c696e6b6167653c504b65792c4e4b65792c4b65793e3e3a3a656e636f64655f746f3a3a6837316135643036323061323462626365d1043473726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a6c6f636b733a3a6866636334326230653937633535356364d2047573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6861326135383036393834303961376336d304516a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6837386235616637326163346536373765d404693c7375627374726174655f7374616b655f6d6f64756c653a3a6572726f72733a3a5374616b65416374696f6e4572726f723c4572726f72547970653e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6864666232636532333434376534616433d504303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6838623537666135336135323865623133d6043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6864323862626538663866333166643563d7047273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a6834333962636531663432373065653465d804437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6833623430646234623063376666313330d9043c73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6861363365353439663634613430366638da043e73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866396430323461653236313763623766db04713c73726d6c5f696d5f6f6e6c696e653a3a5f5f47657442797465537472756374417574686f726564426c6f636b733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836633430363766383335333531333732dc04303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839353933313239333762323633393661dd04303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862393261353063353062366532633231de043773726d6c5f7375646f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865313639323230323363656264366133df043973726d6c5f7375646f3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6835383964353739396365383932643336e004613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834366165613164363131313331633065e104516a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746167653a3a6866303031313064626163636561316664e2043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6863383561316332353165386238633437e304646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a6831643264326636643361333866383635e4045c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6861646664343435653361636636626336e50490013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744e65775465726d4475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838323839633961313730366165613839e6048f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830643261396339313837333130643662e7048c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862666330656239663866346564343032e80486013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839363732643735666266313938306334e9048a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839623861636263623635646132633835ea048e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a6837333439333362656538623938633439eb047273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a6837353265363865366637346562373663ec045d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a74656172646f776e5f656c656374696f6e3a3a6830303238663162383335653630383961ed04613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830313534313338333932633165643463ee045b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a64726f705f6170706c6963616e74733a3a6866383533356232383634363764616364ef0448616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a6831623465383438383735633232633761f0045a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6866643438383937633735643363633061f1044c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6861346236663465323933376237386339f2047e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833633637386132316564636166633262f3046c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e2061732073726d6c5f6d657461646174613a3a4d6f64756c654572726f724d657461646174613e3a3a6d657461646174613a3a6837623334643731656634303964656666f4044a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838336232313461633765643632376437f5043c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6863306432323933623663303962353162f6043d73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a63616c6c5f66756e6374696f6e733a3a6865616134633665643565363066616566f7043f73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a73746f726167655f6d657461646174613a3a6862633934383239326366363532393765f8046f3c73726d6c5f62616c616e6365733a3a5f5f476574427974655374727563744672656542616c616e63653c542c493e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836383464653431323861626531386162f9044873726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6833306532616136346334643032353136fa043d73726d6c5f6f6666656e6365733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831656533636463353135633832333761fb04743c73726d6c5f6f6666656e6365733a3a5f5f476574427974655374727563745265706f72747342794b696e64496e6465783c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837363565636666366633623665303665fc04c7013c73726d6c5f6f6666656e6365733a3a4d6f64756c653c543e2061732073725f7374616b696e675f7072696d6974697665733a3a6f6666656e63653a3a5265706f72744f6666656e63653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c542061732073726d6c5f6f6666656e6365733a3a54726169743e3a3a4964656e74696669636174696f6e5475706c652c4f3e3e3a3a7265706f72745f6f6666656e63653a3a6837613139353965356363633833393834fd046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a646f75626c655f6d61703a3a53746f72616765446f75626c654d61703a3a73746f726167655f646f75626c655f6d61705f66696e616c5f6b65793a3a6838303636306137373533366331303263fe04613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6834356266623730353030393565666536ff0468636f72653a3a6f70733a3a66756e6374696f6e3a3a696d706c733a3a3c696d706c20636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4d75743c413e20666f7220266d757420463e3a3a63616c6c5f6d75743a3a686330656332343534313364313730663980057573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a683964653163363238343531636166353181053b73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a7363686564756c655f6368616e67653a3a68316665393261663531663036343831668205683c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a73697a655f68696e743a3a68333733636364343764616565656664378305633c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a683465313133373331346364633064303084053e636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723a3a6e74683a3a683438333831616161633166386337376485053a73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683937343237316336323239333763356686053c73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68336166366431353535656633626533638705663c73726d6c5f6772616e6470613a3a5f5f4765744279746553747275637453746174653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683032666333393131316264386437643488054373726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683061326164646166336666363436613889054e73726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a68346532643039313164316134643336658a059c013c73726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a57696e646f7753697a6544656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68643364383036383435346139613263658b0548616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a68326639623431653665343430373563378c053c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a68323461626236366164303030393832308d05447375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68626266386231633837303039336564348e05467375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68373639623630663066366566656330328f057d3c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f47657442797465537472756374506f737454657874436f6e73747261696e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68353134663763623131316263623365629005733c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f47657442797465537472756374506f7374427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68366437323936373638356366653532349105483c5b545d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68626365303632326131643530613961669205753c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f47657442797465537472756374546872656164427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68313562613233306630643264653266359305773c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f4765744279746553747275637443617465676f7279427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686161393535643837303931653934653694059d017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a506f73743c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a68376661316434666366633166303062619505a9017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a4d6f6465726174696f6e416374696f6e3c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a683461383761313333353930656535623496059f017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a5468726561643c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a68363830646134616639316534626239379705a1017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a43617465676f72793c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a683264396564616239303161313733363098054a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a683332646263316434313864383633353499054a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68336365366166333731633437366339649a05687375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f76616c69645f63617465676f72795f616e645f6275696c645f63617465676f72795f747265655f706174683a3a68303438393163623431626138323139309b054a7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f7468726561645f6578697374733a3a68646663626539636433356239383937319c054e7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f7468726561645f69735f6d757461626c653a3a68323930393663363065373037616636339d054c7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f706f73745f69735f6d757461626c653a3a68376434656131663361383232353161369e05427375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a6164645f6e65775f706f73743a3a68306639316137306366656435643032379f054f7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a5f6275696c645f63617465676f72795f747265655f706174683a3a6831333362343666366234343561666436a0052b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6830306238623364316633316139316264a1053a73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862363135333830383836353931373466a2053c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866663764316536666166363338663331a305703c73726d6c5f617574686f72736869703a3a5f5f47657442797465537472756374446964536574556e636c65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865616332313135303435336361623563a4054573726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6832383131303635323033616235633439a50599013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a44454455505f4b45595f50524546495844656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838333139333230623634323262643630a605603c73726d6c5f737570706f72743a3a686173683a3a54776f783634436f6e6361742061732073726d6c5f737570706f72743a3a686173683a3a53746f726167654861736865723e3a3a686173683a3a6863613836336635313566386164623737a7053d73726d6c5f617574686f72736869703a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6861363632373565396462633164343562a8053f73726d6c5f617574686f72736869703a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6837316561326433343331363830396462a9057573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6836613438353562656437663261373334aa056a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866653239623531663464393734316163ab0599013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744e657874506169644d656d626572736869705465726d7349643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835353262316330303734343164643136ac05686a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838373934393963366137366539393831ad055b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863646533313430356539663331386231ae0592013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617841626f7574546578744c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830366439306662373731346632383162af0592013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d61784176617461725572694c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866333332336637303961636239376433b0058f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617848616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861323936633663663930646338366535b1058f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d696e48616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837336639663564316631653861626534b20599013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f47657442797465537472756374416374697665506169644d656d626572736869705465726d733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832663130373466663739623962353564b305676a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a636865636b5f757365725f726567697374726174696f6e5f696e666f3a3a6837346462643261386436653831383164b405586a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a696e736572745f6d656d6265723a3a6836623330333865376238643435646462b505606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f6176617461723a3a6865343362636664656537663065393730b605646a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f61626f75745f746578743a3a6832326133613461656666343466633066b705606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f68616e646c653a3a6835336231316665336436623631616135b8057573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6834623638303031313237303131373833b905596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6833656536633238616339356664383131ba05383c6c6f673a3a4e6f704c6f67676572206173206c6f673a3a4c6f673e3a3a656e61626c65643a3a6831636566376361353635383838356463bb05343c6c6f673a3a4e6f704c6f67676572206173206c6f673a3a4c6f673e3a3a6c6f673a3a6831656634393539323431633436343630bc05363c6c6f673a3a4e6f704c6f67676572206173206c6f673a3a4c6f673e3a3a666c7573683a3a6862653965653039343162326130386539bd053a73725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6c73747269703a3a6831653662393366623635303435306231be053773725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6164643a3a6838663430326566653964373836663731bf054473725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6469763a3a7b7b636c6f737572657d7d3a3a6866366561643639393463373532386439c005513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6830616235393966326432343436353732c105323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6830366539363537633830633139316664c2054e73725f696f3a3a696d703a3a6578743a3a65787465726e5f66756e6374696f6e735f686f73745f696d706c3a3a6578745f7072696e745f757466383a3a6838373936363064383334613639616366c305323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6830343432346562373937353734643231c4054c3c73726d6c5f737570706f72743a3a64656275673a3a52756e74696d654c6f67676572206173206c6f673a3a4c6f673e3a3a656e61626c65643a3a6830333833663261613333363338343363c505483c73726d6c5f737570706f72743a3a64656275673a3a52756e74696d654c6f67676572206173206c6f673a3a4c6f673e3a3a6c6f673a3a6838653235373765383264613537643839c6053a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a6862393961343264623235356465353566c7053b3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f636861723a3a6832313536333138333362333863323063c8053a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f666d743a3a6863353964393830323264633261623933c9055d3c7375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a526577617264734572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839333138356239666565303765653135ca05303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839666164333365373937616335323030cb052b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6866313835326234313266616230383639cc05066d656d736574cd05066d656d637079ce05076d656d6d6f7665cf050462636d70d005095f5f6173686c746933d105095f5f6c736872746933d205085f5f6d756c746933d305095f5f75646976746933d405095f5f756d6f64746933d5050c5f5f756469766d6f6474693400550970726f64756365727302086c616e6775616765010452757374000c70726f6365737365642d62790105727573746325312e34332e302d6e696768746c79202836643639636162613120323032302d30322d323729" + }, + "babe": { + "authorities": [] + }, + "indices": { + "ids": [] + }, + "balances": { + "balances": [ + [ + "5C5Emc3PvsdxQqFiNiNpLVAZTbFzqMaYPS2o9J846cnaSxeb", + 10000000 + ], + [ + "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh", + 2000 + ] + ], + "vesting": [] + }, + "staking": { + "validatorCount": 20, + "minimumValidatorCount": 1, + "invulnerables": [ + "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh" + ], + "currentEra": 0, + "forceEra": "NotForcing", + "slashRewardFraction": 100000000, + "stakers": [ + [ + "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh", + "5E4wkzGQwuBMy566V6kKZwb4jPVv5peDjAEGnfmshEu66uQB", + 2000, + "Validator" + ] + ] + }, + "session": { + "keys": [ + [ + "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh", + { + "grandpa": "5E8gJFd9V9jCX86Xj9DmbB19L32pRyjkonbzBRyiHq61rxqd", + "babe": "5DnadmTwi7EKR8ceJjByJziBk7G29Cdou5pAQaizQ5QwADXQ", + "im_online": "5Gs6RH3KkBQqzgxVrRdh8t7G72iSnhmynfZVn3J6NfsRnbat" + } + ] + ] + }, + "grandpa": { + "authorities": [] + }, + "imOnline": { + "keys": [] + }, + "authorityDiscovery": { + "keys": [] + }, + "sudo": { + "key": "5C5Emc3PvsdxQqFiNiNpLVAZTbFzqMaYPS2o9J846cnaSxeb" + }, + "proposals": { + "approvalQuorum": 66, + "minStake": 200, + "cancellationFee": 10, + "rejectionFee": 100, + "votingPeriod": 28800, + "nameMaxLen": 512, + "descriptionMaxLen": 10000, + "wasmCodeMaxLen": 2000000 + }, + "election": { + "autoStart": true, + "announcingPeriod": 43200, + "votingPeriod": 14400, + "revealingPeriod": 14400, + "councilSize": 12, + "candidacyLimit": 25, + "minCouncilStake": 1000, + "newTermDuration": 201600, + "minVotingStake": 100 + }, + "council": { + "activeCouncil": [], + "termEndsAt": 1 + }, + "members": { + "defaultPaidMembershipFee": 100, + "members": [ + [ + "5DcAKnrUmfes76j5ok8XcFheTdzS72NFsJA56AzVrNz9gVEz", + "joystream_storage_member", + "https://assets.website-files.com/5c78435271c31384e942f111/5c78435271c313493442f123_Helmet.svg", + "Joystream run member account for storage nodes." + ], + [ + "5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx", + "bwhm0", + "", + "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." + ], + [ + "5FnXBHfcDE6nQrwHjZqHYYpnzCLap2b9d3eQHt2Jt9eBG6mv", + "tomato", + "", + "" + ], + [ + "5GLLKE5LqfYtzJyE779jcciT8uM5rjQfGZ65r3sKBvvoUfBZ", + "tzdutchcom", + "", + "" + ], + [ + "5FMrFXCbhtdv4tG5XaPsG3MyS6u36ZfsdCoHZxk4cTGdE56D", + "nexusfallout", + "https://www.gravatar.com/avatar/00000000000000000000000000000000", + "I am Finny, a blockchain enthusiast, been here since the beginning of the new project. Looking forward to be an active member." + ], + [ + "5CiGc9SzUjaVPZd66HVDnJNSRh5Ld3TK477nGYiwurwHZnZv", + "enjoythefood", + "https://cdn.pixabay.com/photo/2016/12/26/17/28/food-1932466__480.jpg", + "Following this project. Hope the best for it" + ], + [ + "5GSMNn8Sy8k64mGUWPDafjMZu9bQNX26GujbBQ1LeJpNbrfg", + "alex_joystream", + "https://avatars2.githubusercontent.com/u/153928?s=200&v=4", + "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)" + ], + [ + "5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC", + "benholdencrowther", + "https://www.benholdencrowther.com/wp-content/uploads/2019/03/Hanging_Gardens_of_Babylon.jpg", + "I am an investor, publisher and security researcher." + ], + [ + "5Gn9n7SDJ7VgHqHQWYzkSA4vX6DCmS5TFWdHxikTXp9b4L32", + "mokhtar", + "https://avatars2.githubusercontent.com/u/1621012?s=460&v=4", + "mokhtar" + ], + [ + "5EtFzT8ZJN7VPKfcxjsQhtJUhHzuPsUFMaahPLGoaw5odaqj", + "staked_podcast", + "https://pbs.twimg.com/profile_images/1100673229310644229/HUbup-M5_bigger.png", + "staked podcast" + ], + [ + "5EHCSTmnRVedbVssiWBLbE9LjXsF3MZje961LswgxvKBjPPy", + "nexus", + "https://www.gravatar.com/avatar/00000000000000000000000000000000", + "This is Finny, a Crypto enthusiast and a web dev. (old account no longer validating.)" + ], + [ + "5GxkVNvkKRWcrMxyNzgiVD42Fiovw3DezC62XKei24sdezaf", + "pskyhard", + "", + "hobby mining,musician,guitarist,music maker,crypto trader" + ], + [ + "5Dba5neECYe3eyEJ9bdd2mCQzuXwruqaYdrF1UPjE2B9rzAb", + "ch3n9lee", + "", + "GPU/CPU/HDD MINER, musician,guitarist,song writter,music maker.crypto trader" + ], + [ + "5DPovdRPEPvfRqzAgEB6xpC6teknC8fdDk5HCE6FATnqRARf", + "gnossienli", + "https://staker.space/stkrspcLogo.png", + "Validator trying out joystream" + ], + [ + "5G7Hzo7eqWQKuNHAG8NN1xEDXsRidFd26rgibw4e3Tw392Bb", + "bontoo", + "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", + "testnet for future" + ], + [ + "5FZQZAFncWciyFeDbbSPuKtFwPovizCdTdA1BHKsNjYtyc7T", + "storage_tester", + "", + "just testing..." + ], + [ + "5EwRZv5hFb2oy1Ubsvor1nfeFUjV4Ycgk7hjNCfHDBQBcExs", + "storage_test_edwards", + "", + "still testing..." + ], + [ + "5HUA38wojV9PfMZGsNksMR3PDGskshJgknnBnFUGQBgZRs92", + "still_testing_storage", + "", + "will unreg later..." + ], + [ + "5CFJhfdE5xbp9KZ4b3kULCYvfAm1PDfjL6SdAmeewMj7roPw", + "dolby", + "https://drive.google.com/file/d/1ygXMTeoy16qGBr03GW6MuogdEbtScsev/view?usp", + "I love this test" + ], + [ + "5FeamBx9DWjG5aLAMLyvmu3JphwyCFEA9HFoUYWfHRFMGNK1", + "periskystorageprovider", + "", + "storage provider, free music& video content" + ], + [ + "5En5s2iZ865T9iY59bFdm1p8Hxdb2w3jL1obx3SK1YUDYKf9", + "abyanstorage", + "", + "tes for storage provider" + ], + [ + "5CMP8SssaKGyPFS4dftDM1UNbo2irDuibNoSggjASwxjHA7B", + "naimastorage", + "", + "testing storage provider" + ], + [ + "5EC1Wrd15LjMcgdF8MFsner3hwWeKtSaqKigVDLH6Abd7BxC", + "storageathens", + "", + "im naima want to join as a joystream team" + ], + [ + "5GbivJkHuHs6wxgiH2SS44MyQ9PfDKfTjSgwoyunqrCZ3HEF", + "botsawana", + "", + "" + ], + [ + "5DwUCvgQ99ghQArqLQx3mjbedCdLjzznuVfw8nv2JNK5DaqY", + "radithot", + "", + "newbie testing" + ], + [ + "5GZkh2yxD2d6c8muJjnM4PE4e3dsRnv8XJ8dk4iwyPcDen3J", + "papayadee", + "", + "testing " + ], + [ + "5CRBBpNJqoonH6shfJWHJTDqisti36Nxc9P52SHxrTrkmwcc", + "meetlica", + "", + "this is test" + ], + [ + "5DWp8NhZDgbk7aWs36uT3UjJayBAz7pfhE2mfmbLuUVZGd3p", + "storage_debugging", + "", + "" + ], + [ + "5Do6LSqMybi1MXm47oYhA4Um367Yt6xLqnFybXfSKzU4HicZ", + "roarhansen", + "https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/James_Dean_-_publicity_-_early.JPG/220px-James_Dean_-_publicity_-_early.JPG", + "Scandinavian person interested in cryptocurrency and file sharing." + ], + [ + "5DLrbgdXYfAJRwXwm7wrkEfgujmwrQMxa39hJeeC7bQwjhhv", + "aisyah", + "https://testnet.joystream.org/athens/pioneer/#/members/edit", + "Gogogo test and moon" + ], + [ + "5Gj7TbThxL1PiVHd4jJjYeJvDAmvp1j8hdcpPEFtqGoswZLJ", + "jamiek", + "https://pbs.twimg.com/profile_images/810014496131428352/if9jywHE_bigger.jpg", + "Creator of the Make World and STEAL THIS SHOW podcasts." + ], + [ + "5DzGS4AiDH9vdzMC4rDj1hBnxWmDJD3NjGNsbSxEDYo2Jpdu", + "milzam", + "", + "Hello World im here to joint Joystreeam team" + ], + [ + "5CNWS2V6RYKZVeqjqg9UqbQhAxGGphWtv9STxKKuuJW9kG3S", + "nexus_storage", + "", + "this is the test storage account of nexus" + ], + [ + "5GTGsVLz1VWPmD9KbMtdW5wMJjcAwmpt3SjEZHbTJiQycawy", + "pskyubuntu", + "", + "want to become a part Joystream team" + ], + [ + "5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb", + "nectar", + "", + "Validator/Council Member" + ], + [ + "5FU95CyecEJo3czvTcYfmR6LTNXT7fXTrkkRJFNcbRFuCYXH", + "pskysession", + "", + "awesome joystream node" + ], + [ + "5HZ4RchQki238Zq4x47bj8fijGvhosaH1bXtAB9z9iAed2BR", + "mekienak", + "", + "gimme joystream token" + ], + [ + "5Fnkp3p2fgKXN3rEDTTRQNBekfdWE3xEZToRWqHiCrTqsDKC", + "hountez", + "", + "" + ], + [ + "5DeomUpfJiaohdrNoiNd4KTJAmz4SjB5z7ep5JQ8Lwx8Mmvr", + "tienee", + "https://testnet.joystream.org/athens/pioneer/#/members/5DeomUpfJiaohdrNoiNd4KTJAmz4SjB5z7ep5JQ8Lwx8Mmvr", + "My job" + ], + [ + "5DPjwKLAKqVNMwmHWqX3SwwJ5WraPWRuLx71gFaCCcchcdmc", + "arjuna", + "https://drive.google.com/file/d/12iTZzBpdeHrN2tjJz7zIlrzDxpIFugl_/view?usp=drivesdk", + "Xmr im loved" + ], + [ + "5DcZjBgXcsDi51etbUvkB9twJL9yUnwTFnmsj75Q6ean7qNb", + "bitcatstorage", + "https://s3.amazonaws.com/keybase_processed_uploads/ce9e45f57a027881e69021a12543d905_360_360.jpg", + "validator service from China team" + ], + [ + "5GnWANB5HxqbXd5kfhTKDvpeVGuDXH5G4ofEVEndT6CT9jFm", + "nickname", + "", + "" + ], + [ + "5DFJfZePK15RThiZwdwjSDY87J3w94mCvyCve9BGaQqdeqww", + "boatman", + "https://lh3.googleusercontent.com/-Wnc3u2TxtWw/ToZ-uQvDmFI/AAAAAAAAUUM/sxs71ntW_5wdMxZTGjdBdr14k9seixVBQCEwYBhgL/w280-h276-p/BoatHead2.JPG", + "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. " + ], + [ + "5DoZsgfmppmxm5N2nmWvpE7vk3EiojZoeBYKjfKNnm7dY1CS", + "yasin", + "https://testnet.joystream.org/athens/pioneer/#/members/edit", + "good to try" + ], + [ + "5GxcUjY3tXYaDnm6LDu3yRdgE9wACXbmqjYVVAg8FwRZYPmF", + "sudapl", + "", + "" + ], + [ + "5G8bFk4TGm5JKhLMj199zf6iQfrHYBrLh9JBuipERF6WLYX7", + "shadowmen", + "", + "" + ], + [ + "5D347Qwfk9Jexfaju3d2iqi8UY1JguKazmz6Zsc2HEzFTnr5", + "night_raven", + "", + "" + ], + [ + "5HDHZQyuBZZiX7yThA2SzPBW2xVKk6v6dgCnQDiRABkqfdpY", + "picasso", + "", + "" + ], + [ + "5HD1jy4hco4SLKU8GkJvHZNWH6kQeiCm3eTssngk5nf85DmA", + "mb00g", + "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/48/48657feccbb3bef0dcfc8511ba500a0fdcf687b0_full.jpg", + "" + ], + [ + "5FVMRqxB3KNVrq6r3yMc4jrDVWwkLxCBwu3pAtRF3HpXZkjd", + "alkno12", + "", + "" + ], + [ + "5ECH7vPtCVTs1Y6U4NonWJYBSPo87gGWYUn3xN9evPvYDyaW", + "storage_dude", + "", + "..." + ], + [ + "5Hp4rr7YQtjLQ82W4a55cQm3e6aePxZqATWAk23vKMxZ4Qfm", + "roar_storage", + "https://image.freepik.com/vector-gratis/fondo-borroso-colores-claros_1159-750.jpg", + "" + ], + [ + "5F4k8DAGNTgXRtYbSf1pbqpBueP1nQmvmyrRDwVmFqVRFtsu", + "rioplata", + "https://i.kym-cdn.com/entries/icons/original/000/026/913/excuse.jpg", + "" + ], + [ + "5GHQsSq2Cbu2UuMpJExRFNkngrJyf9bvmWjHtoaQTcyZfx7n", + "joyousjester", + "", + "" + ], + [ + "5EWUe17geJfL8YhJKjpnXswWkbMJpMj2AonLYygLptUchDsL", + "roar_stor", + "", + "" + ], + [ + "5HNk1sE1Fwq3teKCJybnDzTaihYoDCCLVtfWVKoUEjs1fppb", + "tigernr2", + "", + "" + ], + [ + "5DU3yCmcKYdhMhx8qwhtREDpB96ALg4n3GZ7KWqD8RYuHf85", + "fast_inet_offer", + "", + "i have no idea if its usefull but have an 500/500 mb/s EU west connection to use" + ], + [ + "5CJ4DWRdrCCt4qQhWutSiHuEAHVXFcQ8Fsb2UJbFbwzUj4En", + "sdjakasampurna", + "", + "love joystream project" + ], + [ + "5GT93iCiNmgnKznXrwg7VYfyxgtwYAsejPaVMFiEq35HDFb3", + "kampung2", + "", + "earn xmr with join tesnet Joystream athens project" + ], + [ + "5GkE2fc3Yh1CeikUjNedPeKAyEUGzJvMRV4vgbawB7nsPNQt", + "sedotwc", + "", + "love joystream team" + ], + [ + "5HSvkJ3KgBPQYFRVZatjWqim6oSbCDgYgK6pR9JERD9xkmyd", + "jolowiprabowo", + "", + "vote me and let me in :)" + ], + [ + "5DfbxvnYEnAe18yWX5HKsxt8AaoDAjtmfpUco9rcZBYwqhJi", + "jablay", + "", + "awesome tesnet joystream athens " + ], + [ + "5DGsFBByiSRTo248vk6Qu9CjQMgvbgyVRjQpix3J6oCHbXoV", + "farel", + "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:", + "my chance" + ], + [ + "5CiQy3WMqEhmVgWecgd7PDf4zFYjySsCeSoEPHfwKDX1ZXKH", + "gembong", + "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:", + "Star for all" + ], + [ + "5HYs84s2wAUkyuP43sm1AvRQ6kYrUDS9KDcXoAHTxFdX5CTF", + "memberkonsil1", + "", + "vote me" + ], + [ + "5CidUM3X95rizhAkfwx9DjsuBAkytAPv6wxkaHT5kiUz5s2v", + "dafaa", + "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:", + "Join" + ], + [ + "5GEd1rmfmgxtu2ab9ZwkiWKiu12mnxzSx1YiUHqaAPZpoG4b", + "yacobtsige", + "", + "exploring the blockchain got me here im very curious and easy to understand " + ], + [ + "5F1X2QM9Y4Zyf2gEEzT45xYx2jXaz62ZRhaXmMoz1u3a9EmR", + "awuldor", + "", + "" + ], + [ + "5Ct589RpqCSXfR9x3nMC2q3kdsXJc57K3o78MJGyn4mQdt9u", + "oroor21", + "", + "cheaters" + ], + [ + "5HmHHAVsDnbrngfpHrFba1CCyobeVscvM8LS2F8e6BoX3ujc", + "boggieman", + "", + "vote me" + ], + [ + "5E5QTPqfRua4TNUFby9BwNirf18hjL8BfDixqNxzmHH7AQuw", + "sitim", + "https://testnet.joystream.org/faucet?address=5E5QTPqfRua4TNUFby9BwNirf18hjL8BfDixqNxzmHH7AQuw", + "Everything" + ], + [ + "5GiSPEa9RkuKwHC8Gsd9Mvz8AuRpLqyCxt6PX2uGMhLBkMt6", + "saitama", + "", + "" + ], + [ + "5CsrS5WKjLMnhz5C44uuqAmzF8hiMCdB3jfPU183pVZCiYic", + "stake5labs", + "", + "" + ], + [ + "5GvnVHdoKpeY3mXKqFKxemZWhp3LHYnP1pjsUxvBsdAQQ1Uj", + "bepoo", + "", + "" + ], + [ + "5Dgkz2T8F7nCHBcCFkkUmVapn128Y7FjoLcAkKn3VKt4HWFa", + "sta5l", + "", + "" + ], + [ + "5EpDFAf1GXbyJA91nWGVMt3nfTcJumdKaZouhkce9vnDkTnu", + "aneukayah", + "", + "" + ], + [ + "5G7hWpjtmWvY6bAVEE9eUbHAakU83BiacgvWpeMwNZounTXc", + "sapimin", + "", + "" + ], + [ + "5CLTmmq9MYHFzFcxdx61ehaTSyH4LXHNuxxxGd4rMbaK2GFa", + "arjanz", + "https://pbs.twimg.com/profile_images/1122362089/image_bigger.jpg", + "Polkascan test" + ], + [ + "5CtDrkRsqSVrYoWuEuEcMJoMkv3V28qzuVSmxmHZGYDmxotA", + "arjan", + "", + "Test account" + ], + [ + "5GajxrWgmhCDnKBEdYDX8dEi3hPbYRsCFDrJsFHXeJ1dbESy", + "inchain_works", + "https://i.imgur.com/LI85WjO.jpg", + "inchain.works" + ], + [ + "5EZbBSiTwmd7V3dn5PhZKWp1LuGXoTCBUk8TJmadXdfVwnWG", + "11th_member", + "", + "" + ], + [ + "5CiuCY1684Kpseg3CtEepqvmEumveoTEgHbkTHgEkZWN463q", + "huang", + "", + "" + ], + [ + "5FEEHAeXbMZRWMRvGFMGN18RUEhjX5nrgonB5YZ4NLahTXGJ", + "riyue", + "", + "" + ], + [ + "5HdGgQKeWvKTmnq6jnNeM6t6gnRSaAExdTg5oK9LFAunEjmf", + "rethwe", + "", + "" + ], + [ + "5Ei3dtaie8WGrJBMrF8mexCi62fjE7EuMPTfQ8midtDH1ssx", + "ch3storage", + "", + "hi im beginer to join joystream storage provider and im still learn about joystream project" + ], + [ + "5DFKsQKbosQ41mpy4NbWLP8rQApc1bb1gEbxxCCDkToUmzNE", + "tryptamine", + "", + "" + ], + [ + "5CknxEPjaCEXm2e7Xvn7X6ergCewPdfpNSTNYfoNZtkrUB4J", + "martintibor40", + "https://lh3.googleusercontent.com/a-/AAuE7mAOxgww3L4uBSuatEvkZkB-TQ3TF1o-raqPy6z4oA=s96", + "\"Ready to embrace the future'\"" + ], + [ + "5DYFgPoqT27Wf6Pq7sFxdAV2BrshYQZ5qSqeTrXeWbidbW9G", + "john_pars", + "", + "" + ], + [ + "5H12THfoB3U3HQmZDRc5kawbVr1q5SSwWWg1d7p6VwREwSus", + "bintang", + "", + "he im new joystream member" + ], + [ + "5ER3KmWi2oLkQ3Mwc68UyeEfsL1eX6k9WEnWmouB8JXx1F21", + "bintang3", + "", + "hi joystream team" + ], + [ + "5GBTtfYboQJYa7Ao6UwGBNKFbp4xMHYsCZtyQa8gjxG9Rpj6", + "shamson", + "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:", + "try to know" + ], + [ + "5He1Mn1U8kSE1uwYpQ51R3f1MBb2vcDr3NTLvXUschgFdtuG", + "edivalidator", + "", + "hi vote me :P" + ], + [ + "5GYQ1kP5RAgNxQqkddLVhFvfYAnDDLVCLSLpUGXhahp1sRTm", + "herikeren", + "", + "newbie in joystream project" + ], + [ + "5EwPRFkgaj9YqjQ6w3LVf4YewFpEeUZkKoY6hTLbHCHYehDB", + "aray12", + "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:", + "Try to know" + ], + [ + "5H8XFhvFDsiDGrF26ZvgcG9swt34wSAr8AbvRoeq7U5yi7Yd", + "nadine", + "https://drive.google.com/file/d/1Gk4ubqBcEvcQpre1r_ePZ7T65ZgHCfrF/view?usp=drivesdk", + "Wana claim" + ], + [ + "5HfGdiZ182XX5rwUwrje9rgvae2WX9eDRWDXwJg3sD2DbQHD", + "kubil", + "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", + "Choice me p p p" + ], + [ + "5C6bM8CJP7X6zkBeDe2pD3LMxomnoQBRsJqB1c9tPYsatftb", + "jhuan", + "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:", + "Easy trial and earn X" + ], + [ + "5Dy4FpfUcnVCx9A4XtpFXYkWWWoM1dsKoS3K89VskjjMUQj8", + "bamsrd", + "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:", + "My friend tell me about this" + ], + [ + "5DXwzZ6P4QTKS14Wv79Ne9YtvmG6yiN8xEPqwecg42pFH1EX", + "raden", + "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:", + "My first time" + ], + [ + "5Drcpx3M7FhPgexUyxoEJDR9Ltne69r3YVhCkQifBV1b5zGz", + "siman", + "", + "" + ], + [ + "5DUaFPy1eqkQuU7DEBZ9YpTmTGjSuQaCXT6wFpYx4iM489H5", + "andyt", + "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:", + "Newbieeee" + ], + [ + "5DY2bBaB24Zv8WivThmpQuRH8PAMkJaz8rpLnUtT9RhpdVnQ", + "yohanesyuen", + "", + "" + ], + [ + "5CCrySRCh6Rykmj8hHTeSwgsagvD3tr34Qtv2756SP9CpvWL", + "linuxif", + "", + "" + ], + [ + "5FrXNhhS9RjZsiQH737yHMoz3Kw8pg7Uc5cMtw5PE6Y7HJ6J", + "linuxifraw", + "", + "" + ], + [ + "5CBNQvCiFYaCVsr6A1nFChDwddzmeBboHMydstULtjzQFVXN", + "kacung", + "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:", + "Mantap" + ], + [ + "5Dos9CnNqnp5jDxdBXBCsdRFQRDkNHUo6qULEqT6infbRKxi", + "arikan", + "https://pbs.twimg.com/profile_images/1110553699636649984/PPjcoiD4_400x400.jpg", + "machine readable artist" + ], + [ + "5Fa2QXToUMNHfmgJ4oskA63hLr4RmY7fEMdEEAGwthbgqjPT", + "kaizer", + "", + "" + ], + [ + "5EJK2q7TZ3zBpM86dUNYG36ioDJjWzrzRFqPpKWq4huxSoN1", + "rezza", + "https://images.app.goo.gl/dTMUy1Tebpn5rJCV7", + "Here here" + ], + [ + "5GFGT91YyMGq9Gob67DKuMHmEm2LYG6tmbRuoKN8kA1x3hCB", + "jstar269", + "", + "" + ], + [ + "5HjMzAgoTqZnAtNbTgHk7eHUvH5dBthEUNmmRqdjHrJRUnWv", + "misterjo9", + "", + "" + ], + [ + "5HYaW898Z3EJBmSaYPFqp2DBgkW13zf6aMWfdbZ44dkLdSpA", + "sally", + "", + "" + ], + [ + "5GPVHW88RPtzxEM2QH6cZMp6JJR4TKX7xTNiwuf81ZDkT2TM", + "kagami_san", + "https://i.imgur.com/BwViZJq.png", + "If elected, I will be an independent, fair counsel member that interacts with the community and represents the community sentiment. Thank you!" + ], + [ + "5GWH3K3ivLK32kKyLbws2SJpGisLd4CM1kjPeAGwxsB7XJZN", + "glenden", + "", + "I am Glenden" + ], + [ + "5EDwsMeq5AKo278rgh38TvjkCDSiBZpiKq7LZLQEAbmsxv65", + "shmoop", + "https://sites.psu.edu/siowfa16/files/2016/10/YeDYzSR-10apkm4.png", + "" + ], + [ + "5HEsfa5rjDYALKyDBY7oFX6qYTTUSJgjEB9uACA6kptHQAmD", + "zxczxczxczczxc", + "", + "" + ], + [ + "5HMpE8Z2AuntT6Wow9Zjq74m5dBMViZmoK35byFPKMF2CiAX", + "r1sk97", + "https://yt3.ggpht.com/a/AGF-l78nwhTvUtstqRUDD_nIz_y40JSYHFV2yoZ46Q=s900-mo-c-c0xffffffff-rj-k-no", + "Just a bored guy." + ], + [ + "5G3jMHcbqgzyqCiiBMZ26LFZoqTPw77XzMqwj8cyrb58ybhE", + "ascii", + "", + "" + ], + [ + "5GfdBhXPK6GHSwSkPHYiYf3KVw5dYsCLUCsTkh2EnHhr16oi", + "asdfasdfasdf", + "http://example.org/image.png", + "asdf" + ], + [ + "5E7pc4DgSKWbFQNUQsEa6ffHPQQYnvWpRfRGFRthg2pRaBhp", + "billl2", + "", + "" + ], + [ + "5EygRdm7QJ32UA5Hyt18LEyH1QMX3jviRBvk16vzmJw2TjNp", + "emmaodia", + "", + "I'm a JavaScript Back-end (APIs) Engineer." + ], + [ + "5DwH4PtUdGcQYMqYpUpjzPmwgkakuDMJ1K4zzexd9sxMyej4", + "santos", + "https://images.app.goo.gl/vH6eTrNZtzQTQAFn7", + "Try Try try" + ], + [ + "5HZoz6XFiWwkJ5kqNSKAeZ52AXJ4t9Va9XgWp8FMop1H5yVL", + "leifeng", + "", + "" + ], + [ + "5G6i4AgpZRuad3cJM16hLEtGFabni6W9YGDdxoDL1r1DweQP", + "joyne", + "", + "" + ], + [ + "5Fu5XLEUvP7GAtb1pfYarDxRH4NcJfRWWNCDYA3uoip4BZ9m", + "bwhm0_2", + "", + "" + ], + [ + "5DnmGqe8qkNipYWgmnqsFDNayNo33dHtpEbjeymAMawfrdkD", + "samurai", + "", + "" + ], + [ + "5Fg79fdT6w51QdN5p7QQhiifbxtnRzGwXR24wsf2d3m5rD1M", + "enfipy", + "https://avatars2.githubusercontent.com/u/24860875", + "👋" + ], + [ + "5CtULUV5Qw5ydB4FUjkh3Lb2tJJf9qUSdahtLUhfcDDJ4D4v", + "john9261", + "", + "" + ], + [ + "5GwaCBvrGFpTSVdDJPTg1XaYvDaLcz6Dn2Brwf19ehDJpA6W", + "royalgarter", + "", + "" + ], + [ + "5EfiZ76aX4Y3pqW6VBwQmx9NzYVxui1Xeu3KnGW9b9YbUqCH", + "inabszentia", + "", + "" + ], + [ + "5Dihr72NbSTZmKp6JFfGUd5AboRbvqYkVGSAUshNB2Jg8sPh", + "anthony", + "", + "" + ], + [ + "5GyrFrzo8GE4YUTpVyjkJeSneXAFJW7aGWCrreDUvRdCoHp1", + "storage_fail_test", + "", + "" + ], + [ + "5DsomYCpUhWSZkFUPUtNg6iZe3M37gaqwhjDG6CdSTEN6imh", + "jjbutton", + "", + "" + ], + [ + "5FkVkzN712z8CN4oMPbAXqbfP5QzNquy3e1zbMDez6Z1Ea3m", + "bithodl", + "", + "" + ], + [ + "5CJzTaCp5fuqG7NdJQ6oUCwdmFHKichew8w4RZ3zFHM8qSe6", + "joystream", + "https://uploads-ssl.webflow.com/5d0395c96d24108d8e5850d1/5d0395c96d241044b5585131_registered.svg", + "Joystream Project Admins" + ], + [ + "5GS23g9sF4QGWSu3EG82GPHzomS9gbTS81pj3pCWgXgGSxv6", + "dawson", + "https://upload.cc/i1/2019/06/24/QuEl62.png", + "Polkadot." + ], + [ + "5Cxpq2xpCKzpDGRgx67j7HzLDTZdAT9J3CUhQXUKp9Q4jarQ", + "iceberg", + "", + "" + ], + [ + "5DScjX1t5LUFzJZ4vz9DuR1DAffPFYnYurkZUe65eRKnoZ9B", + "betuha", + "", + "" + ], + [ + "5GsdqdGXysPVQhWJh3Hxt23F9DvbDn5RrSeLQc3shApodhJd", + "betst", + "", + "" + ], + [ + "5H4vibfYZJrbHqRQydmaSD5dyHo9Y5KhYA8SXy11LsvxFVZy", + "betstorage", + "", + "" + ], + [ + "5GvsGwc58fSqCKgy9xeVJhk7M5dVRatDL9GHCfU7UKDbgZzk", + "btstor", + "", + "" + ], + [ + "5DYE3wP1VF9goXuwDAgTybitatNovYF2fnxdp3hHsMdhhvAv", + "acropolisstorage", + "", + "" + ], + [ + "5D9A659vCJoB36B5R8hUc6rVdRLy8pT22whYb1Aq76HhkCCY", + "godofknockers", + "https://i.imgur.com/Vqykyvl.jpg", + "Gamer who wants to make some monies." + ], + [ + "5GjMdeajoaC6cuxb48hAkrU2F9DJXeUmsLc5oxN8E71hFLdk", + "j_storage", + "", + "" + ], + [ + "5DFGMS4zGjJRtkM995d3TRWASSw6o47KmtFK5P8i8GNSn8HM", + "computt", + "", + "" + ], + [ + "5FtKBecxCRKdNQ1g4fv82hCkeVnyFKWZ1e6AYYCpMBLPns3c", + "storgeali", + "", + "" + ], + [ + "5HPbJNY5iBcYVUb8Qiw6ZkJFbNFK3QDMAvgF8Q3MPybzaW1b", + "stct1", + "https://gravatar.com/avatar/3c04e4d89494648ed4574862da1eb8ce?s=400&d=robohash&r=x", + "" + ], + [ + "5EeQsimvxSFYAvk19m8xKdjN4efLGKWsYxXTuJ5ukhvfHFEF", + "gusar", + "http://static4.depositphotos.com/1001003/351/i/950/depositphotos_3517957-stock-photo-3d-buddhism-symbol-wheel-of.jpg", + "" + ], + [ + "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd", + "moderator", + "https://uploads-ssl.webflow.com/5d0395c96d24108d8e5850d1/5d0395c96d241028ce58511b_Communication%20Moderator.svg", + "I am the sole [communication screener](https://www.joystream.org/roles#Communication-Moderator) for now." + ], + [ + "5HUoZqRpVwHeEMYLruqL93cJT47FdKgGTWVpwayoD4K6tgyK", + "duren", + "", + "" + ], + [ + "5F8ruq25knuup7jNYoJsTDUep5uKD3n6kooooeyusWJkwa3a", + "laurynas", + "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTV6Xgt_kvbKNkw2Mb74NXQAp0Xd9p1DqhMu4FpjoPZH6fUvbjx", + "A pioneer in JoyStream, tester." + ], + [ + "5D3kkfSTygkxDBjy71YUvHbrrv3gpZ8xhg3LfmrrHXsFU39t", + "scarf", + "", + "" + ], + [ + "5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB", + "bedeho", + "https://messari.s3.amazonaws.com/images/agora-images/0%3Fe%3D1555545600%26v%3Dbeta%26t%3Dv4BRu5EH-z-7Pa9UGy1ri3ibFxu96uRhflHsJUoZcKQ", + "Jsgenesis CEO" + ], + [ + "5Dr8UZRdLrBRcikQR2LQSmNUEwttfgQKeHsVkkzpwoE63tx5", + "joystorage", + "", + "" + ], + [ + "5FGiEbhnGLaBXV3WVuvPCXjjVfJrV7zedwWhsfoAmjeKGSpn", + "gavofyork", + "http://gavwood.com/images/gav6.jpg", + "Gav." + ], + [ + "5FojUvZkLuTxkQ96Qgxes5FrA9ERHnvuM1EW2u2H9cVN14Cu", + "tbaut", + "https://avatars3.githubusercontent.com/u/33178835?s=460&v=4", + "" + ], + [ + "5CrszqoWaVc2v8ybnN1H6ffw1PziBBM8FGUcB3uMBEsPU9kG", + "tady386", + "", + "" + ], + [ + "5H64HbzJJrc68isVJYwyLiJwo1TQTuomwfejcHE8TfzhQD1u", + "marin", + "", + "" + ], + [ + "5Cb4M1bVtj7GEMuyofCkjMS3HXGa8DdbY5sBGikTxrJVchGd", + "marmarak", + "", + "" + ], + [ + "5DJdjyuRQytD1933L8Fn1gkwux9bi8P6YdqERZoYgpzjzHDH", + "enfipy_stash", + "", + "" + ], + [ + "5ETTzoYcBy8LoMrUGXPWwyc1j8vG3u1nddFiqip9298HBQTY", + "yangwao", + "", + "hypersignal.xyz" + ], + [ + "5HdAqcBjwsoi2wG8TrD12e4axqVcr4wvLaUUa2o4GzbXvBre", + "ffpremium", + "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", + "Let's join" + ], + [ + "5FZtYGpRMCN6FpPrHsz7NqGgqKPVsiVpZuYxJh1YXs8Z3BJv", + "prayut_chanocha", + "https://pbs.twimg.com/profile_images/1084270206938099712/qR9TdPQD.jpg", + "" + ], + [ + "5EVJNaHARYERarac7RkiQTakwjSTtt7BVyB9jBr3DbajFGMf", + "hkzero_1999st", + "https://keep.line.me/s/XnJquhXTXSEUToHsAgdi0I3D-AQg1HLV4wuDigCmYcI", + "Who Am I ?" + ], + [ + "5FsabyqtArsY2GX5sdYvg4ZFZLLdTq6upayjqWrLRS7hK5Ke", + "fsaby", + "", + "" + ], + [ + "5GQaNV1EdnC21cGiwv1pT8nThSEUebHDxRrAWRLdR9LApLum", + "ratuaisya", + "https://www.ufreegames.com/?utm=ads&gclid=EAIaIQobChMIrJq5zayQ4gIV2kl9Ch2VkAZOEAEYASAAEgI5MvD_BwE", + "Deep way" + ], + [ + "5FnsBRu9FcBBVYKhwdxY8SDaQw4XxcKtardXxpCbYwAiQNTA", + "maxibazar", + "", + "" + ], + [ + "5GZTctfXt5SzzwUSPpZu6Um16HnC9wNfgbK5HWpcJqbgUCs1", + "nunzio", + "", + "" + ], + [ + "5C6k3Ec2LJdViX4mpVigHPhsytEcYxne7VjV13YMN5amKNB9", + "aisha", + "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:", + "Love earn mone" + ], + [ + "5CmXLs7XWJvYCqPSEiQHKwRuwVyHPYF3S33FnHQ5tkA1S9MK", + "lilis", + "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", + "Test too" + ], + [ + "5EkgATaUSuprTPE9eGFc5N7eKMrGNPsRPXnLhRU9u8zSxk9t", + "natsuma", + "http://www.neutralbayhealth.com.au/wp-content/uploads/2014/08/Chiropractic.jpg", + "Natsuma JOY" + ], + [ + "5DspdxjBxghbqAebXedyqW7scBygx1ip1jX7Utby4rJVmC7H", + "being", + "", + "" + ], + [ + "5FVJHqe3rWRmGRTeEKULMMMmtQEcWVMmAwLgLSzLzbKX7Eng", + "bengmia", + "", + "" + ], + [ + "5HkCHTHAvCbkYLDrKz1GordVD4cE2o3tiLftN5cfQptuMs5x", + "gnar1", + "https://imgur.com/a/Kv17O2H", + "" + ], + [ + "5DAiCGnQ1X7FDgyx18AviJKxZM7vAudrwgTjrPcCxQi3wjfj", + "salaeones", + "", + "" + ], + [ + "5GcbTxhu29yb68wT9dqVBRtY1Mr7rB3HkFkAdQJgxyVgvcGP", + "titivoot_tan", + "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", + "" + ], + [ + "5Eb2gN4d6d67sgBFGKcoqEthWPDvVhcUgFGj8NPQDmFZWxJg", + "storage1", + "", + "" + ], + [ + "5HCoA8d7WZYQrmAnQS4sY2geQBmiSG2qVxgbCsu1vvHu14ZT", + "titivoot_tan1", + "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", + "" + ], + [ + "5DDKuMJACDGz7v173Pv7bbXxzbZMtbrkPPxuu7Rjyffm2QRx", + "node_network", + "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", + "Node.Network Monetize : https://www.facebook.com/Node.Network/" + ], + [ + "5Gk4WmQYU52q9cgxUGw8gn9tFzLj4V3RNcfXBwD7AVXiTSTx", + "peacenana", + "", + "" + ], + [ + "5H3YibPf9MKFTc1p42fKfUS4PMtahB6hfod7xQR4hEhGYaJA", + "quangteo3391", + "", + "" + ], + [ + "5EnMHmi4onoW8QDgDXHSQb9b9KfW7CsTPis2iP9KbvLNTP3g", + "crypto", + "https://cdn.ccn.com/wp-content/uploads/2018/09/bitcoin-cryptocurrency-exchange.jpg", + "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." + ], + [ + "5CeGo5j7hRvYi1NpthBzKL7TE738PUGRuUrsQzSSBY2t4sgk", + "romulus", + "", + "Hello, I am Romulus." + ], + [ + "5DQLn2TZT2PPEQtUEpXPuqVM8mrcRmyTasY1oba7xrCymLoY", + "joystreamfan", + "https://testnet.joystream.org/acropolis/pioneer/images/logo-joytream.svg", + "big fan of joystream" + ], + [ + "5GVqVyPUyQHuBpLn6pHPvtKNvohoY6ehoVfTdCFURMaJwdkz", + "_____", + "", + "Welcome to my page!" + ], + [ + "5F1qeRM7ejkipw45FuD5Jp7parqQtQLmeo6992ShrdrdVMPV", + "fluzzard", + "https://www.mariowiki.com/images/8/8f/FluzzardBird.png", + "“You flew! You flew! Even Fluzzard looks happy! Happy!”" + ], + [ + "5H1DtKZAgkXyFacLH9Cb9XGaSN8uZ3AzibdcZVABtLfBBs2p", + "axel90", + "https://upload.wikimedia.org/wikipedia/commons/e/e7/EddieMurphy1988.jpg", + "Blockchain researcher." + ], + [ + "5CWN7DyfaqrsmSVMnYCPPkjXxsbQWrVbTmWCZMCtQNNiRmUk", + "aaaaa", + "http://clipartmag.com/images/a-letter-pictures-12.jpg", + "" + ], + [ + "5E6Nx1bWXP834WG3cANEFsZN412A3xYaykR8xNVmXYkESVHG", + "skvye", + "", + "" + ], + [ + "5FffRxDHwB8RyRMgumLjeAa6NTjaVzHHFRzATBSyHvHzdc59", + "kimmy", + "", + "" + ], + [ + "5GZRsxF1wUUKQZ8KGLvTyu1MvpRYnH86cVJxVpgJTmLpnFPT", + "zeroed", + "", + "" + ], + [ + "5E4mBK7JqfXFxshqUnWAnj6xPnsNM4S3XfLZYH1bZkKG5S77", + "rddewan", + "", + "" + ], + [ + "5ETuBSbZL22DdquA75jtFe8HeSuKyn7u3KpHzWJBJwkyRi6h", + "minami", + "", + "Research Web3 and Machine Intelligence business models." + ], + [ + "5DeH9e3kZhiCxT6zDEk7LKuXPGiK8A3QbcW1zXkh78qgmJ2v", + "toomuchfomo", + "https://ibb.co/SfppHpZ", + "Here to stay" + ], + [ + "5E4fGovW5xwzBvdL2iq6xGc6xUmre97p52cNKLhNFCqJzYwx", + "node_network_storage_provider", + "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", + "Node.Network Storage Provider" + ], + [ + "5Cd2iKhz2Cu6WTyjWexa3nJKNfzFEEtRJaMu2nVT4y6pZbsW", + "gugx_13", + "", + "" + ], + [ + "5DXytFunQPPX6bhWD7GR2kEmQYxDhsEWFoUr2534Lzrn557m", + "node_network_storage_provider_key", + "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", + "Node.Network Storage Provider" + ], + [ + "5GMSWFLuNo45kMxZBALUJopjT2NYD6X7f5AhEggrBh3aA9tM", + "titivoot_tan8", + "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", + "" + ], + [ + "5G3gAq4orAQ2bBvywQcVFNiUHdbNigf7JEST2YJM6WVA2bjD", + "phoenix", + "", + "New to the blockchain world." + ], + [ + "5EEqQmeDsxQhNMqYijqTBx2yLkcyqd58TQLxSCycdefnhTxn", + "empty", + "", + "" + ], + [ + "5HqShJ8WLfZibvV4QAHEara49XTQr1apEobrmPPwm8L5dWTx", + "cyborg", + "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSyWiC6ll_05KGk-AL1hYzFodlWJtgwbEmq2LJyc2EHaim3M_A", + "" + ], + [ + "5CRrU6dMbcXNCbyhtthoXKLLRADPzvrBBV2Eaqp8T1xPmx49", + "warrior", + "", + "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." + ], + [ + "5HDvuzdSSPHaq7uZmJze5NzLWmoeD54Y1nqPL7dFXVhtwYu3", + "tonefreqhz", + "https://hosting.photobucket.com/albums/qq338/RogerGlyndwrLewis/chapmeme/ghist%20segiovuia.jpg", + "Web 3 developer and Publisher of Philosophy, Poetry, Literature and Journalism" + ], + [ + "5CDn5QPqSUyNcSTHTsPAEC2fxkFfRy5kFJiK7JbjCrYj7xhc", + "kekmex", + "", + "Hello everyone! I am a young crypto enthusiast from europe, and im looking to follow joystream and to contribute to the project." + ], + [ + "5GfoBraUT9FQ3sX6JWRBWGsbnwTZfY97XR2WktADHbyiarh4", + "noaccount", + "", + "welcome" + ], + [ + "5CE14xG6DHi1DcCNUeHR43UxefhFUkgP8qDL7SnBBSG1emzL", + "kongzhi", + "https://pbs.twimg.com/profile_images/378800000706976227/5d781dbcf446d751d82afe1f58048361_400x400.jpeg", + "" + ], + [ + "5D9PxeiAw43SMZaQAxNgRJ6nr4KXvWnfEare5EMLKE8uZ2sc", + "igorsouza", + "https://testnet.joystream.org/acropolis/pioneer/#/accounts", + "igor souza casado idade 23 anos " + ], + [ + "5H9CdSu7KZ1Gq8BSNESyGPWzvV9EKWXPVNtuPds5gTwaG1kw", + "nin19a", + "https://cdn.pixabay.com/photo/2013/07/21/13/00/rose-165819_1280.jpg", + "" + ], + [ + "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY", + "chevdor", + "", + "Chevdor" + ], + [ + "5CG4KgSVAYa4y7RZqVQMpvxFsoxkvpso5gPxXzP5nRey1gdu", + "dustan", + "https://www.facebook.com/photo.php?fbid=1444244385897762&set=a.1444244399231094&type=3&theater", + "I am a student . trying hard to earn some on inernet. " + ], + [ + "5HeqKdJHhhZQuwerQZLQ6UuSZn9qC2oJffReWQ83qypP1goZ", + "jaykpatel304", + "", + "Hey, I am new here. I am a blockchain developer and highly interested in it." + ], + [ + "5FktYqVHRWn3dW68Edt16yP3Y99sonTuT6qExTQuCECwWfXg", + "kekmex_storage", + "", + "" + ], + [ + "5H59BoJkTrXhhe2nqUwUj3dL23sduxzkJ9Nc3U7fsdVo8QZg", + "kekmex_storage_member", + "", + "" + ], + [ + "5FrF9xqBNwRk7KvTtNdftfVTacQ1z5RokYS3B5PuihuRbamh", + "rodrigograca31", + "", + "" + ], + [ + "5FUdGogcu6SKS5rCN5wNVJjqMswVrqXXgonrLwwkDhMSEbhK", + "keks_storage_member_key_new", + "", + "" + ], + [ + "5GNUGsD1QWcYDThoN79iWy8axFGfWund4jYxaewYGebbGk68", + "aahsiaap", + "", + "im newbie joystream tesnet " + ], + [ + "5CCzYScXPWRhiwn1BC2qTdYdry27t17Sow7HfLFyiBTa1dvE", + "habibrijik", + "", + "" + ], + [ + "5GRUk4q13G2MeRPhpvrZUjpvY581cuH8xpzqRLSvKeBprPBf", + "echaterapis", + "", + "" + ], + [ + "5FxWFDN8NaGqFgr6sfyEqQyaeJHckWap3rUawukt7ZMkch8a", + "lexitherapis", + "", + "" + ], + [ + "5H2wrjqnyZJf3nLjstpy1pdVGFHCTUoRRUFjvvmbwP7Cnwt6", + "rinduexst", + "", + "" + ], + [ + "5DEcN8w9iUhxVXbAgRGesZRJcEvZEdtV6NbTBQ7ktH78Sqae", + "rereyolan", + "", + "hi joystream" + ], + [ + "5EHyifUv9i5ZoBNeWjHGoKJ3iD5TyXafWMNFNNowVk9scvEi", + "mnemonic_hash_char", + "", + "" + ], + [ + "5HAq1PrLiB1jQQ9R7YDRvhuJtoetXWfvTKe9pq7jDS2q57Hc", + "bodgeup", + "", + "IT Freelancer looking for passive income and explorer new Tech." + ], + [ + "5DFYfuCMCHx2VGjvbN6S98sEvDGfEF9cHVCJbiejV51oW6dQ", + "testees", + "", + "" + ], + [ + "5DpDqfrDqGqEMEuu7kRoFmQtc9nzPBSGaQWVUUhm88Q1aoZN", + "mhillajeremy", + "https://files.gamebanana.com/img/ico/sprays/crono_pose.gif", + "" + ], + [ + "5Ffv2VrCch42yBiGWWUGME5ihyewKYvHKq3TBwHkPQXXFSfS", + "arno608rw", + "https://gravatar.com/avatar/32c7535449ae8a992501e283a5879e33?s=400&d=robohash&r=x", + "" + ], + [ + "5DGr5nH3HXBVFuSG85rxGLejSWHQtFwfwquY8wa1FYLBou9Y", + "ali878", + "", + "" + ], + [ + "5DvM8RLjzqVKTSUCYDJATNjzWBWbTEankbwPpeAJASYwE5LM", + "arnone", + "", + "" + ], + [ + "5FZw3cnkL5RvuERaB2BicpL1gqUv4fRZSNbyPj4cS389eM4E", + "keep_it_a_secret", + "", + "" + ], + [ + "5D9tREUZ8jTB2gJt1BYFeHGCYFFDPkx9MCg8Pa21iY5wmeAD", + "ahaa1000", + "", + "Come on,bch players" + ], + [ + "5D1AVX6VjfsunLZJHumk6WjkJUiM1g4tk9sTrz2f87XZk73t", + "alpser", + "", + "" + ], + [ + "5FdyqzHPZe71EzDU3pHKBWEPChbUitfoToUgrDtnWoojFtic", + "dltmoon1903", + "", + "" + ], + [ + "5Cwmqmr4sfJnWSehiQChNzb2MKVts6eSu1JSL3ZCFoVpuaMA", + "solomon", + "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", + "Lets Goooooooo!" + ], + [ + "5CVh5qEUPMQZqoBUuFpFCjuqe6tvUcLXnCbGLQnBbxhhkYaN", + "lisatai21", + "", + "" + ], + [ + "5C9TiKjVWRw36nS68V6rKie4GB8btwzFVdvZ2HPXnSJ8kQNo", + "kyukyu", + "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/88207535-9be7-42c6-8aab-8403e025b92d/d9m51f3-d9781858-411a-473b-a217-ce202bbba1e6.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzg4MjA3NTM1LTliZTctNDJjNi04YWFiLTg0MDNlMDI1YjkyZFwvZDltNTFmMy1kOTc4MTg1OC00MTFhLTQ3M2ItYTIxNy1jZTIwMmJiYmExZTYucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.gKzCIo7DowmKz8LewrPuqc2RawT5IG2fWkS3-W0L8i0", + "Eccentric" + ], + [ + "5DCuouTw4Fojn8eaQTZFkmLYiu1Qjwf5ZqzfpjpVkwFA5vWP", + "lebuissonvert", + "", + "" + ], + [ + "5DduqUGa6adAjCzctobEYCi7H95zVHmYJz4ABSxVDca2jnyc", + "kanye", + "", + "i like music" + ], + [ + "5ErJnL5y3ULbpY9ET72jH55463hUgtCizegxHM1z2UAU1QSS", + "testuser", + "", + "Test user tutorial video :)" + ], + [ + "5FhsNAweHdxpyYFPYrxTd7AUmcUF4BurLLFXod5shFnBnare", + "ninja", + "", + "" + ], + [ + "5HNmE3cF4jsLmH1ncMsFfjizzJ3rN3jqPZsDRrBny2c3ArFJ", + "alice31taky29", + "", + "" + ], + [ + "5Cu8m13XcUzQBWnx2MpW7vv3uqn7AULjfz2oHjnXemz3NRf4", + "amins", + "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:", + "Newbie and i wana try" + ], + [ + "5DmT8k6yKxvaEsqTQJbnMcmEN5jnHzexrNpAhgv6Av43ujCc", + "sameeraio", + "", + "" + ], + [ + "5FxqY3WjWEXN6NvoQKizX4zKbsDjWSjHhSAGybevsPyK4A7c", + "arvydas77", + "https://previews.123rf.com/images/lar01joka/lar01joka1712/lar01joka171200138/90908719-avatar-of-an-elephant.jpg", + "Freedom is the only form of bright future. Seeking it. " + ], + [ + "5FPS4Zwnw8wEkeHU1bAQvJdeNi6npFtZ4ZGn7u1jV5RT7TRZ", + "axl77", + "", + "Huge fan of Joy. " + ], + [ + "5HTnAnbS4pmaphWTbswEzKqiPooZ3nhaz3BXrZcK6xZqFScy", + "sameeraiostore", + "", + "" + ], + [ + "5CGU3jcszVXmVzfYadnbTV7UX8WGFCdhK4747H6nQS9DkANB", + "kuzo998", + "https://trinitymargate.co.uk/centre/wp-content/uploads/2018/10/blank-profile-head-hi.png", + "Looking For a way to enjoy and learn ! , its boring if not to " + ], + [ + "5GaLH57Uc8Ukcu8K5LyV74cFdT5QBrs4i2fv21cH28zQ1KSn", + "gordon_freeman", + "", + "" + ], + [ + "5Hhigra11Ysa6eToMnq7u1zNdt7jpkDay96GQnEzd51sHSAy", + "beesus", + "", + "freedom! and plants :)" + ], + [ + "5EU1xYaDfS3soKfsC9KYCFke27MNe72P3ppRmbhL4KPGXqYt", + "emcbandit", + "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", + "Hello!" + ], + [ + "5Em2snJcaFUZEfNTd5ptiz8UGMR4afAyuHjkWgTChz7iuCis", + "trollzor", + "", + "" + ], + [ + "5DyadsUvmq8R4gVNaBvmxbTYMSKzY6C7GDu2Cbe8myoc2d25", + "smartone", + "", + "" + ], + [ + "5HAqzEbGjqAogGkB79LAyaykGrVBQzcNbbprXXDLQXEBJ6Hu", + "mari987", + "", + ":)" + ], + [ + "5Gt22BMiRRpCMYmGH7ZPiqvu75dCxRKQi9isTQaP6hQe3rsN", + "st342", + "", + "" + ], + [ + "5G9YYKhvKfQALRaQxcr7xNCnYeHrjtvPzBsAaQNrquxEbPh5", + "bowene", + "", + "" + ], + [ + "5HCm7oxxHz31nLaBa3AaquiUh4YZpVMVPXc8394knQisuuY7", + "kiwi7", + "", + "" + ], + [ + "5ECGdL57kUvZp2wEV2oFCDhHgR2xVkVj94J8QYSHELEMArZ8", + "yourheropaul", + "https://yhp.io/img/paul.svg", + "" + ], + [ + "5DM86nVT4KUjyYoKRxMgHRVzoaxtD7TwBQBH51fCd369sUpY", + "bradt", + "", + "" + ], + [ + "5DfUdK9eDYieRiduVteTiMmvkESZP5e9HY7QGN7KJkKktfbV", + "leverett", + "", + "" + ], + [ + "5Ctiz9ob2cwyNKpW19Z8Lupva3n2TiypP6wNWE96uWoYhyJU", + "nonoenee", + "", + "try to be luck" + ], + [ + "5FYkKPu31Da34u98dqmLLCbvN2nvEYrgA8nrAijzfPTEwDzt", + "almohajer", + "", + "" + ], + [ + "5ExX4ukX34r776hChUdEyWDgedGn2tQYJ12vR7HknBaJzEWi", + "cupton668", + "", + "" + ], + [ + "5Dz3Q57rSWC7oz9pqCNvSGW2GoqgHT1ALhP317Js567Qcm6V", + "fae811", + "", + "" + ], + [ + "5D2sy535bCjWP2xdsq99Zi8V9AXmxAQATAYghF8UAi8fUPr7", + "hotels", + "", + "" + ], + [ + "5EqNE3qoEU9pFgD4Lxi6JmygSzU2WSNuUsJCW8t7iLFYwRRj", + "roversl", + "", + "" + ], + [ + "5C693F9TvcWbgX6yL16uiaHZViSdH56NeAaPJsx35gNuTTzL", + "magickwar", + "", + "lets play lol" + ], + [ + "5E1NMAJCN1iVkDVx8AyHYS7bAy1RHYeCGibunENAc5FYPumy", + "ulrich0h", + "", + "" + ], + [ + "5CpLsg7C8GiJoooZxghV1grHzuoQTMwoYu6cMJmwY4eRumHT", + "plerrr", + "", + "love joy stream" + ], + [ + "5DMzgbnt1DxhDbqVsApXERn6H6kjbVmSszZoKv3jZuZXsgZH", + "iced_tea", + "", + "" + ], + [ + "5FcGZZriqZAyLo4E1AAaSVVMs5pUpkRgErP6V9CexXEL5959", + "kekmexs_voting_key", + "", + "This is kek-mex's voting key for council votes." + ], + [ + "5FbfGSJwhF86PpELtSR1M72Qk1WnRTqWCtYv5xpeUga3heiS", + "muibast", + "https://i.imgur.com/gLSRbRgh.jpg", + "" + ], + [ + "5Heho3UpURG9SkSegA2Nq5v1L9yb7mNreaq6wzocUdmzP5F9", + "arish", + "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", + "Wana try storege for income" + ], + [ + "5Ebbqp937kZUzZHvrUf41kEhbuZnYmRm4NqPj72NpvHfWgsQ", + "kemau", + "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:", + "monero" + ] + ] + }, + "forum": { + "categoryById": [ + [ + 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": 1010118, + "time": 1561400376 + }, + "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": "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": 1010132, + "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": 1010212, + "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": 1021321, + "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": 1021334, + "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": 1021344, + "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": 1021369, + "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": 1190821, + "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": 1281336, + "time": 1563034584 + }, + "deleted": false, + "archived": false, + "num_direct_subcategories": 0, + "num_direct_unmoderated_threads": 0, + "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": 2245480, + "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": 2254128, + "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" + } + ] + ], + "nextCategoryId": 12, + "threadById": [ + [ + 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": 1011134, + "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": 1011254, + "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": 1011265, + "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": 1021294, + "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": 1028071, + "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": 1035129, + "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": 1061687, + "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": 1136406, + "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": 1281409, + "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": 1281297, + "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": 1281973, + "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": 2245487, + "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": 2245491, + "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": 2245497, + "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": 2245501, + "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": 2245508, + "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": 2254069, + "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": 2254074, + "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": 2254079, + "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": 2254102, + "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": 2254108, + "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": 2254152, + "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": 2254156, + "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": 2254207, + "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": 2254211, + "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": 2254214, + "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": 2254224, + "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": 2254238, + "time": 1568900484 + }, + "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" + } + ] + ], + "nextThreadId": 28, + "postById": [ + [ + 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": 1011134, + "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": 1011254, + "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": 1011265, + "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": 1017392, + "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": 1018546, + "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": 1019406, + "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": 1021294, + "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": 1028071, + "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": 1030883, + "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": 1035129, + "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": 1061687, + "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": 1134118, + "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": 1136380, + "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": 1136406, + "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": [ + { + "expired_at": { + "block": 1150700, + "time": 1562247822 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150719, + "time": 1562247936 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150767, + "time": 1562248224 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150776, + "time": 1562248278 + }, + "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 + ] + }, + { + "expired_at": { + "block": 1150807, + "time": 1562248464 + }, + "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 + ] + } + ], + "created_at": { + "block": 1150684, + "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": 1218378, + "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": 1224663, + "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": 1271763, + "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": [ + { + "expired_at": { + "block": 1279770, + "time": 1563025104 + }, + "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, + 116, + 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 + ] + } + ], + "created_at": { + "block": 1271962, + "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": [ + { + "expired_at": { + "block": 1271997, + "time": 1562978346 + }, + "text": [ + 87, + 104, + 97, + 116, + 32, + 105, + 110, + 32, + 112, + 97, + 114, + 116, + 105, + 99, + 117, + 108, + 97, + 114, + 32, + 97, + 116, + 116, + 114, + 97, + 99, + 116, + 101, + 100, + 32, + 121, + 111, + 117, + 32, + 116, + 111, + 32, + 116, + 104, + 101, + 32, + 105, + 100, + 101, + 97, + 32, + 111, + 102, + 32, + 97, + 32, + 117, + 115, + 101, + 114, + 32, + 103, + 111, + 118, + 101, + 114, + 110, + 101, + 100, + 32, + 97, + 110, + 100, + 32, + 111, + 112, + 101, + 114, + 97, + 116, + 101, + 100, + 32, + 118, + 105, + 100, + 101, + 111, + 32, + 112, + 108, + 97, + 116, + 102, + 111, + 114, + 109, + 63 + ] + }, + { + "expired_at": { + "block": 1279806, + "time": 1563025320 + }, + "text": [ + 72, + 105, + 32, + 116, + 104, + 101, + 114, + 101, + 33, + 32, + 87, + 104, + 97, + 116, + 32, + 105, + 110, + 32, + 112, + 97, + 114, + 116, + 105, + 99, + 117, + 108, + 97, + 114, + 32, + 97, + 116, + 116, + 114, + 97, + 99, + 116, + 101, + 100, + 32, + 121, + 111, + 117, + 32, + 116, + 111, + 32, + 116, + 104, + 101, + 32, + 105, + 100, + 101, + 97, + 32, + 111, + 102, + 32, + 97, + 32, + 117, + 115, + 101, + 114, + 32, + 103, + 111, + 118, + 101, + 114, + 110, + 101, + 100, + 32, + 97, + 110, + 100, + 32, + 111, + 112, + 101, + 114, + 97, + 116, + 101, + 100, + 32, + 118, + 105, + 100, + 101, + 111, + 32, + 112, + 108, + 97, + 116, + 102, + 111, + 114, + 109, + 63 + ] + }, + { + "expired_at": { + "block": 1324500, + "time": 1563294780 + }, + "text": [ + 72, + 105, + 32, + 116, + 104, + 101, + 114, + 101, + 33, + 32, + 87, + 104, + 97, + 116, + 32, + 105, + 110, + 32, + 112, + 97, + 114, + 116, + 105, + 99, + 117, + 108, + 97, + 114, + 32, + 97, + 116, + 116, + 114, + 97, + 99, + 116, + 101, + 100, + 32, + 121, + 111, + 117, + 32, + 116, + 111, + 32, + 116, + 104, + 101, + 32, + 105, + 100, + 101, + 97, + 32, + 111, + 102, + 32, + 97, + 32, + 117, + 115, + 101, + 114, + 32, + 103, + 111, + 118, + 101, + 114, + 110, + 101, + 100, + 32, + 97, + 110, + 100, + 32, + 111, + 112, + 101, + 114, + 97, + 116, + 101, + 100, + 32, + 109, + 101, + 100, + 105, + 97, + 32, + 112, + 108, + 97, + 116, + 102, + 111, + 114, + 109, + 63 + ] + } + ], + "created_at": { + "block": 1271994, + "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": 1279782, + "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": 1281297, + "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": 1281973, + "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": [ + { + "expired_at": { + "block": 1306505, + "time": 1563186186 + }, + "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 + ] + } + ], + "created_at": { + "block": 1306501, + "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": 1309887, + "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": 1310797, + "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": 2134593, + "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": 2187819, + "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": [ + { + "expired_at": { + "block": 2270455, + "time": 1568998128 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270550, + "time": 1568998698 + }, + "text": [ + 35, + 32, + 79, + 118, + 101, + 114, + 118, + 105, + 101, + 119, + 10, + 84, + 104, + 105, + 115, + 32, + 116, + 104, + 114, + 101, + 97, + 100, + 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 + ] + } + ], + "created_at": { + "block": 2245487, + "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": [ + { + "expired_at": { + "block": 2270386, + "time": 1568997714 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270416, + "time": 1568997894 + }, + "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, + 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 + ] + } + ], + "created_at": { + "block": 2245491, + "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": [ + { + "expired_at": { + "block": 2270646, + "time": 1568999274 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270649, + "time": 1568999292 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2245497, + "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": [ + { + "expired_at": { + "block": 2270725, + "time": 1568999748 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2270732, + "time": 1568999790 + }, + "text": [ + 35, + 35, + 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, + 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, + 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, + 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, + 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, + 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, + 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 + ] + }, + { + "expired_at": { + "block": 2270743, + "time": 1568999856 + }, + "text": [ + 35, + 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, + 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, + 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, + 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, + 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, + 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, + 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 + ] + } + ], + "created_at": { + "block": 2245501, + "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": [ + { + "expired_at": { + "block": 2270776, + "time": 1569000054 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2245508, + "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": [ + { + "expired_at": { + "block": 2285041, + "time": 1569085848 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254069, + "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": [ + { + "expired_at": { + "block": 2300521, + "time": 1569179088 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254074, + "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": [ + { + "expired_at": { + "block": 2300522, + "time": 1569179094 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254079, + "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": [ + { + "expired_at": { + "block": 2300646, + "time": 1569179838 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254102, + "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": [ + { + "expired_at": { + "block": 2300717, + "time": 1569180264 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + }, + { + "expired_at": { + "block": 2300720, + "time": 1569180282 + }, + "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, + 10 + ] + } + ], + "created_at": { + "block": 2254108, + "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": [ + { + "expired_at": { + "block": 2284752, + "time": 1569084114 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254152, + "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": [ + { + "expired_at": { + "block": 2284863, + "time": 1569084780 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254156, + "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": [ + { + "expired_at": { + "block": 2284917, + "time": 1569085104 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254207, + "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": [ + { + "expired_at": { + "block": 2284935, + "time": 1569085212 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254211, + "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": [ + { + "expired_at": { + "block": 2284980, + "time": 1569085482 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254214, + "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": [ + { + "expired_at": { + "block": 2285002, + "time": 1569085614 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254224, + "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": [ + { + "expired_at": { + "block": 2285021, + "time": 1569085728 + }, + "text": [ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + ] + } + ], + "created_at": { + "block": 2254238, + "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": [ + { + "expired_at": { + "block": 2270412, + "time": 1568997870 + }, + "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, + 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 + ] + } + ], + "created_at": { + "block": 2270391, + "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": [ + { + "expired_at": { + "block": 2270402, + "time": 1568997810 + }, + "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, + 49, + 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 + ] + } + ], + "created_at": { + "block": 2270395, + "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": 2270405, + "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": [ + { + "expired_at": { + "block": 2270579, + "time": 1568998872 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2270429, + "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": 2270458, + "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": [ + { + "expired_at": { + "block": 2270468, + "time": 1568998206 + }, + "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, + 10, + 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 + ] + } + ], + "created_at": { + "block": 2270463, + "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": 2270470, + "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": 2270475, + "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": 2270478, + "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": 2270484, + "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": [ + { + "expired_at": { + "block": 2270492, + "time": 1568998350 + }, + "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, + 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, + 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, + 91, + 67, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 32, + 66, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 93, + 40, + 35, + 99, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 45, + 98, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 41, + 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 + ] + } + ], + "created_at": { + "block": 2270486, + "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": [ + { + "expired_at": { + "block": 2270500, + "time": 1568998398 + }, + "text": [ + 45, + 32, + 42, + 42, + 66, + 111, + 117, + 110, + 116, + 121, + 42, + 42, + 10, + 32, + 32, + 45, + 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, + 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, + 91, + 67, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 32, + 66, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 93, + 40, + 35, + 99, + 111, + 110, + 99, + 108, + 117, + 100, + 101, + 100, + 45, + 98, + 111, + 117, + 110, + 116, + 105, + 101, + 115, + 41, + 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 + ] + } + ], + "created_at": { + "block": 2270496, + "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": 2270515, + "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": 2270518, + "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": [ + { + "expired_at": { + "block": 2270538, + "time": 1568998626 + }, + "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, + 105, + 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 + ] + } + ], + "created_at": { + "block": 2270523, + "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": 2270525, + "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": [ + { + "expired_at": { + "block": 2270541, + "time": 1568998644 + }, + "text": [ + 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 + ] + }, + { + "expired_at": { + "block": 2270545, + "time": 1568998668 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2270530, + "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": 2270572, + "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": 2270655, + "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": 2270660, + "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": 2270663, + "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": 2270666, + "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": 2270669, + "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": 2270674, + "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": 2270679, + "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": 2270707, + "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": 2270739, + "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": 2270779, + "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": 2270784, + "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": 2270787, + "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": 2270794, + "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": 2270802, + "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": 2284756, + "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": 2284759, + "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": 2284762, + "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": 2284764, + "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": 2284766, + "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": 2284768, + "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": 2284771, + "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": 2284774, + "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": 2284782, + "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": 2284793, + "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": 2284796, + "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": 2284800, + "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": 2284803, + "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": 2284807, + "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": 2284811, + "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": 2284813, + "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": 2284819, + "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": 2284822, + "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": 2284827, + "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": 2284831, + "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": 2284841, + "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": 2284848, + "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": 2284853, + "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": 2284857, + "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": 2284865, + "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": 2284868, + "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": 2284871, + "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": 2284877, + "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": 2284881, + "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": 2284883, + "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": 2284890, + "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": 2284894, + "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": 2284919, + "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": 2284921, + "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": [ + { + "expired_at": { + "block": 2284939, + "time": 1569085236 + }, + "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 + ] + } + ], + "created_at": { + "block": 2284932, + "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": [ + { + "expired_at": { + "block": 2284955, + "time": 1569085332 + }, + "text": [ + 35, + 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 + ] + } + ], + "created_at": { + "block": 2284947, + "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": 2284951, + "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": 2284957, + "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": 2284959, + "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": 2284961, + "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": 2284963, + "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": [ + { + "expired_at": { + "block": 2285012, + "time": 1569085674 + }, + "text": [ + 35, + 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 + ] + } + ], + "created_at": { + "block": 2285008, + "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": 2285010, + "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": 2285044, + "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": 2285046, + "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": 2285049, + "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": 2285051, + "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": [ + { + "expired_at": { + "block": 2285061, + "time": 1569085968 + }, + "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 + ] + } + ], + "created_at": { + "block": 2285053, + "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": 2285080, + "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": 2285100, + "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": 2285102, + "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": 2285110, + "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": 2285112, + "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": 2285116, + "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": 2285120, + "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": 2285123, + "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": 2285127, + "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": 2300526, + "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": 2300527, + "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": 2300532, + "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": 2300534, + "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": 2300536, + "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": 2300539, + "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": 2300547, + "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": 2300555, + "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": [ + { + "expired_at": { + "block": 2300604, + "time": 1569179586 + }, + "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, + 111, + 32, + 91, + 104, + 101, + 114, + 101, + 93, + 40, + 35, + 103, + 101, + 110, + 101, + 114, + 97, + 116, + 101, + 45, + 121, + 111, + 117, + 114, + 45, + 107, + 101, + 121, + 115, + 41, + 32, + 116, + 111, + 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, + 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 + ] + } + ], + "created_at": { + "block": 2300557, + "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": 2300561, + "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": 2300563, + "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": 2300566, + "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": 2300568, + "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": 2300571, + "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": 2300578, + "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": 2300583, + "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": 2300585, + "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": 2300588, + "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": 2300590, + "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": 2300593, + "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": 2300596, + "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": 2300599, + "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": 2300610, + "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": 2300612, + "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": 2300615, + "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": 2300617, + "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": 2300619, + "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": 2300653, + "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": 2300655, + "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": 2300657, + "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": 2300658, + "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": 2300663, + "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": [ + { + "expired_at": { + "block": 2300673, + "time": 1569180000 + }, + "text": [ + 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 + ] + } + ], + "created_at": { + "block": 2300665, + "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": 2300677, + "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": 2300681, + "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": 2300686, + "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": 2300688, + "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": 2300692, + "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": 2300697, + "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": 2300699, + "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": 2300722, + "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": [ + { + "expired_at": { + "block": 2300736, + "time": 1569180378 + }, + "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, + 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 + ] + } + ], + "created_at": { + "block": 2300726, + "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": [ + { + "expired_at": { + "block": 2300743, + "time": 1569180420 + }, + "text": [ + 45, + 45, + 45, + 10, + 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, + 79, + 114, + 58, + 10, + 10, + 45, + 45, + 45 + ] + } + ], + "created_at": { + "block": 2300731, + "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": 2300738, + "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": [ + { + "expired_at": { + "block": 2300754, + "time": 1569180486 + }, + "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, + 45, + 45, + 45, + 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 + ] + } + ], + "created_at": { + "block": 2300745, + "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": 2300748, + "time": 1569180450 + }, + "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" + } + ] + ], + "nextPostId": 181, + "forumSudo": "5C5Emc3PvsdxQqFiNiNpLVAZTbFzqMaYPS2o9J846cnaSxeb", + "categoryTitleConstraint": { + "min": 10, + "max_min_diff": 90 + }, + "categoryDescriptionConstraint": { + "min": 10, + "max_min_diff": 490 + }, + "threadTitleConstraint": { + "min": 10, + "max_min_diff": 90 + }, + "postTextConstraint": { + "min": 10, + "max_min_diff": 990 + }, + "threadModerationRationaleConstraint": { + "min": 10, + "max_min_diff": 290 + }, + "postModerationRationaleConstraint": { + "min": 10, + "max_min_diff": 290 + } + }, + "actors": { + "requestLifeTime": 300, + "enableStorageRole": true + }, + "dataObjectTypeRegistry": { + "firstDataObjectTypeId": 1 + }, + "dataObjectStorageRegistry": { + "firstRelationshipId": 1 + }, + "versionedStore": { + "classById": [], + "entityById": [], + "nextClassId": 1, + "nextEntityId": 1, + "propertyNameConstraint": { + "min": 1, + "max_min_diff": 99 + }, + "propertyDescriptionConstraint": { + "min": 1, + "max_min_diff": 999 + }, + "classNameConstraint": { + "min": 1, + "max_min_diff": 99 + }, + "classDescriptionConstraint": { + "min": 1, + "max_min_diff": 999 + } + }, + "contentWg": { + "curatorOpeningById": [], + "nextCuratorOpeningId": 0, + "curatorApplicationById": [], + "nextCuratorApplicationId": 0, + "channelById": [], + "nextChannelId": 1, + "channelIdByHandle": [], + "curatorById": [], + "nextCuratorId": 0, + "principalById": [], + "nextPrincipalId": 0, + "channelCreationEnabled": true, + "unstakerByStakeId": [], + "channelHandleConstraint": { + "min": 5, + "max_min_diff": 20 + }, + "channelTitleConstraint": { + "min": 5, + "max_min_diff": 1024 + }, + "channelDescriptionConstraint": { + "min": 1, + "max_min_diff": 1024 + }, + "channelAvatarConstraint": { + "min": 5, + "max_min_diff": 1024 + }, + "channelBannerConstraint": { + "min": 5, + "max_min_diff": 1024 + }, + "openingHumanReadableText": { + "min": 1, + "max_min_diff": 2048 + }, + "curatorApplicationHumanReadableText": { + "min": 1, + "max_min_diff": 2048 + }, + "curatorExitRationaleText": { + "min": 1, + "max_min_diff": 2048 + }, + "mintCapacity": 100000 + } + } + } +} \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 63a983f228..95701562e6 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -159,7 +159,7 @@ impl Alternative { "dev" => Some(Alternative::Development), "local" => Some(Alternative::LocalTestnet), "staging" => Some(Alternative::StagingTestnet), - "" | "testnet" => Some(Alternative::LiveTestnet), + "" | "rome" => Some(Alternative::LiveTestnet), _ => None, } } @@ -171,7 +171,7 @@ fn new_vs_validation(min: u16, max_min_diff: u16) -> VsInputValidation { /// Joystream LiveTestnet generator pub fn live_testnet_config() -> Result { - ChainSpec::from_json_bytes(&include_bytes!("../res/dummy.json")[..]) + ChainSpec::from_json_bytes(&include_bytes!("../res/rome-staging.json")[..]) } pub fn chain_spec_properties() -> json::map::Map { From 470d2e4cb319ea8dcd96fd8edb2a505032893fc8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Mar 2020 10:37:23 +0400 Subject: [PATCH 272/350] update some docker instructions in readme --- README.md | 34 +++++++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5b5de02e46..61b0a08723 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ cd substrate-node-joystream/ ./setup.sh ``` +If you prefer to use docker see [building with docker](Docker). + ### Building ```bash @@ -62,14 +64,36 @@ When making changes to the runtime library remember to purge the chain after reb cargo run --release -- purge-chain --dev ``` -### Docker - experimental +### Docker + +#### Building localy -A joystream-node can be run in a docker container using the provided [Dockerfile](Dockerfile): +A joystream-node can be compiled with give [Dockerfile](Dockerfile) file: ```bash -# Build and tag a new docker image, which will compile joystream-node from source -# The image is specifically made run joystream-node full node inside a container. +# Build and tag a new image, which will compile joystream-node from source docker build . -t joystream-node -# run a development chain by launching a new docker container, publishing the websocket port + +# 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 + +```bash +docker run -d -p 30333:30333 --name my-node joystream/node + +# check status +docker ps + +# monitor logs +docker logs --tail 100 -f my-node +``` + +[More advanced guide]() \ No newline at end of file From 8eee68b2a0cadafc7628622225b05915329e16e5 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 5 Mar 2020 16:17:30 +0400 Subject: [PATCH 273/350] keep experimental dockerfile separate --- Dockerfile | 13 ++----------- Dockerfile_experimental | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 11 deletions(-) create mode 100644 Dockerfile_experimental diff --git a/Dockerfile b/Dockerfile index 545506a668..8a45e16675 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,23 +1,14 @@ -# 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 +RUN cargo build --release FROM debian:stretch LABEL description="Joystream node" WORKDIR /joystream -COPY --from=builder /build-output/joystream-node /joystream/node +COPY --from=builder /joystream/target/release/joystream-node /joystream/node # Use these volumes to persits chain state and keystore, eg.: # --base-path /data diff --git a/Dockerfile_experimental b/Dockerfile_experimental new file mode 100644 index 0000000000..545506a668 --- /dev/null +++ b/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 From 3b6656ed2bcb2030c28ea6c2700e81f5b29a2277 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 6 Mar 2020 19:54:45 +0400 Subject: [PATCH 274/350] bump runtime --- Cargo.lock | 155 ++++++++++++++++++++++++++++------------------------- Cargo.toml | 20 +++---- 2 files changed, 92 insertions(+), 83 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 589cdabfb4..50852e2f1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,7 +115,7 @@ name = "asn1_der_derive" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -619,7 +619,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -695,20 +695,20 @@ dependencies = [ [[package]] name = "failure" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "failure_derive" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -907,7 +907,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1306,7 +1306,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1372,7 +1372,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.2.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p)", + "joystream-node-runtime 6.6.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1409,8 +1409,8 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "6.2.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p#bc373e366b07a0d55887584c37d786aa497946aa" +version = "6.6.0" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch#a7d1bbbd2beacc2ec57e753f56be30f5422f9b5c" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1443,16 +1443,16 @@ dependencies = [ "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=upgrade-libp2p)", - "substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?branch=upgrade-libp2p)", + "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-forum-module?tag=v1.1.1)", + "substrate-hiring-module 1.0.1 (git+https://github.com/Joystream/substrate-hiring-module?tag=v1.0.1)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-recurring-reward-module 1.0.0 (git+https://github.com/mnaamani/substrate-recurring-reward-module?branch=upgrade-libp2p)", + "substrate-recurring-reward-module 1.0.1 (git+https://github.com/Joystream/substrate-recurring-reward-module?tag=v1.0.1)", "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.0 (git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p)", - "substrate-token-mint-module 1.0.0 (git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p)", - "substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)", - "substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p)", + "substrate-stake-module 1.0.1 (git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1)", + "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?tag=v1.0.1)", "substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1469,7 +1469,7 @@ name = "jsonrpc-client-transports" version = "14.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1518,7 +1518,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1693,7 +1693,7 @@ dependencies = [ "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "ed25519-dalek 1.0.0-pre.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2461,7 +2461,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2614,7 +2614,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2695,7 +2695,7 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2713,7 +2713,7 @@ version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -2775,7 +2775,7 @@ name = "prost-derive" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2811,7 +2811,7 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3133,7 +3133,7 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "merlin 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3194,7 +3194,7 @@ version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3369,7 +3369,7 @@ dependencies = [ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3688,7 +3688,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3733,7 +3733,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3746,7 +3746,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3757,7 +3757,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3875,7 +3875,7 @@ dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3990,7 +3990,7 @@ source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a1232 dependencies = [ "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4193,7 +4193,7 @@ version = "2.0.0" source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4276,11 +4276,12 @@ dependencies = [ [[package]] name = "substrate-forum-module" -version = "1.1.0" -source = "git+https://github.com/mnaamani/substrate-forum-module?branch=upgrade-libp2p#a403cb2994790e2f29b2e9886a1f35ba5bdaf181" +version = "1.1.1" +source = "git+https://github.com/joystream/substrate-forum-module?tag=v1.1.1#5918fc90d25faeac06311b0d6b05305cbe722a27" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4305,11 +4306,12 @@ dependencies = [ [[package]] name = "substrate-hiring-module" -version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-hiring-module?branch=upgrade-libp2p#ac45de704e0147dfb9ad7fb8d3375a01fe9df6ad" +version = "1.0.1" +source = "git+https://github.com/Joystream/substrate-hiring-module?tag=v1.0.1#e387af033fb0e81c66d487bdec445153b0fe3cdf" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4320,7 +4322,7 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.0 (git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p)", + "substrate-stake-module 1.0.1 (git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1)", ] [[package]] @@ -4522,11 +4524,12 @@ dependencies = [ [[package]] name = "substrate-recurring-reward-module" -version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-recurring-reward-module?branch=upgrade-libp2p#84bc180bdff6709ad952135fff1cb13d4426758c" +version = "1.0.1" +source = "git+https://github.com/Joystream/substrate-recurring-reward-module?tag=v1.0.1#2c4bda1dea315629313643737c2f59979579fb50" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4537,7 +4540,7 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-token-mint-module 1.0.0 (git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1)", ] [[package]] @@ -4674,11 +4677,12 @@ dependencies = [ [[package]] name = "substrate-stake-module" -version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p#1829dfb79b5d26cc34619065bd12a38a9b0b4783" +version = "1.0.1" +source = "git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1#af5860c3cde5b11e37728df0b1dfbbdf9a9fa2f3" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4745,11 +4749,12 @@ dependencies = [ [[package]] name = "substrate-token-mint-module" -version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p#bec7a1b121eff86d5d1c8a8de11ac09094b6fe78" +version = "1.0.1" +source = "git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1#7905ce50136cf8483a808a1946fbf123b9ca4bb8" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4808,11 +4813,12 @@ dependencies = [ [[package]] name = "substrate-versioned-store" -version = "1.1.0" -source = "git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p#025734d46efaddf4aed0f6ed4c4a4beff0cc5403" +version = "1.0.1" +source = "git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1#24bcd60e84c1ece74a8a3130beb740f6fa760145" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4827,11 +4833,12 @@ dependencies = [ [[package]] name = "substrate-versioned-store-permissions-module" -version = "1.0.0" -source = "git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p#f981a6000eb210764c8e3b48d2142bc23af59fff" +version = "1.0.1" +source = "git+https://github.com/joystream/substrate-versioned-store-permissions-module?tag=v1.0.1#dd75f4bfe283673685c4ccf9de14384a546daa6e" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4841,7 +4848,7 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1)", ] [[package]] @@ -4883,7 +4890,7 @@ version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4893,7 +4900,7 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4988,7 +4995,7 @@ name = "tiny-bip39" version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5375,7 +5382,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -5426,7 +5433,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5448,7 +5455,7 @@ name = "wasm-bindgen-macro" version = "0.2.59" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-macro-support 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5458,7 +5465,7 @@ version = "0.2.59" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-backend 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5542,7 +5549,7 @@ name = "which" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5664,7 +5671,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5754,8 +5761,8 @@ dependencies = [ "checksum environmental 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "516aa8d7a71cb00a1c4146f0798549b93d083d4f189b3ced8f3de6b8f11ee6c4" "checksum erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)" = "cd7d80305c9bd8cd78e3c753eb9fb110f83621e5211f1a3afffcc812b104daf9" "checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" -"checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" -"checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" +"checksum failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b8529c2421efa3066a5cbd8063d2244603824daccb6936b079010bb2aa89464b" +"checksum failure_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "030a733c8287d6213886dd487564ff5c8f6aae10278b3588ed177f9d18f8d231" "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" "checksum fdlimit 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9084c55bb76efb1496328976db88320fe7d9ee86e649e83c4ecce3ba7a9a35d1" "checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" @@ -5830,7 +5837,7 @@ dependencies = [ "checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" "checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" "checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" -"checksum joystream-node-runtime 6.2.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=upgrade-libp2p)" = "" +"checksum joystream-node-runtime 6.6.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)" = "" "checksum js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" "checksum jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -5958,7 +5965,7 @@ dependencies = [ "checksum protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40361836defdd5871ff7e84096c6f6444af7fc157f8ef1789f54f147687caa20" "checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" -"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" +"checksum quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f" "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" "checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" @@ -6080,9 +6087,9 @@ dependencies = [ "checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-forum-module 1.1.0 (git+https://github.com/mnaamani/substrate-forum-module?branch=upgrade-libp2p)" = "" +"checksum substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-forum-module?tag=v1.1.1)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-hiring-module 1.0.0 (git+https://github.com/mnaamani/substrate-hiring-module?branch=upgrade-libp2p)" = "" +"checksum substrate-hiring-module 1.0.1 (git+https://github.com/Joystream/substrate-hiring-module?tag=v1.0.1)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" @@ -6094,7 +6101,7 @@ dependencies = [ "checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-recurring-reward-module 1.0.0 (git+https://github.com/mnaamani/substrate-recurring-reward-module?branch=upgrade-libp2p)" = "" +"checksum substrate-recurring-reward-module 1.0.1 (git+https://github.com/Joystream/substrate-recurring-reward-module?tag=v1.0.1)" = "" "checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" @@ -6102,16 +6109,16 @@ dependencies = [ "checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-stake-module 1.0.0 (git+https://github.com/mnaamani/substrate-stake-module/?branch=upgrade-libp2p)" = "" +"checksum substrate-stake-module 1.0.1 (git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1)" = "" "checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-token-mint-module 1.0.0 (git+https://github.com/mnaamani/substrate-token-minting-module/?branch=upgrade-libp2p)" = "" +"checksum substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1)" = "" "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-versioned-store 1.1.0 (git+https://github.com/mnaamani/substrate-versioned-store-module?branch=upgrade-libp2p)" = "" -"checksum substrate-versioned-store-permissions-module 1.0.0 (git+https://github.com/mnaamani/substrate-versioned-store-permissions-module?branch=upgrade-libp2p)" = "" +"checksum substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1)" = "" +"checksum substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?tag=v1.0.1)" = "" "checksum substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" diff --git a/Cargo.toml b/Cargo.toml index 4b4807495f..45048f7e85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,17 @@ 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' +# git = 'https://github.com/joystream/substrate-runtime-joystream' +git = 'https://github.com/mnaamani/substrate-runtime-joystream' +# rev = 'b161c0c4ef847978a715c6beeaeadac0fadc9a72' # v6.1.0 +# local development... +# path = '/Users/mokhtar/joystream/runtime' +branch = 'quote-patch' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' @@ -57,15 +68,6 @@ git = 'https://github.com/paritytech/substrate.git' package = 'substrate-network' rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' -[dependencies.node-runtime] -package = 'joystream-node-runtime' -# git = 'https://github.com/joystream/substrate-runtime-joystream' -git = 'https://github.com/mnaamani/substrate-runtime-joystream' -# rev = 'b161c0c4ef847978a715c6beeaeadac0fadc9a72' # v6.1.0 -# local development... -# path = '/Users/mokhtar/joystream/runtime' -branch = 'upgrade-libp2p' - [dependencies.primitives] git = 'https://github.com/paritytech/substrate.git' package = 'substrate-primitives' From 1b61a3fb358a747d02b0ff17ca0a9812bab5bd7e Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 8 Mar 2020 13:38:56 +0400 Subject: [PATCH 275/350] bump node version to v2.0.1 --- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50852e2f1e..58ea656e8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -349,7 +349,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "chrono" -version = "0.4.10" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", @@ -609,7 +609,7 @@ dependencies = [ [[package]] name = "doc-comment" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1364,7 +1364,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "2.0.0" +version = "2.1.0" dependencies = [ "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1372,7 +1372,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.6.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)", + "joystream-node-runtime 6.8.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1409,8 +1409,8 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "6.6.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch#a7d1bbbd2beacc2ec57e753f56be30f5422f9b5c" +version = "6.8.0" +source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch#ec9dc53e41d45edef0132798bf8abf518648fc50" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3285,7 +3285,7 @@ name = "slog-json" version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4911,7 +4911,7 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "doc-comment 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5381,7 +5381,7 @@ version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -5723,7 +5723,7 @@ dependencies = [ "checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" "checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" -"checksum chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01" +"checksum chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2" "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" @@ -5751,7 +5751,7 @@ dependencies = [ "checksum derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe" "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" "checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" -"checksum doc-comment 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "923dea538cea0aa3025e8685b20d6ee21ef99c4f77e954a30febbaac5ec73a97" +"checksum doc-comment 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "807e5847c39ad6a11eac66de492ed1406f76a260eb8656e8740cad9eabc69c27" "checksum ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d07e8b8a8386c3b89a7a4b329fdfa4cb545de2545e9e2ebbc3dd3929253e426" "checksum ed25519-dalek 1.0.0-pre.3 (registry+https://github.com/rust-lang/crates.io-index)" = "978710b352437433c97b2bff193f2fb1dfd58a093f863dd95e225a19baa599a2" "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" @@ -5837,7 +5837,7 @@ dependencies = [ "checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" "checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" "checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" -"checksum joystream-node-runtime 6.6.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)" = "" +"checksum joystream-node-runtime 6.8.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)" = "" "checksum js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" "checksum jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" diff --git a/Cargo.toml b/Cargo.toml index 45048f7e85..83077bc201 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '2.0.0' +version = '2.1.0' [dependencies] hex-literal = '0.2.1' From 97e01eaa5e2a3c510b9589cb8b19040cccfdf0ad Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 9 Mar 2020 18:34:27 +0400 Subject: [PATCH 276/350] acropolis members and forum snapshot --- res/acropolis_members.json | 2 +- res/forum_data_acropolis_encoded.json | 2 +- res/forum_data_acropolis_serialized.json | 110915 +------------------- 3 files changed, 3 insertions(+), 110916 deletions(-) diff --git a/res/acropolis_members.json b/res/acropolis_members.json index 9584950fd7..0912c071ef 100644 --- a/res/acropolis_members.json +++ b/res/acropolis_members.json @@ -1 +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":"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/res/forum_data_acropolis_encoded.json b/res/forum_data_acropolis_encoded.json index 0228ee81ef..3896d13016 100644 --- a/res/forum_data_acropolis_encoded.json +++ b/res/forum_data_acropolis_encoded.json @@ -1 +1 @@ -{"categories":[[1,"01000000000000004847656e6572616c2044697363757373696f6e01014865726520796f752063616e206469736375737320616e797468696e6720796f752077616e74210a286a757374206b656570207468696e677320636976696c29c6690f00000000003814115d000000000000000000000500000000000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[2,"02000000000000003c4a6f7973747265616d20526f6c6573310155736520746869732063617465676f727920746f2064697363757373207468652063757272656e7420616e6420667574757265204a6f7973747265616d206e6574776f726b20726f6c65732ed4690f00000000008c14115d000000000000050000000100000001000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[3,"03000000000000005c4f66662d746f706963202873686974706f7374696e67295c4a757374206b656570207468696e677320636976696c21246a0f00000000006c16115d000000000000000000000300000000000000000ae55282e669fc55cb9529c0b12b989f2c5bf636d0de7630b5a4850055ed9c30"],[4,"04000000000000002856616c696461746f727365014865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e672061206056616c696461746f7260c2a06f6e20746865204a6f7973747265616d206e6574776f726b2e89950f0000000000661b125d000000000000000000000500000000000000010200000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[5,"05000000000000004453746f726167652050726f76696465727385014865726520796f752063616e206469736375737320616c6c206d61747465727320726567617264696e6720746865206053746f726167652050726f766964657260c2a0726f6c65206f6e20746865204a6f7973747265616d206e6574776f726b2e96950f0000000000b41b125d000000000000000000000200000000000000010200000000000000010000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[6,"06000000000000003c436f756e63696c204d656d6265727379014865726520796f752063616e206469736375737320616c6c206d61747465727320726567617264696e67207468652060436f756e63696c204d656d6265726020726f6c65206f6e20746865204a6f7973747265616d206e6574776f726b2ea0950f0000000000f01b125d000000000000000000000300000000000000010200000000000000020000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[7,"070000000000000060476f7665726e616e636520616e642050726f706f73616c730501546869732069732074686520706c61636520746f206469736375737320676f7665726e616e6365206f6e20746865204a6f7973747265616d204e6574776f726b2eb9950f00000000008c1c125d000000000100000000000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[8,"0800000000000000584a6f7973747265616d20436f6d7065746974696f6e738501546869732063617465676f727920636f6e7461696e7320696e666f206f6e20706173742c2063757272656e7420616e642066757475726520636f6d7065746974696f6e7320666f7220746865204a6f7973747265616d20636f6d6d756e6974792ea52b120000000000d2b1215d000000000100000000000000000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[9,"0900000000000000804469737472696275746f72202842616e6477696474682050726f7669646572293d024865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e672061204469737472696275746f72206f6e20746865204a6f7973747265616d206e6574776f726b2e0a0a5468697320726f6c652077696c6c206265636f6d652061637469766174656420666f7220746865206e65787420746573746e657421388d130000000000d8032a5d000000000000000000000000000000000000010200000000000000030000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[10,"0a00000000000000484a6f7973747265616d20426f756e746965735101412063617465676f727920666f722070726f706f73696e672c20706f7374696e6720616e64206576616c756174696e6720626f756e7469657320666f7220746865204a6f7973747265616d2070726f6a6563742e684322000000000080b7825d000000000000000000000500000000000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[11,"0b00000000000000684275696c6465727320616e6420427567205265706f7274657273150148656c70206f7574204a6f7973747265616d206279207265706f7274696e672062756773206f7220636f6e747269627574696e6720746f206f757220736f6674776172652e3065220000000000f082835d000000000000000000000200000000000000010200000000000000040000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"]],"posts":[[1,"01000000000000000100000000000000010000004d01506c6561736520666f6c6c6f77206f7572207465726d73206f6620736572766963652c20616e642067656e6572616c2072756c657320616e642067756964656c696e657320666f722074686520666f72756d2e0000be6d0f0000000000082c115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[2,"02000000000000000200000000000000010000007c5768617420646f20796f7520657870656374206d6520746f2077726974653f0000366e0f0000000000de2e115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[3,"0300000000000000030000000000000001000000fd0157696c6c20626520706f7374696e6720616c6c2074686520696e666f206865726520756e74696c207468656e200a476f20686572652068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b2f747265652f6d61737465722f726f6c65732f73746f726167652d70726f7669646572730000416e0f0000000000202f115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[4,"04000000000000000200000000000000020000009c54686973206973207468652076657279206669727374207265706c79206f6e207468726561642e000030860f0000000000eabe115d000000001ca65332ed98721f9d53e8b19da9c2a786c80bb9b71b66e756bb90f9f003a7c9"],[5,"0500000000000000020000000000000003000000d44a7573742063616d6520746f20736179207468697320697320746865207475726420706f737420696e2074686520746872656164210000b28a0f000000000032da115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[6,"0600000000000000020000000000000004000000e8225768617420646f20796f7520657870656374206d6520746f2077726974653f220a4174206c6561737420616e20656e74697265206e6f76656c00000e8e0f00000000006cee115d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[7,"07000000000000000400000000000000010000007101416e792074686f75676874732061626f757420686f77207468697320726f6c65206d6967687420776f726b3f0a68747470733a2f2f7777772e6a6f7973747265616d2e6f72672f726f6c657323436f6e74656e742d43757261746f7200006e950f0000000000c41a125d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[8,"0800000000000000050000000000000001000000d45768696368206f6e657320646f20796f75207468696e6b2077696c6c207374696c6c2062652061726f756e6420627920323033303f0000e7af0f00000000003cba125d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[9,"090000000000000005000000000000000200000030584d52204d617962652e2e2e0000e3ba0f00000000004efc125d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[10,"0a000000000000000600000000000000010000008d054a7573742074686f75676874204920776f756c64206c65617665206120717569636b20696e74726f20686572652e0a0a4d79206e616d652069732042656465686f204d656e6465722c204920616d2043454f206174204a7367656e657369732c2074686520636f6d70616e792063757272656e746c79206275696c64696e67204a6f7973747265616d2e204d6f7374206f66206d792074696d65206973207370656e7420646f696e6720646576656c6f706d656e742c20526e442c20746563686e6963616c2f70726f647563742064657369676e20616e6420686972696e672e200a0a4d792063757272656e7420666f63757320697320746f20706c616e20666f72206f7572206e65787420746573746e65742c2077686963682077652068617665206e6f742079657420616e6e6f756e6365642e0a0a496620796f752061736b2061207175657374696f6e2c20492077696c6c2074727920746f20616e7377657221000079cb0f00000000004460135d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[11,"0b000000000000000700000000000000010000002d03576520686176656e277420686164207468652074696d6520746f206d616b6520616e20657069736f646520696e2061207768696c652c20627574207765276c6c2074727920616e64206d616b65206f6e65206e657874207765656b2e20416e7920696e746572657374696e67206e657773206f7220746f706963732077652073686f756c6420636f7665723f0a0a24313020626f756e747920666f722061206c696e6b20746f20612074776565742f61727469636c6520746861742067657473206d656e74696f6e65642100003733100000000000a0d1155d000000007cbd2c992945e5fc83d937a180e402ff32699718c1fc753f7a0214492e3ff035"],[12,"0c00000000000000070000000000000002000000c501726563656e742068697420746f20636f696e6465736b207768656e20636c6f7564666c6172652077656e7420646f776e2e0a68747470733a2f2f747769747465722e636f6d2f636f696e6465736b2f7374617475732f313134363035363837343938383634323330363f733d31390a0a0a0000264e1100000000007c791c5d000000000d93f52ebfebeaef5adaeb0b0f0db97977ff3dc139d4279869f283bc2155388a"],[13,"0d000000000000000200000000000000050000001501492077697368204920636f756c6420746970207468697320736f7274206f66207374756666212049747320746f6f20696e636f6e76656e69656e74207269676874206e6f770000fc56110000000000ceae1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[14,"0e00000000000000080000000000000001000000990323205768617420776f756c6420796f75206669783f0a0a4920776f756c64206164640a0a312e2041636375726174652073756263617465676f727920616e642074687265616420636f756e7473212049747320636f6e667573696e672c20616e64206861726420746f20747261636b206e657720706f7374732e0a322e20486f772063616e2077652073757266616365206e657720706f737473206265747465723f0a322e20536f6d6520736f7274206f662074616767696e67206f662075736572732c2077697468206e6f74696669636174696f6e73202849206b6e6f772068617264290a000016571100000000006aaf1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[15,"0f00000000000000080000000000000002000000e10e536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f6261640a2a20546f20616464207461677320666f7220746872656164732028227465636820737570706f72742220226f726967696e616c20636f6e74656e7422202264656269616e206e6f64652229202b206d61796265207365617263682066756e6374696f6e616c69747920696e20746865206675747572650a2a20546f2061646420706f7374206e756d626572202b206c696e6b20746f20616e63686f72206f6620706f7374206e756d62657220696e2065616368207468726561642e20536f20796f752063616e20656173696c792073656e642061206c696e6b20746f20706f73742023313220746f206f746865722070656f706c65206f72206c696e6b2066726f6d20616e6f74686572207468726561642e0a2a20546f206164642061206d656e7520666f722073696d706c65207465787420666f726d617474696e67206c696b6520626f6c642c206974616c69632c20696e736572742070696374757265200014ec8e1100000000008e021e5d000000008d07536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746fff8e11000000000000031e5d00000000e107536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573292f8f11000000000020041e5d000000005d09536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f626164388f11000000000056041e5d00000000390b536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f6261640a2a20546f20616464207461677320666f7220746872656164732028227465636820737570706f72742220226f726967696e616c20636f6e74656e7422202264656269616e206e6f64652229202b206d61796265207365617263682066756e6374696f6e616c69747920696e2074686520667574757265578f11000000000010051e5d00000000a90d536f6d652073756767657374696f6e733a0a2a20546f206164642074686520646174652f74696d6520746865206c61737420706f737420776173206d6164652066726f6d20666f72756d206f7665727669657720616e64206c696e6b20746f2064697265637420706f7374202b20746872656164207469746c650a2a20546f206164642074686520646174652f74696d65206f6620616c6c20706f73747320696e2065616368207468726561640a2a20546f206164642061207365706172617465206669656c642066726f6d207469746c6520746861742063616e2062652066696c6c6564207769746820616e20656d6f6a6920746f20676976652074687265616473206120626974206f662076697375616c20666c6172652028656d6f6a69277320636f756c642062652063757420646f776e20746f206120736d616c6c2073657420726174686572207468616e20616c6c206f66207468656d290a2a20546f2061646420746865206162696c69747920746f20646f20616e206175746f6d6174696320696e2d6c696e652071756f746520746f2070726576696f757320706f7374732074686174206164647320612071756f7465202b206c696e6b20746f2074686520706f73742074686520706572736f6e206973207265706c79696e6720746f2028746872656164656420726573706f6e736573290a2a20546f20616464207265616374696f6e7320746f20706f73747320287468756d62732075702f66756e6e7929206f7220612077617920746f20766f746520706f7374732f74687265616473206173206265696e6720676f6f642f6261640a2a20546f20616464207461677320666f7220746872656164732028227465636820737570706f72742220226f726967696e616c20636f6e74656e7422202264656269616e206e6f64652229202b206d61796265207365617263682066756e6374696f6e616c69747920696e20746865206675747572650a2a20546f2061646420706f7374206e756d626572202b206c696e6b20746f20616e63686f72206f6620706f7374206e756d62657220696e2065616368207468726561642e20536f20796f752063616e20656173696c792073656e642061206c696e6b20746f20706f73742023313220746f206f746865722070656f706c65206f72206c696e6b2066726f6d20616e6f74686572207468726561642edc8e1100000000002e021e5d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[16,"10000000000000000800000000000000030000006906546869732069732061207265616c6c79206772656174206c6973742c207468616e6b73210a0a49207468696e6b2077652063616e20646f2061206c6f74206f66207468697320776974686f757420612072756e74696d6520757067726164652c207768696368206973206e6963652e2057652061726520676f696e6720746f20696e76657374206d6f726520696e746f2074686520666f72756d2c20736f207765206e65656420746f206d616b652069742065617369657220746f207573652e0a0a596f75206469646e277420746f75636820736f206d756368206f6e20746865206973737565206f6620737572666163696e67206e657720636f6e74656e742c20616e792074697073206f6e20746861743f0a0a49206861766520612076657279207665727920686172642074696d65206669677572696e67206f75742061207768657265206e65772061637469766974792069732074616b696e6720706c616365207768656e20492068697420746865206d61696e20666f72756d20706167652c206f72206576656e2073756263617465676f726965732e00004a97120000000000ca3b245d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[17,"11000000000000000800000000000000040000006503466f72206e657720636f6e74656e7473207765206e6565642061206e6f74696669636174696f6e2073797374656d206c696b652c2061206e6f74696669636174696f6e20636f756e746572207768656e20736f6d656f6e65207265706c69657320746f206f757220706f7374206f72207468726561642e53686f772061206e6f74696669636174696f6e20636f756e746572207769746820736d616c6c2064657461696c206f6e2074686520746f70207269676874202e20497420776f756c64206265206e69636520616e6420766572792075736566756c2e0000d7af12000000000072cf245d000000000d93f52ebfebeaef5adaeb0b0f0db97977ff3dc139d4279869f283bc2155388a"],[18,"1200000000000000070000000000000003000000690168747470733a2f2f7777772e636f696e6465736b2e636f6d2f7468657265732d612d7365636f6e642d746f6b656e2d612d627265616b646f776e2d6f662d66616365626f6f6b732d626c6f636b636861696e2d65636f6e6f6d790000d367130000000000ae22295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[19,"1300000000000000080000000000000005000000310349662061206e6f74696669636174696f6e20636f756e74657220697320746f6f20696e747275736976652c20796f7520636f756c64206a75737420686967686c6967687420746872656164732077697468206e657720706f73747320736f6d65686f772e20506572686170732070757420612073746172206e65787420746f2074686520746872656164206f72207075742074686520746872656164207469746c6520696e20626f6c64207768656e207468657265206973206e657720756e7265616420636f6e74656e742e00041a87130000000000d0de295d00000000310349662061206e6f74696669636174696f6e20636f756e74657220697320746f6f20696e747275736976652c20796f7520636f756c64206a75737420686967686c6967687420746872656164732077697468206e657720706f73747320736f6d65686f772e20506572686170732070757420612073746172206e65787420746f2074686520746872656164206f72207075742074686520746872656174207469746c6520696e20626f6c64207768656e207468657265206973206e657720756e7265616420636f6e74656e742e9a681300000000005827295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[20,"14000000000000000600000000000000020000002820202020202020202020000cbd681300000000002a28295d0000000071015768617420696e20706172746963756c61722061747472616374656420796f7520746f207468652069646561206f662061207573657220676f7665726e656420616e64206f7065726174656420766964656f20706c6174666f726d3f3e87130000000000a8df295d000000009901486920746865726521205768617420696e20706172746963756c61722061747472616374656420796f7520746f207468652069646561206f662061207573657220676f7665726e656420616e64206f7065726174656420766964656f20706c6174666f726d3fd4351400000000003cfc2d5d000000009901486920746865726521205768617420696e20706172746963756c61722061747472616374656420796f7520746f207468652069646561206f662061207573657220676f7665726e656420616e64206f70657261746564206d6564696120706c6174666f726d3fba681300000000001828295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[21,"1500000000000000080000000000000006000000d101416e6f746865722066656174757265206964656120776f756c6420626520746f20686176652022656469746564222073686f776e206e65787420746f20706f73747320746861742068617665206265656e206564697465642061667465722074686579277665206265656e207772697474656e2e0000268713000000000018df295d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[22,"160000000000000009000000000000000100000069014865726520796f752063616e206469736375737320616c6c207468696e67732072656c6174656420746f206265696e67206120604469737472696275746f7260206f6e20746865204a6f7973747265616d206e6574776f726b2e0000118d130000000000e8022a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[23,"17000000000000000a000000000000000100000009044c6574206d65206b6e6f7720696620796f7520776f756c64206c696b6520746f20736565206d6f7265206f662074686573652e2049276d2061206269742062757379207269676874206e6f772c206275742069662070656f706c65206e6565642068656c702067657474696e67207365742075702c2049276c6c2070726f6261626c79206d616b6520736f6d65206d6f72652e0a0a68747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f6d656469612f706c61792f354554505868557135516e43665a397963646142337063453138473464556d47417454574435506d544d6362786277500000b58f130000000000d8122a5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[24,"18000000000000000800000000000000070000004102576f726b696e67206f6e2061205b6769746875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f38302920666f722074686973210a0a4665656c206672656520746f206368696d6520696e2e2e2e0a0a2a45646974656420746f2073656520696620697427732073686f776e2e000489ef1300000000000a542c5d00000000c501576f726b696e67206f6e2061205b6769746875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f38302920666f722074686973210a0a4665656c206672656520746f206368696d6520696e2e2e2e85ef130000000000f2532c5d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[25,"19000000000000000a000000000000000200000055054865792042656e2c0a0a5468697320697320776f6e64657266756c20737475666621200a0a536f6d652074696d652074686973207765656b2c2049276c6c2074727920746f206f7267616e697a652074686520666f72756d2070726f7065726c7920666f7220736f6d657468696e67207765206861766520696e206d696e6420666f72206c617465722e20436f6d7065746974696f6e732c20616e64206120636f6d6d756e6974792066756e6420636f6e74726f6c6c65642062792074686520636f756e63696c2e0a0a5765206d6179206a757374206f666665722022726567756c617222205b626f756e746965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732920666f72206d6f7265206f6620746865736520696e73746561642e204665656c206672656520746f2070726f706f7365206f6e6520796f757273656c66210000bffc1300000000009ca32c5d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[26,"1a000000000000000a00000000000000030000004d0147726561742c207468616e6b73204d617274696e210a0a436f6d7065746974696f6e7320616e6420636f6d6d756e6974792066756e6420626f746820736f756e64207665727920696e746572657374696e672e00004d0014000000000002b92c5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[27,"1b000000000000000200000000000000060000004061207465737420666f6f207265706c79000041922000000000009285785d000000009e159eb998037d425124c10666d50e207d769bd5e993ffa82a9b32c8d645f6f5"],[28,"1c000000000000000400000000000000020000005101576527726520696e74726f647563696e6720697420696e2074686520526f6d6520746573746e65742c20736f20686f706566756c6c79206974276c6c206265636f6d65206170706172656e74207468656e203a2900002b62210000000000e66b7d5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[29,"1d000000000000000b00000000000000010000007d0c23204f766572766965770a5468697320666f72756d2063617465676f727920616e6420746865205b6f726967696e616c207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f2920617265207768657265207765207075626c6973682c20747261636b20616e6420646f63756d656e742074686520626f756e74792073797374656d20666f7220746865204a6f7973747265616d20706c6174666f726d2e20416e796f6e65206973206672656520746f206d616b652061205b70726f706f73616c5d282370726f706f73616c732920666f72206120626f756e74792c20616e6420616e796f6e65206973206672656520746f20636f6d7065746520666f72207468656d2e0a0a43757272656e746c792c20616c6c20626f756e746965732077696c6c206265206d6164652060616374697665602c2066756e6465642c20616e642077696c6c206265206576616c7561746564206279205b4a7367656e657369735d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f6a7367656e657369732f292e20496e20746865206675747572652c206f757220696e74656e74696f6e20697320746f206772616475616c6c7920696e766f6c76652074686520706c6174666f726d20676f7665726e616e63652073797374656d20696e20746865206465636973696f6e206d616b696e672e0a0a546865207061796f7574732077696c6c206265206d61646520696e205b6d6f6e65726f5d2868747470733a2f2f7765622e6765746d6f6e65726f2e6f72672f2920756e6c657373206e6f746564206f74686572776973652e204f75722063686f696365206f66207573696e67206d6f6e65726f20617320746865206d6574686f64206f66207061796d656e742069732074686174206974277320626f746820612077656c6c2065737461626c697368656420616e6420726570757461626c652070726f6a6563742c20616e64206172677561626c7920686173206265747465722070726976616379206665617475726573207468616e20736f6d65206f6620746865206f74686572206f7074696f6e732e0008f7a4220000000000f002855d0000000038787878787878787878787878787856a52200000000002a05855d000000005d0c23204f766572766965770a546869732074687265616420616e6420746865205b6f726967696e616c207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f2920617265207768657265207765207075626c6973682c20747261636b20616e6420646f63756d656e742074686520626f756e74792073797374656d20666f7220746865204a6f7973747265616d20706c6174666f726d2e20416e796f6e65206973206672656520746f206d616b652061205b70726f706f73616c5d282370726f706f73616c732920666f72206120626f756e74792c20616e6420616e796f6e65206973206672656520746f20636f6d7065746520666f72207468656d2e0a0a43757272656e746c792c20616c6c20626f756e746965732077696c6c206265206d6164652060616374697665602c2066756e6465642c20616e642077696c6c206265206576616c7561746564206279205b4a7367656e657369735d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f6a7367656e657369732f292e20496e20746865206675747572652c206f757220696e74656e74696f6e20697320746f206772616475616c6c7920696e766f6c76652074686520706c6174666f726d20676f7665726e616e63652073797374656d20696e20746865206465636973696f6e206d616b696e672e0a0a546865207061796f7574732077696c6c206265206d61646520696e205b6d6f6e65726f5d2868747470733a2f2f7765622e6765746d6f6e65726f2e6f72672f2920756e6c657373206e6f746564206f74686572776973652e204f75722063686f696365206f66207573696e67206d6f6e65726f20617320746865206d6574686f64206f66207061796d656e742069732074686174206974277320626f746820612077656c6c2065737461626c697368656420616e6420726570757461626c652070726f6a6563742c20616e64206172677561626c7920686173206265747465722070726976616379206665617475726573207468616e20736f6d65206f6620746865206f74686572206f7074696f6e732e6f43220000000000aab7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[30,"1e000000000000000c00000000000000010000003d0720232323232050726f626c656d0a417320746865206e6f6e2d636f6465207265706f732061726520757064617465642c206974277320646966666963756c7420746f2061766f696420696e74726f647563696e672062726f6b656e206c696e6b732c206572726f7273207769746820696d616765732c206772616d6d6172206d697374616b65732c20666f726d617474696e67206572726f72732c206574632e2054686973206d616b657320697420646966666963756c7420746f206e617669676174652c20616e642061646473206672696374696f6e20666f7220726561646572732e200a4e6f746520746861742074686973206170706c69657320746f20414c4c2074686520524541444d452e6d642066696c65732c206e6f74206a7573742074686520746f70206c6576656c206f6e652e0a0a2323232320476f616c730a496d70726f7665207175616c69747920616e64206163636573736962696c697479206f66206f7572207265706f732e0a0a2323232320526577617264730a2432207065722066697820746861742067657473206d65726765642e0a0a205f5375627374616e7469616c20696d70726f76656d656e7473206d61792062652072657761726465642065787472612e5f0008b2a42200000000005201855d000000003478787878787878787878787878d0a42200000000000602855d00000000390720232323232050726f626c656d0a417320746865206e6f6e2d636f6465207265706f732061726520757064617465642c206974277320646966666963756c7420746f2061766f696420696e74726f647563696e672062726f6b656e206c696e6b732c206572726f7273207769746820696d616765732c206772616d6d6172206d697374616b65732c20666f726d617474696e67206572726f72732c206574632e2054686973206d616b657320697420646966666963756c7420746f206e617669676174652c20616e642061646473206672696374696f6e20666f7220726561646572732e204e6f746520746861742074686973206170706c69657320746f20414c4c2074686520524541444d452e6d642066696c65732c206e6f74206a7573742074686520746f70206c6576656c206f6e652e0a0a2323232320476f616c730a496d70726f7665207175616c69747920616e64206163636573736962696c697479206f66206f7572207265706f732e0a0a2323232320526577617264730a2432207065722066697820746861742067657473206d65726765642e0a0a205f5375627374616e7469616c20696d70726f76656d656e7473206d61792062652072657761726465642065787472612e5f7343220000000000c2b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[31,"1f000000000000000d00000000000000010000007d03232323205f416c74686f756768207468697320626f756e7479206973207374696c6c206f70656e2c20626520617761726520746861742077652068617665206265656e20696e20636f6e746163742077697468206f6e65206170706c6963616e7420746861742063616d65207570207769746820736f6d65206164646974696f6e616c20696465617320616e642072657365617263682e205468697320706572736f6e20686173206265656e20676976656e202432353020746f20636f6e74696e7565206c6f6f6b696e6720696e746f206d6f72652064657461696c732e5f0008b6a52200000000006a07855d000000002c7878787878787878787878b9a52200000000007c07855d0000000079032323205f416c74686f756768207468697320626f756e7479206973207374696c6c206f70656e2c20626520617761726520746861742077652068617665206265656e20696e20636f6e746163742077697468206f6e65206170706c6963616e7420746861742063616d65207570207769746820736f6d65206164646974696f6e616c20696465617320616e642072657365617263682e205468697320706572736f6e20686173206265656e20676976656e202432353020746f20636f6e74696e7565206c6f6f6b696e6720696e746f206d6f72652064657461696c732e5f7943220000000000e6b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[32,"20000000000000000e0000000000000001000000310e23232050726f626c656d0a5765206861766520666f756e642061206c6f74206f662074686520636f6d6d6f6e206d656469612066696c652074797065732077696c6c206e6f7420706c617920696e205b70696f6e6565725d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292c20776974686f757420646f776e6c6f6164696e67207468652066696c652e0a0a232320476f616c730a496d70726f7665207468652055582c206279206b6e6f77696e672065786163746c7920776861742066696c6520747970657320776f726b732c20616e6420696e2077686963682062726f777365727320286368726f6d652f6368726f6d69756d2c2066697265666f7820616e6420736166617269292e0a0a232320526577617264730a4f75722066697273742070726f706f73616c206973202435302c2062757420696620616e206170706c6963616e742070726f6475636573206120676f6f64207465737420706c616e2c202869652e206c69737420616c6c20657874656e73696f6e732c2062726f777365727320616e64204f53277320746865792063616e2f77696c6c2074657374292c20746869732063616e206265206e65676f7469617465642e0a0a23232053636f7065206f6620576f726b20262044656c6976657261626c65730a55706c6f616420636f6e74656e7420696e20616c6c20227374616e646172642220666f726d6174732c20616e642070726f6475636520612066756c6c206c697374206f66207768617420776f726b7320696e2077686963682062726f77736572732f4f5327732e0a0a232320436f6e73747261696e74730a416c6c20636f6e74656e742075706c6f61646564206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f73292e0a0a232320426f756e747920666f726d61740a546865206170706c69636174696f6e287329206d75737420626520617070726f766564206265666f726520616e7920776f726b2077696c6c2062652072657761726465642e0a0a232320446561646c696e650a546865206170706c69636174696f6e20646561646c696e65206973207468652030382e30372e31392c2031353030474d542b322e0a0a285468697320626f756e7479206973206e6f206c6f6e676572206f70656e29000c05a62200000000004409855d0000000040787878787878787878787878787878780ca62200000000006e09855d00000000ed0d232323232050726f626c656d0a5765206861766520666f756e642061206c6f74206f662074686520636f6d6d6f6e206d656469612066696c652074797065732077696c6c206e6f7420706c617920696e205b70696f6e6565725d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292c20776974686f757420646f776e6c6f6164696e67207468652066696c652e0a0a2323232320476f616c730a496d70726f7665207468652055582c206279206b6e6f77696e672065786163746c7920776861742066696c6520747970657320776f726b732c20616e6420696e2077686963682062726f777365727320286368726f6d652f6368726f6d69756d2c2066697265666f7820616e6420736166617269292e0a0a2323232320526577617264730a4f75722066697273742070726f706f73616c206973202435302c2062757420696620616e206170706c6963616e742070726f6475636573206120676f6f64207465737420706c616e2c202869652e206c69737420616c6c20657874656e73696f6e732c2062726f777365727320616e64204f53277320746865792063616e2f77696c6c2074657374292c20746869732063616e206265206e65676f7469617465642e0a0a232323232053636f7065206f6620576f726b20262044656c6976657261626c65730a55706c6f616420636f6e74656e7420696e20616c6c20227374616e646172642220666f726d6174732c20616e642070726f6475636520612066756c6c206c697374206f66207768617420776f726b7320696e2077686963682062726f77736572732f4f5327732e0a0a2323232320436f6e73747261696e74730a416c6c20636f6e74656e742075706c6f61646564206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f73292e0a0a2323232320426f756e747920666f726d61740a546865206170706c69636174696f6e287329206d75737420626520617070726f766564206265666f726520616e7920776f726b2077696c6c2062652072657761726465642e0a0a2323232320446561646c696e650a546865206170706c69636174696f6e20646561646c696e65206973207468652030382e30372e31392c2031353030474d542b322e0a0a17a6220000000000b009855d000000004d0e2323232050726f626c656d0a5765206861766520666f756e642061206c6f74206f662074686520636f6d6d6f6e206d656469612066696c652074797065732077696c6c206e6f7420706c617920696e205b70696f6e6565725d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292c20776974686f757420646f776e6c6f6164696e67207468652066696c652e0a0a23232320476f616c730a496d70726f7665207468652055582c206279206b6e6f77696e672065786163746c7920776861742066696c6520747970657320776f726b732c20616e6420696e2077686963682062726f777365727320286368726f6d652f6368726f6d69756d2c2066697265666f7820616e6420736166617269292e0a0a23232320526577617264730a4f75722066697273742070726f706f73616c206973202435302c2062757420696620616e206170706c6963616e742070726f6475636573206120676f6f64207465737420706c616e2c202869652e206c69737420616c6c20657874656e73696f6e732c2062726f777365727320616e64204f53277320746865792063616e2f77696c6c2074657374292c20746869732063616e206265206e65676f7469617465642e0a0a2323232053636f7065206f6620576f726b20262044656c6976657261626c65730a55706c6f616420636f6e74656e7420696e20616c6c20227374616e646172642220666f726d6174732c20616e642070726f6475636520612066756c6c206c697374206f66207768617420776f726b7320696e2077686963682062726f77736572732f4f5327732e0a0a23232320436f6e73747261696e74730a416c6c20636f6e74656e742075706c6f61646564206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f73292e0a0a23232320426f756e747920666f726d61740a546865206170706c69636174696f6e287329206d75737420626520617070726f766564206265666f726520616e7920776f726b2077696c6c2062652072657761726465642e0a0a23232320446561646c696e650a546865206170706c69636174696f6e20646561646c696e65206973207468652030382e30372e31392c2031353030474d542b322e0a0a285468697320626f756e7479206973206e6f206c6f6e676572206f70656e297d43220000000000feb7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[33,"21000000000000000f0000000000000001000000550223232050726f626c656d0a5765206e65656420736f7572636573206f66206672656520616e6420617661696c61626c65206d6564696120636f6e74656e742c20696e20766172696f757320666f726d6174732c20696e2074686520666f6c6c6f77696e6720746f70206c6576656c2063617465676f726965733a0a0a2a20766964656f0a2a20617564696f0a2a20652d626f6f6b73000438a6220000000000760a855d000000002c7878787878787878787878844322000000000028b8825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[34,"2200000000000000100000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e0004f1dd2200000000009859865d00000000387878787878787878787878787878f5642200000000008e81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[35,"2300000000000000110000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e0004691a230000000000d0c5875d000000003478787878787878787878787878fa64220000000000ac81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[36,"2400000000000000120000000000000001000000350523204f766572766965770a0a54686973207061676520636f6e7461696e7320616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f7572206e6f646520616e64206265636f6d696e672061206056616c696461746f7260206f6e20746865204a6f7973747265616d20546573746e6574732e2049742077696c6c206265207570646174656420666f7220696d70726f76656d656e74732c20616e64207768656e20736f6d657468696e67206368616e67657320666f72206e657720746573746e6574732e0a0a496620796f752077616e7420746f206561726e206d6f726520604a6f796020746f6b656e732c2062757420666f7220736f6d6520726561736f6e2063616e2774206f7220776f6e2774206265636f6d652061206056616c696461746f72602c20796f752063616e20604e6f6d696e6174656020696e73746561642e00046a1a230000000000d6c5875d00000000447878787878787878787878787878787878ff64220000000000ca81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[37,"2500000000000000130000000000000001000000e90d0a23232052756e206173206120736572766963650a0a496620796f75206172652072756e6e696e6720796f7572206e6f6465206f6e2061205b6c696e75785d28236c696e75782920616e642077616e7420746f2072756e2069742061732061205b736572766963655d2868747470733a2f2f77696b692e64656269616e2e6f72672f73797374656d642f5365727669636573292c20796f752063616e207365742069742075702074686973207761792e0a4e6f7465207468617420796f752073686f756c642061766f6964207468697320756e6c65737320796f75206b6e6f77207768617420796f752061726520646f696e672c206172652072756e6e696e6720796f7572206e6f6465206f6e202a2a796f7572206f776e205650532a2a206f7220612073696e676c6520626f61726420636f6d70757465722e205769746820677265617420287375646f292070726976696c656765732c20636f6d657320677265617420726573706f6e736962696c6974696573210a0a496620796f752061726520616c72656164792072756e6e696e672061732061206076616c696461746f72602c20636f6e7369646572205b756e7374616b696e675d2823756e7374616b696e67292066697273742c20617320796f75206d617920657870657269656e636520736f6d6520646f776e74696d6520696620796f75206d616b6520616e79206d697374616b657320696e207468652073657475702e0a0a2323232320436f6e6669677572652074686520736572766963650a0a45697468657220617320726f6f742c206f72206120757365722077697468207375646f2070726976696c656765732e20496620746865206c61747465722c2061646420607375646f60206265666f726520636f6d6d616e64732e0a0a6060600a24206364202f6574632f73797374656d642f73797374656d0a2320796f752063616e2063686f6f7365207768617465766572206e616d6520796f75206c696b652c2062757420746865206e616d652068617320746f20656e642077697468202e736572766963650a2420746f756368206a6f7973747265616d2d6e6f64652e736572766963650a23206f70656e207468652066696c65207769746820796f7572206661766f7269746520656469746f7220284920757365206e616e6f2062656c6f77290a24206e616e6f206a6f7973747265616d2d6e6f64652e736572766963650a6060600004e61a230000000000bec8875d000000002c787878787878787878787816652200000000005482835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[38,"26000000000000001400000000000000010000005d0123232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e737765722068657265210a00082d1b23000000000068ca875d000000003478787878787878787878787878301b2300000000007aca875d000000005901232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e737765722068657265210a1c652200000000007882835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[39,"27000000000000001500000000000000010000004d0223204f766572766965770a0a54686973207468726561642077696c6c20636f6e7461696e20616c6c20696e666f726d6174696f6e206f6e20686f7720746f20736574757020796f75722073746f72616765206e6f646520616e64206265636f6d696e672061206053746f726167652050726f766964657260206f6e20746865204a6f7973747265616d20546573746e6574732e0004d0dc220000000000d252865d00000000407878787878787878787878787878787848652200000000008083835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[40,"28000000000000001600000000000000010000005501232054726f75626c6573686f6f74696e670a496620796f752068616420616e79206973737565732073657474696e672069742075702c20796f75206d61792066696e6420796f757220616e7377657220686572652100043fdd2200000000006c55865d00000000487878787878787878787878787878787878784c652200000000009883835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[41,"2900000000000000170000000000000001000000dd03232047657420537461727465640a546f20676574207374617274656420616e64207061727469636970617465206f6e20746865204a6f7973747265616d20746573746e6574732c20796f75206d7573742066697273742067656e657261746520604b6579287329602c20616e64207369676e20757020666f72206120604d656d62657273686970602e2054686973207265717569726573206e6f20736f667477617265206f7220646f776e6c6f6164732c20616e642063616e20626520646f6e6520696e20796f75722062726f77736572205b686572655d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f7267292e000475dd220000000000b056865d00000000307878787878787878787878787f65220000000000ca84835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[42,"2a00000000000000180000000000000001000000510223204f766572766965770a0a54686973207061676520636f6e7461696e7320612064657461696c65642067756964652061626f757420686f772074686520676f7665726e616e63652073797374656d20776f726b73206f6e207468652063757272656e74204a6f7973747265616d20746573746e65742c20616e6420686f7720796f752063616e2070617274696369706174652e000487dd2200000000001c57865d000000003c7878787878787878787878787878788365220000000000e284835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[43,"2b000000000000001900000000000000010000003504576520686176656e277420726563656976656420616e79207265706f727473206f662070726f626c656d732077697468207468697320726f6c652c20736f20746869732074726f75626c6573686f6f74696e672074687265616420697320626c616e6b20666f72206e6f772e204c6574207573206b6e6f7720696620796f7520617265207374727567676c696e67207769746820616e797468696e67206f6e205b4769744875625d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b2f292c206f7220696e206f7572205b54656c656772616d2047726f75705d2868747470733a2f2f742e6d652f4a6f7953747265616d4f6666696369616c292e0004b4dd2200000000002a58865d00000000487878787878787878787878787878787878788665220000000000f484835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[44,"2c000000000000001a0000000000000001000000e904232320427567205265706f72746572730a4173207769746820616c6c20736f6674776172652c20616e6420657370656369616c6c7920746865206561726c792076657273696f6e732c2074686572652077696c6c20626520706c656e7479206f6620627567732c206d697373696e6720666561747572657320616e6420656e68616e63656d656e74732072657175697265642e20426f746820746f20696d70726f766520617320776520676f2c20616e6420746f2022747261696e2220612067726f7570206f66207465737465727320616e6420646576656c6f7065727320666f72206f7572206175746f6e6f6d6f757320706c6174666f726d2c2077652077616e74205f6f75747369646572735f20746f20737461727420636f6e747269627574696e6720617320736f6f6e20617320706f737369626c652e0004cadd220000000000ae58865d000000003c78787878787878787878787878787890652200000000003085835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[45,"2d000000000000001b0000000000000001000000cd0823232320496e737472756374696f6e730a417320616e206f70656e2d736f757263652070726f6a6563742c2077652074727920746f20666f6c6c6f7720746865207374616e6461726420636f6e76656e74696f6e7320616e6420776f726b666c6f772e0a0a496620796f752066696e642061206275672c206f722077616e7420746f20696d70726f7665206f722061646420736f6d657468696e6720696e2074686520636f64652c20646f63756d656e746174696f6e73206f72206775696465732c206c6f636174652074686520636f7272656374207265706f2066726f6d20746865206f7267616e697a6174696f6e205b696e6465785d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292e20466f726b20746865207265706f2c206d616b6520746865206368616e67657320796f752077616e7420746f20616464726573732c20616e64206372656174652061206050756c6c2072657175657374602e20466f72206f7572206d757475616c20636f6e76656e69656e63652c20697420776f756c64206265206e69636520696620796f752072616973656420616e206049737375656020666972737420736f2077652063616e206167726565206f6e207468652073636f70652c207468652073697a65206f662074686520626f756e747920616e64206d616b652073757265207468697320697320736f6d657468696e672077652077616e742f6e6565642e0004dddd2200000000002059865d000000003c7878787878787878787878787878789e652200000000008485835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[46,"2e000000000000000c00000000000000020000005d06232323232053636f7065206f6620576f726b20262044656c6976657261626c65730a466f726b20746865207265706f2c20616e642066697820776861742069732062726f6b656e2e205468656e206d616b65206120505220696e20746865206170706c696361626c65207265706f2c20616e6420726566657220746f2069742061207265706c7920616e7377657220696e207468697320746872656164206f7220746865204769744875622069737375652e0a0a4170706c696361626c65207265706f73206172653a0a0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f636f6d6d756e69636174696f6e730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f64657369676e0004cca4220000000000ee01855d000000000906232323232053636f7065206f6620576f726b20262044656c6976657261626c65730a466f726b20746865207265706f2c20616e642066697820776861742069732062726f6b656e2e205468656e206d616b65206120505220696e20746865206170706c696361626c65207265706f2c20616e6420726566657220746f2069742061207265706c7920616e7377657220696e20746869732069737375652e0a0a4170706c696361626c65207265706f73206172653a0a0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b0a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f636f6d6d756e69636174696f6e730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965730a2a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f64657369676eb7a42200000000007001855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[47,"2f000000000000000c0000000000000003000000fd0e2323232320436f6e73747261696e74730a312e20416c74686f7567682073756767657374696f6e7320666f7220636c6172696669636174696f6e732c20696d70726f76656d656e74732c206574632e2061726520616c776179732077656c636f6d652c20706c6561736520616464207468656d20617320636f6d6d656e747320696e7374656164206f6620696e636c7564696e67207468656d20696e2074686520505220697473656c662c20746f206d616b65207468652050522065617369657220746f207265766965772e2049662074686520726576696577657220616772656573207769746820796f75722073756767657374696f6e2c20796f752063616e206164642061206e657720636f6d6d697420746f207468652050522e0a322e20416c6c206c696e6b732077697468696e207468652073616d65207265706f206d7573742062652072656c617469766520696e7374656164206f66206162736f6c7574652e204578616d706c653a0a0a6060600a232046726f6d2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c69730a2320596f752077616e7420746f206c696e6b20746f3a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e670a2320446f20746869733a0a5b6c696e6b5d282e2e2f2e2e2f6d656574696e67732f6163726f706f6c69732f236c61756e63682d6d656574696e67290a23204e6f7420746869733a0a5b6c696e6b5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e67290a6060600a0a332e205768656e20796f7520737461727420776f726b696e672c206665656c206672656520746f206d616b65206120647261667420505220746f2073686f7720796f757220696e74656e742c206275742070726566657261626c7920636865636b2074686520656e74697265207265706f206265666f72650a50726566657261626c7920676f207468726f756768205f616c6c5f20746865206c696e6b73206265666f7265206d61726b696e6720697420726561647920666f72207265766965772c20616e642061737369676e696e6720736f6d656f6e6520746f2072657669657720796f75722e0004c2a4220000000000b201855d00000000fd0e2323232320436f6e73747261696e74730a312e20416c74686f7567682073756767657374696f6e7320666f7220636c6172696669636174696f6e732c20696d70726f76656d656e74732c206574632e2061726520616c776179732077656c636f6d652c20706c6561736520616464207468656d20617320636f6d6d656e747320696e7374656164206f6620696e636c7564696e67207468656d20696e2074686520505220697473656c662c20746f206d616b65207468652050522065617369657220746f207265766965772e2049662074686520726576696577657220616772656573207769746820796f75722073756767657374696f6e2c20796f752063616e206164642061206e657720636f6d6d697420746f207468652050522e0a322e20416c6c206c696e6b732077697468696e207468652073616d65207265706f206d7573742062652072656c617469766520696e7374656164206f66206162736f6c7574652e204578616d706c653a0a0a6060600a232046726f6d2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c69730a2320596f752077616e7420746f206c696e6b20746f3a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e670a2320446f20746869733a0a5b6c696e6b5d282e2e2f2e2e2f6d656574696e67732f6163726f706f6c69732f236c61756e63682d6d656574696e67290a23204e6f7420746869733a0a5b6c696e6b5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6d656574696e67732f6163726f706f6c6973236c61756e63682d6d656574696e67290a6060600a0a312e205768656e20796f7520737461727420776f726b696e672c206665656c206672656520746f206d616b65206120647261667420505220746f2073686f7720796f757220696e74656e742c206275742070726566657261626c7920636865636b2074686520656e74697265207265706f206265666f72650a50726566657261626c7920676f207468726f756768205f616c6c5f20746865206c696e6b73206265666f7265206d61726b696e6720697420726561647920666f72207265766965772c20616e642061737369676e696e6720736f6d656f6e6520746f2072657669657720796f75722ebba42200000000008801855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[48,"30000000000000000c0000000000000004000000090a5f557064617465202d2030352e30382e31395f0a0a342e20506c656173652075736520555320456e676c697368207370656c6c696e6720666f7220636f6e73697374656e6379206163726f737320746865206f7267616e697a6174696f6e2e0a352e20496465616c6c792c20757365205b61746f6d5d2868747470733a2f2f61746f6d2e696f2f2920617320796f757220656469746f722c20616e64206164642074686520666f6c6c6f77696e6720706c7567696e733a0a0a2a205b6d61726b646f776e2d707265766965772d656e68616e6365645d2868747470733a2f2f61746f6d2e696f2f7061636b616765732f6d61726b646f776e2d707265766965772d656e68616e636564290a2a205b6d61726b646f776e2d746f632d6175746f5d2868747470733a2f2f61746f6d2e696f2f7061636b616765732f6d61726b646f776e2d746f632d6175746f290a0a546f20656e737572652069742072656e6465727320636f72726563746c792e0a0a2323232320426f756e747920666f726d61740a466972737420636f6d652066697273742073657276652e20506179206f7574206f6e2064656c69766572792e0a466f72206f757220636f6e76656e69656e63652c20616464206120636f6d6d656e7420616e64206c696e6b20746f2074686520505220696e20746869732069737375652c2077697468206e756d626572206f6620666978657320616e64206578706563746564207061796f7574732e0a0a2323232320446561646c696e650a57696c6c206d6f7374206c696b656c79206265206b657074206f70656e20666f722079656172732e2057696c6c20686f6e6f7220636f6e747269627574696f6e732034386820616674657220636c6f73696e672e0000c5a4220000000000c401855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[49,"31000000000000000c00000000000000050000008902232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e000473a5220000000000d805855d000000007d02546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292edda42200000000005402855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[50,"32000000000000000b000000000000000200000059044a7367656e6573697320697320616c736f206d616b696e67207765656b6c79207061796f75747320666f722070617274696369706174696f6e206f6e20746865205b4a6f7973747265616d20746573746e6574735d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f72672f292e204d6f726520696e666f726d6174696f6e2061626f757420746865207768617420796f752063616e2c207768617420796f752063616e206d616b652c20616e642077687920776527726520646f696e6720746869732063616e20626520666f756e6420696e206f7572205b68656c706465736b207265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b292e0000faa42200000000000203855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[51,"33000000000000000b000000000000000300000029022a2a4b65657020696e206d696e642074686174206f757220626f756e74792073797374656d2069732061205749502c20616e642069742073686f756c642062652065787065637465642074686174206368616e67657320746f207468652070726f636573732077696c6c206265206d616465206173207468652070726f6a6563742067726f77732e2a2a000404a52200000000003e03855d0000000055092a2a4b65657020696e206d696e642074686174206f757220626f756e74792073797374656d2069732061205749502c20616e642069742073686f756c642062652065787065637465642074686174206368616e67657320746f207468652070726f636573732077696c6c206265206d616465206173207468652070726f6a6563742067726f77732e2a2a0a0a23232053756d6d617279206f6620426f756e746965730a0a7c204c6173742055706461746564207c20426f756e7469657320436f6e636c75646564207c204f6e676f696e6720426f756e74696573207c204f6666696369616c6c792050616964207c204f6c64205061796f757473602a6020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2031372e30372e313920202020207c20202020202020203020202020202020202020207c2020202020202020203320202020202020207c202020202a2a243632362a2a20202020207c20202020202a2a243231342a2a202020207c0a0a602a602044656e6f74657320626f756e746965732070616964206f7574206265666f72652074686520226f6666696369616c22207265706f207761732075702e20536f6d65206f6620746865736520626f756e746965732063616e20626520666f756e6420696e206f74686572207265706f732c20736f6d6520776572652073696d706c7920706f73746564206f6e2054656c656772616d2effa42200000000002003855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[52,"34000000000000000b000000000000000400000029070a23232053756d6d617279206f6620426f756e746965730a0a7c204c6173742055706461746564207c20426f756e7469657320436f6e636c75646564207c204f6e676f696e6720426f756e74696573207c204f6666696369616c6c792050616964207c204f6c64205061796f757473602a6020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2031372e30372e313920202020207c20202020202020203020202020202020202020207c2020202020202020203320202020202020207c202020202a2a243632362a2a20202020207c20202020202a2a243231342a2a202020207c0a0a602a602044656e6f74657320626f756e746965732070616964206f7574206265666f72652074686520226f6666696369616c22207265706f207761732075702e20536f6d65206f6620746865736520626f756e746965732063616e20626520666f756e6420696e206f74686572207265706f732c20736f6d6520776572652073696d706c7920706f73746564206f6e2054656c656772616d2e000006a52200000000004a03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[53,"35000000000000000b00000000000000050000001d0923232053756d6d617279206f6620546573746e65742050617274696369706174696f6e205061796f7574730a0a23232320546f74616c0a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030322e30382e313920202020207c2020202024383537202020207c20202020202024393337202020202020207c2020202020243338333920202020202020207c2020202a2a24353633332a2a20202020207c0a0a0a232323204163726f706f6c69730a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030322e30382e313920202020207c2020202024343833202020207c20202020202024353130202020202020207c2020202020202433303634202020202020207c202020202a2a24343035372a2a202020207c0a00000ba52200000000006803855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[54,"36000000000000000b0000000000000006000000790723232320417468656e730a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2053746f726167652050726f7669646572737c20546f74616c20202020202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2032342e30362e313920202020207c2020202020243236332020207c20202020202020243237322020202020207c2020202020202437373520202020202020207c2020202a2a24313331302a2a20202020207c0a0a0a232323205370617274610a0a7c204c6173742055706461746564207c2056616c696461746f7273207c20436f756e63696c204d656d62657273207c2020202020546f74616c202020202020207c0a7c3a2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c3a2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d3a7c0a7c2030312e30342e313920202020207c2020202020243131312020207c20202020202024313535202020202020207c20202020202a2a243236362a2a202020207c00000ea52200000000007a03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[55,"37000000000000000b00000000000000070000000d07232320426f756e746965730a0a2d202a2a4e756d6265722a2a0a20202d205768656e206120626f756e7479206265636f6d65732060616374697665602c2069742077696c6c2062652061737369676e65642061206e756d626572206261736564206f6e20697473206368726f6e6f6c6f676963616c206f726465722e0a0a2d202a2a5469746c652a2a0a20202d20412062726965662c206465736372697074697665207469746c650a0a2d202a2a4c696e6b2a2a0a20202d204c696e6b20746f20746865205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920776974682064657461696c732e0a0a2d202a2a43617465676f72792a2a0a286e6f6e2d65786861757374697665290a20202d206042756720666978600a20202d206054657374696e67600a20202d2060446f63756d656e746174696f6e600a20202d2060496d70726f76656d656e7473600a20202d20604d61726b6574696e67600a20202d2060476f7665726e616e6365600a20202d20604e65772066656174757265600a20202d206050726f6a656374206d616e6167656d656e74600a20202d206048656c7060000014a52200000000009e03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[56,"38000000000000000b0000000000000008000000d5082d202a2a537461727420446174652a2a0a20202d2054686520646174652074686520626f756e747920626563616d652060616374697665600a0a2d202a2a41737369676e65652873292a2a0a20202d20496620616e206170706c6963616e7420686173206265656e20617070726f76656420746f20737461727420776f726b2c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a757374207374617465206041737369676e6564602e0a0a2d202a2a5374617475732a2a0a20202d2041637469766520426f756e746965730a202020202d20604f70656e600a202020202d206041737369676e6564600a202020202d2060556e64657220726576696577600a202020202d20604f6e20486f6c64600a20202d20436f6e636c7564656420426f756e746965730a202020202d2060436f6d706c65746564600a202020202d206045787069726564600a202020202d206041626f72746564600a20202d204d6f72652064657461696c73206f6e20746865207374617475732063616e20626520666f756e6420627920666f6c6c6f77696e6720746865206c696e6b20666f72207468652070726f706f73616c206f6620696e7465726573742e0a0a2d202a2a506169642a2a0a20202d2054686520616d6f756e742070616964206f75742074687573206661722e00041ca5220000000000ce03855d0000000081092d202a2a537461727420446174652a2a0a20202d2054686520646174652074686520626f756e747920626563616d652060616374697665600a0a2d202a2a41737369676e65652873292a2a0a20202d20496620616e206170706c6963616e7420686173206265656e20617070726f76656420746f20737461727420776f726b2c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a757374207374617465206041737369676e6564602e0a0a2d202a2a5374617475732a2a0a20202d205b41637469766520426f756e746965735d28236163746976652d626f756e74696573290a202020202d20604f70656e600a202020202d206041737369676e6564600a202020202d2060556e64657220726576696577600a202020202d20604f6e20486f6c64600a20202d205b436f6e636c7564656420426f756e746965735d2823636f6e636c756465642d626f756e74696573290a202020202d2060436f6d706c65746564600a202020202d206045787069726564600a202020202d206041626f72746564600a20202d204d6f72652064657461696c73206f6e20746865207374617475732063616e20626520666f756e6420627920666f6c6c6f77696e6720746865206c696e6b20666f72207468652070726f706f73616c206f6620696e7465726573742e0a0a2d202a2a506169642a2a0a20202d2054686520616d6f756e742070616964206f75742074687573206661722e16a5220000000000aa03855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[57,"39000000000000000b0000000000000009000000b1072d202a2a426f756e74792a2a0a20202d2041637469766520426f756e746965730a202020202d205468652076616c7565206f662074686520626f756e74792e0a20202d20436f6e636c7564656420426f756e746965730a202020202d2054686520746f74616c20616d6f756e742070616964206f75742e0a20202d2049662074686520616d6f756e7420697320666f6c6c6f77656420627920602a602c20636f6e73756c7420746865206c696e6b6564205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920666f72206d6f726520696e666f726d6174696f6e2e0a0a2d202a2a456e6420446174652a2a0a20202d2054686520646174652074686520626f756e7479207761732060636f6e636c75646564600a0a2d202a2a436c61696d616e742873292a2a0a20202d2049662074686520626f756e747920776173207375636365737366756c6c7920636c61696d65642c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a7573742073746174652060436c61696d6564602e0a000424a5220000000000fe03855d000000005d082d202a2a426f756e74792a2a0a20202d205b41637469766520426f756e746965735d28236163746976652d626f756e74696573290a202020202d205468652076616c7565206f662074686520626f756e74792e0a20202d205b436f6e636c7564656420426f756e746965735d2823636f6e636c756465642d626f756e74696573290a202020202d2054686520746f74616c20616d6f756e742070616964206f75742e0a20202d2049662074686520616d6f756e7420697320666f6c6c6f77656420627920602a602c20636f6e73756c7420746865206c696e6b6564205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920666f72206d6f726520696e666f726d6174696f6e2e0a0a2d202a2a456e6420446174652a2a0a20202d2054686520646174652074686520626f756e7479207761732060636f6e636c75646564600a0a2d202a2a436c61696d616e742873292a2a0a20202d2049662074686520626f756e747920776173207375636365737366756c6c7920636c61696d65642c2074686520706572736f6e2773204769744875622060557365726e616d65602077696c6c206265206c69737465642e0a20202d20496e20736f6d652063697263756d7374616e6365732c2069742063616e2062652061636365707461626c6520746f206a7573742073746174652060436c61696d6564602e0a20a5220000000000e603855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[58,"3a000000000000000b000000000000000a000000310523232050726f706f73616c730a0a496e206164646974696f6e20746f20746865204a7367656e65736973207465616d2c20636f6d6d756e697479206d656d626572732c206e657720616e64206f6c642c2073686f756c64206e6f742062652061667261696420746f2070726f706f736520626f756e746965732e20417420736f6d6520706f696e742c20776520686f706520746f2063726561746520612073797374656d206569746865722073696d696c617220746f20746865205b4249505d2868747470733a2f2f6769746875622e636f6d2f626974636f696e2f62697073292070726f6365737320666f7220626974636f696e20616e642f6f7220746f20746865205b4646535d2868747470733a2f2f666f72756d2e6765746d6f6e65726f2e6f72672f392f776f726b2d696e2d70726f6772657373292073797374656d20666f72206d6f6e65726f2e000033a52200000000005804855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[59,"3b000000000000000b000000000000000b000000950f232323205374657020627920537465700a0a546869732073656374696f6e206f75746c696e6573207468652073746570732066726f6d20612070726f706f73616c73206973206d6164652c20746f2068617665206974206265636f6d6520616e205b41637469766520426f756e74795d28236163746976652d626f756e74696573292e0a0a312e20496620796f7520617265206e6f742066616d696c6961722077697468207468652070726f6a65637420616e642069747320676f616c732c20636f6e73696465722074686520666f6c6c6f77696e6720736f75726365733a0a20202d205468652070726f6a656374205b6d616e69666573746f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6d616e69666573746f292e0a20202d205468652070726f6a656374205b776869746570617065725d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f77686974657061706572292e0a20202d204f7572206c6f6e67206f722073686f7274207465726d205b4f4b52735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f6f6b7273292e0a596f75722070726f706f73616c2073686f756c642070726566657261626c7920626520696e206c696e6520776974682c206f72206174206c65617374206e6f74206f7274686f676f6e616c20746f20746865736520736f75726365732e20526566657272696e6720746f20616e2069737375652066726f6d206f6e65206f66206f7572206f74686572207265706f732063616e20616c736f206265206120676f6f6420736f757263652e0a0a496620796f75206861766520612070726f706f73616c207468617420646f6573206e6f74207265616c6c792066697420756e64657220616e79206f66207468652061626f76652c206665656c206672656520746f2067617567652074686520696e74657265737420616e642072656c6576616e636520696e2061206d6f726520696e666f726d616c206d616e6e65722c20652e672e20696e206f6e65206f66206f757220636f6d6d756e69636174696f6e206368616e6e656c732c2073756368206173205b54656c656772616d5d2868747470733a2f2f742e6d652f4a6f7953747265616d4f6666696369616c292c206f722074686520666f72756d2c20616674657220697420686173206265656e20696e74726f647563656420696e205b4163726f706f6c69735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f747265652f6d61737465722f746573746e6574732f6163726f706f6c6973292e000036a52200000000006a04855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[60,"3c000000000000000b000000000000000c000000f907322e204d616b6520616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920696e2074686520626f756e74696573207265706f2c207374727563747572656420617320666f6c6c6f77733a0a0a0a23232323205469746c650a0a2d202a2a4a43502a2a202d202a2a4465736372697074697665205469746c652a2a0a0a232323232320426f64790a0a2d202a2a50726f626c656d3a2a2a0a50726f766964652061206465736372697074696f6e206f66207468652070726f626c656d206f7220696d70726f76656d656e7420796f75207769736820746f2073656520696d706c656d656e7465642e0a2d202a2a476f616c733a2a2a0a41206272696566206465736372697074696f6e206f662074686520676f616c7320796f7520686f706520746f20616368696576652c20616e6420686f772069742077696c6c2062656e6566697420746865204a6f7973747265616d2050726f6a6563742e0a0a54686573652061726520746865206d696e696d756d20726571756972656d656e74732c2062757420796f752061726520656e636f75726167656420746f206c6f6f6b20617420746865205b626f756e7479207374727563747572655d2823626f64792d312920666f7220616e797468696e6720657874726120746f206164642e00044aa5220000000000e204855d00000000d907322e204d616b6520616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732920696e2074686973207265706f2c207374727563747572656420617320666f6c6c6f77733a0a0a0a23232323205469746c650a0a2d202a2a4a43502a2a202d202a2a4465736372697074697665205469746c652a2a0a0a232323232320426f64790a0a2d202a2a50726f626c656d3a2a2a0a50726f766964652061206465736372697074696f6e206f66207468652070726f626c656d206f7220696d70726f76656d656e7420796f75207769736820746f2073656520696d706c656d656e7465642e0a2d202a2a476f616c733a2a2a0a41206272696566206465736372697074696f6e206f662074686520676f616c7320796f7520686f706520746f20616368696576652c20616e6420686f772069742077696c6c2062656e6566697420746865204a6f7973747265616d2050726f6a6563742e0a0a54686573652061726520746865206d696e696d756d20726571756972656d656e74732c2062757420796f752061726520656e636f75726167656420746f206c6f6f6b20617420746865205b626f756e7479207374727563747572655d2823626f64792d312920666f7220616e797468696e6720657874726120746f206164642e3ba52200000000008804855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[61,"3d000000000000000b000000000000000d0000003106332e20496620796f7520776973682c20616e6e6f756e636520796f75722070726f706f73616c20696e206f6e65206f66206f757220636f6d6d756e69636174696f6e206368616e6e656c73206d656e74696f6e65642061626f76652e20546869732077696c6c206c696b656c792067656e6572617465206d6f726520666565646261636b2e0a0a342e2041206d656d626572206f6620746865204a7367656e65736973207465616d2077696c6c207265706c7920696e20612074696d656c79206d616e6e65722c2061736b696e6720666f72206d6f726520696e666f726d6174696f6e2c2072656a656374696e67206f7220617070726f76696e6720796f75722070726f706f73616c2e0a0a352e204966206974206765747320617070726f7665642c204a7367656e657369732077696c6c2065697468657220777269746520616e6420616e6e6f756e63652074686520626f756e7479206173206465736372696265642062656c6f772c206f722064656c65676174652074686520726573706f6e736962696c6974792e0a00003da52200000000009404855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[62,"3e000000000000000b000000000000000e000000850623232320416e6e6f756e63696e672041637469766520426f756e746965730a0a5768656e2061205b70726f706f73616c5d282370726f706f73616c732920686173206265656e20617070726f7665642c206f72204a7367656e657369732068617665206964656e74696669656420736f6d657468696e67207375697461626c6520666f72206120626f756e74792c2069742077696c6c20626520616e6e6f756e63656420617320616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f697373756573292c20616e6420616464656420746f20746865205b41637469766520426f756e746965735d28236163746976652d626f756e7469657329207461626c652e0a0a486f77207468652070726f63657373206c6f6f6b732066726f6d2074686520604163746976656020737461676520746f2060436f6e636c75646564602077696c6c20646570656e64206f6e207468652073636f7065206f6620776f726b2c202a2a43617465676f72792a2a2c207061796f7574207374727563747572652c206574632e00084da5220000000000f404855d000000007d062320416e6e6f756e63696e672041637469766520426f756e746965730a0a5768656e2061205b70726f706f73616c5d282370726f706f73616c732920686173206265656e20617070726f7665642c206f72204a7367656e657369732068617665206964656e74696669656420736f6d657468696e67207375697461626c6520666f72206120626f756e74792c2069742077696c6c20626520616e6e6f756e63656420617320616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f697373756573292c20616e6420616464656420746f20746865205b41637469766520426f756e746965735d28236163746976652d626f756e7469657329207461626c652e0a0a486f77207468652070726f63657373206c6f6f6b732066726f6d2074686520604163746976656020737461676520746f2060436f6e636c75646564602077696c6c20646570656e64206f6e207468652073636f7065206f6620776f726b2c202a2a43617465676f72792a2a2c207061796f7574207374727563747572652c206574632e51a52200000000000c05855d000000008106232320416e6e6f756e63696e672041637469766520426f756e746965730a0a5768656e2061205b70726f706f73616c5d282370726f706f73616c732920686173206265656e20617070726f7665642c206f72204a7367656e657369732068617665206964656e74696669656420736f6d657468696e67207375697461626c6520666f72206120626f756e74792c2069742077696c6c20626520616e6e6f756e63656420617320616e205b69737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f697373756573292c20616e6420616464656420746f20746865205b41637469766520426f756e746965735d28236163746976652d626f756e7469657329207461626c652e0a0a486f77207468652070726f63657373206c6f6f6b732066726f6d2074686520604163746976656020737461676520746f2060436f6e636c75646564602077696c6c20646570656e64206f6e207468652073636f7065206f6620776f726b2c202a2a43617465676f72792a2a2c207061796f7574207374727563747572652c206574632e42a5220000000000b204855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[63,"3f000000000000000b000000000000000f000000f901232320466f72206d6f726520696e666f726d6174696f6e206f6e20626f756e746965732c20706c6561736520766973697420746865205b6a6f7973747265616d2f626f756e746965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f29207265706f7369746f72792e00006ca5220000000000ae05855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[64,"40000000000000000d00000000000000020000001d0823232050726f626c656d0a417320646f63756d656e74656420696e205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336385d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336395d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3639292c2073686f776e20696e205b74656c656d74657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f232f4a6f7973747265616d253230546573746e657425323076322920616e64206469736375737365642068656176696c7920696e206f757220636f6d6d756e697479206368616e6e656c732c206b656570696e672061207375737461696e65642068696768207065657220636f756e74206861732070726f76656420646966666963756c742e2052756e6e696e6720746865206e6f646520776974682064656661756c742073657474696e677320616e64206c656176696e6720697420666f722061206c6f6e672074696d652077696c6c206c696b656c7920726573756c7420696e3a0000bfa5220000000000a007855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[65,"41000000000000000d00000000000000030000005908312e204120636f6e74696e756f75732064726f7020696e20706565727320286173207468652022706f6f6c22206f6620323520676574732066696c6c656420776974682066726f7a656e206e6f6465732c20616e64206e6f6465732066726f6d206f74686572206e6574776f726b73292e0a322e20412074656e64656e637920666f7220636c7573746572696e67207065657273202869652e20612067726f7570206f66206e6f646573206f6e6c792f6d6f73746c7920636f6e6e656374656420746f2065616368206f74686572290a332e2048696768206c6174656e63792c206c656176696e67206076616c696461746f72736020746f20676574207761726e696e67732f736c617368696e67732f62616e6e65642064756520746f20616e2022756e666f7274756e61746522206f7264657220696e207468652071756575652e0a342e205468697320616761696e20686173206c65616420746f20666f726b732c20656974686572206265636175736520746865206f6e6520226f75747369646522206e6f646520696e2074686520636c7573746572202872656620322e292068617320676f6e65206f66666c696e652c20616e642f6f72206265636175736520736f6d65206e6f64657320636f6e7369646572207468652070726f706f73656420626c6f636b20746f2062652077697468696e207468652074696d65206c696d69742c20616e64206f7468657273206e6f742e0000c4a5220000000000be07855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[66,"42000000000000000d00000000000000040000001d0a417320612073696465206e6f74652c207468657265206973206120636c7573746572696e67206f66206e6f64657320696e204575726f70652c20627574207468652072657374206f662074686520776f726c64206973206e6f742061732077656c6c20726570726573656e7465642c20696e6372656173696e67206c6174656e637920616e6420616464696e6720746f207468652070726f626c656d2e0a0a417320776520646f6e27742077616e7420746f2072657374617274206f7572206e6574776f726b20616761696e20286173206f75746c696e656420696e205b4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2336395d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f363929292c2077652068617665206164766973656420757365727320746f3a0a0a2a20696e637265617365207065657220636f756e7420627920616464696e672074686520666c6167730a2020602d2d696e2d7065657273206e202d2d6f7574207065657273206d600a20207768657265206e20616e64206d203e2032352e0a2a2072657374617274207468656972206e6f646520617420726567756c617220696e74657276616c730a0a426f7468206f6620746865736520696d70726f7665732074686520736974756174696f6e2c206275742074686520666f726d657220696e63726561736573206d656d6f72792075736167652c20616e6420746865206c61747465722072657175697265732061206d6f72652068616e6473206f6e20617070726f6163682c206f72206d6f726520616476616e6365642073657474696e67732e0a0000c7a5220000000000d007855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[67,"43000000000000000d0000000000000005000000110d23232050726f706f73616c0a446f2061206d61726b6574696e672063616d706169676e2c207768657265206578697374696e6720636f6d6d756e697479206d656d626572732061726520676976656e20604a6f7973747265616d60206272616e6465642073696e676c6520626f61726420636f6d70757465727320287261737062657272792070692773206f722073696d696c61722920666f7220667265652c20746f2072756e206173206e6f6465732e20546865792077696c6c207265636569766520726567756c6172206d6f6e65726f207061796d656e747320746f20636f76657220656c65637472696369747920616e642074686569722074696d65206966207468656972206e6f64657320686176652073756666696369656e7420757074696d652e20546865792077696c6c206f6620636f757273652067657420746f206b656570207468652052425073206e6f206d617474657220776861742e205468657365206e6f6465732077696c6c206d6179206f72206d6179206e6f74206265207061696420666f72206265696e67206076616c696461746f7273602e0a492062656c6965766520746869732063616e2068656c7020696e2074686520666f6c6c6f77696e6720776179733a0a0a312e20496e63726561736520746865206e6f646520636f756e742c2077686963682077696c6c3a0a2020200a2020202a20696d70726f766520746865206e6574776f726b0a2020202a2070726f6d6f7465206f75722022706f736974696f6e2220696e20746865205b74656c656d74657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f232f4a6f7973747265616d253230546573746e6574253230763229206869657261726368790a322e2046757274686572206275696c6420616e6420656e636f75726167652074686520636f6d6d756e6974792e0a332e2048656c7020696d70726f76652074686520746563686e6963616c20736b696c6c73206f662074686520726563656976696e67206d656d626572732028746865792077696c6c206f6620636f757273652067657420737570706f72742c206275742077652077696c6c206e6f74207368697020746865206e6f646573207769746820736f667477617265290000caa5220000000000e207855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[68,"44000000000000000d0000000000000006000000810c232320436f73740a41205b7261737062657272792070695d2868747470733a2f2f7777772e616d617a6f6e2e636f6d2f41424f582d5261737062657272792d436f6d706c6574652d4d6f74686572626f6172642d4865617473696e6b2f64702f423037443856585752592f7265663d73725f315f31373f637269643d31385153535758575649485059266b6579776f7264733d7261737062657272792b70692b332b62253242267169643d3135353735303930363826733d6761746577617926737072656669783d7261737062657272792b702532436170732532433430392673723d382d313729207769746820616c6c20746865206e65656465642065787472612065717569706d656e7420636f7374732061726f756e64207e38302420772f6f207368697070696e672e2042792073686f7070696e672061726f756e642c20627579696e6720696e2062756c6b2c20616e6420636f6e7369646572206368656170657220626f617264732a2c20612076657279206869676820656e6420657374696d61746520636f6d657320746f202431303020736869707065642e2047657474696e672074686520636f737420646f776e20746f20243530206d6967687420626520706f737369626c652c20627574206120627564676574206f6620243130302f707220626f6172642069732073696d706c6520616e6420636f6e7365727661746976652e0a0a2a63757272656e746c792c20626f617264732061732073696d706c6520617320746865205b6f72616e6765207069207a65726f5d2868747470733a2f2f7777772e616c69657870726573732e636f6d2f6974656d2f4f72616e67652d50692d5a65726f2d48322d517561642d436f72652d4f70656e2d736f757263652d3531324d422d50726f746563746976652d57686974652d436173652d646576656c6f706d656e742d626f6172642d6265796f6e642d5261737062657272792f33323739393131313631312e68746d6c3f73706d3d61326730732e393034323331312e302e302e3165663734633464414778444932292063616e205f63757272656e746c795f2072756e206f6e20746865206e6574776f726b2e0000cda5220000000000f407855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[69,"45000000000000000d0000000000000007000000910a57652077696c6c20706c616365206120626f756e747920666f7220617272616e67696e67207468652077686f6c65207468696e672c2069652e206465616c696e67207769746820737570706c6965727320666f7220626f6172647320616e64206272616e64696e672c20636f6d70696c696e672061206c697374206f6620726563697069656e74732c20616e6420617272616e67696e6720666f72207368697070696e672e205342437320706f77657220636f6e73756d7074696f6e20697320636c6f736520746f206e65676c696769626c652c20736f20706179696e672024382f6d6f6e7468202d3e20243130302f796561722c20666f7220757074696d65203e393525207365656d7320666169722e0a0a417373756d696e672077652070726f7669646520353020626f617264732c2074686520746f74616c20636f737420617373756d696e672074686520626f617264732061726520706f77657266756c20656e6f75676820746f20737570706f72742074686520696e6372656173696e67206e6574776f726b206c6f616420666f72207e3120796561722e202857652077696c6c206c696b656c79206861766520746f207374617274206e657720636861696e73206f6e6365206f72207477696365207072207965617220616e79776179292e0a0a4974656d0951747909436f73740a426f61726409353009243130300a205061796f757473097e3438302a0924380a426f756e74792a2a093109243235300a2a2a544f54414c2a2a092a2a4e412a2a092a2a24393039302a2a0a2a417373756d696e6720736f6d65206c6f737320616c6f6e6720746865207761792e0a2a2a74686520626f756e747920636f7374207761732063686f73656e20627920612070736575646f2d72616e646f6d206e756d6265722067656e657261746f722e0a0000d2a52200000000001208855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[70,"46000000000000000d0000000000000008000000190823232054686f75676874730a57652068617665207468757320666172206f7074656420666f7220616e20696e74657261637469766520776179206f66206d61726b6574696e6720746f206275696c642074686520636f6d6d756e6974792c20617320776520686f7065207468697320617070726f6163682077696c6c20696d70726f766520746865205f7175616c6974795f20726174686572207468616e206a75737420746865205f7175616e746974795f206f66206f7572206d656d626572732e204d6f7265206f6e20746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f626c6f672e6a6f7973747265616d2e6f72672f7061792d666f722d706c61792f292e20546869732066616c6c7320696e206c696e652077697468207468617420617070726f6163682c20617320697420726571756972657320736f6d65206f66206f7572206c65737320746563686e6963616c20666f6c6c6f7765727320746f206765742066616d696c696172697a65642077697468206c696e757820616e642074686520636f6d6d616e64206c696e652e0a0a496e707574206f6e2074686973206973206d6f7265207468616e2077656c636f6d652e20426f74682066726f6d20746865204a7367656e65736973207465616d2c20636f6e7472696275746f72732c20616e6420636f6d6d756e697479206d656d626572732e0000d7a52200000000003008855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[71,"47000000000000000d00000000000000090000008902232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f35292e0000f3a5220000000000d808855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[72,"48000000000000000e00000000000000020000008d02232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f3133292e000013a62200000000009809855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[73,"49000000000000000f00000000000000020000001d0b232320476f616c730a54686520676f616c206f66207468697320626f756e74792069732074776f666f6c643a0a0a312e20546f20676574206d6f726520636f6e74656e74206f6e2074686520706c6174666f726d2c20616e6420666f7220737472657373207465737473206f66207468652073746f7261676520616e6420646973747269627574696f6e2073797374656d2c207765206e65656420746f20636f6d70696c652061206c697374206f6620667265656c7920617661696c61626c65206f6e2064656d616e64206d656469612e0a322e2057652061726520747279696e6720746f206275696c6420616e6420616461707461626c6520616e642064796e616d696320636f6e74656e74206469726563746f72792073797374656d20666f72206f7572206e65787420746573746e65742c2060526f6d65602e2054686520737065637320617265207374696c6c2061205749502c20627574207468652067656e6572616c20636f6e6365707420697320646973637573736564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d2f6973737565732f3734292e20466f722074686520696e697469616c20696d706c656d656e746174696f6e2c2077652077616e7420746f206c6561726e206d6f72652061626f75742077686174206d65746164617461206973207479706963616c6c79206173736f636961746564207769746820656163682074797065206f66206d656469612c20616e6420686f77206974277320737472756374757265642e0a0a5573696e6720617564696f20617320616e206578616d706c653a0a576861742061726520746865206d6f737420696d706f7274616e7420616e642072656c6576616e74206d6574616461746120666f723a0a0a2a20536f6e67730a2a20416c62756d730a2a20417564696f626f6f6b730a2a20506f64636173747300003ba6220000000000880a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[74,"4a000000000000000f00000000000000030000008d03232320526577617264730a4561636820636f6e747269627574696f6e2077696c6c206265206576616c7561746564206f6e20616e20696e646976696475616c2062617369732c206275742077652077696c6c2061737369676e206120627564676574206f66202432303020666f722074686520626f756e74792e0a0a23232053636f7065206f6620576f726b0a536561726368207468652077656220666f72207369746573206f72206f7468657220706c6174666f726d20636f6e7461696e696e6720667265656c7920617661696c61626c65206d6564696120636f6e74656e742e0a000040a6220000000000a60a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[75,"4b000000000000000f00000000000000040000005d0823232044656c6976657261626c65730a2a2050726f76696465206c696e6b7320746f207765627369746573206f72206f74686572206d6564696120706c6174666f726d20636f6e7461696e696e6720226c617267652220616d6f756e7473206f66206d6564696120636f6e74656e742028766964656f2c20617564696f2c20652d626f6f6b73292e0a2a20496e636c756465206173206d75636820696e666f726d6174696f6e20617320706f737369626c652061626f7574207468653a0a20200a20202a2054797065206f6620636f6e74656e742c206966206170706c696361626c65202865672e20766964656f20646f63756d656e746172696573206f6e6c79290a20202a204c6963656e73696e67207265737472696374696f6e732028696620746865207369746520636f6e7461696e732061206d6978206f6620636f6e74656e74207769746820646966666572656e74207265737472696374696f6e73290a0a416e7920696e666f726d6174696f6e2061626f75742074686520666f6c6c6f77696e672077696c6c206164642076616c75652c20616e64207468757320696e63726561736520746865207265776172642e0a0a2a20486f7720746f20646f776e6c6f6164207468652066696c657320616e64206d6574616461746120696e2062756c6b0a2a20416e79206164646974696f6e616c20696e666f726d6174696f6e2074686174206164647265737365732060322e60000043a6220000000000b80a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[76,"4c000000000000000f00000000000000050000005906232320436f6e73747261696e74730a2a20416c6c207375626d697373696f6e73206d75737420626520696e206c696e652077697468206f7572205b546f535d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f70616765732f746f732920746f206265206576616c75617465642e0a0a232320426f756e747920666f726d61740a4f70656e20666f7220616c6c2e0a0a232320446561646c696e650a556e6c6573732077652061726520736174697366696564206265666f726520746869732074696d652c20746865207375626d697373696f6e20646561646c696e65206973207468652031387468206f662041756775737420323031392e0a0a496e2063617365206f662074686520666f726d65722c20746869732073656374696f6e2077696c6c20626520757064617465642c20627574206c656176696e67203234687220666f72207374726167676c65727320746f207375626d69742e0a0a285468697320626f756e7479206973206e6f7720636c6f7365642900004aa6220000000000e20a855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[77,"4d000000000000000f00000000000000060000008d02232320546f20736565206675727468657220636f6e766572736174696f6e732061626f7574207468697320626f756e747920616e6420746f20706f737420796f757220636f6e747269627574696f6e732c20706c6561736520766973697420746865205b4769744875622069737375655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f3230292e000052a6220000000000120b855d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[78,"4e000000000000001500000000000000020000005d0f2320496e737472756374696f6e730a0a54686520696e737472756374696f6e732062656c6f772077696c6c20617373756d6520796f75206172652072756e6e696e672061732060726f6f74602e2054686973206d616b65732074686520696e737472756374696f6e7320736f6d6577686174206561736965722c20627574206c657373207361666520616e6420726f627573742e0a0a4e6f74652074686174207468697320686173206f6e6c79206265656e20746573746564206f6e20667265736820696d61676573206f6620605562756e74752031362e3034204c5453602c20605562756e74752031382e3034204c54536020616e64206044656269616e2038602e0a0a5468652073797374656d206861732073686f776e20746f206265207175697465207265736f7572636520696e74656e736976652c20736f20796f752073686f756c642063686f6f73652061205650532077697468207370656373206571756976616c656e7420746f205b4c696e6f6465203847425d2868747470733a2f2f7777772e6c696e6f64652e636f6d2f70726963696e673f6d73636c6b69643d65616131326530303532393331306534363635633733306436623031623031342675746d5f736f757263653d62696e672675746d5f6d656469756d3d6370632675746d5f63616d706169676e3d4c696e6f64652532302d2532304272616e642532302d2532305365617263682532302d2532304c6f7747656f2675746d5f7465726d3d6c696e6f64652675746d5f636f6e74656e743d4c696e6f646529206f722062657474657220286e6f7420616e20616666696c69617465206c696e6b292e0a0a506c65617365206e6f7465207468617420756e6c6573732074686572652061726520616e79206f70656e2073706f74732028776869636820796f752063616e20636865636b20696e205b50696f6e6565725d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e6565722920756e6465722060526f6c657360202d3e2060417661696c61626c6520526f6c657360292c20796f752077696c6c206e6f742062652061626c6520746f206a6f696e2e204e6f746520746861742077652077696c6c20626520717569746520766967696c616e7420696e20626f6f74696e67206e6f6e2d706572666f726d696e67206053746f726167652050726f766964657273602c20736f20696620796f7520686176652065766572797468696e6720736574757020696e20616476616e63652c20796f7520636f756c642062652074686520717569636b65737420746f2074616b65206120736c6f74207768656e206974206f70656e73210000d4dc220000000000ea52865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[79,"4f00000000000000150000000000000003000000ed0c232320496e697469616c2073657475700a4669727374206f6620616c6c2c20796f75206e65656420612066756c6c792073796e636564205b4a6f7973747265616d2066756c6c206e6f64655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c6561736573292e20466f7220696e737472756374696f6e73206f6e20686f7720746f2073657420746869732075702c20676f205b686572655d282e2e2f76616c696461746f7273292e204e6f7465207468617420796f752063616e2064697372656761726420616c6c207468652070617274732061626f7574206b6579732c20616e64206a75737420696e7374616c6c2074686520736f6674776172652e0a5765207374726f6e676c7920656e636f7572616765207468617420796f752072756e20626f746820746865205b6e6f64655d282e2e2f76616c696461746f72732372756e2d61732d612d736572766963652920616e6420746865206f7468657220736f6674776172652062656c6f77206173206120736572766963652e0a0a46697273742c20796f75206e65656420746f20736574757020606e6f6465602c20606e706d6020616e6420607961726e602e205468697320697320736f6d6574696d652074726f75626c65736f6d6520746f20646f207769746820746865206061707460207061636b616765206d616e616765722e20476f205b686572655d2823696e7374616c6c2d7961726e2d616e642d6e6f64652d776974686f75742d6f6e2d6c696e75782920746f20646f207468697320696620796f7520617265206e6f7420636f6e666964656e7420696e20796f7572206162696c697469657320746f206e617669676174652074686520726f75676820736561732e0a0a4e6f772c2067657420746865206164646974696f6e616c20646570656e64656e636965733a0a6060600a24206170742d67657420757064617465202626206170742d6765742075706772616465202d790a24206170742d67657420696e7374616c6c20676974206275696c642d657373656e7469616c206c6962746f6f6c206175746f6d616b65206175746f636f6e6620707974686f6e0a6060600000d7dc220000000000fc52865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[80,"5000000000000000150000000000000004000000a505232320496e7374616c6c20697066730a546865206e65772073746f72616765206e6f64652075736573205b697066735d2868747470733a2f2f697066732e696f2f29206173206261636b656e642e0a6060600a2420776765742068747470733a2f2f646973742e697066732e696f2f676f2d697066732f76302e342e32312f676f2d697066735f76302e342e32315f6c696e75782d616d6436342e7461722e677a0a2420746172202d76786620676f2d697066735f76302e342e32315f6c696e75782d616d6436342e7461722e677a0a2420636420676f2d697066730a24202e2f6970667320696e6974202d2d70726f66696c65207365727665720a24202e2f696e7374616c6c2e73680a232073746172742069706673206461656d6f6e3a0a242069706673206461656d6f6e0a6060600a496620796f752073656520604461656d6f6e206973207265616479602061742074686520656e642c20796f752061726520676f6f64210a0000dadc2200000000000e53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[81,"5100000000000000150000000000000005000000b9072323232052756e2069706673206173206120736572766963650a0a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f697066732e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d697066730a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f740a4c696d69744e4f46494c453d383139320a50494446696c653d2f7661722f72756e2f697066732f697066732e7069640a4578656353746172743d2f7573722f6c6f63616c2f62696e2f69706673206461656d6f6e0a526573746172743d6f6e2d6661696c7572650a526573746172745365633d330a53746172744c696d6974496e74657276616c3d3630300a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000dcdc2200000000001a53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[82,"5200000000000000150000000000000006000000fd065361766520616e6420657869742e20436c6f736520746865206069706673206461656d6f6e602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c20737461727420697066730a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c2073746174757320697066730a2320496620796f752073656520736f6d657468696e6720656c7365207468616e20224461656d6f6e206973207265616479222061742074686520656e642c2074727920616761696e20696e206120636f75706c65206f66207365636f6e64732e0a2320546f20686176652069706673207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c6520697066730a2320496620796f752077616e7420746f2073746f7020697066732c2065697468657220746f2065646974207468652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f7020697066730a6060600000dedc2200000000002653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[83,"5300000000000000150000000000000007000000310d232320536574757020486f7374696e670a496e206f7264657220746f20616c6c6f7720666f7220757365727320746f2075706c6f616420616e6420646f776e6c6f61642c20796f75206861766520746f20736574757020686f7374696e672c207769746820616e2061637475616c20646f6d61696e20617320626f7468204368726f6d6520616e642046697265666f78207265717569726573206068747470733a2f2f602e20496620796f7520686176652061202273706172652220646f6d61696e206f7220737562646f6d61696e20796f7520646f6e2774206d696e64207573696e6720666f72207468697320707572706f73652c20676f20746f20796f757220646f6d61696e2072656769737472617220616e6420706f696e7420796f757220646f6d61696e20746f2074686520495020796f752077616e742e20496620796f7520646f6e27742c20796f75206d75737420756e666f7274756e6174656c7920676f207075726368617365206f6e652e0a0a546f20636f6e6669677572652053534c2d63657274696669636174657320746865206561736965737420697320746f20757365205b63616464795d2868747470733a2f2f63616464797365727665722e636f6d2f292c20627574206665656c206672656520746f2074616b65206120646966666572656e7420617070726f6163682e204e6f7465207468617420696620796f7520617265207573696e6720636164647920666f7220636f6d6d65726369616c207573652c20796f75206e65656420746f20616371756972652061206c6963656e73652e20506c6561736520636865636b207468656972207465726d7320616e64206d616b65207375726520796f7520636f6d706c792077697468207768617420697320636f6e7369646572656420706572736f6e616c207573652e0a0a6060600a24206375726c2068747470733a2f2f67657463616464792e636f6d207c2062617368202d7320706572736f6e616c0a2320416c6c6f772063616464792061636365737320746f20726571756972656420706f7274733a0a242073657463617020276361705f6e65745f62696e645f736572766963653d2b657027202f7573722f6c6f63616c2f62696e2f63616464790a2420756c696d6974202d6e20383139320a6060600000e0dc2200000000003253865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[84,"54000000000000001500000000000000080000000d09436f6e666967757265206361646479207769746820606e616e6f207e2f436164647966696c656020616e6420706173746520696e2074686520666f6c6c6f77696e673a0a0a6060600a232053746f72616765204e6f6465204150490a68747470733a2f2f3c796f75722e636f6f6c2e75726c3e207b0a2020202070726f7879202f206c6f63616c686f73743a33303030207b0a20202020202020207472616e73706172656e740a202020207d0a20202020686561646572202f207b0a20202020202020204163636573732d436f6e74726f6c2d416c6c6f772d4f726967696e20202a0a20202020202020204163636573732d436f6e74726f6c2d416c6c6f772d4d6574686f647320224745542c205055542c20484541442c204f5054494f4e53220a202020207d0a7d0a6060600a4e6f7720796f752063616e20636865636b20696620796f7520636f6e6669677572656420636f72726563746c792c20776974683a0a6060600a24202f7573722f6c6f63616c2f62696e2f6361646479202d2d76616c6964617465202d2d636f6e66207e2f436164647966696c650a232057686963682073686f756c642072657475726e3a0a436164647966696c652069732076616c69640a0a2320596f752063616e206e6f772072756e20636164647920776974683a0a24202873637265656e29202f7573722f6c6f63616c2f62696e2f6361646479202d2d6167726565202d2d656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d2d636f6e66207e2f436164647966696c650a6060600000e3dc2200000000004453865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[85,"55000000000000001500000000000000090000002d092323232052756e206361646479206173206120736572766963650a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f63616464792e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d526576657273652070726f787920666f722073746f72616765206e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f740a4c696d69744e4f46494c453d383139320a50494446696c653d2f7661722f72756e2f63616464792f63616464792e7069640a4578656353746172743d2f7573722f6c6f63616c2f62696e2f6361646479202d6167726565202d656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d70696466696c65202f7661722f72756e2f63616464792f63616464792e706964202d636f6e66202f726f6f742f436164647966696c650a526573746172743d6f6e2d6661696c7572650a53746172744c696d6974496e74657276616c3d3630300a0a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000e6dc2200000000005653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[86,"560000000000000015000000000000000a00000061035361766520616e6420657869742e20436c6f736520606361646479602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c2073746172742063616464790a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c207374617475732063616464790a232057686963682073686f756c642070726f6475636520736f6d657468696e67206c696b653a0a6060600a0000eedc2200000000008653865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[87,"570000000000000015000000000000000b000000990d6060600a2d2d2d0ae2978f2063616464792e73657276696365202d20526576657273652070726f787920666f722073746f72616765206e6f64650a2020204c6f616465643a206c6f6164656420282f6574632f73797374656d642f73797374656d2f63616464792e736572766963653b2064697361626c6564290a2020204163746976653a20616374697665202872756e6e696e67292073696e63652054756520323031392d30362d31382031373a31353a3434205554433b2036732061676f0a204d61696e205049443a203536313320286361646479290a2020204347726f75703a202f73797374656d2e736c6963652f63616464792e736572766963650a2020202020202020202020e29494e2948035363133202f7573722f6c6f63616c2f62696e2f6361646479202d616772656520656d61696c203c796f75725f6d61696c40736f6d652e646f6d61696e3e202d70696466696c65202f7661722f72756e2f63616464792f63616464792e706964202d636f6e66202f726f6f742f436164647966696c650a0a4a756e2031382031373a31353a3434206c6f63616c686f73742073797374656d645b315d3a205374617274656420526576657273652070726f787920666f7220686f7374656420617070732e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2041637469766174696e6720707269766163792066656174757265732e2e2e20646f6e652e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2053657276696e67204854545053206f6e20706f7274203434330a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2053657276696e672048545450206f6e20706f72742038300a4a756e2031382031373a31353a3434206c6f63616c686f73742063616464795b353631335d3a2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a2d2d2d0a6060600000f9dc220000000000c853865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[88,"580000000000000015000000000000000c000000c5026060600a2320546f2068617665206361646479207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c652063616464790a2320496620796f752077616e7420746f2073746f702063616464792c2065697468657220746f2065646974207468652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f702063616464790a6060600000fcdc220000000000da53865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[89,"590000000000000015000000000000000d000000ad07232320496e7374616c6c20616e64205365747570207468652053746f72616765204e6f64650a0a46697273742c20796f75206e65656420746f20636c6f6e6520746865207265706f2e0a0a6060600a242067697420636c6f6e652068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f73746f726167652d6e6f64652d6a6f7973747265616d2e6769740a242063642073746f726167652d6e6f64652d6a6f7973747265616d0a24207961726e0a2320546573742074686174206974277320776f726b696e6720776974683a0a24207961726e2072756e20636f6c6f73737573202d2d68656c700a6060600a596f752063616e2073657420746865205041544820746f2061766f69642074686520607961726e2072756e60207072656669782062793a0a606e616e6f207e2f2e626173685f70726f66696c65600a616e6420617070656e643a0a6060600a2320436f6c6f737375730a616c69617320636f6c6f737375733d222f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a73220a6060600a5468656e3a0a602e207e2f2e626173685f70726f66696c65600a4e6f772c20796f752063616e20746573742060636f6c6f73737573202d2d68656c70602e000000dd220000000000f253865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[90,"5a0000000000000015000000000000000e000000bd04232323205570646174652053746f72616765204e6f64650a0a496620796f75206e65656420746f2075706461746520796f75722073746f72616765206e6f64652c20796f752077696c6c206669727374206e65656420746f2073746f702074686520736f6674776172652e0a0a6060600a2320496620796f75206172652072756e6e696e6720617320736572766963652028776869636820796f752073686f756c64290a242073797374656d63746c2073746f702073746f726167652d6e6f64650a24206364202f706174682f746f2f73746f726167652d6e6f64652d6a6f7973747265616d0a2320417373756d696e6720796f7520636c6f6e65642061732073686f776e2061626f76650a24206769742070756c6c206f726967696e206d61737465720a24207961726e0a606060000003dd2200000000000454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[91,"5b0000000000000015000000000000000f000000d90c2323232047656e6572617465206b65797320616e64206d656d62657273686970730a0a436c69636b205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672920746f206f70656e20746865206050696f6e656572206170706020696e20796f75722062726f777365722e205468656e20666f6c6c6f7720696e737472756374696f6e73205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236765742d737461727465642920746f2067656e6572617465206120736574206f6620604b657973602c2067657420746f6b656e732c20616e64207369676e20757020666f72206120604d656d62657273686970602e205468697320606b6579602077696c6c20626520726566657272656420746f2061732074686520606d656d62657260206b65792066726f6d206e6f77206f6e2e204d616b65207375726520746f207361766520746865206035596f75724a6f794d656d626572416464726573732e6a736f6e602066696c652e204e6f7465207468617420796f75206e65656420746f206b656570207468652072657374206f6620796f757220746f6b656e73206173207374616b6520746f206265636f6d652061206053746f726167652050726f7669646572602e0a0a2d2d2d0a0a417373756d696e6720796f75206172652072756e6e696e67207468652073746f72616765206e6f6465206f6e20612056505320766961207373682c206f6e20796f7572206c6f63616c206d616368696e653a0a0a6060600a2320476f20746865206469726563746f727920776865726520796f7520736176656420796f7572203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e3a0a2420736370203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e203c757365723e403c796f75722e7670732e69702e616464726573733e3a2f706174682f746f2f73746f726167652d6e6f64652d6a6f7973747265616d2f0a6060600a596f7572206035596f75724a6f794d656d626572416464726573732e6a736f6e602073686f756c64206e6f7720626520776865726520796f752077616e742069742e000007dd2200000000001c54865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[92,"5c00000000000000150000000000000010000000210d2323232320536574757020616e6420636f6e666967757265207468652073746f72616765206e6f64650a0a2a2a4d616b65207375726520796f75277265205b4a6f7973747265616d2066756c6c206e6f64655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d292069732066756c6c792073796e636564206265666f726520796f75206d6f766520746f20746865206e6578742073746570287329212a2a0a0a4f6e20746865206d616368696e652f56505320796f752077616e7420746f2072756e20796f75722073746f72616765206e6f64653a0a0a6060600a2320496620796f7520617265206e6f7420616c726561647920696e2074686174206469726563746f72793a0a242063642073746f726167652d6e6f64652d6a6f7973747265616d0a2320496620796f7520636f6e6669677572656420796f7572202e626173685f70726f66696c653a0a2420636f6c6f73737573207369676e7570203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e0a2320496620796f75206469646e277420636f6e66696775726520796f7572202e626173685f70726f66696c653a0a24207961726e2072756e20636f6c6f73737573207369676e7570203c35596f75724a6f794d656d626572416464726573732e6a736f6e3e0a23204e6f74652074686174207468652072657374206f66207468652067756964652077696c6c20617373756d6520796f752064696420696e206661637420636f6e666967757265202e626173685f70726f66696c6520616e6420646f6e2774206e65656420227961726e2072756e220a2320466f6c6c6f772074686520696e737472756374696f6e732061732070726f6d707465642e20466f722065617365206f66207573652c2069742773206265737420746f206e6f742073657420612070617373776f72642e2e2e20496620796f7520646f2c2072656d656d62657220746f206164643a0a23202d2d70617373706872617365203c796f75725f706173737068726173653e20617320616e20617267756d656e742065766572792074696d6520796f752073746172742074686520636f6c6f73737573207365727665722e0a6060600a00000bdd2200000000003454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[93,"5d00000000000000150000000000000011000000490d546869732070726f64756365732061206e6577206b657920603c35596f757253746f72616765416464726573732e6a736f6e3e602c20616e642070726f6d70747320796f7520746f206f70656e20746865202261707022202850696f6e656572292e204d616b652073757265207468617420796f7520796f75722063757272656e742f64656661756c7420697320746865206035596f75724a6f794d656d6265724164647265737360206b65792e20416674657220796f7520636c69636b20605374616b65602c20796f752077696c6c207365652061206e6f74696669636174696f6e20696e2074686520746f7020726967687420636f726e65722e20496620796f752067657420616e206572726f722c2074686973206d6f7374206c696b656c79206d65616e7320616c6c2074686520736c6f7473206172652066756c6c2e20556e666f7274756e6174656c792c2074686973206d65616e7320796f75206861766520746f20696d706f72742074686520603c35596f757253746f72616765416464726573732e6a736f6e3e6020746f207265636f76657220796f757220746f6b656e732e0a0a4966206974207375636365656465642c2070726f636565642061732073686f776e2062656c6f773a0a0a6060600a2320546f206d616b6520737572652065766572797468696e672069732072756e6e696e6720736d6f6f74686c792c20697420776f756c642062652068656c7066756c20746f2072756e20776974682044454255473a0a242044454255473d2a20636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a2320496620796f75207365742061207061737370687261736520666f72203c35596f757253746f72616765416464726573732e6a736f6e3e3a0a242044454255473d2a20636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d70617373706872617365203c796f75725f706173737068726173653e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a60606000000ddd2200000000004054865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[94,"5e000000000000001500000000000000120000005109496620796f7520646f20746869732c20796f752073686f756c642073656520736f6d657468696e67206c696b653a0a0a6060600a646973636f766572793a3a7075626c697368207b206e616d653a2027516d507777733537366e33427945364351557655743364676d6f6b6b32584e32634a67505948576f4d3653535553272c0a646973636f766572793a3a7075626c69736820202076616c75653a20272f697066732f516d6544415747526a62577836664d43787474393559545367546742686874626b317173476b746552586145535427207d202b3339316d730a6060600a596f752063616e206a75737420646f207468697320696e73746561642c206275742069742077696c6c206d616b65206974206d6f726520646966666963756c7420746f2064656275672e2e2e0a6060600a2420636f6c6f7373757320736572766572202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a6060600a49662065766572797468696e6720697320776f726b696e6720736d6f6f74686c792c20796f752077696c6c206e6f772073746172742073796e63696e67207468652060636f6e74656e74206469726563746f7279600a4e6f7465207468617420756e6c65737320796f752072756e2074686973206973206120736572766963652c20796f75206e6f77206861766520746f206f70656e2061207365636f6e64207465726d696e616c20666f72207468652072656d61696e696e672073746570732e000013dd2200000000006454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[95,"5f0000000000000015000000000000001300000069092323232320436865636b207468617420796f75206172652073796e63696e670a496e20796f7572207365636f6e64207465726d696e616c2077696e646f773a0a6060600a24206970667320626974737761702077616e746c6973740a2d2d2d0a23204f75747075742073686f756c642062652061206c6f6e67206c697374206f66206b6579732c2065672e204e6f74652074686174206974206d696768742074616b65206120666577206d696e75746573206265666f7265207468652061637475616c20636f6e74656e742066726f6d20746865204a6f7973747265616d20636f6e74656e74206469726563746f72792073686f77732075702e0a2d2d2d0a516d65737a65426a4245724651726b6951506838516854733368664345474a754b326a4e6f706174486e7073316b0a2e2e2e0a516d664362557359684b426d72646f7033794672657271564b77424a76593574627056316366394378334c314a380a6060600a496620796f7520646964207468697320696d6d6564696174656c79206166746572204649525354207374617274696e6720796f75722073746f72616765206e6f64652c20746865206077616e746c69737460206d6967687420626520656d7074792e20476976652069742061206d696e7574652c20616e642069742073686f756c6420636f6e7461696e206174206c6561737420746865206e756d626572206f66206974656d7320696e2074686520636f6e74656e74206469726563746f72792e20596f752063616e20616c736f20636865636b207768617420636f6e74656e7420796f7520686176652073746f7265642062793a000016dd2200000000007654865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[96,"600000000000000015000000000000001400000019096060600a697066732072656673206c6f63616c0a2d2d2d0a23204f75747075742073686f756c6420626520616e206576656e206c6f6e676572206c697374206f66206b6579732c2065672e0a2d2d2d0a516d65737a65426a4245724651726b6951506838516854733368664345474a754b326a4e6f706174486e7073316b0a516d657a756d33415764786b6d31417448653335445a475764666854513450566d6d5a61744777444c36385245530a2e2e2e0a516d6643436a43357739777854466f41614a3934377373326f63316a783652326d4d39786a55374363727135354d0a516d664362557359684b426d72646f7033794672657271564b77424a76593574627056316366394378334c314a380a6060600a0a496e20796f7572206669727374207465726d696e616c2028776865726529207468652073746f72616765206e6f64652069732072756e6e696e672c20796f752077696c6c20736f6f6e20656e6f7567682073656520746869733a0a6060600a2e2e2e0a6a6f7973747265616d3a72756e74696d653a62617365205458207374617475733a2046696e616c697a6564202b376d730a6a6f7973747265616d3a72756e74696d653a626173652054582046696e616c697a65642e202b316d730a6a6f7973747265616d3a73796e632073796e632072756e20636f6d706c657465202b306d730a6060600a0a496e20746865207365636f6e64207465726d696e616c3a0a6060600a2420697066732072656673206c6f63616c0a6060600a53686f756c642072657475726e206e6f7468696e672e00001bdd2200000000009454865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[97,"6100000000000000150000000000000015000000690c2323232052756e2073746f72616765206e6f6465206173206120736572766963650a0a546f20656e73757265206869676820757074696d652c2069742773206265737420746f20736574207468652073797374656d2075702061732061206073657276696365602e204e6f7465207468617420746869732077696c6c206e6f7420776f726b20696620796f752073657420612070617373776f726420666f7220796f757220603c35596f757253746f72616765416464726573732e6a736f6e3e20602e0a0a4578616d706c652066696c652062656c6f773a0a0a6060600a24206e616e6f202f6574632f73797374656d642f73797374656d2f73746f726167652d6e6f64652e736572766963650a2320506173746520696e2065766572797468696e672062656c6f772074686520737461706c6564206c696e650a2d2d2d0a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d2053746f72616765204e6f64650a41667465723d6e6574776f726b2e74617267657420697066732e73657276696365206a6f7973747265616d2d6e6f64652e736572766963650a0a5b536572766963655d0a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d0a4c696d69744e4f46494c453d383139320a456e7669726f6e6d656e743d44454255473d2a0a4578656353746172743d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d7631302e31362e302d6c696e75782d7836342f62696e2f6e6f6465205c0a20202020202020207061636b616765732f636f6c6f737375732f62696e2f636c692e6a73205c0a20202020202020202d2d6b65792d66696c65203c35596f757253746f72616765416464726573732e6a736f6e3e202d2d7075626c69632d75726c2068747470733a2f2f3c796f75722e636f6f6c2e75726c3e0a526573746172743d6f6e2d6661696c7572650a53746172744c696d6974496e74657276616c3d3630300a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a60606000001fdd220000000000ac54865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[98,"620000000000000015000000000000001600000095085361766520616e6420657869742e20436c6f73652060636f6c6f73737573602069662069742773207374696c6c2072756e6e696e672c207468656e3a0a6060600a242073797374656d63746c2073746172742073746f726167652d6e6f64650a232049662065766572797468696e6720776f726b732c20796f752073686f756c642067657420616e206f75747075742e2056657269667920776974683a0a242073797374656d63746c207374617475732073746f726167652d6e6f64650a232057686963682073686f756c642070726f6475636520736f6d657468696e67206c696b653a0a2d2d2d0ae2978f2073746f726167652d6e6f64652e73657276696365202d204a6f7973747265616d2053746f72616765204e6f64650a2020204c6f616465643a206c6f6164656420282f6574632f73797374656d642f73797374656d2f73746f726167652d6e6f64652e736572766963653b2064697361626c6564290a2020204163746976653a20616374697665202872756e6e696e67292073696e63652054756520323031392d30362d31382031373a32353a3431205554433b20346d696e203139732061676f0a204d61696e205049443a20353635342028636f6c6f73737573290a2020204347726f75703a202f73797374656d2e736c6963652f73746f726167652d6e6f64652e736572766963650a2020202020202020202020e29494e294803536353420636f6c6f737375730a20202020202020202020200a606060000029dd220000000000e854865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[99,"6300000000000000150000000000000017000000f10b6060600a0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313535353936382c2031353630303633205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313536303036342c2031353634313539205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e6765732043757272656e74207265717565737465642072616e6765206973205b2033333732323834382c203434313935393833205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e6765732049676e6f72696e67206368756e6b3b206974206973206f7574206f662072616e67652e0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54206a6f7973747265616d3a7574696c3a72616e676573203d20476f74206368756e6b207769746820627974652072616e6765205b20313536343136302c2031353638323535205d0a4a756e2031382031373a32393a3331206c6f63616c686f7374206e6f64655b353635345d3a205475652c203138204a756e20323031392031373a32393a333120474d54200a2d2d2d0a606060000030dd2200000000001255865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[100,"640000000000000015000000000000001800000079036060600a2320546f206861766520636f6c6f73737573207374617274206175746f6d61746963616c6c79206174207265626f6f743a0a242073797374656d63746c20656e61626c6520636f6c6f737375730a2320496620796f752077616e7420746f2073746f70207468652073746f72616765206e6f64652c2065697468657220746f2065646974207468652073746f726167652d6e6f64652e736572766963652066696c65206f7220736f6d65206f7468657220726561736f6e3a0a242073797374656d63746c2073746f702073746f726167652d6e6f64650a606060000035dd2200000000003055865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[101,"6500000000000000150000000000000019000000e904232323205665726966792065766572797468696e6720697320776f726b696e670a0a496e20796f75722062726f777365722c2066696e6420636c69636b206f6e20616e2075706c6f61646564206d656469612066696c652e20436f70792074686520603c636f6e74656e742d69643e602c2069652e207768617420636f6d657320616674657220746865206c61737420602f602e0a0a5468656e2070617374652074686520666f6c6c6f77696e6720696e20796f75722062726f777365723a0a0a6068747470733a2f2f3c796f75722e636f6f6c2e75726c3e2f61737365742f76302f3c636f6e74656e742d69643e602e0a0a496620796f7520676574206120626c61636b2073637265656e20776974682061206d6564696120706c617965722c2074686174206d65616e7320796f752061726520676f6f6421000039dd2200000000004855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[102,"6600000000000000160000000000000002000000590b232320506f7274206e6f74207365740a0a496620796f75206765742074686973206572726f723a0a6060600a547970654572726f72205b4552525f494e56414c49445f4f50545f56414c55455d3a205468652076616c756520227b20706f72743a20747275652c20686f73743a20273a3a27207d2220697320696e76616c696420666f72206f7074696f6e20226f7074696f6e73220a202020206174205365727665722e6c697374656e20286e65742e6a733a313435303a39290a2020202061742050726f6d69736520282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3132393a3132290a202020206174206e65772050726f6d69736520283c616e6f6e796d6f75733e290a2020202061742073746172745f657870726573735f61707020282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3132303a3130290a2020202061742073746172745f616c6c5f736572766963657320282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3133383a3130290a202020206174204f626a6563742e73657276657220282f726f6f742f73746f726167652d6e6f64652d6a6f7973747265616d2f7061636b616765732f636f6c6f737375732f62696e2f636c692e6a733a3332383a3131290a2020202061742070726f636573732e5f7469636b43616c6c6261636b2028696e7465726e616c2f70726f636573732f6e6578745f7469636b2e6a733a36383a37290a6060600a0a4974206d6f7374206c696b656c79206d65616e7320796f757220706f7274206973206e6f74207365742c2028616c74686f7567682069742073686f756c642064656661756c7420746f2033303030292e000041dd2200000000007855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[103,"6700000000000000160000000000000003000000c9066060600a2420636f6c6f73737573202d2d68656c700a232053686f756c64206c69737420746865207061746820746f20796f75722063757272656e7420636f6e6669672066696c652e0a2420636174202f706174682f746f2f2e636f6e6669672f636f6e66696773746f72652f406a6f7973747265616d2f636f6c6f737375732e6a736f6e0a232073686f756c642072657475726e20736f6d657468696e67206c696b653a0a2d2d2d0a7b0a2022706f7274223a20333030302c0a202273796e63506572696f64223a203330303030302c0a20227075626c696355726c223a202268747470733a2f2f3c796f75722e636f6f6c2e75726c3e222c0a20226b657946696c65223a20222f706174682f746f2f3c35596f757253746f72616765416464726573732e6a736f6e3e220a7d0a6060600a4966206022706f7274223a203c6e3e60206973206d697373696e672c206f72206e6f742061206e756d6265722c2070617373207468653a0a602d70203c6e3e206020617267756d656e74206f72206564697420796f757220636f6e6669672066696c652c20776865726520603c6e3e6020636f756c6420626520333030302e000044dd2200000000008a55865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[104,"68000000000000001600000000000000040000004909232320496e7374616c6c207961726e20616e64206e6f6465206f6e206c696e75780a0a476f205b686572655d2868747470733a2f2f6e6f64656a732e6f72672f656e2f646f776e6c6f61642f2920616e642066696e6420746865206e657765737420284c5453292062696e61727920666f7220796f75722064697374726f2e20546869732067756964652077696c6c20617373756d652036342d626974206c696e75782c20616e6420606e6f64652d7631302e31362e30602e0a0a496620796f752077616e7420746f20696e7374616c6c2061732060726f6f74602c20736f20796f757220757365722063616e2075736520606e706d6020776974686f757420607375646f602070726976696c656765732c20676f205b686572655d2823696e7374616c6c2d61732d726f6f74292e0a0a496620796f752077616e7420746f20696e7374616c6c20617320616e6f74686572207573657220286d757374206861766520607375646f602070726976696c65676573292c20676f205b686572655d2823696e7374616c6c2d61732d757365722d776974682d7375646f2d70726976696c65676573292e0a0a416c7465726e6174697665732073756368206173205b6e766d5d2868747470733a2f2f6769746875622e636f6d2f6e766d2d73682f6e766d29206f72205b6e6f6465736f757263655d2868747470733a2f2f6769746875622e636f6d2f6e6f6465736f757263652f646973747269627574696f6e732f626c6f622f6d61737465722f524541444d452e6d64292061726520616c736f20776f72746820636f6e7369646572696e672e000047dd2200000000009c55865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[105,"69000000000000001600000000000000050000000d092323232320496e7374616c6c20617320526f6f740a546869732073656374696f6e20617373756d657320796f752061726520696e7374616c6c696e672061732060726f6f74602e20497420616c736f2064656d6f6e7374726174657320686f7720796f752063616e2070726f7669646520616e6f7468657220757365722061636365737320776974686f757420686176696e6720746f2075736520607375646f602e20497420646f65736e2774206d6174746572206966207573657220606a6f7973747265616d602068617320607375646f602070726976696c65676573206f72206e6f742e0a0a6060600a2420776765742068747470733a2f2f6e6f64656a732e6f72672f646973742f7631302e31362e302f6e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a0a24206d6b646972202d70202f7573722f6c6f63616c2f6c69622f6e6f64656a730a2420746172202d784a7666206e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a202d43202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a60606000004ddd220000000000c055865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[106,"6a0000000000000016000000000000000600000045045361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a23205665726966792076657273696f6e3a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a2320496e7374616c6c207961726e0a24206e706d20696e7374616c6c207961726e202d670a24206e706d2069206e6f64652d67797040352e302e300a232049662065766572797468696e67206c6f6f6b73206f6b2c20616e6420796f752077616e7420746f20616c6c6f772075736572206a6f7973747265616d206163636573733a0a242063686f776e202d52206a6f7973747265616d202f7573722f6c6f63616c2f6c69622f6e6f64656a730a606060000051dd220000000000d855865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[107,"6b000000000000001600000000000000070000002d074c6f6720696e20746f206a6f7973747265616d3a0a6060600a24207375206a6f7973747265616d0a242063640a232052657065617420746865202e626173685f70726f66696c6520636f6e6669673a0a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a2320566572696679207468617420697420776f726b733a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a24207961726e202d760a6060600a0a596f752068617665206e6f77207375636365737366756c6c7920696e7374616c6c656420746865206e657765737420284c5453292076657273696f6e73206f6620606e706d602c20606e6f64656020616e6420607961726e602e000053dd220000000000e455865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[108,"6c00000000000000160000000000000008000000c90b2323232320496e7374616c6c2061732075736572207769746820607375646f602070726976696c656765730a546869732073656374696f6e20617373756d6573207468652073746570732061726520706572666f726d6564206173207573657220606a6f7973747265616d60207769746820607375646f602070726976696c656765732e0a0a417320606a6f7973747265616d600a6060600a2420776765742068747470733a2f2f6e6f64656a732e6f72672f646973742f7631302e31362e302f6e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a0a24207375646f206d6b646972202d70202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24207375646f20746172202d784a7666206e6f64652d7631302e31362e302d6c696e75782d7836342e7461722e787a202d43202f7573722f6c6f63616c2f6c69622f6e6f64656a730a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a6060600a2420736f75726365207e2f2e626173685f70726f66696c650a24207375646f2063686f776e202d52206a6f7973747265616d202f7573722f6c6f63616c2f6c69622f6e6f64656a730a2320566572696679207468617420697420776f726b733a0a24206e6f6465202d760a24206e706d202d760a24206e7078202d760a2320496e7374616c6c207961726e0a24206e706d20696e7374616c6c207961726e202d670a2320566572696679207468617420697420776f726b733a0a24207961726e202d760a24206e706d2069206e6f64652d67797040352e302e300a60606000005add2200000000000e56865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[109,"6d00000000000000160000000000000009000000f105496620796f752077616e742060726f6f746020746f2062652061626c6520746f2075736520606e706d602061732077656c6c3a0a0a6060600a24207375646f2073750a24206e616e6f207e2f2e626173685f70726f66696c650a2d2d2d0a417070656e642074686520666f6c6c6f77696e67206c696e65733a0a2d2d2d0a23204e6f64656a730a56455253494f4e3d7631302e31362e300a44495354524f3d6c696e75782d7836340a6578706f727420504154483d2f7573722f6c6f63616c2f6c69622f6e6f64656a732f6e6f64652d2456455253494f4e2d2444495354524f2f62696e3a24504154480a6060600a5361766520616e6420657869742c207468656e3a0a0a602420736f75726365207e2f2e626173685f70726f66696c65600a0a596f752068617665206e6f77207375636365737366756c6c7920696e7374616c6c656420746865206e657765737420284c5453292076657273696f6e73206f6620606e706d602c20606e6f64656020616e6420607961726e602e0a00005edd2200000000002656865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[110,"6e00000000000000170000000000000002000000c90a23232047656e6572617465204b6579730a436c69636b20604d79204b6579736020696e2074686520736964656261722c20616e64207468656e2073656c656374207468652060437265617465204b65797360207461622e205468652063686f6963657320796f75206d616b652066726f6d20686572652c20646570656e64732061206c6974746c65206f6e20686f7720796f752077616e7420746f2070617274696369706174652e20496620796f75206a7573742077616e7420746f20706c61792061726f756e642c20796f752063616e206a75737420666f6c6c6f77207468652064656661756c74732e20496620796f752068617665206120737065636966696320726f6c6520696e206d696e642c20796f75206d696768742077616e7420746f20666f6c6c6f7720746865206c696e6b7320746f2074686520696e737472756374696f6e7320696e20746865206865616465722c206f7220616363657373207468656d20766961205b41637469766520526f6c65735d28236163746976652d726f6c6573292e0a0a496e20616e79206576656e742c2074686520604b657973602077696c6c2062652073746f72656420696e20796f75722062726f7773657220666f7220796f757220636f6e76656e69656e63652c2062757420697427732073616665737420746f207361766520796f757220605261772073656564602028796f75206e65656420697420666f72206365727461696e20726f6c65732920616e64207361766520746865202e6a736f6e2066696c652e2054686520604d6e656d6f6e6963602063616e20616c736f206265207573656420746f20726573746f726520796f757220604b657973602c206275742077696c6c206e6f7420646f20796f7520616e7920676f6f6420696620796f752077616e7420746f206265636f6d652061206056616c696461746f72602e000077dd220000000000bc56865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[111,"6f00000000000000170000000000000003000000e10a2323204765742061204d656d626572736869700a546f206265636f6d65206120604d656d62657260206f662074686520706c6174666f726d2c20796f75206e65656420736f6d6520746f6b656e732e2045697468657220636c69636b2074686520604672656520546f6b656e7360206c696e6b2c206f7220636c69636b205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20416674657220796f7520736f6c7665642074686520636170746368612c20796f757220746f6b656e732073686f756c64206265206f6e207468656972207761792e0a0a2a2a4e6f74652a2a0a416c6c207472616e73616374696f6e73202865787472696e736963732920636f73742031204a6f7920746f6b656e2c20736f20796f752073686f756c6420616c77617973206b6565702061206c6974746c6520696e20726573657276652c206173207468697320616c736f206170706c69657320746f207375636820616374696f6e7320617320766f74696e672c20756e7374616b696e672c20616e6420706f7374696e6720696e20746865206e6577205b666f72756d5d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d292e0a0a4e6f772c20636c69636b20604d656d626572736020696e2074686520736964656261722c20616e642073656c656374207468652060526567697374657260207461622e2043686f6f73652061206048616e646c652f6e69636b6e616d65602e204f7074696f6e616c6c792c2070726f766964652061206c696e6b20746f20616e20696d6167652066696c6520666f7220796f7572206176617461722c20616e642066696c6c20696e20746865206d61726b646f776e20656e61626c6564206041626f757460206669656c642e000079dd220000000000c856865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[112,"700000000000000018000000000000000200000015082320496e737472756374696f6e730a556e6c696b65206d6f7374206f6620746865206f746865722063757272656e7420616e642066757475726520726f6c6573206f6e20746865204a6f7973747265616d20506c6174666f726d2c206265636f6d696e6720612060436f756e63696c204d656d62657260206f7220766f74696e67206f6e2070726f706f73616c73207265717569726573206e6f20657874726120736f6674776172652e2045766572797468696e672063616e20626520646f6e6520696e207468652062726f777365722c20627920676f696e67205b686572655d28687474703a2f2f746573746e65742e6a6f7973747265616d2e6f7267292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e7473602073686f77696e672075702e0a00048bdd2200000000003457865d00000000510223204f766572766965770a0a54686973207061676520636f6e7461696e7320612064657461696c65642067756964652061626f757420686f772074686520676f7665726e616e63652073797374656d20776f726b73206f6e207468652063757272656e74204a6f7973747265616d20746573746e65742c20616e6420686f7720796f752063616e2070617274696369706174652e84dd2200000000000a57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[113,"71000000000000001800000000000000030000008903232047657420537461727465640a496620796f752077616e7420746f2067657420656c656374656420617320612060436f756e63696c204d656d62657260206f7220766f7465206f6e2074686520706c6174666f726d2c20796f75206e65656420746f206265206120604d656d626572602e20496e737472756374696f6e7320666f7220746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d2f746872656164732f3233292e0a00049bdd2200000000009457865d000000008d0323232047657420537461727465640a496620796f752077616e7420746f2067657420656c656374656420617320612060436f756e63696c204d656d62657260206f7220766f7465206f6e2074686520706c6174666f726d2c20796f75206e65656420746f206265206120604d656d626572602e20496e737472756374696f6e7320666f7220746869732063616e20626520666f756e64205b686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f6163726f706f6c69732f70696f6e6565722f232f666f72756d2f746872656164732f3233292e0a93dd2200000000006457865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[114,"7200000000000000180000000000000004000000d5032320456c656374696f6e204379636c650a54686520656c656374696f6e206379636c6520636f6e736973747320666f7572207374616765732e0a312e2060416e6e6f756e63656d656e7460202d206c6173747320343332303020626c6f636b7320287e373268290a322e2060566f74696e6760202020202020202d206c6173747320313434303020626c6f636b7320287e323468290a332e206052657665616c60202020202020202d206c6173747320313434303020626c6f636b7320287e323468290a342e20605465726d602020202020202020202d206c617374732032303136303020626c6f636b7320287e31346461797329000097dd2200000000007c57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[115,"7300000000000000180000000000000005000000810d232320416e6e6f756e63656d656e740a447572696e67207468652060416e6e6f756e63656d656e74602073746167652c20616e796f6e652074686174206973206120604d656d626572602c20616e6420686f6c6473206174206c6561737420756e7374616b65642031303030204a6f79202869652e20696620796f752075736520796f7572206076616c696461746f72602060737461736860206b65792c20796f75206e6565642061206062616c616e636560203e2060626f6e64656460202b2031303030204a6f792920746f6b656e732063616e20616e6e6f756e63652074686569722063616e64696461637920746f206265636f6d6520612060436f756e63696c204d656d626572602e0a0a53656c6563742060436f756e63696c6020696e2074686520736964656261722c20616e6420636c69636b2074686520604170706c6963616e747360207461622e205365742074686520616d6f756e74206f6620746f6b656e7320796f752077616e7420746f2c207374616b652c20616e6420636f6e6669726d2e0a496620796f752077616e7420746f20707574206d6f7265207374616b6520626568696e6420796f75722063616e646964616379206c617465722c20796f752063616e20746f7020757020617420616e7920706f696e7420647572696e67207468652073746167652e2041667465722073656e64696e6720746865207472616e73616374696f6e2c20796f752073686f756c642061707065617220756e64657220224170706c6963616e7473222e20546865206d6178206e756d626572206f66204170706c6963616e747320697320603235602e205768656e2074686520323574682063616e646964617465206170706c6965732c20746865206f6e65207769746820746865206c6f7765737420616d6f756e74207374616b65642077696c6c20626520707573686564206f666620746865206c6973742c20616e6420676574207468656972207374616b652072657475726e65642e20496e20746f74616c2c206031326020436f756e63696c204d656d62657273206d75737420626520656c65637465642e20496620746865726520617265206c657373207468616e203132206170706c6963616e74732c207468652060416e6e6f756e63656d656e74602073746167652077696c6c206265207265737461727465642e00009ddd220000000000a057865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[116,"74000000000000001800000000000000060000008909232320566f74696e670a417320736f6f6e206173207468652060416e6e6f756e63656d656e746020737461676520636c6f7365732c20796f752063616e20626567696e20766f74696e6720666f72206170706c6963616e74732e20417320776974682065766572797468696e6720656c73652c20796f75206e65656420746f207374616b6520696e206f7264657220746f20646f20736f2e204a6f7973747265616d2069732063757272656e746c7920776f726b696e6720756e6465722074686520224f6e6520546f6b656e202d204f6e6520566f746522207072696e636970616c2e20476f20746f207468652060566f74657360207461622c2073657420796f7572207374616b696e6720616d6f756e742c2073656c65637420796f75722063616e64696461746520616e642067656e65726174652061206052616e646f6d2073616c74602e20546869732077696c6c206265206e656564656420746f2072657665616c20616e642061637475616c6c79202262726f6164636173742220796f757220766f74652e20596f752063616e20766f7465206d6f7265207468616e206f6e63652c20666f7220796f75722073656c662c20616e6420666f72206d6f7265207468616e206f6e65206170706c6963616e742e20416c6c2074686520646174612077696c6c2062652073746f72656420696e20796f75722062726f777365722c20736f206173206c6f6e6720617320796f7520617265207573696e67207468652073616d65206d616368696e652f62726f777365722f636f6f6b6965732c20796f7520646f6e2774206e65656420746f207361766520616e797468696e672e00009fdd220000000000ac57865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[117,"7500000000000000180000000000000007000000f10323232052657665616c0a417320736f6f6e206173207468652060566f74696e676020737461676520636c6f7365732c207468652052657665616c696e6720737461676520626567696e732e2054686973206973207768656e20796f752063616e2072657665616c20796f757220766f74652e20476f20746f20746865206052657665616c206120766f746560207461622c20746f2061637475616c6c792062726f61646361737420796f757220766f74652e20566f746573207468617420617265206e6f742072657665616c656420696e2074696d652077696c6c206e6f742067657420636f756e74656420696e2074686520656c656374696f6e2e0000a1dd220000000000b857865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[118,"760000000000000018000000000000000800000065052323205465726d0a417320736f6f6e20617320746865206052657665616c6020737461676520636c6f7365732c207468652031322063616e64696461746573207769746820746865206869676865737420746f74616c206261636b696e672c2069652e207468656972206f776e207374616b65202b20766f746572207374616b652c2077696c6c206265636f6d652060436f756e63696c204d656d62657273602e205468656972207465726d2077696c6c2072756e20666f7220313420646179732c2061667465722077686963682061206e65772060436f756e63696c602077696c6c206265656e20656c65637465642e0a0a4e6f7465207468617420746865206e6578742060416e6e6f756e63656d656e74602073746167652077696c6c2073746172742065786163746c792032303136303020626c6f636b7320283134206461797329206166746572207468652070726576696f75732e0000a3dd220000000000c457865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[119,"77000000000000001a0000000000000002000000710723232320496e737472756374696f6e730a496620796f752066696e6420612062756720696e20616e79206f66206f757220736f6674776172652c207265706f7274696e67207468656d20617320604973737565736020696e2074686520636f7272656374205b7265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292077696c6c20616c6c6f7720757320746f206164647265737320746869732e20417320737461746564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236275696c646572732d616e642d6275672d7265706f7274657273292c206974206d6967687420616c736f207175616c69667920666f72206120626f756e74792e20496620796f752066696e6420616e206572726f722c20736f6d657468696e6720756e636c656172206f72206a757374206d697373696e6720696e207468652067756964657320696e2074686973207265706f2c20746865205b73616d6520636f6e63657074206170706c6965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e0a0004d4dd220000000000ea58865d0000000075072323232320496e737472756374696f6e730a496620796f752066696e6420612062756720696e20616e79206f66206f757220736f6674776172652c207265706f7274696e67207468656d20617320604973737565736020696e2074686520636f7272656374205b7265706f5d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f6a6f7973747265616d237265706f7369746f72792d696e646578292077696c6c20616c6c6f7720757320746f206164647265737320746869732e20417320737461746564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f68656c706465736b236275696c646572732d616e642d6275672d7265706f7274657273292c206974206d6967687420616c736f207175616c69667920666f72206120626f756e74792e20496620796f752066696e6420616e206572726f722c20736f6d657468696e6720756e636c656172206f72206a757374206d697373696e6720696e207468652067756964657320696e2074686973207265706f2c20746865205b73616d6520636f6e63657074206170706c6965735d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f626f756e746965732f6973737565732f33292e0ad0dd220000000000d258865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[120,"78000000000000001a0000000000000003000000d50a417320612067656e6572616c206e6f74652c20696e206164646974696f6e20746f20746865207365766572697479206f6620746865206275672c20746865206d6f72652064657461696c7320796f7520696e636c75646520696e2074686520604973737565602c207468652062696767657220746865207265776172642077696c6c2062652e204578616d706c65206f6620612064657461696c656420604973737565603a0a2a20466f72206e6f64657320616e6420736f6674776172652072616e206f6e20796f757220636f6d70757465720a20202a204c6f677320616e64206372617368207265706f727473202866726f6d206f6e65206f6620746865206e6f646573290a20202a20537465707320746f20726570726f647563650a20202a20596f757220656e7669726f6e6d656e74202865672e206f7065726174696e672073797374656d20616e642076657273696f6e290a20202a206574632e0a2a2049662072656c6174656420746f206f7572206050696f6e65657260205b746573746e65745d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672920617070733a0a20202a20576861742028696620616e7929206572726f72206d6573736167652064696420796f7520736565643f0a20202a2057686174207765726520796f7520747279696e6720746f20646f3f0a20202a205768617420697320796f757220616464726573733f0a20202a205768617420697320796f75722062616c616e63653f0a20202a2057686174206973207468652074797065206f6620606b657960202869652e20605363686e6f72726b656c60206f7220604564776172647360293f0a20202a2041726520796f75206120604d656d626572603f0a20202a2049732074686520606b657960207573656420666f7220616e6f7468657220726f6c653f0a20202a206574632e0000d2dd220000000000de58865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[121,"79000000000000001000000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e0000f4dd220000000000aa59865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[122,"7a00000000000000100000000000000003000000210a23232057696e646f77730a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c206974206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20603e60206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a3e20636420433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36340a23204f6e6c7920747970652f7061737465207468652022636420433a5c6a6f7973747265616d2d6e6f64652d77696e646f77732d783634222c206e6f742074686520707265636564696e67203e20210a6060600000f6dd220000000000b659865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[123,"7b00000000000000100000000000000004000000110c23232323205365747570204e6f64650a0a476574207468652062696e617279205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36342e7a6970292e20546f206d616b65207468652061637475616c20636f6d6d616e6473207468652073616d6520666f7220616c6c2075736572732c2049276d20676f696e6720746f20736176652069742060433a5c6020616e6420756e7a69702069742074686572652e2060433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f3634602e204665656c206672656520746f2073746f726520697420736f6d65776865726520656c73652c206a757374206d616b65207375726520796f75207573652074686520636f7272656374207061746820696e2074686520696e737472756374696f6e73207468617420666f6c6c6f77732e0a0a496620796f7520646f6e277420686176652069742c20646f776e6c6f6164204d6963726f736f66742056697375616c2053747564696f20432b2b2072756e74696d652064697374726962757461626c652032303135205b686572655d2868747470733a2f2f7777772e6d6963726f736f66742e636f6d2f656e2d69652f646f776e6c6f61642f64657461696c732e617370783f69643d3438313435292e20200a0a47657420746865206d697373696e672053534c206c6962726172696573205b686572655d2868747470733a2f2f696e64792e66756c67616e2e636f6d2f53534c2f6f70656e73736c2d312e302e32712d7836345f38362d77696e36342e7a6970292c20657874726163742c20616e64206d6f7665207468652066696c6573206073736c65617933322e646c6c6020616e6420606c696265617933322e646c6c6020746f2060433a5c6a6f7973747265616d2d6e6f64652d77696e646f77732d783634602e0a0000f9dd220000000000c859865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[124,"7c00000000000000100000000000000005000000b10a4f70656e2060436f6d6d616e642050726f6d70746020287479706520696e20636d642e2e2e20616674657220636c69636b696e672077696e646f777320627574746f6e293a0a0a6060600a3e20636420433a5c6a6f7973747265616d2d6e6f64652d312e302e302d77696e646f77732d7838365f36340a3e206a6f7973747265616d2d6e6f64652e6578650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c206275742064656661756c742069732032352e0a6060600000fbdd220000000000d459865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[125,"7d00000000000000100000000000000006000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a000405de220000000000105a865d00000000050e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e63656421fddd220000000000e059865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[126,"7e000000000000001000000000000000070000009d0323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e0a000018de220000000000825a865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[127,"7f00000000000000100000000000000008000000490b232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c617465722100002cde220000000000fa5a865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[128,"8000000000000000100000000000000009000000fd08352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0a0a446570656e64696e67206f6e20796f75722062726f777365722c20796f75206d69676874206861766520746f20636f6e6669726d20736176696e672074686520602235596f75724a6f7953657373696f6e416464726573732e6a736f6e22602e0a0a526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e00002ede220000000000065b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[129,"810000000000000010000000000000000a0000000d0f232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a496620796f7520686176656e277420616c72656164792c2067656e657261746520796f7572206b6579732e0a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b636020287477696365292e0a202020202a204f6e2057696e646f77732c2074686520666972737420606374726c2b63602077696c6c2070726f647563652061206c6f6e6720616e6420636f6e667573696e67206f75747075742e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a3e206a6f7973747265616d2d6e6f64652e657865202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a2320496620796f7520616c736f2077616e742069742073686f7720757020696e2074656c656d657472793a0a3e206a6f7973747265616d2d6e6f64652e657865202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a606060000036de220000000000365b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[130,"820000000000000010000000000000000b000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b65797329207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f75742061732061206056616c696461746f72602e000038de220000000000425b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[131,"830000000000000010000000000000000c0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e2000003cde2200000000005a5b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[132,"840000000000000010000000000000000d000000d10c2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e000040de220000000000725b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[133,"850000000000000010000000000000000e000000150b362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e000043de220000000000845b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[134,"860000000000000010000000000000000f000000c50d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e0a000047de2200000000009c5b865d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[135,"87000000000000001100000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e00006e1a230000000000eec5875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[136,"88000000000000001200000000000000020000008d0c2320496e737472756374696f6e730a0a496620796f752077616e7420746f2062652076697369626c6520696e2074686520706f6c6b61646f742f7375627374726174652074656c656d657472792c20676f205b686572655d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f292e204e6f7465207468617420666f722077696e646f777320616e642061726d76372028726173706265727279207069292c20796f75206e65656420746f2061646420612074656c656d6574727920666c616720617420737461727475702028736565206170706c696361626c65207365747570206e6f6465292e0a0a496620796f7572206056616c696461746f72602068617320657870657269656e63656420736f6d65206f6620746865206e6574776f726b696e672069737375657320646573637269626564205b686572655d2868747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f6973737565732f3638292c20636f6e73696465722072657374617274696e6720796f7572206e6f646520617420726567756c617220696e74657276616c732e20496620796f752077616e7420746f206175746f6d61746520746869732070726f636573732c20636f6e73696465722072756e6e696e6720796f7572206e6f64652061732061205b736572766963655d282372756e2d61732d612d73657276696365292e0a0a2a2a4e6f74652a2a0a416674657220696e74726f647563696e6720604d656d62657273686970736020746f2074686520706c6174666f726d2c20776520666f756e6420697420746f20626520636f6e667573696e6720746f2068617665206120636f6e63657074206f6620626f746820604163636f756e74736020616e6420604d656d6265727368697073602e2057652061726520696e207468652070726f63657373206f662072656e616d696e672074686520604163636f756e74736020746f2074686520604b657973602c2062757420746865726520617265207374696c6c20747261636573206f6620604163636f756e74602073686f77696e672075702e00006f1a230000000000f4c5875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[137,"890000000000000012000000000000000300000011092323204d61630a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c206974206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20602460206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a24206364207e2f0a23204f6e6c7920747970652f70617374652074686520226364207e2f2c206e6f742074686520707265636564696e67202420210a6060600000741a23000000000012c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[138,"8a00000000000000120000000000000004000000f10c23232323205365747570204e6f64650a0a4f70656e20746865207465726d696e616c20284170706c69636174696f6e732d3e5574696c6974696573293a0a0a6060600a24206364207e2f0a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a69700a2d2d2d2d0a2320496620796f7520646f6e27742068617665207767657420696e7374616c6c65642c20706173746520746865206c696e6b20696e20796f75722062726f7773657220736176652e0a2320417373756d696e67206974206765747320736176656420696e20796f7572207e2f446f776e6c6f61647320666f6c6465723a0a24206d76207e2f446f776e6c6f6164732f6a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a6970207e2f0a2d2d2d0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d6f73782d7838365f36342e7a69700a24202e2f6a6f7973747265616d2d6e6f64650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a3e202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600000761a2300000000001ec6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[139,"8b00000000000000120000000000000005000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a0000781a2300000000002ac6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[140,"8c00000000000000120000000000000006000000990323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e00007b1a2300000000003cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[141,"8d00000000000000120000000000000007000000990e232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c61746572210a352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0000831a2300000000006cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[142,"8e000000000000001200000000000000080000002104526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e00008b1a2300000000009cc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[143,"8f00000000000000120000000000000009000000290a232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600004bc1a230000000000c2c7875d00000000650b232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a496620796f7520686176656e277420616c72656164792c20676f205b686572655d282367656e65726174652d796f75722d6b6579732920746f2067656e657261746520796f7572206b6579732e0a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060608d1a230000000000a8c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[144,"900000000000000012000000000000000a000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b6579732d3129207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f7574206173206056616c696461746f72602e0000911a230000000000c0c6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[145,"910000000000000012000000000000000b0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e200000931a230000000000ccc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[146,"920000000000000012000000000000000c000000d10c2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e0000961a230000000000dec6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[147,"930000000000000012000000000000000d000000150b362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e0000981a230000000000eac6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[148,"940000000000000012000000000000000e000000c10d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e00009b1a230000000000fcc6875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[149,"950000000000000011000000000000000300000021092323204c696e75780a0a2a2045766572792074696d6520736f6d657468696e67206973207772697474656e20696e20603c627261636b6574733e602c2074686973206d65616e7320796f75206861766520746f207265706c6163652074686973207769746820796f757220696e7075742c20776974686f75742074686520603c3e602e0a2a205768656e20736f6d657468696e67206973207772697474656e20696e206022646f75626c655f71756f74657322602c206974206d65616e7320746865206e756d6265722f646174612077696c6c207661727920646570656e64696e67206f6e20796f7572206e6f6465206f72207468652063757272656e74207374617465206f662074686520626c6f636b636861696e2e0a2a20466f72207465726d696e616c20636f6d6d616e64732c20602460206d65616e7320796f75206d7573742074797065207768617420636f6d65732061667465722074686174206f6e2077696e646f777320616e64206d616320726573706563746976656c792e20602360204d65616e732069742773206a757374206120636f6d6d656e742f6578706c616e6174696f6e2c20616e64206d757374206e6f742062652074797065642e0a6060600a232054686973206973206a757374206120636f6d6d656e742c20646f6e27742074797065206f7220706173746520697420696e20796f7572207465726d696e616c210a24206364207e2f0a23204f6e6c7920747970652f70617374652074686520226364207e2f2c206e6f742074686520707265636564696e67202420210a6060600000a21a23000000000026c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[150,"9600000000000000110000000000000004000000950b23232323205365747570204e6f64650a0a4f70656e20746865207465726d696e616c3a0a0a6060600a24206364207e2f0a23203634206269742064656269616e206261736564206c696e75780a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d6c696e75782d7838365f36342e7461722e677a0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d6c696e75782d7838365f36342e7461722e677a0a232061726d76372028726173706265727279207069290a2420776765742068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d6e6f64652d6a6f7973747265616d2f72656c65617365732f646f776e6c6f61642f76312e302e302f6a6f7973747265616d2d6e6f64652d312e302e302d61726d76372e7461722e677a0a2420746172202d767866206a6f7973747265616d2d6e6f64652d312e302e302d61726d76372e7461722e677a0a2320466f7220626f74680a24202e2f6a6f7973747265616d2d6e6f64650a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a6060600000a71a23000000000044c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[151,"97000000000000001100000000000000050000006d046060600a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600000a91a23000000000050c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[152,"9800000000000000110000000000000006000000950e596f7572206e6f64652073686f756c64206e6f772073746172742073796e63696e672074686520626c6f636b636861696e2e20546865206f75747075742073686f756c64206c6f6f6b206c696b6520746869733a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202256657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d20546573746e65742076320a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a2046554c4c0a47656e6572617465642061206e6577206b6579706169723a2022736f6d655f6c6f6e675f6f75707574220a496e697469616c697a696e672047656e6573697320626c6f636b2f7374617465202822736f6d655f6c6f6e675f6f7570757422290a4c6f6164656420626c6f636b2d74696d65203d2036207365636f6e64732066726f6d2067656e65736973206f6e2066697273742d6c61756e636820737461727475702e0a4265737420626c6f636b3a2023300a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a2e2e2e0a2e2e2e0a53796e63696e672c207461726765743d2322626c6f636b5f686569676874222028226e22207065657273292c20626573743a20232273796e6365645f68656967687422202822686173685f6f665f73796e6365645f74697022292c2066696e616c697a6564202330202822686173685f6f665f66696e616c697a65645f74697022292c20e2ac872022646f776e6c6f61645f73706565642269422f7320e2ac86202275706c6f61645f7370656564226b69422f730a6060600a46726f6d20746865206c617374206c696e652c206e6f7469636520607461726765743d2322626c6f636b5f686569676874226020616e642060626573743a20232273796e6365645f68656967687422600a5768656e2074686520607461726765743d23626c6f636b5f686569676874606973207468652073616d652061732060626573743a20232273796e6365645f68656967687422602c20796f7572206e6f64652069732066756c6c792073796e636564210a0a2a2a4b65657020746865207465726d696e616c2077696e646f77206f70656e2e2a2a0000ac1a23000000000062c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[153,"99000000000000001100000000000000070000009d0323232323204b6579730a0a4e6f7720796f75206e65656420746f2067656e657261746520796f757220606b6579736020696e20746865206050696f6e65657220617070602e0a0a496620796f752077616e7420746f206861766520746865206170706c69636174696f6e2074616c6b20746f20796f7572206f776e206e6f64652c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64206368616e676520746865206072656d6f7465206e6f64652f656e64706f696e7420746f20636f6e6e65637420746f6020746f206c6f63616c206e6f64652e0a0000ae1a2300000000006ec7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[154,"9a00000000000000110000000000000008000000990e232323232047656e657261746520796f7572206b6579730a0a5768696c6520746865206e6f64652069732073796e63696e672c20796f752063616e207374617274207468652070726f63657373206f662073657474696e672075702074686520726573742e0a0a312e20476f20746f20746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c20616e642073656c65637420604d79206b6579736020696e2074686520736964656261722e20436c69636b207468652060437265617465206b65797360207461622e0a0a4e616d65732061726520656e746972656c79206f7074696f6e616c2c2062757420746865206e6578742073746570732077696c6c2062652065617369657220696620796f7520666f6c6c6f77207468652073797374656d207375676765737465642e0a0a322e204e616d6520796f7572206669727374206b657970616972206073657373696f6e602c206f72206174206c6561737420736f6d657468696e67207468617420636f6e7461696e732074686520776f72642e20496520606a6f686e2d646f652d73657373696f6e2d6b6579602e0a332e20496e207468652064726f70646f776e20696e20746865206669656c642062656c6f772c2063686f6f736520605261772073656564602e204e6f7465207468617420656163682074696d6520796f7520746f67676c65206265747765656e20604d6e656d6f6e69636020616e6420605261772073656564602c20796f752077696c6c2067656e65726174652061206e6577206b657920706169722e0a342e20436f7079207468652060223078596f75724c6f6e6753657373696f6e5261775365656422602c20616e64207361766520697420736f6d6577686572652073616665202d206c696b6520612070617373776f7264206d616e616765722e20596f75206e6565642074686973206c61746572210a352e2043686f6f736520612070617373776f7264202874686973206b65792077696c6c20686f6c6420616c6c20796f757220746f6b656e7321290a362e20466f7220746865206073657373696f6e60206b65792c20796f7520616c736f206e65656420746f2073656c65637420604564776172647320286564323535313929602066726f6d207468652060416476616e636564206372656174696f6e206f7074696f6e73602e0a372e20436c69636b20605361766560202d3e206043726561746520616e64206261636b7570206b657973602e0000b11a23000000000080c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[155,"9b00000000000000110000000000000009000000ad05446570656e64696e67206f6e20796f75722062726f777365722c20796f75206d69676874206861766520746f20636f6e6669726d20736176696e672074686520602235596f75724a6f7953657373696f6e416464726573732e6a736f6e22602e0a0a526570656174207468652073746570732074776f206d6f72652074696d65732c20627574207769746820646966666572656e74206e616d65732c206c656176696e6720796f7520776974682074687265652073657473206f66206b6579732061732073686f776e2062656c6f773a0a2a20607374617368600a2a2060636f6e74726f6c6c6572600a2a206073657373696f6e600a0a4e6f7465207468617420796f75206f6e6c79202a7374726963746c79206e6565642a2074686520526177207365656420666f7220746865206073657373696f6e60206b6579706169722c20627574206974277320736166657220746f20646f20697420666f7220616c6c206f66207468656d2e0a0000b41a23000000000092c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[156,"9c0000000000000011000000000000000a000000f90d232323232052652d737461727420796f7572206e6f646520617320612076616c696461746f720a0a312e204f70656e20746865207465726d696e616c20746861742069732072756e6e696e6720796f7572206e6f64652c20616e64206b696c6c207468652073657373696f6e207769746820606374726c2b63602e0a322e205265737461727420697420616761696e20776974682074686520666f6c6c6f77696e6720636f6d6d616e643a0a6060600a24202e2f6a6f7973747265616d2d6e6f6465202d2d76616c696461746f72202d2d6b6579203c30784d794c6f6e67526177536565643e0a2320496620796f752077616e7420796f7572206e6f646520746f20686176652061206e6f6e2d72616e646f6d206964656e7469666965723a0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e0a232061726d7637202872617370626572727920706929206f6e6c793a0a2320496620796f752077616e7420796f7572206e6f646520746f2073686f7720757020696e207468652074656c656d657472793a2068747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f0a24202e2f6a6f7973747265616d2d6e6f6465202d2d6e616d65203c6e6f64656e616d653e202d2d76616c696461746f72202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e202d2d74656c656d657472792d75726c2077733a2f2f74656c656d657472792e706f6c6b61646f742e696f3a313032342f0a0a23204e6f74653a2064756520746f20736f6d65206973737565732077697468206f7572206e6f6465732067657474696e67206d697865642075702077697468206e6f6465732066726f6d2074686520636861696e58206e6574776f726b20287365652074656c656d65747279206c696e6b292c0a23206974206d696768742068656c7020796f757220757074696d6520627920616c736f2070617373696e673a0a2d2d696e2d706565727320313030202d2d6f75742d7065657273203130300a2320616674657220746865206f7468657220666c6167732e20596f752063616e2063686f6f736520616e79206e756d62657220796f75206c696b652c20627574207468652064656661756c742069732032352e0a6060600000b71a230000000000a4c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[157,"9d0000000000000011000000000000000b000000690c546869732074696d652c20746865206f75747075742073686f756c642073686f77206120736c696768746c7920646966666572656e742073746172747570206f75747075743a0a6060600a4a6f7973747265616d204e6f64650a202076657273696f6e202276657273696f6e222d22796f75725f4f53220a20206279204a6f7973747265616d2c20323031390a436861696e2073706563696669636174696f6e3a204a6f7973747265616d2053746167696e6720546573746e65740a4e6f6465206e616d653a20226e6f64656e616d65220a526f6c65733a20415554484f524954590a4265737420626c6f636b3a20232273796e6365645f686569676874220a4c6f63616c206e6f646520616464726573732069733a202f6970342f302e302e302e302f7463702f33303333332f7032702f22796f75725f6e6f64655f6b6579220a4c697374656e696e6720666f72206e657720636f6e6e656374696f6e73206f6e203132372e302e302e313a393934342e0a5573696e6720617574686f72697479206b657920202235596f75724a6f7953657373696f6e416464726573732220202320536565204e6f74650a2e2e2e0a6060600a2a2a4e6f74652a2a0a496620796f7572206073657373696f6e60207761732067656e65726174656420617320605363686e6f72726b656c20287372323535313929602c2069742077696c6c2073686f77206120636f6d706c6574656c7920646966666572656e7420616464726573732e20496620746869732068617070656e732c20676f206261636b20616e642067656e65726174652061206e6577205b73657373696f6e206b65795d282367656e65726174652d796f75722d6b6579732d3229207769746820604564776172647320286564323535313929602e20496620796f7520646f6e27742c20796f7572206e6f64652077696c6c2074727920746f207369676e20626c6f636b732077697468207468652077726f6e67206b65792e204173206120636f6e73657175656e63652c20796f752077696c6c2067657420736c617368656420616e64206b69636b6564206f7574206173206056616c696461746f72602e0000c21a230000000000e6c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[158,"9e0000000000000011000000000000000c0000002d01232323232046696e616c20537465700a0a4e6f7720697427732074696d6520746f20636f6e66696775726520796f7572206b65797320746f2073746172742076616c69646174696e672e200000c41a230000000000f2c7875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[159,"9f0000000000000011000000000000000d000000cd0b2323232320436f6e66696775726520796f75722076616c696461746f72206b6579730a0a496e206f7264657220746f2062652061206056616c696461746f72602c20796f75206e65656420746f207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e0a0a2a2a494d504f5254414e543a2a2a205265616420737465702031332e206361726566756c6c792e20596f7572206e6f6465206e6565647320746f2062652066756c6c792073796e6365642c206265666f72652070726f63656564696e6720746f20737465702031342e0a0a312e205374696c6c20696e2074686520604d79204b657973602073696465626172206f6620746865205b50696f6e656572204170705d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f70696f6e656572292c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0000c71a23000000000004c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[160,"a00000000000000011000000000000000e000000190c352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e0a362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e2028497420636f756c64206265207769736520746f206c65617665206120636f75706c65206f66204a6f79206c656674292e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e2054686520627574746f6e2060626f6e64602073686f756c6420626520686967686c696768746564206e6f772e20436c69636b2069742e0a31302e205479706520696e20796f75722070617373776f726420696e207468652060756e6c6f636b20776974682070617373776f726460206669656c6420616e6420636c69636b20607369676e20616e64207375626d6974602e0a31312e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020627574746f6e2e20436c69636b2069742e0a31322e20496e2074686520706f7075702c2073656c65637420796f7572206073657373696f6e6020617320796f7572206073657373696f6e206b65796020696e207468652064726f70646f776e2e20436f6e6669726d2c207369676e20616e64207375626d69742e0000c91a23000000000010c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[161,"a10000000000000011000000000000000f000000c10d31332e20596f75206e65656420746f20636865636b20796f7572206e6f64652c20776869636820796f752073746172746564206561726c6965722e20496e20746865206f757470757420607461726765743d2322626c6f636b5f68656967687422602073686f756c6420657175616c2060626573743a20232273796e6365645f68656967687422602e20446f206e6f742070726f63656564206265666f72652074686f73652074776f2076616c75657320617265206964656e746963616c2c20617320796f7572206e6f64652077696c6c2062652064726f70706564206f75742066726f6d207468652076616c696461746f727320696620796f7572206e6f6465206973206e6f742066756c6c792073796e6365642e20496620796f752064696420737461727420796f7572206e6f6465207769746820602d2d6e616d65203c6e6f64656e616d653e6020706172616d657465722c207468656e20796f7520616c736f2063616e20636865636b20696620796f7572206e6f64652069732066756c6c792073796e6365642066726f6d205b54656c656d657472795d2868747470733a2f2f74656c656d657472792e706f6c6b61646f742e696f2f236c6973742f4a6f7973747265616d253230546573746e65742532307632292e0a31342e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f772061206056616c69646174656020627574746f6e2e20436c69636b2069742e0a31352e20596f752063616e206c65617665207468652060756e7374616b65207468726573686f6c646020616e6420607061796d656e7420707265666572656e636573602061732064656661756c74732c206f7220676f20746f205b616476616e6365645d282376616c69646174696e672d707265666572656e636573292e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a5265667265736820796f75722062726f777365722c20616e642073656c65637420746865206056616c696461746f72204f7665727669657760207461622e20496620796f7572206163636f756e742073686f777320756e64657220606e657874207570602c207761697420666f7220746865206e6578742060657261602c20616e6420796f752077696c6c206265206d6f76656420746f20746865206076616c696461746f727360206c6973742e0000cb1a2300000000001cc8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[162,"a200000000000000130000000000000002000000a90a2323232323204578616d706c6520776974682075736572206a6f7973747265616d0a0a546865206578616d706c652062656c6f7720617373756d65732074686520666f6c6c6f77696e673a0a2d20596f752077616e7420746f207265737461727420796f7572206e6f64652065766572792032346820286038363430306073290a2d20596f7520686176652073657475702061207573657220606a6f7973747265616d6020746f2072756e20746865206e6f64650a2d20546865207061746820746f2074686520606a6f7973747265616d2d6e6f6465602062696e61727920697320602f686f6d652f6a6f7973747265616d2f6a6f7973747265616d2d6e6f6465600a0a6060600a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d204e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d6a6f7973747265616d0a576f726b696e674469726563746f72793d2f686f6d652f6a6f7973747265616d2f0a4578656353746172743d2f686f6d652f6a6f7973747265616d2f6a6f7973747265616d2d6e6f6465205c0a20202020202020202d2d6f75742d706565727320313030205c0a20202020202020202d2d696e2d706565727320313030205c0a20202020202020202d2d76616c696461746f72205c0a20202020202020202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e205c0a20202020202020202d2d6e616d65203c6e6f64656e616d653e0a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a526573746172745365633d330a4c696d69744e4f46494c453d383139320a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000ed1a230000000000e8c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[163,"a3000000000000001300000000000000030000002102496620796f75206a7573742077616e7420746f206861766520746865206e6f6465207265737461727420696620697420637261736865732c207265706c6163653a0a0a6060600a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a2320776974680a526573746172743d6f6e2d6661696c7572650a6060600a0000ef1a230000000000f4c8875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[164,"a400000000000000130000000000000004000000d9092323232323204578616d706c6520617320726f6f740a0a546865206578616d706c652062656c6f7720617373756d65732074686520666f6c6c6f77696e673a0a2d20596f752077616e7420746f207265737461727420796f7572206e6f64652065766572792032346820286038363430306073290a2d20596f752068617665207365747570206120757365722060726f6f746020746f2072756e20746865206e6f64650a2d20546865207061746820746f2074686520606a6f7973747265616d2d6e6f6465602062696e61727920697320602f726f6f742f6a6f7973747265616d2d6e6f6465600a0a6060600a5b556e69745d0a4465736372697074696f6e3d4a6f7973747265616d204e6f64650a41667465723d6e6574776f726b2e7461726765740a0a5b536572766963655d0a547970653d73696d706c650a557365723d726f6f740a576f726b696e674469726563746f72793d2f726f6f742f0a4578656353746172743d2f726f6f742f6a6f7973747265616d2d6e6f6465205c0a20202020202020202d2d6f75742d706565727320313030205c0a20202020202020202d2d696e2d706565727320313030205c0a20202020202020202d2d76616c696461746f72205c0a20202020202020202d2d6b6579203c3078596f75724c6f6e6753657373696f6e526177536565643e205c0a20202020202020202d2d6e616d65203c6e6f64656e616d653e0a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a526573746172745365633d330a4c696d69744e4f46494c453d383139320a0a5b496e7374616c6c5d0a57616e74656442793d6d756c74692d757365722e7461726765740a6060600000f11a23000000000000c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[165,"a5000000000000001300000000000000050000001d02496620796f75206a7573742077616e7420746f206861766520746865206e6f6465207265737461727420696620697420637261736865732c207265706c6163653a0a0a6060600a526573746172743d616c776179730a52756e74696d654d61785365633d38363430300a2320776974680a526573746172743d6f6e2d6661696c7572650a6060600000f21a23000000000006c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[166,"a6000000000000001300000000000000060000000d0d23232323205374617274696e672074686520736572766963650a0a596f752063616e206164642f72656d6f766520616e792060666c61677360206173206c6f6e6720617320796f752072656d656d62657220746f20696e636c75646520605c6020666f72206576657279206c696e652062757420746865206c6173742e20416c736f206e6f746520746861742073797374656d6420697320766572792073656e73697469766520746f2073796e7461782c20736f206d616b65207375726520746865726520617265206e6f20657874726120737061636573206265666f7265206f722061667465722074686520605c602e0a0a416674657220796f7520617265206861707079207769746820796f757220636f6e66696775726174696f6e3a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a232074686973206973206f6e6c79207374726963746c79206e656365737361727920616674657220796f75206368616e67656420746865202e736572766963652066696c652061667465722072756e6e696e672c20627574206368616e6365732061726520796f752077696c6c206e65656420746f20757365206974206f6e6365206f722074776963652e0a2320696620796f7572206e6f6465206973207374696c6c2072756e6e696e672c206e6f77206973207468652074696d6520746f206b696c6c2069742e0a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a232069662065766572797468696e6720697320636f72726563746c7920636f6e666967757265642c207468697320636f6d6d616e642077696c6c206e6f742072657475726e20616e797468696e672e0a2320546f2076657269667920697427732072756e6e696e673a0a242073797374656d63746c20737461747573206a6f7973747265616d2d6e6f64650a2320746869732077696c6c206f6e6c792073686f7720746865206c61737420666577206c696e65732e20546f2073656520746865206c61746573742031303020656e74726965732028616e6420666f6c6c6f77206173206e657720617265206164646564290a24206a6f75726e616c63746c202d6e20313030202d66202d75206a6f7973747265616d2d6e6f64650000f71a23000000000024c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[167,"a700000000000000130000000000000007000000b5056060600a2320546f206d616b65207468652073657276696365207374617274206175746f6d61746963616c6c7920617420626f6f743a0a242073797374656d63746c20656e61626c65206a6f7973747265616d2d6e6f64650a6060600a596f752063616e207265737461727420746865207365727669636520776974683a0a2d206073797374656d63746c2072657374617274206a6f7973747265616d2d6e6f6465600a0a496620796f752077616e7420746f206368616e676520736f6d657468696e6720286f72206a7573742073746f70292c2072756e3a0a2d206073797374656d63746c2073746f70206a6f7973747265616d2d6e6f6465600a0a4265666f726520796f75206d616b6520746865206368616e6765732e204166746572206368616e67696e673a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a6060600004011b23000000000060c9875d00000000a5052320546f206d616b65207468652073657276696365207374617274206175746f6d61746963616c6c7920617420626f6f743a0a242073797374656d63746c20656e61626c65206a6f7973747265616d2d6e6f64650a6060600a596f752063616e207265737461727420746865207365727669636520776974683a0a2d206073797374656d63746c2072657374617274206a6f7973747265616d2d6e6f6465600a0a496620796f752077616e7420746f206368616e676520736f6d657468696e6720286f72206a7573742073746f70292c2072756e3a0a2d206073797374656d63746c2073746f70206a6f7973747265616d2d6e6f6465600a0a4265666f726520796f75206d616b6520746865206368616e6765732e204166746572206368616e67696e673a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a606060f91a23000000000030c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[168,"a800000000000000130000000000000008000000b50623232323204572726f72730a0a496620796f75206d616b652061206d697374616b6520736f6d6577686572652c206073797374656d63746c207374617274206a6f7973747265616d2d6e6f6465602077696c6c2070726f6d70743a0a6060600a4661696c656420746f207374617274206a6f7973747265616d2d6e6f64652e736572766963653a20556e6974206a6f7973747265616d2d6e6f64652e73657276696365206973206e6f74206c6f616465642070726f7065726c793a20496e76616c696420617267756d656e742e0a5365652073797374656d206c6f677320616e64202773797374656d63746c20737461747573206a6f7973747265616d2d6e6f64652e736572766963652720666f722064657461696c732e0a6060600a466f6c6c6f772074686520696e737472756374696f6e732c20616e642073656520696620616e797468696e67206c6f6f6b732077726f6e672e20436f72726563742069742c207468656e3a0a0a6060600a242073797374656d63746c206461656d6f6e2d72656c6f61640a242073797374656d63746c207374617274206a6f7973747265616d2d6e6f64650a6060600a0000051b23000000000078c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[169,"a900000000000000130000000000000009000000b10c23232053657474696e67730a0a496620796f7520646f6e27742077616e7420746f20757365207468652064656661756c742073657474696e67732c20686572652061726520736f6d65206f6620746865206f7074696f6e7320796f752063616e20636f6e6669677572652e0a0a2323232320426f6e64696e6720707265666572656e6365730a54686520626f6e64696e6720707265666572656e6365732064656369646573206f6e20686f7720776865726520796f757220284a6f7929207374616b696e672072657761726473206172652064697374726962757465642e2054686572652061726520746872656520616c7465726e6174697665733a0a312e20605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b652960202864656661756c74292e0a0a54686973206175746f6d61746963616c6c792073656e647320616c6c207265776172647320746865206073746173686020616464726573732c207768657265206974206765747320626f6e64656420617320616e206164646974696f6e616c207374616b652e20546869732077696c6c20696e63726561736520796f75722070726f626162696c697479206f662073746179696e6720696e20746865206076616c696461746f7260207365742e0a0a322e20605374617368206163636f756e742028646f206e6f20696e6372656173652074686520616d6f756e74206174207374616b6529600a0a4173206c696b652060312e602074686973206175746f6d61746963616c6c792073656e647320616c6c207265776172647320746865206073746173686020616464726573732c2062757420646f6573202a6e6f742a2067657420626f6e646564206173207374616b652c206d65616e696e6720796f752069742077696c6c206e6f742068656c70202267756172642220796f75722073706f7420696e20746865206076616c696461746f7260207365742e0a0a332e2060436f6e74726f6c6c6572206163636f756e74600a0a546869732073656e647320616c6c207265776172647320746f207468652060636f6e74726f6c6c6572602c20617420796f757220646973706f73616c2e0000091b23000000000090c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[170,"aa0000000000000013000000000000000a000000410a232323232056616c69646174696e6720707265666572656e6365730a312e205468652060756e7374616b65207468726573686f6c646020697320746865206e756d626572206f662074696d657320796f752063616e2067657420736c61736865642028666f72206265696e67206f66666c696e6529206265666f726520796f75277265206175746f6d61746963616c6c79205b756e7374616b65645d2823756e7374616b696e67292e2041206c6f77206e756d6265722063616e206d65616e20796f752073746f70206265696e67206076616c696461746f7260206a757374206265636175736520796f757220696e7465726e657420697320646f776e2061206d696e7574652c2062757420696620796f752073657420746865206e756d62657220746f6f20686967682c20796f752077696c6c2067657420736c61736865642068656176696c7920696620796f7572206e6f646520627265616b7320646f776e206f7220796f75206c6f73652074686520696e7465726e657420666f7220616e20686f75722e0a0a322e2054686520607061796d656e7420707265666572656e6365736020697320686f772074686520286a6f7929207374616b696e672072657761726473206172652073706c6974206265747765656e20796f757273656c6620616e6420616e7920706f74656e7469616c205b6e6f6d696e61746f72735d28236e6f6d696e6174696e67292e205468652064656661756c7420283029206d65616e73207468617420746865207265776172642069732073706c6974206261736564206f6e2074686520616d6f756e74206f6620626f6e646564207374616b6520746865206076616c696461746f726020616e6420606e6f6d696e61746f7273602068617665207075742075702e2000000e1b230000000000aec9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[171,"ab0000000000000013000000000000000b00000075064578616d706c653a0a0a4c657420607660205b4a6f795d2062652074686520626f6e64656420746f6b656e7320666f72207468652076616c696461746f7220607374617368600a4c657420607060205b4a6f795d2062652074686520607061796d656e7420707265666572656e6365602064656369646564206279207468652076616c696461746f720a4c657420606e3160205b4a6f795d20626520746865c2a0626f6e64656420746f6b656e7320666f7220746865206e6f6d696e61746f723120607374617368600a4c657420606e3260205b4a6f795d20626520746865c2a0626f6e64656420746f6b656e7320666f7220746865206e6f6d696e61746f723220607374617368600a4c657420607260205b4a6f795d206265207468652072657761726420746861742060657261600a0a6060600a23207061796f757420666f72207468652076616c696461746f720a70202b2028762f28762b6e312b6e32292a28722d7029290a23207061796f757420666f7220746865206e6f6d696e61746f72310a286e312f28762b6e312b6e32292a28722d7029290a6060600000101b230000000000bac9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[172,"ac0000000000000013000000000000000c0000006d092323204e6f6d696e6174696e670a0a496620796f752077616e7420746f2067657420736f6d652072657475726e206f6e20796f757220746f6b656e7320776974686f75742072756e6e696e672061206e6f646520796f757273656c662c20796f752063616e20606e6f6d696e6174656020616e6f74686572206076616c696461746f726020616e64206765742061207368617265206f6620746865697220726577617264732e0a0a54686973206d6967687420616c736f20636f6d6520696e2068616e64792069662074686572652061726520746f6f206d616e79206076616c696461746f72736020616e6420796f7520646f6e2774206861766520656e6f75676820746f6b656e732067657420612073706f742c206f7220696620796f75206861766520746f207368757420646f776e20796f7572206f776e206e6f646520666f722061207768696c652e0a0a232323232047656e6572617465206b6579730a496620796f7520686176656e277420616c7265616479206265656e207468726f756768207468652070726f63657373206f662073657474696e6720757020796f757220607374617368602c2060636f6e74726f6c6c65726020616e64206073657373696f6e60206b65792c20796f75206669727374206e65656420746f2067656e657261746520796f7572206b65797320287365652076616c696461746f72207365747570292e204e6f7465207468617420796f7520646f6e2774206e6565642061206073657373696f6e60206b657920746f206e6f6d696e6174652c20736f20796f752063616e20736b69702074686f73652073746570732e0000141b230000000000d2c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[173,"ad0000000000000013000000000000000d0000006d0b2323232320436f6e66696775726520796f7572206e6f6d696e6174696e67206b6579730a496e206f7264657220746f206265206120606e6f6d696e61746f72602c20796f75206e656564207374616b652e204e6f7465207468617420796f75206d6179206861766520746f207265667265736820796f75722062726f7773657220696620796f75277265206e6f7420736565696e6720746865206f7074696f6e7320726967687420617761792e20496620796f7520686176652070726576696f75736c79206265656e2061206056616c696461746f72602c206f7220747269656420746f20646f20736f2c20736b697020616865616420746f20737465702060392e602e0a0a312e20496e2074686520604d79204b6579736020736964656261722c2063686f6f736520796f75722060737461736860206b65792e0a322e20436c69636b2074686520604672656520546f6b656e7360206c696e6b2062656c6f7720796f757220616464726573732c205b6f7220636c69636b20686572655d2868747470733a2f2f746573746e65742e6a6f7973747265616d2e6f72672f666175636574292e20536f6c76652074686520636170746368612c20616e6420796f752073686f756c64207265636569766520746f6b656e732e0a332e2053656e6420736f6d6520746f6b656e7320746f20796f75722060636f6e74726f6c6c6572602e204974206e6565647320746f20706572666f726d206174206c656173742074776f207472616e73616374696f6e732c206275742062657474657220746f2073656e64207e31302e0a342e204e6f772c20636c69636b206056616c696461746f72736020696e2074686520736964656261722c20616e64207468656e20746865206056616c696461746f72205374616b696e6760207461622e0a352e204c6f636174652074686520616464726573732f6b6579206e616d656420607374617368602c20616e6420636c69636b2060426f6e642046756e6473602e0000191b230000000000f0c9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[174,"ae0000000000000013000000000000000e000000e909362e20496e2074686520706f7075702077696e646f772c2063686f6f736520796f75722060636f6e74726f6c6c657260206173207468652060636f6e74726f6c6c6572206163636f756e74602e0a372e20456e7465722074686520616d6f756e7420796f752077616e7420746f207374616b6520696e20746865206076616c756520626f6e64656460206669656c642e0a382e20496e2074686520607061796d656e742064657374696e6174696f6e602064726f70646f776e2c20746865726520617265207468726565206f7074696f6e732e2053656c656374207468652064656661756c7420605374617368206163636f756e742028696e6372656173652074686520616d6f756e74206174207374616b6529602c206f7220676f20746f205b616476616e6365645d2823626f6e64696e672d707265666572656e636573292e0a392e20596f75722060636f6e74726f6c6c657260206163636f756e742073686f756c64206e6f772073686f77206120605365742053657373696f6e204b65796020616e64206120604e6f6d696e6174696e676020627574746f6e2e20436c69636b20746865206c61747465722e0a31302e20496e2074686520706f7075702c2073656c6563742f70617374652074686520607374617368602061646472657373206f6620746865206056616c696461746f726020796f75207769736820746f206e6f6d696e6174652e20436f6e6669726d2c207369676e20616e64207375626d69742e0a0a496e20746865206e6578742060657261602c20796f752077696c6c2073686f77206173206120606e6f6d696e61746f7260206f6620746865206056616c696461746f726020796f75206e6f6d696e617465642e00001b1b230000000000fcc9875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[175,"af00000000000000140000000000000002000000e10e232323232053657373696f6e206b65790a0a44696420796f75206163636964656e74616c6c792063686f6f736520605363686e6f72726b656c20287372323535313929602c20696e7374656164206f66206045647761726473202865643235353139296020666f7220796f7572206073657373696f6e60206b65792c20616e64206469646e2774206e6f74696365206265666f726520796f7520636f6e6669677572656420796f7572206056616c696461746f72206b657973603f20546869732063616e206265207265736f6c7665642e0a0a312e20476f20746f206056616c696461746f727360202d3e206056616c696461746f72205374616b696e676020616e642060556e7374616b65602e0a0a322e2047656e65726174652061206e6577206073657373696f6e60206b6579207769746820604564776172647320286564323535313929602c207265737461727420796f7572206e6f64652c20616e64207265706c616365207468652060726177207365656460207769746820746865206e6577206f6e652e0a0a332e205468656e2c2063686f6f7365206053657474696e67736020696e2074686520736964656261722c20616e64207377697463682066726f6d20604261736963206665617475726573206f6e6c796020746f206046756c6c79206665617475726564602e0a0a342e20476f20746f206045787472696e73696373602c20616e642073656c65637420796f75722060636f6e74726f6c6c657260206b65792066726f6d207468652064726f70646f776e2061742074686520746f702e20496e20746865207365636f6e642064726f70646f776e2c2073656c656374206073657373696f6e602c20616e6420696e207468652074686972642c20607365744b6579602e2046696e616c6c792c2063686f6f736520796f7572206e6577206073657373696f6e60206b657920696e2074686520666f7572746820616e642066696e616c2064726f70646f776e2c20616e64207375626d69742e0a0a352e204f6e636520697420636f6e6669726d732c20676f206261636b20746f206056616c696461746f727360202d3e206056616c696461746f72205374616b696e676020616e6420605374616b65602e0a0a496e2074686520604e657874207570602c20796f7572206e6577206073657373696f6e60206b65792073686f756c642073686f772c20616e64206d61746368207468652060617574686f72697479206b65796020696e20796f7572206e6f64652e20286d696e7573207468652066696e616c20332063686172616374657273292e0a0000321b23000000000086ca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[176,"b000000000000000140000000000000003000000850b2323232320556e7374616b696e670a0a496620796f752073746f702076616c69646174696e67206279206b696c6c696e6720796f7572206e6f6465206265666f726520756e7374616b696e672c20796f752077696c6c2067657420736c617368656420616e64206b69636b65642066726f6d20746865206076616c696461746f7260207365742e20496620796f75206b6e6f7720696e20616476616e636520287e3168722920796f752063616e20646f2074686520666f6c6c6f77696e6720737465707320696e73746561643a0a0a46697273742c206d616b65207375726520796f75206861766520736574206046756c6c792046656174757265646020696e7465726661636520696e20746865206053657474696e67736020736964656261722e0a0a312e20496e206056616c696461746f72205374616b696e67602c20636c69636b206053746f702056616c69646174696e6760207769746820796f757220636f6e74726f6c6c65722e20546869732063616e20616c736f20626520646f6e6520766961206045787472696e736963603a20576974682060636f6e74726f6c6c657260202d3e20607374616b696e6760202d3e20606368696c6c2829602e0a0a496620796f7520617265206a7573742070617573696e6720746865206076616c696461746f726020616e6420696e74656e6420746f207374617274206974207570206c617465722c20796f752063616e2073746f7020686572652e205768656e20796f752061726520726561647920746f20737461727420616761696e2c206669726520757020796f7572206e6f64652c20676f20746f206056616c696461746f72205374616b696e67602c20616e6420636c69636b206056616c6964617465602e0a0a496620796f752077616e7420746f2073746f70206265696e672061206076616c696461746f726020616e64206d6f766520796f757220746f6b656e7320746f206f746865722f626574746572207573652c20636f6e74696e75652e0004401b230000000000daca875d00000000810b2323232320556e7374616b696e670a0a496620796f752073746f702076616c69646174696e67206279206b696c6c696e6720796f7572206e6f6465206265666f726520756e7374616b696e672c20796f752077696c6c2067657420736c617368656420616e64206b69636b65642066726f6d20746865206076616c696461746f7260207365742e20496620796f75206b6e6f7720696e20616476616e636520287e3168722920796f752063616e20646f2074686520666f6c6c6f77696e6720737465707320696e73746561643a0a0a46697273742c206d616b65207375726520796f75206861766520736574206046756c6c792046656174757265646020696e7465726661636520696e20746865206053657474696e67736020736964656261722e0a312e20496e206056616c696461746f72205374616b696e67602c20636c69636b206053746f702056616c69646174696e6760207769746820796f757220636f6e74726f6c6c65722e20546869732063616e20616c736f20626520646f6e6520766961206045787472696e736963603a20576974682060636f6e74726f6c6c657260202d3e20607374616b696e6760202d3e20606368696c6c2829602e0a0a496620796f7520617265206a7573742070617573696e6720746865206076616c696461746f726020616e6420696e74656e6420746f207374617274206974207570206c617465722c20796f752063616e2073746f7020686572652e205768656e20796f752061726520726561647920746f20737461727420616761696e2c206669726520757020796f7572206e6f64652c20676f20746f206056616c696461746f72205374616b696e67602c20616e6420636c69636b206056616c6964617465602e0a0a496620796f752077616e7420746f2073746f70206265696e672061206076616c696461746f726020616e64206d6f766520796f757220746f6b656e7320746f206f746865722f626574746572207573652c20636f6e74696e75652e361b2300000000009eca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[177,"b10000000000000014000000000000000400000011040a322e204e65787420796f75206d75737420756e626f6e642e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e2060756e626f6e642876616c7565296020616e642063686f6f736520686f77206d75636820796f752077616e7420746f20756e626f6e642c20603c756e626f6e64696e673e602e205375626d6974205472616e73616374696f6e2e0a0a4174207468697320706f696e742c20796f752063616e206a7573742077616974203268727320746f20626520737572652c20616e642070726f6365656420746f20737465702060362e60200a0a4f723a0a0004471b23000000000004cb875d0000000029042d2d2d0a0a322e204e65787420796f75206d75737420756e626f6e642e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e2060756e626f6e642876616c7565296020616e642063686f6f736520686f77206d75636820796f752077616e7420746f20756e626f6e642c20603c756e626f6e64696e673e602e205375626d6974205472616e73616374696f6e2e0a0a4174207468697320706f696e742c20796f752063616e206a7573742077616974203268727320746f20626520737572652c20616e642070726f6365656420746f20737465702060362e60204f723a0a0a2d2d2d3b1b230000000000bcca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[178,"b200000000000000140000000000000005000000550e332e20476f20746f2060436861696e20537461746560202d3e20607374616b696e6760202d3e20606c6564676572284163636f756e744964293a204f7074696f6e3c5374616b696e674c65646765723e602077697468207468652060636f6e74726f6c6c6572602e204f75747075743a0a6060600a2320496620796f752068617665207375636365737366756c6c7920696e6974696174656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c3c6163745f626f6e6465643e3a5b7b2276616c7565223a3c756e626f6e64696e673e2c22657261223a3c455f756e626f6e6465643e7d5d7d0a2320496620796f752068617665206e6f74207375636365737366756c6c7920696e6974696174656420756e7374616b696e672c206f722069742068617320616c726561647920636f6d706c657465643a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a2a20603c746f745f626f6e6465643e602049732074686520746f74616c20616d6f756e7420796f752068617665207374616b65642f626f6e6465640a2a20603c6163745f626f6e6465643e602049732074686520616d6f756e74206f6620746f6b656e732074686174206973206e6f74206265696e6720756e6c6f636b65640a2a20603c756e626f6e64696e673e602049732074686520616d6f756e74206f6620746f6b656e73207468617420697320696e207468652070726f63657373206f66206265696e672066726565640a20202a20603c756e626f6e64696e673e60202b20603c6163745f626f6e6465643e60203d20603c746f745f626f6e6465643e600a2a20603c455f756e626f6e6465643e6020497320746865206065726160207768656e20796f757220746f6b656e732077696c6c2062652022667265652220746f207472616e736665722f626f6e642f766f74650a0a5468652060657261602073686f756c64206f6e6c79206368616e67652065766572792036303020626c6f636b732c20627574206365727461696e206576656e7473206d617920747269676765722061206e6577206572612e20546f2063616c63756c617465207768656e20796f75722066756e647320617265202266726565220000421b230000000000e6ca875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[179,"b300000000000000140000000000000006000000fd09342e20496e2060436861696e20537461746560202d3e20607374616b696e6760202d3e206063757272656e744572612829602e204c6574206f757470757420626520603c455f63757272656e743e600a352e20496e20604578706c6f7265646020636f6c6c65637420603c626c6f636b735f696e5f6572613e2f3630306020756e646572206572612e0a6060600a363030283c455f756e626f6e6465643e202d203c455f63757272656e743e202d203129202d203c626c6f636b735f696e5f6572613e203d203c626c6f636b735f6c6566743e0a283c626c6f636b735f6c6566743e202a2036292f3630203d203c6d696e757465735f6c6566743e0a6060600a416674657220603c6d696e757465735f6c6566743e6020686173207061737365642c2069652e20603c455f63757272656e743e60203d20603c455f756e626f6e6465643e602c20796f757220746f6b656e732073686f756c6420626520667265652e0a52657065617420737465702060332e6020696620796f752077616e7420746f20636f6e6669726d2e0a6060600a2320496620796f75206861766520636f6d706c6574656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a0a0a362e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e20607769746864726177556e626f6e6465642829600a0a596f757220746f6b656e732073686f756c64206e6f77206265202266726565222e0004521b23000000000046cb875d00000000090a342e20496e2060436861696e20537461746560202d3e20607374616b696e6760202d3e206063757272656e744572612829602e204c6574206f757470757420626520603c455f63757272656e743e600a352e20496e20604578706c6f7265646020636f6c6c65637420603c626c6f636b735f696e5f6572613e2f3630306020756e646572206572612e0a6060600a363030283c455f756e626f6e6465643e202d203c455f63757272656e743e202d203129202d203c626c6f636b735f696e5f6572613e203d203c626c6f636b735f6c6566743e0a283c626c6f636b735f6c6566743e202a2036292f3630203d203c6d696e757465735f6c6566743e0a6060600a416674657220603c6d696e757465735f6c6566743e6020686173207061737365642c2069652e20603c455f63757272656e743e60203d20603c455f756e626f6e6465643e602c20796f757220746f6b656e732073686f756c6420626520667265652e0a52657065617420737465702060332e6020696620796f752077616e7420746f20636f6e6669726d2e0a6060600a2320496620796f75206861766520636f6d706c6574656420756e7374616b696e673a0a7b227374617368223a2235596f7572537461736841646472657373222c22746f74616c223a3c746f745f626f6e6465643e2c22616374697665223a2c223c6163745f626f6e6465643e223a5b5d7d0a6060600a2d2d2d0a0a362e20496e206045787472696e73696373602c207573696e67207468652060636f6e74726f6c6c6572602c2073656c65637420607374616b696e6760202d3e20607769746864726177556e626f6e6465642829600a0a596f757220746f6b656e732073686f756c64206e6f77206265202266726565222e491b23000000000010cb875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[180,"b400000000000000140000000000000007000000ad062323232320526573746172742076616c69646174696e672061667465722067657474696e6720626f6f7465640a496620796f7572206e6f6465207368757420646f776e206265666f726520796f75206861642073746f707065642076616c69646174696e6720616e642f6f722074686520677261636520706572696f6420666f7220607374616b696e672e6368696c6c602077617320636f6d706c657465642c20616c6c20796f75206e65656420746f206973207374617274206076616c69646174696e676020616761696e2066726f6d206056616c696461746f72205374616b696e67602e204a757374206d616b652073757265207468617420796f7572206e6f6465206973206261636b2075702c20616e64207468652060617574686f7269747960206b65792073686f77696e67206174206e6f64652073746172747570206973207468652073616d6520617320796f7572206073657373696f6e60206b65792e0a2a2a4e6f74652a2a0a497420646f65736e2774206d617474657220696620796f75722060737461736860206861732061206062616c616e636560203c2060626f6e646564602e0a00004c1b23000000000022cb875d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"]],"threads":[[1,"01000000000000003c436f6465206f6620436f6e64756374010000000000000001000000000100000000000000be6d0f0000000000082c115d0000000042be11a654ef34dbbfba9aa252ed093ef0890e874091b66e4193913ee2913953"],[2,"02000000000000001101546869732069732074686520666972737420706f7374206576657220666f7220746865204a6f7973747265616d205368697420506f7374696e6720436f6d6d756e697479030000000000000001000000000600000000000000366e0f0000000000de2e115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[3,"030000000000000070486f7720746f20537461727420412053746f72616765204e6f64653f010000000000000002000000000100000000000000416e0f0000000000202f115d0000000007cd1fb09a58aff8bf48eba12fc659d37822a74b81270b85a1fb5baf3aa591cf"],[4,"04000000000000003c436f6e74656e742043757261746f720200000000000000010000000002000000000000006e950f0000000000c41a125d00000000b032b7392bd29cd9389d56891d38495ea2b1bafa9793ae3d26a2477669b8eb6e"],[5,"05000000000000004043727970746f63757272656e63696573030000000000000002000000000200000000000000e7af0f00000000003cba125d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[6,"06000000000000006c496e74726f64756374696f6e3a2042656465686f204d656e64657201000000000000000300000000020000000000000079cb0f00000000004460135d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[7,"0700000000000000505374616b656420506f6463617374202d204570360300000000000000030000000003000000000000003733100000000000a0d1155d000000007cbd2c992945e5fc83d937a180e402ff32699718c1fc753f7a0214492e3ff035"],[8,"080000000000000078496d70726f76696e6720466f72756d2046756e6374696f6e616c6974793f01000000000000000400000000070000000000000016571100000000006aaf1c5d00000000b65ba19cbb7786445ab30af15a1c3636f11a3227b8102d0389ee5d4ade93159f"],[9,"0900000000000000804469737472696275746f72202842616e6477696474682050726f76696465722902000000000000000200000001818d13000000000094052a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad744d65616e7420746f20626520612073756263617465676f72792e2e2e2e0100000000000000118d130000000000e8022a5d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[10,"0a000000000000008c4a6f7973747265616d20556e6f6666696369616c205475746f7269616c20566964656f010000000000000005000000000300000000000000b58f130000000000d8122a5d00000000e042ed3c9093904acaf6f10dd118215ce3366e32c03047937d5cf04d70d51908"],[11,"0b000000000000006041626f7574204a6f7973747265616d20426f756e746965730a0000000000000001000000000f000000000000006f43220000000000aab7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[12,"0c000000000000000501426f756e7479202330202d204669782062726f6b656e206c696e6b732c20666f726d617474696e672c2065746320696e20524541444d4573202d2024322f6669780a00000000000000020000000005000000000000007343220000000000c2b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[13,"0d00000000000000f4426f756e7479202331202d20496d70726f7665206e6574776f726b696e67202b2070726f6d6f74696f6e616c2063616d706169676e202d20243530302a0a00000000000000030000000009000000000000007943220000000000e6b7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[14,"0e00000000000000f8426f756e7479202332202d204c697374206f66206d656469612066696c652074797065732f657874656e73696f6e7320706c617961626c65202d202435300a00000000000000040000000002000000000000007d43220000000000feb7825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[15,"0f000000000000000d01426f756e7479202333202d20436f6d70696c65206c697374206f662066726565206d6564696120616e64206d6574616461746120736f7572636573202d20243230302a0a0000000000000005000000000600000000000000844322000000000028b8825d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[16,"100000000000000078536574757020596f75722056616c696461746f72202857696e646f777329040000000000000001000000000f00000000000000f5642200000000008e81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[17,"110000000000000070536574757020596f75722056616c696461746f7220284c696e757829040000000000000002000000000f00000000000000fa64220000000000ac81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[18,"120000000000000068536574757020596f75722056616c696461746f7220284d616329040000000000000003000000000e00000000000000ff64220000000000ca81835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[19,"1300000000000000c8416476616e636564202852756e20417320536572766963652c2053657474696e677320616e64204e6f6d696e6174696e6729040000000000000004000000000e0000000000000016652200000000005482835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[20,"14000000000000003c54726f75626c6573686f6f74696e670400000000000000050000000007000000000000001c652200000000007882835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[21,"15000000000000006c536574757020596f75722053746f726167652050726f766964657205000000000000000100000000190000000000000048652200000000008083835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[22,"16000000000000003c54726f75626c6573686f6f74696e670500000000000000020000000009000000000000004c652200000000009883835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[23,"1700000000000000685265676973746572696e6720466f72204d656d626572736869700600000000000000010000000003000000000000007f65220000000000ca84835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[24,"18000000000000007c4765742053746172746564204173204120436f756e63696c204d656d6265720600000000000000020000000008000000000000008365220000000000e284835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[25,"19000000000000003c54726f75626c6573686f6f74696e670600000000000000030000000001000000000000008665220000000000f484835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[26,"1a0000000000000034427567205265706f72746572730b000000000000000100000000030000000000000090652200000000003085835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"],[27,"1b000000000000005c4275696c646572732028436f6e7472696275746f7273290b00000000000000020000000001000000000000009e652200000000008485835d000000001b2c38944daf5aee2662fe355694b55330aaa6ff3bfbfba3caebd07a2ab545ad"]]} +{"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/res/forum_data_acropolis_serialized.json b/res/forum_data_acropolis_serialized.json index 42dff02702..cd8e446d18 100644 --- a/res/forum_data_acropolis_serialized.json +++ b/res/forum_data_acropolis_serialized.json @@ -1,110914 +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": 1010118, - "time": 1561400376 - }, - "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": "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": 1010132, - "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": 1010212, - "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": 1021321, - "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": 1021334, - "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": 1021344, - "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": 1021369, - "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": 1190821, - "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": 1281336, - "time": 1563034584 - }, - "deleted": false, - "archived": false, - "num_direct_subcategories": 0, - "num_direct_unmoderated_threads": 0, - "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": 2245480, - "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": 2254128, - "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": 1011134, - "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": 1011254, - "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": 1011265, - "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": 1017392, - "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": 1018546, - "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": 1019406, - "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": 1021294, - "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": 1028071, - "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": 1030883, - "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": 1035129, - "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": 1061687, - "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": 1134118, - "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": 1136380, - "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": 1136406, - "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": [ - { - "expired_at": { - "block": 1150700, - "time": 1562247822 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150719, - "time": 1562247936 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150767, - "time": 1562248224 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150776, - "time": 1562248278 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150807, - "time": 1562248464 - }, - "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 - ] - } - ], - "created_at": { - "block": 1150684, - "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": 1218378, - "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": 1224663, - "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": 1271763, - "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": [ - { - "expired_at": { - "block": 1279770, - "time": 1563025104 - }, - "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, - 116, - 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 - ] - } - ], - "created_at": { - "block": 1271962, - "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": [ - { - "expired_at": { - "block": 1271997, - "time": 1562978346 - }, - "text": [ - 87, - 104, - 97, - 116, - 32, - 105, - 110, - 32, - 112, - 97, - 114, - 116, - 105, - 99, - 117, - 108, - 97, - 114, - 32, - 97, - 116, - 116, - 114, - 97, - 99, - 116, - 101, - 100, - 32, - 121, - 111, - 117, - 32, - 116, - 111, - 32, - 116, - 104, - 101, - 32, - 105, - 100, - 101, - 97, - 32, - 111, - 102, - 32, - 97, - 32, - 117, - 115, - 101, - 114, - 32, - 103, - 111, - 118, - 101, - 114, - 110, - 101, - 100, - 32, - 97, - 110, - 100, - 32, - 111, - 112, - 101, - 114, - 97, - 116, - 101, - 100, - 32, - 118, - 105, - 100, - 101, - 111, - 32, - 112, - 108, - 97, - 116, - 102, - 111, - 114, - 109, - 63 - ] - }, - { - "expired_at": { - "block": 1279806, - "time": 1563025320 - }, - "text": [ - 72, - 105, - 32, - 116, - 104, - 101, - 114, - 101, - 33, - 32, - 87, - 104, - 97, - 116, - 32, - 105, - 110, - 32, - 112, - 97, - 114, - 116, - 105, - 99, - 117, - 108, - 97, - 114, - 32, - 97, - 116, - 116, - 114, - 97, - 99, - 116, - 101, - 100, - 32, - 121, - 111, - 117, - 32, - 116, - 111, - 32, - 116, - 104, - 101, - 32, - 105, - 100, - 101, - 97, - 32, - 111, - 102, - 32, - 97, - 32, - 117, - 115, - 101, - 114, - 32, - 103, - 111, - 118, - 101, - 114, - 110, - 101, - 100, - 32, - 97, - 110, - 100, - 32, - 111, - 112, - 101, - 114, - 97, - 116, - 101, - 100, - 32, - 118, - 105, - 100, - 101, - 111, - 32, - 112, - 108, - 97, - 116, - 102, - 111, - 114, - 109, - 63 - ] - }, - { - "expired_at": { - "block": 1324500, - "time": 1563294780 - }, - "text": [ - 72, - 105, - 32, - 116, - 104, - 101, - 114, - 101, - 33, - 32, - 87, - 104, - 97, - 116, - 32, - 105, - 110, - 32, - 112, - 97, - 114, - 116, - 105, - 99, - 117, - 108, - 97, - 114, - 32, - 97, - 116, - 116, - 114, - 97, - 99, - 116, - 101, - 100, - 32, - 121, - 111, - 117, - 32, - 116, - 111, - 32, - 116, - 104, - 101, - 32, - 105, - 100, - 101, - 97, - 32, - 111, - 102, - 32, - 97, - 32, - 117, - 115, - 101, - 114, - 32, - 103, - 111, - 118, - 101, - 114, - 110, - 101, - 100, - 32, - 97, - 110, - 100, - 32, - 111, - 112, - 101, - 114, - 97, - 116, - 101, - 100, - 32, - 109, - 101, - 100, - 105, - 97, - 32, - 112, - 108, - 97, - 116, - 102, - 111, - 114, - 109, - 63 - ] - } - ], - "created_at": { - "block": 1271994, - "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": 1279782, - "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": 1281297, - "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": 1281973, - "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": [ - { - "expired_at": { - "block": 1306505, - "time": 1563186186 - }, - "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 - ] - } - ], - "created_at": { - "block": 1306501, - "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": 1309887, - "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": 1310797, - "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": 2134593, - "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": 2187819, - "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": [ - { - "expired_at": { - "block": 2270455, - "time": 1568998128 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270550, - "time": 1568998698 - }, - "text": [ - 35, - 32, - 79, - 118, - 101, - 114, - 118, - 105, - 101, - 119, - 10, - 84, - 104, - 105, - 115, - 32, - 116, - 104, - 114, - 101, - 97, - 100, - 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 - ] - } - ], - "created_at": { - "block": 2245487, - "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": [ - { - "expired_at": { - "block": 2270386, - "time": 1568997714 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270416, - "time": 1568997894 - }, - "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, - 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 - ] - } - ], - "created_at": { - "block": 2245491, - "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": [ - { - "expired_at": { - "block": 2270646, - "time": 1568999274 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270649, - "time": 1568999292 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2245497, - "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": [ - { - "expired_at": { - "block": 2270725, - "time": 1568999748 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270732, - "time": 1568999790 - }, - "text": [ - 35, - 35, - 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, - 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, - 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, - 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, - 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, - 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, - 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 - ] - }, - { - "expired_at": { - "block": 2270743, - "time": 1568999856 - }, - "text": [ - 35, - 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, - 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, - 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, - 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, - 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, - 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, - 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 - ] - } - ], - "created_at": { - "block": 2245501, - "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": [ - { - "expired_at": { - "block": 2270776, - "time": 1569000054 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2245508, - "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": [ - { - "expired_at": { - "block": 2285041, - "time": 1569085848 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254069, - "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": [ - { - "expired_at": { - "block": 2300521, - "time": 1569179088 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254074, - "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": [ - { - "expired_at": { - "block": 2300522, - "time": 1569179094 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254079, - "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": [ - { - "expired_at": { - "block": 2300646, - "time": 1569179838 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254102, - "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": [ - { - "expired_at": { - "block": 2300717, - "time": 1569180264 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2300720, - "time": 1569180282 - }, - "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, - 10 - ] - } - ], - "created_at": { - "block": 2254108, - "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": [ - { - "expired_at": { - "block": 2284752, - "time": 1569084114 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254152, - "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": [ - { - "expired_at": { - "block": 2284863, - "time": 1569084780 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254156, - "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": [ - { - "expired_at": { - "block": 2284917, - "time": 1569085104 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254207, - "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": [ - { - "expired_at": { - "block": 2284935, - "time": 1569085212 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254211, - "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": [ - { - "expired_at": { - "block": 2284980, - "time": 1569085482 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254214, - "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": [ - { - "expired_at": { - "block": 2285002, - "time": 1569085614 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254224, - "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": [ - { - "expired_at": { - "block": 2285021, - "time": 1569085728 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254238, - "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": [ - { - "expired_at": { - "block": 2270412, - "time": 1568997870 - }, - "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, - 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 - ] - } - ], - "created_at": { - "block": 2270391, - "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": [ - { - "expired_at": { - "block": 2270402, - "time": 1568997810 - }, - "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, - 49, - 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 - ] - } - ], - "created_at": { - "block": 2270395, - "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": 2270405, - "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": [ - { - "expired_at": { - "block": 2270579, - "time": 1568998872 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2270429, - "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": 2270458, - "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": [ - { - "expired_at": { - "block": 2270468, - "time": 1568998206 - }, - "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, - 10, - 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 - ] - } - ], - "created_at": { - "block": 2270463, - "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": 2270470, - "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": 2270475, - "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": 2270478, - "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": 2270484, - "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": [ - { - "expired_at": { - "block": 2270492, - "time": 1568998350 - }, - "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, - 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, - 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, - 91, - 67, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 32, - 66, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 93, - 40, - 35, - 99, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 45, - 98, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 41, - 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 - ] - } - ], - "created_at": { - "block": 2270486, - "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": [ - { - "expired_at": { - "block": 2270500, - "time": 1568998398 - }, - "text": [ - 45, - 32, - 42, - 42, - 66, - 111, - 117, - 110, - 116, - 121, - 42, - 42, - 10, - 32, - 32, - 45, - 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, - 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, - 91, - 67, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 32, - 66, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 93, - 40, - 35, - 99, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 45, - 98, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 41, - 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 - ] - } - ], - "created_at": { - "block": 2270496, - "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": 2270515, - "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": 2270518, - "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": [ - { - "expired_at": { - "block": 2270538, - "time": 1568998626 - }, - "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, - 105, - 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 - ] - } - ], - "created_at": { - "block": 2270523, - "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": 2270525, - "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": [ - { - "expired_at": { - "block": 2270541, - "time": 1568998644 - }, - "text": [ - 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 - ] - }, - { - "expired_at": { - "block": 2270545, - "time": 1568998668 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2270530, - "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": 2270572, - "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": 2270655, - "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": 2270660, - "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": 2270663, - "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": 2270666, - "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": 2270669, - "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": 2270674, - "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": 2270679, - "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": 2270707, - "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": 2270739, - "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": 2270779, - "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": 2270784, - "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": 2270787, - "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": 2270794, - "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": 2270802, - "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": 2284756, - "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": 2284759, - "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": 2284762, - "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": 2284764, - "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": 2284766, - "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": 2284768, - "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": 2284771, - "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": 2284774, - "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": 2284782, - "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": 2284793, - "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": 2284796, - "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": 2284800, - "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": 2284803, - "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": 2284807, - "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": 2284811, - "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": 2284813, - "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": 2284819, - "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": 2284822, - "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": 2284827, - "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": 2284831, - "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": 2284841, - "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": 2284848, - "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": 2284853, - "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": 2284857, - "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": 2284865, - "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": 2284868, - "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": 2284871, - "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": 2284877, - "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": 2284881, - "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": 2284883, - "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": 2284890, - "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": 2284894, - "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": 2284919, - "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": 2284921, - "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": [ - { - "expired_at": { - "block": 2284939, - "time": 1569085236 - }, - "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 - ] - } - ], - "created_at": { - "block": 2284932, - "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": [ - { - "expired_at": { - "block": 2284955, - "time": 1569085332 - }, - "text": [ - 35, - 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 - ] - } - ], - "created_at": { - "block": 2284947, - "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": 2284951, - "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": 2284957, - "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": 2284959, - "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": 2284961, - "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": 2284963, - "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": [ - { - "expired_at": { - "block": 2285012, - "time": 1569085674 - }, - "text": [ - 35, - 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 - ] - } - ], - "created_at": { - "block": 2285008, - "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": 2285010, - "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": 2285044, - "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": 2285046, - "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": 2285049, - "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": 2285051, - "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": [ - { - "expired_at": { - "block": 2285061, - "time": 1569085968 - }, - "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 - ] - } - ], - "created_at": { - "block": 2285053, - "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": 2285080, - "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": 2285100, - "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": 2285102, - "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": 2285110, - "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": 2285112, - "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": 2285116, - "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": 2285120, - "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": 2285123, - "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": 2285127, - "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": 2300526, - "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": 2300527, - "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": 2300532, - "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": 2300534, - "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": 2300536, - "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": 2300539, - "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": 2300547, - "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": 2300555, - "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": [ - { - "expired_at": { - "block": 2300604, - "time": 1569179586 - }, - "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, - 111, - 32, - 91, - 104, - 101, - 114, - 101, - 93, - 40, - 35, - 103, - 101, - 110, - 101, - 114, - 97, - 116, - 101, - 45, - 121, - 111, - 117, - 114, - 45, - 107, - 101, - 121, - 115, - 41, - 32, - 116, - 111, - 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, - 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 - ] - } - ], - "created_at": { - "block": 2300557, - "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": 2300561, - "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": 2300563, - "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": 2300566, - "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": 2300568, - "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": 2300571, - "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": 2300578, - "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": 2300583, - "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": 2300585, - "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": 2300588, - "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": 2300590, - "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": 2300593, - "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": 2300596, - "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": 2300599, - "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": 2300610, - "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": 2300612, - "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": 2300615, - "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": 2300617, - "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": 2300619, - "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": 2300653, - "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": 2300655, - "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": 2300657, - "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": 2300658, - "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": 2300663, - "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": [ - { - "expired_at": { - "block": 2300673, - "time": 1569180000 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2300665, - "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": 2300677, - "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": 2300681, - "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": 2300686, - "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": 2300688, - "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": 2300692, - "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": 2300697, - "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": 2300699, - "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": 2300722, - "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": [ - { - "expired_at": { - "block": 2300736, - "time": 1569180378 - }, - "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, - 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 - ] - } - ], - "created_at": { - "block": 2300726, - "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": [ - { - "expired_at": { - "block": 2300743, - "time": 1569180420 - }, - "text": [ - 45, - 45, - 45, - 10, - 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, - 79, - 114, - 58, - 10, - 10, - 45, - 45, - 45 - ] - } - ], - "created_at": { - "block": 2300731, - "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": 2300738, - "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": [ - { - "expired_at": { - "block": 2300754, - "time": 1569180486 - }, - "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, - 45, - 45, - 45, - 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 - ] - } - ], - "created_at": { - "block": 2300745, - "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": 2300748, - "time": 1569180450 - }, - "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" - } - ] - ], - "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": 1011134, - "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": 1011254, - "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": 1011265, - "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": 1021294, - "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": 1028071, - "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": 1035129, - "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": 1061687, - "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": 1136406, - "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": 1281409, - "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": 1281297, - "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": 1281973, - "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": 2245487, - "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": 2245491, - "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": 2245497, - "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": 2245501, - "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": 2245508, - "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": 2254069, - "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": 2254074, - "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": 2254079, - "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": 2254102, - "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": 2254108, - "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": 2254152, - "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": 2254156, - "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": 2254207, - "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": 2254211, - "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": 2254214, - "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": 2254224, - "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": 2254238, - "time": 1568900484 - }, - "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" - } - ] - ] -} \ No newline at end of file +{"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 From edad024185eef5a444f8b9f8d42247ed6a4d07e3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 10 Mar 2020 11:14:42 +0400 Subject: [PATCH 277/350] update travis to push releases --- .travis.yml | 16 ++++++++++++++-- Dockerfile | 5 +++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d118eefaff..9b571973e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,19 @@ before_script: - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force script: - # Ensure all checked in code is cargo-fmt'ed - cargo fmt --all -- --check - # WASM build check - cargo build --release + - mv ./target/release/joystream-node . + - export FILENAME=`./joystream-node --version | sed -e "s/ /-/g"` + - tar -cfz ${FILENAME}.tar.gz joystream-node + +deploy: + provider: releases + api_key: + secure: icPiO8fnOgkHlo2MpUJvH+sZSaxJqzHif/1Pndlxg2jM/jrvLbUCr9UvtLaRQYPi2BVnR41t2m56uMJD3LktKMzAwUP74JcdX7iw6tq+iyvuU4UBsn5+k8pgue+eE34PVN0vNbDS+RVzzc6wG/vhUyKNKz6M1pOuEBx0s6UX3oED16W1LEN8/CHmFVBxQehlGv40Mje6tSmfZMw++efAmFm9vd0Fx8ub8as5ZqyjGv2IwbQlyIGT3SF9yx2va90F2wOxyZM7wgWzA/XIzlDGy+zvZssEYNGQhepUdGwTwwe+YLvZWuttTC218K4H8aireO2vCMti58veX7hVuDz6j6ETVxhr6Nv47HfxQF4IywDTUH1JGlLVadgcKQXUlVRrfy1tBKDq76ppMul8TdS0LgojeTgcJOblKw0V5TMwx+IYmMabVIZQ7Q7xKqf4SeXxh/YL3EUWBvzu1TUn946CB3jLATUxjGyjAZ00BN01QL7chrkcewInlKxJ/wjUqM34KnHNXXgPNADW+c5IIsl82BwnPsPK37WMfW5FaKtOn0YXQWj9QwtEX7VakNnPZZRvpsl2Ftd1As7hPgufMk8NbXmiQH8i0h1W0xcHQ38hvegIpf1fa8JA7VIFBP6ElymMTIus5xD5rsLGzPqgazm/328p2DthJWebyLAZIbEX+I4= + file: ${FILENAME}.tar.gz + on: + tags: true + draft: true + prerelease: true + overwrite: true diff --git a/Dockerfile b/Dockerfile index 8a45e16675..13737aca1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,11 @@ LABEL description="Joystream node" WORKDIR /joystream COPY --from=builder /joystream/target/release/joystream-node /joystream/node +# 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) From 1c6ae676ba2c2baf0a14cc2d65a3613d1363012f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 10 Mar 2020 12:26:37 +0400 Subject: [PATCH 278/350] update travis --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9b571973e2..896ef88918 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,8 @@ script: - cargo build --release - mv ./target/release/joystream-node . - export FILENAME=`./joystream-node --version | sed -e "s/ /-/g"` - - tar -cfz ${FILENAME}.tar.gz joystream-node + - tar -cf ${FILENAME}.tar ./joystream-node + - gzip ${FILENAME}.tar deploy: provider: releases From e6175dffc63abf5bb4b6de6106475bfcc2a2ead3 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 10 Mar 2020 14:40:13 +0400 Subject: [PATCH 279/350] bump runtime - development branch monorepo --- Cargo.lock | 199 +++++++++++++++--- Cargo.toml | 9 +- ...me-staging.json => rome-experimental.json} | 0 src/chain_spec.rs | 5 +- 4 files changed, 178 insertions(+), 35 deletions(-) rename res/{rome-staging.json => rome-experimental.json} (100%) diff --git a/Cargo.lock b/Cargo.lock index 58ea656e8a..904dd7d7ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1364,7 +1364,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "2.1.0" +version = "2.1.1" dependencies = [ "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1372,7 +1372,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.8.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)", + "joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1410,7 +1410,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.8.0" -source = "git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch#ec9dc53e41d45edef0132798bf8abf518648fc50" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1442,17 +1442,25 @@ dependencies = [ "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-forum-module?tag=v1.1.1)", - "substrate-hiring-module 1.0.1 (git+https://github.com/Joystream/substrate-hiring-module?tag=v1.0.1)", + "substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-recurring-reward-module 1.0.1 (git+https://github.com/Joystream/substrate-recurring-reward-module?tag=v1.0.1)", + "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.1 (git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1)", - "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?tag=v1.0.1)", + "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", "substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4084,6 +4092,16 @@ dependencies = [ "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] +[[package]] +name = "substrate-common-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", +] + [[package]] name = "substrate-consensus-babe" version = "2.0.0" @@ -4187,6 +4205,28 @@ dependencies = [ "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] +[[package]] +name = "substrate-content-working-group-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", +] + [[package]] name = "substrate-debug-derive" version = "2.0.0" @@ -4277,7 +4317,7 @@ dependencies = [ [[package]] name = "substrate-forum-module" version = "1.1.1" -source = "git+https://github.com/joystream/substrate-forum-module?tag=v1.1.1#5918fc90d25faeac06311b0d6b05305cbe722a27" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4294,6 +4334,23 @@ dependencies = [ "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] +[[package]] +name = "substrate-governance-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", +] + [[package]] name = "substrate-header-metadata" version = "2.0.0" @@ -4307,7 +4364,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.1" -source = "git+https://github.com/Joystream/substrate-hiring-module?tag=v1.0.1#e387af033fb0e81c66d487bdec445153b0fe3cdf" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4322,7 +4379,7 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.1 (git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1)", + "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", ] [[package]] @@ -4363,6 +4420,36 @@ dependencies = [ "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-membership-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", +] + +[[package]] +name = "substrate-memo-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", +] + [[package]] name = "substrate-network" version = "2.0.0" @@ -4525,7 +4612,7 @@ dependencies = [ [[package]] name = "substrate-recurring-reward-module" version = "1.0.1" -source = "git+https://github.com/Joystream/substrate-recurring-reward-module?tag=v1.0.1#2c4bda1dea315629313643737c2f59979579fb50" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4540,7 +4627,22 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", +] + +[[package]] +name = "substrate-roles-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", ] [[package]] @@ -4664,6 +4766,21 @@ dependencies = [ "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-service-discovery-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", +] + [[package]] name = "substrate-session" version = "2.0.0" @@ -4678,7 +4795,7 @@ dependencies = [ [[package]] name = "substrate-stake-module" version = "1.0.1" -source = "git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1#af5860c3cde5b11e37728df0b1dfbbdf9a9fa2f3" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4725,6 +4842,24 @@ dependencies = [ "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "substrate-storage-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +dependencies = [ + "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", + "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", + "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", +] + [[package]] name = "substrate-telemetry" version = "2.0.0" @@ -4750,7 +4885,7 @@ dependencies = [ [[package]] name = "substrate-token-mint-module" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1#7905ce50136cf8483a808a1946fbf123b9ca4bb8" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4814,7 +4949,7 @@ dependencies = [ [[package]] name = "substrate-versioned-store" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1#24bcd60e84c1ece74a8a3130beb740f6fa760145" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4834,7 +4969,7 @@ dependencies = [ [[package]] name = "substrate-versioned-store-permissions-module" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-versioned-store-permissions-module?tag=v1.0.1#dd75f4bfe283673685c4ccf9de14384a546daa6e" +source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4848,7 +4983,7 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", ] [[package]] @@ -5837,7 +5972,7 @@ dependencies = [ "checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" "checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" "checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" -"checksum joystream-node-runtime 6.8.0 (git+https://github.com/mnaamani/substrate-runtime-joystream?branch=quote-patch)" = "" +"checksum joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" "checksum jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6077,22 +6212,27 @@ dependencies = [ "checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-forum-module?tag=v1.1.1)" = "" +"checksum substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-hiring-module 1.0.1 (git+https://github.com/Joystream/substrate-hiring-module?tag=v1.0.1)" = "" +"checksum substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" @@ -6101,24 +6241,27 @@ dependencies = [ "checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-recurring-reward-module 1.0.1 (git+https://github.com/Joystream/substrate-recurring-reward-module?tag=v1.0.1)" = "" +"checksum substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-stake-module 1.0.1 (git+https://github.com/Joystream/substrate-stake-module/?tag=v1.0.1)" = "" +"checksum substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" +"checksum substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-token-minting-module/?tag=v1.0.1)" = "" +"checksum substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-module?tag=v1.0.1)" = "" -"checksum substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-versioned-store-permissions-module?tag=v1.0.1)" = "" +"checksum substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" "checksum substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" diff --git a/Cargo.toml b/Cargo.toml index 83077bc201..7b5cba3f6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '2.1.0' +version = '2.1.1' [dependencies] hex-literal = '0.2.1' @@ -28,12 +28,11 @@ hex = '0.4' [dependencies.node-runtime] package = 'joystream-node-runtime' -# git = 'https://github.com/joystream/substrate-runtime-joystream' -git = 'https://github.com/mnaamani/substrate-runtime-joystream' -# rev = 'b161c0c4ef847978a715c6beeaeadac0fadc9a72' # v6.1.0 +git = 'https://github.com/joystream/substrate-runtime-joystream' +rev = '620094ef5f393180284aab2e5516f854694f009b' # development branch: v6.8.0 +# branch = 'development' # local development... # path = '/Users/mokhtar/joystream/runtime' -branch = 'quote-patch' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' diff --git a/res/rome-staging.json b/res/rome-experimental.json similarity index 100% rename from res/rome-staging.json rename to res/rome-experimental.json diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 95701562e6..5013f18f9c 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -159,7 +159,8 @@ impl Alternative { "dev" => Some(Alternative::Development), "local" => Some(Alternative::LocalTestnet), "staging" => Some(Alternative::StagingTestnet), - "" | "rome" => Some(Alternative::LiveTestnet), + "rome-experimental" => Some(Alternative::LiveTestnet), + // "" | "tesnet" => Some(Alternative::LiveTestnet), _ => None, } } @@ -171,7 +172,7 @@ fn new_vs_validation(min: u16, max_min_diff: u16) -> VsInputValidation { /// Joystream LiveTestnet generator pub fn live_testnet_config() -> Result { - ChainSpec::from_json_bytes(&include_bytes!("../res/rome-staging.json")[..]) + ChainSpec::from_json_bytes(&include_bytes!("../res/rome-experimental.json")[..]) } pub fn chain_spec_properties() -> json::map::Map { From b1e0c68561ccd6051c5c45199311758985607064 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 13:50:17 +0400 Subject: [PATCH 280/350] build runtime from rome tagged release v6.8.0 --- Cargo.lock | 140 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 5 +- 2 files changed, 73 insertions(+), 72 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 904dd7d7ed..e04bd1a274 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1364,7 +1364,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "2.1.1" +version = "2.1.2" dependencies = [ "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1372,7 +1372,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1410,7 +1410,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" version = "6.8.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1442,25 +1442,25 @@ dependencies = [ "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -4095,7 +4095,7 @@ dependencies = [ [[package]] name = "substrate-common-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", @@ -4208,7 +4208,7 @@ dependencies = [ [[package]] name = "substrate-content-working-group-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4216,15 +4216,15 @@ dependencies = [ "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] @@ -4317,7 +4317,7 @@ dependencies = [ [[package]] name = "substrate-forum-module" version = "1.1.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4337,7 +4337,7 @@ dependencies = [ [[package]] name = "substrate-governance-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4346,8 +4346,8 @@ dependencies = [ "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] @@ -4364,7 +4364,7 @@ dependencies = [ [[package]] name = "substrate-hiring-module" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4379,7 +4379,7 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] @@ -4423,7 +4423,7 @@ dependencies = [ [[package]] name = "substrate-membership-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4432,14 +4432,14 @@ dependencies = [ "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", ] [[package]] name = "substrate-memo-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4447,7 +4447,7 @@ dependencies = [ "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] @@ -4612,7 +4612,7 @@ dependencies = [ [[package]] name = "substrate-recurring-reward-module" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4627,13 +4627,13 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] name = "substrate-roles-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4641,8 +4641,8 @@ dependencies = [ "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] @@ -4769,7 +4769,7 @@ dependencies = [ [[package]] name = "substrate-service-discovery-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4778,7 +4778,7 @@ dependencies = [ "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] @@ -4795,7 +4795,7 @@ dependencies = [ [[package]] name = "substrate-stake-module" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4845,7 +4845,7 @@ dependencies = [ [[package]] name = "substrate-storage-module" version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4854,10 +4854,10 @@ dependencies = [ "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", + "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] @@ -4885,7 +4885,7 @@ dependencies = [ [[package]] name = "substrate-token-mint-module" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4949,7 +4949,7 @@ dependencies = [ [[package]] name = "substrate-versioned-store" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4969,7 +4969,7 @@ dependencies = [ [[package]] name = "substrate-versioned-store-permissions-module" version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b#620094ef5f393180284aab2e5516f854694f009b" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" dependencies = [ "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4983,7 +4983,7 @@ dependencies = [ "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)", + "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", ] [[package]] @@ -5972,7 +5972,7 @@ dependencies = [ "checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" "checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" "checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" -"checksum joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" "checksum jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b" "checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" @@ -6212,27 +6212,27 @@ dependencies = [ "checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" -"checksum substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" +"checksum substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" -"checksum substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" +"checksum substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" @@ -6241,27 +6241,27 @@ dependencies = [ "checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" -"checksum substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" +"checksum substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" -"checksum substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?rev=620094ef5f393180284aab2e5516f854694f009b)" = "" +"checksum substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" +"checksum substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" "checksum substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8" "checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" diff --git a/Cargo.toml b/Cargo.toml index 7b5cba3f6a..e7201b1220 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '2.1.1' +version = '2.1.2' [dependencies] hex-literal = '0.2.1' @@ -29,7 +29,8 @@ hex = '0.4' [dependencies.node-runtime] package = 'joystream-node-runtime' git = 'https://github.com/joystream/substrate-runtime-joystream' -rev = '620094ef5f393180284aab2e5516f854694f009b' # development branch: v6.8.0 +tag = 'v6.8.0' +# rev = '620094ef5f393180284aab2e5516f854694f009b' # development branch: v6.8.0 # branch = 'development' # local development... # path = '/Users/mokhtar/joystream/runtime' From 64e24804491639a59ec326bafdbe5b483b8f24db Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 16:49:03 +0400 Subject: [PATCH 281/350] travis deploy on development branch --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 896ef88918..e65a59af07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,6 +24,7 @@ deploy: file: ${FILENAME}.tar.gz on: tags: true + branch: development draft: true prerelease: true overwrite: true From 919dd988ad925a5d8a75ff836d6a0168cdcec73d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 17:31:20 +0400 Subject: [PATCH 282/350] travis: osx and linux --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index e65a59af07..6587bf5bb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,10 @@ language: rust rust: - 1.41.1 +os: + - linux + - osx + before_script: - rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu - rustup update nightly From 0ba18f2bf2770ebfc5feba4c6cab97e040b61861 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 17:40:05 +0400 Subject: [PATCH 283/350] travis install rustfmt without specifying toolchain --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6587bf5bb4..733d47bee8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,8 @@ os: - osx before_script: - - rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu + #- rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu + - rustup component add rustfmt - rustup update nightly - rustup target add wasm32-unknown-unknown --toolchain nightly - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force From c42e82f673efbcf7e8a13894f29da533f54fac27 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 17:55:29 +0400 Subject: [PATCH 284/350] travis: skip_cleanup: true --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 733d47bee8..37c45ba7f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ os: - osx before_script: - #- rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu +# - rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu - rustup component add rustfmt - rustup update nightly - rustup target add wasm32-unknown-unknown --toolchain nightly @@ -27,6 +27,7 @@ deploy: api_key: secure: icPiO8fnOgkHlo2MpUJvH+sZSaxJqzHif/1Pndlxg2jM/jrvLbUCr9UvtLaRQYPi2BVnR41t2m56uMJD3LktKMzAwUP74JcdX7iw6tq+iyvuU4UBsn5+k8pgue+eE34PVN0vNbDS+RVzzc6wG/vhUyKNKz6M1pOuEBx0s6UX3oED16W1LEN8/CHmFVBxQehlGv40Mje6tSmfZMw++efAmFm9vd0Fx8ub8as5ZqyjGv2IwbQlyIGT3SF9yx2va90F2wOxyZM7wgWzA/XIzlDGy+zvZssEYNGQhepUdGwTwwe+YLvZWuttTC218K4H8aireO2vCMti58veX7hVuDz6j6ETVxhr6Nv47HfxQF4IywDTUH1JGlLVadgcKQXUlVRrfy1tBKDq76ppMul8TdS0LgojeTgcJOblKw0V5TMwx+IYmMabVIZQ7Q7xKqf4SeXxh/YL3EUWBvzu1TUn946CB3jLATUxjGyjAZ00BN01QL7chrkcewInlKxJ/wjUqM34KnHNXXgPNADW+c5IIsl82BwnPsPK37WMfW5FaKtOn0YXQWj9QwtEX7VakNnPZZRvpsl2Ftd1As7hPgufMk8NbXmiQH8i0h1W0xcHQ38hvegIpf1fa8JA7VIFBP6ElymMTIus5xD5rsLGzPqgazm/328p2DthJWebyLAZIbEX+I4= file: ${FILENAME}.tar.gz + skip_cleanup: true on: tags: true branch: development From 930956e354c29ee91c393516b000295b165eb5f5 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 19:35:35 +0400 Subject: [PATCH 285/350] travis: cache cargo --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 37c45ba7f0..696f6367ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,14 @@ language: rust rust: - 1.41.1 +cache: + cargo + os: - linux - osx before_script: -# - rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu - rustup component add rustfmt - rustup update nightly - rustup target add wasm32-unknown-unknown --toolchain nightly From e4a3269fb55babded6518ba4b8b5e6448633b9a7 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 20:39:03 +0400 Subject: [PATCH 286/350] travis: add windows task and remove deprecated wasm-gc commandline tool --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 696f6367ad..c63932f67e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,12 +9,15 @@ cache: os: - linux - osx + - windows before_script: - rustup component add rustfmt - rustup update nightly - rustup target add wasm32-unknown-unknown --toolchain nightly - - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force +# Since the WASM builder now directly builds the runtime, +# I don't think we need the commandline version anymore. +# - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force script: - cargo fmt --all -- --check From 6b86ca7af5e70a103eb42f3582029dfeeb7b442c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 23:22:49 +0400 Subject: [PATCH 287/350] travis: explicit build target --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c63932f67e..550a289ffa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,12 +8,16 @@ cache: os: - linux + env: TARGET=x86_64-unknown-linux-gnu - osx + env: TARGET=x86_64-apple-darwin - windows + env: TARGET=x86_64-pc-windows-msvc before_script: - rustup component add rustfmt - rustup update nightly + - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly # Since the WASM builder now directly builds the runtime, # I don't think we need the commandline version anymore. @@ -22,7 +26,7 @@ before_script: script: - cargo fmt --all -- --check - cargo build --release - - mv ./target/release/joystream-node . + - mv ./target/${TARGET}/release/joystream-node . - export FILENAME=`./joystream-node --version | sed -e "s/ /-/g"` - tar -cf ${FILENAME}.tar ./joystream-node - gzip ${FILENAME}.tar From 602c045872972137fce69356ae1ac3af61918373 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 23:37:37 +0400 Subject: [PATCH 288/350] raspberry build script --- .travis.yml | 2 +- raspberry-cross-build.sh | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 raspberry-cross-build.sh diff --git a/.travis.yml b/.travis.yml index 550a289ffa..80d723d846 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ before_script: script: - cargo fmt --all -- --check - - cargo build --release + - cargo build --release --target=${TARGET} - mv ./target/${TARGET}/release/joystream-node . - export FILENAME=`./joystream-node --version | sed -e "s/ /-/g"` - tar -cf ${FILENAME}.tar ./joystream-node diff --git a/raspberry-cross-build.sh b/raspberry-cross-build.sh new file mode 100644 index 0000000000..ef74ff4e6d --- /dev/null +++ b/raspberry-cross-build.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +### Cross build for Raspberry Pi - using docker ### +docker pull joystream/rust-raspberry + +docker run \ + --volume ${PWD}/:/home/cross/project \ + --volume ${HOME}/.cargo/registry:/home/cross/.cargo/registry \ + joystream/rust-raspberry \ + build --release + +# output will be in project folder: +# target/arm-unknown-linux-gnueabihf/joystream-node From 4bab37ad79aa9d2358610856572ab58fac432501 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 23:41:47 +0400 Subject: [PATCH 289/350] travis: fix format --- .travis.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80d723d846..d9570d590a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,15 @@ cache: cargo os: - - linux - env: TARGET=x86_64-unknown-linux-gnu - - osx - env: TARGET=x86_64-apple-darwin - - windows - env: TARGET=x86_64-pc-windows-msvc + - linux: + - env: + - TARGET=x86_64-unknown-linux-gnu + - osx: + - env: + - TARGET=x86_64-apple-darwin + - windows: + - env: + - TARGET=x86_64-pc-windows-msvc before_script: - rustup component add rustfmt From cd7fd5c42c267059d270376e69f34f3eb1f9ba21 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 12 Mar 2020 23:45:33 +0400 Subject: [PATCH 290/350] travis: env correctly --- .travis.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index d9570d590a..5e80b35499 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,14 +8,11 @@ cache: os: - linux: - - env: - - TARGET=x86_64-unknown-linux-gnu + env: TARGET=x86_64-unknown-linux-gnu - osx: - - env: - - TARGET=x86_64-apple-darwin + env: TARGET=x86_64-apple-darwin - windows: - - env: - - TARGET=x86_64-pc-windows-msvc + env: TARGET=x86_64-pc-windows-msvc before_script: - rustup component add rustfmt From 2717c9122e6b307d0821664c5642ea2db24de276 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 00:00:45 +0400 Subject: [PATCH 291/350] travis: !! --- .travis.yml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5e80b35499..9673d301cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,23 @@ cache: cargo os: - - linux: - env: TARGET=x86_64-unknown-linux-gnu - - osx: - env: TARGET=x86_64-apple-darwin - - windows: - env: TARGET=x86_64-pc-windows-msvc + - linux + - osx + - windows + +env: + - TARGET=x86_64-unknown-linux-gnu + - TARGET=x86_64-apple-darwin + - TARGET=x86_64-pc-windows-msvc + +jobs: + include: + - os: linux + env: TARGET=x86_64-unknown-linux-gnu + - os: osx + env: TARGET=x86_64-apple-darwin + - os: windows + env: TARGET=x86_64-pc-windows-msvc before_script: - rustup component add rustfmt From e6f6f4a4b76b402b43087b9f991262232cab162e Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 00:05:08 +0400 Subject: [PATCH 292/350] travis: just set TRARGET in before_script --- .travis.yml | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9673d301cd..50e973addb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,28 +11,14 @@ os: - osx - windows -env: - - TARGET=x86_64-unknown-linux-gnu - - TARGET=x86_64-apple-darwin - - TARGET=x86_64-pc-windows-msvc - -jobs: - include: - - os: linux - env: TARGET=x86_64-unknown-linux-gnu - - os: osx - env: TARGET=x86_64-apple-darwin - - os: windows - env: TARGET=x86_64-pc-windows-msvc - before_script: + - if [ "$TRAVIS_OS_NAME" = "osx" ]; then export TARGET=x86_64-apple-darwin ; fi + - if [ "$TRAVIS_OS_NAME" = "linux" ]; then export TARGET=x86_64-unknown-linux-gnu ; fi + - if [ "$TRAVIS_OS_NAME" = "windows" ]; then export TARGET=x86_64-pc-windows-msvc ; fi - rustup component add rustfmt - rustup update nightly - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly -# Since the WASM builder now directly builds the runtime, -# I don't think we need the commandline version anymore. -# - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force script: - cargo fmt --all -- --check From 2e8c496f5e129b3083dfb8d0e9355582782e16ae Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 00:33:44 +0400 Subject: [PATCH 293/350] travis: rustup show --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 50e973addb..d5465176f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,7 @@ before_script: - rustup update nightly - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly + - rustup show script: - cargo fmt --all -- --check From 9092a6bfd4458b9c9583c688eccc32074036e57b Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 11:16:43 +0400 Subject: [PATCH 294/350] travis: show cargo settings --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index d5465176f7..629130fcb2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,7 @@ before_script: - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly - rustup show + - cat ~/.cargo/config script: - cargo fmt --all -- --check From 2a7fa7197a32eb2e7169fbce46b327a0943df4c6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 11:31:26 +0400 Subject: [PATCH 295/350] travis: don't cat ~/.cargo/config - may not exist --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 629130fcb2..bbfdb30ade 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ before_script: - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly - rustup show - - cat ~/.cargo/config + # - cat ~/.cargo/config script: - cargo fmt --all -- --check From 1b3fe55e702634ebdf3d0e2ec5ed54bb3ab7c42a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 13:27:50 +0400 Subject: [PATCH 296/350] travis: pre-release on development branch --- .travis.yml | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index bbfdb30ade..2a9bd53dd6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ cache: os: - linux - osx - - windows +# - windows before_script: - if [ "$TRAVIS_OS_NAME" = "osx" ]; then export TARGET=x86_64-apple-darwin ; fi @@ -20,7 +20,6 @@ before_script: - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly - rustup show - # - cat ~/.cargo/config script: - cargo fmt --all -- --check @@ -31,14 +30,23 @@ script: - gzip ${FILENAME}.tar deploy: - provider: releases - api_key: - secure: icPiO8fnOgkHlo2MpUJvH+sZSaxJqzHif/1Pndlxg2jM/jrvLbUCr9UvtLaRQYPi2BVnR41t2m56uMJD3LktKMzAwUP74JcdX7iw6tq+iyvuU4UBsn5+k8pgue+eE34PVN0vNbDS+RVzzc6wG/vhUyKNKz6M1pOuEBx0s6UX3oED16W1LEN8/CHmFVBxQehlGv40Mje6tSmfZMw++efAmFm9vd0Fx8ub8as5ZqyjGv2IwbQlyIGT3SF9yx2va90F2wOxyZM7wgWzA/XIzlDGy+zvZssEYNGQhepUdGwTwwe+YLvZWuttTC218K4H8aireO2vCMti58veX7hVuDz6j6ETVxhr6Nv47HfxQF4IywDTUH1JGlLVadgcKQXUlVRrfy1tBKDq76ppMul8TdS0LgojeTgcJOblKw0V5TMwx+IYmMabVIZQ7Q7xKqf4SeXxh/YL3EUWBvzu1TUn946CB3jLATUxjGyjAZ00BN01QL7chrkcewInlKxJ/wjUqM34KnHNXXgPNADW+c5IIsl82BwnPsPK37WMfW5FaKtOn0YXQWj9QwtEX7VakNnPZZRvpsl2Ftd1As7hPgufMk8NbXmiQH8i0h1W0xcHQ38hvegIpf1fa8JA7VIFBP6ElymMTIus5xD5rsLGzPqgazm/328p2DthJWebyLAZIbEX+I4= - file: ${FILENAME}.tar.gz - skip_cleanup: true - on: - tags: true - branch: development - draft: true - prerelease: true - overwrite: true + - provider: releases + api_key: + secure: icPiO8fnOgkHlo2MpUJvH+sZSaxJqzHif/1Pndlxg2jM/jrvLbUCr9UvtLaRQYPi2BVnR41t2m56uMJD3LktKMzAwUP74JcdX7iw6tq+iyvuU4UBsn5+k8pgue+eE34PVN0vNbDS+RVzzc6wG/vhUyKNKz6M1pOuEBx0s6UX3oED16W1LEN8/CHmFVBxQehlGv40Mje6tSmfZMw++efAmFm9vd0Fx8ub8as5ZqyjGv2IwbQlyIGT3SF9yx2va90F2wOxyZM7wgWzA/XIzlDGy+zvZssEYNGQhepUdGwTwwe+YLvZWuttTC218K4H8aireO2vCMti58veX7hVuDz6j6ETVxhr6Nv47HfxQF4IywDTUH1JGlLVadgcKQXUlVRrfy1tBKDq76ppMul8TdS0LgojeTgcJOblKw0V5TMwx+IYmMabVIZQ7Q7xKqf4SeXxh/YL3EUWBvzu1TUn946CB3jLATUxjGyjAZ00BN01QL7chrkcewInlKxJ/wjUqM34KnHNXXgPNADW+c5IIsl82BwnPsPK37WMfW5FaKtOn0YXQWj9QwtEX7VakNnPZZRvpsl2Ftd1As7hPgufMk8NbXmiQH8i0h1W0xcHQ38hvegIpf1fa8JA7VIFBP6ElymMTIus5xD5rsLGzPqgazm/328p2DthJWebyLAZIbEX+I4= + file: ${FILENAME}.tar.gz + skip_cleanup: true + on: + tags: true + draft: true + overwrite: true + - provider: releases + api_key: + secure: icPiO8fnOgkHlo2MpUJvH+sZSaxJqzHif/1Pndlxg2jM/jrvLbUCr9UvtLaRQYPi2BVnR41t2m56uMJD3LktKMzAwUP74JcdX7iw6tq+iyvuU4UBsn5+k8pgue+eE34PVN0vNbDS+RVzzc6wG/vhUyKNKz6M1pOuEBx0s6UX3oED16W1LEN8/CHmFVBxQehlGv40Mje6tSmfZMw++efAmFm9vd0Fx8ub8as5ZqyjGv2IwbQlyIGT3SF9yx2va90F2wOxyZM7wgWzA/XIzlDGy+zvZssEYNGQhepUdGwTwwe+YLvZWuttTC218K4H8aireO2vCMti58veX7hVuDz6j6ETVxhr6Nv47HfxQF4IywDTUH1JGlLVadgcKQXUlVRrfy1tBKDq76ppMul8TdS0LgojeTgcJOblKw0V5TMwx+IYmMabVIZQ7Q7xKqf4SeXxh/YL3EUWBvzu1TUn946CB3jLATUxjGyjAZ00BN01QL7chrkcewInlKxJ/wjUqM34KnHNXXgPNADW+c5IIsl82BwnPsPK37WMfW5FaKtOn0YXQWj9QwtEX7VakNnPZZRvpsl2Ftd1As7hPgufMk8NbXmiQH8i0h1W0xcHQ38hvegIpf1fa8JA7VIFBP6ElymMTIus5xD5rsLGzPqgazm/328p2DthJWebyLAZIbEX+I4= + file: ${FILENAME}.tar.gz + skip_cleanup: true + on: + branch: development + draft: true + prerelease: true + overwrite: true + - From 03a1c6f20173684c12ee5485770ab1a7922a3596 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 13:28:47 +0400 Subject: [PATCH 297/350] travis: deploy api key for joystream repo --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2a9bd53dd6..c40500c02e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,6 +37,7 @@ deploy: skip_cleanup: true on: tags: true + repo: joystream/substrate-node-joystream draft: true overwrite: true - provider: releases @@ -46,6 +47,7 @@ deploy: skip_cleanup: true on: branch: development + repo: joystream/substrate-node-joystream draft: true prerelease: true overwrite: true From c49f638f0a0caf56a0b781f2546794e146a6c717 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 15:48:10 +0400 Subject: [PATCH 298/350] travis: case sensitive repo name --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c40500c02e..4e01f90b68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ deploy: skip_cleanup: true on: tags: true - repo: joystream/substrate-node-joystream + repo: Joystream/substrate-node-joystream draft: true overwrite: true - provider: releases @@ -47,7 +47,7 @@ deploy: skip_cleanup: true on: branch: development - repo: joystream/substrate-node-joystream + repo: Joystream/substrate-node-joystream draft: true prerelease: true overwrite: true From a9187467d0aba15c0cec0c69a03c10635722aeb8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 17:41:18 +0400 Subject: [PATCH 299/350] travis: remove trailing - --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4e01f90b68..1079f3b6bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,4 +51,3 @@ deploy: draft: true prerelease: true overwrite: true - - From e97b423137dc6785898cc6d8b4accfdd37965179 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 17:45:58 +0400 Subject: [PATCH 300/350] travis: update api key --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1079f3b6bd..482480d4e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ script: deploy: - provider: releases api_key: - secure: icPiO8fnOgkHlo2MpUJvH+sZSaxJqzHif/1Pndlxg2jM/jrvLbUCr9UvtLaRQYPi2BVnR41t2m56uMJD3LktKMzAwUP74JcdX7iw6tq+iyvuU4UBsn5+k8pgue+eE34PVN0vNbDS+RVzzc6wG/vhUyKNKz6M1pOuEBx0s6UX3oED16W1LEN8/CHmFVBxQehlGv40Mje6tSmfZMw++efAmFm9vd0Fx8ub8as5ZqyjGv2IwbQlyIGT3SF9yx2va90F2wOxyZM7wgWzA/XIzlDGy+zvZssEYNGQhepUdGwTwwe+YLvZWuttTC218K4H8aireO2vCMti58veX7hVuDz6j6ETVxhr6Nv47HfxQF4IywDTUH1JGlLVadgcKQXUlVRrfy1tBKDq76ppMul8TdS0LgojeTgcJOblKw0V5TMwx+IYmMabVIZQ7Q7xKqf4SeXxh/YL3EUWBvzu1TUn946CB3jLATUxjGyjAZ00BN01QL7chrkcewInlKxJ/wjUqM34KnHNXXgPNADW+c5IIsl82BwnPsPK37WMfW5FaKtOn0YXQWj9QwtEX7VakNnPZZRvpsl2Ftd1As7hPgufMk8NbXmiQH8i0h1W0xcHQ38hvegIpf1fa8JA7VIFBP6ElymMTIus5xD5rsLGzPqgazm/328p2DthJWebyLAZIbEX+I4= + secure: fAfOHxF+yiUqqTRPT2q3SvKXgjGhb6FhH1musNNr2179Onjt0eFVD5vTPb3VJ6BtpxXyo5PJTCtGoGmKaYmvtyFukhbOnwyYWh7h13bV90QiNwqj2bxtH/fdYOLkvkFdNHSr12Gdwf4F+mKHLy0wLqra7bt7fMVhZPsMwIbV7vigAPXpgWn/9zhxXtDjrswevBTmQtrx5umHkRHn5r3R4bXyrXvW8WMjA6/X2NwYFQrVHGEjpG1hOGQj1JWopYVs0hN+3FjVs3n+RHJrtk0ApUg6d7qtYqTkzDn7mwRyrXPym96RbhpzarM5YWcFAHDPLD2/E/KTgDjNciZdmHnjcUTNoFfoGByPmtuUGgpO2jf8+1V5fGxpW/dFis7swOLaMDWf4d2ndFubcPVSUOKKgxOOdXRs9auQCwT5rvR4lJALT2W4sgEp11fwW+qIJxpKWq4AHTWJCWlIBVCToJJ3FNTOMvyLkExfquF/kG5nO5XVjqg+eCLzTjcB91EwAmZBndHCx2ZfUuo4j3lxZLanpQIqsLiM/EhOVvany1pdJvNl3ncV/4PuBbvhmd1eqzeS2yRWeE16c0UpJ193drFurQ50GDr+Npo/qOE9DIeevZnwGzcNeAI7tK6XYQoEphluYMZa7xGGi7ix+MMq4utN7qJii2++wmWHG0gruiTdrZ8= file: ${FILENAME}.tar.gz skip_cleanup: true on: @@ -42,7 +42,7 @@ deploy: overwrite: true - provider: releases api_key: - secure: icPiO8fnOgkHlo2MpUJvH+sZSaxJqzHif/1Pndlxg2jM/jrvLbUCr9UvtLaRQYPi2BVnR41t2m56uMJD3LktKMzAwUP74JcdX7iw6tq+iyvuU4UBsn5+k8pgue+eE34PVN0vNbDS+RVzzc6wG/vhUyKNKz6M1pOuEBx0s6UX3oED16W1LEN8/CHmFVBxQehlGv40Mje6tSmfZMw++efAmFm9vd0Fx8ub8as5ZqyjGv2IwbQlyIGT3SF9yx2va90F2wOxyZM7wgWzA/XIzlDGy+zvZssEYNGQhepUdGwTwwe+YLvZWuttTC218K4H8aireO2vCMti58veX7hVuDz6j6ETVxhr6Nv47HfxQF4IywDTUH1JGlLVadgcKQXUlVRrfy1tBKDq76ppMul8TdS0LgojeTgcJOblKw0V5TMwx+IYmMabVIZQ7Q7xKqf4SeXxh/YL3EUWBvzu1TUn946CB3jLATUxjGyjAZ00BN01QL7chrkcewInlKxJ/wjUqM34KnHNXXgPNADW+c5IIsl82BwnPsPK37WMfW5FaKtOn0YXQWj9QwtEX7VakNnPZZRvpsl2Ftd1As7hPgufMk8NbXmiQH8i0h1W0xcHQ38hvegIpf1fa8JA7VIFBP6ElymMTIus5xD5rsLGzPqgazm/328p2DthJWebyLAZIbEX+I4= + secure: fAfOHxF+yiUqqTRPT2q3SvKXgjGhb6FhH1musNNr2179Onjt0eFVD5vTPb3VJ6BtpxXyo5PJTCtGoGmKaYmvtyFukhbOnwyYWh7h13bV90QiNwqj2bxtH/fdYOLkvkFdNHSr12Gdwf4F+mKHLy0wLqra7bt7fMVhZPsMwIbV7vigAPXpgWn/9zhxXtDjrswevBTmQtrx5umHkRHn5r3R4bXyrXvW8WMjA6/X2NwYFQrVHGEjpG1hOGQj1JWopYVs0hN+3FjVs3n+RHJrtk0ApUg6d7qtYqTkzDn7mwRyrXPym96RbhpzarM5YWcFAHDPLD2/E/KTgDjNciZdmHnjcUTNoFfoGByPmtuUGgpO2jf8+1V5fGxpW/dFis7swOLaMDWf4d2ndFubcPVSUOKKgxOOdXRs9auQCwT5rvR4lJALT2W4sgEp11fwW+qIJxpKWq4AHTWJCWlIBVCToJJ3FNTOMvyLkExfquF/kG5nO5XVjqg+eCLzTjcB91EwAmZBndHCx2ZfUuo4j3lxZLanpQIqsLiM/EhOVvany1pdJvNl3ncV/4PuBbvhmd1eqzeS2yRWeE16c0UpJ193drFurQ50GDr+Npo/qOE9DIeevZnwGzcNeAI7tK6XYQoEphluYMZa7xGGi7ix+MMq4utN7qJii2++wmWHG0gruiTdrZ8= file: ${FILENAME}.tar.gz skip_cleanup: true on: From aaceb6466cdafe971905492c9c64081488a4686c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 19:48:57 +0400 Subject: [PATCH 301/350] travis: updated api-key --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 482480d4e2..12cd87f4ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,9 +32,8 @@ script: deploy: - provider: releases api_key: - secure: fAfOHxF+yiUqqTRPT2q3SvKXgjGhb6FhH1musNNr2179Onjt0eFVD5vTPb3VJ6BtpxXyo5PJTCtGoGmKaYmvtyFukhbOnwyYWh7h13bV90QiNwqj2bxtH/fdYOLkvkFdNHSr12Gdwf4F+mKHLy0wLqra7bt7fMVhZPsMwIbV7vigAPXpgWn/9zhxXtDjrswevBTmQtrx5umHkRHn5r3R4bXyrXvW8WMjA6/X2NwYFQrVHGEjpG1hOGQj1JWopYVs0hN+3FjVs3n+RHJrtk0ApUg6d7qtYqTkzDn7mwRyrXPym96RbhpzarM5YWcFAHDPLD2/E/KTgDjNciZdmHnjcUTNoFfoGByPmtuUGgpO2jf8+1V5fGxpW/dFis7swOLaMDWf4d2ndFubcPVSUOKKgxOOdXRs9auQCwT5rvR4lJALT2W4sgEp11fwW+qIJxpKWq4AHTWJCWlIBVCToJJ3FNTOMvyLkExfquF/kG5nO5XVjqg+eCLzTjcB91EwAmZBndHCx2ZfUuo4j3lxZLanpQIqsLiM/EhOVvany1pdJvNl3ncV/4PuBbvhmd1eqzeS2yRWeE16c0UpJ193drFurQ50GDr+Npo/qOE9DIeevZnwGzcNeAI7tK6XYQoEphluYMZa7xGGi7ix+MMq4utN7qJii2++wmWHG0gruiTdrZ8= + 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 - skip_cleanup: true on: tags: true repo: Joystream/substrate-node-joystream @@ -42,9 +41,8 @@ deploy: overwrite: true - provider: releases api_key: - secure: fAfOHxF+yiUqqTRPT2q3SvKXgjGhb6FhH1musNNr2179Onjt0eFVD5vTPb3VJ6BtpxXyo5PJTCtGoGmKaYmvtyFukhbOnwyYWh7h13bV90QiNwqj2bxtH/fdYOLkvkFdNHSr12Gdwf4F+mKHLy0wLqra7bt7fMVhZPsMwIbV7vigAPXpgWn/9zhxXtDjrswevBTmQtrx5umHkRHn5r3R4bXyrXvW8WMjA6/X2NwYFQrVHGEjpG1hOGQj1JWopYVs0hN+3FjVs3n+RHJrtk0ApUg6d7qtYqTkzDn7mwRyrXPym96RbhpzarM5YWcFAHDPLD2/E/KTgDjNciZdmHnjcUTNoFfoGByPmtuUGgpO2jf8+1V5fGxpW/dFis7swOLaMDWf4d2ndFubcPVSUOKKgxOOdXRs9auQCwT5rvR4lJALT2W4sgEp11fwW+qIJxpKWq4AHTWJCWlIBVCToJJ3FNTOMvyLkExfquF/kG5nO5XVjqg+eCLzTjcB91EwAmZBndHCx2ZfUuo4j3lxZLanpQIqsLiM/EhOVvany1pdJvNl3ncV/4PuBbvhmd1eqzeS2yRWeE16c0UpJ193drFurQ50GDr+Npo/qOE9DIeevZnwGzcNeAI7tK6XYQoEphluYMZa7xGGi7ix+MMq4utN7qJii2++wmWHG0gruiTdrZ8= + 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 - skip_cleanup: true on: branch: development repo: Joystream/substrate-node-joystream From fab0db69452c97c7ce8d974600444aa4ecba8d8e Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 13 Mar 2020 21:17:19 +0400 Subject: [PATCH 302/350] travis: skip cleanup on deploy and disable cache --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 12cd87f4ef..8c4a504707 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,8 @@ language: rust rust: - 1.41.1 -cache: - cargo +# cache: +# cargo os: - linux @@ -39,6 +39,7 @@ deploy: 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= @@ -49,3 +50,4 @@ deploy: draft: true prerelease: true overwrite: true + skip_cleanup: true From c5ae938d12838a6108bc0ba904f59661b0484faa Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 14 Mar 2020 17:33:14 +0400 Subject: [PATCH 303/350] travis: build raspberry pi binary --- .travis.yml | 69 ++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 50 insertions(+), 19 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8c4a504707..e972b1ba95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,29 +3,49 @@ language: rust rust: - 1.41.1 -# cache: -# cargo +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 -os: - - linux - - osx -# - windows - -before_script: - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then export TARGET=x86_64-apple-darwin ; fi - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then export TARGET=x86_64-unknown-linux-gnu ; fi - - if [ "$TRAVIS_OS_NAME" = "windows" ]; then export TARGET=x86_64-pc-windows-msvc ; fi +before_install: - rustup component add rustfmt - - rustup update nightly - - rustup target add ${TARGET} - - rustup target add wasm32-unknown-unknown --toolchain nightly - - rustup show + - cargo fmt --all -- --check + +install: + - | + if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ] + then + docker pull joystream/rust-raspberry + else + rustup update nightly + rustup target add ${TARGET} + rustup target add wasm32-unknown-unknown --toolchain nightly + rustup show + fi script: - - cargo fmt --all -- --check - - cargo build --release --target=${TARGET} - - mv ./target/${TARGET}/release/joystream-node . - - export FILENAME=`./joystream-node --version | sed -e "s/ /-/g"` + - | + if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ] + then + export FILENAME="joystream-node-armv7-linux-gnueabihf" + 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 + export FILENAME="joystream-node-x86_64-linux-gnu" + cargo build --release --target=${TARGET} + fi + +before_deploy: + - cp ./target/${TARGET}/release/joystream-node . - tar -cf ${FILENAME}.tar ./joystream-node - gzip ${FILENAME}.tar @@ -51,3 +71,14 @@ deploy: 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 From 00c871d3c6db0918a1e05f51bc470137e467529c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 14 Mar 2020 17:40:46 +0400 Subject: [PATCH 304/350] travis: use correct filename per platform --- .travis.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e972b1ba95..1df1126bc1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,19 +33,24 @@ script: - | if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ] then - export FILENAME="joystream-node-armv7-linux-gnueabihf" 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 - export FILENAME="joystream-node-x86_64-linux-gnu" 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 From 2be09710bfaf4a8e3d5d278aff39f34ef137ba48 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 14 Mar 2020 21:29:37 +0400 Subject: [PATCH 305/350] update readme for Rome --- README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 61b0a08723..d47acf3ba2 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,13 @@ cargo build --release Run the node and connect to the public testnet ```bash -cargo run --release +cargo run --release --chain chain-file.json ``` +The chain file for the required testnet is also avilable on the [releases](https://github.com/Joystream/substrate-node-joystream/releases) page. + +The current public testnet is Rome. So you would download the rome-testnet.json file to use. + ### 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. @@ -46,7 +50,7 @@ cargo install --path ./ Now you can run ```bash -joystream-node +joystream-node --chain chain-file.json ``` ## Development @@ -86,8 +90,18 @@ 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 -docker run -d -p 30333:30333 --name my-node joystream/node +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 From f69cf8c05ce2c5b26996dc648ad9fa5a2a6d6643 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 16 Mar 2020 11:42:02 +0400 Subject: [PATCH 306/350] update README --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d47acf3ba2..d0012a8f5d 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ cargo run --release -- purge-chain --dev #### Building localy -A joystream-node can be compiled with give [Dockerfile](Dockerfile) file: +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 @@ -92,6 +92,7 @@ docker pull joystream/node Create a working directory to store the node's data and where you will need to place the chain file. +Download the [Rome Testnet chain file](https://github.com/Joystream/substrate-node-joystream/releases/download/v2.1.2/rome-tesnet.json) ```bash mkdir ${HOME}/joystream-node-data/ @@ -109,5 +110,3 @@ docker ps # monitor logs docker logs --tail 100 -f my-node ``` - -[More advanced guide]() \ No newline at end of file From 3fb0d32c529d9026c06b508473030d26af961006 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 16 Mar 2020 13:06:31 +0400 Subject: [PATCH 307/350] split package into bin and lib --- Cargo.toml | 13 +++++++++---- {src => bin}/main.rs | 7 +------ src/lib.rs | 5 +++++ 3 files changed, 15 insertions(+), 10 deletions(-) rename {src => bin}/main.rs (94%) create mode 100644 src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index e7201b1220..5b6ee9f15f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,18 @@ -[[bin]] -name = 'joystream-node' -path = 'src/main.rs' - [package] authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' version = '2.1.2' +default-run = "joystream-node" + +[[bin]] +# is there a name conflict with package name? +name = 'joystream-node' +path = 'bin/main.rs' + +[lib] +crate-type = ["cdylib", "rlib"] [dependencies] hex-literal = '0.2.1' diff --git a/src/main.rs b/bin/main.rs similarity index 94% rename from src/main.rs rename to bin/main.rs index 2b28c34fb5..70006bf571 100644 --- a/src/main.rs +++ b/bin/main.rs @@ -19,12 +19,7 @@ #![warn(missing_docs)] #![warn(unused_extern_crates)] -mod chain_spec; -mod cli; -mod forum_config; -mod members_config; -mod service; - +use joystream_node::cli; pub use substrate_cli::{error, IntoExit, VersionInfo}; fn main() { diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000000..d0b23aa71a --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,5 @@ +pub mod chain_spec; +pub mod cli; +pub mod forum_config; +pub mod members_config; +pub mod service; From c5927dfdd1491af3e85bf066f371b9231981a4d6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 16 Mar 2020 14:40:34 +0400 Subject: [PATCH 308/350] chainspec builder tool --- Cargo.lock | 2 +- Cargo.toml | 3 +- chain-spec-builder/Cargo.lock | 6258 ++ chain-spec-builder/Cargo.toml | 30 + chain-spec-builder/build.rs | 23 + chain-spec-builder/src/main.rs | 267 + res/dummy.json | 1 - res/rome-experimental.json | 112766 ------------------------------ src/chain_spec.rs | 225 +- 9 files changed, 6592 insertions(+), 112983 deletions(-) create mode 100644 chain-spec-builder/Cargo.lock create mode 100644 chain-spec-builder/Cargo.toml create mode 100644 chain-spec-builder/build.rs create mode 100644 chain-spec-builder/src/main.rs delete mode 100644 res/dummy.json delete mode 100644 res/rome-experimental.json diff --git a/Cargo.lock b/Cargo.lock index e04bd1a274..d78e8d849a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1364,7 +1364,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "2.1.2" +version = "2.1.3" dependencies = [ "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 5b6ee9f15f..023417ebf0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,11 +3,10 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '2.1.2' +version = '2.1.3' default-run = "joystream-node" [[bin]] -# is there a name conflict with package name? name = 'joystream-node' path = 'bin/main.rs' diff --git a/chain-spec-builder/Cargo.lock b/chain-spec-builder/Cargo.lock new file mode 100644 index 0000000000..5eb302a58a --- /dev/null +++ b/chain-spec-builder/Cargo.lock @@ -0,0 +1,6258 @@ +# 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.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff" + +[[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.16", +] + +[[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.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad235dabf00f36301792cfe82499880ba54c6486be094d1047b02bacb67c14e8" +dependencies = [ + "backtrace-sys", + "cfg-if", + "libc", + "rustc-demangle", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca797db0057bae1a7aa2eef3283a874695455cecf08a43bfb8507ee0ebc1ed69" +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.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f359dc14ff8911330a51ef78022d376f25ed00248912803b58f00cb1c27f742" + +[[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.11", +] + +[[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.11", +] + +[[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 = "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 = "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.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "807e5847c39ad6a11eac66de492ed1406f76a260eb8656e8740cad9eabc69c27" + +[[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.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd7d80305c9bd8cd78e3c753eb9fb110f83621e5211f1a3afffcc812b104daf9" +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.9", + "quote 1.0.3", + "syn 1.0.16", + "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.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f" +dependencies = [ + "cfg-if", + "crc32fast", + "futures 0.1.29", + "libc", + "libz-sys", + "miniz_oxide", + "tokio-io", +] + +[[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 = "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.11", + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.11", + "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.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" +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.11", +] + +[[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.11", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.2" +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.8.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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-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.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" +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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.67" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018" + +[[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.9", + "syn 1.0.16", + "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.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" +dependencies = [ + "rustc_version", +] + +[[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 = "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 = "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.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da4dc79f9e6c81bef96148c8f6b8e72ad4541caa4a24373e900a36da07de03a3" +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 = "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.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f509c5e67ca0605ee17dcd3f91ef41cadd685c75a298fb6261b781a5acb3f910" +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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e1afe738d71b1ebab5f1207c055054015427dbfc7bbe9ee1266894156ec046" +dependencies = [ + "paste-impl", + "proc-macro-hack 0.5.11", +] + +[[package]] +name = "paste-impl" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d4dc4a7f6f743211c5aab239640a65091535d97d43d92a52bca435a640892bb" +dependencies = [ + "proc-macro-hack 0.5.11", + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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 = "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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" +dependencies = [ + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" + +[[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.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" +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.9", +] + +[[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.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8900ebc1363efa7ea1c399ccc32daed870b4002651e0bed86e72d501ebbe0048" +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.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "741ba1704ae21999c00942f9f5944f801e977f54302af346b596287599ad1862" +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.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" +dependencies = [ + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[package]] +name = "serde_json" +version = "1.0.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25" +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#107848e7ded5e80dc43f6296c2b96039eb92c0a5" +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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "sr-api-macros", + "srml-support-procedural-tools", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "srml-support-procedural-tools-derive", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +dependencies = [ + "parity-scale-codec", + "serde", + "sr-primitives", + "sr-std", + "srml-support", + "srml-system", + "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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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", +] + +[[package]] +name = "substrate-governance-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +dependencies = [ + "parity-scale-codec", + "serde", + "sr-primitives", + "sr-std", + "srml-support", + "srml-system", + "srml-timestamp", + "substrate-common-module", + "substrate-membership-module", + "substrate-primitives", +] + +[[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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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-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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +dependencies = [ + "parity-scale-codec", + "serde", + "sr-primitives", + "sr-std", + "srml-support", + "srml-system", + "srml-timestamp", + "substrate-common-module", + "substrate-primitives", +] + +[[package]] +name = "substrate-memo-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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-recurring-reward-module" +version = "1.0.1" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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-token-mint-module", +] + +[[package]] +name = "substrate-roles-module" +version = "1.0.0" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +dependencies = [ + "parity-scale-codec", + "serde", + "sr-primitives", + "sr-std", + "srml-support", + "srml-system", + "substrate-common-module", + "substrate-membership-module", +] + +[[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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +dependencies = [ + "parity-scale-codec", + "serde", + "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 = "1.0.1" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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", +] + +[[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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +dependencies = [ + "parity-scale-codec", + "serde", + "sr-primitives", + "sr-std", + "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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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", +] + +[[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" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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", +] + +[[package]] +name = "substrate-versioned-store-permissions-module" +version = "1.0.1" +source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" +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-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.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859" +dependencies = [ + "proc-macro2 1.0.9", + "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.9", + "quote 1.0.3", + "syn 1.0.16", + "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 = "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.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3557c397ab5a8e347d434782bcd31fc1483d927a6826804cec05cc792ee2519d" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0da9c9a19850d3af6df1cb9574970b566d617ecfaf36eb0b706b6f3ef9bd2f8" +dependencies = [ + "bumpalo", + "lazy_static", + "log", + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", + "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.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f6fde1d36e75a714b5fe0cffbb78978f222ea6baebb726af13c78869fdb4205" +dependencies = [ + "quote 1.0.3", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25bda4168030a6412ea8a047e27238cadf56f0e53516e1e83fec0a8b7c786f6d" +dependencies = [ + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc9f36ad51f25b0219a3d4d13b90eb44cd075dff8b6280cca015775d7acaddd8" + +[[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.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "721c6263e2c66fd44501cc5efbfa2b7dfa775d13e4ea38c46299646ed1f9c70a" +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.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" +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.9", + "quote 1.0.3", + "syn 1.0.16", + "synstructure", +] diff --git a/chain-spec-builder/Cargo.toml b/chain-spec-builder/Cargo.toml new file mode 100644 index 0000000000..8872edf95f --- /dev/null +++ b/chain-spec-builder/Cargo.toml @@ -0,0 +1,30 @@ +[package] +name = "chain-spec-builder" +version = "2.0.0-alpha.3" +authors = ["Parity Technologies "] +edition = "2018" +build = "build.rs" +license = "GPL-3.0" +homepage = "https://substrate.dev" +repository = "https://github.com/paritytech/substrate/" + +[dependencies] +ansi_term = "0.12.1" +rand = "0.7.2" +structopt = "0.3.5" +joystream-node = { version = "2.1.2", path = "../" } + +[dependencies.sr-keystore] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-keystore' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' + +[dependencies.sr-primitives] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-primitives' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' + +[dependencies.substrate-telemetry] +git = 'https://github.com/paritytech/substrate.git' +package = 'substrate-telemetry' +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' diff --git a/chain-spec-builder/build.rs b/chain-spec-builder/build.rs new file mode 100644 index 0000000000..4b546b4a43 --- /dev/null +++ b/chain-spec-builder/build.rs @@ -0,0 +1,23 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Substrate. + +// Substrate 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. + +// Substrate 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 Substrate. If not, see . + +use std::env; + +fn main() { + if let Ok(profile) = env::var("PROFILE") { + println!("cargo:rustc-cfg=build_type=\"{}\"", profile); + } +} diff --git a/chain-spec-builder/src/main.rs b/chain-spec-builder/src/main.rs new file mode 100644 index 0000000000..015160a7aa --- /dev/null +++ b/chain-spec-builder/src/main.rs @@ -0,0 +1,267 @@ +// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// This file is part of Substrate. + +// Substrate 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. + +// Substrate 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 Substrate. If not, see . + +use std::{ + fs, + path::{Path, PathBuf}, +}; + +use ansi_term::Style; +use rand::{distributions::Alphanumeric, rngs::OsRng, Rng}; +use structopt::StructOpt; + +use joystream_node::chain_spec::{self, chain_spec_properties, AccountId}; +use sr_keystore::Store as Keystore; +use sr_primitives::{ + crypto::{Public, Ss58Codec}, + sr25519, + traits::BareCryptoStore, +}; + +use substrate_telemetry::TelemetryEndpoints; +const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; + +/// A utility to easily create a testnet chain spec definition with a given set +/// of authorities and endowed accounts and/or generate random accounts. +#[derive(StructOpt)] +#[structopt(rename_all = "kebab-case")] +enum ChainSpecBuilder { + /// Create a new chain spec with the given authorities, endowed and sudo + /// accounts. + New { + /// Authority key seed. + #[structopt(long, short, required = true)] + authority_seeds: Vec, + /// Endowed account address (SS58 format). + #[structopt(long, short)] + endowed_accounts: Vec, + /// Sudo account address (SS58 format). + #[structopt(long, short)] + sudo_account: String, + /// The path where the chain spec should be saved. + #[structopt(long, short, default_value = "./chain_spec.json")] + chain_spec_path: PathBuf, + }, + /// Create a new chain spec with the given number of authorities and endowed + /// accounts. Random keys will be generated as required. + Generate { + /// The number of authorities. + #[structopt(long, short)] + authorities: usize, + /// The number of endowed accounts. + #[structopt(long, short, default_value = "0")] + endowed: usize, + /// The path where the chain spec should be saved. + #[structopt(long, short, default_value = "./chain_spec.json")] + chain_spec_path: PathBuf, + /// Path to use when saving generated keystores for each authority. + /// + /// At this path, a new folder will be created for each authority's + /// keystore named `auth-$i` where `i` is the authority index, i.e. + /// `auth-0`, `auth-1`, etc. + #[structopt(long, short)] + keystore_path: Option, + }, +} + +impl ChainSpecBuilder { + /// Returns the path where the chain spec should be saved. + fn chain_spec_path(&self) -> &Path { + match self { + ChainSpecBuilder::New { + chain_spec_path, .. + } => chain_spec_path.as_path(), + ChainSpecBuilder::Generate { + chain_spec_path, .. + } => chain_spec_path.as_path(), + } + } +} + +fn genesis_constructor( + authority_seeds: &[String], + endowed_accounts: &[AccountId], + sudo_account: &AccountId, +) -> chain_spec::GenesisConfig { + let authorities = authority_seeds + .iter() + .map(AsRef::as_ref) + .map(chain_spec::get_authority_keys_from_seed) + .collect::>(); + + // let enable_println = true; + + chain_spec::testnet_genesis( + authorities, + sudo_account.clone(), + endowed_accounts.to_vec(), + // enable_println, + ) +} + +fn generate_chain_spec( + authority_seeds: Vec, + endowed_accounts: Vec, + sudo_account: String, +) -> Result { + let parse_account = |address: &String| { + AccountId::from_string(address) + .map_err(|err| format!("Failed to parse account address: {:?}", err)) + }; + + let endowed_accounts = endowed_accounts + .iter() + .map(parse_account) + .collect::, String>>()?; + + let sudo_account = parse_account(&sudo_account)?; + + // let boot_nodes = vec![String::from( + // "/dns4/tesnet.joystream.org/tcp/30333/p2p/QmaTTdEF6YVCtynSjsXmGPSGcEesAahoZ8pmcCmmBwSE7S", + // )]; + + let chain_spec = chain_spec::ChainSpec::from_genesis( + "Joystream Testnet", + "joy_testnet", + move || genesis_constructor(&authority_seeds, &endowed_accounts, &sudo_account), + // below can be manually modified in chainspec file, they don't affect genesis state + // but we set some default values here for convenience. + vec![], + Some(TelemetryEndpoints::new(vec![( + STAGING_TELEMETRY_URL.to_string(), + 0, + )])), + // protocol_id + Some(&*"/joy/testnet/0"), + // Properties + Some(chain_spec_properties()), + // Extensions + None, // Default::default(), + ); + + chain_spec.to_json(false).map_err(|err| err.to_string()) +} + +fn generate_authority_keys_and_store(seeds: &[String], keystore_path: &Path) -> Result<(), String> { + for (n, seed) in seeds.into_iter().enumerate() { + let keystore = Keystore::open(keystore_path.join(format!("auth-{}", n)), None) + .map_err(|err| err.to_string())?; + + let (_, _, grandpa, babe, im_online) = chain_spec::get_authority_keys_from_seed(seed); + + let insert_key = |key_type, public| { + keystore + .write() + .insert_unknown(key_type, &format!("//{}", seed), public) + .map_err(|_| format!("Failed to insert key: {}", grandpa)) + }; + + insert_key(sr_primitives::crypto::key_types::BABE, babe.as_slice())?; + + insert_key( + sr_primitives::crypto::key_types::GRANDPA, + grandpa.as_slice(), + )?; + + insert_key( + sr_primitives::crypto::key_types::IM_ONLINE, + im_online.as_slice(), + )?; + } + + Ok(()) +} + +fn print_seeds(authority_seeds: &[String], endowed_seeds: &[String], sudo_seed: &str) { + let header = Style::new().bold().underline(); + let entry = Style::new().bold(); + + println!("{}", header.paint("Authority seeds")); + + for (n, seed) in authority_seeds.iter().enumerate() { + println!("{} //{}", entry.paint(format!("auth-{}:", n)), seed,); + } + + println!(); + + if !endowed_seeds.is_empty() { + println!("{}", header.paint("Endowed seeds")); + for (n, seed) in endowed_seeds.iter().enumerate() { + println!("{} //{}", entry.paint(format!("endowed-{}:", n)), seed,); + } + + println!(); + } + + println!("{}", header.paint("Sudo seed")); + println!("//{}", sudo_seed); +} + +fn main() -> Result<(), String> { + #[cfg(build_type = "debug")] + println!( + "The chain spec builder builds a chain specification that includes a Substrate runtime compiled as WASM. To \ + ensure proper functioning of the included runtime compile (or run) the chain spec builder binary in \ + `--release` mode.\n", + ); + + let builder = ChainSpecBuilder::from_args(); + let chain_spec_path = builder.chain_spec_path().to_path_buf(); + + let (authority_seeds, endowed_accounts, sudo_account) = match builder { + ChainSpecBuilder::Generate { + authorities, + endowed, + keystore_path, + .. + } => { + let authorities = authorities.max(1); + let rand_str = || -> String { OsRng.sample_iter(&Alphanumeric).take(32).collect() }; + + let authority_seeds = (0..authorities).map(|_| rand_str()).collect::>(); + let endowed_seeds = (0..endowed).map(|_| rand_str()).collect::>(); + let sudo_seed = rand_str(); + + print_seeds(&authority_seeds, &endowed_seeds, &sudo_seed); + + if let Some(keystore_path) = keystore_path { + generate_authority_keys_and_store(&authority_seeds, &keystore_path)?; + } + + let endowed_accounts = endowed_seeds + .iter() + .map(|seed| { + chain_spec::get_account_id_from_seed::(seed).to_ss58check() + }) + .collect(); + + let sudo_account = + chain_spec::get_account_id_from_seed::(&sudo_seed).to_ss58check(); + + (authority_seeds, endowed_accounts, sudo_account) + } + ChainSpecBuilder::New { + authority_seeds, + endowed_accounts, + sudo_account, + .. + } => (authority_seeds, endowed_accounts, sudo_account), + }; + + let json = generate_chain_spec(authority_seeds, endowed_accounts, sudo_account)?; + + fs::write(chain_spec_path, json).map_err(|err| err.to_string()) +} diff --git a/res/dummy.json b/res/dummy.json deleted file mode 100644 index 0967ef424b..0000000000 --- a/res/dummy.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/res/rome-experimental.json b/res/rome-experimental.json deleted file mode 100644 index 59fcb92aa5..0000000000 --- a/res/rome-experimental.json +++ /dev/null @@ -1,112766 +0,0 @@ -{ - "name": "Joystream Experimental", - "id": "joy_experimental_1", - "bootNodes": [ - "/dns4/rome-staging-1.joystream.org/tcp/30333/p2p/QmU75SBZ4ACL4ba4H8TfJoZL2itNrp8tDr9rmqFWz94Ay1" - ], - "telemetryEndpoints": [ - [ - "wss://telemetry.polkadot.io/submit/", - 0 - ] - ], - "protocolId": "/joy/experimental/1", - "properties": { - "tokenDecimals": 0, - "tokenSymbol": "JOY" - }, - "consensusEngine": null, - "genesis": { - "runtime": { - "system": { - "changesTrieConfig": null, - "code": "0x0061736d0100000001fe023460037f7f7f017f60027f7f017f60017f0060027f7f0060017f017e60037f7f7f0060057f7f7f7f7f017f60047f7f7f7f0060017e006000017f60047f7f7f7f017f60077f7f7f7f7f7f7f017f60017f017f60057f7f7f7f7f0060027f7f017e60000060027e7f017f60067f7f7e7e7f7f0060057f7f7e7f7f0060067f7f7e7f7f7f0060067f7f7f7e7f7f0060027f7e0060027f7e017f60077f7f7e7e7f7e7f0060057f7f7e7e7e0060087f7f7e7e7f7e7f7f0060027e7f0060017e017f60047f7e7f7f0060067f7f7e7e7e7e0060067f7e7e7f7f7f0060047f7f7e7f0060057f7f7e7e7f006000017e60047f7f7e7e0060057f7f7f7e7e0060037f7e7e017f60037f7e7e0060077f7e7f7f7f7f7f017f60037f7e7f0060067f7f7e7f7e7e0060037f7f7e0060097f7f7f7f7f7f7f7f7f0060057e7f7f7f7f017f60087f7e7e7e7e7e7e7e0060057f7e7e7e7f0060077f7e7e7e7e7e7e0060037f7e7f017f60037f7f7f017e60047f7e7e7f0060057f7e7e7e7e0060067f7e7e7e7e7f0002fc051e03656e760c6578745f74776f785f313238000503656e760e6578745f626c616b65325f323536000503656e76146578745f6765745f73746f726167655f696e746f000603656e76196578745f6765745f616c6c6f63617465645f73746f72616765000003656e76116578745f636c6561725f73746f72616765000303656e760f6578745f7365745f73746f72616765000703656e760e6578745f7072696e745f75746638000303656e760d6578745f7072696e745f686578000303656e760d6578745f7072696e745f6e756d000803656e76106578745f69735f76616c696461746f72000903656e76156578745f6c6f63616c5f73746f726167655f676574000a03656e76216578745f6c6f63616c5f73746f726167655f636f6d706172655f616e645f736574000b03656e76116578745f6e6574776f726b5f7374617465000c03656e76106578745f737232353531395f7369676e000603656e76166578745f7375626d69745f7472616e73616374696f6e000103656e76156578745f6c6f63616c5f73746f726167655f736574000d03656e76126578745f737232353531395f766572696679000a03656e76146578745f656432353531395f67656e6572617465000703656e76146578745f737232353531395f67656e6572617465000703656e76106578745f73746f726167655f726f6f74000203656e76186578745f73746f726167655f6368616e6765735f726f6f74000003656e76106578745f636c6561725f707265666978000303656e76266578745f736563703235366b315f65636473615f7265636f7665725f636f6d70726573736564000003656e76126578745f656432353531395f766572696679000a03656e76236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74000703656e760a6578745f6d616c6c6f63000c03656e76086578745f66726565000203656e760b6578745f74776f785f3634000503656e76076578745f6c6f67000d03656e76176578745f737232353531395f7075626c69635f6b657973000103ba05b8050c0c020200000c0c0e0f050305000f030d000101010301100204060a030300070101010301010105010100070601010001010001000201010101011112131314030315030303030c051516050d0205171819050305030303030205091a15031503031503030303150303031b151c1d030303050303030302020303030305050e0e030203030307020202020303010e030e030503030e03030e0303030e030503030303030e030e020e030305030305051e020e0203020109010e030e03030e03030e0e0e0e0315030303020303030303020302010101010303020702021f02030202050302050202030302030502020c02030302032002021503050303030f050202020305050502020203210502030003220202030303030302020202020202020202020202020202020202020202020202030215031515151503030303020303030303030c03151515030303081a1a05150315152202050302030523050303030c150303050505030505032403030c22250105032525030303030303030303030305030303020303152203030315030303151502031a03020503030303030203031a03031f260503032702030203030203030303030303030303020302030c032422112803020303030305031515031503030303150303030303030303040203030303030303031a2910102a2903051515152b071a232c2d0115030203030303030102020202030303020203030303030303030302030303031503032203030305052e2505010315030a250103020303030303030201010c0303020203010102020302030f020303030303240305020307020203020205020203020203030305031a070303050202030202032f0302020303050303030303030303151515151c1a0202020302030502021a0203020203030303030330272727150201030202050c030103010103000101010102000000003131323232330407017001d301d30105030100120619037f01418080c0000b7f0041ac8ac7000b7f0041ac8ac7000b07f80417066d656d6f72790200195f5f696e6469726563745f66756e6374696f6e5f7461626c65010009686173685f7465737400260c436f72655f76657273696f6e009d0112436f72655f657865637574655f626c6f636b009e0115436f72655f696e697469616c697a655f626c6f636b00ac01114d657461646174615f6d6574616461746100ae011c426c6f636b4275696c6465725f6170706c795f65787472696e73696300b3011b426c6f636b4275696c6465725f66696e616c697a655f626c6f636b00b60120426c6f636b4275696c6465725f696e686572656e745f65787472696e7369637300ba011c426c6f636b4275696c6465725f636865636b5f696e686572656e747300c20118426c6f636b4275696c6465725f72616e646f6d5f7365656400c4012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6e00c601214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b657200d0011e4772616e6470614170695f6772616e6470615f617574686f72697469657300d70115426162654170695f636f6e66696775726174696f6e00d90121417574686f72697479446973636f766572794170695f617574686f72697469657300dc011a417574686f72697479446973636f766572794170695f7369676e00df011c417574686f72697479446973636f766572794170695f76657269667900e0011d4163636f756e744e6f6e63654170695f6163636f756e745f6e6f6e636500e1012153657373696f6e4b6579735f67656e65726174655f73657373696f6e5f6b65797300e2010a5f5f646174615f656e6403010b5f5f686561705f626173650302099203010041010bd2013432463ec1053f4051ab01d601f401f3019704ca0447c305a0052f30315637484b4c4d4e4f5455589701a305ea01e9018f05ef01ac04ab05aa04fb0487028602db0490028f02f10143a802ac02b202f8045785028402b702f3048b02c903cb03a602a502a702a805a7059502b802f704f604b902f904b002b102a904a804ba02b304a205a105bb02a4058805890586058505bc02da04d904bd02fa04be02f001df04de04bf02ce03d903c002e404f004c102c202c302c402f104f404c502ad05b905c6028e058d05c702d304c802db03e403c902aa05ac05ca02f701f901cb02fa01fc01cc028e029102cd02e801ce0296019501ab02ee01bd03cc04fd03a104cf02d002bf03be03c905ca03cd03cc03d803d703d603d503d403d303d203d103d003cf03dc038304820481048004ff03fe03a004d404af04ae04ad04ab04b504b404ce04cd04d504dc04f201dd04e004e904e804e704e604e504f20483058205840587058a05930592059005a505b205b105b005af05ae05ba05bb05bc0544c405c505c605c705c805ca050ad6e64bb80506002000101f0b0600200010190b0600200010210b06002000101a0b0a0020002001200210230b2801017f0240200210192203450d002003200020022001200120024b1b10cd051a2000101a0b20030b0600200010250b1c01017f0240200010192201450d0020014100200010cc051a0b20010bff0202017f037e230041206b220224002001ad42adfed5e4d485fda8d8007e42b9e0007c210302400240024002400240200141084b0d00200141014b0d0120010d02420021040c030b0240200141104b0d00200241106a2000290000200385420042adfed5e4d485fda8d800420010d205200241186a29030020022903107c200120006a41786a2900008521040c040b200120006a41786a2900002105200321040340200029000020048542adfed5e4d485fda8d8007e42178942adfed5e4d485fda8d8007e2003852103200041086a2100200442cf829ebbefefde82147c2104200141786a220141084b0d000b200320058521040c030b0240200141034b0d00200120006a417e6a33000042108620003300008420038521040c030b200120006a417c6a35000042208620003500008420038521040c020b200031000021040b200420038521040b20022004420042adfed5e4d485fda8d800420010d205200241086a290300210420022903002103200241206a2400200420037c42c300850b1100418080c0004111419480c0001028000b4701017f230041206b22032400200341146a4100360200200341e4fdc600360210200342013702042003200136021c200320003602182003200341186a360200200320021033000b8f0301067f230041306b2202240020012802002103024002402001280204220441037422050d00410021060c010b200341046a2107410021060340200728020020066a2106200741086a2107200541786a22050d000b0b024002400240024002400240200141146a2802000d00200621070c010b024020040d0041bc80c00041004100102a000b024002402006410f4b0d00200341046a280200450d010b200620066a220720064f0d010b4101210541002107200241086a21060c010b2007417f4c0d01200241086a2106024020070d0041012105410021070c010b2007101e2205450d020b200241003602102002200736020c200220053602082002200241086a360214200241186a41106a200141106a290200370300200241186a41086a200141086a29020037030020022001290200370318200241146a41cc80c000200241186a102b0d0220002006290200370200200041086a200641086a280200360200200241306a24000f0b102c000b20074101102d000b41e480c0004133200241186a419881c00041a881c000102e000b6c01017f230041306b2203240020032002360204200320013602002003411c6a41023602002003412c6a41013602002003420237020c2003419484c000360208200341013602242003200341206a360218200320033602282003200341046a360220200341086a20001033000bba06010a7f230041306b22032400200341246a2001360200200341033a002820034280808080800437030820032000360220410021042003410036021820034100360210024002400240024020022802082205450d0020022802002106200228020422072002410c6a2802002208200820074b1b2209450d01200241146a280200210a2002280210210b41012108200020062802002006280204200128020c1100000d03200541106a2102200641086a2100410121040240024003402003200241746a28020036020c20032002410c6a2d00003a00282003200241786a280200360208200241086a28020021084100210541002101024002400240200241046a2802000e03010002010b2008200a4f0d032008410374210c41002101200b200c6a220c2802044102470d01200c28020028020021080b410121010b2003200836021420032001360210200228020021080240024002402002417c6a2802000e03010002010b2008200a4f0d0420084103742101200b20016a22012802044102470d01200128020028020021080b410121050b2003200836021c200320053602180240200241706a2802002208200a4f0d00200b20084103746a2208280200200341086a20082802041101000d06200420094f0d05200041046a210120002802002105200241206a2102200041086a210041012108200441016a2104200328022020052001280200200328022428020c110000450d010c070b0b41e889c0002008200a102a000b41d889c0002008200a102a000b41d889c0002008200a102a000b2002280200210620022802042207200241146a2802002208200820074b1b220a450d002002280210210241012108200020062802002006280204200128020c1100000d02200641086a21004101210403402002280200200341086a200241046a2802001101000d022004200a4f0d01200041046a210120002802002105200241086a2102200041086a210041012108200441016a2104200328022020052001280200200328022428020c110000450d000c030b0b0240200720044d0d00410121082003280220200620044103746a22022802002002280204200328022428020c1100000d020b410021080c010b410121080b200341306a240020080b05001027000b0e0041a0e7c600412210c20500000b7e01017f230041c0006b220524002005200136020c2005200036020820052003360214200520023602102005412c6a41023602002005413c6a41033602002005420237021c200541a4c1c500360218200541043602342005200541306a3602282005200541106a3602382005200541086a360230200541186a20041033000bc10101037f024002402000280200220041046a2802002203200041086a28020022046b2002490d00200028020021030c010b0240200420026a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200028020020032004102221030b02402003450d0020002003360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420026a360200200320046a2001200210cd051a41000bd30401057f230041106b220224002000280200210002400240024002400240024002402001418001490d002002410036020c2001418010490d012002410c6a210302402001418080044f0d0020022001413f71418001723a000e20022001410676413f71418001723a000d20022001410c76410f7141e001723a000c410321010c040b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d410421010c030b024020002802082204200041046a280200460d00200028020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200028020020042003102221050b02402005450d0020002005360200200041046a2003360200200028020821040c020b20034101102d000b20022001413f71418001723a000d20022001410676411f7141c001723a000c2002410c6a2103410221010c010b200520046a20013a00002000200028020841016a3602080c030b0240200041046a2802002205200041086a28020022046b2001490d00200028020021050c020b200420016a22062004490d00200541017422042006200420064b1b22044100480d000240024020050d002004101e21050c010b200028020020052004102221050b02402005450d0020002005360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420016a360200200520046a2003200110cd051a0b200241106a240041000b6301017f230041206b2202240020022000280200360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41cc80c000200241086a102b2101200241206a240020010b0300000b3401017f230041106b220224002002200136020c20022000360208200241a484c000360204200241e4fdc60036020020021036000b0b002000350200200110350bd20203027f017e037f230041306b22022400412721030240024020004290ce005a0d00200021040c010b412721030340200241096a20036a2205417c6a200020004290ce0080220442f0b17f7e7ca7220641ffff037141e4006e220741017441e684c0006a2f00003b00002005417e6a2007419c7f6c20066a41ffff037141017441e684c0006a2f00003b00002003417c6a2103200042ffc1d72f5621052004210020050d000b0b02402004a7220541e3004c0d00200241096a2003417e6a22036a2004a7220641ffff037141e4006e2205419c7f6c20066a41ffff037141017441e684c0006a2f00003b00000b024002402005410a480d00200241096a2003417e6a22036a200541017441e684c0006a2f00003b00000c010b200241096a2003417f6a22036a200541306a3a00000b200141e4fdc6004100200241096a20036a412720036b10382103200241306a240020030b6601017f230041c0006b220124002001200036020c200141346a41013602002001420137022420014198e7c6003602202001410536023c2001200141386a36023020012001410c6a360238200141106a200141206a10292001280210200128021810c20500000b0d0042bf8ba683c682bb9da07f0be80501067f20002802002205410171220620046a21070240024020054104710d00410021010c010b4100210802402002450d00200221092001210a03402008200a2d000041c00171418001466a2108200a41016a210a2009417f6a22090d000b0b200720026a20086b21070b412b418080c40020061b21080240024020002802084101460d004101210a200020082001200210390d012000280218200320042000411c6a28020028020c110000210a0c010b02402000410c6a280200220920074b0d004101210a200020082001200210390d012000280218200320042000411c6a28020028020c1100000f0b0240024020054108710d004100210a200920076b22092105024002400240410120002d0020220720074103461b0e0402010001020b2009410176210a200941016a41017621050c010b410021052009210a0b200a41016a210a0340200a417f6a220a450d0220002802182000280204200028021c280210110100450d000b41010f0b200028020421052000413036020420002d002021064101210a200041013a0020200020082001200210390d014100210a200920076b22092102024002400240410120002d0020220820084103461b0e0402010001020b2009410176210a200941016a41017621020c010b410021022009210a0b200a41016a210a02400340200a417f6a220a450d0120002802182000280204200028021c280210110100450d000b41010f0b200028020421094101210a200028021820032004200028021c28020c1100000d01200241016a2108200028021c210220002802182101024003402008417f6a2208450d014101210a2001200920022802101101000d030c000b0b200020063a00202000200536020441000f0b200028020421094101210a200020082001200210390d00200028021820032004200028021c28020c1100000d00200541016a2108200028021c210220002802182100034002402008417f6a22080d0041000f0b4101210a200020092002280210110100450d000b0b200a0b5401017f024002402001418080c400460d0041012104200028021820012000411c6a2802002802101101000d010b024020020d0041000f0b2000280218200220032000411c6a28020028020c11000021040b20040b6f01017f230041306b2202240020022001360204200220003602002002411c6a41023602002002412c6a41013602002002420237020c200241b086c000360208200241013602242002200241206a3602182002200241046a36022820022002360220200241086a41c086c0001033000b6f01017f230041306b2202240020022001360204200220003602002002411c6a41023602002002412c6a41013602002002420237020c2002419087c000360208200241013602242002200241206a3602182002200241046a36022820022002360220200241086a41a087c0001033000b9307010c7f200041106a28020021030240024002400240200041086a28020022044101460d0020034101460d012000280218200120022000411c6a28020028020c11000021030c030b20034101470d010b0240024020020d00410021020c010b200120026a2105200041146a28020041016a21064100210720012103200121080340200341016a210902400240024020032c0000220a417f4a0d000240024020092005470d004100210b200521030c010b20032d0001413f71210b200341026a220921030b200a411f71210c0240200a41ff0171220a41df014b0d00200b200c41067472210a0c020b0240024020032005470d004100210d2005210e0c010b20032d0000413f71210d200341016a2209210e0b200d200b41067472210b0240200a41f0014f0d00200b200c410c7472210a0c020b02400240200e2005470d004100210a200921030c010b200e41016a2103200e2d0000413f71210a0b200b410674200c411274418080f0007172200a72220a418080c400470d020c040b200a41ff0171210a0b200921030b02402006417f6a2206450d00200720086b20036a21072003210820052003470d010c020b0b200a418080c400460d00024002402007450d0020072002460d0041002103200720024f0d01200120076a2c00004140480d010b200121030b2007200220031b21022003200120031b21010b20044101460d002000280218200120022000411c6a28020028020c1100000f0b4100210902402002450d002002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b0240200220096b200028020c2206490d002000280218200120022000411c6a28020028020c1100000f0b410021074100210902402002450d00410021092002210a200121030340200920032d000041c00171418001466a2109200341016a2103200a417f6a220a0d000b0b200920026b20066a2209210a024002400240410020002d0020220320034103461b0e0402010001020b20094101762107200941016a410176210a0c010b4100210a200921070b200741016a2103024003402003417f6a2203450d0120002802182000280204200028021c280210110100450d000b41010f0b2000280204210941012103200028021820012002200028021c28020c1100000d00200a41016a2103200028021c210a20002802182100034002402003417f6a22030d0041000f0b20002009200a280210110100450d000b41010f0b20030bd40801067f230041f0006b220424002004200336020c20042002360208410121052001210602402001418102490d00410020016b2107418002210803400240200820014f0d00200020086a2c000041bf7f4c0d0041002105200821060c020b2008417f6a21064100210520084101460d01200720086a21092006210820094101470d000b0b200420063602142004200036021020044100410520051b36021c200441e4fdc60041d387c00020051b3602180240024002400240200220014b22080d00200320014b0d00200220034b0d01024002402002450d0020012002460d00200120024d0d01200020026a2c00004140480d010b200321020b200420023602202002450d0220022001460d02200141016a210903400240200220014f0d00200020026a2c000041404e0d040b2002417f6a210820024101460d0420092002462106200821022006450d000c040b0b20042002200320081b360228200441306a41146a4103360200200441c8006a41146a4104360200200441d4006a410436020020044203370234200441d887c0003602302004410136024c2004200441c8006a3602402004200441186a3602582004200441106a3602502004200441286a360248200441306a41f087c0001033000b200441e4006a4104360200200441c8006a41146a4104360200200441d4006a4101360200200441306a41146a4104360200200442043702342004418088c0003602302004410136024c2004200441c8006a3602402004200441186a3602602004200441106a36025820042004410c6a3602502004200441086a360248200441306a41a088c0001033000b200221080b024020082001460d00410121060240024002400240200020086a22092c00002202417f4a0d0041002105200020016a220621010240200941016a2006460d00200941026a210120092d0001413f7121050b2002411f712109200241ff017141df014b0d01200520094106747221010c020b2004200241ff0171360224200441286a21020c020b4100210020062107024020012006460d00200141016a210720012d0000413f7121000b200020054106747221010240200241ff017141f0014f0d0020012009410c747221010c010b41002102024020072006460d0020072d0000413f7121020b20014106742009411274418080f00071722002722201418080c400460d020b2004200136022441012106200441286a21022001418001490d00410221062001418010490d0041034104200141808004491b21060b200420083602282004200620086a36022c200441306a41146a4105360200200441ec006a4104360200200441e4006a4104360200200441c8006a41146a4106360200200441d4006a410736020020044205370234200441c088c000360230200420023602582004410136024c2004200441c8006a3602402004200441186a3602682004200441106a3602602004200441246a3602502004200441206a360248200441306a41e888c0001033000b41e988c700412b41b088c0001028000b1000200120002802002000280204103c0b7d01037f230041206b22022400024002402000200110420d002001411c6a2802002103200128021821042002411c6a4100360200200241e4fdc6003602182002420137020c200241d089c00036020820042003200241086a102b450d010b200241206a240041010f0b200041046a200110422101200241206a240020010bff0301067f230041106b22022400410121030240200128021841272001411c6a2802002802101101000d002002200028020010412002410c6a2d00002104200241086a28020021052002280200210002400240024020022802042206418080c400460d000c010b03402000210341dc002107410121000240024020030e0404040100040b200441ff017121034104210441032100024002400240024020030e06070302010004070b4103210041f5002107410321040c030b4102210441fb0021070c020b4102410120051b2104418080c4002005410274411c7176410f7141307221072005417f6a410020051b21050c010b4100210441fd0021070b4101210320012802182007200128021c280210110100450d000c030b0b03402000210341dc00210741012100024002400240024020030e0405010300050b200441ff01712103410421044103210002400240024020030e06070201000405070b4102210441fb0021070c040b20062005410274411c7176410f712203413072200341d7006a2003410a491b21074102410120051b21042005417f6a410020051b21050c030b4100210441fd0021070c020b41002100200621070c010b4103210041f5002107410321040b4101210320012802182007200128021c2802101101000d020c000b0b20012802184127200128021c28021011010021030b200241106a240020030bab0903047f017e037f4102210202400240024002400240200141776a2203411e4d0d00200141dc00470d010c020b41f40021040240024020030e1f05010202000202020202020202020202020202020202020202030202020203050b41f20021040c040b41ee0021040c030b2001410a7621040240024002400240024002400240024002400240024002400240024002400240024020014180d807490d00411e21022004418007460d0120014180fe037141087621050c050b200441928ac0006a2d00002202411e4b0d010b20024104742001410676410f7172418d8bc0006a2d00002204418b014f0d0141032102200441037441a08fc0006a29030042012001413f71ad8683500d02200141017267410276410773ad4280808080d0008421060c100b41808fc0002002411f102a000b41908fc0002004418b01102a000b20014180fe03712104200141808004490d01200441087621050b200141808008490d0120014190fc476a4190fc0b490d0a200141e28b746a41e28d2c490d0a2001419fa8746a419f18490d0a200141dee2746a410e490d0a200141feffff0071419ef00a460d0a200141a9b2756a4129490d0a200141cb91756a410a4d0d0a410121020c0c0b20044108762105419298c000210241002103200141ff017121070340200241026a2108200320022d000122046a2109024020022d000022022005460d00200220054b0d082009210320082102200841e498c000470d010c080b20092003490d02200941a5024b0d03200341e498c0006a2102024003402004450d012004417f6a210420022d00002103200241016a210220032007470d000c0c0b0b2009210320082102200841e498c000470d000c070b0b41d49dc000210241002103200141ff017121070340200241026a2108200320022d000122046a2109024020022d000022022005460d00200220054b0d0620092103200821022008419a9ec000470d010c060b20092003490d03200941a6014b0d042003419a9ec0006a2102024003402004450d012004417f6a210420022d00002103200241016a210220032007470d000c0b0b0b20092103200821022008419a9ec000470d000c050b0b20032009103b000b200941a502103a000b20032009103b000b200941a601103a000b200141ffff0371210741c09fc00021044101210302400340200441016a21090240024020042d0000220241187441187522084100480d00200921040c010b200941d8a2c000460d02200841ff007141087420042d0001722102200441026a21040b200720026b22074100480d0320034101732103200441d8a2c000470d000c030b0b41e988c700412b41c49dc0001028000b200141ffff0371210741899bc0002104410121030340200441016a21090240024020042d0000220241187441187522084100480d00200921040c010b200941c39dc000460d03200841ff007141087420042d0001722102200441026a21040b200720026b22074100480d0120034101732103200441c39dc000470d000b0b4101210220034101710d020c010b41e988c700412b41c49dc0001028000b200141017267410276410773ad4280808080d000842106410321020c010b0b200121040b2000200436020420002002360200200041086a20063702000ba90201037f23004180016b2202240002400240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103521000c020b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000b1c00200128021841b0a3c000410b2001411c6a28020028020c1100000b1c00200128021841bba3c000410e2001411c6a28020028020c1100000b5b01017f230041306b220324002003200136020c20032000360208200341246a41013602002003420137021420034198e7c6003602102003410436022c2003200341286a3602202003200341086a360228200341106a20021033000b140020002802002001200028020428020c1101000b15002001200028020022002802002000280204103c0ba20401077f230041306b220324000240024020020d00410021040c010b200341286a210502400240024002400340024020002802082d0000450d0020002802004185a4c0004104200028020428020c1100000d050b2003410a3602282003428a808080103703202003200236021c200341003602182003200236021420032001360210200341086a410a200120021049024002400240024020032802084101470d00200328020c210403402003200420032802186a41016a2204360218024002402004200328022422064f0d00200328021421070c010b200328021422072004490d00200641054f0d072003280210200420066b22086a22092005460d0420092005200610cf05450d040b200328021c22092004490d0220072009490d0220032006200341106a6a41176a2d0000200328021020046a200920046b10492003280204210420032802004101460d000b0b2003200328021c3602180b200028020841003a0000200221040c010b200028020841013a0000200841016a21040b2000280204210920002802002106024020044520022004467222070d00200220044d0d03200120046a2c000041bf7f4c0d030b200620012004200928020c1100000d04024020070d00200220044d0d04200120046a2c000041bf7f4c0d040b200120046a2101200220046b22020d000b410021040c040b20064104103a000b2001200241002004103d000b2001200220042002103d000b410121040b200341306a240020040bf30201067f410021040240024020024103712205450d00410420056b2205450d0020032005200520034b1b210441002105200141ff01712106034020042005460d01200220056a2107200541016a210520072d000022072006470d000b410121032007200141ff01714641016a41017120056a417f6a21050c010b200141ff017121060240024020034108490d002004200341786a22084b0d00200641818284086c210502400340200220046a220741046a2802002005732209417f73200941fffdfb776a7120072802002005732207417f73200741fffdfb776a7172418081828478710d01200441086a220420084d0d000b0b200420034b0d010b200220046a2109200320046b210241002103410021050240034020022005460d01200920056a2107200541016a210520072d000022072006470d000b410121032007200141ff01714641016a41017120056a417f6a21050b200520046a21050c010b20042003103b000b20002005360204200020033602000bbb0302047f027e230041c0006b2205240041012106024020002d00040d0020002d000521070240200028020022082d00004104710d00410121062008280218418ca4c0004189a4c000200741ff017122071b4102410320071b2008411c6a28020028020c1100000d014101210620002802002208280218200120022008411c6a28020028020c1100000d01410121062000280200220828021841b4c1c50041022008411c6a28020028020c1100000d0120032000280200200428020c11010021060c010b0240200741ff01710d00410121062008280218418ea4c00041032008411c6a28020028020c1100000d01200028020021080b41012106200541013a0017200541346a4194a4c000360200200520082902183703082005200541176a360210200829020821092008290210210a200520082d00203a00382005200a37032820052009370320200520082902003703182005200541086a360230200541086a2001200210480d00200541086a41b4c1c500410210480d002003200541186a200428020c1101000d00200528023041aca4c0004102200528023428020c11000021060b200041013a0005200020063a0004200541c0006a240020000b8b0201027f230041106b220224002002410036020c02400240024002402001418001490d002001418010490d012002410c6a21032001418080044f0d0220022001413f71418001723a000e20022001410676413f71418001723a000d20022001410c76410f7141e001723a000c410321010c030b200220013a000c2002410c6a2103410121010c020b20022001413f71418001723a000d20022001410676411f7141c001723a000c2002410c6a2103410221010c010b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d410421010b20002003200110482101200241106a240020010b6001017f230041206b2202240020022000360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41b0a4c000200241086a102b2101200241206a240020010b0d0020002802002001200210480b0b0020002802002001104b0b6301017f230041206b2202240020022000280200360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41b0a4c000200241086a102b2101200241206a240020010bd30202047f027e230041c0006b2203240041012104024020002d00080d00200028020421050240200028020022062d00004104710d00410121042006280218418ca4c00041cba4c00020051b4102410120051b2006411c6a28020028020c1100000d0120012000280200200228020c11010021040c010b024020050d0041012104200628021841cca4c00041022006411c6a28020028020c1100000d01200028020021060b41012104200341013a0017200341346a4194a4c000360200200320062902183703082003200341176a3602102006290208210720062902102108200320062d00203a00382003200837032820032007370320200320062902003703182003200341086a3602302001200341186a200228020c1101000d00200328023041aca4c0004102200328023428020c11000021040b200020043a00082000200028020441016a360204200341c0006a240020000b6401027f230041206b220224002001411c6a280200210320012802182101200241086a41106a200041106a290200370300200241086a41086a200041086a2902003703002002200029020037030820012003200241086a102b2100200241206a240020000b8709010d7f230041306b220324004101210402400240200228021841222002411c6a2802002802101101000d000240024020010d00410021050c010b200020016a210620002107410021054100210802400240034020072109200741016a210a02400240024020072c0000220b417f4a0d0002400240200a2006470d004100210c200621070c010b20072d0001413f71210c200741026a220a21070b200b411f71210d0240200b41ff0171220b41df014b0d00200c200d41067472210b0c020b0240024020072006470d004100210e2006210f0c010b20072d0000413f71210e200741016a220a210f0b200e200c41067472210c0240200b41f0014f0d00200c200d410c7472210b0c020b02400240200f2006470d004100210b200a21070c010b200f41016a2107200f2d0000413f71210b0b200c410674200d411274418080f0007172200b72220b418080c400470d020c050b200b41ff0171210b0b200a21070b2003200b104102400240024002402003280200220a0e0401020100010b200328020820032d000c6a4101460d010b2003200136021420032000360210200320053602182003200836021c20082005490d0302402005450d0020052001460d00200520014f0d04200020056a2c000041bf7f4c0d040b02402008450d0020082001460d00200820014f0d04200020086a2c000041bf7f4c0d040b2002280218200020056a200820056b200228021c28020c1100000d0120032d000c210d2003280208210f024002402003280204220e418080c400470d000340200a21054101210a41dc00210c0240024020050e0404040100040b200d41ff017121054103210a4104210d024002400240024020050e06070302010004070b4103210d41f500210c4103210a0c030b4102210d41fb00210c0c020b41024101200f1b210d418080c400200f410274411c7176410f71413072210c200f417f6a4100200f1b210f0c010b4100210d41fd00210c0b2002280218200c200228021c280210110100450d000c040b0b0340200a210c4101210a41dc0021050240024002400240200c0e0405010300050b200d41ff0171210c4103210a4104210d024002400240200c0e06070201000405070b4102210d41fb0021050c040b200e200f410274411c7176410f712205413072200541d7006a2005410a491b210541024101200f1b210d200f417f6a4100200f1b210f0c030b4100210d41fd0021050c020b4100210a200e21050c010b4103210d41f50021054103210a0b20022802182005200228021c2802101101000d030c000b0b410121050240200b418001490d0041022105200b418010490d0041034104200b41808004491b21050b200520086a21050b200820096b20076a210820062007470d010c030b0b410121040c030b20032003411c6a3602282003200341186a3602242003200341106a360220200341206a1053000b2005450d0020052001460d00200520014f0d02200020056a2c000041bf7f4c0d020b2002280218200020056a200120056b200228021c28020c1100000d0020022802184122200228021c28021011010021040b200341306a240020040f0b2000200120052001103d000b2601017f20002802002201280200200128020420002802042802002000280208280200103d000bba0201037f23004180016b220224002000280200210002400240024002400240200128020022034110710d0020002d0000210420034120710d012004ad42ff01832001103521000c020b20002d00002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a21002004410476410f7122040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a21002004410476410f7122040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000b0b002000280200200110420b1c00200128021841c8e0c60041052001411c6a28020028020c1100000b800201027f230041106b22022400200128021841f8a4c00041092001411c6a28020028020c1100002103200241003a0005200220033a0004200220013602002002200036020c20024181a5c000410b2002410c6a41e0a4c000104a21012002200041046a36020c2001418ca5c00041092002410c6a4198a5c000104a1a20022d00042101024020022d0005450d00200141ff0171210041012101024020000d0020022802002201411c6a28020028020c210020012802182103024020012d00004104710d00200341c8a4c0004102200011000021010c010b200341caa4c0004101200011000021010b200220013a00040b200241106a2400200141ff01714100470bb50201027f230041106b2202240002400240200028020022002d00004101470d002002200128021841f0a4c00041042001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200041016a36020c20022002410c6a41d0a4c00010501a20022d00082101024020022802042203450d00200141ff0171210041012101024020000d00024020034101470d0020022d000941ff0171450d00200228020022002d00004104710d0041012101200028021841cea4c00041012000411c6a28020028020c1100000d010b2002280200220128021841cfa4c00041012001411c6a28020028020c11000021010b200220013a00080b200141ff017141004721010c010b200128021841f4a4c00041042001411c6a28020028020c11000021010b200241106a240020010bc70a03097f027e027f230041a0036b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a200641ec016a410272410041b20110cc051a200641386a200641ec016a41b40110cd051a200641306a22054200370300200641286a220b4200370300200641206a220c4200370300200641186a220d4200370300200641086a41086a220e42003703002006420037030841e801101e2209450d0520094100360200200941046a200641386a41b40110cd051a200941e0016a2005290300370300200941d8016a200b290300370300200941d0016a200c290300370300200941c8016a200d290300370300200941c0016a200e290300370300200920062903083703b801200829039001210f20082903382110200941086a200841c0006a20082f0106220541796a220b410374220c10cd052111200941e0006a20084198016a200c10cd052112200941b8016a200841d4016a2005417a6a220d41027410cd05210e200841063b01062009200b3b01060240200d450d0041002105200e210b0340200b280200220c20053b0104200c2009360200200b41046a210b200d200541016a2205470d000b0b200128020c22054107490d0120112005417a6a220c410374220d6a2011200541796a220b41037422016a221120092f0106200b6b41037410ce051a201120023703002012200d6a201220016a220d20092f0106200b6b41037410ce051a200d2003370300200920092f010641016a220d3b010620054102742201200e6a416c6a200e200c4102746a2205200d41ffff0371200c6b41027410ce051a20052004360200200c20092f0106220d4b0d02200120096a41a0016a210503402005280200220c200b41016a220b3b0104200c2009360200200541046a2105200b200d490d000c030b0b200841086a220c200128020c220541016a220b410374220d6a200c200541037422076a220c200920056b41037410ce051a200c2002370300200841e0006a2209200d6a200920076a220920082f010620056b41037410ce051a20092003370300200820082f010641016a22093b01062005410274200841b8016a220c6a41086a200c200b4102746a220c200941ffff0371200b6b41027410ce051a200c20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a2108200541027441c0016a210b0340200141046a2802002209200b6a280200220c200541026a3b0104200c2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220c200541016a220b410374220d6a200c200541037422016a220c20082f010620056b41037410ce051a200c2002370300200841e0006a220c200d6a200c20016a220c20082f010620056b41037410ce051a200c2003370300200820082f010641016a220c3b010620054102742201200841b8016a220d6a41086a200d200b4102746a220d200c41ffff0371200b6b41027410ce051a200d2004360200200520082f0106220d4f0d00200820016a41bc016a210b0340200b280200220c200541016a22053b0104200c2008360200200b41046a210b200d2005470d000b0b20002007360204200041206a200f370300200041186a20103703002000410c6a200a360200200041086a2008360200200041146a2007360200200041106a2009360200410121050b20002005360200200641a0036a24000f0b41c6a8c000413541a888c6001028000b41e8014108102d000ba10903097f017e017f230041f0016b220524000240024020012802002206417f6a2004470d000240024002400240200141046a28020022072f01062208410b490d002001280208210920054194016a410272410041da0010cc051a200541386a20054194016a41dc0010cd051a200541306a22044200370300200541286a220a4200370300200541206a220b4200370300200541186a220c4200370300200541086a41086a220d420037030020054200370308419001101e2208450d0520084100360200200841046a200541386a41dc0010cd051a20084188016a200429030037030020084180016a200a290300370300200841f8006a200b290300370300200841f0006a200c290300370300200841e8006a200d290300370300200820052903083703602007290338210e200841086a200741c0006a20072f0106220441796a220a41037410cd05210f200841e0006a200741fc006a2004417a6a220c41027410cd05210d200741063b01062008200a3b01060240200c450d0041002104200d210a0340200a280200220b20043b0104200b2008360200200a41046a210a200c200441016a2204470d000b0b200128020c22044107490d01200f2004417a6a220b4103746a200f200441796a220a4103746a220c20082f0106200a6b41037410ce051a200c2002370300200820082f010641016a220c3b010620044102742201200d6a416c6a200d200b4102746a2204200c41ffff0371200b6b41027410ce051a20042003360200200b20082f0106220c4b0d02200120086a41c8006a210403402004280200220b200a41016a220a3b0104200b2008360200200441046a2104200a200c490d000c030b0b200741086a220b200128020c220441016a220a4103746a200b20044103746a220b200820046b41037410ce051a200b2002370300200720072f010641016a22083b01062004410274200741e0006a220b6a41086a200b200a4102746a220b200841ffff0371200a6b41027410ce051a200b20033602000240200a20072f010622084b0d002003200a3b0104200320073602000240200a20084f0d002008417f6a2107200441027441e8006a210a0340200141046a2802002208200a6a280200220b200441026a3b0104200b2008360200200a41046a210a2007200441016a2204470d000b0b200128020c21040b20002001290200370204200041106a20043602002000410c6a200141086a280200360200410021040c020b200741086a220b200441016a220a4103746a200b20044103746a220b20072f010620046b41037410ce051a200b2002370300200720072f010641016a220b3b010620044102742201200741e0006a220c6a41086a200c200a4102746a220c200b41ffff0371200a6b41027410ce051a200c2003360200200420072f0106220c4f0d00200720016a41e4006a210a0340200a280200220b200441016a22043b0104200b2007360200200a41046a210a200c2004470d000b0b20002006360204200041186a200e3703002000410c6a2009360200200041086a2007360200200041146a2006360200200041106a2008360200410121040b20002004360200200541f0016a24000f0b41c6a8c000413541a888c6001028000b4190014108102d000b850d03077f017e047f23004180016b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a200641326a220942003700002006412a6a4200370000200641226a42003700002006411a6a4200370000200641126a42003700002006420037000a41e801101e2205450d054100210b200541003a001020054200370308200541003b01062005410036020020052006280079360011200541003a00202005420037031820052006280072360021200541003a0030200542003703282005200628006b360031200541146a200641f9006a41036a280000360000200541246a200641f2006a41036a280000360000200541346a200641eb006a41036a280000360000200541003a00402005420037033820054200370348200541003a005020054200370358200541003a006020052006280064360041200541c4006a200641e4006a41036a2800003600002005200628005d360051200541d4006a200641dd006a41036a28000036000020052006280056360061200541e4006a200641d6006a41036a280000360000200541003a007020054200370368200541003a00800120054200370378200541003a00900120054200370388012005200628004f360071200541f4006a200641cf006a41036a280000360000200520062800483600810120054184016a200641c8006a41036a280000360000200520062800413600910120054194016a200641c1006a41036a280000360000200541003a00a0012005420037039801200541a4016a2006413a6a41036a2800003600002005200628003a3600a101200541003a00b001200542003703a801200541e0016a2009290000370000200541d9016a2006412b6a290000370000200541d1016a200641236a290000370000200541c9016a2006411b6a290000370000200541c1016a200641136a290000370000200541b9016a200641036a41086a290000370000200520062900033700b10120082d0070210c2008290368210d200541086a200841f8006a20082f0106220941796a220e41047410cd05210f200541b8016a200841d4016a2009417a6a221041027410cd052111200841063b01062005200e3b010602402010450d002011210903402009280200220e200b3b0104200e2005360200200941046a21092010200b41016a220b470d000b0b200128020c220b4107490d01200f200b417a6a220e4104746a200f200b41796a22094104746a221020052f010620096b41047410ce051a201020033a000820102002370300200520052f010641016a22103b0106200b410274220120116a416c6a2011200e4102746a220b201041ffff0371200e6b41027410ce051a200b2004360200200e20052f010622104b0d02200120056a41a0016a210b0340200b280200220e200941016a22093b0104200e2005360200200b41046a210b20092010490d000c030b0b200841086a220e200128020c220541016a220b4104746a200e20054104746a220e200920056b41047410ce051a200e20033a0008200e2002370300200820082f010641016a22093b01062005410274200841b8016a220e6a41086a200e200b4102746a220e200941ffff0371200b6b41027410ce051a200e20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a2108200541027441c0016a210b0340200141046a2802002209200b6a280200220e200541026a3b0104200e2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220e200b41016a22094104746a200e200b4104746a220e20082f0106200b6b41047410ce051a200e20033a0008200e2002370300200820082f010641016a220e3b0106200b4102742201200841b8016a22106a41086a201020094102746a2210200e41ffff037120096b41027410ce051a20102004360200200b20082f010622104f0d00200820016a41bc016a210903402009280200220e200b41016a220b3b0104200e2008360200200941046a21092010200b470d000b0b20002007360204200041206a200c3a0000200041186a200d3703002000410c6a200a360200200041086a2008360200200041146a2007360200200041106a2005360200410121050b2000200536020020064180016a24000f0b41c6a8c000413541a888c6001028000b41e8014108102d000b8c0d03077f017e047f23004180016b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a2006413c6a220942003701002006410e6a41266a42003701002006412c6a42003701002006410e6a41166a42003701002006411c6a42003701002006420037011441e801101e2205450d054100210b200541003b011020054200370308200541003b0106200541003602002005200628017a360112200541003b01202005420037031820052006280174360122200541003b0130200542003703282005200628016e360132200541166a200641fa006a41046a2f01003b0100200541266a200641f4006a41046a2f01003b0100200541366a200641ee006a41046a2f01003b0100200541003b01402005420037033820054200370348200541003b015020054200370358200541003b016020052006280168360142200541c6006a200641e8006a41046a2f01003b010020052006280162360152200541d6006a200641e2006a41046a2f01003b01002005200628015c360162200541e6006a200641dc006a41046a2f01003b0100200541003b017020054200370368200541003b01800120054200370378200541003b019001200542003703880120052006280156360172200541f6006a200641d6006a41046a2f01003b0100200520062801503601820120054186016a200641d0006a41046a2f01003b01002005200628014a3601920120054196016a200641ca006a41046a2f01003b0100200541003b01a0012005420037039801200541a6016a200641c4006a41046a2f01003b0100200520062801443601a201200541003b01b001200542003703a801200541e0016a2009290100370100200541da016a200641366a290100370100200541d2016a2006412e6a290100370100200541ca016a200641266a290100370100200541c2016a2006411e6a290100370100200541ba016a2006410e6a41086a2901003701002005200629010e3701b20120082f0170210c2008290368210d200541086a200841f8006a20082f0106220941796a220e41047410cd05210f200541b8016a200841d4016a2009417a6a221041027410cd052111200841063b01062005200e3b010602402010450d002011210903402009280200220e200b3b0104200e2005360200200941046a21092010200b41016a220b470d000b0b200128020c220b4107490d01200f200b417a6a220e4104746a200f200b41796a22094104746a221020052f010620096b41047410ce051a201020033b010820102002370300200520052f010641016a22103b0106200b410274220120116a416c6a2011200e4102746a220b201041ffff0371200e6b41027410ce051a200b2004360200200e20052f010622104b0d02200120056a41a0016a210b0340200b280200220e200941016a22093b0104200e2005360200200b41046a210b20092010490d000c030b0b200841086a220e200128020c220541016a220b4104746a200e20054104746a220e200920056b41047410ce051a200e20033b0108200e2002370300200820082f010641016a22093b01062005410274200841b8016a220e6a41086a200e200b4102746a220e200941ffff0371200b6b41027410ce051a200e20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a2108200541027441c0016a210b0340200141046a2802002209200b6a280200220e200541026a3b0104200e2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220e200b41016a22094104746a200e200b4104746a220e20082f0106200b6b41047410ce051a200e20033b0108200e2002370300200820082f010641016a220e3b0106200b4102742201200841b8016a22106a41086a201020094102746a2210200e41ffff037120096b41027410ce051a20102004360200200b20082f010622104f0d00200820016a41bc016a210903402009280200220e200b41016a220b3b0104200e2008360200200941046a21092010200b470d000b0b20002007360204200041206a200c3b0100200041186a200d3703002000410c6a200a360200200041086a2008360200200041146a2007360200200041106a2005360200410121050b2000200536020020064180016a24000f0b41c6a8c000413541a888c6001028000b41e8014108102d000bd70c020e7f017e230041d0026b220624000240024020012802002207417f6a2005470d000240024002400240200141046a28020022082f01062209410b490d002001280208210a200641c4016a41046a410041d80010cc051a200641aa026a4200370100200641b2026a4200370100200641ba026a4200370100200641c2026a4200370100200641a0026a41286a22054200370100200642003701a20220064190016a41086a220b200641a0026a41086a29030037030020064190016a41106a220c200641a0026a41106a29030037030020064190016a41186a220d200641a0026a41186a29030037030020064190016a41206a220e200641a0026a41206a29030037030020064190016a41286a220f2005290300370300200620062903a00237039001200641346a200641c4016a41dc0010cd051a200641286a22054200370300200641206a22104200370300200641186a22114200370300200641106a22124200370300200641086a221342003703002006420037030041c001101e2209450d052009410036020020092006290390013702042009410c6a200b290300370200200941146a200c2903003702002009411c6a200d290300370200200941246a200e2903003702002009412c6a200f290300370200200941346a200641346a41dc0010cd051a200941b8016a2005290300370300200941b0016a2010290300370300200941a8016a2011290300370300200941a0016a201229030037030020094198016a20132903003703002009200629030037039001200841206a280200210f20082903682114200941086a200841246a20082f0106220b41796a220541027410cd052110200941386a200841f0006a200541037410cd05211120094190016a200841ac016a200b417a6a220d41027410cd05210e200841063b0106200920053b01060240200d450d0041002105200e210b0340200b280200220c20053b0104200c2009360200200b41046a210b200d200541016a2205470d000b0b200128020c22054107490d0120102005417a6a220c410274220d6a2010200541796a220b4102746a220120092f0106200b6b41027410ce051a200120023602002011200c4103746a200920054103746a220120092f0106200b6b41037410ce051a20012003370300200920092f010641016a22013b010620054102742202200e6a416c6a200e200d6a2205200141ffff0371200c6b41027410ce051a20052004360200200c20092f0106220d4b0d02200220096a41f8006a210503402005280200220c200b41016a220b3b0104200c2009360200200541046a2105200b200d490d000c030b0b200841086a220c200128020c220541016a220b410274220d6a200c200541027422076a220c200920056b41027410ce051a200c2002360200200841386a2209200b4103746a200920054103746a220920082f010620056b41037410ce051a20092003370300200820082f010641016a22093b0106200720084190016a220c6a41086a200c200d6a220c200941ffff0371200b6b41027410ce051a200c20043602000240200b20082f010622094b0d002004200b3b0104200420083602000240200b20094f0d002009417f6a210820054102744198016a210b0340200141046a2802002209200b6a280200220c200541026a3b0104200c2009360200200b41046a210b2008200541016a2205470d000b0b200128020c21050b20002001290200370204200041106a20053602002000410c6a200141086a280200360200410021050c020b200841086a220d200541016a220b41027422016a200d2005410274220c6a220d20082f010620056b41027410ce051a200d2002360200200841386a220d200b4103746a200d20054103746a220d20082f010620056b41037410ce051a200d2003370300200820082f010641016a220d3b0106200c20084190016a22026a41086a200220016a2201200d41ffff0371200b6b41027410ce051a20012004360200200520082f0106220d4f0d002008200c6a4194016a210b0340200b280200220c200541016a22053b0104200c2008360200200b41046a210b200d2005470d000b0b20002007360204200041206a2014370300200041106a200f3602002000410c6a200a360200200041086a2008360200200041186a2007360200200041146a2009360200410121050b20002005360200200641d0026a24000f0b41c6a8c000413541a888c6001028000b41c0014108102d000bb20302047f017e230041306b2202240020022001105f024002402002280200450d00200041003602000c010b200228020421032002420037020c200241908cc500360208024002402003450d000340200128020422044108490d022001280200220529000021062001200441786a3602042001200541086a360200200241086a200610602003417f6a22030d000b0b20022903082106200041086a2002280210360200200020063702000c010b20022802102104200228020c2103200228020821012000410036020002402003450d00200321050340200128026021012005417f6a22050d000b03402003417f6a22030d000b0b02402004450d0041002103410021054100210003402002200336022c200220053602282002200136022420022000360220200241086a200241206a1061200228021021002002280214210120022802182105200228021c21032004417f6a22040d000b0b200141908cc500460d0020012802002104200110202004450d0020042802002103200410202003450d00024020032802002201450d000340200310202001210320012802002204210120040d000b0b200310200b200241306a24000bcf0201067f0240024020012802042202450d00200128020022032d0000210420012002417f6a2205360204410121062001200341016a3602000240200441037122074103460d0002400240024020070e03000102000b20044102762107410021060c040b41012106024020050d000c040b20032d0001210520012002417e6a3602042001200341026a3602002005410874200472220141ffff0371418002490d03200141fcff03714102762107410021060c030b20054103490d01200341036a2d0000210620032f0001210720012002417c6a3602042001200341046a3602002007200641107472410874200472220141808004492106200141027621070c020b0240200441034d0d000c020b20054104490d012003280001210720012002417b6a3602042001200341056a36020020074180808080044921060c010b410121060b20002007360204200020063602000bc70903077f017e027f230041f0016b22022400024002400240024002400240024002402000280200220341908cc500460d00200028020421040c010b410021042002410272410041da0010cc051a41e000101e2203450d0120034100360200200341046a200241dc0010cd051a20004100360204200020033602000b03400240024020032f010622050d00410021060c010b20054103742107200341086a2108417f21060340024020070d00200521060c020b20082903002109200741786a2107200641016a2106200841086a2108417f200920015220092001561b41016a0e03010500010b0b02402004450d002004417f6a2104200320064102746a41e0006a28020021030c010b0b2000200028020841016a36020802400240024020032f01062207410b490d0002400240200341908cc500460d0020024190016a410272410041da0010cc051a41e000101e22070d0141e0004108102d000b41c8a6c000412d41a888c6001028000b20074100360200200741046a20024190016a41dc0010cd051a20032903382109200741086a200341c0006a20032f010641796a220841037410cd052104200341063b0106200720083b010620064107490d01200641037420046a41506a2004200641796a22064103746a2204200841ffff037120066b41037410ce051a20042001370300200720072f010641016a3b01060c020b200320064103746a220841106a200841086a2208200720066b41037410ce051a20082001370300200320032f010641016a3b01060c040b200341086a20064103746a220841086a200820032f010620066b41037410ce051a20082001370300200320032f010641016a3b01060b0240200328020022060d00410021030c020b200220032f010436020c20022000360208200220063602042002410136020020024190016a2002200920074100105a2002280290014101470d020340200228029c01210020022802a401210320022802a001210720022903a801210920022802980122062802002208450d022002280294012104200220062f010436020c20022000360208200220083602042002200441016a36020020024190016a2002200920072003105a2002280290014101460d000c030b0b41e0004108102d000b2002410272410041da0010cc051a20024190016a200241dc0010cd051a20024188016a2208420037030020024180016a22044200370300200241f8006a22054200370300200241f0006a220a4200370300200241e0006a41086a220b420037030020024200370360419001101e2206450d0120064100360200200641046a20024190016a41dc0010cd051a20064188016a200829030037030020064180016a2004290300370300200641f8006a2005290300370300200641f0006a200a290300370300200641e8006a200b290300370300200620022903603703602006200028020022083602602000200636020020002000280204220441016a360204200841003b01042008200636020020042003470d0220062f01062203410a4b0d03200620034103746a41086a20093703002006200341016a22034102746a41e0006a2007360200200620033b0106200720033b0104200720063602000b200241f0016a24000f0b4190014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b840303047f017e017f20012802082102200128020021030240024002400240200128020c2204200128020422052f0106490d00024002400240200541908cc500460d00200528020022010d012002ad2106410021010c020b41cfa5c000412841a888c6001028000b200341016a210320053301044220862002ad8421060b200510202006a721022006422088a7220720012f01064f0d01200121040c020b200441016a2101200520044103746a41086a29030021060c020b034002400240200128020022040d002002ad2106410021040c010b200341016a210320013301044220862002ad8421060b200110202006a72102200421012006422088a7220720042f01064f0d000b0b2003417f6a2101200741027420046a41e4006a2802002105200420074103746a41086a290300210641002103024020010d00410021010c010b0340200528026021052001417f6a22010d000b410021010b2000200336020820002006370300200041146a2001360200200041106a20023602002000410c6a20053602000bcf0603067f017e027f230041106b2202240020022000280208220336020c2002410c6a2001106320002802002104024020002802042200450d00200021050340200428026021042005417f6a22050d000b03402000417f6a22000d000b0b024002402003450d000240024020042f01060d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044103746a41086a2106200441027420006a41e4006a2802002104410021072005417f6a2200450d010340200428026021042000417f6a22000d000c020b0b200441086a2106410121070b2006290300210802400240200141046a2802002205200141086a28020022006b4108490d00200128020021050c010b200041086a22062000490d02200541017422002006200020064b1b22004100480d020240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a2206200041086a360200200520006a20083700002003417f6a2203450d00200141046a2109034002400240200720042f0106490d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044103746a41086a210a200441027420006a41e4006a2802002104410021072005417f6a2200450d010340200428026021042000417f6a22000d000c020b0b200420074103746a41086a210a200741016a21070b200a29030021080240024020092802002205200628020022006b4108490d00200128020021050c010b200041086a220a2000490d0320054101742200200a2000200a4b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020092000360200200628020021000c010b20004101102d000b2006200041086a360200200520006a20083700002003417f6a22030d000b0b200241106a24000f0b1027000ba10701037f0240024002400240024002400240024002402000280200220241c000490d00200241808001490d012002418080808004490d0202400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d04200241017422042003200420034b1b22044100480d040240024020020d002004101e21030c010b200128020020022004102221030b2003450d0520012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a0000200028020021030240200141046a2802002202200428020022006b4104490d00200128020021020c090b200041046a22042000490d03200241017422002004200020044b1b22004100480d030240024020020d002000101e21020c010b200128020020022000102221020b02402002450d0020012002360200200141046a2000360200200141086a28020021000c090b20004101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c070b200041016a22032000490d02200041017422042003200420034b1b22044100480d020240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c070b20044101102d000b0240200141046a2802002203200141086a28020022006b4102490d00200128020021030c050b200041026a22042000490d01200341017422002004200020044b1b22004100480d010240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c050b20004101102d000b0240200141046a2802002203200141086a28020022006b4104490d00200128020021030c030b200041046a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20044101102d000b200141086a200041046a360200200320006a20024102744102723600000f0b200141086a200041026a360200200320006a20024102744101723b00000f0b200141086a200041016a360200200320006a20024102743a00000f0b200141086a200041046a360200200220006a20033600000ba40903067f017e037f230041106b2202240020022000280208220336020c2002410c6a2001106320002802002104024020002802042200450d0020002105034020042802b80121042005417f6a22050d000b03402000417f6a22000d000b0b024002402003450d000240024020042f01060d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044104746a41086a2106200441027420006a41bc016a2802002104410021072005417f6a2200450d01034020042802b80121042000417f6a22000d000c020b0b200441086a2106410121070b200629030021080240024002400240200141046a2802002205200141086a28020022006b4108490d00200128020021050c010b200041086a22092000490d04200541017422002009200020094b1b22004100480d040240024020050d002000101e21050c010b200128020020052000102221050b2005450d0120012005360200200141046a2000360200200141086a28020021000b200141086a2209200041086a360200200520006a200837000020062f0108210a0240200141046a2802002205200928020022006b4102490d00200128020021050c020b200041026a22062000490d03200541017422002006200020064b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c020b20004101102d000b20004101102d000b200141086a2206200041026a360200200520006a200a3b00002003417f6a220a450d00034002400240200720042f0106490d0002400240200428020022000d004100210541002104410021000c010b20042f01042104410121050b0240200420002f0106490d000340200541016a210520002f01042204200028020022002f01064f0d000b0b200020044104746a41086a2103200441027420006a41bc016a2802002104410021072005417f6a2200450d01034020042802b80121042000417f6a22000d000c020b0b200420074104746a41086a2103200741016a21070b200329030021080240024002400240200141046a22052802002209200628020022006b4108490d00200128020021090c010b200041086a220b2000490d0520094101742200200b2000200b4b1b22004100480d050240024020090d002000101e21090c010b200128020020092000102221090b2009450d012001200936020020052000360200200628020021000b2006200041086a360200200920006a200837000020032f01082109024020052802002203200628020022006b4102490d00200128020021030c020b200041026a220b2000490d0420034101742200200b2000200b4b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d002001200336020020052000360200200628020021000c020b20004101102d000b20004101102d000b2006200041026a360200200320006a20093b0000200a417f6a220a0d000b0b200241106a24000f0b1027000bb01103047f027e087f024002400240024020002802000e03010200010b0240200041246a28020022010d0041000f0b20002001417f6a3602242000410c6a2802002102200028020421030240024002400240200041106a2802002201200041086a28020022042f0106490d0002400240200428020022010d002002ad2105410021010c010b200341016a210320043301044220862002ad8421050b2005422088a7220420012f01064f0d01200521060c020b200141016a2107200420014103746a41086a21080c020b03402005220642ffffffff0f832105200341016a210320012f01042204200128020022012f01064f0d000b0b200120044103746a41086a2108200441027420016a41e4006a28020021042006a721024100210702402003417f6a2201450d000340200428026021042001417f6a22010d000b0b410021030b200020073602102000200236020c20002004360208200020033602040c020b0240200041246a28020022010d0041000f0b20002001417f6a22093602242000410c6a280200210a200028020421040240024002400240200041106a2802002203200041086a28020022012f0106490d0002400240200128020022030d00200aad2105410021030c010b200441016a21042001330104422086200aad8421050b2005422088a7220120032f01064f0d01200521060c020b200341016a210b200120034103746a41086a21080c020b03402005220642ffffffff0f832105200441016a210420032f01042201200328020022032f01064f0d000b0b200320014103746a41086a2108200141027420036a41e4006a28020021012006a7210a4100210b02402004417f6a2204450d000340200128026021012004417f6a22040d000b0b410021040b2000200b3602102000200a36020c2000200136020820002004360204200041cc006a28020021020340024002402002450d002000280250210c0c010b02400240200028024822030d004100210c0c010b20002003417f6a3602482000280230210d200028022821070240024020002802342203200028022c22022f0106490d0002400240200228020022030d00200dad2105410021030c010b200741016a21072002330104422086200dad8421050b02402005422088a7220220032f0106490d0003402005220642ffffffff0f832105200741016a210720032f01042202200328020022032f01064f0d000b200621050b200320024103746a41086a210c200241027420036a41e4006a28020021022005a7210d4100210e02402007417f6a2203450d000340200228026021022003417f6a22030d000b0b410021070c010b200341016a210e200220034103746a41086a210c0b2000200e3602342000200d3602302000200236022c200020073602280b2000200c360250410121022000410136024c0b200c450d0202400240417f20082903002205200c29030022065220052006541b41016a0e03040100040b410021022000410036024c0c010b024020090d0041000f0b20002009417f6a22093602240240024002400240200b20012f0106490d0002400240200128020022030d00200aad2105410021030c010b200441016a21042001330104422086200aad8421050b02402005422088a7220120032f0106490d0003402005220642ffffffff0f832105200441016a210420032f01042201200328020022032f01064f0d000b200621050b200320014103746a2107200141027420036a41e4006a28020021012005a7210a02402004417f6a2204450d000340200128026021012004417f6a22040d000b0b200741086a21084100210b2000410036024c200041003602102000200a36020c2000200136020820004100360204410021044100210320020d03410021044100210320002802482202450d0320002002417f6a3602482000280230210c2000280228210720002802342204200028022c22032f0106490d0102400240200328020022040d00200cad2105410021040c010b200741016a21072003330104422086200cad8421050b02402005422088a7220320042f0106490d0003402005220642ffffffff0f832105200741016a210720042f01042203200428020022042f01064f0d000b200621050b2007417f6a2102200341027420046a41e4006a28020021032005a7210c4100210702402002450d000340200328026021032002417f6a22020d000b0b410021040c020b2000410036024c2000200a36020c20002001360208200020043602042000200b41016a22033602102001200b4103746a41086a21082003210b410021020c030b200441016a21040b200020043602342000200c3602302000200336022c2000200736022841002104410021020c010b200321020c000b0b0240200041246a280200220d0d0041000f0b200041106a28020021092000410c6a280200210e200041086a28020021042000280204210203402000200d417f6a220d36022402400240200920042f0106490d0002400240200428020022010d00200ead2105410021010c010b200241016a21022004330104422086200ead8421050b02402005422088a7220420012f0106490d0003402005220642ffffffff0f832105200241016a210220012f01042204200128020022012f01064f0d000b200621050b2002417f6a2103200120044103746a41086a2108200441027420016a41e4006a28020021042005a7210e4100210202402003450d000340200428026021042003417f6a22030d000b0b410021090c010b200420094103746a41086a2108200941016a21090b200020093602102000200e36020c20002004360208200020023602042008290300210620002802282201280204210c02400340024002402001280200220a2f0106220b0d00410021010c010b200b4103742103200a41086a2107417f21010340024020030d00200b21010c020b20072903002105200341786a2103200141016a2101200741086a2107417f200520065220052006561b41016a0e03010300010b0b200c450d03200c417f6a210c200a20014102746a41e0006a21010c000b0b200d0d000b41000f0b20080b9ff70105047f027e127f027e187f230041d0036b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e0e0001020e0d0c0b040a0908070605000b20034184016a41013602002003420137027420034184e6c600360270200341043602e4012003418cb4c6003602e0012003200341e0016a36028001200341f0006a41d483c6001033000b2001410c6a2802002104200141086a2802002105200141046a2802002106024020022d0000220241014b0d00200141106a2903002107420021080240024020020e020100010b420321080b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c1c0b200341b4016a280200210b200341b0016a280200210c200341ac016a2802002102200341a8016a280200210d200341a4016a280200210e200341a0016a280200210f2003419c016a280200211020034198016a280200211120034194016a280200211220034190016a28020021132003418c016a280200211420034188016a280200211520034184016a280200210920034180016a2802002116200341fc006a2802002117200341f8006a28020021182003280274210a2003200341bc016a2802003602a003200850450d1a0240200c450d00200c21190340200228026021022019417f6a22190d000b0340200c417f6a220c0d000b0b0240200b450d004100210c410021194100211a03402003200c3602ec01200320193602e801200320023602e4012003201a3602e001200341f0006a200341e0016a10612003280278211a200328027c21022003280280012119200328028401210c200b417f6a220b0d000b0b200241908cc500460d192002280200210b20021020200b450d19200b280200210c200b1020200c450d19200c28020022020d020c180b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a0340200320023602ec01200320053602e801200320063602e4012003200a3602e001200341f0006a200341e0016a10612003280278210a200328027c2106200328028001210520032802840121022004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d1b20062802002102200610202002450d1b20022802002106200210202006450d1b20062802002202450d160340200610202002210620022802002205210220050d000c170b0b2001410c6a2802002104200141086a2802002105200141046a280200210620022d0000220941014b0d10200141106a280200210f200141286a2903002107200141206a290300211b200141186a290300211c2002411b6a280000210c200241176a280000210b200241136a28000021182002410b6a2900002108200241076a2800002115200241036a280000211220022f000121174100210a0240024020090e020100010b2002411f6a2f000021134101210a0b200341ff016a20133b0000200341fb016a200c360000200341f7016a200b360000200341f3016a2018360000200341eb016a2008370000200320153600e701200320123600e301200320173b00e1012003200a3a00e001410021100240200a450d0041032110201c500d0041022110200341e0016a410172220a201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702109200341f0026a41186a221320034189016a290000370300200341f0026a41106a220c20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020094101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2013290300370300200341a0036a41106a200c290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a200a412010cf05450d004126210941ceabc000210a0c150b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c150b200341b4016a2802002111200341b0016a2802002112200341ac016a2802002113200341a8016a280200211d200341a4016a280200211e200341a0016a280200211f412c2109200341f0006a412c6a280200210d20034198016a280200211a20034194016a280200211420034190016a280200210b2003418c016a280200211920034188016a280200211720034184016a280200210c200341fc006a2802002115200341f0006a41086a2802002118200328027421022003200341bc016a2802003602f0024184abc000210a024020100e0412140013120b2013210e20122116034002400240200e2f010622200d004100210a0c010b20204103742109200e41086a2110417f210a0340024020090d002020210a0c020b20102903002108200941786a2109200a41016a210a201041086a2110417f2008201b522008201b561b41016a0e03011400010b0b024020160d0041c0abc000210a410e21090c150b2016417f6a2116200e200a4102746a41e0006a280200210e0c000b0b0340200c10202002210c2002280200220b2102200b0d000c160b0b200341e0016a41206a200241206a2d00003a0000200341e0016a41186a200241186a290000370300200341e0016a41106a200241106a290000370300200341e0016a41086a200241086a290000370300200320022900003703e001200341f0026a41086a2001410c6a2802003602002003200141046a2902003703f002200341a0036a41086a200141186a2802003602002003200141106a2902003703a003200341f0006a2001411c6a41cc0010cd051a200341086a200341e0016a200341f0026a200341a0036a200341f0006a106a200328020c21092003280208210a0c180b2001410c6a2802002106200141086a2802002116200141046a28020021102003420037023c200341908cc500360238024002400240024020022d0000220541014b0d002002411b6a2800002109200241176a2800002113200241136a280000210c2002410b6a2900002107200241076a280000210b200241036a280000211820022f00012115410021040240024020050e020100010b2002411f6a2f0000210a410121040b200341e7006a200a3b0000200341e3006a2009360000200341df006a2013360000200341db006a200c360000200341c8006a410b6a20073700002003200b36004f2003201836004b200320153b0049200320043a00482010200641067422026a2114024020020d00201021040c020b200341f0006a4104722111200341a0036a4102722121200341e0016a4102722122200341f0006a41046a2123200341e0016a41046a211f200341f0006a410272220e41266a211e200e41106a211d200e41086a2120410021052010210403402004220241c0006a2104200229030022084202510d02200241306a280200210b2002412c6a2802002115200241286a2802002118200241206a290300211c200241186a290300210720022d003821122002290308211b024002400240024020022802100e03010002010b02402007a74101460d002007422088a721022003280238220a210c200328023c2219211a034002400240200c2f0106220f0d00410021060c010b200f4102742109200c41086a2113417f21060340024020090d00200f21060c020b201328020021172009417c6a2109200641016a2106201341046a21130240417f2017200247201720024b1b41016a0e03020001020b0b034002400240200a2f010622170d00410021060c010b20174102742109200a41086a2113417f21060340024020090d00201721060c020b2013280200210c2009417c6a2109200641016a2106201341046a21130240417f200c200247200c20024b1b41016a0e03020001020b0b200a20064103746a41386a290300211c0c040b02402019450d002019417f6a2119200a20064102746a4190016a280200210a0c010b0b41e988c700412b419489c7001028000b0240201a450d00201a417f6a211a200c20064102746a4190016a280200210c0c010b0b0240200b450d00200b4105742106201841086a2102034002400240200241786a280200220541014b0d00024020050e020002000b2002106b0c010b2002280200450d002002417c6a28020010200b200241206a2102200641606a22060d000b0b411b210941ce88c700210a2015450d08201810200c080b2003200b3602e801200320153602e401200320183602e001200341f0006a200341386a200341e0016a106c024020032802704101470d00200341f8006a28020021092003280274210a0c080b200341a0036a41086a201141086a28020022023602002003201129020022073703a003200341f0006a41086a200236020020032007370370200341286a200341c8006a2008201b2012410171201c200341f0006a106d2003280228220a450d02200328022c21090c070b200341f0006a200341c8006a2008201b2007106e2003290378210720032802704101460d0502400240024002402003280238220241908cc500460d00200328023c210c0c010b201f410041d80010cc051a201e4200370100200e41206a4200370100200e41186a4200370100201d420037010020204200370100200e4200370100419001101e2202450d014100210c20024100360200200220032903703702042002410c6a200341f0006a41086a290300370200200241146a200341f0006a41106a2903003702002002411c6a200341f0006a41186a290300370200200241246a200341f0006a41206a2903003702002002412c6a200341f0006a41286a290300370200200241346a200341e0016a41dc0010cd051a2003410036023c200320023602380b03400240024020022f0106220b0d00410021060c010b200b410274210a200241086a2109417f210603400240200a0d00200b21060c020b20092802002113200a417c6a210a200641016a2106200941046a21090240417f2013200547201320054b1b41016a0e03020001020b0b200220064103746a41386a20073703000c050b0240200c450d00200c417f6a210c200220064102746a4190016a28020021020c010b0b2003200328024041016a360240024020022f0106220a410b490d0002400240200241908cc500460d002023410041d80010cc051a202241266a4200370100202241206a4200370100202241186a4200370100202241106a4200370100202241086a420037010020224200370100419001101e220a0d014190014108102d000b41c8a6c000412d41a888c6001028000b200a4100360200200a20032903e001370204200a410c6a200341e0016a41086a290300370200200a41146a200341e0016a41106a290300370200200a411c6a200341e0016a41186a290300370200200a41246a200341e0016a41206a290300370200200a412c6a200341e0016a41286a290300370200200a41346a200341f0006a41dc0010cd051a2002290368210820022802202109200a41086a200241246a20022f010641796a221341027410cd05210c200a41386a200241f0006a201341037410cd05210b200241063b0106200a20133b01060240024020064107490d00200c2006417a6a22184102746a200c200641796a22064102746a220c201341ffff037120066b41027410ce051a200c2005360200200b20184103746a200b20064103746a220c200a41066a22132f010020066b41037410ce051a0c010b200241066a2113200241086a220c200641016a220b4102746a200c20064102746a220c20022f010620066b41027410ce051a200c2005360200200241386a220c200b4103746a200c20064103746a220c20022f010620066b41037410ce051a0b200c2007370300201320132f010041016a3b01000240200228020022060d0041002113200341386a21060c030b200320022f01043602ec01200320063602e4012003200341386a3602e801200341013602e001200341f0006a200341e0016a20092008200a4100105d20032802704101470d040340200328027c21062003280288012113200328028401210a2003290390012108200328028001210920032802782202280200220c450d032003280274210b200320022f01043602ec01200320063602e8012003200c3602e4012003200b41016a3602e001200341f0006a200341e0016a20092008200a2013105d20032802704101460d000c050b0b200241086a2209200641016a22134102746a200920064102746a2209200a20066b41027410ce051a20092005360200200241386a220a20134103746a200a20064103746a220a20022f010620066b41037410ce051a200a2007370300200220022f010641016a3b01060c030b4190014108102d000b201f410041d80010cc051a202141266a4200370100202141206a4200370100202141186a4200370100202141106a4200370100202141086a420037010020214200370100200341f0026a41086a220c200341a0036a41086a290300370300200341f0026a41106a220b200341a0036a41106a290300370300200341f0026a41186a2218200341a0036a41186a290300370300200341f0026a41206a2215200341a0036a41206a290300370300200341f0026a41286a2212200341a0036a41286a290300370300200320032903a0033703f002200341f0006a200341e0016a41dc0010cd051a200341c0026a41286a22174200370300200341c0026a41206a22194200370300200341c0026a41186a221a4200370300200341c0026a41106a220f4200370300200341c0026a41086a220d4200370300200342003703c00202400240024041c001101e2202450d0020024100360200200220032903f0023702042002410c6a200c290300370200200241146a200b2903003702002002411c6a2018290300370200200241246a20152903003702002002412c6a2012290300370200200241346a200341f0006a41dc0010cd051a200241b8016a2017290300370300200241b0016a2019290300370300200241a8016a201a290300370300200241a0016a200f29030037030020024198016a200d290300370300200220032903c0023703900120022006280200220c360290012006200236020020062006280204220b41016a360204200c41003b0104200c2002360200200b2013470d0120022f01062206410a4b0d02200220064103746a41386a2008370300200220064102746a41086a20093602002002200641016a22064102746a4190016a200a360200200220063b0106200a20063b0104200a20023602000c040b41c0014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200241346a280200210d02402007a74101460d002007422088a721022003280238220a210c200328023c2219211a034002400240200c2f0106220f0d00410021060c010b200f4102742109200c41086a2113417f21060340024020090d00200f21060c020b201328020021172009417c6a2109200641016a2106201341046a21130240417f2017200247201720024b1b41016a0e03020001020b0b034002400240200a2f010622170d00410021060c010b20174102742109200a41086a2113417f21060340024020090d00201721060c020b2013280200210c2009417c6a2109200641016a2106201341046a21130240417f200c200247200c20024b1b41016a0e03020001020b0b200a20064103746a41386a290300211c0c040b02402019450d002019417f6a2119200a20064102746a4190016a280200210a0c010b0b41e988c700412b419489c7001028000b0240201a450d00201a417f6a211a200c20064102746a4190016a280200210c0c010b0b0240200b450d00200b4105742106201841086a2102034002400240200241786a280200220541014b0d00024020050e020002000b2002106b0c010b2002280200450d002002417c6a28020010200b200241206a2102200641606a22060d000b0b411b210941ce88c700210a2015450d06201810200c060b2003200b3602e801200320153602e401200320183602e001200341f0006a200341386a200341e0016a106c024020032802704101470d00200341f8006a28020021092003280274210a0c060b200341a0036a41086a201141086a28020022023602002003201129020022073703a003200341f0006a41086a200236020020032007370370200341306a200341c8006a2008201b2012410171201c200d200341f0006a106f2003280230220a450d00200328023421090c050b200541016a210520042014470d000b201421040c010b41908cc50041004100107020102006107141e6aac000210a411e21092016450d1a201010200c1a0b2004201420046b410675107102402016450d00201010200b2003280238200328023c200328024010704100210a0c190b2003280274210a2007a721090b2004201420046b410675107102402016450d00201010200b2003280238200328023c200328024010700c170b2001410c6a2802002106200141086a2802002104200141046a2802002105024020022d0000220a41014b0d00200141206a2903002107200141186a2903002108200141106a290300211b20012d0001210c2002411b6a280000210b200241176a2800002118200241136a28000021152002410b6a290000211c200241076a2800002112200241036a280000211720022f000121144100210902400240200a0e020100010b2002411f6a2f00002113410121090b2003418f016a20133b00002003418b016a200b36000020034187016a201836000020034183016a2015360000200341fb006a201c3700002003201236007720032017360073200320143b0071200320093a0070200320063602e801200320043602e401200320053602e001200341206a200341f0006a201b2008200c41ff01714100472007200341e0016a106d200328022421092003280220210a0c170b02402006450d00200641186c21062005210203402002106b200241186a2102200641686a22060d000b0b41e6aac000210a411e21092004450d16200510200c160b2001410c6a2802002106200141086a2802002104200141046a2802002105024020022d0000220a41014b0d00200141026a2f0100210c200141206a2903002107200141186a2903002108200141106a290300211b20012d0001210b2002411b6a2800002118200241176a2800002115200241136a28000021122002410b6a290000211c200241076a2800002117200241036a280000211420022f000121114100210902400240200a0e020100010b2002411f6a2f00002113410121090b2003418f016a20133b00002003418b016a201836000020034187016a201536000020034183016a2012360000200341fb006a201c3700002003201736007720032014360073200320113b0071200320093a0070200320063602e801200320043602e401200320053602e001200341186a200341f0006a201b2008200b41ff01714100472007200c200341e0016a106f200328021c21092003280218210a0c160b02402006450d00200641186c21062005210203402002106b200241186a2102200641686a22060d000b0b41e6aac000210a411e21092004450d15200510200c150b20022d0000220641014b0d06200141186a2903002107200141106a2903002108200141086a290300211b2002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a290000211c200241076a280000210c200241036a280000210b20022f00012118410021050240024020060e020100010b2002411f6a2f00002104410121050b2003418f016a20043b00002003418b016a200a36000020034187016a200936000020034183016a2013360000200341fb006a201c3700002003200c3600772003200b360073200320183b0071200320053a0070200341e0016a200341f0006a201b20082007106e024020032802e0014101460d004100210a0c150b200341e8016a280200210920032802e401210a0c140b200141186a280200211a200141146a280200210d200141106a2802002110200141086a280200210e200141046a28020021160240024002400240024020022d0000220541014b0d002001410c6a280200211d200141306a2903002107200141286a290300211b200141206a290300211c2002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a2900002108200241076a280000210c200241036a280000210b20022f00012118410021060240024020050e020100010b2002411f6a2f00002104410121060b200341bf036a20043b0000200341bb036a200a360000200341b7036a2009360000200341b3036a2013360000200341ab036a20083700002003200c3600a7032003200b3600a303200320183b00a103200320063a00a0034100211102402006450d0041032111201c500d0041022111200341a0036a4101722206201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702105200341f0026a41186a220420034189016a290000370300200341f0026a41106a220a20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020054101460d00200341e0016a41186a4200370300200341e0016a41106a4200370300200341e0016a41086a4200370300200342003703e0010c010b200341e0016a41186a2004290300370300200341e0016a41106a200a290300370300200341e0016a41086a2002290300370300200320032903f0023703e0010b200341e0016a2006412010cf05450d0041ceabc000210a412621090c050b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c050b200341b4016a2802002114200341b0016a2802002118200341ac016a2802002104200341a8016a2802002124200341a4016a2802002123200341a0016a2802002121412c2109200341f0006a412c6a280200212020034198016a280200211720034194016a280200210b20034190016a28020021052003418c016a2802002112200341f0006a41186a280200211320034184016a2802002102200341fc006a2802002115200341f0006a41086a280200210c200328027421064184abc000210a024020110e0404030002040b200221192013210f03400240024020192f0106221f0d004100210a0c010b201f4103742109201941086a2111417f210a0340024020090d00201f210a0c020b20112903002108200941786a2109200a41016a210a201141086a2111417f2008201b522008201b561b41016a0e03010600010b0b0240200f0d0041f4abc000210a411221090c040b200f417f6a210f2019200a4102746a41e0006a28020021190c000b0b0240201a450d00201a41306c2106201041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200641506a22060d000b0b0240200d450d00201010200b41e6aac000210a411e2109200e450d17201610200c170b41b0abc000210a411021090b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402015450d004100210c41002111410021190340200320193602ec01200320113602e801200320063602e4012003200c3602e001200341f0006a200341e0016a10612003280278210c200328027c2106200328028001211120032802840121192015417f6a22150d000b0b0240200641908cc500460d0020062802002115200610202015450d002015280200210c20151020200c450d000240200c2802002206450d000340200c10202006210c20062802002215210620150d000b0b200c10200b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402012450d0041002106410021134100210c03402003200c3602ec01200320133602e801200320023602e401200320063602e001200341f0006a200341e0016a106120032802782106200328027c21022003280280012113200328028401210c2012417f6a22120d000b0b0240200241908cc500460d0020022802002113200210202013450d0020132802002106201310202006450d00024020062802002202450d000340200610202002210620022802002213210220130d000b0b200610200b0240200b450d00200b21020340200528026021052002417f6a22020d000b0340200b417f6a220b0d000b0b02402017450d004100210241002106410021130340200320133602ec01200320063602e801200320053602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2105200328028001210620032802840121132017417f6a22170d000b0b0240200541908cc500460d0020052802002102200510202002450d0020022802002106200210202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b024020204102490d0020212023202410720b02402018450d00201821020340200428026021042002417f6a22020d000b03402018417f6a22180d000b0b02402014450d004100210241002106410021050340200320053602ec01200320063602e801200320043602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2104200328028001210620032802840121052014417f6a22140d000b0b200441908cc500460d0120042802002102200410202002450d0120022802002106200210202006450d01024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c010b0240024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2007370018200341f0006a41186a22094200370300200341f0006a41106a22114200370300200341f0006a41086a2219420037030020034200370370200a4120200341f0006a1001200341e0016a41186a2009290300370300200341e0016a41106a2011290300370300200341e0016a41086a2019290300370300200320032903703703e001200a10200240200341e0016a412041e4fdc600410041001002417f470d0041b9d3c000210a411921090c040b201d201a720d0241d2d3c000210a413a21090c040b41184101102d000b41304101102d000b024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2007370018200341f0006a41186a22094200370300200341f0006a41106a22114200370300200341f0006a41086a2219420037030020034200370370200a4120200341f0006a1001200341e0016a41186a2009290300370300200341e0016a41106a2011290300370300200341e0016a41086a2019290300370300200320032903703703e001200a102020034100360270200341e0016a4120200341f0006a1003210a20032802702211417f460d03200a450d03200320113602f4022003200a3602f002200341f0006a200341f0026a10732003280278221f450d02200341a0016a28020021252003419c016a280200212620034194016a280200212720034190016a28020021282003418c016a280200212920034188016a280200212a20034184016a280200212220034180016a2802002109200328027c211e2011450d04200a10200c040b41184101102d000b41304101102d000b41ceb8c4004133200341c8006a41fcbfc4004184b9c400102e000b4100211f0b200342003702c402200341908cc5003602c002201f4108201f1b212b0240024020094100201f1b222c450d00202c41306c2111202b41186a210903402009280200220a417f4c0d02200941786a2802002119024002400240200a0d004101210f0c010b200a101e220f450d010b200f2019200a10cd0521192003200a3602782003200a36027420032019360270200941306a2109200341c0026a200341f0006a1074201141506a22110d010c020b0b200a4101102d000b20254100201f1b212d20264101201f1b212e20274100201f1b212f20284101201f1b213020294100201f1b2126202a4100201f1b213120224104201f1b2132201e4100201f1b212a02400240201a450d002010201a41306c6a2133201021270340202741186a22252802002109200341f0026a41086a220a4200370300200342003703f00241b287c7004125200341f0026a1000200341f0006a41086a220f200a290300370300200320032903f002370370200341e0016a200341f0006a1075024020032f01e201410020032f01e00141014622111b221941ffff0371200941ffff037122094d0d00418cd4c000210a411a21090c030b024020032f01e401410020111b20196a41ffff037120094f0d0041a6d4c000210a411921090c030b202741246a2802002111200a4200370300200342003703f00241d787c700412c200341f0026a1000200f200a290300370300200320032903f002370370200341e0016a200341f0006a10754120210941bfd4c000210a20032f01e201410020032f01e00141014622191b220f41ffff0371201141ffff037122114b0d0220032f01e401410020191b200f6a41ffff03712011490d02202741306a2134200341c0026a210a20032802c4022129034002400240200a28020022282f010622220d00410021220c010b2022410c6c2109202841086a210a202528020021112027280210211e4100210f03402009450d0102400240201e200a280200200a28020822192011201120194b1b10cf05221f450d0041012119201f41004e0d01200f21220c030b0240201120194f0d00200f21220c030b201120194721190b200a410c6a210a200f41016a210f200941746a210920190d000b412c210941dfd4c000210a0c040b02402029450d002029417f6a2129202820224102746a418c016a210a0c010b0b2025280200220a417f4c0d0320272802102109024002400240200a0d00410121110c010b200a101e2211450d010b20112009200a10cd0521092003200a3602782003200a36027420032009360270200341c0026a200341f0006a10742034212720342033470d010c020b0b200a4101102d000b201d410174210a202c41ffff037121192016210902400340200a450d01200a417e6a210a20092f01002111200941026a210920112019490d000b41342109418bd5c000210a0c010b02400240024002400240201a450d00201a41306c21112010210a03400240200a2f01004109470d00200a41086a2903002108024002404118101e2209450d00200941106a41002900dc8647370000200941086a41002900d48647370000200941002900cc864737000020094118413010222209450d0120092008370018200341f0006a41186a22194200370300200341f0006a41106a220f4200370300200341f0006a41086a221f42003703002003420037037020094120200341f0006a1001200341e0016a41186a2019290300370300200341e0016a41106a200f290300370300200341e0016a41086a201f290300370300200320032903703703e00120091020200341e0016a412041e4fdc600410041001002417f470d024137210941bfd5c000210a0c090b41184101102d000b41304101102d000b200a41306a210a201141506a22110d000b2010201a41306c6a21110240201a0d002010210a0c020b200341e0016a41266a210f200341e0016a41206a211f200341e0016a41186a211e200341e0016a41106a2122200341e0016a41086a21292010210a0340200a2f01002119200f200a41286a290100370100201f200a41226a290100370300201e200a411a6a2901003703002022200a41126a2901003703002029200a410a6a2901003703002003200a41026a2901003703e0010240024020194113460d00200341f0006a41266a2228200f290100370100200341f0006a41206a2227201f290300370300200341f0006a41186a2225201e290300370300200341f0006a41106a22342022290300370300200341f0006a41086a22332029290300370300200320032903e0013703700240202c202a460d00202a211a202c212a0c020b202a41016a2209202a490d06202a410174221a2009201a20094b1b221aad42307e2208422088a70d062008a722094100480d0602400240202a0d002009101e212b0c010b202b202a41306c20091022212b0b202b0d0120094108102d000b200a41306a210a0c030b202b202a41306c6a220920193b0100200920032903703701022009410a6a2033290300370100200941126a20342903003701002009411a6a2025290300370100200941226a2027290300370100200941286a2028290100370100024002400240201d200e460d00200e2119201d21090c010b200e41016a2209200e490d06200e410174222a2009202a20094b1b221920196a22092019490d0620094100480d0602400240200e0d002009101e21160c010b2016202a2009102221160b2016450d01200e21092019210e0b201620094101746a202c3b0100201d41016a211d201a212a202c41016a2228212c200a41306a220a2011470d010c040b0b20094102102d000b2010201a41306c6a21112010210a0b02402011200a460d0003400240200a41146a280200450d00200a41106a28020010200b200a41306a21090240200a41206a280200450d00200a411c6a28020010200b2009210a20112009470d000b0b200e2119202a211a202c21280b0240200d450d00201010200b024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2007370018200341f0006a41186a22094200370300200341f0006a41106a22114200370300200341f0006a41086a2210420037030020034200370370200a4120200341f0006a1001200341e0016a41186a2009290300370300200341e0016a41106a2011290300370300200341e0016a41086a2010290300370300200320032903703703e001200a102020034100360270200341e0016a4120200341f0006a1003210a2003280270220f417f460d03200a450d032003200f3602f4022003200a3602f002200341f0006a200341f0026a107320032802782211450d02200341a4016a2802002129200341a0016a280200212a2003419c016a280200212c20034198016a280200212220034194016a280200211e20034190016a280200211f2003418c016a280200211020034188016a280200210d20034184016a280200210e20034180016a2802002109200328027c212720032903702108200f450d04200a10200c040b41184101102d000b41304101102d000b41ceb8c4004133200341c8006a41fcbfc4004184b9c400102e000b410021110b2011410820111b210f02402009410020111b220a450d00200a41306c2109200f41206a210a03400240200a41746a280200450d00200a41706a28020010200b0240200a280200450d00200a417c6a28020010200b200a41306a210a200941506a22090d000b0b2010410020111b2110200d410020111b210a02402011450d002027450d00200f10200b200e410420111b210902402010200a460d00200a210f2010210a0c020b200a41016a220f200a490d00200a410174220e200f200e200f4b1b220fad420c7e221b422088a70d00201ba7220e4100480d0002400240200a0d00200e101e21090c010b2009200a410c6c200e102221090b20090d01200e4104102d000b1027000b2009200a410c6c6a220a201d360208200a2019360204200a2016360200200341a4016a2029410020111b360200200341a0016a202a410020111b36020020034198016a2022410020111b36020020034194016a201e410020111b3602002003418c016a201041016a36020020034188016a200f36020020034180016a2028360200200341f0006a410c6a201a3602002003202c410120111b221936029c012003201f410120111b3602900120032009360284012003202b36027820032008420020111b37037002400240202b0d00200341e0016a412010040c010b200341203602f4022003200341e0016a3602f002200341f0006a200341f0026a10760b02402003280278220a450d0002402003280280012209450d00200941306c2109200a41206a210a03400240200a41746a280200450d00200a41706a28020010200b0240200a280200450d00200a417c6a28020010200b200a41306a210a200941506a22090d000b0b0240200328027c450d00200328027810200b02402003418c016a2802002209450d00200328028401210a2009410c6c210903400240200a41046a280200450d00200a28020010200b200a410c6a210a200941746a22090d000b0b024020034188016a280200450d0020032802840110200b024020034194016a280200450d0020032802900110200b200341a0016a280200450d00201910200b20034180016a2007370300200341fa006a20263b0100200341f8006a41013a0000200341153a0070200341f0006a107720032802c00220032802c40220032802c802107802402026450d002026410c6c21092032210a03400240200a41046a280200450d00200a28020010200b200a410c6a210a200941746a22090d000b0b02402031450d00203210200b0240202f450d00203010200b4100210a0240202d450d00202e10200b0c040b20032802c00220032802c40220032802c80210780240202c450d00202c41306c2119202b41206a211103400240201141746a280200450d00201141706a28020010200b02402011280200450d002011417c6a28020010200b201141306a2111201941506a22190d000b0b0240202a450d00202b10200b02402026450d002026410c6c21192032211103400240201141046a280200450d00201128020010200b2011410c6a2111201941746a22190d000b0b02402031450d00203210200b0240202f450d00203010200b202d450d01202e10200c010b102c000b201a450d00201a41306c2119201041206a211103400240201141746a280200450d00201141706a28020010200b02402011280200450d002011417c6a28020010200b201141306a2111201941506a22190d000b0b0240200d450d00201010200b200e450d00201610200b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402015450d004100210c41002111410021190340200320193602ec01200320113602e801200320063602e4012003200c3602e001200341f0006a200341e0016a10612003280278210c200328027c2106200328028001211120032802840121192015417f6a22150d000b0b0240200641908cc500460d0020062802002115200610202015450d002015280200210c20151020200c450d000240200c2802002206450d000340200c10202006210c20062802002215210620150d000b0b200c10200b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402012450d0041002106410021134100210c03402003200c3602ec01200320133602e801200320023602e401200320063602e001200341f0006a200341e0016a106120032802782106200328027c21022003280280012113200328028401210c2012417f6a22120d000b0b0240200241908cc500460d0020022802002113200210202013450d0020132802002106201310202006450d00024020062802002202450d000340200610202002210620022802002213210220130d000b0b200610200b0240200b450d00200b21020340200528026021052002417f6a22020d000b0340200b417f6a220b0d000b0b02402017450d004100210241002106410021130340200320133602ec01200320063602e801200320053602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2105200328028001210620032802840121132017417f6a22170d000b0b0240200541908cc500460d0020052802002102200510202002450d0020022802002106200210202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b024020204102490d0020212023202410720b02402018450d00201821020340200428026021042002417f6a22020d000b03402018417f6a22180d000b0b02402014450d004100210241002106410021050340200320053602ec01200320063602e801200320043602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c2104200328028001210620032802840121052014417f6a22140d000b0b200441908cc500460d1420042802002102200410202002450d1420022802002106200210202006450d14024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c140b0240200e450d00201610200b0240201a450d00201a41306c2106201041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200641506a22060d000b0b200d450d13201010200c130b200341e0016a41206a200241206a2d00003a0000200341e0016a41186a200241186a290000370300200341e0016a41106a200241106a290000370300200341e0016a41086a200241086a290000370300200320022900003703e001200341f0026a41086a2001410c6a2802003602002003200141046a2902003703f002200341a0036a41086a200141186a2802003602002003200141106a2902003703a003200341ac016a4200370200200341f0006a41206a420037030020034184016a4200370200200341003a00b801200341013a007c20034200370274200341908cc500360270200341003602b401200341908cc5003602a8012003410036029801200341908cc50036028c01200341908cc50036028001200341106a200341e0016a200341f0026a200341a0036a200341f0006a106a200328021421092003280210210a0c120b200141106a28020021102001410c6a280200210f200141086a280200210e200141046a280200211a02400240024002400240024020022d0000220541014b0d00200141286a2903002107200141206a290300211b200141186a290300211c2002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a2900002108200241076a280000210c200241036a280000210b20022f00012118410021060240024020050e020100010b2002411f6a2f00002104410121060b200341ff016a20043b0000200341fb016a200a360000200341f7016a2009360000200341f3016a2013360000200341eb016a20083700002003200c3600e7012003200b3600e301200320183b00e101200320063a00e0014100211102402006450d0041032111201c500d0041022111200341e0016a4101722206201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702105200341f0026a41186a220420034189016a290000370300200341f0026a41106a220a20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020054101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2004290300370300200341a0036a41106a200a290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a2006412010cf05450d004126210941ceabc000210a0c060b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c060b200341b4016a2802002115200341b0016a2802002113200341ac016a2802002102200341a8016a280200211d200341a4016a280200211e200341a0016a280200211f412c2109200341f0006a412c6a280200210d20034198016a280200211420034194016a280200211820034190016a28020021042003418c016a280200211720034188016a280200210b20034184016a280200210520034180016a2802002120200341fc006a2802002112200341f0006a41086a280200210c200328027421062003200341bc016a2802003602f0024184abc000210a024020110e0404030002040b200221192013211603400240024020192f010622220d004100210a0c010b20224103742109201941086a2111417f210a0340024020090d002022210a0c020b20112903002108200941786a2109200a41016a210a201141086a2111417f2008201b522008201b561b41016a0e03010600010b0b024020160d0041c0abc000210a410e21090c040b2016417f6a21162019200a4102746a41e0006a28020021190c000b0b41e6aac000210a411e2109201a4102490d16200e200f201010720c160b41b0abc000210a411021090b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402012450d004100210c41002111410021190340200320193602ac03200320113602a803200320063602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c2106200328028001211120032802840121192012417f6a22120d000b0b0240200641908cc500460d0020062802002112200610202012450d002012280200210c20121020200c450d000240200c2802002206450d000340200c10202006210c20062802002212210620120d000b0b200c10200b0240200b450d00200b21060340200528026021052006417f6a22060d000b0340200b417f6a220b0d000b0b02402017450d00410021064100210c4100210b03402003200b3602ac032003200c3602a803200320053602a403200320063602a003200341f0006a200341a0036a106120032802782106200328027c2105200328028001210c200328028401210b2017417f6a22170d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002105200610202005450d00024020052802002206450d00034020051020200621052006280200220c2106200c0d000b0b200510200b02402018450d00201821060340200428026021042006417f6a22060d000b03402018417f6a22180d000b0b02402014450d0041002106410021054100210c03402003200c3602ac03200320053602a803200320043602a403200320063602a003200341f0006a200341a0036a106120032802782106200328027c21042003280280012105200328028401210c2014417f6a22140d000b0b0240200441908cc500460d0020042802002106200410202006450d0020062802002105200610202005450d00024020052802002206450d000340200510202006210520062802002204210620040d000b0b200510200b200d4102490d01201f201e201d10720c010b0240200d4102490d00201f201e201d10720b1079210a200341b0016a2015360200200341ac016a2013360200200341a4016a2010360200200341a0016a200f3602002003419c016a200e36020020034194016a201436020020034190016a201836020020034188016a201736020020034184016a200b3602002003200a3602b401200320023602a8012003201a360298012003200436028c0120032005360280012003202036027c200320123602782003200c36027420032006360270200320032802f0023602b8012007200341f0006a107a4100210a0c130b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402015450d004100210641002105410021040340200320043602ac03200320053602a803200320023602a403200320063602a003200341f0006a200341a0036a106120032802782106200328027c2102200328028001210520032802840121042015417f6a22150d000b0b200241908cc500460d0020022802002105200210202005450d0020052802002106200510202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b201a4102490d11200e200f201010720c110b2001410c6a2802002104200141086a2802002105200141046a28020021060240024002400240024020022d0000220941014b0d00200141206a2903002107200141186a290300211b200141106a290300211c2002411b6a280000210c200241176a280000210b200241136a28000021182002410b6a2900002108200241076a2800002115200241036a280000211220022f000121174100210a0240024020090e020100010b2002411f6a2f000021134101210a0b200341ff016a20133b0000200341fb016a200c360000200341f7016a200b360000200341f3016a2018360000200341eb016a2008370000200320153600e701200320123600e301200320173b00e1012003200a3a00e001410021100240200a450d0041032110201c500d0041022110200341e0016a410172220a201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702109200341f0026a41186a221320034189016a290000370300200341f0026a41106a220c20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020094101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2013290300370300200341a0036a41106a200c290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a200a412010cf05450d004126210941ceabc000210a0c050b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c050b200341b4016a2802002111200341b0016a2802002112200341ac016a2802002113200341a8016a280200211e200341a4016a280200211f200341a0016a2802002116412c2109200341f0006a412c6a280200210e20034198016a280200211520034194016a280200211820034190016a28020021022003418c016a280200211a20034188016a280200211420034184016a280200210b20034180016a280200211d200341fc006a2802002119200341f0006a41086a28020021172003280274210c2003200341bc016a2802003602f0024184abc000210a024020100e0402040003020b2013210f2012210d034002400240200f2f010622200d004100210a0c010b20204103742109200f41086a2110417f210a0340024020090d002020210a0c020b20102903002108200941786a2109200a41016a210a201041086a2110417f2008201b522008201b561b41016a0e03010400010b0b0240200d0d0041c0abc000210a410e21090c050b200d417f6a210d200f200a4102746a41e0006a280200210f0c000b0b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a03402003200a3602ec01200320053602e801200320063602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c21062003280280012105200328028401210a2004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d1420062802002102200610202002450d1420022802002106200210202006450d14024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c140b02402018450d002018210a034020022802602102200a417f6a220a0d000b03402018417f6a22180d000b0b02402015450d004100210a41002109410021180340200320183602ac03200320093602a803200320023602a4032003200a3602a003200341f0006a200341a0036a10612003280278210a200328027c2102200328028001210920032802840121182015417f6a22150d000b0b0240200241908cc500460d0020022802002109200210202009450d002009280200210a20091020200a450d000240200a2802002202450d000340200a10202002210a20022802002209210220090d000b0b200a10200b10792102200341b0016a2011360200200341ac016a2012360200200341a4016a201e360200200341a0016a201f3602002003419c016a201636020020034194016a200436020020034190016a200536020020034188016a201a36020020034184016a2014360200200320023602b401200320133602a8012003200e360298012003200636028c012003200b360280012003201d36027c20032019360278200320173602742003200c360270200320032802f0023602b8012007200341f0006a107a4100210a0c130b41b0abc000210a411021090b02402017450d00201721100340200c280260210c2010417f6a22100d000b03402017417f6a22170d000b0b02402019450d0041002117410021104100210f03402003200f3602ac03200320103602a8032003200c3602a403200320173602a003200341f0006a200341a0036a106120032802782117200328027c210c2003280280012110200328028401210f2019417f6a22190d000b0b0240200c41908cc500460d00200c2802002119200c10202019450d0020192802002117201910202017450d0002402017280200220c450d00034020171020200c2117200c2802002219210c20190d000b0b201710200b02402014450d002014210c0340200b280260210b200c417f6a220c0d000b03402014417f6a22140d000b0b0240201a450d004100210c41002117410021140340200320143602ac03200320173602a8032003200b3602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c210b20032802800121172003280284012114201a417f6a221a0d000b0b0240200b41908cc500460d00200b280200210c200b1020200c450d00200c280200210b200c1020200b450d000240200b280200220c450d000340200b1020200c210b200c2802002217210c20170d000b0b200b10200b02402018450d002018210c034020022802602102200c417f6a220c0d000b03402018417f6a22180d000b0b02402015450d004100210c4100210b410021180340200320183602ac032003200b3602a803200320023602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c2102200328028001210b20032802840121182015417f6a22150d000b0b0240200241908cc500460d002002280200210b20021020200b450d00200b280200210c200b1020200c450d000240200c2802002202450d000340200c10202002210c2002280200220b2102200b0d000b0b200c10200b0240200e4102490d002016201f201e10720b02402012450d00201221020340201328026021132002417f6a22020d000b03402012417f6a22120d000b0b02402011450d00410021024100210c4100210b03402003200b3602ac032003200c3602a803200320133602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c2113200328028001210c200328028401210b2011417f6a22110d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320133602ac03200320053602a803200320063602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c2106200328028001210520032802840121132004417f6a22040d000b0b200641908cc500460d1020062802002102200610202002450d1020022802002106200210202006450d10024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c100b2001410c6a2802002104200141086a2802002105200141046a28020021060240024002400240024020022d0000220941014b0d00200141206a2903002107200141186a290300211b200141106a290300211c2002411b6a280000210c200241176a280000210b200241136a28000021182002410b6a2900002108200241076a2800002115200241036a280000211220022f000121174100210a0240024020090e020100010b2002411f6a2f000021134101210a0b200341ff016a20133b0000200341fb016a200c360000200341f7016a200b360000200341f3016a2018360000200341eb016a2008370000200320153600e701200320123600e301200320173b00e1012003200a3a00e001410021100240200a450d0041032110201c500d0041022110200341e0016a410172220a201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702109200341f0026a41186a221320034189016a290000370300200341f0026a41106a220c20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020094101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2013290300370300200341a0036a41106a200c290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a200a412010cf05450d004126210941ceabc000210a0c050b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c050b200341b4016a2802002111200341b0016a2802002112200341ac016a2802002113200341a8016a280200211e200341a4016a280200211f200341a0016a2802002116412c2109200341f0006a412c6a280200210e20034198016a280200211a20034194016a280200211420034190016a280200210b2003418c016a280200211520034188016a280200211820034184016a280200210220034180016a280200211d200341fc006a2802002119200341f0006a41086a28020021172003280274210c2003200341bc016a2802003602f0024184abc000210a024020100e0402040003020b2013210f2012210d034002400240200f2f010622200d004100210a0c010b20204103742109200f41086a2110417f210a0340024020090d002020210a0c020b20102903002108200941786a2109200a41016a210a201041086a2110417f2008201b522008201b561b41016a0e03010400010b0b0240200d0d0041c0abc000210a410e21090c050b200d417f6a210d200f200a4102746a41e0006a280200210f0c000b0b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a03402003200a3602ec01200320053602e801200320063602e401200320023602e001200341f0006a200341e0016a106120032802782102200328027c21062003280280012105200328028401210a2004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d1320062802002102200610202002450d1320022802002106200210202006450d13024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c130b02402018450d002018210a034020022802602102200a417f6a220a0d000b03402018417f6a22180d000b0b02402015450d004100210a41002109410021180340200320183602ac03200320093602a803200320023602a4032003200a3602a003200341f0006a200341a0036a10612003280278210a200328027c2102200328028001210920032802840121182015417f6a22150d000b0b0240200241908cc500460d0020022802002109200210202009450d002009280200210a20091020200a450d000240200a2802002202450d000340200a10202002210a20022802002209210220090d000b0b200a10200b10792102200341b0016a2011360200200341ac016a2012360200200341a4016a201e360200200341a0016a201f3602002003419c016a201636020020034194016a201a36020020034190016a201436020020034188016a200436020020034184016a2005360200200320023602b401200320133602a8012003200e360298012003200b36028c0120032006360280012003201d36027c20032019360278200320173602742003200c360270200320032802f0023602b8012007200341f0006a107a4100210a0c120b41b0abc000210a411021090b02402017450d00201721100340200c280260210c2010417f6a22100d000b03402017417f6a22170d000b0b02402019450d0041002117410021104100210f0340200320173602ac03200320103602a8032003200c3602a4032003200f3602a003200341f0006a200341a0036a10612003280278210f200328027c210c200328028001211020032802840121172019417f6a22190d000b0b0240200c41908cc500460d00200c2802002119200c10202019450d0020192802002117201910202017450d0002402017280200220c450d00034020171020200c2117200c2802002219210c20190d000b0b201710200b02402018450d002018210c034020022802602102200c417f6a220c0d000b03402018417f6a22180d000b0b02402015450d004100210c410021184100211703402003200c3602ac03200320183602a803200320023602a403200320173602a003200341f0006a200341a0036a106120032802782117200328027c21022003280280012118200328028401210c2015417f6a22150d000b0b0240200241908cc500460d0020022802002118200210202018450d002018280200210c20181020200c450d000240200c2802002202450d000340200c10202002210c20022802002218210220180d000b0b200c10200b02402014450d00201421020340200b280260210b2002417f6a22020d000b03402014417f6a22140d000b0b0240201a450d00410021024100210c410021180340200320183602ac032003200c3602a8032003200b3602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c210b200328028001210c2003280284012118201a417f6a221a0d000b0b0240200b41908cc500460d00200b2802002102200b10202002450d002002280200210c20021020200c450d000240200c2802002202450d000340200c10202002210c2002280200220b2102200b0d000b0b200c10200b0240200e4102490d002016201f201e10720b02402012450d00201221020340201328026021132002417f6a22020d000b03402012417f6a22120d000b0b02402011450d00410021024100210c4100210b0340200320023602ac032003200c3602a803200320133602a4032003200b3602a003200341f0006a200341a0036a10612003280278210b200328027c2113200328028001210c20032802840121022011417f6a22110d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320133602ac03200320053602a803200320063602a403200320023602a003200341f0006a200341a0036a106120032802782102200328027c2106200328028001210520032802840121132004417f6a22040d000b0b200641908cc500460d0f20062802002102200610202002450d0f20022802002106200210202006450d0f024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c0f0b20022d0000220541014b0d00200141186a2903002107200141106a290300211b200141086a290300211c20012d000121192002411b6a280000210a200241176a2800002109200241136a28000021132002410b6a2900002108200241076a280000210c200241036a280000210b20022f00012118410021060240024020050e020100010b2002411f6a2f00002104410121060b200341ff016a20043b0000200341fb016a200a360000200341f7016a2009360000200341f3016a2013360000200341eb016a20083700002003200c3600e7012003200b3600e301200320183b00e101200320063a00e0014100211102402006450d0041032111201c500d0041022111200341e0016a4101722206201b10680d00200341f0026a41086a22024200370300200342003703f00241d4bfc4004108200341f0026a1000200341c0026a41086a2002290300370300200320032903f0023703c002200341f0006a200341c0026a4110106920032d00702105200341f0026a41186a220420034189016a290000370300200341f0026a41106a220a20034181016a2900003703002002200341f9006a290000370300200320032900713703f0020240024020054101460d00200341a0036a41186a4200370300200341a0036a41106a4200370300200341a0036a41086a4200370300200342003703a0030c010b200341a0036a41186a2004290300370300200341a0036a41106a200a290300370300200341a0036a41086a2002290300370300200320032903f0023703a0030b200341a0036a2006412010cf05450d0041ceabc000210a412621090c0f0b200341f0006a20071067024020032802704101470d00200341f8006a28020021092003280274210a0c0f0b200341b4016a2802002114200341b0016a221f2802002113200341ac016a221e2802002102200341a8016a2802002116200341a4016a221d280200210d200341a0016a2220280200210e412c2109200341f0006a412c6a280200211020034198016a280200211720034194016a2222280200211820034190016a222128020021042003418c016a280200211220034188016a2223280200210b20034184016a2224280200210520034180016a280200212c200341fc006a2802002115200341f0006a41086a280200210c20032802742106200341f0026a41026a222a200341bf016a2d00003a0000200320032f00bd013b01f0024184abc000210a024020110e0402040003020b2002211a2013210f034002400240201a2f010622290d004100210a0c010b20294103742109201a41086a2111417f210a0340024020090d002029210a0c020b20112903002108200941786a2109200a41016a210a201141086a2111417f2008201b522008201b561b41016a0e03010400010b0b0240200f0d0041c0abc000210a410e21090c050b200f417f6a210f201a200a4102746a41e0006a280200211a0c000b0b41e6aac000210a411e21090c0d0b1079210a201f2014360200201e2013360200201d20163602002020200d3602002003419c016a200e3602002022201736020020212018360200202320123602002024200b360200200320193a00b8012003200a3602b401200320023602a80120032010360298012003200436028c0120032005360280012003202c36027c200320153602782003200c36027420032006360270200341bb016a202a2d00003a0000200320032f01f0023b00b9012007200341f0006a107a4100210a0c0c0b41b0abc000210a411021090b0240200c450d00200c21110340200628026021062011417f6a22110d000b0340200c417f6a220c0d000b0b02402015450d004100210c410021114100211903402003200c3602ac03200320113602a803200320063602a403200320193602a003200341f0006a200341a0036a106120032802782119200328027c21062003280280012111200328028401210c2015417f6a22150d000b0b0240200641908cc500460d0020062802002115200610202015450d002015280200210c20151020200c450d000240200c2802002206450d000340200c10202006210c20062802002215210620150d000b0b200c10200b0240200b450d00200b21060340200528026021052006417f6a22060d000b0340200b417f6a220b0d000b0b02402012450d00410021064100210c4100210b0340200320063602ac032003200c3602a803200320053602a4032003200b3602a003200341f0006a200341a0036a10612003280278210b200328027c2105200328028001210c20032802840121062012417f6a22120d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002105200610202005450d00024020052802002206450d00034020051020200621052006280200220c2106200c0d000b0b200510200b02402018450d00201821060340200428026021042006417f6a22060d000b03402018417f6a22180d000b0b02402017450d0041002106410021054100210c0340200320063602ac03200320053602a803200320043602a4032003200c3602a003200341f0006a200341a0036a10612003280278210c200328027c2104200328028001210520032802840121062017417f6a22170d000b0b0240200441908cc500460d0020042802002106200410202006450d0020062802002105200610202005450d00024020052802002206450d000340200510202006210520062802002204210620040d000b0b200510200b024020104102490d00200e200d201610720b02402013450d00201321060340200228026021022006417f6a22060d000b03402013417f6a22130d000b0b02402014450d004100210641002105410021040340200320063602ac03200320053602a803200320023602a403200320043602a003200341f0006a200341a0036a106120032802782104200328027c2102200328028001210520032802840121062014417f6a22140d000b0b200241908cc500460d0a20022802002105200210202005450d0a20052802002106200510202006450d0a024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c0a0b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d0041002102410021054100210a0340200320023602ec01200320053602e801200320063602e4012003200a3602e001200341f0006a200341e0016a10612003280278210a200328027c2106200328028001210520032802840121022004417f6a22040d000b0b41e6aac000210a411e2109200641908cc500460d0920062802002102200610202002450d0920022802002106200210202006450d09024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c090b02402018450d002018210a034020022802602102200a417f6a220a0d000b03402018417f6a22180d000b0b02402015450d004100210a410021094100211803402003200a3602ac03200320093602a803200320023602a403200320183602a003200341f0006a200341a0036a106120032802782118200328027c21022003280280012109200328028401210a2015417f6a22150d000b0b0240200241908cc500460d0020022802002109200210202009450d002009280200210a20091020200a450d000240200a2802002202450d000340200a10202002210a20022802002209210220090d000b0b200a10200b10792102200341b0016a2011360200200341ac016a2012360200200341a4016a201d360200200341a0016a201e3602002003419c016a201f36020020034194016a201a36020020034190016a201436020020034188016a201936020020034184016a2017360200200320023602b401200320133602a8012003200d360298012003200b36028c012003200c360280012003200f36027c200320043602782003200536027420032006360270200320032802f0023602b8012007200341f0006a107a4100210a0c080b41b0abc000210a411021090b02402018450d00201821100340200228026021022010417f6a22100d000b03402018417f6a22180d000b0b02402015450d0041002118410021104100210f0340200320183602ac03200320103602a803200320023602a4032003200f3602a003200341f0006a200341a0036a10612003280278210f200328027c2102200328028001211020032802840121182015417f6a22150d000b0b0240200241908cc500460d0020022802002115200210202015450d0020152802002118201510202018450d00024020182802002202450d000340201810202002211820022802002215210220150d000b0b201810200b02402017450d00201721020340200c280260210c2002417f6a22020d000b03402017417f6a22170d000b0b02402019450d004100210241002118410021150340200320023602ac03200320183602a8032003200c3602a403200320153602a003200341f0006a200341a0036a106120032802782115200328027c210c200328028001211820032802840121022019417f6a22190d000b0b0240200c41908cc500460d00200c2802002102200c10202002450d002002280200210c20021020200c450d000240200c2802002202450d000340200c10202002210c20022802002218210220180d000b0b200c10200b02402014450d00201421020340200b280260210b2002417f6a22020d000b03402014417f6a22140d000b0b0240201a450d00410021024100210c410021180340200320023602ac032003200c3602a8032003200b3602a403200320183602a003200341f0006a200341a0036a106120032802782118200328027c210b200328028001210c2003280284012102201a417f6a221a0d000b0b0240200b41908cc500460d00200b2802002102200b10202002450d002002280200210c20021020200c450d000240200c2802002202450d000340200c10202002210c2002280200220b2102200b0d000b0b200c10200b0240200d4102490d00201f201e201d10720b02402012450d00201221020340201328026021132002417f6a22020d000b03402012417f6a22120d000b0b02402011450d00410021024100210c4100210b0340200320023602ac032003200c3602a803200320133602a4032003200b3602a003200341f0006a200341a0036a10612003280278210b200328027c2113200328028001210c20032802840121022011417f6a22110d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320023602ac03200320053602a803200320063602a403200320133602a003200341f0006a200341a0036a106120032802782113200328027c2106200328028001210520032802840121022004417f6a22040d000b0b200641908cc500460d0520062802002102200610202002450d0520022802002106200210202006450d05024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200c050b200610200c040b200c10200b10792102200341b0016a2004360200200341ac016a2005360200200341a4016a200d360200200341a0016a200e3602002003419c016a200f36020020034194016a201136020020034190016a201236020020034188016a201436020020034184016a2015360200200320023602b401200320063602a80120032010360298012003201336028c0120032009360280012003201636027c20032017360278200320183602742003200a360270200320032802a0033602b8012007200341f0006a107a4100210a0c020b02402018450d00201821190340200a280260210a2019417f6a22190d000b03402018417f6a22180d000b0b02402017450d0041002118410021194100211a0340200320183602ec01200320193602e8012003200a3602e4012003201a3602e001200341f0006a200341e0016a10612003280278211a200328027c210a200328028001211920032802840121182017417f6a22170d000b0b0240200a41908cc500460d00200a2802002117200a10202017450d0020172802002118201710202018450d0002402018280200220a450d00034020181020200a2118200a2802002217210a20170d000b0b201810200b02402015450d002015210a034020092802602109200a417f6a220a0d000b03402015417f6a22150d000b0b02402014450d004100210a410021184100211503402003200a3602ec01200320183602e801200320093602e401200320153602e001200341f0006a200341e0016a106120032802782115200328027c21092003280280012118200328028401210a2014417f6a22140d000b0b0240200941908cc500460d002009280200210a20091020200a450d00200a2802002109200a10202009450d0002402009280200220a450d00034020091020200a2109200a2802002218210a20180d000b0b200910200b02402012450d002012210a034020132802602113200a417f6a220a0d000b03402012417f6a22120d000b0b02402011450d004100210a410021094100211803402003200a3602ec01200320093602e801200320133602e401200320183602e001200341f0006a200341e0016a106120032802782118200328027c21132003280280012109200328028401210a2011417f6a22110d000b0b0240201341908cc500460d002013280200210a20131020200a450d00200a2802002109200a10202009450d0002402009280200220a450d00034020091020200a2109200a2802002213210a20130d000b0b200910200b024020104102490d00200f200e200d10720b0240200c450d00200c210a034020022802602102200a417f6a220a0d000b0340200c417f6a220c0d000b0b0240200b450d004100210a410021094100211303402003200a3602ec01200320093602e801200320023602e401200320133602e001200341f0006a200341e0016a106120032802782113200328027c21022003280280012109200328028401210a200b417f6a220b0d000b0b410d210941d9aac000210a200241908cc500460d002002280200210c20021020200c450d00200c2802002113200c10202013450d00024020132802002202450d00034020131020200221132002280200220c2102200c0d000b0b201310200b02402005450d00200521020340200628026021062002417f6a22020d000b03402005417f6a22050d000b0b02402004450d004100210241002105410021130340200320023602ec01200320053602e801200320063602e401200320133602e001200341f0006a200341e0016a106120032802782113200328027c2106200328028001210520032802840121022004417f6a22040d000b0b200641908cc500460d0020062802002102200610202002450d0020022802002106200210202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b0240024020012d00002202410d4b0d00410120027441f6f700710d010b0240024002400240024002402002417d6a220241094b0d000240024002400240024002400240024020020e0a0e0001020304050e06070e0b2001410c6a2802002106200141046a28020021020240200141086a2802002201450d00200121050340200228026021022005417f6a22050d000b03402001417f6a22010d000b0b02402006450d004100210141002105410021040340200320043602ec01200320053602e801200320023602e401200320013602e001200341f0006a200341e0016a106120032802782101200328027c2102200328028001210520032802840121042006417f6a22060d000b0b200241908cc500460d0d20022802002101200210202001450d0d20012802002102200110202002450d0d20022802002201450d0c0340200210202001210220012802002206210120060d000c0d0b0b2001410c6a2802002106200141046a28020021020240200141086a2802002201450d00200121050340200228026021022005417f6a22050d000b03402001417f6a22010d000b0b02402006450d004100210141002105410021040340200320043602ec01200320053602e801200320023602e401200320013602e001200341f0006a200341e0016a106120032802782101200328027c2102200328028001210520032802840121042006417f6a22060d000b0b200241908cc500460d0c20022802002101200210202001450d0c20012802002102200110202002450d0c20022802002201450d0a0340200210202001210220012802002206210120060d000c0b0b0b200141046a2802004102490d0b200141086a2802002001410c6a280200200141106a28020010720c0b0b0240200141086a280200450d00200141046a28020010200b0240200141146a280200450d00200141106a28020010200b200141246a28020021062001411c6a28020021020240200141206a2802002205450d00200521040340200228026021022004417f6a22040d000b03402005417f6a22050d000b0b02402006450d004100210541002104410021130340200320133602ec01200320043602e801200320023602e401200320053602e001200341f0006a200341e0016a106120032802782105200328027c2102200328028001210420032802840121132006417f6a22060d000b0b200241908cc500460d0720022802002105200210202005450d0720052802002106200510202006450d07200628020022020d050c060b0240200141086a280200450d00200141046a28020010200b200141146a280200450d09200141106a28020010200c090b0240200141086a280200450d00200141046a28020010200b0240200141186a2802002202450d00200241306c2106200141106a28020041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200641506a22060d000b0b200141146a280200450d08200128021010200c080b02402001410c6a2802002206450d00200141046a2802002102200641186c210603402002106b200241186a2102200641686a22060d000b0b200141086a280200450d07200128020410200c070b02402001410c6a2802002206450d00200141046a2802002102200641186c210603402002106b200241186a2102200641686a22060d000b0b200141086a280200450d06200128020410200c060b200141046a2802002001410c6a2802001071200141086a280200450d05200128020410200c050b0340200610202002210620022802002205210220050d000b0b200610200b200141346a28020021062001412c6a28020021020240200141306a2802002205450d00200521040340200228026021022004417f6a22040d000b03402005417f6a22050d000b0b02402006450d004100210541002104410021130340200320133602ec01200320043602e801200320023602e401200320053602e001200341f0006a200341e0016a106120032802782105200328027c2102200328028001210420032802840121132006417f6a22060d000b0b0240200241908cc500460d0020022802002105200210202005450d0020052802002106200510202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b200141c0006a2802002106200141386a280200210202402001413c6a2802002205450d00200521040340200228026021022004417f6a22040d000b03402005417f6a22050d000b0b02402006450d004100210541002104410021130340200320133602ec01200320043602e801200320023602e401200320053602e001200341f0006a200341e0016a106120032802782105200328027c2102200328028001210420032802840121132006417f6a22060d000b0b0240200241908cc500460d0020022802002105200210202005450d0020052802002106200510202006450d00024020062802002202450d000340200610202002210620022802002205210220050d000b0b200610200b0240200141c4006a2802004102490d00200141c8006a280200200141cc006a280200200141d0006a28020010720b200141dc006a2802002106200141d4006a28020021020240200141d8006a2802002201450d00200121050340200228026021022005417f6a22050d000b03402001417f6a22010d000b0b02402006450d004100210141002105410021040340200320043602ec01200320053602e801200320023602e401200320013602e001200341f0006a200341e0016a106120032802782101200328027c2102200328028001210520032802840121042006417f6a22060d000b0b200241908cc500460d0220022802002101200210202001450d0220012802002102200110202002450d02024020022802002201450d000340200210202001210220012802002206210120060d000b0b200210200c020b200210200c010b200210200b200020093602042000200a360200200341d0036a24000bfb0201057f230041f0006b22022400024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032001370033200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003413b20021001200241d0006a41186a2004290300370300200241d0006a41106a2005290300370300200241d0006a41086a2006290300370300200220022903003703502003102002400240200241d0006a412041e4fdc600410041001002417f460d0020022001107b200041046a200241cc0010cd051a410021030c010b200041e2adc000360204200041086a4121360200410121030b20002003360200200241f0006a24000f0b41334101102d000b41e6004101102d000bee1b03037f037e087f230041a0026b22022400024002400240024002400240024020014202560d00024002402001a70e03000103000b20024198016a41086a22034200370300200242003703980141e6ebc200412120024198016a1000200241286a41086a200329030037030020022002290398013703282002410036029801200241286a411020024198016a100321032002280298012204417f460d032003450d030240024020044108490d002003290000210120031020200241d8006a200110800120024198016a41386a200241d8006a41386a29030037030020024198016a41306a200241d8006a41306a29030037030020024198016a41286a200241d8006a41286a29030037030020024198016a41206a200241d8006a41206a29030037030020024198016a41186a200241d8006a41186a29030037030020024198016a41106a200241d8006a41106a29030037030020024198016a41086a200241d8006a41086a2903003703002002200229035837039801200241b4016a22032000470d01410121030c090b41ceb8c400413320024198016a41fcbfc4004184b9c400102e000b20032000412010cf054521030c070b200241086a10d102410021032002290308a7450d06200241d8006a200229031010d20220024198016a200241d8006a10d302024020022903a8014202510d0020022903980122014203510d07200241c0016a2903002105200241b8016a290300210620022903a0012107200241f8016a22082000460d040340024020014201520d0020024198016a200710d40220082000412010cf0520022802e001220472450d080240200441014b0d00024020040e020200020b20022802ec01450d0120022802e80110200c010b20022802ec01450d0020022802e80110200b2006a7450d08200241d8006a200510d20220024198016a200241d8006a10d30220022903a8014202510d0620022903c001210520022903b801210620022903a001210720022903980122014203520d000c080b0b418ddbc50041dd0041ecdbc5001045000b41002103200142e707580d0502400240024002400240024002404121101e2204450d0041002103200441206a41002d0096f0423a0000200441186a410029008ef042370000200441106a4100290086f042370000200441086a41002900feef42370000200441002900f6ef423700002004412141c20010222204450d01200420014298787c220137002120024198016a41186a2208420037030020024198016a41106a2209420037030020024198016a41086a220a420037030020024200370398012004412920024198016a1001200241d8006a41186a2008290300370300200241d8006a41106a2009290300370300200241d8006a41086a200a290300370300200220022903980137035820041020200241d8006a412041e4fdc600410041001002417f460d0c4121101e2203450d02200341206a41002d0096f0423a0000200341186a410029008ef042370000200341106a4100290086f042370000200341086a41002900feef42370000200341002900f6ef423700002003412141c20010222203450d032003200137002120024198016a41186a2204420037030020024198016a41106a2208420037030020024198016a41086a2209420037030020024200370398012003412920024198016a1001200241d8006a41186a2004290300370300200241d8006a41106a2008290300370300200241d8006a41086a20092903003703002002200229039801370358200310202002410036029801200241d8006a412020024198016a100321030240024002400240024002402002280298012204417f460d002003450d002004450d0c20032d0000220841024b0d0c2004417f6a2104024020080e03030500030b200441074b0d010c0c0b200241386a21030c020b200329000121012003102020024198016a200110d5022002280298014101460d08200241d8006a41086a200241f0016a290300370300200241d8006a41106a200241f8016a290300370300200241d8006a41186a20024180026a290300370300200241f8006a20024188026a290300370300200241d8006a41286a20024190026a2f01003b01002002200241e8016a290300370358200241e4016a280200210b200241e0016a2802002103200241d8016a280200210c200241d4016a2802002104200241cc016a280200210d200241c8016a280200210820024198016a41286a280200210e200241bc016a2802002109200241b4016a280200210a20024198016a41186a280200210f200241386a41086a200241ea006a290100370300200241386a41106a200241f2006a290100370300200241386a41186a200241fa006a290100370300200220022901623703380240200a450d00200f10200b02402009450d00200e450d00200910200b02402008450d00200d450d00200810200b02402004450d00200c450d00200410200b02402003450d00200b450d00200310200b200241386a21030c030b20031020200241386a21030b20024198016a41086a22044200370300200242003703980141e6ebc200412120024198016a1000200241286a41086a200429030037030020022002290398013703282002410036029801200241286a411020024198016a100321042002280298012208417f460d0a2004450d0a024020084108490d002004290000210120041020200241d8006a200110800120024198016a41206a200241d8006a41206a29030037030020024198016a41186a200241d8006a41186a29030037030020024198016a41286a200241d8006a41286a29030037030020024198016a41306a200241d8006a41306a29030037030020024198016a41386a200241d8006a41386a290300370300200320022902b401370000200341086a200241bc016a290200370000200341106a200241c4016a290200370000200341186a200241cc016a2902003700000c020b41ceb8c400413320024198016a41fcbfc4004184b9c400102e000b20044108490d07200329000121012003102020024198016a200110d6022002280298014101460d06200241d8006a41086a20024180026a2903002201370300200241d8006a41106a20024188026a2903002206370300200241d8006a41186a20024190026a2903002205370300200241f8006a20024198026a2903002207370300200241386a41086a2006370300200241386a41106a2005370300200241386a41186a20073703002002200241f8016a29030037035820022001370338200241f4016a2802002103200241f0016a280200210802400240200241e8016a280200220441014b0d0020040e020100010b2003450d00200810200b200241386a21030b20024198016a41186a200341186a29000037030020024198016a41106a200341106a29000037030020024198016a41086a200341086a2900003703002002200329000037039801024020024198016a2000470d00410121030c0d0b200020024198016a412010cf054521030c0c0b41214101102d000b41c2004101102d000b41214101102d000b41c2004101102d000b2002200229029c0137035841effbc2004112200241d8006a4184fcc2004194fcc200102e000b2002200229029c0137035841a4fcc2004112200241d8006a4184fcc20041b8fcc200102e000b41ceb8c400413320024198016a41fcbfc4004184b9c400102e000b200241186a10d102410021032002290318a7450d04200241d8006a200229032010d20220024198016a200241d8006a10d30202400240024020022903a8014202510d0020022903980122054203510d07200241c0016a2903002106200241b8016a290300210120022903a0012107200241ea016a22092000460d010340024020054202520d0020024198016a200710d70220092000412010cf052104024020022802ac01450d0020022802a80110200b024020022802b4012208450d0020022802b801450d00200810200b024020022802c0012208450d0020022802c401450d00200810200b024020022802cc012208450d0020022802d001450d00200810200b024020022802d8012208450d0020022802dc01450d00200810200b20040d00410121030c090b2001a7450d08200241d8006a200610d20220024198016a200241d8006a10d30220022903a8014202510d0320022903c001210620022903b801210120022903a001210720022903980122054203510d080c000b0b418ddbc50041dd0041ecdbc5001045000b024020054202510d0003402001a7450d07200241d8006a200610d20220024198016a200241d8006a10d30220022903a8014202510d0220022903c001210620022903b8012101200229039801427e7c22054201560d000b02402005a70e020007000b20022903a00121070b20024198016a200710d702024020022802ac01450d0020022802a80110200b024020022802b4012203450d0020022802b801450d00200310200b024020022802c0012203450d0020022802c401450d00200310200b024020022802cc012203450d0020022802d001450d00200310200b024020022802d8012203450d0020022802dc01450d00200310200b410121030c050b418ddbc50041dd0041ecdbc5001045000b410021030c030b0340024020014201520d0020024198016a200710d402024020022802e001220041014b0d00024020000e020500050b20022802ec01450d0120022802e80110200c010b20022802ec01450d0020022802e80110200b2006a7450d03200241d8006a200510d20220024198016a200241d8006a10d30220022903a8014202510d0120022903c001210520022903b801210620022903a001210720022903980122014203520d000c030b0b418ddbc50041dd0041ecdbc5001045000b410121030b200241a0026a240020030bd10201047f230041d0006b220324002003410036022820012002200341286a10032104024002400240024020032802282205417f460d0020040d010b200041003a00000c010b41002101200341003a0048034020052001460d02200341286a20016a200420016a2d00003a00002003200141016a22023a00482002210120024120470d000b200341086a41186a2201200341286a41186a290300370300200341086a41106a2202200341286a41106a290300370300200341086a41086a2206200341286a41086a2903003703002003200329032837030802402005450d00200410200b20002003290308370001200041013a0000200041196a2001290300370000200041116a2002290300370000200041096a20062903003700000b200341d0006a24000f0b0240200141ff0171450d00200341003a00480b41ceb8c4004133200341286a41fcbfc4004184b9c400102e000baa5205037f017e087f037e047f230041c0036b22052400200541286a200141136a2900003703002005412e6a200141196a29000037010020052001410b6a2900003703204101210602400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0000220741014b0d00024020070e020002000b200541d8016a41106a200541a8026a41106a290300370300200541d8016a41086a200541a8026a41086a2903002208370300200541086a20083703002005410e6a200541d8016a410e6a290100370100200520052903a8023703000c020b41e6aac0002109411e210a0c150b200141076a2800002107200141036a280000210b20012f0001210c200541a8026a410e6a200541206a410e6a290100370100200541a8026a41086a2201200541206a41086a290300370300200541d8016a41106a200541a8026a41106a290300370300200541d8016a41086a220d20012903002208370300200541086a220620083703002005410e6a2209200541d8016a410e6a29010037010020052005290320370300200520073601262005200b3601222005200c3b0120200541326a2006290300370100200541386a20092901003700002005200529030037012a20014200370300200542003703a80241e6ebc2004121200541a8026a1000200d2001290300370300200520052903a8023703d801200541003602a802200541d8016a4110200541a8026a10032101024020052802a8022207417f460d002001450d0020074108490d0d2001290000210820011020200541a8026a2008108001200541c4026a200541206a412010cf05450d010b200541a8026a41086a22014200370300200542003703a80241d4bfc4004108200541a8026a1000200541d8016a41086a22072001290300370300200520052903a8023703d801200541a8026a200541d8016a4110106920052d00a8022101200541b8016a41186a220b200541c1026a290000370300200541b8016a41106a220c200541b9026a290000370300200541b8016a41086a220d200541b1026a290000370300200520052900a9023703b8010240024020014101460d00200541d8016a41186a4200370300200541d8016a41106a420037030020074200370300200542003703d8010c010b200541d8016a41186a200b290300370300200541d8016a41106a200c2903003703002007200d290300370300200520052903b8013703d8010b200541d8016a200541206a412010cf050d010b2003280208210e200328020421012003280200210d20022802042107200228020021062002280208210b200541a8026a41086a220c4200370300200542003703a802418388c7004122200541a8026a1000200541d8016a41086a200c290300370300200520052903a8023703d801200541a8026a200541d8016a107502400240024020052f01aa02410020052f01a802410146220c1b220941ffff0371200b41ffff0371220a4d0d0041efd2c00021094117210c0c010b024020052f01ac024100200c1b20096a41ffff0371200a4f0d004186d3c00021094116210c0c010b200541a8026a41086a220c4200370300200542003703a80241a588c7004129200541a8026a1000200541d8016a41086a200c290300370300200520052903a8023703d801200541a8026a200541d8016a1075411d210c419cd3c000210920052f01aa02410020052f01a802410146220a1b220f41ffff0371200e41ffff037122104b0d0020052f01ac024100200a1b200f6a41ffff037120104f0d010b02402001450d00200d10200b200cad210802402007450d00200610200b2008a7210a410021060c140b42002108200541a8026a41086a220c4200370300200542003703a80241fd86c700411a200541a8026a1000200541d8016a41086a200c290300370300200520052903a8023703d801200541003602a802200541d8016a4110200541a8026a1003210c024020052802a8022202417f460d00200c450d0020024108490d02200c2900002108200c10200b200541dc026a200e360200200541a8026a41306a2001360200200541d0026a200b360200200541cc026a2007360200200541a8026a41186a4200370300200541a8026a41106a4280808080c0003703002005200d3602d402200520063602c802200542083703b002200520083703a8024118101e220b450d02200b41106a41002900dc8647370000200b41086a41002900d48647370000200b41002900cc8647370000200b411841301022220b450d03200b2008370018200541b8016a41186a220c4200370300200541b8016a41106a22024200370300200541b8016a41086a22034200370300200542003703b801200b4120200541b8016a1001200541d8016a41186a200c290300370300200541d8016a41106a2002290300370300200541d8016a41086a2003290300370300200520052903b8013703d801200b1020200541203602242005200541d8016a360220200541a8026a200541206a107602402007450d00200610200b02402001450d00200d10200b42002111200541a8026a41086a22014200370300200542003703a80241fd86c700411a200541a8026a1000200541d8016a41086a2001290300370300200520052903a8023703d801200541003602a802200541d8016a4110200541a8026a10032101024020052802a8022207417f460d002001450d0020074108490d0520012900002111200110200b200541a8026a41086a22014200370300200542003703a80241fd86c700411a200541a8026a1000200541d8016a41086a2001290300370300200520052903a8023703d8012005201142017c3703a802200541d8016a4110200541a8026a41081005200541a8026a41106a2008370300200141003a0000200541153a00a802200541a8026a107720052008370318200541206a200441cc0010cd051a4133101e2201450d052001412f6a410028009aaa40360000200141286a4100290093aa40370000200141206a410029008baa40370000200141186a4100290083aa40370000200141106a41002900fba940370000200141086a41002900f3a940370000200141002900eba9403700002001413341e60010222201450d0620012008370033200541b8016a41186a22074200370300200541b8016a41106a220b4200370300200541b8016a41086a220c4200370300200542003703b8012001413b200541b8016a1001200541f0006a41186a2007290300370300200541f0006a41106a200b290300370300200541f0006a41086a200c290300370300200520052903b80137037020011020200541003602a802200541f0006a4120200541a8026a1003210f024020052802a8022210417f460d00200f450d00200520103602dc012005200f3602d801200541a8026a200541d8016a107c20052903f80222114202510d0820054190036a290300210820054188036a2903002112200541e4026a280200210d200529038003211320052802e802210620052802e002210120052802dc02211420052802d802211520052802d402211620052802d002211720052802cc02210920052802c802210420052802c402210720052802c002210a20052802bc02210220052802b802210b20052802b002210e20052802ac02210320052802a802210c02402010450d00200f10200b02402003450d002003210f0340200c280260210c200f417f6a220f0d000b03402003417f6a22030d000b0b0240200e450d00410021034100210f410021100340200520033602e4012005200f3602e0012005200c3602dc01200520103602d801200541a8026a200541d8016a106120052802b002211020052802b402210c20052802b802210f20052802bc022103200e417f6a220e0d000b0b200c41908cc500460d12200c280200210e200c1020200e450d12200e2802002103200e10202003450d122003280200220c0d0a0c110b2005200541186a36029401200541b8016a41186a22014200370300200541b8016a41106a22074200370300200541b8016a41086a220b4200370300200542003703b801419eaac000413b200541b8016a1001200541d8016a41186a2001290300370300200541d8016a41106a2007290300370300200541d8016a41086a200b290300370300200520052903b8013703d801200541003602a802200541d8016a4120200541a8026a10032101024020052802a8022207417f460d002001450d000240024020074108490d00200129000021082001102020054198016a2008107d200541003602a80220054198016a4120200541a8026a10032101024020052802a8022207417f460d0020010d020b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b2005200736029c032005200136029803200541a8026a20054198036a107c20052903f80222114202510d09200541d8016a200541a8026a41d00010cd051a200541b8016a41106a220b20054190036a290300370300200541b8016a41086a220c20054188036a29030037030020052005290380033703b80102402007450d00200110200b200541a8026a200541d8016a41d00010cd051a20054198036a41106a2201200b29030037030020054198036a41086a2207200c290300370300200520052903b80137039803200541d8016a200541a8026a41cc0010cd051a200541d0016a220b2001290300370300200520113703b80120052005290398033703c0012005200729030022113703c801200541a8026a200541d8016a41cc0010cd051a200541a8026a41d0006a200b410020114201511b360200200520054194016a3602f402200541003602a0032005420137039803200541a8026a20054198036a106220052d00b402210b0240200528029c0320052802a0032207460d0020052802980321010c100b200741016a22012007490d102007410174220c2001200c20014b1b220c4100480d100240024020070d00200c101e21010c010b2005280298032007200c102221010b02402001450d002005200c36029c0320052001360298030c100b200c4101102d000b42002112200541b8016a41186a22014200370300200541b8016a41106a22074200370300200541b8016a41086a220b4200370300200542003703b801419eaac000413b200541b8016a1001200541d8016a41186a2001290300370300200541d8016a41106a2007290300370300200541d8016a41086a200b290300370300200520052903b8013703d801200520052903183703a802200541d8016a4120200541a8026a41081005420021110c120b200428020821072004280200210102402004280204220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b200141908cc500460d0c2001280200210b20011020200b450d0c200b2802002107200b10202007450d0c200728020022010d090c0b0b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b41184101102d000b41304101102d000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b41334101102d000b41e6004101102d000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b034020031020200c2103200c280200220e210c200e0d000c070b0b034020071020200121072001280200220b2101200b0d000c020b0b41ceb8c4004133200541b0036a41fcbfc4004184b9c400102e000b200710200b200441186a2802002107200428021021010240200441146a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200441246a2802002107200428021c21010240200441206a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020042802284102490d002004412c6a280200200441306a280200200441346a28020010720b200441c0006a28020021072004280238210102402004413c6a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602e4012005200c3602e001200520013602dc012005200b3602d801200541a8026a200541d8016a106120052802b002210b20052802b402210120052802b802210c20052802bc02210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b0240200341046a280200450d00200328020010200b41c9adc00021094119210a200241046a280200450d06200228020010200c060b2005200741016a3602a003200120076a200b3a000020052d00f002210b02400240024002400240024002400240200528029c0320052802a0032207470d00200741016a220c2007490d082007410174220d200c200d200c4b1b220c4100480d080240024020070d00200c101e21010c010b20012007200c102221010b2001450d012005200c36029c0320052001360298030b2005200741016a3602a003200120076a200b3a0000200541b8026a20054198036a1062200541c4026a20054198036a106220052802d002220141024b0d0620010e03010203010b200c4101102d000b0240200528029c0320052802a0032201460d0020052802980321070c040b200141016a22072001490d052001410174220b2007200b20074b1b220b4100480d050240024020010d00200b101e21070c010b2005280298032001200b102221070b02402007450d002005200b36029c0320052007360298030c040b200b4101102d000b0240200528029c0320052802a0032201460d0020052802980321070c020b200141016a22072001490d042001410174220b2007200b20074b1b220b4100480d040240024020010d00200b101e21070c010b2005280298032001200b102221070b02402007450d002005200b36029c0320052007360298030c020b200b4101102d000b02400240200528029c0320052802a0032201460d0020052802980321070c010b200141016a22072001490d042001410174220b2007200b20074b1b220b4100480d040240024020010d00200b101e21070c010b2005280298032001200b102221070b02402007450d002005200b36029c0320052007360298030c010b200b4101102d000b2005200141016a3602a003200720016a41023a0000200541d4026a20054198036a10640c020b2005200141016a3602a003200720016a41013a00000c010b2005200141016a3602a003200720016a41003a00000b200541e0026a20054198036a106220052802ec02210b02400240200528029c03220720052802a00322016b4104490d0020052802980321070c010b200141046a220c2001490d012007410174220d200c200d200c4b1b220c4100480d010240024020070d00200c101e21070c010b2005280298032007200c102221070b02402007450d002005200c36029c0320052007360298030c010b200c4101102d000b2005200141046a3602a003200720016a200b360000200541a8026a41cc006a20054198036a108101200528029c03210120054198016a4120200528029803220720052802a003100502402001450d00200710200b20052802b002210720052802a8022101024020052802ac02220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541c0026a280200210720052802b80221010240200541bc026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541cc026a280200210720052802c40221010240200541c8026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020052802d0024102490d00200541d4026a280200200541d8026a280200200541dc026a28020010720b200541e8026a280200210720052802e00221010240200541e4026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602bc032005200c3602b803200520013602b4032005200b3602b00320054198036a200541b0036a106120052802a003210b20052802a403210120052802a803210c20052802ac03210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200528029401210142002111200541b8016a41186a22074200370300200541b8016a41106a220b4200370300200541b8016a41086a220c4200370300200542003703b801419eaac000413b200541b8016a1001200541d8016a41186a2007290300370300200541d8016a41106a200b290300370300200541d8016a41086a200c290300370300200520052903b8013703d801200520012903003703a802200541d8016a4120200541a8026a41081005420121120c030b1027000b200310200b02402002450d002002210c0340200b280260210b200c417f6a220c0d000b03402002417f6a22020d000b0b0240200a450d004100210c410021024100210303402005200c3602e401200520023602e0012005200b3602dc01200520033602d801200541a8026a200541d8016a106120052802b002210320052802b402210b20052802b802210220052802bc02210c200a417f6a220a0d000b0b0240200b41908cc500460d00200b2802002102200b10202002450d002002280200210c20021020200c450d000240200c280200220b450d000340200c1020200b210c200b2802002202210b20020d000b0b200c10200b02402004450d002004210b034020072802602107200b417f6a220b0d000b03402004417f6a22040d000b0b02402009450d004100210b4100210c4100210403402005200b3602e4012005200c3602e001200520073602dc01200520043602d801200541a8026a200541d8016a106120052802b002210420052802b402210720052802b802210c20052802bc02210b2009417f6a22090d000b0b0240200741908cc500460d002007280200210c20071020200c450d00200c280200210b200c1020200b450d000240200b2802002207450d000340200b10202007210b2007280200220c2107200c0d000b0b200b10200b024020174102490d0020162015201410720b0240200d450d00200d21070340200128026021012007417f6a22070d000b0340200d417f6a220d0d000b0b02402006450d00410021074100210b4100210c03402005200c3602e4012005200b3602e001200520013602dc01200520073602d801200541a8026a200541d8016a106120052802b002210720052802b402210120052802b802210b20052802bc02210c2006417f6a22060d000b0b200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541a8026a200541206a41cc0010cd051a20054190036a200837030020054188036a201237030020054180036a2013370300200520113703f802200541203602dc012005200541f0006a3602d801200541a8026a200541d8016a107f20052802b002210720052802a8022101024020052802ac02220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200b3602c001200520013602bc012005200c3602b801200541d8016a200541b8016a106120052802e001210c20052802e401210120052802e801210b20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541c0026a280200210720052802b80221010240200541bc026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200c3602c001200520013602bc012005200b3602b801200541d8016a200541b8016a106120052802e001210b20052802e401210120052802e801210c20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200541cc026a280200210720052802c40221010240200541c8026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200c3602c001200520013602bc012005200b3602b801200541d8016a200541b8016a106120052802e001210b20052802e401210120052802e801210c20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020052802d0024102490d00200541d4026a280200200541d8026a280200200541dc026a28020010720b200541e8026a280200210720052802e00221010240200541e4026a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200d3602c4012005200c3602c001200520013602bc012005200b3602b801200541d8016a200541b8016a106120052802e001210b20052802e401210120052802e801210c20052802ec01210d2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b410021094119210a0c010b200428020821072004280200210102402004280204220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200441186a2802002107200428021021010240200441146a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b200441246a2802002107200428021c21010240200441206a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b024020042802284102490d002004412c6a280200200441306a280200200441346a28020010720b200441c0006a28020021072004280238210102402004413c6a280200220b450d00200b210c034020012802602101200c417f6a220c0d000b0340200b417f6a220b0d000b0b02402007450d004100210b4100210c4100210d03402005200b3602e4012005200c3602e001200520013602dc012005200d3602d801200541a8026a200541d8016a106120052802b002210d20052802b402210120052802b802210c20052802bc02210b2007417f6a22070d000b0b0240200141908cc500460d002001280200210b20011020200b450d00200b2802002107200b10202007450d00024020072802002201450d00034020071020200121072001280200220b2101200b0d000b0b200710200b2006450d000240200341046a280200450d00200328020010200b200241046a280200450d00200228020010200b2000200a36020420002009360200200541c0036a24000beb0201027f0240024020002d0000220141114b0d0002400240024002400240024002400240024020010e120a0a0a0a0a0a0a0a000a01020304050607080a0b200041086a280200450d09200041046a28020010200f0b200041086a280200450d08200041046a28020010200f0b200041086a280200450d07200041046a28020010200f0b200041086a280200450d06200041046a28020010200f0b200041086a280200450d05200041046a28020010200f0b200041086a280200450d04200041046a28020010200f0b200041086a280200450d03200041046a28020010200f0b200041086a280200450d02200041046a28020010200f0b02402000410c6a2802002202450d00200041046a28020021012002410c6c210203400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200041086a280200450d01200028020410200c010b200041086a280200450d00200041046a28020010200f0b0bdf1103127f037e0c7f230041d0006b22032400200228020022042002280208220541057422066a210720022802042108024002400240024020050d00410821094100210a4100210b2004210c0c010b200341296a210d200441286a210e200641606a210f200341206a4104722110200341206a41106a2111200341206a41186a2112410021134100210a4100210b41082109200421020340200341206a41086a22052002410c6a2902003703002011200241146a29020037030020122002411c6a28020036020020032002290204370320200241206a210c200228020022144103460d01200341186a20122802002202360200200341106a20112903002215370300200341086a2005290300221637030020032003290320221737030020102017370200201041086a2016370200201041106a2015370200201041186a2002360200200320143602200240024002400240024002400240024020140e03000102000b200341c2006a41026a200d41026a2d00003a00002003200d2f00003b014220032903302115200328022c211820032d002821050c040b200328022421022001280200220621192001280204221a211b03400240024020192f0106221c0d00410021050c010b201c410274211d201941086a211e417f210503400240201d0d00201c21050c020b201e280200211f201d417c6a211d200541016a2105201e41046a211e0240417f201f200247201f20024b1b41016a0e03020001020b0b03400240024020062f0106221f0d00410021050c010b201f410274211d200641086a211e417f210503400240201d0d00201f21050c020b201e2802002119201d417c6a211d200541016a2105201e41046a211e0240417f2019200247201920024b1b41016a0e03020001020b0b200620054103746a41386a2903002115410921050c070b0240201a450d00201a417f6a211a200620054102746a4190016a28020021060c010b0b41e988c700412b41fc89c7001028000b0240201b450d00201b417f6a211b201920054102746a4190016a28020021190c010b0b200041ce88c70036020420004101360200200041086a411b360200200341206a10cb050c010b20032802242120200328022821210240200328022c22020d0041082118420021150c020b202020024104746a21224100210241082118420021152020211f0340201f41086a290300211602400240201f280200220541024b0d00024020050e03000105000b201f28020421022001280200220621192001280204221b211c03400240024020192f010622230d00410021050c010b2023410274211d201941086a211e417f210503400240201d0d00202321050c020b201e280200211a201d417c6a211d200541016a2105201e41046a211e0240417f201a200247201a20024b1b41016a0e03020001020b0b03400240024020062f0106221a0d00410021050c010b201a410274211d200641086a211e417f210503400240201d0d00201a21050c020b201e2802002119201d417c6a211d200541016a2105201e41046a211e0240417f2019200247201920024b1b41016a0e03020001020b0b200620054103746a41386a290300211602400240024020154220882217a722052015a7460d00200521020c010b200541016a22062005490d0c2017a72202410174221d20062006201d491b220641ffffffff01712006470d0c2006410374221d4100480d0c0240024020050d00201d101e21180c010b20182002410374201d102221180b2018450d012006ad21150b201820024103746a2016370300201542ffffffff0f83200241016a2202ad4220868421150c060b201d4108102d000b0240201b450d00201b417f6a211b200620054102746a4190016a28020021060c010b0b41e988c700412b418c8ac7001028000b0240201c450d00201c417f6a211c201920054102746a4190016a28020021190c010b0b200041ce88c70036020420004101360200200041086a411b36020002402021450d00202010200b2015a7450d03201810200c030b0240024020022015a7460d002015422088a721050c010b200241016a22052002490d06200241017422062005200620054b1b220541ffffffff01712005470d06200541037422064100480d060240024020020d002006101e21180c010b201820024103742006102221180b02402018450d00201542208821172005ad21152017a7220521020c010b20064108102d000b201820024103746a2016370300201542ffffffff0f83200541016a2202ad4220868421150b201f41106a221f2022460d020c000b0b02402007200c460d00034002400240200e41786a280200220241014b0d00024020020e020002000b200e106b0c010b200e280200450d00200e417c6a28020010200b200e41206a210e200f41606a220f0d000b0b02402008450d00200410200b0240200a450d002009210203402002106b200241186a2102201341686a22130d000b0b200b450d07200910200c070b411221052021450d00202010200b200341cc006a41026a2206200341c2006a41026a2d00003a0000200320032f01423b014c20032f0138211d200a200b470d01200a4101742202200a41016a221e2002201e4b1b220bad42187e2216422088a70d002016a722024100480d0002400240200a0d002002101e21090c010b2009200a41186c2002102221090b20090d0120024108102d000b1027000b2009200a41186c6a220220053a0000200241046a2018360200200220032f014c3b0001200241036a20062d00003a00002002201d3b0110200241086a201537030020022003280146360112200241166a200341c6006a41046a2f01003b010002400240201441024b0d0020140e03010001010b200341206a10cb050b200a41016a210a200f41606a210f200e41206a210e201341186a2113200c2102200c2007470d000c020b0b2007200c460d000340200c220241206a210c024002402002280200220541014b0d00024020050e020002000b200241086a106b0c010b200241086a280200450d00200241046a28020010200b2007200c470d000b0b02402008450d00200410200b20002009360204200041003602002000410c6a200a360200200041086a200b3602000b200341d0006a24000bab2e03047f017e2a7f230041b0016b22072400024002400240024020051089010d0020062802002108200628020821094186acc000210a410e21040c010b200741386a2005108a012007290340210b0240200741cc006a280200450d00200728024810200b200728025421090240200741dc006a280200220c450d00200c41186c210d2009210c0340200c106b200c41186a210c200d41686a220d0d000b0b0240200741d8006a280200450d00200910200b200741086a200b2006280200220820062802082209108b01024002400240024002402007280208220a0d002006280204210e200741386a2001200220032004ad2005108c01200741c0006a29030021020240024020072802384101460d00200741c8006a2903002103200741386a200b106720072802384101470d01200741c0006a2802002104200728023c210a0c060b200728023c210a2002a721040c050b200741fc006a280200210f200741f8006a2802002110200741f4006a2802002101200741f0006a2802002111200741ec006a2802002112200741e8006a2802002113200741e4006a2802002114200741e0006a2802002115200741dc006a2802002116200741d8006a2802002106200741d4006a2802002117200741d0006a2802002118200741cc006a280200210d410c2104200741386a410c6a2802002119200741c0006a280200211a200728023c210c02402002a7220a41024d0d004194acc000210a0c030b0240200a0e03040200040b200c211b201a211c034002400240201b2f0106221d0d004100210a0c010b201d4103742104201b41086a211e417f210a0340024020040d00201d210a0c020b201e2903002102200441786a2104200a41016a210a201e41086a211e417f200220035220022003561b41016a0e03010600010b0b0240201c0d0041c0acc000210a412921040c040b201c417f6a211c201b200a4102746a41e0006a280200211b0c000b0b200728020c21040c040b200741c8006a2d000041ff01710d0141a0acc000210a412021040b0240201a450d00201a211e0340200c280260210c201e417f6a221e0d000b0340201a417f6a221a0d000b0b02402019450d004100211a4100211e4100211b03402007201a36021c2007201e3602182007200c3602142007201b360210200741386a200741106a10612007280240211b2007280244210c2007280248211e200728024c211a2019417f6a22190d000b0b0240200c41908cc500460d00200c2802002119200c10202019450d002019280200211a20191020201a450d000240201a280200220c450d000340201a1020200c211a200c2802002219210c20190d000b0b201a10200b02402018450d002018210c0340200d280260210d200c417f6a220c0d000b03402018417f6a22180d000b0b02402017450d004100210c4100211a4100211803402007200c36021c2007201a3602182007200d36021420072018360210200741386a200741106a1061200728024021182007280244210d2007280248211a200728024c210c2017417f6a22170d000b0b0240200d41908cc500460d00200d280200210c200d1020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c280200221a210c201a0d000b0b200d10200b02402016450d002016210c034020062802602106200c417f6a220c0d000b03402016417f6a22160d000b0b02402015450d004100210c4100210d4100211a03402007200c36021c2007200d360218200720063602142007201a360210200741386a200741106a10612007280240211a200728024421062007280248210d200728024c210c2015417f6a22150d000b0b0240200641908cc500460d002006280200210c20061020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200b024020144102490d0020132012201110720b02402010450d002010210c034020012802602101200c417f6a220c0d000b03402010417f6a22100d000b0b0240200f450d004100210c4100210d4100210603402007200c36021c2007200d3602182007200136021420072006360210200741386a200741106a106120072802402106200728024421012007280248210d200728024c210c200f417f6a220f0d000b0b200141908cc500460d012001280200210c20011020200c450d01200c280200210d200c1020200d450d010240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200c010b02400240024020051089010d004180ddc000210a411a21040c010b024002400240024002404119101e220a450d00200a41186a41002d00fc86473a0000200a41106a41002900f48647370000200a41086a41002900ec8647370000200a41002900e48647370000200a411941321022220a450d01200a2005370019200741386a41186a22044200370300200741386a41106a221e4200370300200741386a41086a221b420037030020074200370338200a4121200741386a1001200741106a41186a2004290300370300200741106a41106a201e290300370300200741106a41086a201b29030037030020072007290338370310200a102020074100360238200741106a4120200741386a1003210a2007280238221e417f460d03200a450d032007201e3602342007200a360230200741386a200741306a108d0120072802482204450d02200741dc006a280200211f200741d8006a2802002120200741d4006a280200211c200728024c211b20072903402102201e450d04200a10200c040b41194101102d000b41324101102d000b41ceb8c4004133200741a8016a41fcbfc4004184b9c400102e000b410021040b024002400240024002404118101e220a450d00200a41106a41002900dc8647370000200a41086a41002900d48647370000200a41002900cc8647370000200a411841301022220a450d01200a2002420020041b370018200741386a41186a221e4200370300200741386a41106a221d4200370300200741386a41086a2221420037030020074200370338200a4120200741386a1001200741106a41186a201e290300370300200741106a41106a201d290300370300200741106a41086a202129030037030020072007290338370310200a10204100210a20074100360238200741106a4120200741386a1003211e2007280238221d417f460d03201e450d032007201d3602342007201e360230200741386a200741306a10732007280240220a450d02200741e8006a2802002122200741e4006a2802002123200741dc006a2802002124200741d8006a2802002125200741d4006a2802002126200741d0006a2802002127200741cc006a2802002128200741c8006a280200212120072802442129201d450d04201e10200c040b41184101102d000b41304101102d000b41ceb8c4004133200741a8016a41fcbfc4004184b9c400102e000b0b201b410020041b212a201c410820041b211d2020410020041b212b201f410020041b212020234101200a1b212c20254101200a1b212d20224100200a1b212520244100200a1b212420264100200a1b212620274100200a1b212320284104200a1b212720214100200a1b212120294100200a1b21222004410220041b212e200a4108200a1b2129024002400240024002400240024002400240024002402009450d002008200941186c6a212f201d202041186c6a211b2008211e0240024002400340201e41186a2128201d210a03400240201b200a470d0041cce0c000210a41e60021040c040b200a41106a2104200a41186a221c210a201e2f011020042f01002204470d000b202120044d0d052029200441306c6a220a450d05200741106a201e108f01410021300240024002400240024002400240024002400240024002400240024002400240024002400240200a2f01000e13120102030405060708090a0b0c0d0e0f101100120b200a2903082102200a2f01022131411221300c110b410121300c100b410221300c0f0b410321300c0e0b410421300c0d0b410521300c0c0b410621300c0b0b410721300c0a0b200a2f01022131410821300c090b200a2903082102410921300c080b200a2f01022131410a21300c070b200a2f01022131410b21300c060b200a2f01022131410c21300c050b200a2f01022131410d21300c040b200a2f01022131410e21300c030b200a2f01022131410f21300c020b200a2f01022131411021300c010b200a41046a2f01002132200a2f01022131411121300b200a2802182204417f4c0d06200a41106a2802002133200a41286a2d000021340240024020040d004101211f0c010b2004101e221f450d080b201f2033200410cd052133200a41246a280200221f417f4c0d06200a28021c213502400240201f0d004101210a0c010b201f101e220a450d090b200a2035201f10cd05210a20072002370340200720323b013c200720313b013a200720303b01382007201f36025c2007201f3602582007200a360254200720043602502007200436024c200720333602482007203441ff01714100473a00602007200741106a200741386a1090012007280200220a0d01200741386a201e108f01201c41686a220a106b200a41086a200741386a41086a290300370300200a20072903383703002028211e2028202f470d000b4119101e220a450d08200a41186a41002d00fc86473a0000200a41106a41002900f48647370000200a41086a41002900ec8647370000200a41002900e48647370000200a411941321022220a450d09200a2005370019200741386a41186a22044200370300200741386a41106a221e4200370300200741386a41086a221b420037030020074200370338200a4121200741386a1001200741106a41186a2004290300370300200741106a41106a201e290300370300200741106a41086a201b29030037030020072007290338370310200a102020074100360238200741106a4120200741386a1003210a2007280238221b417f470d020c0b0b200728020421040b02402020450d00202041186c211b201d211e0340201e106b201e41186a211e201b41686a221b0d000b0b0240202b450d00201d10200b02402021450d00202141306c211b202941206a211e03400240201e41746a280200450d00201e41706a28020010200b0240201e280200450d00201e417c6a28020010200b201e41306a211e201b41506a221b0d000b0b02402022450d00202910200b02402026450d002026410c6c211b2027211e03400240201e41046a280200450d00201e28020010200b201e410c6a211e201b41746a221b0d000b0b02402023450d00202710200b02402024450d00202d10200b02402025450d00202c10200b202a450d0c202e10200c0c0b200a450d082007201b3602342007200a360230200741386a200741306a108d012007280248221e450d07200741dc006a2802002128200741d8006a2802002130200741d4006a2802002104200741d0006a280200211f200728024c211c2007290340210320072903382102201b450d09200a10200c090b02402020450d00202041186c2104201d210a0340200a106b200a41186a210a200441686a22040d000b0b202b450d09201d10200c090b41e988c700412b41bce0c0001028000b102c000b20044101102d000b201f4101102d000b41194101102d000b41324101102d000b41ceb8c4004133200741a8016a41fcbfc4004184b9c400102e000b4100211e0b20044108201e1b211b024020284100201e1b220a450d00200a41186c2104201b210a0340200a106b200a41186a210a200441686a22040d000b0b20024200201e1b210220034200201e1b2103201f4100201e1b211f201c4100201e1b2104201e4102201e1b210a0240201e450d002030450d00201b10200b200741dc006a2020360200200741386a41206a202b360200200741d0006a201f360200200741cc006a20043602002007201d3602542007200a360248200720033703402007200237033802400240200a0d00200741106a412010040c010b200741203602342007200741106a360230200741386a200741306a10820102402004450d00200a10200b02402020450d00202041186c2104201d210a0340200a106b200a41186a210a200441686a22040d000b0b202b450d00201d10200b200741c8006a2005370300200741c0006a41033a0000200741153a0038200741386a10770b02402021450d00202141306c2104202941206a210a03400240200a41746a280200450d00200a41706a28020010200b0240200a280200450d00200a417c6a28020010200b200a41306a210a200441506a22040d000b0b02402022450d00202910200b02402026450d002026410c6c21042027210a03400240200a41046a280200450d00200a28020010200b200a410c6a210a200441746a22040d000b0b02402023450d00202710200b02402024450d00202d10200b02402025450d00202c10200b0240202a450d00202e10200b02402009450d00200941186c210a2008210903402009106b200941186a2109200a41686a220a0d000b0b4100210a0240200e450d00200810200b0c010b02402009450d00200941186c211e2008210903402009106b200941186a2109201e41686a221e0d000b0b200e450d00200810200b0240201a450d00201a21090340200c280260210c2009417f6a22090d000b0340201a417f6a221a0d000b0b02402019450d0041002109410021084100211a03402007200936021c200720083602182007200c3602142007201a360210200741386a200741106a10612007280240211a2007280244210c20072802482108200728024c21092019417f6a22190d000b0b0240200c41908cc500460d00200c2802002108200c10202008450d0020082802002109200810202009450d0002402009280200220c450d00034020091020200c2109200c2802002208210c20080d000b0b200910200b02402018450d002018210c0340200d280260210d200c417f6a220c0d000b03402018417f6a22180d000b0b02402017450d004100210c410021094100210803402007200c36021c200720093602182007200d36021420072008360210200741386a200741106a1061200728024021082007280244210d20072802482109200728024c210c2017417f6a22170d000b0b0240200d41908cc500460d00200d280200210c200d1020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c2802002209210c20090d000b0b200d10200b02402016450d002016210c034020062802602106200c417f6a220c0d000b03402016417f6a22160d000b0b02402015450d004100210c4100210d4100210903402007200c36021c2007200d3602182007200636021420072009360210200741386a200741106a106120072802402109200728024421062007280248210d200728024c210c2015417f6a22150d000b0b0240200641908cc500460d002006280200210c20061020200c450d00200c280200210d200c1020200d450d000240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200b024020144102490d0020132012201110720b02402010450d002010210c034020012802602101200c417f6a220c0d000b03402010417f6a22100d000b0b0240200f450d004100210c4100210d4100210603402007200c36021c2007200d3602182007200136021420072006360210200741386a200741106a106120072802402106200728024421012007280248210d200728024c210c200f417f6a220f0d000b0b200141908cc500460d032001280200210c20011020200c450d03200c280200210d200c1020200d450d030240200d280200220c450d000340200d1020200c210d200c2802002206210c20060d000b0b200d10200c030b02402009450d00200941186c210d2008210c0340200c106b200c41186a210c200d41686a220d0d000b0b200e0d010c020b02402009450d00200941186c210d2008210c0340200c106b200c41186a210c200d41686a220d0d000b0b200641046a280200450d010b200810200b200020043602042000200a360200200741b0016a24000b873c05027f017e147f057e037f230041c0026b22052400024002400240024020012d0000220641014d0d00411e210141e6aac00021060c010b42002107024020060e020200020b420321072002a74101470d0142022107200141016a2201200310680d01200541d8006a41086a220642003703002005420037035841d4bfc4004108200541d8006a1000200541f0016a41086a2006290300370300200520052903583703f00120054180016a200541f0016a4110106920052d0080012108200541d8006a41186a220920054199016a290000370300200541d8006a41106a220a20054191016a290000370300200620054189016a29000037030020052005290081013703580240024020084101460d0020054190026a41186a420037030020054190026a41106a420037030020054190026a41086a420037030020054200370390020c010b20054190026a41186a200929030037030020054190026a41106a200a29030037030020054190026a41086a200629030037030020052005290358370390020b20054190026a2001460d0120054190026a2001412010cf05450d014126210141ceabc00021060b2000200636020420004101360200200041086a20013602000c010b20054180016a2004106720054180016a41086a280200210a200528028401210102402005280280014101470d002000200136020420004101360200200041086a200a3602000c010b200541c4016a280200210b200541c0016a280200210c200541bc016a2802002109200541b8016a280200210d200541b4016a280200210e200541b0016a280200210f412c211020054180016a412c6a2802002111200541a8016a2802002112200541a4016a2802002113200541a0016a28020021062005419c016a280200211420054180016a41186a280200211520054194016a28020021082005418c016a28020021164184abc000211702400240024002402007a70e0403020001030b0240200541cc016a2d000041ff01710d00419cadc0002117411721100c020b200621182013211903400240024020182f0106221a0d00410021170c010b201a4103742110201841086a211b417f21170340024020100d00201a21170c020b201b2903002102201041786a2110201741016a2117201b41086a211b417f200220035220022003561b41016a0e03010500010b0b024020190d0041b3adc0002117411621100c030b2019417f6a2119201820174102746a41e0006a28020021180c000b0b41b0abc0002117411021100b2000201736020420004101360200200041086a20103602000240200a450d00200a21000340200128026021012000417f6a22000d000b0340200a417f6a220a0d000b0b02402016450d004100210a4100210041002117034020052017360264200520003602602005200136025c2005200a36025820054180016a200541d8006a1061200528028801210a200528028c012101200528029001210020052802940121172016417f6a22160d000b0b0240200141908cc500460d0020012802002116200110202016450d002016280200210a20161020200a450d000240200a2802002201450d000340200a10202001210a20012802002216210120160d000b0b200a10200b02402015450d00201521010340200828026021082001417f6a22010d000b03402015417f6a22150d000b0b02402014450d00410021014100210a410021150340200520153602642005200a3602602005200836025c2005200136025820054180016a200541d8006a10612005280288012101200528028c012108200528029001210a20052802940121152014417f6a22140d000b0b0240200841908cc500460d0020082802002101200810202001450d0020012802002108200110202008450d00024020082802002201450d00034020081020200121082001280200220a2101200a0d000b0b200810200b02402013450d00201321010340200628026021062001417f6a22010d000b03402013417f6a22130d000b0b02402012450d0041002101410021084100210a03402005200a360264200520083602602005200636025c2005200136025820054180016a200541d8006a10612005280288012101200528028c0121062005280290012108200528029401210a2012417f6a22120d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200b024020114102490d00200f200e200d10720b0240200c450d00200c21010340200928026021092001417f6a22010d000b0340200c417f6a220c0d000b0b0240200b450d00410021014100210641002108034020052001360264200520063602602005200936025c2005200836025820054180016a200541d8006a10612005280288012108200528028c01210920052802900121062005280294012101200b417f6a220b0d000b0b200941908cc500460d0120092802002101200910202001450d0120012802002106200110202006450d01024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200c010b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002404118101e2217450d00201741106a41002900dc8647370000201741086a41002900d48647370000201741002900cc864737000020174118413010222217450d0120172004370018200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00120174120200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f0013703900220171020024020054190026a412041e4fdc600410041001002417f460d00200541d8006a41086a2217420037030020054200370358419787c700411b200541d8006a100020054180016a41086a201729030037030020052005290358370380012005410036025820054180016a4110200541d8006a100321170240024020052802582210417f470d00420021020c010b024020170d00420021020c010b20104108490d0420172900002102201710200b200541a0016a420037030020054180016a41186a428080808080013703002005420237039001200520043703880120052002370380014119101e2217450d04201741186a41002d00fc86473a0000201741106a41002900f48647370000201741086a41002900ec8647370000201741002900e4864737000020174119413210222217450d052017200237001942002104200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00120174121200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f00137039002201710202005412036025c200520054190026a36025820054180016a200541d8006a108201200541d8006a41086a2217420037030020054200370358419787c700411b200541d8006a100020054180016a41086a201729030037030020052005290358370380012005410036025820054180016a4110200541d8006a10032117024020052802582210417f460d002017450d0020104108490d0720172900002104201710200b200541d8006a41086a2217420037030020054200370358419787c700411b200541d8006a100020054180016a41086a2210201729030037030020052005290358370380012005200442017c37035820054180016a4110200541d8006a4108100520054180016a41106a2002370300201041023a0000200541153a00800120054180016a10774134101e2217450d07201741306a41002800aba940360000201741286a41002900a3a940370000201741206a410029009ba940370000201741186a4100290093a940370000201741106a410029008ba940370000201741086a4100290083a940370000201741002900fba8403700002017413441e80010222217450d0820172002370034200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f0012017413c200541f0016a1001200541086a41186a2010290300370300200541086a41106a201b290300370300200541086a41086a2018290300370300200520052903f001370308201710202005410036028001200541086a412020054180016a10032117024002402005280280012210417f470d000c010b024020170d000c010b2005201036025c2005201736025820054180016a200541d8006a1083012005290388014202510d0a20052903800121042010450d00201710200b200520032004200742025122101b37033020052010ad3703284134101e2117024020100d002017450d0b201741306a41002800aba940360000201741286a41002900a3a940370000201741206a410029009ba940370000201741186a4100290093a940370000201741106a410029008ba940370000201741086a4100290083a940370000201741002900fba8403700002017413441e80010222217450d0c20172002370034200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f0012017413c200541f0016a1001200541386a41186a2010290300370300200541386a41106a201b290300370300200541386a41086a2018290300370300200520052903f00137033820171020200541d8006a200541386a108401200529036022044202510d18200541d8006a41206a290300210720052903682103410021170240200541d8006a41186a290300221c4201520d0020054190026a2007108501200541f0016a41186a20054190026a41186a290000221d370300200541f0016a41106a20054190026a41106a290000221e370300200541f0016a41086a20054190026a41086a290000221f370300200520052900900222203703f00120054180016a41186a2210201d37030020054180016a41106a221b201e37030020054180016a41086a2218201f37030020052020370380014120101e2217450d0e2017200529038001370000201741186a2010290300370000201741106a201b290300370000201741086a20182903003700000b024020044201510d00201c4201510d10200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f0013703900220054190026a412010040c170b20054190026a2003108501200541f0016a41186a20054190026a41186a290300221d370300200541f0016a41106a20054190026a41106a290300221e370300200541f0016a41086a20054190026a41086a290300221f370300200520052903900222203703f00120054180016a41186a221b201d37030020054180016a41106a2218201e37030020054180016a41086a2219201f37030020052020370380014120101e2210450d0e2010200529038001370000201041186a201b290300370000201041106a2018290300370000201041086a201929030037000020054100360280012010412020054180016a1003211b2005280280012218417f460d11201b450d1120052018360294022005201b3602900220054180016a20054190026a108301200529038801221d4202510d10200529039001211e200529038001211f02402018450d00201b10200b20054180016a41206a200737030020054198016a201c37030020054190016a201e3703002005201d370388012005201f370380012005412036029402200520103602900220054180016a20054190026a10860120101020410121180c170b2017450d11201741306a41002800aba940360000201741286a41002900a3a940370000201741206a410029009ba940370000201741186a4100290093a940370000201741106a410029008ba940370000201741086a4100290083a940370000201741002900fba8403700002017413441e80010222217450d1220172002370034200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f0012017413c200541f0016a1001200541386a41186a2010290300370300200541386a41106a201b290300370300200541386a41086a2018290300370300200520052903f001370338201710202005410036028001200541386a412020054180016a10032117024002402005280280012210417f460d002017450d002005201036025c2005201736025820054180016a200541d8006a10830120052903880122074202510d15200541a0016a290300210420054198016a2903002103200529039001211c2010450d01201710200c010b200520023703b002200541f0016a41186a22174200370300200541f0016a41106a22104200370300200541f0016a41086a221b4200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201729030037030020054190026a41106a201029030037030020054190026a41086a201b290300370300200520052903f00137039002200541003602800120054190026a412020054180016a100321170240024002402005280280012210417f460d002017450d00024020104108490d00201729000021042017102020054190026a2004108501200541003602800120054190026a412020054180016a1003211b02402005280280012218417f460d00201b0d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b42002103200541f0016a41186a22174200370300200541f0016a41106a22104200370300200541f0016a41086a221b4200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201729030037030020054190026a41106a201029030037030020054190026a41086a201b290300370300200520052903f00137039002200520023703800120054190026a412020054180016a410810050c010b2005201836025c2005201b36025820054180016a200541d8006a10830120052903880122034202510d16200541f0016a41086a221720054180016a41186a2219290300370300200541f0016a41106a221020054180016a41206a29030037030020052005290390013703f001200529038001211c02402018450d00201b10200b200541d8006a41106a2010290300221d370300200541d8006a41086a20172903002207370300200520052903f001221e37035820054180016a41106a20073703002019201d37030020052003370380012005201e3703880142012103200541e4006a2019410020074201511b3602002005201c3703582005200541b0026a360260200541203602f401200520054190026a3602f001200541d8006a200541f0016a10870120052903b0022107200541f0016a41186a221b42003703002010420037030020174200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201b29030037030020054190026a41106a201029030037030020054190026a41086a2017290300370300200520052903f00137039002200520073703800120054190026a412020054180016a410810050b420021070b20054180016a41206a200437030020054198016a200337030020054190016a201c37030020052007370388012005200541306a360280012005412036025c2005200541386a36025820054180016a200541d8006a1088010c170b200041b9d3c000360204200041086a4119360200410121170c170b41184101102d000b41304101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41194101102d000b41324101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41344101102d000b41e8004101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41344101102d000b41e8004101102d000b41204101102d000b41204101102d000b200541f0016a41186a22104200370300200541f0016a41106a221b4200370300200541f0016a41086a22184200370300200542003703f00141afa9c000413c200541f0016a100120054190026a41186a201029030037030020054190026a41106a201b29030037030020054190026a41086a2018290300370300200520052903f00137039002200520073703800120054190026a412020054180016a410810050c060b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b41344101102d000b41e8004101102d000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41002110410021180b02400240024002400240024020170d004100211b0c010b20054100360280012017412020054180016a1003211b2005280280012219417f460d02201b450d0220052019360294022005201b3602900220054180016a20054190026a1083012005290388014202510d01200541f8016a221a20054198016a2221290300370300200541f0016a41106a222220054180016a41206a222329030037030020052005290390013703f001200529038001210702402019450d00201b10200b20054180016a41106a221b20052903f0013703002021201a29030037030020232022290300370300201b2003370300200520073703800120052004370388012005412036029402200520173602900220054180016a20054190026a108601201710204101211b0b201820104572450d020c030b41ceb8c4004133200541b8026a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b201010200b201745201b720d00201710200b200041086a2002370300410021170b200020173602000240200a450d00200a21000340200128026021012000417f6a22000d000b0340200a417f6a220a0d000b0b02402016450d004100210a410021004100211703402005200a360264200520003602602005200136025c2005201736025820054180016a200541d8006a10612005280288012117200528028c0121012005280290012100200528029401210a2016417f6a22160d000b0b0240200141908cc500460d0020012802002116200110202016450d002016280200210a20161020200a450d000240200a2802002201450d000340200a10202001210a20012802002216210120160d000b0b200a10200b02402015450d00201521010340200828026021082001417f6a22010d000b03402015417f6a22150d000b0b02402014450d00410021014100210a410021150340200520013602642005200a3602602005200836025c2005201536025820054180016a200541d8006a10612005280288012115200528028c012108200528029001210a20052802940121012014417f6a22140d000b0b0240200841908cc500460d0020082802002101200810202001450d0020012802002108200110202008450d00024020082802002201450d00034020081020200121082001280200220a2101200a0d000b0b200810200b02402013450d00201321010340200628026021062001417f6a22010d000b03402013417f6a22130d000b0b02402012450d0041002101410021084100210a03402005200a360264200520083602602005200636025c2005200136025820054180016a200541d8006a10612005280288012101200528028c0121062005280290012108200528029401210a2012417f6a22120d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200b024020114102490d00200f200e200d10720b0240200c450d00200c21010340200928026021092001417f6a22010d000b0340200c417f6a220c0d000b0b0240200b450d00410021014100210641002108034020052008360264200520063602602005200936025c2005200136025820054180016a200541d8006a10612005280288012101200528028c01210920052802900121062005280294012108200b417f6a220b0d000b0b200941908cc500460d0020092802002101200910202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002208210120080d000b0b200610200b200541c0026a24000b974203047f017e347f230041b0016b22082400024002400240024020051089010d00200728020021092007280208210a4186acc000210b410e21040c010b200841386a2005108a012008290340210c0240200841cc006a280200450d00200828024810200b2008280254210a0240200841dc006a280200220d450d00200d41186c210e200a210d0340200d106b200d41186a210d200e41686a220e0d000b0b0240200841d8006a280200450d00200a10200b200841086a200c200728020022092007280208220a108b01024002400240024002402008280208220b0d002007280204210f200841386a2001200220032004ad2005108c01200841c0006a29030021020240024020082802384101460d00200841c8006a2903002103200841386a200c106720082802384101470d01200841c0006a2802002104200828023c210b0c060b200828023c210b2002a721040c050b200841fc006a2802002110200841f8006a2802002111200841f4006a2802002101200841f0006a2802002112200841ec006a2802002113200841e8006a2802002114200841e4006a2802002115200841e0006a2802002116200841dc006a2802002117200841d8006a2802002107200841d4006a2802002118200841d0006a2802002119200841cc006a280200210e410c2104200841386a410c6a280200211a200841c0006a280200211b200828023c210d02402002a7220b41024d0d004194acc000210b0c030b0240200b0e03040200040b200d211c201b211d034002400240201c2f0106221e0d004100210b0c010b201e4103742104201c41086a211f417f210b0340024020040d00201e210b0c020b201f2903002102200441786a2104200b41016a210b201f41086a211f417f200220035220022003561b41016a0e03010600010b0b0240201d0d0041c0acc000210b412921040c040b201d417f6a211d201c200b4102746a41e0006a280200211c0c000b0b200828020c21040c040b200841c8006a2d000041ff01710d0141a0acc000210b412021040b0240201b450d00201b211f0340200d280260210d201f417f6a221f0d000b0340201b417f6a221b0d000b0b0240201a450d004100211b4100211f4100211c03402008201b36021c2008201f3602182008200d3602142008201c360210200841386a200841106a10612008280240211c2008280244210d2008280248211f200828024c211b201a417f6a221a0d000b0b0240200d41908cc500460d00200d280200211a200d1020201a450d00201a280200211b201a1020201b450d000240201b280200220d450d000340201b1020200d211b200d280200221a210d201a0d000b0b201b10200b02402019450d002019210d0340200e280260210e200d417f6a220d0d000b03402019417f6a22190d000b0b02402018450d004100210d4100211b4100211903402008200d36021c2008201b3602182008200e36021420082019360210200841386a200841106a1061200828024021192008280244210e2008280248211b200828024c210d2018417f6a22180d000b0b0240200e41908cc500460d00200e280200210d200e1020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d280200221b210d201b0d000b0b200e10200b02402017450d002017210d034020072802602107200d417f6a220d0d000b03402017417f6a22170d000b0b02402016450d004100210d4100210e4100211b03402008200d36021c2008200e360218200820073602142008201b360210200841386a200841106a10612008280240211b200828024421072008280248210e200828024c210d2016417f6a22160d000b0b0240200741908cc500460d002007280200210d20071020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200b024020154102490d0020142013201210720b02402011450d002011210d034020012802602101200d417f6a220d0d000b03402011417f6a22110d000b0b02402010450d004100210d4100210e4100210703402008200d36021c2008200e3602182008200136021420082007360210200841386a200841106a106120082802402107200828024421012008280248210e200828024c210d2010417f6a22100d000b0b200141908cc500460d012001280200210d20011020200d450d01200d280200210e200d1020200e450d010240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200c010b02400240024020051089010d004180ddc000210b411a21040c010b024002400240024002404119101e220b450d00200b41186a41002d00fc86473a0000200b41106a41002900f48647370000200b41086a41002900ec8647370000200b41002900e48647370000200b411941321022220b450d01200b2005370019200841386a41186a22044200370300200841386a41106a221f4200370300200841386a41086a221c420037030020084200370338200b4121200841386a1001200841106a41186a2004290300370300200841106a41106a201f290300370300200841106a41086a201c29030037030020082008290338370310200b102020084100360238200841106a4120200841386a1003210b2008280238221f417f460d03200b450d032008201f3602342008200b360230200841386a200841306a108d0120082802482204450d02200841dc006a2802002120200841d8006a280200211e200841d4006a280200211d200841d0006a2802002121200828024c211c20082903402102201f450d04200b10200c040b41194101102d000b41324101102d000b41ceb8c4004133200841a8016a41fcbfc4004184b9c400102e000b410021040b024002400240024002404118101e220b450d00200b41106a41002900dc8647370000200b41086a41002900d48647370000200b41002900cc8647370000200b411841301022220b450d01200b2002420020041b370018200841386a41186a221f4200370300200841386a41106a22224200370300200841386a41086a2223420037030020084200370338200b4120200841386a1001200841106a41186a201f290300370300200841106a41106a2022290300370300200841106a41086a202329030037030020082008290338370310200b10204100210b20084100360238200841106a4120200841386a1003211f20082802382224417f460d03201f450d03200820243602342008201f360230200841386a200841306a10732008280240220b450d02200841e8006a2802002125200841e4006a2802002126200841dc006a2802002127200841d8006a2802002128200841d4006a2802002129200841d0006a280200212a200841cc006a280200212b200841c8006a2802002123200828024421222024450d04201f10200c040b41184101102d000b41304101102d000b41ceb8c4004133200841a8016a41fcbfc4004184b9c400102e000b0b2020410020041b212c201e410020041b212d201d410820041b2124201c410020041b212e2004410220041b212f4101211e20264101200b1b213020284101200b1b213120254100200b1b213220274100200b1b2133202a4100200b1b2134202b4104200b1b213520234100200b1b212820224100200b1b2136200b4108200b1b21270240024020294100200b1b223741ffff0371200641ffff0371221d4b0d00419addc000210b411721040c010b4101211f2021410020041b410174210b202f210402400340200b450d01201f417f6a211f200b417e6a210b20042f0100211c200441026a2104201c201d470d000b41b1ddc000210b413821044101211e0c010b02400240024002402037200641ffff0371220b4d0d002035200b410c6c6a2204450d0002402035200b410c6c6a280208223820386a220b2038490d00200b417f4c0d0020042802002104024002400240200b0d004102211f0c010b200b101e221f450d010b201f2004203841017410cd052139202cad42187e2202422088a70d012002a7220b417f4c0d01024002400240200b0d00410821230c010b200b101e2223450d010b02400240024002400240024002400240024002400240202c0d00410021200c010b202c41186c212b41002104410021200340202420046a220b41106a2f010021224100211e024002400240024002400240024002400240024002400240024002400240024002400240024002400240200b2d00000e13140102030405060708090a0b0c0d0e0f101100140b200b410c6a280200221c41ffffffff0171201c470d21201c410374221d417f4c0d21200b41046a280200210b02400240201d0d004108211f0c010b201d101e221f450d1f0b201f200b201d10cd051a201cad220242208620028421024112211e0c110b4101211e200b41016a2d0000410047211d0c120b4102211e200b41026a2f0100211c0c100b200b41046a280200211f4103211e0c0e0b200b41086a29030021024104211e0c0d0b200b41026a2f0100211c4105211e0c0d0b200b41046a280200211f4106211e0c0b0b200b41086a29030021024107211e0c0a0b200b410c6a280200221c417f4c0d19200b41046a280200210b02400240201c0d004101211f0c010b201c101e221f450d160b201f200b201c10cd051a201cad220242208620028421024108211e0c090b200b41086a29030021024109211e0c080b200b410c6a280200221c417f4c0d17200b41046a280200210b02400240201c0d004101211f420021020c010b201c101e221f450d13201cad21020b201f200b201c10cd051a20022002422086842102410a211e0c070b200b410c6a280200221c201c6a221d201c490d16201d417f4c0d16200b41046a280200210b02400240201d0d004102211f0c010b201d101e221f450d110b201f200b201c41017410cd051a201cad22024220862002842102410b211e0c060b200b410c6a280200221c41ffffffff0371201c470d15201c410274221d417f4c0d15200b41046a280200210b02400240201d0d004104211f0c010b201d101e221f450d0f0b201f200b201d10cd051a201cad22024220862002842102410c211e0c050b200b410c6a280200221c41ffffffff0171201c470d14201c410374221d417f4c0d14200b41046a280200210b02400240201d0d004108211f0c010b201d101e221f450d0d0b201f200b201d10cd051a201cad22024220862002842102410d211e0c040b200b410c6a280200221c201c6a221d201c490d13201d417f4c0d13200b41046a280200210b02400240201d0d004102211f0c010b201d101e221f450d0b0b201f200b201c41017410cd051a201cad22024220862002842102410e211e0c030b200b410c6a280200221c41ffffffff0371201c470d12201c410274221d417f4c0d12200b41046a280200210b02400240201d0d004104211f0c010b201d101e221f450d090b201f200b201d10cd051a201cad22024220862002842102410f211e0c020b200b410c6a280200221c41ffffffff0171201c470d11201c410374221d417f4c0d11200b41046a280200210b02400240201d0d004108211f0c010b201d101e221f450d070b201f200b201d10cd051a201cad220242208620028421024110211e0c010b200841386a200b41046a108e01200829023c21022008280238211f4111211e0b0b0b202320046a220b201e3a0000200b41106a20223b0100200b41086a2002370300200b41046a201f360200200b41026a201c3b0100200b41016a201d3a0000200b41126a2008280138360100200b41166a200841386a41046a2f01003b0100202041016a2120202b200441186a2204470d000b0b024020380d0020242129202d211e202c212a0c0e0b203920384101746a2125200a41186c213a200941686a213b202041186c21262008413f6a213c200841106a41046a213d20242129202d211e202c212a2039212203402022220b41026a2122200b2f0100211c2026210b20232104024002400340200b450d01200b41686a210b200441106a211f200441186a2104201f2f0100201c470d000c020b0b0240024002400240024002402028201c4d0d002027201c41306c6a222b450d00203a210b203b211f2009210402400240024002400240024002400240024002400240024002400240024002400240024002400240024002400340200b450d01200b41686a210b201f41186a211f200441106a211d200441186a2104201d2f0100201c470d000b200841106a201f108f014100211c202b2f01000e131302030405060708090a0b0c0d0e0f10111201130b202b2d0028450d14418cdec000210b41c90021040c130b202b2903082102202b2f0102211d4112211c0c110b4101211c0c100b4102211c0c0f0b4103211c0c0e0b4104211c0c0d0b4105211c0c0c0b4106211c0c0b0b4107211c0c0a0b202b2f0102211d4108211c0c090b202b29030821024109211c0c080b202b2f0102211d410a211c0c070b202b2f0102211d410b211c0c060b202b2f0102211d410c211c0c050b202b2f0102211d410d211c0c040b202b2f0102211d410e211c0c030b202b2f0102211d410f211c0c020b202b2f0102211d4110211c0c010b202b41046a2f01002121202b2f0102211d4111211c0b202b280218220b417f4c0d15202b41106a280200213e202b41286a2d0000213f02400240200b0d00410121040c010b200b101e2204450d040b2004203e200b10cd05213e202b41246a2802002204417f4c0d15202b28021c21400240024020040d004101212b0c010b2004101e222b450d050b202b2040200410cd05212b20082002370340200820213b013c2008201d3b013a2008201c3b01382008200436025c200820043602582008202b3602542008200b3602502008200b36024c2008203e3602482008203f41ff01714100473a00602008200841106a200841386a10900102402008280200220b0d00201f41106a2f0100211c200841386a201f108f010240202a201e460d00201e2104202a211e0c080b201e41016a220b201e490d19201e4101742204200b2004200b4b1b2204ad42187e2202422088a70d192002a7220b4100480d1902400240201e0d00200b101e21290c010b2029201e41186c200b102221290b20290d07200b4108102d000b200828020421040b0240202a450d00202a41186c211c2029211f0340201f106b201f41186a211f201c41686a221c0d000b0b0240201e450d00202910200b02402020450d00202041186c211c2023211f0340201f106b201f41186a211f201c41686a221c0d000b0b0240202c450d00202310200b203910204100211e0c190b0240202a201e460d00201e2104202a211e0c040b201e41016a220b201e490d16201e4101742204200b2004200b4b1b2204ad42187e2202422088a70d162002a7220b4100480d1602400240201e0d00200b101e21290c010b2029201e41186c200b102221290b20290d03200b4108102d000b41e988c700412b41fcddc0001028000b200b4101102d000b20044101102d000b2029201e41186c6a220b41003a0000203c290000210220082900382103200b201c3b0110200b2003370001200b41086a2002370000200b2008280110360112200b41166a203d2f01003b01000c010b200841386a41086a2903002102200829033821032029201e41186c6a220b201c3b0110200b2003370300200b41086a2002370300200b2008280110360112200b41166a203d2f01003b01000b202a41016a212a2004211e0b20222025460d0e0c000b0b201d4108102d000b201d4104102d000b201d4102102d000b201d4108102d000b201d4104102d000b201d4102102d000b201c4101102d000b201c4101102d000b201d4108102d000b200b4108102d000b200b4102102d000b102c000b41e988c700412b41ecddc0001028000b024002400240024002404119101e220b450d00200b41186a41002d00fc86473a0000200b41106a41002900f48647370000200b41086a41002900ec8647370000200b41002900e48647370000200b411941321022220b450d01200b2005370019200841386a41186a22044200370300200841386a41106a221f4200370300200841386a41086a221c420037030020084200370338200b4121200841386a1001200841106a41186a2004290300370300200841106a41106a201f290300370300200841106a41086a201c29030037030020082008290338370310200b102020084100360238200841106a4120200841386a100321042008280238221f417f460d032004450d032008201f36023420082004360230200841386a200841306a108d012008280248220b450d02200841dc006a2802002124200841d8006a280200212b200841d4006a2802002122200841d0006a280200211d200828024c211c2008290340210320082903382102201f450d04200410200c040b41194101102d000b41324101102d000b41ceb8c4004133200841a8016a41fcbfc4004184b9c400102e000b4100210b0b200b4102200b1b211f02400240201d4100200b1b221d201c4100200b1b2204460d002004211c201d21040c010b200441016a221c2004490d0120044101742225201c2025201c4b1b221c201c6a2226201c490d0120264100480d010240024020040d002026101e211f0c010b201f202520261022211f0b201f450d020b20024200200b1b210220034200200b1b2103202b4100200b1b212b20224108200b1b2122201f20044101746a20063b0100201d41016a212602400240202a20244100200b1b221d4d0d000240201d450d00201d41186c21042022210b0340200b106b200b41186a210b200441686a22040d000b0b202b450d01202210200c010b0240202a450d00202a41186c21042029210b0340200b106b200b41186a210b200441686a22040d000b0b0240201e450d00202910200b20222129202b211e201d212a0b200841dc006a202a360200200841386a41206a201e360200200841d0006a2026360200200841cc006a201c360200200820293602542008201f360248200820033703402008200237033802400240201f0d00200841106a412010040c010b200841203602342008200841106a360230200841386a200841306a1082010240201c450d00201f10200b0240202a450d00202a41186c21042029210b0340200b106b200b41186a210b200441686a22040d000b0b201e450d00202910200b200841c8006a2005370300200841c2006a20063b0100200841c0006a41043a0000200841153a0038200841386a107702402020450d00202041186c21042023210b0340200b106b200b41186a210b200441686a22040d000b0b0240202c450d00202310200b02402038450d00203910200b02402028450d00202841306c2104202741206a210b03400240200b41746a280200450d00200b41706a28020010200b0240200b280200450d00200b417c6a28020010200b200b41306a210b200441506a22040d000b0b02402036450d00202710200b02402037450d002037410c6c21042035210b03400240200b41046a280200450d00200b28020010200b200b410c6a210b200441746a22040d000b0b02402034450d00203510200b02402033450d00203110200b02402032450d00203010200b0240202e450d00202f10200b0240200a450d00200a41186c210b2009210a0340200a106b200a41186a210a200b41686a220b0d000b0b4100210b0240200f450d00200910200b0c040b1027000b20264102102d000b02402028450d00202841306c211c202741206a211f03400240201f41746a280200450d00201f41706a28020010200b0240201f280200450d00201f417c6a28020010200b201f41306a211f201c41506a221c0d000b0b02402036450d00202710200b02402037450d002037410c6c211c2035211f03400240201f41046a280200450d00201f28020010200b201f410c6a211f201c41746a221c0d000b0b02402034450d00203510200b02402033450d00203110200b02402032450d00203010200b0240202e450d00202f10200b201e450d000240202c450d00202c41186c211c2024211f0340201f106b201f41186a211f201c41686a221c0d000b0b202d450d00202410200b0240200a450d00200a41186c211f2009210a0340200a106b200a41186a210a201f41686a221f0d000b0b200f450d00200910200b0240201b450d00201b210a0340200d280260210d200a417f6a220a0d000b0340201b417f6a221b0d000b0b0240201a450d004100210a410021094100211b03402008200a36021c200820093602182008200d3602142008201b360210200841386a200841106a10612008280240211b2008280244210d20082802482109200828024c210a201a417f6a221a0d000b0b0240200d41908cc500460d00200d2802002109200d10202009450d002009280200210a20091020200a450d000240200a280200220d450d000340200a1020200d210a200d2802002209210d20090d000b0b200a10200b02402019450d002019210d0340200e280260210e200d417f6a220d0d000b03402019417f6a22190d000b0b02402018450d004100210d4100210a4100210903402008200d36021c2008200a3602182008200e36021420082009360210200841386a200841106a1061200828024021092008280244210e2008280248210a200828024c210d2018417f6a22180d000b0b0240200e41908cc500460d00200e280200210d200e1020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d280200220a210d200a0d000b0b200e10200b02402017450d002017210d034020072802602107200d417f6a220d0d000b03402017417f6a22170d000b0b02402016450d004100210d4100210e4100210a03402008200d36021c2008200e360218200820073602142008200a360210200841386a200841106a10612008280240210a200828024421072008280248210e200828024c210d2016417f6a22160d000b0b0240200741908cc500460d002007280200210d20071020200d450d00200d280200210e200d1020200e450d000240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200b024020154102490d0020142013201210720b02402011450d002011210d034020012802602101200d417f6a220d0d000b03402011417f6a22110d000b0b02402010450d004100210d4100210e4100210703402008200d36021c2008200e3602182008200136021420082007360210200841386a200841106a106120082802402107200828024421012008280248210e200828024c210d2010417f6a22100d000b0b200141908cc500460d032001280200210d20011020200d450d03200d280200210e200d1020200e450d030240200e280200220d450d000340200e1020200d210e200d2802002207210d20070d000b0b200e10200c030b0240200a450d00200a41186c210e2009210d0340200d106b200d41186a210d200e41686a220e0d000b0b200f0d010c020b0240200a450d00200a41186c210e2009210d0340200d106b200d41186a210d200e41686a220e0d000b0b200741046a280200450d010b200910200b200020043602042000200b360200200841b0016a24000b990303027f017e017f02402001450d00034020002802900121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a4194016a2802002100410021032006417f6a2201450d01034020002802900121002001417f6a22010d000c020b0b200341016a21030b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bc80201047f02402001450d00200020014106746a210203402000220341c0006a2100024002402003280210220141014b0d00024020010e020200020b0240200341306a2802002201450d0020014105742104200341286a28020041086a2101034002400240200141786a280200220541014b0d00024020050e020002000b2001106b0c010b2001280200450d002001417c6a28020010200b200141206a2101200441606a22040d000b0b2003412c6a280200450d01200328022810200c010b0240200341306a2802002201450d0020014105742104200341286a28020041086a2101034002400240200141786a280200220541014b0d00024020050e020002000b2001106b0c010b2001280200450d002001417c6a28020010200b200141206a2101200441606a22040d000b0b2003412c6a280200450d00200328022810200b20002002470d000b0b0b990303027f017e017f02402001450d00034020002802b80121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41bc016a2802002100410021032006417f6a2201450d01034020002802b80121002001417f6a22010d000c020b0b200341016a21030b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0b870905037f017e097f027e017f230041306b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241206a200110e701200228022022060d01200041003602080c020b200041003602080c010b200241286a280200210720022802242108200241086a2001105f024020022802080d0002400240024002402001280204410c6e2209410c6c2203417f4c0d00200228020c210a0240024020030d004104210b0c010b2003101e220b450d020b0240200a450d004100210c410021034100210d0340200241206a200110e501024002402002280220220e450d00200d41016a21042002290224210f200d2009470d010240200c2004200c20044b1b2209ad420c7e2210422088a70d002010a722114100480d0002400240200d0d002011101e210b0c010b200b200320111022210b0b200b0d0220114104102d000b1027000b0240200d450d00200b210103400240200141046a280200450d00200128020010200b2001410c6a2101200341746a22030d000b0b2009450d07200b10200c070b200b20036a220d200e360200200d41046a200f370200200c41026a210c2003410c6a21032004210d200a2004470d000b0b200b450d04200241206a200110b70120022802202203450d03200241206a41086a220d280200210c20022802242104200241206a200110b7012002280220450d02200241106a41086a200d280200220136020020022002290320220f370310200041286a200c360200200041246a2004360200200041206a20033602002000411c6a200a360200200041186a2009360200200041146a200b360200200041106a20073602002000200836020c20002006360208200020053703002000412c6a200f370200200041346a20013602000c050b102c000b20034104102d000b2000410036020802402004450d00200310200b0240200a450d00200a410c6c2103200b210103400240200141046a280200450d00200128020010200b2001410c6a2101200341746a22030d000b0b02402009450d00200b10200b02402007450d00200741306c2103200641206a210103400240200141746a280200450d00200141706a28020010200b02402001280200450d002001417c6a28020010200b200141306a2101200341506a22030d000b0b2008450d02200610200c020b200041003602080240200a450d00200a410c6c2103200b210103400240200141046a280200450d00200128020010200b2001410c6a2101200341746a22030d000b0b02402009450d00200b10200b02402007450d00200741306c2103200641206a210103400240200141746a280200450d00200141706a28020010200b02402001280200450d002001417c6a28020010200b200141306a2101200341506a22030d000b0b2008450d01200610200c010b2000410036020802402007450d00200741306c2103200641206a210103400240200141746a280200450d00200141706a28020010200b02402001280200450d002001417c6a28020010200b200141306a2101200341506a22030d000b0b2008450d00200610200b200241306a24000b8e0f050b7f017e017f017e027f230041c0016b22022400200128020821032001280204210420012802002105024002400240024002402000280200220641908cc500460d00200028020421070c010b41002107200241086a410041840110cc051a418c01101e2206450d01200641003b010620064100360200200641086a200241086a41840110cd051a20004100360204200020063602000b034041002108024020062f01062209450d002009410c6c210a200641086a21014100210803400240200a0d00200921080c020b02400240200520012802002001280208220b20032003200b4b1b10cf05220c450d004101210b200c4100480d030c010b2003200b490d022003200b47210b0b2001410c6a2101200841016a2108200a41746a210a200b0d000b2004450d04200510200c040b02402007450d002007417f6a2107200620084102746a418c016a28020021060c010b0b2000200028020841016a36020802400240024020062f0106220a410b490d0002400240200641908cc500460d00200241086a410041840110cc051a418c01101e22070d01418c014104102d000b41c8a6c000412d41a888c6001028000b200741003b010620074100360200200741086a200241086a41840110cd05210a200641d4006a290200210d20062802502109200a200641dc006a20062f010641796a2201410c6c10cd05210a200641063b0106200720013b010620084107490d012008410c6c200a6a220a41b87f6a200a41ac7f6a220a200141ffff037120086b410c6c41d4006a10ce051a200a2003360208200a2004360204200a2005360200200720072f010641016a3b01060c020b20062008410c6c6a220141146a200141086a220b200a20086b410c6c10ce051a200141106a20033602002001410c6a2004360200200b2005360200200620062f010641016a3b01060c040b200641086a2008410c6c6a2201410c6a200120062f010620086b410c6c10ce051a200120033602082001200436020420012005360200200620062f010641016a3b01060b0240200628020022050d00410021040c020b200641046a2101200241086a410272210e4100210402400240034041000d0120012f0100210802400240024020052f01062201410b490d00200e410041b60110cc051a41bc01101e220b450d05200b4100360200200b41046a200241086a41b80110cd051a200541d4006a290200210f200541d0006a2802002110200b41086a200541dc006a20052f0106220141796a220a410c6c10cd052111200b418c016a200541a8016a2001417a6a220c41027410cd052106200541063b0106200b200a3b01060240200c450d00410021012006210a0340200a280200220320013b01042003200b360200200a41046a210a200c200141016a2201470d000b0b20084107490d012008410c6c20116a220141b87f6a200141ac7f6a2201200b2f010620086b410c6c41d4006a10ce051a2001200d37020420012009360200200b200b2f010641016a220a3b01062008410274220920066a416c6a20062008417a6a22014102746a2203200a41ffff0371220c20016b41027410ce051a20032007360200200c2001490d02200841796a2101200b20096a41f4006a210a0340200a2802002203200141016a22013b01042003200b360200200a41046a210a2001200c490d000c030b0b20052008410c6c6a220a41146a200a41086a2203200120086b410c6c10ce051a200a410c6a200d370200200320093602002005200141016a220a3b010620084102742005418c016a22036a41086a2003200841016a22014102746a2203200a41ffff0371220b20016b41027410ce051a200320073602002008200b4f0d0720052001417f6a22014102746a4190016a210a0340200a2802002203200141016a22013b010420032005360200200a41046a210a2001200b490d000c080b0b200541086a2008410c6c6a2201410c6a200120052f0106220a20086b410c6c10ce051a2001200d370204200120093602002005200a41016a22013b0106200841027422062005418c016a220a6a41086a200a200841016a220c4102746a220a200141ffff03712203200c6b41027410ce051a200a2007360200200820034f0d00200520066a4190016a210103402001280200220a200841016a22083b0104200a2005360200200141046a210120032008470d000b0b200441016a210402402005280200220a0d0020102109200f210d200b21070c050b200541046a210120102109200f210d200a2105200b21070c000b0b41c6a8c000413541a888c6001028000b41bc014104102d000b418c014104102d000b200241086a410272410041b60110cc051a02400240024041bc01101e2201450d0020014100360200200141046a200241086a41b80110cd051a20012000280200220a36028c012000200136020020002000280204220341016a360204200a41003b0104200a200136020020032004470d0120012f0106220a410a4b0d022001200a410c6c6a2203410c6a200d370200200341086a20093602002001200a41016a220a4102746a418c016a20073602002001200a3b01062007200a3b0104200720013602000c030b41bc014104102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200241c0016a24000b9c0101037f230041106b22022400410021032002410036020420014110200241046a100321010240024020022802042204417f460d002001450d0020044102490d012004417e714102460d0120012f0000210320012f0002210420011020200041046a20043b0100200020033b0102410121030b200020033b0100200241106a24000f0b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bbe0603017f017e087f230041106b22022400200241003602082002420137030020002903002103024002404108101e2204450d0020024288808080800137020420022004360200200420033700002000280208200041106a2802002002109b012000280214210520022000411c6a280200220436020c2002410c6a200210630240024002402004450d0020052004410c6c6a210603402005280200210720022005280208220436020c2002410c6a2002106302402004450d0020044101742108034020072f01002109024002402002280204220a200228020822046b4102490d002002280200210a0c010b200441026a220b2004490d05200a4101742204200b2004200b4b1b22044100480d0502400240200a0d002004101e210a0c010b2002280200200a20041022210a0b0240200a450d00200220043602042002200a360200200228020821040c010b20044101102d000b200741026a21072002200441026a360208200a20046a20093b00002008417e6a22080d000b0b2005410c6a22052006470d000b0b200028022021082002200041286a280200220436020c2002410c6a20021063024002402002280204220a200228020822076b2004490d002002280200210a0c010b200720046a22092007490d01200a41017422072009200720094b1b22074100480d0102400240200a0d002007101e210a0c010b2002280200200a20071022210a0b200a450d02200220073602042002200a360200200228020821070b2002200720046a360208200a20076a2008200410cd051a200028022c21082002200041346a280200220436020c2002410c6a2002106302402002280204220a200228020822076b2004490d002002280200210a0c040b200720046a22092007490d00200a41017422072009200720094b1b22074100480d0002400240200a0d002007101e210a0c010b2002280200200a20071022210a0b0240200a450d00200220073602042002200a360200200228020821070c040b20074101102d000b1027000b20074101102d000b41084101102d000b2002200720046a360208200a20076a2008200410cd051a2002280204210420012802002001280204200228020022072002280208100502402004450d00200710200b200241106a24000ba10e01067f230041a0036b22012400200141003602900141effbc000411020014190016a10032102024002402001280290012203417f460d002002450d00024020034104490d002002280000210320021020410021020c020b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b410121020b200141fc006a200336020020012002360278200141086a200041f00010cd051a4100210220014188016a4100360200200142013703800120014188036a41086a220042003703002001420037038803419281c700411120014188036a100020014198026a41086a2000290300370300200120012903880337039802200141003602900120014198026a411020014190016a10032100024002400240024002400240024002400240024002400240024002402001280290012203417f460d002000450d0020034104490d0120002800002102200010200b0240200241016a22002002490d0020014188036a41086a220242003703002001420037038803419281c700411120014188036a100020014198026a41086a22032002290300370300200120012903880337039802200120003602900120014198026a411020014190016a4104100520014190016a200141086a41880110cd051a2002420037030020014200370388034182fec000410d20014188036a100020032002290300370300200120012903880337039802200141003602880320014198026a411020014188036a10032100024002402001280288032202417f460d002002210320000d010b200141003602f002200142083703e80220014100360290032001420137038803200141003602d002200141d0026a20014188036a10632001280288032100200128028c0321032001280290032102200141e8026a10ff010b200120023602b002200120033602ac02200120003602a8022002450d022002417f6a210402400240024020002d0000220541037122064103460d0002400240024020060e03000102000b200541027621050c030b2004450d0320002d0001410874200572220541ffff0371418002490d03200541fcff037141027621050c020b20044103490d0220002f0001200041036a2d000041107472410874200572220541808004490d02200541027621050c010b200541034b0d0120044104490d0120002800012205418080808004490d010b41012106200541016a22042005490d000240200541c000490d0041022106200541808001490d00410441052005418080808004491b21060b410121000240200441c000490d0041022100200441808001490d00410441052004418080808004491b21000b024020002006460d002002200020066b6a220241046a2203417f4c0d050240024020030d00410121050c010b2003101e2205450d070b200120033602bc02200120053602b802200120023602c0022001200141b8026a36028803200420014188036a200010800220022000490d0720012802c00222032002490d0820012802b00222032006490d0920012802b802210520012802a80221042001200220006b22023602c8022001200320066b22033602cc0220022003470d0a200520006a200420066a200210cd051a20014190016a200141b8026a10810220012802c002210020012802bc02210320012802b802210220012802ac02450d0c20012802a80210200c0c0b2001200141a8026a36028803200420014188036a200010800220014190016a200141a8026a1081020c0a0b2003450d0b200010200c0b0b200141086a1082020c0b0b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b200141013602880320014188036a200141a8026a106320014190016a200141a8026a1081020c060b102c000b20034101102d000b20002002103b000b20022003103a000b20062003103b000b200141e8026a41146a4108360200200141f4026a4109360200200141d0026a41146a41033602002001200141c8026a360280032001200141cc026a3602840320014188036a41146a4100360200200142033702d40220014190fbc6003602d002200141093602ec02200141e4fdc600360298032001420137028c03200141e4fbc600360288032001200141e8026a3602e002200120014188036a3602f802200120014184036a3602f002200120014180036a3602e802200141d0026a41a0fcc6001033000b20012802b002210020012802ac02210320012802a80221020b2002450d0020014198026a411020022000100502402003450d00200210200b20014190016a10820220014188036a41086a2202420037030020014200370388034195fcc000410d20014188036a100020014198026a41086a2002290300370300200120012903880337039802200141003602900120014198026a411020014190016a100321022001280290012200417f460d012002450d01200041034d0d02200210200c010b20014190016a1082020b200141a0036a24000f0b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000be50303027f017e027f02402001450d000340200028028c0121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a4190016a280200210020012003410c6c6a2201410c6a2902002105200141086a2802002107410021032006417f6a2201450d010340200028028c0121002001417f6a22010d000c020b0b20002003410c6c6a2201410c6a2902002105200141086a2802002107200341016a21030b2007450d012002417f6a210202402005a7450d00200710200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bac0101047f230041206b22002400200041106a41086a22014200370300200042003703104195fcc000410d200041106a1000200041086a200129030037030020002000290310370300410021022000410036021020004110200041106a100321010240024020002802102203417f460d002001450d0020034104490d0120012800002102200110200b200041206a240020020f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000ba42e05077f027e017f017e0b7f230041d0026b2202240002400240024002400240024002400240024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032000370033200241e8006a41186a22044200370300200241e8006a41106a22054200370300200241e8006a41086a22064200370300200242003703682003413b200241e8006a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229036837030020031020200241003602b80120024120200241b8016a10032107024020022802b8012208417f460d002007450d002002200836026c20022007360268200241b8016a200241e8006a107c20022903880222094202510d03200241a0026a290300210020024198026a290300210a200241f4016a280200210b200229039002210c20022802f801210d20022802f001210320022802ec01210e20022802e801210f20022802e401211020022802e001211120022802dc01211220022802d801211320022802d401210420022802d001211420022802cc01211520022802c801210520022802c001211620022802bc01211720022802b801210602402008450d00200710200b02402017450d00201721070340200628026021062007417f6a22070d000b03402017417f6a22170d000b0b02402016450d00410021174100210741002108034020022017360274200220073602702002200636026c20022008360268200241b8016a200241e8006a106120022802c001210820022802c401210620022802c801210720022802cc0121172016417f6a22160d000b0b200641908cc500460d0920062802002116200610202016450d0920162802002117201610202017450d09201728020022060d050c080b20022000370320200241e8006a41186a22034200370300200241e8006a41106a22044200370300200241e8006a41086a2205420037030020024200370368419eaac000413b200241e8006a1001200241b8016a41186a2003290300370300200241b8016a41106a2004290300370300200241b8016a41086a2005290300370300200220022903683703b80120024100360268200241b8016a4120200241e8006a10032103024020022802682204417f460d002003450d000240024020044108490d002003290000210020031020200241286a2000107d200241003602b801200241286a4120200241b8016a10032103024020022802b8012204417f460d0020030d020b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200241c0026a41fcbfc4004184b9c400102e000b200220043602ac02200220033602a802200241b8016a200241a8026a107c20022903880222094202510d04200241e8006a200241b8016a41d00010cd051a200241c8006a41106a2205200241a0026a290300370300200241c8006a41086a220620024198026a290300370300200220022903900237034802402004450d00200310200b200241b8016a200241e8006a41d00010cd051a200241a8026a41106a22032005290300370300200241a8026a41086a22042006290300370300200220022903483703a802200241e8006a200241b8016a41cc0010cd051a200241e0006a2205200329030037030020022009370348200220022903a802370350200220042903002209370358200241b8016a200241e8006a41cc0010cd051a200241b8016a41d0006a2005410020094201511b3602002002200241206a36028402200241003602b002200242013703a802200241b8016a200241a8026a106220022d00c4012105024020022802ac0220022802b0022204460d0020022802a80221030c070b200441016a22032004490d07200441017422062003200620034b1b22064100480d070240024020040d002006101e21030c010b20022802a80220042006102221030b02402003450d00200220063602ac02200220033602a8020c070b20064101102d000b4200210a200241e8006a41186a22034200370300200241e8006a41106a22044200370300200241e8006a41086a2205420037030020024200370368419eaac000413b200241e8006a1001200241b8016a41186a2003290300370300200241b8016a41106a2004290300370300200241b8016a41086a2005290300370300200220022903683703b80120022000370368200241b8016a4120200241e8006a41081005420021090c090b41334101102d000b41e6004101102d000b41ceb8c4004133200241c0026a41fcbfc4004184b9c400102e000b41ceb8c4004133200241c0026a41fcbfc4004184b9c400102e000b0340201710202006211720062802002216210620160d000c030b0b2002200441016a3602b002200320046a20053a000020022d00800221050240024002400240024002400240024020022802ac0220022802b0022204470d00200441016a22062004490d082004410174220b2006200b20064b1b22064100480d080240024020040d002006101e21030c010b200320042006102221030b2003450d01200220063602ac02200220033602a8020b2002200441016a3602b002200320046a20053a0000200241c8016a200241a8026a1062200241d4016a200241a8026a106220022802e001220341024b0d0620030e03010203010b20064101102d000b024020022802ac0220022802b0022203460d0020022802a80221040c040b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802a80220032005102221040b02402004450d00200220053602ac02200220043602a8020c040b20054101102d000b024020022802ac0220022802b0022203460d0020022802a80221040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b20022802a80220032005102221040b02402004450d00200220053602ac02200220043602a8020c020b20054101102d000b0240024020022802ac0220022802b0022203460d0020022802a80221040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b20022802a80220032005102221040b02402004450d00200220053602ac02200220043602a8020c010b20054101102d000b2002200341016a3602b002200420036a41023a0000200241e4016a200241a8026a10640c020b2002200341016a3602b002200420036a41013a00000c010b2002200341016a3602b002200420036a41003a00000b200241f0016a200241a8026a106220022802fc0121050240024020022802ac02220420022802b00222036b4104490d0020022802a80221040c010b200341046a22062003490d012004410174220b2006200b20064b1b22064100480d010240024020040d002006101e21040c010b20022802a80220042006102221040b02402004450d00200220063602ac02200220043602a8020c010b20064101102d000b2002200341046a3602b002200420036a2005360000200241b8016a41cc006a200241a8026a107e20022802ac022103200241286a412020022802a802220420022802b002100502402003450d00200410200b20022802c001210420022802b8012103024020022802bc012205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241d0016a280200210420022802c80121030240200241cc016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241dc016a280200210420022802d40121030240200241d8016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b024020022802e0014102490d00200241e4016a280200200241e8016a280200200241ec016a28020010720b200241f8016a280200210420022802f00121030240200241f4016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b3602cc02200220063602c802200220033602c402200220053602c002200241a8026a200241c0026a106120022802b002210520022802b402210320022802b802210620022802bc02210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b2002290320210a42002109200241e8006a41186a22034200370300200241e8006a41106a22044200370300200241e8006a41086a2205420037030020024200370368419eaac000413b200241e8006a1001200241b8016a41186a2003290300370300200241b8016a41106a2004290300370300200241b8016a41086a2005290300370300200220022903683703b8012002200a370368200241b8016a4120200241e8006a410810054201210a0c030b1027000b201710200b02402015450d00201521060340200528026021052006417f6a22060d000b03402015417f6a22150d000b0b02402014450d00410021064100211541002117034020022006360274200220153602702002200536026c20022017360268200241b8016a200241e8006a106120022802c001211720022802c401210520022802c801211520022802cc0121062014417f6a22140d000b0b0240200541908cc500460d0020052802002115200510202015450d0020152802002106201510202006450d00024020062802002205450d000340200610202005210620052802002215210520150d000b0b200610200b02402013450d00201321050340200428026021042005417f6a22050d000b03402013417f6a22130d000b0b02402012450d00410021054100210641002113034020022013360274200220063602702002200436026c20022005360268200241b8016a200241e8006a106120022802c001210520022802c401210420022802c801210620022802cc0121132012417f6a22120d000b0b0240200441908cc500460d0020042802002106200410202006450d0020062802002105200610202005450d00024020052802002204450d000340200510202004210520042802002206210420060d000b0b200510200b024020114102490d002010200f200e10720b0240200b450d00200b21040340200328026021032004417f6a22040d000b0340200b417f6a220b0d000b0b0240200d450d00410021044100210541002106034020022004360274200220053602702002200336026c20022006360268200241b8016a200241e8006a106120022802c001210620022802c401210320022802c801210520022802cc012104200d417f6a220d0d000b0b200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241b8016a200141cc0010cd051a200241a0026a200037030020024198026a200a37030020024190026a200c37030020022009370388022002412036026c20022002360268200241b8016a200241e8006a107f20022802c001210420022802b8012103024020022802bc012205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241d0016a280200210420022802c80121030240200241cc016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241dc016a280200210420022802d40121030240200241d8016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b024020022802e0014102490d00200241e4016a280200200241e8016a280200200241ec016a28020010720b200241f8016a280200210420022802f00121030240200241f4016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d0041002105410021064100210b03402002200b360254200220063602502002200336024c20022005360248200241e8006a200241c8006a1061200228027021052002280274210320022802782106200228027c210b2004417f6a22040d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b200241d0026a24000b900801097f230041c0016b220224000240024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032001370033200241e8006a41186a22044200370300200241e8006a41106a22054200370300200241e8006a41086a22064200370300200242003703682003413b200241e8006a1001200241c8006a41186a2004290300370300200241c8006a41106a2005290300370300200241c8006a41086a2006290300370300200220022903683703482003102020024100360268200241c8006a4120200241e8006a100321040240024020022802682205417f470d00410321030c010b024020040d00410321030c010b200220053602bc01200220043602b801200241e8006a200241b8016a10910120022802900122034103460d03200241206a41206a200241e8006a41206a290300370300200241206a41186a200241e8006a41186a290300370300200241206a41106a200241e8006a41106a290300370300200241206a41086a200241e8006a41086a290300370300200241086a2002419c016a290200370300200241106a200241a4016a290200370300200241186a200241ac016a2902003703002002200229036837032020022002290294013703002005450d00200410200b200241e8006a41086a2204200241206a41086a290300370300200241e8006a41106a2205200241206a41106a290300370300200241e8006a41186a2206200241206a41186a290300370300200241e8006a41206a2207200241206a41206a290300370300200241c8006a41086a2208200241086a290300370300200241c8006a41106a2209200241106a290300370300200241c8006a41186a220a200241186a29030037030020022002290320370368200220022903003703480240024020034103470d0041002103200041003a0048200041013a000c20004200370204200041908cc50036020020004100360244200041908cc500360238200041908cc50036021c200041908cc5003602102000413c6a4200370200200041206a4200370200200041146a42003702000c010b200020022903683702002000412c6a2002290348370200200041206a2007290300370200200041186a2006290300370200200041106a2005290300370200200041086a2004290300370200200041346a20082903003702002000413c6a2009290300370200200041c4006a200a2903003702000b20002003360228200241c0016a24000f0b41334101102d000b41e6004101102d000b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000bec0b01127f230041d0016b22022400200241386a200110910102400240200228026022034103470d00200042023703500c010b200241f8006a2802002104200241386a413c6a2802002105200241f0006a2802002106200241ec006a2802002107200241e8006a280200210820022802642109200228025c210a2002280258210b2002280254210c2002280250210d200228024c210e2002280248210f2002280244211020022802402111200228023c2112200228023821132002200241fc006a29020037033020024188016a200110930102400240024002402002290388014202520d002000420237035002402012450d00201221000340201328026021132000417f6a22000d000b03402012417f6a22120d000b0b02402011450d004100211241002100410021010340200220123602cc01200220003602c801200220133602c401200220013602c001200241a8016a200241c0016a106120022802b001210120022802b401211320022802b801210020022802bc0121122011417f6a22110d000b0b201341908cc500460d0320132802002111201310202011450d0320112802002112201110202012450d03201228020022130d010c020b200241106a20024188016a41086a290300370200200241186a20024188016a41106a290300370200200241206a20024188016a41186a290300370200200220022903303703282002200229038801370208200020043602402000413c6a20053602002000200636023820002007360234200020083602302000200936022c200020033602282000200a3602242000200b3602202000200c36021c2000200d3602182000200e3602142000200f3602102000201036020c200020113602082000201236020420002013360200200020022903283702442000200229020437024c200041d4006a200241046a41086a290200370200200041dc006a200241046a41106a290200370200200041e4006a200241046a41186a290200370200200041ec006a200241246a2802003602000c030b0340201210202013211220132802002211211320110d000b0b201210200b0240200e450d00200e21130340200f280260210f2013417f6a22130d000b0340200e417f6a220e0d000b0b0240200d450d00410021134100210e410021120340200220123602cc012002200e3602c8012002200f3602c401200220133602c001200241a8016a200241c0016a106120022802b001211320022802b401210f20022802b801210e20022802bc012112200d417f6a220d0d000b0b0240200f41908cc500460d00200f280200210e200f1020200e450d00200e2802002113200e10202013450d0002402013280200220f450d00034020131020200f2113200f280200220e210f200e0d000b0b201310200b0240200b450d00200b210f0340200c280260210c200f417f6a220f0d000b0340200b417f6a220b0d000b0b0240200a450d004100210f410021134100210b03402002200b3602cc01200220133602c8012002200c3602c4012002200f3602c001200241a8016a200241c0016a106120022802b001210f20022802b401210c20022802b801211320022802bc01210b200a417f6a220a0d000b0b0240200c41908cc500460d00200c2802002113200c10202013450d002013280200210f20131020200f450d000240200f280200220c450d000340200f1020200c210f200c2802002213210c20130d000b0b200f10200b024020034102490d0020092008200710720b02402005450d002005210c034020062802602106200c417f6a220c0d000b03402005417f6a22050d000b0b02402004450d004100210c4100210f410021130340200220133602cc012002200f3602c801200220063602c4012002200c3602c001200241a8016a200241c0016a106120022802b001210c20022802b401210620022802b801210f20022802bc0121132004417f6a22040d000b0b200641908cc500460d002006280200210f20061020200f450d00200f280200210c200f1020200c450d000240200c2802002206450d000340200c10202006210c2006280200220f2106200f0d000b0b200c10200b200241d0016a24000b960201057f230041206b22022400024002404133101e2203450d002003412f6a410028009aaa40360000200341286a4100290093aa40370000200341206a410029008baa40370000200341186a4100290083aa40370000200341106a41002900fba940370000200341086a41002900f3a940370000200341002900eba9403700002003413341e60010222203450d0120032001370033200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003413b20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41334101102d000b41e6004101102d000bac0802047f017e0240024002400240024002400240200028020022020d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d03200341017422022004200220044b1b22024100480d030240024020030d002002101e21040c010b200128020020032002102221040b02402004450d0020012004360200200141046a2002360200200141086a28020021030c020b20024101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200229030021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22022003490d04200441017422032002200320024b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b0240200028020422040d000240200141046a280200200141086a2802002203460d00200128020021000c050b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c050b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021000c010b200341016a22002003490d01200341017422022000200220004b1b22024100480d010240024020030d002002101e21000c010b200128020020032002102221000b2000450d0220012000360200200141046a2002360200200141086a28020021030b200141086a2202200341016a360200200020036a41013a0000200429030021060240200141046a2802002200200228020022036b4108490d00200128020021000c030b200341086a22042003490d00200041017422032004200320044b1b22034100480d000240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c030b20034101102d000b1027000b20024101102d000b200141086a200341086a360200200020036a20063700000f0b200141086a200341016a360200200020036a41003a00000ba60801067f230041106b22022400200241003602082002420137030020002002106220002d000c2103024002400240200228020420022802082204460d00200228020021050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200228020020042006102221050b02402005450d0020022006360204200220053602000c010b20064101102d000b2002200441016a360208200520046a20033a000020002d0048210302400240024002400240024002400240200228020420022802082204470d00200441016a22062004490d08200441017422072006200720064b1b22064100480d080240024020040d002006101e21050c010b200520042006102221050b2005450d0120022006360204200220053602000b2002200441016a360208200520046a20033a0000200041106a200210622000411c6a200210622000280228220541024b0d0620050e03010203010b20064101102d000b0240200228020420022802082205460d00200228020021040c040b200541016a22042005490d05200541017422032004200320044b1b22034100480d050240024020050d002003101e21040c010b200228020020052003102221040b02402004450d0020022003360204200220043602000c040b20034101102d000b0240200228020420022802082205460d00200228020021040c020b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228020020052003102221040b02402004450d0020022003360204200220043602000c020b20034101102d000b02400240200228020420022802082205460d00200228020021040c010b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228020020052003102221040b02402004450d0020022003360204200220043602000c010b20034101102d000b2002200541016a360208200420056a41023a00002000412c6a200210640c020b2002200541016a360208200420056a41013a00000c010b2002200541016a360208200420056a41003a00000b200041386a20021062200028024421060240024020022802042203200228020822056b4104490d00200541046a2104200228020021030c010b200541046a22042005490d01200341017422072004200720044b1b22074100480d010240024020030d002007101e21030c010b200228020020032007102221030b02402003450d0020022007360204200220033602000c010b20074101102d000b20022004360208200320056a2006360000200041d0006a20021094012002280204210020012802002001280204200228020022052002280208100502402000450d00200510200b200241106a24000f0b1027000bb70601077f230041a0016b22022400024002400240411c101e2203450d00200341186a410028009fec42360000200341106a4100290097ec42370000200341086a410029008fec4237000020034100290087ec423700002003411c413810222203450d012003200137001c200241d8006a41186a22044200370300200241d8006a41106a22054200370300200241d8006a41086a220642003703002002420037035820034124200241d8006a1001200241386a41186a2004290300370300200241386a41106a2005290300370300200241386a41086a2006290300370300200220022903583703382003102020024100360258200241386a4120200241d8006a100321030240024020022802582204417f470d00420221010c010b024020030d00420221010c010b2002200436029c012002200336029801200241d8006a20024198016a10f003200229035822014202510d03200241306a20024190016a290300370300200241286a200241d8006a41306a290300370300200241206a200241d8006a41286a290300370300200241186a200241d8006a41206a290300370300200241106a200241d8006a41186a290300370300200241086a200241d8006a41106a290300370300200220022903603703002004450d00200310200b200241d8006a41306a2203200241306a290300370300200241d8006a41286a2204200241286a290300370300200241d8006a41206a2205200241206a290300370300200241d8006a41186a2206200241186a290300370300200241d8006a41106a2207200241106a290300370300200241d8006a41086a2208200241086a290300370300200220022903003703580240024020014202520d00420021012000420037021c20004200370310200041346a42003702002000412c6a4200370200200041246a42003702000c010b20002002290358370308200041386a2003290300370300200041306a2004290300370300200041286a2005290300370300200041206a2006290300370300200041186a2007290300370300200041106a20082903003703000b20002001370300200241a0016a24000f0b411c4101102d000b41384101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000baf0802047f017e0240024002400240024002400240200028020022020d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d03200341017422022004200220044b1b22024100480d030240024020030d002002101e21040c010b200128020020032002102221040b02402004450d0020012004360200200141046a2002360200200141086a28020021030c020b20024101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200228020029030021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22022003490d04200441017422032002200320024b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b0240200028020422040d000240200141046a280200200141086a2802002203460d00200128020021000c050b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c050b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021000c010b200341016a22002003490d01200341017422022000200220004b1b22024100480d010240024020030d002002101e21000c010b200128020020032002102221000b2000450d0220012000360200200141046a2002360200200141086a28020021030b200141086a2202200341016a360200200020036a41013a0000200429030021060240200141046a2802002200200228020022036b4108490d00200128020021000c030b200341086a22042003490d00200041017422032004200320044b1b22034100480d000240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c030b20034101102d000b1027000b20024101102d000b200141086a200341086a360200200020036a20063700000f0b200141086a200341016a360200200020036a41003a00000b840603017f017e067f230041106b220224002002410036020820024201370300200029030021030240024002404108101e2204450d00200242888080808001370204200220043602002004200337000020002903082103024020022802042205200228020822046b4108490d00200441086a2106200228020021050c020b200441086a22062004490d02200541017422072006200720064b1b22074100480d020240024020050d002007101e21050c010b200228020020052007102221050b02402005450d0020022007360204200220053602000c020b20074101102d000b41084101102d000b20022006360208200520046a2003370000200028021021062002200041186a280200220436020c2002410c6a2002106302402004450d0020044101742107034020062f010021080240024020022802042205200228020822046b4102490d00200228020021050c010b200441026a22092004490d03200541017422042009200420094b1b22044100480d030240024020050d002004101e21050c010b200228020020052004102221050b02402005450d002002200436020420022005360200200228020821040c010b20044101102d000b200641026a21062002200441026a360208200520046a20083b00002007417e6a22070d000b0b200028021c21062002200041246a280200220436020c2002410c6a2002106302402004450d00200441186c21070340200641106a2f010021080240024020022802042205200228020822046b4102490d00200228020021050c010b200441026a22092004490d03200541017422042009200420094b1b22044100480d030240024020050d002004101e21050c010b200228020020052004102221050b02402005450d002002200436020420022005360200200228020821040c010b20044101102d000b2002200441026a360208200520046a20083b000020062002109a01200641186a2106200741686a22070d000b0b2002280204210420012802002001280204200228020022062002280208100502402004450d00200610200b200241106a24000f0b1027000bbf0204027f017e037f047e02400240200128020422024108490d002001280200220329000021042001200241786a22053602042001200341086a22033602002005450d0120032d000021052001200241776a22063602042001200341016a2207360200200541014b0d01420021080240024020050e020100010b20064108490d022003290001210920012002416f6a22063602042001200341096a2207360200420121080b2006450d0120072d0000210220012006417f6a22033602042001200741016a360200200241014b0d014200210a0240024020020e020100010b20034108490d022007290001210b2001200641776a3602042001200741096a3602004201210a0b200020093703102000200837030820002004370300200041206a200b370300200041186a200a3703000f0b200042023703080f0b200042023703080b8b0202037f027e230041d0006b220224002002410036022020014120200241206a100321030240024020022802202204417f460d002003450d002002200436024c20022003360248200241206a200241c8006a1083010240200229032822054202510d00200241106a200241386a290300370300200241186a200241206a41206a290300370300200220022903303703082002290320210602402004450d00200310200b2001412010040c020b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420221050b200020053703082000200637030020002002290308370310200041186a200241106a290300370300200041206a200241186a290300370300200241d0006a24000b960201057f230041206b22022400024002404134101e2203450d00200341306a41002800aba940360000200341286a41002900a3a940370000200341206a410029009ba940370000200341186a4100290093a940370000200341106a410029008ba940370000200341086a4100290083a940370000200341002900fba8403700002003413441e80010222203450d0120032001370034200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003413c20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41344101102d000b41e8004101102d000bc60203017f017e047f024002400240024002404108101e2202450d002002200029030037000020002903082103200241084110102221020240024020034201510d002002450d03200241003a000841102104410921050c010b2002450d03200241013a0008200041106a29030021034120210420024110412010222202450d0420022003370009411121050b02400240200041186a2903004201510d00200220056a41003a0000200541016a21000c010b200220056a41013a0000200041206a290300210302402004200541016a22006b41074b0d002002200420044101742206200541096a2207200620074b1b220610222202450d060b200220006a2003370000200541096a21000b20012802002001280204200220001005200210200f0b41084101102d000b41104101102d000b41104101102d000b41204101102d000b20064101102d000bbc0203037f017e027f024002400240024002404108101e2202450d002002200029030037000020002802082103200241084110102221020240024020030d002002450d03200241003a000841102104410921030c010b2002450d03200241013a0008200329030021054120210420024110412010222202450d0420022005370009411121030b024002402000410c6a28020022000d00200220036a41003a0000200341016a21000c010b200220036a41013a00002000290300210502402004200341016a22006b41074b0d002002200420044101742206200341096a2207200620074b1b220610222202450d060b200220006a2005370000200341096a21000b20012802002001280204200220001005200210200f0b41084101102d000b41104101102d000b41104101102d000b41204101102d000b20064101102d000bcd0203027f017e037f20002802002102024002400240024002404108101e2203450d002003200229030037000020002903082104200341084110102221030240024020044201510d002003450d03200341003a000841102105410921020c010b2003450d03200341013a0008200041106a29030021044120210520034110412010222203450d0420032004370009411121020b02400240200041186a2903004201510d00200320026a41003a0000200241016a21000c010b200320026a41013a0000200041206a290300210402402005200241016a22006b41074b0d002003200520054101742206200241096a2207200620074b1b220610222203450d060b200320006a2004370000200241096a21000b20012802002001280204200320001005200310200f0b41084101102d000b41104101102d000b41104101102d000b41204101102d000b20064101102d000b8b0201057f230041c0006b22012400024002404119101e2202450d00200241186a41002d00fc86473a0000200241106a41002900f48647370000200241086a41002900ec8647370000200241002900e4864737000020024119413210222202450d0120022000370019200141206a41186a22034200370300200141206a41106a22044200370300200141206a41086a220542003703002001420037032020024121200141206a1001200141186a2003290300370300200141106a2004290300370300200141086a200529030037030020012001290320370300200210202001412041e4fdc6004100410010022102200141c0006a24002002417f470f0b41194101102d000b41324101102d000bb00501057f23004180016b220224000240024002404119101e2203450d00200341186a41002d00fc86473a0000200341106a41002900f48647370000200341086a41002900ec8647370000200341002900e4864737000020034119413210222203450d0120032001370019200241c8006a41186a22044200370300200241c8006a41106a22054200370300200241c8006a41086a220642003703002002420037034820034121200241c8006a1001200241286a41186a2004290300370300200241286a41106a2005290300370300200241286a41086a2006290300370300200220022903483703282003102020024100360248200241286a4120200241c8006a100321040240024020022802482205417f470d00410021030c010b024020040d00410021030c010b2002200536027420022004360270200241c8006a200241f0006a108d0120022802582203450d03200241186a41086a200241c8006a41086a290300370300200241086a200241e4006a290200370300200241106a200241ec006a280200360200200220022903483703182002200229025c3703002005450d00200410200b200241f0006a41086a2204200241186a41086a290300370300200241c8006a41086a2205200241086a290300370300200241c8006a41106a2206200241106a28020036020020022002290318370370200220022903003703480240024020030d002000420037030020004202370310200041086a4200370300200041206a4200370200200041186a428080808080013703000c010b2000200229037037030020002003360210200041146a2002290348370200200041086a20042903003703002000411c6a2005290300370200200041246a20062802003602000b20024180016a24000f0b41194101102d000b41324101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000b8a1303037f017e0b7f23004180016b22042400410021050240024020030d000c010b2002200341186c6a21060340024020022d00004109470d000240200229030822071089010d004186acc0002105410e21030c030b200441086a2007108a01200429031021070240200428021c450d00200428021810200b200428022421080240200428022c2203450d00200341186c21092008210303402003106b200341186a2103200941686a22090d000b0b02402004280228450d00200810200b200441086a2007107b02400240024020042802300e03010200010b20022f0110210a200428023c210b2004280234220c210d2004280238220e210f034002400240200d2f010622100d00410021090c010b20104104742108200d41086a2103417f21090340024020080d00201021090c020b0240417f2003290300220720015220072001561b22110d00417f200341086a2f010041ffff03712211200a41ffff0371221247201120124b1b21110b200341106a2103200841706a2108200941016a21090240201141016a0e03020001020b0b200c200e200b10720c030b0240200f450d00200f417f6a210f200d20094102746a41b8016a280200210d0c010b0b200c200e200b10720b20042802102109200428020821030240200428020c2208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b20042802202109200428021821030240200428021c2208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b200428022c210920042802242103024020042802282208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200836027c2004200d360278200420033602742004200f360270200441d8006a200441f0006a10612004280260210f200428026421032004280268210d200428026c21082009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b2004280248210920042802402103024020042802442208450d002008210d034020032802602103200d417f6a220d0d000b03402008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200836027c2004200d360278200420033602742004200f360270200441d8006a200441f0006a10612004280260210f200428026421032004280268210d200428026c21082009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b41fbacc0002105412121030c030b20042802102109200428020821030240200428020c2208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200836027c2004200d360278200420033602742004200f360270200441d8006a200441f0006a10612004280260210f200428026421032004280268210d200428026c21082009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b20042802202109200428021821030240200428021c2208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b200428022c210920042802242103024020042802282208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b0240200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b2004280248210920042802402103024020042802442208450d000340200328026021032008417f6a22080d000b0b02402009450d00410021084100210d4100210f03402004200f36027c2004200d3602782004200336027420042008360270200441d8006a200441f0006a106120042802602108200428026421032004280268210d200428026c210f2009417f6a22090d000b0b200341908cc500460d0020032802002108200310202008450d0020082802002109200810202009450d00024020092802002203450d000340200910202003210920032802002208210320080d000b0b200910200b200241186a22022006470d000b410e21030b200020033602042000200536020020044180016a24000beb0901057f230041f0006b2206240041012107024002400240024020012d0000220841014b0d0020080e020102010b200041e6aac000360204200041086a411e3602000c020b200041086a4200370300410021070c010b02402002a74101460d00200041086a4203370300410021070c010b0240024002400240024002400240200141016a2207200310680d00200641286a41086a220842003703002006420037032841d4bfc4004108200641286a1000200641d0006a41086a2201200829030037030020062006290328370350200641286a200641d0006a4110106920062d00282108200641d0006a41186a2209200641c1006a290000370300200641d0006a41106a220a200641396a2900003703002001200641316a290000370300200620062900293703500240024020084101460d00200641086a41186a4200370300200641086a41106a4200370300200641086a41086a4200370300200642003703080c010b200641086a41186a2009290300370300200641086a41106a200a290300370300200641086a41086a2001290300370300200620062903503703080b200641086a2007460d00200641086a2007412010cf05450d00200041ceabc000360204200041086a41263602000c010b02402004a74101460d00200041106a2003370300200041086a4202370300410021070c070b4134101e2207450d02200741306a41002800aba940360000200741286a41002900a3a940370000200741206a410029009ba940370000200741186a4100290093a940370000200741106a410029008ba940370000200741086a4100290083a940370000200741002900fba8403700002007413441e80010222207450d0320072005370034200641286a41186a22014200370300200641286a41106a22084200370300200641286a41086a22094200370300200642003703282007413c200641286a1001200641d0006a41186a2001290300370300200641d0006a41106a2008290300370300200641d0006a41086a200929030037030020062006290328370350200710200240200641d0006a412041e4fdc600410041001002417f460d004134101e2207450d05200741306a41002800aba940360000200741286a41002900a3a940370000200741206a410029009ba940370000200741186a4100290093a940370000200741106a410029008ba940370000200741086a4100290083a940370000200741002900fba8403700002007413441e80010222207450d0620072005370034200641286a41186a22014200370300200641286a41106a22084200370300200641286a41086a22094200370300200642003703282007413c200641286a1001200641d0006a41186a2001290300370300200641d0006a41106a2008290300370300200641d0006a41086a2009290300370300200620062903283703502007102020064100360228200641d0006a4120200641286a100321070240024020062802282201417f460d002007450d0020014108490d01200729000021022007102020022003510d040b200041e9acc000360204200041086a41123602000c020b41ceb8c4004133200641286a41fcbfc4004184b9c400102e000b200041e9acc000360204200041086a41123602000b410121070c050b200041086a4201370300410021070c040b41344101102d000b41e8004101102d000b41344101102d000b41e8004101102d000b20002007360200200641f0006a24000bba0206037f017e017f017e017f017e230041206b220224000240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a36020020064108490d01200429000821072001200341706a3602042001200441106a360200200241106a200110e501200228021022030d02200041003602100c030b200041003602100c020b200041003602100c010b200241106a41086a2206280200210820022802142104200241106a200110e60102402002280210450d00200241086a20062802002201360200200220022903102209370300200041186a2008360200200020043602142000200336021020002007370308200020053703002000411c6a2009370200200041246a20013602000c010b200041003602102004450d00200310200b200241206a24000b890203017f017e077f02400240024020012802082202ad420c7e2203422088a70d002003a72204417f4c0d00200128020021050240024020040d00410421060c010b2004101e2206450d020b0240024020020d00410021070c010b20052002410c6c6a210841002107200621040340200541086a2802002201417f4c0d02200528020021090240024020010d004101210a0c010b2001101e220a450d050b200a2009200110cd052109200441086a2001360200200441046a2001360200200420093602002004410c6a2104200741016a21072005410c6a22052008470d000b0b2000200736020820002002360204200020063602000f0b102c000b20044104102d000b20014101102d000bcc0b01047f230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e130102030405060708090a0b0c0d0e0f10111200010b2001410c6a280200220341ffffffff01712003470d1320034103742204417f4c0d13200141046a28020021054108210102402004450d002004101e2201450d150b20012005200341037410cd0521012000410c6a2003360200200041086a2003360200200041046a2001360200200041123a00000c120b200041003a00000c110b200041013a0000200020012d00014100473a00010c100b200041023a0000200041026a200141026a2f01003b01000c0f0b200041033a0000200041046a200141046a2802003602000c0e0b200041043a0000200041086a200141086a2903003703000c0d0b200041053a0000200041026a200141026a2f01003b01000c0c0b200041063a0000200041046a200141046a2802003602000c0b0b200041073a0000200041086a200141086a2903003703000c0a0b2001410c6a2802002203417f4c0d0a200141046a28020021010240024020030d00410121040c010b2003101e2204450d0d0b20042001200310cd0521012000410c6a2003360200200041086a2003360200200041046a2001360200200041083a00000c090b200041093a0000200041086a200141086a2903003703000c080b2001410c6a2802002203417f4c0d08200141046a28020021010240024020030d0041012104410021050c010b200321052003101e2204450d0c0b20042001200310cd0521012000410c6a2003360200200041086a2005360200200041046a20013602002000410a3a00000c070b2001410c6a280200220320036a22042003490d072004417f4c0d07200141046a28020021010240024020040d00410221050c010b2004101e2205450d0c0b20052001200341017410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410b3a00000c060b2001410c6a280200220341ffffffff03712003470d0620034102742204417f4c0d06200141046a28020021054104210102402004450d002004101e2201450d0c0b20012005200341027410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410c3a00000c050b2001410c6a280200220341ffffffff01712003470d0520034103742204417f4c0d05200141046a28020021054108210102402004450d002004101e2201450d0c0b20012005200341037410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410d3a00000c040b2001410c6a280200220320036a22042003490d042004417f4c0d04200141046a28020021010240024020040d00410221050c010b2004101e2205450d0c0b20052001200341017410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410e3a00000c030b2001410c6a280200220341ffffffff03712003470d0320034102742204417f4c0d03200141046a28020021054104210102402004450d002004101e2201450d0c0b20012005200341027410cd0521012000410c6a2003360200200041086a2003360200200041046a20013602002000410f3a00000c020b2001410c6a280200220341ffffffff01712003470d0220034103742204417f4c0d02200141046a28020021054108210102402004450d002004101e2201450d0c0b20012005200341037410cd0521012000410c6a2003360200200041086a2003360200200041046a2001360200200041103a00000c010b2002200141046a108e01200041113a00002000410c6a200241086a280200360200200041046a20022903003702000b200241106a24000f0b102c000b20044108102d000b20034101102d000b20034101102d000b20044102102d000b20044104102d000b20044108102d000b20044102102d000b20044104102d000b20044108102d000bfc2c06027f017e097f017e077f017e23004190016b22032400200341186a2001108f0141002104024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022106411221040c110b410121040c100b410221040c0f0b410321040c0e0b410421040c0d0b410521040c0c0b410621040c0b0b410721040c0a0b20022f01022106410821040c090b200241086a2903002105410921040c080b20022f01022106410a21040c070b20022f01022106410b21040c060b20022f01022106410c21040c050b20022f01022106410d21040c040b20022f01022106410e21040c030b20022f01022106410f21040c020b20022f01022106411021040c010b200241046a2f0100210720022f01022106411121040b02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200241186a2802002208417f4c0d002002280210210920022d0028210a0240024002400240024020080d004101210b0c010b2008101e220b450d010b200b2009200810cd05210c200241246a2802002209417f4c0d03200228021c210b0240024020090d004101210d0c010b2009101e220d450d020b200d200b200910cd05210d200341386a41086a220e200341186a41086a29030037030020032003290318220f3703384100210b0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200fa7200a41ff01714100477241ff0171450d00200341f0006a2005370300200341ec006a20073b0100200341d8006a41126a20063b0100200341d8006a41086a200e290300370300200320032903382205370358200320043b01682005a741ff0171220741124b0d1520070e130102030405060708090a0b0c0d0e0f10111213010b02402008450d00200c10200b02402009450d00200d10200b200341386a106b0c170b2004450d120c130b20044101460d110c120b20044102460d100c110b20044103460d0f0c100b20044104460d0e0c0f0b20044105460d0d0c0e0b20044106460d0c0c0d0b20044107460d0b0c0c0b20044108460d0a0c0b0b20044109460d090c0a0b2004410a460d080c090b2004410b460d070c080b2004410c460d060c070b2004410d460d050c060b2004410e460d040c050b2004410f460d030c040b20044110460d020c030b20044111460d010c020b20044112470d010b4101210b0b200341d8006a106b02402008450d00200c10200b02402009450d00200d10200b200b0d024199dfc000210841cb0021090c2d0b20084101102d000b20094101102d000b200341086a2001108f0141002108024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022106411221080c110b410121080c100b410221080c0f0b410321080c0e0b410421080c0d0b410521080c0c0b410621080c0b0b410721080c0a0b20022f01022106410821080c090b200241086a2903002105410921080c080b20022f01022106410a21080c070b20022f01022106410b21080c060b20022f01022106410c21080c050b20022f01022106410d21080c040b20022f01022106410e21080c030b20022f01022106410f21080c020b20022f01022106411021080c010b200241046a2f0100210920022f01022106411121080b20022802182204417f4c0d00200228021021070240024020040d004101210a0c010b2004101e220a450d020b200a2007200410cd05210d20022802242207417f4c0d00200228021c210a0240024020070d004101210b0c010b2007101e220b450d030b200b200a200710cd05210a200341386a41086a200341086a41086a290300370300200341d0006a2005370300200341cc006a20093b0100200341ca006a20063b010020032003290308220f370338200320083b01480240200fa741ff01714109470d0020084109470d00200341386a41086a290300210f4118101e2208450d04200841106a41002900dc8647370000200841086a41002900d48647370000200841002900cc864737000020084118413010222208450d0520082005370018200341d8006a41186a22094200370300200341d8006a41106a22064200370300200341d8006a41086a220b42003703002003420037035820084120200341d8006a1001200341186a41186a2009290300370300200341186a41106a2006290300370300200341186a41086a200b290300370300200320032903583703182008102002400240200341186a412041e4fdc600410041001002417f470d0041b9d3c0002108411921090c010b0240200f1089010d004180ddc0002108411a21090c010b200341d8006a200f108a012003290360210f0240200341ec006a280200450d00200328026810200b200328027421060240200341fc006a2802002208450d00200841186c21092006210803402008106b200841186a2108200941686a22090d000b0b0240200341f8006a280200450d00200610200b200f2005510d0141d5dec0002108412a21090b200341386a106b02402004450d00200d10200b2007450d2b200a10200c2b0b200341386a106b02402004450d00200d10200b02402007450d00200a10200b200341386a2001108f0141002108024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022107411221080c110b410121080c100b410221080c0f0b410321080c0e0b410421080c0d0b410521080c0c0b410621080c0b0b410721080c0a0b20022f01022107410821080c090b200241086a2903002105410921080c080b20022f01022107410a21080c070b20022f01022107410b21080c060b20022f01022107410c21080c050b20022f01022107410d21080c040b20022f01022107410e21080c030b20022f01022107410f21080c020b20022f01022107411021080c010b200241046a2f0100210620022f01022107411121080b20022802182209417f4c0d00200228021021040240024020090d004101210a0c010b2009101e220a450d060b200a2004200910cd05210d20022802242204417f4c0d00200228021c210a0240024020040d004101210b0c010b2004101e220b450d070b200b200a200410cd05210a200341d8006a41086a220b200341386a41086a290300370300200341f0006a2005370300200341ec006a20063b0100200341ea006a20073b0100200320032903382205370358200320083b0168024002402005a741ff01714108470d00200b2802002106024020084108470d0041e4dfc0004100200341e4006a280200200741ffff03714b1b21082006450d02200328025c10200c020b410021082006450d01200328025c10200c010b200341d8006a106b410021080b02402009450d00200d10200b02402004450d00200a10200b4118210920080d2a200341086a2001108f0141002108024002400240024002400240024002400240024002400240024002400240024002400240024020022f01000e13120102030405060708090a0b0c0d0e0f101100120b200241086a290300210520022f01022109411221080c110b410121080c100b410221080c0f0b410321080c0e0b410421080c0d0b410521080c0c0b410621080c0b0b410721080c0a0b20022f01022109410821080c090b200241086a2903002105410921080c080b20022f01022109410a21080c070b20022f01022109410b21080c060b20022f01022109410c21080c050b20022f01022109410d21080c040b20022f01022109410e21080c030b20022f01022109410f21080c020b20022f01022109411021080c010b200241046a2f0100210620022f01022109411121080b20022802182204417f4c0d00200228021021070240024020040d004101210a0c010b2004101e220a450d080b200a2007200410cd05210d20022802242207417f4c0d00200228021c210b4101210a02402007450d002007101e220a450d090b200a200b200710cd05210b200341386a41086a200341086a41086a290300370300200341d0006a2005370300200341cc006a20063b0100200341ca006a20093b010020032003290308220f370338200320083b0148200fa741ff017141766a220a41084b0d28024002400240024002400240024002400240200a0e09000102030405060708000b2008410a470d30200341c4006a280200200941ffff03714d210a41002110200341c0006a2802000d230c2f0b2008410b470d2f200341c4006a280200200941ffff03714d210a41002111200341c0006a2802000d210c2d0b2008410c470d2e200341386a410c6a280200200941ffff03714d210a41002112200341c0006a2802000d1f0c2a0b2008410d470d2d200341c4006a280200200941ffff03714d210a41002113200341c0006a2802000d1d0c270b2008410e470d2c200341c4006a280200200941ffff03714d210a41002114200341c0006a2802000d1b0c240b2008410f470d2b200341c4006a280200200941ffff03714d210a4100210e200341c0006a2802000d190c210b20084110470d2a200341c4006a280200200941ffff03714d210a4100210c200341c0006a2802000d170c1e0b20084111470d29200341c0006a28020021124100210a200328023c211402400240200341386a410c6a2802002213200941ffff03714b0d002013410c6c210a200641ffff0371210e2014210902400340200a450d0120092802082208417f4c0d05200928020021060240024020080d004101210c0c010b2008101e220c450d0f0b200c2006200810cd05210602402008450d00200610200b2009410c6a2109200a41746a210a2008200e4d0d000b02402013450d002013410c6c21092014210803400240200841046a280200450d00200828020010200b2008410c6a2108200941746a22090d000b0b41e4dfc0002108411821092012450d18201410200c180b4101210a2013450d010b2013410c6c21092014210803400240200841046a280200450d00200828020010200b2008410c6a2108200941746a22090d000b0b41002109024020120d00410121060c140b20141020410121060c130b20084112470d28200341c4006a280200210e200341386a41086a2802002115200328023c21164118101e2208450d0a200841106a41002900dc8647370000200841086a41002900d48647370000200841002900cc864737000020084118413010222208450d0b20082005370018200341d8006a41186a22064200370300200341d8006a41106a220a4200370300200341d8006a41086a220c42003703002003420037035820084120200341d8006a1001200341186a41186a2006290300370300200341186a41106a200a290300370300200341186a41086a200c29030037030020032003290358370318200810200240200341186a412041e4fdc600410041001002417f470d0041b9d3c0002108411921090c140b410021064100210a200e200941ffff03714d0d0c0c0d0b102c000b20044101102d000b20074101102d000b41184101102d000b41304101102d000b20094101102d000b20044101102d000b20044101102d000b20074101102d000b20084101102d000b41184101102d000b41304101102d000b2016200e4103746a21102016210c03400240200c2010470d004101210a0c020b0240200c2903001089010d004180ddc0002108411a21090c080b4119101e2208450d02200841186a41002d00fc86473a0000200841106a41002900f48647370000200841086a41002900ec8647370000200841002900e48647370000200c290300210f20084119413210222208450d032008200f370019200341d8006a41186a22094200370300200341d8006a41106a220a4200370300200341d8006a41086a220e42003703002003420037035820084121200341d8006a1001200341186a41186a2009290300370300200341186a41106a200a290300370300200341186a41086a200e290300370300200320032903583703182008102020034100360258200341186a4120200341d8006a100321090240024020032802582208417f470d004100210a0c010b20032008360284012003200936028001200341d8006a20034180016a108d012003280268220a450d05200328027c21132003280278211120032802742114200328026c2112200329036021172008450d00200910200b20134100200a1b21080240200a450d002012450d00200a10200b20144108200a1b210e02402008450d00200841186c2109200e210803402008106b200841186a2108200941686a22090d000b0b20174200200a1b210f0240200a450d002011450d00200e10200b200c41086a210c200f2005510d000b41d5dec0002108412a21090c060b2015450d03201610200c030b41194101102d000b41324101102d000b41ceb8c400413320034188016a41fcbfc4004184b9c400102e000b410121090b4101210c0c0a0b2015450d00201610200b024020032d003841766a4109490d00200341386a106b0b02402004450d00200d10200b2007450d15200b10200c150b200328023c10200c060b200328023c10200c070b200328023c10200c080b200328023c10200c090b200328023c10200c0a0b200328023c10200c0b0b200328023c10200c0b0b41012106410121090b4101210e0c010b41012106410121094101210c0b410121140c010b41012106410121094101210c4101210e0b410121130c010b41012106410121094101210c4101210e410121140b410121120c010b41012106410121094101210c4101210e41012114410121130b41012111410121100c030b41012106410121094101210c4101210e410121144101211341012112410121100c020b41012106410121094101210c4101210e410121144101211341012112410121110c010b41012106410121094101210c4101210e41012114410121134101211241012111410121104101210a0b0240024002400240024002400240024002400240024020032d003841766a220841084b0d0020080e09010203040506070809010b200341386a106b0c090b2010450d08200341c0006a280200450d08200328023c10200c080b2011450d07200341c0006a280200450d07200328023c10200c070b2012450d06200341c0006a280200450d06200328023c10200c060b2013450d05200341c0006a280200450d05200328023c10200c050b2014450d04200341c0006a280200450d04200328023c10200c040b200e450d03200341c0006a280200450d03200328023c10200c030b200c450d02200341c0006a280200450d02200328023c10200c020b2009450d010240200341386a410c6a2802002209450d00200328023c21082009410c6c210903400240200841046a280200450d00200828020010200b2008410c6a2108200941746a22090d000b0b200341c0006a280200450d01200328023c10200c010b2006450d00200341c0006a280200450d00200328023c10200b02402004450d00200d10200b02402007450d00200b10200b0240200a0d0041ffdec0002108411a21090c010b0240200241146a280200450d00200228021010200b410021080240200241206a280200450d00200228021c10200b0c010b0240200241146a280200450d00200228021010200b200241206a280200450d00200228021c10200b2001106b200020093602042000200836020020034190016a24000bd32107027f017e057f027e047f017e037f230041306b22022400200241086a2001105e0240024020022802082203450d00200229020c2104024020012802042205450d00200128020022062d0000210720012005417f6a22083602042001200641016a360200200741014b0d00410021090240024020070e020100010b410121090b200241026a41026a200241056a41026a2d00003a0000200220022f00053b01020240024002402008450d0020062d0001210720012005417e6a3602042001200641026a360200200741014b0d00410021080240024020070e020100010b410121080b200241086a2001105e200228020822050d01200041033602282004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0520032802002101200310202001450d0520012802002105200110202005450d05024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c050b200041033602282004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0420032802002101200310202001450d0420012802002105200110202005450d0420052802002203450d010340200510202003210520032802002201210320010d000c020b0b200229020c210a200241086a2001105e024020022802082206450d00200229020c210b200241086a200110920102402002280208220c4103460d00200241146a280200210d200241106a280200210e200228020c210f200241086a2001105e024020022802082207450d00200229020c21100240200128020422114104490d0020012802002212280000211320012011417c6a3602042001201241046a360200200241086a41026a200241026a41026a2d000022013a0000200220022f010222113b0108200020093a000c2000200437020420002003360200200020113b000d2000410f6a20013a0000200041c8006a20083a0000200041c4006a20133602002000413c6a2010370200200041386a2007360200200041346a200d360200200041306a200e3602002000200f36022c2000200c3602282000200b3702202000200636021c2000200a37021420002005360210200020022f00203b0049200041cb006a200241206a41026a2d00003a00000c070b200041033602282010422088a7210102402010a72200450d00200021080340200728026021072008417f6a22080d000b03402000417f6a22000d000b0b02402001450d0041002100410021084100210903402002200936022c200220083602282002200736022420022000360220200241086a200241206a1061200228021021002002280214210720022802182108200228021c21092001417f6a22010d000b0b0240200741908cc500460d0020072802002101200710202001450d0020012802002107200110202007450d00024020072802002201450d000340200710202001210720012802002200210120000d000b0b200710200b0240200c4102490d00200f200e200d10720b200b422088a721010240200ba72207450d00200721000340200628026021062000417f6a22000d000b03402007417f6a22070d000b0b02402001450d0041002107410021004100210803402002200836022c200220003602282002200636022420022007360220200241086a200241206a1061200228021021072002280214210620022802182100200228021c21082001417f6a22010d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002207210120070d000b0b200610200b200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200036022c200220073602282002200536022420022006360220200241086a200241206a1061200228021021062002280214210520022802182107200228021c21002001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200736022c200220063602282002200336022420022001360220200241086a200241206a1061200228021021012002280214210320022802182106200228021c21072005417f6a22050d000b0b200341908cc500460d0620032802002101200310202001450d0620012802002105200110202005450d06024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c060b200041033602280240200c4102490d00200f200e200d10720b200b422088a721010240200ba72207450d00200721000340200628026021062000417f6a22000d000b03402007417f6a22070d000b0b02402001450d0041002107410021004100210803402002200836022c200220003602282002200636022420022007360220200241086a200241206a1061200228021021072002280214210620022802182100200228021c21082001417f6a22010d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002207210120070d000b0b200610200b200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200036022c200220073602282002200536022420022006360220200241086a200241206a1061200228021021062002280214210520022802182107200228021c21002001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200736022c200220063602282002200336022420022001360220200241086a200241206a1061200228021021012002280214210320022802182106200228021c21072005417f6a22050d000b0b200341908cc500460d0520032802002101200310202001450d0520012802002105200110202005450d05024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c050b20004103360228200b422088a721010240200ba72207450d00200721000340200628026021062000417f6a22000d000b03402007417f6a22070d000b0b02402001450d0041002107410021004100210803402002200736022c200220003602282002200636022420022008360220200241086a200241206a1061200228021021082002280214210620022802182100200228021c21072001417f6a22010d000b0b0240200641908cc500460d0020062802002101200610202001450d0020012802002106200110202006450d00024020062802002201450d000340200610202001210620012802002207210120070d000b0b200610200b200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200036022c200220073602282002200536022420022006360220200241086a200241206a1061200228021021062002280214210520022802182107200228021c21002001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200736022c200220063602282002200336022420022001360220200241086a200241206a1061200228021021012002280214210320022802182106200228021c21072005417f6a22050d000b0b200341908cc500460d0420032802002101200310202001450d0420012802002105200110202005450d04024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c040b20004103360228200a422088a721010240200aa72206450d00200621070340200528026021052007417f6a22070d000b03402006417f6a22060d000b0b02402001450d0041002106410021074100210003402002200636022c200220073602282002200536022420022000360220200241086a200241206a1061200228021021002002280214210520022802182107200228021c21062001417f6a22010d000b0b0240200541908cc500460d0020052802002106200510202006450d0020062802002101200610202001450d00024020012802002205450d000340200110202005210120052802002206210520060d000b0b200110200b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0320032802002101200310202001450d0320012802002105200110202005450d03024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200c030b200510200c020b2004422088a7210502402004a72201450d00200121060340200328026021032006417f6a22060d000b03402001417f6a22010d000b0b02402005450d0041002101410021064100210703402002200136022c200220063602282002200336022420022007360220200241086a200241206a1061200228021021072002280214210320022802182106200228021c21012005417f6a22050d000b0b200341908cc500460d0020032802002101200310202001450d0020012802002105200110202005450d00024020052802002203450d000340200510202003210520032802002201210320010d000b0b200510200b200041033602280b200241306a24000bf517050a7f017e047f017e0b7f230041a0016b2202240002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a3602042001200441016a360200200541024b0d0420050e03010203010b200041033602000c040b200041003602000c030b200041013602000c020b200241086a2001105f024002400240024020022802080d00200228020c210620024200370214200241908cc50036021002402006450d00200241e8006a41066a220741286a2108200741206a210920024196016a210a4100210b0340024002400240200128020422054108490d0020012802002203290000210c2001200541786a22043602042001200341086a220336020020044102490d0020032f0000210d2001200541766a3602042001200341026a3602000240024002402002280210220541908cc500460d002002280214210e0c010b41b801101e2205450d014100210e200541003b011020054200370308200541003b01062005410036020020052002280120360112200541003b01202005420037031820052002280162360122200541003b0130200542003703282005200228015c360132200541166a200241206a41046a2f01003b0100200541266a200241e2006a41046a2f01003b0100200541366a200241dc006a41046a2f01003b0100200541003b01402005420037033820054200370348200541003b015020054200370358200541003b016020052002280156360142200541c6006a200241d6006a41046a2f01003b010020052002280150360152200541d6006a200241d0006a41046a2f01003b01002005200228014a360162200541e6006a200241ca006a41046a2f01003b0100200541003b017020054200370368200541003b01800120054200370378200541003b019001200542003703880120052002280144360172200541f6006a200241c4006a41046a2f01003b01002005200228013e3601820120054186016a2002413e6a41046a2f01003b0100200520022801383601920120054196016a200241386a41046a2f01003b0100200541003b01a0012005420037039801200541a6016a200241326a41046a2f01003b0100200520022801323601a201200541003b01b001200542003703a801200541b6016a200241e8006a41046a2f01003b0100200520022801683601b20120024100360214200220053602100b200b41016a210b03400240024020052f0106220f0d00410021040c010b200f4104742110200541086a2103417f21040340024020100d00200f21040c020b0240417f20032903002211200c522011200c561b22120d00417f200341086a2f010041ffff03712212200d41ffff0371221347201220134b1b21120b200341106a2103201041706a2110200441016a2104201241016a0e03010600010b0b0240200e450d00200e417f6a210e200520044102746a41b8016a28020021050c010b0b2002200228021841016a36021802400240024020052f01062203410b490d0002400240200541908cc500460d0041b801101e22030d0141b8014108102d000b41c8a6c000412d41a888c6001028000b200341003b011020034200370308200341003b01062003410036020020032002280120360112200341003b01202003420037031820032002280162360122200341003b0130200342003703282003200228015c360132200341166a200241206a41046a22132f01003b0100200341266a200241e2006a41046a22142f01003b0100200341366a200241dc006a41046a22152f01003b0100200341003b01402003420037033820034200370348200341003b015020034200370358200341003b016020032002280156360142200341c6006a200241d6006a41046a22162f01003b010020032002280150360152200341d6006a200241d0006a41046a22172f01003b01002003200228014a360162200341e6006a200241ca006a41046a22182f01003b0100200341003b017020034200370368200341003b01800120034200370378200341003b019001200342003703880120032002280144360172200341f6006a200241c4006a41046a22192f01003b01002003200228013e3601820120034186016a2002413e6a41046a221a2f01003b0100200320022801383601920120034196016a200241386a41046a221b2f01003b0100200341003b01a0012003420037039801200341a6016a200241326a41046a221c2f01003b0100200320022801323601a201200341003b01b001200342003703a801200341b6016a200241e8006a41046a2f01003b0100200320022801683601b20120052f0170211020052903682111200341086a200541f8006a20052f010641796a220e41047410cd052112200541063b01062003200e3b010620044107490d01200441047420126a41a07f6a2012200441796a220f4104746a2204200e41ffff0371200f6b41047410ce051a2004200d3b01082004200c370300200320032f010641016a3b01060c020b200520044104746a221041186a201041086a220e200320046b41047410ce051a201041106a200d3b0100200e200c370300200520052f010641016a3b01060c050b200541086a20044104746a220e41106a200e20052f010620046b41047410ce051a200e200d3b0108200e200c370300200520052f010641016a3b01060b0240200528020022040d004100210e200241106a21040c030b200220052f010436022c200220043602242002200241106a36022820024101360220200241e8006a200241206a2011201020034100105c20022802684101470d03034020022802742104200228027c210e2002280278210320022f01880121102002290380012111200228027022052802002212450d03200228026c210f200220052f010436022c20022004360228200220123602242002200f41016a360220200241e8006a200241206a201120102003200e105c20022802684101460d000c040b0b41b8014108102d000b20022802102002290214220ca7200c422088a710720c040b2008420037010020094200370100200741186a4200370100200741106a4200370100200741086a42003701002007420037010041e801101e2205450d04200541003b011020054200370308200541003b01062005410036020020052002280120360112200541003b01202005420037031820052002280162360122200541003b0130200542003703282005200228015c360132200541166a20132f01003b0100200541266a20142f01003b0100200541366a20152f01003b0100200541003b01402005420037033820054200370348200541003b015020054200370358200541003b016020052002280156360142200541c6006a20162f01003b010020052002280150360152200541d6006a20172f01003b01002005200228014a360162200541e6006a20182f01003b0100200541003b017020054200370368200541003b01800120054200370378200541003b019001200542003703880120052002280144360172200541f6006a20192f01003b01002005200228013e3601820120054186016a201a2f01003b0100200520022801383601920120054196016a201b2f01003b0100200541003b01a0012005420037039801200541a6016a201c2f01003b0100200520022801323601a201200541003b01b001200542003703a801200541e0016a200a290100370100200541da016a200241e8006a41286a290100370100200541d2016a200241e8006a41206a290100370100200541ca016a200241e8006a41186a290100370100200541c2016a200241e8006a41106a290100370100200541ba016a200241e8006a41086a290100370100200520022901683701b2012005200428020022123602b8012004200536020020042004280204220f41016a360204201241003b010420122005360200200f200e470d0520052f01062204410a4b0d06200520044104746a220e41106a20103b0100200e41086a20113703002005200441016a22044102746a41b8016a2003360200200520043b0106200320043b0104200320053602000b200b2006470d000b0b20022802102205450d002002290214210c2000200536020420004102360200200041086a200c3702000c050b200041033602000c040b41e8014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200041033602000b200241a0016a24000b8e0202057f047e0240024020012802042202450d00200128020022032d0000210420012002417f6a22053602042001200341016a2206360200200441014b0d00420021070240024020040e020100010b20054108490d01200329000121082001200241776a22053602042001200341096a2206360200420121070b2005450d0120062d0000210220012005417f6a22043602042001200641016a360200200241014b0d01420021090240024020020e020100010b20044108490d022006290001210a2001200541776a3602042001200641096a360200420121090b2000200837030820002007370300200041186a200a370300200041106a20093703000f0b200042023703000f0b200042023703000bae0802037f017e024002400240024002400240024020002903004201510d000240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b0240024002400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d05200241017422042003200420034b1b22044100480d050240024020020d002004101e21030c010b200128020020022004102221030b2003450d0120012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200029030821050240200141046a2802002203200428020022026b4108490d00200128020021030c020b200241086a22042002490d04200341017422022004200220044b1b22024100480d040240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c020b20024101102d000b20044101102d000b200141086a200241086a360200200320026a20053700000c010b200141086a200241016a360200200320026a41003a00000b024020002903104201510d000240200141046a280200200141086a2802002200460d00200128020021020c050b200041016a22022000490d01200041017422032002200320024b1b22034100480d010240024020000d002003101e21020c010b200128020020002003102221020b02402002450d0020012002360200200141046a2003360200200141086a28020021000c050b20034101102d000b02400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d01200241017422042003200420034b1b22044100480d010240024020020d002004101e21030c010b200128020020022004102221030b2003450d0220012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200029031821050240200141046a2802002202200428020022006b4108490d00200128020021020c030b200041086a22032000490d00200241017422002003200020034b1b22004100480d000240024020020d002000101e21020c010b200128020020022000102221020b02402002450d0020012002360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20044101102d000b200141086a200041086a360200200220006a20053700000f0b200141086a200041016a360200200220006a41003a00000b13002000410d36020420004184aec0003602000b3400200041abe5c10036020420004100360200200041146a4102360200200041106a41b4c0c000360200200041086a42193702000b971101067f23004180016b22022400200241c4006a4200370200200241286a42003703002002411c6a4200370200200241003a0050200241013a00142002420037020c200241908cc5003602082002410036024c200241908cc50036024020024100360230200241908cc500360224200241908cc5003602182002410036026020024201370358200241086a200241d8006a106220022d00142103024002400240200228025c20022802602204460d00200228025821050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200228025820042006102221050b02402005450d002002200636025c200220053602580c010b20064101102d000b2002200441016a360260200520046a20033a000020022d0050210302400240024002400240024002400240200228025c20022802602204470d00200441016a22062004490d08200441017422072006200720064b1b22064100480d080240024020040d002006101e21050c010b200520042006102221050b2005450d012002200636025c200220053602580b2002200441016a360260200520046a20033a0000200241186a200241d8006a1062200241246a200241d8006a10622002280230220541024b0d0620050e03010203010b20064101102d000b0240200228025c20022802602205460d00200228025821040c040b200541016a22042005490d05200541017422032004200320044b1b22034100480d050240024020050d002003101e21040c010b200228025820052003102221040b02402004450d002002200336025c200220043602580c040b20034101102d000b0240200228025c20022802602205460d00200228025821040c020b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228025820052003102221040b02402004450d002002200336025c200220043602580c020b20034101102d000b02400240200228025c20022802602205460d00200228025821040c010b200541016a22042005490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21040c010b200228025820052003102221040b02402004450d002002200336025c200220043602580c010b20034101102d000b2002200541016a360260200420056a41023a0000200241346a200241d8006a10640c020b2002200541016a360260200420056a41013a00000c010b2002200541016a360260200420056a41003a00000b200241c0006a200241d8006a1062200228024c210602400240200228025c2203200228026022056b4104490d00200541046a2104200228025821030c010b200541046a22042005490d01200341017422072004200720044b1b22074100480d010240024020030d002007101e21030c010b200228025820032007102221030b02402003450d002002200736025c200220033602580c010b20074101102d000b20022004360260200320056a2006360000200041086a20022802603602002000200229035837020020022802102104200228020821050240200228020c2200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200636027c200220033602782002200536027420022000360270200241d8006a200241f0006a1061200228026021002002280264210520022802682103200228026c21062004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b20022802202104200228021821050240200228021c2200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200636027c200220033602782002200536027420022000360270200241d8006a200241f0006a1061200228026021002002280264210520022802682103200228026c21062004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b200228022c210420022802242105024020022802282200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200036027c200220033602782002200536027420022006360270200241d8006a200241f0006a1061200228026021062002280264210520022802682103200228026c21002004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b024020022802304102490d002002280234200241386a2802002002413c6a28020010720b2002280248210420022802402105024020022802442200450d00200021030340200528026021052003417f6a22030d000b03402000417f6a22000d000b0b02402004450d0041002100410021034100210603402002200036027c200220033602782002200536027420022006360270200241d8006a200241f0006a1061200228026021062002280264210520022802682103200228026c21002004417f6a22040d000b0b0240200541908cc500460d0020052802002100200510202000450d0020002802002104200010202004450d00024020042802002205450d000340200410202005210420052802002200210520000d000b0b200410200b20024180016a24000f0b1027000bac7f03047f017e067f230041106b22022400024020002d0000417f6a2203410c4b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e0d000102030405060708090a0b0c000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d44200341017422052004200520044b1b22054100480d440240024020030d002005101e21040c010b200128020020032005102221040b2004450d0d20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c470b200341086a22052003490d43200441017422032005200320054b1b22034100480d430240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c470b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d43200341017422052004200520044b1b22054100480d430240024020030d002005101e21040c010b200128020020032005102221040b2004450d0d20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000024020002903184201510d000240200141046a28020020052802002203460d00200128020021040c420b200341016a22042003490d43200341017422052004200520044b1b22054100480d430240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c420b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d43200341017422052004200520044b1b22054100480d430240024020030d002005101e21040c010b200128020020032005102221040b2004450d0e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029032021060240200141046a2802002204200528020022036b4108490d00200128020021040c400b200341086a22052003490d42200441017422032005200320054b1b22034100480d420240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c400b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d42200341017422052004200520044b1b22054100480d420240024020030d002005101e21040c010b200128020020032005102221040b2004450d0e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000024020002903084201510d000240200141046a28020020052802002203460d00200128020021040c3e0b200341016a22042003490d42200341017422052004200520044b1b22054100480d420240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3e0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d42200341017422052004200520044b1b22054100480d420240024020030d002005101e21040c010b200128020020032005102221040b2004450d0f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c3c0b200341086a22052003490d41200441017422032005200320054b1b22034100480d410240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c3c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d41200341017422052004200520044b1b22054100480d410240024020030d002005101e21040c010b200128020020032005102221040b2004450d0f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c3a0b200341016a22042003490d41200341017422052004200520044b1b22054100480d410240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3a0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d41200341017422052004200520044b1b22054100480d410240024020030d002005101e21040c010b200128020020032005102221040b2004450d1020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c380b200341086a22052003490d40200441017422032005200320054b1b22034100480d400240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c380b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d40200341017422052004200520044b1b22054100480d400240024020030d002005101e21040c010b200128020020032005102221040b2004450d1020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c360b200341016a22042003490d40200341017422052004200520044b1b22054100480d400240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c360b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d40200341017422052004200520044b1b22054100480d400240024020030d002005101e21040c010b200128020020032005102221040b2004450d1120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c340b200341086a22052003490d3f200441017422032005200320054b1b22034100480d3f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c340b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3f200341017422052004200520044b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a0000024020002903184201510d000240200141046a28020020052802002203460d00200128020021040c320b200341016a22042003490d3f200341017422052004200520044b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c320b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3f200341017422052004200520044b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029032021060240200141046a2802002204200528020022036b4108490d00200128020021040c300b200341086a22052003490d3e200441017422032005200320054b1b22034100480d3e0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c300b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3e200341017422052004200520044b1b22054100480d3e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41063a00002000280204210820022000410c6a280200220336020c2002410c6a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d3e200541017422042007200420074b1b22044100480d3e0240024020050d002004101e21050c010b200128020020052004102221050b2005450d1320012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310cd051a200028021021082002200041186a280200220336020c2002410c6a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d3e200541017422042007200420074b1b22044100480d3e0240024020050d002004101e21050c010b200128020020052004102221050b2005450d1420012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310cd051a2000411c6a20011062200041286a2d0000210502400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d3e200341017422072004200720044b1b22074100480d3e0240024020030d002007101e21040c010b200128020020032007102221040b2004450d1520012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a20053a0000200041e4006a2d000021050240200141046a28020020072802002203460d00200128020021040c2e0b200341016a22042003490d3d200341017422072004200720044b1b22074100480d3d0240024020030d002007101e21040c010b200128020020032007102221040b02402004450d0020012004360200200141046a2007360200200141086a28020021030c2e0b20074101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3d200341017422052004200520044b1b22054100480d3d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1520012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41073a00002000280204210820022000410c6a280200220336020c2002410c6a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d3d200541017422042007200420074b1b22044100480d3d0240024020050d002004101e21050c010b200128020020052004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021040b200141086a2207200420036a360200200520046a2008200310cd051a200028021021052002200041186a280200220336020c2002410c6a200110630240200141046a2802002204200728020022006b2003490d00200128020021040c2c0b200020036a22072000490d3c200441017422002007200020074b1b22004100480d3c0240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c2c0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3c200341017422052004200520044b1b22054100480d3c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a0000024020002903204201510d000240200141046a28020020052802002203460d00200128020021040c2a0b200341016a22042003490d3c200341017422052004200520044b1b22054100480d3c0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c2a0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3c200341017422052004200520044b1b22054100480d3c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029032821060240200141046a2802002204200528020022036b4108490d00200128020021040c280b200341086a22052003490d3b200441017422032005200320054b1b22034100480d3b0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c280b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3b200341017422052004200520044b1b22054100480d3b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000024020002903084201510d000240200141046a28020020052802002203460d00200128020021040c260b200341016a22042003490d3b200341017422052004200520044b1b22054100480d3b0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c260b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3b200341017422052004200520044b1b22054100480d3b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c240b200341086a22052003490d3a200441017422032005200320054b1b22034100480d3a0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c240b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d3a200341017422052004200520044b1b22054100480d3a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c220b200341016a22042003490d3a200341017422052004200520044b1b22054100480d3a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c220b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d3a200341017422052004200520044b1b22054100480d3a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1920012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c200b200341086a22052003490d39200441017422032005200320054b1b22034100480d390240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c200b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b2004450d1920012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a0000024020002903104201510d000240200141046a28020020052802002203460d00200128020021040c1e0b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1e0b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b2004450d1a20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031821060240200141046a2802002204200528020022036b4108490d00200128020021040c1c0b200341086a22052003490d38200441017422032005200320054b1b22034100480d380240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c1c0b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c1a0b200441016a22032004490d37200441017422052003200520034b1b22034100480d370240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c1a0b20034101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20044101102d000b20044101102d000b20074101102d000b20054101102d000b20044101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b200141086a2203200441016a360200200520046a410c3a00002000280204210920022000410c6a280200220036020c2002410c6a200110632000450d21200920004106746a210a200141046a2104034002400240024020092903004201510d000240200428020020032802002200460d00200128020021050c020b200041016a22052000490d21200041017422072005200720054b1b22074100480d210240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b0240024002400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d23200041017422072005200720054b1b22074100480d230240024020000d002007101e21050c010b200128020020002007102221050b2005450d012001200536020020042007360200200328020021000b2003200041016a360200200520006a41013a000020092903082106024020042802002205200328020022006b4108490d00200128020021050c020b200041086a22072000490d22200541017422002007200020074b1b22004100480d220240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c020b20004101102d000b20074101102d000b2003200041086a360200200520006a20063700000c010b2003200041016a360200200520006a41003a00000b20092d0038210702400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d1f200041017422082005200820054b1b22084100480d1f0240024020000d002008101e21050c010b200128020020002008102221050b02402005450d002001200536020020042008360200200328020021000c010b20084101102d000b2003200041016a360200200520006a20073a000002402009280210220041024b0d00024002400240024002400240024020000e03000102000b0240200428020020032802002200460d00200128020021050c040b200041016a22052000490d04200041017422072005200720054b1b22074100480d040240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c040b20074101102d000b0240200428020020032802002200460d00200128020021050c020b200041016a22052000490d03200041017422072005200720054b1b22074100480d030240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d03200041017422072005200720054b1b22074100480d030240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c010b20074101102d000b2003200041016a360200200520006a41023a000002400240024020092802184101460d000240200428020020032802002200460d00200128020021050c020b200041016a22052000490d05200041017422072005200720054b1b22074100480d050240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d05200041017422072005200720054b1b22074100480d050240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c010b20074101102d000b2003200041016a360200200520006a41013a0000200929032021060240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22072000490d05200541017422002007200020074b1b22004100480d050240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041086a360200200520006a20063700000c010b2003200041016a360200200520006a41003a0000200928021c21070240024020042802002205200328020022006b4104490d00200128020021050c010b200041046a22082000490d04200541017422002008200020084b1b22004100480d040240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041046a360200200520006a20073600000b20092f013421070240024020042802002205200328020022006b4102490d00200128020021050c010b200041026a22082000490d03200541017422002008200020084b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041026a360200200520006a20073b00002009280228210520022009280230220036020c2002410c6a200110632000450d04200041057421080340200541186a2f0100210b0240024020042802002207200328020022006b4102490d00200128020021070c010b200041026a220c2000490d0420074101742200200c2000200c4b1b22004100480d040240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020042000360200200328020021000c010b20004101102d000b2003200041026a360200200720006a200b3b000020052001109901200541206a2105200841606a22080d000c050b0b2003200041016a360200200520006a41013a000002400240024020092802184101460d000240200428020020032802002200460d00200128020021050c020b200041016a22052000490d04200041017422072005200720054b1b22074100480d040240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c020b20074101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d04200041017422072005200720054b1b22074100480d040240024020000d002007101e21050c010b200128020020002007102221050b02402005450d002001200536020020042007360200200328020021000c010b20074101102d000b2003200041016a360200200520006a41013a0000200929032021060240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22072000490d04200541017422002007200020074b1b22004100480d040240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041086a360200200520006a20063700000c010b2003200041016a360200200520006a41003a0000200928021c21070240024020042802002205200328020022006b4104490d00200128020021050c010b200041046a22082000490d03200541017422002008200020084b1b22004100480d030240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c010b20004101102d000b2003200041046a360200200520006a20073600000b2009280228210520022009280230220036020c2002410c6a200110632000450d03200041057421080340200541186a2f0100210b0240024020042802002207200328020022006b4102490d00200128020021070c010b200041026a220c2000490d0320074101742200200c2000200c4b1b22004100480d030240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020042000360200200328020021000c010b20004101102d000b2003200041026a360200200720006a200b3b000020052001109901200541206a2105200841606a22080d000c040b0b2003200041016a360200200520006a41003a000020092903182106024020042802002205200328020022006b4108490d00200128020021050c020b200041086a22072000490d00200541017422002007200020074b1b22004100480d000240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020042000360200200328020021000c020b20004101102d000b1027000b2003200041086a360200200520006a20063700000b200941c0006a2209200a470d000c220b0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b20002d000121050240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1d200341017422072004200720044b1b22074100480d1d0240024020030d002007101e21040c010b200128020020032007102221040b2004450d0120012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a20053a0000200029032021060240200141046a2802002204200728020022036b4108490d00200128020021040c020b200341086a22052003490d1c200441017422032005200320054b1b22034100480d1c0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20074101102d000b200141086a2205200341086a360200200420036a20063700002000280204210420022000410c6a280200220336020c2002410c6a200110632003450d1e200341186c2107200141046a210b0340200441106a2f0100210802400240200b2802002200200528020022036b4102490d00200128020021000c010b200341026a22092003490d1c200041017422032009200320094b1b22034100480d1c0240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200b2003360200200528020021030c010b20034101102d000b2005200341026a360200200020036a20083b000020042001109a01200441186a2104200741686a22070d000c1f0b0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b20002d0001210502400240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1b200341017422072004200720044b1b22074100480d1b0240024020030d002007101e21040c010b200128020020032007102221040b2004450d0120012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a20053a00002000290320210602400240200141046a2802002204200728020022036b4108490d00200128020021040c010b200341086a22052003490d1b200441017422032005200320054b1b22034100480d1b0240024020040d002003101e21040c010b200128020020042003102221040b2004450d0220012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200637000020002f010221070240200141046a2802002204200528020022036b4102490d00200128020021040c030b200341026a22052003490d1a200441017422032005200320054b1b22034100480d1a0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c030b20034101102d000b20074101102d000b20034101102d000b200141086a2205200341026a360200200420036a20073b00002000280204210420022000410c6a280200220336020c2002410c6a200110632003450d1b200341186c2107200141046a210b0340200441106a2f0100210802400240200b2802002200200528020022036b4102490d00200128020021000c010b200341026a22092003490d19200041017422032009200320094b1b22034100480d190240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200b2003360200200528020021030c010b20034101102d000b2005200341026a360200200020036a20083b000020042001109a01200441186a2104200741686a22070d000c1c0b0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290318210602400240200141046a2802002200200141086a28020022036b4108490d00200128020021000c010b200341086a22042003490d15200041017422032004200320044b1b22034100480d150240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200020036a20063700000c180b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290330210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d12200441017422032005200320054b1b22034100480d120240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2207200341086a360200200420036a20063700002000280204210420022000410c6a280200220336020c2002410c6a2001106302402003450d0020034101742108200141046a2109034020042f0100210b0240024020092802002205200728020022036b4102490d00200128020021050c010b200341026a220c2003490d1420054101742203200c2003200c4b1b22034100480d140240024020050d002003101e21050c010b200128020020052003102221050b02402005450d002001200536020020092003360200200728020021030c010b20034101102d000b200441026a21042007200341026a360200200520036a200b3b00002008417e6a22080d000b0b2000280210200041186a2802002001109b010c150b200141086a200020036a360200200420006a2005200310cd051a0c140b200141086a2207200341016a360200200420036a20053a00002000412c6a20011062200041386a200110620240200041c4006a280200220341024b0d000240024002400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d14200341017422052004200520044b1b22054100480d140240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d13200341017422052004200520044b1b22054100480d130240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d13200341017422052004200520044b1b22054100480d130240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200420036a41023a0000200041c8006a200110640c020b200141086a200341016a360200200420036a41013a00000c010b200141086a200341016a360200200420036a41003a00000b200041d4006a20011062200041e0006a280200210402400240200141046a2802002200200728020022036b4104490d00200128020021000c010b200341046a22052003490d10200041017422032005200320054b1b22034100480d100240024020000d002003101e21000c010b200128020020002003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341046a360200200020036a20043600000c130b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290328210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d0d200441017422032005200320054b1b22034100480d0d0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a20063700002000280204220341024b0d100240024002400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021000c040b200341016a22002003490d10200341017422042000200420004b1b22044100480d100240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c040b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021000c020b200341016a22002003490d0f200341017422042000200420004b1b22044100480d0f0240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c020b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d0f200341017422052004200520044b1b22054100480d0f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200420036a41023a0000200041086a200110640c120b200141086a200341016a360200200020036a41013a00000c110b200141086a200341016a360200200020036a41003a00000c100b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290320210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d0a200441017422032005200320054b1b22034100480d0a0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041046a200110620c0d0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290320210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041046a200110620c0a0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b200029031821060240024002400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b2004450d0120012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a200637000020002d000121040240200141046a28020020052802002203460d00200128020021000c020b200341016a22002003490d05200341017422052000200520004b1b22054100480d050240024020030d002005101e21000c010b200128020020032005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021030c020b20054101102d000b20034101102d000b200141086a200341016a360200200020036a20043a00000c070b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290328210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b2004450d0220012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041046a20011062200041106a2d000021040240200141046a28020020052802002203460d00200128020021000c030b200341016a22002003490d00200341017422052000200520004b1b22054100480d000240024020030d002005101e21000c010b200128020020032005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021030c030b20054101102d000b1027000b20034101102d000b200141086a200341016a360200200020036a20043a00000c010b200141086a200341086a360200200420036a2006370000200041046a200110620b200241106a24000bcd0b02087f017e230041106b2202240002402000280200220341024b0d000240024002400240024002400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021040c070b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c070b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020421000240200141046a2802002204200528020022036b4104490d00200128020021040c050b200341046a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c050b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c020b200441016a22032004490d02200441017422052003200520034b1b22034100480d020240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b20054101102d000b200141086a2203200441016a360200200520046a41023a00002000280204210420022000410c6a280200220036020c2002410c6a200110632000450d0320004104742105034002400240024002400240024020042802004101460d0002400240200141046a220628020020032802002200460d00200128020021070c010b200041016a22072000490d08200041017422082007200820074b1b22084100480d080240024020000d002008101e21070c010b200128020020002008102221070b2007450d022001200736020020062008360200200328020021000b2003200041016a360200200720006a41003a0000200441046a2802002108024020062802002207200328020022006b4104490d00200128020021070c050b200041046a22092000490d07200741017422002009200020094b1b22004100480d070240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020062000360200200328020021000c050b20004101102d000b02400240200141046a220628020020032802002200460d00200128020021070c010b200041016a22072000490d07200041017422082007200820074b1b22084100480d070240024020000d002008101e21070c010b200128020020002008102221070b2007450d022001200736020020062008360200200328020021000b2003200041016a360200200720006a41013a0000200441086a290300210a024020062802002207200328020022006b4108490d00200128020021070c030b200041086a22082000490d06200741017422002008200020084b1b22004100480d060240024020070d002000101e21070c010b200128020020072000102221070b02402007450d002001200736020020062000360200200328020021000c030b20004101102d000b20084101102d000b20084101102d000b2003200041086a360200200720006a200a3700000c010b2003200041046a360200200720006a20083600000b200441106a2104200541706a22050d000c040b0b1027000b200141086a200341046a360200200420036a20003600000c010b200141086a200341016a360200200420036a41003a0000200041086a2001109a010b200241106a24000bbf3703047f017e057f230041106b22022400024020002d0000220341124b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e13000102030405060708090a0b0c0d0e0f101112000b0240200141046a280200200141086a2802002200460d00200128020021030c2f0b200041016a22032000490d24200041017422042003200420034b1b22044100480d240240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c2f0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d24200341017422052004200520044b1b22054100480d240240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a000020002d000121040240200141046a28020020052802002200460d00200128020021030c2d0b200041016a22032000490d23200041017422052003200520034b1b22054100480d230240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c2d0b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d23200341017422052004200520044b1b22054100480d230240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000020002f010221040240200141046a2802002203200528020022006b4102490d00200128020021030c2b0b200041026a22052000490d22200341017422002005200020054b1b22004100480d220240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c2b0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d22200341017422052004200520044b1b22054100480d220240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200028020421040240200141046a2802002203200528020022006b4104490d00200128020021030c290b200041046a22052000490d21200341017422002005200020054b1b22004100480d210240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c290b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d21200341017422052004200520044b1b22054100480d210240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c270b200041086a22042000490d20200341017422002004200020044b1b22004100480d200240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c270b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d20200341017422052004200520044b1b22054100480d200240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a000020002f010221040240200141046a2802002203200528020022006b4102490d00200128020021030c250b200041026a22052000490d1f200341017422002005200020054b1b22004100480d1f0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c250b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1f200341017422052004200520044b1b22054100480d1f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a0000200028020421040240200141046a2802002203200528020022006b4104490d00200128020021030c230b200041046a22052000490d1e200341017422002005200020054b1b22004100480d1e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c230b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1e200341017422052004200520044b1b22054100480d1e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c210b200041086a22042000490d1d200341017422002004200020044b1b22004100480d1d0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c210b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1d200341017422052004200520044b1b22054100480d1d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a00002000280204210720022000410c6a280200220036020c2002410c6a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c1f0b200320006a22052003490d1c200441017422032005200320054b1b22034100480d1c0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c1f0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d1c200341017422052004200520044b1b22054100480d1c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c1d0b200041086a22042000490d1b200341017422002004200020044b1b22004100480d1b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c1d0b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1a0b200341016a22042003490d1a200341017422052004200520044b1b22054100480d1a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1a0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c180b200341016a22042003490d19200341017422052004200520044b1b22054100480d190240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c180b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c160b200341016a22042003490d18200341017422052004200520044b1b22054100480d180240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c160b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c140b200341016a22042003490d17200341017422052004200520044b1b22054100480d170240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c140b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c120b200341016a22042003490d16200341017422052004200520044b1b22054100480d160240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c120b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c100b200341016a22042003490d15200341017422052004200520044b1b22054100480d150240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c100b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0e0b200341016a22042003490d14200341017422052004200520044b1b22054100480d140240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0e0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0c0b200341016a22042003490d13200341017422052004200520044b1b22054100480d130240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0a0b200341016a22042003490d12200341017422052004200520044b1b22054100480d120240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0a0b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b200141086a2205200341016a360200200420036a41123a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d1320004103742107200141046a21080340200329030021060240024020082802002204200528020022006b4108490d00200128020021040c010b200041086a22092000490d0a200441017422002009200020094b1b22004100480d0a0240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020082000360200200528020021000c010b20004101102d000b200341086a21032005200041086a360200200420006a2006370000200741786a22070d000c140b0b200141086a2207200341016a360200200420036a41113a00002000280204210420022000410c6a280200220036020c2002410c6a200110632000450d1220042000410c6c6a210a200141046a21090340200428020021082002200441086a280200220036020c2002410c6a200110630240024020092802002205200728020022036b2000490d00200128020021050c010b200320006a220b2003490d0920054101742203200b2003200b4b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b02402005450d002001200536020020092003360200200728020021030c010b20034101102d000b2007200320006a360200200520036a2008200010cd051a2004410c6a2204200a470d000c130b0b200141086a2205200341016a360200200420036a41103a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d1120004103742107200141046a21080340200329030021060240024020082802002204200528020022006b4108490d00200128020021040c010b200041086a22092000490d08200441017422002009200020094b1b22004100480d080240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020082000360200200528020021000c010b20004101102d000b200341086a21032005200041086a360200200420006a2006370000200741786a22070d000c120b0b200141086a2205200341016a360200200420036a410f3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d102000410274210703402003280200210802400240200141046a22092802002204200528020022006b4104490d00200128020021040c010b200041046a220b2000490d0720044101742200200b2000200b4b1b22004100480d070240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341046a21032005200041046a360200200420006a20083600002007417c6a22070d000c110b0b200141086a2205200341016a360200200420036a410e3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0f20004101742107200141046a2109034020032f010021080240024020092802002204200528020022006b4102490d00200128020021040c010b200041026a220b2000490d0620044101742200200b2000200b4b1b22004100480d060240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341026a21032005200041026a360200200420006a20083b00002007417e6a22070d000c100b0b200141086a2205200341016a360200200420036a410d3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0e20004103742107200141046a21080340200329030021060240024020082802002204200528020022006b4108490d00200128020021040c010b200041086a22092000490d05200441017422002009200020094b1b22004100480d050240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020082000360200200528020021000c010b20004101102d000b200341086a21032005200041086a360200200420006a2006370000200741786a22070d000c0f0b0b200141086a2205200341016a360200200420036a410c3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0d2000410274210703402003280200210802400240200141046a22092802002204200528020022006b4104490d00200128020021040c010b200041046a220b2000490d0420044101742200200b2000200b4b1b22004100480d040240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341046a21032005200041046a360200200420006a20083600002007417c6a22070d000c0e0b0b200141086a2205200341016a360200200420036a410b3a00002000280204210320022000410c6a280200220036020c2002410c6a200110632000450d0c20004101742107200141046a2109034020032f010021080240024020092802002204200528020022006b4102490d00200128020021040c010b200041026a220b2000490d0320044101742200200b2000200b4b1b22004100480d030240024020040d002000101e21040c010b200128020020042000102221040b02402004450d002001200436020020092000360200200528020021000c010b20004101102d000b200341026a21032005200041026a360200200420006a20083b00002007417e6a22070d000c0d0b0b200141086a2205200341016a360200200420036a410a3a00002000280204210320022000410c6a280200220736020c2002410c6a200110632007450d0b200141046a2109034020032d0000210802400240200928020020052802002200460d00200128020021040c010b200041016a22042000490d022000410174220b2004200b20044b1b220b4100480d020240024020000d00200b101e21040c010b20012802002000200b102221040b02402004450d00200120043602002009200b360200200528020021000c010b200b4101102d000b200341016a21032005200041016a360200200420006a20083a00002007417f6a22070d000c0c0b0b1027000b200141086a200041086a360200200320006a20063700000c090b200141086a200320006a360200200420036a2007200010cd051a0c080b200141086a200041086a360200200320006a20063700000c070b200141086a200041046a360200200320006a20043600000c060b200141086a200041026a360200200320006a20043b00000c050b200141086a200041086a360200200320006a20063700000c040b200141086a200041046a360200200320006a20043600000c030b200141086a200041026a360200200320006a20043b00000c020b200141086a200041016a360200200320006a20043a00000c010b200141086a200041016a360200200320006a41003a00000b200241106a24000bcf2d03077f017e017f230041106b2203240020032001360204200341046a2002106302402001450d002000200141306c6a2104200241046a2105200241086a210103400240024002400240024020002f0100220641124b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020060e13000102030405060708090a0b0c0d0e0f101112000b0240200528020020012802002206460d00200228020021070c320b200641016a22072006490d33200641017422082007200820074b1b22084100480d330240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c320b20084101102d000b0240200528020020012802002206460d00200228020021070c300b200641016a22072006490d32200641017422082007200820074b1b22084100480d320240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c300b20084101102d000b0240200528020020012802002206460d00200228020021070c2e0b200641016a22072006490d31200641017422082007200820074b1b22084100480d310240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c2e0b20084101102d000b0240200528020020012802002206460d00200228020021070c2c0b200641016a22072006490d30200641017422082007200820074b1b22084100480d300240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c2c0b20084101102d000b0240200528020020012802002206460d00200228020021070c2a0b200641016a22072006490d2f200641017422082007200820074b1b22084100480d2f0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c2a0b20084101102d000b0240200528020020012802002206460d00200228020021070c280b200641016a22072006490d2e200641017422082007200820074b1b22084100480d2e0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c280b20084101102d000b0240200528020020012802002206460d00200228020021070c260b200641016a22072006490d2d200641017422082007200820074b1b22084100480d2d0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c260b20084101102d000b0240200528020020012802002206460d00200228020021070c240b200641016a22072006490d2c200641017422082007200820074b1b22084100480d2c0240024020060d002008101e21070c010b200228020020062008102221070b02402007450d002002200736020020052008360200200128020021060c240b20084101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d2c200641017422082007200820074b1b22084100480d2c0240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41083a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c220b200641026a22092006490d2b200741017422062009200620094b1b22064100480d2b0240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c220b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d2b200641017422082007200820074b1b22084100480d2b0240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41093a0000200041086a290300210a024020052802002207200128020022066b4108490d00200228020021070c200b200641086a22082006490d2a200741017422062008200620084b1b22064100480d2a0240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c200b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d2a200641017422082007200820074b1b22084100480d2a0240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410a3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c1e0b200641026a22092006490d29200741017422062009200620094b1b22064100480d290240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c1e0b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d29200641017422082007200820074b1b22084100480d290240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410b3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c1c0b200641026a22092006490d28200741017422062009200620094b1b22064100480d280240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c1c0b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d28200641017422082007200820074b1b22084100480d280240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410c3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c1a0b200641026a22092006490d27200741017422062009200620094b1b22064100480d270240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c1a0b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d27200641017422082007200820074b1b22084100480d270240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410d3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c180b200641026a22092006490d26200741017422062009200620094b1b22064100480d260240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c180b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d26200641017422082007200820074b1b22084100480d260240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410e3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c160b200641026a22092006490d25200741017422062009200620094b1b22064100480d250240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c160b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d25200641017422082007200820074b1b22084100480d250240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a410f3a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c140b200641026a22092006490d24200741017422062009200620094b1b22064100480d240240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c140b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d24200641017422082007200820074b1b22084100480d240240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41103a0000200041026a2f01002108024020052802002207200128020022066b4102490d00200228020021070c120b200641026a22092006490d23200741017422062009200620094b1b22064100480d230240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c120b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d23200641017422082007200820074b1b22084100480d230240024020060d002008101e21070c010b200228020020062008102221070b2007450d0b2002200736020020052008360200200128020021060b2001200641016a360200200720066a41113a0000200041026a2f010021080240024020052802002207200128020022066b4102490d00200228020021070c010b200641026a22092006490d23200741017422062009200620094b1b22064100480d230240024020070d002006101e21070c010b200228020020072006102221070b2007450d0c2002200736020020052006360200200128020021060b2001200641026a360200200720066a20083b0000200041046a2f01002108024020052802002207200128020022066b4102490d00200228020021070c100b200641026a22092006490d22200741017422062009200620094b1b22064100480d220240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c100b20064101102d000b02400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d22200641017422082007200820074b1b22084100480d220240024020060d002008101e21070c010b200228020020062008102221070b2007450d0c2002200736020020052008360200200128020021060b2001200641016a360200200720066a41123a0000200041026a2f010021080240024020052802002207200128020022066b4102490d00200228020021070c010b200641026a22092006490d22200741017422062009200620094b1b22064100480d220240024020070d002006101e21070c010b200228020020072006102221070b2007450d0d2002200736020020052006360200200128020021060b2001200641026a360200200720066a20083b0000200041086a290300210a024020052802002207200128020022066b4108490d00200228020021070c0e0b200641086a22082006490d21200741017422062008200620084b1b22064100480d210240024020070d002006101e21070c010b200228020020072006102221070b02402007450d002002200736020020052006360200200128020021060c0e0b20064101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20084101102d000b20064101102d000b20084101102d000b20064101102d000b2001200641086a360200200720066a200a3700000c120b2001200641026a360200200720066a20083b00000c110b2001200641026a360200200720066a20083b00000c100b2001200641026a360200200720066a20083b00000c0f0b2001200641026a360200200720066a20083b00000c0e0b2001200641026a360200200720066a20083b00000c0d0b2001200641026a360200200720066a20083b00000c0c0b2001200641026a360200200720066a20083b00000c0b0b2001200641026a360200200720066a20083b00000c0a0b2001200641086a360200200720066a200a3700000c090b2001200641026a360200200720066a20083b00000c080b2001200641016a360200200720066a41073a00000c070b2001200641016a360200200720066a41063a00000c060b2001200641016a360200200720066a41053a00000c050b2001200641016a360200200720066a41043a00000c040b2001200641016a360200200720066a41033a00000c030b2001200641016a360200200720066a41023a00000c020b2001200641016a360200200720066a41013a00000c010b2001200641016a360200200720066a41003a00000b200041286a2d0000210802400240200528020020012802002206460d00200228020021070c010b200641016a22072006490d01200641017422092007200920074b1b22094100480d010240024020060d002009101e21070c010b200228020020062009102221070b2007450d022002200736020020052009360200200128020021060b2001200641016a360200200720066a20083a0000200041106a28020021092003200041186a2802002206360208200341086a200210630240024020052802002208200128020022076b2006490d00200228020021080c010b200720066a220b2007490d0120084101742207200b2007200b4b1b22074100480d010240024020080d002007101e21080c010b200228020020082007102221080b2008450d032002200836020020052007360200200128020021070b2001200720066a360200200820076a2009200610cd051a2000411c6a28020021092003200041246a280200220636020c2003410c6a20021063024020052802002208200128020022076b2006490d00200228020021080c040b200720066a220b2007490d0020084101742207200b2007200b4b1b22074100480d000240024020080d002007101e21080c010b200228020020082007102221080b02402008450d002002200836020020052007360200200128020021070c040b20074101102d000b1027000b20094101102d000b20074101102d000b2001200720066a360200200820076a2009200610cd051a200041306a22002004470d000b0b200341106a24000be80406097f047e047f027e047f027e200128020821032001280204210420012802002105200241386a2106200241286a210703404100210802400240024020042f01062209450d00200441086a220a200941d0006c6a210b2006290300210c2007290300210d2002290330210e2002290320210f2002280248211020022802402111410021120340201221080240200a200b470d00200921080c020b024002402002200a412010cf052212450d00417f410120124100481b21130c010b417f200f200a290320221485200d200a41286a29030022158584420052200f201454200d201554200d2015511b1b22130d00417f200e200a41306a290300221485200c200a41386a29030022158584420052200e201454200c201554200c2015511b1b22130d00200a41c8006a28020022162010201020164b1b2117200a2802402112417f21182011211903400240201841016a22182017490d00417f201020164720102016491b21130c020b0240201941106a201241106a412010cf052213450d00417f410120134100481b21130c020b2019290300221a2012290300221b54201941086a2903002215201241086a29030022145420152014511b0d03201241306a2112201941306a211941012113201a201b85201520148584500d000b0b200841016a2112200a41d0006a210a0240201341016a0e03020001020b0b4100210a0c010b20050d014101210a410021050b200020053602042000200a360200200041106a20083602002000410c6a2003360200200041086a20043602000f0b2001200336020820012005417f6a22053602002001200420084102746a41f8066a28020022043602040c000b0be01202067f027e230041106b2202240020024100360208200242013703002002410e36020c2002410c6a200210630240024002400240024020022802042203200228020822046b410e490d00200228020021030c010b2004410e6a22052004490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21030c010b200228020020032004102221030b2003450d012002200436020420022003360200200228020821040b200320046a220341066a41002900d6c24137000020022004410e6a360208200341002900d0c2413700002002410e36020c2002410c6a20021063024020022802042205200228020822036b410e490d00200228020021040c020b2003410e6a22042003490d02200541017422032004200320044b1b22064100480d020240024020050d002006101e21040c010b200228020020052006102221040b02402004450d00200220063602042002200436020020022802082103200621050c020b20064101102d000b20044101102d000b200420036a220641066a41002900d6c24137000020022003410e6a2203360208200641002900d0c2413700000240024002400240200520036b41034b0d00200341046a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21040c010b200420052003102221040b2004450d012002200336020420022004360200200228020821030b2002200341046a360208200420036a41063600000240024020022802042203200228020822046b4104490d00200228020021030c010b200441046a22052004490d04200341017422042005200420054b1b22044100480d040240024020030d002004101e21030c010b200228020020032004102221030b2003450d022002200436020420022003360200200228020821040b2002200441046a360208200320046a4101360000024020022802042203200228020822046b4104490d00200228020021030c030b200441046a22052004490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21030c010b200228020020032004102221030b02402003450d002002200436020420022003360200200228020821040c030b20044101102d000b20034101102d000b20044101102d000b2002200441046a360208200320046a41003600002002410a36020c2002410c6a2002106341e0c2c1002104034020042d0000210602400240024002400240024002400240024002400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d012002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441016a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d022002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441026a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d032002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441036a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d042002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d052002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441056a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d062002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441066a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d072002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441076a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d0b200341017422072005200720054b1b22074100480d0b0240024020030d002007101e21050c010b200228020020032007102221050b2005450d082002200736020420022005360200200228020821030b2002200341016a360208200520036a20063a0000200441086a2802002106024020022802042205200228020822036b4104490d00200228020021050c090b200341046a22072003490d0a200541017422032007200320074b1b22034100480d0a0240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c090b20034101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2002200341046a360208200520036a20063600002004410c6a220441d8c3c100470d000b2002350208210820023502002109200241106a240020092008422086840f0b1027000bf01604037f017e057f017e230041b00b6b22022400024002402001450d00200220003602100c010b200241e4fdc6003602100b20022001360214200241c0086a200241106a109f0102400240024020022802c408450d00200241186a200241c0086a41fc0010cd051a20024198016a200241186a41fc0010cd051a20024198016a10a00102402002280298012201450d00200241c0086a2001417f6a10a101200241c0086a200241a8016a412010cf050d000240024020024190026a28020022030d004100210341042104410021010c010b024002402003ad420c7e2205422088a70d002005a722014100480d0020022802880221002001101e22040d0120014104102d000b1027000b200341d8026c210620034103742107200421010340200241c0086a200010a201200141086a200241c0086a41086a280200360200200120022903c0083702002001410c6a2101200041d8026a2100200641a87d6a22060d000b200741786a41037641016a21010b200220013602e005200220033602dc05200220043602d805200241c0086a200241d8056a10a3010240200241e8016a2201200241c0086a412010cf05450d0041c2e7c600410e1006200141201007200241c0086a412010070b02402001200241c0086a412010cf050d002002418c026a28020021082002280288022109200228029002210620024198026a20024198016a41f00010cd051a2009200641d8026c6a2100200228029802210a200921010240024002402006450d00200241d8056a41f0006a21042009210102400340200241f0046a200141e80010cd051a200141e8006a290300210520024188036a200141f0006a41e80110cd051a20054203510d01200241d8056a200241f0046a41e80010cd051a200220053703c006200420024188036a41e80110cd051a200241c0086a200241d8056a10a20120022802c8082106024020022802c408450d0020022802c00810200b200241c0086a200241d8056a41d80210cd051a200241003602980b200241b0086a200241c0086a2006200241980b6a10a40120022d00b0084101460d04024020022d00bc0822064102460d0020023100be08210520023100bd08210b20022802b808210720022802b408210341a1fec600410d100602402006450d00200b10080b200510082003450d002003200710060b200141d8026a22012000470d000c030b0b200141d8026a21010b20002001460d00034020014198016a10a5012000200141d8026a2201470d000b0b02402008450d00200910200b200210a6012002280204210120022802002100200241c0086a41086a22064200370300200242003703c00841b880c7004115200241c0086a1000200241d8056a41086a2006290300370300200220022903c0083703d80520022001410020001b3602c008200241d8056a4110200241c0086a41041005200a10a701200241c0086a10a801200220024198026a410c6a28020022073602a80b200228029c0221032002200241c0086a410c6a28020022013602ac0b20072001470d052007450d0420022802c4082104410021060340024002400240024002400240024002400240200320066a22012d00002209200420066a22002d0000470d000240024002400240024020090e050001020304000b20032004460d0c200141016a200041016a412010cf050d040c070b024020032004460d00200141016a280000200041016a280000470d040b200141106a2802002209200041106a280200470d03200141086a2802002208200041086a280200220a460d092008200a200910cf050d030c090b024020032004460d00200141016a280000200041016a280000470d030b200141106a2802002209200041106a280200470d02200141086a2802002208200041086a280200220a460d072008200a200910cf050d020c070b024020032004460d00200141016a280000200041016a280000470d020b200141106a2802002209200041106a280200470d01200141086a2802002208200041086a280200220a460d052008200a200910cf050d010c050b2001410c6a28020022092000410c6a280200470d00200141046a2802002208200041046a280200220a460d012008200a200910cf05450d010b41b6c1c50041141006200241d8056a200110a90120022802d805220920022802e0051007024020022802dc05450d00200910200b200241d8056a200010a90120022802d805220920022802e0051007024020022802dc05450d00200910200b20012d000020002d00002209470d0620090e050105040300010b2001410c6a28020022092000410c6a280200470d05200141046a2802002201200041046a2802002200460d0620012000200910cf05450d060c050b20032004460d050b200141016a200041016a412010cf050d030c040b024020032004460d00200141016a280000200041016a280000470d030b200141106a2802002209200041106a280200470d02200141086a2802002201200041086a2802002200460d0320012000200910cf050d020c030b024020032004460d00200141016a280000200041016a280000470d020b200141106a2802002209200041106a280200470d01200141086a2802002201200041086a2802002200460d0220012000200910cf050d010c020b024020032004460d00200141016a280000200041016a280000470d010b200141106a2802002209200041106a280200470d00200141086a2802002201200041086a2802002200460d0120012000200910cf05450d010b41f4afc100412741a888c6001028000b200641246a21062007417f6a22070d000c050b0b200241086a20022f00b10820022d00b3084110747210aa012002280208200228020c41a888c6001028000b41c5afc100412441a888c6001028000b41a9afc100411c41a888c6001028000b20024194036a4104360200200241ec056a4102360200200242023702dc05200241fcc3c0003602d8052002410436028c03200241f4c3c000360288032002410036029c01200241e4fdc60036029801200220024188036a3602e805200220024198016a36029003200241d8056a418cc4c0001033000b024020024198026a41306a2201200241c0086a41306a2200412010cf05450d0041c2e7c600410e10062001412010072000412010070b024020012000412010cf05450d00419bb0c100412841a888c6001028000b024020022802cc082200450d0020022802c4082101200041246c210003400240024020012d0000220641034b0d0002400240024020060e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b0240200241c8086a280200450d0020022802c40810200b024020022802a4022200450d00200228029c022101200041246c210003400240024020012d0000220641034b0d0002400240024020060e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b0240200241a0026a280200450d00200228029c0210200b200241b00b6a240042010f0b20024188036a41146a410836020020024188036a410c6a4109360200200241f0046a41146a41033602002002200241a80b6a3602980b2002200241ac0b6a3602b008200241d8056a41146a4100360200200242033702f40420024190fbc6003602f0042002410936028c03200241e4fdc6003602e805200242013702dc05200241ecafc1003602d805200220024188036a360280052002200241d8056a360298032002200241b0086a360290032002200241980b6a36028803200241f0046a41d483c6001033000bcb06050c7f017e017f017e017f230041e0086b2202240020024188066a200110ad0102400240200228028c0622030d00200041003602040c010b20024194066a280200210420022802900621052002280288062106200241086a20024198066a41e00010cd051a20022001105f024020022802000d0002400240200128020441d8026e220741d8026c2208417f4c0d00200228020421090240024020080d004108210a0c010b2008101e220a450d020b02402009450d0020024188066a41f0006a210b4100210c410021084100210d034020024188066a200110b401200241a0056a20024188066a41e80010cd051a20022903f006210e200241b8036a200b41e80110cd051a02400240200e4203510d00200d41016a210f200241d0026a200241a0056a41e80010cd051a200241e8006a200241b8036a41e80110cd051a200d2007470d010240200c200f200c200f4b1b2207ad42d8027e2210422088a70d002010a722114100480d0002400240200d0d002011101e210a0c010b200a200820111022210a0b200a0d0220114108102d000b1027000b0240200d450d00200a4198016a210f0340200f10a501200f41d8026a210f200841a87d6a22080d000b0b2007450d05200a10200c050b200a20086a200241d0026a41e80010cd05220d41e8006a200e370300200d41f0006a200241e8006a41e80110cd051a200c41026a210c200841d8026a2108200f210d2009200f470d000b0b200a450d0220024188066a200241086a41e00010cd051a2000410c6a2004360200200020053602082000200336020420002006360200200041106a20024188066a41e00010cd051a200041f8006a2009360200200041f4006a2007360200200041f0006a200a3602000c030b102c000b20084108102d000b2000410036020402402004450d00200441246c210f2003210803400240024020082d0000220d41034b0d00024002400240200d0e0404000102040b2008410c6a280200450d03200841086a28020010200c030b2008410c6a280200450d02200841086a28020010200c020b2008410c6a280200450d01200841086a28020010200c010b200841086a280200450d00200841046a28020010200b200841246a2108200f415c6a220f0d000b0b2005450d00200310200b200241e0086a24000b8840060d7f017e057f037e077f017e230041c0016b2201240041002102410021034104210402400240024002400240024002400240024002400240024002400240024002400240024002402000410c6a28020041246c2205450d00200028020421064104210441002102410021030340024020062d00004101470d00200641106a2802002207417f4c0d05200641086a2802002108200641016a28000021090240024020070d004101210a0c010b2007101e220a450d050b200a2008200710cd05210a200141c0006a41026a220b200141106a41026a2d00003a000020014198016a41086a220c200141e8006a41086a290200370300200120012f00103b01402001200129026837039801024020022003470d00200241016a22082002490d112002410174220d2008200d20084b1b2203ad42247e220e422088a70d11200ea722084100480d110240024020020d002008101e21040c010b2004200241246c2008102221040b2004450d040b2004200241246c6a220841013a000020082009360001200820073600102008200736000c2008200a360008200820012f01403b0005200841076a200b2d00003a000020082001290398013702142008411c6a200c290300370200200241016a21020b200641246a21062005415c6a22050d000b0b200141003602980141effbc000411020014198016a4104100520014198016a41086a2206420037030020014200370398014195fcc000410d20014198016a1000200141c0006a41086a22082006290300370300200120012903980137034020012000280200220f36029801200141c0006a411020014198016a4104100520064200370300200142003703980141b7fcc000410d20014198016a10002008200629030037030020012001290398013703402001410036027020014201370368200120023602980120014198016a200141e8006a10630240024020020d0020012802702108200128026c210a200128026821050c010b2004200241246c6a210d200128026c210a2001280270210620042107034020014198016a200710a901200128029801210b02400240200a20066b20012802a0012209490d00200620096a2108200128026821050c010b200620096a22082006490d10200a41017422052008200520084b1b220c4100480d1002400240200a0d00200c101e21050c010b2001280268200a200c102221050b02402005450d002001200c36026c20012005360268200c210a0c010b200c4101102d000b200741246a210720012008360270200520066a200b200910cd051a0240200128029c01450d00200b10200b20082106200d2007470d000b0b200041106a2109200141c0006a41102005200810050240200a450d00200510200b20014198016a41086a2206420037030020014200370398014184fcc000411120014198016a1000200141c0006a41086a200629030037030020012001290398013703402001200141c0006a360298012001411036029c01200920014198016a10b801024002400240024002404110101e2206450d00200641086a41002900ccfc40370000200641002900c4fc4037000020064110412010222207450d012007200f417f6a360010200141c0006a41186a22054200370300200141c0006a41106a22064200370300200141c0006a41086a220842003703002001420037034020074114200141c0006a100120014198016a41186a220a200529030037030020014198016a41106a200629030037030020014198016a41086a220620082903003703002001200129034037039801200710202001412036026c200120014198016a3602682009200141e8006a10b80120064200370300200142003703980141a2fcc000411520014198016a10002008200629030037030020012001290398013703402001411036029c012001200141c0006a36029801200041d0006a20014198016a10b8012006420037030020014200370398014182fec000410d20014198016a1000200820062903003703002001200129039801370340200141c0006a41101004200642003703002001420037039801419281c700411120014198016a1000200820062903003703002001200129039801370340200141c0006a411010044112101e2207450d02200741106a41002f009ffe403b0000200741086a4100290097fe403700002007410029008ffe4037000020054200370300200141c0006a41106a22094200370300200842003703002001420037034020074112200141c0006a1001200a200529030037030020014198016a41106a20092903003703002006200829030037030020012001290340370398012007102020014198016a412010152000280200210b109c02200b4105490d09200141c0006a41086a22064200370300200142003703404189a7c6004111200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a100321062001280298012208417f460d042006450d04200120083602442001200636024020014198016a200141c0006a10bf01200128029801220c450d03200129029c01210e2008450d08200610200c080b41104101102d000b41204101102d000b41124101102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b4104210c4200210e0c030b20084104102d000b20074101102d000b102c000b02400240200e422088a7220541c4006c22060d00410021090c010b200b417b6a2107200c20066a210841002109200c210602400340024020062d00004101460d00200641046a28020020074f0d020b200941016a21092008200641c4006a2206470d000b0b200920054b0d020b200520096b210d200e42ffffffff0f83210e200c200941c4006c22086a210a200c210702400340024020080d00200a21060c020b200841bc7f6a210820072d00002105200741c4006a2206210720054102470d000b0b02400340200a2006460d0120062d00002108200641c4006a210620084102470d000b0b0240200d450d0002402009450d00200c200c200941c4006c6a200d41c4006c10ce051a0b200dad422086200e84210e0b200141c0006a41086a22064200370300200142003703404189a7c6004111200141c0006a1000200141e8006a41086a20062903003703002001200129034037036820014198016a200c200e422088a7109d02200141e8006a4110200128029801220820012802a0011005200ea721060240200128029c01450d00200810200b2006450d00200c10200b200141c0006a41086a22084200370300200142003703404198edc6004117200141c0006a1000200141e8006a41086a2207200829030037030020012001290340370368200141003a0040200141e8006a4110200141c0006a4101100520014198016a109e024124101e2206450d01200620012903980137000020064114360220200641186a20014198016a41186a290300370000200641106a20014198016a41106a290300370000200641086a20014198016a41086a290300370000200142818080801037026c20012006360268200141e8006a109f02200b10a00220084200370300200142003703404184fcc0004111200141c0006a1000200720082903003703002001200129034037036820014198016a200141e8006a4110106920012d0098012106200141c0006a41186a2207200141b1016a290000370300200141c0006a41106a220520014198016a41116a2900003703002008200141a1016a29000037030020012001290099013703400240024020064101460d00200141e8006a41186a4200370300200141e8006a41106a4200370300200141f0006a4200370300200142003703680c010b200141e8006a41186a2007290300370300200141e8006a41106a2005290300370300200141e8006a41086a200141c0006a41086a290300370300200120012903403703680b200141c0006a41086a220642003703002001420037034041c8d2c0004127200141c0006a100020014198016a41086a200629030037030020012001290340370398012001410036024020014198016a4110200141c0006a1003210620012802402208417f460d032006450d032001200836021420012006360210200141c0006a200141106a10e30120012802402205450d02200141c8006a28020021092001290244210e2001280244210702402008450d00200610200b200ea7210a0240200e422088a7220841d100490d0020014198016a41186a2207200141e8006a41186a29030037030020014198016a41106a2209200141e8006a41106a29030037030020014198016a41086a220c200141e8006a41086a2903003703002001200129036837039801200b417f6a41d10070220620084f0d05200520064105746a2206200129039801370000200641186a2007290300370000200641106a2009290300370000200641086a200c290300370000200a21070c080b20014198016a41186a200141e8006a41186a29030037030020014198016a41106a200141e8006a41106a29030037030020014198016a41086a200141e8006a41086a290300370300200120012903683703980102402008200a460d0020014198016a2106200a2107200821090c070b20014198016a210620072008470d060c050b41c0d8c200411c41a888c6001028000b41244104102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b20014198016a41186a200141e8006a41186a29030037030020014198016a41106a200141e8006a41106a29030037030020014198016a41086a200141e8006a41086a2903003703002001200129036837039801410021074101210520014198016a2106410021090c010b41bcf8c60020062008102a000b200741016a22082007490d022007410174220a2008200a20084b1b220841ffffff3f712008470d022008410574220a4100480d020240024020070d00200a101e21050c010b20052007410574200a102221050b02402005450d00200821070c010b200a4101102d000b200520094105746a22082006290000370000200841186a200641186a290000370000200841106a200641106a290000370000200841086a200641086a290000370000200941016a21080b200141c0006a41086a220642003703002001420037034041c8d2c0004127200141c0006a100020014198016a41086a200629030037030020012001290340370398010240024020050d0020014198016a411010040c010b200141003602482001420137034020012008360210200141106a200141c0006a106302402008450d00200841057421082005210603402001200141c0006a3602102006200141106a10b901200641206a2106200841606a22080d000b0b2001280244210620014198016a4110200128024022082001280248100502402006450d00200810200b2007450d00200510200b200141c0006a41086a220642003703002001420037034041fcd5c3004115200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a10032106024002400240024002400240024002400240024002400240024002400240024002402001280298012208417f460d002006450d0020084104490d02200628000021082006102020080d010b200141c0006a41086a220642003703002001420037034041fcd5c3004115200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410136029801200141e8006a411020014198016a410410050b200b41e400700d04200141c0006a41086a220642003703002001420037034041adfdc1004118200141c0006a100020014198016a41086a200629030037030020012001290340370398012001410036026820014198016a4110200141e8006a1003210620012802682208417f460d022006450d022001200836024420012006360240200141e8006a200141c0006a10a10220012802682200450d01200129026c210e2008450d03200610200c030b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b410821004200210e0b200ea72110024002400240200e422088a72211450d002000201141306c6a210f41002108200141046a41026a21070340200141e8006a41206a2205200020086a220641206a290300370300200141e8006a41186a2209200641186a290300370300200141e8006a41106a220a200641106a290300370300200141e8006a41086a220c200641086a29030037030020072006412b6a2d00003a0000200120062903003703682001200641296a2f00003b0104200641286a2d000022124104460d012006412c6a280000210d20014198016a41086a200c29030037030020014198016a41106a200a29030037030020014198016a41186a200929030037030020014198016a41206a200529030037030020014190016a41026a20072d00003a00002001200129036837039801200120012f01043b019001200d200b4b0d02200841306a2108200641306a200f470d000b0b410821074100211102402010450d00200010200b410021130c010b200141106a41206a20014198016a41206a290300220e370300200141106a41186a20014198016a41186a2903002214370300200141106a41106a20014198016a41106a2903002215370300200141106a41086a20014198016a41086a29030022163703002001410c6a41026a220720014190016a41026a2d00003a0000200141c0006a41086a22052016370300200141c0006a41106a22092015370300200141c0006a41186a220a2014370300200141c0006a41206a220c200e3703002001200129039801220e370310200120012f0190013b010c2001200e370340200141086a41026a221720072d00003a0000200120012f010c3b01082001413c6a41026a221320172d00003a0000200120012f01083b013c4130101e2207450d0220072001290340370300200720123a0028200720012f013c3b00292007200d36002c200741206a200c290300370300200741186a200a290300370300200741106a2009290300370300200741086a20052903003703002007412b6a20132d00003a000002400240201141306c41506a2008470d0041012111410121130c010b200641306a2118201141306c20006a41506a2119200141046a41026a210541012111410121130340201821060340200141e8006a41206a2209200641206a290300370300200141e8006a41186a220a200641186a290300370300200141e8006a41106a220c200641106a290300370300200141e8006a41086a220d200641086a29030037030020012006290300370368200641286a2d0000210820052006412b6a2d00003a00002001200641296a2f00003b010420084104460d022006412c6a280000211220014198016a41086a2217200d29030037030020014198016a41106a220d200c29030037030020014198016a41186a220c200a29030037030020014198016a41206a220a200929030037030020014190016a41026a220920052d00003a00002001200129036837039801200120012f01043b01900102402012200b4b0d00200641306a2206200f470d010c030b0b200141106a41206a200a290300220e370300200141106a41186a200c2903002214370300200141106a41106a200d2903002215370300200141106a41086a201729030022163703002001410c6a41026a221820092d00003a0000200141c0006a41086a22092016370300200141c0006a41106a221a2015370300200141c0006a41186a221b2014370300200141c0006a41206a221c200e3703002001200129039801220e370310200120012f0190013b010c2001200e370340200141086a41026a221d20182d00003a0000200120012f010c3b01082001413c6a41026a2218201d2d00003a0000200120012f01083b013c20172009290300370300200d201a290300370300200c201b290300370300200a201c2903003703002001200129034037039801200141e8006a41026a221a20182d00003a0000200120012f013c3b0168024020132011470d00201141016a22092011490d0f201141017422132009201320094b1b2213ad42307e220e422088a70d0f200ea722094100480d0f0240024020110d002009101e21070c010b2007201141306c2009102221070b2007450d0d0b200641306a21182017290300210e200d2903002114200c2903002115200a2903002116200129039801211e2007201141306c6a220920083a00282009201e370300200941206a2016370300200941186a2015370300200941106a2014370300200941086a200e3703002009412c6a2012360000200920012f01683b00292009412b6a201a2d00003a0000201141016a211120192006470d000b0b2010450d00200010200b200141c0006a41086a220642003703002001420037034041adfdc1004118200141c0006a100020014198016a41086a20062903003703002001200129034037039801200141e8006a2007201110a20220014198016a411020012802682206200128027010050240200128026c450d00200610200b2013450d00200710200b200141c0006a41086a220642003703002001420037034041bbb5c600412c200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a10032106024002402001280298012208417f470d004201210e0c010b024020060d004201210e0c010b20084108490d022006290000210e200610200b4126101e2206450d022006411e6a41002900ccae46370000200641186a41002900c6ae46370000200641106a41002900beae46370000200641086a41002900b6ae46370000200641002900aeae463700002006412641cc0010222206450d032006200e370026200141c0006a41186a22084200370300200141c0006a41106a22074200370300200141c0006a41086a22054200370300200142003703402006412e200141c0006a100120014198016a41186a200829030037030020014198016a41106a200729030037030020014198016a41086a200529030037030020012001290340370398012006102020014198016a412041e4fdc600410041001002417f470d0e4135101e2206450d042006412d6a41002900a6ae46370000200641286a41002900a1ae46370000200641206a4100290099ae46370000200641186a4100290091ae46370000200641106a4100290089ae46370000200641086a4100290081ae46370000200641002900f9ad46370000200141c0006a41086a220842003703002001420037034041a4b4c600412b200141c0006a1000200141e8006a41086a2008290300370300200120012903403703682001410036029801200141e8006a411020014198016a10032108024002402001280298012207417f470d004201210e0c010b024020080d004201210e0c010b20074108490d062008290000210e200810200b4126101e2208450d062008411e6a41002900ccae46370000200841186a41002900c6ae46370000200841106a41002900beae46370000200841086a41002900b6ae46370000200841002900aeae463700002008412641cc0010222208450d072008200e370026200141c0006a41186a22074200370300200141c0006a41106a22054200370300200141c0006a41086a22094200370300200142003703402008412e200141c0006a100120014198016a41186a200729030037030020014198016a41106a200529030037030020014198016a41086a2009290300370300200120012903403703980120081020200141003602702001420137036820014135360240200141c0006a200141e8006a10630240200128026c2209200128027022056b4135490d00200541356a2108200128026821070c0a0b200541356a22082005490d0a200941017422072008200720084b1b220a4100480d0a0240024020090d00200a101e21070c010b20012802682009200a102221070b02402007450d002001200a36026c20012007360268200a21090c0a0b200a4101102d000b41304108102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b41264101102d000b41cc004101102d000b41354101102d000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b41264101102d000b41cc004101102d000b20094108102d000b20012008360270200720056a22052006290000370000200541086a200641086a290000370000200541106a200641106a290000370000200541186a200641186a290000370000200541206a200641206a290000370000200541286a200641286a2900003700002005412d6a2006412d6a290000370000200141013a004002400240024020092008460d00410121050c010b200841016a22052008490d02200841017422092005200920054b1b22094100480d020240024020080d002009101e21070c010b200720082009102221070b2007450d012001200936026c2001200736026820012d004021050b200720086a20053a000020014198016a41202007200841016a100502402009450d00200710200b20061020200141c0006a41086a220642003703002001420037034041a4b4c600412b200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001410036029801200141e8006a411020014198016a100321062001280298012208417f460d032006450d0320084108490d022006290000210e20061020200e42017c210e0c040b20094101102d000b1027000b41ceb8c400413320014190016a41fcbfc4004184b9c400102e000b4202210e0b200141c0006a41086a220642003703002001420037034041a4b4c600412b200141c0006a1000200141e8006a41086a2006290300370300200120012903403703682001200e37039801200141e8006a411020014198016a410810050b02402002450d00200241246c21082004210603400240024020062d0000220741034b0d0002400240024020070e0404000102040b2006410c6a280200450d03200641086a28020010200c030b2006410c6a280200450d02200641086a28020010200c020b2006410c6a280200450d01200641086a28020010200c010b200641086a280200450d00200641046a28020010200b200641246a21062008415c6a22080d000b0b02402003450d00200410200b200141c0016a24000ba70301047f230041f0006b22022400024002404110101e2203450d00200341086a41002900ccfc40370000200341002900c4fc4037000020034110412010222203450d0120032001360010200241086a41186a22014200370300200241086a41106a22044200370300200241086a41086a220542003703002002420037030820034114200241086a1001200241306a41186a2001290300370300200241306a41106a2004290300370300200241306a41086a20052903003703002002200229030837033020031020200241086a200241306a41201069200241d0006a41086a200241116a290000370300200241d0006a41106a2203200241196a290000370300200241d0006a41186a2201200241216a290000370300200220022900093703500240024020022d00084101460d0020004200370000200041186a4200370000200041106a4200370000200041086a42003700000c010b20002002290350370000200041186a2001290300370000200041106a2003290300370000200041086a200241d0006a41086a2903003700000b200241f0006a24000f0b41104101102d000b41204101102d000bac1703077f027e057f230041206b220224000240024002400240024002400240024002400240024002400240024041da02101e2203450d00200241da0236020420022003360200200341003b000020024102360208024020012903684202520d00024020022802044102470d0020022802004102410410222203450d0320024104360204200220033602000b200228020041043a00022002200228020841016a3602080c080b024020022802044102470d0020022802004102410410222203450d0320024104360204200220033602000b20022802004184013a00022002200228020841016a3602082001200210de0220012d0024220341024b0d0602400240024020030e03000102000b0240200228020420022802082203460d00200228020021040c080b200341016a22042003490d0a200341017422052004200520044b1b22054100480d0a0240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c080b20054101102d000b0240200228020420022802082203460d00200228020021040c060b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c060b20054101102d000b0240200228020420022802082203460d00200228020021040c040b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c040b20054101102d000b41da024101102d000b41044101102d000b41044101102d000b2002200341016a360208200420036a41023a0000412521040340200120046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d06200341017422072005200720054b1b22074100480d060240024020030d002007101e21050c010b200228020020032007102221050b02402005450d002002200736020420022005360200200228020821030c010b20074101102d000b2002200341016a360208200520036a20063a0000200441016a220441e600470d000c030b0b2002200341016a360208200420036a41013a0000200141256a2108410021040340200820046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d05200341017422072005200720054b1b22074100480d050240024020030d002007101e21050c010b200228020020032007102221050b02402005450d002002200736020420022005360200200228020821030c010b20074101102d000b2002200341016a360208200520036a20063a0000200441016a220441c000470d000c020b0b2002200341016a360208200420036a41003a0000200141256a2108410021040340200820046a2d0000210602400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d04200341017422072005200720054b1b22074100480d040240024020030d002007101e21050c010b200228020020032007102221050b02402005450d002002200736020420022005360200200228020821030c010b20074101102d000b2002200341016a360208200520036a20063a0000200441016a220441c000470d000b0b024002400240200141e8006a22032903004201520d00200341106a290300200341086a2903002209420c88220a4201200a4201561b80210a024020022802042205200228020822046b4102490d00200228020021050c020b200441026a22062004490d04200541017422042006200420064b1b22044100480d040240024020050d002004101e21050c010b200228020020052004102221050b02402005450d002002200436020420022005360200200228020821040c020b20044101102d000b02400240200228020420022802082204460d00200228020021050c010b200441016a22052004490d04200441017422062005200620054b1b22064100480d040240024020040d002006101e21050c010b200228020020042006102221050b02402005450d002002200636020420022005360200200228020821040c010b20064101102d000b2002200441016a360208200520046a41003a00000c010b2002200441026a360208200520046a200aa741047420097aa7417f6a22044101200441014b1b2204410f2004410f491b723b00000b200341186a200210632002200341206a360210200241106a200210df020b20014198016a200210da0220022802082103200241003602182002420137031020022003417e6a36021c2002411c6a200241106a10630240024002402002280208220441014d0d00200228021021062002280214210b200228021821012002410036020820022802002103024002402004417e6a2207450d00410221082001450d09200320062d00003a00004101210c2002200228020841016a36020820014101470d010c090b0240024002402002280204220420014f0d00200441017422052001200520014b1b22054100480d070240024020040d002005101e21030c010b200320042005102221030b02402003450d002002200536020420022003360200200228020821080c020b20054101102d000b410021082001450d010b200320086a220420062d00003a0000024020014101470d00200841016a21080c010b2001417f6a2105200641016a2103200441016a21040340200420032d00003a0000200441016a2104200341016a21032005417f6a22050d000b200820016a21080b20022008360208410221080c070b200620016a210d200320062d00013a00012002200228020841016a36020841022108200641026a21052001417e6a220e0d014100210e0c020b41c0d8c200411c41a888c6001028000b024002402002280204220320046b200e490d00200228020021030c010b2004200e6a22082004490d02200341017422042008200420084b1b22044100480d020240024020030d002004101e21030c010b200228020020032004102221030b02402003450d0020022004360204200220033602000c010b20044101102d000b200320016a200341026a200710ce051a02400240200120022802082203460d00200120036b21082001417e6a2104200228020020036a210c410021030340024020042003470d00200121080c080b200c20036a20052d00003a00002002200228020841016a360208200541016a21052008200341016a2203470d000b200d20056b220e0d004100210e4101210c0c010b200e4100480d02200e101e220c0d00200e4101102d000b200121080b200d2005460d02200c20052d00003a00004101210f02400240200541016a2203200d470d00200c41016a21010c010b200c41016a21042006200120056b6a21050340200420032d00003a0000200441016a2104200d200341016a2203470d000b2005450d03200c20056a21012005210f0b024020022802042203200720086a22046b200f490d00200228020021030c020b2004200f6a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200228020020032004102221030b02402003450d0020022004360204200220033602000c020b20044101102d000b1027000b20032008200f6a220d6a200320086a200710ce051a0240200d20022802082203460d00200228020020036a21042008200f6a20036b2105200c2103034020012003460d01200420032d00003a00002002200228020841016a360208200341016a2103200441016a21042005417f6a22050d000b0b200d21080b200e450d00200c10200b2007450d010b0240200820022802082203460d002002280200220420036a200420086a200710ce051a0b2002200720036a3602080b0240200b450d00200610200b20002002290300370200200041086a200241086a280200360200200241206a24000be505030b7f017e037f230041206b2202240002400240024020012802082203417f4c0d00200128020421042001280200210502400240024020030d00410121060c010b2003101e2206450d010b200341ffffffff03712003470d0120034102742201417f4c0d0102400240024020010d00410421070c010b2001101e2207450d010b20052003410c6c6a2108024020030d004100210341002101410021092005210a0c040b4100210a20032101410021092005210b03400240200b280200220c0d00200b410c6a210a0c050b02400240024002402003200a6b200b41046a290200220d422088a7220e490d00200a200e6a210f0c010b200a200e6a220f200a490d0120034101742210200f2010200f4b1b22104100480d010240024020030d002010101e21060c010b200620032010102221060b02402006450d00201021030c010b20104101102d000b2006200a6a200c200e10cd051a024020092001460d0020012110200921010c020b200141016a220a2001490d0020014101742210200a2010200a4b1b221041ffffffff03712010470d002010410274220a4100480d000240024020010d00200a101e21070c010b20072001410274200a102221070b20070d01200a4104102d000b1027000b200720014102746a200e3602000240200da7450d00200c10200b200941016a2109200f210a20102101200b410c6a220b2008470d000c050b0b20014104102d000b20034101102d000b102c000b02402008200a460d000340200a410c6a210b0240200a41046a280200450d00200a28020010200b200b210a2008200b470d000b0b200121100b02402004450d00200510200b200241186a22014200370300200241106a220a4200370300200241086a220b42003703002002420037030020062007200920021018200041186a2001290300370000200041106a200a290300370000200041086a200b2903003700002000200229030037000002402010450d00200710200b02402003450d00200610200b200241206a24000bb31b03087f047e027f230041a0086b22042400200441b0046a200141d80210cd051a20044198026a200441b0046a10c701410121050240024002400240024020042d0098024101470d00200020042f0099023b0001200041013a0000200041036a20042d009b023a000020032802002106410021000c010b200441086a20044198026a41086a41900210cd051a02400240024002400240024002400240024002400240024020032802002206450d00200341086a28020021072003280204210841002109200441003602b00441effbc0004110200441b0046a10032101024020042802b0042205417f460d002001450d0020054104490d0220012800002109200110200b4114101e2201450d0241002105200141106a410028008e8147360000200141086a41002900868147370000200141002900fe804737000020014114412810222201450d032001200936001420044198026a41186a2209420037030020044198026a41106a220a420037030020044198026a41086a220b420037030020044200370398022001411820044198026a1001200441e0076a41186a2009290300370300200441e0076a41106a200a290300370300200441e0076a41086a200b29030037030020042004290398023703e00720011020200441203602b4042004200441e0076a3602b00420062007200441b0046a10a3022008450d00200610200b2004200441d8006a10c8012004280200210720042d00042108200441b0046a200441086a41900210cd051a0240024020042903d004220c4202520d0041002108200428028005410a460d010c0f0b200441b8076a41186a200441b0046a41186a290300370300200441b8076a41106a200441b0046a41106a290300370300200441b8076a41086a200441b0046a41086a290300370300200420042903b0043703b807200441f8046a290300210d200441f0046a290300210e200441e8046a280200210920042903d804210f20044198026a41086a2201420037030020044200370398024195fcc000410d20044198026a1000200441e0076a41086a200129030037030020042004290398023703e0072004410036029802200441e0076a411020044198026a100321010240200428029802220a417f460d002001450d00200a41034d0d05200110200b0240200c4201520d00200f4200510d060b4113101e2201450d06200141002900d4fc403700002001410f6a41002800e3fc40360000200141086a41002900dcfc4037000020044293808080b00237029c072004200136029807200441b8076a20044198076a10ca0120042802a0072101200428029807210a20044198026a41186a220b420037030020044198026a41106a2210420037030020044198026a41086a221142003703002004420037039802200a200120044198026a1001200441e0076a41186a200b290300370300200441e0076a41106a2010290300370300200441e0076a41086a201129030037030020042004290398023703e0070240200428029c07450d0020042802980710200b2004410036029802200441e0076a412020044198026a1003210a024002402004280298022201417f470d00410021010c010b0240200a0d00410021010c010b20014104490d08200a2800002101200a10200b024020012009470d004113101e2201450d0920084101712108200941016a2109200141002900d4fc403700002001410f6a41002800e3fc40360000200141086a41002900dcfc4037000020044293808080b00237029c072004200136029807200441b8076a20044198076a10ca0120042802a0072101200428029807210a20044198026a41186a220b420037030020044198026a41106a2210420037030020044198026a41086a221142003703002004420037039802200a200120044198026a1001200441e0076a41186a200b290300370300200441e0076a41106a2010290300370300200441e0076a41086a201129030037030020042004290398023703e0070240200428029c07450d0020042802980710200b2004200936029802200441e0076a412020044198026a4104100520044198026a2008200210cc010240200429039802220ca741ff01714101460d0020044198026a41086a22014200370300200442003703980241e780c700411720044198026a1000200441e0076a41086a2202200129030037030020042004290398023703e0072004200c4220883e029802200441e0076a411020044198026a4104100520044198026a2007200810cd01200429039802220ca741ff01714101460d0020014200370300200442003703980241cd80c700411a20044198026a10002002200129030037030020042004290398023703e0072004200c4220883e029802200441e0076a411020044198026a410410050c0b0b200c420888a7220141ff01714104460d0a200c421088a721020c0b0b41034102200120094b1b2102410021010c0a0b20044198026a20044184056a10cb01024020042d0098024101460d00200441c4026a2802002109200441c0026a280200210b200441bc026a2802002107200441b4026a2802002110200441b0026a280200210a0240200441b8026a2802002201450d002001410c6c2102200a210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b02402010450d00200a10200b02402009450d002009410c6c21022007210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200b450d0e200710200c0e0b20042f019a022102024020042d0099022209417e6a220141024b0d0020010e030e000e0e0b200241087420097221010c0a0b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b41144101102d000b41284101102d000b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b4180ecc6004119419cecc6001028000b41134101102d000b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b41134101102d000b20044198026a200e200d200441b8076a2007200810ce01024020042d0098024101460d00200441c4026a2802002109200441c0026a280200210a200441bc026a2802002107200441b4026a280200210b200441b0026a28020021080240200441b8026a2802002201450d002001410c6c21022008210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b0240200b450d00200810200b02402009450d002009410c6c21022007210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200a450d04200710200c040b20042f019a02210220042d0099022201417e6a220941024b0d0020090e03030003030b2002410874200141ff01717221010b20044180056a10cf0120044190076a41026a20044194076a41026a2d00003a0000200420042f0194073b019007200041036a20014110763a0000200020013b0001200041013a000020054521000b20000d022006450d02200341046a280200450d02200610200c020b20044180086a41186a200441b8076a41186a29030037030020044180086a41106a200441b8076a41106a29030037030020044180086a41086a200441b8076a41086a290300370300200420042903b80737038008410121080b20044198076a41186a220720044180086a41186a220129030037030020044198076a41106a220a20044180086a41106a220229030037030020044198076a41086a220b20044180086a41086a220929030037030020042004290380083703980720044198026a20044180056a41c00110cd051a200120072903003703002002200a2903003703002009200b2903003703002004200429039807370380084102210702402008450d00200441e0076a41186a2001290300370300200441e0076a41106a2002290300370300200441e0076a41086a200929030037030020042004290380083703e007410121070b200441c1076a200441e0076a41086a290300370000200441c9076a200441e0076a41106a290300370000200441d1076a200441e0076a41186a290300370000200420073a00b807200420042903e0073700b90720044180086a20044198026a200441b8076a10a40220044198026a41026a2004418b086a2d00003a0000200420042f0089083b019802200429038008210c024020042d00880822014102460d00200441b8076a41026a20044198026a41026a2d00003a0000200420042f0198023b01b8070b2004418c076a41026a2202200441b8076a41026a2d00003a0000200420042f01b8073b018c07024020014102460d0020044198026a41026a20022d00003a0000200420042f018c073b0198020b200441bc046a20013a0000200441bd046a20042f0198023b0000200441bf046a20044198026a41026a2d00003a00002004200c3702b404200441003a00b004200441b0046a1077200441003602b00441effbc0004110200441b0046a1003210202400240024020042802b0042209417f470d00410121020c010b024020020d00410121020c010b20094104490d012002280000210920021020200941016a21020b200420023602b00441effbc0004110200441b0046a410410052000410c6a20013a0000200041046a200c3702002000410d6a20042f018c073b00002000410f6a2004418e076a2d00003a0000200041003a00002006450d012005450d01200341046a280200450d01200610200c010b41ceb8c400413320044198026a41fcbfc4004184b9c400102e000b200441a0086a24000bdc2b01067f230041306b2201240002400240024002400240024002400240024002402000280200220241204b0d0002400240024002400240024002400240024002400240024002400240024002400240024020020e21001b1b011b1b02031b04051b1b1b060708090a0b0c1b0d0e0f1b101b111b1b1b1b000b0240200041086a280200220241064b0d00024002400240024020020e071f1f001f0102031f0b200041106a280200450d1e2000410c6a28020010200c1e0b200041106a280200450d1d2000410c6a28020010200c1d0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303400240200241046a280200450d00200228020010200b0240200241106a280200450d002002410c6a28020010200b200241186a2102200341686a22030d000b0b200041106a280200450d1c200028020c10200c1c0b0240200041146a2802002203450d002000410c6a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041106a280200450d1b200028020c10200c1b0b200041106a280200450d1a2000410c6a28020010200c1a0b02402000410c6a2802002202450d0020002802042204200241f0006c6a2105034002402004410c6a2802002203450d0020042802042102200341246c210303400240024020022d0000220641034b0d0002400240024020060e0404000102040b2002410c6a280200450d03200241086a28020010200c030b2002410c6a280200450d02200241086a28020010200c020b2002410c6a280200450d01200241086a28020010200c010b200241086a280200450d00200241046a28020010200b200241246a21022003415c6a22030d000b0b200441f0006a21020240200441086a280200450d00200428020410200b2002210420022005470d000b0b200041086a280200450d19200028020410200c190b200041086a2d0000417a6a220241074b0d180240024020020e08001a1a1a1a1a1a01000b200041106a280200450d192000410c6a28020010200c190b200041106a280200450d182000410c6a28020010200c180b200041086a280200450d17200028020410200c170b200041086a280200450d16200028020410200c160b02402000410c6a280200450d00200041086a28020010200b02402000411c6a2802002203450d00200041146a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041186a280200450d15200028021410200c150b02402000280204220241024b0d00024020020e03160016160b200041086a220228020010a50120022802001020200141306a24000f0b2000412c6a220228020010a50120022802001020200141306a24000f0b200041086a2d00004101470d130240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b200041286a280200450d13200041246a28020010200c130b200041086a2d00004103470d12200041d0006a280200450d12200041cc006a28020010200c120b20002d00044101470d112000410c6a280200450d11200041086a28020010200c110b200041086a280200450d10200028020410200c100b200041086a2d0000417f6a220241074b0d0f02400240024002400240024020020e080001020304151505000b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d14200041286a280200450d14200210200c140b200041106a280200450d132000410c6a28020010200c130b200041106a280200450d122000410c6a28020010200c120b200041106a280200450d112000410c6a28020010200c110b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d10200041286a280200450d10200210200c100b02402000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a2802002202450d002000413c6a280200450d00200210200b200041c4006a2802002202450d0f200041c8006a280200450d0f200210200c0f0b0240200041086a2d0000220241074b0d000240024002400240024020020e081414001401020304140b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d13200041186a28020010200c130b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d12200041186a28020010200c120b200041106a280200450d112000410c6a28020010200c110b200041106a280200450d102000410c6a28020010200c100b200041106a280200450d0f2000410c6a28020010200c0f0b200041106a280200450d0e2000410c6a28020010200c0e0b200041086a2d00004105470d0d200041106a280200450d0d2000410c6a28020010200c0d0b200041086a280200417f6a220241014b0d0c0240024020020e020001000b200041106a280200450d0d2000410c6a28020010200c0d0b200041106a280200450d0c2000410c6a28020010200c0c0b0240200041086a2d0000220241064b0d00024020020e070d000d0d0d0d0d0d0b200041306a280200450d0c2000412c6a28020010200c0c0b200041106a280200450d0b2000410c6a28020010200c0b0b02402000280204220241034b0d00024020020e040c000c0c0c0b2000410c6a280200450d0b200041086a28020010200c0b0b0240200041106a2802002203450d00200041086a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b2000410c6a280200450d0a200028020810200c0a0b0240200041086a2d00002202410c4b0d00024002400240024002400240024002400240024020020e0d14000114020304050607140809140b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d1320022802002106200210202006450d1320062802002103200610202003450d1320032802002202450d120340200310202002210320022802002206210220060d000c130b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d1220022802002106200210202006450d1220062802002103200610202003450d1220032802002202450d100340200310202002210320022802002206210220060d000c110b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d1120022802002106200210202006450d1120062802002103200610202003450d1120032802002202450d0e0340200310202002210320022802002206210220060d000c0f0b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1020022802002106200210202006450d1020062802002103200610202003450d1020032802002202450d0c0340200310202002210320022802002206210220060d000c0d0b0b2000410c6a2802004102490d0f200041106a280200200041146a280200200041186a28020010720c0f0b0240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b2000412c6a2802002103200041246a28020021020240200041286a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b200241908cc500460d0920022802002106200210202006450d0920062802002103200610202003450d09200328020022020d060c080b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d0d200041186a28020010200c0d0b0240200041106a280200450d002000410c6a28020010200b0240200041206a2802002202450d00200241306c2103200041186a28020041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200341506a22030d000b0b2000411c6a280200450d0c200028021810200c0c0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0b200028020c10200c0b0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0a200028020c10200c0a0b2000410c6a280200200041146a2802001071200041106a280200450d09200028020c10200c090b200041086a2d0000417f6a2202410e4b0d08024002400240024002400240024020020e0f000f010f020f0f030f0f040f0f0506000b0240200041306a280200450d002000412c6a28020010200b0240200041386a2802002202450d002000413c6a280200450d00200210200b0240200041c4006a2802002202450d00200041c8006a280200450d00200210200b0240200041d0006a2802002202450d00200041d4006a280200450d00200210200b200041dc006a2802002202450d0e200041e0006a280200450d0e200210200c0e0b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a280200450d002000411c6a2802002202450d00200041206a280200450d00200210200b0240200041286a280200450d002000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a280200450d002000413c6a2802002202450d00200041c0006a280200450d00200210200b200041c8006a280200450d0d200041cc006a2802002202450d0d200041d0006a280200450d0d200210200c0d0b200041186a280200450d0c200041146a28020010200c0c0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d0b20022802002106200210202006450d0b20062802002103200610202003450d0b20032802002202450d040340200310202002210320022802002206210220060d000c050b0b200041306a280200450d0a2000412c6a28020010200c0a0b200041106a280200450d092000410c6a28020010200c090b200041106a280200450d082000410c6a28020010200c080b0340200310202002210320022802002206210220060d000c020b0b200310200c060b200310200b2000413c6a2802002103200041346a28020021020240200041386a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b200041c8006a2802002103200041c0006a28020021020240200041c4006a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b0240200041cc006a2802004102490d00200041d0006a280200200041d4006a280200200041d8006a28020010720b200041e4006a2802002103200041dc006a28020021020240200041e0006a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d0420022802002106200210202006450d0420062802002103200610202003450d04024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200c040b200310200c030b200310200c020b200310200c010b200310200b200141306a24000b960101047f230041106b22012400410021022001410036020441effbc0004110200141046a1003210302400240024020012802042204417f470d000c010b024020030d000c010b20044104490d01200328000021042003102041effbc00041101004410121020b2000200236020020002004360204200141106a24000f0b41ceb8c4004133200141086a41fcbfc4004184b9c400102e000bbfa0020f077f027e057f017e047f017e0a7f017e037f037e017f017e177f0e7e017f230041c0066b2201240020014188056a41086a22024200370300200142003703880541b7eec600411020014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141e8026a200141a0046a109e03024002400240024002400240024002400240024002400240024020012d00e80222024102470d00200141e0056a21030c010b200141a0046a41101004200141b0016a41086a200141f1026a290000370300200141b0016a41106a200141e8026a41116a290000370300200141b0016a41186a220420014181036a290000370300200120012900e9023703b0010240200241037122024103460d00200141e0056a210320020e03010001010b200141e8046a41186a2004290300370300200141e8046a41106a200141b0016a41106a290300370300200141e8046a41086a200141b0016a41086a290300370300200120012903b0013703e80420014188056a41086a2202420037030020014200370388054190eec600411120014188056a1000200141a0046a41086a200229030037030020012001290388053703a00441002104200141003602e802200141a0046a4110200141e8026a10032102024002400240024002400240024020012802e8022205417f460d002002450d0020054104490d0120022800002104200210200b4116101e2202450d012002410e6a41002900afee46370000200241086a41002900a9ee46370000200241002900a1ee4637000020024116412c10222202450d0220022004360016200141e0056a41186a22054200370300200141e0056a41106a22064200370300200141e0056a41086a22074200370300200142003703e0052002411a200141e0056a100120014188056a41186a200529030037030020014188056a41106a200629030037030020014188056a41086a2007290300370300200120012903e0053703880520021020200141003602e80220014188056a4120200141e8026a1003210520012802e8022206417f460d042005450d04200120063602a404200120053602a004200141e8026a200141a0046a109f0320012802e8022202450d0320012902ec0221082006450d05200510200c050b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41164101102d000b412c4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410021020b2002410120021b2105024002402008420020021b22084220882209a72202418002490d004120101e2202450d03200220012903e804370000200241186a200141e8046a41186a290300370000200241106a200141e8046a41106a290300370000200241086a200141e8046a41086a2903003700004116101e2206450d042006410e6a41002900afee46370000200641086a41002900a9ee46370000200641002900a1ee4637000020064116412c10222206450d052006200441016a2207360016200141e0056a41186a22044200370300200141e0056a41106a220a4200370300200141e0056a41086a220b4200370300200142003703e0052006411a200141e0056a100120014188056a41186a200429030037030020014188056a41106a200a29030037030020014188056a41086a2204200b290300370300200120012903e0053703880520061020200141e8026a2002410110a00320014188056a412020012802e802220620012802f0021005024020012802ec02450d00200610200b200210202004420037030020014200370388054190eec600411120014188056a1000200141a0046a41086a200429030037030020012001290388053703a004200120073602e802200141a0046a4110200141e8026a41041005200141e0056a21030c010b200141a0046a41186a2207200141e8046a41186a290300370300200141a0046a41106a220a200141e8046a41106a290300370300200141a0046a41086a220b200141e8046a41086a290300370300200120012903e8043703a004024020022008a7470d00200241016a22062002490d0d2009a7220c4101742203200620062003491b220641ffffff3f712006470d0d200641057422034100480d0d0240024020020d002003101e21050c010b2005200c4105742003102221050b2005450d0a2008422088a721022006ad21080b200520024105746a220620012903a004370000200641186a2007290300370000200641106a200a290300370000200641086a200b2903003700004116101e2206450d052006410e6a41002900afee46370000200641086a41002900a9ee46370000200641002900a1ee4637000020064116412c10222206450d0620062004360016200141e0056a41186a22044200370300200141e0056a41106a22074200370300200141e0056a41086a220a4200370300200142003703e0052006411a200141e0056a100120014188056a41186a200429030037030020014188056a41106a200729030037030020014188056a41086a200a290300370300200120012903e0053703880520061020200141e8026a2005200241016a10a00320014188056a412020012802e802220220012802f0021005024020012802ec02450d00200210200b200842ffffffff0f832108200141e0056a21030b2008a7450d00200510200b20014188056a41086a22024200370300200142003703880541fc81c700411320014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d00200141003a00b8062004450d0720022d000022044101460d0120040d0720021020200141e8026a411010040b419ba9c100412b41a888c6001028000b20021020200141e8026a4110100420014188056a41086a22024200370300200142003703880541f58bc600411120014188056a1000200141e8026a41086a2204200229030037030020012001290388053703e802200141e8026a411010042002420037030020014200370388054198edc600411720014188056a10002004200229030037030020012001290388053703e802200141e8026a41101004200242003703002001420037038805418f82c700411a20014188056a10002004200229030037030020012001290388053703e802200141e0006a200141e8026a109202200242003703002001420037038805418f82c700411a20014188056a10002004200229030037030020012001290388053703e802200142003703b001200141e8026a4110200141b0016a4108100520024200370300200142003703880541ddd2c300411720014188056a10002004200229030037030020012001290388053703e8020240200141e8026a411041e4fdc600410041001002417f470d0010a902210820024200370300200142003703880541ddd2c300411720014188056a10002004200229030037030020012001290388053703e802200120083703b001200141e8026a4110200141b0016a410810050b20024200370300200142003703880541e8bfc500411020014188056a10002004200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a1003210220012802b0012204417f460d082002450d0820044104490d062002280000210d20021020200141e8026a411010044101210a0c090b41204101102d000b41164101102d000b412c4101102d000b41164101102d000b412c4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b20034101102d000b4100210a0b20014188056a41086a2202420037030020014200370388054194efc600411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d0041002105200141003a00b8060240024002402004450d0020022d0000220441014b0d0020040e020201020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410121050b2002102020054102460d0020050d010b024002404104101e2204450d002004410036020020014188056a41086a22024200370300200142003703880541f8bfc500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b801200142013703b001200141013602880520014188056a200141b0016a106320042802002107024020012802b401220620012802b80122056b4104490d0020012802b00121020c020b200541046a22022005490d032006410174220b2002200b20024b1b220b4100480d030240024020060d00200b101e21020c010b20012802b0012006200b102221020b02402002450d002001200b3602b401200120023602b001200b21060c020b200b4101102d000b41044104102d000b2001200541046a220b3602b801200220056a2007360000200141e8026a41102002200b100502402006450d00200210200b20041020024002404104101e2204450d002004410036020020014188056a41086a22024200370300200142003703880541edd3c500411620014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b801200142013703b001200141013602880520014188056a200141b0016a106320042802002107024020012802b401220620012802b80122056b4104490d0020012802b00121020c020b200541046a22022005490d032006410174220b2002200b20024b1b220b4100480d030240024020060d00200b101e21020c010b20012802b0012006200b102221020b02402002450d002001200b3602b401200120023602b001200b21060c020b200b4101102d000b41044104102d000b2001200541046a220b3602b801200220056a2007360000200141e8026a41102002200b100502402006450d00200210200b2004102020014188056a41086a2202420037030020014200370388054183d4c500411020014188056a1000200141e8026a41086a2204200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a410410052002420037030020014200370388054194efc600411520014188056a10002004200229030037030020012001290388053703e802200141013a00e005200141e8026a4110200141e0056a410110050b20014188056a41086a22024200370300200142003703880541f8bfc500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d002001200436028c052001200236028805200141b0016a20014188056a10c101024020012802b001220e450d0020012902b401210f2004450d02200210200c020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b4104210e4200210f0b20014188056a41086a22024200370300200142003703880541edd3c500411620014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a100321020240024020012802b0012204417f460d002002450d002001200436028c052001200236028805200141b0016a20014188056a10c101024020012802b0012207450d0020012902b401210902402004450d00200210200b200120073602a0042009422088a721100c020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41042107200141043602a00441002110420021090b200f422088a7211102400240024002400240200a0d002011417f6a220220114f0d01200220114b0d01200e20024102746a280200210d0b41002011419c7f6a22022002201141016a4b1b221220114b0d01200e20124102746a21132012450d032010ad2108200e210c0340200c280200210a024002400240024002402008a7220b41014b0d0041002102200b0e020201020b41002102200b2104034020022004410176220520026a2206200a200720064102746a280200491b2102200420056b220441014b0d000b0b200a2007200241027422046a2802002205460d022002200a20054b6a21020c010b410021020b200120023602e80241ccd4c500412e200141e8026a41fcd4c500418cd5c500102e000b20082002ad580d03200720046a2204200441046a2002417f73200b6a41027410ce051a200942ffffffff0f83200b417f6a2210ad422086842109200c41046a220c2013460d042008427f7c210820012802a00421070c000b0b4193d4c500412641bcd4c5001045000b41c0d8c200411c41a888c6001028000b41fad8c200411d41a888c6001028000b200f42ffffffff0f8321080240201120126b2202450d0002402012450d00200e2013200241027410ce051a2009422088a721100b20082002ad4220868421080b20012802a004210741002102024002400240024002400240024002400240024002400240201041014b0d0020100e020201020b20102104034020022004410176220520026a2206200d200720064102746a280200491b2102200420056b220441014b0d000b0b0240200d200720024102746a2802002204460d002002200d20044b6a21020b20102002490d010b20102009a7470d02201041016a22042010490d09201041017422052004200520044b1b220441ffffffff03712004470d092004410274220541004e0d010c090b41dcd8c200411e41a888c6001028000b0240024020100d002005101e21070c010b200720104102742005102221070b2007450d01200120073602a0042004ad21090b200720024102746a220441046a2004201020026b41027410ce051a2004200d3602000240024002402008422088220fa722042008a7470d00200441016a22022004490d09200fa722064101742205200220022005491b220241ffffffff03712002470d09200241027422054100480d090240024020040d002005101e210e0c010b200e200641027420051022210e0b200e450d012008422088a721042002ad21080b200e20044102746a200d360200201041016a22130d01419cd5c50041c30041a888c6001028000b20054104102d000b2013201341017622024d0d0220012802a004220520024102746a280200210d024020134101710d0020132002417f6a22024d0d02200520024102746a280200200d6a410176210d0b20014188056a41086a22024200370300200142003703880541f8bfc500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b801200142013703b0012001200441016a22113602880520014188056a200141b0016a10630240024020110d0020012802b801210a20012802b401210720012802b00121040c010b410020012802b80122026b2105200441027441046a210b20012802b4012107200e210603402006280200210c02400240200720056a4104490d0020012802b00121040c010b200241046a22042002490d092007410174220a2004200a20044b1b220a4100480d090240024020070d00200a101e21040c010b20012802b0012007200a102221040b02402004450d002001200a3602b401200120043602b001200a21070c010b200a4101102d000b200641046a21062001200241046a220a3602b801200420026a200c3600002005417c6a2105200a2102200b417c6a220b0d000b0b2008a72102200141e8026a41102004200a100502402007450d00200410200b02402002450d00200e10200b20012802a004210e20014188056a41086a22024200370300200142003703880541edd3c500411620014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200142013703b001200141003602b8012001201336028805201041027441046a210a20014188056a200141b0016a1063410020012802b80122026b21052009a7211020012802b4012107200e210603402006280200210c02400240200720056a4104490d0020012802b00121040c010b200241046a22042002490d082007410174220b2004200b20044b1b220b4100480d080240024020070d00200b101e21040c010b20012802b0012007200b102221040b02402004450d002001200b3602b401200120043602b001200b21070c010b200b4101102d000b200641046a21062001200241046a220b3602b801200420026a200c3600002005417c6a2105200b2102200a417c6a220a0d000b200141e8026a41102004200b100502402007450d00200410200b02402010450d00200e10200b20014188056a41086a2202420037030020014200370388054183d4c500411020014188056a1000200141e8026a41086a2204200229030037030020012001290388053703e8022001200d3602b001200141e8026a4110200141b0016a4104100502400240201141e500470d00200d419a086a10794b0d0020014188056a41086a22054200370300200142003703880541cac1c500411720014188056a1000200141e8026a41086a200529030037030020012001290388053703e8024108101e2205450d012005200d360004200541e400360000200141e8026a4110200541081005200510200b200242003703002001420037038805418cc6c500411d20014188056a10002004200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a1003210420012802b0012202417f460d062004450d0620012004360288052001200236028c050240024020024104490d002001200441046a3602880520012002417c6a220536028c0520054104490d00200428000021052001200241786a36028c052001200441086a3602880520042800042107200141b0016a20014188056a10d80120012802b0012202450d0020012902b401210841002106200141003a00b8060240200128028c05220a450d002001200a417f6a221036028c052001200128028805220c41016a36028805200c2d00004101460d020b0c070b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b201041044f0d040c050b41084101102d000b20054104102d000b41d0e0c60020022013102a000b41d0e0c60020022013102a000b2001200a417b6a36028c052001200c41056a36028805200c280001210b410121060b20041020200141c8016a200b360200200141bc016a2008370200200120063602c401200120023602b801200120073602b401200120053602b0010240024002400240024020052000470d002008422088a7210a0240024020060d00200aad42287e2208422088a70d052008a72204417f4c0d050240024020040d004108210b0c010b2004101e220b450d050b410021050240200a450d00200a41286c210641002105200b21040340200241086a2903002108200241106a2903002109200241186a290300210f20022903002114200441206a200241206a290300370300200441186a200f370300200441106a2009370300200441086a200837030020042014370300200441286a2104200541016a2105200241286a2102200641586a22060d000b0b20014198056a200736020020014188056a410c6a200536020020014188056a41086a200a3602002001200b36028c052001410036028805200141e8026a20014188056a10a1032001418b066a200141e8026a41086a280200360000200120012903e80237008306200141e8026a410c6a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe01200a450d01200b10200c010b200aad42287e2208422088a70d042008a72204417f4c0d040240024020040d004108210c0c010b2004101e220c450d030b02400240200a0d00410021050c010b200a41286c210641002105200c21040340200241086a2903002108200241106a2903002109200241186a290300210f20022903002114200441206a200241206a290300370300200441186a200f370300200441106a2009370300200441086a200837030020042014370300200441286a2104200541016a2105200241286a2102200641586a22060d000b0b2001419c056a200736020020014198056a200536020020014188056a410c6a200a36020020014188056a41086a200c3602002001200b36028c052001410136028805200141e8026a20014188056a10a1032001418b066a200141e8026a41086a280200360000200120012903e80237008306200141e8026a410c6a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe01200a450d00200c10200b20012802b401210720012802b00121050b200720056a2000470d0302404101101e2202450d00200142013702ec02200120023602e802200141013602f002200141013a00b806200241013a000020012802b80121042001200141c0016a28020022023602880520014188056a200141e8026a106302402002450d002004200241286c6a210703402004200141e8026a10ca01200441206a29030021080240024020012802ec02220520012802f00222026b4108490d0020012802e80221050c010b200241086a22062002490d09200541017422022006200220064b1b22024100480d090240024020050d002002101e21050c010b20012802e80220052002102221050b02402005450d00200120023602ec02200120053602e80220012802f00221020c010b20024101102d000b2001200241086a3602f002200520026a20083700002007200441286a2204470d000b0b200141b8016a210220012802ec02210441d4bfc500411420012802e802220520012802f002100502402004450d00200510200b200141e8026a41086a22042002290000370300200141e8026a41106a200241086a280000360200200141003602ec02200141053a00e802200141e8026a107720014188056a41086a220242003703002001420037038805418cc6c500411d20014188056a10002004200229030037030020012001290388053703e802200141e8026a411010040c050b41014101102d000b20044108102d000b20044108102d000b102c000b20012802bc01450d0020012802b80110200b20014188056a41086a22024200370300200142003703880541d8d3c500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a10032102024020012802b0012204417f460d002002450d00200141003a00b80602402004450d0020022d0000220541034b0d00024002400240024020050e0401030100010b2004417f6a41074b0d010c030b200210200c030b200228000521052002280001210420021020024020042000470d00200141043602b001200120053602b401200141e8026a200141b0016a10a1032001418b066a200141f0026a280200360000200120012903e80237008306200141f4026a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe010b200520046a2000470d02200141003602a00420014188056a41086a22024200370300200142003703880541d8d3c500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141b0016a200141a0046a10a203200141e8026a411020012802b001220220012802b8011005024020012802b401450d00200210200b200141023602ec02200141053a00e802200141e8026a10770c020b2004417f6a4108490d00200228000521052002280001210420021020024020042000470d00200141033602b001200120053602b401200141e8026a200141b0016a10a1032001418b066a200141f0026a280200360000200120012903e80237008306200141f4026a20014187066a290000370000200141c6a4b9da043600e902200141023a00e80220012001290080063700ed02200141e8026a10fe010b200520046a2000470d01200141023602a00420014188056a41086a22024200370300200142003703880541d8d3c500411520014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141b0016a200141a0046a10a203200141e8026a411020012802b001220220012802b8011005024020012802b401450d00200210200b200141013602ec02200141053a00e802200141e8026a10770c010b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b200141e8026a10f70220012802e8022105024020012802f002220e450d00200e4106742104200541106a210203400240200241046a280200450d00200228020010200b200241c0006a2102200441406a22040d000b0b024020012802ec02450d00200510200b20014188056a41086a2202420037030020014200370388054196fac100411820014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141003602e802200141a0046a4110200141e8026a1003210202400240024002400240024020012802e8022204417f470d00413c21070c010b024020020d00413c21070c010b20044104490d0120022800002107200210200b200141e8026a10f70220012802e8022106024020012802f0022205450d0020054106742104200641106a210203400240200241046a280200450d00200228020010200b200241c0006a2102200441406a22040d000b0b024020012802ec02450d00200610200b20014188056a41086a22024200370300200142003703880541aefac100411b20014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141003602e802200520076c220541e4006e2115200141a0046a4110200141e8026a1003210220012802e8022204417f460d022002450d02200120043602b401200120023602b001200141e8026a200141b0016a10c10120012802e8022216450d0120012902ec0221092004450d03200210200c030b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b42002109410421160b024002402009422088a72202450d00201620024102746a2117200141b0016a41216a2118200541e3004b21192016210c0240024002400240024002400340200c280200210b02400240024002404119101e2202450d00200241186a41002d00e1fa413a0000200241106a41002900d9fa41370000200241086a41002900d1fa41370000200241002900c9fa4137000020024119413210222202450d012002200b360019200341186a22104200370000200341106a22134200370000200341086a220d4200370000200342003700002002411d2003100120014188056a41186a221a201029000037030020014188056a41106a221b201329000037030020014188056a41086a221c200d290000370300200120032900003703880520021020200141003602e80220014188056a4120200141e8026a100321040240024020012802e8022202417f470d0042002108410121120c010b200120023602b401200120043602b001200141e8026a200141b0016a10a30320012802e8022212450d0320012902ec0221082002450d00200410200b02402008422088a722110d004100210541002107410021064100210a0c040b201141216c2104201241206a21024100210a41002106410021074100210503400240024002400240024020022d00000e0401020300010b200541016a21050c030b200a41016a210a0c020b200641016a21060c010b200741016a21070b200241216a21022004415f6a2204450d040c000b0b41194101102d000b41324101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b200141e8026a200b108c03200128029403108d0321020240024002400240200e450d00410521042005200e460d010b2019200620154f71211d024002400240200e450d00200e2011460d010b2002450d0341022104201d0d010c020b41042104201d450d010b410321040b200b200410900322020d01107921114116101e2202450d032002410e6a41002900f0fa41370000200241086a41002900eafa41370000200241002900e2fa4137000020024116412c10222202450d042002200b3600162010420037000020134200370000200d4200370000200342003700002002411a20031001201a2010290000370300201b2013290000370300201c200d2900003703002001200329000037038805200210204104101e2202450d052002200b36000020024104410810222202450d062002200a36000420024108411010222202450d072002200736000c2002200636000820024110412010222202450d082002200536001002400240200441054d0d00411421100c010b024002400240024002400240024020040e06000102030405000b410021100c050b410121100c040b410221100c030b410321100c020b410421100c010b410521100b200120103a00b806200220103a0014411521100b200220106a201136000020014188056a41202002201041046a100520021020201820012f0088053b0000201841026a20014188056a41026a2d00003a0000200120043a00d001200120113602cc01200120053602c801200120073602c401200120063602c0012001200a3602bc012001200b3602b801200141043a00b401200141093a00b001200141b0016a10770b0240200128028003450d0020012802fc0210200b0240200128028c03450d0020012802880310200b200c41046a210c02402008a7450d00201210200b200c2017470d010c080b0b0240200128028003450d0020012802fc0210200b0240200128028c03450d0020012802880310200b02402008a7450d00201210200b02402009a7450d00201610200b2002412810060c070b41164101102d000b412c4101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b2009a7450d00201610200b200010a40320014188056a41086a22024200370300200142003703880541a1c6c100411220014188056a1000200141e8026a41086a200229030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a1003210202400240024002400240024020012802b0012204417f470d00410121040c010b024020020d00410121040c010b20044104490d0120022800002104200210200b024020042000470d00200141e8026a41086a22022000360200200141003602ec022001410b3a00e802200141e8026a107720014188056a41086a22044200370300200142003703880541aac2c400411920014188056a10002002200429030037030020012001290388053703e802200141003602b001200141e8026a4110200141b0016a10032102024020012802b0012204417f460d002002450d0041002105200141003a00b8060240024002402004450d0020022d0000220441014b0d0020040e020201020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410121050b2002102020054102460d002005450d010b200141e8026a10f702200141d8006a200141e8026a10a5030b20014188056a41086a22024200370300200142003703880541f8fac100411520014188056a1000200141a0046a41086a200229030037030020012001290388053703a004200141003602e802200141a0046a4110200141e8026a1003210220012802e8022204417f460d022002450d02200120043602b401200120023602b001200141e8026a200141b0016a109a0320012802e802221e450d0120012902ec02211f2004450d03200210200c030b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b4101211e4200211f0b0240201f422088a72202450d00201e20026a2120200141e8026a410d6a2106200141e8026a41086a2105200141f0006a41086a2115200141dd036a212120014188056a410d6a2107201e21220340024002400240024002400240024002400240024002404111101e2202450d00200241106a41002d009dfb413a0000200241086a4100290095fb413700002002410029008dfb4137000020222d0000210420024111412210222202450d01200220043a0011200341186a22134200370000200341106a220d4200370000200341086a220e4200370000200342003700002002411220031001200141a0046a41186a220a2013290000370300200141a0046a41106a220b200d290000370300200141a0046a41086a220c200e290000370300200120032900003703a00420021020200141003602e802200141a0046a4120200141e8026a1003210420012802e8022202417f460d0a200120023602b401200120043602b001200141e8026a200141b0016a10990320012903e8024201510d02200141e8026a41206a2903002123200141e8026a41106a22102903002114200129038003212420012903f002212520012802a803211602402002450d00200410200b2016450d0320002016700d0a4117101e2202450d042002410f6a41002900d5f841370000200241086a41002900cef841370000200241002900c6f84137000020222d0000210420024117412e10222202450d05200220043a001720134200370000200d4200370000200e4200370000200342003700002002411820031001200a2013290000370300200b200d290000370300200c200e290000370300200120032900003703a00420021020200141003602e802200141a0046a4120200141e8026a100321040240024020012802e8022202417f470d0041012126420021270c010b200120023602b401200120043602b001200141e8026a200141b0016a10e30120012802e8022226450d0720012902ec0221272002450d00200410200b2027422088a72202450d092002410574211a202621020340200241086a2900002108200241106a29000021092002290000210f200141e8026a41186a2211200241186a29000037030020102009370300200520083703002001200f3703e8024117101e2204450d08200441002900aff8413700002004410f6a41002900bef841370000200441086a41002900b7f84137000020014297808080f0023702b401200120043602b001200141e8026a200141b0016a10ca0120012802b801210420012802b001211220134200370000200d4200370000200e4200370000200342003700002012200420031001200a2013290000370300200b200d290000370300200c200e290000370300200120032900003703a004024020012802b401450d0020012802b00110200b200141003602e802200141a0046a4120200141e8026a1003211b0240024020012802e8022212417f470d00410421040c010b2001201236028c052001201b36028805200141e8026a20014188056a10a60320012d00f40222044104460d0a200141e0056a41086a2005280200360200200141b0016a41086a200641086a290000370300200141b0016a41106a200641106a290000370300200141b0016a41186a200641186a290000370300200141b0016a411f6a2006411f6a280000360000200120012903e8023703e005200120062900003703b0012012450d00201b10200b2015200141e0056a41086a22122802003602002005200141b0016a41086a2903003703002010200141b0016a41106a2903003703002011200141b0016a41186a290300370300200141e8026a411f6a221c200141b0016a411f6a280000360000200120012903e005370370200120012903b0013703e80202402004410446221b0d00200141e8046a41086a201528020036020020014188056a41086a200529030037030020014188056a41106a201029030037030020014188056a41186a201129030037030020014188056a411f6a201c280000360000200120012903703703e804200120012903e802370388050b200141a0016a41086a2211200141e8046a41086a28020036020020014180066a41086a221c20014188056a41086a221929030037030020014180066a41106a221820014188056a41106a29030037030020014180066a41186a221720014188056a41186a29030037030020014180066a411f6a221d20014188056a411f6a280000360000200120012903e8043703a00120012001290388053703800620122011280200360200200120012903a0013703e005200c201c290300370300200b2018290300370300200a2017290300370300200141a0046a411f6a2211201d28000036000020012001290380063703a0040240201b0d00200720012903a004370000201920122802002212360200200741086a200c290300370000200741106a200b290300370000200741186a200a2903003700002007411f6a2011280000360000200120012903e00537038805200120043a009405201220166a20004f0d00200141c8006a200710890302402001290348202554200141c8006a41086a290300220820145420082014511b0d00200141b0016a20012903880510a70320012903e0014202510d01200141e8026a200141b0016a41b80110cd051a200141f0006a20212024202310a803024020012802700d00200120153602e804200141e8046a10f4020b024020012802ac03450d0020012802a80310200b024020012802b803450d0020012802b40310200b024020012802c403450d0020012802c00310200b20012802d00320012802d40320012802d80310f5020c010b200141e8026a20072024202310a80320012802e8020d00200120053602b001200141b0016a10f4020b200241206a2102201a41606a221a0d000c0a0b0b41114101102d000b41224101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41a0fbc100413941dcfbc1001028000b41174101102d000b412e4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41174101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b2027a7450d00202610200b202241016a22222020470d000b0b0240201fa7450d00201e10200b200141f0006a41186a22024200370300200141f0006a41106a22044200370300200141f0006a41086a22054200370300200142003703704198abc1004118200141f0006a1001200141e0056a41186a2002290300370300200141e0056a41106a2004290300370300200141e0056a41086a2005290300370300200120012903703703e005200141003602e802200141e0056a4120200141e8026a100321020240024020012802e8022204417f460d002002450d00024020044108490d002002290000210820021020410021020c020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b410121020b024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020020d0020014180066a2008109602200141e8026a20014180066a109a0220012903a0034202510d13200141b0016a41186a2228200141e8026a41186a221a290300370300200141b0016a41106a2226200141e8026a41106a221b290300370300200141b0016a41086a2229200141e8026a41086a2212290300370300200141f0006a41086a222a200141e8026a41296a290000370300200141f0006a410f6a222b200141e8026a41306a222c290000370000200120012903e8023703b0012001200129008903370370200141e8026a41c8006a290300211f200141e8026a41d0006a290300212720012d008803210220014188056a41086a222d202929030037030020014188056a41106a222e202629030037030020014188056a41186a222f2028290300370300200141e0056a41086a2230202a290300370300200141e0056a410f6a2231202b290000370000200120012903b00137038805200120012903703703e00520024104460d00200141e8026a41386a2132200141f0006a41186a2133200141b0016a41386a213420014189036a2135200141fc026a2136200141a0046a41296a2137200141a0046a412c6a2138200141a0046a41086a213903402039200129038805370300203720012903e00537000041082116203941086a20014188056a41086a290300370300203941106a223a202e290300370300203941186a223b202f290300370300203741086a200141e0056a41086a2903003700002037410f6a2031290000370000200120083703a004200120023a00c804200120083703e00441002106410021054100211d410021044200210f0240200241ff01714103460d0020012802cc0422042102024020012802d0042205450d002005210620042102034020022802c00321022006417f6a22060d000b0b0240024020012802d404220c0d004100213c0c010b200141003602bc01200120383602b801200141003602b001200120023602b4010240024020022f01060d0002400240200228020022040d002038ad210841002106410021040c010b20023301044220862038ad842108410121060b02402008422088a7220720042f0106490d0003402008220942ffffffff0f832108200641016a210620042f01042207200428020022042f01064f0d000b200921080b200741027420046a41c4036a28020021022008a7210a02402006417f6a2205450d00034020022802c00321022005417f6a22050d000b0b2001200a3602f002200120023602ec0241002105200141003602e8020c010b200120383602f002200120023602ec0241002106200141003602e80241012105200221042038210a410021070b20012007360284032001200a36028003200120043602fc02200120063602f802200120053602f4024100213c200141e8026a210b034020074105742102200b28020c2107200b280208210a200b2802042104200b2802002105200c417f6a210c02402002203628020041e0006a6a22022d0018450d0020022802142206450d0020022006417f6a3602144101213c0b024002400240200c450d002001200a3602b801200120053602b001200120073602bc01200120043602b401200720042f0106490d0102400240200428020022020d00200aad2108410021020c010b200541016a21052004330104422086200aad8421080b02402008422088a7220720022f0106490d0003402008220942ffffffff0f832108200541016a210520022f01042207200228020022022f01064f0d000b200921080b200741027420026a41c4036a28020021042008a7210a02402005417f6a2206450d00034020042802c00321042006417f6a22060d000b0b2001200a3602f002200120043602ec0241002106200141003602e8020c020b20012802cc04210420012802d00421050c030b2001200a3602f002200120043602ec02200120053602e802200741016a2106200421020b20012007360284032001200a36028003200120023602fc02200120053602f802200120063602f4020c000b0b02402005450d00034020042802c00321042005417f6a22050d000b0b4100210720012802d404210a41002106024003400240200a0d004100210c0c020b02400240200620042f0106490d0002400240200428020022020d004100210541002104410021020c010b20042f01042104410121050b0240200420022f0106490d000340200541016a210520022f01042204200228020022022f01064f0d000b0b200220044105746a41e0006a210b200220044103746a41086a210c200441027420026a41c4036a2802002104410021062005417f6a2202450d01034020042802c00321042002417f6a22020d000c020b0b200420064103746a41086a210c200420064105746a41e0006a210b200641016a21060b200a417f6a210a200b2802140d000b200a21070b410821164100211d02400240200c0d004108213d4100211e410021114108210a0c010b200c290300210802404108101e2220450d0020202008370300410121114101212203400240024020070d00410021074100210b0c010b02400240200620042f0106490d0002400240200428020022020d004100210541002104410021020c010b20042f01042104410121050b0240200420022f0106490d000340200541016a210520022f01042204200228020022022f01064f0d000b0b200220044105746a41e0006a210a200220044103746a41086a210b200441027420026a41c4036a2802002104410021062005417f6a2202450d01034020042802c00321042002417f6a22020d000c020b0b200420064103746a41086a210b200420064105746a41e0006a210a200641016a21060b2007417f6a2107200a2802140d010b02400240200b450d00200b2903002108024020222011460d00201141016a21020c020b201141016a22022011490d1d201141017422052002200520024b1b222241ffffffff01712022470d1d202241037422054100480d1d0240024020110d002005101e21200c010b202020114103742005102221200b20200d0120054108102d000b0240024020110d00410021114108213d4100211e0c010b2011ad42287e2208422088a70d1d2008a722024100480d1d02402002101e223d450d00202020114103746a213e4100211e203d210e202021020340200241086a21212002290300210820012802d0042104203821020240034002400240200228020022062f0106220a0d00410021050c010b200a410374210b417f21054100210203400240200b2002470d00200a21050c020b200620026a2107200241086a2102200541016a21050240417f200741086a290300220920085220092008561b41016a0e03020001020b0b200120012802d404417f6a3602d40402400240024002400240024002400240024002400240024002402004450d00200541027420066a41c4036a280200210202402004417f6a2204450d00034020022802c00321022004417f6a22040d000b0b200241908cc500460d0220022903082109200241086a200241106a20022f010641037441786a10ce051a200241e8006a2903002123200241f0006a2903002125200241f8006a290300211420022903602124200241e0006a20024180016a20022f010641057441606a10ce051a200220022f0106417f6a3b0106200620054103746a41086a2009370300200620054105746a41e0006a220441186a2205290300210f20052014370300200441106a2205290300211420052025370300200441086a220529030021252005202337030020042903002123200420243703000c010b200641908cc500460d02200641086a220220054103746a2002200541016a22044103746a2005417f73220720062f01066a41037410ce051a200641e0006a220a20054105746a220241186a290300210f200241106a2903002114200241086a2903002125200229030021232002200a20044105746a200720062f01066a41057410ce051a200620062f0106417f6a3b0106200621020b024020022f010641044b0d0041002105034020022802002206450d010240024020022f010422020d00410021044100211820062f01060d0141e5dac500412841a888c6001028000b2002417f6a2104410121180b200541016a210d0240200641c0036a2202200441016a2207410274221c6a220b280200220a2f0106220c2002200441027422196a220228020022102f010622136a410b490d00024020180d00024002400240200c450d00200a2903082109200a41086a200a41106a200c41037441786a10ce051a200a41f8006a2903002124200a41f0006a290300213f200a41e8006a2903002140200a2903602141200a41e0006a200a4180016a200a2f0106220741057441606a10ce051a20050d01410021134101210d0c020b41f5a6c000412041a888c6001028000b200a2802c0032113200a41c0036a2207200a41c4036a200c41027410ce051a4100210b20134100360200034020072802002210200b3b01042010200a360200200741046a2107200c200b41016a220b470d000b2005417f6a210b200a2f010621070b200a2007417f6a3b0106200620044103746a41086a2207290300214220072009370300200620044105746a220441f8006a2206290300210920062024370300200441f0006a220629030021242006203f370300200441e8006a2206290300213f20062040370300200441e0006a22042903002140200420413703002002280200210202402005450d002013450d07200d417e6a200b470d0820022f01062204410a4b0d09200220044105746a220541f8006a2009370300200541f0006a2024370300200541e8006a203f370300200541e0006a2040370300200220044103746a41086a20423703002002200441016a22044102746a41c0036a22052013360200200220022f010641016a3b01062005280200220520043b0104200520023602000c040b20022f01062204410b4f0d09200220044103746a41086a2042370300200220044105746a220441f8006a2009370300200441f0006a2024370300200441e8006a203f370300200441e0006a2040370300200220022f010641016a3b01060c030b0240024002402013450d00201020134103746a2903002109201341057420106a220241d8006a2903002124200241d0006a290300213f200241c8006a2903002140200241c0006a290300214120050d01410021074101210d0c020b41f5a6c000412041a888c6001028000b201020134102746a41c0036a280200220741003602002005417f6a210a0b201020102f0106417f6a3b0106200620044103746a41086a2202290300214220022009370300200620044105746a220241f8006a2204290300210920042024370300200241f0006a220429030021242004203f370300200241e8006a2204290300213f20042040370300200241e0006a2202290300214020022041370300200b280200210602402005450d002007450d0a200d417e6a200a470d0b024020062f01062202410a4b0d00200641106a200641086a200241037410ce051a2006204237030820064180016a200641e0006a20062f010641057410ce051a200641f8006a2009370300200641f0006a2024370300200641e8006a203f37030020062040370360200641c4036a200641c0036a220220062f010641027441046a10ce051a200620073602c003200620062f010641016a22043b0106200441ffff037141016a21074100210403402002280200220520043b010420052006360200200241046a21022007200441016a2204470d000c050b0b41a8a5c000412741a888c6001028000b20062f01062202410b4f0d0b200641106a200641086a200241037410ce051a2006204237030820064180016a200641e0006a200241057410ce051a200641f8006a2009370300200641f0006a2024370300200641e8006a203f37030020062040370360200620062f010641016a3b01060c020b200b28020022102f0106220c2002280200220a2f010622136a2215410a4b0d0b200641086a220220044103746a220529030021092005200220074103746a2004417f73221820062f01066a41037410ce051a200a41086a220520134103746a20093703002005201341016a22024103746a201041086a200c41037410cd051a2012200641e0006a221720044105746a220541086a290300370300201b200541106a290300370300201a200541186a290300370300200120052903003703e8022005201720074105746a201820062f01066a41057410ce051a200a41e0006a221820134105746a220541186a201a290300370300200541106a201b290300370300200541086a2012290300370300200520012903e802370300201820024105746a201041e0006a200c41057410cd051a200b2006200441026a22044102746a41c0036a412c201c6b10ce0521050240200720062f0106220b4f0d002005280200220520073b0104200520063602002004200b460d00201920066a41c8036a210503402005280200220720043b010420072006360200200541046a2105200b200441016a2204470d000b0b200620062f0106417f6a3b0106200a200c200a2f01066a41016a3b01060240200d4102490d00200a20024102746a41c0036a201041c0036a200c41027441046a10cd051a2002201541026a4f0d00200c41016a2105200a20134102746a41c4036a210403402004280200220720023b01042007200a360200200441046a2104200241016a21022005417f6a22050d000b0b20101020024020062f01062204450d00200d21052006210220044105490d010c020b0b200141a0046a41306a2802002202450d0b20012002417f6a3602d004200120012802cc0422022802c00322043602cc0420044100360200200210200b200f42ff0183420285500d0d200fa7220241ff01714102460d0d200e2023370308200e20023a0020200e2008370300200e41106a2025370300200e41186a2014370300200e41276a200f4238883c0000200e41256a200f4228883d0000200e200f4208883e0021201e41016a211e200e41286a210e202121022021203e470d0e0c100b41c8a6c000412d41a888c6001028000b41c8a6c000412d41a888c6001028000b41e988c700412b4180a8c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b41a8a5c000412741a888c6001028000b41e988c700412b4198a7c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b4190a8c000413641a888c6001028000b41a7a6c000412141a888c6001028000b2004450d012004417f6a2104200620054102746a41c0036a21020c000b0b0b41e988c700412b41f0eec1001028000b20024108102d000b02402022450d00202010200b203d210a0c030b202020114103746a2008370300200221110c000b0b41084108102d000b41002105024002400240200a201e41286c6a2202203d460d002002203d6b210741082116410021044100211d410021050340200141a0046a41106a2202200229030022082008203d20046a220241106a290300220f200241086a290300221420012903a804220956200f200856200f2008511b22061b220f7d20092009201420061b220854ad7d22143703002001200920087d22093703a8042002290300212502402005201d470d00201d41016a2202201d490d1d201d41017422062002200620024b1b2202ad42287e2223422088a70d1d2023a722064100480d1d02400240201d0d002006101e21160c010b2016201d41286c2006102221160b2016450d032002211d0b201620046a22022025370300200241206a2014370300200241186a2009370300200241106a200f370300200241086a2008370300200541016a21052007200441286a2204470d000b0b02402011450d00200a10200b203c410171210620012d00c8042204410271450d01410021044200210f0c020b20064108102d000b024002400240024020012802d40422070d0041012104200141013a00c8040c010b20040d004100210420012802c40421020c010b20012802c4042202450d0120012002417f6a22023602c4040b2002450d004200210f0c010b200141a0046a41106a290300212520012903a8042114024020044103460d0020012802cc0420012802d00420071098020b203920012903e8043703002037200129008006370000203b200141e8046a41186a290300370300203a200141e8046a41106a290300370300203941086a200141e8046a41086a290300370300203741076a20014180066a41076a290000370000200141033a00c8044201210f410121040b02402004200672450d0020012903e00421084110101e2202450d03200241086a4100290090ab4137000020024100290088ab4137000020024110412010222204450d042004200837001020334200370300200141f0006a41106a22024200370300202a42003703002001420037037020044118200141f0006a1001200141e8046a41186a2033290300370300200141e8046a41106a2002290300370300200141e8046a41086a202a290300370300200120012903703703e8042004102020014188056a200141e8046a109a020240024020012903c00522094202520d00200120083703a0012033420037030020024200370300202a4200370300200142003703704198abc1004118200141f0006a1001200141e0056a41186a22062033290300370300200141e0056a41106a220720022903003703002030202a290300370300200120012903703703e005200141003602e802200141e0056a4120200141e8026a100321040240024020012802e802220a417f460d002004450d00200a41074b0d0141ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420021092033420037030020024200370300202a4200370300200142003703704198abc1004118200141f0006a100120062033290300370300200720022903003703002030202a290300370300200120012903703703e005200120083703e802200141e0056a4120200141e8026a41081005420021080c020b2004290000214320041020200141e0056a2043109602200141e8026a200141e0056a109a0220012903a0034202510d07200141b0016a200141e8026a41d80010cd051a20014180066a41306a2204200141b0016a41306a29030037030020014180066a41286a220a200141b0016a41286a29030037030020014180066a41206a220b200141b0016a41206a29030037030020014180066a41186a220c202829030037030020014180066a41106a2210202629030037030020014180066a41086a22132029290300370300200120012903b001370380062033203441186a2903003703002002203441106a2903002208370300202a203441086a29030037030020012034290300370370202c2004290300370300200141e8026a41286a200a290300370300200141e8026a41206a200b290300370300201a200c290300370300201b20102903003703002012201329030037030020012033410020084201511b3602a40320012001290380063703e8022001200141a0016a3602a003200141003602b801200142013703b001202c280200210a4104101e2204450d082004200a36000020014284808080c0003702b401200120043602b0010240024020012d0088034103470d00200141003a00b80620044104410810222204450d0b200420012d00b8063a0004200120043602b00120014288808080d0003702b4010c010b200141013a00b80620044104410810222204450d0b200420012d00b8063a0004200120043602b00120014288808080d0003702b401200141e8026a200141b0016a109b020b2032200141b0016a107e20012802b40121042003412020012802b001220a20012802b801100502402004450d00200a10200b024020012d0088034103460d00200128028c032001280290032001280294031098020b20012903a00121082033420037030020024200370300202a4200370300200142003703704198abc1004118200141f0006a100120062033290300370300200720022903003703002030202a290300370300200120012903703703e005200120083703e802200141e0056a4120200141e8026a4108100542012108420021090c010b20012903d805214320012903d005210820012903c805214420012d00a8054103460d0020012802ac0520012802b00520012802b4051098020b20012043370388032001200837038003200120443703f802200120093703f002200120393602e802200141003602b801200142013703b001200141a0046a41386a28020021044104101e2202450d092002200436000020014284808080c0003702b401200120023602b00102400240200141a0046a41286a2d00004103470d00200141003a00b80620024104410810222202450d0c200220012d00b8063a0004200120023602b00120014288808080d0003702b4010c010b200141013a00b80620024104410810222202450d0c200220012d00b8063a0004200120023602b00120014288808080d0003702b4012039200141b0016a109b020b2012200141b0016a10940120012802b4012102200141e8046a412020012802b001220420012802b80110052002450d00200410200b02402005450d00200541286c2104201641086a21020340200241086a290300210820022903002109200142eadee59bc7aed8b5e5003703b001200141e8026a200141b0016a10ae02200141b0016a200141e8026a20092008411f10930220012802b0014101460d0d20012903b8012108200120262903003703f002200120083703e802200241286a21022001200141e8026a3602b001200141b0016a109402200441586a22040d000b0b0240201d450d00201610200b0240200f4200510d00200142eadee59bc7aed8b5e5003703b001200141e8026a200141b0016a10ae02200141b0016a200141e8026a20142025411f10930220012802b0014101460d0d200141386a200141e0046a20012903b801202629030010af022001200141386a41086a2903003703f002200120012903383703e8022001200141e8026a3602b001200141b0016a1094020b024020012d00c8044103460d0020012802cc0420012802d00420012802d4041098020b201fa7450d0120014180066a2027109602200141e8026a20014180066a109a0220012903a0034202510d0d2028201a2903003703002026201b29030037030020292012290300370300202a203541086a290000370300202b2035410f6a290000370000200120012903e8023703b0012001203529000037037020012903b003211f20012903b803210920012d0088032102202d2029290300370300202e2026290300370300202f20282903003703002030202a2903003703002031202b290000370000200120012903b00137038805200120012903703703e005202721082009212720024104470d000b0b200341186a22024200370000200341106a22044200370000200341086a220542003700002003420037000041dccac000411720031001200141f0006a41186a2002290000370300200141f0006a41106a2004290000370300200141f0006a41086a200529000037030020012003290000370370200141003602e802200141f0006a4120200141e8026a10032102024020012802e8022204417f460d002002450d00200441074d0d122002290000210920021020200141e0056a200910e401200141e8026a200141e0056a10a90320012903b8034202510d0d20014188056a41086a2206200141e8026a41206a29030037030020014188056a41106a2207200141e8026a41286a29030037030020014188056a41186a220a200141e8026a41306a29030037030020014188056a41206a220b200141a0036a29030037030020014188056a41286a220c200141a8036a29030037030020014188056a41306a2210200141b0036a290300370300200120012903800337038805200141e8026a41086a22052903002114200141c8036a2903002123200141d0036a290300210f20012903e802212520012903f8022108200141a0046a41086a22132006290300370300200141a0046a41106a220d2007290300370300200141a0046a41186a220e200a290300370300200141a0046a41206a2211200b290300370300200141a0046a41286a2212200c290300370300200141a0046a41306a221a201029030037030020012001290388053703a00420084204510d00200141e8026a41186a2104200141b0016a41206a2102200141b8036a211c200141b0016a41086a21150340200220012903a004370300200141b0016a41106a221b2014370300200241306a201a290300370300200241286a2012290300370300200241206a2011290300370300200241186a200e290300370300200241106a200d290300370300200241086a2013290300370300200120253703b801200120093703b001200120083703c80120012009370370024020084203510d0020012802e8012000470d00200141b0016a41286a290300212420012903d001210920012802e00121180240024002402008a70e03020100020b4200201420247d2025200954ad7d2208202520097d2209202556200820145620082014511b22171b21244200200920171b21090c010b202420147c200920257c2208200954ad7c2124200821090b201b2024370300200120093703b8012001201820006a3602e801410f101e221b450d10201b41002900cdca40370000201b41076a41002900d4ca4037000020012903702108201b410f411e1022221b450d11201b200837000f200341186a22184200370000200341106a22174200370000200341086a221d420037000020034200370000201b41172003100120014180066a41186a201829000037030020014180066a41106a201729000037030020014180066a41086a201d2900003703002001200329000037038006201b1020200141e8026a20014180066a10a9030240024020012903b8034202520d0020014188056a200141f0006a10aa030c010b200a201c41186a2903003703002007201c41106a2903003703002006201c41086a2903003703002001201c290300370388050b2005200129038805370300200541086a2006290300370300200541106a2007290300370300200541186a200a290300370300200120153602e802200141203602a404200120014180066a3602a004200141e8026a200141a0046a10ab030b2023a7450d01200141e0056a200f10e401200141e8026a200141e0056a10a90320012903b8034202510d112006200441086a2903003703002007200441106a290300370300200a200441186a290300370300200b200441206a290300370300200c200441286a2903003703002010200441306a29030037030020012004290300370388052005290300211420012903e802212520012903c803212320012903d003212420012903f802210820132006290300370300200d2007290300370300200e200a2903003703002011200b2903003703002012200c290300370300201a201029030037030020012001290388053703a004200f21092024210f20084204520d000b0b200341186a22024200370000200341106a22044200370000200341086a220542003700002003420037000041e1f0c100412b20031001200141f0006a41186a2002290000370300200141f0006a41106a2004290000370300200141f0006a41086a200529000037030020012003290000370370200141003602e802200141f0006a4120200141e8026a1003210220012802e8022204417f460d132002450d1320044108490d102002290000210820021020410021020c140b41104101102d000b41204101102d000b41b8e7c50041920141cce8c5001045000b41044101102d000b41084101102d000b41084101102d000b41044101102d000b41084101102d000b41084101102d000b200120012902b4013703880541adbac100412220014188056a41e8aac10041d0bac100102e000b200120012902b4013703880541adbac100412220014188056a41e8aac10041d0bac100102e000b418ddbc50041dd0041ecdbc5001045000b418ddbc50041dd0041ecdbc5001045000b410f4101102d000b411e4101102d000b418ddbc50041dd0041ecdbc5001045000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b418ddbc50041dd0041ecdbc5001045000b410121020b02400240024020020d00200141e0056a200810ac03200141e8026a200141e0056a10ad0320012903d8034202510d0220014188056a41386a2226200141e8026a41386a222b29030037030020014188056a41306a2221200141e8026a41306a222e29030037030020014188056a41286a221e200141e8026a41286a222f29030037030020014188056a41206a223d200141e8026a41206a223e29030037030020014188056a41186a2210200141e8026a41186a221829030037030020014188056a41106a2213200141e8026a41106a222929030037030020014188056a41086a220d200141e8026a41086a220c29030037030020014180066a41086a2215200141e8026a41cc006a29020037030020014180066a41106a2219200141bc036a29020037030020014180066a41186a2217200141c4036a29020037030020014180066a41206a2236200141cc036a29020037030020014180066a41286a2238200141d4036a280200360200200120012903e80237038805200120012902ac033703800620012802a8032104200141a0046a41086a2216200d290300370300200141a0046a41106a22222013290300370300200141a0046a41186a22202010290300370300200141a0046a41206a2239203d290300370300200141a0046a41286a223c201e290300370300200141a0046a41306a222a2021290300370300200141a0046a41386a2237202629030037030020012001290388053703a004200141f0036a2903002109200141e8036a290300213f200141f0006a41286a22352038280200360200200141f0006a41206a22332036290300370300200141f0006a41186a220e2017290300370300200141f0006a41106a22112019290300370300200141f0006a41086a22122015290300370300200120012903800637037020044102460d00200141e8026a41d0006a213a200141ac036a210b200141d8036a213120014188026a213b200141b0016a41cc006a2107200141b0016a41086a2102200141f8016a212d200141b0016a41c0006a21300340200220012903a004370300200241086a2016290300370300200241106a2022290300370300200241186a2020290300370300200241206a2039290300370300200241286a203c290300370300200241306a202a290300370300200241386a2037290300370300200120083703b001200120043602f801200741286a2035280200360200200741206a2033290300370200200741186a200e290300370200200741106a2011290300370200200741086a201229030037020020072001290370370200024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240411a101e2204450d00200441186a41002f00d2ef41221d3b0000200441106a41002900caef412225370000200441086a41002900c2ef412223370000200441002900baef41222437000020012903b801210f2004411a41341022220a450d01200a200f37001a200341186a22044200370000200341106a22054200370000200341086a2206420037000020034200370000200a412220031001200141e8046a41186a221a2004290000370300200141e8046a41106a221b2005290000370300200141e8046a41086a221c2006290000370300200120032900003703e804200a1020200141e8046a412041e4fdc600410041001002417f460d0420012903b801210f411a101e220a450d02200a41186a201d3b0000200a41106a2025370000200a41086a2023370000200a2024370000200a411a41341022220a450d03200a200f37001a20044200370000200542003700002006420037000020034200370000200a412220031001201a2004290000370300201b2005290000370300201c2006290000370300200120032900003703e804200a1020200141003602e802200141e8046a4120200141e8026a1003210a02400240024020012802e8022228417f460d00200a450d00024020284110490d0020284170714110470d020b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420021274200211f4200210f420021140c010b200a41086a2900002114200a290000210f200a41186a290000211f200a2900102127200a10200b20012802f8014101470d1a20012802fc012000470d1a200141b0016a41206a2228290300214420012903c8012143200120012903c00122413703a0012043204484500d14410f101e220a450d05200a41076a41002900d4ca402245370000200a41002900cdca402246370000200a410f411e1022220a450d06200a204137000f20044200370000200542003700002006420037000020034200370000200a411720031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200a1020200141f0006a412041e4fdc600410041001002417f460d0c410f101e220a450d07200a2046370000200a41076a204537000020012903a0012141200a410f411e1022220a450d08200a204137000f20044200370000200542003700002006420037000020034200370000200a411720031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200a1020200141003602e802200141f0006a4120200141e8026a1003210a20012802e8022234417f460d0a200a450d0a200120343602a4042001200a3602a004200141e8026a200141a0046a10ae0320012903f80222474204510d09200d201841086a2903003703002013201841106a2903003703002010201841186a2903003703002001201829030037038805200c2903002141200141e8026a41c0006a290300214820012903e802214920012903a003214a20012903b003214b2034450d0b200a10200c0b0b411a4101102d000b41344101102d000b411a4101102d000b41344101102d000b41ecfbc10041c20041a888c6001028000b410f4101102d000b411e4101102d000b410f4101102d000b411e4101102d000b41ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420421470b2018201029030037030020292013290300370300200c200d29030037030020012001290388053703e8020240024020474204520d004200214b420321474200214a4200214842002149420021410c010b20172018290300370300201920292903003703002015200c290300370300200120012903e802370380060b20492043542234204120445420412044511b0d0020202017290300370300202220192903003703002016201529030037030020012001290380063703a004410f101e220a450d01200a2046370000200a41076a204537000020012903a001214c200a410f411e1022220a450d02204120447d2034ad7d2141204820447c204a20437c2245204a54ad7c2146204920437d2149200a204c37000f20044200370000200542003700002006420037000020034200370000200a411720031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200a1020200141e8026a200141f0006a10a9030240024020012903b8034202520d0020014188056a200141a0016a10aa030c010b2010203a41186a2903003703002013203a41106a290300370300200d203a41086a2903003703002001203a290300370388050b200141e8026a41c0006a2046370300201820012903a004370300203a200129038805370300201841086a2016290300370300201841106a2022290300370300201841186a2020290300370300203a41086a200d290300370300203a41106a2013290300370300203a41186a2010290300370300200120413703f002200120493703e802200120453703a003200120473703f8022001204b3703b003200141003602f004200142013703e8044110101e220a450d032001200a3602e804200a20012802f004222c6a2234204137000820342049370000200141103602ec042001202c41106a22343602f004024020474203520d0041002132200141003a00e0050240202c0d00200a411041201022220a450d06200141203602ec042001200a3602e80420012d00e005213220012802f00421340b2001203441016a3602f004200a20346a20323a00000c080b41012132200141013a00e0050240202c0d00200a411041201022220a450d06200141203602ec042001200a3602e80420012d00e005213220012802f00421340b2001203441016a3602f004200a20346a20323a0000200128029003212c024020012802ec04223420012802f004220a6b4104490d0020012802e80421340c070b200a41046a2232200a490d132034410174220a2032200a20324b1b220a4100480d130240024020340d00200a101e21340c010b20012802e8042034200a102221340b02402034450d002001200a3602ec04200120343602e80420012802f004210a0c070b200a4101102d000b2028290300214320302903002141200120012903e801224720012903c80122447c22453703e8012030204120437c2045204754ad7c3703002043201f7c204420277c2227204454ad7c211f0c080b410f4101102d000b411e4101102d000b41104101102d000b41204101102d000b41204101102d000b2001200a41046a3602f0042034200a6a202c3600000240024002400240024002402047a7220a41024b0d00024002400240200a0e03000102000b200141003a00b806024020012802ec0420012802f004220a460d004100212c20012802e80421340c060b200a41016a2234200a490d14200a410174222c2034202c20344b1b222c4100480d1402400240200a0d00202c101e21340c010b20012802e804200a202c102221340b02402034450d002001202c3602ec04200120343602e80420012d00b806212c20012802f004210a0c060b202c4101102d000b200141013a00b806024020012802ec0420012802f004220a460d004101212c20012802e80421340c040b200a41016a2234200a490d13200a410174222c2034202c20344b1b222c4100480d1302400240200a0d00202c101e21340c010b20012802e804200a202c102221340b02402034450d002001202c3602ec04200120343602e80420012d00b806212c20012802f004210a0c040b202c4101102d000b200141023a00b806024020012802ec0420012802f004220a460d004102212c20012802e80421340c020b200a41016a2234200a490d12200a410174222c2034202c20344b1b222c4100480d1202400240200a0d00202c101e21340c010b20012802e804200a202c102221340b02402034450d002001202c3602ec04200120343602e80420012d00b806212c20012802f004210a0c020b202c4101102d000b20012802ec04213420012802f004210a0c040b2001200a41016a3602f0042034200a6a202c3a000020012903800321412001203e2903003703e805200120413703e005200141e0056a212c0c020b2001200a41016a3602f0042034200a6a202c3a000020012903800321412001203e2903003703e805200120413703e005200141e0056a212c0c010b2001200a41016a3602f0042034200a6a202c3a000020012903800321412001203e2903003703e805200120413703e005200141e0056a212c0b0240024020012802ec04223420012802f004220a6b4110490d0020012802e80421320c010b200a41106a2232200a490d0e2034410174220a2032200a20324b1b224d4100480d0e0240024020340d00204d101e21320c010b20012802e8042034204d102221320b02402032450d002001204d3602ec04200120323602e80420012802f004210a204d21340c010b204d4101102d000b2032200a6a223241086a202c41086a2900003700002001200a41106a220a3602f0042032202c2900003700000b200128029803212c024002402034200a6b4104490d0020012802e80421340c010b200a41046a2232200a490d0d2034410174220a2032200a20324b1b220a4100480d0d0240024020340d00200a101e21340c010b20012802e8042034200a102221340b02402034450d002001200a3602ec04200120343602e80420012802f004210a0c010b200a4101102d000b2001200a41046a3602f0042034200a6a202c3600000b024002400240024020012802ec04223420012802f004220a6b4104490d0020012802e80421340c010b200a41046a222c200a490d0e2034410174220a202c200a202c4b1b220a4100480d0e0240024020340d00200a101e21340c010b20012802e8042034200a102221340b2034450d012001200a3602ec04200120343602e80420012802f004210a0b2001200a41046a3602f0042034200a6a204ba7360000024020012802ec04223420012802f004220a6b4110490d0020012802e80421340c020b200a41106a222c200a490d042034410174220a202c200a202c4b1b220a4100480d040240024020340d00200a101e21340c010b20012802e8042034200a102221340b02402034450d002001200a3602ec04200120343602e80420012802f004210a0c020b200a4101102d000b200a4101102d000b2034200a6a22342046370008203420453700002001200a41106a3602f004203a200141e8046a10940120012802ec04210a200141f0006a412020012802e804223420012802f00410050240200a450d00203410200b200141286a203b2043204410f3022001200141286a41086a2903003703f002200120012903283703e8022001200141e8026a3602880520014188056a10f4020b200141b0016a41306a220a2903002141200120012903d801224720437c22453703d801200a204120447c2045204754ad7c370300204420147c2043200f7c220f204354ad7c21140b024002402001280280024101460d00200141003602f8010c010b200141013602f801200120012802840220006a3602fc010b20012903b801214302400240024002400240024002400240024002400240411a101e220a450d00200a41186a201d3b0000200a41106a2025370000200a41086a2023370000200a2024370000200a411a41341022220a450d01200a204337001a20044200370000200542003700002006420037000020034200370000200a412220031001201a2004290000370300201b2005290000370300201c2006290000370300200120032900003703e804200a102020014188056a200141e8046a10af030240024020012903a80522254202520d00200120433703a0012004420037000020054200370000200642003700002003420037000041d4efc100412220031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200141003602e802200141f0006a4120200141e8026a1003210a0240024020012802e802221d417f460d00200a450d00201d41074b0d0141ceb8c4004133200141b8066a41fcbfc4004184b9c400102e000b420021232004420037000020054200370000200642003700002003420037000041d4efc100412220031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200120433703e802200141f0006a4120200141e8026a41081005420021250c020b200a2900002140200a1020200141e0056a204010b003200141e8026a200141e0056a10af032001290388034202510d042016203e41086a29030022413703002022203e41106a29030022253703002020203e41186a29030022473703002001203e29030022453703a004200c29030021232018290300212420012903e802214320012903f8022144201720473703002019202537030020152041370300200120453703800620182024370300200120443703f802200120233703f002200120433703e80220012017410020254201511b36028c032001200141a0016a36028803200141003602a804200142013703a0044110101e220a450d05200a2043370000200a20233700082001429080808080023702a4042001200a3602a004200a411041201022220a450d06200a2044370010200a41186a2024370000200142a080808080043702a4042001200a3602a004203e200141a0046a107e20012802a404210a200141e0056a412020012802a004221d20012802a80410050240200a450d00201d10200b20012903a00121252004420037000020054200370000200642003700002003420037000041d4efc100412220031001200e2004290000370300201120052900003703002012200629000037030020012003290000370370200120253703e802200141f0006a4120200141e8026a4108100542012123420021250c010b20012903c005214020012903b805212320012903b00521420b2018201f370300200120273703f802200120143703f0022001200f3703e802200120403703a003200120233703980320012042370390032001202537038803200141003602900520014201370388054110101e220a450d05200a200f370000200a201437000820014290808080800237028c052001200a36028805200a411041201022220a450d06200a2027370010200a41186a201f370000200142a0808080800437028c052001200a36028805203e20014188056a109401200128028c05210a200141e8046a4120200128028805221d20012802900510050240200a450d00201d10200b4123101e220a450d07200a411f6a41002800ddf041360000200a41186a41002900d6f041370000200a41106a41002900cef041370000200a41086a41002900c6f041370000200a41002900bef041370000200a412341c6001022220a450d08200a200837002320044200370000200542003700002006420037000020034200370000200a412b20031001201a2004290000370300201b2005290000370300201c2006290000370300200120032900003703e804200a1020200141e8026a200141e8046a10ad030240024020012903d8034202520d0020014188056a200810b1030c010b2010203141186a2903003703002013203141106a290300370300200d203141086a29030037030020012031290300370388050b200c200129038805370300200c41086a200d290300370300200c41106a2013290300370300200c41186a2010290300370300200120023602e802200141003602a804200142013703a00420012903b80121084108101e2204450d09200141083602a404200120012802a804220541086a3602a804200120043602a004200420056a2008370000200141b0016a41106a2903002108024020012802a404220520012802a80422046b4108490d0020012802a00421050c0b0b200441086a22062004490d0b200541017422042006200420064b1b22044100480d0b0240024020050d002004101e21050c010b20012802a00420052004102221050b02402005450d00200120043602a404200120053602a00420012802a80421040c0b0b20044101102d000b411a4101102d000b41344101102d000b41b8e7c50041920141cce8c5001045000b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41234101102d000b41c6004101102d000b41084101102d000b2001200441086a3602a804200520046a2008370000203b200141a0046a10ca0120282903002108200141b0016a41186a290300210f0240024020012802a404220420012802a80422066b4110490d0020012802a00421050c010b200641106a22052006490d01200441017422062005200620054b1b220a4100480d010240024020040d00200a101e21050c010b20012802a0042004200a102221050b02402005450d002001200a3602a404200120053602a00420012802a8042106200a21040c010b200a4101102d000b200520066a220a2008370008200a200f3700002001200641106a22063602a80402400240202d2802004101460d004100210a200141003a00b8060240024020042006470d00200441016a22062004490d042004410174220a2006200a20064b1b22064100480d040240024020040d002006101e21050c010b200520042006102221050b2005450d01200120063602a404200120053602a00420012d00b806210a20012802a80421060b2001200641016a3602a804200520066a200a3a00000c020b20064101102d000b4101210a200141013a00b806024002400240024020042006470d00200441016a22062004490d052004410174220a2006200a20064b1b22064100480d050240024020040d002006101e21050c010b200520042006102221050b2005450d01200120063602a404200120053602a00420012d00b806210a20012802a80421060b2001200641016a3602a804200520066a200a3a000020012802fc01210620012802a404220520012802a80422046b4104490d0120012802a00421050c020b20064101102d000b200441046a220a2004490d0220054101742204200a2004200a4b1b22044100480d020240024020050d002004101e21050c010b20012802a00420052004102221050b02402005450d00200120043602a404200120053602a00420012802a80421040c010b20044101102d000b2001200441046a3602a804200520046a20063600000b024002400240200141b0016a41d0006a2802004101460d00200141003a00b806024020012802a40420012802a8042204460d004100210620012802a00421050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b20012802a00420042006102221050b02402005450d00200120063602a404200120053602a00420012d00b806210620012802a80421040c020b20064101102d000b200141013a00b8060240024020012802a40420012802a8042204460d004101210620012802a00421050c010b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b20012802a00420042006102221050b02402005450d00200120063602a404200120053602a00420012d00b806210620012802a80421040c010b20064101102d000b2001200441016a3602a804200520046a20063a000020012802840221060240024020012802a404220520012802a80422046b4104490d0020012802a00421050c010b200441046a220a2004490d0320054101742204200a2004200a4b1b22044100480d030240024020050d002004101e21050c010b20012802a00420052004102221050b02402005450d00200120043602a404200120053602a00420012802a80421040c010b20044101102d000b2001200441046a3602a804200520046a20063600000c010b2001200441016a3602a804200520046a20063a00000b200141b0016a41306a2903002108200141b0016a41286a290300210f0240024020012802a404220620012802a80422056b4110490d0020012802a00421040c010b200541106a22042005490d01200641017422052004200520044b1b220a4100480d010240024020060d00200a101e21040c010b20012802a0042006200a102221040b02402004450d002001200a3602a404200120043602a00420012802a8042105200a21060c010b200a4101102d000b200420056a220a2008370008200a200f3700002001200541106a22053602a80420302903002108200141b0016a41386a290300210f200620056b410f4b0d02200541106a220a2005490d0020064101742205200a2005200a4b1b220541004e0d010b1027000b0240024020060d002005101e21040c010b200420062005102221040b2004450d01200120053602a404200120043602a00420012802a80421050b200420056a220420083700082004200f3700002001200541106a3602a804200c200141a0046a10940120012802a4042104200141e8046a412020012802a004220520012802a80410052004450d01200510200c010b20054101102d000b203fa7450d01200141e0056a200910ac03200141e8026a200141e0056a10ad0320012903d8034202510d022026202b2903003703002021202e290300370300201e202f290300370300203d203e2903003703002010201829030037030020132029290300370300200d200c2903003703002015200b41086a2902003703002019200b41106a2902003703002017200b41186a2902003703002036200b41206a2902003703002038200b41286a280200360200200120012903e802370388052001200b2902003703800620012802a80321042016200d29030037030020222013290300370300202020102903003703002039203d290300370300203c201e290300370300202a20212903003703002037202629030037030020012001290388053703a00420012903f003210f20012903e803213f2035203828020036020020332036290300370300200e20172903003703002011201929030037030020122015290300370300200120012903800637037020092108200f210920044102470d000b0b200141186a10b2032001290318210820012903202109200120003602900620012009370388062001200837038006200141e8026a20014180066a10b3030240200141c4036a220d28020022024102460d00200141d8036a2113200141e8026a41286a210c200141b0016a41286a2110200141e8026a41086a2103034020012903e8022108200141b0016a200341d00010cd051a200128028404210a200128028004210b0240024020020d0020012802c803200128029006470d0120012902f403210920012802fc032102200128028804210420012802c003210520014188056a200141b0016a41d00010cd051a200141e8026a20014188056a41d00010cd051a200141b0016a41206a20014188056a41206a290300370300200141b0016a41186a20014188056a41186a290300370300200141b0016a41106a20014188056a41106a290300370300200141b0016a41086a20014188056a41086a2903003703002010200c290300370300201041086a200c41086a290300370300201041106a200c41106a290300370300201041186a200c41186a290300370300201041206a200c41206a29030037030020012001290388053703b001200141e8026a200141b0016a41d00010cd051a20134200370300201341086a4200370300201341106a4100360200200141908cc5003602d403200120003602c403200141003a00c003200141013602bc03200120053602b80320012004360280042001200a3602fc032001200b3602f803200120023602f403200120093702ec032008200141e8026a10b403200141e8026a20014180066a10b30320012802c40322024102470d020c030b20012802dc03210220012802e4032104024020012802e0032205450d000340200228026021022005417f6a22050d000b0b02402004450d0041002105410021064100210703402001200536027c200120063602782001200236027420012007360270200141a0046a200141f0006a106120012802a804210720012802ac04210220012802b004210620012802b40421052004417f6a22040d000b0b200241908cc500460d0020022802002105200210202005450d0020052802002104200510202004450d00024020042802002202450d000340200410202002210420022802002205210220050d000b0b200410200b0240200a450d00200b10200b200141e8026a20014180066a10b30320012802c40322024102470d000b0b200141086a10b2032001290308210820012903102109200120003602b004200120093703a804200120083703a004200141e8026a200141a0046a10b3030240200d2802004102460d002001419c026a2138200141e8026a41086a2111200141b0016a41306a213e034020012903e8022108200141b0016a201141a00110cd051a024002402001280284024101460d004102210a0c010b4102210a0240024002400240024020012d0088024101470d0020012802b00420012802900220012802b40222026a470d0020012802800221190240024020012802a402450d0020012038360290052001200128029c0236028c05200120012802a0023602880520014180066a20014188056a10ea0220012802b40221260c010b2001420037028406200141908cc50036028006200221260b20012802b80221024102211320012802bc02211e20012802b002212020012802ac02212220012802a802211641022103024020012802c00122044102460d0020012d00d001410146211b20012802c801410146210c20044101462103200141b0016a41086a290300212520012903b001211420012802cc01211020012802c401211a0b024020012802e80122044102460d0020012d00f801410146211820012802f001410146210d20044101462113203e290300212420012903d801212320012802f401210e20012802ec01211c0b20012802c802220b417f4c0d0120012802c002210402400240200b0d00410121120c010b200b101e2212450d030b20122004200b10cd051a2001280288062115200128028406211d20012802800621170240024020012802a402450d0020012038360290052001200128029c0236028c05200120012802a0023602880520014180066a20014188056a10ea020c010b2001420037028406200141908cc500360280060b20024101462121200141f0006a41086a20014180066a41086a28020036020020012001290380063703702001280290022136200128028c02213d4101210a20082127200128028402450d050b20012802a4022104200128029c022102024020012802a0022205450d000340200228026021022005417f6a22050d000b0b02402004450d0041002105410021064100210703402001200536028c0620012006360288062001200236028406200120073602800620014188056a20014180066a1061200128029005210720012802940521022001280298052106200128029c0521052004417f6a22040d000b0b200241908cc500460d0420022802002105200210202005450d0420052802002104200510202004450d04200428020022020d020c030b102c000b200b4101102d000b0340200410202002210420022802002205210220050d000b0b200410200b024020012802c402450d0020012802c00210200b0240200a4102470d00200141e8026a200141a0046a10b30320012802c4034102470d010c020b200141e0056a41086a200141f0006a41086a28020022023602002001200129037022083703e00520014180066a41086a20023602002001200837038006200d4101462013410247712107200c410146200341024771210a2018ad2109201bad210f2008a721020240024020012802840622050d00200221040c010b20022104200521060340200428026021042006417f6a22060d000b0340200220022f01064102746a41e0006a28020021022005417f6a22050d000b0b200942ff01832108200f42ff0183210920022f010621052001280288062106200142003702b401200141908cc5003602b00120012006360288032001200536028403200120023602fc02200142003702f402200120043602ec02200141003602e802200120014180066a36028003200120014180066a3602f002200141e8026a200141b0016a10b50320014188056a41086a20012802b801360200200120012903b001220f37038805200141053a00e8042001200e3602b401200120073602b001200120103602742001200a360270200fa7210202400240200128028c0522050d00200221040c010b2002210420052106034020042802f80621042006417f6a22060d000b0340200220022f01064102746a41f8066a28020021022005417f6a22050d000b0b200120012802900536028803200142003702f402200120043602ec02200141003602e802200120023602fc02200120022f010636028403200120014188056a36028003200120014188056a3602f0022001200141e8046a360294032001200141b0016a360290032001200141f0006a36028c03200141e8026a10b603200141e8026a41306a20243703002001202337039003200120253703f002200120143703e8022001200b360280042001200b3602fc03200120123602f8032001201e3602f403200120213602f003200120263602ec03200120203602e803200120223602e403200120163602e003200120153602dc032001201d3602d803200120173602d403200120363602d003200141013602cc032001203d3602c803200120003602c40320014182063b01c003200141013602bc03200120193602b803200120083703b0032001200e3602ac032001200d3602a8032001201c3602a403200120133602a003200120093703880320012010360284032001200c360280032001201a3602fc02200120033602f8022027200141e8026a10b403200128028805200128028c0520012802900510b7032001280288062104200128028006210202402001280284062205450d000340200228026021022005417f6a22050d000b0b02402004450d004100210541002106410021070340200120053602bc01200120063602b801200120023602b401200120073602b001200141e8026a200141b0016a106120012802f002210720012802f402210220012802f802210620012802fc0221052004417f6a22040d000b0b0240200241908cc500460d0020022802002105200210202005450d0020052802002104200510202004450d00024020042802002202450d000340200410202002210420022802002205210220050d000b0b200410200b200141e8026a200141a0046a10b30320012802c4034102470d000b0b200141c0066a24000f0b418ddbc50041dd0041ecdbc5001045000b418ddbc50041dd0041ecdbc5001045000b1027000bce1304057f017e047f047e230041f0016b2201240020014188016a41086a22024200370300200142003703880141b880c700411520014188016a1000200141b0016a41086a2203200229030037030020012001290388013703b001200141b0016a4110100420024200370300200142003703880141cd80c700411a20014188016a10002003200229030037030020012001290388013703b001200141b0016a4110100420024200370300200142003703880141e780c700411720014188016a10002003200229030037030020012001290388013703b001200141b0016a411010042002420037030020014200370388014195fcc000410d20014188016a10002003200229030037030020012001290388013703b001410021032001410036028801200141b0016a411020014188016a10032102024002400240024002402001280288012204417f460d002002450d0020044104490d012002280000210320021020200141b0016a411010040b20014188016a41086a2202420037030020014200370388014184fcc000411120014188016a1000200141b0016a41086a200229030037030020012001290388013703b00120014188016a200141b0016a41101069024002400240024020012d00880122040d00200141e8016a200141a1016a290000370300200141d0016a41106a20014188016a41116a290000370300200141d0016a41086a20014191016a29000037030020012001290089013703d001200141d0016a21020c010b200141b0016a41101004200141d0016a41186a2205200141a1016a290000370300200141d0016a41106a20014188016a41116a290000370300200141d0016a41086a20014191016a29000037030020012001290089013703d001200141d0016a210220044101460d010b200141206a4200370300200141186a4200370300200141106a4200370300200142003703080c010b200141086a41186a2005290300370300200141086a41106a200141d0016a41106a290300370300200141086a41086a200141d0016a41086a290300370300200120012903d001370308200141d0016a21020b4200210620014188016a41086a22044200370300200142003703880141b7fcc000410d20014188016a1000200141b0016a41086a200429030037030020012001290388013703b0012001410036028801200141b0016a411020014188016a10032104024002402001280288012205417f470d00410421070c010b024020040d00410421070c010b200120053602d401200120043602d00120014188016a200141d0016a10fd012001280288012207450d02200129028c01210602402005450d00200410200b200141b0016a411010040b20014188016a41086a22044200370300200142003703880141a2fcc000411520014188016a1000200141b0016a41086a200429030037030020012001290388013703b00120014188016a200141b0016a41101069024002400240024020012d00880122040d002002200129008901370000200241186a200141a1016a290000370000200241106a20014199016a290000370000200241086a20014191016a2900003700000c010b200141b0016a41101004200241186a2205200141a1016a290000370000200241106a20014199016a290000370000200241086a20014191016a290000370000200220012900890137000020044101460d010b200141c0006a4200370300200141386a4200370300200141306a4200370300200142003703280c010b200141286a41186a2005290000370300200141286a41106a200241106a290000370300200141286a41086a200241086a290000370300200120022900003703280b0240200341fb01490d00200341857e6a2204450d004110101e2202450d03200241086a41002900ccfc40370000200241002900c4fc4037000020024110412010222202450d0420022004360010200141b0016a41186a22044200370300200141b0016a41106a22054200370300200141b0016a41086a22084200370300200142003703b00120024114200141b0016a1001200141d0016a41186a2004290300370300200141d0016a41106a2005290300370300200141d0016a41086a2008290300370300200120012903b0013703d00120021020200141d0016a412010040b200141b0016a41186a22024200370300200141b0016a41106a22044200370300200141b0016a41086a22054200370300200142003703b001200141b0016a1013200141c8006a41186a2002290300370300200141c8006a41106a2004290300370300200141c8006a41086a2005290300370300200120012903b00137034820014188016a41186a2208200141086a41186a29030037030020014188016a41106a2209200141086a41106a29030037030020014188016a41086a220a200141086a41086a2903003703002001200129030837038801200242003703002004420037030020054200370300200142003703b00102400240024020014188016a4120200141b0016a1014450d00200141e8006a41086a2005290300220b370300200141e8006a41106a2004290300220c370300200141e8006a41186a2002290300220d370300200120012903b001220e370368200a200b3703002009200c3703002008200d3703002001200e37038801024002402006422088220ba722022006a7460d002006210c0c010b200241016a22042002490d03200ba74101742205200420042005491bad220c42247e220b422088a70d03200ba722044100480d030240024020020d002004101e21070c010b2007200241246c2004102221070b2007450d022006422088220ba721020b2007200241246c6a220241003a00002002200129038801370001200241096a20014190016a290300370000200241116a20014198016a290300370000200241196a200141a0016a290300370000200220012f00d0013b0021200241236a200141d2016a2d00003a0000200b422086200c42ffffffff0f83844280808080107c21060b200020012903083700102000200336020020002001290348370030200041286a200141086a41186a290300370000200041206a200141086a41106a290300370000200041186a200141086a41086a290300370000200041386a200141c8006a41086a290300370000200041c0006a200141c8006a41106a290300370000200041c8006a200141c8006a41186a290300370000200041086a200637020020002007360204200041e8006a200141286a41186a290300370000200041e0006a200141286a41106a290300370000200041d8006a200141286a41086a29030037000020002001290328370050200141f0016a24000f0b20044104102d000b1027000b41ceb8c400413320014188016a41fcbfc4004184b9c400102e000b41ceb8c400413320014188016a41fcbfc4004184b9c400102e000b41104101102d000b41204101102d000baa1701057f230041106b2202240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e050104020300010b20024100360208200242013703004101101e2203450d05200242818080801037020420022003360200200341003a0000200141046a280200210420022001410c6a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c190b200320016a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c190b20034101102d000b200241003602082002420137030002404101101e2203450d00200242818080801037020420022003360200200341023a00002002200236020c200141016a2002410c6a10b9010c190b41014101102d000b20024100360208200242013703004101101e2203450d04200242818080801037020420022003360200200341043a000020012d0001210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0820022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0002210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0920022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0003210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0a20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0004210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d03200341017422062005200620054b1b22064100480d030240024020030d002006101e21050c010b200228020020032006102221050b2005450d0b20022006360204200220053602000b2002200341016a360208200520036a20043a0000200128020821042002200141106a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c160b200320016a22062003490d02200541017422032006200320064b1b22034100480d020240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c160b20034101102d000b20024100360208200242013703004101101e2203450d04200242818080801037020420022003360200200341053a000020012d0001210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0b20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0002210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0c20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0003210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0d20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0004210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d02200341017422062005200620054b1b22064100480d020240024020030d002006101e21050c010b200228020020032006102221050b2005450d0e20022006360204200220053602000b2002200341016a360208200520036a20043a0000200128020821042002200141106a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c140b200320016a22062003490d01200541017422032006200320064b1b22034100480d010240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c140b20034101102d000b20024100360208200242013703004101101e2203450d04200242818080801037020420022003360200200341063a000020012d0001210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d0e20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0002210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d0f20022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0003210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d1020022006360204200220053602000b2002200341016a360208200520036a20043a000020012d0004210402400240200228020420022802082203460d00200228020021050c010b200341016a22052003490d01200341017422062005200620054b1b22064100480d010240024020030d002006101e21050c010b200228020020032006102221050b2005450d1120022006360204200220053602000b2002200341016a360208200520036a20043a0000200128020821042002200141106a280200220136020c2002410c6a20021063024020022802042205200228020822036b2001490d00200228020021050c120b200320016a22062003490d00200541017422032006200320064b1b22034100480d000240024020050d002003101e21050c010b200228020020052003102221050b02402005450d002002200336020420022005360200200228020821030c120b20034101102d000b1027000b41014101102d000b41014101102d000b41014101102d000b41014101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b20064101102d000b2002200320016a360208200520036a2004200110cd051a0c030b2002200320016a360208200520036a2004200110cd051a0c020b2002200320016a360208200520036a2004200110cd051a0c010b2002200320016a360208200520036a2004200110cd051a0b200020022201290200370200200041086a200141086a280200360200200241106a24000ba70201037f412e21024180e8c60021030240024002402001417e6a22044102200441ff01714102491b41ff01710e03020100020b20014180feff0771410876210402402001410171450d00411f210241d4eac600210302400240200441ff01710e03000104000b41c100210241b4ebc60021030c030b41c100210241f3eac60021030c020b411f210241aee8c60021030240024002400240024002400240200441ff01710e080006010203040508000b4120210241b4eac60021030c070b4127210241d4e9c60021030c060b4117210241bde9c60021030c050b419ee9c60021030c040b4126210241f8e8c60021030c030b412b210241cde8c60021030c020b4139210241fbe9c60021030c010b4130210241d0e7c60021030b20002002360204200020033602000bb00201037f23004180016b220224002000280200210002400240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103521000c020b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000ba50301027f23004180026b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b20022001360204200241f8006a200210ad010240200228027c450d00200241086a200241f8006a41f00010cd051a200241086a10a0010240200241086a410c6a2802002200450d00200228020c2101200041246c210003400240024020012d0000220341034b0d0002400240024020030e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b0240200241106a280200450d00200228020c10200b20024180026a240042010f0b200241f4016a41043602002002411c6a41023602002002420237020c200241fcc3c000360208200241043602ec01200241c4c4c0003602e801200241003602fc01200241e4fdc6003602f8012002200241e8016a3602182002200241f8016a3602f001200241086a418cc4c0001033000b9f0a03077f037e057f230041d0026b2202240041002103200241003a00c8022001280204417f6a210402400240024002400240024003402004417f460d01200241a8026a20036a200128020022052d00003a0000200120043602042001200541016a3602002002200341016a22053a00c8022004417f6a21042005210320054120470d000b200241e8006a41086a200241a8026a41086a290300370300200241e8006a41106a200241a8026a41106a290300370300200241e8006a41186a200241a8026a41186a290300370300200220022903a80237036820022001105f20022802000d022002280204210641002104200241003a00c80220012802042107417f2103034020072004460d02200241a8026a20046a200128020022082d00003a00002001200720036a3602042001200841016a3602002002200441016a22053a00c8022003417f6a21032005210420054120470d000b200241a8016a41086a200241a8026a41086a2903002209370300200241a8016a41106a200241a8026a41106a290300220a370300200241a8016a41186a200241a8026a41186a290300220b37030020024188016a41086a200937030020024188016a41106a200a37030020024188016a41186a200b370300200220022903a80222093703a801200220093703880141002104200241003a00c802200720056b210c200720036a21030340200c2004460d04200241a8026a20046a200820046a220541016a2d00003a0000200120033602042001200541026a3602002002200441016a22053a00c8022003417f6a21032005210420054120470d000b200241e8016a41086a200241a8026a41086a2903002209370300200241e8016a41106a200241a8026a41106a290300220a370300200241e8016a41186a200241a8026a41186a290300220b370300200241c8016a41086a22042009370300200241c8016a41106a2203200a370300200241c8016a41186a2205200b370300200220022903a80222093703e801200220093703c801200241a8026a200110fd0120022802a8022201450d04200241c8006a41086a2208200241e8006a41086a290300370300200241c8006a41106a2207200241e8006a41106a290300370300200241c8006a41186a220c200241e8006a41186a290300370300200241286a41086a220d20024188016a41086a290300370300200241286a41106a220e20024188016a41106a290300370300200241286a41186a220f20024188016a41186a29030037030020022002290368370348200220022903880137032820022902ac022109200241086a41186a22102005290300370300200241086a41106a22052003290300370300200241086a41086a22032004290300370300200220022903c801370308200020093702082000200136020420002006360200200041106a2002290348370200200041186a2008290300370200200041206a2007290300370200200041286a200c290300370200200041306a2002290328370200200041386a200d290300370200200041c0006a200e290300370200200041c8006a200f290300370200200041e8006a2010290300370200200041e0006a2005290300370200200041d8006a2003290300370200200041d0006a20022903083702000c050b0240200341ff0171450d00200241003a00c8020b200041003602040c040b0240200441ff0171450d00200241003a00c8020b200041003602040c030b200041003602040c020b0240200441ff0171450d00200241003a00c8020b200041003602040c010b200041003602040b200241d0026a24000bfd2e020b7f017e230041d0006b22022400200241003602282002420137032002400240024002400240024002404104101e2203450d0020024284808080c00037022420022003360220200341edcad18b063600000240200228022420022802282203460d00200228022021040c020b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200228022020032005102221040b02402004450d0020022005360224200220043602200c020b20054101102d000b41044101102d000b2002200341016a360228200420036a41083a00004123200241206a10af0141b4c6c100210603402006280204210720062802082203200241206a10af010240024002400240024002400240024020022802242205200228022822046b2003490d00200228022021050c010b200420036a22082004490d08200541017422042008200420084b1b22044100480d080240024020050d002004101e21050c010b200228022020052004102221050b2005450d012002200436022420022005360220200228022821040b2002200420036a360228200520046a2007200310cd051a20022802242104200228022821030240200628020c4102470d00024020042003460d00200228022021040c060b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228022020032005102221040b02402004450d002002200536022420022004360220200228022821030c060b20054101102d000b0240024020042003460d00200228022021040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228022020032005102221040b2004450d022002200536022420022004360220200228022821030b2002200341016a360228200420036a41013a00000240200628020c4101470d002006280214210720062802182203200241206a10af010240024020022802242205200228022822046b2003490d00200228022021050c010b200420036a22082004490d09200541017422042008200420084b1b22044100480d090240024020050d002004101e21050c010b200228022020052004102221050b2005450d042002200436022420022005360220200228022821040b2002200420036a360228200520046a2007200310cd051a200628022021030240200628021c4101470d0020032006280228200241206a10b0010c070b2003200641246a280200200241206a10b0010c060b200241306a20062802101102002002280234210720022802382203200241206a10af010240024020022802242205200228022822046b2003490d00200228022021050c010b200420036a22082004490d08200541017422042008200420084b1b22044100480d080240024020050d002004101e21050c010b200228022020052004102221050b2005450d042002200436022420022005360220200228022821040b2002200420036a360228200520046a2007200310cd051a200228024021050240200228023c4101460d0020052002280244200241206a10b0010c060b200520022802482203200241206a10b00102402003450d00200341d8006c21074100210403400240200520046a220341346a280200450d002003413c6a280200450d00200341386a28020010200b0240200341c4006a280200450d00200341cc006a280200450d00200341c8006a28020010200b2007200441d8006a2204470d000b0b2002280244450d05200510200c050b20044101102d000b20054101102d000b20044101102d000b20044101102d000b2002200341016a360228200420036a41003a00000b2002280224210420022802282103024002400240200628022c4102470d00024020042003460d00200228022021040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200228022020032005102221040b02402004450d002002200536022420022004360220200228022821030c020b20054101102d000b024002400240024020042003460d00200228022021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022020032005102221040b2004450d012002200536022420022004360220200228022821030b2002200341016a360228200420036a41013a0000200628022c4101470d012006280230210420062802382203200241206a10af012003450d032003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0720074101742205200a2005200a4b1b22054100480d070240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b1012003200241206a10b2012003412c6a2103200841546a22080d000c040b0b20054101102d000b200241186a200628023011020020022802182104200228021c2203200241206a10af012003450d012003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0520074101742205200a2005200a4b1b22054100480d050240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b1012003200241206a10b2012003412c6a2103200841546a22080d000c020b0b2002200341016a360228200420036a41003a00000b2002280224210420022802282103024002400240200628023c4102470d00024020042003460d00200228022021040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200228022020032005102221040b02402004450d002002200536022420022004360220200228022821030c020b20054101102d000b024002400240024020042003460d00200228022021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022020032005102221040b2004450d012002200536022420022004360220200228022821030b2002200341016a360228200420036a41013a0000200628023c4101470d012006280240210420062802482203200241206a10af012003450d032003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0720074101742205200a2005200a4b1b22054100480d070240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b2012003200241206a10b2012003412c6a2103200841546a22080d000c040b0b20054101102d000b200241106a20062802401102002002280210210420022802142203200241206a10af012003450d012003412c6c21082004411c6a21030340200341686a28020021092003416c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0520074101742205200a2005200a4b1b22054100480d050240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a200341706a200241206a10b2012003200241206a10b2012003412c6a2103200841546a22080d000c020b0b2002200341016a360228200420036a41003a00000b02400240200628024c4101470d002006280250210b20062802582203200241206a10af012003450d01200341386c210c410021070340200b20076a220341046a2802002109200341086a2802002204200241206a10af01024002400240024002400240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0a20084101742205200a2005200a4b1b22054100480d0a0240024020080d002005101e21080c010b200228022020082005102221080b2008450d012002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a200341106a2802002109200341146a2802002204200241206a10af010240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0a20084101742205200a2005200a4b1b22054100480d0a0240024020080d002005101e21080c010b200228022020082005102221080b2008450d022002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a0240200341186a2802004101470d002003411c6a2802002109200341246a2802002204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c050b200520046a220a2005490d0a20084101742205200a2005200a4b1b22054100480d0a0240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c050b20054101102d000b200241306a2003411c6a280200200341206a28020028020c1103002002280230210920022802382204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c030b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c030b20054101102d000b20054101102d000b20054101102d000b2002200520046a360228200820056a2009200410cd051a2002280234450d01200910200c010b2002200520046a360228200820056a2009200410cd051a0b200341286a200241206a10b201200c200741386a2207470d000c020b0b200241086a20062802501102002002280208210b200228020c2203200241206a10af012003450d00200341386c210c410021070340200b20076a220341046a2802002109200341086a2802002204200241206a10af01024002400240024002400240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b2008450d012002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a200341106a2802002109200341146a2802002204200241206a10af010240024020022802242208200228022822056b2004490d00200228022021080c010b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b2008450d022002200536022420022008360220200228022821050b2002200520046a360228200820056a2009200410cd051a0240200341186a2802004101470d002003411c6a2802002109200341246a2802002204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c050b200520046a220a2005490d0920084101742205200a2005200a4b1b22054100480d090240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c050b20054101102d000b200241306a2003411c6a280200200341206a28020028020c1103002002280230210920022802382204200241206a10af01024020022802242208200228022822056b2004490d00200228022021080c030b200520046a220a2005490d0820084101742205200a2005200a4b1b22054100480d080240024020080d002005101e21080c010b200228022020082005102221080b02402008450d002002200536022420022008360220200228022821050c030b20054101102d000b20054101102d000b20054101102d000b2002200520046a360228200820056a2009200410cd051a2002280234450d01200910200c010b2002200520046a360228200820056a2009200410cd051a0b200341286a200241206a10b201200c200741386a2207470d000b0b02400240200628025c4101470d002006280260210420062802682203200241206a10af012003450d012003411c6c21082004410c6a21030340200341786a28020021092003417c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0520074101742205200a2005200a4b1b22054100480d050240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a2003200241206a10b2012003411c6a2103200841646a22080d000c020b0b200220062802601102002002280200210420022802042203200241206a10af012003450d002003411c6c21082004410c6a21030340200341786a28020021092003417c6a2802002204200241206a10af010240024020022802242207200228022822056b2004490d00200228022021070c010b200520046a220a2005490d0420074101742205200a2005200a4b1b22054100480d040240024020070d002005101e21070c010b200228022020072005102221070b02402007450d002002200536022420022007360220200228022821050c010b20054101102d000b2002200520046a360228200720056a2009200410cd051a2003200241206a10b2012003411c6a2103200841646a22080d000b0b200641ec006a220641f8e3c100470d000b2002280228220341046a2204417f4c0d0220022802242109200228022021080240024002400240024002400240024002402004450d002004101e2205450d0c200341c000490d07200341808001490d0520034180808080044f0d010240200441034b0d00200441017422074104200741044b1b22074100480d0a20052004200710222205450d07200721040b20052003410274410272360000410421070c080b4101210402404101101e2205450d00200541033a0000410521070c020b41014101102d000b200541033a00002004417f6a41044f0d01200441017422074105200741054b1b22074100480d070b20052004200710222205450d01200721040b20052003360001410521070c040b20074101102d000b0240200441014b0d0020052004200441017422074102200741024b1b220710222205450d08200721040b41022107200520034102744101723b00000c020b20074101102d000b200520034102743a0000410121070b200420076b20034f0d01200720036a22062007490d002004410174220a2006200a20064b1b22064100480d00200520042006102222050d0120064101102d000b1027000b200520076a2008200310cd051a200720036aad4220862005ad84210d02402009450d00200810200b200241d0006a2400200d0f0b102c000b20044101102d000b20074101102d000b950701037f024002400240024002400240024002400240200041c000490d00200041808001490d012000418080808004490d0202400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d04200241017422042003200420034b1b22044100480d040240024020020d002004101e21030c010b200128020020022004102221030b2003450d0520012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41033a00000240200141046a2802002203200428020022026b4104490d00200128020021030c090b200241046a22042002490d03200341017422022004200220044b1b22024100480d030240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c090b20024101102d000b0240200141046a280200200141086a2802002202460d00200128020021030c070b200241016a22032002490d02200241017422042003200420034b1b22044100480d020240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c070b20044101102d000b0240200141046a2802002203200141086a28020022026b4102490d00200128020021030c050b200241026a22042002490d01200341017422022004200220044b1b22024100480d010240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c050b20024101102d000b0240200141046a2802002203200141086a28020022026b4104490d00200128020021030c030b200241046a22042002490d00200341017422022004200220044b1b22024100480d000240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c030b20024101102d000b1027000b20044101102d000b200141086a200241046a360200200320026a20004102744102723600000f0b200141086a200241026a360200200320026a20004102744101723b00000f0b200141086a200241016a360200200320026a20004102743a00000f0b200141086a200241046a360200200320026a20003600000bb51d010a7f230041106b220324002001200210af0102402001450d00200141d8006c2104410021050340200020056a220641046a2802002107200641086a2802002208200210af0102400240024002400240024002400240200241046a2209280200220a200241086a2201280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d03200a410174220b200c200b200c4b1b220b4100480d0302400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d012002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a200641d4006a2d0000210a0240200928020020012802002208460d002002280200210b0c020b200841016a220b2008490d0220084101742207200b2007200b4b1b22074100480d020240024020080d002007101e210b0c010b2002280200200820071022210b0b0240200b450d002002200b36020020092007360200200128020021080c020b20074101102d000b200b4101102d000b2001200841016a360200200b20086a200a3a000002402006410c6a2d0000220841024b0d0002400240024002400240024002400240024002400240024002400240024020080e03000102000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d102008410174220a200b200a200b4b1b220a4100480d100240024020080d00200a101e210b0c010b20022802002008200a1022210b0b200b450d032002200b3602002009200a360200200128020021080b2001200841016a360200200b20086a41003a0000200641146a2802002107200641186a2802002208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c0e0b200b20086a220c200b490d0f200a410174220b200c200b200c4b1b220b4100480d0f02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c0e0b200b4101102d000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0f2008410174220a200b200a200b4b1b220a4100480d0f0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b200b450d032002200b3602002009200a360200200128020021080b2001200841016a360200200b20086a41013a00002006410d6a2d0000210a02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0f20084101742207200b2007200b4b1b22074100480d0f0240024020080d002007101e210b0c010b2002280200200820071022210b0b200b450d042002200b36020020092007360200200128020021080b2001200841016a360200200b20086a200a3a0000200641146a2802002107200641186a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0f200a410174220b200c200b200c4b1b220b4100480d0f02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d052002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a200641206a2802002107200641246a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0f200a410174220b200c200b200c4b1b220b4100480d0f02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d062002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a2006410e6a2d0000210a0240200928020020012802002208460d002002280200210b0c0c0b200841016a220b2008490d0e20084101742207200b2007200b4b1b22074100480d0e0240024020080d002007101e210b0c010b2002280200200820071022210b0b0240200b450d002002200b36020020092007360200200128020021080c0c0b20074101102d000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0e2008410174220a200b200a200b4b1b220a4100480d0e0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b200b450d062002200b3602002009200a360200200128020021080b2001200841016a360200200b20086a41023a00002006410d6a2d0000210a02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d0e20084101742207200b2007200b4b1b22074100480d0e0240024020080d002007101e210b0c010b2002280200200820071022210b0b200b450d072002200b36020020092007360200200128020021080b2001200841016a360200200b20086a200a3a0000200641146a2802002107200641186a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0e200a410174220b200c200b200c4b1b220b4100480d0e02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d082002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a200641206a2802002107200641246a2802002208200210af01024002402009280200220a2001280200220b6b2008490d002002280200210a0c010b200b20086a220c200b490d0e200a410174220b200c200b200c4b1b220b4100480d0e02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b200a450d092002200a3602002009200b3602002001280200210b0b2001200b20086a360200200a200b6a2007200810cd051a2006412c6a2802002107200641306a2802002208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c0a0b200b20086a220c200b490d0d200a410174220b200c200b200c4b1b220b4100480d0d02400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c0a0b200b4101102d000b200a4101102d000b200a4101102d000b20074101102d000b200b4101102d000b200b4101102d000b200a4101102d000b20074101102d000b200b4101102d000b200b4101102d000b2001200b20086a360200200a200b6a2007200810cd051a2006410e6a2d0000220841044b0d0202400240024002400240024002400240024020080e050001020304000b0240200928020020012802002208460d002002280200210b0c080b200841016a220b2008490d0b2008410174220a200b200a200b4b1b220a4100480d0b0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c080b200a4101102d000b0240200928020020012802002208460d002002280200210b0c060b200841016a220b2008490d0a2008410174220a200b200a200b4b1b220a4100480d0a0240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c060b200a4101102d000b0240200928020020012802002208460d002002280200210b0c040b200841016a220b2008490d092008410174220a200b200a200b4b1b220a4100480d090240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c040b200a4101102d000b0240200928020020012802002208460d002002280200210b0c020b200841016a220b2008490d082008410174220a200b200a200b4b1b220a4100480d080240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c020b200a4101102d000b02400240200928020020012802002208460d002002280200210b0c010b200841016a220b2008490d082008410174220a200b200a200b4b1b220a4100480d080240024020080d00200a101e210b0c010b20022802002008200a1022210b0b0240200b450d002002200b3602002009200a360200200128020021080c010b200a4101102d000b2001200841016a360200200b20086a41043a00000c060b2001200841016a360200200b20086a41033a00000c050b2001200841016a360200200b20086a41023a00000c040b2001200841016a360200200b20086a41013a00000c030b2001200841016a360200200b20086a41003a00000c020b2001200841016a360200200b20086a200a3a00000c010b2001200b20086a360200200a200b6a2007200810cd051a0b0240200641346a2802004101470d00200641386a2802002107200641c0006a2802002208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c040b200b20086a220c200b490d01200a410174220b200c200b200c4b1b220b4100480d0102400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c040b200b4101102d000b2003200641386a2802002006413c6a28020028020c1103002003280200210720032802082208200210af0102402009280200220a2001280200220b6b2008490d002002280200210a0c020b200b20086a220c200b490d00200a410174220b200c200b200c4b1b220b4100480d0002400240200a0d00200b101e210a0c010b2002280200200a200b1022210a0b0240200a450d002002200a3602002009200b3602002001280200210b0c020b200b4101102d000b1027000b2001200b20086a360200200a200b6a2007200810cd051a2003280204450d01200710200c010b2001200b20086a360200200a200b6a2007200810cd051a0b200641c4006a200210b2012004200541d8006a2205470d000b0b200341106a24000b880701087f2000280204210202400240024020002802004101470d002000410c6a2802002200200110af012000450d01200041186c2103200241146a2100200141086a2102200141046a21040340200041706a2802002105200041746a2802002206200110af01024002400240024020042802002207200228020022086b2006490d00200128020021070c010b200820066a22092008490d06200741017422082009200820094b1b22084100480d060240024020070d002008101e21070c010b200128020020072008102221070b2007450d012001200736020020042008360200200228020021080b2002200820066a360200200720086a2005200610cd051a2000417c6a280200210520002802002206200110af01024020042802002207200228020022086b2006490d00200128020021070c020b200820066a22092008490d05200741017422082009200820094b1b22084100480d050240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020042008360200200228020021080c020b20084101102d000b20084101102d000b2002200820066a360200200720086a2005200610cd051a200041186a2100200341686a22030d000c020b0b200041086a2802002200200110af012000450d00200041186c2103200241146a2100200141086a2102200141046a21040340200041706a2802002105200041746a2802002206200110af01024002400240024020042802002207200228020022086b2006490d00200128020021070c010b200820066a22092008490d05200741017422082009200820094b1b22084100480d050240024020070d002008101e21070c010b200128020020072008102221070b2007450d012001200736020020042008360200200228020021080b2002200820066a360200200720086a2005200610cd051a2000417c6a280200210520002802002206200110af01024020042802002207200228020022086b2006490d00200128020021070c020b200820066a22092008490d04200741017422082009200820094b1b22084100480d040240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020042008360200200228020021080c020b20084101102d000b20084101102d000b2002200820066a360200200720086a2005200610cd051a200041186a2100200341686a22030d000b0b0f0b1027000b880401087f2000280204210202400240024020002802004101470d002000410c6a2802002200200110af0120004103742200450d01200220006a2103200141086a2104034020022802002105200241046a2802002200200110af0102400240200141046a22062802002207200428020022086b2000490d00200128020021070c010b200820006a22092008490d04200741017422082009200820094b1b22084100480d040240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020062008360200200428020021080c010b20084101102d000b2004200820006a360200200720086a2005200010cd051a200241086a22022003470d000c020b0b200041086a2802002200200110af0120004103742200450d00200220006a2103200141086a2104034020022802002105200241046a2802002200200110af0102400240200141046a22062802002207200428020022086b2000490d00200128020021070c010b200820006a22092008490d03200741017422082009200820094b1b22084100480d030240024020070d002008101e21070c010b200128020020072008102221070b02402007450d002001200736020020062008360200200428020021080c010b20084101102d000b2004200820006a360200200720086a2005200010cd051a200241086a22022003470d000b0b0f0b1027000bc30e02037f027e230041c0086b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b20022001360204200241d8056a200210b4010240024002400240024002400240024002400240024020022903c0064203510d00200241186a200241d8056a41d80210cd051a200241f0026a200241186a41d80210cd051a200241c8056a200241f0026a10a20120022802d0052101200241d8056a200241f0026a41d80210cd051a200241b8086a20022802d005360200200220022903c8053703b008200241086a200241d8056a2001200241b0086a10a4014101410220022d000822004101461b2203101e2201450d01200241003602e005200220033602dc05200220013602d805024020004101470d00200241013602e005200141013a000020022d0009417e6a22014102200141ff01714102491b41ff0171220141024b0d0b02400240024020010e03000102000b024020022802dc0520022802e0052201460d0020022802d80521000c0d0b200141016a22002001490d07200141017422032000200320004b1b22034100480d070240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c0d0b20034101102d000b024020022802dc0520022802e0052201460d0020022802d80521000c0b0b200141016a22002001490d06200141017422032000200320004b1b22034100480d060240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c0b0b20034101102d000b024020022802dc0520022802e0052201460d0020022802d80521000c090b200141016a22002001490d05200141017422032000200320004b1b22034100480d050240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c090b20034101102d000b200241013602e005200141003a000020022802dc05210020022802e00521010240200241146a2d000022034102460d00024020002001460d0020022802d80521000c050b200141016a22002001490d05200141017422042000200420004b1b22044100480d050240024020010d002004101e21000c010b20022802d80520012004102221000b02402000450d00200220043602dc05200220003602d80520022802e00521010c050b20044101102d000b024020002001460d0020022802d80521000c030b200141016a22002001490d04200141017422032000200320004b1b22034100480d040240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c030b20034101102d000b200241246a410436020020024184036a4102360200200242023702f402200241fcc3c0003602f0022002410436021c200241dcc4c0003602182002410036020c200241e4fdc6003602082002200241186a360280032002200241086a360220200241f0026a418cc4c0001033000b20034101102d000b2002200141016a3602e005200020016a41003a00000c070b2002200141016a3602e005200020016a41013a000041002104024020034101470d000240024020022802dc0520022802e0052201460d0020022802d80521000c010b200141016a22002001490d02200141017422032000200320004b1b22034100480d020240024020010d002003101e21000c010b20022802d80520012003102221000b02402000450d00200220033602dc05200220003602d80520022802e00521010c010b20034101102d000b2002200141016a3602e005200020016a41013a000020022d001521040b0240024020022802dc0520022802e0052201460d0020022802d80521000c010b200141016a22002001490d01200141017422032000200320004b1b22034100480d010240024020010d002003101e21000c010b20022802d80520012003102221000b2000450d02200220033602dc05200220003602d80520022802e00521010b2002200141016a3602e005200020016a20043a0000200241166a2d00002103024020022802dc0520022802e0052201460d0020022802d80521000c030b200141016a22002001490d00200141017422042000200420004b1b22044100480d000240024020010d002004101e21000c010b20022802d80520012004102221000b02402000450d00200220043602dc05200220003602d80520022802e00521010c030b20044101102d000b1027000b20034101102d000b2002200141016a3602e005200020016a20033a00000c030b2002200141016a3602e005200020016a41023a0000200241086a410172200241d8056a10b5010c020b2002200141016a3602e005200020016a41013a00000c010b2002200141016a3602e005200020016a41003a00000b20023502e005210520023502d8052106200241c0086a240020062005422086840bf41104047f017e037f047e23004190076b22022400200241206a2001105f024002400240024002400240024020022802200d00024020022802242203450d0003402003417f6a22030d000b0b20012802042203450d01200128020022042d0000210520012003417f6a3602042001200441016a360200200541ff00714104470d0220054118744118754100480d03420221060c040b200042033703680c050b200042033703680c040b200042033703680c030b200241e8056a20011096030240024020022d00e8054102460d00200241c0056a41206a200241e8056a41206a280200360200200241c0056a41186a200241e8056a41186a290300370300200241c0056a41106a200241e8056a41106a290300370300200241c0056a41086a200241e8056a41086a290300370300200220022903e8053703c00520012802042205450d00200128020022042d0000210320012005417f6a3602042001200441016a360200200341024b0d00024002400240024002400240024020030e03000102000b41002103200241003a00c0042005417f6a2107417e21080240034020072003460d0120024180046a20036a200420036a220941016a2d00003a00002001200520086a3602042001200941026a3602002002200341016a22093a00c0042008417f6a210820092103200941c000470d000b200241d0066a41386a20024180046a41386a2903002206370300200241d0066a41306a20024180046a41306a290300220a370300200241d0066a41286a20024180046a41286a290300220b370300200241d0066a41206a20024180046a41206a290300220c370300200241d0066a41186a20024180046a41186a290300220d370300200241c0026a41086a20024180046a41086a290300370300200241c0026a41106a20024180046a41106a290300370300200241c0026a41186a200d370300200241c0026a41206a200c370300200241c0026a41286a200b370300200241c0026a41306a200a370300200241c0026a41386a200637030020022002290380043703c0022009417f7320056a2103200420096a41016a2104410021050c030b200341ff0171450d06200241003a00c004420221060c070b41002103200241003a00c0042005417f6a2107417e21080240034020072003460d0120024180046a20036a200420036a220941016a2d00003a00002001200520086a3602042001200941026a3602002002200341016a22093a00c0042008417f6a210820092103200941c000470d000b200241d0066a41386a20024180046a41386a2903002206370300200241d0066a41306a20024180046a41306a290300220a370300200241d0066a41286a20024180046a41286a290300220b370300200241d0066a41206a20024180046a41206a290300220c370300200241d0066a41186a20024180046a41186a290300220d370300200241c0026a41086a20024180046a41086a290300370300200241c0026a41106a20024180046a41106a290300370300200241c0026a41186a200d370300200241c0026a41206a200c370300200241c0026a41286a200b370300200241c0026a41306a200a370300200241c0026a41386a200637030020022002290380043703c0022009417f7320056a210341012105200420096a41016a21040c020b200341ff0171450d05200241003a00c004420221060c060b41002103200241003a00c1042005417f6a2107417e2108034020072003460d0220024180046a20036a200420036a220941016a2d00003a00002001200520086a3602042001200941026a3602002002200341016a22093a00c1042008417f6a210820092103200941c100470d000b200241c0026a20024180046a41c10010cd051a2009417f7320056a2103200420096a41016a2104410221050b2002418f066a200241c0026a41c10010cd051a2003450d032004310000210b20012003417f6a22083602042001200441016a360200200b50450d01420021060c020b200341ff0171450d02200241003a00c104420221060c030b2008450d012004310001210c20012003417e6a3602042001200441026a3602004202200b420f8386220a4204540d0142012106200c420886200b84420488200a420c88220b4201200b4201561b7e220b200a5a0d010b200241186a2001105f20022802180d00200228021c2104200220011097032002290300a70d00200241106a290300210d2002290308210c200241d0066a41206a200241c0056a41206a280200360200200241d0066a41186a200241c0056a41186a290300370300200241d0066a41106a200241c0056a41106a290300370300200241d0066a41086a200241c0056a41086a290300370300200220022903c0053703d00620024180046a2002418f066a41c10010cd051a0c010b420221060b20024198026a41086a2203200241d0066a41086a29030037030020024198026a41106a2208200241d0066a41106a29030037030020024198026a41186a2209200241d0066a41186a29030037030020024198026a41206a2207200241d0066a41206a280200360200200220022903d00637039802200241d7016a20024180046a41c10010cd051a20064202510d01200241b0016a41206a2007280200360200200241b0016a41186a2009290300370300200241b0016a41106a2008290300370300200241b0016a41086a200329030037030020022002290398023703b001200241ef006a200241d7016a41c10010cd051a0b20024180046a20011095032002280280042103200241c0026a20024180046a41047241bc0110cd051a024020034122460d00200020022903b001370300200041206a200241b0016a41206a280200360200200041186a200241b0016a41186a290300370300200041106a200241b0016a41106a290300370300200041086a200241b0016a41086a2903003703002002412e6a200241ef006a41c10010cd051a200020053a0024200041256a2002412e6a41c10010cd051a20004190016a200d37030020004188016a200c37030020004198016a200336020020004180016a2004360200200041f8006a200b3703002000200a370370200020063703682000419c016a200241c0026a41bc0110cd051a0c020b200042033703680c010b200042033703680b20024190076a24000b9a0c01057f230041106b22022400200141046a2802002103200141086a28020021040240024002400240024020002d00004101460d00024020032004460d00200128020021050c020b200441016a22032004490d02200441017422052003200520034b1b22034100480d020240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b0240024020032004460d00200128020021030c010b200441016a22032004490d02200441017422052003200520034b1b22054100480d020240024020040d002005101e21030c010b200128020020042005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021040c010b20054101102d000b200141086a200441016a360200200320046a41013a000020002d0001220441024b0d030240024002400240024020040e03000102000b0240200141046a280200200141086a2802002204460d00200128020021000c040b200441016a22002004490d05200441017422032000200320004b1b22034100480d050240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c040b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021000c020b200441016a22002004490d04200441017422032000200320004b1b22034100480d040240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c020b20034101102d000b0240024002400240200141046a280200200141086a2802002204460d00200128020021030c010b200441016a22032004490d06200441017422052003200520034b1b22054100480d060240024020040d002005101e21030c010b200128020020042005102221030b2003450d0120012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41023a000020002d000221030240200141046a28020020052802002204460d00200128020021000c020b200441016a22002004490d05200441017422052000200520004b1b22054100480d050240024020040d002005101e21000c010b200128020020042005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021040c020b20054101102d000b20054101102d000b200141086a200441016a360200200020046a20033a00000c050b200141086a200441016a360200200020046a41013a00000c040b200141086a200441016a360200200020046a41003a00000c030b200141086a2206200441016a36020041002103200520046a41003a0000024002400240024002400240024002400240024020002d00010e080806000102030405080b41022103200241023a000f0c080b41032103200241033a000f0c070b41042103200241043a000f0c060b41052103200241053a000f0c050b41062103200241063a000f0c040b200241073a000f0240200141046a28020020062802002204460d00200128020021030c020b200441016a22032004490d04200441017422052003200520034b1b22054100480d040240024020040d002005101e21030c010b200128020020042005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021040c020b20054101102d000b200241013a000f410121030c020b200141086a200441016a360200200320046a41073a000020002d000221030b200220033a000f0b0240200141046a280200200141086a2802002204460d00200128020021000c020b200441016a22002004490d00200441017422052000200520004b1b22054100480d000240024020040d002005101e21000c010b200128020020042005102221000b02402000450d0020012000360200200141046a2005360200200141086a28020021040c020b20054101102d000b1027000b200141086a200441016a360200200020046a20033a00000b200241106a24000bdc0c04067f017e037f017e230041c0016b22022400200241086a10a601200228020c21032002280208210420024180016a41086a22054200370300200242003703800141b880c700411520024180016a1000200241106a41086a2005290300370300200220022903800137031020022003410020041b3602a001200241106a4110200241a0016a41041005107910a70120054200370300200242003703800141b880c700411520024180016a100020024190016a41086a20052903003703002002200229038001370390012002410036021020024190016a4110200241106a1003210502400240024002400240024020022802102203417f460d002005450d00200341034d0d04200528000021062005102020060d010b41042107410021060c010b2006ad420c7e2208422088a70d032008a722054100480d032005101e2207450d0120072103410021040340024002400240024002404114101e2205450d00200541106a410028008e8147360000200541086a41002900868147370000200541002900fe804737000020054114412810222205450d0120052004360014200241106a41186a22094200370300200241106a41106a220a4200370300200241106a41086a220b42003703002002420037031020054118200241106a1001200241a0016a41186a2009290300370300200241a0016a41106a200a290300370300200241a0016a41086a200b290300370300200220022903103703a0012005102020024100360210200241a0016a4120200241106a100321052002280210220a417f460d032005450d032002200a360294012002200536029001200241106a20024190016a10b70120022802102209450d02200229021421080240200a450d00200510200b200241a0016a412010040c040b41144101102d000b41284101102d000b41ceb8c400413320024180016a41fcbfc4004184b9c400102e000b41012109420021080b20032009360200200341046a20083702002003410c6a21032006200441016a2204470d000b0b200220063602182002200636021420022007360210200241a0016a200241106a10a301200241106a41186a200241a0016a41186a290300370300200241106a41106a2205200241a0016a41106a290300370300200241106a41086a200241a0016a41086a290300370300200220022903a00137031020024180016a41086a22034200370300200242003703800141a2fcc000411520024180016a100020024190016a41086a20032903003703002002200229038001370390012002411036028401200220024190016a36028001200241106a20024180016a10b801200241106a10a80120024100360298012002420137039001200220024190016a3602a0012005200241a0016a10b901200241106a20024190016a1063200220024190016a3602a001200241c0006a200241a0016a10b901200220024190016a3602a001200241e0006a200241a0016a10b9012002280214210420022002411c6a28020022053602a001200241a0016a20024190016a106302402005450d00200541246c210b0340200241a0016a200410a90120022802a001210a02400240200228029401220920022802980122056b20022802a8012203490d0020022802900121090c010b200520036a22062005490d05200941017422052006200520064b1b22054100480d050240024020090d002005101e21090c010b20022802900120092005102221090b02402009450d002002200536029401200220093602900120022802980121050c010b20054101102d000b2002200520036a36029801200920056a200a200310cd051a024020022802a401450d00200a10200b200441246a2104200b415c6a220b0d000b0b2002350298014220862108200235029001210c0240200228021c2203450d0020022802142105200341246c210303400240024020052d0000220441034b0d0002400240024020040e0404000102040b2005410c6a280200450d03200541086a28020010200c030b2005410c6a280200450d02200541086a28020010200c020b2005410c6a280200450d01200541086a28020010200c010b200541086a280200450d00200541046a28020010200b200541246a21052003415c6a22030d000b0b2008200c8421080240200241186a280200450d00200228021410200b200241c0016a240020080f0b20054104102d000b41ceb8c400413320024180016a41fcbfc4004184b9c400102e000b1027000bec0101047f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b02402001280204200228020c22034f0d00200041003602000c010b2003417f4c0d01024002400240024020030d00410121040c010b200310242204450d0120012802042003490d0220042001280200200310cd051a200128020422052003490d052001200520036b3602042001200128020020036a3602000b2000200336020420002004360200200041086a20033602000c020b20034101102d000b20004100360200200410200b200241106a24000f0b102c000b20032005103b000bf70301027f20002d000021020240024002400240024002404101101e2203450d00200320023a000020002d0001210220034101410210222203450d01200320023a000120002d0002210220034102410410222203450d02200320023a0002200320002d00033a000320002d0004210220034104410810222203450d03200320023a0004200320002d00053a0005200320002d00063a0006200320002d00073a000720002d0008210220034108411010222203450d04200320023a0008200320002d00093a0009200320002d000a3a000a200320002d000b3a000b200320002d000c3a000c200320002d000d3a000d200320002d000e3a000e200320002d000f3a000f20002d0010210220034110412010222203450d05200320023a0010200320002d00113a0011200320002d00123a0012200320002d00133a0013200320002d00143a0014200320002d00153a0015200320002d00163a0016200320002d00173a0017200320002d00183a0018200320002d00193a0019200320002d001a3a001a200320002d001b3a001b200320002d001c3a001c200320002d001d3a001d200320002d001e3a001e200320002d001f3a001f20012802002001280204200341201005200310200f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000bd30501037f20002d0000210202400240024002400240024002404101101e2203450d00200320023a000020002d0001210220034101410210222203450d01200320023a000120002d0002210220034102410410222203450d02200320023a0002200320002d00033a000320002d0004210220034104410810222203450d03200320023a0004200320002d00053a0005200320002d00063a0006200320002d00073a000720002d0008210220034108411010222203450d04200320023a0008200320002d00093a0009200320002d000a3a000a200320002d000b3a000b200320002d000c3a000c200320002d000d3a000d200320002d000e3a000e200320002d000f3a000f20002d0010210220034110412010222203450d05200320023a0010200320002d00113a0011200320002d00123a0012200320002d00133a0013200320002d00143a0014200320002d00153a0015200320002d00163a0016200320002d00173a0017200320002d00183a0018200320002d00193a0019200320002d001a3a001a200320002d001b3a001b200320002d001c3a001c200320002d001d3a001d200320002d001e3a001e200320002d001f3a001f02402001280200220041046a2802002202200041086a28020022016b4120490d00200028020021020c070b0240200141206a22042001490d00200241017422012004200120044b1b22014100480d000240024020020d002001101e21020c010b200028020020022001102221020b02402002450d0020002002360200200041046a2001360200200041086a28020021010c080b20014101102d000b1027000b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b200041086a200141206a360200200220016a220041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a29000037000020002003290000370000200310200bd72405017f027e0f7f027e017f230041f0036b22022400024002402001450d00200220003602100c010b200241e4fdc6003602100b20022001360214200241086a200241106a105f024020022802080d00200228020c21012002200241106a3602d801200241003a00d003200242003702c402200241908cc5003602c0022002200136022c200241003602282002200241d0036a3602342002200241d8016a360230200241286a200241c0026a10bb0120022802c002210120022902c4022103024020022d00d003450d0020012003a72003422088a710bc010c010b2001450d002002200337021c20022001360218200241286a200241186a10bd0102400240024002400240024002400240024020022802284101460d00200241286a41086a2201290300210342002104200142003703002002420037032841c4aac100410d200241286a1000200241c0026a41086a2001290300370300200220022903283703c00220024100360228200241c0026a4110200241286a10032101024020022802282200417f460d002001450d0020004108490d0220012900002104200110200b41d802101e2205450d022005200241c0026a41e80010cd05220642023703682006410236029801200620022903d801370370200641f8006a200241d8016a41086a29030037030020064180016a200241e8016a29030037030020064188016a200241f0016a29030037030020064190016a200241f8016a29030037030020062003200442b8177c220420032004561b3703a001200641a8016a200241286a41b00110cd051a200241186a2101200228021c21070240034002400240200128020022082f010622090d004100210a0c010b20094103742101200841086a2100417f210a0340024020010d002009210a0c020b200a41016a210a41c3dec6002000410810cf05220b450d03200141786a2101200041086a2100200b417f4a0d000b0b024020070d004101210c0c090b2007417f6a21072008200a4102746a41e4016a21010c000b0b20022008200a410c6c6a220141e8006a2802003602c4022002200141e0006a2802003602c002200241286a200241c0026a10be0102402002280228220d0d004101210c0c070b200228022c210e0240200241286a41086a22012802002209450d0020014200370300200242003703284189a7c6004111200241286a1000200241c0026a41086a2001290300370300200220022903283703c00220024100360228200241c0026a4110200241286a1003210120022802282200417f460d052001450d05200220003602dc01200220013602d801200241286a200241d8016a10bf012002280228220b450d04200229022c21032000450d06200110200c060b4101210c200e450d06200d10200c060b2002200229022c3703c00241d5abc1004128200241c0026a41e8aac1004180acc100102e000b41ceb8c4004133200241d0036a41fcbfc4004184b9c400102e000b41d8024108102d000b41ceb8c4004133200241d0036a41fcbfc4004184b9c400102e000b420021034104210b0b2003a7210f0240024002400240024002402003422088a7220c450d00200b200c41c4006c6a2107410021010340200b20016a220a2d00002100200241286a200a41016a41c30010cd051a20004102460d01200241c0026a41186a200241286a41186a290000370300200241c0026a41106a200241286a41106a290000370300200241c0026a41086a200241286a41086a290000370300200220022900283703c00220004101460d02200141c4006a2101200a41c4006a2007470d000b0b41012108410021100240200f450d00200b10200b410021110c010b200241d8016a41086a2200200241c0026a41086a290300370300200241d8016a41106a2212200241c0026a41106a290300370300200241d8016a41186a2210200241c0026a41186a290300370300200220022903c00222033703b003200220033703d8014120101e2208450d02200820022903d801370000200841186a2010290300370000200841106a2012290300370000200841086a200029030037000002400240200c41c4006c41bc7f6a2001470d0041012110410121110c010b200a41c4006a2100200c41c4006c200b6a41bc7f6a21134101211041012111034020002101034020012d00002100200241286a200141016a41c30010cd051a20004102460d02200241c0026a41186a220a200241286a41186a290000370300200241c0026a41106a220c200241286a41106a290000370300200241c0026a41086a2212200241286a41086a290000370300200220022900283703c002024020004101460d00200141c4006a22012007470d010c030b0b200241d8016a41086a20122903002203370300200241d8016a41106a200c2903002204370300200241d8016a41186a200a2903002214370300200220022903c00222153703d801200241b0036a41186a220c2014370300200241b0036a41106a22122004370300200241b0036a41086a22162003370300200220153703b003024020112010470d00201041016a22002010490d092010410174220a2000200a20004b1b221141ffffff3f712011470d09201141057422004100480d090240024020100d002000101e21080c010b200820104105742000102221080b2008450d040b200141c4006a2100200820104105746a220a20022903b003370000200a41186a200c290300370000200a41106a2012290300370000200a41086a2016290300370000201041016a211020132001470d000b0b200f450d00200b10200b200d200941f0006c6a210c200241c0026a41106a2113200241c0026a41086a21124200210341042116200d210b0340200b2802042101200b2802002100200241286a200b41086a41e80010cd051a200b41f0006a210b024020010d00200c200b460d0403400240200b410c6a2802002200450d00200b2802042101200041246c210003400240024020012d0000220a41034b0d00024002400240200a0e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b200b41f0006a21010240200b41086a280200450d00200b28020410200b2001210b2001200c470d000c050b0b200241d8016a200241286a41e80010cd051a200220013602c402200220003602c0022012200241d8016a41e80010cd051a10792101200241d0036a200241c0026a10c001024002400240024020022802c002417f6a220020014f0d00200241286a200010a101200241286a2013412010cf050d0020022802c002220f41002001417b6a2200200020014b1b490d002010410574210a200241d0036a20086b210941002101024003400240200a2001470d00410021070c020b4101210720092001460d01200820016a2100200141206a21012000200241d0036a412010cf050d000b0b200241286a200f10a101200241286a200241d0036a412010cf05210120070d0020010d010b024020022802cc022200450d0020022802c4022101200041246c210003400240024020012d0000220a41034b0d00024002400240200a0e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b20022802c802450d0120022802c40210200c010b200241d0036a200241c0026a10c001200241286a200241c0026a41f00010cd051a0240024020034220882204a722012003a7460d00200121000c010b200141016a22072001490d092004a722004101742209200720072009491bad220342f0007e2204422088a70d092004a722074100480d090240024020010d002007101e21160c010b2016200141f0006c2007102221160b20160d0020074104102d000b2016200041f0006c6a200241286a41f00010cd051a200241286a41186a2207200241d0036a41186a290300370300200241286a41106a2209200241d0036a41106a290300370300200241286a41086a220f200241d0036a41086a290300370300200220022903d003370328024020102011470d00201041016a22012010490d09201041017422112001201120014b1b221141ffffff3f712011470d09201141057422014100480d090240024020100d002001101e21080c010b2008200a2001102221080b2008450d020b200342ffffffff0f83200041016aad4220868421032008200a6a22012002290328370000200141186a2007290300370000200141106a2009290300370000200141086a200f290300370000201041016a21100b200b200c470d010c040b0b20014101102d000b20004101102d000b41204101102d000b0240200e450d00200d10200b02402011450d00200810200b0240200342ffffffff0f560d004101210c2003a7450d01201610200c010b024020160d004101210c0c010b200641d80241b00510222205450d01200541d8026a200241c0026a41e80010cd051a200542023703c003200520033703f803200520163602f403200541033602f003200520022903d8013703c803200541d0036a200241e0016a290300370300200541d8036a200241e8016a290300370300200541e0036a200241f0016a290300370300200541e8036a200241f8016a29030037030020054180046a200241286a41b00110cd051a4102210c0b200241186a2101200228021c210702400240024002400240034002400240200128020022082f010622090d004100210a0c010b20094103742101200841086a2100417f210a0340024020010d002009210a0c020b200a41016a210a41ed8bc6002000410810cf05220b450d03200141786a2101200041086a2100200b417f4a0d000b0b2007450d022007417f6a21072008200a4102746a41e4016a21010c000b0b200841e0006a200a410c6c6a22012802084104490d0020012802002800002108200241286a41086a220142003703002002420037032841f8bfc5004115200241286a1000200241c0026a41086a2001290300370300200220022903283703c00220024100360228200241c0026a4110200241286a100321010240024020022802282200417f460d002001450d00200220003602dc01200220013602d801200241286a200241d8016a10c10102402002280228220a450d00200229022c21032000450d02200110200c020b41ceb8c4004133200241d0036a41fcbfc4004184b9c400102e000b4104210a420021030b4100210002402003422088a72201417f6a220b20014b0d00200b20014f0d00200a200b4102746a2201450d00200128020020084721000b02402003a7450d00200a10200b20000d010b200c21120c010b2005200c41d8026c2201200c4101742200200c41016a2212200020124b1b41d8026c220010222205450d01200520016a200241c0026a41e80010cd0522014202370368200120022903d801370370200141f8006a200241d8016a41086a29030037030020014180016a200241e8016a29030037030020014188016a200241f0016a29030037030020014190016a200241f8016a2903003703002001419c016a20083602002001410836029801200141a8016a200241286a41b00110cd051a0b2002280218200228021c200228022010bc01200241003602c802200242013703c00220022012360228201241d8026c210c200241286a200241c0026a106320022802c402210720022802c80221012005210a0340200241286a200a10a2012002280228210902400240200720016b20022802302208490d00200120086a210020022802c002210b0c010b200120086a22002001490d042007410174220b2000200b20004b1b22064100480d040240024020070d002006101e210b0c010b20022802c002200720061022210b0b0240200b450d00200220063602c4022002200b3602c002200621070c010b20064101102d000b200220003602c802200b20016a2009200810cd051a0240200228022c450d00200910200b200a41d8026a210a20002101200c41a87d6a220c0d000b201241d8026c210a20054198016a21012000ad422086200bad8421030340200110a501200141d8026a2101200a41a87d6a220a0d000b20051020200241f0036a240020030f0b20004108102d000b41b0054108102d000b1027000b200241cc026a41043602002002413c6a41023602002002420237022c200241fcc3c000360228200241043602c402200241f4c4c0003602c002200241003602dc01200241e4fdc6003602d8012002200241c0026a3602382002200241d8016a3602c802200241286a418cc4c0001033000bd70405057f017e017f017e067f230041f0016b22022400024002402000280200220320002802044f0d00200028020c2104200141086a210520024190016a4102722106024003402000200341016a36020020024190016a20002802082802002203109d0320022d0090014101460d012002290091012107200241086a200310b70120022802082208450d01200229020c210920022007370300024002402001280200220a41908cc500460d002001280204210b0c010b2006410041da0010cc051a200241086a410041840110cc051a41e401101e220a450d044100210b200a4100360200200a41046a20024190016a41dc0010cd051a200a41e0006a200241086a41840110cd051a200141003602042001200a3602000b02400240034002400240200a2f0106220c0d004100210d0c010b200c4103742103200a41086a210e417f210d0340024020030d00200c210d0c020b200d41016a210d2002200e410810cf05220f450d03200341786a2103200e41086a210e200f417f4a0d000b0b0240200b450d00200b417f6a210b200a200d4102746a41e4016a280200210a0c010b0b2002200737021c200220053602182002200d360214200220013602102002200a36020c2002410036020820022009370294012002200836029001200241086a20024190016a10c3010c010b200a200d410c6c6a220341e4006a220e280200210d200e2009370200200341e0006a220e2802002103200e20083602002003450d00200d450d00200310200b200028020022032000280204490d000c020b0b200441013a00000b200241f0016a24000f0b41e4014104102d000be90303027f017e027f02402001450d00034020002802e40121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41e8016a280200210020012003410c6c6a220141e4006a2902002105200141e0006a2802002107410021032006417f6a2201450d01034020002802e40121002001417f6a22010d000c020b0b20002003410c6c6a220141e4006a2902002105200141e0006a2802002107200341016a21030b2007450d012002417f6a210202402005a7450d00200710200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bfe0101067f2001280204210202400240034002400240200128020022032f010622040d00410021050c010b20044103742101200341086a2106417f21050340024020010d00200421050c020b200541016a210541a381c7002006410810cf052207450d03200141786a2101200641086a21062007417f4a0d000b0b02402002450d002002417f6a2102200320054102746a41e4016a21010c010b0b200041ab81c700360204200041086a41283602000c010b0240200341e0006a2005410c6c6a22012802084108490d00200041086a2001280200290000370300200041003602000f0b200041d381c700360204200041086a41293602000b200041013602000ba005030b7f017e017f230041d0026b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441f0006e220341f0006c2204417f4c0d01200228020c21050240024020040d00410421060c010b2004101e2206450d030b024002402005450d00200241e0016a41086a210741002108410021094100210a0340200241e0016a200110ad0120022802e401210b20022802e001210c200241f8006a200741e80010cd051a200b450d02200a41016a2104200241106a200241f8006a41e80010cd051a0240200a2003470d00024020082004200820044b1b2203ad42f0007e220d422088a70d00200da7220e4100480d0002400240200a0d00200e101e21060c010b20062009200e102221060b20060d01200e4104102d000b1027000b200620096a220a200c360200200a41046a200b360200200a41086a200241106a41e80010cd051a200841026a2108200941f0006a21092004210a20052004470d000b0b2000200336020420002006360200200041086a20053602000c010b200041003602000240200a450d00200620096a21082006210b03400240200b410c6a280200220a450d00200b2802042104200a41246c210a03400240024020042d0000220941034b0d0002400240024020090e0404000102040b2004410c6a280200450d03200441086a28020010200c030b2004410c6a280200450d02200441086a28020010200c020b2004410c6a280200450d01200441086a28020010200c010b200441086a280200450d00200441046a28020010200b200441246a2104200a415c6a220a0d000b0b200b41f0006a21040240200b41086a280200450d00200b28020410200b2004210b20082004470d000b0b2003450d00200610200b200241d0026a24000f0b102c000b20044104102d000be61002147f037e230041c0026b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441c4006e220341c4006c2204417f4c0d01200228020c21050240024020040d00410421060c010b2004101e2206450d030b0240024002402005450d0020024198026a410772210741002108034020012802042209450d022001280200220a2d0000210420012009417f6a220b3602042001200a41016a360200200441014b0d0202400240024020040e020001000b200b4104490d04200a280001210c20012009417b6a3602042001200a41056a360200200241d4016a41026a200241d8016a41026a2d00003a0000200241b8016a41086a200241f8016a41086a290200370300200241b8016a41106a200241f8016a41106a290200370300200241b8016a41186a200241f8016a41186a2d00003a000020024198016a41086a20024198026a41086a29010037030020024198016a41106a20024198026a41106a29010037030020024198016a41186a20024198026a41186a290100370300200220022f00d8013b01d401200220022902f8013703b801200220022901980237039801200220022f01f4013b0196014100210d0c010b4100210e200241003a00b8022009417e6a210d0240024002400240024002400340200b200e2204460d0120024198026a20046a200a20046a220e41016a2d00003a00002001200d3602042001200e41026a3602002002200441016a220e3a00b802200d417f6a210d200e4120470d000b200241f4016a41026a220f20022d009a023a0000200241d8016a41086a2210200741086a290000370300200241d8016a41106a2211200741106a290000370300200241d8016a41186a2212200741186a2d00003a0000200220022f0198023b01f401200220072900003703d801200b200e460d05200228009b022113200a200e6a220a41016a2d0000210b2001200d3602042001200a41026a360200200b41014b0d0541002114200b0e020201020b200441ff01710d030c040b4100210d200241003a00b802200e20096b41026a210b200920046b417c6a21040340200b200d6a450d0220024198026a200d6a200a200d6a220e41026a2d00003a0000200120043602042001200e41036a3602002002200d41016a220e3a00b8022004417f6a2104200e210d200e4120470d000b200241f8016a41186a20024198026a41186a290300370300200241f8016a41106a20024198026a41106a290300370300200241f8016a41086a20024198026a41086a29030037030020022002290398023703f801410121140b20024198016a41186a200241f8016a41186a29030037030020024198016a41106a200241f8016a41106a29030037030020024198016a41086a200241f8016a41086a290300370300200241d4016a41026a200f2d00003a0000200241b8016a41086a2010290300370300200241b8016a41106a2011290300370300200241b8016a41186a20122d00003a0000200220022903f80137039801200220022f01f4013b01d401200220022903d8013703b8014101210d201421152013210c0c030b200d41ff0171450d010b200241003a00b8020b4102210d0b20024192016a41026a2204200241d4016a41026a2d00003a0000200241f8006a41086a220a200241b8016a41086a290300370300200241f8006a41106a220b200241b8016a41106a290300370300200241f8006a41186a2209200241b8016a41186a2d00003a0000200241d8006a41086a220f20024198016a41086a290300370300200241d8006a41106a221020024198016a41106a290300370300200241d8006a41186a221120024198016a41186a290300370300200220022f01d4013b019201200220022903b8013703782002200229039801370358200220022f0196013b0156200d4102460d03200841016a210e200241d2006a41026a221220042d00003a0000200241386a41086a2213200a290300370300200241386a41106a220a200b290300370300200241386a41186a220b20092d00003a0000200241186a41086a2209200f290300370300200241186a41106a220f2010290300370300200241186a41186a22102011290300370300200220022f0192013b01522002200229037837033820022002290358370318200220022f01563b0116024020032008470d00024020084101742204200e2004200e4b1b2203ad42c4007e2216422088a70d002016a722044100480d000240024020080d002004101e21060c010b2006200841c4006c2004102221060b20060d0120044104102d000b1027000b2006200841c4006c6a2204200d3a00002004200c360004200441036a20122d00003a0000200420022f01523b0001200b2d0000210d200a29030021162013290300211720022903382118200420153a002120042018370008200441106a2017370000200441186a2016370000200441206a200d3a00002004413a6a2010290300370000200441326a200f2903003700002004412a6a200929030037000020042002290318370022200420022f01163b0042200e2108200e2005470d000b0b2000200336020420002006360200200041086a20053602000c020b20024192016a41026a200241d4016a41026a2d00003a0000200241f8006a41086a200241b8016a41086a290300370300200241f8006a41106a200241b8016a41106a290300370300200241f8006a41186a200241b8016a41186a2d00003a0000200241d8006a41086a20024198016a41086a290300370300200241d8006a41106a20024198016a41106a290300370300200241d8006a41186a20024198016a41186a290300370300200220022f01d4013b019201200220022903b8013703782002200229039801370358200220022f0196013b01560b200041003602002003450d00200610200b200241c0026a24000f0b102c000b20044104102d000b830401077f230041306b22022400200241003602082002420137030020022002360210200141106a200241106a10b90120012002106320022002360210200141306a200241106a10b90120022002360210200141d0006a200241106a10b9012001280204210320022001410c6a2802002201360210200241106a2002106302402001450d00200141246c21040340200241106a200310a901200228021021050240024020022802042206200228020822016b20022802182207490d00200228020021060c010b0240200120076a22082001490d00200641017422012008200120084b1b22014100480d000240024020060d002001101e21060c010b200228020020062001102221060b02402006450d002002200136020420022006360200200228020821010c020b20014101102d000b1027000b2002200120076a360208200620016a2005200710cd051a02402002280214450d00200510200b200341246a21032004415c6a22040d000b0b200228020421072002280208210320022802002101200241106a41186a22064200370300200241106a41106a22054200370300200241106a41086a220442003703002002420037031020012003200241106a1001200041186a2006290300370000200041106a2005290300370000200041086a20042903003700002000200229031037000002402007450d00200110200b200241306a24000bf002010b7f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b20012802042203417c712204417f4c0d01200228020c210502400240200341027622060d00410421070c010b2004101e2207450d030b024002402005450d0041002108410021094100210403402001280204220a4104490d02200441016a21032001280200220b280000210c2001200a417c6a3602042001200b41046a360200024020042006470d00024020082003200820034b1b220641ffffffff03712006470d002006410274220a4100480d000240024020040d00200a101e21070c010b20072009200a102221070b20070d01200a4104102d000b1027000b200720096a200c360200200841026a2108200941046a21092003210420052003470d000b0b2000200636020420002007360200200041086a20053602000c010b200041003602002006450d00200710200b200241106a24000f0b102c000b20044104102d000b8b2c05077f017e0a7f047e017f230041b0026b22022400024002402001450d00200220003602100c010b200241e4fdc6003602100b20022001360214200241c8006a200241106a109f01024002400240024002400240200228024c2203450d00200241c0016a2802002104200241bc016a2802002105200241b8016a2802002106200241c8006a410c6a280200210720022802502108200241086a200241106a105f20022802080d05200228020c21012002200241106a360228200241003a0038200242003702d401200241908cc5003602d0012002200136024c200241003602482002200241386a3602542002200241286a360250200241c8006a200241d0016a10bb0120022802d001210120022902d4012109024020022d0038450d0020012009a72009422088a710bc010c060b2001450d052002200937021c20022001360218200241013b01342002420037022c200241908cc500360228200241286a41086a210a2004450d022006200441d8026c6a210b200241d0016a410272210c2006210d0340200d41e8006a2903004202520d030240200d28029801410247220e0d00200d2903a0012109200241186a2101200228021c210f0240024002400240024002400240024002400240024002400240034002400240200128020022102f010622110d00410021120c010b20114103742101201041086a2100417f21120340024020010d00201121120c020b201241016a211241c7eec6002000410810cf052213450d03200141786a2101200041086a21002013417f4a0d000b0b200f450d02200f417f6a210f201020124102746a41e4016a21010c000b0b0240201041e0006a2012410c6c6a220128020841074b0d00201442808080807083422984210941cfeec60021110c020b200942f02e8020012802002900002214510d034131210f418cf1c10021110c020b201442808080807083421c84210941f8eec60021110b2009a7210f0b024002400240024002400240024002400240024020022d0035450d0041f8dec6002101413121000c010b2002280228200228022c200228023010bc012002420037022c200241908cc500360228200242e2c289abb68edbb7f40037033841002112200241d0016a410272410041da0010cc051a200241c8006a410041840110cc051a41e401101e2210450d0a20104100360200201041046a200241d0016a41dc0010cd051a201041e0006a200241c8006a41840110cd051a2002410036022c200220103602280240024020102f0106220d450d00200d4103742101201041086a2100417f21120340024020010d00200d21120c020b200241386a2000410810cf052213450d02200141786a2101201241016a2112200041086a2100201341004e0d000b0b200242e2c289abb68edbb7f40037025c2002200a360258200220123602542002201036024c200241003602482002200241286a360250200f41046a2212417f4c0d0c2012450d022012101e2201450d0d200241003602ac02200220013602d001200f41c000490d07200f41808001490d08200f418080808004490d09200141033a0000200241013602ac022012417f6a41034d0d03201221130c050b41cbdec6002101412d21000b2002200036024c2002200136024841a9dfc6004122200241c8006a41ccdfc60041dcdfc600102e000b200241003602ac0241012112200241013602d00102404101101e2201450d00200141033a0000200241013602ac02200220013602d001410521130c020b41014101102d000b201241017422004105200041054b1b22134100480d150b20012012201310222201450d01200220013602d0010b2001200f36000141052100200241053602ac020c100b20134101102d000b2001200f4102743a000041012100200241013602ac02201221130c0e0b02400240201241014d0d00201221130c010b20012012201241017422004102200041024b1b221310222201450d06200220013602d0010b410221002001200f4102744101723b0000200241023602ac020c0d0b024002400240201241034d0d00201221130c010b201241017422004104200041044b1b22134100480d1120012012201310222201450d01200220013602d0010b2001200f41027441027236000041042100200241043602ac020c0d0b20134101102d000b200e0d08200d2903a0012115200241c8006a200241186a10bd0120022802484101460d0520022903502109200241c8006a41086a220142003703002002420037034841c4aac100410d200241c8006a1000200241d0016a41086a2001290300370300200220022903483703d00120024100360248200241d0016a4110200241c8006a100321010240024020022802482200417f470d00420021160c010b024020010d00420021160c010b200041074d0d0520012900002116200110200b02402015200942b0ea017c560d004100210e2015201642b8177c2209540d080c090b201742808080807083422584210941b0abc10021180c060b41e4014104102d000b102c000b20124101102d000b20134101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b20023502502109200228024c21180b4101210e0b0240024002400240024002400240024020022d0035450d0041f8dec6002101413121000c010b024002400240200e450d002002280228200228022c200228023010bc012002420037022c200241908cc500360228200242f4d2b59bc7ae98b8303703380c010b20022802282110200242f4d2b59bc7ae98b830370338201041908cc500460d00200228022c210f0c010b200c410041da0010cc051a200241c8006a410041840110cc051a41e401101e2210450d024100210f20104100360200201041046a200241d0016a41dc0010cd051a201041e0006a200241c8006a41840110cd051a2002410036022c200220103602280b024003400240024020102f010622110d00410021120c010b20114103742101201041086a2100417f21120340024020010d00201121120c020b200241386a2000410810cf052213450d03200141786a2101201241016a2112200041086a21002013417f4a0d000b0b0240200f450d00200f417f6a210f201020124102746a41e4016a28020021100c010b0b200242f4d2b59bc7ae98b83037025c2002200a360258200220123602542002201036024c200241003602482002200241286a360250200241003602d801200242013703d0014101101e21010240200e0d002001450d04200141003a000020024281808080103702d401200220013602d00120014101410910222201450d05200120093700012002428980808090013702d401200220013602d0010c080b2001450d05200141013a000020024281808080103702d401200220013602d00120022009a72201360238200241386a200241d0016a1063024020022802d401221220022802d80122006b2001490d0020022802d00121120c070b200020016a22132000490d0e201241017422102013201020134b1b22134100480d0e0240024020120d002013101e21120c010b20022802d00120122013102221120b02402012450d00200220133602d401200220123602d0010c070b20134101102d000b41cbdec6002101412d21000b2002200036024c2002200136024841a9dfc6004122200241c8006a41ccdfc60041dcdfc600102e000b41e4014104102d000b41014101102d000b41094101102d000b41014101102d000b2002200020016a3602d801201220006a2018200110cd051a0b200241386a41086a200241d0016a41086a280200360200200220022903d001370338200241c8006a200241386a10c3012002200e3a0035200241003a003420092117200e450d00200241d0016a41086a200241286a41086a290300370300200220022903283703d0010c050b200d41d8026a220d200b470d000c030b0b200241346a4104360200200241e4016a4102360200200242023702d401200241fcc3c0003602d0012002410436022c20024190c5c0003602282002410036023c200241e4fdc6003602382002200241286a3602e0012002200241386a360230200241d0016a418cc4c0001033000b024002400240201320006b200f490d00201321120c010b2000200f6a22122000490d04201341017422102012201020124b1b22124100480d0420012013201210222201450d01200220013602d0010b20022000200f6a3602ac02200120006a2011200f10cd051a2002201236023c200220022802d001360238200220022802ac02360240200241c8006a200241386a10c30120024180023b0134200241d0016a41086a200241286a41086a290300370300200220022903283703d0010c020b20124101102d000b200241d0016a41086a200a290300370300200220022903283703d0010b2002280218200228021c200228022010bc0102402007450d00200741246c21002003210103400240024020012d0000221241034b0d0002400240024020120e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012000415c6a22000d000b0b02402008450d00200310200b02402004450d00200441d8026c210020064198016a21010340200110a501200141d8026a2101200041a87d6a22000d000b0b02402005450d00200610200b200241003602502002420137034820022d00dc012100024002404101101e2201450d002002410136024c20022002280250221241016a36025020022001360248200120126a20003a000020022d00dd0121120240200228024c20022802502201460d00200228024821000c020b200141016a22002001490d02200141017422132000201320004b1b22134100480d020240024020010d002013101e21000c010b200228024820012013102221000b02402000450d002002201336024c20022000360248200228025021010c020b20134101102d000b41014101102d000b2002200141016a360250200020016a20123a0000200220022802d8012211360228200241286a200241c8006a106320022802d00122122100024020022802d4012213450d002012210020132101034020002802e40121002001417f6a22010d000b0b02402011450d0041002110034002400240201020002f0106490d0002400240200028020022010d004100211241002100410021010c010b20002f01042100410121120b0240200020012f0106490d000340201241016a211220012f01042200200128020022012f01064f0d000b0b20012000410c6c6a41e0006a210f200120004103746a41086a2113200041027420016a41e8016a2802002100410021102012417f6a2201450d01034020002802e40121002001417f6a22010d000c020b0b20002010410c6c6a41e0006a210f200020104103746a41086a2113201041016a21100b20132d0000210d02400240024002400240024002400240024002400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d012002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0001210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d022002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0002210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d032002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0003210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d042002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0004210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d052002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0005210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d062002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0006210d02400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220e2012200e20124b1b220e4100480d0c0240024020010d00200e101e21120c010b20022802482001200e102221120b2012450d072002200e36024c20022012360248200228025021010b2002200141016a360250201220016a200d3a000020132d0007211302400240200228024c20022802502201460d00200228024821120c010b200141016a22122001490d0c2001410174220d2012200d20124b1b220d4100480d0c0240024020010d00200d101e21120c010b20022802482001200d102221120b2012450d082002200d36024c20022012360248200228025021010b2002200141016a360250201220016a20133a0000200f280200210d2002200f2802082201360228200241286a200241c8006a10630240200228024c2213200228025022126b2001490d00200228024821130c090b201220016a220f2012490d0b20134101742212200f2012200f4b1b22124100480d0b0240024020130d002012101e21130c010b200228024820132012102221130b02402013450d002002201236024c20022013360248200228025021120c090b20124101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200e4101102d000b200d4101102d000b2002201220016a360250201320126a200d200110cd051a2011417f6a22110d000b20022802d401211320022802d00121120b20023502482109200235025021142012201320022802d80110bc01200241b0026a240020092014422086840f0b1027000b200241d0016a410c6a4104360200200241dc006a41023602002002420237024c200241fcc3c000360248200241043602d40120024190c5c0003602d0012002410036022c200241e4fdc6003602282002200241d0016a3602582002200241286a3602d801200241c8006a418cc4c0001033000b831407027f017e057f027e017f017e0a7f230041b0036b2202240020002802102203200328020041016a36020020002902142104200028020c2105200028020821062000280200210320002802042100200241f0016a41086a2207200141086a280200360200200220012902003703f001024002400240024002400240024020002f01062201410b490d0002400240200041908cc500460d00200241d0026a410272410041da0010cc051a200241386a410041840110cc051a41e401101e22080d0141e4014104102d000b41c8a6c000412d41a888c6001028000b20084100360200200841046a200241d0026a41dc0010cd051a200841e0006a200241386a41840110cd052107200241386a41086a2209200041b0016a280200360200200220002902a8013703382000413c6a330000210a2000413e6a310000210b20002d003f210c2000350038210d200841086a200041c0006a20002f010641796a220141037410cd05210e2007200041b4016a2001410c6c10cd052107200041063b0106200820013b0106200241d0026a41086a2009280200360200200220022903383703d002200d200a200b4210868442208684210a0240024020054107490d002005410374200e6a41506a200e200541796a22094103746a220e200141ffff037120096b41037410ce051a200e20043700002005410c6c20076a220541b87f6a200541ac7f6a2205200841066a22012f010020096b410c6c10ce051a200541086a200241f0016a41086a280200360200200520022903f0013702000c010b200041086a20054103746a220741086a2007200041066a22012f010020056b41037410ce051a20072004370000200041e0006a2005410c6c6a2207410c6a200720012f010020056b410c6c10ce051a200741086a200241f0016a41086a280200360200200720022903f0013702000b200120012f010041016a3b0100200241286a41086a220f200241d0026a41086a22102802002205360200200241086a221120053602002002200c3a0017200220022903d00222043703282002200a3e02102002200a4230883c00162002200a4220883d01142002200437030020022903102104200028020022090d01410021120c020b200020054103746a220341106a200341086a2203200120056b41037410ce051a2003200437000020002005410c6c6a220341ec006a200341e0006a220120002f010620056b410c6c10ce051a200341e8006a2007280200360200200120022903f001370200200020002f010641016a3b01060c020b20002f01042113200241d0026a410272211441002100024002400340200220093602242002200341016a2212360220200f20112802003602002002200229030037032820032000470d01201341ffff0371210702400240024020092f01062203410b490d002014410041da0010cc051a200241f0016a200241d0026a41dc0010cd051a200241386a410041b40110cc051a419402101e2201450d0520014100360200200141046a200241f0016a41dc0010cd051a200141e0006a200241386a41b40110cd052100200941386a290000210a200241386a41086a220e200941b0016a2802003602002002200941a8016a290200370338200141086a200941c0006a20092f0106220541796a220341037410cd0521152000200941b4016a2003410c6c10cd052116200141e4016a20094180026a2005417a6a220c41027410cd052117200941063b0106200120033b01060240200c450d00410021032017210003402000280200220520033b010420052001360200200041046a2100200c200341016a2203470d000b0b2010200e280200220336020020022002290338220b3703d002200e20033602002002200b370338201341ffff037122004107490d0120152007417a6a22004103746a2015200741796a22034103746a220520012f010620036b41037410ce051a200520043700002007410c6c20166a220541b87f6a200541ac7f6a220520012f0106220c20036b410c6c10ce051a200541086a200f280200360200200520022903283702002001200c41016a22053b01062007410274221320176a416c6a201720004102746a220c200541ffff0371220720006b41027410ce051a200c200836020020072000490d02200120136a41cc016a2100034020002802002205200341016a22033b010420052001360200200041046a210020032007490d000c030b0b200941086a2205200741016a22004103746a200520074103746a2205200320076b220141037410ce051a2005200437000020092007410c6c6a220541ec006a200541e0006a220c2001410c6c10ce051a200541e8006a200241286a41086a280200360200200c20022903283702002009200341016a22033b01062007410274200941e4016a22056a41086a200520004102746a2205200341ffff0371220120006b41027410ce051a20052008360200201341ffff037120014f0d0620092000417f6a22034102746a41e8016a2100034020002802002205200341016a22033b010420052009360200200041046a210020032001490d000c070b0b200941086a2203200741016a220c4103746a200320074103746a220320092f0106220520076b221341037410ce051a20032004370000200941e0006a2007410c6c6a2203410c6a20032013410c6c10ce051a200341086a200f280200360200200320022903283702002009200541016a22033b010620074102742217200941e4016a22056a41086a2005200c4102746a2213200341ffff03712205200c6b41027410ce051a20132008360200200020054f0d00200920176a41e8016a2103034020032802002200200741016a22073b010420002009360200200341046a210320052007470d000b0b200241106a41086a200e280200220336020020112003360200200220022903382204370310200220043703000240200928020022030d0020012108200a21040c040b20092f0104211320032109200a21042001210820122100201221030c000b0b41c6a8c000413541a888c6001028000b4194024104102d000b200241d0026a410272410041da0010cc051a200241f0016a200241d0026a41dc0010cd051a200241386a410041b40110cc051a419402101e2203450d0120034100360200200341046a200241f0016a41dc0010cd051a200341e0006a200241386a41b40110cd0521052003200628020022003602e4012006200336020020062006280204220141016a360204200041003b010420002003360200200241386a41086a200241086a2802003602002002200229030037033820012012470d0220032f01062200410a4b0d0320052000410c6c6a22052002290338370200200320004103746a41086a2004370000200541086a200241386a41086a2802003602002003200041016a22004102746a41e4016a2008360200200320003b0106200820003b0104200820033602000b200241b0036a24000f0b4194024104102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b5302017f027e230041306b22022400200210c50120024100360228200242013703202002200241206a36022c20022002412c6a10b9012002350228210320023502202104200241306a240020042003422086840be41803057f017e297f230041b00d6b2201240020014100360204200141e4fdc60036020010792102200141086a41086a220342003703002001420037030841c8d2c0004127200141086a1000200141900d6a41086a2003290300370300200120012903083703900d200141003602082002417f6a41d100702102200141900d6a4110200141086a100321030240024020012802082204417f460d002003450d00200120043602ec0c200120033602e80c200141086a200141e80c6a10e301024020012802082205450d00200129020c21062004450d02200310200c020b41ceb8c4004133200141880d6a41fcbfc4004184b9c400102e000b41012105420021060b024002402006422088a722030d0020004200370000200041186a4200370000200041106a4200370000200041086a42003700000c010b200141086a410041e00c10cc051a200541206a2107200520034105746a2108410021094100210a4100210b4100210c4100210d4100210e4100210f410021104100211141002112410021134100211441002115410021164100211741002118410021194100211a4100211b4100211c4100211d4100211e4100211f410021204100212141002122410021234100212441002125410021264100212741002128200521034100212941d100212a024003402029212b20032104024002402002450d00200241016a2102200421030340024020082003470d00200521030b2003220441206a21032002417f6a22020d000b20040d010c030b024020042008460d00200441206a21030c010b20072103200521040b02400240024002402001280204220241056a222c417f4c0d002001280200212d02400240202c450d00202c101e222e450d0341002129200141003602980d2001202c3602940d2001202e3602900d0c010b200141003602980d2001202c3602940d200141013602900d4101101e222e450d03200141013602940d2001202e3602900d20012802980d21290b2001202941016a3602980d202e20296a202b3a0000200120023602880d200141880d6a200141900d6a1063024020012802940d222e20012802980d222c6b2002490d0020012802900d212e0c040b0240202c20026a2229202c490d00202e410174222c2029202c20294b1b222c4100480d0002400240202e0d00202c101e212e0c010b20012802900d202e202c1022212e0b0240202e450d002001202c3602940d2001202e3602900d20012802980d212c0c050b202c4101102d000b1027000b102c000b202c4101102d000b41014101102d000b2001202c20026a3602980d202e202c6a202d200210cd051a2001200141900d6a3602880d2004200141880d6a10b90120012802940d210420012802900d210220012802980d212c200141900d6a41186a222e4200370300200141900d6a41106a22294200370300200141900d6a41086a222d4200370300200142003703900d2002202c200141900d6a1001200141e80c6a41186a222c202e290300370300200141e80c6a41106a222e2029290300370300200141e80c6a41086a222f202d290300370300200120012903900d3703e80c02402004450d00200210200b202a417f6a212a202b41016a2129200141086a202b4103704105746a220220012903e80c370000200241186a202c290300370000200241106a202e290300370000200241086a202f2903003700004100210402400340202b202b41036e222c417d6c6a4102470d01200141086a20046a220241df006a2d000022282002411f6a2d0000222e712028202e722002413f6a2d000071722120200241de006a2d000022282002411e6a2d0000222e712028202e722002413e6a2d00007172211f200241dd006a2d000022282002411d6a2d0000222e712028202e722002413d6a2d00007172211e200241dc006a2d000022282002411c6a2d0000222e712028202e722002413c6a2d00007172211d200241db006a2d000022282002411b6a2d0000222e712028202e722002413b6a2d00007172211c200241da006a2d000022282002411a6a2d0000222e712028202e722002413a6a2d00007172211b200241d9006a2d00002228200241196a2d0000222e712028202e72200241396a2d00007172211a200241d8006a2d00002228200241186a2d0000222e712028202e72200241386a2d000071722119200241d7006a2d00002228200241176a2d0000222e712028202e72200241376a2d000071722118200241d6006a2d00002228200241166a2d0000222e712028202e72200241366a2d000071722117200241d5006a2d00002228200241156a2d0000222e712028202e72200241356a2d000071722116200241d4006a2d00002228200241146a2d0000222e712028202e72200241346a2d000071722115200241d3006a2d00002228200241136a2d0000222e712028202e72200241336a2d000071722114200241d2006a2d00002228200241126a2d0000222e712028202e72200241326a2d000071722113200241d1006a2d00002228200241116a2d0000222e712028202e72200241316a2d000071722112200241d0006a2d00002228200241106a2d0000222e712028202e72200241306a2d000071722111200241cf006a2d000022282002410f6a2d0000222e712028202e722002412f6a2d000071722110200241ce006a2d000022282002410e6a2d0000222e712028202e722002412e6a2d00007172210f200241cd006a2d000022282002410d6a2d0000222e712028202e722002412d6a2d00007172210e200241cc006a2d000022282002410c6a2d0000222e712028202e722002412c6a2d00007172210d200241cb006a2d000022282002410b6a2d0000222e712028202e722002412b6a2d00007172210c200241ca006a2d000022282002410a6a2d0000222e712028202e722002412a6a2d00007172210b200241c9006a2d00002228200241096a2d0000222e712028202e72200241296a2d00007172210a200241c8006a2d00002228200241086a2d0000222e712028202e72200241286a2d000071722109200241c7006a2d00002228200241076a2d0000222e712028202e72200241276a2d000071722121200241c6006a2d00002228200241066a2d0000222e712028202e72200241266a2d000071722122200241c5006a2d00002228200241056a2d0000222e712028202e72200241256a2d000071722123200241c4006a2d00002228200241046a2d0000222e712028202e72200241246a2d000071722124200241c3006a2d00002228200241036a2d0000222e712028202e72200241236a2d000071722125200241c2006a2d00002228200241026a2d0000222e712028202e72200241226a2d000071722126200241c1006a2d00002228200241016a2d0000222e712028202e72200241216a2d000071722127200241c0006a2d0000222820022d0000222e712028202e72200241206a2d000071722128200441800c460d01200141086a2004202c410574202b41096e41e0006c6b6a6a220241ff006a20203a0000200241fe006a201f3a0000200241fd006a201e3a0000200241fc006a201d3a0000200241fb006a201c3a0000200241fa006a201b3a0000200241f9006a201a3a0000200241f8006a20193a0000200241f7006a20183a0000200241f6006a20173a0000200241f5006a20163a0000200241f4006a20153a0000200241f3006a20143a0000200241f2006a20133a0000200241f1006a20123a0000200241f0006a20113a0000200241ef006a20103a0000200241ee006a200f3a0000200241ed006a200e3a0000200241ec006a200d3a0000200241eb006a200c3a0000200241ea006a200b3a0000200241e9006a200a3a0000200241e8006a20093a0000200241e7006a20213a0000200241e6006a20223a0000200241e5006a20233a0000200241e4006a20243a0000200241e3006a20253a0000200241e2006a20263a0000200241e1006a20273a0000200241e0006a20283a0000202c212b200441e0006a220441e00c470d000b0b41002102202a0d000b0b200020203a001f2000201f3a001e2000201e3a001d2000201d3a001c2000201c3a001b2000201b3a001a2000201a3a0019200020193a0018200020183a0017200020173a0016200020163a0015200020153a0014200020143a0013200020133a0012200020123a0011200020113a0010200020103a000f2000200f3a000e2000200e3a000d2000200d3a000c2000200c3a000b2000200b3a000a2000200a3a0009200020093a0008200020213a0007200020223a0006200020233a0005200020243a0004200020253a0003200020263a0002200020273a0001200020283a00000b02402006a7450d00200510200b200141b00d6a24000bc63805077f017e047f037e047f230041f00d6b22022400024002402001450d00200220003602080c010b200241e4fdc6003602080b2002200136020c20024190086a200241086a10b40102400240024002400240024002400240024002400240024002400240024020022903f8084203510d00200241c8006a20024190086a41d80210cd051a200241a0036a200241c8006a41d80210cd051a20024190086a200241a0036a10a20120022802980821030240200228029408450d0020022802900810200b20024190086a200241a0036a41d80210cd051a200241f8056a20024190086a10c70141012100024020022d00f8054101470d00200220022d00fb053a0013200220022f00f9053b0011200241013a00100c0a0b20024190086a200241f8056a41086a220141900210cd051a2002200241e0086a220410c8010240024020022903b0084202520d00200241106a41206a22014200370300200241106a41186a22004280808080c000370300200241013a0038200242043703202002427f37031820024200370310200241f8056a41206a22034200370300200241f8056a41186a22054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241d00b6a200241106a200241f8056a10c901200241106a41286a2206200241d00b6a41286a2903003703002001200241d00b6a41206a2903003703002000200241d00b6a41186a290300370300200241106a41106a2207200241d00b6a41106a290300370300200241106a41086a2208200241d00b6a41086a290300370300200220022903d00b3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241800c6a200241106a200241f8056a10c9012006200241800c6a41286a2903003703002001200241800c6a41206a2903003703002000200241800c6a41186a2903003703002007200241800c6a41106a2903003703002008200241800c6a41086a290300370300200220022903800c3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241b00c6a200241106a200241f8056a10c9012006200241b00c6a41286a2903003703002001200241b00c6a41206a2903003703002000200241b00c6a41186a2903003703002007200241b00c6a41106a2903003703002008200241b00c6a41086a290300370300200220022903b00c3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241e00c6a200241106a200241f8056a10c9012006200241e00c6a41286a2903003703002001200241e00c6a41206a2903003703002000200241e00c6a41186a2903003703002007200241e00c6a41106a2903003703002008200241e00c6a41086a290300370300200220022903e00c3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241900d6a200241106a200241f8056a10c9012006200241900d6a41286a2903003703002001200241900d6a41206a2903003703002000200241900d6a41186a2903003703002007200241900d6a41106a2903003703002008200241900d6a41086a290300370300200220022903900d3703102003420037030020054280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241c00d6a200241106a200241f8056a10c901200241ac0b6a2200200241c00d6a41086a290300370200200220022903c00d3702a40b200241d40d6a2802002107200241c00d6a41186a2802002101200241c00d6a41206a2802002108200241e40d6a280200210320022802d00d210520022802dc0d210620022903e80d2109200241f00a6a41086a2000290200370300200220022902a40b3703f00a20022802e008410a460d01200241003a00fb05418102210020024181023b00f905200241013a00f8050c090b20022d0004210a20022802002108200241106a41206a22004200370300200241106a41186a22054280808080c000370300200241013a0038200242043703202002427f37031820024200370310200241f8056a41206a22064200370300200241f8056a41186a22074280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241f00a6a200241106a200241f8056a10c901200241106a41286a220b200241f00a6a41286a2903003703002000200241f00a6a41206a2903003703002005200241f00a6a41186a290300370300200241106a41106a220c200241f00a6a41106a290300370300200241106a41086a220d200241f00a6a41086a290300370300200220022903f00a3703102006420037030020074280808080c000370300200241013a00a00620024204370388062002427f37038006200242003703f805200241a00b6a200241106a200241f8056a10c901200b200241a00b6a41286a2903003703002000200241a00b6a41206a2903003703002005200241a00b6a41186a290300370300200c200241a00b6a41106a290300370300200d200241a00b6a41086a290300370300200220022903a00b37031020014200370300200242003703f8054195fcc000410d200241f8056a1000200241c00d6a41086a2001290300370300200220022903f8053703c00d41002100200241003602f805200241c00d6a4110200241f8056a10032101024020022802f8052205417f460d002001450d0020054104490d0320012800002100200110200b2000ad210e427f2109024020022903b0084201520d0020022903b80822094200510d04200e200241c0086a290300220f200f200e541b221020097c2010200f7d2009827d21090b200241f8056a41206a4200370300200241f8056a41186a4280808080c000370300200241a4066a200241c30d6a280000360000200241013a00a0062002420437038806200242003703f805200220022800c00d3600a106200242002009200e7d220e200e2009561b37038006200241d00b6a200241106a200241f8056a10c901200241c00d6a41286a200241d00b6a41286a290300370300200241c00d6a41206a200241d00b6a41206a290300370300200241c00d6a41186a200241d00b6a41186a290300370300200241c00d6a41106a200241d00b6a41106a290300370300200241c00d6a41086a200241d00b6a41086a290300370300200220022903d00b3703c00d20022802c80821004113101e2201450d04200141002900d4fc403700002001410f6a41002800e3fc40360000200141086a41002900dcfc4037000020024293808080b0023702e40c200220013602e00c20024190086a200241e00c6a10ca0120022802e80c210120022802e00c2105200241106a41186a22064200370300200241106a41106a22074200370300200241106a41086a220b42003703002002420037031020052001200241106a1001200241900d6a41186a2006290300370300200241900d6a41106a2007290300370300200241900d6a41086a200b290300370300200220022903103703900d024020022802e40c450d0020022802e00c10200b20024100360210200241900d6a4120200241106a100321010240024020022802102205417f460d002001450d00024020054104490d002001280000210b20011020200b20004d0d02200220022800b00c3602e80a2002200241b30c6a2800003600eb0a200241003a001320024180063b0011200241013a001020022802d00d21030240200241d80d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b0240200241d40d6a280200450d00200310200b20022802dc0d21030240200241e40d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241e00d6a280200450d0c200310200c0c0b41ceb8c4004133200241e00c6a41fcbfc4004184b9c400102e000b4100210b0b410c101e2205450d054104101e2201450d06200242043702142002200136021020024190086a200241106a10ca01024020022802142206200228021822016b4104490d00200228021021070c080b200141046a22072001490d0b200641017422012007200120074b1b22014100480d0b0240024020060d002001101e21070c010b200228021020062001102221070b02402007450d002002200136021420022007360210200228021821010c080b20014101102d000b200241f8056a200241e4086a10cb01024020022d00f8054101470d0020022f00f90520022d00fb054110747221000c080b200241e00c6a41286a2200200241f8056a41306a290300370300200241e00c6a41206a220b200241f8056a41286a220c290300370300200241e00c6a41186a220d200241f8056a41206a220a290300370300200241e00c6a41106a2211200241f8056a41186a2212290300370300200241e00c6a41086a2213200241f8056a41106a221429030037030020022002290380063703e00c200241c00d6a41086a200241f00a6a41086a290300370300200241e40d6a2003360200200241c00d6a41206a2008360200200241c00d6a41186a2001360200200241d40d6a2007360200200220022903f00a3703c00d200220093703e80d200220063602dc0d200220053602d00d200c2000290300370300200a200b2903003703002012200d29030037030020142011290300370300200241f8056a41086a2013290300370300200220022903e00c3703f805200241900d6a200241c00d6a200241f8056a10c901200241106a41086a20022903900d370300200241106a41106a200241900d6a41086a290300370300200241106a41186a200241900d6a41106a290300370300200241106a41206a200241900d6a41186a290300370300200241106a41286a200241900d6a41206a290300370300200241106a41306a200241900d6a41286a290300370300200241003a00100c080b200241d4006a4104360200200241b4036a4102360200200242023702a403200241fcc3c0003602a0032002410436024c200241a8c5c000360248200241003602fc05200241e4fdc6003602f8052002200241c8006a3602b0032002200241f8056a360250200241a0036a418cc4c0001033000b41ceb8c4004133200241e00c6a41fcbfc4004184b9c400102e000b4180ecc6004119419cecc6001028000b41134101102d000b410c4104102d000b41044101102d000b410421062002200141046a360218200720016a2000360000200241900d6a41086a200228021822013602002002200229031022093703900d200541086a200136020020052009370200410021010240200b20004f0d00024002400240410c101e2206450d004104101e2201450d01200242043702142002200136021020024190086a200241106a10ca01024020022802142207200228021822016b4104490d00200228021021070c030b200141046a220b2001490d0720074101742201200b2001200b4b1b22014100480d070240024020070d002001101e21070c010b200228021020072001102221070b02402007450d002002200136021420022007360210200228021821010c030b20014101102d000b410c4104102d000b41044101102d000b2002200141046a360218200720016a2000417f6a360000200241900d6a41086a200228021822013602002002200229031022093703900d200641086a200136020020062009370200410121010b200241f8056a41206a428180808010370300200241f8056a41186a20013602002002418c066a2001360200200220022800b00c3602e80a2002200241b30c6a2800003600eb0a200241a4066a20022800eb0a360000200241013a00a006200220053602940620022006360288062002427f3703800620022008ad22093703f805200220022802e80a3600a106200241800c6a200241c00d6a200241f8056a10c901200241c00d6a41286a200241800c6a41286a290300370300200241c00d6a41206a200241800c6a41206a290300370300200241c00d6a41186a200241800c6a41186a290300370300200241c00d6a41106a200241800c6a41106a290300370300200241c00d6a41086a200241800c6a41086a290300370300200220022903800c3703c00d200241106a200a4101712201200310cc010240024020022d00100d00200241106a2008200110cd010240024020022d00100d00200241f8056a41206a22034200370300200241f8056a41186a22054280808080c000370300200220022800900d3602e00c2002200241930d6a2800003600e30c200241a4066a20022800e30c36000020024204370388062002427f370380062002427f200920011b3703f805200220022802e00c3600a106200241013a00a006200241b00c6a200241c00d6a200241f8056a10c901200241900d6a41286a200241b00c6a41286a290300370300200241900d6a41206a200241b00c6a41206a290300370300200241900d6a41186a2200200241b00c6a41186a290300370300200241900d6a41106a200241b00c6a41106a290300370300200241900d6a41086a200241b00c6a41086a290300370300200220022903b00c3703900d200241f8056a20022903d008200241d8086a29030020024190086a2008200110ce0120022d00f8054101460d01200241c00d6a41286a200241f8056a41306a290300370300200241c00d6a41206a200241f8056a41286a290300370300200241c00d6a41186a2003290300370300200241c00d6a41106a2005290300370300200241c00d6a41086a200241f8056a41106a29030037030020022002290380063703c00d200241e00c6a200241900d6a200241c00d6a10c901200241106a41086a20022903e00c370300200241106a41106a200241e00c6a41086a290300370300200241106a41186a200241e00c6a41106a290300370300200241106a41206a200241e00c6a41186a290300370300200241106a41286a200241e00c6a41206a290300370300200241106a41306a200241e00c6a41286a290300370300200241003a00100c050b20022f001120022d00134110747221010c020b200220022d00fb053a0013200220022f00f9053b0011200241013a001020022802a00d2103024020002802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b0240200241a40d6a280200450d00200310200b20022802ac0d21030240200241b40d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241b00d6a280200450d03200310200c030b20022f001120022d00134110747221010b200220022800900d3602e00c2002200241930d6a2800003600e30c200241013a0010200220013b0011200220014110763a001320022802d00d21030240200241d80d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b0240200241d40d6a280200450d00200310200b20022802dc0d21030240200241e40d6a2802002201450d002001410c6c21002003210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241e00d6a280200450d01200310200c010b200241013a0010200220003b0011200220004110763a001302402001450d002001410c6c21002005210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b02402007450d00200510200b02402003450d002003410c6c21002006210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b2008450d00200610200b200410cf0120022d001021000b024002404101101e2201450d00200242013702940820022001360290080240200041ff01714101470d002002410136029808200141013a0000200241106a41017220024190086a10b501200228029808210320022802900821010c060b2002410136029808200141003a0000200241186a2903002109024002402002280294082200417f6a41074b0d00200041017422034109200341094b1b22034100480d0420012000200310222201450d01200220033602940820022001360290080b200241093602980820012009370001200241286a28020021002002200241306a28020022013602a003200241a0036a20024190086a106302402001450d0020002001410c6c6a21080340200028020021062002200041086a28020022013602a003200241a0036a20024190086a106302400240200228029408220520022802980822036b2001490d0020022802900821050c010b200320016a22072003490d06200541017422042007200420074b1b22074100480d060240024020050d002007101e21050c010b20022802900820052007102221050b02402005450d00200220073602940820022005360290080c010b20074101102d000b2002200320016a36029808200520036a2006200110cd051a2000410c6a22002008470d000b0b200241346a280200210020022002413c6a28020022013602a003200241a0036a20024190086a10630240024020010d00200228029408210620022802980821080c010b20002001410c6c6a21040340200028020021072002200041086a28020022013602a003200241a0036a20024190086a106302400240200228029408220620022802980822036b2001490d0020022802900821050c010b200320016a22052003490d06200641017422082005200820054b1b22084100480d060240024020060d002008101e21050c010b20022802900820062008102221050b02402005450d0020022008360294082002200536029008200821060c010b20084101102d000b2002200320016a220836029808200520036a2007200110cd051a2000410c6a22002004470d000b0b200241206a29030021090240200620086b4108490d0020022802900821010c030b200841086a22012008490d03200641017422002001200020014b1b22004100480d030240024020060d002000101e21010c010b20022802900820062000102221010b02402001450d00200220003602940820022001360290080c030b20004101102d000b20034101102d000b41014101102d000b2002200841086a36029808200120086a2009370000200241c0006a2d000021052002280294082002280298082200470d02200041016a22032000490d00200041017422062003200620034b1b220341004e0d010b1027000b0240024020000d002003101e21010c010b200120002003102221010b2001450d02200220033602940820022001360290080b2002200041016a220336029808200120006a20053a00000b2003ad4220862001ad842109024020022d00100d000240200241306a2802002200450d00200241286a28020021012000410c6c210003400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b02402002412c6a280200450d00200228022810200b02402002413c6a2802002200450d00200241346a28020021012000410c6c210003400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b200241386a280200450d00200228023410200b200241f00d6a240020090f0b20034101102d000b8c1b07017f027e027f017e057f017e047f230041c00c6b22022400420221030240024002400240200129036822044202520d00200220014198016a41c00110cd051a0c010b2002418e026a200141246a41c20010cd051a200241d0026a41086a220520014188016a290300370300200241d0026a41106a220620014190016a290300370300200220014180016a2903003703d002200141f8006a29030021032001290370210720024188036a41206a200141206a28020036020020024188036a41186a200141186a29020037030020024188036a41106a200141106a29020037030020024188036a41086a200141086a2902003703002002200129020037038803200241e0076a20024188036a10b60220024198066a41086a2208200241e9076a29000037030020024198066a41106a2209200241f1076a29000037030020024198066a41186a220a200241f9076a290000370300200220022900e107370398060240024002400240024002400240024002400240024020022d00e0074101460d00200241e8026a41186a200a290300370300200241e8026a41106a2009290300370300200241e8026a41086a200829030037030020022002290398063703e802200241a8096a20014198016a41c00110cd051a200241e80a6a41106a2006290300370300200241e80a6a41086a2005290300370300200220022903d0023703e80a41002106200241a00c6a410010a101200241e00b6a41086a200241ab0c6a290000370300200241e00b6a41106a200241b30c6a290000370300200241f50b6a200241a00c6a41186a290000370000200220022900a30c3703e00b20022f01a00c210b20022d00a20c210c200241a00c6a41086a22014200370300200242003703a00c4195fcc000410d200241a00c6a1000200241800c6a41086a2001290300370300200220022903a00c3703800c200241003602a00c200241800c6a4110200241a00c6a10032101024020022802a00c2205417f460d002001450d0020054104490d0220012800002106200110200b41002105024020044201520d0020074200510d03417f21052006ad220d20032003200d541b220d200d20037d2007827d220d42ffffffff0f560d00200da721050b4110101e2201450d03200141086a41002900ccfc40370000200141002900c4fc4037000020014110412010222201450d0420012005360010200241a00c6a41186a22064200370300200241a00c6a41106a22084200370300200241a00c6a41086a22094200370300200242003703a00c20014114200241a00c6a1001200241800c6a41186a2006290300370300200241800c6a41106a220a2008290300370300200241800c6a41086a2009290300370300200220022903a00c3703800c2001102002400240200241800c6a412041e4fdc600410041001002417f470d00410121010c010b200241a00c6a200510a101200241c00b6a41086a200241ab0c6a290000370300200241c00b6a41106a200241b30c6a290000370300200241c00b6a41156a2006290000370000200241800c6a41086a200241e00b6a41086a290300370300200a200241e00b6a41106a290300370300200241800c6a41156a200241e00b6a41156a290000370000200220022900a30c3703c00b200220022903e00b3703800c20022f01a00c20022d00a20c411074722105410021010b200241a00b6a41156a2206200241800c6a41156a290000370000200241a00b6a41106a2208200241800c6a41106a290300370300200241a00b6a41086a2209200241800c6a41086a290300370300200241800b6a41086a220a200241c00b6a41086a290300370300200241800b6a41106a220e200241c00b6a41106a290300370300200241800b6a41156a220f200241c00b6a41156a290000370000200220022903800c3703a00b200220022903c00b3703800b024020010d00200241e0056a41156a22012006290000370000200241e0056a41106a22062008290300370300200241e0056a41086a22082009290300370300200241c0056a41086a2209200a290300370300200241c0056a41106a220a200e290300370300200241c0056a41156a220e200f290000370000200220022903a00b3703e005200220022903800b3703c00520024180066a41106a220f200241e80a6a41106a29030037030020024180066a41086a2210200241e80a6a41086a290300370300200220022903e80a37038006200241e0076a41046a200241a8096a41c00110cd051a20024198066a200241e0076a41c40110cd051a20024188036a20024198066a41046a41c00110cd051a200241fe046a200b200c41107472220b4110763a0000200241fc046a220c200b3b0100200241d8046a2003370300200241d0046a2007370300200241e0046a220b200229038006370300200241e8046a22112010290300370300200241f0046a200f290300370300200241ff046a20022903e00537000020024187056a20082903003700002002418f056a200629030037000020024194056a2001290000370000200220043703c804200241013602f8042002419e056a20054110763a00002002419c056a220620053b01002002419f056a20022903c005370000200241a7056a2009290300370000200241af056a200a290300370000200241b4056a200e2900003700004104101e2201450d06200242043702e407200220013602e00720024188036a200241e0076a10da02024020022903c8044201520d0020022903d80420022903d0042203420c882204420120044201561b802104024020022802e407220520022802e80722016b4102490d0020022802e00721050c0a0b200141026a22082001490d0b200541017422012008200120084b1b22014100480d0b0240024020050d002001101e21050c010b20022802e00720052001102221050b02402005450d00200220013602e407200220053602e00720022802e80721010c0a0b20014101102d000b024020022802e40720022802e8072201460d0020022802e00721050c080b200141016a22052001490d0a200141017422082005200820054b1b22084100480d0a0240024020010d002008101e21050c010b20022802e00720012008102221050b02402005450d00200220083602e407200220053602e00720022802e80721010c080b20084101102d000b200241a8096a10cf01200041036a41003a0000200041800a3b0001200041013a00000c0d0b200041013b0001200041013a0000200041036a41003a000020014198016a10cf010c0c0b41ceb8c4004133200241a00c6a41fcbfc4004184b9c400102e000b4180ecc6004119419cecc6001028000b41104101102d000b41204101102d000b41044101102d000b2002200141016a3602e807200520016a41003a00000c010b2002200141026a3602e807200520016a2004a741047420037aa7417f6a22014101200141014b1b2201410f2001410f491b723b00000b200b200241e0076a1063200220113602980620024198066a200241e0076a10df0220022802f8042108024020022802e407220520022802e80722016b4104490d0020022802e00721050c020b200141046a22092001490d00200541017422012009200120094b1b22014100480d000240024020050d002001101e21050c010b20022802e00720052001102221050b02402005450d00200220013602e407200220053602e00720022802e80721010c020b20014101102d000b1027000b2002200141046a3602e807200520016a20083600002002200241e0076a36029806200c20024198066a10b9012002200241e0076a36029806200620024198066a10b90120022802e007210120022802e40721050240024020022802e80722064180024b0d002002418e026a20012006200241e8026a10c80421060c010b200241a00c6a41186a22084200370300200241a00c6a41106a22094200370300200241a00c6a41086a220a4200370300200242003703a00c20012006200241a00c6a1001200241800c6a41186a2008290300370300200241800c6a41106a2009290300370300200241800c6a41086a200a290300370300200220022903a00c3703800c2002418e026a200241800c6a4120200241e8026a10c80421060b02402005450d00200110200b2006450d01200241e8016a41086a200241e8026a41086a290300370300200241e8016a41106a200241e8026a41106a290300370300200241e8016a41186a200241e8026a41186a290300370300200241c0016a41086a200241d8046a290300370300200241c0016a41106a200241e0046a290300370300200241c0016a41186a200241e8046a290300370300200241e0016a200241f0046a290300370300200220022903e8023703e8012002200241d0046a2903003703c00120022903c8042103200220024188036a41c00110cd051a0b200041086a20022903e801370300200041286a2003370300200041306a20022903c001370300200041206a200241e8016a41186a290300370300200041186a200241e8016a41106a290300370300200041106a200241e8016a41086a290300370300200041386a200241c0016a41086a290300370300200041c0006a200241c0016a41106a290300370300200041c8006a200241c0016a41186a290300370300200041d0006a200241c0016a41206a290300370300200041d8006a200241c00110cd051a200041003a0000200241c00c6a24000f0b20004180083b0001200041013a0000200041036a41003a000020024188036a10cf010b200241c00c6a24000bdc0201027f410021024190ce00210302400240024002400240024002400240024020012802000e2200080101080203040808080808080508080808080808080808080808080808080808000b417f2103200141086a280200417f6a220141064b0d0541012102024020010e0708060700070707080b41c09a0c21030c070b410121020c050b200141086a280200417f6a220141034b0d0341c0843d210341002102024020010e0406000606060b41d086032103410121020c050b200141086a2d0000417f6a2201410e4b0d0241a0c21e21034100210202400240024020010e0f070700000101070701020202020202070b4180b5182103410021020c060b41b0e32d2103410021020c050b41002103410121020c040b41f093092103410021020c030b2001280204417f6a220141024b0d00410021034101210220010e03020002020b410021020b4190ce0021030b200020023a0004200020033602000bd30505017f027e077f017e017f230041206b220324002002290300210420012903002105200141106a21062002280210210702400240024002400240200141146a2802002208200141186a28020022096b200241186a280200220a490d00200628020021080c010b2009200a6a220b2009490d012008410174220c200b200c200b4b1b220bad420c7e220d422088a70d01200da7220c4100480d010240024020080d00200c101e21080c010b20062802002008410c6c200c102221080b2008450d0220012008360210200141146a200b3602000b20082009410c6c6a2007200a410c6c10cd051a200141186a2009200a6a36020020024100360218200341086a200641086a280200360200200320062902003703002001411c6a2106200228021c210b0240200141206a2802002208200141246a28020022096b200241246a280200220a490d00200628020021080c030b2009200a6a220c2009490d002008410174220e200c200e200c4b1b220cad420c7e220d422088a70d00200da7220e4100480d000240024020080d00200e101e21080c010b20062802002008410c6c200e102221080b02402008450d002001200836021c200141206a200c3602000c030b200e4104102d000b1027000b200c4104102d000b427f200520047c220420042005541b210520082009410c6c6a200b200a410c6c10cd051a200141246a2009200a6a36020020024100360224200341106a41086a200641086a28020036020020032006290200370310200229030822042001290308220d200d2004561b21040240024020012d0028450d004101210120022d00280d010b410021010b20002005370300200020032903003702102000200329031037021c200020013a002820002004370308200041186a200341086a280200360200200041246a200341106a41086a2802003602000240200241146a280200450d00200710200b0240200241206a280200450d00200b10200b200341206a24000b962901067f20002d0000210202400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141046a2203280200200141086a22042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0001210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0002210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0003210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0004210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0005210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0006210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0007210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0008210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0009210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000f210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1120012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0010210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0011210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0012210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0013210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0014210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0015210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0016210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0017210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0018210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0019210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d2020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001f21050240200328020020042802002200460d00200128020021030c210b200041016a22032000490d00200041017422062003200620034b1b22064100480d000240024020000d002006101e21030c010b200128020020002006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021000c210b20064101102d000b1027000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2004200041016a360200200320006a20053a00000bf90a020c7f017e230041306b2202240020012802202103200241206a10d3010240024002400240024002400240200228022820034b0d002002280224450d01200228022010200c010b20032002280220220420034105746a10d401210302402002280224450d00200410200b20030d010b10d5012205200128021c470d01200210d101200228020021062002280208200128022022074b0d0220004180083b0001200041013a0000200041036a41003a00000c030b20004180063b0001200041013a0000200041036a41003a00000c030b20004180063b0001200041013a0000200041036a41003a00000c020b20024100360228200242013703202001280200210402400240024002404104101e2203450d0020024284808080c00037022420022003360220200320043600002001280204210820022001410c6a2802002203360210200241106a200241206a106302400240024020022802242209200228022822046b2003490d00200228022021090c010b200420036a220a2004490d042009410174220b200a200b200a4b1b220a4100480d040240024020090d00200a101e21090c010b20022802202009200a102221090b2009450d012002200a360224200220093602200b2002200420036a360228200920046a2008200310cd051a200141106a28020021042002200141186a2802002203360210200241106a200241206a10630240024020030d00200228022421082002280228210c0c010b20042003410c6c6a210d03402004280200210b2002200441086a2802002203360210200241106a200241206a10630240024020022802242208200228022822096b2003490d002002280220210a0c010b200920036a220a2009490d062008410174220c200a200c200a4b1b220c4100480d060240024020080d00200c101e210a0c010b20022802202008200c1022210a0b0240200a450d002002200c3602242002200a360220200c21080c010b200c4101102d000b2002200920036a220c360228200a20096a200b200310cd051a2004410c6a2204200d470d000b0b200128021c210902402008200c6b4104490d00200c41046a2104200228022021030c030b200c41046a2204200c490d03200841017422032004200320044b1b220a4100480d030240024020080d00200a101e21030c010b20022802202008200a102221030b02402003450d002002200a36022420022003360220200a21080c030b200a4101102d000b200a4101102d000b41044101102d000b200220043602282003200c6a20093600002001280220210a024002400240200820046b41034d0d00200821090c010b200441046a22092004490d022008410174220b2009200b20094b1b22094100480d020240024020080d002009101e21030c010b200320082009102221030b2003450d0120022009360224200220033602200b200320046a200a3600002003200441046a200141246a200620074105746a22081010210402402009450d00200310200b2004450d0220004180083b0001200041013a0000200041036a41003a00000c030b20094101102d000b1027000b02400240410c101e2203450d004104101e2204450d0120024284808080c00037022420022004360220200420053600002008200241206a10ca01200241106a41086a2002280228220436020020022002290320220e370310200341086a20043602002003200e370200200041306a41013a0000200041286a428180808010370200200041246a2003360200200041206a4100360200200041186a4204370300200041106a4232370300200041086a427f370300200041316a2002280020360000200041346a200241236a280000360000200041003a00002002280204450d03200610200c030b410c4104102d000b41044101102d000b2002280204450d00200610200b200241306a24000ba80202047f017e230041206b22032400200341106a41086a220442003703002003420037031041e780c7004117200341106a1000200341086a200429030037030020032003290310370300410021042003410036021020034110200341106a100321050240024020032802102206417f460d002005450d0020064104490d0120052800002104200510200b02400240417f200420026a220520052004491b22044280808080f28ba80942808080c0f588fe0620011b22072007428094ebdc038022074280ec94a37c7e7c4280cab5ee01562007a76a4b0d00200041046a2004360200410021040c010b200041800c3b0001200041036a41003a0000410121040b200020043a0000200341206a24000f0b41ceb8c4004133200341106a41fcbfc4004184b9c400102e000b860201047f230041206b22032400200341106a41086a220442003703002003420037031041cd80c700411a200341106a1000200341086a200429030037030020032003290310370300410021042003410036021020034110200341106a100321050240024020032802102206417f460d002005450d0020064104490d0120052800002104200510200b02400240417f200441c0843d41b0e32d20021b2205200120052001491b6a220120012004491b220420054b0d00200041046a2004360200410021040c010b200041800c3b0001200041036a41003a0000410121040b200020043a0000200341206a24000f0b41ceb8c4004133200341106a41fcbfc4004184b9c400102e000bde0404037f027e017f047e230041c0006b22062400200641186a41086a2207420037030020064200370318418f82c700411a200641186a1000200641306a41086a20072903003703002006200629031837033020054101732108200641086a200641306a109202410021074200210902402006280208450d002006290310220942005521072009427f550d00428080808080808080807f420020097d2009428080808080808080807f511b21090b200620092009428094ebdc0380220a4280ec94a37c7e7ca7220b3602182006418094ebdc0336021c200641186a2003427f4200200a20051b220c4100200641186a200b418094ebdc034b4102746a28020020051b2205418094ebdc036e220b2005200b4180ec94a37c6c6a4180cab5ee014b6aad7c22092008ad220a7c220d4200200a20097d220e200e200a5642002009200c54ad220c200a200954ad7c7d220a420052200a501b22051b20071b220e20017c220f200f200e542208200c200d200954ad7c4200200a20051b20071b220920027c2008ad7c220a200954200a2009511b22051b2209427f200a20051b220a410141112001200284501b1093020240024020062802184101470d0020004180023b0001200041036a41003a0000410121050c010b200629032021012006200641186a41106a290300370320200620013703182006200641186a360230200641306a109402200041306a41013a0000200041286a4200370300200041206a4280808080c000370300200041186a4204370300200041106a427f370300200041086a2009427f200a501b370300410021050b200020053a0000200641c0006a24000bdc2b01067f230041306b2201240002400240024002400240024002400240024002402000280200220241204b0d0002400240024002400240024002400240024002400240024002400240024002400240024020020e21001b1b011b1b02031b04051b1b1b060708090a0b0c1b0d0e0f1b101b111b1b1b1b000b0240200041086a280200220241064b0d00024002400240024020020e071f1f001f0102031f0b200041106a280200450d1e2000410c6a28020010200c1e0b200041106a280200450d1d2000410c6a28020010200c1d0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303400240200241046a280200450d00200228020010200b0240200241106a280200450d002002410c6a28020010200b200241186a2102200341686a22030d000b0b200041106a280200450d1c200028020c10200c1c0b0240200041146a2802002203450d002000410c6a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041106a280200450d1b200028020c10200c1b0b200041106a280200450d1a2000410c6a28020010200c1a0b02402000410c6a2802002202450d0020002802042204200241f0006c6a2105034002402004410c6a2802002203450d0020042802042102200341246c210303400240024020022d0000220641034b0d0002400240024020060e0404000102040b2002410c6a280200450d03200241086a28020010200c030b2002410c6a280200450d02200241086a28020010200c020b2002410c6a280200450d01200241086a28020010200c010b200241086a280200450d00200241046a28020010200b200241246a21022003415c6a22030d000b0b200441f0006a21020240200441086a280200450d00200428020410200b2002210420022005470d000b0b200041086a280200450d19200028020410200c190b200041086a2d0000417a6a220241074b0d180240024020020e08001a1a1a1a1a1a01000b200041106a280200450d192000410c6a28020010200c190b200041106a280200450d182000410c6a28020010200c180b200041086a280200450d17200028020410200c170b200041086a280200450d16200028020410200c160b02402000410c6a280200450d00200041086a28020010200b02402000411c6a2802002203450d00200041146a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b200041186a280200450d15200028021410200c150b02402000280204220241024b0d00024020020e03160016160b200041086a220228020010cf0120022802001020200141306a24000f0b2000412c6a220228020010cf0120022802001020200141306a24000f0b200041086a2d00004101470d130240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b200041286a280200450d13200041246a28020010200c130b200041086a2d00004103470d12200041d0006a280200450d12200041cc006a28020010200c120b20002d00044101470d112000410c6a280200450d11200041086a28020010200c110b200041086a280200450d10200028020410200c100b200041086a2d0000417f6a220241074b0d0f02400240024002400240024020020e080001020304151505000b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d14200041286a280200450d14200210200c140b200041106a280200450d132000410c6a28020010200c130b200041106a280200450d122000410c6a28020010200c120b200041106a280200450d112000410c6a28020010200c110b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a2802002202450d002000411c6a280200450d00200210200b200041246a2802002202450d10200041286a280200450d10200210200c100b02402000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a2802002202450d002000413c6a280200450d00200210200b200041c4006a2802002202450d0f200041c8006a280200450d0f200210200c0f0b0240200041086a2d0000220241074b0d000240024002400240024020020e081414001401020304140b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d13200041186a28020010200c130b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d12200041186a28020010200c120b200041106a280200450d112000410c6a28020010200c110b200041106a280200450d102000410c6a28020010200c100b200041106a280200450d0f2000410c6a28020010200c0f0b200041106a280200450d0e2000410c6a28020010200c0e0b200041086a2d00004105470d0d200041106a280200450d0d2000410c6a28020010200c0d0b200041086a280200417f6a220241014b0d0c0240024020020e020001000b200041106a280200450d0d2000410c6a28020010200c0d0b200041106a280200450d0c2000410c6a28020010200c0c0b0240200041086a2d0000220241064b0d00024020020e070d000d0d0d0d0d0d0b200041306a280200450d0c2000412c6a28020010200c0c0b200041106a280200450d0b2000410c6a28020010200c0b0b02402000280204220241034b0d00024020020e040c000c0c0c0b2000410c6a280200450d0b200041086a28020010200c0b0b0240200041106a2802002203450d00200041086a28020021022003410c6c210303400240200241046a280200450d00200228020010200b2002410c6a2102200341746a22030d000b0b2000410c6a280200450d0a200028020810200c0a0b0240200041086a2d00002202410c4b0d00024002400240024002400240024002400240024020020e0d14000114020304050607140809140b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1320022802002106200210202006450d1320062802002103200610202003450d1320032802002202450d120340200310202002210320022802002206210220060d000c130b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1220022802002106200210202006450d1220062802002103200610202003450d1220032802002202450d100340200310202002210320022802002206210220060d000c110b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1120022802002106200210202006450d1120062802002103200610202003450d1120032802002202450d0e0340200310202002210320022802002206210220060d000c0f0b0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200436022c200120003602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182100200128021c21042003417f6a22030d000b0b200241908cc500460d1020022802002106200210202006450d1020062802002103200610202003450d1020032802002202450d0c0340200310202002210320022802002206210220060d000c0d0b0b2000410c6a2802004102490d0f200041106a280200200041146a280200200041186a28020010720c0f0b0240200041106a280200450d002000410c6a28020010200b02402000411c6a280200450d00200041186a28020010200b2000412c6a2802002103200041246a28020021020240200041286a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200536022c200120043602282001200236022420012006360220200141086a200141206a1061200128021021062001280214210220012802182104200128021c21052003417f6a22030d000b0b200241908cc500460d0920022802002106200210202006450d0920062802002103200610202003450d09200328020022020d060c080b0240200041106a280200450d002000410c6a28020010200b2000411c6a280200450d0d200041186a28020010200c0d0b0240200041106a280200450d002000410c6a28020010200b0240200041206a2802002202450d00200241306c2103200041186a28020041206a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241306a2102200341506a22030d000b0b2000411c6a280200450d0c200028021810200c0c0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0b200028020c10200c0b0b0240200041146a2802002203450d002000410c6a2802002102200341186c210303402002106b200241186a2102200341686a22030d000b0b200041106a280200450d0a200028020c10200c0a0b2000410c6a280200200041146a2802001071200041106a280200450d09200028020c10200c090b200041086a2d0000417f6a2202410e4b0d08024002400240024002400240024020020e0f000f010f020f0f030f0f040f0f0506000b0240200041306a280200450d002000412c6a28020010200b0240200041386a2802002202450d002000413c6a280200450d00200210200b0240200041c4006a2802002202450d00200041c8006a280200450d00200210200b0240200041d0006a2802002202450d00200041d4006a280200450d00200210200b200041dc006a2802002202450d0e200041e0006a280200450d0e200210200c0e0b02402000410c6a2802002202450d00200041106a280200450d00200210200b0240200041186a280200450d002000411c6a2802002202450d00200041206a280200450d00200210200b0240200041286a280200450d002000412c6a2802002202450d00200041306a280200450d00200210200b0240200041386a280200450d002000413c6a2802002202450d00200041c0006a280200450d00200210200b200041c8006a280200450d0d200041cc006a2802002202450d0d200041d0006a280200450d0d200210200c0d0b200041186a280200450d0c200041146a28020010200c0c0b200041146a28020021032000410c6a28020021020240200041106a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d0b20022802002106200210202006450d0b20062802002103200610202003450d0b20032802002202450d040340200310202002210320022802002206210220060d000c050b0b200041306a280200450d0a2000412c6a28020010200c0a0b200041106a280200450d092000410c6a28020010200c090b200041106a280200450d082000410c6a28020010200c080b0340200310202002210320022802002206210220060d000c020b0b200310200c060b200310200b2000413c6a2802002103200041346a28020021020240200041386a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200636022c200120043602282001200236022420012005360220200141086a200141206a1061200128021021052001280214210220012802182104200128021c21062003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b200041c8006a2802002103200041c0006a28020021020240200041c4006a2802002206450d00200621040340200228026021022004417f6a22040d000b03402006417f6a22060d000b0b02402003450d0041002106410021044100210503402001200636022c200120043602282001200236022420012005360220200141086a200141206a1061200128021021052001280214210220012802182104200128021c21062003417f6a22030d000b0b0240200241908cc500460d0020022802002106200210202006450d0020062802002103200610202003450d00024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200b0240200041cc006a2802004102490d00200041d0006a280200200041d4006a280200200041d8006a28020010720b200041e4006a2802002103200041dc006a28020021020240200041e0006a2802002206450d00200621000340200228026021022000417f6a22000d000b03402006417f6a22060d000b0b02402003450d0041002106410021004100210403402001200636022c200120003602282001200236022420012004360220200141086a200141206a1061200128021021042001280214210220012802182100200128021c21062003417f6a22030d000b0b200241908cc500460d0420022802002106200210202006450d0420062802002103200610202003450d04024020032802002202450d000340200310202002210320022802002206210220060d000b0b200310200c040b200310200c030b200310200c020b200310200c010b200310200b200141306a24000ba73c05047f017e057f027e217f230041a0046b22022400024002400240024020014104490d00200041e4fdc60020011b2800002100410041002802a08a472201410120011b3602a08a47200141014b0d0320010e020102010b200241ec036a41043602002002419c016a41023602002002420237028c01200241fcc3c00036028801200241043602e403200241c4c5c0003602e0032002410036023c200241e4fdc6003602382002200241e0036a360298012002200241386a3602e80320024188016a418cc4c0001033000b410041d8fac6003602a88a47410041d7fac6003602a48a47410041023602a08a470c010b034041002802a08a474101460d000b0b024002400240024010094101470d0020024188016a41086a22014200370300200242003703880141dcbfc400411120024188016a1000200241e0036a41086a200129030037030020022002290388013703e003410021032002410036028801200241e0036a411020024188016a1003210102400240024002402002280288012204417f460d002001450d0020044104490d0120012800002103200110200b200241003602880141012105410141c1c9c400411c20024188016a100a210102402002280288012204417f470d0041012104410021010c020b2004ad2206422086200684210620014521042001450d0202402006422088a72205450d0020012d0000220741014b0d002005417f6a2105410021080240024020070e020100010b410121080b20054104490d00200128000121070240024020080d0020072000460d014100210520072000490d040c050b4101210520072003490d040b410021050c030b02402006a7450d00200110200b41f5f2c600412d10060c030b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b410121050b02400240200320004f0d0020050d010b20042006a745720d01200110200c010b024002400240024002400240024002400240024002400240024002404101101e2203450d00200341003a0000024020034101410510222203450d0020032000360001410141c1c9c400411c2001417f2006422088a720041b20034105100b210520031020024020042006a745720d00200110200b20050d0f20022000360224200241286a10d10120024188016a41e9dabdf30610d2012002280288012104200228028c012107024002400240024020022802900122010d00410121094100210a4100210b0c010b20014105742200410575220a41ffffff3f71200a470d15200a41057422034100480d152003101e2209450d01200420006a210820014105742105410021010340200420016a22002900002106200041086a290000210c200041106a290000210d200920016a220341186a200041186a290000370000200341106a200d370000200341086a200c370000200320063700002005200141206a2201470d000b200820046b41606a41057641016a210b0b02402007450d00200410200b200b4115490d054101450d07200b410176220e4105742201417f4c0d072001101e220f450d01200941606a2110200941a07f6a211141002112410421134100211441002115200b2116034020162107410021164101210502402007417f6a2203450d00024002400240024002400240200920034105746a2007410574220820096a41406a412010cf054100480d002007417e6a2104201120086a210141002116410021000340024020042000470d00200721050c080b200041016a2100200141206a2001412010cf052103200141606a21012003417f4a0d000b200041016a21052000417f7320076a21030c010b201120086a210102400340024020034101470d00410021030c020b2003417f6a2103200141206a2001412010cf052100200141606a210120004100480d000b0b20072003490d012007200b4b0d03200720036b22054101762204450d00201020086a2101200920034105746a2100034020024188016a41186a2208200041186a221729000037030020024188016a41106a2218200041106a221929000037030020024188016a41086a221a200041086a221b2900003703002002200029000037038801200141086a221c2900002106200141106a221d290000210c200141186a2216290000210d200020012900003700002017200d3700002019200c370000201b200637000020162008290300370000201d2018290300370000201c201a2903003700002001200229038801370000200141606a2101200041206a21002004417f6a22040d000b0b024020030d00200321160c050b0240200541094d0d00200321160c050b2007200b4b0d01200720036b2104200920034105746a2108034020072003417f6a2216490d040240200720166b22054102490d00200920034105746a2201200920164105746a2203412010cf05417f4a0d0020024188016a41186a221a200341186a220029000037030020024188016a41106a221b200341106a221729000037030020024188016a41086a221c200341086a22182900003703002002200329000037038801200320012900003700002018200141086a2900003700002017200141106a2900003700002000200141186a29000037000041012119024020054103490d00200341c0006a20024188016a412010cf05417f4a0d00410221002008210102400340200141186a200141386a290000370000200141106a200141306a290000370000200141086a200141286a2900003700002001200141206a221729000037000020042000460d01200141c0006a21182000211920172101200041016a2100201820024188016a412010cf05417f4a0d020c000b0b200021190b200320194105746a2201200229038801370000200141186a201a290300370000200141106a201b290300370000200141086a201c2903003700000b2016450d05200841606a2108200441016a2104201621032005410a4f0d050c000b0b20032007103b000b20072003417f6a2216490d010b2007200b103a000b20162007103b000b024002400240024020152012470d00201241016a22012012490d19201241017422002001200020014b1b220141ffffffff01712001470d19200141037422004100480d190240024020120d002000101e21130c010b201320124103742000102221130b2013450d0120012112201421150b201320154103746a2201200536020420012016360200201441016a2215211420154102490d020c010b20004104102d000b02400340024002400240024020132015417f6a22144103746a2201280200450d00201541037420136a220441746a2802002203200128020422004d0d000240201541024b0d0020152114410221152016450d0d0c080b20132015417d6a221a4103746a2802042201200020036a4d0d010240201541034b0d0020152114410321152016450d0d0c080b200441646a280200200120036a4d0d01201521140c060b20154103490d012001280204210020132015417d6a221a4103746a28020421010b20012000490d010b2015417e6a211a0b0240024002400240024002402015201a41016a221e4b221f450d002015201a4b2220450d012013201a4103746a221b2802042221201b2802006a22012013201e4103746a221c280200221d490d022001200b4b0d032009201d4105746a2218201c280204221941057422006a2104200141057421032001201d6b220720196b220120194f0d04200f20042001410574220010cd05221720006a21050240024020194101480d00200141014e0d010b20042101201721000c060b201020036a21032004210103402003200141606a2204200541606a220720072004412010cf0541004822081b2200290000370000200341186a200041186a290000370000200341106a200041106a290000370000200341086a200041086a2900003700002005200720081b2105024020182004200120081b2201490d00201721000c070b200341606a21032017210020172005490d000c060b0b41d0e0c600201e2015102a000b41d0e0c600201a2015102a000b201d2001103b000b2001200b103a000b200f2018200010cd05221720006a21050240024020194101480d00200720194a0d010b20182101201721000c010b200920036a21082017210020182101034020012004200020042000412010cf0541004822071b2203290000370000200141186a200341186a290000370000200141106a200341106a290000370000200141086a200341086a2900003700002000200041206a20071b2100200141206a2101200441206a200420071b220420084f0d01200520004b0d000b0b20012000200520006b41607110cd051a02402020450d00201b201d360200201b41046a202120196a360200201f450d02201c201c41086a2015201e417f736a41037410ce051a20142115201441014d0d030c010b0b41bcf8c600201a2015102a000b41fad8c200411d41a888c6001028000b2016450d050c000b0b20034101102d000b20014101102d000b41054101102d000b41014101102d000b02402012450d00201310200b200e450d01200f10200c010b200b4102490d002009200b417f6a22004105746a21054101210303400240024002400240200b20002201417f6a2200490d00200b20006b22074102490d03200920014105746a2201200920004105746a2204412010cf05417f4a0d0320024188016a41186a2215200441186a220829000037030020024188016a41106a2219200441106a221729000037030020024188016a41086a2213200441086a22182900003703002002200429000037038801200420012900003700002018200141086a2900003700002017200141106a2900003700002008200141186a2900003700004101210120074103490d02200441c0006a20024188016a412010cf05417f4a0d0241002107200521010340200141186a200141386a290000370000200141106a200141306a290000370000200141086a200141286a2900003700002001200141206a2217290000370000200320072208460d022008417f6a2107200141c0006a211820172101201820024188016a412010cf05417f4a0d020c000b0b2000200b103b000b410220086b21010b200420014105746a2201200229038801370000200141186a2015290300370000200141106a2019290300370000200141086a20132903003700000b200541606a21052003417f6a210320000d000b0b2002280228211d200228022c211f0240200228023022010d004101210041002103410021040c040b201d20014105746a211720024188016a41016a211b200241a0026a2122200241c9026a211c200241c0016a211120024188016a41306a210e20024188016a41286a21234100211a4100211e4101211641002107201d210503400240024002400240200b41014b0d004100210341002104410121000240200b0e020900090b034020024188016a41186a200541186a29000037030020024188016a41106a200541106a29000037030020024188016a41086a200541086a2900003703002002200529000037038801200920024188016a412010cf05450d03200741016a21072017200541206a2205470d000c020b0b034020024188016a41186a200541186a29000037030020024188016a41106a200541106a29000037030020024188016a41086a200541086a2900003703002002200529000037038801200541206a21050240200b450d0041002101200b210003402000410176220320016a22042001200920044105746a20024188016a412010cf054101481b2101200020036b220041014b0d000b200920014105746a20024188016a412010cf05450d040b200741016a210720052017470d000b0b201a2103201e2104201621000c060b200541206a2105410021010b0240200b20014b0d0041d0e0c6002001200b102a000b2002200736023420024188016a10d301024002400240024020022802900120074b0d00200228028c01450d0120022802880110200c010b2007200228028801220320074105746a10d40121000240200228028c01450d00200310200b20000d010b200241003602e003200241e0036a100c210020022802e0032203417f460d042002200336028c0120022000360288012003450d0420002d0000210420022003417f6a36028c012002200041016a360288014100212102400240200441014b0d0002400240024020040e020001000b200241186a20024188016a105f20022802180d01200228028c012204200228021c2208490d012008417f4c0d07024002400240024002400240024020080d004101212141010d010c080b200810242221450d0120212002280288012218200810cd0521152002200420086b36028c012002201820086a360288012015450d070b200241106a20024188016a105f20022802100d03200228028c01410c6e2224410c6c2204417f4c0d0c20022802142125024002400240024020040d00410421190c010b2004101e2219450d010b02402025450d004100212641002118410021130340200241086a20024188016a105f20022802080d06200228028c012215200228020c2204490d062004417f4c0d100240024020040d00410121270c010b200410242227450d0420272002280288012228200410cd051a2002201520046b36028c012002202820046a360288010b201341016a2115024020132024470d0020262015202620154b1b2224ad420c7e2206422088a70d1e2006a722284100480d1e0240024020130d002028101e21190c010b201920182028102221190b2019450d060b201920186a22132027360200201341046a2004ad2206422086200684370200202641026a21262018410c6a21182015211320252015470d000b0b2019450d05024020210d00410021210c080b20082112200821142019210f20242110202521200c070b20044104102d000b20044101102d000b20084101102d000b20284104102d000b2021212602402013450d004100210403400240201920046a221541046a280200450d00201528020010200b20182004410c6a2204470d000b0b2024450d01201910200c010b202121260b410021212008450d00202610200b2003450d020c010b410021210b200010200b2021450d042002280224212610d50121272002280234212420024100360290012002420137038801024002404104101e2200450d0020024284808080c00037028c01200220003602880120002026360000200220143602e003200241e0036a20024188016a10630240200228028c01220320022802900122006b2014490d0020022802880121030c020b200020146a22042000490d12200341017422082004200820044b1b22044100480d120240024020030d002004101e21030c010b20022802880120032004102221030b02402003450d002002200436028c0120022003360288010c020b20044101102d000b41044101102d000b2002200020146a36029001200320006a2021201410cd051a200220203602e003200241e0036a20024188016a1063024002402020450d00200f2020410c6c6a2113200f21030340200328020021152002200341086a28020022003602e003200241e0036a20024188016a106302400240200228028c01220820022802900122046b2000490d0020022802880121180c010b200420006a22182004490d14200841017422192018201920184b1b22194100480d140240024020080d002019101e21180c010b20022802880120082019102221180b02402018450d002002201936028c012002201836028801201921080c010b20194101102d000b2002200420006a221936029001201820046a2015200010cd051a2003410c6a22032013470d000c020b0b200228028c01210820022802900121190b02400240200820196b4104490d0020022802880121000c010b201941046a22002019490d11200841017422032000200320004b1b22034100480d110240024020080d002003101e21000c010b20022802880120082003102221000b02402000450d002002200336028c012002200036028801200321080c010b20034101102d000b2002201941046a220336029001200020196a20273600000240024002400240200820036b41034d0d00200821130c010b200341046a22042003490d13200841017422182004201820044b1b22134100480d130240024020080d002013101e21000c010b200020082013102221000b2000450d012002201336028c0120022000360288010b200020036a2024360000200241e9dabdf30636027820114200370300200e42003703002023420037030020024188016a41206a420037030020024188016a41186a420037030020024188016a41106a420037030020024188016a41086a42003703002002420037038801200241f8006a200920014105746a2000201941086a20024188016a100d450d0102402013450d00200010200b02402012450d00202110200b02402020450d002020410c6c2100200f210103400240200141046a280200450d00200128020010200b2001410c6a2101200041746a22000d000b0b410121012010450d07200f10200c070b20134101102d000b200241e0036a41086a2201201b41086a290000370300200241e0036a41106a2203201b41106a290000370300200241e0036a41186a2204201b41186a290000370300200241e0036a41206a2208201b41206a290000370300200241e0036a41286a2218201b41286a290000370300200241e0036a41306a2215201b41306a290000370300200241e0036a41376a2219201b41376a2900003700002002201b2900003703e00320022d0088012125200241386a41086a22282001290300370300200241386a41106a22292003290300370300200241386a41186a222a2004290300370300200241386a41206a222b2008290300370300200241386a41286a222c2018290300370300200241386a41306a222d2015290300370300200241386a41376a222e2019290000370000200220022903e00337033802402013450d00200010200b2019202e2900003700002015202d2903003703002018202c2903003703002008202b2903003703002004202a2903003703002003202929030037030020012028290300370300200220022903383703e0030240410028029c8a474103490d002002410a360284012002410a36027c2002200241246a360280012002200241346a36027841002802a88a47210041002802a48a47211341002802a08a472128200241a6033602c801200242e0808080103703c00120024186cac4003602bc012002420e3702b401200241f8c9c4003602b001200242023703a8012002420237039801200241e0c9c400360294012002410836029001200241f0c9c40036028c012002410336028801200041b0e0c600202841024622281b28021021002002200241f8006a3602a401201341e4fdc60020281b20024188016a20001103000b201c20022903e003370000201c41086a2001290300370000201c41106a2003290300370000201c41186a2004290300370000201c41206a2008290300370000201c41286a2018290300370000201c41306a2015290300370000201c41376a2019290000370000200220253a00c802200220243602c402200220273602c002200220203602bc02200220103602b8022002200f3602b402200220143602b002200220123602ac02200220213602a802200220263602a4022002410a3602a002200242023703f001200241f8006a20024188016a10a201200228027c210120022802782203200228028001100e210002402001450d00200310200b202210cf010240201a201e470d00201a41016a2201201a490d11201a41017422032001200320014b1b221e4100480d1102400240201a0d00201e101e21160c010b2016201a201e102221160b2016450d020b2016201a6a4103410420001b3a0000201a41016a211a0b200741016a2107201a2103201e21042016210020052017460d050c010b0b201e4101102d000b102c000b410221010b410021030240201f450d00201d10200b201e2104201621000c010b0240201f450d00201d10200b4104210102402003450d0020002d00002201417c6a220541014b0d0041042101024020050e020001000b024020034101470d00410421010c010b20002d00012201417c6a220541014b0d0041042101024020050e020001000b4102210503402005450d0b024020032005470d00410421010c020b200020056a2107200541016a21054104210120072d000022074104460d000b20074105460d00200721010b02402004450d00200010200b4101210320014104460d010b0240200a450d00200910200b02402003200445720d00200010200b412e210441a2f3c6002100200241f8006a210320010e0401020304010b200228022421004101101e2201450d05200141013a000020014101410510222201450d0620012000360001410141c1c9c400411c20014105100f20011020200a450d04200910200c040b412d210441f5f2c6002100200241386a21030c020b411f210441d6f2c6002100200241e0036a21030c010b41a8f2c600210020024188016a21030b20032004360204200320003602002000200410060b200241a0046a240042010f0b41014101102d000b41054101102d000b1027000be805020f7f017e230041f0006b22012400200141c8006a41086a220242003703002001420037034841edbfc400410d200141c8006a1000200141106a41086a20022903003703002001200129034837031020014100360248200141106a4110200141c8006a1003210302400240024002400240024020012802482204417f460d002003450d002001200436022420012003360220200141086a200141206a105f024020012802080d00200128022422054160712202417f4c0d04200128020c210602400240200541057622070d00410121080c010b2002101e2208450d060b02402006450d004100210903402005210a200141003a00682009220b41016a2109410021020240024002400340200a2002460d01200141c8006a20026a2001280220220c2d00003a00002001200c41016a3602202001200241016a220c3a0068200c2102200c4120470d000b200141286a41186a220d200141c8006a41186a290300370300200141286a41106a220e200141c8006a41106a290300370300200141286a41086a220f200141c8006a41086a290300370300200120012903483703282007200b470d020240200b41017422022009200220094b1b220741ffffff3f712007470d002007410574220241004e0d020b1027000b200141003602240240200241ff0171450d00200141003a00680b2007450d04200810200c040b02400240200b0d002002101e21080c010b2008200b4105742002102221080b2008450d090b200a200c6b21052008200b4105746a22022001290328370000200241186a200d290300370000200241106a200e290300370000200241086a200f29030037000020092006470d000b2001200a200c6b3602240b20080d020b41ceb8c4004133200141c8006a41fcbfc4004184b9c400102e000b20004100360208200042013702000c010b2006ad4220862007ad84211002402004450d00200310200b20002010370204200020083602000b200141f0006a24000f0b102c000b20024101102d000b20024101102d000bec04010c7f230041e0006b2202240020022001360208410021032002410036020c200241086a2002410c6a101d21012002200228020c360214200220013602102002200241106a105f02400240024002400240024020022802000d00200228021422014160712204417f4c0d032002280204210502400240200141057622060d00410121070c010b2004101e2207450d050b02402005450d0041002108034020012109200241003a00582008220a41016a210841002101024002400240034020092001460d01200241386a20016a200228021022042d00003a00002002200441016a3602102002200141016a22043a00582004210120044120470d000b200241186a41186a220b200241386a41186a290300370300200241186a41106a220c200241386a41106a290300370300200241186a41086a220d200241386a41086a290300370300200220022903383703182006200a470d020240200a41017422012008200120084b1b220641ffffff3f712006470d002006410574220141004e0d020b1027000b200241003602140240200141ff0171450d00200241003a00580b2006450d04200710200c040b02400240200a0d002001101e21070c010b2007200a4105742001102221070b2007450d080b200920046b21012007200a4105746a220a2002290318370000200a41186a200b290300370000200a41106a200c290300370000200a41086a200d29030037000020082005470d000b2002200920046b3602140b20070d010b20004101360200410021050c010b20002007360200200621030b2000200536020820002003360204200241e0006a24000f0b102c000b20044101102d000b20014101102d000bee0102047f017e230041306b22012400200141186a41086a220242003703002001420037031841868cc6004112200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a10e301024020012802182204450d00200129021c210502402003450d00200210200b20002005370204200020043602000c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b20004100360208200042013702000b200141306a24000bb10801087f230041d0006b2202240010d5012103024002400240024002400240024002400240411b101e2204450d00200441176a41002800e7f346360000200441106a41002900e0f346370000200441086a41002900d8f346370000200441002900d0f3463700002004411b413610222204450d012004200336001b200241306a41186a22054200370300200241306a41106a22064200370300200241306a41086a22074200370300200242003703302004411f200241306a1001200241086a41186a22082005290300370300200241086a41106a2006290300370300200241086a41086a200729030037030020022002290330370308200410204120101e2204450d0220042002290308370000200441186a2008290300370000200441106a200241086a41106a2206290300370000200441086a200241086a41086a22072903003700002002200036022c20054200370300200241306a41106a22004200370300200241306a41086a22094200370300200242003703302002412c6a4104200241306a1001200820052903003703002006200029030037030020072009290300370300200220022903303703082004412041c00010222204450d0320042002290308370020200441386a200241206a290300370000200441306a2006290300370000200441286a2007290300370000200441c00041e4fdc6004100410010022105200410204101210402402005417f470d004117101e2204450d052004410f6a41002900b9c944370000200441086a41002900b2c944370000200441002900aac94437000020044117412e10222204450d0620042003360017200241306a41186a22054200370300200241306a41106a22084200370300200241306a41086a22064200370300200242003703302004411b200241306a1001200241086a41186a22072005290300370300200241086a41106a22052008290300370300200241086a41086a200629030037030020022002290330370308200410204120101e2204450d0720042002290308370000200441186a2007290300370000200441106a2005290300370000200441086a200241086a41086a2205290300370000200241086a200110d8042004412041c00010222204450d0820042002290308370020200441386a200241206a290300370000200441306a200241186a290300370000200441286a20052903003700004100210820024100360230200441c000200241306a100321050240024020022802302206417f470d000c010b024020050d000c010b20064104490d0a200528000021082005102020084100472105410121080b20041020200820057121040b200241d0006a240020040f0b411b4101102d000b41364101102d000b41204101102d000b41c0004101102d000b41174101102d000b412e4101102d000b41204101102d000b41c0004101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000bac0101047f230041206b22002400200041106a41086a22014200370300200042003703104191f6c6004114200041106a1000200041086a200129030037030020002000290310370300410021022000410036021020004110200041106a100321010240024020002802102203417f460d002001450d0020034104490d0120012800002102200110200b200041206a240020020f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000ba90201037f23004180016b2202240002400240024002400240200128020022034110710d002000280200210420034120710d012004ad2001103521000c020b20002802002104410021000340200220006a41ff006a2004410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004410f712203413072200341376a2003410a491b3a00002000417f6a2100200441047622040d000b20004180016a22044181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2004418001103b000b2004418001103b000bfb0305047f017e017f017e027f230041206b220224002002410036021041d4bfc5004114200241106a100321030240024020022802102204417f460d002003450d002002200436020c20022003360208024002402004450d0020022004417f6a36020c2002200341016a36020820032d00002104200241106a200241086a10d80120022802102205450d0020022902142106200441ff01714101460d012006a7450d00200510200b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b200310200c010b41082105420021060b200241003602182002420137031020022006422088a72203360208200241086a200241106a106302402003450d002005200341286c6a21072005210403402004200241106a10ca01200441206a29030021080240024020022802142209200228021822036b4108490d00200228021021090c010b0240200341086a220a2003490d0020094101742203200a2003200a4b1b22034100480d000240024020090d002003101e21090c010b200228021020092003102221090b02402009450d002002200336021420022009360210200228021821030c020b20034101102d000b1027000b2002200341086a360218200920036a20083700002007200441286a2204470d000b0b2002350218422086200235021084210802402006a7450d00200510200b200241206a240020080bb105020c7f047e230041f0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020441286e220341286c2204417f4c0d01200228020421050240024020040d00410821060c010b2004101e2206450d030b02402005450d00410021070340200241003a00682007220841016a210720012802042109417f210a410021040240024002400240034020092004460d01200241c8006a20046a2001280200220b2d00003a000020012009200a6a3602042001200b41016a3602002002200441016a220c3a0068200a417f6a210a200c2104200c4120470d000b200241286a41186a2204200241c8006a41186a290300370300200241286a41106a220a200241c8006a41106a290300370300200241286a41086a220d200241c8006a41086a290300370300200220022903483703282009200c6b220c4108490d01200b290001210e2001200b41096a3602002001200c41786a360204200241086a41086a220c200d290300370300200241086a41106a2209200a290300370300200241086a41186a220a20042903003703002002200229032837030820032008470d030240200841017422042007200420074b1b2203ad42287e220f422088a70d00200fa7220441004e0d030b1027000b200441ff0171450d00200241003a00680b200041003602002003450d04200610200c040b0240024020080d002004101e21060c010b2006200841286c2004102221060b2006450d060b2006200841286c6a22042002290308370300200c290300210f20092903002110200a29030021112004200e370320200441186a2011370300200441106a2010370300200441086a200f37030020072005470d000b0b2000200336020420002006360200200041086a20053602000b200241f0006a24000f0b102c000b20044108102d000b20044108102d000bb10d03047f017e027f230041c0016b22022400200241086a41086a220342003703002002420037030841beedc6004110200241086a1000200241a0016a41086a2003290300370300200220022903083703a0014100210320024100360208200241a0016a4110200241086a1003210402400240024002400240024002400240024020022802082205417f470d000c010b024020040d000c010b2002200536027c20022004360278200241086a200241f8006a10d80120022802082203450d01200229020c21062005450d00200410200b200241086a41086a220542003703002002420037030841eeedc600410f200241086a1000200241a0016a41086a22042005290300370300200220022903083703a001200241f8006a200241a0016a10da0120022d00782105200241a0016a41186a220720024191016a290000370300200241a0016a41106a220820024189016a290000370300200420024181016a290000370300200220022900793703a0012006420020031b21062003410820031b21030240024020054101460d00200241d8006a41186a4200370300200241d8006a41106a4200370300200241d8006a41086a4200370300200242003703580c010b200241d8006a41186a2007290300370300200241d8006a41106a2008290300370300200241d8006a41086a2004290300370300200220022903a0013703580b2002412c6a2006370200200241086a41186a42043703002002413c6a200241d8006a41086a290300370200200241c4006a200241e8006a290300370200200241cc006a200241d8006a41186a2903003702002002200336022820024201370318200242e400370310200242f02e37030820022002290358370234200241013a00542002410036028001200242013703784108101e2203450d012002410836027c2002200228028001220441086a3602800120022003360278200320046a42f02e3700002002290310210602400240200228027c220420022802800122036b4108490d00200228027821040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200228027820042003102221040b2004450d032002200336027c2002200436027820022802800121030b2002200341086a36028001200420036a20063700002002290318210602400240200228027c220420022802800122036b4108490d00200228027821040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200228027820042003102221040b2004450d042002200336027c2002200436027820022802800121030b2002200341086a36028001200420036a2006370000200229032021060240200228027c220420022802800122036b4108490d00200228027821040c050b200341086a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200228027820042003102221040b02402004450d002002200336027c2002200436027820022802800121030c050b20034101102d000b41ceb8c4004133200241d8006a41fcbfc4004184b9c400102e000b41084101102d000b20034101102d000b20034101102d000b2002200341086a36028001200420036a2006370000200228022821042002200241086a41286a28020022033602a001200241a0016a200241f8006a106302402003450d002004200341286c6a210803402004200241f8006a10ca01200441206a290300210602400240200228027c220520022802800122036b4108490d00200228027821050c010b200341086a22072003490d03200541017422032007200320074b1b22034100480d030240024020050d002003101e21050c010b200228027820052003102221050b02402005450d002002200336027c2002200536027820022802800121030c010b20034101102d000b2002200341086a36028001200520036a20063700002008200441286a2204470d000b0b200241346a200241f8006a10db0120022d005421050240200228027c2002280280012203460d00200228027821040c020b200341016a22042003490d00200341017422072004200720044b1b22074100480d000240024020030d002007101e21040c010b200228027820032007102221040b02402004450d002002200736027c2002200436027820022802800121030c020b20074101102d000b1027000b2002200341016a36028001200420036a20053a000020023502800142208620023502788421060240200228022c450d00200228022810200b200241c0016a240020060bd10201057f230041d0006b220224002002410036022820014110200241286a10032103024002400240024020022802282204417f460d0020030d010b200041003a00000c010b41002101200241003a0048034020042001460d02200241286a20016a200320016a2d00003a00002002200141016a22053a00482005210120054120470d000b200241086a41186a2201200241286a41186a290300370300200241086a41106a2205200241286a41106a290300370300200241086a41086a2206200241286a41086a2903003703002002200229032837030802402004450d00200310200b20002002290308370001200041013a0000200041196a2001290300370000200041116a2005290300370000200041096a20062903003700000b200241d0006a24000f0b0240200141ff0171450d00200241003a00480b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000b962901067f20002d0000210202400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200141046a2203280200200141086a22042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0001210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0002210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0003210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0004210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0005210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0006210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0007210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0008210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0009210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d0f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d000f210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1120012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0010210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1220012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0011210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1320012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0012210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1420012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0013210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1520012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0014210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1620012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0015210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1720012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0016210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1820012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0017210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1920012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0018210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1a20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d0019210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1b20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001a210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1c20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001b210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1d20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001c210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1e20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001d210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d1f20012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001e210202400240200328020020042802002205460d00200128020021060c010b200541016a22062005490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21060c010b200128020020052007102221060b2006450d2020012006360200200141046a2007360200200141086a28020021050b2004200541016a360200200620056a20023a000020002d001f21050240200328020020042802002200460d00200128020021030c210b200041016a22032000490d00200041017422062003200620034b1b22064100480d000240024020000d002006101e21030c010b200128020020002006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021000c210b20064101102d000b1027000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2004200041016a360200200320006a20053a00000bda0607047f017e047f017e027f017e027f230041c0006b22022400200241086a2203420037030020024200370300418dc0c500411720021000200241206a41086a20032903003703002002200229030037032020024100360200200241206a41102002100321030240024020022802002204417f460d002003450d0020022004360234200220033602302002200241306a10dd01024020022802002205450d00200229020421062004450d02200310200c020b41ceb8c4004133200241386a41fcbfc4004184b9c400102e000b41012105420021060b4100210702400240024002402006422088a7220341057422080d00410421094100210a0c010b2008410575220aad420c7e220b422088a70d01200ba722044100480d012004101e22090d0020044104102d000b2006a7210c02402003450d00200841606a210d20092104200521030340200341086a2900002106200341106a290000210b2003290000210e200241186a200341186a290000370300200241106a200b370300200241086a20063703002002200e370300200241206a200210de01200441086a200241206a41086a280200360200200420022903203702002004410c6a2104200341206a2103200841606a22080d000b200d41057641016a21070b0240200c450d00200510200b200241003602082002420137030020022007360220200241206a20021063024020070d002002280208210d200228020021050c020b20092007410c6c6a210f2009210403402004280200210c2002200441086a2802002203360220200241206a200210630240024020022802042205200228020822086b2003490d00200228020021050c010b200820036a220d2008490d0220054101742210200d2010200d4b1b220d4100480d020240024020050d00200d101e21050c010b20022802002005200d102221050b02402005450d002002200d360204200220053602000c010b200d4101102d000b2002200820036a220d360208200520086a200c200310cd051a2004410c6a2204200f460d020c000b0b1027000b200dad42208621062005ad210b02402007450d002007410c6c21042009210303400240200341046a280200450d00200328020010200b2003410c6a2103200441746a22040d000b0b2006200b8421060240200a450d00200910200b200241c0006a240020060bb004010a7f230041d0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020422034160712204417f4c0d012002280204210502400240200341057622060d00410121070c010b2004101e2207450d030b02402005450d00410021080340200241003a00482008220941016a21082001280204417f6a21034100210402400240024003402003417f460d01200241286a20046a2001280200220a2d00003a0000200120033602042001200a41016a3602002002200441016a220a3a00482003417f6a2103200a2104200a4120470d000b200241086a41186a2204200241286a41186a290300370300200241086a41106a220a200241286a41106a290300370300200241086a41086a220b200241286a41086a2903003703002002200229032837030820062009470d020240200941017422032008200320084b1b220641ffffff3f712006470d002006410574220341004e0d020b1027000b0240200441ff0171450d00200241003a00480b200041003602002006450d04200710200c040b0240024020090d002003101e21070c010b200720094105742003102221070b2007450d060b200720094105746a22032002290308370000200341186a2004290300370000200341106a200a290300370000200341086a200b29030037000020082005470d000b0b2000200636020420002007360200200041086a20053602000b200241d0006a24000f0b102c000b20044101102d000b20034101102d000bf60301027f20012d000021020240024002400240024002404101101e2203450d00200320023a000020012d0001210220034101410210222203450d01200320023a000120012d0002210220034102410410222203450d02200320023a0002200320012d00033a000320012d0004210220034104410810222203450d03200320023a0004200320012d00053a0005200320012d00063a0006200320012d00073a000720012d0008210220034108411010222203450d04200320023a0008200320012d00093a0009200320012d000a3a000a200320012d000b3a000b200320012d000c3a000c200320012d000d3a000d200320012d000e3a000e200320012d000f3a000f20012d0010210220034110412010222203450d05200320023a0010200320012d00113a0011200320012d00123a0012200320012d00133a0013200320012d00143a0014200320012d00153a0015200320012d00163a0016200320012d00173a0017200320012d00183a0018200320012d00193a0019200320012d001a3a001a200320012d001b3a001b200320012d001c3a001c200320012d001d3a001d200320012d001e3a001e200320012d001f3a001f200042a08080808004370204200020033602000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000bc81607057f017e067f037e017f037e027f230041d0026b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b2002200136020420024188016a200210b70102400240024002402002280288012203450d0020024188016a41086a2802002104200228028c012105200241e8016a41086a22014200370300200242003703e801418dc0c5004117200241e8016a1000200241086a41086a2001290300370300200220022903e801370308200241003602e801200241086a4110200241e8016a1003210120022802e8012200417f460d022001450d02200220003602cc01200220013602c801200241e8016a200241c8016a10dd0120022802e8012206450d0120022902ec0121072000450d03200110200c030b200241146a4104360200200241fc016a4102360200200242023702ec01200241fcc3c0003602e8012002410436020c200241dcc5c000360208200241003602cc01200241e4fdc6003602c8012002200241086a3602f8012002200241c8016a360210200241e8016a418cc4c0001033000b41ceb8c4004133200241c8026a41fcbfc4004184b9c400102e000b41012106420021070b200241e8016a41e2c289ab0610d20120022802e801210820022802ec012109024002400240024002400240024002400240024020022802f00122000d004100210a4101210b410021010c010b20004105742201410575220a41ffffff3f71200a470d0420014100480d042001101e220b450d01200820016a210c2000410574210d410021010340200820016a2200290000210e200041086a290000210f200041106a2900002110200b20016a221141186a200041186a290000370000201141106a2010370000201141086a200f3700002011200e370000200d200141206a2201470d000b200c20086b41606a41057641016a21010b02402009450d00200810200b4100210d02402007422088a72200450d00200620004105746a210c20014105742109200621080340200841086a290000210e200841106a290000210f20082900002110200241e8016a41186a200841186a290000370300200241e8016a41106a200f370300200241e8016a41086a200e370300200220103703e801200841206a210820092100200b2101024003402000450d010240200241e8016a2001460d00200041606a21002001200241e8016a412010cf052111200141206a210120110d010b0b200241086a41186a200241e8016a41186a290300220e37030020024188016a41086a200241e8016a41086a29030037030020024188016a41106a200241e8016a41106a29030037030020024188016a41186a200e370300200220022903e801370388014101210d0c020b2008200c470d000b0b2007a721010240200a450d00200b10200b02402001450d00200610200b200241086a41186a220120024188016a41186a290300370300200241086a41106a220020024188016a41106a290300370300200241086a41086a221120024188016a41086a2903003703002002200229038801370308200d450d01200241e8006a41186a2001290300370300200241e8006a41106a2000290300370300200241e8006a41086a201129030037030020022002290308370368200241e2c289ab063602c801200241e8016a41386a22014200370300200241e8016a41306a22004200370300200241e8016a41286a22114200370300200241e8016a41206a22084200370300200241e8016a41186a4200370300200241e8016a41106a4200370300200241e8016a41086a4200370300200242003703e80102400240200241c8016a200241e8006a20032004200241e8016a100d0d00200241086a41386a220b2001290300370300200241086a41306a2000290300220e370300200241086a41286a2011290300220f370300200241086a41206a20082903002210370300200241086a41186a200241e8016a41186a2903002207370300200241086a41106a200241e8016a41106a2903002212370300200241086a41086a200241e8016a41086a2903002213370300200220022903e801221437030820024188016a41306a200e37030020024188016a41286a200f37030020024188016a41206a201037030020024188016a41186a200737030020024188016a41106a201237030020024188016a41086a201337030020024188016a41386a200b2903003703002002201437038801410121010c010b410021010b200241c8016a41186a2200200241e8006a41186a290300370300200241c8016a41106a2211200241e8006a41106a290300370300200241c8016a41086a2208200241e8006a41086a290300370300200220022903683703c8012001450d01200241e8016a41386a20024188016a41386a2201290300370300200241e8016a41306a20024188016a41306a220b290300370300200241e8016a41286a20024188016a41286a220d290300370300200241e8016a41206a20024188016a41206a2206290300370300200241e8016a41186a20024188016a41186a220a290300370300200241e8016a41106a20024188016a41106a2209290300370300200241e8016a41086a20024188016a41086a2204290300370300200241b0026a220c2008290300370300200241b8026a22152011290300370300200241c0026a2216200029030037030020022002290388013703e801200220022903c8013703a802200241086a200241e8016a41e00010cd051a200241e8016a200241086a41e00010cd051a2001200241086a41386a290000370300200b200241086a41306a290000370300200d200241086a41286a2900003703002006200241086a41206a290000370300200a200241086a41186a2900003703002009200241086a41106a2900003703002004200241086a41086a290000370300200220022900083703880120002016290300370300201120152903003703002008200c290300370300200220022903a8023703c80141002111410121084100210041002101034020024188016a20116a2d0000210d0240024020002001460d002000210b0c010b200041016a22012000490d052000410174220b2001200b20014b1b220b4100480d050240024020000d00200b101e21080c010b20082000200b102221080b02402008450d0020002101200b21000c010b200b4101102d000b200820016a200d3a0000200141016a2101201141016a221141c000470d000b200241e8006a200241c8016a10de0120022802702100200228026c210a2002280268210d0c020b20014101102d000b410021080b02402005450d00200310200b4101101e2211450d0120024281808080103702ec01200220113602e801024020080d00201141003a00002011ad42808080801084210e0c050b201141013a000020022001360208200241086a200241e8016a10630240024020022802ec01220620022802f00122116b2001490d0020022802e80121060c010b201120016a22032011490d01200641017422052003200520034b1b22034100480d010240024020060d002003101e21060c010b20022802e80120062003102221060b2006450d03200220033602ec01200220063602e8010b2002201120016a3602f001200620116a2008200110cd051a20022000360208200241086a200241e8016a1063024020022802ec01221120022802f00122016b2000490d0020022802e80121110c040b200120006a22062001490d00201141017422032006200320064b1b22064100480d000240024020110d002006101e21110c010b20022802e80120112006102221110b02402011450d00200220063602ec01200220113602e8010c040b20064101102d000b1027000b41014101102d000b20034101102d000b2002200120006a22063602f001201120016a200d200010cd051a2006ad422086210e2011ad210f0240200b450d00200810200b200e200f84210e200a450d00200d10200b200241d0026a2400200e0bf90b06057f017e017f017e067f077e230041f0016b22022400024002402001450d00200220003602000c010b200241e4fdc6003602000b20022001360204200241286a200210b701024002400240024020022802282203450d00200241306a2802002104200228022c2105200241e8006a200210b70120022802682206450d01200229026c2107200241e8006a200210b70120022802682208450d02200229026c210941002101200241003a00a8012007422088a7210a2006210002400240024002400340200a2001460d01200241e8006a20016a20002d00003a00002002200141016a220b3a00a801200041016a2100200b2101200b41c000470d000b200241b0016a41386a2201200241e8006a41386a290300370300200241b0016a41306a2200200241e8006a41306a290300370300200241b0016a41286a220a200241e8006a41286a290300370300200241b0016a41206a220c200241e8006a41206a290300370300200241b0016a41186a220d200241e8006a41186a290300370300200241b0016a41106a220e200241e8006a41106a290300370300200241b0016a41086a220f200241e8006a41086a290300370300200220022903683703b001200b41ff017141c000490d02200241286a41386a220b2001290300370300200241286a41306a20002903002210370300200241286a41286a200a2903002211370300200241286a41206a200c2903002212370300200241286a41186a200d2903002213370300200241286a41106a200e2903002214370300200241286a41086a200f2903002215370300200220022903b001221637032820002010370300200a2011370300200c2012370300200d2013370300200e2014370300200f20153703002001200b290300370300200220163703b00141002101200241003a0088012009422088a7210a200821000340200a2001460d02200241e8006a20016a20002d00003a00002002200141016a220b3a008801200041016a2100200b2101200b4120470d000b200241086a41186a2201200241e8006a41186a2200290300370300200241086a41106a220b200241e8006a41106a220a290300370300200241086a41086a220c200241e8006a41086a220d29030037030020022002290368370308200241e8006a41386a200241b0016a41386a290300370300200241e8006a41306a200241b0016a41306a290300370300200241e8006a41286a200241b0016a41286a290300370300200241e8006a41206a200241b0016a41206a2903003703002000200241b0016a41186a290300370300200a200241b0016a41106a290300370300200d200241b0016a41086a290300370300200220022903b001370368200241286a41186a2001290300370300200241286a41106a200b290300370300200241286a41086a200c2903003703002002200229030837032820032004200241e8006a200241286a10104521000c030b200141ff0171450d01200241003a00a8010c010b200141ff0171450d00200241003a0088010b410021000b02402009a7450d00200810200b02402007a7450d00200610200b02402005450d00200310200b4101101e2201450d03200120003a0000200241f0016a24002001ad428080808010840f0b200241bc016a4104360200200241fc006a41023602002002420237026c200241fcc3c000360268200241043602b401200241e8c5c0003602b0012002410036020c200241e4fdc6003602082002200241b0016a3602782002200241086a3602b801200241e8006a418cc4c0001033000b200241fc006a4102360200200241bc016a41043602002002420237026c200241fcc3c000360268200241043602b401200241e8c5c0003602b0012002410036022c200241e4fdc6003602282002200241b0016a3602782002200241286a3602b801200241e8006a418cc4c0001033000b200241fc006a4102360200200241bc016a41043602002002420237026c200241fcc3c000360268200241043602b401200241e8c5c0003602b0012002410036022c200241e4fdc6003602282002200241b0016a3602782002200241286a3602b801200241e8006a418cc4c0001033000b41014101102d000beb0503037f047e017f230041a0016b2202240041002103200241003a0048200041e4fdc60020011b2104024002400240024002400240034020012003460d01200241286a20036a200420036a2d00003a00002002200341016a22003a00482000210320004120470d000b200241086a41186a200241286a41186a22002903002205370300200241086a41106a200241286a41106a22012903002206370300200241086a41086a200241286a41086a22042903002207370300200220022903282208370308200241f0006a41186a2005370300200241f0006a41106a2006370300200241f0006a41086a2007370300200220083703704113101e2203450d03200341002900d4fc403700002003410f6a41002800e3fc40360000200341086a41002900dcfc4037000020024293808080b002370294012002200336029001200241f0006a20024190016a10ca01200228029801210320022802900121092000420037030020014200370300200442003703002002420037032820092003200241286a1001200241d0006a41186a2000290300370300200241d0006a41106a2001290300370300200241d0006a41086a2004290300370300200220022903283703500240200228029401450d0020022802900110200b20024100360228200241d0006a4120200241286a1003210320022802282200417f470d01410021000c020b0240200341ff0171450d00200241003a00480b2002413c6a4102360200200241fc006a41043602002002420237022c200241fcc3c00036022820024104360274200241f8c5c00036027020024100360254200241e4fdc6003602502002200241f0006a3602382002200241d0006a360278200241286a418cc4c0001033000b024020030d00410021000c010b20004104490d0220032800002100200310200b4104101e2203450d0220032000360000200241a0016a24002003ad4280808080c000840f0b41134101102d000b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000b41044101102d000bda1203027f017e087f23004190026b220224000240024020010d002002200136020c200241e4fdc6003602080c010b20022001417f6a36020c2002200041016a36020820002d0000220041014b0d0002400240024002400240024020000e020001000b4100210120024100360210410121030c010b200241206a200241086a10b70120022802202201450d0420022902242104200220013602102002200437021402402004422088a72205450d00410020016b410020014103711b2106200541796a4100200541074b1b210741002100034002400240200120006a2d000022084118744118752209417f4a0d00418002210302402008419182c0006a2d0000417e6a220a41024d0d004101210a0c080b02400240024002400240200a0e03000102000b200041016a22082005490d024100210a0c0a0b4100210a200041016a220b20054f0d092001200b6a2d0000210b02400240200841a07e6a2208410d4b0d000240024020080e0e0002020202020202020202020201000b200b41e0017141a001460d024101210a0c0d0b0240200b411874411875417f4c0d004101210a0c0d0b200b41ff017141a001490d014101210a0c0c0b02402009411f6a41ff0171410b4b0d000240200b411874411875417f4c0d004101210a0c0d0b200b41ff017141c001490d014101210a0c0c0b0240200b41ff017141bf014d0d004101210a0c0c0b0240200941fe017141ee01460d004101210a0c0c0b200b411874411875417f4c0d004101210a0c0b0b41002103200041026a220820054f0d0a200120086a2d000041c00171418001460d020c080b4100210a200041016a220b20054f0d082001200b6a2d0000210b02400240200841907e6a220841044b0d000240024020080e050002020201000b200b41f0006a41ff01714130490d024101210a0c0c0b0240200b411874411875417f4c0d004101210a0c0c0b200b41ff0171419001490d014101210a0c0b0b0240200b41ff017141bf014d0d004101210a0c0b0b02402009410f6a41ff017141024d0d004101210a0c0b0b200b411874411875417f4c0d004101210a0c0a0b200041026a220820054f0d08200120086a2d000041c00171418001470d0741002103200041036a220820054f0d09200120086a2d000041c00171418001460d0141800621034101210a0c090b4101210a200120086a2d000041c00171418001470d080b200841016a21000c010b0240200620006b4103710d000240200020074f0d000340200120006a220841046a280200200828020072418081828478710d01200041086a22002007490d000b0b200020054f0d010340200120006a2c00004100480d022005200041016a2200470d000c040b0b200041016a21000b20002005490d000b0b2004a7210b410021030b2002200536022420022001360220200241e7e485f3063602c001200241e0016a41186a22094200370300200241e0016a41106a220a4200370300200241e0016a41086a22064200370300200242003703e00141002100200241206a410020011b21070240024020010d00410021080c010b200741046a280200210c200728020021080b200241c0016a200841e4fdc60020081b200c410020081b200241e0016a101120024180016a41186a200929030037030020024180016a41106a200a29030037030020024180016a41086a2006290300370300200220022903e001370380012002200536022420022001360220200241e2c289ab063602c00120094200370300200a420037030020064200370300200242003703e0010240024020010d000c010b200741046a2802002108200728020021000b200241c0016a200041e4fdc60020001b2008410020001b200241e0016a1012200241a0016a41186a220a200241e0016a41186a2208290300370300200241a0016a41106a2206200241e0016a41106a2207290300370300200241a0016a41086a220c200241e0016a41086a2209290300370300200220022903e0013703a0012002200536028c022002200136028802200241e9dabdf30636028402200842003703002007420037030020094200370300200242003703e0010240024020010d00410021000c010b20024188026a410020011b220041046a2802002105200028020021000b20024184026a200041e4fdc60020001b2005410020001b200241e0016a1012200241c0016a41186a22002008290300370300200241c0016a41106a22052007290300370300200241c0016a41086a22082009290300370300200241206a41086a20024180016a41086a290300370300200241206a41106a20024180016a41106a290300370300200241206a41186a20024180016a41186a290300370300200220022903e0013703c0012002200229038001370320200241d8006a200a290300370300200241d0006a2006290300370300200241c8006a200c290300370300200220022903a001370340200241f8006a2000290300370300200241f0006a2005290300370300200241e8006a2008290300370300200220022903c001370360200241003602e801200242013703e001200241206a200241e0016a10ca01200241c0006a200241e0016a10ca01200241e0006a200241e0016a10ca0120022802e801210020022802e401210720022802e001210802402003200b45720d00200110200b024002400240200041046a2201417f4c0d000240024020010d00410121050c010b2001101e2205450d020b200241003602282002200136022420022005360220200220003602e001200241e0016a200241206a1063024020022802242205200228022822016b2000490d00200228022021050c030b0240200120006a22092001490d002005410174220a2009200a20094b1b22094100480d000240024020050d002009101e21050c010b200228022020052009102221050b02402005450d0020022009360224200220053602200c040b20094101102d000b1027000b102c000b20014101102d000b200520016a2008200010cd051a200120006aad4220862005ad84210402402007450d00200810200b20024190026a240020040f0b41800421034101210a0c010b410021030b200220003602202002200a2003723602244188edc1004116200241206a41b0c2c10041a0edc100102e000b200241ec016a4104360200200241346a410236020020024202370224200241fcc3c000360220200241043602e40120024190c6c0003602e001200241003602c401200241e4fdc6003602c0012002200241e0016a3602302002200241c0016a3602e801200241206a418cc4c0001033000bb004010a7f230041d0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020422034160712204417f4c0d012002280204210502400240200341057622060d00410121070c010b2004101e2207450d030b02402005450d00410021080340200241003a00482008220941016a21082001280204417f6a21034100210402400240024003402003417f460d01200241286a20046a2001280200220a2d00003a0000200120033602042001200a41016a3602002002200441016a220a3a00482003417f6a2103200a2104200a4120470d000b200241086a41186a2204200241286a41186a290300370300200241086a41106a220a200241286a41106a290300370300200241086a41086a220b200241286a41086a2903003703002002200229032837030820062009470d020240200941017422032008200320084b1b220641ffffff3f712006470d002006410574220341004e0d020b1027000b0240200441ff0171450d00200241003a00480b200041003602002006450d04200710200c040b0240024020090d002003101e21070c010b200720094105742003102221070b2007450d060b200720094105746a22032002290308370000200341186a2004290300370000200341106a200a290300370000200341086a200b29030037000020082005470d000b0b2000200636020420002007360200200041086a20053602000b200241d0006a24000f0b102c000b20044101102d000b20034101102d000bc90101057f230041206b2202240002400240410f101e2203450d00200341076a41002900d4ca40370000200341002900cdca403700002003410f411e10222203450d012003200137000f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b410f4101102d000b411e4101102d000bde02010a7f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b20012802042203417e712204417f4c0d01200228020c210502400240200341017622060d00410221070c010b2004101e2207450d030b024002402005450d0041002103410021080340200128020422094102490d02200841016a21042001280200220a2f0000210b20012009417e6a3602042001200a41026a360200024020082006470d00024020032004200320044b1b220620066a22092006490d0020094100480d000240024020080d002009101e21070c010b200720032009102221070b20070d0120094102102d000b1027000b200720036a200b3b0100200341026a21032004210820052004470d000b0b2000200636020420002007360200200041086a20053602000c010b200041003602002006450d00200710200b200241106a24000f0b102c000b20044102102d000bbf05020e7f027e230041f0006b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441186e220341186c2204417f4c0d01200228020c21050240024020040d00410821060c010b2004101e2206450d030b024002402005450d00200241e0006a410172220741076a2108410021094100210a410021040340024002402001280204220b41024f0d004113210c0c010b2001280200220c2f0000210d2001200b417e6a3602042001200c41026a360200200241e0006a200110eb01024020022d0060220c4113470d004113210c0c010b200241c0006a41046a200241da006a41046a2f01003b0100200220072900003703482002200829000037004f2002200228015a360240200d210e0b200241286a41046a220d200241c0006a41046a2f01003b0100200220022903483703302002200229004f37003720022002280240360228200c4113460d02200441016a210b200241106a41046a220f200d2f01003b01002002200229003737001f2002200229033037031820022002280228360210024020042003470d0002402009200b2009200b4b1b2203ad42187e2210422088a70d002010a7220d4100480d000240024020040d00200d101e21060c010b2006200a200d102221060b20060d01200d4108102d000b1027000b2006200a6a2204200c3a0000200229001f211020022903182111200441106a200e3b0000200441016a2011370000200441086a2010370000200441126a2002280210360000200441166a200f2f01003b0000200941026a2109200a41186a210a200b21042005200b470d000b0b2000200336020420002006360200200041086a20053602000c010b2000410036020002402004450d002006210403402004106b200441186a2104200a41686a220a0d000b0b2003450d00200610200b200241f0006a24000f0b102c000b20044108102d000bf70d050f7f017e057f017e027f230041f0006b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441306e220341306c2204417f4c0d02200228020c21050240024020040d00410821060c010b2004101e2206450d020b024002402005450d00200241d9006a41036a21074100210841002109410021040340024002402001280204220a0d004113210b0c010b2001280200220c2d0000210d2001200a417f6a220e3602042001200c41016a220f3602000240200d41124d0d004113210b0c010b4100210b02400240024002400240024002400240024002400240024002400240024002400240024002400240200d0e1313000102030405060708090a0b0c0d0e0f1011130b4101210b0c120b4102210b0c110b4103210b0c100b4104210b0c0f0b4105210b0c0e0b4106210b0c0d0b4107210b0c0c0b0240200e41024f0d004113210b0c0d0b200c2f000121102001200a417d6a220e3602042001200c41036a220f3602004108210b0c0a0b0240200e41084f0d004113210b0c0c0b200c29000121112001200a41776a220e3602044109210b2001200c41096a220f3602000c0a0b0240200e41024f0d004113210b0c0b0b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410a210b0c080b0240200e41024f0d004113210b0c0a0b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410b210b0c070b0240200e41024f0d004113210b0c090b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410c210b0c060b0240200e41024f0d004113210b0c080b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410d210b0c050b0240200e41024f0d004113210b0c070b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410e210b0c040b0240200e41024f0d004113210b0c060b200c2f000121102001200a417d6a220e3602042001200c41036a220f360200410f210b0c030b0240200e41024f0d004113210b0c050b200c2f000121102001200a417d6a220e3602042001200c41036a220f3602004110210b0c020b0240200e41024f0d004113210b0c040b200c2f000121102001200a417d6a220d3602042001200c41036a3602000240200d41024f0d004113210b0c040b200c2f000321122001200a417b6a220e3602042001200c41056a220f3602004111210b0c020b0240200e41024f0d004113210b0c030b200c2f000121102001200a417d6a220d3602042001200c41036a3602000240200d41084f0d004113210b0c030b200c29000321112001200a41756a220e3602042001200c410b6a220f3602004112210b0b0b0240200e0d004113210b0c010b200f2d0000210d2001200e417f6a3602042001200f41016a3602000240200d41014d0d004113210b0c010b4100210a02400240200d0e020100010b4101210a0b200241e0006a200110b70102402002280260220d0d004113210b0c010b2002280268210c2002280264210e200241e0006a200110b70102402002280260450d00200241c8006a41086a200241e0006a41086a280200360200200220022903603703482002200228005936024020022007280000360043200a2113200c2114200e2115200d21162011211720122118201021190c010b0240200e0d004113210b0c010b200d10204113210b0b200241306a41086a220a200241c8006a41086a28020036020020022002290348370330200220022802403602282002200228004336002b200b4113460d02200441016a210d200241186a41086a220e200a28020036020020022002290330370318200220022802283602102002200228002b360013024020042003470d0002402008200d2008200d4b1b2203ad42307e2211422088a70d002011a7220a4100480d000240024020040d00200a101e21060c010b20062009200a102221060b20060d01200a4108102d000b1027000b200620096a2204200b3b0100200441186a2014360100200441146a2015360100200441106a2016360100200441086a2017370100200441046a20183b0100200441026a20193b0100200e280200210b20022903182111200441286a20133a00002004411c6a2011370100200441246a200b360100200441296a20022802103600002004412c6a2002280013360000200841026a2108200941306a2109200d21042005200d470d000b0b2000200336020420002006360200200041086a20053602000c010b2000410036020002402004450d00200641206a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441306a2104200941506a22090d000b0b2003450d00200610200b200241f0006a24000f0b20044108102d000b102c000b34002000419de5c10036020420004100360200200041146a4108360200200041106a41f8d5c000360200200041086a420e3702000bb80101027f230041106b220224002002410036020820024201370300024002404108101e2203450d00200342003700002002428880808080013702042002200336020020034108411010222203450d0120034200370008200242908080808002370204200220033602002002410036020c2002410c6a200210632002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000f0b41084101102d000b41104101102d000ba70101027f230041106b22022400200241003602082002420137030002404108101e2203450d0020034200370000200242888080808001370204200220033602002002410036020c2002410c6a200210632002410036020c2002410c6a200210632002410036020c2002410c6a200210632002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000f0b41084101102d000bb01703057f017e067f230041d0006b220224000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200200541124b0d1320050e130102030405060708090a0b0c0d0e0f10111214010b200041133a00000c240b200041003a00000c230b02402006450d0020042d0001210520012003417e6a3602042001200441026a360200200541014b0d00410021010240024020050e020100010b410121010b200020013a0001200041013a0000200041026a2002290120370100200041086a200241266a2901003701000c230b200041133a00000c220b024020064102490d0020042f0001210520012003417d6a3602042001200441036a360200200041026a20053b0100200041023a0000200041046a20022902203702002000410c6a200241286a2802003602000c220b200041133a00000c210b024020064104490d002004280001210520012003417b6a3602042001200441056a360200200041033a0000200020022f00203b0001200041046a2005360200200041036a200241226a2d00003a00000c210b200041133a00000c200b024020064108490d00200429000121072001200341776a3602042001200441096a360200200041043a000020002002280020360001200041086a2007370300200041046a200241236a2800003600000c200b200041133a00000c1f0b024020064102490d0020042f0001210520012003417d6a3602042001200441036a360200200041026a20053b0100200041053a0000200041046a20022902203702002000410c6a200241286a2802003602000c1f0b200041133a00000c1e0b024020064104490d002004280001210520012003417b6a3602042001200441056a360200200041063a0000200020022f00203b0001200041046a2005360200200041036a200241226a2d00003a00000c1e0b200041133a00000c1d0b024020064108490d00200429000121072001200341776a3602042001200441096a360200200041073a000020002002280020360001200041086a2007370300200041046a200241236a2800003600000c1d0b200041133a00000c1c0b200241c0006a200110b70120022802400d0b200041133a00000c1b0b024020064108490d00200429000121072001200341776a3602042001200441096a360200200041093a000020002002280020360001200041086a2007370300200041046a200241236a2800003600000c1b0b200041133a00000c1a0b20022001105f024020022802000d0020012802042208417f4c0d14200228020421090240024020080d00410121060c010b2008101e2206450d160b02402009450d0041002104410021050340024002402001280204220a450d002001280200220b2d000021032001200a417f6a3602042001200b41016a360200200341014b0d004100210a0240024020030e020100010b4101210a0b200541016a210320052008470d0120042003200420034b1b22084100480d1d0240024020050d002008101e21060c010b200620052008102221060b20060d0120084101102d000b2008450d03200610200c030b200620056a200a3a0000200441026a21042003210520092003470d000b0b20060d0b0b200041133a00000c190b200241c0006a200110e50120022802400d0a200041133a00000c180b200241c0006a200110c10120022802400d0a200041133a00000c170b200241c0006a200110ec0120022802400d0a200041133a00000c160b200241086a2001105f024020022802080d0020012802042205417e712203417f4c0d10200228020c210c02400240200541017622060d00410221080c010b2003101e2208450d130b0240200c450d0041002105410021040340024002402001280204220a4102490d00200441016a21032001280200220b2f000021092001200a417e6a3602042001200b41026a36020020042006470d0120052003200520034b1b220620066a220a2006490d19200a4100480d190240024020040d00200a101e21080c010b20082005200a102221080b20080d01200a4102102d000b2006450d03200810200c030b200820056a20093b0100200541026a210520032104200c2003470d000b0b20080d0b0b200041133a00000c150b200241106a2001105f024020022802100d0020012802042205417c712203417f4c0d0f2002280214210d02400240200541027622080d004104210a0c010b2003101e220a450d130b0240200d450d004100210641002104410021030340024002402001280204220b4104490d00200341016a210520012802002209280000210c2001200b417c6a3602042001200941046a36020020032008470d0120062005200620054b1b220841ffffffff03712008470d182008410274220b4100480d180240024020030d00200b101e210a0c010b200a2004200b1022210a0b200a0d01200b4104102d000b2008450d03200a10200c030b200a20046a200c360200200641026a2106200441046a210420052103200d2005470d000b0b200a0d0b0b200041133a00000c140b200241186a2001105f024020022802180d00200128020422054178712203417f4c0d0e200228021c210c02400240200541037622080d004108210a0c010b2003101e220a450d130b0240200c450d004100210641002104410021030340024002402001280204220b4108490d00200341016a21052001280200220929000021072001200b41786a3602042001200941086a36020020032008470d0120062005200620054b1b220841ffffffff01712008470d172008410374220b4100480d170240024020030d00200b101e210a0c010b200a2004200b1022210a0b200a0d01200b4108102d000b2008450d03200a10200c030b200a20046a2007370300200641026a2106200441086a210420052103200c2005470d000b0b200a0d0b0b200041133a00000c130b200241c0006a200110ed0120022802400d0a200041133a00000c120b200041133a00000c110b200241c0006a200110ec0120022802400d09200041133a00000c100b2002412b6a200241c0006a41086a28020036000020022002290340370023200041083a000020002002290020370001200041086a200241276a2900003700000c0f0b2000410a3a0000200020022f00203b00012000410c6a2009360000200041086a2008360000200041046a2006360000200041036a200241226a2d00003a00000c0e0b200241206a410b6a200241c0006a41086a280200360000200220022903403700232000410b3a000020002002290020370001200041086a200241276a2900003700000c0d0b2002412b6a200241c0006a41086a280200360000200220022903403700232000410c3a000020002002290020370001200041086a200241276a2900003700000c0c0b2002412b6a200241c0006a41086a280200360000200220022903403700232000410d3a000020002002290020370001200041086a200241276a2900003700000c0b0b2000410e3a0000200020022f00203b00012000410c6a200c360000200041086a2006360000200041046a2008360000200041036a200241226a2d00003a00000c0a0b2000410f3a0000200020022f00203b00012000410c6a200d360000200041086a2008360000200041046a200a360000200041036a200241226a2d00003a00000c090b200041103a0000200020022f00203b00012000410c6a200c360000200041086a2008360000200041046a200a360000200041036a200241226a2d00003a00000c080b2002412b6a200241c0006a41086a28020036000020022002290340370023200041113a000020002002290020370001200041086a200241276a2900003700000c070b2002412b6a200241c0006a41086a28020036000020022002290340370023200041123a000020002002290020370001200041086a200241276a2900003700000c060b102c000b20084101102d000b20034102102d000b20034104102d000b20034108102d000b1027000b200241d0006a24000bf202020a7f017e230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020422034178712204417f4c0d01200228020c210502400240200341037622060d00410821070c010b2004101e2207450d030b024002402005450d0041002108410021094100210403402001280204220a4108490d02200441016a21032001280200220b290000210c2001200a41786a3602042001200b41086a360200024020042006470d00024020082003200820034b1b220641ffffffff01712006470d002006410374220a4100480d000240024020040d00200a101e21070c010b20072009200a102221070b20070d01200a4108102d000b1027000b200720096a200c370300200841026a2108200941086a21092003210420052003470d000b0b2000200636020420002007360200200041086a20053602000c010b200041003602002006450d00200710200b200241106a24000f0b102c000b20044108102d000b9f0303097f027e017f230041206b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b2001280204410c6e2203410c6c2204417f4c0d01200228020c21050240024020040d00410421060c010b2004101e2206450d030b024002402005450d004100210741002104410021080340200241106a200110b70120022802102209450d02200841016a210a2002290214210b024020082003470d0002402007200a2007200a4b1b2203ad420c7e220c422088a70d00200ca7220d4100480d000240024020080d00200d101e21060c010b20062004200d102221060b20060d01200d4104102d000b1027000b200620046a22082009360200200841046a200b370200200741026a21072004410c6a2104200a21082005200a470d000b0b2000200336020420002006360200200041086a20053602000c010b2000410036020002402008450d002006210a03400240200a41046a280200450d00200a28020010200b200a410c6a210a200441746a22040d000b0b2003450d00200610200b200241206a24000f0b102c000b20044104102d000b3400200041b2e1c00036020420004100360200200041146a4102360200200041106a41bce1c000360200200041086a42093702000b880101017f0240024002404110101e2202450d00200242003700082002420037000020024110412010222202450d0120024100360011200241003a00102002412041c00010222202450d0220024200370015200042c0808080d004370204200020023602002002411d6a42003700000f0b41104101102d000b41204101102d000b41c0004101102d000b3400200041c8e4c10036020420004100360200200041146a4101360200200041106a41fce3c000360200200041086a42183702000b100020002802002000280204200110520b0d00200141c8abc3004102103c0bfb0505027f027e017f027e027f230041a0016b220224002000280200210002400240024002400240024002400240200128020022034110710d00200041086a29030021042000290300210520034120710d0220054290ce005441002004501b450d012005a72103412721000c060b200041086a2903002105200029030021044180012100024003402000450d01200241206a20006a417f6a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a210020044204882005423c8684220420054204882205844200520d000b0b20004181014f0d02200141908ac0004102200241206a20006a41800120006b103821000c060b41272100200241186a21060340200241106a200520044290ce00420010d3052002200229031022072006290300220842f0b17f427f10d205200241206a20006a2203417c6a200520022903007ca7220941ffff037141e4006e220a41017441e684c0006a2f00003b00002003417e6a200a419c7f6c20096a41ffff037141017441e684c0006a2f00003b0000200542ffc1d72f56210320044200522109200450210a2000417c6a2100200721052008210420032009200a1b0d000c040b0b4180012100024003402000450d01200241206a20006a417f6a2005a7410f712203413072200341376a2003410a491b3a00002000417f6a210020054204882004423c8684220520044204882204844200520d000b0b20004181014f0d01200141908ac0004102200241206a20006a41800120006b103821000c040b2000418001103b000b2000418001103b000b2007a721030b02400240200341e3004a0d00200321090c010b200241206a2000417e6a22006a2003200341ffff037141e4006e2209419c7f6c6a41ffff037141017441e684c0006a2f00003b00000b024002402009410a480d00200241206a2000417e6a22006a200941017441e684c0006a2f00003b00000c010b200241206a2000417f6a22006a200941306a3a00000b200141e4fdc6004100200241206a20006a412720006b103821000b200241a0016a240020000bb90202027f017e23004180016b220224002000280200210002400240024002400240200128020022034110710d002000290300210420034120710d0120042001103521000c020b20002903002104410021000340200220006a41ff006a2004a7410f712203413072200341d7006a2003410a491b3a00002000417f6a2100200442048822044200520d000b20004180016a22034181014f0d02200141908ac0004102200220006a4180016a410020006b103821000c010b410021000340200220006a41ff006a2004a7410f712203413072200341376a2003410a491b3a00002000417f6a2100200442048822044200520d000b20004180016a22034181014f0d02200141908ac0004102200220006a4180016a410020006b103821000b20024180016a240020000f0b2003418001103b000b2003418001103b000b8b0902057f017e230041106b2202240020024100360208200242013703002000412c6a200210ca01200028020821030240024002400240024002400240024020022802042204200228020822056b4104490d00200228020021040c010b200541046a22062005490d05200441017422052006200520064b1b22054100480d050240024020040d002005101e21040c010b200228020020042005102221040b2004450d012002200536020420022004360200200228020821050b2002200541046a360208200420056a2003360000200029030021070240024020022802042204200228020822056b4108490d00200228020021040c010b200541086a22032005490d05200441017422052003200520034b1b22054100480d050240024020040d002005101e21040c010b200228020020042005102221040b2004450d022002200536020420022004360200200228020821050b2002200541086a360208200420056a2007370000200029031021070240024020022802042204200228020822056b4108490d00200228020021040c010b200541086a22032005490d05200441017422052003200520034b1b22054100480d050240024020040d002005101e21040c010b200228020020042005102221040b2004450d032002200536020420022004360200200228020821050b2002200541086a360208200420056a200737000020002903182107024020022802042204200228020822056b4108490d00200228020021040c040b200541086a22032005490d04200441017422052003200520034b1b22054100480d040240024020040d002005101e21040c010b200228020020042005102221040b02402004450d002002200536020420022004360200200228020821050c040b20054101102d000b20054101102d000b20054101102d000b20054101102d000b2002200541086a360208200420056a2007370000200041cc006a200210ca01024020002d006c220541024b0d00024002400240024020050e03000102000b410021040c020b410121040c010b410221040b200220043a000c02400240200228020420022802082205460d00200228020021030c010b200541016a22032005490d02200541017422062003200620034b1b22064100480d020240024020050d002006101e21030c010b200228020020052006102221030b02402003450d002002200636020420022003360200200228020821050c010b20064101102d000b2002200541016a360208200320056a20043a00000b200028022021032002200041286a280200220036020c2002410c6a20021063024020022802042204200228020822056b2000490d00200228020021040c020b200520006a22062005490d00200441017422052006200520064b1b22054100480d000240024020040d002005101e21040c010b200228020020042005102221040b02402004450d002002200536020420022004360200200228020821050c020b20054101102d000b1027000b2002200520006a360208200420056a2003200010cd051a2002280204210020012802002001280204200228020022052002280208100502402000450d00200510200b200241106a24000bee0803077f037e027f230041b0016b2202240041002103200241003a00a80120012802042104417f2105024002400240034020042003460d0120024188016a20036a200128020022062d00003a00002001200420056a3602042001200641016a3602002002200341016a22073a00a8012005417f6a21052007210320074120470d000b200241186a41086a20024188016a41086a290300370300200241186a41106a20024188016a41106a290300370300200241186a41186a20024188016a41186a29030037030020022002290388013703180240200420076b22044104490d00200628000121082001200641056a36020020012004417c6a2203360204200341084f0d020b200041033a006c0c020b0240200341ff0171450d00200241003a00a8010b200041033a006c0c010b2006290005210920012006410d6a3602002001200441746a22033602040240024002400240024020034108490d00200629000d210a2001200641156a36020020012004416c6a220336020420034108490d012006290015210b20012006411d6a3602002001200441646a220c36020441002103200241003a00a801200441636a21050340200c2003460d0320024188016a20036a200620036a2207411d6a2d00003a00002001200536020420012007411e6a3602002002200341016a22073a00a8012005417f6a21052007210320074120470d000b200241386a41086a20024188016a41086a290300370300200241386a41106a20024188016a41106a290300370300200241386a41186a20024188016a41186a2903003703002002200229038801370338200441646a2007460d03200620076a2207411d6a2d000021032001200536020420012007411e6a360200200341034f0d03200241d8006a200110b70120022802580d04200041033a006c0c050b200041033a006c0c040b200041033a006c0c030b0240200341ff0171450d00200241003a00a8010b200041033a006c0c020b200041033a006c0c010b200241086a41086a2201200241d8006a41086a28020036020020024188016a41086a2205200241186a41086a29030037030020024188016a41106a2207200241186a41106a29030037030020024188016a41186a2204200241186a41186a290300370300200241e8006a41086a2206200241386a41086a290300370300200241e8006a41106a220c200241386a41106a290300370300200241e8006a41186a220d200241386a41186a290300370300200220022903583703082002200229031837038801200220022903383703682000200b3703182000200a370310200020083602082000200937030020002002290308370320200041286a2001280200360200200020022903880137022c200041346a20052903003702002000413c6a2007290300370200200041c4006a20042903003702002000200229036837024c200041d4006a2006290300370200200041dc006a200c290300370200200041e4006a200d290300370200200020033a006c200041ef006a2002413a6a2d00003a0000200020022f00383b006d0b200241b0016a24000b3400200041eee4c10036020420004100360200200041146a4103360200200041106a41c0e6c000360200200041086a420d3702000bad0a01067f23004180046b2204240002400240024002404123101e2205450d00200541002900fee9403700002005411f6a410028009dea40360000200541186a4100290096ea40370000200541106a410029008eea40370000200541086a4100290086ea40370000200442a3808080b004370294032004200536029003200420044190036a3602082002200441086a10b90120042802900321052004280298032106200441f0016a41186a22074200370300200441f0016a41106a22084200370300200441f0016a41086a22094200370300200442003703f00120052006200441f0016a1001200441e0026a41186a2007290300370300200441e0026a41106a2008290300370300200441e0026a41086a2009290300370300200420042903f0013703e0020240200428029403450d0020042802900310200b2004410036029003200441e0026a412020044190036a100321072004280290032208417f460d022007450d02200420083602f401200420073602f00120044190036a200441f0016a10f60120042d00fc0322064103460d012004280290032105200441086a20044190036a41047241e80010cd051a200441de026a200441ff036a2d00003a0000200420042f00fd033b01dc022008450d03200710200c030b41234101102d000b41ceb8c4004133200441086a41fcbfc4004184b9c400102e000b410321060b20044190036a200441086a41e80010cd051a20044180036a41026a2207200441dc026a41026a2d00003a0000200420042f01dc023b0180030240024020064103470d0041012107411f21050c010b200441f0016a20044190036a41e80010cd051a200441ec016a41026a20072d00003a0000200420042f0180033b01ec01410021070b20044180016a200441f0016a41e80010cd051a200441fc006a41026a200441ec016a41026a2d00003a0000200420042f01ec013b017c024002402007450d0041f3cac00021020c010b20042005360208200441086a41047220044180016a41e80010cd051a200441f7006a200441fe006a2d00003a0000200420063a0074200420042f017c3b00750240200441d4006a22052001460d0020052001412010cf05450d004192cbc0002102413721052004412c6a280200450d01200428022810200c010b200420033a007420044190036a200441086a41f00010cd051a20044180016a41186a200241186a29000037030020044180016a41106a200241106a29000037030020044180016a41086a200241086a290000370300200420022900003703800102404123101e2205450d00200541002900fee9403700002005411f6a410028009dea40360000200541186a4100290096ea40370000200541106a410029008eea40370000200541086a4100290086ea40370000200442a3808080b004370284032004200536028003200420044180036a3602f00120044180016a200441f0016a10b90120042802800321052004280288032102200441f0016a41186a22064200370300200441f0016a41106a22074200370300200441f0016a41086a22084200370300200442003703f00120052002200441f0016a1001200441e0026a41186a2006290300370300200441e0026a41106a2007290300370300200441e0026a41086a2008290300370300200420042903f0013703e0020240200428028403450d0020042802800310200b200441203602f4012004200441e0026a3602f00120044190036a200441f0016a10f5010240200441b4036a280200450d0020042802b00310200b410021020c010b41234101102d000b200020053602042000200236020020044180046a24000b130020004107360204200041a4ebc0003602000b3400200041fbe4c10036020420004100360200200041146a4107360200200041106a41d0f0c000360200200041086a42193702000bb11903087f027e077f230041f0036b2204240041042105200141046a280000210620012d00002107200441b0016a41026a2208200141036a2d00003a000020044188026a41086a2209200141186a29000037030020044188026a41106a220a200141206a2d00003a0000200420012f00013b01b0012004200141106a290000370388024101210b200141086a290000210c024020074101470d00200441f0006a41026a20082d00003a0000200441286a41086a2009290300370300200441286a41106a200a2d00003a0000200420042f01b0013b017020042004290388023703284100210b200621050b200441b0036a41026a200441f0006a41026a2d00003a0000200441f8026a41086a200441286a41086a290300370300200441f8026a41106a200441286a41106a2d00003a0000200420042f01703b01b003200420042903283703f802024002400240024002400240200b0d002004411f6a200441f8026a41086a290300370000200441086a411f6a200441f8026a41106a2d00003a0000200420042f01b0033b01082004200c37000f2004200536000b200420042903f8023700172004200441b2036a2d00003a000a4127101e2201450d012001411f6a41002900eff840370000200141186a41002900e8f840370000200141106a41002900e0f840370000200141086a41002900d8f840370000200141002900d0f8403700002001412741ce0010222201450d0220012002370027200441b0036a41186a22054200370300200441b0036a41106a220b4200370300200441b0036a41086a22074200370300200442003703b0032001412f200441b0036a1001200441e8016a41186a2005290300370300200441e8016a41106a200b290300370300200441e8016a41086a2007290300370300200420042903b0033703e801200110202004410036028802200441e8016a412020044188026a1003210b2004280288022207417f460d03200b450d0341002101200441003a00980302400240024002400240034020072001460d01200441f8026a20016a200b20016a2d00003a00002004200141016a22053a0098032005210120054120470d000b200441b0036a41186a200441f8026a41186a290300220c370300200441b0036a41106a200441f8026a41106a290300370300200441b0036a41086a200441f8026a41086a290300370300200420042903f802220d3703b003200441ee036a20042d00b2033a0000200441dd036a200c370000200441d0036a41086a200441c3036a2900003703002004200d3d01ec03200420042900bb033703d00320042800b303210920042800b703210a41002101200441003a009803200720056b2106200b20056a2108034020062001460d02200441f8026a20016a200820016a2d00003a00002004200141016a22053a0098032005210120054120470d000b200441b0016a41086a200441f8026a41086a290300370300200441b0016a41106a200441f8026a41106a290300370300200441b0016a41186a200441f8026a41186a290300370300200420042903f8023703b00120062005460d02200820056a2d0000220541014b0d024100210120050e020403040b200141ff0171450d01200441003a0098030c010b200141ff0171450d00200441003a0098030b41ceb8c400413320044188026a41fcbfc4004184b9c400102e000b410121010b20044188026a41086a2205200441d0036a41086a29030037030020044188026a410d6a200441d0036a410d6a290000370000200441a5026a200441b0016a41086a2206290300370000200441ad026a200441b0016a41106a220829030037000020044188026a412d6a220e200441b0016a41186a220f290300370000200420042f01ec033b01b003200420042903d00337038802200420042903b00137009d022004200441ec036a41026a2d00003a00b203200441f8026a41086a22102005290300370300200441f8026a41106a220520044188026a41106a290300370300200441f8026a41186a221120044188026a41186a290300370300200441f8026a41206a221220044188026a41206a290300370300200441f8026a41286a221320044188026a41286a290300370300200441f8026a412d6a2214200e29000037000020042004290388023703f802200441d0036a41026a20042d00b2033a0000200420042f01b0033b01d003200441b0016a412d6a2014290000370000200441b0016a41286a2013290300370300200441b0016a41206a2012290300370300200f20112903003703002008200529030037030020062010290300370300200420042903f8023703b0012007450d04200b10200c040b419affc6002109410f210a02400240024002400240024020050e070001020304050a000b200c422088a7210a200ca721090c090b418cffc6002109410e210a0c080b4180ffc6002109410c210a0c070b41f7fec60021094109210a0c060b41e4fec60021094113210a0c050b41d3fec60021094111210a0c040b41274101102d000b41ce004101102d000b410221010b200441b0036a41026a2205200441d0036a41026a2d00003a000020044188026a41086a220b200441b0016a41086a29030037030020044188026a41106a2207200441b0016a41106a29030037030020044188026a41186a2206200441b0016a41186a29030037030020044188026a41206a2208200441b0016a41206a29030037030020044188026a41286a220e200441b0016a41286a29030037030020044188026a412d6a220f200441b0016a412d6a290000370000200420042f01d0033b01b003200420042903b001370388020240024020014102470d00410121054136210a41afccc00021090c010b200441ec036a41026a20052d00003a0000200441f8026a41086a200b290300370300200441f8026a41106a2007290300370300200441f8026a41186a2006290300370300200441f8026a41206a2008290300370300200441f8026a41286a200e290300370300200441f8026a412d6a200f290000370000200420042f01b0033b01ec0320042004290388023703f802410021050b200441ac016a41026a200441ec036a41026a2d00003a0000200441f0006a41086a200441f8026a41086a290300370300200441f0006a41106a200441f8026a41106a290300370300200441f0006a41186a200441f8026a41186a290300370300200441f0006a41206a200441f8026a41206a290300370300200441f0006a41286a200441f8026a41286a290300370300200441f0006a412d6a200441f8026a412d6a290000370000200420042f01ec033b01ac01200420042903f80237037020050d002004413b6a200441f8006a290300370000200441c3006a20044180016a290300370000200441cb006a20044188016a290300370000200441d3006a200441f0006a41206a290300370000200441db006a20044198016a290300370000200441e0006a2004419d016a290000370000200420042f01ac013b01282004200a36002f2004200936002b200420042903703700332004200441ae016a2d00003a002a200420013a00680240200441286a41206a200441086a412010cf05450d0041a9cdc000210941c500210a0c010b200420033a006820044188026a200441286a41c10010cd051a0240024002404127101e2201450d002001411f6a41002900eff840370000200141186a41002900e8f840370000200141106a41002900e0f840370000200141086a41002900d8f840370000200141002900d0f8403700002001412741ce0010222201450d0120012002370027200441b0036a41186a22054200370300200441b0036a41106a220b4200370300200441b0036a41086a22074200370300200442003703b0032001412f200441b0036a1001200441e8016a41186a2005290300370300200441e8016a41106a200b290300370300200441e8016a41086a2007290300370300200420042903b0033703e801200110202004410036028003200442013703f8022004200441f8026a3602b00120044188026a200441b0016a10b901200441a8026a200441f8026a10ca0120042d00c802210b024020042802fc022004280280032201460d0020042802f80221050c030b0240200141016a22052001490d00200141017422072005200720054b1b22074100480d000240024020010d002007101e21050c010b20042802f80220012007102221050b02402005450d00200420073602fc02200420053602f80220042802800321010c040b20074101102d000b1027000b41274101102d000b41ce004101102d000b2004200141016a36028003200520016a200b3a000020042802fc022101200441e8016a412020042802f8022205200428028003100502402001450d00200510200b20044198026a200237030020044190026a4181023b0100200441133a00880220044188026a1077410021090b2000200a36020420002009360200200441f0036a24000b130020004103360204200041f8f9c0003602000ba50a030e7f027e037f230041f0006b2202240020022001105f02400240024002402002280200450d00200041003602000c010b200128020441246e220341246c2204417f4c0d02200228020421050240024020040d00410421060c010b2004101e2206450d020b024002400240024020050d00410021040c010b200241356a2107200241db006a220841056a21094100210a4100210b03400240024002402001280204220c450d002001280200220d2d000021042001200c417f6a220e3602042001200d41016a360200200441064b0d000240024002400240024020040e0704050005020301040b41002104200241003a0068200c417e6a210c02400340200e2004460d01200241c8006a20046a200d20046a220f41016a2d00003a00002001200c3602042001200f41026a3602002002200441016a220f3a0068200c417f6a210c200f2104200f4120470d000b200220082900003703282002200929000037002d200228004f210d200228004b210f20022f0148210420022d004a210c20022900532110200741026a200241386a41026a2d00003a0000200720022f00383b000020104280808080708321112004200c41107472210c2010a72112410021130c070b200441ff0171450d04200241003a00680c040b200241c8006a200110e503200228024c220d450d0320022f014820022d004a41107472210c20022903502210428080808070832111200f41807e7120022d004b72210f2010a72112410121130c050b200241c8006a200110e503200228024c220d450d0220022f014820022d004a41107472210c20022903502210428080808070832111200f41807e7120022d004b72210f2010a72112410221130c040b200241c8006a200110e503200228024c220d450d0120022f014820022d004a41107472210c20022903502210428080808070832111200f41807e7120022d004b72210f2010a72112410321130c030b200241386a200110b7012002280238220f0d010b200241186a41086a200241286a41086a29030037030020022002290328370318200041003602000240200b450d002006210403400240024020042d0000220141034b0d0002400240024020010e0404000102040b2004410c6a280200450d03200441086a28020010200c030b2004410c6a280200450d02200441086a28020010200c020b2004410c6a280200450d01200441086a28020010200c010b200441086a280200450d00200441046a28020010200b200441246a2104200a415c6a220a0d000b0b2003450d06200610200c060b20022802402112200228023c210d200241286a41086a200241c8006a41086a2902003703002002200229024837032841042113420021110b200241186a41086a200241286a41086a2903002210370300200241086a41086a220e2010370300200220022903282210370318200220103703080240200b2003470d00200341016a22042003490d04200341017422142004201420044b1b2204ad42247e2210422088a70d042010a722144100480d040240024020030d002014101e21060c010b2006200341246c2014102221060b2006450d03200421030b2006200b41246c6a220420112012ad8437000c2004200d3600082004200f3600042004200c3b0001200420133a0000200441036a200c4110763a0000200420022903083700142004411c6a200e290300370000200a41246a210a200b41016a2204210b20042005470d000b0b2000200336020420002006360200200041086a20043602000c020b20144104102d000b1027000b200241f0006a24000f0b20044104102d000b102c000bf10805047f017e047f027e047f230041d0006b22012400200141186a41086a220242003703002001420037031841b7fcc000410d200141186a1000200141086a41086a20022903003703002001200129031837030820014100360218200141086a4110200141186a100321020240024020012802182203417f460d002002450d002001200336024420012002360240200141186a200141c0006a10fd01024020012802182204450d00200129021c210502402003450d00200210200b2005422088a721062005a721030c020b41ceb8c4004133200141186a41fcbfc4004184b9c400102e000b410421044100210642002105410021030b200141186a41206a2207200041206a280200360200200141186a41186a2208200041186a290200370300200141186a41106a2209200041106a290200370300200141186a41086a2202200041086a2902003703002001200029020037031802400240024020062003470d00024020062005a7470d00200641016a22002006490d03200641017422032000200320004b1bad220a42247e220b422088a70d03200ba722004100480d030240024020060d002000101e21040c010b2004200641246c2000102221040b2004450d02200542808080807083200a8421050b2005422088a721060b2004200641246c6a22002001290318370200200041206a2007280200360200200041186a2008290300370200200041106a2009290300370200200041086a2002290300370200200242003703002001420037031841b7fcc000410d200141186a1000200141086a41086a20022903003703002001200129031837030820014100360248200142013703402001200641016a220c360218200141186a200141c0006a106302400240200c20064f0d002001280248210220012802442109200128024021070c010b2004200c41246c6a210d2001280244210920012802482100200421030340200141186a200310a9012001280218210e02400240200920006b20012802202208490d00200020086a2102200128024021070c010b200020086a22022000490d04200941017422072002200720024b1b220f4100480d040240024020090d00200f101e21070c010b20012802402009200f102221070b02402007450d002001200f36024420012007360240200f21090c010b200f4101102d000b200341246a210320012002360248200720006a200e200810cd051a0240200128021c450d00200e10200b20022100200d2003470d000b0b200141086a411020072002100502402009450d00200710200b0240200c450d00200641246c41246a21022004210003400240024020002d0000220341034b0d0002400240024020030e0404000102040b2000410c6a280200450d03200041086a28020010200c030b2000410c6a280200450d02200041086a28020010200c020b2000410c6a280200450d01200041086a28020010200c010b200041086a280200450d00200041046a28020010200b200041246a21002002415c6a22020d000b0b02402005a7450d00200410200b200141d0006a24000f0b20004104102d000b1027000bf80201037f024020002802082201450d002000280200220020014188016c6a210203400240024020002d0000220141154b0d00024002400240024020010e1605050505050001020505050505050505050505050305050b200041046a2802000d042000410c6a280200450d04200041086a28020010200c040b200041046a2d00004102490d030240200041106a2802002201450d00200141d0006c2103200041086a28020041c0006a210103400240200141046a280200450d00200128020010200b200141d0006a2101200341b07f6a22030d000b0b2000410c6a280200450d03200028020810200c030b200041086a280200450d02200041046a28020010200c020b200041046a2d00000d012000412c6a280200450d01200041286a28020010200c010b200041086a2d00004107470d002000410c6a280200200041106a280200200041146a2802001083020b20004188016a21010240200041fc006a280200450d00200028027810200b2001210020012002470d000b0b0b9f0301027f230041e0006b22032400200341003a00050240024002400240200041c000490d00200041808001490d012000418080808004490d0241052104200341053a0005200341033a0000200320003600010c030b41012104200341013a0005200320004102743a00000c020b41022104200341023a0005200320004102744101723b01000c010b41042104200341043a0005200320004102744102723602000b024002402001280200220028020822012002490d0020002802002100200320023602082003200436020c20042002470d0120002003200210cd051a200341e0006a24000f0b20022001103a000b200341286a41146a4108360200200341346a4109360200200341106a41146a41033602002003200341086a36024020032003410c6a360244200341c8006a41146a41003602002003420337021420034190fbc6003602102003410936022c200341e4fdc6003602582003420137024c200341e4fbc6003602482003200341286a3602202003200341c8006a3602382003200341c4006a3602302003200341c0006a360228200341106a41a0fcc6001033000b870501057f230041106b2202240002400240024002400240024020002802704101460d0002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200028027421060240200141046a2802002204200528020022036b4104490d00200128020021040c050b200341046a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c050b20034101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c030b200341016a22042003490d00200341017422052004200520044b1b22054100480d000240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c030b20054101102d000b1027000b20054101102d000b200141086a200341016a360200200420036a41013a00000c010b200141086a200341046a360200200420036a20063600000b2000200110890220002802782103200220004180016a280200220036020c2002410c6a2001106302402000450d00200041057421000340200220013602082003200241086a10b901200341206a2103200041606a22000d000b0b200241106a24000bc50201027f0240024020002d0000220141154b0d00024002400240024020010e1605050505050001020505050505050505050505050305050b200041046a2802000d042000410c6a280200450d04200041086a28020010200c040b200041046a2d00004102490d030240200041106a2802002201450d00200141d0006c2102200041086a28020041c0006a210103400240200141046a280200450d00200128020010200b200141d0006a2101200241b07f6a22020d000b0b2000410c6a280200450d03200028020810200c030b200041086a280200450d02200041046a28020010200c020b200041046a2d00000d012000412c6a280200450d01200041286a28020010200c010b200041086a2d00004107470d002000410c6a280200200041106a280200200041146a2802001083020b0240200041fc006a280200450d00200028027810200b0b990303027f017e017f02402001450d00034020002802b80121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41bc016a2802002100410021032006417f6a2201450d01034020002802b80121002001417f6a22010d000c020b0b200341016a21030b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0b130020004107360204200041a4fec0003602000b3400200041f8e3c10036020420004100360200200041146a410d360200200041106a41d085c100360200200041086a42063702000b5f01017f230041206b22022400200241003602082002420837030020024100360218200242013703102002410036021c2002411c6a200241106a1063200041086a200228021836020020002002290310370200200210ff01200241206a24000b7201017f230041306b22022400200241186a4200370300200241106a4200370300200241086a42003703002002420037030020024100360228200242013703202002200241206a36022c20022002412c6a10b901200041086a200228022836020020002002290320370200200241306a24000bf40102047f017e230041306b22012400200141206a41086a220242003703002001420037032041b7fcc000410d200141206a1000200141086a41086a20022903003703002001200129032037030820014100360220200141086a4110200141206a100321020240024020012802202203417f460d002002450d002001200336021c20012002360218200141206a200141186a10fd01024020012802202204450d002001290224210502402003450d00200210200b20002005370204200020043602000c020b41ceb8c4004133200141206a41fcbfc4004184b9c400102e000b20004100360208200042043702000b200141306a24000bbbbe0204067f017e047f017e230041106b22022400024020002d0000220341164b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e17000102030405060708090a0b0c0d0e0f10111213141516000b0240200141046a280200200141086a2802002203460d00200128020021040c3f0b200341016a22052003490d3f200341017422042005200420054b1b22054100480d3f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3f0b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d3f200341017422042005200420054b1b22044100480d3f0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41013a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d3f200341017422042005200420054b1b22044100480d3f0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1720012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041086a200110ca01200028020421050240200141046a2802002203200428020022006b4104490d00200128020021030c3d0b200041046a22042000490d3e200341017422002004200020044b1b22004100480d3e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c3d0b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c3b0b200341016a22052003490d3d200341017422042005200420054b1b22044100480d3d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c3b0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c390b200341016a22052003490d3c200341017422042005200420054b1b22044100480d3c0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c390b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d3c200341017422042005200420054b1b22044100480d3c0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1520012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41043a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d3c200341017422042005200420054b1b22044100480d3c0240024020030d002004101e21050c010b200128020020032004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200028020421050240200141046a2802002203200428020022006b4104490d00200128020021030c370b200041046a22042000490d3b200341017422002004200020044b1b22004100480d3b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c370b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c350b200341016a22052003490d3a200341017422042005200420054b1b22044100480d3a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c350b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c330b200341016a22052003490d39200341017422042005200420054b1b22044100480d390240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c330b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d39200341017422042005200420054b1b22044100480d390240024020030d002004101e21050c010b200128020020032004102221050b2005450d1420012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41073a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d39200341017422042005200420054b1b22044100480d390240024020030d002004101e21050c010b200128020020032004102221050b2005450d1520012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041106a200110f8022000280204210620022000410c6a280200220036020c2002410c6a200110630240200141046a2802002205200428020022036b2000490d00200128020021050c310b200320006a22042003490d38200541017422032004200320044b1b22034100480d380240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c310b20034101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c2f0b200341016a22052003490d37200341017422042005200420054b1b22044100480d370240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c2f0b20044101102d000b0240200141046a2204280200200141086a22032802002205460d00200128020021060c2d0b200541016a22062005490d36200541017422072006200720064b1b22074100480d360240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c2d0b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c220b200341016a22052003490d35200341017422042005200420054b1b22044100480d350240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c220b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c200b200341016a22052003490d21200341017422042005200420054b1b22044100480d210240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c200b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c1e0b200341016a22052003490d20200341017422042005200420054b1b22044100480d200240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c1e0b20044101102d000b0240200141046a2204280200200141086a22032802002205460d00200128020021060c1c0b200541016a22062005490d1f200541017422072006200720064b1b22074100480d1f0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c1c0b20074101102d000b0240200141046a2204280200200141086a22032802002205460d00200128020021060c1a0b200541016a22062005490d1e200541017422072006200720064b1b22074100480d1e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c1a0b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c180b200341016a22052003490d1d200341017422042005200420054b1b22044100480d1d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c180b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c160b200341016a22052003490d1c200341017422042005200420054b1b22044100480d1c0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c160b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c110b200341016a22052003490d1b200341017422042005200420054b1b22044100480d1b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c110b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c0f0b200341016a22052003490d10200341017422042005200420054b1b22044100480d100240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0f0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c0d0b200341016a22052003490d0f200341017422042005200420054b1b22044100480d0f0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0d0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c0b0b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0b0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c090b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c090b20044101102d000b0240200141046a2206280200200141086a22042802002203460d00200128020021050c070b200341016a22052003490d0c200341017422072005200720054b1b22074100480d0c0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c070b20074101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b2004200341016a360200200520036a41163a000020002d0008220341114b0d240240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e12000102030405060708090a0b0c0d0e0f1011000b200241003a00080240200628020020042802002203460d00200128020021050c220b200341016a22052003490d27200341017422072005200720054b1b22074100480d270240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c220b20074101102d000b200241013a00080240200628020020042802002203460d00200128020021050c200b200341016a22052003490d26200341017422072005200720054b1b22074100480d260240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c200b20074101102d000b200241023a00080240200628020020042802002203460d00200128020021050c1e0b200341016a22052003490d25200341017422072005200720054b1b22074100480d250240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c1e0b20074101102d000b200241033a00080240200628020020042802002203460d00200128020021050c1c0b200341016a22052003490d24200341017422072005200720054b1b22074100480d240240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c1c0b20074101102d000b200241043a00080240200628020020042802002203460d00200128020021050c1a0b200341016a22052003490d23200341017422072005200720054b1b22074100480d230240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c1a0b20074101102d000b200241053a00080240200628020020042802002203460d00200128020021050c180b200341016a22052003490d22200341017422072005200720054b1b22074100480d220240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c180b20074101102d000b200241063a00080240200628020020042802002203460d00200128020021050c160b200341016a22052003490d21200341017422072005200720054b1b22074100480d210240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c160b20074101102d000b200241073a00080240200628020020042802002203460d00200128020021050c140b200341016a22052003490d20200341017422072005200720054b1b22074100480d200240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c140b20074101102d000b200241083a00080240200628020020042802002203460d00200128020021050c120b200341016a22052003490d1f200341017422072005200720054b1b22074100480d1f0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c120b20074101102d000b200241093a00080240200628020020042802002203460d00200128020021050c100b200341016a22052003490d1e200341017422072005200720054b1b22074100480d1e0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c100b20074101102d000b2002410a3a00080240200628020020042802002203460d00200128020021050c0e0b200341016a22052003490d1d200341017422072005200720054b1b22074100480d1d0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0e0b20074101102d000b2002410b3a00080240200628020020042802002203460d00200128020021050c0c0b200341016a22052003490d1c200341017422072005200720054b1b22074100480d1c0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0c0b20074101102d000b2002410c3a00080240200628020020042802002203460d00200128020021050c0a0b200341016a22052003490d1b200341017422072005200720054b1b22074100480d1b0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0a0b20074101102d000b2002410d3a00080240200628020020042802002203460d00200128020021050c080b200341016a22052003490d1a200341017422072005200720054b1b22074100480d1a0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c080b20074101102d000b2002410e3a00080240200628020020042802002203460d00200128020021050c060b200341016a22052003490d19200341017422072005200720054b1b22074100480d190240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c060b20074101102d000b2002410f3a00080240200628020020042802002203460d00200128020021050c040b200341016a22052003490d18200341017422072005200720054b1b22074100480d180240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c040b20074101102d000b200241103a00080240200628020020042802002203460d00200128020021050c020b200341016a22052003490d17200341017422072005200720054b1b22074100480d170240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c020b20074101102d000b200241113a000802400240200628020020042802002203460d00200128020021050c010b200341016a22052003490d17200341017422072005200720054b1b22074100480d170240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c010b20074101102d000b2004200341016a360200200520036a41113a0000200220002d000922053a000802400240200628020020042802002200460d00200128020021030c010b200041016a22032000490d17200041017422062003200620034b1b22064100480d170240024020000d002006101e21030c010b200128020020002006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021000c010b20064101102d000b2004200041016a360200200320006a20053a00000c350b2004200341016a360200200520036a41103a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d16200341017422002005200020054b1b22004100480d160240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c340b2004200341016a360200200520036a410f3a0000200029033021080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d15200541017422032004200320044b1b22034100480d150240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c330b2004200341016a360200200520036a410e3a0000200029033021080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d14200541017422032004200320044b1b22034100480d140240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c320b2004200341016a360200200520036a410d3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d13200341017422002005200020054b1b22004100480d130240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c310b2004200341016a360200200520036a410c3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d12200341017422002005200020054b1b22004100480d120240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c300b2004200341016a360200200520036a410b3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d11200341017422002005200020054b1b22004100480d110240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2f0b2004200341016a360200200520036a410a3a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d10200341017422002005200020054b1b22004100480d100240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2e0b2004200341016a360200200520036a41093a0000200029031021080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22072003490d0f200541017422032007200320074b1b22034100480d0f0240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b2004200341086a360200200520036a2008370000200029031821080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0f200341017422002005200020054b1b22004100480d0f0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2d0b2004200341016a360200200520036a41083a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0e200341017422002005200020054b1b22004100480d0e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2c0b2004200341016a360200200520036a41073a0000200029031821080240024020062802002205200428020022036b4108490d00200128020021050c010b200341086a22072003490d0d200541017422032007200320074b1b22034100480d0d0240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a20083700002002200041146a280200220936020c2002410c6a20011063200028020c21030240200041106a2802002200450d00034020032802b80121032000417f6a22000d000b0b2009450d2b200141046a210a41002107034002400240200720032f0106490d0002400240200328020022000d004100210541002103410021000c010b20032f01042103410121050b0240200320002f0106490d000340200541016a210520002f01042203200028020022002f01064f0d000b0b200020034103746a220741e0006a210b200741086a210c200341027420006a41bc016a2802002103410021072005417f6a2200450d01034020032802b80121032000417f6a22000d000c020b0b200320074103746a220041e0006a210b200041086a210c200741016a21070b200c29030021080240024020062802002205200428020022006b4108490d00200128020021050c010b200041086a220c2000490d0e20054101742200200c2000200c4b1b22004100480d0e0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200520006a2008370000200b29030021080240024020062802002205200428020022006b4108490d00200128020021050c010b200041086a220b2000490d0e20054101742200200b2000200b4b1b22004100480d0e0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200520006a20083700002009417f6a22090d000c2c0b0b2004200341016a360200200520036a41063a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0c200341017422002005200020054b1b22004100480d0c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c2a0b2004200341016a360200200520036a41053a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0b200341017422002005200020054b1b22004100480d0b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c290b2004200341016a360200200520036a41043a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d0a200341017422002005200020054b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c280b2004200341016a360200200520036a41033a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d09200341017422002005200020054b1b22004100480d090240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c270b2004200341016a360200200520036a41023a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c260b2004200341016a360200200520036a41013a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d07200341017422002005200020054b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c250b2004200341016a360200200520036a41003a0000200029031021080240024020062802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d06200341017422002005200020054b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041086a360200200320006a20083700000c240b200141086a200341016a360200200520036a41153a000020002d0008220341054b0d230240024002400240024002400240024002400240024020030e06000102030405000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c0a0b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c0a0b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c080b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c080b20044101102d000b200241023a00080240200141046a280200200141086a2802002203460d00200128020021050c060b200341016a22052003490d0c200341017422042005200420054b1b22044100480d0c0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241033a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200141086a2802002103200241043a000802402003200141046a280200460d00200128020021050c020b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200241053a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41053a0000200041096a200110ca010c280b200141086a2204200341016a360200200520036a41043a00002000290310210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d09200541017422032004200320044b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341086a360200200520036a200837000020002f010a210502400240200141046a2802002203200428020022006b4102490d00200128020021030c010b200041026a22042000490d09200341017422002004200020044b1b22004100480d090240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041026a360200200320006a20053b00000c270b200141086a2204200341016a360200200520036a41033a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c260b200141086a2204200341016a360200200520036a41023a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d07200341017422002005200020054b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c250b200141086a2204200341016a360200200520036a41013a00002000290310210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d06200541017422032004200320044b1b22034100480d060240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341086a360200200520036a200837000020002f010a210502400240200141046a2802002203200428020022006b4102490d00200128020021030c010b200041026a22042000490d06200341017422002004200020044b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041026a360200200320006a20053b00000c240b200141086a2204200341016a360200200520036a41003a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d05200341017422002005200020054b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c230b200141086a2204200341016a360200200520036a41143a0000200041056a21050240024020002d00044101460d00200241003a00080240200141046a28020020042802002203460d00200128020021040c020b200341016a22042003490d05200341017422062004200620044b1b22064100480d050240024020030d002006101e21040c010b200128020020032006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021030c020b20064101102d000b200241013a000802400240200141046a28020020042802002200460d00200128020021030c010b200041016a22032000490d05200041017422042003200420034b1b22044100480d050240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a41013a00002005200110ca010c230b200141086a2206200341016a360200200420036a41003a00002005200110ca01200028022821042002200041306a280200220036020c2002410c6a2001106302400240200141046a2802002205200628020022036b2000490d00200128020021050c010b200320006a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200520036a2004200010cd051a0c220b200141086a2204200341016a360200200520036a41133a0000024002400240024002400240024020002d00080e0400010203000b200241003a00080240200141046a28020020042802002203460d00200128020021050c060b200341016a22052003490d08200341017422042005200420054b1b22044100480d080240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241013a00080240200141046a28020020042802002203460d00200128020021050c040b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241023a00080240200141046a28020020042802002203460d00200128020021050c020b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200241033a000802400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41033a0000200041096a200110ca012002200136020c200041296a2002410c6a10b9010c240b200141086a200341016a360200200520036a41023a0000200041096a200110ca012002200136020c200041296a2002410c6a10b9010c230b200141086a2204200341016a360200200520036a41013a00002000290310210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341086a360200200520036a2008370000200220002d000922053a000802400240200141046a28020020042802002200460d00200128020021030c010b200041016a22032000490d04200041017422042003200420034b1b22044100480d040240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a20053a00000c220b200141086a2204200341016a360200200520036a41003a00002000290350210802400240200141046a2802002205200428020022036b4108490d00200128020021050c010b200341086a22042003490d03200541017422032004200320044b1b22034100480d030240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a20083700002002200136020c200041096a2002410c6a10b901200041296a200110ca010c210b200141086a200341016a360200200520036a41123a000020002d0001220341024b0d2002400240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41023a0000200220013602082002410c6a2103200241086a21050c020b200141086a200341016a360200200520036a41013a000020022001360208200241046a2103200241086a21050c010b200141086a200341016a360200200520036a41003a00002002200136020820022103200241086a21050b200041026a200510b9012003200041226a22003602002000200110ca010c200b200141086a2204200341016a360200200520036a41113a0000200141046a280200210520042802002103024020002903084201510d00024020052003460d00200128020021050c040b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b0240024020052003460d00200128020021050c010b200341016a22052003490d01200341017422042005200420054b1b22044100480d010240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a2204200341016a360200200520036a41013a0000200029031021080240200141046a2802002203200428020022006b4108490d00200128020021030c020b200041086a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c020b20004101102d000b1027000b200141086a200041086a360200200320006a20083700000c1d0b200141086a2204200341016a360200200520036a41003a00002000290310210802400240200141046a2802002203200428020022006b4108490d00200128020021030c010b200041086a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20083700000c1c0b200141086a200341016a360200200520036a41103a000020002d0001220341024b0d1b02400240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b200141086a2802002103200141046a2802002105200241023a00080240024020052003460d00200128020021050c010b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41023a0000200041026a200110ca01024002400240024020002d00220e0400010203000b200241003a0008200241086a21050c050b200241013a0008200241086a21050c040b200241023a0008200241086a21050c030b200241033a0008200241086a21050c020b200141086a200341016a360200200520036a41013a0000200041026a200110ca01024002400240024020002d00220e0400010203000b200241003a0008200241086a21050c040b200241013a0008200241086a21050c030b200241023a0008200241086a21050c020b200241033a0008200241086a21050c010b200141086a200341016a360200200520036a41003a0000200041026a200110ca01024002400240024020002d00220e0400010203000b200241003a0008200241086a21050c030b200241013a0008200241086a21050c020b200241023a0008200241086a21050c010b200241033a0008200241086a21050b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d07200041017422042003200420034b1b22044100480d070240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a20052d00003a00000c1b0b200141086a2204200341016a360200200520036a410f3a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a2204200341016a360200200520036a41003a00002000280204210602400240200141046a2802002205200428020022036b4104490d00200128020021050c010b200341046a22042003490d06200541017422032004200320044b1b22034100480d060240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2204200341046a360200200520036a20063600002000280208210502400240200141046a2802002203200428020022006b4104490d00200128020021030c010b200041046a22042000490d06200341017422002004200020044b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20053600000c1a0b2003200541016a360200200620056a410e3a000002400240024002400240024002400240024002400240024002400240024020002d00080e080001020304050607000b200241003a00080240200428020020032802002205460d00200128020021060c0e0b200541016a22062005490d12200541017422072006200720064b1b22074100480d120240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0e0b20074101102d000b200241013a00080240200428020020032802002205460d00200128020021060c0c0b200541016a22062005490d11200541017422072006200720064b1b22074100480d110240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0c0b20074101102d000b200241023a00080240200428020020032802002205460d00200128020021060c0a0b200541016a22062005490d10200541017422072006200720064b1b22074100480d100240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0a0b20074101102d000b200241033a00080240200428020020032802002205460d00200128020021060c080b200541016a22062005490d0f200541017422072006200720064b1b22074100480d0f0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c080b20074101102d000b200241043a00080240200428020020032802002205460d00200128020021060c060b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c060b20074101102d000b200241053a00080240200428020020032802002205460d00200128020021060c040b200541016a22062005490d0d200541017422072006200720064b1b22074100480d0d0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c040b20074101102d000b200241063a00080240200428020020032802002205460d00200128020021060c020b200541016a22062005490d0c200541017422072006200720064b1b22074100480d0c0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c020b20074101102d000b200241073a000802400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d0c200541017422072006200720064b1b22074100480d0c0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c010b20074101102d000b2003200541016a360200200620056a41073a0000024002400240200041096a2d00004101460d00200241003a00080240200428020020032802002205460d00200128020021060c020b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c020b20074101102d000b200241013a000802400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c010b20074101102d000b200141086a200541016a360200200620056a41013a00002000410a6a200110ca010c010b2003200541016a360200200620056a41003a00000b0240024020002d002a4101460d00200241003a00080240200428020020032802002200460d00200128020021050c020b200041016a22052000490d0d200041017422042005200420054b1b22044100480d0d0240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c020b20044101102d000b200241013a000802400240200428020020032802002203460d00200128020021050c010b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41013a00002000412b6a200110ca010c210b2003200041016a360200200520006a41003a00000c200b2003200541016a360200200620056a41063a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d0b200641017422052007200520074b1b22054100480d0b0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a2008370000200029031821080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0b200541017422002004200020044b1b22004100480d0b0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1f0b2003200541016a360200200620056a41053a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0a200541017422002004200020044b1b22004100480d0a0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1e0b2003200541016a360200200620056a41043a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d09200541017422002004200020044b1b22004100480d090240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1d0b2003200541016a360200200620056a41033a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d08200541017422002004200020044b1b22004100480d080240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1c0b2003200541016a360200200620056a41023a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d07200541017422002004200020044b1b22004100480d070240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1b0b2003200541016a360200200620056a41013a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d06200641017422052007200520074b1b22054100480d060240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a200837000041002106024020002d000922074102460d00200241013a000802400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d07200541017422092006200920064b1b22094100480d070240024020050d002009101e21060c010b200128020020052009102221060b02402006450d0020012006360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200620056a41013a0000200721060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d06200541017422092007200920074b1b22094100480d060240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a00000240024020002d000a22054102470d00200241003a00080240200428020020032802002200460d00200128020021050c020b200041016a22052000490d07200041017422042005200420054b1b22044100480d070240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c020b20044101102d000b200241013a000802400240200428020020032802002200460d00200128020021060c010b200041016a22062000490d07200041017422072006200720064b1b22074100480d070240024020000d002007101e21060c010b200128020020002007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021000c010b20074101102d000b2003200041016a360200200620006a41013a0000200220053a000802400240200428020020032802002200460d00200128020021040c010b200041016a22042000490d07200041017422062004200620044b1b22064100480d070240024020000d002006101e21040c010b200128020020002006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021000c010b20064101102d000b2003200041016a360200200420006a20053a00000c1b0b2003200041016a360200200520006a41003a00000c1a0b2003200541016a360200200620056a41003a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d05200541017422002004200020044b1b22004100480d050240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c190b2003200541016a360200200620056a410d3a000002400240024002400240024002400240024002400240024002400240024020002d00080e080001020304050607000b0240200428020020032802002205460d00200128020021060c0e0b200541016a22062005490d11200541017422072006200720064b1b22074100480d110240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0e0b20074101102d000b0240200428020020032802002205460d00200128020021060c0c0b200541016a22062005490d10200541017422072006200720064b1b22074100480d100240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0c0b20074101102d000b0240200428020020032802002205460d00200128020021060c0a0b200541016a22062005490d0f200541017422072006200720064b1b22074100480d0f0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c0a0b20074101102d000b0240200428020020032802002205460d00200128020021060c080b200541016a22062005490d0e200541017422072006200720064b1b22074100480d0e0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c080b20074101102d000b0240200428020020032802002205460d00200128020021060c060b200541016a22062005490d0d200541017422072006200720064b1b22074100480d0d0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c060b20074101102d000b0240200428020020032802002205460d00200128020021060c040b200541016a22062005490d0c200541017422072006200720064b1b22074100480d0c0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c040b20074101102d000b0240200428020020032802002205460d00200128020021060c020b200541016a22062005490d0b200541017422072006200720064b1b22074100480d0b0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c020b20074101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d0b200541017422072006200720064b1b22074100480d0b0240024020050d002007101e21060c010b200128020020052007102221060b02402006450d0020012006360200200141046a2007360200200141086a28020021050c010b20074101102d000b2003200541016a360200200620056a41073a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d0b200641017422052007200520074b1b22054100480d0b0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a200837000002400240024002400240200041206a2d00000e0400010203000b410021060c030b410121060c020b410221060c010b410321060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d0b200541017422092007200920074b1b22094100480d0b0240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a0000200029031821080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0b200541017422002004200020044b1b22004100480d0b0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1f0b2003200541016a360200200620056a41063a0000200029031021080240024020042802002206200328020022056b4108490d00200128020021060c010b200541086a22072005490d0a200641017422052007200520074b1b22054100480d0a0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c010b20054101102d000b2003200541086a360200200620056a200837000002400240024002400240200041206a2d00000e0400010203000b410021060c030b410121060c020b410221060c010b410321060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d0a200541017422092007200920074b1b22094100480d0a0240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a0000200029031821080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d0a200541017422002004200020044b1b22004100480d0a0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1e0b2003200541016a360200200620056a41053a0000200029033021080240024020042802002205200328020022036b4108490d00200128020021050c010b200341086a22042003490d09200541017422032004200320044b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c1d0b2003200541016a360200200620056a41043a0000200029033021080240024020042802002205200328020022036b4108490d00200128020021050c010b200341086a22042003490d08200541017422032004200320044b1b22034100480d080240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c1c0b2003200541016a360200200620056a41033a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d07200541017422002004200020044b1b22004100480d070240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1b0b2003200541016a360200200620056a41023a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d06200541017422002004200020044b1b22004100480d060240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c1a0b2003200541016a360200200620056a41013a0000200029031021080240024020042802002205200328020022006b4108490d00200128020021050c010b200041086a22042000490d05200541017422002004200020044b1b22004100480d050240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200520006a20083700000c190b2003200541016a360200200620056a41003a0000200029033021080240024020042802002205200328020022036b4108490d00200128020021050c010b200341086a22042003490d04200541017422032004200320044b1b22034100480d040240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200520036a2008370000200041096a200110ca010c180b200141086a2204200341016a360200200520036a410c3a000002400240200141046a28020020042802002203460d00200128020021050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41003a0000200041016a200110ca010c170b200141086a2204200341016a360200200520036a410b3a0000200141046a2802002105200428020021030240024020002802044101460d00024020052003460d00200128020021050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b0240024020052003460d00200128020021050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a2204200341016a360200200520036a41013a00002000280208210502400240200141046a2802002203200428020022006b4104490d00200128020021030c010b200041046a22042000490d03200341017422002004200020044b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20053600000c170b200141086a2204200341016a360200200520036a41003a00002000280208210502400240200141046a2802002203200428020022006b4104490d00200128020021030c010b200041046a22042000490d02200341017422002004200020044b1b22004100480d020240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20053600000c160b200141086a200341016a360200200520036a410a3a000020002d00042203410a4b0d15024002400240024002400240024002400240024002400240024002400240024020030e0b000102030405060708090a000b200241003a00080240200141046a280200200141086a2802002200460d00200128020021030c180b200041016a22032000490d22200041017422052003200520034b1b22054100480d220240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c180b20054101102d000b200241013a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d22200341017422042005200420054b1b22044100480d220240024020030d002004101e21050c010b200128020020032004102221050b2005450d0a20012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41013a0000200028020821050240200141046a2802002203200428020022006b4104490d00200128020021030c160b200041046a22042000490d21200341017422002004200020044b1b22004100480d210240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c160b20004101102d000b200241023a00080240200141046a280200200141086a2802002200460d00200128020021030c140b200041016a22032000490d20200041017422052003200520034b1b22054100480d200240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c140b20054101102d000b200241033a00080240200141046a280200200141086a2802002200460d00200128020021030c120b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c120b20054101102d000b200141086a2802002100200241043a000802402000200141046a280200460d00200128020021030c100b200041016a22032000490d0b200041017422052003200520034b1b22054100480d0b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c100b20054101102d000b200241053a00080240200141046a280200200141086a2802002200460d00200128020021030c0e0b200041016a22032000490d0a200041017422052003200520034b1b22054100480d0a0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0e0b20054101102d000b200241063a00080240200141046a280200200141086a2802002200460d00200128020021030c0c0b200041016a22032000490d09200041017422052003200520034b1b22054100480d090240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0c0b20054101102d000b200241073a00080240200141046a280200200141086a2802002203460d00200128020021050c080b200341016a22052003490d08200341017422042005200420054b1b22044100480d080240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c080b20044101102d000b200141046a2802002105200241083a000802402005200141086a2802002203460d00200128020021050c060b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241093a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b2002410a3a00080240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c020b20044101102d000b20044101102d000b200141086a200341016a360200200520036a410a3a0000200041056a200110ca012002200136020c200041256a2002410c6a10b901200041c5006a200110ca010c180b200141086a200341016a360200200520036a41093a0000200041056a200110ca012002200136020c200041256a2002410c6a10b9010c170b200141086a200341016a360200200520036a41083a0000200041056a200110ca010c160b200141086a2204200341016a360200200520036a41073a0000200028020821050240200141046a2802002203200428020022006b4104490d00200128020021030c020b200041046a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c020b20004101102d000b1027000b200141086a200041046a360200200320006a20053600000c130b200141086a200041016a360200200320006a41063a00000c120b200141086a200041016a360200200320006a41053a00000c110b200141086a200041016a360200200320006a41043a00000c100b200141086a200041016a360200200320006a41033a00000c0f0b200141086a200041016a360200200320006a41023a00000c0e0b200141086a200041046a360200200320006a20053600000c0d0b200141086a200041016a360200200320006a41003a00000c0c0b2003200541016a360200200620056a41093a000020002d0004220541064b0d0b024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e0700010203040506000b02400240200428020020032802002205460d00200128020021040c010b200541016a22042005490d22200541017422062004200620044b1b22064100480d220240024020050d002006101e21040c010b200128020020052006102221040b2004450d0720012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41003a0000200041056a200110ca01200028022821040240200141046a2802002205200628020022006b4104490d00200128020021050c180b200041046a22062000490d21200541017422002006200020064b1b22004100480d210240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c180b20004101102d000b02400240200428020020032802002205460d00200128020021040c010b200541016a22042005490d21200541017422062004200620044b1b22064100480d210240024020050d002006101e21040c010b200128020020052006102221040b2004450d0720012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41013a0000200041056a200110ca01200028022821040240200141046a2802002205200628020022006b4104490d00200128020021050c160b200041046a22062000490d20200541017422002006200020064b1b22004100480d200240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c160b20004101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d20200541017422072006200720064b1b22074100480d200240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41023a000020002802082107024020042802002206200328020022056b4104490d00200128020021060c140b200541046a22092005490d1f200641017422052009200520094b1b22054100480d1f0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c140b20054101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1f200541017422072006200720064b1b22074100480d1f0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b200141086a2207200541016a360200200620056a41033a0000200041056a200110ca01200028022821090240200141046a2802002206200728020022056b4104490d00200128020021060c120b200541046a22072005490d1e200641017422052007200520074b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c120b20054101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1e200541017422072006200720064b1b22074100480d1e0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0720012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41043a0000200028020821070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0820012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a20073600002000410c6a28020021070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0920012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a2007360000200041106a28020021070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0a20012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a2007360000200041146a28020021070240024020042802002206200328020022056b4104490d00200128020021060c010b200541046a22092005490d1e200641017422052009200520094b1b22054100480d1e0240024020060d002005101e21060c010b200128020020062005102221060b2006450d0b20012006360200200141046a2005360200200141086a28020021050b2003200541046a360200200620056a2007360000200041186a2802002107024020042802002206200328020022056b4104490d00200128020021060c100b200541046a22092005490d1d200641017422052009200520094b1b22054100480d1d0240024020060d002005101e21060c010b200128020020062005102221060b02402006450d0020012006360200200141046a2005360200200141086a28020021050c100b20054101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1d200541017422072006200720064b1b22074100480d1d0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41053a000020002802282106024020042802002205200328020022036b4104490d00200128020021050c0e0b200341046a22042003490d1c200541017422032004200320044b1b22034100480d1c0240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c0e0b20034101102d000b02400240200428020020032802002205460d00200128020021060c010b200541016a22062005490d1c200541017422072006200720064b1b22074100480d1c0240024020050d002007101e21060c010b200128020020052007102221060b2006450d0b20012006360200200141046a2007360200200141086a28020021050b2003200541016a360200200620056a41063a000020002802082106024020042802002205200328020022006b4104490d00200128020021050c0c0b200041046a22042000490d1b200541017422002004200020044b1b22004100480d1b0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c0c0b20004101102d000b20064101102d000b20064101102d000b20074101102d000b20074101102d000b20074101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20074101102d000b20074101102d000b2003200041046a360200200520006a20063600000c110b200141086a200341046a360200200520036a20063600002002200136020c200041056a2002410c6a10b9010c100b2003200541046a360200200620056a20073600000240200041206a2d0000220541054b0d00024002400240024002400240024020050e06000102030405000b410021060c050b410121060c040b410221060c030b410321060c020b410421060c010b410521060b200220063a000802400240200428020020032802002205460d00200128020021070c010b200541016a22072005490d0f200541017422092007200920074b1b22094100480d0f0240024020050d002009101e21070c010b200128020020052009102221070b02402007450d0020012007360200200141046a2009360200200141086a28020021050c010b20094101102d000b2003200541016a360200200720056a20063a00000b2000411c6a28020021060240024020042802002205200328020022006b4104490d00200128020021050c010b200041046a22042000490d0e200541017422002004200020044b1b22004100480d0e0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041046a360200200520006a20063600000c0f0b2003200541046a360200200620056a2009360000024002400240024002400240024020002d00250e0400010203000b0240200428020020032802002200460d00200128020021050c060b200041016a22052000490d12200041017422042005200420054b1b22044100480d120240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c060b20044101102d000b0240200428020020032802002200460d00200128020021050c040b200041016a22052000490d11200041017422042005200420054b1b22044100480d110240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200428020020032802002200460d00200128020021050c020b200041016a22052000490d10200041017422042005200420054b1b22044100480d100240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200428020020032802002200460d00200128020021050c010b200041016a22052000490d10200041017422042005200420054b1b22044100480d100240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c010b20044101102d000b2003200041016a360200200520006a41033a00000c110b2003200041016a360200200520006a41023a00000c100b2003200041016a360200200520006a41013a00000c0f0b2003200041016a360200200520006a41003a00000c0e0b2003200541046a360200200620056a200736000020002d0005220041054b0d0d024002400240024002400240024020000e06000102030405000b410021050c050b410121050c040b410221050c030b410321050c020b410421050c010b410521050b200220053a000802400240200428020020032802002200460d00200128020021040c010b200041016a22042000490d0c200041017422062004200620044b1b22064100480d0c0240024020000d002006101e21040c010b200128020020002006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021000c010b20064101102d000b2003200041016a360200200420006a20053a00000c0d0b2003200041046a360200200520006a20043600000c0c0b2003200041046a360200200520006a20043600000c0b0b200141086a200341016a360200200520036a41083a000020002d0001220341024b0d0a0240024002400240024002400240024020030e03000102000b200241003a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d10200341017422042005200420054b1b22044100480d100240024020030d002004101e21050c010b200128020020032004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200220002d000222053a00080240200141046a28020020042802002200460d00200128020021030c070b200041016a22032000490d0f200041017422042003200420034b1b22044100480d0f0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c070b20044101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c050b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c050b20044101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0e200341017422042005200420054b1b22044100480d0e0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0220012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41023a0000200220002d000222053a00080240200141046a28020020042802002200460d00200128020021030c030b200041016a22032000490d0d200041017422042003200420034b1b22044100480d0d0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c030b20044101102d000b20044101102d000b20044101102d000b200141086a200041016a360200200320006a20053a00000c0c0b200141086a200341016a360200200520036a41013a0000200041026a200110ca010c0b0b200141086a200041016a360200200320006a20053a00000c0a0b200141086a200320006a360200200520036a2006200010cd051a0c090b200141086a200341016a360200200520036a41063a000020002d0004220341024b0d080240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d0a200341017422042005200420054b1b22044100480d0a0240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d09200041017422052003200520034b1b22054100480d090240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41023a0000200028020821052002200041106a280200220036020c2002410c6a200110632000450d0a2005200041d0006c6a210403402005200110ca012002200541206a36020c2002410c6a200110df022002200541306a36020c2002410c6a200110df022005280240210020022005280248220336020c2002410c6a20011063200541d0006a210502402003450d00200341306c21030340200041106a200110ca012002200036020c2002410c6a200110df02200041306a2100200341506a22030d000b0b20042005470d000c0b0b0b200141086a200041016a360200200320006a41013a00000c090b200141086a200341016a360200200520036a41003a0000200041056a200110ca010c080b200141086a200341016a360200200520036a41053a00002000280204220341024b0d070240024002400240024020030e03000102000b200241003a00080240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c040b20044101102d000b200241013a00080240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b200241023a000802400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a41023a00000c090b200141086a200041016a360200200320006a41013a00000c080b200141086a2204200341016a360200200520036a41003a0000200028020821032002200041106a280200220036020c2002410c6a200110632000450d072003200041286c6a2109200141046a210603402003200110ca01200341206a29030021080240024020062802002205200428020022006b4108490d00200128020021050c010b200041086a22072000490d07200541017422002007200020074b1b22004100480d070240024020050d002000101e21050c010b200128020020052000102221050b02402005450d002001200536020020062000360200200428020021000c010b20004101102d000b2004200041086a360200200520006a20083700002009200341286a2203470d000c080b0b200141086a200041046a360200200320006a20053600000c060b200141086a200341016a360200200520036a41033a000020002d0008220341024b0d05024002400240024002400240024002400240024020030e03000102000b200241003a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0d200341017422042005200420054b1b22044100480d0d0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041186a29030021082000290310210d02400240200141046a2802002205200428020022036b4110490d00200128020021050c010b200341106a22042003490d0d200541017422032004200320044b1b22034100480d0d0240024020050d002003101e21050c010b200128020020052003102221050b2005450d0420012005360200200141046a2003360200200141086a28020021030b200141086a2204200341106a360200200520036a220320083700082003200d370000200041286a29030021082000290320210d0240200141046a2802002203200428020022006b4110490d00200128020021030c090b200041106a22052000490d0c200341017422002005200020054b1b22004100480d0c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c090b20004101102d000b200241013a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0c200341017422042005200420054b1b22044100480d0c0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0420012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41013a0000200041096a200110ca01200041386a29030021082000290330210d0240200141046a2802002203200428020022006b4110490d00200128020021030c070b200041106a22052000490d0b200341017422002005200020054b1b22004100480d0b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c070b20004101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0420012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41023a0000200028020c21050240200141046a2802002203200428020022006b4104490d00200128020021030c050b200041046a22042000490d0a200341017422002004200020044b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c050b20004101102d000b20044101102d000b20034101102d000b20044101102d000b20044101102d000b200141086a200041046a360200200320006a20053600000c070b200141086a200041106a360200200320006a220120083700082001200d3700000c060b200141086a200041106a360200200320006a220120083700082001200d3700000c050b200141086a200341016a360200200520036a41023a000020002d0008220341024b0d0402400240024002400240024002400240024020030e03000102000b200241003a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d0b200341017422042005200420054b1b22044100480d0b0240024020030d002004101e21050c010b200128020020032004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41003a0000200041096a200110ca01200041386a29030021082000290330210d0240200141046a2802002203200428020022006b4110490d00200128020021030c080b200041106a22052000490d0a200341017422002005200020054b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c080b20004101102d000b200241013a00080240200141046a280200200141086a2802002203460d00200128020021050c060b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c060b20044101102d000b200241023a000802400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22052003490d09200341017422042005200420054b1b22044100480d090240024020030d002004101e21050c010b200128020020032004102221050b2005450d0220012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41023a0000200041096a200110ca01200041296a200110ca01200041d8006a29030021082000290350210d02400240200141046a2802002205200428020022036b4110490d00200128020021050c010b200341106a22042003490d09200541017422032004200320044b1b22034100480d090240024020050d002003101e21050c010b200128020020052003102221050b2005450d0320012005360200200141046a2003360200200141086a28020021030b200141086a2204200341106a360200200520036a220320083700082003200d370000200041e8006a29030021082000290360210d0240200141046a2802002203200428020022006b4110490d00200128020021030c040b200041106a22052000490d08200341017422002005200020054b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c040b20004101102d000b20044101102d000b20044101102d000b20034101102d000b200141086a200041106a360200200320006a220120083700082001200d3700000c060b200141086a200341016a360200200520036a41013a0000200041096a200110ca010c050b200141086a200041106a360200200320006a220120083700082001200d3700000c040b200141086a200041046a360200200320006a20053600000c030b200141086a2206200341016a36020041002105200420036a41003a000002402000410c6a2d000022044102460d00200241013a000802400240200141046a28020020062802002203460d00200128020021050c010b200341016a22052003490d02200341017422072005200720054b1b22074100480d020240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c010b20074101102d000b200141086a2207200341016a360200200520036a41013a000041002105024020044101470d00200241013a000802400240200141046a28020020072802002203460d00200128020021050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200128020020032004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021030c010b20044101102d000b200141086a200341016a360200200520036a41013a000020002d000d21050b200220053a000802400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d02200341017422072004200720044b1b22074100480d020240024020030d002007101e21040c010b200128020020032007102221040b02402004450d0020012004360200200141046a2007360200200141086a28020021030c010b20074101102d000b200141086a200341016a360200200420036a20053a00002000410e6a2d000021050b200220053a00080240200141046a28020020062802002200460d00200128020021030c020b200041016a22032000490d00200041017422042003200420034b1b22044100480d000240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b1027000b200141086a200041016a360200200320006a20053a00000b200241106a24000bc30b030b7f047e067f230041206b22032400024020014102490d00200041206a210420022802002802002802002205280200220621072005280204220821090240024003400240024020072f0106220a0d004100210b0c010b200a4105742105200741086a210c417f210b0340024020050d00200a210b0c020b200b41016a210b2004200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020090d004200210e4200210f0c030b2009417f6a21092007200b4102746a41a8086a28020021070c000b0b2007200b4106746a220541f0026a290300210f200541e8026a290300210e20054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a290300200f7c2005290300220f200e7c220e200f54ad7c210f200541306a2105200c41506a220c0d000b0b0240024003400240024020062f010622070d004100210b0c010b20074105742105200641086a210c417f210b0340024020050d002007210b0c020b200b41016a210b2000200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020080d0042002110420021110c030b2008417f6a21082006200b4102746a41a8086a28020021060c000b0b2006200b4106746a220541f0026a2903002111200541e8026a290300211020054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a29030020117c2005290300221120107c2210201154ad7c2111200541306a2105200c41506a220c0d000b0b200e20105a200f20115a200f2011511b0d002000290000210f20002004290000370000200341186a2212200041186a2205290000370300200341106a2213200041106a220c290000370300200341086a2214200041086a220b290000370300200b200441086a290000370000200c200441106a2900003700002005200441186a2900003700002003200f37030041012115024020014103490d0041022116410121150340201641016a2117200020164105746a210420022802002802002802002205280200220621072005280204220821090240024003400240024020072f0106220a0d004100210b0c010b200a4105742105200741086a210c417f210b0340024020050d00200a210b0c020b200b41016a210b2004200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020090d004200210e4200210f0c030b2009417f6a21092007200b4102746a41a8086a28020021070c000b0b2007200b4106746a220541f0026a290300210f200541e8026a290300210e20054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a290300200f7c2005290300220f200e7c220e200f54ad7c210f200541306a2105200c41506a220c0d000b0b0240024003400240024020062f010622070d004100210b0c010b20074105742105200641086a210c417f210b0340024020050d002007210b0c020b200b41016a210b2003200c412010cf05220d450d03200541606a2105200c41206a210c200d417f4a0d000b0b024020080d0042002110420021110c030b2008417f6a21082006200b4102746a41a8086a28020021060c000b0b2006200b4106746a220541f0026a2903002111200541e8026a290300211020054180036a280200220c450d00200541f8026a2802002105200c41306c210c0340200541086a29030020117c2005290300221120107c2210201154ad7c2111200541306a2105200c41506a220c0d000b0b200e20105a200f20115a200f2011511b0d01200441606a22052004290000370000200541186a200441186a290000370000200541106a200441106a290000370000200541086a200441086a290000370000201621152017211620172001470d000b0b200020154105746a22052003290300370000200541186a2012290300370000200541106a2013290300370000200541086a20142903003700000b200341206a24000b130020004105360204200041acffc6003602000bf70401067f230041a0016b22012400024002404120101e2202450d00200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b02402001412041e4fdc600410041001002417f460d004120101e2202450d02200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b2001412010042001413d6a200041086a290000370000200141c5006a200041106a290000370000200141cd006a200041186a290000370000200141013a0034200141143a003020012000290000370035200141306a10770b200141a0016a24000f0b41204101102d000b41204101102d000bf40601067f230041d0006b22012400024002400240024002404120101e2202450d00200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b02402001412041e4fdc600410041001002417f470d00410121020c050b200141306a41086a22024200370300200142003703304195fcc000410d200141306a1000200141086a200229030037030020012001290330370300410021032001410036023020014110200141306a10032102024020012802302204417f460d002002450d0020044104490d0220022800002103200210200b4120101e2202450d02200241002900bd9d41370000200241186a41002900d59d41370000200241106a41002900cd9d41370000200241086a41002900c59d41370000200142a08080808004370224200120023602202000200141206a10ca012001280228210220012802202100200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020002002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b2001410036023020014120200141306a1003210220012802302200417f460d032002450d032001200036022420012002360220200141306a200141206a10b7010240024020012802302206450d0020012802342104200128022441044f0d012004450d00200610200b41ceb8c4004133200141306a41fcbfc4004184b9c400102e000b2001280220280000210502402000450d00200210200b200320054b21022004450d04200610200c040b41204101102d000b41ceb8c4004133200141306a41fcbfc4004184b9c400102e000b41204101102d000b200341004721020b200141d0006a240020020b340020004194e5c10036020420004100360200200041146a4103360200200041106a41e09dc100360200200041086a42093702000b3201017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241c0f0003600000bea0101057f230041106b2202240020024100360208200242013703002002410036020c2002410c6a200210630240024020022802042203200228020822046b4104490d00200441046a2105200228020021030c010b0240200441046a22052004490d00200341017422062005200620054b1b22064100480d000240024020030d002006101e21030c010b200228020020032006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b1027000b20022005360208200320046a4100360000200041086a200228020836020020002002290300370200200241106a24000b1300200041043602042000419ca4c1003602000b870102027f027e230041106b220224002002410036020420014110200241046a100321010240024020022802042203417f460d002001450d00024020034108490d002001290000210420011020420121050c020b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420021050b2000200437030820002005370300200241106a24000ba90402067f037e230041e0006b2205240002400240024002404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302001200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b20054100360240200541106a4120200541c0006a1003210620052802402207417f460d022006450d0220074110490d01200641086a290000210b2006290000210c200610200c030b41144101102d000b41ceb8c4004133200541c0006a41fcbfc4004184b9c400102e000b4200210c4200210b0b4101210602400240200c20027d220d200c56200b20037d200c200254ad7d220c200b56200c200b511b4101470d002000419b8ac500360204200041086a411d3602000c010b200541086a20012004200d200c1094040240200528020822060d002001200d200c109303200041106a2003370300200041086a2002370300410021060c010b200528020c210120002006360204200041086a2001360200410121060b20002006360200200541e0006a24000be60204017f017e027f037e230041206b2201240042002102200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a2003290300370300200120012903103703002001410036021020014110200141106a1003210302400240024020012802102204417f470d0042002102420021050c010b024020030d00420021050c010b20044110490d01200341086a290000210520032900002102200310200b2000280200220341086a290300210620032903002107200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a20032903003703002001200129031037030020014200200520067d2002200754ad7d2206200220077d2207200256200620055620062005511b22031b37031820014200200720031b37031020014110200141106a41101005200141206a24000f0b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000b340020004187e4c10036020420004100360200200041146a4102360200200041106a41f0acc100360200200041086a42073702000bc90101057f230041206b22022400024002404110101e2203450d00200341086a4100290090ab4137000020034100290088ab4137000020034110412010222203450d0120032001370010200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411820021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41104101102d000b41204101102d000bb62109087f027e047f017e057f057e057f017e0f7f23002202210320024180066b416071220424000240200128020422024104490d0020012802002205280000210620012002417c6a22073602042001200541046a220536020002402007450d0020052d0000210720012002417b6a22083602042001200541016a360200200741014b0d00410321090240024002400240024020070e020100010b20084110490d04200541096a290000210a2005290001210b20012002416b6a22073602042001200541116a3602002007450d0420052d0011210720012002416a6a22083602044112210c2001200541126a220d360200200741014b0d04410221090240024020070e020100010b20084104490d052005280012210e2001200241666a22073602042001200541166a3602002007450d0520052d001621072001200241656a22083602042001200541176a360200200741014b0d05410021090240024020070e020100010b410121090b20084104490d052005280017210f2001200241616a2208360204411b210c20012005411b6a220d360200200441a0056a41026a200441b0016a41026a2d00003a0000200420042f00b0013b01a0050b2004411c6a41026a200441a0056a41026a2d00003a0000200420042f01a0053b011c20084108490d04200d29000021102001200841786a36020420012005200c6a41086a360200200441106a2001105f20042802100d042004280214211120044200370224200441908cc50036022002402011450d00200441a0056a4102722112200441c0046a4102722113200441c0006a41197221144100211503400240024002400240200128020422054108490d002001280200220229000021162001200541786a22073602042001200241086a220236020020074104490d002002280000210d2001200541746a22073602042001200241046a3602002007450d0020022d000421072001200541736a220c3602042001200241056a360200200741014b0d00410021080240024020070e020100010b410121080b200c4104490d002002280005210c20012005416f6a22073602042001200241096a3602002007410f4d0d00200241116a29000021172002290009211820012005415f6a3602042001200241196a360200200420042800b0013602382004200441b0016a41036a28000036003b200420042802383602302004200428003b36003320142004280230360000201441036a20042800333600002004201737034820042018370340200420083a00582004200c3602542004200d360250024002402004280220220241908cc500460d002004280224210c0c010b2013410041da0010cc051a200441b0016a410041e00210cc051a41c003101e2202450d024100210c20024100360200200241046a200441c0046a41dc0010cd051a200241e0006a200441b0016a41e00210cd051a20044100360224200420023602200b201541016a211503400240024020022f0106220d0d00410021050c010b200d4103742107200241086a2108417f21050340024020070d00200d21050c020b20082903002117200741786a2107200541016a2105200841086a21080240417f201720165220172016561b41016a0e03020001020b0b200220054105746a220241f8006a2004290358370300200241f0006a2004290350370300200241e8006a2004290348370300200241e0006a20042903403703000c050b0240200c450d00200c417f6a210c200220054102746a41c0036a28020021020c010b0b2004200428022841016a3602282004290358211720042903502118200429034821192004290340211a02400240024020022f01062207410b490d0002400240200241908cc500460d002012410041da0010cc05211b200441b0016a410041e00210cc051a41c003101e221c0d0141c0034108102d000b41c8a6c000412d41a888c6001028000b201c4100360200201c41046a200441a0056a41dc0010cd051a201c41e0006a200441b0016a41e00210cd052108200441b0016a41086a221d200241a8026a290300370300200441b0016a41106a221e200241b0026a290300370300200441b0016a41186a221f200241b8026a290300370300200420022903a0023703b00120022903382120201c41086a200241c0006a20022f010641796a220741037410cd05210c2008200241c0026a200741057410cd052108200241063b0106201c20073b0106200441a0056a41186a2221201f290300370300200441a0056a41106a2222201e290300370300200441a0056a41086a2223201d290300370300200420042903b0013703a0050240024020054107490d00200c2005417a6a22244103746a200c200541796a220d4103746a2205200741ffff0371200d6b41037410ce051a20052016370300200820244105746a2008200d4105746a2205201c41066a22072f0100200d6b41057410ce051a200541186a201737030020052018370310200520193703082005201a3703000c010b200241066a2107200241086a2208200541016a220c4103746a200820054103746a220820022f010620056b41037410ce051a20082016370300200241e0006a2208200c4105746a200820054105746a220820022f010620056b41057410ce051a200841186a201737030020082018370310200820193703082008201a3703000b200720072f010041016a3b0100200441c0046a41186a20212903002217370300200441c0046a41106a20222903002216370300200441c0046a41086a20232903002218370300200441f0006a41186a22252017370300200441f0006a41106a22262016370300200441f0006a41086a22272018370300200420042903a00522173703c0042004201737037002402002280200220d0d0041002128202021170c060b20022f010421294100212820202116034020044190016a41186a222a202529030037030020044190016a41106a222b202629030037030020044190016a41086a222c2027290300370300200420042903703703900141000d02202941ffff0371210c024002400240200d2f01062202410b490d00201b410041da0010cc051a200441c0046a200441a0056a41dc0010cd051a200441b0016a410041900310cc051a41f003101e2208450d0620084100360200200841046a200441c0046a41dc0010cd051a200841e0006a200441b0016a41900310cd052105200d2903382117201f200d41b8026a290300370300201e200d41b0026a290300370300201d200d41a8026a2903003703002004200d2903a0023703b001200841086a200d41c0006a200d2f0106220741796a220241037410cd05212d2005200d41c0026a200241057410cd05212e200841c0036a200d41dc036a2007417a6a222441027410cd05212f200d41063b0106200820023b010602402024450d0041002102202f210503402005280200220720023b010420072008360200200541046a21052024200241016a2202470d000b0b2021201f29030022183703002022201e29030022193703002023201d290300221a370300200420042903b00122203703a005201f2018370300201e2019370300201d201a370300200420203703b001202941ffff037122244107490d01202d200c417a6a22054103746a202d200c41796a22024103746a220720082f010620026b41037410ce051a20072016370300202e20054105746a202e20024105746a220720082f010620026b41057410ce051a200741186a202a290300370300200741106a202b290300370300200741086a202c2903003703002007200429039001370300200820082f010641016a22073b0106200c4102742229202f6a416c6a202f20054102746a2224200741ffff0371220c20056b41027410ce051a2024201c360200200c2005490d02200820296a41a8036a2105034020052802002207200241016a22023b010420072008360200200541046a21052002200c490d000c030b0b200d41086a2207200c41016a22054103746a2007200c4103746a22072002200c6b220841037410ce051a20072016370300200d41e0006a220720054105746a2007200c4105746a2207200841057410ce051a200741186a202a290300370300200741106a202b290300370300200741086a202c2903003703002007200429039001370300200d200241016a22023b0106200c410274200d41c0036a22076a41086a200720054102746a2207200241ffff0371220220056b41027410ce051a2007201c360200200c20024f0d09201c20053b0104201c200d360200200520024f0d092002417f6a2108200d2005417f6a22024102746a41c8036a2105034020052802002207200241026a3b01042007200d360200200541046a21052008200241016a2202470d000c0a0b0b200d41086a2202200c41016a22054103746a2002200c4103746a2202200d2f01062207200c6b222941037410ce051a20022016370300200d41e0006a220220054105746a2002200c4105746a2202202941057410ce051a200241186a202a290300370300200241106a202b290300370300200241086a202c2903003703002002200429039001370300200d200741016a22023b0106200c410274222f200d41c0036a22076a41086a200720054102746a2229200241ffff0371220720056b41027410ce051a2029201c360200202420074f0d00200d202f6a41c4036a2102034020022802002205200c41016a220c3b01042005200d360200200241046a21022007200c470d000b0b202841016a21282025201f2903003703002026201e2903003703002027201d290300370300200420042903b0013703700240200d28020022020d002008211c0c070b200d2f010421292002210d201721162008211c0c000b0b200241086a2208200541016a220c4103746a200820054103746a2208200720056b41037410ce051a20082016370300200241e0006a2207200c4105746a200720054105746a220720022f010620056b41057410ce051a200741186a201737030020072018370310200720193703082007201a370300200220022f010641016a3b01060c050b41c6a8c000413541a888c6001028000b41f0034108102d000b20042802202004290224220ba7200b422088a71098020c090b41c0034108102d000b2013410041da0010cc051a200441a0056a200441c0046a41dc0010cd051a200441b0016a410041900310cc051a41f003101e2202450d0420024100360200200241046a200441a0056a41dc0010cd051a200241e0006a200441b0016a41900310cd0521072002200428022022053602c00320042004280224220841016a360224200541003b01042004200236022020052002360200201f2025290300370300201e2026290300370300201d2027290300370300200420042903703703b00120082028470d0520022f01062205410a4b0d06200720054105746a220720042903b001370300200220054103746a41086a2017370300200741086a201d290300370300200741106a201e290300370300200741186a201f2903003703002002200541016a22054102746a41c0036a201c360200200220053b0106201c20053b0104201c20023602000b20152011470d000b0b2004280220220c450d0420042902242117200441186a41026a2004411c6a41026a2d00003a0000200420042f011c3b01180b2000200b370300200020093a00202000200f36021c2000200e36021820002010370310200020042f01183b00212000200a370308200041286a2017370200200041246a200c360200200041236a2004411a6a2d00003a0000200041306a2006360200200324000f0b41f0034108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b200041043a0020200324000f0b200041043a0020200324000bc40303027f017e027f02402001450d00034020002802c00321002001417f6a22010d000b0b4100210341002104024003402002450d0102400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41c4036a2802002100200120034105746a41f8006a2d00002107410021032006417f6a2201450d01034020002802c00321002001417f6a22010d000c020b0b200020034105746a41f8006a2d00002107200341016a21030b2002417f6a2102200741ff01714102470d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bf71006027f017e037f027e027f017e230041b0036b22022400024002400240024002400240024002404110101e2203450d00200341086a4100290090ab4137000020034100290088ab413700002000290300210420034110412010222203450d012003200437001020024180026a41186a2205420037030020024180026a41106a2206420037030020024180026a41086a2207420037030020024200370380022003411820024180026a1001200241086a41186a2005290300370300200241086a41106a2006290300370300200241086a41086a2007290300370300200220022903800237030820031020200241286a200241086a109a0202400240200229036022044202520d002002200036028401200542003703002006420037030020024180026a41086a2203420037030020024200370380024198abc100411820024180026a1001200241d8026a41186a2005290300370300200241d8026a41106a2006290300370300200241d8026a41086a200329030037030020022002290380023703d8022002410036028002200241d8026a412020024180026a10032103024002402002280280022205417f460d002003450d00024020054108490d00200329000021082003102020024188016a2008109602200241d8026a20024188016a109a022002290390034202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024180026a41fcbfc4004184b9c400102e000b4200210920024180026a41186a2203420037030020024180026a41106a2205420037030020024180026a41086a2206420037030020024200370380024198abc100411820024180026a1001200241d8026a41186a2003290300370300200241d8026a41106a2005290300370300200241d8026a41086a200629030037030020022002290380023703d8022002200029030037038002200241d8026a412020024180026a41081005420021040c020b20024180026a200241d8026a41d80010cd051a200241a8016a41306a220320024180026a41306a290300370300200241a8016a41286a220520024180026a41286a290300370300200241a8016a41206a220620024180026a41206a290300370300200241a8016a41186a220020024180026a41186a290300370300200241a8016a41106a220720024180026a41106a290300370300200241a8016a41086a220a20024180026a41086a29030037030020022002290380023703a801200241e0016a41186a220b200241d0026a290300370300200241e0016a41106a200241c8026a2903002204370300200241e0016a41086a200241c0026a290300370300200220022903b8023703e00120024194036a200b410020044201511b360200200241d8026a41306a220b2003290300370300200241d8026a41286a2005290300370300200241d8026a41206a2006290300370300200241d8026a41186a2000290300370300200241d8026a41106a2007290300370300200241d8026a41086a200a290300370300200220022903a8013703d802200220024184016a3602900320024100360288022002420137038002200b28020021054104101e2203450d042003200536000020024284808080c0003702840220022003360280020240024020022d00f8024103470d0020034104410810222203450d07200341003a000420024288808080d0003702840220022003360280020c010b20034104410810222203450d07200341013a000420024288808080d000370284022002200336028002200241d8026a20024180026a109b020b20024190036a20024180026a108101200228028402210320024188016a41202002280280022205200228028802100502402003450d00200510200b024020022d00f8024103460d00200241fc026a28020020024180036a28020020024184036a2802001098020b20022802840121034200210420024180026a41186a2205420037030020024180026a41106a2206420037030020024180026a41086a2200420037030020024200370380024198abc100411820024180026a1001200241d8026a41186a2005290300370300200241d8026a41106a2006290300370300200241d8026a41086a200029030037030020022002290380023703d8022002200329030037038002200241d8026a412020024180026a41081005420121090c010b200241f8006a2903002108200241f0006a29030021092002290368210c20022d00484103460d00200228024c200228025020022802541098020b200241a8036a2008370300200241a0036a200937030020024198036a200c370300200241d8026a41306a2203200141306a290300370300200241d8026a41286a200141286a290300370300200241d8026a41206a200141206a290300370300200241d8026a41186a200141186a290300370300200241d8026a41106a200141106a290300370300200241d8026a41086a200141086a2903003703002002200437039003200220012903003703d80220024100360288022002420137038002200328020021034104101e2201450d052001200336000020024284808080c0003702840220022001360280020240024020022d00f8024103470d0020014104410810222201450d08200141003a000420024288808080d0003702840220022001360280020c010b20014104410810222201450d08200141013a000420024288808080d000370284022002200136028002200241d8026a20024180026a109b020b20024190036a20024180026a1094012002280284022101200241086a41202002280280022203200228028802100502402001450d00200310200b024020022d00f8024103460d00200241fc026a28020020024180036a28020020024184036a2802001098020b200241b0036a24000f0b41104101102d000b41204101102d000b41044101102d000b41084101102d000b41084101102d000b41044101102d000b41084101102d000b41084101102d000bbd04020a7f047e230041b0016b220224002002410036025820014120200241d8006a1003210102400240024020022802582203417f460d0020010d010b200042023703380c010b2002200336022420022001360220200241d8006a200241206a1097020240024020022d007822044104460d00200241386a41186a2205200241d8006a41186a290300370300200241386a41106a2206200241d8006a41106a290300370300200241386a41086a2207200241d8006a41086a290300370300200241366a2208200241d8006a41236a2d00003a000020022002290358370338200220022f00793b01342002200229038801370328200241fc006a280200210920024180016a280200210a20024184016a280200210b20024190016a200241206a109301200229039001220c4202520d0120044103460d002009200a200b1098020b41ceb8c4004133200241d8006a41fcbfc4004184b9c400102e000b20002002290338370300200020043a0020200020022f01343b00212000200b36022c2000200a36022820002009360224200041186a2005290300370300200041106a2006290300370300200041086a2007290300370300200041236a20082d00003a000020002002290328370330200241086a41086a20024190016a41106a290300220d370300200241086a41106a20024190016a41186a290300220e3703002002200229039801220f3703082000200c3703382000200f370340200041c8006a200d370300200041d0006a200e3703002003450d00200110200b200241b0016a24000b831303017f027e097f230041106b22022400200041086a2903002103200029030021040240024002400240024002400240024002400240200141046a2802002205200141086a28020022066b4110490d00200128020021050c010b200641106a22072006490d08200541017422062007200620074b1b22064100480d080240024020050d002006101e21050c010b200128020020052006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021060b200141086a2207200641106a360200200520066a22062003370008200620043700000240200041206a2d000022054102470d000240200141046a28020020072802002206460d00200128020021050c070b200641016a22052006490d08200641017422072005200720054b1b22074100480d080240024020060d002007101e21050c010b200128020020062007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021060c070b20074101102d000b02400240200141046a28020020072802002206460d00200128020021070c010b200641016a22072006490d08200641017422082007200820074b1b22084100480d080240024020060d002008101e21070c010b200128020020062008102221070b2007450d0220012007360200200141046a2008360200200141086a28020021060b200141086a2208200641016a360200200720066a41013a00002000280218210902400240200141046a2802002207200828020022066b4104490d00200128020021070c010b200641046a22082006490d08200741017422062008200620084b1b22064100480d080240024020070d002006101e21070c010b200128020020072006102221070b2007450d0320012007360200200141046a2006360200200141086a28020021060b200141086a2208200641046a360200200720066a200936000002400240200141046a28020020082802002206460d00200128020021070c010b200641016a22072006490d08200641017422082007200820074b1b22084100480d080240024020060d002008101e21070c010b200128020020062008102221070b2007450d0420012007360200200141046a2008360200200141086a28020021060b200141086a2208200641016a360200200720066a20053a00002000411c6a28020021070240200141046a2802002205200828020022066b4104490d00200128020021050c050b200641046a22082006490d07200541017422062008200620084b1b22064100480d070240024020050d002006101e21050c010b200128020020052006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021060c050b20064101102d000b20064101102d000b20084101102d000b20064101102d000b20084101102d000b200141086a200641046a360200200520066a20073600000c010b200141086a200641016a360200200520066a41003a00000b2000290310210302400240200141046a2802002205200141086a28020022066b4108490d00200128020021050c010b200641086a22072006490d01200541017422062007200620074b1b22064100480d010240024020050d002006101e21050c010b200128020020052006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021060c010b20064101102d000b200141086a200641086a360200200520066a200337000020022000412c6a280200220a36020c2002410c6a20011063200041246a28020021060240200041286a2802002200450d00034020062802c00321062000417f6a22000d000b0b0240200a450d00200141046a210741002109034002400240200920062f0106490d0002400240200628020022000d004100210541002106410021000c010b20062f01042106410121050b0240200620002f0106490d000340200541016a210520002f01042206200028020022002f01064f0d000b0b200020064105746a41e0006a2108200020064103746a41086a210b200641027420006a41c4036a2802002106410021092005417f6a2200450d01034020062802c00321062000417f6a22000d000c020b0b200620094103746a41086a210b200620094105746a41e0006a2108200941016a21090b200b290300210302400240024002400240024002402007280200220b200141086a220028020022056b4108490d002001280200210b0c010b200541086a220c2005490d08200b4101742205200c2005200c4b1b22054100480d0802400240200b0d002005101e210b0c010b2001280200200b20051022210b0b200b450d012001200b36020020072005360200200028020021050b2000200541086a360200200b20056a20033700002008280210210c024002402007280200220b200028020022056b4104490d002001280200210b0c010b200541046a220d2005490d08200b4101742205200d2005200d4b1b22054100480d0802400240200b0d002005101e210b0c010b2001280200200b20051022210b0b200b450d022001200b36020020072005360200200028020021050b2000200541046a360200200b20056a200c36000020082d0018210c02400240200728020020002802002205460d002001280200210b0c010b200541016a220b2005490d082005410174220d200b200d200b4b1b220d4100480d080240024020050d00200d101e210b0c010b20012802002005200d1022210b0b200b450d032001200b3602002007200d360200200028020021050b2000200541016a360200200b20056a200c3a00002008280214210c024002402007280200220b200028020022056b4104490d002001280200210b0c010b200541046a220d2005490d08200b4101742205200d2005200d4b1b22054100480d0802400240200b0d002005101e210b0c010b2001280200200b20051022210b0b200b450d042001200b36020020072005360200200028020021050b2000200541046a360200200b20056a200c360000200841086a290300210320082903002104024020072802002208200028020022056b4110490d00200128020021080c050b200541106a220b2005490d0720084101742205200b2005200b4b1b22054100480d070240024020080d002005101e21080c010b200128020020082005102221080b02402008450d002001200836020020072005360200200028020021050c050b20054101102d000b20054101102d000b20054101102d000b200d4101102d000b20054101102d000b2000200541106a360200200820056a2200200337000820002004370000200a417f6a220a0d000b0b200241106a24000f0b1027000bc51104077f027e027f047e230041e0036b22002400200041b8036a41086a22014200370300200042003703b80341b7eec6004110200041b8036a1000200041e8026a41086a2001290300370300200020002903b8033703e802200041c0016a200041e8026a109e0341022102024002400240024020002d00c0014102470d00200041e0006a1088022000280260210302400240200028026822040d000c010b200441246c210520032101024002400340024020012d00004101470d00200141016a2800002106200141086a28020021022000200141106a28020036028c032000200236028803200641c28289aa04470d00200041c0016a20004188036a10b90320002d00c00122024102470d020b200141246a21012005415c6a22050d000b410221020c010b200020002800c40136005b200020002800c101360258200041c8016a29030021072000200041d0016a41d80010cd0541a8026a29030021080b2004450d00200441246c21052003210103400240024020012d0000220641034b0d0002400240024020060e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012005415c6a22050d000b0b02402000280264450d00200310200b200020002802583602b8012000200028005b3600bb01200041e0006a200041d80010cd051a41002101024020024102460d00200020002802b8013602c002200020002800bb013600c302200020073703b802200041c0016a200041e0006a41d80010cd051a200020083703b002200041b8036a41086a22014200370300200042003703b80341ceedc6004110200041b8036a1000200041e8026a41086a2001290300370300200020002903b8033703e8022000410036028803200041e8026a411020004188036a10032101024002402000280288032205417f460d002001450d0020054108490d042001290000210820011020200850450d010b200041b8026a200041b0026a20024101461b2903002108200041b8036a41086a22014200370300200042003703b80341ceedc6004110200041b8036a1000200041e8026a41086a22052001290300370300200020002903b8033703e8022000200837038803200041e8026a411020004188036a4108100520014200370300200042003703b80341beedc6004110200041b8036a100020052001290300370300200020002903b8033703e802410021012000410036028803200041e8026a411020004188036a10032105024002402000280288032206417f470d000c010b024020050d000c010b200020063602bc03200020053602b80320004188036a200041b8036a10d8012000280288032201450d05200029028c0321082006450d00200510200b200041b8036a41086a22054200370300200042003703b80341eeedc600410f200041b8036a1000200041e8026a41086a22062005290300370300200020002903b8033703e80220004188036a200041e8026a10da0120002d0088032103200041b8036a41186a2209200041a1036a290000370300200041b8036a41106a220a20004199036a290000370300200520004191036a29000037030020002000290089033703b8032001410820011b21040240024020034101460d00200041e8026a41186a4200370300200041e8026a41106a420037030020064200370300200042003703e8020c010b200041e8026a41186a2009290300370300200041e8026a41106a200a29030037030020062005290300370300200020002903b8033703e8020b200041c8026a41086a200041e8026a41086a290300220b370300200041c8026a41106a200041e8026a41106a290300220c370300200041c8026a41186a200041e8026a41186a290300220d370300200020002903e802220e3703c80220004188036a41086a22052008420020011b37030020004188036a41106a200e37030020004188036a41186a200b370300200041a8036a200c370300200041b0036a200d3703002000200436028c032000410036028803200041b8036a20004188036a10ba03200041f3026a200041b8036a41086a280200360000200020002903b8033700eb02200041c4036a200041ef026a290000370000200041c28289aa043600b903200041023a00b803200020002900e8023700bd03200041b8036a10fe012000280288030d002005280200450d00200028028c0310200b200041b8026a200041b0026a20024101461b2903002108200041b8036a41086a22014200370300200042003703b80341deedc6004110200041b8036a1000200041e8026a41086a2001290300370300200020002903b8033703e8022000200837038803200041e8026a411020004188036a410810054100210120020d0020004188036a41086a200041c0016a41086a29030037030020004188036a41106a200041c0016a41106a2d00003a0000200020002800c3023600cb02200020002802c0023602c802200020002903c00137038803410121010b200041c0016a41086a2007370300200041c0016a41106a200029038803370300200041d8016a20004188036a41086a290300370300200041e0016a20004188036a41106a2d00003a0000200020013a00c001200020002802c8023600c101200020002800cb023600c401200041b8036a41086a22054200370300200042003703b80341b7eec6004110200041b8036a1000200041e8026a41086a2005290300370300200020002903b8033703e8024101101e2205450d0320004201370264200020053602600240024020010d0020004101360268200541003a00000c010b20004101360268200541013a0000200041c0016a410172200041e0006a10db010b20002802642101200041e8026a411020002802602205200028026810052001450d00200510200b200041e0036a24000f0b41ceb8c4004133200041c8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200041c8026a41fcbfc4004184b9c400102e000b41014101102d000bc10701057f230041106b2203240020034100360208200342013703002003200236020c2003410c6a2003106302402002450d00200241c4006c210403400240024002400240024002400240024020012d00004101460d0002400240200328020420032802082202460d00200328020021050c010b200241016a22052002490d02200241017422062005200620054b1b22064100480d020240024020020d002006101e21050c010b200328020020022006102221050b2005450d032003200636020420032005360200200328020821020b2003200241016a360208200520026a41003a0000200141046a2802002106024020032802042205200328020822026b4104490d00200328020021050c070b200241046a22072002490d01200541017422022007200220074b1b22024100480d010240024020050d002002101e21050c010b200328020020052002102221050b02402005450d002003200236020420032005360200200328020821020c070b20024101102d000b02400240200328020420032802082202460d00200328020021050c010b200241016a22052002490d01200241017422062005200620054b1b22064100480d010240024020020d002006101e21050c010b200328020020022006102221050b2005450d032003200636020420032005360200200328020821020b2003200241016a360208200520026a41013a00002003200336020c200141016a2003410c6a10b9010240200141216a2d00004101460d000240200328020420032802082202460d00200328020021050c060b200241016a22052002490d01200241017422062005200620054b1b22064100480d010240024020020d002006101e21050c010b200328020020022006102221050b02402005450d002003200636020420032005360200200328020821020c060b20064101102d000b0240200328020420032802082202460d00200328020021050c040b200241016a22052002490d00200241017422062005200620054b1b22064100480d000240024020020d002006101e21050c010b200328020020022006102221050b02402005450d002003200636020420032005360200200328020821020c040b20064101102d000b1027000b20064101102d000b20064101102d000b2003200241016a360208200520026a41013a0000200141226a200310ca010c020b2003200241016a360208200520026a41003a00000c010b2003200241046a360208200520026a20063600000b200141c4006a2101200441bc7f6a22040d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000bb90902097f017e230041c0016b22012400200141c0006a41086a220242003703002001420037034041f58bc6004111200141c0006a1000200141106a41086a200229030037030020012001290340370310200141d0006a200141106a4110106920012d00502102200141206a41186a2203200141e9006a290000370300200141206a41106a2204200141d0006a41116a290000370300200141206a41086a2205200141d9006a290000370300200120012900513703200240024020024101470d0020002001290320370000200041186a2003290300370000200041106a2004290300370000200041086a20052903003700000c010b200110880220012802002106024002402001280208220741246c2202450d002002415c6a21032006210203400240024020022d00004101460d002003450d030c010b200241016a2800002104200241086a28020021052001200241106a280200360224200120053602200240200441c28289aa04460d0020030d010c030b200141d0006a200141206a10b90320012d005022024102460d02200141b4016a280200210520012802542108200141c0006a41086a220342003703002001420037034041868cc6004112200141c0006a1000200141106a41086a20032903003703002001200129034037031020014100360250200141106a4110200141d0006a100321040240024020012802502209417f460d002004450d002001200936022420012004360220200141d0006a200141206a10e301024020012802502203450d002001290254210a2009450d02200410200c020b41ceb8c4004133200141c0006a41fcbfc4004184b9c400102e000b410121034200210a0b02402008200520024101711b2202200a422088a74f0d00200320024105746a2202450d00200141206a41186a2204200241186a290000370300200141206a41106a2205200241106a290000370300200141206a41086a2208200241086a290000370300200120022900003703200240200aa7450d00200310200b200141d0006a41186a22022004290300370300200141d0006a41106a22032005290300370300200141d0006a41086a2204200829030037030020012001290320370350200141c0006a41086a220542003703002001420037034041f58bc6004111200141c0006a1000200141106a41086a200529030037030020012001290340370310200141103602442001200141106a360240200141d0006a200141c0006a108203200041186a2002290300370000200041106a2003290300370000200041086a2004290300370000200020012903503700000c040b200aa7450d02200310200c020b200241246a21022003415c6a21030c000b0b20004200370000200041186a4200370000200041106a4200370000200041086a42003700000b02402007450d00200741246c21032006210203400240024020022d0000220441034b0d0002400240024020040e0404000102040b2002410c6a280200450d03200241086a28020010200c030b2002410c6a280200450d02200241086a28020010200c020b2002410c6a280200450d01200241086a28020010200c010b200241086a280200450d00200241046a28020010200b200241246a21022003415c6a22030d000b0b2001280204450d00200610200b200141c0016a24000be00a07057f017e047f027e047f027e037f230041c0006b22012400200141106a41086a220242003703002001420037031041fcf9c600411e200141106a1000200141086a2203200229030037030020012001290310370300200141106a200110a704200128021021042001280214210520012903182106200028020821072000280204210820002802002109200242003703002001420037031041f3d6c3004116200141106a100020032002290300370300200120012903103703002001410036021020014110200141106a100321000240024020012802102202417f460d002000450d002001200236023420012000360230200141106a200141306a10e30102402001280210220a450d002001290214210b2002450d02200010200c020b41ceb8c4004133200141386a41fcbfc4004184b9c400102e000b4101210a4200210b0b2006420020051b210c2004410020051b210d2005410420051b210e024002400240024002402007450d00200b422088a72205450d002009200741246c6a210f2005410574211020092103034020032802202104200341086a2900002106200341106a290000211120032900002112200141106a41186a200341186a290000370300200141106a41106a2011370300200141106a41086a200637030020012012370310200341246a21032010210241002100200a2105024002400340200141106a2005460d0120002005200141106a412010cf0522074100476a21002007450d01200541206a2105200241606a22020d000c020b0b200d20046a2202200d490d000240200041016a2207200c422088a722054d0d000240200ca7220d20056b20072005200720054b1b221320056b22074f0d00200520076a22142005490d08200d41017422152014201520144b1b221441ffffffff03712014470d08201441027422154100480d0802400240200d0d002015101e210e0c010b200e200d41027420151022210e0b200e450d052014ad210c0b200e20054102746a210d0240024020074102490d00200d410020132005417f736a220741027410cc051a200e200520136a20056b4102746a417c6a210d200720056a21050c010b2007450d010b200d4100360200200541016a21050b200520004d0d05200e20004102746a2200200028020020046a360200200c42ffffffff0f832005ad42208684210c2002210d0b2003200f470d000b0b02402008450d00200910200b0240200ba7450d00200a10200b200141106a41086a220542003703002001420037031041fcf9c600411e200141106a1000200141086a20052903003703002001200129031037030002400240200e0d002001411010040c010b20014100360218200142013703104104101e2205450d022005200d36000020014284808080c000370214200120053602102001200c422088a72205360230200141306a200141106a10630240024020050d002001280218210420012802142103200128021021000c010b2005410274210d4100200128021822056b210220012802142103200e210703402007280200210a02400240200320026a4104490d00200128021021000c010b200541046a22002005490d07200341017422042000200420004b1b22044100480d070240024020030d002004101e21000c010b200128021020032004102221000b02402000450d002001200436021420012000360210200421030c010b20044101102d000b200741046a21072001200541046a2204360218200020056a200a3600002002417c6a210220042105200d417c6a220d0d000b0b2001411020002004100502402003450d00200010200b200e450d00200ca7450d00200e10200b200141c0006a24000f0b20154104102d000b41044101102d000b41bcf8c60020002005102a000b1027000b8b940109017f017e017f027e0c7f017e1d7f037e057f23004180076b22012400109c0202400240024020004101460d0042002102200141d8026a41086a22004200370300200142003703d80241deedc6004110200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d8032001410036028006200141d8036a411020014180066a1003210002400240024002402001280280062203417f460d002000450d0020034108490d0120002900002102200010200b42002104200141d8026a41086a22004200370300200142003703d80241afedc600410f200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d8032001410036028006200141d8036a411020014180066a10032100024002402001280280062203417f460d002000450d0020034108490d0120002900002104200010200b42002105200141d8026a41086a22004200370300200142003703d80241ceedc6004110200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d8032001410036028006200141d8036a411020014180066a10032100024002402001280280062203417f460d002000450d0020034108490d0120002900002105200010200b420020022005200442e4007e7c7d220420042002561b42e400540d05200141d8026a41086a22004200370300200142003703d8024191f6c6004114200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a005410021062001410036028006200141a0056a411020014180066a10032100024002402001280280062203417f460d002000450d0020034104490d0120002800002106200010200b200141d8026a41086a22004200370300200142003703d80241a5f6c6004115200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a10032100024002402001280280062203417f470d00410221070c010b024020000d00410221070c010b0240024002402003450d0020002d0000220341014b0d004100210720030e020201020b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b410121070b200010200b10d5012108200141086a10d101200141186a10d30120012802182109200128021c210a0240024002400240024020012802202200450d0020092000410574220b6a210c200141cc026a210d20014180066a41206a210e20014180026a410472210f200141d8016a410472210341002110410221000340200141d8006a41186a200920106a221141186a2900002202370300200141d8006a41106a201141106a2900002204370300200141d8006a41086a201141086a290000220537030020012011290000221237035820032012370000200341086a2005370000200341106a2004370000200341186a200237000020012000417e6a22133602d8014100211402402013200310d4010d0020014180026a41206a200141d8016a41206a28020036020020014180026a41186a200141d8016a41186a29030037030020014180026a41106a200141d8016a41106a29030037030020014180026a41086a200141d8016a41086a290300370300200120012903d8013703800220014198016a41186a2214200f41186a221529000037030020014198016a41106a2216200f41106a221729000037030020014198016a41086a2218200f41086a22192900003703002001200f2900003703980120014180066a41186a2213201529000037030020014180066a41106a2215201729000037030020014180066a41086a221720192900003703002001200f29000037038006200141a8026a20014180066a10b604200141b8016a41186a22192014290300370300200141b8016a41106a221a2016290300370300200141b8016a41086a2216201829030037030020012001290398013703b80120012802c8022214450d00200e20012903a802370300200e41186a200141a8026a41186a290300370300200e41106a200141a8026a41106a290300370300200e41086a200141a8026a41086a290300370300201320192903003703002015201a2903003703002017201629030037030020014188016a41086a2216200d41086a280200360200200120012903b801370380062001200d29020037038801200141d8026a41386a221820014180066a41386a290300370300200141d8026a41306a221920014180066a41306a290300370300200141d8026a41286a221a20014180066a41286a290300370300200141d8026a41206a221b200e290300370300200141d8026a41186a221c2013290300370300200141d8026a41106a22132015290300370300200141d8026a41086a2215201729030037030020012001290380063703d802200141d8036a41386a2018290300370300200141d8036a41306a2019290300370300200141d8036a41286a201a290300370300200141d8036a41206a201b290300370300200141d8036a41186a201c290300370300200141d8036a41106a2013290300370300200141d8036a41086a2015290300370300200120012903d8023703d803200141f8006a41086a201628020036020020012001290388013703780b200141a0056a41086a200141d8036a41086a290300370300200141a0056a41106a200141d8036a41106a290300370300200141a0056a41186a200141d8036a41186a290300370300200141a0056a41206a200141d8036a41206a290300370300200141a0056a41286a200141d8036a41286a290300370300200141a0056a41306a200141d8036a41306a290300370300200141a0056a41386a200141d8036a41386a290300370300200141c8006a41086a200141f8006a41086a280200360200200120012903d8033703a0052001200129037837034820140d02200041016a2100200b201041206a2210470d000b0b4100211d200141003602e003200142083703d80341082116200a0d01410021140c090b200141c0046a41386a2203200141a0056a41386a290300370300200141c0046a41306a220f200141a0056a41306a290300370300200141c0046a41286a2213200141a0056a41286a290300370300200141c0046a41206a2215200141a0056a41206a290300370300200141c0046a41186a2217200141a0056a41186a290300370300200141c0046a41106a2216200141a0056a41106a290300370300200141c0046a41086a2218200141a0056a41086a290300370300200141386a41086a2219200141c8006a41086a280200360200200120012903a0053703c00420012001290348370338200141286a41086a221a20192802003602002001200129033837032820014180066a41086a2219201829030037030020014180066a41106a2218201629030037030020014180066a41186a220d201729030037030020014180066a41206a2217201529030037030020014180066a41286a2215201329030037030020014180066a41306a2213200f29030037030020014180066a41386a220f2003290300370300200120012903c00437038006200141d8026a41086a2203201a280200360200200120012903283703d80241d000101e2216450d02201620012903800637030020162014360240201620012903d802370244201641386a200f290300370300201641306a2013290300370300201641286a2015290300370300201641206a2017290300370300201641186a200d290300370300201641106a2018290300370300201641086a2019290300370300201641cc006a20032802003602000240200b41606a2010470d00410121144101211d0c080b201141206a2103200b20106b41606a2117200141cc026a210d20014180026a410472210f200141d8016a41047221110340200141d8006a41186a200341186a2210290000370300200141d8006a41106a200341106a2214290000370300200141d8006a41086a200341086a22132900003703002001200329000037035820012000417f6a22153602d801201329000021022014290000210420032900002105201141186a2010290000370000201141106a2004370000201141086a2002370000201120053700004100211002402015201110d4010d0020014180026a41206a200141d8016a41206a28020036020020014180026a41186a200141d8016a41186a29030037030020014180026a41106a200141d8016a41106a29030037030020014180026a41086a200141d8016a41086a290300370300200120012903d8013703800220014198016a41186a2210200f41186a221329000037030020014198016a41106a220b200f41106a221529000037030020014198016a41086a2218200f41086a22192900003703002001200f2900003703980120014180066a41186a2214201329000037030020014180066a41106a2213201529000037030020014180066a41086a221520192900003703002001200f29000037038006200141a8026a20014180066a10b604200141b8016a41186a22192010290300370300200141b8016a41106a221a200b290300370300200141b8016a41086a220b201829030037030020012001290398013703b80120012802c8022210450d00200e20012903a802370300200e41186a200141a8026a41186a290300370300200e41106a200141a8026a41106a290300370300200e41086a200141a8026a41086a290300370300201420192903003703002013201a2903003703002015200b29030037030020014188016a41086a220b200d41086a280200360200200120012903b801370380062001200d29020037038801200141d8026a41386a221820014180066a41386a290300370300200141d8026a41306a221920014180066a41306a290300370300200141d8026a41286a221a20014180066a41286a290300370300200141d8026a41206a221b20014180066a41206a290300370300200141d8026a41186a221c2014290300370300200141d8026a41106a22142013290300370300200141d8026a41086a2213201529030037030020012001290380063703d802200141d8036a41386a2018290300370300200141d8036a41306a2019290300370300200141d8036a41286a201a290300370300200141d8036a41206a201b290300370300200141d8036a41186a201c290300370300200141d8036a41106a2014290300370300200141d8036a41086a2013290300370300200120012903d8023703d803200141f8006a41086a200b28020036020020012001290388013703780b200141a0056a41086a200141d8036a41086a290300370300200141a0056a41106a200141d8036a41106a290300370300200141a0056a41186a200141d8036a41186a290300370300200141a0056a41206a200141d8036a41206a290300370300200141a0056a41286a200141d8036a41286a290300370300200141a0056a41306a200141d8036a41306a290300370300200141a0056a41386a200141d8036a41386a290300370300200141c8006a41086a200141f8006a41086a280200360200200120012903d8033703a0052001200129037837034820100d02200341206a210341012114200041016a2100201741606a22170d000b4101211d0c070b20091020410021140c070b200141c0046a41386a221e200141a0056a41386a2219290300370300200141c0046a41306a221f200141a0056a41306a221a290300370300200141c0046a41286a2220200141a0056a41286a220d290300370300200141c0046a41206a2221200141a0056a41206a221b290300370300200141c0046a41186a2222200141a0056a41186a221c290300370300200141c0046a41106a2223200141a0056a41106a2224290300370300200141c0046a41086a2225200141a0056a41086a2226290300370300200141386a41086a2227200141c8006a41086a2228280200360200200120012903a0053703c00420012001290348370338200141286a41086a2229202728020036020020012001290338370328200341206a2103200141cc026a212a20014180026a410472210f200141d8016a4104722111410121144101211d0240034020014180066a41086a2217202529030037030020014180066a41106a220b202329030037030020014180066a41186a2218202229030037030020014180066a41206a222b202129030037030020014180066a41286a222c202029030037030020014180066a41306a222d201f29030037030020014180066a41386a222e201e290300370300200120012903c00437038006200141d8026a41086a222f2029280200360200200120012903283703d8020240201d2014470d00201441016a22132014490d0b201441017422152013201520134b1b221dad42d0007e2202422088a70d0b2002a722134100480d0b0240024020140d002013101e21160c010b2016201441d0006c2013102221160b2016450d020b2016201441d0006c6a2213200129038006370300200b290300210220182903002104202b2903002105202c2903002112202d2903002130202e29030021312017290300213220132010360240201341086a2032370300201341386a2031370300201341306a2030370300201341286a2012370300201341206a2005370300201341186a2004370300201341106a2002370300201320012903d802370244201341cc006a202f280200360200201441016a21142003200c460d070340200141d8006a41186a200341186a2210290000370300200141d8006a41106a200341106a2213290000370300200141d8006a41086a200341086a221529000037030020012003290000370358200120003602d801201529000021022013290000210420032900002105201141186a2010290000370000201141106a2004370000201141086a2002370000201120053700004100211002402000201110d4010d0020014180026a41206a200141d8016a41206a28020036020020014180026a41186a200141d8016a41186a29030037030020014180026a41106a200141d8016a41106a29030037030020014180026a41086a200141d8016a41086a290300370300200120012903d8013703800220014198016a41186a2210200f41186a221329000037030020014198016a41106a2215200f41106a223329000037030020014198016a41086a2234200f41086a22352900003703002001200f2900003703980120182013290000370300200b2033290000370300201720352900003703002001200f29000037038006200141a8026a20014180066a10b604200141b8016a41186a22132010290300370300200141b8016a41106a22332015290300370300200141b8016a41086a2215203429030037030020012001290398013703b80120012802c8022210450d00200e20012903a802370300200e41186a200141a8026a41186a290300370300200e41106a200141a8026a41106a290300370300200e41086a200141a8026a41086a29030037030020182013290300370300200b20332903003703002017201529030037030020014188016a41086a2213202a41086a280200360200200120012903b801370380062001202a29020037038801200141d8026a41386a2215202e290300370300200141d8026a41306a2233202d290300370300200141d8026a41286a2234202c290300370300200141d8026a41206a2235202b290300370300200141d8026a41186a22362018290300370300200141d8026a41106a2237200b290300370300202f201729030037030020012001290380063703d802200141d8036a41386a2015290300370300200141d8036a41306a2033290300370300200141d8036a41286a2034290300370300200141d8036a41206a2035290300370300200141d8036a41186a2036290300370300200141d8036a41106a2037290300370300200141d8036a41086a202f290300370300200120012903d8023703d803200141f8006a41086a201328020036020020012001290388013703780b2026200141d8036a41086a2903003703002024200141d8036a41106a290300370300201c200141d8036a41186a290300370300201b200141d8036a41206a290300370300200d200141d8036a41286a290300370300201a200141d8036a41306a2903003703002019200141d8036a41386a2903003703002028200141f8006a41086a280200360200200120012903d8033703a00520012001290378370348024020100d00200041016a2100200c200341206a2203470d010c090b0b201e2019290300370300201f201a2903003703002020200d2903003703002021201b2903003703002022201c290300370300202320242903003703002025202629030037030020272028280200360200200120012903a0053703c004200120012903483703382029202728020036020020012001290338370328200341206a2103200041016a21000c000b0b20134108102d000b41d0004108102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b0240200a450d00200910200b200120143602e0032001201d3602dc03200120163602d8030b10d5012103024002400240024002400240024002400240024002400240411b101e2200450d00200041176a41002800e7f346360000200041106a41002900e0f346370000200041086a41002900d8f346370000200041002900d0f3463700002000411b413610222200450d012000200336001b200141b8016a41186a22034200370300200141b8016a41106a22114200370300200141b8016a41086a22104200370300200142003703b8012000411f200141b8016a100120014180066a41186a200329030037030020014180066a41106a201129030037030020014180066a41086a2010290300370300200120012903b801370380062000102020014180066a4120101510d50121034117101e2200450d022000410f6a41002900b9c944370000200041086a41002900b2c944370000200041002900aac94437000020004117412e10222200450d0320002003360017200141b8016a41186a22034200370300200141b8016a41106a22114200370300200141b8016a41086a22104200370300200142003703b8012000411b200141b8016a100120014180066a41186a200329030037030020014180066a41106a2203201129030037030020014180066a41086a2010290300370300200120012903b801370380062000102020014180066a41201015024002402014450d0020014180066a200141d8036a10e803200141cb046a20014180066a41086a28020036000020012001290380063700c3042001418c066a200141c7046a290000370000200141023a008406200141063a008006200120012900c0043700850620014180066a107720012802102100200141003602e002200142013703d8022003200141d8036a41086a28020036020020012000360284062001200836028006200120012903d80337038806200141d8026a20014180066a10fc040c010b200141013a008406200141063a00800620014180066a1077201d450d00201610200b0240200128020c450d00200128020810200b200141d8026a41086a22004200370300200142003703d80241f7a6c6004112200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a100321162001280280062218417f460d052016450d05200120183602c404200120163602c0042001200141c0046a105f20012802000d0e20012802c404221141807f712200417f4c0d082001280204210902400240201141077622140d00410121170c010b2000101e2217450d050b02402009450d0020014180066a41206a2115200141d8036a410172210b410021100340200141003a00f803201041016a210f4100210002400240024002400240034020112000460d01200141d8036a20006a20012802c00422032d00003a00002001200341016a3602c0042001200041016a22033a00f8032003210020034120470d000b200141b8016a41086a2200200141d8036a41086a290300370300200141b8016a41106a220e200141d8036a41106a290300370300200141b8016a41186a2213200141d8036a41186a290300370300200120012903d8033703b8012001201120036b3602c404200141d8036a200141c0046a10f60220012d00d8034101460d0120014180066a41186a201329030037030020014180066a41106a200e29030037030020014180066a41086a2000290300370300200120012903b801370380062015200b41e00010cd051a200141d8026a20014180066a41800110cd051a20142010470d0420104101742200200f2000200f4b1b221441ffffff0f712014470d14201441077422004100480d1420100d022000101e21170c030b200141003602c404200041ff0171450d00200141003a00f8030b2014450d13201710200c130b201720104107742000102221170b2017450d090b201720104107746a200141d8026a41800110cd051a200f2009460d0120012802c4042111200f21100c000b0b2017450d0e2009ad42208621022014ad210402402018450d00201610200b200220048421300c070b411b4101102d000b41364101102d000b41174101102d000b412e4101102d000b20004101102d000b41012117420021300c010b20004101102d000b4100210002400240024002400240024002400240024002400240024002402030422088a7221941077422090d004101212f4100212a0c010b20094102762203101e222f450d01201941ffffff0f71212a0b02402019450d0020194107742111202f210020172103034020002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a290000370000200041206a210020034180016a2103201141807f6a22110d000b201941077441807f6a41077641016a21000b20074102472111200141d8026a41086a22034200370300200142003703d80241868cc6004112200141d8026a1000200141a0056a41086a2003290300370300200120012903d8023703a00520014100360288062001420137038006200120003602d802200141d8026a20014180066a106302402000450d0020004105742103202f21000340200020014180066a10ca01200041206a2100200341606a22030d000b0b2007201171211b2001280284062100200141a0056a41102001280280062203200128028806100502402000450d00200310200b0240201b450d00200141d8026a41086a22004200370300200142003703d80241baf6c600411a200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a100321002001280280062203417f460d002000450d00200120033602dc02200120003602d80220014180066a200141d8026a10c1012001280280062211450d02200129028406210202402003450d00200010200b200141a0056a411010042002a7450d00201110200b200141d8026a41086a22004200370300200142003703d80241d9f9c6004123200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d803410021032001410036028006200141d8036a411020014180066a1003210002402001280280062211417f460d002000450d0020114104490d0320002800002103200010200b200641016a211a200141d8026a41086a22134200370300200142003703d802419afac6004110200141d8026a1000200141d8036a41086a2013290300370300200120012903d8023703d803410121064100200141d8036a10d6042200200041ff01714104461b41ff0171220041034b0d044100213302400240024020000e0400010902000b201a20036b2200201a4b0d06200041064f0d010c060b200141d8026a41086a22004200370300200142003703d802419afac6004110200141d8026a1000200141d8036a41086a2000290300370300200120012903d8023703d803200141d8036a411010040b200141a0056a10d3014100210020012802a405211620012802a005210b024020012802a805220341057422110d0041082115410021180c040b20114105752218ad42d0007e2202422088a70d102002a722104100480d102010101e22150d0320104108102d000b20034101102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b02402003450d00201141606a210d20014180066a41206a210020152110200b21030340200341086a2900002102200341106a290000210420032900002105200141d8036a41186a220f200341186a290000370300200141d8036a41106a22142004370300200141d8036a41086a220e2002370300200120053703d803200141d8026a200141d8036a10b60420014180066a41186a200f29030037030020014180066a41106a201429030037030020014180066a41086a200e290300370300200020012903d802370300200041086a200141d8026a41086a290300370300200041106a200141d8026a41106a290300370300200041186a200141d8026a41186a290300370300200041206a200141d8026a41206a290300370300200041286a200141d8026a41286a290300370300200120012903d80337038006201020014180066a41d00010cd0541d0006a2110200341206a2103201141606a22110d000b200d41057641016a21000b02402016450d00200b10200b20014180066a201a10ba0420012802800622330d0102402000450d00200041d0006c2103201541c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200341b07f6a22030d000b0b2018450d00201510200b410021330c010b200129028406213102402000450d00200041d0006c2103201541c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200341b07f6a22030d000b0b02402018450d00201510200b203345210620330d010b20134200370300200142003703d80241868cc6004112200141d8026a1000200141a0056a41086a2013290300370300200120012903d8023703a0052001410036028006200141a0056a411020014180066a100321002001280280062203417f460d022000450d02200120033602dc02200120003602d80220014180066a200141d8026a10e301200128028006220c450d01200129028406211202402003450d00200010200b410021350c030b41012135203121122033210c0c020b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b410021354101210c420021120b200141d8026a41086a22004200370300200142003703d8024191f6c6004114200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a0052001201a36028006200141a0056a411020014180066a41041005200120353a0098012001201720096a22243602bc01200120173602b8012001200141b8016a3602dc01200120014198016a3602d8014100210f024002402012422088a7220041057422030d004101211c410021340c010b2003410575223441ffffff0f712034470d06203441077422034100480d062003101e221c0d0020034101102d000b0240024002400240024002402000450d0020004105742110200141d8026a410172211620014180066a41206a210b200141c0046a41c0006a210d200141c0046a41206a21184100210f201c2114200c21000340200041086a2900002102200041106a290000210420002900002105200141a8026a41186a220e200041186a290000370300200141a8026a41106a22132004370300200141a8026a41086a22092002370300200120053703a80220014180026a200141a8026a10fd0220012802880221112001280280022103200141003602d80220032011200141d8026a100321110240024020012802d8022215417f460d002011450d00200120153602a405200120113602a005200141d8026a200141a0056a10f60220012d00d8024101460d04200141d8036a201641e00010cd051a02402015450d00201110200b200141a0056a200141d8036a41e00010cd051a200141d8026a200141a0056a41e00010cd051a200141d8036a200141d8026a41e00010cd051a410121110c010b200141d8026a200141a0056a41e00010cd051a410021110b0240200128028402450d00200310200b0240024020110d00200141c0046a410041e00010cc051a0c010b200141c0046a200141d8036a41e00010cd051a0b024020012802d8012d00000d0020012802dc01221128020022032011280204460d00201120034180016a36020002400240200141c0046a200341206a2211460d002011200141c0046a412010cf050d010b02402018200341c0006a2211460d0020112018412010cf050d010b200d200341e0006a2203460d012003200d412010cf05450d010b20012802d80141013a00000b200041206a210020014180066a41186a200e29030037030020014180066a41106a201329030037030020014180066a41086a2009290300370300200120012903a80237038006200b200141c0046a41e00010cd051a200f41016a210f201420014180066a41800110cd054180016a2114201041606a22100d000b0b02402012a7450d00200c10200b200f41ffffff0f71200f470d05200f4107742200417f4c0d0520012d009801210902400240024020000d00410121130c010b2000101e2213450d010b410021000240200f450d00201c200f4107746a210e20014180066a41e0006a210320014180066a41c0006a211120014180066a41206a211020132114201c2100034020014180066a41186a200041186a29000037030020014180066a41106a200041106a29000037030020014180066a41086a200041086a2900003703002001200029000037038006201041186a200041386a290000370000201041106a200041306a290000370000201041086a200041286a2900003700002010200041206a290000370000201141186a200041d8006a290000370000201141106a200041d0006a290000370000201141086a200041c8006a2900003700002011200041c0006a2900003700002003200041e0006a290000370000200341086a200041e8006a290000370000200341106a200041f0006a290000370000200341186a200041f8006a290000370000201420014180066a41800110cd054180016a211420004180016a2200200e470d000b200f41077441807f6a41077641016a21000b200141d8026a41086a22034200370300200142003703d80241f7a6c6004112200141d8026a1000200141a0056a41086a2003290300370300200120012903d8023703a00520014100360288062001420137038006200120003602d802200141d8026a20014180066a106302402000450d00201320004107746a2103201321000340200020014180066a10ca01200041206a20014180066a10ca01200041c0006a20014180066a10ca01200041e0006a20014180066a10ca0120004180016a22002003470d000b0b2001280284062100200141a0056a41102001280280062203200128028806100502402000450d00200310200b0240200f450d00201310200b200141d8026a41086a22004200370300200142003703d80241a5f6c6004115200141d8026a1000200141a0056a41086a2000290300370300200120012903d8023703a005200120093a008006200141a0056a411020014180066a410110052001201a36028406200141043a00800620014180066a107702404108101e2203450d00200320243602042003201736020002400240201b0d0042002102200141d8036a41086a22004200370300200142003703d80341f0f1c600411c200141d8036a100020014180066a41086a2000290300370300200120012903d80337038006200141003602d80220014180066a4110200141d8026a10032100024020012802d8022211417f460d002000450d0020114108490d0220002900002102200010200b200110d50136028006200220014180066a108005200310200c070b2019450d04200320174180016a22143602002001201741226a2900003701820620012017412a6a29000037018a06200141c0046a41086a22002001290388063703002001201741326a29000037019206200141c0046a41106a221120012903900637030020012017413a6a28000036019a0620012017413e6a2f00003b019e06200141c0046a41186a2210200129039806370300200141003a00a0062001201741216a2d00003a008106200120172d00203a00800620012001290380063703c004200141d8026a41186a220e2010290300370300200141d8026a41106a22102011290300370300200141d8026a41086a22112000290300370300200120012903c0043703d8022017450d04200141d8036a41186a200e290300370300200141d8036a41106a2010290300370300200141d8036a41086a2011290300370300200120012903d8023703d803202420146b41077641016a220041286c2211417f4c0d0802402011101e2214450d00201420012903d80337030020144201370320201441186a200141d8036a41186a2226290300370300201441106a200141d8036a41106a2228290300370300201441086a200141d8036a41086a22072903003703000240200328020022112003280204221b470d0041012111200310200c070b200320114180016a220c3602002001201141226a2900003701820620012011412a6a29000037018a06200141c0046a41086a220e2001290388063703002001201141326a29000037019206200141c0046a41106a221320012903900637030020012011413a6a28000036019a0620012011413e6a2f00003b019e06200141c0046a41186a2209200129039806370300200141003a00a0062001201141216a2d00003a008106200120112d00203a00800620012001290380063703c004200141d8026a41186a22152009290300370300200141d8026a41106a220b2013290300370300200141d8026a41086a2216200e290300370300200120012903c0043703d8024102211141c800211003402026201529030022023703002028200b2903002204370300200720162903002205370300200120012903d80222123703d80320014180066a41186a2218200237030020014180066a41106a2219200437030020014180066a41086a221a20053703002001201237038006024002402011417f6a2000460d002000210d0c010b201b200c6b41077620006a41016a220d2000490d102000410174221b200d201b200d4b1b220dad42287e2202422088a70d102002a7221b4100480d100240024020000d00201b101e21140c010b2014200041286c201b102221140b20140d00201b4108102d000b201420106a221b41606a2200200129038006370300201a29030021022019290300210420182903002105201b4201370300200041186a2005370300200041106a2004370300200041086a20023703000240200328020022002003280204221b470d00200d2100200310200c080b200320004180016a220c3602002001200041226a2900003701820620012000412a6a29000037018a06200e2001290388063703002001200041326a29000037019206201320012903900637030020012000413a6a28000036019a0620012000413e6a2f00003b019e062009200129039806370300200141003a00a0062001200041216a2d00003a008106200120002d00203a00800620012001290380063703c00420152009290300370300200b20132903003703002016200e290300370300200120012903c0043703d802201041286a2110201141016a2111200d21000c000b0b20114108102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41084104102d000b20004101102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b200310204108211441002111410021000b200141d8036a41086a22034200370300200142003703d80341cac1c5004117200141d8036a100020014180066a41086a2003290300370300200120012903d80337038006200141d8026a20014180066a10bc040240024020012802d8024101460d0020012011360288062001200036028406200120143602800620014180066a4100410020011081050c010b20014180066a4110100420012902dc02210220012011360288062001200036028406200120143602800620014180066a2002a741012002422088a71081050b42002102200141d8036a41086a22004200370300200142003703d80341f0f1c600411c200141d8036a100020014180066a41086a2000290300370300200120012903d80337038006200141003602d80220014180066a4110200141d8026a10032100024020012802d8022203417f460d002000450d0020034108490d0220002900002102200010200b200141d8036a41086a22004200370300200142003703d80341f0f1c600411c200141d8036a100020014180066a41086a2000290300370300200120012903d803370380062001200242017c22023703d80220014180066a4110200141d8026a41081005200110d50136028006200220014180066a1080050b02404108101e2200450d00200020243602042000201736020002404108101e2203450d002003201c200f4107746a221a3602042003201c360200200141d8016a200041e4c1c50010e90320014180026a200341f8c3c50010e90320012802e001210320012802dc01210e20012802d8012114200141a8026a41086a20014180026a41086a28020036020020012001290380023703a80242002102200141d8036a41086a22004200370300200142003703d80341afedc600410f200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d8022001410036028006200141d8026a411020014180066a10032100024002402001280280062211417f460d002000450d0020114108490d0120002900002102200010200b0240200242017c22042002540d00200141d8036a41086a22004200370300200142003703d80341afedc600410f200141d8036a1000200141d8026a41086a22112000290300370300200120012903d8033703d8022001200437038006200141d8026a411020014180066a4108100520004200370300200142003703d80341beedc6004110200141d8036a100020112000290300370300200120012903d8033703d80220014100360288062001420137038006200120033602d803200141d8036a20014180066a106302402003450d002014200341286c6a210f201421030340200320014180066a10ca01200341206a290300210202400240200128028406221120012802880622006b4108490d0020012802800621110c010b200041086a22102000490d0d201141017422002010200020104b1b22004100480d0d0240024020110d002000101e21110c010b20012802800620112000102221110b02402011450d002001200036028406200120113602800620012802880621000c010b20004101102d000b2001200041086a36028806201120006a2002370000200f200341286a2203470d000b0b2001280284062100200141d8026a41102001280280062203200128028806100502402000450d00200310200b0240200e450d00201410200b0240200442017c22022004540d00200141d8036a41086a22004200370300200142003703d80341fdedc6004113200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d80220014180066a200141d8026a10da0120012d0080062100200141c0046a41186a220320014199066a290000370300200141c0046a41106a221120014191066a290000370300200141c0046a41086a221020014189066a29000037030020012001290081063703c0040240024020004101460d0020014198016a41186a420037030020014198016a41106a420037030020014198016a41086a420037030020014200370398010c010b20014198016a41186a200329030037030020014198016a41106a201129030037030020014198016a41086a2010290300370300200120012903c004370398010b200141d8036a41086a22004200370300200142003703d8034190eec6004111200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d802410021132001410036028006200141d8026a411020014180066a10032100024002402001280280062203417f460d002000450d0020034104490d0120002800002113200010200b200141d8036a41086a22004200370300200142003703d8034190eec6004111200141d8036a1000200141d8026a41086a2000290300370300200120012903d8033703d8022001410036028006200141d8026a411020014180066a41041005200141a0056a41186a20014198016a41186a290300370300200141a0056a41106a20014198016a41106a290300370300200141a0056a41086a20014198016a41086a29030037030020012001290398013703a005417f201341016a220020002013491b410d74412872220b417f4c0d070240200b101e2215450d00201520012903a00537000020152002370020201541186a200141a0056a41186a290300370000201541106a200141a0056a41106a290300370000201541086a200141a0056a41086a2903003700004128210941002103410021100240024002400240024002400340024002400240024002402000200f460d0020100d010b034020102111200320134f0d024116101e2200450d0b2000410e6a41002900afee46370000200041086a41002900a9ee46370000200041002900a1ee4637000020004116412c10222200450d0a20002003360016200141c0046a41186a22104200370300200141c0046a41106a220f4200370300200141c0046a41086a22144200370300200142003703c0042000411a200141c0046a100120014180066a41186a201029030037030020014180066a41106a200f29030037030020014180066a41086a2014290300370300200120012903c0043703800620001020200141003602d80220014180066a4120200141d8026a1003210f0240024020012802d8022200417f470d004101211041002100420021020c010b200120003602dc032001200f3602d803200141d8026a200141d8036a109f0320012802d8022210450d0a20012902dc02210202402000450d00200f10200b20014180066a412010042002422088a721000b02402011450d00200e450d00201110200b200341016a21032002a7210e2000450d000b201020004105746a210f201021000b200141d8036a41186a2214200041186a290000370300200141d8036a41106a2216200041106a290000370300200141d8036a41086a2218200041086a290000370300200120002900003703d803200b20096b411f4b0d02200941206a22112009490d17200b41017422192011201920114b1b221141004e0d010c170b02402011450d00200e450d00201110200b200141c0046a41186a22034200370300200141c0046a41106a22114200370300200141c0046a41086a22104200370300200142003703c00420152009200141c0046a1001200141b8016a41186a2003290300370300200141b8016a41106a2011290300370300200141b8016a41086a2010290300370300200120012903c0043703b8010240200b450d00201510200b200141d8036a41086a22004200370300200142003703d80341fdedc6004113200141d8036a1000200141d8026a41086a220f2000290300370300200120012903d8033703d80220014110360284062001200141d8026a36028006200141b8016a20014180066a108203200141a0056a41186a20014198016a41186a2903002202370300200141a0056a41106a20014198016a41106a2903002204370300200141a0056a41086a20014198016a41086a2903002205370300200120012903980122123703a00520014180066a41186a200237030020014180066a41106a200437030020014180066a41086a2005370300200120123703800620004200370300200142003703d80341eeedc600410f200141d8036a1000200f2000290300370300200120012903d8033703d802200141103602dc032001200141d8026a3602d80320014180066a200141d8036a10b80120004200370300200142003703d80341fdedc6004113200141d8036a1000200f2000290300370300200120012903d8033703d80220014180066a200141d8026a10da0120012d0080062100200320014199066a290000370300201120014191066a290000370300201020014189066a29000037030020012001290081063703c00420004101460d04200141f0006a4200370300200141e8006a4200370300200141e0006a4200370300200142003703580c050b02400240200b0d002011101e21150c010b2015200b2011102221150b2015450d022011210b0b200041206a2100201520096a221120012903d803370000201141186a2014290300370000201141106a2016290300370000201141086a2018290300370000200941206a21090c000b0b20114101102d000b200141d8006a41186a200141c0046a41186a290300370300200141d8006a41106a200141c0046a41106a290300370300200141d8006a41086a200141c0046a41086a290300370300200120012903c0043703580b200141d8026a41086a2200200141a8026a41086a280200360200200141d8026a41246a200141d8006a41186a290300370200200141d8026a411c6a200141d8006a41106a290300370200200141d8026a41146a200141d8006a41086a290300370200200120012903a80222023703d802200120012903583702e402200141ac066a20014180036a28020036020020014180066a41246a200141f8026a29030037020020014180066a411c6a200141d8026a41186a29030037020020014180066a41146a200141d8026a41106a29030037020020014180066a410c6a200029030037020020012002370284062001410036028006200141d8036a20014180066a10ba03200141cb046a200141d8036a41086a280200360000200120012903d8033700c304200141d8036a410c6a200141c7046a290000370000200141c28289aa043600d903200141023a00d803200120012900c0043700dd03200141d8036a10fe0102402001280280060d0020014180066a41086a280200450d0020012802840610200b02404108101e2203450d00200320243602042003201736020002404108101e220c450d00200c201a360204200c201c36020010792100200141d8036a41086a22114200370300200142003703d80341dcbfc4004111200141d8036a1000200141d8026a41086a2011290300370300200120012903d8033703d8022001200041326a36028006200141d8026a411020014180066a410410052003280200220020032802042210460d0e200320004180016a220f3602002001200041e2006a290000370182062001200041ea006a29000037018a06200141c0046a41086a22112001290388063703002001200041f2006a29000037019206200141c0046a41106a22142001290390063703002001200041fa006a28000036019a062001200041fe006a2f00003b019e06200141c0046a41186a220e2001290398063703002001200041e0006a2f00003b01800620012001290380063703c004200141d8026a41186a2200200e290300370300200141d8026a41106a220e2014290300370300200141d8026a41086a22142011290300370300200120012903c0043703d802200141a0056a41186a22132000290300370300200141a0056a41106a200e290300370300200141a0056a41086a220e2014290300370300200120012903d8023703a0054101211102402010200f6b41077641016a22004105742210101e2214450d00201420012903a005370000201441186a2013290300370000201441106a200141a0056a41106a290300370000201441086a200e290300370000200328020022102003280204220d460d10200320104180016a221b3602002001201041e2006a290000370182062001201041ea006a29000037018a06200141c0046a41086a220e2001290388063703002001201041f2006a29000037019206200141c0046a41106a22132001290390063703002001201041fa006a28000036019a062001201041fe006a2f00003b019e06200141c0046a41186a22092001290398063703002001201041e0006a2f00003b01800620012001290380063703c004200141d8026a41186a22152009290300370300200141d8026a41106a220b2013290300370300200141d8026a41086a2216200e290300370300200120012903c0043703d802410221114120210f0340200141d8036a41186a20152903002202370300200141d8036a41106a200b2903002204370300200141d8036a41086a20162903002205370300200120012903d80222123703d80320014180066a41186a2218200237030020014180066a41106a2219200437030020014180066a41086a221a20053703002001201237038006024002402011417f6a2000460d00200021100c010b200d201b6b41077620006a41016a22102000490d152000410174220d2010200d20104b1b221041ffffff3f712010470d152010410574220d4100480d150240024020000d00200d101e21140c010b20142000410574200d102221140b20140d00200d4101102d000b2014200f6a2200200129038006370000200041186a2018290300370000200041106a2019290300370000200041086a201a2903003700000240200328020022002003280204220d470d00201021000c120b200320004180016a221b3602002001200041e2006a290000370182062001200041ea006a29000037018a06200e2001290388063703002001200041f2006a2900003701920620132001290390063703002001200041fa006a28000036019a062001200041fe006a2f00003b019e0620092001290398063703002001200041e0006a2f00003b01800620012001290380063703c00420152009290300370300200b20132903003703002016200e290300370300200120012903c0043703d802200f41206a210f201141016a2111201021000c000b0b20104101102d000b41084104102d000b41084104102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b412c4101102d000b41164101102d000b200b4101102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41c5fdc10041c90041a0fec1001045000b41c5fdc10041c9004190fec1001045000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b41084104102d000b41084104102d000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000b102c000b200310204101211441002111410021000c010b200310200b200141d8036a41086a22034200370300200142003703d80341edbfc400410d200141d8036a1000200141d8026a41086a2003290300370300200120012903d8033703d80220014100360288062001420137038006200120113602d803200141d8036a20014180066a106302402011450d0020114105742111201421030340200320014180066a10ca01200341206a2103201141606a22110d000b0b2001280284062103200141d8026a41102001280280062211200128028806100502402003450d00201110200b02402000450d00201410200b200c102002402034450d00201c10200b024020352006720d002031a7450d00203310200b0240202a450d00202f10200b2030a7450d00201710200b20014180076a24000f0b1027000b41ceb8c4004133200141d8006a41fcbfc4004184b9c400102e000bc90804117f017e017f047e230041b0016b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b200128020441306e220341306c2204417f4c0d01200228020c21050240024020040d00410821060c010b2004101e2206450d030b024002402005450d00410021070340200241003a00a8012007220841016a210720012802042109417f210a41002104024002400240034020092004460d0120024188016a20046a2001280200220b2d00003a000020012009200a6a3602042001200b41016a3602002002200441016a220c3a00a801200a417f6a210a200c2104200c4120470d000b200241e8006a41186a220d20024188016a41186a220e290300370300200241e8006a41106a220f20024188016a41106a2210290300370300200241e8006a41086a221120024188016a41086a2212290300370300200220022903880137036802402009200c6b22044108490d00200b29000121132001200b41096a3602002001200441786a360204200941786a200c460d00200b2d0009210a2001200b410a6a3602002001200441776a220c360204200a4104490d020b4104210a0c020b0240200441ff0171450d00200241003a00a8010b4104210a0c010b0240200c41034b0d004104210a0c010b200b28000a21142001200b410e6a3602002001200441736a360204201220112903003703002010200f290300370300200e200d290300370300200241e2006a41026a200241e5006a41026a2d00003a00002002200229036837038801200220022f00653b0162201321150b200241c0006a41086a220420024188016a41086a290300370300200241c0006a41106a220c20024188016a41106a290300370300200241c0006a41186a220920024188016a41186a2903003703002002413c6a41026a220b200241e2006a41026a2d00003a00002002200229038801370340200220022f01623b013c200a4104460d02200241186a41186a220d2009290300370300200241186a41106a2209200c290300370300200241186a41086a220c2004290300370300200241146a41026a220e200b2d00003a000020022002290340370318200220022f013c3b0114024020032008470d000240200841017422042007200420074b1b2203ad42307e2213422088a70d002013a722044100480d000240024020080d002004101e21060c010b2006200841306c2004102221060b20060d0120044108102d000b1027000b2006200841306c6a22042015370300200d290300211320092903002116200c2903002117200229031821182004200a3a002820042018370308200441106a2017370300200441186a2016370300200441206a20133703002004412c6a2014360000200420022f01143b00292004412b6a200e2d00003a000020072005470d000b0b2000200336020420002006360200200041086a20053602000c010b200041003602002003450d00200610200b200241b0016a24000f0b102c000b20044108102d000bee0403027f017e037f230041106b2203240020034100360208200342013703002003200236020c2003410c6a2003106302402002450d00200241306c21040340200141086a200310ca012001290300210502400240024002400240024020032802042206200328020822026b4108490d00200328020021060c010b200241086a22072002490d01200641017422022007200220074b1b22024100480d010240024020060d002002101e21060c010b200328020020062002102221060b2006450d022003200236020420032006360200200328020821020b2003200241086a360208200620026a2005370000200141286a2d0000210702400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422082006200820064b1b22084100480d010240024020020d002008101e21060c010b200328020020022008102221060b2006450d032003200836020420032006360200200328020821020b2003200241016a360208200620026a20073a00002001412c6a2802002107024020032802042206200328020822026b4104490d00200328020021060c040b200241046a22082002490d00200641017422022008200220084b1b22024100480d000240024020060d002002101e21060c010b200328020020062002102221060b02402006450d002003200236020420032006360200200328020821020c040b20024101102d000b1027000b20024101102d000b20084101102d000b200141306a21012003200241046a360208200620026a2007360000200441506a22040d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000ba70201057f230041106b22032400024002400240200141046a2204417f4c0d000240024020040d00410121050c010b2004101e2205450d020b2003410036020820032004360204200320053602002003200136020c2003410c6a20031063024020032802042206200328020822056b2001490d00200328020021040c030b0240200520016a22042005490d00200641017422072004200720044b1b22074100480d000240024020060d002007101e21040c010b200328020020062007102221040b02402004450d002003200736020420032004360200200721060c040b20074101102d000b1027000b102c000b20044101102d000b200420056a2000200110cd051a200228020020022802042004200520016a100502402006450d00200410200b200341106a24000bb8c80307017f017e047f017e057f067e0e7f230041a0096b220324000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012802000e22020103040105060708090a01010136353433323130012f1a19181701160101010100020b200341e0076a200141086a41b80110cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341b0016a200341e0076a200341f0066a10f902024020032802b0012201450d0020032802b401210220004181c2003b0108200020013602002000410a6a41003a0000200020023602040c4c0b200041023a00080c4b0b000b200141106a29030021042001410c6a280200210520022d00002102024002400240024002400240024002400240024002400240024002400240200141086a2802002206417f6a0e0700010203040509000b200241ff01710d070c0a0b2004a721070240200241ff01714101470d0020070d090c0a0b41e4fec6002101411321024104210620070d0b0c0c0b200241ff01710d054108101e2201450d1e2001200437000041b39dc100410a200141081005200110200c080b2004a721070240200241ff01710d0041fffbc000410520052004422088a7100520070d070c080b41d3fec6002101411121024105210620070d090c0a0b2004422088a721072004a721080240200241ff01710d000240200741186c2201450d00200520016a21022005210103402001280200200141086a2802002001410c6a280200200141146a2802001005200141186a22012002470d000b0b02402007450d00200741186c21022005210103400240200141046a280200450d00200128020010200b0240200141106a280200450d002001410c6a28020010200b200141186a2101200241686a22020d000b0b4107210120080d020c030b02402007450d00200741186c21022005210103400240200141046a280200450d00200128020010200b0240200141106a280200450d002001410c6a28020010200b200141186a2101200241686a22020d000b0b4105210120080d010c020b2004422088a721072004a721080240200241ff01710d0002402007410c6c2201450d00200520016a21022005210103402001280200200141086a28020010042001410c6a22012002470d000b0b02402007450d002007410c6c21022005210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b4107210120080d010c020b02402007450d002007410c6c21022005210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b410521012008450d010b200510200b02402006417f6a4107490d002004a7450d00200510200b20014107460d030b41d3fec600210141112102410521060c050b2004a72107200241ff01710d0220052004422088a710152007450d010b200510200b200041023a00080c4c0b41d3fec600210141112102410521062007450d010b200510200b200041013b010820002002360204200020013602002000410a6a20063a00000c490b024020022d00004102470d00200141086a2903002104200341a8026a41086a22014200370300200342003703a80241fc81c7004113200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e80102400240200341e8016a411041e4fdc600410041001002417f470d00200341a8026a41086a22014200370300200342003703a80241c4aac100410d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d4a2001450d4a024020024108490d002001290000210920011020200950450d020c4b0b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41c6a9c100413041a888c6001028000b200341a8026a41086a22014200370300200342003703a80241c4aac100410d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d0042b81721090c010b024020010d0042b81721090c010b20024108490d122001290000210920011020200942b8177c21090b20092004580d4841f6a9c10041ce0041a888c6001028000b20004181043b01082000410f3602042000419affc6003602002000410a6a41003a00000c480b2001410c6a2802002105200141086a280200210a2001280204210b02400240024020022d00004102460d00419affc600210c410f210d0c010b200341a8026a41086a22014200370300200342003703a8024198edc6004117200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d012001450d0141002106200341003a00e0030240024002402002450d0020012d0000220241014b0d0020020e020201020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b410121060b2001102020064102460d012006450d0141deacc600210c411c210d0b02402005450d00200b200541f0006c6a2107200b2106034002402006410c6a2802002202450d0020062802042101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b200641f0006a21010240200641086a280200450d00200628020410200b2001210620012007470d000b0b200a450d46200b10200c460b200341a8026a41086a22014200370300200342003703a8024198edc6004117200341a8026a1000200341e8016a41086a22022001290300370300200320032903a8023703e801200341013a00e007200341e8016a4110200341e0076a410110051079210620014200370300200342003703a8024189a7c6004111200341a8026a100020022001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072207417f460d0d2001450d0d200320073602f406200320013602f006200341e0076a200341f0066a10bf0120032802e0072202450d0e20032902e407210402402007450d00200110200b200320023602a0032004422088a721012004a721070c3f0b200341c0046a41086a2206200141146a290200370300200341c0046a41106a22072001411c6a290200370300200341c0046a41186a2208200141246a290200370300200341c0046a41206a220e2001412c6a28020036020020032001410c6a2902003703c004200141386a2903002109200141306a290300210f200141c8006a2903002110200141c0006a2903002111200141e0006a2903002112200141d8006a2903002113200141086a2802002105200141d0006a2903002114200341a0036a41026a220b200241036a2d00003a0000200341c0026a41086a220c200241186a290000370300200341c0026a41106a220d200241206a2d00003a0000200320022f00013b01a0032003200241106a2900003703c002200241086a290000210441042115200241046a280000211620022d0000210102400240024002400240024002400240024020050e050001020304000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41d483c6001033000b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200341fc016a41026a200b2d00003a0000200320032f01a0033b01fc01200341a8026a41086a200c290300370300200341a8026a41106a200d2d00003a0000200320032903c0023703a80241012102410421050240200141ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a000020034180026a41106a200341b0026a29030037030020034198026a200341a8026a41106a2d00003a0000200320032f01fc013b01e8012003200437038002200320032903a8023703880241002102201621050b200341c0036a41086a220120034180026a41086a2206290300370300200341c0036a41106a220720034180026a41106a2208290300370300200341c0036a41186a220e20034180026a41186a220b2d00003a0000200320032f01e8013b01a00220032003290380023703c0032003200341ea016a2d00003a00a2020240024020020d00200341ef036a2001290300370000200341f7036a2007290300370000200341ff036a200e2d00003a0000200320032d00a2023a00e203200320032f01a0023b01e003200320053600e303200320032903c0033700e703200341e0076a41206a200341f0066a41206a280200360200200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b602200620034191066a290000370300200820034199066a290000370300200b200341a1066a29000037030020032003290089063703800220032d0088064101460d12200341a8056a41186a20034180026a41186a290300370300200341a8056a41106a20034180026a41106a290300370300200341a8056a41086a20034180026a41086a29030037030020032003290380023703a805200341086a200341e0036a200341a8056a200f200910fa02200328020822010d010c450b419affc6002101410f2102024020050e0700120506070846000b20032802c003210120032802c40321020c450b200328020c21020c440b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200141ff01710d05200341e0076a41206a200341f0066a41206a280200360200200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b602200341c0036a41086a220120034188066a41106a290300370300200341c0036a41106a220220034188066a41186a290300370300200341c0036a41186a220520034188066a41206a2d00003a0000200320032f0089063b01a002200320032d008b063a00a202200320034188066a41086a2903003703c00320032d0088064101460d0f200328028c062106200341b7056a2001290300370000200341bf056a2002290300370000200341c7056a20052d00003a0000200320032d00a2023a00aa05200320032f01a0023b01a805200320063600ab05200320032903c0033700af054114101e2201450d11200141002900ce8a45370000200141106a41002800de8a45360000200141086a41002900d68a4537000020034294808080c0023702e407200320013602e007200341a8056a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e407450d0020032802e00710200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d402001450d4020024110490d10200141086a290000210420012900002114200110200c410b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200141ff01710d04200341e0076a41206a2201200341f0066a41206a280200360200200341e0076a41186a2202200341f0066a41186a290300370300200341e0076a41106a2205200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b602200341c0036a41086a220620034188066a41106a290300370300200341c0036a41106a220720034188066a41186a290300370300200341c0036a41186a220820034188066a41206a2d00003a0000200320032f0089063b01a002200320032d008b063a00a202200320034188066a41086a2903003703c00320032d0088064101460d0e200328028c06210e200341ef036a2006290300370000200341f7036a2007290300370000200341ff036a20082d00003a0000200320032d00a2023a00e203200320032f01a0023b01e0032003200e3600e303200320032903c0033700e703200220103703002005201137030020012014a7360200200320093703e8072003200f3703e00720034188066a200341e0076a10b60220034180026a41086a20034191066a29000037030020034180026a41106a20034199066a29000037030020034180026a41186a200341a1066a29000037030020032003290089063703800220032d0088064101460d0e200341a8056a41186a20034180026a41186a290300370300200341a8056a41106a20034180026a41106a290300370300200341a8056a41086a20034180026a41086a29030037030020032003290380023703a805200341106a200341e0036a200341a8056a2013201210fa0220032802102201450d41200328021421020c420b200341f0066a41206a200e280200360200200341f0066a41186a2008290300370300200341f0066a41106a2007290300370300200341f0066a41086a2006290300370300200320032903c0043703f006200341fc016a41026a200b2d00003a0000200320032f01a0033b01fc01200341a8026a41086a200c290300370300200341a8026a41106a200d2d00003a0000200320032903c0023703a802410121020240200141ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002102201621150b200341c0036a41106a2201200341e0036a41086a290300370300200341c0036a41186a2205200341e0036a41106a2d00003a0000200320032f01e8063b01a002200320032903e0033703c8032003200341ea066a2d00003a00a202200320043703c003024020020d00200341ef036a200341c0036a41086a290300370000200341f7036a2001290300370000200341ff036a20052d00003a0000200320032d00a2023a00e203200320032f01a0023b01e003200320153600e303200320032903c0033700e703200341e0076a41206a200341f0066a41206a280200360200200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e00720034188066a200341e0076a10b60220034180026a41086a20034191066a29000037030020034180026a41106a20034199066a29000037030020034180026a41186a200341a1066a29000037030020032003290089063703800220032d0088064101460d0e200341a8056a41186a20034180026a41186a290300370300200341a8056a41106a20034180026a41106a290300370300200341a8056a41086a20034180026a41086a29030037030020032003290380023703a805200341186a200341e0036a200341a8056a200f200910fa0220032802182201450d41200328021c21020c420b419affc6002101410f2102024020150e07000e0102030442000b2004422088a721022004a721010c410b4180ffc6002101410c21020c400b41f7fec6002101410921020c3f0b41e4fec6002101411321020c3e0b41d3fec6002101411121020c3d0b200341e0076a41306a200141386a290300370300200341e0076a41286a200141306a290300370300200341e0076a41206a200141286a290300370300200341e0076a41186a200141206a290300370300200341e0076a41106a200141186a290300370300200341e0076a41086a200141106a2903003703002003200141086a2903003703e007200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341206a200341e0076a200341f0066a10fb02024020032802202201450d0020032802242102200041810c3b0108200020013602002000410a6a41003a0000200020023602040c460b200041023a00080c450b200141086a280200210a20012802042117200341e0076a2001410c6a41e40010cd051a200241086a290000210441042105200241046a280000210720022d00002106200341c0026a200341e0076a41046a41e00010cd051a200341fc016a41026a2208200241036a2d00003a0000200341a8026a41086a220e200241186a290000370300200341a8026a41106a220b200241206a2d00003a0000200320022f00013b01fc012003200241106a2900003703a80241012101024020064101470d00200341e8016a41026a20082d00003a0000200341e0036a41086a200e290300370300200341e0036a41106a200b2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101200721050b200341e8066a41026a200341e8016a41026a2d00003a0000200341c0036a41106a200341e0036a41086a290300370300200341c0036a41186a200341e0036a41106a2d00003a0000200320032f01e8013b01e806200320032903e0033703c803200320043703c00302402001450d00419affc6002101410f210202400240024002400240024020050e070001020304053d000b2004422088a721022004a721010c3c0b418cffc6002101410e21020c3b0b4180ffc6002101410c21020c3a0b41f7fec6002101410921020c390b41e4fec6002101411321020c380b41d3fec6002101411121020c370b200341a0036a41086a2201200341c0036a41086a290300370300200341a0036a41106a2202200341c0036a41106a290300370300200341a0036a41186a2206200341c0036a41186a2d00003a0000200320032f01e80622073b01a002200320032903c0033703a0032003200341e8066a41026a2d000022083a00a202200320083a00c204200320073b01c004200320053600c304200341cf046a2001290300370000200341d7046a2002290300370000200341df046a20062d00003a0000200320032903a0033700c704200341f0066a200341c0046a10fc022003280290072201450d06200341a8026a41086a200341b3076a290000370300200341a8026a41106a200341bb076a2d00003a000020032003419b076a2800003600bb01200341fc016a41026a20032d00be013a0000200320032900ab073703a802200320034198076a2802003602b801200320032f01bc013b01fc012003419f076a280000210220032900a30721040240200328029407450d00200110200b20034180026a41106a200341b0026a290300220937030020034198026a200341a8026a41106a2d000022013a0000200320032f01fc013b01c0032003200437038002200320032903a802220f370388022003200341fe016a2d00003a00c203200320023600c303200341df036a20013a0000200341d7036a2009370000200341cf036a200f370000200320043700c703200341e0036a200341c0026a41e00010cd051a20034180026a200341c0036a10fd0220032802880221022003280280022101200341003602f00620012002200341f0066a1003210220032802f0062205417f460d042002450d04200320053602ac05200320023602a805200341f0066a200341a8056a10f60220032d00f0064101460d0520034188066a200341f0066a41017241e00010cd051a02402005450d00200210200b200341a8056a20034188066a41e00010cd051a200341f0066a200341a8056a41e00010cd051a200341013a00c004200341c0046a410172200341f0066a41e00010cd051a0c350b0240024020022d00004102470d0020012802042101200341a8026a41086a22024200370300200342003703a80241e8bfc5004110200341a8026a1000200341e8016a41086a2002290300370300200320032903a8023703e801200341e8016a411041e4fdc600410041001002417f470d04107920014f0d0141d5c0c500412341a888c6001028000b20004181103b01082000410f3602042000419affc6003602002000410a6a41003a00000c440b200341a8026a41086a22024200370300200342003703a80241e8bfc5004110200341a8026a1000200341e8016a41086a2002290300370300200320032903a8023703e801200320013602e007200341e8016a4110200341e0076a41041005200041023a00080c430b200141086a280200210520012802042101024020022d00004101470d0002402005450d00200110200b200041023a00080c430b02402005450d00200110200b20004181123b010820004113360204200041e4fec6003602002000410a6a41003a00000c420b2001411c6a280200210c200141186a2802002115200141146a280200210d2001410c6a2802002116200141086a280200210a024002400240024002400240024020022d00004102470d00200141246a2802002118200141106a280200210510d5012117411b101e2201450d06200141176a41002800e7f346360000200141106a41002900e0f346370000200141086a41002900d8f346370000200141002900d0f3463700002001411b413610222201450d052001201736001b20034188066a41186a2202420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001411f20034188066a1001200341c0026a41186a22082002290300370300200341c0026a41106a2006290300370300200341c0026a41086a200729030037030020032003290388063703c002200110204120101e2201450d04200120032903c002370000200141186a2008290300370000200141106a200341c0026a41106a290300370000200141086a200341c0026a41086a290300370000200320183602e0072002420037030020034188066a41106a2206420037030020034188066a41086a220742003703002003420037038806200341e0076a410420034188066a100120034180026a41186a200229030037030020034180026a41106a2202200629030037030020034180026a41086a220620072903003703002003200329038806370380022001412041c00010222201450d032001200329038002370020200141386a20034180026a41186a290300370000200141306a2002290300370000200141286a2006290300370000200141c00041e4fdc600410041001002210220011020200341f0066a10d10120032802f006211902402002417f4722020d00201920184105746a410020032802f80620184b1b22010d030b41fbd3c4004190d4c40020021b21054115411820021b210620032802f406450d01201910200c010b200341063602e007419affc6002105410f21060b02402016450d00200a10200b0240200c450d00200c410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b02402015450d00200d10200b2005450d3220004181143b010820002006360204200020053602002000410a6a41003a00000c460b200341ed076a200141086a290000370000200341f5076a200141106a290000370000200341fd076a200141186a290000370000200341003a00e407200341063a00e007200320012900003700e507200341e0076a1077200341003602e807200342013703e007200320053602c004200341c0046a200341e0076a106302400240024020032802e407220220032802e80722016b2005490d0020032802e00721020c010b200120056a22062001490d40200241017422072006200720064b1b22064100480d400240024020020d002006101e21020c010b20032802e00720022006102221020b2002450d01200320063602e407200320023602e0070b2003200120056a3602e807200220016a200a200510cd051a2003200c3602c004200341c0046a200341e0076a10630240200c0d0020032802e807210e20032802e407210720032802e00721060c320b200d200c410c6c6a210b200d21020340200228020021082003200241086a28020022013602c004200341c0046a200341e0076a10630240024020032802e407220720032802e80722056b2001490d0020032802e00721060c010b200520016a22062005490d412007410174220e2006200e20064b1b220e4100480d410240024020070d00200e101e21060c010b20032802e0072007200e102221060b02402006450d002003200e3602e407200320063602e007200e21070c010b200e4101102d000b2003200520016a220e3602e807200620056a2008200110cd051a2002410c6a2202200b460d320c000b0b20064101102d000b41c0004101102d000b41204101102d000b41364101102d000b411b4101102d000b41a4c0c500413141a888c6001028000b200341f0066a200341a8056a41e00010cd051a200341003a00c0040c300b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b419facc6002101412721020c2f0b418cffc6002101410e21020c330b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41144101102d000b41042102200341043602a0034100210142002104410021070c310b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41084101102d000b200341e0076a200141086a41e80010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341a8016a200341e0076a200341f0066a1066024020032802a8012201450d0020032802ac01210220004181383b0108200020013602002000410a6a41003a0000200020023602040c360b200041023a00080c350b200141186a280200210c200141146a2802002116200141106a280200210b2001410c6a2802002115200141086a280200210d20012802042101200341e0036a41026a2205200241036a2d00003a0000200341a8056a41086a2206200241186a290000370300200341a8056a41106a2207200241206a2d00003a0000200320022f00013b01e0032003200241106a2900003703a80541042108200241046a280000210e200241086a2900002204a7211820022d00002102024002400240024002400240024002400240024002400240024002400240024020010e050001020304000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41d4a2c1001033000b200341e8016a41026a20052d00003a0000200341e0076a41086a2006290300370300200341e0076a41106a20072d00003a0000200320032f01e0033b01e801200320032903a8053703e00741012101410421050240200241ff01714101470d00200341e8066a41026a200341e8016a41026a2d00003a0000200341c0046a41086a200341e0076a41086a290300370300200341c0046a41106a200341e0076a41106a2d00003a0000200320032f01e8013b01e806200320032903e0073703c00441002101200e21050b20034188066a41086a2202200341c0046a41086a29030037030020034188066a41106a2206200341c0046a41106a2d00003a0000200320032f01e8063b01a002200320032903c004370388062003200341ea066a2d00003a00a20202400240024020010d00200341f0066a41176a20022903003700002003418f076a20062d00003a0000200320032d00a2023a00f206200320032f01a0023b01f006200320043700f706200320053600f30620032003290388063700ff064117101e2201450d0a200141002900aff8413700002001410f6a41002900bef841370000200141086a41002900b7f84137000020034297808080f0023702e407200320013602e007200341f0066a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e407450d0020032802e00710200b20034180026a412041e4fdc600410041001002417f470d024122210241e4a2c10021010c010b419affc6002101410f210202400240024002400240024020050e0700010203040506000b2004422088a72102201821010c050b418cffc6002101410e21020c040b4180ffc6002101410c21020c030b41f7fec6002101410921020c020b41e4fec6002101411321020c010b41d3fec6002101411121020b2015450d0c200d10200c0c0b0240024020164101460d00200341a8026a41086a22014200370300200342003703a8024186a3c1004119200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a10032101024020032802e0072202417f470d0041c0f000210e0c020b024020010d0041c0f000210e0c020b20024104490d082001280000210e200110200c010b200c41d804200c41d8044b1b210e0b200b417f4c0d1102400240200b0d00410121010c010b200b101e2201450d060b2001200d200b10cd052107200341a8026a41086a22014200370300200342003703a8024195fcc000410d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e80141002108200341003602e007200341e8016a4110200341e0076a10032101024020032802e0072202417f460d002001450d0020024104490d0520012800002108200110200b4120101e2201450d03200141002900bd9d41370000200141186a41002900d59d41370000200141106a41002900cd9d41370000200141086a41002900c59d41370000200342a080808080043702e407200320013602e007200341f0066a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a220c420037030020034200370388062002200120034188066a1001200341c0026a41186a2005290300370300200341c0026a41106a2006290300370300200341c0026a41086a200c29030037030020032003290388063703c002024020032802e407450d0020032802e00710200b200341003602e807200342013703e0072003200b3602c004200341c0046a200341e0076a1063024020032802e407220220032802e80722066b200b490d0020032802e00721010c0b0b2006200b6a22012006490d3b200241017422052001200520014b1b22054100480d3b0240024020020d002005101e21010c010b20032802e00720022005102221010b02402001450d00200320053602e407200320013602e007200521020c0b0b20054101102d000b200341fc016a41026a20052d00003a0000200341f0066a41086a2006290300370300200341f0066a41106a20072d00003a0000200320032f01e0033b01fc01200320032903a8053703f006410121010240200241ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341c0046a41086a200341f0066a41086a290300370300200341c0046a41106a200341f0066a41106a2d00003a0000200320032f01fc013b01e806200320032903f0063703c00441002101200e21080b20034188066a41086a2202200341c0046a41086a29030037030020034188066a41106a2205200341c0046a41106a2d00003a0000200320032f01e8063b01a002200320032903c004370388062003200341ea066a2d00003a00a202024020010d00200341f7076a2002290300370000200341ff076a20052d00003a0000200320032d00a2023a00e207200320032f01a0023b01e007200320043700e707200320083600e30720032003290388063700ef07200341e0076a108c020c0d0b419affc6002101410f210202400240024002400240024020080e0700010203040510000b2004422088a72102201822010d100c110b418cffc6002101410e2102418cffc6000d0f0c100b4180ffc6002101410c21024180ffc6000d0e0c0f0b41f7fec60021014109210241f7fec6000d0d0c0e0b41e4fec60021014113210241e4fec6000d0c0c0d0b41d3fec60021014111210241d3fec6000d0b0c0c0b0240200241ff0171450d004111210241d3fec60021010c0b0b200d41d8044f0d0641382102419fa3c10021010c0a0b200241ff01710d06200341a8026a41086a22014200370300200342003703a80241b5a2c100411c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e807200342013703e0072003200b3602f006200341f0066a200341e0076a106302400240200b0d0020032802e807210e20032802e407210720032802e00721060c010b200d200b410c6c6a210c200d21020340200228020021082003200241086a28020022013602f006200341f0066a200341e0076a10630240024020032802e407220720032802e80722056b2001490d0020032802e00721060c010b200520016a22062005490d3b2007410174220e2006200e20064b1b220e4100480d3b0240024020070d00200e101e21060c010b20032802e0072007200e102221060b02402006450d002003200e3602e407200320063602e007200e21070c010b200e4101102d000b2003200520016a220e3602e807200620056a2008200110cd051a2002410c6a2202200c470d000b0b200341e8016a41102006200e100502402007450d00200610200b0240200b450d00200b410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b2015450d0a200d10200c0a0b41204101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b200b4101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41174101102d000b200341a8026a41086a22014200370300200342003703a8024186a3c1004119200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e8012003200d3602e007200341e8016a4110200341e0076a410410050c040b0240200b450d00200b410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b02402015450d00200d10200b41d3fec6002101411121020c020b20032006200b6a22053602e807200120066a2007200b10cd051a024002400240024002400240200220056b41034d0d00200221060c010b200541046a22062005490d352002410174220c2006200c20064b1b22064100480d350240024020020d002006101e21010c010b200120022006102221010b2001450d01200320063602e407200320013602e0070b200120056a2008200e6a360000200341c0026a41202001200541046a100502402006450d00200110200b0240200b450d00200710200b200341c0046a41086a2201200341f0066a41086a290300370300200341c0046a41106a2202200341f0066a41106a290300370300200341c0046a41186a2205200341f0066a41186a290300370300200320032903f0063703c004200b0d01410121060c020b20064101102d000b200b101e2206450d010b2006200d200b10cd052106200341ed076a2001290300370000200341f5076a2002290300370000200341fd076a200529030037000020034185086a20032f0088063b000020034187086a2003418a066a2d00003a000020034190086a200b3602002003418c086a200b36020020034188086a2006360200200341003a00e407200341143a00e007200320032903c0043700e507200341e0076a10772015450d03200d10200c030b200b4101102d000b2001450d010b20004181343b010820002002360204200020013602002000410a6a41003a00000c350b200041023a00080c340b200341c0046a41086a220b200141206a290300370300200341c0046a41106a220c200141286a290300370300200320012800093602b80120032001410c6a2800003600bb012003200141186a2903003703c004200141086a2d00002105200141106a2903002109200341d0016a41026a2201200241036a2d00003a0000200341c0026a41086a2206200241186a290000370300200341c0026a41106a2207200241206a2d00003a0000200320022f00013b01d0012003200241106a2900003703c002200241086a29000021044104210e200241046a280000210820022d000021020240024002400240024002400240024002400240024002400240024020050e0400010203000b200341f4076a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a4194f8c0001033000b200341a8056a41086a200b290300370300200341a8056a41106a200c2d00003a0000200320032802b8013602a003200320032800bb013600a303200320032903c0043703a805200341fc016a41026a20012d00003a0000200320032f01d0013b01fc01200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032903c0023703a802410121010240200241ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e801200320032903a8023703e003410021012008210e0b200341e8066a41026a2202200341e8016a41026a2d00003a000020034180026a41106a2205200341e0036a41086a29030037030020034198026a2206200341e0036a41106a2d00003a0000200320032f01e8013b01e806200320032903e0033703880220032004370380020240024020010d00200341ff066a20034180026a41086a290300370000200341f0066a41176a2005290300370000200341f0066a411f6a20062d00003a0000200320032f01e8063b01f0062003200e3600f30620032003290380023700f706200320022d00003a00f206200341e0076a200341f0066a10fe0220032d00ec07450d0141e5ccc000210141c40021020c0b0b419affc6002101410f2102024002400240024002400240200e0e0700010203040510000b2004422088a721022004a721010c0f0b418cffc6002101410e21020c0e0b4180ffc6002101410c21020c0d0b41f7fec6002101410921020c0c0b41e4fec6002101411321020c0b0b41d3fec6002101411121020c0a0b200341e0076a41176a200341a8056a41086a290300370000200341e0076a411f6a200341a8056a41106a2d00003a0000200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef074123101e2201450d02200141002900fee9403700002001411f6a410028009dea40360000200141186a4100290096ea40370000200141106a410029008eea40370000200141086a4100290086ea40370000200342a3808080b0043702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d042001450d042003200236028c062003200136028806200341e0076a20034188066a10f60120032d00cc084103460d032003280284082105200328028008210602402002450d00200110200b02402005450d00200610200b200341a8026a41086a22014200370300200342003703a80241a4f8c000412c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d004201210f0c010b024020010d004201210f0c010b20024108490d062001290000210f200110200b200341f7076a200341a8056a41086a290300370000200341e0076a411f6a200341a8056a41106a2d00003a000020034188086a200341f0066a41086a29030037030020034190086a200341f0066a41106a29030037030020034198086a200341f0066a41186a290300370300200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef07200320032903f00637038008200341003a00a0084127101e2201450d062001411f6a41002900eff840370000200141186a41002900e8f840370000200141106a41002900e0f840370000200141086a41002900d8f840370000200141002900d0f8403700002001412741ce0010222201450d072001200f37002720034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2206420037030020034200370388062001412f20034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20062903003703002003200329038806370380022001102020034100360290062003420137038806200320034188066a3602e003200341e0076a200341e0036a10b90120034180086a20034188066a10ca01200320032d00a00822053a00e0030240200328028c062003280290062201460d0020032802880621020c090b200141016a22022001490d38200141017422052002200520024b1b22054100480d380240024020010d002005101e21020c010b20032802880620012005102221020b02402002450d002003200536028c06200320023602880620032d00e003210520032802900621010c090b20054101102d000b200341e0076a41086a2004370300200341e0076a41106a20032903c002370300200341e0076a41186a2006290300370300200341e0076a41206a20072d00003a0000200320023a00e007200320032f01d0013b00e107200320083602e407200320012d00003a00e30720034198016a200341e0076a2009410110fb01200328029c01210220032802980121010c080b200341e0076a41086a2004370300200341e0076a41106a20032903c002370300200341e0076a41186a2006290300370300200341e0076a41206a20072d00003a0000200320023a00e007200320032f01d0013b00e107200320083602e407200320012d00003a00e307200341a0016a200341e0076a2009410010fb0120032802a401210220032802a00121010c070b41234101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41f3cac0002101411f21020c040b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41274101102d000b41ce004101102d000b2003200141016a36029006200220016a20053a0000200328028c06210120034180026a41202003280288062202200328029006100502402001450d00200210200b200341a8026a41086a22014200370300200342003703a80241a4f8c000412c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f460d002001450d00024020024108490d002001290000210420011020200442017c21040c020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b420221040b200341a8026a41086a22014200370300200342003703a80241a4f8c000412c200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200320043703e007200341e8016a4110200341e0076a41081005200341f7076a200341a8056a41086a290300370000200341ff076a200341a8056a41106a2d00003a0000200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef07024002400240024002404132101e2201450d00200141002900f7f840370000200141306a41002f00a7f9403b0000200141286a410029009ff940370000200141206a4100290097f940370000200141186a410029008ff940370000200141106a4100290087f940370000200141086a41002900fff840370000200342b2808080a0063702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d022001450d022003200236028c062003200136028806200341e0076a20034188066a10ec0120032802e0072205450d0120032902e407210402402002450d00200110200b200320053602c003200320043702c403200341c0036a21012004422088a722022004a7220b470d040c030b41324101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41002102200341003602c803200342083703c003200341c0036a21010b200141046a280200220b2002470d00200241016a22052002490d30200241017422062005200620054b1b220b41ffffffff0171200b470d30200b41037422054100480d300240024020020d002005101e21020c010b200128020020024103742005102221020b2002450d0220012002360200200141046a200b36020020032802c80321020b2001280200220c20024103746a200f3703002003200241016a22053602c803200341f7076a200341a8056a41086a290300370000200341ff076a200341a8056a41106a2d00003a0000200320032800a3033600e307200320032802a0033602e007200320093700e707200320032903a8053700ef074132101e2201450d02200141002900f7f840370000200141306a41002f00a7f9403b0000200141286a410029009ff940370000200141206a4100290097f940370000200141186a410029008ff940370000200141106a4100290087f940370000200141086a41002900fff840370000200342b2808080a0063702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210620034188066a41186a2207420037030020034188066a41106a2208420037030020034188066a41086a220e420037030020034200370388062001200620034188066a100120034180026a41186a200729030037030020034180026a41106a200829030037030020034180026a41086a200e290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341003602e807200342013703e007200320053602880620034188066a200341e0076a10630240024020050d0020032802e807210820032802e407210720032802e00721020c010b410020032802e80722016b2105200241037441086a210e20032802e4072107200c210603402006290300210402400240200720056a4108490d0020032802e00721020c010b200141086a22022001490d32200741017422082002200820024b1b22084100480d320240024020070d002008101e21020c010b20032802e00720072008102221020b02402002450d00200320083602e407200320023602e007200821070c010b20084101102d000b200641086a21062003200141086a22083602e807200220016a2004370000200541786a210520082101200e41786a220e0d000b0b20034180026a412020022008100502402007450d00200210200b0240200b450d00200c10200b41002101200341e0076a41086a41003a0000200341e9076a20032802a003360000200341ec076a20032800a303360000200341e0076a41106a2009370300200341e0076a41186a20032903a80537030020034189086a20032903f00637000020034180086a200341a8056a41086a29030037030020034188086a200341a8056a41106a2d00003a000020034191086a200341f0066a41086a29030037000020034199086a200341f0066a41106a290300370000200341a1086a200341f0066a41186a290300370000200341133a00e007200341b0086a200f370300200341e0076a10770b02402001450d0020004181323b010820002002360204200020013602002000410a6a41003a00000c360b200041023a00080c350b20054108102d000b41324101102d000b200341cc016a41026a22062001410b6a2d00003a0000200341b8016a41086a2207200141206a290300370300200341b8016a41106a2208200141286a280200360200200320012f00093b01cc012003200141186a2903003703b801200141086a2d000021052001410c6a280200210c200141106a280200210e200141146a280200210b2001412c6a2802002117200141306a280200210a200141346a2802002119200141386a2903002109200141c0006a290300210f200341e4016a41026a2201200241036a2d00003a0000200341d0016a41086a220d200241186a290000370300200341d0016a41106a2215200241206a2d00003a0000200320022f00013b01e4012003200241106a2900003703d001200241086a290000210441042116200241046a280000211820022d000021020240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e0800010203090a0b0c000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41c0e9c0001033000b200341f7036a2007290300370000200341ff036a20082d00003a0000200320032f01cc013b01e0032003200b3600eb032003200e3600e7032003200c3600e303200320032903b8013700ef03200320062d00003a00e203200341fc016a41026a20012d00003a0000200320032f01e4013b01fc01200341a8026a41086a200d290300370300200341a8026a41106a20152d00003a0000200320032903d0013703a80241012101410421050240200241ff01714101470d00200341f0066a41026a200341fc016a41026a2d00003a0000200341e0076a41086a200341a8026a41086a290300370300200341e0076a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01f006200320032903a8023703e00741002101201821050b200341e8016a41026a2202200341f0066a41026a2d00003a0000200341c0036a41106a2206200341e0076a41086a290300370300200341d8036a2207200341e0076a41106a2d00003a0000200320032f01f0063b01e801200320032903e0073703c803200320043703c0030240024020010d00200341b7056a200341c0036a41086a290300370000200341bf056a2006290300370000200341c7056a20072d00003a0000200320032f01e8013b01a805200320053600ab05200320032903c0033700af05200320022d00003a00aa05200341a8056a10ff020d0141c9cbc0002101412721020c1f0b419affc6002101410f210202400240024002400240024020050e0700010203040524000b2004422088a721022004a721010c230b418cffc6002101410e21020c220b4180ffc6002101410c21020c210b41f7fec6002101410921020c200b41e4fec6002101411321020c1f0b41d3fec6002101411121020c1e0b200341e0076a200910800320032802e0074101460d1c200341f0076a2d0000210102400240200341e8076a280200450d0020032802e4071020200141ff0171450d1e0c010b200141ff0171450d1d0b200341e0076a41186a200341e0036a41186a290300370300200341e0076a41106a200341e0036a41106a290300370300200341e0076a41086a200341e0036a41086a290300370300200320032903e0033703e0074123101e2201450d0e200141002900fee9403700002001411f6a410028009dea40360000200141186a4100290096ea40370000200141106a410029008eea40370000200141086a4100290086ea40370000200342a3808080b0043702f406200320013602f0062003200341f0066a36028806200341e0076a20034188066a10b90120032802f006210120032802f806210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a1001200341c0046a41186a2005290300370300200341c0046a41106a2006290300370300200341c0046a41086a200729030037030020032003290388063703c004024020032802f406450d0020032802f00610200b0240200341c0046a412041e4fdc600410041001002417f460d0041d0e9c0002101412e21020c1e0b200341a8026a41086a22014200370300200342003703a80241a1eac0004125200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341d8046a2202200341f9076a290000370300200341c0046a41106a200341f1076a290000370300200341c0046a41086a200341e9076a290000370300200320032900e1073703c0040240024020014101460d0020034180026a41001081032003280280022108200328028402210c0240024002402003280288022201450d002008200141057422026a2105200821010340200141086a2900002104200141106a290000211020012900002111200341e0076a41186a200141186a290000370300200341e0076a41106a2010370300200341e0076a41086a2004370300200320113703e007200341e0076a108d02450d02200141206a2101200241606a22020d000b0b41b0edc10021014117210241012105200c450d01200810200c010b200341f0066a41086a2206200341e0076a41086a290300370300200341f0066a41106a2207200341e0076a41106a290300370300200341f0066a41186a220b200341e0076a41186a290300370300200320032903e00722043703c004200320043703f0064120101e220e450d12200e20032903f006370000200e41186a200b290300370000200e41106a2007290300370000200e41086a20062903003700000240024020024120470d004101210b4101210d0c010b200141206a2106200541606a21154101210b4101210d03402006210102400340200341e0076a41186a2202200141186a290000370300200341e0076a41106a2206200141106a290000370300200341e0076a41086a2207200141086a290000370300200320012900003703e007200341e0076a108d02450d012005200141206a2201470d000c030b0b20034188066a41086a2007290300220437030020034188066a41106a2006290300221037030020034188066a41186a20022903002211370300200320032903e007221437038806200341c0046a41186a22072011370300200341c0046a41106a22162010370300200341c0046a41086a22182004370300200320143703c0040240200d200b470d00200b41016a2202200b490d52200b41017422062002200620024b1b220d41ffffff3f71200d470d52200d41057422024100480d5202400240200b0d002002101e210e0c010b200e200b41057420021022210e0b200e450d1c0b200141206a2106200e200b4105746a220220032903c004370000200241186a2007290300370000200241106a2016290300370000200241086a2018290300370000200b41016a210b20152001470d000b0b0240200c450d00200810200b02400240200b0d00410121054117210241b0edc10021010c010b200341e0076a10c501200341f0066a41026a200e20032d00e70741077420032d00e60741067420032d00e50741057420032d00e40741047420032d00e30741037420032d00e20741027420032d00e10741017420032d00e0076a6a6a6a6a6a6a200b704105746a220541026a2d00003a0000200528000321012005280007210220052f00002106200341ed076a200541186a290000370000200341e8076a200541136a290000370300200320063b01f0062003200529000b3703e007410021050b200d450d00200e10200b200341ec066a41026a2206200341f0066a41026a2d00003a0000200341c0036a41086a2207200341e0076a41086a290300370300200341c0036a41106a200341e0076a41106a290300370300200320032f01f0063b01ec06200320032903e0073703c00320050d1f200341e8066a41026a20062d00003a0000200341a0036a41086a2007290300370300200341a0036a410d6a200341c0036a410d6a290000370000200320032f01ec063b01e806200320032903c0033703a0030c010b200341ea066a20032d00c2043a0000200341a0036a41086a200341d3046a290000370300200341ad036a2002290000370000200320032f01c0043b01e806200320032900cb043703a00320032800c304210120032800c70421020b1079210610a902210420034180026a41086a200341a8056a410772220541086a29000037030020034180026a41106a200541106a29000037030020034180026a41186a200541186a2d00003a0000200320032d00aa053a00a202200320032f01a8053b01a00220032005290000370380022019417f4c0d2220032800ab0521050240024020190d00410121070c010b2019101e2207450d110b20072017201910cd05210720034188086a201936020020034184086a20193602002003418e086a20032d00a2023a00002003418f086a200536000020034193086a2003290380023700002003419b086a20034180026a41086a290300370000200341a3086a20034180026a41106a290300370000200341ab086a20034180026a41186a2d00003a000020032007360280082003200f3703f807200320093703f007200320063602e807200320043703e007200320032f01a0023b018c08200341af086a2001360000200341b3086a2002360000200341ae086a200341ea066a2d00003a0000200341b7086a20032903a003370000200341bf086a200341a0036a41086a290300370000200341c4086a200341ad036a290000370000200341003a00cc08200320032f01e8063b01ac084123101e2201450d11200141002900fee9403700002001411f6a410028009dea40360000200141186a4100290096ea40370000200141106a410029008eea40370000200141086a4100290086ea40370000200342a3808080b0043702f406200320013602f0062003200341f0066a36028806200341e0036a20034188066a10b90120032802f006210120032802f806210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001200220034188066a1001200341c0046a41186a2005290300370300200341c0046a41106a2006290300370300200341c0046a41086a200729030037030020032003290388063703c004024020032802f406450d0020032802f00610200b200341203602f4062003200341c0046a3602f006200341e0076a200341f0066a10f5010240200328028408450d0020032802800810200b20034182086a20032903a805370100200341ea076a200341e0036a41086a290300370100200341fa076a200341e0036a41186a2903003701002003418a086a200341a8056a41086a29030037010020034192086a200341a8056a41106a2903003701002003419a086a200341a8056a41186a290300370100200341e0036a41106a2903002104200341123b01e007200341e0076a41126a2004370100200320032903e0033701e207200341e0076a1077410021010240200a450d00201710200b0c1e0b200341a8056a41026a20062d00003a000020034188066a41086a200729030037030020034188066a41106a20082d00003a0000200320032f01cc013b01a805200320032903b80137038806200341fc016a41026a20012d00003a0000200320032f01e4013b01fc01200341a8026a41086a200d290300370300200341a8026a41106a20152d00003a0000200320032903d0013703a80241012101410421050240200241ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002101201821050b20034180026a41106a2202200341e0036a41086a29030037030020034198026a2206200341e0036a41106a2d00003a0000200320032f01e8063b01a002200320032903e003370388022003200341e8066a41026a2d00003a00a20220032004370380020240024020010d00200341ff066a20034180026a41086a290300370000200341f0066a41176a2002290300370000200341f0066a411f6a20062d00003a0000200320032d00a2023a00f206200320032f01a0023b01f006200320053600f30620032003290380023700f7062003200341a8056a41026a2d00003a00e207200320032f01a8053b01e0072003200b3600eb072003200e3600e7072003200c3600e307200341e0076a41176a20034188066a41086a290300370000200341e0076a411f6a20034188066a41106a2d00003a000020032003290388063700ef0720034188016a200341f0066a200341e0076a410110f8012003280288012201450d01200328028c0121020c1f0b419affc6002101410f2102024020050e070003040506071f000b2004422088a721022004a721010c1e0b200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d122001450d12200320023602c404200320013602c004200341e0076a200341c0046a10e30120032802e0072205450d1120032902e407210402402002450d00200110200b2004422088a721012004a721020c1a0b200341a8056a41026a20062d00003a000020034188066a41086a200729030037030020034188066a41106a20082d00003a0000200320032f01cc013b01a805200320032903b80137038806200341fc016a41026a20012d00003a0000200320032f01e4013b01fc01200341a8026a41086a200d290300370300200341a8026a41106a20152d00003a0000200320032903d0013703a802410121010240200241ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101201821160b200341c0046a41176a200341e0036a41086a290300370000200341c0046a411f6a200341e0036a41106a2d00003a0000200320032f01e8013b01c004200320163600c304200320032903e0033700cf042003200341e8016a41026a2d00003a00c204200320043700c704024020010d00200341f0066a41186a2202200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f0062003200341a8056a41026a2d00003a00e207200320032f01a8053b01e0072003200b3600eb072003200e3600e7072003200c3600e307200341e0076a41176a20034188066a41086a290300370000200341e0076a411f6a20034188066a41106a2d00003a000020032003290388063700ef0720034190016a200341f0066a200341e0076a410210f80120032802900122010d0c200341ed076a200b360000200341e9076a200e360000200341f1076a20032903880637000020034182086a20032903f006370100200341f9076a20034188066a41086a29030037000020034181086a20034188066a41106a2d00003a00002003418a086a200341f0066a41086a29030037010020034192086a200341f0066a41106a2903003701002003419a086a200229030037010020034192043b01e007200320032f01a8053b01e2072003200c3600e5072003200341aa056a2d00003a00e407200341e0076a1077410021010c1d0b419affc6002101410f2102024020160e070001020304051d000b2004422088a721022004a721010c1c0b418cffc6002101410e21020c1b0b4180ffc6002101410c21020c1a0b41f7fec6002101410921020c190b41e4fec6002101411321020c180b41d3fec6002101411121020c170b20034188066a41026a20062d00003a0000200341f0066a41086a2007290300370300200341f0066a41106a20082d00003a0000200320032f01cc013b018806200320032903b8013703f00641d3fec60021010240200241ff01710d00200341f7076a200341f0066a41086a290300370000200341ff076a200341f0066a41106a2d00003a0000200320032f0188063b01e0072003200b3600eb072003200e3600e7072003200c3600e307200320032903f0063700ef0720032003418a066a2d00003a00e207200341a8026a41086a22014200370300200342003703a80241a1eac0004125200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341103602c4042003200341e8016a3602c004200341e0076a200341c0046a108203410021010b411121020c160b200241ff01710d02200341a8026a41086a22014200370300200342003703a80241a1eac0004125200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0070d03200341d8046a200341f9076a290000370300200341c0046a41106a200341f1076a290000370300200341c0046a41086a200341e9076a290000370300200320032900e1073703c0040c170b200341bf056a2007290300370000200341c7056a20082d00003a0000200320032f01cc013b01a8052003200b3600b3052003200e3600af052003200c3600ab05200320032903b8013700b705200320062d00003a00aa0541d3fec6002101200241ff01710d0e200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d0b2001450d0b200320023602f406200320013602f006200341e0076a200341f0066a10e30120032802e0072208450d0a20032902e40721042002450d0d200110200c0d0b0240200241ff01710d00200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e807200342013703e0072003200b3602f006200341f0066a200341e0076a10630240200b450d00200b4105742102200c210103402003200341e0076a3602f0062001200341f0066a10b901200141206a2101200241606a22020d000b0b20032802e4072101200341e8016a411020032802e007220220032802e807100502402001450d00200210200b200e450d16200c10200c160b200e450d00200c10200b4111210241d3fec60021010c130b200341e8016a41101004200341d8046a200341f9076a290000370300200341c0046a41106a200341f1076a290000370300200341c0046a41086a200341e9076a290000370300200320032900e1073703c0040c130b20032802940121020c100b41234101102d000b41204101102d000b20194101102d000b41234101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b410121054100210242002104410021010c070b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b42002104410121080c010b20024101102d000b2004a721180240024002402004422088a7220b410574220e450d00410021020340200341c0046a41186a200820026a220141186a2205290000370300200341c0046a41106a200141106a2206290000370300200341c0046a41086a200141086a2207290000370300200320012900003703c004200341e0076a41186a2005290000370300200341e0076a41106a2006290000370300200341e0076a41086a2007290000370300200320012900003703e007200341e0076a200341a8056a412010cf050d02200e200241206a2202470d000b0b410021164101211502402018450d00200810200b4100210d0c010b20034180026a41086a2205200341c0046a41086a29030037030020034180026a41106a2206200341c0046a41106a29030037030020034180026a41186a2207200341c0046a41186a290300370300200320032903c00422043703880620032004370380024120101e2215450d022015200329038002370000201541186a2007290300370000201541106a2006290300370000201541086a200529030037000002400240200b41057441606a2002470d004101210d410121160c010b200141206a21052008200b4105746a220c41606a210a4101210d410121160340200521010240034020034188066a41186a2207200141186a220229000037030020034188066a41106a220e200141106a220529000037030020034188066a41086a220b200141086a22062900003703002003200129000037038806200341e0076a41186a2002290000370300200341e0076a41106a2005290000370300200341e0076a41086a2006290000370300200320012900003703e007200341e0076a200341a8056a412010cf050d01200c200141206a2201470d000c030b0b200341c0026a41086a200b2903002204370300200341c0026a41106a200e2903002209370300200341c0026a41186a2007290300220f370300200320032903880622103703c0022007200f370300200e2009370300200b2004370300200320103703880602402016200d470d00200d41016a2202200d490d38200d41017422052002200520024b1b221641ffffff3f712016470d38201641057422024100480d3802400240200d0d002002101e21150c010b2015200d4105742002102221150b2015450d060b200141206a21052015200d4105746a2202200329038806370000200241186a2007290300370000200241106a200e290300370000200241086a200b290300370000200d41016a210d200a2001470d000b0b2018450d00200810200b200341a8026a41086a22014200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e807200342013703e0072003200d3602f006200341f0066a200341e0076a10630240200d450d00200d41057421022015210103402003200341e0076a3602f0062001200341f0066a10b901200141206a2101200241606a22020d000b0b20032802e4072101200341e8016a411020032802e007220220032802e807100502402001450d00200210200b410021012016450d00201510200b411121020c050b41204101102d000b20024101102d000b200341d7046a20034188066a41086a290300370000200341df046a20034188066a41106a2d00003a0000200320032f01a8053b01c0042003200b3600cb042003200e3600c7042003200c3600c30420032003290388063700cf042003200341aa056a2d00003a00c20402400240024020012002460d00200221060c010b024020022004a72206470d00200241016a22012002490d33200241017422062001200620014b1b220641ffffff3f712006470d33200641057422014100480d330240024020020d002001101e21050c010b200520024105742001102221050b2005450d0220044280808080708321040b2004422088a721010b200520014105746a220220032903c004370000200241186a200341c0046a41186a290300370000200241106a200341c0046a41106a290300370000200241086a200341c0046a41086a290300370000200341a8026a41086a22024200370300200342003703a80241c6eac000411d200341a8026a1000200341e8016a41086a2002290300370300200320032903a8023703e8010240024020050d00200341e8016a411010040c010b200341003602e807200342013703e0072003200141016a22023602c004200341c0046a200341e0076a106302402002450d00200141057441206a21022005210103402003200341e0076a3602c0042001200341c0046a10b901200141206a2101200241606a22020d000b0b20032802e4072101200341e8016a411020032802e007220220032802e807100502402001450d00200210200b2006450d00200510200b200341ed076a200b360000200341e9076a200e360000200341f1076a20032903880637000020034182086a20032903f006370100200341f9076a20034188066a41086a29030037000020034181086a20034188066a41106a2d00003a00002003418a086a200341f0066a41086a29030037010020034192086a200341f0066a41106a2903003701002003419a086a20034188076a29030037010020034192023b01e007200320032f01a8053b01e2072003200c3600e5072003200341aa056a2d00003a00e407200341e0076a1077410021010c030b20014101102d000b41f0cbc0002101413f21020b200a450d00201710200b2001450d010b20004181303b010820002002360204200020013602002000410a6a41003a00000c330b200041023a00080c320b200141186a2d000021082001410c6a2802002107200141106a2903002204a721062004422088a7210520022d0000210202400240024002400240024002400240200141086a2802000e050001020304000b200341f4076a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a4194b4c6001033000b0240200241ff01710d00200341a8026a41086a22014200370300200342003703a80241a4b4c600412b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d00420121040c010b024020010d00420121040c010b20024108490d0720012900002104200110200b2005417f4c0d070240024020050d00410121010c010b2005101e2201450d090b20012007200510cd05210c4126101e2201450d092001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0a2001200437002620034188066a41186a2202420037030020034188066a41106a220e420037030020034188066a41086a220b420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200e29030037030020034180026a41086a200b29030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e807220e6b2005490d0020032802e00721010c190b200e20056a2201200e490d312002410174220b2001200b20014b1b220b4100480d310240024020020d00200b101e21010c010b20032802e0072002200b102221010b02402001450d002003200b3602e407200320013602e007200b21020c190b200b4101102d000b4111210141d3fec60021022006450d16200710200c160b0240200241ff0171450d0041d3fec6002102411121010c150b200341e0076a200141206a2903002204108003024020032802e0074101470d00200341e8076a280200210120032802e40721020c150b200341ea016a200341f3076a2d00003a0000200320032f00f1073b01e8012005417f4c0d05200341e8076a280200210120032802e407210e0240024020050d00410121020c010b2005101e2202450d0a0b20022007200510cd05210c02402001450d00200e10200b4126101e2201450d0a2001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0b2001200437002620034188066a41186a2202420037030020034188066a41106a220e420037030020034188066a41086a220b420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200e29030037030020034180026a41086a200b29030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e807220e6b2005490d0020032802e00721010c140b200e20056a2201200e490d2f2002410174220b2001200b20014b1b220b4100480d2f0240024020020d00200b101e21010c010b20032802e0072002200b102221010b02402001450d002003200b3602e407200320013602e007200b21020c140b200b4101102d000b200241ff01710d11200341e0076a2004108003024020032802e0074101470d00200341e8076a28020021010c020b200341fe016a200341f3076a2d00003a00002003200341f1076a2f00003b01fc01200341ec076a2802002105200341e0076a41086a280200210e20032802e40721084126101e2201450d0b2001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0c2001200437002620034188066a41186a2202420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200629030037030020034180026a41086a200729030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e80722066b2005490d0020032802e00721010c110b200620056a22012006490d2e200241017422072001200720014b1b22074100480d2e0240024020020d002007101e21010c010b20032802e00720022007102221010b02402001450d00200320073602e407200320013602e007200721020c110b20074101102d000b200241ff01710d10200341e0076a200410800320032802e0074101470d01200341e8076a28020021010b20032802e40721020c120b200341fe016a200341f3076a2d00003a00002003200341f1076a2f00003b01fc01200341ec076a2802002105200341e0076a41086a280200210e20032802e40721084126101e2201450d0a2001411e6a41002900ccae46370000200141186a41002900c6ae46370000200141106a41002900beae46370000200141086a41002900b6ae46370000200141002900aeae463700002001412641cc0010222201450d0b2001200437002620034188066a41186a2202420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062001412e20034188066a100120034180026a41186a200229030037030020034180026a41106a200629030037030020034180026a41086a200729030037030020032003290388063703800220011020200341003602e807200342013703e007200320053602f006200341f0066a200341e0076a1063024020032802e407220220032802e80722066b2005490d0020032802e00721010c0d0b200620056a22012006490d2b200241017422072001200720014b1b22074100480d2b0240024020020d002007101e21010c010b20032802e00720022007102221010b02402001450d00200320073602e407200320013602e007200721020c0d0b20074101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b102c000b20054101102d000b41264101102d000b41cc004101102d000b20054101102d000b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b2003200620056a22073602e807200120066a2008200510cd051a41002106200341003a00e00302400240024020022007460d00200221050c010b200241016a22052002490d20200241017422062005200620054b1b22054100480d200240024020020d002005101e21010c010b200120022005102221010b2001450d01200320053602e407200320013602e00720032d00e00321060b200120076a20063a000020034180026a41202001200741016a100502402005450d00200110200b0240200e450d00200810200b200341f0076a2004370300200341e8076a4201370300200341113a00e007200341e0076a10770c070b20054101102d000b2003200620056a22073602e807200120066a2008200510cd051a200341013a00e00302400240024020022007460d0020022105410121020c010b200241016a22052002490d1f200241017422062005200620054b1b22054100480d1f0240024020020d002005101e21010c010b200120022005102221010b2001450d01200320053602e407200320013602e00720032d00e00321020b200120076a20023a000020034180026a41202001200741016a100502402005450d00200110200b0240200e450d00200810200b200341f0076a2004370300200341e8076a4201370300200341113a00e007200341e0076a10770c060b20054101102d000b4111210141d3fec60021020c020b2003200e20056a220b3602e8072001200e6a200c200510cd051a200320083a00e0030240024002402002200b460d002002210e0c010b200241016a22082002490d1d2002410174220e2008200e20084b1b220e4100480d1d0240024020020d00200e101e21010c010b20012002200e102221010b2001450d012003200e3602e407200320013602e00720032d00e00321080b2001200b6a20083a000020034180026a41202001200b41016a10050240200e450d00200110200b02402005450d00200c10200b200341f0076a2004370300200341e8076a4201370300200341113a00e007200341e0076a10772006450d04200710200c040b200e4101102d000b2006450d00200710200b200041812e3b010820002001360204200020023602002000410a6a41003a00000c200b2003200e20056a220b3602e8072001200e6a200c200510cd051a200320083a00e003024002402002200b460d002002210e0c010b200241016a22082002490d192002410174220e2008200e20084b1b220e4100480d190240024020020d00200e101e21010c010b20012002200e102221010b2001450d022003200e3602e407200320013602e00720032d00e00321080b2001200b6a20083a000020034180026a41202001200b41016a10050240200e450d00200110200b02402005450d00200c10200b200341a8026a41086a22014200370300200342003703a80241a4b4c600412b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f460d002001450d00024020024108490d002001290000210920011020200942017c21090c020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b420221090b200341a8026a41086a22014200370300200342003703a80241a4b4c600412b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200320093703e007200341e8016a4110200341e0076a41081005200341e0076a41106a2004370300200341e0076a41086a4200370300200341113a00e007200341e0076a10772006450d00200710200b200041023a00080c1e0b200e4101102d000b200341e0076a200141086a41d80010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f00620034180016a200341e0076a200341f0066a10830302402003280280012201450d002003280284012102200041812c3b0108200020013602002000410a6a41003a0000200020023602040c1d0b200041023a00080c1c0b200341e0076a41286a200141306a290300370300200341e0076a41206a200141286a290300370300200341e0076a41186a200141206a290300370300200341e0076a41106a200141186a290300370300200341e0076a41086a200141106a2903003703002003200141086a2903003703e007200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341f8006a200341e0076a200341f0066a108403024020032802782201450d00200328027c210220004181283b0108200020013602002000410a6a41003a0000200020023602040c1c0b200041023a00080c1b0b200341e0076a200141086a41c80010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341f0006a200341e0076a200341f0066a108503024020032802702201450d002003280274210220004181263b0108200020013602002000410a6a41003a0000200020023602040c1b0b200041023a00080c1a0b200241086a290000210441042105200241046a280000210e2001410c6a2802002115200141086a28020021062001280204210820022d00002107200341fc016a41026a220b200241036a2d00003a0000200341a8026a41086a220c200241186a290000370300200341a8026a41106a220d200241206a2d00003a0000200320022f00013b01fc012003200241106a2900003703a80241012101024020074101470d00200341e8016a41026a200b2d00003a0000200341e0036a41086a200c290300370300200341e0036a41106a200d2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101200e21050b200341e8066a41026a200341e8016a41026a2d00003a000020034180026a41106a200341e0036a41086a29030037030020034180026a41186a200341e0036a41106a2d00003a0000200320032f01e8013b01e806200320032903e003370388022003200437038002024002400240024020010d00200341ff066a20034180026a41086a29030037000020034187076a20034180026a41106a2903003700002003418f076a20034198026a2d00003a0000200320032f01e8063b01f006200320053600f30620032003290380023700f7062003200341ea066a2d00003a00f206200341e0006a200341f0066a1086032003290360200341e0006a41086a2903008450450d01419686c5002101411b21020c020b419affc6002101410f210202400240024002400240024020050e0700010203040507000b2004422088a721022004a721010c060b418cffc6002101410e21020c050b4180ffc6002101410c21020c040b41f7fec6002101410921020c030b41e4fec6002101411321020c020b41d3fec6002101411121020c010b200341a8026a41086a22014200370300200342003703a802418486c5004112200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a10032101024002400240024020032802e0072202417f470d0041802021020c010b024020010d0041802021020c010b20024104490d0120012800002102200110200b0240201520024d0d0041b186c5002101410d21020c030b4109101e2201450d01200141086a41002d00c686453a0000200141002900be86453700002003428980808090013702e407200320013602e007200341f0066a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2207420037030020034188066a41086a220e420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200729030037030020034180026a41086a200e290300370300200320032903880637038002024020032802e407450d0020032802e00710200b200341203602e407200320034180026a3602e00720082015200341e0076a10a30202402006450d00200810200b200341e9076a200341f8066a290300370000200341f1076a20034180076a290300370000200341f9076a20034188076a2903003700002003410c3a00e007200320032903f0063700e107200341e0076a10770c030b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41094101102d000b02402006450d00200810200b2001450d0020004181243b010820002002360204200020013602002000410a6a41003a00000c1a0b200041023a00080c190b200341c2036a2206200141076a2d00003a0000200341c0026a41086a22072001411c6a290200370300200341c0026a41106a2208200141246a280200360200200320012f00053b01c0032003200141146a2902003703c002200141106a28020021052001410c6a280200210b200141086a280200210e20022d000021020240024002400240024002400240024002400240024002400240024002400240024002400240024020012d0004220c0e050001020304000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41c8edc1001033000b0240200241ff01710d00410021010240200541057422020d004108210d410021150c0f0b2002410575221541ffffff1f712015470d24201541067422064100480d242006101e220d0d0e20064108102d000b200b450d0c200e10200c0c0b200341d7046a2007290300370000200341df046a20082d00003a0000200320032f01c0033b01c004200320053600cb042003200b3600c7042003200e3600c304200320032903c0023700cf04200320062d00003a00c204200241ff01710d0a0240200341c0046a10e302450d0041d8edc1002101412621020c0f0b200341f0066a41186a200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f006200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e0072003410036028806200341e0076a411020034188066a100321012003280288062202417f460d032001450d03200320023602ac05200320013602a80520034188066a200341a8056a10e4022003280288062205450d02200329028c06210402402002450d00200110200b200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e007200341e0076a21062004422088a722022004a7470d080c070b200341f7036a2007290300370000200341ff036a20082d00003a0000200320032f01c0033b01e003200320053600eb032003200b3600e7032003200e3600e303200320032903c0023700ef03200320062d00003a00e203200241ff01710d090240200341e0036a10e3020d0041feedc1002101411a21020c0e0b200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e007200341003602f006200341e0076a4110200341f0066a1003210120032802f0062202417f460d042001450d04200320023602c404200320013602c004200341f0066a200341c0046a10e40220032802f006220a450d0320032902f40621042002450d05200110200c050b200241ff01710d0902401079200e490d004198eec1002101411c21020c0e0b200341a8026a41086a22014200370300200342003703a80241a1c6c1004112200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e0072003200e3602f006200341e0076a4110200341f0066a410410050c0e0b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a29030037030041082105200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e0074200210441002102200341e0076a21060c030b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b420021044108210a0b200a2004422088a722194106746a21052004a7211a200a210102400240024002400240024002402019450d00200341e0076a41146a2102200341e0076a411c6a211741002106200341a8056a41186a2108200341a8056a41206a210d200341a8056a41286a211502400340200341a8056a41086a2216200a20066a2201411c6a290200370300200341a8056a41106a2218200141246a29020037030020082001412c6a290200370300200d200141346a29020037030020152001413c6a2802003602002003200141146a2902003703a805200141106a2802002207450d0120012903002104200141086a2903002109200220032903a805370200200241086a2016290300370200200241106a2018290300370200200241186a2008290300370200200241206a200d290300370200200241286a2015280200360200200320093703e807200320043703e007200320073602f00702402017200341e0036a412010cf050d00024020032802f407450d00200710200b200641c0006a2106200141c0006a2005470d010c040b0b200341c0046a41286a200241286a2802002208360200200341c0046a41206a200241206a290200220f37030020034188066a41086a200241086a290200221037030020034188066a41106a200241106a290200221137030020034188066a41186a200241186a290200221437030020034188066a41206a200f37030020034188066a41286a200836020020032002290200221237038806200341f0066a41286a22022008360200200341f0066a41206a2208200f370300200341f0066a41186a220d2014370300200341f0066a41106a22152011370300200341f0066a41086a22162010370300200320123703f006200341e0076a41286a22182002280200360200200341e0076a41206a22022008290300370300200341e0076a41186a2217200d290300370300200341e0076a41106a220d2015290300370300200341e0076a41086a22152016290300370300200320032903f0063703e00741c000101e2208450d062008200437030020082007360210200820032903e007370214200820093703082008411c6a2015290300370200200841246a200d2903003702002008412c6a2017290300370200200841346a20022903003702002008413c6a2018280200360200201941067441406a2006470d034101211b4101210d0c040b200141c0006a21010b20052001460d000340200141c0006a21020240200141146a280200450d00200141106a28020010200b2002210120052002470d000b0b410821084100210d0240201a0d004100211b0c030b200a10204100211b0c020b200341a8056a41086a2215200141dc006a290200370300200341a8056a41106a2216200141e4006a290200370300200341a8056a41186a2218200141ec006a290200370300200341a8056a41206a2217200141f4006a290200370300200341a8056a41286a2219200141fc006a2802003602002003200141d4006a2902003703a80520014180016a210602400240200141d0006a28020022070d004101210d4101211b0c010b200341f4076a2102200141c8006a2903002104200141c0006a2903002109200341e0076a411c6a211c4101210d4101211b03402006210102400340200220032903a805370200200241086a22062015290300370200200241106a221d2016290300370200200241186a221e2018290300370200200241206a221f2017290300370200200241286a22202019280200360200200320043703e807200320093703e007200320073602f007201c200341e0036a412010cf050d01024020032802f407450d00200710200b20052001460d04200141106a2802002107200141086a29030021042001290300210920152001411c6a2902003703002016200141246a29020037030020182001412c6a2902003703002017200141346a29020037030020192001413c6a2802003602002003200141146a2902003703a805200141c0006a210120070d000b200121060c020b200341c0046a41286a20202802002220360200200341c0046a41206a201f290200220f37030020034188066a41086a2006290200221037030020034188066a41106a201d290200221137030020034188066a41186a201e290200221437030020034188066a41206a200f37030020034188066a41286a202036020020032002290200221237038806200341f0066a41286a22062020360200200341f0066a41206a221d200f370300200341f0066a41186a221e2014370300200341f0066a41106a221f2011370300200341f0066a41086a22202010370300200320123703f006200341e0076a41286a22212006280200360200200341e0076a41206a2222201d290300370300200341e0076a41186a221d201e290300370300200341e0076a41106a221e201f290300370300200341e0076a41086a221f2020290300370300200320032903f0063703e0070240201b200d470d00200d41016a2206200d490d22200d410174221b2006201b20064b1b221b41ffffff1f71201b470d22201b41067422064100480d2202400240200d0d002006101e21080c010b2008200d4106742006102221080b2008450d060b2008200d4106746a220620043703082006200937030020062007360210200641146a20032903e0073702002006411c6a201f290300370200200641246a201e2903003702002006412c6a201d290300370200200641346a20222903003702002006413c6a2021280200360200200d41016a210d20052001460d02200141106a2802002107200141086a29030021042001290300210920152001411c6a2902003703002016200141246a29020037030020182001412c6a2902003703002017200141346a29020037030020192001413c6a2802003602002003200141146a2902003703a805200141c0006a210620070d000b200141c0006a21060b20052006460d000340200641c0006a21010240200641146a280200450d00200641106a28020010200b2001210620052001470d000b0b201a450d00200a10200b200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e007200341f0066a2008200d108703200341e0076a411020032802f006220120032802f8061005024020032802f406450d00200110200b0240200d450d00200d4106742102200841106a210103400240200141046a280200450d00200128020010200b200141c0006a2101200241406a22020d000b0b41002101201b450d08200810200c090b41c0004108102d000b20064108102d000b024020022004a7470d00200241016a22012002490d1b200241017422072001200720014b1b220141ffffff1f712001470d1b200141067422074100480d1b0240024020020d002007101e21050c010b200520024106742007102221050b2005450d022004428080808070832001ad8421040b2004422088a721020b200520024106746a220142083703102001420037030820014200370300200141186a41003602002001200629020037021c200141246a200641086a2902003702002001412c6a200641106a290200370200200141346a200641186a290200370200200341a8026a41086a22014200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2001290300370300200320032903a8023703e007024020050d00200341e0076a41101004410021010c060b20034188066a2005200241016a2201108703200341e0076a4110200328028806220620032802900610050240200328028c06450d00200610200b2004a7210602402001450d00200541106a2101200241067441c0006a210203400240200141046a280200450d00200128020010200b200141c0006a2101200241406a22020d000b0b02402006450d00200510200b410021010c050b20074108102d000b41d3fec6002101411121020c030b41d3fec6002101411121020c030b02402005450d00200e20026a2116200541057421054100200e6b2118200d2101200e21020340200341e0076a41186a2206200241186a290000370300200341e0076a41106a2207200241106a290000370300200341e0076a41086a2208200241086a290000370300200320022900003703e007200141186a4100360200200141106a420837030020014200370308200142003703002001411c6a20032903e007370000200141246a20082903003700002001412c6a2007290300370000200141346a2006290300370000200141c0006a2101200241206a2102200541606a22050d000b201620186a41606a41057641016a21010b0240200b450d00200e10200b200341a8026a41086a22024200370300200342003703a802418cc6c1004115200341a8026a1000200341e0076a41086a2002290300370300200320032903a8023703e007200341f0066a200d2001108703200341e0076a411020032802f006220220032802f8061005024020032802f406450d00200210200b02402001450d0020014106742102200d41106a210103400240200141046a280200450d00200128020010200b200141c0006a2101200241406a22020d000b0b410021012015450d00200d10200b0b0240200c4101470d00200c417f6a4103490d00200b450d00200e10200b2001450d010b20004181223b010820002002360204200020013602002000410a6a41003a00000c190b200041023a00080c180b200341e0076a200141086a41d00010cd051a200341f0066a41206a200241206a2d00003a0000200341f0066a41186a200241186a290000370300200341f0066a41106a200241106a290000370300200341f0066a41086a200241086a290000370300200320022900003703f006200341d8006a200341e0076a200341f0066a108803024020032802582201450d00200328025c210220004181203b0108200020013602002000410a6a41003a0000200020023602040c180b200041023a00080c170b200141386a2903002109200141306a290300210f2001412c6a280200211b200141286a280200210d200141246a2802002118200141206a28020021192001411c6a2802002115200141186a280200210a200141146a2802002117200141106a28020021162001410c6a2802002106200141086a2d0000210520012d0009211a200341d0016a41026a2207200241036a2d00003a0000200341a8056a41086a2208200241186a290000370300200341a8056a41106a220e200241206a2d00003a0000200320022f00013b01d0012003200241106a2900003703a805200241086a29000021044104210b200241046a280000210c20022d0000210102400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e06000102030a0b000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41fcb2c2001033000b200341fc016a41026a20072d00003a0000200341a8026a41086a2008290300370300200341a8026a41106a200e2d00003a0000200320032f01d0013b01fc01200320032903a8053703a80241012102410421070240200141ff01714101470d00200341ec066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01ec06200320032903a8023703e00341002102200c21070b200341e8066a41026a2201200341ec066a41026a2d00003a0000200341a0036a41106a2208200341e0036a41086a290300370300200341b8036a220e200341e0036a41106a2d00003a0000200320032f01ec063b01e806200320032903e0033703a803200320043703a0030240024020020d00200341cf046a200341a0036a41086a290300370000200341d7046a2008290300370000200341df046a200e2d00003a0000200320032f01e8063b01c004200320073600c304200320032903a0033700c704200320012d00003a00c204200341286a200341c0046a10890341dbb4c2002101412021022003290328200341286a41086a29030084500d26200341c0046a10ff020d010c260b419affc6002101410f210202400240024002400240024020070e070001020304052b000b2004422088a721022004a721010c2a0b418cffc6002101410e21020c290b4180ffc6002101410c21020c280b41f7fec6002101410921020c270b41e4fec6002101411321020c260b41d3fec6002101411121020c250b42002104200341a8026a41086a22014200370300200342003703a802418cb3c2004112200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d0042e40021100c010b024020010d0042e40021100c010b20024110490d0b200141086a290000210420012900002110200110200b02402010200f56200420095620042009511b450d00419eb3c2002101411021020c250b024020170d0041aeb3c2002101412221020c250b200341a8026a41086a22014200370300200342003703a802419db2c2004114200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d0041e40021020c010b024020010d0041e40021020c010b20024104490d0c20012800002102200110200b0240201720024d0d0041d0b3c2002101411021020c250b024020190d0041e0b3c2002101412921020c250b200341a8026a41086a22014200370300200342003703a80241b1b2c200411b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d004190ce0021020c010b024020010d004190ce0021020c010b20024104490d0d20012800002102200110200b0240201920024d0d004189b4c2002101411721020c250b0240201b0d0041a0b4c2002101412721020c250b200341a8026a41086a22014200370300200342003703a80241ccb2c2004118200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f470d00418089fa0021020c010b024020010d00418089fa0021020c010b20024104490d0e20012800002102200110200b0240201b20024d0d0041c7b4c2002101411421020c250b0240200341c0046a200f2009108a03450d0041fbb4c2002101411f21020c250b200341a8026a41086a22014200370300200342003703a80241e4b2c2004117200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a100321010240024020032802e0072202417f460d002001450d00024020024104490d002001280000210220011020200241016a211a0c020b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b4101211a0b200341a8026a41086a22014200370300200342003703a80241e4b2c2004117200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e8012003201a3602e007200341e8016a4110200341e0076a4104100520034188066a41186a2202420037030020034188066a41106a2207420037030020034188066a41086a2208420037030020034200370388062018201b20034188066a1001200341f0066a41186a220e2002290300370300200341f0066a41106a220b2007290300370300200341f0066a41086a220c200829030037030020032003290388063703f006200341c0036a41086a200341c0046a410772220141086a290000370300200341c0036a41106a200141106a290000370300200341c0036a41186a200141186a2d00003a0000200320032f01c0043b01a002200320032d00c2043a00a202200320012900003703c00320032800c304211d200341c0026a41086a200c290300370300200341c0026a41106a200b290300370300200341c0026a41186a200e290300370300200320032903f0063703c0021079211e200341e0076a41186a200e290300370300200341e0076a41106a200b290300370300200341e0076a41086a200c290300370300200320032903f0063703e0074118101e2201450d0e200141002900ecfc41370000200141106a41002900fcfc41370000200141086a41002900f4fc413700002003429880808080033702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210e20024200370300200742003703002008420037030020034200370388062001200e20034188066a100120034180026a41186a200229030037030020034180026a41106a200729030037030020034180026a41086a2008290300370300200320032903880637038002024020032802e403450d0020032802e00310200b4101211c024020034180026a412041e4fdc600410041001002417f470d00200341e0076a41186a200341f0066a41186a290300370300200341e0076a41106a200341f0066a41106a290300370300200341e0076a41086a200341f0066a41086a290300370300200320032903f0063703e0074118101e2201450d104100211c200141002900ecfc41370000200141106a41002900fcfc41370000200141086a41002900f4fc413700002003429880808080033702e403200320013602e0032003200341e0036a36028806200341e0076a20034188066a10b90120032802e003210120032802e803210220034188066a41186a2207420037030020034188066a41106a2208420037030020034188066a41086a220e420037030020034200370388062001200220034188066a100120034180026a41186a200729030037030020034180026a41106a200829030037030020034180026a41086a200e290300370300200320032903880637038002024020032802e403450d0020032802e00310200b200341203602e407200320034180026a3602e0072018201b200341e0076a10a302200d450d00201810200b20034188086a201936020020034184086a2015360200200341fc076a2017360200200341e0076a41186a201636020020034192086a20032d00a2023a000020034193086a201d36000020034197086a20032903c0033700002003419f086a200341c0036a41086a290300370000200341a7086a200341c0036a41106a290300370000200341af086a200341c0036a41186a2d00003a00002003200f3703e0072003201e36028c082003200a36028008200320063602f4072003201a3602f007200320032f01a0023b019008200320093703e807200341c8086a200341c0026a41186a290300370300200341c0086a200341c0026a41106a290300370300200341b8086a200341c0026a41086a290300370300200341d4086a20032800bb01360000200341003a00d008200320032903c0023703b008200320032802b8013600d1084113101e2201450d102001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d112001201a36001320034188066a41186a2202420037030020034188066a41106a2207420037030020034188066a41086a2208420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200729030037030020034180026a41086a2008290300370300200320032903880637038002200110202003412036028c06200320034180026a36028806200341e0076a20034188066a108b03024020032802f807450d0020032802f40710200b0240200328028408450d0020032802800810200b200341a8026a41086a22014200370300200342003703a80241aefac100411b200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602e007200341e8016a4110200341e0076a1003210120032802e0072202417f460d132001450d132003200236028c062003200136028806200341e0076a20034188066a10c10120032802e0072219450d1220032902e407210402402002450d00200110200b20032019360288062003200437028c0620034188066a21012004422088a722022004a7221b470d220c210b200341fc016a41026a20072d00003a0000200341a8026a41086a2008290300370300200341a8026a41106a200e2d00003a0000200320032f01d0013b01fc01200320032903a8053703a80241012102410421050240200141ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002102200c21050b200341c0036a41106a2201200341e0036a41086a290300370300200341d8036a2207200341e0036a41106a2d00003a0000200320032f01e8063b01a002200320032903e0033703c8032003200341ea066a2d00003a00a202200320043703c0030240024020020d00200341cf046a200341c0036a41086a290300370000200341d7046a2001290300370000200341df046a20072d00003a0000200320032d00a2023a00c204200320032f01a0023b01c004200320053600c304200320032903c0033700c704200341c0046a10e3020d01419ab5c2002101412521020c270b419affc6002101410f2102024020050e0700030405060726000b2004422088a721022004a721010c250b4113101e2201450d132001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d142001200636001320034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2207420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20072903003703002003200329038806370380022001102020034180026a412041e4fdc600410041001002417f460d1f200341e0076a2006108c03024020032d00d008450d0041dbb5c2002101411d21020c1f0b0240200328028c08108d03450d0041f8b5c2002101412a21020c1f0b200341f0066a41186a200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f00620032006360290074122101e2201450d15200141002900c9b642370000200141206a41002f00e9b6423b0000200141186a41002900e1b642370000200141106a41002900d9b642370000200141086a41002900d1b642370000200342a2808080a0043702e403200320013602e003200341f0066a200341e0036a10ca012003280290072105024020032802e403220220032802e80322016b4104490d0020032802e00321020c1e0b200141046a22072001490d36200241017422012007200120074b1b22014100480d360240024020020d002001101e21020c010b20032802e00320022001102221020b02402002450d00200320013602e403200320023602e00320032802e80321010c1e0b20014101102d000b200341fc016a41026a20072d00003a0000200341a8026a41086a2008290300370300200341a8026a41106a200e2d00003a0000200320032f01d0013b01fc01200320032903a8053703a802410121020240200141ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a000020034180026a41106a200341b0026a29030037030020034198026a200341a8026a41106a2d00003a0000200320032f01fc013b01e8012003200437038002200320032903a8023703880241002102200c210b0b200341c0036a41086a220120034180026a41086a290300370300200341c0036a41106a220520034180026a41106a290300370300200341c0036a41186a220720034180026a41186a2d00003a0000200320032f01e8013b01a00220032003290380023703c0032003200341ea016a2d00003a00a202024020020d00200341c0046a410f6a2001290300370000200341d7046a2005290300370000200341df046a20072d00003a0000200320032d00a2023a00c204200320032f01a0023b01c0042003200b3600c304200320032903c0033700c7044113101e2201450d162001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d172001200636001320034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2207420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20072903003703002003200329038806370380022001102020034180026a412041e4fdc600410041001002417f470d0641bfb5c2002101411c21020c240b419affc6002101410f21020240200b0e0700010203040524000b20032802c003210120032802c40321020c230b418cffc6002101410e21020c220b4180ffc6002101410c21020c210b41f7fec6002101410921020c200b41e4fec6002101411321020c1f0b41d3fec6002101411121020c1e0b200341e0076a2006108c030240200341c0046a20034190086a412010cf05450d0041ebb6c2002101411c21020c160b024020032d00d008450d0041dbb5c2002101411d21020c160b42002109200341a8026a41086a22014200370300200342003703a8024187b7c2004119200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341003602f006200341e8016a4110200341f0066a100321010240024020032802f0062202417f470d00420521040c010b024020010d00420521040c010b20024110490d12200141086a290000210920012900002104200110200b200341386a200341c0046a20042009108e03200341f0066a41186a200341386a41186a29030037030020032003290348370380072003200341386a41086a2903003703f806200320032903383703f0062003200341f0066a3602880620034188066a109402200341c0046a20032903e007220f20047d200341e0076a41086a29030020097d200f200454ad7d108f03412821022006410110900322010d1520034198076a2006360200200341fd066a200341c0046a41086a29030037000020034185076a200341d0046a2903003700002003418d076a200341c0046a41186a290300370000200341013a00f406200341093a00f006200320032903c0043700f506200341f0066a10770240200341e0076a41186a280200450d0020032802f40710200b20034184086a280200450d1f20032802800810200c1f0b200141ff01710d134113101e2201450d112001410f6a4100280093fd41360000200141086a410029008cfd4137000020014100290084fd4137000020014113412610222201450d122001200636001320034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2207420037030020034200370388062001411720034188066a100120034180026a41186a200229030037030020034180026a41106a200529030037030020034180026a41086a20072903003703002003200329038806370380022001102020034180026a412041e4fdc600410041001002417f460d17200341e0076a2006108c0302400240024020032d00d008450d0041dbb5c2002101411d21020c010b20034190086a20032903e007200341e0076a41086a290300108f0341282102200641011090032201450d010b0240200341f8076a280200450d0020032802f40710200b20034184086a280200450d1d20032802800810200c1d0b200341f0066a41086a2006360200200341063a00f406200341093a00f006200341f0066a10770240200341f8076a280200450d0020032802f40710200b20034184086a280200450d1e20032802800810200c1e0b200141ff01710d12024020060d0041a0b7c2002101412921020c1d0b200341a8026a41086a22014200370300200342003703a8024196fac1004118200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200320063602e007200341e8016a4110200341e0076a410410050c1d0b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41184101102d000b41184101102d000b41134101102d000b41264101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41002102200341003602900620034204370388064104211920034188066a21010c0d0b41134101102d000b41264101102d000b41224101102d000b41134101102d000b41264101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b41134101102d000b41264101102d000b41d3fec6002101411121020c090b0240200341f8076a280200450d0020032802f40710200b20034184086a280200450d0720032802800810200c070b2003200141046a3602e803200220016a200536000020032802e803210120032802e003210220034188066a41186a2205420037030020034188066a41106a2207420037030020034188066a41086a2208420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200729030037030020034180026a41086a2008290300370300200320032903880637038002024020032802e403450d0020032802e00310200b024020034180026a412041e4fdc600410041001002417f460d0041a2b6c2002101412721020c010b200341f0066a41186a200341c0046a41186a290300370300200341f0066a41106a200341c0046a41106a290300370300200341f0066a41086a200341c0046a41086a290300370300200320032903c0043703f006200341f0066a2006201a1091030240200341e0076a41186a280200450d0020032802f40710200b20034184086a280200450d0820032802800810200c080b0240200341f8076a280200450d0020032802f40710200b20034184086a280200450d0620032802800810200c060b41bfb5c2002101411c21020c050b200141046a280200221b2002470d00200241016a22072002490d15200241017422082007200820074b1b221b41ffffffff0371201b470d15201b41027422074100480d150240024020020d002007101e21020c010b200128020020024102742007102221020b2002450d0120012002360200200141046a201b360200200328029006210220032802880621190b200128020020024102746a201a3602002003200241016a220136029006200341a8026a41086a22074200370300200342003703a80241aefac100411b200341a8026a1000200341e8016a41086a2007290300370300200320032903a8023703e8010240024020190d00200341e8016a411010040c010b200341003602e807200342013703e007200320013602e003200341e0036a200341e0076a10630240024020010d0020032802e807210b20032802e407210e20032802e00721020c010b410020032802e80722016b2107200241027441046a210c20032802e407210e2019210803402008280200211702400240200e20076a4104490d0020032802e00721020c010b200141046a22022001490d18200e410174220b2002200b20024b1b220b4100480d1802400240200e0d00200b101e21020c010b20032802e007200e200b102221020b02402002450d002003200b3602e407200320023602e007200b210e0c010b200b4101102d000b200841046a21082003200141046a220b3602e807200220016a20173600002007417c6a2107200b2101200c417c6a220c0d000b0b200341e8016a41102002200b10050240200e450d00200210200b201b450d00201910200b20034188086a201a360200200341ed076a200341c0046a41086a2201290300370000200341f5076a200341c0046a41106a2202290300370000200341fd076a200341c0046a41186a2207290300370000200341003a00e407200341093a00e007200320032903c0043700e507200341e0076a10770240200341c0046a10e302450d00200341e0076a41186a2007290300370300200341e0076a41106a2002290300370300200341e0076a41086a2001290300370300200320032903c0043703e007200341e0076a201a41011091030b0240200d450d00201c450d00201810200b20054101470d042005417f6a41014d0d0402402016450d00200610200b02402015450d00200a10200b200d450d04201810200c040b20074104102d000b0240200d450d00201810200b02402015450d00200a10200b2016450d00200610200b2001450d010b200041811e3b010820002002360204200020013602002000410a6a41003a00000c170b200041023a00080c160b200341a8056a41086a220b200141146a290200370300200341a8056a41106a220c2001411c6a290200370300200341a8056a41186a220d200141246a29020037030020032001410c6a2902003703a805200141086a28020021082001412c6a280200210e20012802042101200341d0016a41026a2205200241036a2d00003a0000200341b8016a41086a2206200241186a290000370300200341b8016a41106a2207200241206a2d00003a0000200320022f00013b01d0012003200241106a2900003703b801200241086a290000210441042115200241046a280000211620022d0000210202400240024002400240024020010e0400010203000b200341e0076a41146a4101360200200342013702e40720034184e6c6003602e007200341043602f4062003418cb4c6003602f0062003200341f0066a3602f007200341e0076a41d483c6001033000b200341fc016a41026a20052d00003a0000200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032f01d0013b01fc01200320032903b8013703a80241012101410421050240200241ff01714101470d00200341f0066a41026a200341fc016a41026a2d00003a0000200341e0076a41086a200341a8026a41086a290300370300200341e0076a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01f006200320032903a8023703e00741002101201621050b200341c0036a41026a2202200341f0066a41026a2d00003a0000200341c0026a41086a2206200341e0076a41086a220b290300370300200341c0026a41106a2207200341e0076a41106a220e2d00003a0000200320032f01f0063b01c003200320032903e0073703c00202400240024020010d00200341c0046a41176a2006290300370000200341c0046a411f6a20072d00003a0000200320032f01c0033b01c004200320043700c704200320053600c304200320032903c0023700cf04200320022d00003a00c204200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341e8016a41026a20032d00e3073a0000200341e0036a41086a200341e0076a41186a290300370300200341e0036a41106a20034180086a2d00003a0000200320032f00e1073b01e8012003200e2903003703e0030240024020014101460d00200341f0066a41186a420037030020034180076a4200370300200341f8066a4200370300200342003703f0060c010b200b290300210420032802e4072101200341f0066a41176a200341e8036a290300370000200341f0066a411f6a200341f0036a2d00003a0000200320032f01e8013b01f006200320043700f706200320013600f306200320032903e0033700ff062003200341ea016a2d00003a00f2060b200341c0046a200341f0066a412010cf05450d0241a8d3c4002101412221020c010b419affc6002101410f210202400240024002400240024020050e0700010203040506000b2004422088a721022004a721010c050b418cffc6002101410e21020c040b4180ffc6002101410c21020c030b41f7fec6002101410921020c020b41e4fec6002101411321020c010b41d3fec6002101411121020b200810cf01200810200c030b200341e0076a200841c00110cd051a200341003a00f00620034188066a200341e0076a200341f0066a10a40241012101024020032d00900622024102460d0020034191066a31000021092003310092062104200328028c062106200328028806210541a1fec600410d100602402002450d00200910080b20041008410021012005450d002005200610060b200320013a00e207200341083b01e007200341e0076a1077200810200c030b20034188066a41186a200d29030037030020034188066a41106a200c29030037030020034188066a41086a200b290300370300200320032903a80537038806200341fc016a41026a20052d00003a0000200320032f01d0013b01fc01200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032903b8013703a80241012101410421050240200241ff01714101470d00200341e8066a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e806200320032903a8023703e00341002101201621050b200341f0066a41026a2207200341e8066a41026a2d00003a0000200341e0076a41106a2202200341e0036a41086a220e290300370300200341f8076a2206200341e0036a41106a220b2d00003a0000200320032f01e8063b01f006200320032903e0033703e807200320043703e00702400240024020010d00200341cf046a200341e0076a41086a220c290300370000200341c0046a41176a2002290300370000200341c0046a411f6a20062d00003a0000200320032f01f0063b01c004200320053600c304200320032903e0073700c704200320072d00003a00c204200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341e8016a41026a20032d00e3073a0000200e2006290300370300200b20034180086a2d00003a0000200320032f00e1073b01e801200320022903003703e0030240024020014101460d0020034188076a420037030020034180076a4200370300200341f8066a4200370300200342003703f0060c010b200c290300210420032802e4072101200341f0066a41176a200341e8036a290300370000200341f0066a411f6a200341f0036a2d00003a0000200320032f01e8013b01f006200320043700f706200320013600f306200320032903e0033700ff062003200341ea016a2d00003a00f2060b200341c0046a200341f0066a412010cf05450d0141cad3c4002101413121020c040b419affc6002101410f21020240024002400240024020050e0700060102030408000b2004422088a721022004a721010c070b4180ffc6002101410c21020c060b41f7fec6002101410921020c050b41e4fec6002101411321020c040b41d3fec6002101411121020c030b200341ec076a20034188066a41086a290300370200200341f4076a20034188066a41106a290300370200200341fc076a20034188066a41186a290300370200200320083602e00720032003290388063702e407200341f0066a200341e0076a10b602200341c0036a41086a2201200341f0066a41106a290300370300200341c0036a41106a2202200341f0066a41186a290300370300200341c0036a41186a2205200341f0066a41206a2d00003a0000200320032f00f1063b01a002200320032d00f3063a00a2022003200341f0066a41086a2903003703c00320032d00f0064101460d0020032802f4062106200341ec066a41026a20032d00a2023a0000200341a0036a41086a2001290300370300200341a0036a41106a2002290300370300200341a0036a41186a20052d00003a0000200320032f01a0023b01ec06200320032903c0033703a00342002104200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200341e8016a41026a220220032d00e3073a0000200341e0036a41086a200341e0076a41186a290300370300200341e0036a41106a20034180086a2d00003a0000200320032f00e1073b01e8012003200341e0076a41106a2903003703e0030240024020014101460d0041002101200341c0036a41026a41003a0000200341c8026a4200370300200341d0026a41003a0000200341003b01c003200342003703c002420021090c010b200341e0076a41086a290300210920032802e4072101200341c0036a41026a20022d00003a0000200341c0026a41086a200341e0036a41086a290300370300200341c0026a41106a200341e0036a41106a2d00003a0000200320032f01e8013b01c003200320032903e0033703c002200942ffffffff0f83210420094280808080708321090b200341e8066a41026a200341c0036a41026a2d000022023a000020034180026a41106a2205200341c0026a41086a29030037030020034180026a41186a2207200341c0026a41106a2d00003a0000200320032f01c00322083b01e806200320032903c0023703880220032009200484220437038002200341e9076a200437000020034188023b01e007200320083b01e207200320023a00e407200320013600e507200341f1076a200329038802370000200341f9076a200529030037000020034181086a20072d00003a0000200341e0076a1077200341ef076a200341a0036a41086a290300370000200341f7076a200341a0036a41106a290300370000200341ff076a200341a0036a41186a2d00003a00002003200341ec066a41026a2d00003a00e207200320032f01ec063b01e007200320063600e307200320032903a0033700e707200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341103602f4062003200341e8016a3602f006200341e0076a200341f0066a108203410021010c020b418cffc6002101410e21020c010b20034188066a41186a200d29030037030020034188066a41106a200c29030037030020034188066a41086a200b290300370300200320032903a80537038806200341fc016a41026a20052d00003a0000200320032f01d0013b01fc01200341a8026a41086a2006290300370300200341a8026a41106a20072d00003a0000200320032903b8013703a802410121010240200241ff01714101470d00200341e8016a41026a200341fc016a41026a2d00003a0000200341e0036a41086a200341a8026a41086a290300370300200341e0036a41106a200341a8026a41106a2d00003a0000200320032f01fc013b01e801200320032903a8023703e00341002101201621150b200341c0036a41106a2202200341e0036a41086a2205290300370300200341c0036a41186a2206200341e0036a41106a22072d00003a0000200320032f01e8013b01a002200320032903e0033703c8032003200341ea016a220b2d00003a00a202200320043703c003024002400240024020010d00200341cf046a200341c0036a41086a290300370000200341c0046a41176a2002290300370000200341c0046a411f6a20062d00003a0000200320032d00a2023a00c204200320032f01a0023b01c004200320153600c304200320032903c0033700c704200341a8026a41086a22014200370300200342003703a80241d4bfc4004108200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a200341e8016a4110106920032d00e0072101200b20032d00e3073a00002005200341e0076a41186a290300370300200720034180086a2d00003a0000200320032f00e1073b01e8012003200341e0076a41106a2903003703e0030240024020014101460d0020034188076a420037030020034180076a4200370300200341f8066a4200370300200342003703f0060c010b200341e0076a41086a290300210420032802e4072101200341f0066a41176a200341e8036a290300370000200341f0066a411f6a200341f0036a2d00003a0000200320032f01e8013b01f006200320043700f706200320013600f306200320032903e0033700ff062003200341ea016a2d00003a00f2060b200341c0046a200341f0066a412010cf05450d0141a8d3c400210141222102200e10cf010c030b419affc6002101410f210202400240024002400240024020150e0700070102030405000b2004422088a721022004a72101200e10cf010c070b4180ffc6002101410c2102200e10cf010c060b41f7fec600210141092102200e10cf010c050b41e4fec600210141132102200e10cf010c040b41d3fec6002101411121020b200e10cf010c020b200341ec076a20034188066a41086a290300370200200341f4076a20034188066a41106a290300370200200341fc076a20034188066a41186a290300370200200320083602e00720032003290388063702e407200341f0066a200341e0076a10b602200341c0036a41026a220220032d00f3063a0000200341c0026a41086a2205200341f0066a41186a2206290300370300200341c0026a41106a2207200341f0066a41206a2d00003a0000200320032f00f1063b01c0032003200341f0066a41106a22082903003703c0024101210120032d00f0064101460d00200341f0066a41086a220b290300210420032802f406210c200341e8066a41026a220d20022d00003a000020034180026a41106a2202200529030037030020034180026a41186a220520072d00003a0000200320032f01c0033b01e8062003200437038002200320032903c00237038802200341e0076a200e41c00110cd051a200b20032903800237030020082003290388023703002006200229030037030020034190076a20052d00003a0000200341013a00f006200320032f01e8063b00f1062003200d2d00003a00f3062003200c3602f406200341e0036a200341e0076a200341f0066a10a402024020032d00e80322024102460d00200341e9036a310000210920033100ea03210420032802e403210620032802e003210541a1fec600410d100602402002450d00200910080b20041008410021012005450d002005200610060b200320013a00e20720034188043b01e007200341e0076a1077410021010c010b418cffc6002101410e2102200e10cf010b200e10200b2001450d00200041811c3b010820002002360204200020013602002000410a6a41003a00000c160b200041023a00080c150b411b101e2201450d01200141176a41002800e7f346360000200141106a41002900e0f346370000200141086a41002900d8f346370000200141002900d0f3463700002001411b413610222201450d022001201736001b20034188066a41186a2202420037030020034188066a41106a2205420037030020034188066a41086a2208420037030020034200370388062001411f20034188066a1001200341c0026a41186a220b2002290300370300200341c0026a41106a2005290300370300200341c0026a41086a200829030037030020032003290388063703c002200110204120101e2201450d03200120032903c002370000200141186a200b290300370000200141106a200341c0026a41106a290300370000200141086a200341c0026a41086a290300370000200320183602e0072002420037030020034188066a41106a2205420037030020034188066a41086a220842003703002003420037038806200341e0076a410420034188066a100120034180026a41186a200229030037030020034180026a41106a2202200529030037030020034180026a41086a220520082903003703002003200329038806370380022001412041c00010222201450d042001200329038002370020200141386a20034198026a290300370000200141306a2002290300370000200141286a2005290300370000200341c0003602e407200320013602e0072006200e200341e0076a10a3022001102002402007450d00200610200b024020032802f406450d00201910200b02402016450d00200a10200b0240200c450d00200c410c6c2102200d210103400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b2015450d00200d10200b200041023a00080c130b411b4101102d000b41364101102d000b41204101102d000b41c0004101102d000b0240200328028402450d00200110200b200341e1046a211920034181056a211b200341e0036a41206a2116200341a0046a2118200341c0046a410172211a200341f0066a4101722102417421070340024002400240200741e4c3c1006a280000220141e2c289ab0646220d0d00200141e9dabdf306460d010240200141e7e485f306460d004100210541e4fdc60021060c030b41202105200341e0036a21060c020b41202105201621060c010b41202105201821060b20032005360290062003200636028c062003200136028806200341a8056a20034188066a109203200341f0066a20032802a805220820032802b005106920034188066a41086a220e200241086a29000037030020034188066a41106a220b200241106a29000037030020034188066a41186a220c200241186a29000037030020032002290000370388060240024020032d00f0064101470d0020034180026a41186a2215200c29030037030020034180026a41106a220c200b29030037030020034180026a41086a220b200e290300370300200320032903880637038002024020032802ac05450d00200810200b200341f0066a41186a2015290300370300200341f0066a41106a200c290300370300200341f0066a41086a200b29030037030020032003290380023703f006200341f0066a200341c0036a412010cf05450d0141c6acc6002101411821020c030b20032802ac05450d00200810200b0240024020032d00c0044101470d00024002400240200d0d00200141e9dabdf306460d010240200141e7e485f306460d004100210841e4fdc600210e0c030b41202108201a210e0c020b412021082019210e0c010b41202108201b210e0b024020052008470d002006200e460d022006200e200510cf05450d020b200320083602f8062003200e3602f406200320013602f00620034188066a200341f0066a10920320032802880622082003280290061004200328028c06450d00200810200b200320053602f806200320063602f406200320013602f00620034188066a200341f0066a109203200328028806210120032003280290063602f406200320013602f006200341c0036a200341f0066a108203200328028c06450d00200110200b200741046a22070d000b20034188066a200341c0036a10fd0220032802900621022003280288062101200341003602f806200342013703f006200341e0036a200341f0066a10ca012016200341f0066a10ca012018200341f0066a10ca0120032802f40621052001200220032802f006220620032802f806100502402005450d00200610200b0240200328028c06450d00200110200b200a450d01201710200c010b0240200a450d00201710200b2001450d00200041810e3b010820002002360204200020013602002000410a6a41003a00000c0d0b200041023a00080c0c0b42002114420021040b024002402014200f5422022004200954200420095122011b0d002014200f56200420095620011b450d0120032014200f7d3703e0072003200420097d2002ad7d3703e8072003200341e0076a3602880620034188066a1094020c010b2003200f20147d3703e0072003200920047d200f201454ad7d3703e8072003200341e0076a3602880620034188066a10f4020b200341a8056a200f200910930302400240024002404118101e2201450d00200141002900e28a45370000200141106a41002900f28a45370000200141086a41002900ea8a453700002003429880808080033702e407200320013602e007200341a8056a200341e0076a10ca0120032802e807210120032802e007210220034188066a41186a2205420037030020034188066a41106a2206420037030020034188066a41086a2207420037030020034200370388062002200120034188066a100120034180026a41186a200529030037030020034180026a41106a200629030037030020034180026a41086a2007290300370300200320032903880637038002024020032802e407450d0020032802e00710200b200341003602e00720034180026a4120200341e0076a1003210120032802e0072202417f460d022001450d0220024110490d01200141086a290000210420012900002109200110200c030b41184101102d000b41ceb8c4004133200341a8026a41fcbfc4004184b9c400102e000b42002109420021040b02400240200920115422022004201054200420105122011b0d002009201156200420105620011b450d012003200920117d3703e0072003200420107d2002ad7d3703e8072003200341e0076a3602880620034188066a1094020c010b2003201120097d3703e0072003201020047d2011200954ad7d3703e8072003200341e0076a3602880620034188066a10f4020b200341a8056a20112010109403410021010c010b410021010b02402001450d00200041810a3b010820002002360204200020013602002000410a6a41003a00000c090b200041023a00080c080b0240024020012007460d00200442208821090c010b0240024020012004a7470d00200141016a22072001490d03200141017422082007200820074b1bad220942c4007e220f422088a70d03200fa722074100480d030240024020010d002007101e21020c010b2002200141c4006c2007102221020b2002450d01200320023602a00320044280808080708320098421040b20044220882209a721010c010b20074104102d000b2002200141c4006c6a220141003a000020012006360204200120032f01fc013b0001200141036a200341fc016a41026a2d00003a0000200120032902e007370208200141106a200341e0076a41086a2217290200370200200141186a200341e0076a41106a2219290200370200200141206a200341e0076a41186a290200370200200141286a200341e0076a41206a290200370200200141306a200341e0076a41286a290200370200200141386a200341e0076a41306a290200370200200141c0006a200341e0076a41386a2802003602002009422086200442ffffffff0f83844280808080107c2104200b200541f0006c6a2107024020050d00200b21060c040b200341c0026a41186a2115200b210603402006280204210120062802002102200341e0076a200641086a41e80010cd051a200641f0006a21062001450d04200341f0066a200341e0076a41e80010cd051a200320013602e407200320023602e0072017200341f0066a41e80010cd051a20032802a003210e1079210120034188066a200341e0076a10c001024002400240024020032802e00722020d004190adc600210c4110210d0c010b0240200220014d0d00411a210d41a0adc600210c0c010b200341c0046a2002417f6a10a1010240200341c0046a2019412010cf05450d004119210d41baadc600210c0c010b024020032802e007220c41002001417b6a2202200220014b1b4f0d004126210d41d3adc600210c0c010b02400240200e200e20044220882209a7220841c4006c22026a460d00200e41016a2101034002402001417f6a2d00004101470d004101210520034188066a2001460d03200120034188066a412010cf05450d030b200141c4006a2101200241bc7f6a22020d000b0b410021050b200341c0046a200c10a101200341c0046a20034188066a412010cf052101200341a8056a41086a2202200341c0036a41086a290300370300200341a8056a41106a200341c0036a41106a290300370300200320032903c0033703a80541faacc600210c4116210d20050d0120010d020c010b200341a8056a41086a200341c0036a41086a290300370300200341a8056a41106a200341c0036a41106a290300370300200320032903c0033703a8050b024020032802ec072202450d0020032802e4072101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b024020032802e807450d0020032802e40710200b024020072006460d00034002402006410c6a2802002202450d0020062802042101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b200641f0006a21010240200641086a280200450d00200628020410200b2001210620012007470d000b0b0240200a450d00200b10200b2004a7450d07200e10200c070b200341e0036a410e6a2205200341a8056a410e6a290100370100200341e0036a41086a220c2002290300370300200320032903a8053703e003200341c0046a200341e0076a10c00120154200370300200341c0026a41106a220d4200370300200341c0026a41086a22164200370300200342003703c00241c800101e2201450d0220034188066a109e02200141186a20034188066a41186a290300370200200141106a20034188066a41106a290300370200200141086a20034188066a41086a220229030037020020012003290388063702002001410236022020014101360244200120032903c0023702242001412c6a2016290300370200200141346a200d2903003702002001413c6a2015290300370200200320013602a80520034282808080203702ac05200341a8056a109f0220034180026a41086a220d200341c0046a41086a29030037030020034180026a41106a2216200341c0046a41106a29030037030020034180026a41186a2218200341c0046a41186a2903003703002002200c29030037030020034188066a410e6a220c2005290100370100200320032903c00437038002200320032903e003370388060240024020082004a7460d002004210f0c010b200841016a22012008490d022009a74101742205200120012005491bad220f42c4007e2209422088a70d022009a722054100480d020240024020080d002005101e21010c010b200e200841c4006c2005102221010b2001450d04200320013602a00320044220882209a721080b20032802a003200841c4006c6a220141013a00002018290300210420162903002110200d2903002111200329038002211420014116360028200141faacc600360024200141003a00212001413a6a200c290100370000200141346a2002290300370000200120032903880637002c20012014370001200141096a2011370000200141116a2010370000200141196a2004370000200f42ffffffff0f83210420094220862109024020032802ec072202450d0020032802e4072101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b20092004842104024020032802e807450d0020032802e40710200b20044280808080107c210420062007470d000c050b0b1027000b41c8004104102d000b20054104102d000b20072006460d00034002402006410c6a2802002202450d0020062802042101200241246c210203400240024020012d0000220541034b0d0002400240024020050e0404000102040b2001410c6a280200450d03200141086a28020010200c030b2001410c6a280200450d02200141086a28020010200c020b2001410c6a280200450d01200141086a28020010200c010b200141086a280200450d00200141046a28020010200b200141246a21012002415c6a22020d000b0b200641f0006a21010240200641086a280200450d00200628020410200b2001210620012007470d000b0b0240200a450d00200b10200b200341a8026a41086a22014200370300200342003703a8024189a7c6004111200341a8026a1000200341e8016a41086a2001290300370300200320032903a8023703e801200341e0076a20032802a00322012004422088a7109d02200341e8016a411020032802e007220220032802e8071005024020032802e407450d00200210200b02402004a7450d00200110200b200041023a00080c020b20004181063b01082000200d3602042000200c3602002000410a6a41003a00000c010b200341a8026a41086a22014200370300200342003703a80241c4aac100410d200341a8026a1000200341e8016a41086a22022001290300370300200320032903a8023703e801200320043703e007200341e8016a4110200341e0076a4108100520014200370300200342003703a80241fc81c7004113200341a8026a100020022001290300370300200320032903a8023703e801200341013a00e003200341e8016a4110200341e0036a41011005200041023a00080b200341a0096a24000b130020004101360204200041f8b0c1003602000b3400200041fee3c10036020420004100360200200041146a4102360200200041106a41d8b4c100360200200041086a42093702000b1300200041013602042000418cb7c1003602000b3101017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242b8173700000bb00103017f017e027f230041206b2200240042002101200041106a41086a220242003703002000420037031041c4aac100410d200041106a1000200041086a2002290300370300200020002903103703002000410036021020004110200041106a100321020240024020002802102203417f460d002002450d0020034108490d0120022900002101200210200b200041206a240020010f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000bae0201057f230041106b2203240020034100360208200342013703002003200136020c2003410c6a2003106302402001450d002000200141216c6a210403402000200310ca01200041206a2d0000210502400240200328020420032802082201460d00200328020021060c010b0240200141016a22062001490d00200141017422072006200720064b1b22074100480d000240024020010d002007101e21060c010b200328020020012007102221060b02402006450d002003200736020420032006360200200328020821010c020b20074101102d000b1027000b2003200141016a360208200620016a20053a0000200041216a22002004470d000b0b2003280204210120022802002002280204200328020022002003280208100502402001450d00200010200b200341106a24000b3400200041e0bac10036020420004100360200200041146a4102360200200041106a41ecbac100360200200041086a42093702000b5001017f024002404104101e2202450d002002410036000020024104410810222202450d0120004288808080d00037020420002002360200200241003a00040f0b41044101102d000b41084101102d000bc50c04027f017e077f057e230041a0016b22032400024002400240024002400240024002404110101e2204450d00200441086a4100290090ab4137000020044100290088ab413700002000290300210520044110412010222204450d0120042005370010200341e0006a41186a22064200370300200341e0006a41106a22074200370300200341e0006a41086a220842003703002003420037036020044118200341e0006a1001200341c0006a41186a2006290300370300200341c0006a41106a2007290300370300200341c0006a41086a200829030037030020032003290360370340200410200240200341c0006a412041e4fdc600410041001002417f460d004110101e2204450d03200441086a4100290090ab4137000020044100290088ab413700002000290300210520044110412010222204450d0420042005370010200341e0006a41186a22064200370300200341e0006a41106a22074200370300200341e0006a41086a220842003703002003420037036020044118200341e0006a1001200341c0006a41186a2006290300370300200341c0006a41106a2007290300370300200341c0006a41086a2008290300370300200320032903603703402004102020034100360260200341c0006a4120200341e0006a1003210420032802602208417f460d062004450d062003200836029c012003200436029801200341e0006a20034198016a10970220032d00800122064104460d05200341206a41186a200341e0006a41186a290300370300200341206a41106a200341e0006a41106a290300370300200341206a41086a200341e0006a41086a2903003703002003411e6a20034183016a2d00003a000020032003290360370320200320032f0081013b011c20034184016a280200210920034188016a280200210a2003418c016a280200210720034190016a280200210b20034194016a280200210c2008450d07200410200c070b410421040c070b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41ceb8c4004133200341206a41fcbfc4004184b9c400102e000b410421060b200341c0006a41086a2204200341206a41086a290300370300200341c0006a41106a200341206a41106a290300370300200341c0006a41186a200341206a41186a290300370300200341e0006a41026a22082003411c6a41026a2d00003a000020032003290320370340200320032f011c3b01600240024020064104470d00410321064100210b0c010b20034198016a41026a20082d00003a0000200320032f01603b0198012004290300210d200329034021052003290350210e0b200341106a41026a20034198016a41026a2d00003a0000200320032f0198013b011002400240024020014101460d004100210420064103460d034102210420070d014101210420064102470d012009200a4100109802200341c0006a41086a2204290300210e2003290350210f200329035821102003290340211120034183016a200341106a41026a2d00003a00002003418c016a410036020020034188016a200a36020020034184016a20093602002003200e37036820032011370360200341033a008001200320103703782003200f370370200320032f01103b0081012003200c360294012003200b360290012000200341e0006a109902200342eadee59bc7aed8b5e500370340200341e0006a200341c0006a10ae02200341c0006a200341e0006a2005200d411f10930220032802404101460d02200320002004290300200341d0006a29030010af022003200341086a290300370368200320032903003703602003200341e0006a360240200341c0006a109402410521040c030b1079210802402002450d004100210420064103460d034102210420070d014101210420064102470d012003418c016a410036020020034188016a200a36020020034184016a200936020020034183016a200341106a41026a2d00003a000020032005370360200341013a0080012003200236027c200320083602782003200e370370200320032f01103b0081012003200c360294012003200b360290012003200d3703682000200341e0006a109902410521040c030b4103210420064103460d020b2009200a20071098020c010b2003200329024437032041adbac1004122200341206a41e8aac10041d0bac100102e000b200341a0016a240020040ba60401057f230041d0006b22022400200241ed003a00080240024002400240024002404101101e2203450d00200341ed003a0000200241ef003a000820034101410210222203450d01200341ef003a0001200241e4003a000820034102410410222203450d02200341e4003a0002200341ec003a0003200220012d000022043a000820034104410810222203450d03200320043a0004200320012d00013a0005200320012d00023a0006200320012d00033a0007200220012d000422043a000820034108411010222205450d04200520043a0008200520012d00053a0009200520012d00063a000a200520012d00073a000b200241003a0048410c210120052106410021030340200241003a0008200241086a20062001410047220410cd051a024020010d00200241003a00080b20012004490d06200241286a20036a20022d00083a00002002200341016a22033a0048200120046b2101200620046a210620034120470d000b200241086a41186a2201200241286a41186a290300370300200241086a41106a2203200241286a41106a290300370300200241086a41086a2204200241286a41086a2903003703002002200229032837030820051020200041186a2001290300370000200041106a2003290300370000200041086a200429030037000020002002290308370000200241d0006a24000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b20042001103b000bcc6f09027f017e027f027e027f077e057f017e0f7f230041f0066b2204240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240411f101e2205450d00200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd443370000200129030021062005411f413e10222205450d012005200637001f200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b00420054127200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441e0036a412041e4fdc600410041001002417f460d2a411f101e2205450d02200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d032005200637001f42002109200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b00420054127200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441003602e804200441e0036a4120200441e8046a10032105024020042802e8042201417f460d002005450d0020014108490d0520052900002109200510200b412a101e2205450d05200541286a41002f00c3ed423b0000200541206a41002900bbed42370000200541186a41002900b3ed42370000200541106a41002900abed42370000200541086a41002900a3ed423700002005410029009bed423700002005412a41d40010222205450d062005200937002a200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b00420054132200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441e0036a412041e4fdc600410041001002417f460d2a411f101e2205450d07200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d082005200637001f200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80420054127200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d1a411f101e2205450d09200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d0a2005200637001f4200210a200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80420054127200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441003602e804200441a0026a4120200441e8046a10032105024020042802e8042201417f460d002005450d0020014108490d0c2005290000210a200510200b2004200a3703d0014116101e2205450d0c2005410e6a41002900aad543370000200541086a41002900a4d5433700002005410029009cd54337000020054116412c10222205450d0d2005200a370016200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005411e200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d0e200441d8016a200a10e50220042d0088024101470d1920044189026a2d0000210b2004418c026a280200210c411f101e2205450d0f200541176a41002900a4d443370000200541106a410029009dd443370000200541086a4100290095d4433700002005410029008dd4433700002005411f413e10222205450d102005200637001f200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80420054127200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441186a200441a0026a1084012004290320220a4202510d18200441186a41206a290300210d2004290328210e410021050240200441186a41186a290300220f4201520d00200441e0036a200d10e602200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a22012010370300200441e8046a41106a22072011370300200441e8046a41086a22082012370300200420133703e8044120101e2205450d12200520042903e804370000200541186a2001290300370000200541106a2007290300370000200541086a20082903003700000b0240200a4201510d00200f4201510d14200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80441acd4c3004127200441e8046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903e8043703e003200441e0036a412010040c170b200441e0036a200e10e602200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a22072010370300200441e8046a41106a22082011370300200441e8046a41086a22142012370300200420133703e8044120101e2201450d12200120042903e804370000200141186a2007290300370000200141106a2008290300370000200141086a2014290300370000200441003602e80420014120200441e8046a1003210720042802e8042208417f460d152007450d15200420083602ac06200420073602a806200441e8046a200441a8066a10830120042903f00422104202510d1420042903f804211120042903e804211202402008450d00200710200b200441e8046a41206a200d37030020044180056a200f370300200441f8046a2011370300200420103703f004200420123703e804200441203602ac06200420013602a806200441e8046a200441a8066a10860120011020410121080c170b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b412a4101102d000b41d4004101102d000b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b41164101102d000b412c4101102d000b41ceb4c400413e41a888c6001028000b411f4101102d000b413e4101102d000b41204101102d000b41204101102d000b200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e80441acd4c3004127200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a2007290300370300200441b0046a41086a2008290300370300200420042903e8043703b0042004200d3703e804200441b0046a4120200441e8046a410810050c020b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b41002101410021080b02400240024002400240024020050d00410021070c010b200441003602e80420054120200441e8046a1003210720042802e8042214417f460d022007450d02200420143602b404200420073602b004200441e8046a200441b0046a10830120042903f0044202510d01200441b0066a221520044180056a2216290300370300200441a8066a41106a2217200441e8046a41206a2218290300370300200420042903f8043703a80620042903e804210d02402014450d00200710200b200441e8046a41106a220720042903a80637030020162015290300370300201820172903003703002007200e3703002004200d3703e8042004200a3703f004200441203602ac06200420053602a806200441e8046a200441a8066a10860120051020410121070b200820014572450d020c030b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b200110200b2005452007720d00200510200b107921142004419c026a2802002205417f4c0d02200441d8016a41206a290300210a200441e8016a290300210d200428029402210820042903f001211320042903e00121192004280284022115200428028002211620042903d801210e41012101024002400240024002400240024002400240024002400240024002402005450d002005101e2201450d010b20012008200510cd0521074116101e2201450d012001410029009cd5433700002001410e6a41002900aad543370000200141086a41002900a4d54337000020042903d001210f20014116412c10222201450d022001200f370016200441e8046a41186a22174200370300200441e8046a41106a22184200370300200441e8046a41086a221a4200370300200442003703e8042001411e200441e8046a1001200441a0026a41186a2017290300370300200441a0026a41106a2018290300370300200441a0026a41086a201a290300370300200420042903e8043703a00220011020200441003602e804200441a0026a4120200441e8046a10032101024020042802e8042217417f460d002001450d00200420173602ac06200420013602a806200441e8046a200441a8066a10d8020240024020042903f0044202510d00200441a8056a280200211820042802a405211a200441186a200441a8066a109301200429031822104202520d012018450d00201a10200b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b200441306a290300210f200441286a29030021112004290320211202402017450d00200110200b2018450d0d201a10200c0d0b2004200441d0016a3602c002200441e8046a41186a22014200370300200441e8046a41106a22174200370300200441e8046a41086a22184200370300200442003703e80441b2d5c300411e200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a2017290300370300200441b0046a41086a2018290300370300200420042903e8043703b004200441003602e804200441b0046a4120200441e8046a100321010240024020042802e8042217417f460d002001450d00024020174108490d002001290000210f20011020200441e0036a200f10e702200441e8046a200441e0036a10e80220042903f0044202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b42002111200441e8046a41186a22014200370300200441e8046a41106a22174200370300200441e8046a41086a22184200370300200442003703e80441b2d5c300411e200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a2017290300370300200441b0046a41086a2018290300370300200420042903e8043703b004200420042903d0013703e804200441b0046a4120200441e8046a41081005420021100c0d0b200441186a200441e8046a41e80010cd051a200441a8066a200441186a41c80010cd051a200441c8046a2201200441f8006a290300370300200441c0046a200441f0006a2903002210370300200441b0046a41086a200441e8006a290300370300200420042903603703b004200441e8046a200441a8066a41c80010cd051a200441b4056a2001410020104201511b3602002004200441c0026a3602b005200441003602202004420137031820042903e80421104108101e2201450d032004410836021c20042004280220221741086a36022020042001360218200120176a2010370000200428029005211802400240200428021c2217200428022022016b4104490d00200428021821170c010b200141046a221a2001490d0b20174101742201201a2001201a4b1b22014100480d0b0240024020170d002001101e21170c010b200428021820172001102221170b2017450d052004200136021c20042017360218200428022021010b2004200141046a360220201720016a2018360000200428029405211802400240200428021c2217200428022022016b4104490d00200428021821170c010b200141046a221a2001490d0b20174101742201201a2001201a4b1b22014100480d0b0240024020170d002001101e21170c010b200428021820172001102221170b2017450d062004200136021c20042017360218200428022021010b2004200141046a360220201720016a2018360000024020042903f0044201510d000240200428021c20042802202201460d00200428021821170c0a0b200141016a22172001490d0b200141017422182017201820174b1b22184100480d0b0240024020010d002018101e21170c010b200428021820012018102221170b02402017450d002004201836021c20042017360218200428022021010c0a0b20184101102d000b02400240200428021c20042802202201460d00200428021821170c010b200141016a22172001490d0b200141017422182017201820174b1b22184100480d0b0240024020010d002018101e21170c010b200428021820012018102221170b2017450d072004201836021c20042017360218200428022021010b2004200141016a360220201720016a41013a000020042903f80421100240200428021c2217200428022022016b4108490d00200428021821170c080b200141086a22182001490d0a201741017422012018200120184b1b22014100480d0a0240024020170d002001101e21170c010b200428021820172001102221170b02402017450d002004200136021c20042017360218200428022021010c080b20014101102d000b20054101102d000b41164101102d000b412c4101102d000b41084101102d000b20014101102d000b20014101102d000b20184101102d000b2004200141086a360220201720016a20103700000c010b2004200141016a360220201720016a41003a00000b0240024002402004290380054201510d000240200428021c20042802202201460d00200428021821170c020b200141016a22172001490d03200141017422182017201820174b1b22184100480d030240024020010d002018101e21170c010b200428021820012018102221170b02402017450d002004201836021c20042017360218200428022021010c020b20184101102d000b0240024002400240200428021c20042802202201460d00200428021821170c010b200141016a22172001490d05200141017422182017201820174b1b22184100480d050240024020010d002018101e21170c010b200428021820012018102221170b2017450d012004201836021c20042017360218200428022021010b2004200141016a360220201720016a41013a000020042903880521100240200428021c2217200428022022016b4108490d00200428021821170c020b200141086a22182001490d04201741017422012018200120184b1b22014100480d040240024020170d002001101e21170c010b200428021820172001102221170b02402017450d002004200136021c20042017360218200428022021010c020b20014101102d000b20184101102d000b2004200141086a360220201720016a20103700000c010b2004200141016a360220201720016a41003a00000b20044198056a200441186a10d90220042802a405211a2004200441ac056a28020022013602900320044190036a200441186a10630240200428021c2218200428022022176b2001490d00200428021821180c020b201720016a221b2017490d0020184101742217201b2017201b4b1b22174100480d000240024020180d002017101e21180c010b200428021820182017102221180b02402018450d002004201736021c20042018360218200428022021170c020b20174101102d000b1027000b2004201720016a360220201820176a201a200110cd051a200441e8046a41c8006a200441186a108101200428021c2101200441e0036a4120200428021822172004280220100502402001450d00201710200b0240200441a8056a280200450d00201a10200b20042802c002210142002110200441e8046a41186a22174200370300200441e8046a41106a22184200370300200441e8046a41086a221a4200370300200442003703e80441b2d5c300411e200441e8046a1001200441b0046a41186a2017290300370300200441b0046a41106a2018290300370300200441b0046a41086a201a290300370300200420042903e8043703b004200420012903003703e804200441b0046a4120200441e8046a41081005420121110b200441c8056a200f370300200441c0056a2011370300200441b8056a2012370300200441ac056a2005360200200441a8056a2005360200200441a0056a20143602002004419c056a200c36020020044199056a200b3a0000200441e8046a41206a200a370300200441f8046a200d370300200420103703b005200420073602a4052004410141022019420151200d2006527122012013420151200a20065271220b72220c1b3a009805200420153602940520042016360290052004200bad3703800520042001ad3703f0042004200e3703e8042004412036021c2004200441a0026a360218200441e8046a200441186a10e00202402005450d00200710200b0240200c450d0020044198026a280200450d02200810200c020b024002400240024002404112101e2205450d00200541106a41002f00e0d5433b0000200541086a41002900d8d543370000200541002900d0d54337000020054112412410222205450d012005200e370012200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005411a200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441003602e804200441a0026a4120200441e8046a1003210720042802e804221b417f460d032007450d032004201b36021c20042007360218200441e8046a200441186a10e9022004290388064202510d02200441b8036a41086a221c200441e8046a41086a221d29030037030020044190036a41086a221e20044184056a29020037030020044190036a41106a221f2004418c056a29020037030020044190036a41186a222020044194056a29020037030020044190036a41206a22212004419c056a280200360200200441f8026a41086a2222200441ac056a290200370300200441f8026a41106a2223200441b4056a280200360200200420042903e8043703b803200420042902fc0437039003200420042902a4053703f80220042802f804211720042802a0052124200441a8066a41086a2225200441cc056a290200370300200441a8066a41106a2226200441d4056a290200370300200441a8066a41186a2227200441dc056a290200370300200441a8066a41206a2228200441e4056a290200370300200420042902c4053703a80620042802c005210520042802bc05210120042802b805210c20042802ec05211620042802f005211520042802f405211820042802f805210820042802fc05210b2004280280062114200428028406211a0240201b450d00200710200b200441d8046a41086a201c290300370300200441b0046a41086a201e290300370300200441b0046a41106a201f290300370300200441b0046a41186a2020290300370300200441b0046a41206a2021280200360200200420042903b8033703d80420042004290390033703b00420044198046a41086a202229030037030020044198046a41106a2023280200360200200420042903f80237039804200441e8046a41206a2028290300370300200441e8046a41186a2027290300370300200441e8046a41106a2026290300370300201d2025290300370300200420042903a8063703e804410221070240024020014102470d0041012108410021054100210b410021144100211541002116410021014100210c410221170c010b20044188046a41086a200441d8046a41086a290300370300200441e0036a41086a200441b0046a41086a290300370300200441e0036a41106a200441b0046a41106a290300370300200441e0036a41186a200441b0046a41186a290300370300200441e0036a41206a200441b0046a41206a280200360200200441c8036a41086a20044198046a41086a290300370300200441c8036a41106a20044198046a41106a280200360200200420042903d80437038804200420042903b0043703e00320042004290398043703c803200441186a41206a200441e8046a41206a290300370300200441186a41186a200441e8046a41186a290300370300200441186a41106a200441e8046a41106a290300370300200441186a41086a200441e8046a41086a290300370300200420042903e804370318202421070b200441e8026a41086a20044188046a41086a290300370300200441c0026a41086a200441e0036a41086a290300370300200441c0026a41106a200441e0036a41106a290300370300200441c0026a41186a200441e0036a41186a290300370300200441c0026a41206a200441e0036a41206a28020036020020042004290388043703e802200420042903e0033703c002200441b0046a41106a200441c8036a41106a280200360200200441b0046a41086a200441c8036a41086a290300370300200420042903c8033703b004200441e8046a41206a200441186a41206a290300370300200441e8046a41186a200441186a41186a290300370300200441e8046a41106a200441186a41106a290300370300200441e8046a41086a200441186a41086a290300370300200420042903183703e8040c040b41124101102d000b41244101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b4102210741012108410021054100210b410021144100211541002116410021014100210c410221170b200441186a41086a200441e8026a41086a290300370300200441346a200441c0026a41086a2903003702002004413c6a200441c0026a41106a290300370200200441c4006a200441c0026a41186a290300370200200441cc006a200441c0026a41206a280200360200200441d0006a2007360200200420042903e80237031820042017360228200420042903c00237022c200441d4006a20042903b004370200200441dc006a200441b0046a41086a290300370200200441e4006a200441b0046a41106a280200360200200441f0006a20053602002004200c3602682004200136026c20044194016a2207200441e8046a41206a2903003702002004418c016a200441e8046a41186a29030037020020044184016a220c200441e8046a41106a290300370200200441fc006a200441e8046a41086a290300370200200441f4006a20042903e804370200200441b0016a2014360200200441ac016a200b360200200441a4016a20183602002004201a3602b401200420083602a801200420153602a0012004201636029c01024002400240024020014101470d0020044198016a28020021012007280200210720044190016a280200211841002114024002400240200541ff01710e03020100020b200441fc006a280200410146211620044180016a2802002115200441f8006a2802002117410221140c010b200441f8006a2802002117410121140b2005410876211a2004280274211b024002402004418c016a2802000d00200442003702c402200441908cc5003602c002200141016a211c2007417f6a211d410021010c010b2004200c3602f00420042004280284013602ec04200420044188016a2802003602e804200141016a211c2007417f6a211d200441c0026a200441e8046a10ea02200428026c450d04200428028c0121010b2004280284012105024020044188016a2802002207450d00200721080340200528026021052008417f6a22080d000b03402007417f6a22070d000b0b02402001450d0041002107410021084100210b03402004200b3602b406200420083602b006200420053602ac06200420073602a806200441e8046a200441a8066a106120042802f004210720042802f404210520042802f804210820042802fc04210b2001417f6a22010d000b0b200541908cc500460d0320052802002107200510202007450d0320072802002101200710202001450d03200128020022050d010c020b41a38bc500411441a888c6001028000b0340200110202005210120052802002207210520070d000b0b200110200b200c20042903c00237020020044180016a2015360200200441fc006a2016360200200441f8006a2017360200200c41086a200441c0026a41086a2802003602002004201b3602742004201a3a0071200420143a00702004410136026c2004201c360298012004201d360294012004201836029001200441e8046a200441186a41a00110cd051a0240024020042802bc054102470d00200e10eb020c010b200e200441e8046a10ec020b0240024020042802bc05220541024b0d0020050e03010002010b200441dc056a2802002101200441d4056a28020021050240200441d8056a2802002207450d00200721080340200528026021052008417f6a22080d000b03402007417f6a22070d000b0b02402001450d0041002107410021084100210b03402004200b3602bc04200420083602b804200420053602b404200420073602b004200441a8066a200441b0046a106120042802b006210720042802b406210520042802b806210820042802bc06210b2001417f6a22010d000b0b200541908cc500460d0020052802002107200510202007450d0020072802002101200710202001450d00024020012802002205450d000340200110202005210120052802002207210520070d000b0b200110200b200441fc056a280200450d0020042802f80510200b20044198026a280200450d0020042802940210200b0240024002400240024002400240024002400240024002404125101e2205450d002005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0120052006370025200441b0046a41186a22014200370300200441b0046a41106a22074200370300200441b0046a41086a22084200370300200442003703b0042005412d200441b0046a1001200441e0036a41186a2001290300370300200441e0036a41106a2007290300370300200441e0036a41086a2008290300370300200420042903b0043703e00320051020200441e0036a412041e4fdc600410041001002417f460d1a4125101e2205450d022005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0320052006370025200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d1a4125101e2205450d042005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0520052006370025200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441a0026a412041e4fdc600410041001002417f460d064125101e2205450d072005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0820052006370025200441e8046a41186a22014200370300200441e8046a41106a22074200370300200441e8046a41086a22084200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a2007290300370300200441a0026a41086a2008290300370300200420042903e8043703a00220051020200441003602e804200441a0026a4120200441e8046a1003210520042802e8042201417f460d0a2005450d0a2001450d0920052d0000220741014b0d092001417f6a210102400240024020070e020100010b4201210a200141074b0d010c0b0b4200210a20014108490d0a0b2005290001210d200510200c0b0b41254101102d000b41ca004101102d000b41254101102d000b41ca004101102d000b41254101102d000b41ca004101102d000b200441173602ec0420044185e0c2003602e80441f8c0c500412b200441e8046a4184fcc20041acfdc200102e000b41254101102d000b41ca004101102d000b41ceb8c400413320044198046a41fcbfc4004184b9c400102e000b4202210a0b4200200a200a42025122051ba74101470d01200441e8046a4200200d20051b220a10d60220042802e8044101460d02200441d8016a41086a20044188056a290300370300200441d8016a41106a20044190056a29030037030020044190036a41086a200441a0056a29030037030020044190036a41106a200441a8056a2903003703002004200441e8046a41186a2903003703d801200420044198056a29030037039003200441e8046a41106a290300210d200441e8046a41086a290300210e200441b0056a290300210f200441bc056a280200210b200441c0056a2802002108200441c4056a280200210c200441c8056a2802002105200441cc056a2d00002107200441b8056a2802002101200441a8066a41186a200441e8056a290300370300200441a8066a41106a200441e0056a290300370300200441a8066a41086a200441d8056a2903003703002004200441d0056a2903003703a80620014101470d032005417f4c0d004101210102402005450d002005101e2201450d050b20012008200510cd052101200420053602c802200420053602c402200420013602c002200441e8046a41186a200441d8016a41086a29030037030020044188056a200441d8016a41106a29030037030020044198056a20044190036a41086a290300370300200441a0056a20044190036a41106a290300370300200441b4056a200b360200200441c0056a20053602002004200d3703f0042004200e3703e804200420042903d8013703f804200420042903900337039005200441023602b0052004200f3703a805200441c4056a200741ff01714101463a0000200441b8056a20042903c002370300200441d0056a200441a8066a41086a290300370300200441d8056a200441a8066a41106a290300370300200441e0056a200441a8066a41186a290300370300200420042903a8063703c805200a200441e8046a10ed024125101e2205450d052005411d6a41002900ddf042370000200541186a41002900d8f042370000200541106a41002900d0f042370000200541086a41002900c8f042370000200541002900c0f0423700002005412541ca0010222205450d0620052006370025200441e8046a41186a22014200370300200441e8046a41106a220b4200370300200441e8046a41086a22144200370300200442003703e8042005412d200441e8046a1001200441a0026a41186a2001290300370300200441a0026a41106a200b290300370300200441a0026a41086a2014290300370300200420042903e8043703a00220051020200441e8046a200441a0026a412010ee02024020042903e80442025122050d00200441a0026a412010040b20050d0d20044190056a290300210d2001290300210e200b2903002106410021050240200441e8046a41206a290300220f4201520d00200441e0036a200d10ef02200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a22012010370300200441e8046a41106a220b2011370300200441e8046a41086a22142012370300200420133703e8044120101e2205450d08200520042903e804370000200541186a2001290300370000200541106a200b290300370000200541086a20142903003700000b024020064201510d00200f4201510d0a200441e8046a41186a22014200370300200441e8046a41106a220b4200370300200441e8046a41086a22144200370300200442003703e80441e5f0c200412d200441e8046a1001200441e0036a41186a2001290300370300200441e0036a41106a200b290300370300200441e0036a41086a2014290300370300200420042903e8043703e003200441e0036a412010040c0c0b200441e0036a200e10ef02200441b0046a41186a200441e0036a41186a2903002210370300200441b0046a41106a200441e0036a41106a2903002211370300200441b0046a41086a200441e0036a41086a2903002212370300200420042903e00322133703b004200441e8046a41186a220b2010370300200441e8046a41106a22142011370300200441e8046a41086a22152012370300200420133703e8044120101e2201450d08200120042903e804370000200141186a200b290300370000200141106a2014290300370000200141086a2015290300370000200441e8046a2001412010ee0220042903e8044202510d0a200441186a41186a200441e8046a41186a290300370300200441186a41106a200441e8046a41106a290300370300200441186a41086a200441e8046a41086a290300370300200441c0006a200d370300200441186a41206a200f370300200420042903e804370318200441203602ec04200420013602e804200441186a200441e8046a10f002200110204101210b0c0c0b102c000b41bcfdc20041c7004184fec2001028000b200420042902ec0437031841f8c0c500412b200441186a4184fcc2004194fec200102e000b41a4fec200412341c8fec2001028000b20054101102d000b41254101102d000b41ca004101102d000b41204101102d000b41204101102d000b200441e8046a41186a22014200370300200441e8046a41106a220b4200370300200441e8046a41086a22144200370300200442003703e80441e5f0c200412d200441e8046a1001200441b0046a41186a2001290300370300200441b0046a41106a200b290300370300200441b0046a41086a2014290300370300200420042903e8043703b0042004200d3703e804200441b0046a4120200441e8046a410810050c010b41bde6c50041d8004198e7c5001045000b410021014100210b0b0240024002400240024020050d00410021140c010b200441e8046a2005412010ee0220042903e8044202510d01200441186a41186a2214200441e8046a41186a290300370300200441186a41106a2215200441e8046a41106a290300370300200441186a41286a200441e8046a41286a290300370300200441186a41206a200441e8046a41206a290300370300200441186a41086a200441e8046a41086a2903003703002014200e37030020152006370300200420042903e804370318200441203602ec04200420053602e804200441186a200441e8046a10f00220051020410121140b200b20014572450d010c020b41bde6c50041d80041a8e7c5001045000b200110200b2005452014720d00200510200b200441f8046a200a370300200441e8046a41086a410a4108200741ff01714101461b3a0000200441163a00e804200441e8046a1077200c450d00200810200b200441a8066a200910f102200441e8046a20042903b00610f2022004290398054202510d01200441186a200441e8046a41b80110cd051a200441086a2004418d016a2002200310f302200441f8046a2003200441086a41086a29030022097d20022004290308220654ad7d200920037d2006200254ad7d20062002582009200358200920035122051b22011b3703002004200220067d200620027d20011b3703f00420042006200256200920035620051b2205ad3703e804200441e8046a41086a21010240024020050d00200420013602d801200441d8016a1094020c010b200420013602d801200441d8016a10f4020b0240200441dc006a280200450d00200428025810200b0240200441e8006a280200450d00200428026410200b0240200441f4006a280200450d00200428027010200b20042802800120044184016a28020020044188016a28020010f50242002102420021030b2000200237030020002003370308200441f0066a24000f0b41e988c700412b41c0c2c1001028000b340020004189a2c50036020420004100360200200041146a4101360200200041106a41d8bec100360200200041086a42083702000b130020004102360204200041dcbfc1003602000b3701017f02404110101e22020d0041104101102d000b2002420037000820024201370000200042908080808002370204200020023602000bee0102057f017e230041106b220224000240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200200541014b0d0120050e020203020b200041023602000c030b200041023602000c020b200041003602000c010b02402006450d0020042d0001210520012003417e6a3602042001200441026a360200200541014b0d00410021030240024020050e020100010b2002200110b70120022802002203450d01200229020421070b2000200336020420004101360200200041086a20073702000c010b200041023602000b200241106a24000bab0702057f017e230041106b22022400200141046a2802002103200141086a28020021040240024002400240024002400240024020002802100d00024020032004460d00200128020021000c070b200441016a22002004490d01200441017422032000200320004b1b22034100480d010240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c070b20034101102d000b0240024020032004460d00200128020021030c010b200441016a22032004490d01200441017422052003200520034b1b22054100480d010240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a00002000280208210602400240200141046a2802002203200528020022046b4104490d00200128020021030c010b200441046a22052004490d01200341017422042005200420054b1b22044100480d010240024020030d002004101e21030c010b200128020020032004102221030b2003450d0320012003360200200141046a2004360200200141086a28020021040b200141086a2205200441046a360200200320046a20063600002000290300210702400240200141046a2802002203200528020022046b4108490d00200128020021030c010b200441086a22052004490d01200341017422042005200420054b1b22044100480d010240024020030d002004101e21030c010b200128020020032004102221030b2003450d0420012003360200200141046a2004360200200141086a28020021040b200141086a2205200441086a360200200320046a20073700002000411c6a200110ca01200028021021062002200041186a280200220436020c2002410c6a200110630240200141046a2802002203200528020022006b2004490d00200128020021030c050b200020046a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c050b20004101102d000b1027000b20054101102d000b20044101102d000b20044101102d000b200141086a200020046a360200200320006a2006200410cd051a0c010b200141086a200441016a360200200020046a41003a00000b200241106a24000b940701057f230041106b220224000240024002400240024002400240024020002802004101460d000240200141046a280200200141086a2802002203460d00200128020021000c070b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c070b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200141046a2802002104200528020021030240200028020422050d00024020042003460d00200128020021000c060b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c060b20044101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d01200341017422062004200620044b1b22064100480d010240024020030d002006101e21040c010b200128020020032006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41013a000020022000410c6a280200220336020c2002410c6a200110630240200141046a2802002204200628020022006b2003490d00200128020021040c040b200020036a22062000490d00200441017422002006200020064b1b22004100480d000240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c040b20004101102d000b1027000b20054101102d000b20064101102d000b200141086a200020036a360200200420006a2005200310cd051a0c020b200141086a200341016a360200200020036a41003a00000c010b200141086a200341016a360200200020036a41003a00000b200241106a24000bfd0602067f017e230041f0006b220224002002411c6a41026a2203200141036a2d00003a0000200241086a2204200141106a290200370300200241106a2205200141186a290200370300200241186a2206200141206a280200360200200220012f00013b011c2002200141086a290200370300200141046a280200210702400240024020012d00004101470d00024002400240410f101e2201450d00200141076a41002900a5c2413700002001410029009ec2413700002001410f411e10222201450d012001200741067636000f42002108200241c8006a41186a22034200370300200241c8006a41106a22044200370300200241c8006a41086a220542003703002002420037034820014113200241c8006a1001200241206a41186a2003290300370300200241206a41106a2004290300370300200241206a41086a2005290300370300200220022903483703202001102020024100360248200241206a4120200241c8006a100321030240024020022802482204417f470d00410121010c010b024020030d00410121010c010b2002200436024420022003360240200241c8006a200241c0006a10e30120022802482201450d03200229024c21082004450d00200310200b41002103024002402007413f7122042008422088a7490d000c010b200120044105746a2205450d00200241206a41026a200541026a2d00003a0000200120044105746a2203280003210720052f00002104200241d0006a2003410f6a290000370300200241d8006a200341176a290000370300200241e0006a2003411f6a2d00003a0000200220043b012020022003290007370348410121030b02402008a7450d00200110200b410121012003450d050c040b410f4101102d000b411e4101102d000b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b200241206a41026a20032d00003a0000200241c8006a41086a2004290300370300200241c8006a41106a2005290300370300200241c8006a41186a20062d00003a0000200220022f011c3b0120200220022903003703480b200020022f01203b0001200041046a2007360000200041086a2002290348370000200041036a200241226a2d00003a0000200041106a200241c8006a41086a290300370000200041186a200241c8006a41106a290300370000200041206a200241c8006a41186a2d00003a0000410021010b200020013a0000200241f0006a24000b130020004102360204200041fcfcc6003602000b130020004101360204200041a8a7c1003602000b1300200041033602042000419c87c5003602000b130020004103360204200041dccec3003602000b130020004101360204200041d4f6c6003602000b130020004103360204200041acefc6003602000b130020004103360204200041acbcc4003602000b13002000410136020420004188f4c6003602000b1300200041033602042000419cc0c4003602000b130020004107360204200041ccf1c1003602000b13002000410b360204200041c4c2c4003602000b3400200041e0e4c10036020420004100360200200041146a4102360200200041106a41fceac100360200200041086a42073702000b130020004104360204200041e0e6c1003602000b130020004102360204200041e0e5c1003602000b1300200041013602042000419cc8c4003602000b130020004108360204200041888fc6003602000b130020004108360204200041f4dcc5003602000b13002000410136020420004194d6c3003602000b130020004103360204200041e0f8c1003602000b130020004102360204200041e08cc6003602000b130020004103360204200041f0cdc0003602000b130020004104360204200041b8cfc0003602000b130020004102360204200041e8fcc0003602000b130020004106360204200041b0c6c0003602000b13002000411236020420004194f1c2003602000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241013600000b850204017f017e037f017e230041c0006b2201240042002102200141206a41186a22034200370300200141206a41106a22044200370300200141206a41086a22054200370300200142003703204197f0c2004129200141206a1001200141186a2003290300370300200141106a2004290300370300200141086a2005290300370300200120012903203703002001410036022020014120200141206a1003210302400240024020012802202204417f470d000c010b024020030d000c010b20044108490d012003290000210620031020420121020b2000200637030820002002370300200141c0006a24000f0b41ceb8c4004133200141206a41fcbfc4004184b9c400102e000bf80101057f230041206b22022400024002404121101e2203450d00200341206a41002d0096f0423a0000200341186a410029008ef042370000200341106a4100290086f042370000200341086a41002900feef42370000200341002900f6ef423700002003412141c20010222203450d0120032001370021200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412920021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41214101102d000b41c2004101102d000b830302047f067e230041c0006b220224002002410036022020014120200241206a10032101024002400240024020022802202203417f460d0020010d010b200042023703100c010b2002200336021c200220013602182003450d0120022003417f6a220436021c2002200141016a36021820012d0000220541024b0d014200210602400240024020050e03020001020b20044108490d032002200341776a36021c2002200141096a36021820012900012107420121060c010b20044108490d022002200341776a36021c2002200141096a36021820012900012107420221060b200241206a200241186a109301200229032022084202510d01200241106a200241386a2903002209370300200241086a200241206a41106a290300220a37030020022002290328220b3703002000200837031020002007370308200020063703002000200b370318200041206a200a370300200041286a2009370300200110200b200241c0006a24000f0b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000bba0401057f230041a0026b22022400024002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200137001f20024198016a41186a2204420037030020024198016a41106a2205420037030020024198016a41086a2206420037030020024200370398012003412720024198016a1001200241f8006a41186a2004290300370300200241f8006a41106a2005290300370300200241f8006a41086a20062903003703002002200229039801370378200310202002410036029801200241f8006a412020024198016a10032103024002402002280298012204417f470d00420221010c010b024020030d00420221010c010b2002200436029c02200220033602980220024198016a20024198026a10ef0320022903980122014202510d032002200241a0016a41f80010cd051a2004450d00200310200b20024198016a200241f80010cd051a0240024020014202520d004200210120004200370360200041003602482000420037032820004200370340200041f8006a4200370300200041f0006a4200370300200041e8006a4200370300200041186a4102360200200041306a4200370300200041386a41003602000c010b200041086a20024198016a41f80010cd051a0b20002001370300200241a0026a24000f0b411f4101102d000b413e4101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000be80a0b097f017e017f017e017f017e017f017e027f017e037f230041c0016b2202240002400240024002400240024002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200137001f200241c0006a41186a22044200370300200241c0006a41106a22054200370300200241c0006a41086a220642003703002002420037034020034127200241c0006a1001200241186a2004290300370300200241106a2005290300370300200241086a2006290300370300200220022903403703002003102002402002412041e4fdc600410041001002417f470d0020004181dac20036020420004101360200200041086a41123602000c080b411f101e2203450d02200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d032003200137001f200241c0006a41186a22044200370300200241c0006a41106a22054200370300200241c0006a41086a220642003703002002420037034020034127200241c0006a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290340370300200310202002410036024020024120200241c0006a1003210720022802402208417f460d052007450d05200220083602bc01200220073602b801200241c0006a200241b8016a10f10320022d00900122034102460d04200241286a2002419a016a290100370300200241306a200241a2016a290100370300200241386a200241aa016a290100370300200220024192016a29010037032020022d0091012109200228028c01210a200229028401210b200228028001210c2002290378210d2002280274210e200229026c210f2002280268211020022903602111200228025c21122002280258211320022802542105200228025021042002290348210120022903402114200241b4016a2802002115200241b3016a2d00002106200241b2016a2d000021162008450d06200710200c060b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000b410221030b200241c0006a41186a2207200241206a41186a290300370300200241c0006a41106a2208200241206a41106a290300370300200241c0006a41086a2217200241206a41086a290300370300200220022903203703400240024020034102470d0042002101200241186a4200370300200241106a4200370300200241086a4200370300200242003703004100211341012104410021054100210641002116410021094100210a4100210c4100210e410021104100211242002114410021030c010b200241186a2007290300370300200241106a2008290300370300200241086a2017290300370300200220022903403703000b200020093a0059200041d8006a20033a0000200041d4006a200a360200200041cc006a200b370200200041c8006a200c360200200041c0006a200d3703002000413c6a200e360200200041346a200f370200200041306a2010360200200041286a2011370300200041246a2012360200200041206a20133602002000411c6a2005360200200041186a2004360200200041106a2001370300200041086a20143703002000200229030037015a200041e2006a200241086a290300370100200041ea006a200241106a290300370100200041f2006a200241186a290300370100200041fc006a2015360200200020063a007b200020163a007a200041003602000b200241c0016a24000b8b0e03067f017e087f23004180036b2202240002400240024002400240024002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200137001f20024180026a41186a2204420037030020024180026a41106a2205420037030020024180026a41086a2206420037030020024200370380022003412720024180026a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290380023703002003102002402002412041e4fdc600410041001002417f460d00411f101e2203450d03200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d042003200137001f20024180026a41186a2204420037030020024180026a41106a2205420037030020024180026a41086a2206420037030020024200370380022003412720024180026a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290380023703002003102020024100360280022002412020024180026a100321052002280280022207417f460d062005450d06200220073602d401200220053602d00120024180026a200241d0016a10ef0320022903800222014202510d05200241c0016a41086a20024180026a41106a290300370300200241a0016a41086a200241a4026a290200370300200241a0016a41106a200241ac026a290200370300200241a0016a41186a200241b4026a290200370300200241e8006a41086a200241d4026a290200370300200241e8006a41106a200241dc026a290200370300200241e8006a41186a200241e4026a29020037030020024188016a200241ec026a29020037030020024190016a200241f4026a29020037030020024198016a200241fc026a28020036020020022002290388023703c0012002200229029c023703a001200220022902cc0237036820024180026a41186a2802002103200241c0026a2903002108200241c8026a280200210420022802bc0221062007450d07200510200c070b200041a6dec20036020420004101360200200041086a41163602000c070b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b420221010b200241f0016a41086a2205200241c0016a41086a290300370300200241d0016a41086a2207200241a0016a41086a290300370300200241d0016a41106a2209200241a0016a41106a290300370300200241d0016a41186a220a200241a0016a41186a29030037030020024180026a41086a220b200241e8006a41086a29030037030020024180026a41106a220c200241e8006a41106a29030037030020024180026a41186a220d200241e8006a41186a29030037030020024180026a41206a220e200241e8006a41206a29030037030020024180026a41286a220f200241e8006a41286a29030037030020024180026a41306a2210200241e8006a41306a280200360200200220022903c0013703f001200220022903a0013703d00120022002290368370380020240024020014202520d00420021082002412c6a4200370200200241246a42003702002002411c6a4200370200200241cc006a420037020041002104200241386a411c6a4100360200200242003702142002420037024441022103420021010c010b200241d8006a41086a2005290300370300200241386a41086a2007290300370300200241386a41106a2009290300370300200241386a41186a200a290300370300200241086a200b290300370300200241106a200c290300370300200241186a200d290300370300200241206a200e290300370300200241286a200f290300370300200241306a2010280200360200200220022903f001370358200220022903d00137033820022002290380023703000b200041086a2001370300200041106a2002290358370300200041186a200241d8006a41086a290300370300200041206a2003360200200041246a20022903383702002000412c6a200241386a41086a290300370200200041346a200241386a41106a2903003702002000413c6a200241386a41186a290300370200200041d0006a2004360200200041c8006a2008370300200041c4006a200636020020004100360200200041d4006a2002290300370200200041dc006a200241086a290300370200200041e4006a200241106a290300370200200041ec006a200241186a290300370200200041f4006a200241206a290300370200200041fc006a200241286a29030037020020004184016a200241306a2802003602000b20024180036a24000bc80601077f230041a0026b22022400024002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200137001f200241a0016a41186a22044200370300200241a0016a41106a22054200370300200241a0016a41086a22064200370300200242003703a00120034127200241a0016a1001200241f8006a41186a2004290300370300200241f8006a41106a2005290300370300200241f8006a41086a2006290300370300200220022903a00137037820031020200241003602a001200241f8006a4120200241a0016a100321040240024020022802a0012205417f470d00410221030c010b024020040d00410221030c010b2002200536029c022002200436029802200241a0016a20024198026a10f10320022d00f00122034102460d03200241286a200241a0016a41d00010cd051a2002411f6a20024190026a290000370000200241186a20024189026a290000370300200241106a20024181026a290000370300200241086a200241f9016a290000370300200220022900f1013703002005450d00200410200b200241a0016a200241286a41d00010cd051a200241f8006a411f6a22052002411f6a290000370000200241f8006a41186a2206200241186a290300370300200241f8006a41106a2207200241106a290300370300200241f8006a41086a2208200241086a290300370300200220022903003703780240024020034102470d00410021032000410036024c200041003602402000410036023420004100360228200042013703102000420037030020004200370051200041186a4200370300200041086a4200370300200041d9006a4200370000200041e1006a4200370000200041e9006a4200370000200041f0006a41003600000c010b2000200241a0016a41d00010cd05220441f0006a2005290000370000200441e9006a2006290300370000200441e1006a2007290300370000200441d9006a2008290300370000200420022903783700510b200020033a0050200241a0026a24000f0b411f4101102d000b413e4101102d000b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000be00606037f017e057f047e037f017e230041206b22022400024002400240024002400240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a220736020020064104490d01200728000021082001200341746a22063602042001200741046a36020020064104490d04200428000c21092001200341706a22063602042001200441106a22043602002006450d0520042d0000210620012003416f6a22073602042001200441016a220a360200200641014b0d054200210b20060e020302030b200042023703080c070b200042023703080c060b20074108490d022004290001210c2001200341676a22073602042001200441096a220a3602004201210b0b2007450d02200a2d0000210320012007417f6a22043602042001200a41016a2206360200200341014b0d024200210d0240024020030e020100010b20044108490d03200a290001210e2001200741776a22043602042001200a41096a22063602004201210d0b2004450d0320062d0000210320012004417f6a22073602042001200641016a360200200341024b0d034100210f02400240024020030e03020001020b20074104490d052006280001210a20012004417b6a22033602042001200641056a3602002003450d0520062d0005211020012004417a6a3602042001200641066a360200201041074f0d054101210f0c010b20074104490d042006280001210a20012004417b6a22033602042001200641056a36020020034104490d04200628000521112001200441776a22033602042001200641096a3602002003450d0420062d000921102001200441766a36020420012006410a6a3602004102210f201041074f0d040b200241106a200110b701024020022802100d00200042023703080c050b200241086a200241106a41086a2802002201360200200220022903102212370300200041386a2011360200200041346a200a360200200020103a0031200041306a200f3a00002000200936022c200041286a2008360200200041206a200e370300200041186a200d3703002000200c3703102000200b370308200020053703002000201237023c200041c4006a20013602000c040b200042023703080c030b200042023703080c020b200042023703080c010b200042023703080b200241206a24000bd70c01057f230041106b22022400024020002d0000220341024b0d000240024002400240024002400240024002400240024020030e03000102000b0240200141046a280200200141086a2802002200460d00200128020021030c0a0b200041016a22032000490d07200041017422042003200420034b1b22044100480d070240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0a0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020421060240200141046a2802002204200528020022036b4104490d00200128020021040c060b200341046a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c060b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000280204210602400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b2004450d0320012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200028020821060240200141046a2802002204200528020022036b4104490d00200128020021040c040b200341046a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c040b20034101102d000b20054101102d000b20054101102d000b20034101102d000b200141086a200341046a360200200420036a200636000020002d0001220041064b0d040240024002400240024002400240024020000e0700010203040506000b410021030c060b410121030c050b410221030c040b410321030c030b410421030c020b410521030c010b410621030b200220033a000f02400240200141046a280200200141086a2802002200460d00200128020021040c010b200041016a22042000490d02200041017422052004200520044b1b22054100480d020240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200420006a20033a00000c040b200141086a200341046a360200200420036a200636000020002d0001220041064b0d030240024002400240024002400240024020000e0700010203040506000b410021030c060b410121030c050b410221030c040b410321030c030b410421030c020b410521030c010b410621030b200220033a000f0240200141046a280200200141086a2802002200460d00200128020021040c020b200041016a22042000490d00200041017422052004200520044b1b22054100480d000240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b1027000b200141086a200041016a360200200420006a20033a00000c010b200141086a200041016a360200200320006a41003a00000b200241106a24000b8c850305047f017e067f017e017f230041e0006b2202240002402000280200220341214b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e22000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f2021000b0240200141046a280200200141086a2802002203460d00200128020021040c5d0b200341016a22042003490d5d200341017422052004200520044b1b22054100480d5d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c5d0b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c5b0b200041016a22032000490d5c200041017422042003200420034b1b22044100480d5c0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c5b0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d5c200341017422052004200520044b1b22054100480d5c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d5c200341017422052004200520044b1b22054100480d5c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a000002400240024002402000290308220642c000540d00200642808001540d012006428080808004540d024108200679a741037622046b41044f0d0341d58bc500413641a888c6001028000b0240200141046a28020020052802002200460d00200128020021030c5c0b200041016a22032000490d5e200041017422042003200420034b1b22044100480d5e0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c5c0b20044101102d000b0240200141046a2802002203200141086a28020022006b4102490d00200128020021030c5a0b200041026a22042000490d5d200341017422002004200020044b1b22004100480d5d0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c5a0b20004101102d000b0240200141046a2802002203200141086a28020022006b4104490d00200128020021030c580b200041046a22042000490d5c200341017422002004200020044b1b22004100480d5c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c580b20004101102d000b0240200141046a280200200141086a2802002203460d00200128020021070c560b200341016a22052003490d5b200341017422072005200720054b1b22054100480d5b0240024020030d002005101e21070c010b200128020020032005102221070b02402007450d0020012007360200200141046a2005360200200141086a28020021030c560b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d5b200341017422052004200520044b1b22054100480d5b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a00000240200141046a28020020052802002203460d00200128020021040c540b200341016a22042003490d5a200341017422052004200520044b1b22054100480d5a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c540b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c520b200041016a22032000490d59200041017422042003200420034b1b22044100480d590240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c520b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c500b200341016a22042003490d58200341017422052004200520044b1b22054100480d580240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c500b20054101102d000b0240200141046a2207280200200141086a22042802002203460d00200128020021050c4e0b200341016a22052003490d57200341017422082005200820054b1b22084100480d570240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c4e0b20084101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d57200341017422052004200520044b1b22054100480d570240024020030d002005101e21040c010b200128020020032005102221040b2004450d1e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d57200341017422052004200520044b1b22054100480d570240024020030d002005101e21040c010b200128020020032005102221040b2004450d1f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a0000200041106a200110ca01200041306a200110ca01200041d0006a200110ca012000280204210720022000410c6a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c4c0b200320006a22052003490d56200441017422032005200320054b1b22034100480d560240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c4c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d56200341017422052004200520044b1b22054100480d560240024020030d002005101e21040c010b200128020020032005102221040b2004450d1f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a00000240200141046a28020020052802002203460d00200128020021040c4a0b200341016a22042003490d55200341017422052004200520044b1b22054100480d550240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c4a0b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d55200341017422052004200520044b1b22054100480d550240024020030d002005101e21040c010b200128020020032005102221040b2004450d1f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d55200341017422052004200520044b1b22054100480d550240024020030d002005101e21040c010b200128020020032005102221040b2004450d2020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000280204210720022000410c6a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c480b200320006a22052003490d54200441017422032005200320054b1b22034100480d540240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c480b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d54200341017422052004200520044b1b22054100480d540240024020030d002005101e21040c010b200128020020032005102221040b2004450d2020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d54200341017422052004200520044b1b22054100480d540240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000280204210702400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d54200441017422032005200320054b1b22034100480d540240024020040d002003101e21040c010b200128020020042003102221040b2004450d2220012004360200200141046a2003360200200141086a28020021030b200141086a2208200341046a360200200420036a2007360000200041086a28020021072002200041106a2802002203360240200241c0006a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c460b200420036a22082004490d53200541017422042008200420084b1b22044100480d530240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c460b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c440b200041016a22032000490d52200041017422042003200420034b1b22044100480d520240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c440b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c420b200041016a22032000490d51200041017422042003200420034b1b22044100480d510240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c420b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c400b200041016a22032000490d50200041017422042003200420034b1b22044100480d500240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c400b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c3a0b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c3a0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c380b200341016a22042003490d39200341017422052004200520044b1b22054100480d390240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c380b20054101102d000b0240200141046a2207280200200141086a22042802002203460d00200128020021050c360b200341016a22052003490d38200341017422082005200820054b1b22084100480d380240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c360b20084101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c340b200341016a22042003490d37200341017422052004200520044b1b22054100480d370240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c340b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c320b200341016a22042003490d36200341017422052004200520044b1b22054100480d360240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c320b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c2a0b200341016a22042003490d35200341017422052004200520044b1b22054100480d350240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c2a0b20054101102d000b0240200141046a2205280200200141086a22032802002204460d00200128020021070c280b200441016a22072004490d29200441017422082007200820074b1b22084100480d290240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c280b20084101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c260b200041016a22032000490d28200041017422042003200420034b1b22044100480d280240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c260b20044101102d000b0240200141046a2207280200200141086a22032802002204460d00200128020021050c240b200441016a22052004490d27200441017422082005200820054b1b22084100480d270240024020040d002008101e21050c010b200128020020042008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021040c240b20084101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c200b200341016a22042003490d26200341017422052004200520044b1b22054100480d260240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c200b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1e0b200341016a22042003490d1f200341017422052004200520044b1b22054100480d1f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1e0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1c0b200341016a22042003490d1e200341017422052004200520044b1b22054100480d1e0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1c0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1a0b200341016a22042003490d1d200341017422052004200520044b1b22054100480d1d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1a0b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c180b200041016a22032000490d1c200041017422042003200420034b1b22044100480d1c0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c180b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c160b200341016a22042003490d1b200341017422052004200520044b1b22054100480d1b0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c160b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c140b200041016a22032000490d1a200041017422042003200420034b1b22044100480d1a0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c140b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c120b200041016a22032000490d19200041017422042003200420034b1b22044100480d190240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c120b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c100b200041016a22032000490d18200041017422042003200420034b1b22044100480d180240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c100b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c0e0b200041016a22032000490d17200041017422042003200420034b1b22044100480d170240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0e0b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0c0b200341016a22042003490d16200341017422052004200520044b1b22054100480d160240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20034101102d000b200141086a200341016a360200200420036a41213a0000200041086a200110db020c350b200141086a200041016a360200200320006a41203a0000200110dc020c340b200141086a200041016a360200200320006a411f3a0000200110dc020c330b200141086a200041016a360200200320006a411e3a0000200110dc020c320b200141086a200041016a360200200320006a411d3a0000200110dc020c310b200141086a200341016a360200200420036a411c3a0000200041086a20011098010c300b200141086a200041016a360200200320006a411b3a0000200110dc020c2f0b200141086a200341016a360200200420036a411a3a00002000280204417f6a220341034b0d2e024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d08200041017422042003200420034b1b22044100480d080240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2207200341016a360200200420036a41033a0000200028020821042002200041106a2802002200360240200241c0006a200110632000450d3120042000410c6c6a2109200141046a210a0340200428020021082002200441086a2802002200360240200241c0006a2001106302400240200a2802002205200728020022036b2000490d00200128020021050c010b200320006a220b2003490d0820054101742203200b2003200b4b1b22034100480d080240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200a2003360200200728020021030c010b20034101102d000b2007200320006a360200200520036a2008200010cd051a2004410c6a22042009470d000c320b0b200141086a2205200341016a360200200420036a41023a00002000280208210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d06200341017422002005200020054b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c300b200141086a200041016a360200200320006a41013a00000c2f0b200141086a2207200341016a360200200420036a41003a0000200028020821082002200041106a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a0240024020002802144101460d000240200141046a28020020072802002200460d00200128020021030c020b200041016a22032000490d05200041017422042003200420034b1b22044100480d050240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41013a00002000280218210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d05200341017422002005200020054b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c2f0b200141086a200041016a360200200320006a41003a00000c2e0b200141086a200341016a360200200420036a41193a0000200041086a22042d0000417f6a220341024b0d2d0240024002400240024020030e03000102000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d06200041017422052003200520034b1b22054100480d060240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41023a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d05200341017422002004200020044b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2f0b200141086a2205200341016a360200200420036a41013a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d04200341017422002004200020044b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2e0b200141086a200041016a360200200320006a41003a000020022001360240200441016a200241c0006a10b9010c2d0b200141086a200341016a360200200420036a41183a0000200041086a22042d0000417f6a220341064b0d2c024002400240024002400240024002400240024002400240024020030e0700010203040506000b0240200141046a280200200141086a2802002203460d00200128020021050c0c0b200341016a22052003490d0d200341017422072005200720054b1b22074100480d0d0240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c0c0b20074101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c0a0b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0a0b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c080b200041016a22032000490d0b200041017422052003200520034b1b22054100480d0b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c080b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c060b200041016a22032000490d0a200041017422052003200520034b1b22054100480d0a0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d09200041017422042003200420034b1b22044100480d090240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200420036a41063a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d32200041057421000340200220013602402003200241c0006a10b901200341206a2103200041606a22000d000c330b0b200141086a200041016a360200200320006a41053a000020022001360240200441016a200241c0006a10b9010c310b200141086a200041016a360200200320006a41043a00000c300b200141086a200041016a360200200320006a41033a0000200441016a200110ca010c2f0b200141086a200041016a360200200320006a41023a000020022001360240200441016a200241c0006a10b9010c2e0b200141086a200041016a360200200320006a41013a000020022001360240200441016a200241c0006a10b9010c2d0b200141086a2207200341016a360200200520036a41003a000020022001360240200441016a200241c0006a10b9012000290338210602400240200141046a2802002204200728020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a20063700002000290340210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028022c21072002200041346a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c2c0b200141086a200341016a360200200420036a41173a00002000280208417f6a220341034b0d2b024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41033a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d04200341017422002004200020044b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2e0b200141086a2205200341016a360200200420036a41023a00002000290310210602400240200141046a2802002203200528020022006b4108490d00200128020021030c010b200041086a22042000490d03200341017422002004200020044b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a20063700000c2d0b200141086a2205200341016a360200200420036a41013a00002000290320210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2207200341086a360200200420036a2006370000200028020c21082002200041146a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d02200541017422042007200420074b1b22044100480d020240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a200041186a2d0000210402400240200141046a28020020072802002200460d00200128020021030c010b200041016a22032000490d02200041017422052003200520034b1b22054100480d020240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a20043a00000c2c0b200141086a2207200341016a360200200420036a41003a0000200028020c21082002200041146a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d01200541017422042007200420074b1b22044100480d010240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a200041186a2d000021040240200141046a28020020072802002200460d00200128020021030c020b200041016a22032000490d00200041017422052003200520034b1b22054100480d000240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b1027000b200141086a200041016a360200200320006a20043a00000c290b2003200441016a360200200520046a41163a0000200041086a22042d0000417f6a220541074b0d2802400240024002400240024002400240024002400240024002400240024020050e080001020304050607000b0240200728020020032802002205460d00200128020021080c0e0b200541016a22082005490d112005410174220a2008200a20084b1b220a4100480d110240024020050d00200a101e21080c010b20012802002005200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021050c0e0b200a4101102d000b0240200728020020032802002200460d00200128020021050c0c0b200041016a22052000490d10200041017422082005200820054b1b22084100480d100240024020000d002008101e21050c010b200128020020002008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021000c0c0b20084101102d000b0240200728020020032802002200460d00200128020021030c0a0b200041016a22032000490d0f200041017422052003200520034b1b22054100480d0f0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c0a0b20054101102d000b0240200728020020032802002205460d00200128020021080c080b200541016a22082005490d0e2005410174220a2008200a20084b1b220a4100480d0e0240024020050d00200a101e21080c010b20012802002005200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021050c080b200a4101102d000b0240200728020020032802002204460d00200128020021050c060b200441016a22052004490d0d200441017422082005200820054b1b22084100480d0d0240024020040d002008101e21050c010b200128020020042008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021040c060b20084101102d000b0240200728020020032802002200460d00200128020021050c040b200041016a22052000490d0c200041017422082005200820054b1b22084100480d0c0240024020000d002008101e21050c010b200128020020002008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021000c040b20084101102d000b0240200728020020032802002200460d00200128020021050c020b200041016a22052000490d0b200041017422082005200820054b1b22084100480d0b0240024020000d002008101e21050c010b200128020020002008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021000c020b20084101102d000b02400240200728020020032802002200460d00200128020021030c010b200041016a22032000490d0b200041017422052003200520034b1b22054100480d0b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a41073a0000200441016a200110ca010c2f0b2003200041016a360200200520006a41063a0000024002400240024002400240024020042d00010e0400010203000b0240200728020020032802002200460d00200128020021040c060b200041016a22042000490d0f200041017422052004200520044b1b22054100480d0f0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200728020020032802002200460d00200128020021040c040b200041016a22042000490d0e200041017422052004200520044b1b22054100480d0e0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020032802002200460d00200128020021040c020b200041016a22042000490d0d200041017422052004200520044b1b22054100480d0d0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020032802002200460d00200128020021040c010b200041016a22042000490d0d200041017422052004200520044b1b22054100480d0d0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b2003200041016a360200200420006a41033a00000c310b2003200041016a360200200420006a41023a00000c300b2003200041016a360200200420006a41013a00000c2f0b2003200041016a360200200420006a41003a00000c2e0b2003200041016a360200200520006a41053a0000024002400240024002400240024020042d00010e0400010203000b0240200728020020032802002200460d00200128020021040c060b200041016a22042000490d0e200041017422052004200520044b1b22054100480d0e0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200728020020032802002200460d00200128020021040c040b200041016a22042000490d0d200041017422052004200520044b1b22054100480d0d0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020032802002200460d00200128020021040c020b200041016a22042000490d0c200041017422052004200520044b1b22054100480d0c0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020032802002200460d00200128020021040c010b200041016a22042000490d0c200041017422052004200520044b1b22054100480d0c0240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b2003200041016a360200200420006a41033a00000c300b2003200041016a360200200420006a41023a00000c2f0b2003200041016a360200200420006a41013a00000c2e0b2003200041016a360200200420006a41003a00000c2d0b200141086a2209200441016a360200200520046a41043a0000200028020c21042002200041146a2802002208360240200241c0006a200110632008450d2c200141046a210c034020042d0000210a02400240200728020020032802002200460d00200128020021050c010b200041016a22052000490d092000410174220b2005200b20054b1b220b4100480d090240024020000d00200b101e21050c010b20012802002000200b102221050b02402005450d0020012005360200200c200b360200200928020021000c010b200b4101102d000b200441016a21042003200041016a360200200520006a200a3a00002008417f6a22080d000c2d0b0b2003200541016a360200200820056a41033a000020042d0001210802400240200728020020032802002204460d00200128020021050c010b200441016a22052004490d072004410174220a2005200a20054b1b220a4100480d070240024020040d00200a101e21050c010b20012802002004200a102221050b02402005450d0020012005360200200141046a200a360200200141086a28020021040c010b200a4101102d000b2003200441016a360200200520046a20083a0000200041186a29030021062000290310210d0240024020072802002205200328020022046b4110490d00200128020021050c010b200441106a22082004490d07200541017422042008200420084b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441106a360200200520046a220420063700082004200d370000200041c0006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041c4006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041286a2903002106200041206a290300210d0240024020072802002205200328020022046b4110490d00200128020021050c010b200441106a22082004490d07200541017422042008200420084b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441106a360200200520046a220420063700082004200d370000200041c8006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041cc006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041d0006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041d4006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041d8006a28020021080240024020072802002205200328020022046b4104490d00200128020021050c010b200441046a220a2004490d0720054101742204200a2004200a4b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441046a360200200520046a2008360000200041386a2903002106200041306a290300210d0240024020072802002204200328020022006b4110490d00200128020021040c010b200041106a22052000490d07200441017422002005200020054b1b22004100480d070240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041106a360200200420006a220020063700082000200d3700000c2b0b200141086a200041016a360200200320006a41023a0000200441016a200110ca010c2a0b2003200041016a360200200520006a41013a000020042d0001210502400240200728020020032802002200460d00200128020021030c010b200041016a22032000490d05200041017422072003200720034b1b22074100480d050240024020000d002007101e21030c010b200128020020002007102221030b02402003450d0020012003360200200141046a2007360200200141086a28020021000c010b20074101102d000b200141086a200041016a360200200320006a20053a0000200441026a200110ca010c290b2003200541016a360200200820056a41003a000020042d0001210802400240200728020020032802002204460d00200128020021050c010b200441016a22052004490d042004410174220a2005200a20054b1b220a4100480d040240024020040d00200a101e21050c010b20012802002004200a102221050b02402005450d0020012005360200200141046a200a360200200141086a28020021040c010b200a4101102d000b2003200441016a360200200520046a20083a0000200029031021060240024020072802002204200328020022006b4108490d00200128020021040c010b200041086a22052000490d04200441017422002005200020054b1b22004100480d040240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200420006a20063700000c280b200141086a200041016a360200200320006a41153a0000200110dc020c270b2003200441016a360200200720046a41143a0000200041086a22072d0000417f6a220441074b0d2602400240024002400240024002400240024002400240024002400240024020040e080001020304050607000b0240200528020020032802002200460d00200128020021040c0e0b200041016a22042000490d0f200041017422082004200820044b1b22084100480d0f0240024020000d002008101e21040c010b200128020020002008102221040b02402004450d0020012004360200200141046a2008360200200141086a28020021000c0e0b20084101102d000b0240200528020020032802002204460d00200128020021070c0c0b200441016a22072004490d0e200441017422082007200820074b1b22084100480d0e0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c0c0b20084101102d000b0240200528020020032802002204460d00200128020021080c0a0b200441016a22082004490d0d2004410174220a2008200a20084b1b220a4100480d0d0240024020040d00200a101e21080c010b20012802002004200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021040c0a0b200a4101102d000b0240200528020020032802002204460d00200128020021070c080b200441016a22072004490d0c200441017422082007200820074b1b22084100480d0c0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c080b20084101102d000b0240200528020020032802002204460d00200128020021070c060b200441016a22072004490d0b200441017422082007200820074b1b22084100480d0b0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c060b20084101102d000b0240200528020020032802002204460d00200128020021070c040b200441016a22072004490d0a200441017422082007200820074b1b22084100480d0a0240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c040b20084101102d000b0240200528020020032802002204460d00200128020021070c020b200441016a22072004490d09200441017422082007200820074b1b22084100480d090240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c020b20084101102d000b02400240200528020020032802002204460d00200128020021070c010b200441016a22072004490d09200441017422082007200820074b1b22084100480d090240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c010b20084101102d000b2003200441016a360200200720046a41073a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d09200541017422042007200420074b1b22044100480d090240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d09200541017422042007200420074b1b22044100480d090240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2d0b2003200441016a360200200720046a41063a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2c0b2003200441016a360200200720046a41053a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d07200541017422042007200420074b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d07200541017422042007200420074b1b22044100480d070240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2b0b2003200441016a360200200720046a41043a0000200029031821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d06200541017422042007200420074b1b22044100480d060240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200441086a360200200520046a2006370000200028020c21082002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002205200728020022046b2000490d00200128020021050c010b200420006a22072004490d06200541017422042007200420074b1b22044100480d060240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2008200010cd051a0c2a0b2003200441016a360200200720046a41033a0000200029032821060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2208200441086a360200200520046a2006370000200028020c210a2002200041146a2802002204360240200241c0006a2001106302400240200141046a2802002207200828020022056b2004490d00200128020021070c010b200520046a22082005490d05200741017422052008200520084b1b22054100480d050240024020070d002005101e21070c010b200128020020072005102221070b02402007450d0020012007360200200141046a2005360200200141086a28020021050c010b20054101102d000b200141086a2208200520046a360200200720056a200a200410cd051a200028021821072002200041206a2802002200360240200241c0006a2001106302400240200141046a2802002205200828020022046b2000490d00200128020021050c010b200420006a22082004490d05200541017422042008200420084b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2007200010cd051a0c290b2003200441016a360200200820046a41023a0000200029031021060240024020052802002204200328020022006b4108490d00200128020021040c010b200041086a22082000490d04200441017422002008200020084b1b22004100480d040240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c010b20004101102d000b2003200041086a360200200420006a200637000041002108024020072d000122044102460d0002400240200528020020032802002200460d00200128020021080c010b200041016a22082000490d052000410174220a2008200a20084b1b220a4100480d050240024020000d00200a101e21080c010b20012802002000200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021000c010b200a4101102d000b2003200041016a360200200820006a41013a0000200421080b02400240200528020020032802002200460d00200128020021040c010b200041016a22042000490d042000410174220a2004200a20044b1b220a4100480d040240024020000d00200a101e21040c010b20012802002000200a102221040b02402004450d0020012004360200200141046a200a360200200141086a28020021000c010b200a4101102d000b2003200041016a360200200420006a20083a000020052802002104200328020021000240024020072d000222074102470d00024020042000460d00200128020021040c020b200041016a22042000490d05200041017422052004200520044b1b22054100480d050240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b0240024020042000460d00200128020021040c010b200041016a22042000490d05200041017422082004200820044b1b22084100480d050240024020000d002008101e21040c010b200128020020002008102221040b02402004450d0020012004360200200141046a2008360200200141086a28020021000c010b20084101102d000b2003200041016a360200200420006a41013a000002400240200528020020032802002200460d00200128020021040c010b200041016a22042000490d05200041017422052004200520044b1b22054100480d050240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c010b20054101102d000b2003200041016a360200200420006a20073a00000c290b2003200041016a360200200420006a41003a00000c280b2003200441016a360200200720046a41013a000002400240024020002903284201510d000240200528020020032802002204460d00200128020021050c020b200441016a22052004490d05200441017422072005200720054b1b22074100480d050240024020040d002007101e21050c010b200128020020042007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021040c020b20074101102d000b02400240200528020020032802002204460d00200128020021070c010b200441016a22072004490d05200441017422082007200820074b1b22084100480d050240024020040d002008101e21070c010b200128020020042008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021040c010b20084101102d000b2003200441016a360200200720046a41013a0000200029033021060240024020052802002205200328020022046b4108490d00200128020021050c010b200441086a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200441086a360200200520046a20063700000c010b2003200441016a360200200520046a41003a00000b200028020c21082002200041146a2802002204360240200241c0006a2001106302400240200141046a2802002207200141086a28020022056b2004490d00200128020021070c010b200520046a220a2005490d0320074101742205200a2005200a4b1b22054100480d030240024020070d002005101e21070c010b200128020020072005102221070b02402007450d0020012007360200200141046a2005360200200141086a28020021050c010b20054101102d000b200141086a220a200520046a360200200720056a2008200410cd051a200028021821072002200041206a2802002200360240200241c0006a2001106302400240200141046a2802002205200a28020022046b2000490d00200128020021050c010b200420006a22082004490d03200541017422042008200420084b1b22044100480d030240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b2003200420006a360200200520046a2007200010cd051a0c270b2003200041016a360200200420006a41003a00000240024020072d00014101460d000240200528020020032802002200460d00200128020021040c020b200041016a22042000490d03200041017422052004200520044b1b22054100480d030240024020000d002005101e21040c010b200128020020002005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200528020020032802002200460d00200128020021030c010b200041016a22032000490d03200041017422042003200420034b1b22044100480d030240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a41013a0000200741026a200110ca010c270b2003200041016a360200200420006a41003a00000c260b200141086a200341016a360200200420036a41133a0000200041086a22042d0000417f6a220341084b0d25024002400240024002400240024002400240024002400240024020030e09000102030405060708000b0240200141046a280200200141086a2802002203460d00200128020021040c120b200341016a22042003490d17200341017422052004200520044b1b22054100480d170240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c120b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c100b200341016a22042003490d16200341017422052004200520044b1b22054100480d160240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c100b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0e0b200341016a22042003490d15200341017422052004200520044b1b22054100480d150240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0e0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c0c0b200341016a22042003490d14200341017422052004200520044b1b22054100480d140240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c080b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c080b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c060b200341016a22052003490d07200341017422072005200720054b1b22074100480d070240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c060b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c040b200341016a22052003490d06200341017422072005200720054b1b22074100480d060240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c040b20074101102d000b0240200141046a280200200141086a2802002203460d00200128020021050c020b200341016a22052003490d05200341017422072005200720054b1b22074100480d050240024020030d002007101e21050c010b200128020020032007102221050b02402005450d0020012005360200200141046a2007360200200141086a28020021030c020b20074101102d000b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d05200041017422052003200520034b1b22054100480d050240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a41083a0000200441016a200110ca010c290b200141086a200341016a360200200520036a41073a0000200441016a200110ca012000412c6a200110dd020c280b200141086a2207200341016a360200200520036a41063a00002000290330210602400240200141046a2802002203200728020022006b4108490d00200128020021030c010b200041086a22052000490d03200341017422002005200020054b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a2006370000200441016a200110ca010c270b200141086a2207200341016a360200200520036a41053a00002000290330210602400240200141046a2802002203200728020022006b4108490d00200128020021030c010b200041086a22052000490d02200341017422002005200020054b1b22004100480d020240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041086a360200200320006a2006370000200441016a200110ca010c260b200141086a2205200341016a360200200420036a41043a0000200029033021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b1027000b200141086a200341086a360200200420036a20063700002000410c6a200110dd020c230b200141086a2205200341016a360200200420036a41033a00002000290318210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d09200441017422032005200320054b1b22034100480d090240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028020c21072002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d09200441017422032005200320054b1b22034100480d090240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c220b200141086a2205200341016a360200200420036a41023a00002000290318210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028020c21072002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c210b200141086a2205200341016a360200200420036a41013a00002000290318210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a2006370000200028020c21072002200041146a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c200b200141086a2205200341016a360200200420036a41003a00002000290330210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a20063700002000410c6a200110dd020c1f0b200141086a2205200341016a360200200420036a41123a000002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41003a00002000280204210720022000410c6a2802002200360240200241c0006a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c1e0b200141086a200341016a360200200420036a41113a0000200041046a22042d0000417f6a220341034b0d1d024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c040b200041016a22032000490d08200041017422052003200520034b1b22054100480d080240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c020b200041016a22032000490d07200041017422052003200520034b1b22054100480d070240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41033a00002000280208210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d07200341017422002005200020054b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c200b200141086a200041016a360200200320006a41023a0000200441016a200110ca010c1f0b200141086a200041016a360200200320006a41013a0000200441016a200110ca010c1e0b200141086a200341016a360200200420036a41003a0000200028020821032002200041106a2802002200360240200241c0006a200110632000450d1d2000410574210003402003200110ca01200341206a2103200041606a22000d000c1e0b0b2004200341016a360200200520036a41103a0000200041086a22052d0000417f6a220341104b0d1c02400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e11000102030405060708090a0b0c0d0e0f10000b0240200728020020042802002203460d00200128020021050c200b200341016a22052003490d22200341017422082005200820054b1b22084100480d220240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c200b20084101102d000b0240200728020020042802002203460d00200128020021070c1e0b200341016a22072003490d21200341017422082007200820074b1b22084100480d210240024020030d002008101e21070c010b200128020020032008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021030c1e0b20084101102d000b0240200728020020042802002203460d00200128020021070c1c0b200341016a22072003490d20200341017422082007200820074b1b22084100480d200240024020030d002008101e21070c010b200128020020032008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021030c1c0b20084101102d000b0240200728020020042802002203460d00200128020021050c1a0b200341016a22052003490d1f200341017422082005200820054b1b22084100480d1f0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c1a0b20084101102d000b0240200728020020042802002203460d00200128020021050c180b200341016a22052003490d1e200341017422082005200820054b1b22084100480d1e0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c180b20084101102d000b0240200728020020042802002203460d00200128020021050c160b200341016a22052003490d1d200341017422082005200820054b1b22084100480d1d0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c160b20084101102d000b0240200728020020042802002203460d00200128020021050c140b200341016a22052003490d1c200341017422082005200820054b1b22084100480d1c0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c140b20084101102d000b0240200728020020042802002203460d00200128020021050c120b200341016a22052003490d1b200341017422082005200820054b1b22084100480d1b0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c120b20084101102d000b0240200728020020042802002203460d00200128020021050c100b200341016a22052003490d1a200341017422082005200820054b1b22084100480d1a0240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c100b20084101102d000b0240200728020020042802002203460d00200128020021050c0e0b200341016a22052003490d19200341017422082005200820054b1b22084100480d190240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c0e0b20084101102d000b0240200728020020042802002203460d00200128020021050c0c0b200341016a22052003490d18200341017422082005200820054b1b22084100480d180240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c0c0b20084101102d000b0240200728020020042802002203460d00200128020021050c0a0b200341016a22052003490d17200341017422082005200820054b1b22084100480d170240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c0a0b20084101102d000b0240200728020020042802002203460d00200128020021050c080b200341016a22052003490d16200341017422082005200820054b1b22084100480d160240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c080b20084101102d000b0240200728020020042802002203460d00200128020021050c060b200341016a22052003490d15200341017422082005200820054b1b22084100480d150240024020030d002008101e21050c010b200128020020032008102221050b02402005450d0020012005360200200141046a2008360200200141086a28020021030c060b20084101102d000b0240200728020020042802002200460d00200128020021030c040b200041016a22032000490d14200041017422052003200520034b1b22054100480d140240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d13200041017422052003200520034b1b22054100480d130240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d13200041017422082003200820034b1b22084100480d130240024020000d002008101e21030c010b200128020020002008102221030b02402003450d0020012003360200200141046a2008360200200141086a28020021000c010b20084101102d000b2004200041016a360200200320006a41103a000020052d0001210502400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d13200041017422072003200720034b1b22074100480d130240024020000d002007101e21030c010b200128020020002007102221030b02402003450d0020012003360200200141046a2007360200200141086a28020021000c010b20074101102d000b2004200041016a360200200320006a20053a00000c2c0b2004200041016a360200200320006a410f3a00000c2b0b2004200041016a360200200320006a410e3a00000c2a0b2004200341016a360200200520036a410d3a0000200041186a29030021062000290310210d0240024020072802002203200428020022006b4110490d00200128020021030c010b200041106a22052000490d10200341017422002005200020054b1b22004100480d100240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c290b2004200341016a360200200520036a410c3a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0f200341017422002007200020074b1b22004100480d0f0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c280b2004200341016a360200200520036a410b3a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0e200341017422002007200020074b1b22004100480d0e0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c270b2004200341016a360200200520036a410a3a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0d200341017422002007200020074b1b22004100480d0d0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c260b2004200341016a360200200520036a41093a0000200041186a29030021062000290310210d0240024020072802002203200428020022006b4110490d00200128020021030c010b200041106a22052000490d0c200341017422002005200020054b1b22004100480d0c0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c250b2004200341016a360200200520036a41083a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0b200341017422002007200020074b1b22004100480d0b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c240b2004200341016a360200200520036a41073a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d0a200341017422002007200020074b1b22004100480d0a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c230b2004200341016a360200200520036a41063a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d09200341017422002007200020074b1b22004100480d090240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c220b2004200341016a360200200520036a41053a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d08200341017422002007200020074b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c210b2004200341016a360200200520036a41043a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d07200341017422002007200020074b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c200b2004200341016a360200200520036a41033a0000200028020c21050240024020072802002203200428020022006b4104490d00200128020021030c010b200041046a22072000490d06200341017422002007200020074b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041046a360200200320006a20053600000c1f0b200141086a2208200341016a360200200720036a41023a000020022001360240200541016a200241c0006a10b901200541216a200110ca01200028024c21072002200041d4006a2802002200360240200241c0006a2001106302400240200141046a2802002205200828020022036b2000490d00200128020021050c010b200320006a22082003490d05200541017422032008200320084b1b22034100480d050240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021030c010b20034101102d000b2004200320006a360200200520036a2007200010cd051a0c1e0b200141086a2208200341016a360200200720036a41013a000020022001360240200541016a200241c0006a10b901200041386a29030021062000290330210d02400240200141046a2802002203200828020022006b4110490d00200128020021030c010b200041106a22052000490d04200341017422002005200020054b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c1d0b2004200341016a360200200520036a41003a0000200041186a29030021062000290310210d0240024020072802002203200428020022006b4110490d00200128020021030c010b200041106a22052000490d03200341017422002005200020054b1b22004100480d030240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b2004200041106a360200200320006a220020063700082000200d3700000c1c0b200141086a200341016a360200200420036a410f3a000020002d0008417f6a220341044b0d1b02400240024002400240024002400240024020030e050001020304000b0240200141046a280200200141086a2802002203460d00200128020021040c080b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c080b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41043a0000200028020c210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d06200341017422002005200020054b1b22004100480d060240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c1f0b200141086a2205200341016a360200200420036a41033a0000200028020c210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d05200341017422002005200020054b1b22004100480d050240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c1e0b200141086a2205200341016a360200200420036a41023a0000200028020c210402400240200141046a2802002203200528020022006b4104490d00200128020021030c010b200041046a22052000490d04200341017422002005200020054b1b22004100480d040240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041046a360200200320006a20043600000c1d0b200141086a2205200341016a360200200420036a41013a0000200028020c210702400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341046a360200200420036a2007360000024002400240024002400240024020002d00090e0400010203000b0240200141046a28020020052802002200460d00200128020021030c060b200041016a22032000490d08200041017422042003200420034b1b22044100480d080240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c060b20044101102d000b0240200141046a28020020052802002200460d00200128020021030c040b200041016a22032000490d07200041017422042003200420034b1b22044100480d070240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b0240200141046a28020020052802002200460d00200128020021030c020b200041016a22032000490d06200041017422042003200420034b1b22044100480d060240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200141046a28020020052802002200460d00200128020021030c010b200041016a22032000490d06200041017422042003200420034b1b22044100480d060240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c010b20044101102d000b200141086a200041016a360200200320006a41033a00000c1f0b200141086a200041016a360200200320006a41023a00000c1e0b200141086a200041016a360200200320006a41013a00000c1d0b200141086a200041016a360200200320006a41003a00000c1c0b200141086a2205200341016a360200200420036a41003a0000200041386a29030021062000290330210d02400240200141046a2802002204200528020022036b4110490d00200128020021040c010b200341106a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2207200341106a360200200420036a220320063700082003200d370000200028020c21082002200041146a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d02200541017422042007200420074b1b22044100480d020240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a200028021821082002200041206a2802002203360240200241c0006a2001106302400240200141046a2802002205200728020022046b2003490d00200128020021050c010b200420036a22072004490d02200541017422042007200420074b1b22044100480d020240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c010b20044101102d000b200141086a2207200420036a360200200520046a2008200310cd051a2000280224210520022000412c6a2802002200360240200241c0006a2001106302400240200141046a2802002204200728020022036b2000490d00200128020021040c010b200320006a22072003490d02200441017422032007200320074b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2005200010cd051a0c1b0b200141086a200341016a360200200420036a410e3a00002000280204417f6a220341024b0d1a02400240024020030e03000102000b0240200141046a280200200141086a2802002203460d00200128020021040c060b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c060b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c040b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d00200341017422052004200520044b1b22054100480d000240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b1027000b200141086a200341016a360200200420036a41023a0000200041086a200110de02200028022c200110da020c180b200141086a200341016a360200200420036a41013a0000200041086a200110de020c170b200141086a200341016a360200200420036a41003a00002000280208200110da020c160b200141086a200041016a360200200320006a410d3a0000200110dc020c150b200141086a200041016a360200200320006a410c3a0000200110dc020c140b200141086a200041016a360200200320006a410b3a0000200110dc020c130b200141086a2208200420036a360200200520046a2007200310cd051a200041146a280200210520022000411c6a2802002203360240200241c0006a2001106302402003450d0020052003410c6c6a210c200141046a210b03402005280200210a2002200541086a2802002203360240200241c0006a2001106302400240200b2802002207200828020022046b2003490d00200128020021070c010b200420036a22092004490d10200741017422042009200420094b1b22044100480d100240024020070d002004101e21070c010b200128020020072004102221070b02402007450d0020012007360200200b2004360200200828020021040c010b20044101102d000b2008200420036a360200200720046a200a200310cd051a2005410c6a2205200c470d000b0b200041206a28020021050240024002400240200141046a2802002204200828020022036b4104490d00200128020021040c010b200341046a22072003490d10200441017422032007200320074b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b2004450d0120012004360200200141046a2003360200200141086a28020021030b200141086a2207200341046a360200200420036a2005360000200041246a28020021080240200141046a2802002204200728020022036b4104490d00200128020021040c020b200341046a22052003490d0f200441017422032005200320054b1b22034100480d0f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20034101102d000b200141086a2205200341046a360200200420036a2008360000200041286a210b410021030340200b20036a2d0000210702400240200141046a220828020020052802002200460d00200128020021040c010b200041016a22042000490d0f2000410174220a2004200a20044b1b220a4100480d0f0240024020000d00200a101e21040c010b20012802002000200a102221040b02402004450d00200120043602002008200a360200200528020021000c010b200a4101102d000b2005200041016a360200200420006a20073a0000200341016a220341c000470d000c130b0b200141086a200320006a360200200420036a2007200010cd051a0c110b200141086a200341016a360200200420036a41003a0000200041046a200110630c100b200141086a200320006a360200200420036a2007200010cd051a0c0f0b2004200341016a360200200520036a41063a0000200041086a22052d0000417f6a2203410e4b0d0e0240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e0f000102030405060708090a0b0c0d0e000b0240200728020020042802002203460d00200128020021080c1c0b200341016a22082003490d252003410174220a2008200a20084b1b220a4100480d250240024020030d00200a101e21080c010b20012802002003200a102221080b02402008450d0020012008360200200141046a200a360200200141086a28020021030c1c0b200a4101102d000b0240200728020020042802002203460d00200128020021040c1a0b200341016a22042003490d24200341017422052004200520044b1b22054100480d240240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1a0b20054101102d000b0240200728020020042802002203460d00200128020021040c180b200341016a22042003490d23200341017422052004200520044b1b22054100480d230240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c180b20054101102d000b0240200728020020042802002200460d00200128020021030c160b200041016a22032000490d22200041017422052003200520034b1b22054100480d220240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c160b20054101102d000b0240200728020020042802002203460d00200128020021040c140b200341016a22042003490d21200341017422052004200520044b1b22054100480d210240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c140b20054101102d000b0240200728020020042802002203460d00200128020021040c120b200341016a22042003490d20200341017422052004200520044b1b22054100480d200240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c120b20054101102d000b0240200728020020042802002200460d00200128020021030c100b200041016a22032000490d1f200041017422052003200520034b1b22054100480d1f0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c100b20054101102d000b0240200728020020042802002200460d00200128020021030c0e0b200041016a22032000490d1e200041017422082003200820034b1b22084100480d1e0240024020000d002008101e21030c010b200128020020002008102221030b02402003450d0020012003360200200141046a2008360200200141086a28020021000c0e0b20084101102d000b0240200728020020042802002203460d00200128020021040c0c0b200341016a22042003490d1d200341017422052004200520044b1b22054100480d1d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0c0b20054101102d000b0240200728020020042802002203460d00200128020021040c0a0b200341016a22042003490d1c200341017422052004200520044b1b22054100480d1c0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c0a0b20054101102d000b0240200728020020042802002200460d00200128020021030c080b200041016a22032000490d1b200041017422052003200520034b1b22054100480d1b0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c080b20054101102d000b0240200728020020042802002200460d00200128020021030c060b200041016a22032000490d1a200041017422052003200520034b1b22054100480d1a0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c060b20054101102d000b0240200728020020042802002203460d00200128020021040c040b200341016a22042003490d19200341017422052004200520044b1b22054100480d190240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d18200041017422042003200420034b1b22044100480d180240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d18200041017422052003200520034b1b22054100480d180240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b2004200041016a360200200320006a410e3a00000c1c0b200141086a200041016a360200200320006a410d3a0000200541016a200110ca010c1b0b200141086a200341016a360200200420036a410c3a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d1a2000410574210003402003200110ca01200341206a2103200041606a22000d000c1b0b0b2004200041016a360200200320006a410b3a00000c190b2004200041016a360200200320006a410a3a00000c180b200141086a200341016a360200200420036a41093a00002000410c6a200110630c170b200141086a200341016a360200200420036a41083a00002000410c6a200110de020c160b2004200041016a360200200320006a41073a000020052d0001220041024b0d150240024002400240024020000e03000102000b0240200728020020042802002200460d00200128020021030c040b200041016a22032000490d14200041017422052003200520034b1b22054100480d140240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d13200041017422052003200520034b1b22054100480d130240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d13200041017422052003200520034b1b22054100480d130240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b2004200041016a360200200320006a41023a00000c170b2004200041016a360200200320006a41013a00000c160b2004200041016a360200200320006a41003a00000c150b2004200041016a360200200320006a41063a00000c140b200141086a200341016a360200200420036a41053a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d13200041246c210003402003200110de02200341246a21032000415c6a22000d000c140b0b200141086a200341016a360200200420036a41043a00002002200041106a360240200241c0006a200110df020c120b2004200041016a360200200320006a41033a00000c110b200141086a200341016a360200200420036a41023a00002002200041106a360240200241c0006a200110df020c100b200141086a200341016a360200200420036a41013a00002002200041106a360240200241c0006a200110df020c0f0b200141086a200341016a360200200820036a41003a00002000410c6a200110de022002200041306a360240200241c0006a200110df0220052d0001220041024b0d0e0240024002400240024020000e03000102000b0240200728020020042802002200460d00200128020021030c040b200041016a22032000490d0d200041017422052003200520034b1b22054100480d0d0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c040b20054101102d000b0240200728020020042802002200460d00200128020021030c020b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c020b20054101102d000b02400240200728020020042802002200460d00200128020021030c010b200041016a22032000490d0c200041017422052003200520034b1b22054100480d0c0240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b2004200041016a360200200320006a41023a00000c100b2004200041016a360200200320006a41013a00000c0f0b2004200041016a360200200320006a41003a00000c0e0b200141086a200341016a360200200420036a41053a00002000280208417f6a220341034b0d0d0240024002400240024002400240024020030e0400010203000b0240200141046a280200200141086a2802002204460d00200128020021050c060b200441016a22032004490d0f200441017422052003200520034b1b22034100480d0f0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c060b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c040b200441016a22032004490d0e200441017422052003200520034b1b22034100480d0e0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c040b20034101102d000b0240200141046a280200200141086a2802002204460d00200128020021050c020b200441016a22032004490d0d200441017422052003200520034b1b22034100480d0d0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b02400240200141046a280200200141086a2802002204460d00200128020021050c010b200441016a22032004490d0d200441017422052003200520034b1b22034100480d0d0240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c010b20034101102d000b200041306a2103200141086a200441016a360200200520046a41033a00002000410c6a200110de02200241c0006a21000c030b200041d8006a2103200141086a200441016a360200200520046a41023a00002000410c6a200110de02200041306a200110de02200241206a21000c020b200041c0006a2103200141086a200441016a360200200520046a41013a00002000410c6a200110de022002200041306a3602002002200110df02200241086a21000c010b200041306a2103200141086a200441016a360200200520046a41003a00002000410c6a200110de02200241dc006a21000b200020033602002000200110df020c0d0b200141086a200041016a360200200320006a41043a0000200110dc020c0c0b200141086a2208200341016a360200200420036a41003a00002000280204210c20022000410c6a2802002200360240200241c0006a200110632000450d0b200c200041f0006c6a210e200141046a210b034020022001360240200c41106a200241c0006a10b901200c2001106320022001360240200c41306a200241c0006a10b90120022001360240200c41d0006a200241c0006a10b901200c28020421042002200c28020c2200360240200241c0006a2001106302402000450d00200041246c210a0340200241c0006a200410a9012002280240210702400240200b2802002205200828020022006b20022802482203490d00200128020021050c010b200020036a22092000490d0a200541017422002009200020094b1b22004100480d0a0240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200b2000360200200828020021000c010b20004101102d000b2008200020036a360200200520006a2007200310cd051a02402002280244450d00200710200b200441246a2104200a415c6a220a0d000b0b200c41f0006a220c200e470d000c0c0b0b200141086a2205200341016a360200200720036a411320044102746b3a0000200220002903082206370300200441786a2103200141046a2107034002400240200728020020052802002200460d00200128020021040c010b200041016a22042000490d07200041017422082004200820044b1b22084100480d070240024020000d002008101e21040c010b200128020020002008102221040b02402004450d002001200436020020072008360200200528020021000c010b20084101102d000b2005200041016a360200200420006a2006a73a000020064208882106200341016a22002003492104200021032004450d000b200220063703002006500d0a200241206a41146a41083602002002412c6a410b360200200241086a41146a41033602002002200236023c200241908cc50036025c200241c0006a41146a41003602002002420337020c20024190fbc6003602082002410b360224200241e4fdc60036025020024201370244200241988cc5003602402002200241206a3602182002200241c0006a3602302002200241dc006a36022820022002413c6a360220200241086a41d483c6001033000b200141086a200041046a360200200320006a2006a74102744102723600000c090b200141086a200041026a360200200320006a2006a74102744101723b00000c080b200141086a200041016a360200200320006a2006a74102743a00000c070b200141086a200041016a360200200320006a41013a0000200110dc020c060b200141086a200341016a360200200420036a41003a00002000280208417f6a220341064b0d05024002400240024002400240024002400240024020030e0700010203040908000b0240200141046a280200200141086a2802002200460d00200128020021030c0e0b200041016a22032000490d09200041017422042003200420034b1b22044100480d090240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0e0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d09200341017422052004200520044b1b22054100480d090240024020030d002005101e21040c010b200128020020032005102221040b2004450d0620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020c21072002200041146a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c0c0b200320006a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200128020020032005102221040b2004450d0420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200029031021060240200141046a2802002203200528020022006b4108490d00200128020021030c0a0b200041086a22042000490d07200341017422002004200020044b1b22004100480d070240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c0a0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000200028020c21072002200041146a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c080b200320006a22052003490d06200441017422032005200320054b1b22034100480d060240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c080b20034101102d000b024002400240200141046a280200200141086a2802002203460d00200128020021050c010b200341016a22042003490d07200341017422052004200520044b1b22044100480d070240024020030d002004101e21050c010b200128020020032004102221050b2005450d0120012005360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200520036a41043a0000200028020c21032002200041146a2802002200360240200241c0006a200110632000450d0b2003200041186c6a2109200141046a210703402003280200210a2002200341086a2802002200360240200241c0006a20011063024002400240024020072802002208200428020022056b2000490d00200128020021080c010b200520006a220b2005490d0a20084101742205200b2005200b4b1b22054100480d0a0240024020080d002005101e21080c010b200128020020082005102221080b2008450d012001200836020020072005360200200428020021050b2004200520006a360200200820056a200a200010cd051a2003410c6a280200210a2002200341146a2802002200360240200241c0006a20011063024020072802002208200428020022056b2000490d00200128020021080c020b200520006a220b2005490d0920084101742205200b2005200b4b1b22054100480d090240024020080d002005101e21080c010b200128020020082005102221080b02402008450d002001200836020020072005360200200428020021050c020b20054101102d000b20054101102d000b2004200520006a360200200820056a200a200010cd051a200341186a22032009470d000c0c0b0b20044101102d000b20054101102d000b20054101102d000b20054101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d04200341017422052004200520044b1b22054100480d040240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a0000200028020c21072002200041146a2802002200360240200241c0006a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c020b200320006a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200320006a360200200420036a2007200010cd051a0c060b024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2207200341016a360200200420036a41053a0000200028020c21042002200041146a2802002200360240200241c0006a200110632000450d0620042000410c6c6a2109200141046a210a0340200428020021082002200441086a2802002200360240200241c0006a2001106302400240200a2802002205200728020022036b2000490d00200128020021050c010b200320006a220b2003490d0320054101742203200b2003200b4b1b22034100480d030240024020050d002003101e21050c010b200128020020052003102221050b02402005450d0020012005360200200a2003360200200728020021030c010b20034101102d000b2007200320006a360200200520036a2008200010cd051a2004410c6a22042009470d000c070b0b20054101102d000b1027000b200141086a200320006a360200200420036a2007200010cd051a0c030b200141086a200041086a360200200320006a20063700000c020b200141086a200320006a360200200420036a2007200010cd051a0c010b200141086a200041016a360200200320006a41003a00000b200241e0006a24000b9d800104047f017e027f017e230041106b22022400024020002d0000417f6a220341124b0d0002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020030e13000102030405060708090a0b0c0d0e0f101112000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b2004450d1320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41003a00002000290360210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d51200441017422032005200320054b1b22034100480d510240024020040d002003101e21040c010b200128020020042003102221040b2004450d1420012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041016a200110ca01200041216a2d0000210702400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b2004450d1520012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a20073a00002000280224210720022000412c6a280200220336020c2002410c6a2001106302400240200141046a2802002205200828020022046b2003490d00200128020021050c010b200420036a22082004490d51200541017422042008200420084b1b22044100480d510240024020050d002004101e21050c010b200128020020052004102221050b2005450d1620012005360200200141046a2004360200200141086a28020021040b200141086a2208200420036a360200200520046a2007200310cd051a200141046a2802002104200828020021030240200028023022070d00024020042003460d00200128020021040c500b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c500b20054101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d51200341017422052004200520044b1b22054100480d510240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041386a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c4e0b200420036a22082004490d50200541017422042008200420084b1b22044100480d500240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c4e0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d50200341017422052004200520044b1b22054100480d500240024020030d002005101e21040c010b200128020020032005102221040b2004450d1720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a00002000290328210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d50200441017422032005200320054b1b22034100480d500240024020040d002003101e21040c010b200128020020042003102221040b2004450d1820012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200029033021060240200141046a2802002204200528020022036b4108490d00200128020021040c4c0b200341086a22052003490d4f200441017422032005200320054b1b22034100480d4f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c4c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a00002000290350210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d4f200441017422032005200320054b1b22034100480d4f0240024020040d002003101e21040c010b200128020020042003102221040b2004450d1920012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200141046a2802002104200528020021030240200028020422070d00024020042003460d00200128020021040c4a0b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c4a0b20054101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d4f200341017422052004200520044b1b22054100480d4f0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1a20012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a000020022000410c6a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c480b200420036a22082004490d4e200541017422042008200420084b1b22044100480d4e0240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c480b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4e200341017422052004200520044b1b22054100480d4e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1a20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41033a0000024020002903084201510d000240200141046a28020020052802002203460d00200128020021040c460b200341016a22042003490d4e200341017422052004200520044b1b22054100480d4e0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c460b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d4e200341017422052004200520044b1b22054100480d4e0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200029031021060240200141046a2802002204200528020022036b4108490d00200128020021040c440b200341086a22052003490d4d200441017422032005200320054b1b22034100480d4d0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c440b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4d200341017422052004200520044b1b22054100480d4d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41043a0000024020002802044101460d000240200141046a28020020052802002203460d00200128020021040c420b200341016a22042003490d4d200341017422052004200520044b1b22054100480d4d0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c420b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d4d200341017422052004200520044b1b22054100480d4d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028020821070240200141046a2802002204200528020022036b4104490d00200128020021040c400b200341046a22052003490d4c200441017422032005200320054b1b22034100480d4c0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c400b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4c200341017422052004200520044b1b22054100480d4c0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41053a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c3e0b200041086a22042000490d4b200341017422002004200020044b1b22004100480d4b0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c3e0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4b200341017422052004200520044b1b22054100480d4b0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41063a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c3c0b200041086a22042000490d4a200341017422002004200020044b1b22004100480d4a0240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c3c0b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d4a200341017422052004200520044b1b22054100480d4a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d1c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41073a00002000290310210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d4a200441017422032005200320054b1b22034100480d4a0240024020040d002003101e21040c010b200128020020042003102221040b2004450d1d20012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041046a20011062200141046a28020021042005280200210302402000412c6a28020022054102470d00024020042003460d00200128020021000c3b0b200341016a22002003490d4a200341017422042000200420004b1b22044100480d4a0240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c3b0b20044101102d000b0240024020042003460d00200128020021040c010b200341016a22042003490d4a200341017422072004200720044b1b22074100480d4a0240024020030d002007101e21040c010b200128020020032007102221040b2004450d1e20012004360200200141046a2007360200200141086a28020021030b200141086a2207200341016a360200200420036a41013a0000200041206a29030021062000290318210902400240200141046a2802002204200728020022036b4110490d00200128020021040c010b200341106a22072003490d4a200441017422032007200320074b1b22034100480d4a0240024020040d002003101e21040c010b200128020020042003102221040b2004450d1f20012004360200200141046a2003360200200141086a28020021030b200141086a2207200341106a360200200420036a2203200637000820032009370000200041286a280200210802400240200141046a2802002204200728020022036b4104490d00200128020021040c010b200341046a22072003490d4a200441017422032007200320074b1b22034100480d4a0240024020040d002003101e21040c010b200128020020042003102221040b2004450d2020012004360200200141046a2003360200200141086a28020021030b200141086a2207200341046a360200200420036a2008360000024020054101460d000240200141046a28020020072802002200460d00200128020021030c3a0b200041016a22032000490d4a200041017422042003200420034b1b22044100480d4a0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c3a0b20044101102d000b02400240200141046a28020020072802002203460d00200128020021040c010b200341016a22042003490d4a200341017422052004200520044b1b22054100480d4a0240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200028023021040240200141046a2802002203200528020022006b4104490d00200128020021030c380b200041046a22052000490d49200341017422002005200020054b1b22004100480d490240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c380b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d49200341017422052004200520044b1b22054100480d490240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41083a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c360b200041086a22042000490d48200341017422002004200020044b1b22004100480d480240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c360b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d48200341017422052004200520044b1b22054100480d480240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41093a0000200029030821060240200141046a2802002203200528020022006b4108490d00200128020021030c340b200041086a22042000490d47200341017422002004200020044b1b22004100480d470240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c340b20004101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d47200341017422052004200520044b1b22054100480d470240024020030d002005101e21040c010b200128020020032005102221040b2004450d2120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410a3a00002000290330210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d47200441017422032005200320054b1b22034100480d470240024020040d002003101e21040c010b200128020020042003102221040b2004450d2220012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a20063700002000290338210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d47200441017422032005200320054b1b22034100480d470240024020040d002003101e21040c010b200128020020042003102221040b2004450d2320012004360200200141046a2003360200200141086a28020021030b200141086a2205200341086a360200200420036a2006370000200041016a200110ca01024020002903404201510d000240200141046a28020020052802002203460d00200128020021040c320b200341016a22042003490d47200341017422052004200520044b1b22054100480d470240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c320b20054101102d000b02400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d47200341017422052004200520044b1b22054100480d470240024020030d002005101e21040c010b200128020020032005102221040b2004450d2420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041d0006a2903002106200029034821090240200141046a2802002204200528020022036b4110490d00200128020021040c300b200341106a22052003490d46200441017422032005200320054b1b22034100480d460240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c300b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d46200341017422052004200520044b1b22054100480d460240024020030d002005101e21040c010b200128020020032005102221040b2004450d2420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a410b3a0000200029032821060240200141046a2802002204200528020022036b4108490d00200128020021040c2c0b200341086a22052003490d45200441017422032005200320054b1b22034100480d450240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c2c0b20034101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c2a0b200341016a22042003490d2b200341017422052004200520044b1b22054100480d2b0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c2a0b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c280b200341016a22042003490d2a200341017422052004200520044b1b22054100480d2a0240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c280b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c260b200341016a22042003490d29200341017422052004200520044b1b22054100480d290240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c260b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c240b200341016a22042003490d28200341017422052004200520044b1b22054100480d280240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c240b20054101102d000b0240200141046a280200200141086a2802002200460d00200128020021030c220b200041016a22032000490d27200041017422042003200420034b1b22044100480d270240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c220b20044101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c200b200341016a22042003490d26200341017422052004200520044b1b22054100480d260240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c200b20054101102d000b0240200141046a280200200141086a2802002203460d00200128020021040c1e0b200341016a22042003490d25200341017422052004200520044b1b22054100480d250240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c1e0b20054101102d000b20054101102d000b20034101102d000b20054101102d000b20044101102d000b20054101102d000b20054101102d000b20034101102d000b20054101102d000b20034101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20034101102d000b20074101102d000b20034101102d000b20034101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20034101102d000b20034101102d000b20054101102d000b20054101102d000b200141086a2205200341016a360200200420036a41123a0000200041106a29030021062000290308210902400240200141046a2802002203200528020022006b4110490d00200128020021030c010b200041106a22042000490d08200341017422002004200020044b1b22004100480d080240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c010b20004101102d000b200141086a200041106a360200200320006a22012006370008200120093700000c230b200141086a2205200341016a360200200420036a41113a000020002d0001210402400240200141046a28020020052802002200460d00200128020021030c010b200041016a22032000490d07200041017422052003200520034b1b22054100480d070240024020000d002005101e21030c010b200128020020002005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021000c010b20054101102d000b200141086a200041016a360200200320006a20043a00000c220b200141086a200041016a360200200320006a41103a00000c210b200141086a2205200341016a360200200420036a410f3a00002000290328210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041016a200110ca010c200b200141086a2205200341016a360200200420036a410e3a00002000290310210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a20063700002000280204210720022000410c6a280200220036020c2002410c6a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c1f0b200141086a2205200341016a360200200420036a410d3a00002000290310210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a20063700002000280204210720022000410c6a280200220036020c2002410c6a2001106302400240200141046a2802002204200528020022036b2000490d00200128020021040c010b200320006a22052003490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2007200010cd051a0c1e0b200141086a2205200341016a360200200420036a410c3a00002000290328210602400240200141046a2802002204200528020022036b4108490d00200128020021040c010b200341086a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200341086a360200200420036a2006370000200041016a200110ca010c1d0b200141086a2205200341086a360200200420036a2006370000200029033021060240200141046a2802002204200528020022036b4108490d00200128020021040c020b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b1027000b200141086a200341086a360200200420036a2006370000200041016a200110ca010c1a0b200141086a200341106a360200200420036a22032006370008200320093700000c010b200141086a200341016a360200200420036a41003a00000b02400240024020002903584201510d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d17200341017422052004200520044b1b22054100480d170240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b0240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d19200341017422052004200520044b1b22054100480d190240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041e8006a2903002106200029036021090240200141046a2802002204200528020022036b4110490d00200128020021040c020b200341106a22052003490d18200441017422032005200320054b1b22034100480d180240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20054101102d000b200141086a200341106a360200200420036a22032006370008200320093700000c010b200141086a200341016a360200200420036a41003a00000b2000280224210520022000412c6a280200220036020c2002410c6a2001106302400240200141046a2802002204200141086a28020022036b2000490d00200128020021040c010b200320006a22072003490d15200441017422032007200320074b1b22034100480d150240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2005200010cd051a0c170b200141086a200041086a360200200320006a20063700000c160b200141086a200041086a360200200320006a20063700000c150b200141086a200041046a360200200320006a20043600000c140b200141086a200041016a360200200320006a41003a00000c130b200141086a200341016a360200200020036a41003a00000c120b200141086a200041086a360200200320006a20063700000c110b200141086a200041086a360200200320006a20063700000c100b200141086a200341046a360200200420036a20073600000c010b200141086a200341016a360200200420036a41003a00000b200041186a200110fa03200028020c21052002200041146a280200220036020c2002410c6a2001106302400240200141046a2802002204200141086a28020022036b2000490d00200128020021040c010b200320006a22072003490d0b200441017422032007200320074b1b22034100480d0b0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a200320006a360200200420036a2005200010cd051a0c0d0b200141086a200341086a360200200420036a20063700000c010b200141086a200341016a360200200420036a41003a00000b2000290318210602400240200141046a2802002204200141086a28020022036b4108490d00200128020021040c010b200341086a22052003490d08200441017422032005200320054b1b22034100480d080240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c010b20034101102d000b200141086a2205200341086a360200200420036a200637000041002107024020002d000122044102460d0002400240200141046a28020020052802002203460d00200128020021070c010b200341016a22072003490d09200341017422082007200820074b1b22084100480d090240024020030d002008101e21070c010b200128020020032008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021030c010b20084101102d000b200141086a200341016a360200200720036a41013a0000200421070b0240024002400240024002400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d0d200341017422052004200520044b1b22054100480d0d0240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20073a0000200141046a280200210420052802002103024020002d000222054102470d00024020042003460d00200128020021000c060b200341016a22002003490d0d200341017422042000200420004b1b22044100480d0d0240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c060b20044101102d000b0240024020042003460d00200128020021000c010b200341016a22002003490d0d200341017422042000200420004b1b22044100480d0d0240024020030d002004101e21000c010b200128020020032004102221000b2000450d0220012000360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200020036a41013a0000200141046a280200210320042802002100024020054101460d00024020032000460d00200128020021030c050b200041016a22032000490d0d200041017422042003200420034b1b22044100480d0d0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c050b20044101102d000b024020032000460d00200128020021030c030b200041016a22032000490d0c200041017422042003200420034b1b22044100480d0c0240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c030b20044101102d000b20054101102d000b20044101102d000b200141086a200041016a360200200320006a41013a00000c0c0b200141086a200041016a360200200320006a41003a00000c0b0b200141086a200341016a360200200020036a41003a00000c0a0b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200041106a200110b502200041206a200110b502200041306a200110b502200041c0006a200110b502200141046a2802002104200141086a28020021030240024020002d000122054102470d00024020042003460d00200128020021000c020b200341016a22002003490d06200341017422042000200420004b1b22044100480d060240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c020b20044101102d000b0240024002400240024020042003460d00200128020021000c010b200341016a22002003490d09200341017422042000200420004b1b22044100480d090240024020030d002004101e21000c010b200128020020032004102221000b2000450d0120012000360200200141046a2004360200200141086a28020021030b200141086a2204200341016a360200200020036a41013a0000200141046a280200210320042802002100024020054101460d00024020032000460d00200128020021030c040b200041016a22032000490d09200041017422042003200420034b1b22044100480d090240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c040b20044101102d000b024020032000460d00200128020021030c020b200041016a22032000490d08200041017422042003200420034b1b22044100480d080240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c020b20044101102d000b20044101102d000b200141086a200041016a360200200320006a41013a00000c090b200141086a200041016a360200200320006a41003a00000c080b200141086a200341016a360200200020036a41003a00000c070b200141086a200341086a360200200420036a2006370000200041016a200110ca010c060b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024002400240200028023c22070d00024020042003460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b024002400240024020042003460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041c4006a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c020b200420036a22082004490d04200541017422042008200420084b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20054101102d000b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024002400240200028024822070d00024020042003460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b024002400240024020042003460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041d0006a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c020b200420036a22082004490d04200541017422042008200420084b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20054101102d000b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024002400240200028025422070d00024020042003460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b024002400240024020042003460d00200128020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200128020020032005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021030b200141086a2208200341016a360200200420036a41013a00002002200041dc006a280200220336020c2002410c6a200110630240200141046a2802002205200828020022046b2003490d00200128020021050c020b200420036a22082004490d04200541017422042008200420084b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20054101102d000b200141086a200420036a360200200520046a2007200310cd051a0c010b200141086a200341016a360200200420036a41003a00000b200141046a2802002104200141086a2802002103024020002d00224101460d00024020042003460d00200128020021000c040b200341016a22002003490d01200341017422042000200420004b1b22044100480d010240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c040b20044101102d000b024020042003460d00200128020021000c020b200341016a22002003490d00200341017422042000200420004b1b22044100480d000240024020030d002004101e21000c010b200128020020032004102221000b02402000450d0020012000360200200141046a2004360200200141086a28020021030c020b20044101102d000b1027000b200141086a200341016a360200200020036a41013a00000c010b200141086a200341016a360200200020036a41003a00000b200241106a24000bfc0101077f230041106b220124002001410036020820014201370300200110dc02200128020421022001280200210302400240200041046a2802002204200041086a28020022056b20012802082206490d00200028020021040c010b0240200520066a22072005490d00200441017422052007200520074b1b22054100480d000240024020040d002005101e21040c010b200028020020042005102221040b02402004450d0020002004360200200041046a2005360200200041086a28020021050c020b20054101102d000b1027000b200041086a200520066a360200200420056a2003200610cd051a02402002450d00200310200b200141106a24000bf40c01067f230041106b22022400200141046a2802002103200141086a280200210402400240024002400240024002400240200028020022050d00024020032004460d00200128020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200128020020042006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021040c020b20064101102d000b024002400240024020032004460d00200128020021030c010b200441016a22032004490d05200441017422062003200620034b1b22064100480d050240024020040d002006101e21030c010b200128020020042006102221030b2003450d0120012003360200200141046a2006360200200141086a28020021040b200141086a2207200441016a360200200320046a41013a00002002200041086a2802002204360204200241046a200110630240200141046a2802002206200728020022036b2004490d00200128020021060c020b200320046a22072003490d04200641017422032007200320074b1b22034100480d040240024020060d002003101e21060c010b200128020020062003102221060b02402006450d0020012006360200200141046a2003360200200141086a28020021030c020b20034101102d000b20064101102d000b200141086a200320046a360200200620036a2005200410cd051a0c010b200141086a200441016a360200200320046a41003a00000b200141046a2802002103200141086a2802002104024002400240200028020c22050d00024020032004460d00200128020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200128020020042006102221030b02402003450d0020012003360200200141046a2006360200200141086a28020021040c020b20064101102d000b024002400240024020032004460d00200128020021030c010b200441016a22032004490d05200441017422062003200620034b1b22064100480d050240024020040d002006101e21030c010b200128020020042006102221030b2003450d0120012003360200200141046a2006360200200141086a28020021040b200141086a2207200441016a360200200320046a41013a00002002200041146a2802002204360208200241086a200110630240200141046a2802002206200728020022036b2004490d00200128020021060c020b200320046a22072003490d04200641017422032007200320074b1b22034100480d040240024020060d002003101e21060c010b200128020020062003102221060b02402006450d0020012006360200200141046a2003360200200141086a28020021030c020b20034101102d000b20064101102d000b200141086a200320046a360200200620036a2005200410cd051a0c010b200141086a200441016a360200200320046a41003a00000b200141046a2802002103200141086a28020021040240200028021822060d00024020032004460d00200128020021000c050b200441016a22002004490d01200441017422032000200320004b1b22034100480d010240024020040d002003101e21000c010b200128020020042003102221000b02402000450d0020012000360200200141046a2003360200200141086a28020021040c050b20034101102d000b0240024020032004460d00200128020021030c010b200441016a22032004490d01200441017422052003200520034b1b22054100480d010240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a00002002200041206a280200220436020c2002410c6a200110630240200141046a2802002203200528020022006b2004490d00200128020021030c030b200020046a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20054101102d000b200141086a200020046a360200200320006a2006200410cd051a0c010b200141086a200441016a360200200020046a41003a00000b200241106a24000bba0801037f0240024002400240024002400240024002400240024020002d00004101470d00200041046a280200220241ffff034b0d01200241ef014b0d03200141046a280200200141086a2802002200460d02200128020021030c0a0b0240200141046a280200200141086a2802002202460d00200128020021030c090b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c090b20044101102d000b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d03200041017422042003200420034b1b22044100480d030240024020000d002004101e21030c010b200128020020002004102221030b2003450d0420012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fd013a00000240200141046a2802002203200428020022006b4104490d00200128020021030c070b200041046a22042000490d02200341017422002004200020044b1b22004100480d020240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c070b20004101102d000b200041016a22032000490d01200041017422042003200420034b1b22044100480d010240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c080b20044101102d000b02400240200141046a280200200141086a2802002200460d00200128020021030c010b200041016a22032000490d01200041017422042003200420034b1b22044100480d010240024020000d002004101e21030c010b200128020020002004102221030b2003450d0320012003360200200141046a2004360200200141086a28020021000b200141086a2204200041016a360200200320006a41fc013a00000240200141046a2802002203200428020022006b4102490d00200128020021030c040b200041026a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c040b20004101102d000b1027000b20044101102d000b20044101102d000b200141086a200041026a360200200320006a20023b00000f0b200141086a200041046a360200200320006a20023600000f0b200141086a200241016a360200200320026a41ff013a0000200041016a200110ca010f0b200141086a200041016a360200200320006a20023a00000b990a03017f027e057f230041e0006b2202240002400240024002400240024002400240024020002802002200290300220342c000544100200041086a29030022045022051b0d0020034280800154410020051b0d01200342808080800454410020051b0d02411020047920037942c0007c20044200521ba741037622066b41044f0d0341d58bc500413641a888c6001028000b0240200141046a280200200141086a2802002200460d00200128020021050c070b200041016a22052000490d03200041017422062005200620054b1b22064100480d030240024020000d002006101e21050c010b200128020020002006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021000c070b20064101102d000b0240200141046a2802002205200141086a28020022006b4102490d00200128020021050c050b200041026a22062000490d02200541017422002006200020064b1b22004100480d020240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c050b20004101102d000b0240200141046a2802002205200141086a28020022006b4104490d00200128020021050c030b200041046a22062000490d01200541017422002006200020064b1b22004100480d010240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c030b20004101102d000b02400240200141046a280200200141086a2802002205460d00200128020021070c010b200541016a22082005490d01200541017422072008200720084b1b22084100480d010240024020050d002008101e21070c010b200128020020052008102221070b02402007450d0020012007360200200141046a2008360200200141086a28020021050c010b20084101102d000b200141086a2208200541016a360200200720056a413320064102746b3a0000200029030021032002200041086a290300220437030820022003370300200641706a2105200141046a2107034002400240200728020020082802002200460d00200128020021060c010b200041016a22062000490d02200041017422092006200920064b1b22094100480d020240024020000d002009101e21060c010b200128020020002009102221060b02402006450d002001200636020020072009360200200828020021000c010b20094101102d000b2008200041016a360200200620006a2003a73a00002003420888200442388684210320044208882104200541016a22002005492106200021052006450d000b20022003370300200220043703082003200484500d04200241286a41146a4108360200200241346a410c360200200241106a41146a410336020020022002360240200241e08cc500360244200241c8006a41146a41003602002002420337021420024190fbc6003602102002410c36022c200241e4fdc6003602582002420137024c200241988cc5003602482002200241286a3602202002200241c8006a3602382002200241c4006a3602302002200241c0006a360228200241106a41d483c6001033000b1027000b200141086a200041046a360200200520006a2003a74102744102723600000c020b200141086a200041026a360200200520006a2003a74102744101723b00000c010b200141086a200041016a360200200520006a2003a74102743a00000b200241e0006a24000bc50c03017f017e057f230041106b220224002002410036020820024201370300200029030021030240024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200028022821050240024020022802042206200228020822046b4104490d00200441046a2107200228020021060c010b200441046a22072004490d08200641017422082007200820074b1b22084100480d080240024020060d002008101e21060c010b200228020020062008102221060b2006450d0220022008360204200220063602000b20022007360208200620046a2005360000200028022c21060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d08200741017422082005200820054b1b22054100480d080240024020070d002005101e21070c010b200228020020072005102221070b2007450d0320022005360204200220073602000b2002200441046a360208200720046a2006360000024020002903084201510d000240200228020420022802082204460d00200228020021070c070b200441016a22072004490d08200441017422062007200620074b1b22064100480d080240024020040d002006101e21070c010b200228020020042006102221070b02402007450d0020022006360204200220073602000c070b20064101102d000b02400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d08200441017422062007200620074b1b22064100480d080240024020040d002006101e21070c010b200228020020042006102221070b2007450d0420022006360204200220073602000b2002200441016a360208200720046a41013a000020002903102103024020022802042206200228020822046b4108490d00200441086a2107200228020021060c050b200441086a22072004490d07200641017422052007200520074b1b22054100480d070240024020060d002005101e21060c010b200228020020062005102221060b02402006450d0020022005360204200220063602000c050b20054101102d000b41084101102d000b20084101102d000b20054101102d000b20064101102d000b20022007360208200620046a20033700000c010b2002200441016a360208200720046a41003a00000b02400240024020002903184201510d000240200228020420022802082204460d00200228020021070c020b200441016a22072004490d03200441017422062007200620074b1b22064100480d030240024020040d002006101e21070c010b200228020020042006102221070b02402007450d0020022006360204200220073602000c020b20064101102d000b0240024002400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d05200441017422062007200620074b1b22064100480d050240024020040d002006101e21070c010b200228020020042006102221070b2007450d0120022006360204200220073602000b2002200441016a360208200720046a41013a000020002903202103024020022802042207200228020822046b4108490d00200228020021070c020b200441086a22062004490d04200741017422052006200520064b1b22064100480d040240024020070d002006101e21070c010b200228020020072006102221070b02402007450d0020022006360204200220073602000c020b20064101102d000b20064101102d000b2002200441086a360208200720046a20033700000c010b2002200441016a360208200720046a41003a00000b200041306a200210d902200028023c21052002200041c4006a280200220436020c2002410c6a20021063024020022802042206200228020822076b2004490d00200228020021060c020b200720046a22082007490d00200641017422072008200720084b1b22074100480d000240024020060d002007101e21060c010b200228020020062007102221060b02402006450d002002200736020420022006360200200228020821070c020b20074101102d000b1027000b2002200720046a360208200620076a2005200410cd051a200041c8006a20021094012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000b930803057f047e0a7f230041e0006b2202240020012802082103200128020021040240024002400240200128020c2205200128020422062f0106490d00024002400240200641908cc500460d00200628020022010d012003ad2107410021010c020b41cfa5c000412841a888c6001028000b200441016a210420063301044220862003ad8421070b200610202007a721052007422088a7220320012f01064f0d01200121060c020b2000200336020820002006360204200020043602002000200541016a36020c200241206a41186a200620054105746a220141206a2900002207370300200241206a41106a200141186a2900002208370300200241206a41086a200141106a29000022093703002000200141086a290000220a370010200041186a2009370000200041206a2008370000200041286a2007370000200041e8006a200620054106746a220141a0036a290300370300200041e0006a20014198036a290300370300200041d8006a20014190036a290300370300200041d0006a20014188036a290300370300200041c8006a20014180036a290300370300200041c0006a200141f8026a290300370300200041386a200141f0026a2903003703002000200141e8026a2903003703302002200a3703200c020b034002400240200128020022060d002005ad2107410021060c010b200441016a210420013301044220862005ad8421070b200110202007a72105200621012007422088a7220320062f01064f0d000b0b200241186a220b200620034105746a220141206a290000370300200241106a220c200141186a290000370300200241086a220d200141106a2900003703002002200141086a290000370300200241206a41386a220e200620034106746a220141a0036a290300370300200241d0006a220f20014198036a290300370300200241206a41286a221020014190036a290300370300200241206a41206a221120014188036a290300370300200241206a41186a221220014180036a290300370300200241206a41106a2213200141f8026a290300370300200241206a41086a2214200141f0026a2903003703002002200141e8026a290300370320200341027420066a41ac086a280200210102402004417f6a2206450d00034020012802a80821012006417f6a22060d000b0b2000410036020c2000200536020820002001360204200041003602002000200229030037001020002002290320370330200041186a200d290300370000200041206a200c290300370000200041286a200b290300370000200041386a2014290300370300200041c0006a2013290300370300200041c8006a2012290300370300200041d0006a2011290300370300200041d8006a2010290300370300200041e0006a200f290300370300200041e8006a200e2903003703000b200241e0006a24000ba90703057f047e087f230041d0006b2202240020012802082103200128020021040240024002400240200128020c2205200128020422062f0106490d00024002400240200641908cc500460d00200628020022010d012003ad2107410021010c020b41cfa5c000412841a888c6001028000b200441016a210420063301044220862003ad8421070b200610202007a721052007422088a7220320012f01064f0d01200121060c020b2000200336020820002006360204200020043602002000200541016a36020c200241206a41186a200620054105746a220141206a2900002207370300200241206a41106a200141186a2900002208370300200241206a41086a200141106a29000022093703002000200141086a290000220a370010200041186a2009370000200041206a2008370000200041286a2007370000200041d8006a2006200541306c6a22014190036a290300370300200041d0006a20014188036a290300370300200041c8006a20014180036a290300370300200041c0006a200141f8026a290300370300200041386a200141f0026a2903003703002000200141e8026a2903003703302002200a3703200c020b034002400240200128020022060d002005ad2107410021060c010b200441016a210420013301044220862005ad8421070b200110202007a72105200621012007422088a7220320062f01064f0d000b0b200241186a220b200620034105746a220141206a290000370300200241106a220c200141186a290000370300200241086a220d200141106a2900003703002002200141086a290000370300200241206a41286a220e2006200341306c6a22014190036a290300370300200241206a41206a220f20014188036a290300370300200241206a41186a221020014180036a290300370300200241206a41106a2211200141f8026a290300370300200241206a41086a2212200141f0026a2903003703002002200141e8026a290300370320200341027420066a41fc066a280200210102402004417f6a2206450d00034020012802f80621012006417f6a22060d000b0b2000410036020c2000200536020820002001360204200041003602002000200229030037001020002002290320370330200041186a200d290300370000200041206a200c290300370000200041286a200b290300370000200041386a2012290300370300200041c0006a2011290300370300200041c8006a2010290300370300200041d0006a200f290300370300200041d8006a200e2903003703000b200241d0006a24000bf30203047f017e037f230041306b22012400200141186a41086a2202420037030020014200370318418cc6c1004115200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a10e402024020012802182204450d00200129021c21052003450d02200210200c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b41082104420021050b20042005422088a722064106746a21072004210202400340024020022007470d00410021080c020b410121082002411c6a22032000460d01200341246a210220032000412010cf050d000b0b02402006450d0020064106742103200441106a210203400240200241046a280200450d00200228020010200b200241c0006a2102200341406a22030d000b0b02402005a7450d00200410200b200141306a240020080bed0c04127f027e067f057e230041c0026b22022400200241106a2001105f024002402002280210450d00200041003602000c010b0240024002400240024002400240200128020422034140712204417f4c0d002002280214210502400240200341067622060d00410821070c010b2004101e2207450d020b02402005450d0041002108410021090340200241003a00b8022009220a41016a21092001280204210b417f210441002103024002400340200b2003460d0120024198026a20036a2001280200220c2d00003a00002001200b20046a3602042001200c41016a3602002002200341016a220d3a00b8022004417f6a2104200d2103200d4120470d000b200241f8006a41186a220e20024198026a41186a220f290300370300200241f8006a41106a221020024198026a41106a2211290300370300200241f8006a41086a221220024198026a41086a22132903003703002002200229039802370378200b200d6b22034110490d0a200c41096a2900002114200c29000121152001200341706a3602042001200c41116a360200200241086a2001105f2002280208450d010c0a0b200341ff0171450d09200241003a00b8020c090b200128020441306e221641306c2203417f4c0d02200228020c21170240024020030d00410821180c010b2003101e2218450d050b02402017450d00410021190340200241003a00b8022019221a41016a21192001280204210b417f21044100210302400240024002400340200b2003460d0120024198026a20036a2001280200220c2d00003a00002001200b20046a3602042001200c41016a3602002002200341016a220d3a00b8022004417f6a2104200d2103200d4120470d000b200241f8016a41186a2203200f290300370300200241f8016a41106a22042011290300370300200241f8016a41086a221b201329030037030020022002290398023703f801200b200d6b220d4110490d01200c41096a290000211c200c290001211d2001200d41706a3602042001200c41116a360200200241b8016a41086a201b290300221e370300200241b8016a41106a2004290300221f370300200241b8016a41186a2003290300222037030020024198016a41186a2204202037030020024198016a41106a220d201f37030020024198016a41086a220b201e370300200220022903f801221e3703b8012002201e370398012016201a470d03201a41017422032019200320194b1b2216ad42307e221e422088a70d0d201ea7220341004e0d020c0d0b200341ff0171450d00200241003a00b8020b200241b8016a41086a200241d8016a41086a2903003703002016450d0c201810200c0c0b02400240201a0d002003101e21180c010b2018201a41306c2003102221180b2018450d080b2018201a41306c6a2203201c3703082003201d3703002003200229039801370310200341186a200b290300370300200341206a200d290300370300200341286a200429030037030020192017470d000b0b2018450d08200241386a41086a2012290300221c370300200241386a41106a2010290300221d370300200241386a41186a200e290300221e370300200241186a41086a2204201c370300200241186a41106a220d201d370300200241186a41186a220b201e37030020022002290378221c3703382002201c37031802402006200a470d00200a41017422032009200320094b1b220641ffffff1f712006470d08200641067422034100480d0802400240200a0d002003101e21070c010b2007200a4106742003102221070b2007450d070b2007200a4106746a220320143703082003201537030020032018360210200341146a2017ad4220862016ad843702002003411c6a2002290318370200200341246a20042903003702002003412c6a200d290300370200200341346a200b290300370200200841c0006a210820092005470d000b0b2000200636020420002007360200200041086a20053602000c070b102c000b20044108102d000b20034108102d000b20034108102d000b20034108102d000b1027000b200241386a41086a200241d8006a41086a290300370300200241386a41106a200241d8006a41106a290300370300200241386a41186a200241d8006a41186a29030037030020022002290358370338200041003602000240200a450d00200741106a210103400240200141046a280200450d00200128020010200b200141c0006a2101200841406a22080d000b0b2006450d00200710200b200241c0026a24000be20603057f017e027f230041b0016b22022400024002400240024002404116101e2203450d002003410e6a41002900aad543370000200341086a41002900a4d5433700002003410029009cd54337000020034116412c10222203450d0120032001370016200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411e200241e0006a1001200241c0006a41186a2004290300370300200241c0006a41106a2005290300370300200241c0006a41086a2006290300370300200220022903603703402003102020024100360260200241c0006a4120200241e0006a1003210320022802602204417f460d032003450d03200220043602ac01200220033602a801200241e0006a200241a8016a10d802200229036822014202510d02200241106a200241e0006a41186a290300370300200241186a200241e0006a41206a290300370300200241086a41186a200241e0006a41286a290300370300200241086a41206a200241e0006a41306a290300370300200241086a41286a20024198016a290300370300200241086a41306a200241a0016a29030037030020022002290370370308200229036021072004450d04200310200c040b41164101102d000b412c4101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420221010b200241e0006a41306a2203200241086a41306a290300370300200241e0006a41286a2204200241086a41286a290300370300200241e0006a41206a2205200241086a41206a290300370300200241e0006a41186a2206200241086a41186a290300370300200241e0006a41106a2208200241086a41106a290300370300200241e0006a41086a2209200241086a41086a290300370300200220022903083703600240024020014202520d002000420037030020004200370318200042003703282000420137023c200041086a4200370300200041306a41003a0000200041c4006a41003602000c010b2000200137030820002007370300200041106a2002290360370300200041186a2009290300370300200041206a2008290300370300200041286a2006290300370300200041306a2005290300370300200041386a2004290300370300200041c0006a20032903003703000b200241b0016a24000be70101057f230041206b2202240002400240411f101e2203450d00200341176a41002900a4d443370000200341106a410029009dd443370000200341086a4100290095d4433700002003410029008dd4433700002003411f413e10222203450d012003200137001f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411f4101102d000b413e4101102d000bd80101057f230041206b22022400024002404116101e2203450d002003410e6a41002900aad543370000200341086a41002900a4d5433700002003410029009cd54337000020034116412c10222203450d0120032001370016200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411e20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41164101102d000b412c4101102d000bdc0505027f017e067f017e057f230041f0016b2202240020024100360288012001412020024188016a100321010240024002402002280288012203417f460d0020010d010b200042023703080c010b200220033602542002200136025020024188016a200241d0006a10d8020240024020022903900122044202510d00200241d8006a41086a220520024188016a41186a290300370300200241d8006a41106a220620024188016a41206a290300370300200241d8006a41186a220720024188016a41286a290300370300200241d8006a41206a220820024188016a41306a290300370300200241d8006a41286a220920024188016a41386a280200360200200220022903980137035820024188016a41c0006a280200210a200229038801210b20022802c401210c20022802cc01210d200241d0016a200241d0006a10930120022903d0014202520d01200a450d00200c10200b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b200241206a41286a220e2009280200360200200241206a41206a22092008290300370300200241206a41186a22082007290300370300200241206a41106a22072006290300370300200241206a41086a22062005290300370300200241086a2205200241d0016a41086a290300370300200241106a220f200241d0016a41106a290300370300200241186a2210200241d0016a41186a29030037030020022002290358370320200220022903d001370300200020043703082000200b3703002000200d360244200041c0006a200a3602002000200c36023c20002002290320370310200041186a2006290300370300200041206a2007290300370300200041286a2008290300370300200041306a2009290300370300200041386a200e280200360200200041c8006a2002290300370300200041d0006a2005290300370300200041d8006a200f290300370300200041e0006a20102903003703002003450d00200110200b200241f0016a24000bf706040a7f017e017f027e230041a0036b22022400200241b8016a200110b90402400240200228028c0222034102470d00200042023703a0010c010b200241e0006a200241b8016a41d40010cd051a200241c8006a41106a2204200241b8016a41e8006a280200360200200241c8006a41086a2205200241b8016a41e0006a290300370300200241306a41086a2206200241b8016a4180016a290300370300200241306a41106a2207200241b8016a4188016a290300370300200220024190026a2903003703482002200241b0026a290300370330200241b8016a41ec006a2802002108200241a8026a2802002109200241b8016a41f4006a280200210a200241cc026a280200210b200241d0026a290300210c20022802c802210d200241d8026a2001109301024002400240024020022903d8024202520d00200042023703a0012003450d0302402009450d00200921010340200828026021082001417f6a22010d000b03402009417f6a22090d000b0b0240200a450d0041002109410021014100210003402002200936029c03200220013602980320022008360294032002200036029003200241f8026a20024190036a1061200228028003210020022802840321082002280288032101200228028c032109200a417f6a220a0d000b0b200841908cc500460d032008280200210a20081020200a450d03200a2802002109200a10202009450d03200928020022080d010c020b2000200241e0006a41d40010cd052101200241186a41106a20042802002200360200200241186a41086a2005290300220e370300200241086a22042006290300370300200241106a2205200729030037030020022002290348220f37031820022002290330370300200120033602542001200f370358200141e0006a200e370300200141e8006a2000360200200141f4006a200a36020020012009360270200141ec006a20083602002001200c370398012001200b360294012001200d360290012001200229030037037820014180016a200429030037030020014188016a2005290300370300200141b8016a200241f0026a290300370300200141b0016a200241d8026a41106a290300370300200141a8016a200241d8026a41086a290300370300200120022903d8023703a0010c030b034020091020200821092008280200220a2108200a0d000b0b200910200b200b450d00200d10200b200241a0036a24000bf206030c7f017e017f23004180026b2202240020012802042103024002400240024002400240024020012802002204450d002002200128020822053602a80120022004417f6a22063602a001200220032802603602a4012002200241a0016a10ea02200241a0016a410272410041da0010cc051a200241c0006a200241a0016a41dc0010cd051a200241386a22044200370300200241306a22074200370300200241286a22084200370300200241206a22094200370300200241106a41086a220a420037030020024200370310419001101e2201450d0220014100360200200141046a200241c0006a41dc0010cd051a20014188016a200429030037030020014180016a2007290300370300200141f8006a2008290300370300200141f0006a2009290300370300200141e8006a200a290300370300200120022903103703602001200228020022043602602002200136020020022002280204220b41016a36020420042001360200200441003b01042002210c20032f0106450d01200341e4006a2107200141086a210d200341086a21084100210a03402008290300210e200220053602a801200220063602a001200220072802003602a401200241c0006a200241a0016a10ea02200b2002280244470d0620012f01062209410a4b0d072002280248210f20022802402104200d20094103746a200e3703002001200941016a22094102746a41e0006a2004360200200120093b0106200420093b0104200420013602002002200f20022802086a41016a360208200841086a2108200741046a2107200a41016a220a20032f0106490d000c020b0b200241a0016a410272410041da0010cc051a41e000101e2209450d0220094100360200200941046a200241a0016a41dc0010cd051a2002420037024420022009360240200241c0006a210c20032f0106450d00200341086a210420092f0106220a41037420096a41086a2107410021010340200a20016a2208410b4f0d04200720042903003703002009200841016a3b01062002200141016a2201360248200441086a2104200741086a2107200120032f0106490d000b0b2000200c290200370200200041086a200c41086a28020036020020024180026a24000f0b4190014108102d000b41e0004108102d000b41a8a5c000412741a888c6001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000bd91807077f037e037f027e017f027e117f230041d0036b22012400024002400240024002404112101e2202450d00200241106a41002f00e0d5433b0000200241086a41002900d8d543370000200241002900d0d54337000020024112412410222202450d0120022000370012200141e0006a41186a22034200370300200141e0006a41106a22044200370300200141e0006a41086a22054200370300200142003703602002411a200141e0006a1001200141086a41186a2003290300370300200141086a41106a2004290300370300200141086a41086a200529030037030020012001290360370308200210202001410036028002200141086a412020014180026a100321032001280280022206417f460d032003450d03200120063602c403200120033602c00320014180026a200141c0036a10e90220012903a00322004202510d02200141e0006a20014180026a41d40010cd051a200141c8006a41086a200141e0026a290300370300200141d8006a200141e8026a280200360200200141386a41086a20014180036a280200360200200141286a41086a2001418c036a280200360200200120012903d802370348200120012903f802370338200120012902840337032820012802d402210720012802ec02210220012802f002210420012802f4022105200141b8036a2903002108200141b0036a290300210920012903a803210a200128029403210b200128029003210c02402006450d00200310200b200141086a412010040c040b41124101102d000b41244101102d000b41ceb8c4004133200141c8036a41fcbfc4004184b9c400102e000b420221000b024020004202510d004100210d0240024002400240024002400240024002400240024020094201520d0020014180026a200810b804200141e0006a41186a20014180026a41186a2203290000220e370300200141e0006a41106a20014180026a41106a2206290000220f370300200141e0006a41086a20014180026a41086a22102900002211370300200120012900800222123703602003200e3703002006200f3703002010201137030020012012370380024120101e220d450d01200d200129038002370000200d41186a2003290300370000200d41106a2006290300370000200d41086a20102903003700000b024020004201510d0020094201510d03200141e0006a41186a22034200370300200141e0006a41106a22064200370300200141e0006a41086a221042003703002001420037036041e2d5c300411a200141e0006a100120014180026a41186a200329030037030020014180026a41106a200629030037030020014180026a41086a2010290300370300200120012903603703800220014180026a412010040c090b20014180026a200a10b804200141e0006a41186a20014180026a41186a2203290300220e370300200141e0006a41106a20014180026a41106a2206290300220f370300200141e0006a41086a20014180026a41086a22102903002211370300200120012903800222123703602003200e3703002006200f3703002010201137030020012012370380024120101e2213450d012013200129038002370000201341186a2003290300370000201341106a2006290300370000201341086a201029030037000020014100360280022013412020014180026a100321032001280280022206417f460d042003450d042001200636024c2001200336024820014180026a200141c8006a10e90220012903a003220e4202510d03200141e0006a20014180026a41a00110cd051a20012903a803210f02402006450d00200310200b20014180026a200141e0006a41a00110cd051a200141a8036a200f370300200141b8036a2008370300200141b0036a20093703002001200e3703a003200141203602642001201336026020014180026a200141e0006a10c70420012802d402450d07200141f4026a2802002106200141ec026a28020021030240200141f0026a2802002210450d00201021140340200328026021032014417f6a22140d000b03402010417f6a22100d000b0b02402006450d00410021104100211441002115034020012015360254200120143602502001200336024c20012010360248200141e0006a200141c8006a106120012802682110200128026c210320012802702114200128027421152006417f6a22060d000b0b200341908cc500460d0720032802002110200310202010450d0720102802002106201010202006450d07200628020022030d050c060b41204101102d000b41204101102d000b200141e0006a41186a22034200370300200141e0006a41106a22064200370300200141e0006a41086a221042003703002001420037036041e2d5c300411a200141e0006a100120014180026a41186a200329030037030020014180026a41106a200629030037030020014180026a41086a201029030037030020012001290360370380022001200837036020014180026a4120200141e0006a410810050c050b41ceb8c4004133200141c8036a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b0340200610202003210620032802002210210320100d000b0b200610200b024020014194036a280200450d0020012802900310200b20131020410121160c010b41002113410021160b02400240200d0d00410021030c010b2001410036028002200d412020014180026a1003210302400240024002402001280280022206417f460d002003450d00200120063602c403200120033602c00320014180026a200141c0036a10e902024020012903a0034202510d00200141e0006a20014180026a41d40010cd051a200141c8006a41086a2210200141e0026a2214290300370300200141d8006a2215200141e8026a2217280200360200200141386a41086a221820014180036a2219280200360200200141286a41086a221a2001418c036a221b280200360200200120012903d802370348200120012903f802370338200120012902840337032820012802d402211c20012802ec02211d20012802f002211e20012802f402211f200141b8036a22202903002109200141b0036a22212903002108200129039803210e2001280294032122200128029003212302402006450d00200310200b20014180026a200141e0006a41d40010cd051a200141f4026a201f360200200141f0026a201e360200200141ec026a201d360200200141d8026a20012903483703002014201029030037030020172015280200360200200141f8026a200129033837030020192018280200360200201b201a2802003602002001201c3602d4022001200129032837028403202020093703002021200837030020014198036a200e37030020014194036a2022360200200141a8036a200a3703002001202336029003200120003703a003200141203602642001200d36026020014180026a200141e0006a10c70420012802d402450d0420012802f402210620012802ec022103024020012802f0022210450d00201021140340200328026021032014417f6a22140d000b03402010417f6a22100d000b0b02402006450d00410021104100211441002115034020012015360254200120143602502001200336024c20012010360248200141e0006a200141c8006a106120012802682110200128026c210320012802702114200128027421152006417f6a22060d000b0b200341908cc500460d0420032802002110200310202010450d0420102802002106201010202006450d04200628020022030d020c030b41ceb8c4004133200141c8036a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b0340200610202003210620032802002210210320100d000b0b200610200b0240200128029403450d0020012802900310200b200d1020410121030b02402016201345720d00201310200b0240200d452003720d00200d10200b2007410246211002402007417d71450d0002402004450d00200421030340200228026021022003417f6a22030d000b03402004417f6a22040d000b0b02402005450d0041002103410021044100210603402001200336026c20012004360268200120023602642001200636026020014180026a200141e0006a10612001280288022106200128028c022102200128029002210420012802940221032005417f6a22050d000b0b200241908cc500460d0020022802002104200210202004450d0020042802002103200410202003450d00024020032802002202450d000340200310202002210320022802002204210220040d000b0b200310200b20100d00200b450d004101200c20101b10200b200141d0036a24000bff13010b7f230041b0026b220224000240024002400240024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032000370012200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411a200241e0006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903603703082003102020024100360260200241086a4120200241e0006a10032106024020022802602207417f460d002006450d002002200736022c20022006360228200241e0006a200241286a10e90220022903800222004202510d03200241d0006a220820024190026a290300370300200241c8006a41106a220920024198026a2903003703002002200229038802370348200241d4016a2802002105200241cc016a280200210320022802f401210a20022802f001210b20022802d001210420022802b401210c02402007450d00200610200b200241286a41106a2008290300370300200241c0006a20092903003703002002200037032820022002290348370330200c450d0502402004450d00200421060340200328026021032006417f6a22060d000b03402004417f6a22040d000b0b02402005450d004100210441002106410021070340200220073602ac02200220063602a802200220033602a402200220043602a002200241e0006a200241a0026a106120022802682104200228026c210320022802702106200228027421072005417f6a22050d000b0b200341908cc500460d0520032802002105200310202005450d0520052802002104200510202004450d0520042802002203450d040340200410202003210420032802002205210320050d000c050b0b200241286a200010c6040c050b41124101102d000b41244101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b200410200b200a450d00200b10200b200241e0006a41106a200241286a41086a290300370300200241e0006a41186a200241286a41106a29030037030020024180016a200241286a41186a2903003703002002200229032837036820022001360260200241003602502002420137034820012802502104024002400240024002400240024002404104101e2203450d002002410436024c20022002280250220541046a36025020022003360248200320056a2004360000200141d4006a200241c8006a10cb04200128028401210502400240200228024c2204200228025022036b4104490d00200228024821040c010b200341046a22062003490d07200441017422032006200320064b1b22034100480d070240024020040d002003101e21040c010b200228024820042003102221040b2004450d022002200336024c20022004360248200228025021030b2002200341046a360250200420036a200536000002402001280288014101460d000240200228024c20022802502203460d00200228024821040c060b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c060b20054101102d000b02400240200228024c20022802502203460d00200228024821040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b200228024820032005102221040b2004450d032002200536024c20022004360248200228025021030b2002200341016a360250200420036a41013a0000200128028c0121050240200228024c2204200228025022036b4104490d00200228024821040c040b200341046a22062003490d06200441017422032006200320064b1b22034100480d060240024020040d002003101e21040c010b200228024820042003102221040b02402004450d002002200336024c20022004360248200228025021030c040b20034101102d000b41044101102d000b20034101102d000b20054101102d000b2002200341046a360250200420036a20053600000c010b2002200341016a360250200420036a41003a00000b02400240024020012802104102470d000240200228024c20022802502203460d00200228024821040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c020b20054101102d000b02400240200228024c20022802502203460d00200228024821040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c010b20054101102d000b2002200341016a360250200420036a41013a00002001200241c8006a10fb030c010b2002200341016a360250200420036a41003a00000b024002400240200141386a2802004102470d000240200228024c20022802502203460d00200228024821040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c020b20054101102d000b02400240200228024c20022802502203460d00200228024821040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024820032005102221040b02402004450d002002200536024c20022004360248200228025021030c010b20054101102d000b2002200341016a360250200420036a41013a0000200141286a200241c8006a10fb030c010b2002200341016a360250200420036a41003a00000b2001280290012105200220014198016a28020022033602a002200241a0026a200241c8006a10630240200228024c2204200228025022016b2003490d00200228024821040c020b200120036a22062001490d00200441017422012006200120064b1b22014100480d000240024020040d002001101e21040c010b200228024820042001102221040b02402004450d002002200136024c20022004360248200228025021010c020b20014101102d000b1027000b2002200120036a360250200420016a2005200310cd051a200241e0006a41086a200241c8006a109401200228024c2103200241086a4120200228024822012002280250100502402003450d00200110200b200241b0026a24000be70603087f017e047f230041b0026b220224000240024002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200037001f200241c8006a41186a22044200370300200241c8006a41106a22054200370300200241c8006a41086a220642003703002002420037034820034127200241c8006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903483703082003102020024100360248200241086a4120200241c8006a1003210320022802482204417f460d022003450d022002200436028c022002200336028802200241c8006a20024188026a10ef030240024020022903484202510d0020024198016a280200210720024190016a2802002105200228029c01210820024190026a20024188026a1093012002290390024202520d010240200541014b0d0020050e020100010b2008450d00200710200b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b200241e8016a41186a20024190026a41186a22062903002200370300200241e8016a41106a20024190026a41106a2209290300220a370300200241286a41086a220b20024190026a41086a220c290300370300200241286a41106a220d200a370300200241286a41186a220e2000370300200220022903900237032802402004450d00200310200b2006200e2903003703002009200d290300370300200c200b29030037030020022002290328370390020240200541014b0d0020050e020400040b2008450d03200710200c030b411f4101102d000b413e4101102d000b20024190026a200010f3030b200241c8006a200141800110cd051a200241e0016a200241a8026a290300370300200241d8016a200241a0026a290300370300200241d0016a20024198026a29030037030020022002290390023703c801200241203602ec012002200241086a3602e801200241c8006a200241e8016a10f40302400240200228029001220341014b0d00024020030e020200020b2002419c016a280200450d0120024198016a28020010200c010b2002419c016a280200450d0020024198016a28020010200b200241b0026a24000b880302037f067e230041d0006b220324002003410036023020012002200341306a10032101024002400240024020032802302202417f460d0020010d010b200042023703000c010b2003200236022c200320013602282002450d0120032002417f6a220436022c2003200141016a36022820012d0000220541014b0d0102400240024020050e020001000b42002106200441084f0d010c030b4201210620044108490d020b2003200241776a36022c2003200141096a36022820012900012107200341306a200341286a10930120032903304202510d01200341086a41186a200341306a41186a2903002208370300200341086a41106a200341306a41106a2903002209370300200341086a41086a200341306a41086a290300220a37030020032003290330220b3703082000200737030820002006370300200041106a200b370300200041186a200a370300200041206a2009370300200041286a2008370300200110200b200341d0006a24000f0b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000bf80101057f230041206b22022400024002404125101e2203450d002003411d6a41002900ddf042370000200341186a41002900d8f042370000200341106a41002900d0f042370000200341086a41002900c8f042370000200341002900c0f0423700002003412541ca0010222203450d0120032001370025200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412d20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41254101102d000b41ca004101102d000ba10203017f017e027f230041206b220224002002410036021020024201370308200029030021034101101e2104024002400240024020034201510d0002402004450d00200441003a0000200242818080801037020c2002200436020820022000290308370318200241186a21050c020b41014101102d000b2004450d01200441013a0000200242818080801037020c2002200436020820022000290308370318200241186a21050b20044101410910222204450d01200420052903003700012002200436020820024289808080900137020c200041106a200241086a109401200228020c210420012802002001280204200228020822002002280210100502402004450d00200010200b200241206a24000f0b41014101102d000b41094101102d000bfb07020e7f067e230041d0016b2202240002400240024002400240412a101e2203450d00200341286a41002f00c3ed423b0000200341206a41002900bbed42370000200341186a41002900b3ed42370000200341106a41002900abed42370000200341086a41002900a3ed423700002003410029009bed423700002003412a41d40010222203450d012003200137002a20024190016a41186a2204420037030020024190016a41106a2205420037030020024190016a41086a2206420037030020024200370390012003413220024190016a1001200241386a41186a2004290300370300200241386a41106a2005290300370300200241386a41086a20062903003703002002200229039001370338200310202002410036029001200241386a412020024190016a100321032002280290012204417f460d032003450d03200220043602042002200336020020024190016a200210f2032002290390014201510d02200241d8006a41306a2205200241c8016a290300370300200241d8006a41286a220620024190016a41306a2207290300370300200241d8006a41206a220820024190016a41286a2209290300370300200241d8006a41186a220a20024190016a41206a220b290300370300200241d8006a41106a220c20024190016a41186a220d290300370300200241d8006a41086a220e20024190016a41106a220f290300370300200220022903980137035802402004450d00200310200b200241306a20052903002201370300200241286a20062903002210370300200241206a20082903002211370300200241186a200a2903002212370300200241106a200c2903002213370300200241086a200e29030022143703002002200229035822153703002007200137030020092010370300200b2011370300200d2012370300200f201337030020024190016a41086a201437030020002015370300200041086a2014370300200041106a2013370300200041186a2012370300200041206a2011370300200041286a2010370300200041306a200137030020022015370390010c040b412a4101102d000b41d4004101102d000b41ceb8c4004133200241d8006a41fcbfc4004184b9c400102e000b20004200370300200041086a4200370300200041106a4200370300200041186a4200370300200041206a4200370300200041286a4200370300200041306a420037030020024190016a41306a200241306a29030037030020024190016a41286a200241286a29030037030020024190016a41206a200241206a29030037030020024190016a41186a200241186a29030037030020024190016a41106a200241106a29030037030020024190016a41086a200241086a29030037030020022002290300370390010b200241d0016a24000baf0601067f230041c0036b220224000240024002404118101e2203450d00200341106a410029008d8e46370000200341086a41002900858e46370000200341002900fd8d4637000020034118413010222203450d012003200137001820024188026a41186a2204420037030020024188026a41106a2205420037030020024188026a41086a2206420037030020024200370388022003412020024188026a1001200241b8016a41186a2004290300370300200241b8016a41106a2005290300370300200241b8016a41086a200629030037030020022002290388023703b801200310202002410036028802200241b8016a412020024188026a10032103024002402002280288022204417f470d00420221010c010b024020030d00420221010c010b200220043602dc01200220033602d80120024188026a200241d8016a10840420022903b80222014202510d0320024188016a41286a20024188026a41286a29030037030020024188016a41206a20024188026a41206a29030037030020024188016a41186a20024188026a41186a29030037030020024188016a41106a20024188026a41106a29030037030020024188016a41086a20024188026a41086a290300370300200220022903880237038801200241086a200241c0026a41800110cd051a2004450d00200310200b200241d8016a41086a220320024188016a41086a290300370300200241d8016a41106a220420024188016a41106a290300370300200241d8016a41186a220520024188016a41186a290300370300200241d8016a41206a220620024188016a41206a290300370300200241d8016a41286a220720024188016a41286a29030037030020022002290388013703d80120024188026a200241086a41800110cd051a024020014202510d00200020022903d801370300200041286a2007290300370300200041206a2006290300370300200041186a2005290300370300200041106a2004290300370300200041086a2003290300370300200041386a20024188026a41800110cd051a0b20002001370330200241c0036a24000f0b41184101102d000b41304101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bf00904067f047e017f017e230041a0016b2204240002400240024002404114101e2205450d00200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210a2005290000210b200510200c030b41144101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210b4200210a0b02400240024002404114101e2205450d00200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210c2005290000210d200510200c030b41144101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210d4200210c0b02404114101e2205450d00200d200b20027c220256200c200a20037c2002200b54ad7c220b56200c200b511b2106200b200c7d2002200d54ad7d2103200c200b7d200d200254ad7d210a2002200d7d210c200d20027d210d200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202107200441306a41186a22084200370300200441306a41106a22094200370300200441306a41086a220e42003703002004420037033020072005200441306a1001200441186a2008290300370300200441106a2009290300370300200441086a200e2903003703002004200429033037030002402004280224450d00200428022010200b200a200320061b210a200d200c20061b210d2006ad210f02402004412041e4fdc600410041001002417f470d00200441e8006a200b370300200441e0006a2002370300200441306a41086a41003a0000200441396a2001290000370000200441c1006a200141086a290000370000200441c9006a200141106a290000370000200441d1006a200141186a290000370000200441023a0030200441306a10770b20012002200b109303200441c0006a200a3703002004200d3703382004200f37033002402006450d002004200441386a36020020041094024200210c420021030b2000200c37030020002003370308200441a0016a24000f0b41144101102d000be50204017f017e027f037e230041206b2201240042002102200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a2003290300370300200120012903103703002001410036021020014110200141106a1003210302400240024020012802102204417f470d0042002102420021050c010b024020030d00420021050c010b20044110490d01200341086a290000210520032900002102200310200b2000280200220341086a290300210620032903002107200141106a41086a220342003703002001420037031041b88ac5004116200141106a1000200141086a2003290300370300200120012903103703002001427f200520067c200220077c22062002542203ad7c22022003200220055420022005511b22031b3703182001427f200620031b37031020014110200141106a41101005200141206a24000f0b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000b990303027f017e017f02402001450d00034020002802b80121002001417f6a22010d000b0b02402002450d004100210341002104034002400240200420002f0106490d00024002400240200041908cc500460d00200028020022010d012003ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862003ad842105410121060b200010202005a7210302402005422088a7220420012f0106490d00034002400240200128020022000d002003ad2105410021000c010b200641016a210620013301044220862003ad8421050b200110202005a72103200021012005422088a7220420002f01064f0d000b0b200441027420016a41bc016a2802002100410021042006417f6a2201450d01034020002802b80121002001417f6a22010d000c020b0b200441016a21040b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002203210120030d000b0b200010200b0b8b0701077f23004190026b2202240041002103200241003a002820012802042104417f21050240024002400240034020042003460d01200241086a20036a200128020022062d00003a00002001200420056a3602042001200641016a3602002002200341016a22073a00282005417f6a21052007210320074120470d000b200241e8006a41086a200241086a41086a290300370300200241e8006a41106a200241086a41106a290300370300200241e8006a41186a200241086a41186a2903003703002002200229030837036841002103200241003a0028200420076b2108200420056a2105034020082003460d02200241086a20036a200620036a220741016a2d00003a0000200120053602042001200741026a3602002002200341016a22073a00282005417f6a21052007210320074120470d000b20024188016a41086a200241086a41086a29030037030020024188016a41106a200241086a41106a29030037030020024188016a41186a200241086a41186a290300370300200220022903083703880141002103200241003a008802200620076a210603402005417f460d03200241e8016a20036a200620036a220741016a2d00003a0000200120053602042001200741026a3602002002200341016a22073a0088022005417f6a21052007210320074120470d000b200241a8016a41086a2201200241e8016a41086a290300370300200241a8016a41106a2203200241e8016a41106a290300370300200241a8016a41186a2205200241e8016a41186a290300370300200241086a41086a200241e8006a41086a290300370300200241086a41106a200241e8006a41106a290300370300200241086a41186a200241e8006a41186a290300370300200220022903e8013703a80120022002290368370308200241c0006a20024188016a41186a290300370300200241386a20024188016a41106a290300370300200241306a20024188016a41086a2903003703002002200229038801370328200241e0006a2005290300370300200241d8006a2003290300370300200241d0006a2001290300370300200220022903a801370348200041016a200241086a41e00010cd051a200041003a00000c030b0240200341ff0171450d00200241003a00280b200041013a00000c020b0240200341ff0171450d00200241003a00280b200041013a00000c010b0240200341ff0171450d00200241003a0088020b200041013a00000b20024190026a24000bee0102047f017e230041306b22012400200141186a41086a2202420037030020014200370318418cc6c1004115200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a10e402024020012802182204450d00200129021c210502402003450d00200210200b20002005370204200020043602000c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b20004100360208200042083702000b200141306a24000bcd1501047f20002d000021020240024002400240024002400240024002400240024002400240024002400240024002400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0220012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0001210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0002210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0003210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0520012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0004210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0005210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0720012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0006210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0820012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0007210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0920012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0008210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0a20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d0009210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0b20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000a210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0c20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000b210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0d20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000c210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0e20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000d210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0f20012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000e210202400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d1020012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20023a000020002d000f21040240200141046a28020020052802002200460d00200128020021030c110b200041016a22032000490d00200041017422022003200220034b1b22024100480d000240024020000d002002101e21030c010b200128020020002002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021000c110b20024101102d000b1027000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b20054101102d000b200141086a200041016a360200200320006a20043a00000ba9e9040f037f017e137f027e057f017e107f017e017f077e017f017e067f097e057f230041e00e6b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e14000102030405060708090a0b0c0d0e0f10111213000b20034194016a4101360200200342013702840120034184e6c60036028001200341043602840d2003418cb4c6003602800d2003200341800d6a3602900120034180016a419ca6c3001033000b200141226a2d00002104200141216a2d00002105200141e0006a2903002106200341d8096a41186a200141196a290000370300200341d8096a41106a200141116a290000370300200341d8096a41086a200141096a290000370300200320012900013703d809200341f8086a41086a2001412c6a2802003602002003200141246a2902003703f808200141306a2802002107200141346a2802002108200141386a28020021092001413c6a280200210a200141c0006a280200210b200141c4006a280200210c200141c8006a280200210d200141cc006a280200210e200141d0006a280200210f200141d4006a2802002110200141d8006a2802002111200141dc006a280200211241042113200241046a280000211420022d00002115200341d0066a41026a2216200241036a2d00003a0000200341e0036a41086a2217200241106a290000370300200341e0036a41106a2218200241186a290000370300200341e0036a41186a2219200241206a2d00003a0000200320022f00013b01d0062003200241086a2900003703e00341012102024020154101470d00200341800d6a41026a20162d00003a000020034180016a41086a201729030037030020034180016a41106a201829030037030020034180016a41186a20192d00003a0000200320032f01d0063b01800d200320032903e0033703800141002102201421130b410f2115200341f80b6a410f6a20034180016a41086a2903003700002003418f0c6a20034180016a41106a290300370000200341970c6a20034180016a41186a2d00003a0000200320032f01800d3b01f80b200320133600fb0b20032003290380013700ff0b2003200341800d6a41026a2d00003a00fa0b0240024020020d00200341b80a6a41186a200341f80b6a41186a290300370300200341b80a6a41106a200341f80b6a41106a290300370300200341b80a6a41086a200341f80b6a41086a290300370300200320032903f80b3703b80a4118101e2202450d15200241106a410029008d8e46370000200241086a41002900858e46370000200241002900fd8d4637000020024118413010222202450d1620022006370018200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00720024120200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d006200210200240200341d0066a412041e4fdc600410041001002417f470d00410f211541d8e7c20021140c770b4118101e2202450d17200241106a410029008d8e46370000200241086a41002900858e46370000200241002900fd8d4637000020024118413010222202450d1820022006370018200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00720024120200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d006200210202003410036028001200341d0066a412020034180016a10032102024002402003280280012213417f470d004202211a0c010b024020020d004202211a0c010b200320133602e403200320023602e00320034180016a200341e0036a10840420032903b001221a4202510d1a200341980b6a41286a20034180016a41286a290300370300200341980b6a41206a20034180016a41206a290300370300200341980b6a41186a20034180016a41186a290300370300200341980b6a41106a20034180016a41106a290300370300200341980b6a41086a20034180016a41086a29030037030020032003290380013703980b20034198056a200341b8016a41800110cd051a2013450d00200210200b200341e0076a41086a2202200341980b6a41086a290300370300200341e0076a41106a2213200341980b6a41106a290300370300200341e0076a41186a2215200341980b6a41186a290300370300200341e0076a41206a2214200341980b6a41206a290300370300200341e0076a41286a2216200341980b6a41286a290300370300200320032903980b3703e00720034180016a20034198056a41800110cd051a201a4202510d1a200341800d6a41286a2016290300370300200341800d6a41206a2014290300370300200341800d6a41186a2015290300370300200341800d6a41106a2013290300370300200341800d6a41086a2002290300370300200320032903e0073703800d200341e0036a20034180016a41800110cd051a2003201a3703b00d200341b80d6a200341e0036a41800110cd051a200341950e6a200341b80a6a412010cf05450d010240200341c40d6a280200450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f502412b211541e7e7c20021140c760b419affc600211402400240024002400240024020130e070001020304057b000b20032800ff0b211420032800830c21150c7a0b418cffc6002114410e21150c790b4180ffc6002114410c21150c780b41f7fec6002114410921150c770b41e4fec6002114411321150c760b41d3fec6002114411121150c750b200341f00d6a2802002102200341ec0d6a2802002113200341dc0d6a2802002115200341d00d6a280200211420032802e80d211620032802d80d211720032802cc0d21180240200341c40d6a280200450d0020032802c00d10200b02402014450d00201810200b02402015450d00201710200b20162013200210f502200341d0066a41086a22024200370300200342003703d0064186a3c300412a200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a100321020240024002402003280280012213417f460d002002450d0002402013450d0020022d0000221541014b0d004100211320150e020302030b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4193dac2002114412321150c760b410121130b200210204193dac20021144123211520134102460d742013450d744200211a200341d0066a41086a22024200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d1a2002290000211a200210200b2003201a3703800d200341013a00880d20034180016a2006200341800d6a10c803024002402003280280014101460d00200341f8016a2802002102200341f4016a2802002113200341f0016a2802002115200341e4016a2802002114200341e0016a2802002117200341d8016a2802002116200341d4016a28020021180240200341cc016a280200450d00200341c8016a28020010200b02402016450d00201810200b02402014450d00201710200b20152013200210f502200341013a00e8032003201a3703e003200341086a200341f8086a10850420032802082214450d01200328020c21150c760b20034188016a280200211520032802840121140c750b02402007450d00200341d0066a41086a22024200370300200342003703d00641dba3c300412a200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371200941ffff037122154d0d0041d5dac2002114411721150c760b20032f018401410020021b20136a41ffff037120154f0d0041ecdac2002114411621150c750b0240200a450d00200341d0066a41086a22024200370300200342003703d0064185a4c3004130200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371200c41ffff037122154d0d0041c8d9c2002114411d21150c760b20032f018401410020021b20136a41ffff037120154f0d0041e5d9c2002114411c21150c750b0240200d450d00200341d0066a41086a22024200370300200342003703d00641b5a4c300412b200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371200f41ffff037122154d0d004182dbc2002114411c21150c760b20032f018401410020021b20136a41ffff037120154f0d00419edbc2002114411b21150c750b02402010450d00200341d0066a41086a22024200370300200342003703d00641e0a4c300412b200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622021b221341ffff0371201241ffff037122154d0d0041b9dbc2002114411c21150c760b20032f018401410020021b20136a41ffff037120154f0d0041d5dbc2002114411b21150c750b20034202370380012003201a3703880120034180016a10fc03211b2003280280092202417f4c0d1a20032802f8082116410121134101211502402002450d002002101e2215450d1c0b20152016200210cd05211510792114200341c8016a2012360200200341c4016a2011360200200341bc016a200f360200200341b8016a200e360200200341b0016a200c360200200341ac016a200b360200200341a4016a2009360200200341a0016a200836020020034180016a41186a200236020020034194016a2002360200200320053a00d101200341003a00d001200320143602cc01200320103602c0012003200d3602b4012003200a3602a8012003200736029c0120032015360290012003201b370388012003200637038001200341ea016a200341d8096a41186a290300370100200341e2016a200341e8096a290300370100200341da016a200341e0096a290300370100200341003a00f301200320043a00f201200320032903d8093701d201201a20034180016a10860402402002450d002002101e2213450d1d0b20132016200210cd0521144125101e2213450d1d2013411d6a41002900daee42370000201341186a41002900d5ee42370000201341106a41002900cdee42370000201341086a41002900c5ee42370000201341002900bdee42370000200342a5808080d004370284012003201336028001200320023602800d200341800d6a20034180016a10630240200328028401220720032802880122156b2002490d0020032802800121130c740b201520026a22132015490d5a2007410174220a2013200a20134b1b220a4100480d5a0240024020070d00200a101e21130c010b2003280280012007200a102221130b02402013450d002003200a360284012003201336028001200a21070c740b200a4101102d000b200141306a290300211a200141286a290300210620034198056a41186a200141196a29000037030020034198056a41106a200141116a29000037030020034198056a41086a200141096a2900003703002003200129000137039805200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a20061087042003280280014101460d70200341fb016a2d00002114200341fa016a2d00002116200341d9016a2d00002117200341d8016a2d00002118200341d4016a2802002119200341d0016a2802002109200341cc016a280200210e200341c8016a280200210a200341c4016a280200210c200341c0016a280200210b200341bc016a2802002107200341b8016a280200210f200341b4016a280200210820034180016a41306a2802002113200341ac016a280200211220034180016a41286a2802002110200341a4016a280200210220034180016a41206a28020021042003419c016a280200210d20034180016a41186a280200211120034180016a41106a290300211b200341d0066a41086a22154200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211502402003280280012205417f460d002015450d00200541074d0d1e201510200b200320063703800d200341013a00880d20034180016a201a200341800d6a10c8032003280280014101460d6f200341f8016a2802002115200341f4016a2802002105200341f0016a280200211c200341e4016a280200211d200341e0016a280200211e200341d8016a280200211f200341d4016a28020021200240200341cc016a280200450d00200341c8016a28020010200b0240201f450d00202010200b0240201d450d00201e10200b201c2005201510f502200320063703800d200341013a00880d200341c8016a2009360200200341c4016a200e360200200341bc016a200c360200200341b8016a200b360200200341b0016a200f360200200341ac016a2008360200200341a4016a2012360200200341a0016a201036020020034180016a41186a200436020020034194016a200d360200200320173a00d101200320183a00d001200320193602cc012003200a3602c001200320073602b401200320133602a8012003200236029c0120032011360290012003201b370388012003201a37038001200341ea016a20034198056a41186a290300370100200341e2016a200341a8056a290300370100200341da016a200341a0056a290300370100200320143a00f301200320163a00f20120032003290398053701d201200620034180016a108604200641011088040d6e201a200341800d6a1089040d6d20034190016a200637030020034188016a41013a0000200341163a00800120034180016a1077410021140c740b200141d0006a290300210620012d0001210a200341b80a6a41086a2001410c6a2802003602002003200141046a2902003703b80a200341980b6a41086a200141186a2902003703002003200141106a2902003703980b200341e0076a41086a200141286a2902003703002003200141206a2902003703e007200341e0036a41086a200141386a2902003703002003200141306a2902003703e00320034198056a41086a200141c8006a2902003703002003200141c0006a29020037039805200320063703d809200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a2006108704024002402003280280014101460d00200341cc016a280200211420034180016a41c8006a280200210220034180016a41c0006a280200210d200341bc016a2802002113200341b4016a280200211020034180016a41306a280200211520034180016a41286a2802002108200341a4016a280200210702402003419c016a280200450d0020034198016a28020010200b02402007450d002008450d00200710200b02402015450d002010450d00201510200b02402013450d00200d450d00201310200b02402002450d002014450d00200210200b20032802b80a2202450d01200341106a200341b80a6a10850420032802102214450d01200328021421150c6d0b200328028801211520032802840121140c6c0b024020032802980b22134101470d00200328029c0b450d00200341d0066a41086a22154200370300200342003703d00641dba3c300412a200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622151b220741ffff0371200341a40b6a28020041ffff037122144d0d0041d5dac2002114411721150c6d0b20032f018401410020151b20076a41ffff037120144f0d0041ecdac2002114411621150c6c0b024020032802e00722154101470d0020032802e407450d00200341d0066a41086a22074200370300200342003703d0064185a4c3004130200341d0066a1000200341f00c6a41086a2007290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622071b221441ffff0371200341ec076a28020041ffff0371220d4d0d0041c8d9c2002114411d21150c6d0b20032f018401410020071b20146a41ffff0371200d4f0d0041e5d9c2002114411c21150c6c0b024020032802e00322074101470d0020032802e403450d00200341d0066a41086a22144200370300200342003703d00641b5a4c300412b200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622141b220d41ffff0371200341ec036a28020041ffff037122104d0d004182dbc2002114411c21150c6d0b20032f018401410020141b200d6a41ffff037120104f0d00419edbc2002114411b21150c6c0b0240024002402003280298054101470d000240200328029c05220d0d00200341d8096a4102200341b80a6a200341980b6a200341e0076a200341e0036a20034198056a200a4102108a040c030b200341d0066a41086a22144200370300200342003703d00641e0a4c300412b200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622141b221041ffff0371200341a4056a28020041ffff037122084d0d0041b9dbc2002114411c21150c6f0b20032f018401410020141b20106a41ffff037120084f0d0141d5dbc2002114411b21150c6e0b200341d8096a4102200341b80a6a200341980b6a200341e0076a200341e0036a20034198056a200a4102108a040c010b200341d8096a4102200341b80a6a200341980b6a200341e0076a200341e0036a20034198056a200a4102108a04200341a0056a280200450d00200d10200b02402007450d0020032802e4032207450d00200341e8036a280200450d00200710200b02402015450d0020032802e4072215450d00200341e8076a280200450d00201510200b02402013450d00200328029c0b2213450d00200341a00b6a280200450d00201310200b4100211402402002450d0020032802bc0a450d00200210200b0c730b200141026a2d0000210a200141106a290300211a200141086a290300210620012d0001210d2003200141186a2903003703e00320034198056a41206a2213200241206a2d00003a000020034198056a41186a2215200241186a29000037030020034198056a41106a2207200241106a29000037030020034198056a41086a2214200241086a2900003703002003200229000037039805024002400240024020064201520d00200341800d6a41206a20132d00003a0000200341800d6a41186a2015290300370300200341800d6a41106a2007290300370300200341800d6a41086a201429030037030020032003290398053703800d20034180016a200341800d6a201a108b0402402003280280014101470d0020034188016a28020021150c020b200341dc016a2802002102200341d8016a2802002107410021140240200341d0016a280200221341014b0d0020130e020300030b02402002450d00200710200b0c020b200341800d6a41206a20132d00003a0000200341800d6a41186a2015290300370300200341800d6a41106a2007290300370300200341800d6a41086a201429030037030020032003290398053703800d20034180016a200341800d6a108c042003280280014101470d0220034180016a41086a28020021150b20032802840121140b20140d730b200341e0036a200d41c4a7c30041e08cc50041e08cc50041e08cc50041e08cc5004102200a108a04410021140c720b200141c8006a2903002106200141c0006a290300211a200141206a290300211b200141186a2903002121200141b0016a2f01002112200141ae016a2f01002104200141ac016a2f01002105200141a8016a280200211c200141a4016a280200211d200141a0016a280200211f2001419c016a280200211e20014198016a280200212020014194016a280200212220014190016a28020021232001418c016a280200212420014188016a280200212520014184016a280200212620014180016a2802002127200141fc006a2802002128200141f8006a2802002129200141f4006a280200212a200141f0006a2802002118200141ec006a280200210b200141e8006a2802002110200141e0006a2d0000210e200141dc006a2802002119200141d8006a2802002111200141d4006a2802002109200141d0006a2802002114200141386a2d00002116200141346a280200210c200141306a28020021172001412c6a280200210f200141286a280200210a200141086a2802002108200141046a280200210d2003200141396a2800003602800720032001413c6a280000360083072003200141e1006a2800003602f80b2003200141e4006a2800003600fb0b2001410c6a2802002107200141106a2802002113200141146a2802002115200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0402402003280280014101470d0020034180016a41086a280200211520032802840121140c690b200341d0066a41086a22024200370300200342003703d006418ba5c300412c200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800122024101461b222b41ffff0371201541ffff0371222c4d0d0041c8d9c2002114411d21150c690b024020032f018401410020024101461b202b6a41ffff0371202c4f0d0041e5d9c2002114411c21150c690b4102212c02400240200a4102470d004102212d0c010b2017410146212e200a410146212d201641ff0171410146212f0b0240024020144102470d000c010b201141014621302014410146212c200e41ff017141014621310b200320032800800d3602d80920032003280080013602f8082003200341800d6a41036a2800003600db09200320034180016a41036a2800003600fb08200320032800830736009b0b20032003280280073602980b200320032800fb0b3600e303200320032802f80b3602e00310792102024002400240024002400240200d450d004102212b200220084f0d010b024020104101470d004104212b200b450d010b42002132200341e0076a41086a4200370300200341e0076a41106a4100360200200320032802980b3602800d2003200328009b0b3600830d200320032802e00336029805200320032800e30336009b05200342003703e007200341d0066a41086a222b4200370300200342003703d00641dda8c4004114200341d0066a1000200341f0066a41086a202b290300370300200320032903d0063703f0062003410036028001200341f0066a411020034180016a1003212b02402003280280012233417f460d00202b450d0020334108490d21202b2900002132202b10200b200341b0016a2006370300200341a0016a20163a00002003419c016a200c36020020034198016a2017360200200341a4016a20032800830d360000200341c8016a200e3a0000200341c4016a2019360200200341c0016a2011360200200341bc016a2009360200200341b8016a20143602002003201b3703880120032021370380012003201a3703a8012003200f360294012003200a36029001200320032802800d3600a101200341d8016a20084100200d1b360200200341dc016a2002360200200341ec016a41908cc5003602002003418c026a200b36020020034194026a201336020020034198026a2015360200200341cc016a200328009b05360000200341f0016a20032903e007370300200341f8016a200341e0076a41086a29030037030020034180026a200341e0076a41106a280200360200200320023602d0012003200d4101733602d40120032018360284022003201036028802200320073602900220032003280298053600c901203220034180016a10b403200341d0066a41086a22024200370300200342003703d00641dda8c4004114200341d0066a1000200341f0066a41086a2002290300370300200320032903d0063703f0062003410036028001200341f0066a411020034180016a100321022003280280012213417f460d012002450d01024020134108490d002002290000213420021020203442017c21350c030b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b02402013450d00200710200b4134211541fde9c2002114202b417e6a22024101200241ff01714103491b41ff01710e03020375020b420121350b42002134200341d0066a41086a22024200370300200342003703d00641dda8c4004114200341d0066a1000200341f0066a41086a2002290300370300200320032903d0063703f0062003203537038001200341f0066a411020034180016a4108100520024200370300200342003703d00641d0a7c3004128200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d1f20022900002134200210200b200341d0066a41046a200341e0006a41046a2f01003b0100200320032802d8093602980b200320032800db0936009b0b200320032802f8083602b80a200320032800fb083600bb0a200320032801603602d0064126101e2202450d1f2002411e6a41002900e5ec42370000200241186a41002900dfec42370000200241106a41002900d7ec42370000200241086a41002900cfec42370000200241002900c7ec423700002002412641cc0010222202450d202010410146210a201d410146210d201e4101462110202241014621082024410146210e2026410146211120284101462116202a410146211720022034370026200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e0072002412e200341e0076a1001200341980c6a41186a2013290300370300200341980c6a41106a2015290300370300200341980c6a41086a2007290300370300200320032903e0073703980c2002102020034180016a200341980c6a4120108d04024020032903b8024202520d00200341800d6a2034108e040c6a0b200341800d6a41086a200341b8026a220241086a290300370300200341800d6a41106a200241106a290300370300200341800d6a41186a200241186a290300370300200320022903003703800d20032802b002211320032802a8022102024020032802ac022215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d004100211541002107410021140340200320153602ec03200320073602e803200320023602e403200320143602e00320034198056a200341e0036a106120032802a005211420032802a405210220032802a805210720032802ac0521152013417f6a22130d000b0b200241908cc500460d6920022802002115200210202015450d6920152802002113201510202013450d69201328020022020d210c680b412721154192e8c20021140c720b41b9e8c20021140c710b200141086a2903002106200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c042003280280014101460d0d20034180016a2006108f042003280280014101460d6c200341b4036a2802002110200341b0036a280200210d200341ac036a2802002113200341b8026a280200210a200341b4026a2802002107200341b0026a2802002102200341d4036a2802002111200341d0036a280200211720034194036a2802002116200329038801211a4112101e2215450d20201541106a41002f00e0d5433b0000201541086a41002900d8d543370000201541002900d0d54337000020154112412410222215450d212015201a370012200341e0076a41186a22144200370300200341e0076a41106a22084200370300200341e0076a41086a220b4200370300200342003703e0072015411a200341e0076a1001200341d0066a41186a2014290300370300200341d0066a41106a2008290300370300200341d0066a41086a200b290300370300200320032903e0073703d0062015102002400240200341d0066a412041e4fdc600410041001002417f460d0020034180016a201a109004200341800d6a41066a20034180016a41d00010cd051a20034198026a220e290300211b20034194026a220928020021182003418c026a220c280200210f200341f4016a2802002108200341f0016a22122802002114200341ec016a2204280200211520032802900221192003280288022105200328028402211c20032802d401210b20032802d001211d20034198056a200341800d6a41d60010cd051a200341e0036a20034198056a41066a41d00010cd051a200b0d011079211520034180016a200341e0036a41d00010cd051a200341800d6a41206a200341e0036a41206a290300370300200341800d6a41186a200341e0036a41186a290300370300200341800d6a41106a200341e0036a41106a290300370300200341800d6a41086a200341e0036a41086a290300370300200341800d6a41306a20034180016a41306a290300370300200341800d6a41386a20034180016a41386a290300370300200341800d6a41c0006a20034180016a41c0006a290300370300200341800d6a41c8006a20034180016a41c8006a290300370300200320032903e0033703800d200320032903a8013703a80d20034180016a200341800d6a41d00010cd051a20124200370300200441908cc500360200200341dc016a2015360200200341d8016a41003a0000200341f8016a420037030020034180026a4100360200200e201b3e020020092018360200200c200f360200200341013602d4012003201d3602d001200320193602900220032005360288022003201c36028402201a20034180016a10b40320034180016a41106a200637030020034180016a41086a41053a0000200341163a00800120034180016a10772016450d660240200d450d00200d21150340201328026021132015417f6a22150d000b0340200d417f6a220d0d000b0b02402010450d0041002115410021144100210d03402003201536028c0d200320143602880d200320133602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c012113200328029001211420032802940121152010417f6a22100d000b0b201341908cc500460d6620132802002114201310202014450d6620142802002115201410202015450d66201528020022130d210c650b4116211541dbe0c20021140c630b02402014450d002014210b034020152802602115200b417f6a220b0d000b03402014417f6a22140d000b0b02402008450d00410021144100210b4100210e03402003200e36028c0d2003200b3602880d200320153602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012115200328029001210b200328029401210e2008417f6a22080d000b0b201541908cc500460d6120152802002108201510202008450d6120082802002114200810202014450d61201428020022150d220c600b200141086a2903002106200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c042003280280014101460d2220034180016a2006108f042003280280014101460d6b200341b4036a2802002110200341b0036a280200210d200341ac036a2802002113200341b8026a280200210a200341b4026a2802002107200341b0026a2802002102200341d4036a2802002111200341d0036a280200211720034194036a2802002116200329038801211a4112101e2215450d23201541106a41002f00e0d5433b0000201541086a41002900d8d543370000201541002900d0d54337000020154112412410222215450d242015201a370012200341e0076a41186a22144200370300200341e0076a41106a22084200370300200341e0076a41086a220b4200370300200342003703e0072015411a200341e0076a1001200341d0066a41186a2014290300370300200341d0066a41106a2008290300370300200341d0066a41086a200b290300370300200320032903e0073703d00620151020024002400240200341d0066a412041e4fdc600410041001002417f460d0020034198056a201a10900420034180016a41066a20034198056a41a00110cd051a200341800d6a20034180016a41a60110cd051a200341e0036a200341800d6a41066a41a00110cd051a20032802b4044101470d5f200341b8046a2d000041037441f801712118200341bc046a2802002119200341d4046a2802000d0141908cc50021150c020b4116211541dbe0c20021140c5f0b2003200341cc046a36028801200320032802cc04360284012003200341d0046a28020036028001200341800d6a20034180016a10ea0220032802800d211520032802880d2114024020032802840d2208450d002008210b034020152802602115200b417f6a220b0d000b03402008417f6a22080d000b0b2014450d00410021084100210b4100210e03402003200e36028c0d2003200b3602880d200320153602840d200320083602800d20034180016a200341800d6a10612003280288012108200328028c012115200328029001210b200328029401210e2014417f6a22140d000b0b41808408201876210b201541908cc500460d5b20152802002108201510202008450d5b20082802002114200810202014450d5b201428020022150d250c5a0b200141206a2903002132200141186a2903002134200141306a29030021352001412c6a2802002104200141286a2802002112200141106a2903002121200341e00c6a41086a2001410c6a2802003602002003200141046a2902003703e00c200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0420034180016a41086a290300211b024002402003280280014101460d0020034180016a2021108f042003280280014101460d01200341b8026a280200210e200341b4026a280200210b200341b0026a280200210d200341a0026a28020021052003419c026a280200212320034190026a280200211c2003418c026a280200212420034180026a2802002125200341fc016a2802002122200341f8016a280200211e200341f4016a2802002120200341f0016a280200211d200341ec016a280200211f200341d4036a280200210a200341d0036a2802002110200329038801213620034194036a280200450d54200341b4036a2802002113200341ac036a28020021020240200341b0036a2802002215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d004100211541002107410021140340200320153602a405200320073602a0052003200236029c052003201436029805200341800d6a20034198056a106120032802880d2114200328028c0d210220032802900d210720032802940d21152013417f6a22130d000b0b200241908cc500460d5420022802002115200210202015450d5420152802002113201510202013450d54201328020022020d270c530b2003280284012114201ba721150c590b200328028801211520032802840121140c580b200141086a2903002106200341d8096a41026a2215200241036a2d00003a0000200341e0076a41086a220d200241106a290000370300200341e0076a41106a2210200241186a290000370300200341e0076a41186a2208200241206a2d00003a0000200320022f00013b01d8092003200241086a2900003703e0074104210a200241046a280000210e20022d0000210b200320063703980b20034180016a200341980b6a10c703410121142003280280014101460d69200341e0026a2802002111200341dc026a2802002116200341d8026a2802002117200341d4026a2802002118200341800d6a41306a200341b8016a290300370300200341800d6a41286a20034180016a41306a290300370300200341800d6a41206a20034180016a41286a290300370300200341800d6a41186a20034180016a41206a290300370300200341800d6a41106a20034180016a41186a290300370300200341800d6a41086a20034180016a41106a29030037030020032003290388013703800d200341f8026a2802002107200341f4026a2802002113200341f0026a2802002102200341d0066a41026a20152d00003a0000200320032f01d8093b01d006200341e0036a41086a200d290300370300200341e0036a41106a2010290300370300200341e0036a41186a20082d00003a0000200320032903e0073703e0030240200b41ff01714101470d00200341b80a6a41026a200341d0066a41026a2d00003a000020034180016a41086a200341e0036a41086a29030037030020034180016a41106a200341e0036a41106a29030037030020034180016a41186a200341e0036a41186a2d00003a0000200320032f01d0063b01b80a200320032903e0033703800141002114200e210a0b410f2115200341980c6a410f6a20034180016a41086a290300370000200341af0c6a20034180016a41106a290300370000200341b70c6a20034180016a41186a2d00003a0000200320032f01b80a3b01980c2003200a36009b0c200320032903800137009f0c2003200341ba0a6a2d00003a009a0c02402014450d00419affc6002114024002400240024002400240200a0e0700010203040556000b200328009f0c211420032800a30c21150c550b418cffc6002114410e21150c540b4180ffc6002114410c21150c530b41f7fec6002114410921150c520b41e4fec6002114411321150c510b41d3fec6002114411121150c500b20034198056a41186a200341980c6a41186a29030037030020034198056a41106a200341980c6a41106a29030037030020034198056a41086a200341980c6a41086a290300370300200320032903980c3703980541dedcc20021144117211520034198056a200341800d6a41186a412010cf050d4f4124211541b4e7c200211420032903900d201820172016201110910441ff01710e064c4b4a494f4d4c0b2003200141086a290300220637039805200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0402402003280280014101460d0020034180016a20034198056a10c7032003280280014101460d69200341f8026a2802002107200341f4026a2802002113200341f0026a28020021024124211541b4e7c200211402400240024002400240024020034198016a290300200341c4026a280200200341c8026a280200200341cc026a280200200341d0026a28020010910441ff01710e06010203040500010b20034190016a200637030020034188016a410c3a0000200341163a00800120034180016a107702402013450d00201321150340200228026021022015417f6a22150d000b03402013417f6a22130d000b0b02402007450d0041002113410021154100211403402003201336028c0d200320153602880d200320023602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012102200328029001211520032802940121132007417f6a22070d000b0b410021140240200241908cc500470d000c730b2002280200211520021020024020150d000c730b2015280200211320151020024020130d000c730b20132802002202450d4d0340201310202002211320022802002215210220150d000c4e0b0b4117211541e0e5c20021140c030b4114211541e6e6c20021140c020b411f211541fae6c20021140c010b411b21154199e7c20021140b02402013450d002013210a034020022802602102200a417f6a220a0d000b03402013417f6a22130d000b0b02402007450d00410021134100210a4100210d03402003201336028c0d2003200a3602880d200320023602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c012102200328029001210a20032802940121132007417f6a22070d000b0b200241908cc500460d6d20022802002107200210202007450d6d20072802002113200710202013450d6d20132802002202450d470340201310202002211320022802002207210220070d000c480b0b20034180016a41086a28020021150c690b200141e8006a2903002132200141e0006a2903002134200141d0006a2903002135200141c8006a2903002137200141d8006a290300211b200141c0006a2903002121200141386a290300211a200141306a2903002106200341b80a6a41186a200141196a290000370300200341b80a6a41106a200141116a290000370300200341b80a6a41086a200141096a290000370300200320012900013703b80a200141246a2802002111200141286a28020021082001412c6a280200211641042113200241046a280000210720022d00002115200341d0066a41026a2214200241036a2d00003a0000200341e0036a41086a220a200241106a290000370300200341e0036a41106a220d200241186a290000370300200341e0036a41186a2210200241206a2d00003a0000200320022f00013b01d0062003200241086a2900003703e00341012102024020154101470d00200341800d6a41026a20142d00003a000020034180016a41086a200a29030037030020034180016a41106a200d29030037030020034180016a41186a20102d00003a0000200320032f01d0063b01800d200320032903e0033703800141002102200721130b410f211520034180076a410f6a20034180016a41086a29030037000020034197076a20034180016a41106a2903003700002003419f076a20034180016a41186a2d00003a0000200320032f01800d3b01800720032013360083072003200329038001370087072003200341800d6a41026a2d00003a0082070240024020020d00200341980b6a41186a20034180076a41186a290300370300200341980b6a41106a20034180076a41106a290300370300200341980b6a41086a20034180076a41086a29030037030020032003290380073703980b20034180016a200610a703024020032903b0014202510d00200328028001210220034198056a20034180016a41047241b40110cd051a200320023602800d200341800d6a41047220034198056a41b40110cd051a200341950e6a200341980b6a412010cf0521020240200341c40d6a280200450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5022002450d020b20034180016a200610a703024020032903b0014202510d00200328028001210220034198056a20034180016a41047241b40110cd051a200320023602800d200341800d6a41047220034198056a41b40110cd051a200341f50d6a200341980b6a412010cf0521020240200341c40d6a280200450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5022002450d020b4133211541fceac20021140c460b419affc600211402400240024002400240024020130e070001020304054b000b2003280087072114200328008b0721150c4a0b418cffc6002114410e21150c490b4180ffc6002114410c21150c480b41f7fec6002114410921150c470b41e4fec6002114411321150c460b41d3fec6002114411121150c450b20034180016a201a108f0402402003280280014101470d00200328028801211520032802840121140c450b200341b4036a280200210a200341b0036a2802002107200341ac036a2802002102200341b8026a280200210e200341b4026a280200210b200341b0026a2802002113200341d4036a2802002118200341d0036a280200211920034194036a2802002110200329038801213842002136200341d0066a41086a22154200370300200342003703d00641d5efc2004121200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211502402003280280012214417f460d002015450d0020144108490d2420152900002136201510200b200341033a00880d200320363703800d20034180016a2006200341800d6a10c803410121172003280280014101460d41200341f8016a280200210d200341f4016a2802002114200341f0016a2802002115200341e4016a2802002117200341e0016a280200210c200341d8016a2802002109200341d4016a280200210f0240200341cc016a280200450d00200341c8016a28020010200b02402009450d00200f10200b2017450d42200c10200c420b200141306a2903002121200141286a2903002106200341e0006a41186a200141196a290000370300200341e0006a41106a200141116a290000370300200341e0006a41086a200141096a29000037030020032001290001370360200241026a2f00002115200241046a2800002107200241186a28000021142002411c6a350000211a200241206a310000211b20022d0001210a20022d0000211320034180016a41086a220d200241106a2900003703002003200241086a2900003703800102400240024020134101470d002003201a201b42208684221a3e00fb03200341ff036a201a4220883c0000200341ef036a200d290300370000200320073600e303200320153b00e1032003200a3a00e00320032003290380013700e703200320143600f70320034180016a200610a70320032903b0014202510d01200328028001210220034198056a20034180016a41047241b40110cd051a200320023602800d200341800d6a41047220034198056a41b40110cd051a200341c40d6a28020021020240200341950e6a200341e0036a412010cf050d0002402002450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5024124101e2202450d27200241206a41002800818f46360000200241186a41002900f98e46370000200241106a41002900f18e46370000200241086a41002900e98e46370000200241002900e18e463700002002412441c80010222202450d2820022021370025200241033a00244200211a200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e0072002412d200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210202003410036028001200341d0066a412020034180016a1003210202402003280280012213417f460d002002450d0020134108490d2a2002290000211a200210200b201a2006510d034120211541bbe0c20021140c6e0b02402002450d0020032802c00d10200b0240200341d00d6a280200450d0020032802cc0d10200b0240200341dc0d6a280200450d0020032802d80d10200b20032802e80d200341ec0d6a280200200341f00d6a28020010f5024128211541d4eac20021140c6d0b410f211541b1eac20021140c6c0b4114211541c0eac20021140c6b0b411f101e2202450d26200241176a41002900a6ef42370000200241106a410029009fef42370000200241086a4100290097ef423700002002410029008fef423700002002411f413e10222202450d272002202137001f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024127200341e0076a100120034180076a41186a201329030037030020034180076a41106a201529030037030020034180076a41086a2007290300370300200320032903e0073703800720021020200341003602800120034180076a412020034180016a100321022003280280012214417f460d282002450d28200320143602d40c200320023602d00c20034180016a200341d00c6a10ef030240024020032903800122064202510d00200341980c6a41086a220a20034180016a41106a290300370300200341b80a6a41086a220d20034180016a41246a290200370300200341b80a6a41106a221020034180016a412c6a290200370300200341b80a6a41186a2208200341b4016a29020037030020032003290388013703980c2003200329029c013703b80a20034180016a41186a2802002113200341c0016a290300211a200341c8016a2802002115200341d0016a280200210b20032802bc01210720032802cc01210e20032802d401211120034198056a41206a2216200341f8016a29030037030020034198056a41186a2217200341f0016a29030037030020034198056a41106a2218200341e8016a29030037030020034198056a41086a2219200341e0016a2903003703002003200341d8016a29030037039805200341980b6a200341d00c6a10930120032903980b4202520d010240201541014b0d0020150e020100010b2011450d00200b10200b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b200341d0066a41086a2209200a290300370300200341d8096a41086a220a200d290300370300200341d8096a41106a220d2010290300370300200341d8096a41186a22102008290300370300200341e0076a41086a22082019290300370300200341e0076a41106a22192018290300370300200341e0076a41186a22182017290300370300200341e0076a41206a22172016290300370300200320032903980c3703d006200320032903b80a3703d80920032003290398053703e007200341e0036a41086a22162008290300370300200341e0036a41106a22082019290300370300200341e0036a41186a22192018290300370300200341e0036a41206a22182017290300370300200341f00c6a41086a2009290300370300200320032903e0073703e003200320032903d0063703f00c200341f8086a41186a2010290300370300200341f8086a41106a200d290300370300200341f8086a41086a200a290300370300200320032903d8093703f808200320113602880d2003200b3602840d2003200e3602800d200341800d6a412c6a2018290300370200200341800d6a41246a20192903003702002003419c0d6a2008290300370200200341940d6a2016290300370200200320032903e00337028c0d02402014450d00200210200b200341e00c6a41086a200341f00c6a41086a290300370300200341f80b6a41086a200341f8086a41086a290300370300200341f80b6a41106a200341f8086a41106a290300370300200341f80b6a41186a200341f8086a41186a29030037030020034198056a41086a200341800d6a41086a29020037030020034198056a41106a200341800d6a41106a29020037030020034198056a41186a200341800d6a41186a29020037030020034198056a41206a200341800d6a41206a29020037030020034198056a41286a200341800d6a41286a29020037030020034198056a41306a200341800d6a41306a280200360200200320032903f00c3703e00c200320032903f8083703f80b200320032902800d370398050c3f0b200141286a2903002106200341980c6a41186a200141196a290000370300200341980c6a41106a200141116a290000370300200341980c6a41086a200141096a290000370300200320012900013703980c200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a2006108b0402402003280280014101470d00200328028801211520032802840121140c6a0b200341dc016a2802002107200341d8016a2802002110200341d0016a280200211302402003290388014201520d0020034180016a41106a290300211a200341b80a6a41186a200341980c6a41186a290300370300200341b80a6a41106a200341980c6a41106a290300370300200341b80a6a41086a200341980c6a41086a290300370300200320032903980c3703b80a2003201a3703f80b4123101e2202450d292002411f6a41002800ddf041360000200241186a41002900d6f041370000200241106a41002900cef041370000200241086a41002900c6f041370000200241002900bef0413700002002412341c60010222202450d2a2002201a370023200341d8096a41186a22154200370300200341d8096a41106a22144200370300200341d8096a41086a220a4200370300200342003703d8092002412b200341d8096a1001200341f8086a41186a2015290300370300200341f8086a41106a2014290300370300200341f8086a41086a200a290300370300200320032903d8093703f808200210200240200341f8086a412041e4fdc600410041001002417f460d004123101e2202450d2c200241002900bef0413700002002411f6a41002800ddf041360000200241186a41002900d6f041370000200241106a41002900cef041370000200241086a41002900c6f04137000020032903f80b211a2002412341c60010222202450d2d2002201a370023200341d8096a41186a22154200370300200341d8096a41106a22144200370300200341d8096a41086a220a4200370300200342003703d8092002412b200341d8096a1001200341f8086a41186a2015290300370300200341f8086a41106a2014290300370300200341f8086a41086a200a290300370300200320032903d8093703f808200210202003410036028001200341f8086a412020034180016a100321022003280280012214417f460d3e2002450d3e2003201436029c05200320023602980520034180016a20034198056a10bb0320032802c00122154102460d2e200341800d6a41086a200341d8016a290300370300200341900d6a200341e0016a290300370300200341800d6a41186a200341e8016a2903003703002003200341d0016a2903003703800d20034180016a41186a290300213220034180016a41086a290300211b200341cc016a280200210f200341c8016a28020021092003290390012121200329038001211a20032802c401210c20032802bc01211920032802b801211820032802b401211720032802b001211620032802ac01211120032802a801210e20032802a401210b20032802a00121082014450d3f200210200c3f0b200341033a00800141b8a9c300412f20034180016a41e8a9c30041f8a9c300102e000b419ce0c2002114411f21150240201341014b0d00024020130e026b006b0b2007450d6a201010200c6a0b2007450d69201010200c690b200141106a2903002106200341e0036a41086a2001410c6a2802003602002003200141046a2902003703e003200320063703e00720034198056a41206a200241206a2d00003a000020034198056a41186a200241186a29000037030020034198056a41106a200241106a29000037030020034198056a41086a200241086a290000370300200320022900003703980520034180016a20034198056a2006108b0402402003280280014101470d0020032802880121152003280284012102024020032802e4030d00200221140c6a0b20032802e0031020200221140c690b200341800d6a20034180016a41086a41800110cd051a200341e0076a200341800d6a4101200341e0036a1092040240024020032802c80d220241014b0d00024020020e020200020b200341d40d6a280200450d01200341d00d6a28020010200c010b200341d40d6a280200450d00200341d00d6a28020010200b20032802e403450d3a20032802e00310200c3a0b200141106a2903002106200341b80a6a41086a2001410c6a2802003602002003200141046a2902003703b80a200320063703d809200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c040240024002402003280280014101460d0020034180016a20032903d80910d6022003280280014101470d0220032802880121150c010b20034180016a41086a28020021150b20032802840121020c390b200328028801210220034198056a2003418c016a41c40010cd051a200341e0076a41086a221520034180016a41e8006a290300370300200341e0076a41106a221420034180016a41f0006a290300370300200341e0076a41186a220a20034180016a41f8006a290300370300200341e0076a41206a220d20034180026a290300370300200320034180016a41e0006a2903003703e007200341dc016a280200211320034180016a41d8006a280200210720034180016a41d0006a2802000d3720034180016a41d4006a2802002110200341e0036a20034198056a41c40010cd051a200341980b6a41206a2208200d290300370300200341980b6a41186a220d200a290300370300200341980b6a41106a220a2014290300370300200341980b6a41086a22142015290300370300200320032903e0073703980b200320023602800d200341800d6a410472200341e0036a41c40010cd051a200341800d6a41d4006a2013360200200341800d6a41d0006a2007360200200341cc0d6a2010360200200341800d6a41d8006a20032903980b370300200341800d6a41e0006a2014290300370300200341800d6a41e8006a200a290300370300200341800d6a41f0006a200d290300370300200341800d6a41f8006a2008290300370300200341003602c80d20032802c00a2102200341d0066a41086a22134200370300200342003703d00641eea5c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c20034180016a200341f00c6a1075024020032f018201410020032f01800141014622131b221541ffff0371200241ffff037122024d0d0041f8dec2002102412821150c390b20032f018401410020131b20156a41ffff037120024f0d3641d1dec2002102412721150c380b200141286a2903002106200341980d6a200141196a29000037030041112115200341800d6a41106a200141116a290000370300200341800d6a41086a200141096a290000370300200320012900013703800d41d3fec600211420022d00000d66200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d00201341074d0d2b20021020411b2115419adcc20021140c670b4200211a200341d0066a41086a22024200370300200342003703d0064188aac300411e200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d2c2002290000211a200210200b200341023a00e8032003201a3703e003200341023a00a0052003201a3703980520034180016a200620034198056a10c80302402003280280014101470d00200328028801211520032802840121140c670b200341f8016a280200210d200341f4016a280200210a200341f0016a2802002114200341e4016a2802002107200341e0016a280200210e200341d8016a2802002115200341d4016a280200210b200341cc016a2802002113200341c8016a280200210810792102200341a4016a200341800d6a41086a290300370200200341ac016a200341800d6a41106a290300370200200341b4016a200341980d6a290300370200200341003602940120032002360290012003420037038001200320032903800d37029c01201a20034180016a109304200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a22102002290300370300200320032903d0063703f00c2003201a37038001200341f00c6a411020034180016a4108100520024200370300200342003703d0064188aac300411e200341d0066a100020102002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012210417f460d002002450d00024020104108490d002002290000211b20021020201b42017c211b0c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4201211b0b200341d0066a41086a22024200370300200342003703d0064188aac300411e200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003201b37038001200341f00c6a411020034180016a410810052006200341e0036a108904450d3441cda6c300412141a8aac3001028000b20022d00000d32200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012213417f460d002002450d00024020134108490d00200229000021062002102020034180016a2006108001200341800d6a41206a200341b4016a2202290200221a370300200341800d6a41186a200341ac016a2213290200221b370300200341800d6a41106a200341a4016a22152902002221370300200341800d6a41086a2003419c016a2902002232370300200320032902940122343703800d20032802900121072003290388012135200329038001213720034198056a41206a2214201a37030020034198056a41186a220a201b37030020034198056a41106a220d202137030020034198056a41086a2032370300200320343703980520064102108804450d024180a7c300412341b8aac3001028000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41b5dcc2002114411721150c660b20034180016a41186a10793602002015200d2903003702002013200a290300370200200220142903003702002003410136029401200320073602900120032035370388012003203737038001200320032903a00537029c01200620034180016a109304200341d0066a41086a22024200370300200342003703d00641e6ebc2004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d00201341074d0d2c20021020200341f00c6a411010040b20034190016a200637030020034188016a41033a0000200341163a00800120034180016a1077410021140c650b20012d00012113200341800d6a41206a200241206a2d00003a0000200341800d6a41186a200241186a290000370300200341800d6a41106a200241106a290000370300200341800d6a41086a200241086a290000370300200320022900003703800d20034180016a200341800d6a108c0420034180016a41086a210202402003280280014101460d00200341d0066a41086a22154200370300200342003703d0064186a3c300412a200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c200320133a008001200341f00c6a411020034180016a4101100520034189016a20133a0000200241113a0000200341163a00800120034180016a1077410021140c650b2002280200211520032802840121140c640b20022d00000d30200141106a290300211a200141086a290300211b42002106200341d0066a41086a22024200370300200342003703d00641f8a7c3004118200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202402003280280012213417f460d002002450d0020134108490d2b20022900002106200210200b410f101e2202450d2b200241076a41002900d4ca40370000200241002900cdca403700002002410f411e10222202450d2c2002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210202003410036028001200341d0066a412020034180016a100321022003280280012213417f460d2e2002450d2e200320133602840d200320023602800d20034180016a200341800d6a10ae0320032903900122214204510d2d20034198056a41086a200341b8016a290300370300200341a8056a200341c0016a290300370300200341b0056a200341c8016a2903003703002003200341b0016a2903003703980520034180016a41086a290300213420032903800121322013450d2f200210200c2f0b20034180016a41086a28020021150c5f0b41184101102d000b41304101102d000b41184101102d000b41304101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41e988c700412b41d4aec6001028000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b102c000b20024101102d000b20024101102d000b41254101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41264101102d000b41cc004101102d000b0340201310202002211320022802002215210220150d000c470b0b0340201510202013211520132802002214211320140d000c440b0b41124101102d000b41244101102d000b0340201410202015211420152802002208211520080d000c3e0b0b20034180016a41086a28020021150c490b41124101102d000b41244101102d000b0340201410202015211420152802002208211520080d000c350b0b0340201310202002211320022802002215210220150d000c2c0b0b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41244101102d000b41c8004101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b411f4101102d000b413e4101102d000b4200211a200341ac0c6a420037020041002115200341980c6a411c6a4100360200200341ac016a4200370200200341a4016a420037020020034180016a411c6a4200370200200342003702a40c200341f80b6a41086a200341980c6a41086a290200370300200341f80b6a41106a200341980c6a41106a290200370300200341f80b6a41186a200341980c6a41186a2902003703002003420037029401200320032902980c3703f80b20034198056a41306a20034180016a41306a28020036020020034198056a41286a20034180016a41286a29020037030020034198056a41206a20034180016a41206a29020037030020034198056a41186a20034180016a41186a29020037030020034198056a41106a20034180016a41106a29020037030020034198056a41086a20034180016a41086a29020037030020032003290280013703980541022113420021060c160b41234101102d000b41c6004101102d000b41234101102d000b41c6004101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b410f4101102d000b411e4101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b420421210b200320063703980b024002400240024002400240410f101e2202450d00200241076a41002900d4ca40370000200241002900cdca403700002002410f411e10222202450d012002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d8096a41186a2013290300370300200341d8096a41106a2015290300370300200341d8096a41086a2007290300370300200320032903e0073703d80920021020200341d8096a412041e4fdc600410041001002417f460d1a410f101e2202450d02200241002900cdca40370000200241076a41002900d4ca4037000020032903980b21062002410f411e10222202450d0342002034202142045122131b201a7c4200203220131b221a201b7c221b201a54ad7c211a2002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d0062002102020034180016a200341d0066a10a903024002400240024020032903d0014202510d002003290390012106200341800d6a41086a200341b8016a290300370300200341800d6a41106a200341c0016a290300370300200341800d6a41186a200341c8016a290300370300200320032903b0013703800d20032903a801212120032903a0012132200329039801213420064204520d01200341900c6a4100360200200341880c6a4200370300200342003703800c420321060c020b200341f80b6a41186a2202410036020020034198056a41086a420037030020034198056a41106a420037030020034198056a41186a2002290300370300200320032903f80b37039805420321060c020b200341f80b6a41186a200341800d6a41186a290300370300200341f80b6a41106a200341800d6a41106a290300370300200341f80b6a41086a200341800d6a41086a290300370300200320032903800d3703f80b0b20034198056a41086a200341f80b6a41086a29030037030020034198056a41106a200341f80b6a41106a29030037030020034198056a41186a200341f80b6a41186a290300370300200320032903f80b370398050b200341e0036a41186a20034198056a41186a2903002235370300200341e0036a41106a20034198056a41106a2903002237370300200341e0036a41086a20034198056a41086a2903002236370300200320032903980522393703e003200341a80d6a2021370300200341a00d6a2032370300200341b00d6a2039370300200341b80d6a2036370300200341c00d6a2037370300200341c80d6a20353703002003201a3703880d2003201b3703800d200320343703980d200320063703900d410f101e2202450d04200241002900cdca40370000200241076a41002900d4ca4037000020032903980b21062002410f411e10222202450d052002200637000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d8096a41186a2013290300370300200341d8096a41106a2015290300370300200341d8096a41086a2007290300370300200320032903e0073703d8092002102020034180016a200341d8096a10a9030240024020032903d0014202520d0020034198056a200341980b6a10aa030c010b20034198056a41186a200341d0016a220241186a29030037030020034198056a41106a200241106a29030037030020034198056a41086a200241086a29030037030020032002290300370398050b20034180016a41106a200341a0056a29030037030020034180016a41186a20034198056a41106a29030037030020034180016a41206a20034198056a41186a2903003703002003200329039805370388012003200341800d6a36028001200341203602e4072003200341d8096a3602e00720034180016a200341e0076a10ab03410021140c390b410f4101102d000b411e4101102d000b410f4101102d000b411e4101102d000b410f4101102d000b411e4101102d000b4111211541d3fec60021140c320b20034180016a41106a201a37030020034180016a41086a41023a0000200341163a00800120034180016a107702402013450d00200810200b02402015450d00200b10200b02402007450d00200e10200b2014200a200d10f502410021140c310b200341d8096a200341800d6a4100200341b80a6a1092040240024020032802c80d220241014b0d00024020020e020200020b20032802d40d450d0120032802d00d10200c010b20032802d40d450d0020032802d00d10200b20032802bc0a450d0220032802b80a1020410021140c300b4115211541bcdec20021022013450d00200710200b024020032802bc0a0d00200221140c2f0b20032802b80a1020200221140c2e0b410021140c2d0b410221150b20034180016a41186a2202200341800d6a41186a29030037030020034180016a41106a2214200341800d6a41106a29030037030020034180016a41086a220a200341800d6a41086a290300370300200320032903800d370380010240024020154102470d004200211a200341980b6a41186a4200370300200341980b6a41106a4200370300200341980b6a41086a4200370300200342003703980b41002119410021184100211741002116410021114100210e4100210b410021084200211b420021214200213241002115410021090c010b200341980b6a41186a2002290300370300200341980b6a41106a2014290300370300200341980b6a41086a200a29030037030020032003290380013703980b0b200341980b6a41086a200341b80a6a41086a2903002234370300200341980b6a41106a200341b80a6a41106a2903002235370300200341980b6a41186a200341b80a6a41186a2903002237370300200320032903b80a22363703980b20034180076a41186a203737030020034180076a41106a203537030020034180076a41086a203437030020032036370380070240024002400240024002400240024002404123101e2202450d00200241002900bef0413700002002411f6a41002800ddf041360000200241186a41002900d6f041370000200241106a41002900cef041370000200241086a41002900c6f04137000020032903f80b21342002412341c60010222202450d0120022034370023200341d8096a41186a22144200370300200341d8096a41106a220a4200370300200341d8096a41086a220d4200370300200342003703d8092002412b200341d8096a1001200341f8086a41186a2014290300370300200341f8086a41106a200a290300370300200341f8086a41086a200d290300370300200320032903d8093703f8082002102020034198056a200341f8086a10ad030240024020032903880622344202520d002003200341f80b6a36026020144200370300200a4200370300200d4200370300200342003703d80941e1f0c100412b200341d8096a1001200341e0076a41186a2014290300370300200341e0076a41106a200a290300370300200341e0076a41086a200d290300370300200320032903d8093703e0072003410036028001200341e0076a412020034180016a100321022003280280012214417f460d012002450d010240024020144108490d002002290000213520021020200341d0066a203510ac0320034180016a200341d0066a10ad0320032903f0014202520d0141b8e7c50041920141cce8c5001045000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b200341800d6a20034180016a41900110cd051a200341e0036a200341800d6a41f00010cd051a200341f8076a2202200341880e6a290300370300200341f0076a200341800e6a2903002234370300200341e0076a41086a200341f80d6a290300370300200320032903f00d3703e00720034180016a200341e0036a41f00010cd051a200341f4016a2002410020344201511b3602002003200341e0006a3602f001200341003602880d200342013703800d20032903800121344108101e2202450d04200341083602840d200320032802880d221441086a3602880d200320023602800d200220146a20343700002003290388012134024020032802840d221420032802880d22026b4108490d0020032802800d21140c060b200241086a220a2002490d0620144101742202200a2002200a4b1b22024100480d060240024020140d002002101e21140c010b20032802800d20142002102221140b02402014450d00200320023602840d200320143602800d20032802880d21020c060b20024101102d000b200341a0066a290300213520034198066a290300213720032903900621360c090b42002134200341d8096a41186a22024200370300200341d8096a41106a22144200370300200341d8096a41086a220a4200370300200342003703d80941e1f0c100412b200341d8096a1001200341e0076a41186a2002290300370300200341e0076a41106a2014290300370300200341e0076a41086a200a290300370300200320032903d8093703e007200320032903f80b37038001200341e0076a412020034180016a41081005420021370c080b41234101102d000b41c6004101102d000b41084101102d000b2003200241086a3602880d201420026a2034370000200341d0016a200341800d6a10ca0120034198016a290300213420032903900121370240024020032802840d220220032802880d220a6b4110490d0020032802800d21140c010b200a41106a2214200a490d012002410174220a2014200a20144b1b220d4100480d010240024020020d00200d101e21140c010b20032802800d2002200d102221140b02402014450d002003200d3602840d200320143602800d20032802880d210a200d21020c010b200d4101102d000b2014200a6a220d2034370008200d20373700002003200a41106a220a3602880d0240024020032802c0014101460d00024002402002200a470d00200241016a220a2002490d042002410174220d200a200d200a4b1b220a4100480d040240024020020d00200a101e21140c010b20142002200a102221140b2014450d012003200a3602840d200320143602800d20032802880d210a0b2003200a41016a3602880d2014200a6a41003a00000c020b200a4101102d000b02400240024002402002200a470d00200241016a220a2002490d052002410174220d200a200d200a4b1b220a4100480d050240024020020d00200a101e21140c010b20142002200a102221140b2014450d012003200a3602840d200320143602800d20032802880d210a0b2003200a41016a3602880d2014200a6a41013a000020032802c401210a20032802840d221420032802880d22026b4104490d0120032802800d21140c020b200a4101102d000b200241046a220d2002490d0220144101742202200d2002200d4b1b22024100480d020240024020140d002002101e21140c010b20032802800d20142002102221140b02402014450d00200320023602840d200320143602800d20032802880d21020c010b20024101102d000b2003200241046a3602880d201420026a200a3600000b02400240024020032802c8014101460d00024020032802840d20032802880d2202460d0020032802800d21140c020b200241016a22142002490d032002410174220a2014200a20144b1b220a4100480d030240024020020d00200a101e21140c010b20032802800d2002200a102221140b02402014450d002003200a3602840d200320143602800d20032802880d21020c020b200a4101102d000b0240024020032802840d20032802880d2202460d0020032802800d21140c010b200241016a22142002490d032002410174220a2014200a20144b1b220a4100480d030240024020020d00200a101e21140c010b20032802800d2002200a102221140b02402014450d002003200a3602840d200320143602800d20032802880d21020c010b200a4101102d000b2003200241016a3602880d201420026a41013a000020032802cc01210a0240024020032802840d221420032802880d22026b4104490d0020032802800d21140c010b200241046a220d2002490d0320144101742202200d2002200d4b1b22024100480d030240024020140d002002101e21140c010b20032802800d20142002102221140b02402014450d00200320023602840d200320143602800d20032802880d21020c010b20024101102d000b2003200241046a3602880d201420026a200a3600000c010b2003200241016a3602880d201420026a41003a00000b200341a8016a290300213420032903a00121370240024020032802840d220a20032802880d22146b4110490d0020032802800d21020c010b201441106a22022014490d01200a41017422142002201420024b1b220d4100480d0102400240200a0d00200d101e21020c010b20032802800d200a200d102221020b02402002450d002003200d3602840d200320023602800d20032802880d2114200d210a0c010b200d4101102d000b200220146a220d2034370008200d20373700002003201441106a22143602880d200341b8016a290300213420032903b0012137200a20146b410f4b0d02201441106a220d2014490d00200a4101742214200d2014200d4b1b221441004e0d010b1027000b02400240200a0d002014101e21020c010b2002200a2014102221020b2002450d01200320143602840d200320023602800d20032802880d21140b200220146a22022034370008200220373700002003201441106a3602880d20034180016a41f0006a200341800d6a10810120032802840d2102200341d0066a412020032802800d221420032802880d100502402002450d00201410200b2003280260210242002134200341d8096a41186a22144200370300200341d8096a41106a220a4200370300200341d8096a41086a220d4200370300200342003703d80941e1f0c100412b200341d8096a1001200341e0076a41186a2014290300370300200341e0076a41106a200a290300370300200341e0076a41086a200d290300370300200320032903d8093703e0072003200229030037038001200341e0076a412020034180016a41081005420121370c010b20144101102d000b20034180016a41186a2032370300200341cc016a200f360200200341c4016a200c360200200341bc016a2019360200200341b8016a2018360200200341b4016a2017360200200341ac016a2011360200200341a8016a200e360200200341a4016a200b360200200341d8016a20034180076a41086a290300370300200341e0016a20034180076a41106a290300370300200341e8016a20034180076a41186a29030037030020032021370390012003201b370388012003201a37038001200320093602c801200320153602c001200320163602b001200320083602a00120032003290380073703d00120034188026a203537030020034180026a2037370300200341f8016a2036370300200320343703f001200341203602840d2003200341f8086a3602800d20034180016a200341800d6a10bc0320034180016a41086a410f3a000020034189016a20032903980c37000020034191016a200341980c6a41086a29030037000020034199016a200341980c6a41106a290300370000200341a1016a200341980c6a41186a290300370000200341b0016a2006370300200341163a00800120034180016a10774100211402400240201341014b0d00024020130e022e002e0b20070d010c2d0b20070d000c2c0b201010200c2b0b200341f00c6a41086a2202200341e00c6a41086a290300370300200341f8086a41086a2214200341f80b6a41086a290300370300200341f8086a41106a220a200341f80b6a41106a290300370300200341f8086a41186a220d200341f80b6a41186a290300370300200341e0036a41086a221020034198056a41086a290300370300200341e0036a41106a220820034198056a41106a280200360200200320032903e00c3703f00c200320032903f80b3703f80820032003290398053703e003200341fc036a200341e0006a41086a290300370200200341e0036a41246a200341e0006a41106a290300370200200341e0036a412c6a200341e0006a41186a290300370200200320032903603702f403200341800d6a41106a2002290300370300200341800d6a41186a2013360200200341c80d6a2015360200200341c00d6a201a370300200320063703800d200320032903f00c3703880d200341800d6a41246a2014290300370200200341800d6a412c6a200a290300370200200341b40d6a200d290300370200200320073602bc0d200320032903f80837029c0d200341d40d6a2010290300370200200341dc0d6a2008290300370200200341e40d6a200341e0036a41186a290300370200200341ec0d6a20034180046a290300370200200341f40d6a20034188046a290300370200200341fc0d6a20034190046a280200360200200320032903e0033702cc0d0240024002400240411f101e2202450d00200241176a41002900a6ef42370000200241106a410029009fef42370000200241086a4100290097ef423700002002410029008fef423700002002411f413e10222202450d012002202137001f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024127200341e0076a1001200341980c6a41186a2013290300370300200341980c6a41106a2015290300370300200341980c6a41086a2007290300370300200320032903e0073703980c200210202003410036028001200341980c6a412020034180016a100321022003280280012213417f460d022002450d02200320133602dc09200320023602d80920034180016a200341d8096a10ef03024002402003290380014202510d0020034198056a41086a200341e0016a29030037030020034198056a41106a200341e8016a29030037030020034198056a41186a2207200341f0016a29030037030020034198056a41206a2214200341f8016a2903003703002003200341d8016a29030037039805200341d0016a2802002110200341c8016a280200211520032802d401210d200341980b6a200341d8096a10930120032903980b4202520d010240201541014b0d0020150e020100010b200d450d00201010200b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b200341e0076a41206a2014290300370300200341e0076a41186a2007290300370300200341b80a6a41086a2207200341980b6a41086a290300370300200341b80a6a41106a2214200341980b6a41106a290300370300200341b80a6a41186a220a200341980b6a41186a290300370300200320032903980b3703b80a20034180016a41186a200a29030037030020034180016a41106a201429030037030020034180016a41086a2007290300370300200320032903b80a3703800102402013450d00200210200b20034198056a41186a20034180016a41186a29030037030020034198056a41106a20034180016a41106a29030037030020034198056a41086a20034180016a41086a2903003703002003200329038001370398050240201541014b0d0020150e020400040b200d450d03201010200c030b411f4101102d000b413e4101102d000b20034198056a202110f3030b20034180016a41106a20034198056a41086a29030037030020034180016a41186a20034198056a41106a290300370300200341a0016a20034198056a41186a2903003703002003200329039805370388012003200341800d6a36028001200341003602e807200342013703e007200341e00d6a200341e0076a10ca0102400240024020032903800d4201510d00024020032802e40720032802e8072202460d0020032802e00721130c020b200241016a22132002490d12200241017422152013201520134b1b22154100480d120240024020020d002015101e21130c010b20032802e00720022015102221130b02402013450d00200320153602e407200320133602e00720032802e80721020c020b20154101102d000b024002400240024020032802e40720032802e8072202460d0020032802e00721130c010b200241016a22132002490d14200241017422152013201520134b1b22154100480d140240024020020d002015101e21130c010b20032802e00720022015102221130b2013450d01200320153602e407200320133602e00720032802e80721020b2003200241016a3602e807201320026a41013a000020032903880d2106024020032802e407221320032802e80722026b4108490d0020032802e00721130c020b200241086a22152002490d13201341017422022015200220154b1b22024100480d130240024020130d002002101e21130c010b20032802e00720132002102221130b02402013450d00200320023602e407200320133602e00720032802e80721020c020b20024101102d000b20154101102d000b2003200241086a3602e807201320026a20063700000c010b2003200241016a3602e807201320026a41003a00000b024002400240200341980d6a2802004102470d00024020032802e40720032802e8072202460d0020032802e00721130c020b200241016a22132002490d12200241017422152013201520134b1b22154100480d120240024020020d002015101e21130c010b20032802e00720022015102221130b02402013450d00200320153602e407200320133602e00720032802e80721020c020b20154101102d000b0240024020032802e40720032802e8072202460d0020032802e00721130c010b200241016a22132002490d12200241017422152013201520134b1b22154100480d120240024020020d002015101e21130c010b20032802e00720022015102221130b02402013450d00200320153602e407200320133602e00720032802e80721020c010b20154101102d000b2003200241016a3602e807201320026a41013a0000200341900d6a200341e0076a10f5030c010b2003200241016a3602e807201320026a41003a00000b200341c80d6a200341e0076a10f603200341a80d6a290300210602400240024002400240024020032802e407221320032802e80722026b4108490d0020032802e00721130c010b200241086a22152002490d14201341017422022015200220154b1b22024100480d140240024020130d002002101e21130c010b20032802e00720132002102221130b2013450d01200320023602e407200320133602e00720032802e80721020b2003200241086a3602e807201320026a2006370000200341b00d6a29030021060240024020032802e407221320032802e80722026b4108490d0020032802e00721130c010b200241086a22152002490d14201341017422022015200220154b1b22024100480d140240024020130d002002101e21130c010b20032802e00720132002102221130b2013450d02200320023602e407200320133602e00720032802e80721020b2003200241086a3602e807201320026a2006370000200341b80d6a28020021150240024020032802e407221320032802e80722026b4104490d0020032802e00721130c010b200241046a22072002490d14201341017422022007200220074b1b22024100480d140240024020130d002002101e21130c010b20032802e00720132002102221130b2013450d03200320023602e407200320133602e00720032802e80721020b2003200241046a3602e807201320026a2015360000200341c00d6a2903002106024020032802e407221320032802e80722026b4108490d0020032802e00721130c040b200241086a22152002490d13201341017422022015200220154b1b22024100480d130240024020130d002002101e21130c010b20032802e00720132002102221130b02402013450d00200320023602e407200320133602e00720032802e80721020c040b20024101102d000b20024101102d000b20024101102d000b20024101102d000b2003200241086a3602e807201320026a200637000020034180016a41086a200341e0076a10940120032802e4072102200341980c6a412020032802e007221320032802e807100502402002450d00201310200b024020032903800d4202510d00024020032802c80d220241014b0d00024020020e020200020b200341d40d6a280200450d0120032802d00d10200c010b200341d40d6a280200450d0020032802d00d10200b20034180016a41086a410e3a000020034189016a200329036037000020034191016a200341e0006a41086a29030037000020034199016a200341f0006a290300370000200341a1016a200341f8006a290300370000200341b0016a2021370300200341163a00800120034180016a1077410021140c2a0b20034188016a280200211520032802840121140c010b20152014200d10f502024020344200201b42005222151b223920374200202142005222141b7c22362032420020151b2035420020141b7c2036203954ad7c223984500d00200341d0006a200341980b6a10890341b5ddc2002114411d2115410121172003290350203654200341d0006a41086a290300223a203954203a2039511b0d01200341c0006a200341980b6a108903200341386a200341980b6a411f2003290340223a20367d200341c0006a41086a29030020397d203a203654ad7d10940420032802380d010b200341d0066a41086a22154200370300200342003703d00641b7a5c3004137200341d0066a1000200341f00c6a41086a2015290300370300200320032903d0063703f00c20034180016a200341f00c6a107541012117024020032f018201410020032f01800122154101461b221441ffff0371201641ffff0371220d4d0d004122211541c1dfc20021140c010b41012117024020032f018401410020154101461b20146a41ffff0371200d4f0d004121211541a0dfc20021140c010b20034180016a2038202120372035201b20342032109504024002400240024020032d0080014101460d00200341d4026a2802002117200341d0026a280200210d200341cc026a28020021152003419c026a280200210420034198026a2802002105200341dc016a280200450d03200341fc016a2802002109200341f4016a28020021140240200341f8016a280200220c450d00200c210f034020142802602114200f417f6a220f0d000b0340200c417f6a220c0d000b0b02402009450d004100210c4100210f4100211203402003200c36028c0d2003200f3602880d200320143602840d200320123602800d20034180016a200341800d6a10612003280288012112200328028c012114200328029001210f200328029401210c2009417f6a22090d000b0b201441908cc500460d032014280200210c20141020200c450d03200c2802002109200c10202009450d03200928020022140d010c020b411b211541e2e9c200211402400240024002400240024020032d0081010e06000102030405000b4113211541ace1c2002114410121170c080b411e211541ede8c2002114410121170c070b411c2115418be9c2002114410121170c060b4115211541a7e9c2002114410121170c050b4126211541bce9c20021140b410121170c030b034020091020201421092014280200220c2114200c0d000b0b200910200b02402004450d00200510200b0240200d450d00200d21140340201528026021152014417f6a22140d000b0340200d417f6a220d0d000b0b02402017450d00410021144100210d4100210903402003201436028c0d2003200d3602880d200320153602840d200320093602800d20034180016a200341800d6a10612003280288012109200328028c012115200328029001210d20032802940121142017417f6a22170d000b0b0240201541908cc500460d002015280200210d20151020200d450d00200d2802002114200d10202014450d00024020142802002215450d00034020141020201521142015280200220d2115200d0d000b0b201410200b2013210d0240200b450d00200b21152013210d0340200d280260210d2015417f6a22150d000b200b211503402015417f6a22150d000b0b024002400240024002400240200e450d00200342003703880d2003200d3602840d200341003602800d20034180016a200341800d6a10612003418c016a280200210d20034190016a280200211420034194016a280200211720032802880121092003290380012136200e21150340200341800d6a203610f102024020032903880d2006520d0020034180016a20032903900d10e50220032d00b001210c024020032802c001450d0020032802bc0110200b200c41ff0171450d030b20154101460d012015417f6a21152003201736028c0d200320143602880d2003200d3602840d200320093602800d20034180016a200341800d6a10612003280288012109200328028c01210d2003280290012114200328029401211720032903800121360c000b0b200d41908cc500460d04200d2802002113200d10202013450d0420132802002115201310202015450d04201528020022130d010c030b024020154101460d004101211603402003201736028c0d200320143602880d2003200d3602840d200320093602800d20034180016a200341800d6a10612003280288012109200328028c01210d200328029001211420032802940121172015201641016a2216470d000b0b41afebc20021144137211541002117200d41908cc500460d04200d2802002109200d10202009450d0420092802002116200910202016450d042016280200220d450d01034020161020200d2116200d2802002209210d20090d000c020b0b0340201510202013211520132802002214211320140d000c020b0b201610200c020b201510200b420021360240024002400240024002400240024002400240202150450d00420021370c010b20034180016a200341980b6a20372035411f1093022003280280010d0120034190016a290300213520034188016a2903002121420121370b02400240201b50450d000c010b20034180016a200341980b6a20342032411f1093022003280280010d0220034190016a290300213220034188016a290300211b420121360b200341980c6a41106a203537030020034180076a41106a20323703002003201b370388072003203637038007200320213703a00c200320373703980c20034180016a20382037202120352036201b2032109504200341d8096a41086a200341e8016a290300370300200341d8096a41106a200341f0016a290300370300200341d8096a41186a200341f8016a2903003703002003200341e0016a2903003703d809200341dc016a280200211f200341c4016a2802002114200341c0016a28020021122003419c016a280200210420034180016a41186a280200210520034198026a280200213b2003419c026a280200211e200341a8026a290300211b200341b0026a290300212120032d0080012113200341f8086a41186a200341d0026a290300370300200341f8086a41106a200341c8026a290300370300200341f8086a41086a200341c0026a2903003703002003200341b8026a2903003703f8080240024020134101460d00200341d8026a2802002109200341dc026a280200210c200341e0026a280200210f200328029409210b200328029009210d200328028c09211320032802f409211720032802f009210e20032802ec0921150240201b4201520d0020034180016a202110e502200320034180016a20212005410146200420124101462014410310c40341ff017122143a00d8092014450d05200341c0016a280200450d0020032802bc0110200b4200211b200341d0066a41086a22144200370300200342003703d006418ca9c4004118200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211402402003280280012212417f460d002014450d0020124108490d062014290000211b201410200b2003201b3703c80c200341286a20032903980c20032903a00c200341980c6a41106a290300200341c80c6a1096042003290330212120032903282132200341186a20032903800720032903880720034180076a41106a290300200341c80c6a10960420032903202134200329031821351079211220032903c80c211b4116101e2214450d062014410e6a41002900aad543370000201441086a41002900a4d5433700002014410029009cd54337000020144116412c10222214450d072014201b370016200341e0076a41186a22044200370300200341e0076a41106a22054200370300200341e0076a41086a221c4200370300200342003703e0072014411e200341e0076a1001200341d0066a41186a2004290300370300200341d0066a41106a2005290300370300200341d0066a41086a201c290300370300200320032903e0073703d006201410202003410036028001200341d0066a412020034180016a100321142003280280012204417f460d082014450d08200320043602e407200320143602e00720034180016a200341e0076a10d80202402003290388014202510d00200341c0016a280200210520032802bc012125200341800d6a200341e0076a10930120032903800d4202520d022005450d00202510200b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b02402008450d00201110200b02402036500d00200320034180076a41086a3602800120034180016a10940220032903980c21370b02402037500d002003200341980c6a41086a3602800120034180016a1094020b41f8a8c300413041a8a9c3001028000b20034198056a41186a200341800d6a41186a221c290300221b37030020034198056a41106a200341800d6a41106a221d2903002237370300200341e0036a41086a2220200341800d6a41086a2222290300370300200341e0036a41106a22232037370300200341e0036a41186a2224201b370300200320032903800d3703e00302402004450d00201410200b201c2024290300370300201d202329030037030020222020290300370300200320032903e0033703800d2005450d07202510200c070b4190a8c300412941bca8c3001028000b4190a8c300412941bca8c3001028000b200341a4056a410d360200200341940d6a4102360200200342033702840d200341f4a8c4003602800d2003410d36029c052003200341d8096a3602e007200341f1a8c4003602e003200320034198056a3602900d2003200341e0036a3602a0052003200341e0076a36029805200341800d6a41d483c6001033000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41164101102d000b412c4101102d000b200341800d6a201b1098040b20034180016a41206a203437030020034180016a41106a2021370300200341b1016a200329009805370000200341c4016a2016360200200341c0016a2008360200200341b8016a2003419f056a280000360000200341d0016a200341800d6a41086a290300370300200341d8016a200341800d6a41106a290300370300200341e0016a200341800d6a41186a290300370300200341003a00b001200320123602ac012003200c20096a200f6a3602a801200320353703980120032032370388012003203837038001200320113602bc01200320032903800d3703c801200341203602e4032003200341d0066a3602e00320034180016a200341e0036a10e00202402008450d00201110200b200341d0066a41086a22144200370300200342003703d006418ca9c4004118200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032114024002402003280280012208417f460d002014450d00024020084108490d002014290000211b20141020201b42017c211b0c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4201211b0b200341d0066a41086a22144200370300200342003703d006418ca9c4004118200341d0066a1000200341f00c6a41086a2014290300370300200320032903d0063703f00c2003201b37038001200341f00c6a411020034180016a41081005200341800d6a203810900420034180016a41086a2214200341e40d6a290200370300200341e0036a41086a2208200341f40d6a2802003602002003200341dc0d6a290200370380012003200341ec0d6a2902003703e003024002400240024002400240024020032802d40d4101470d00200341800e6a2802002120200341fc0d6a2802002122200341d80d6a2802002123200341f80d6a280200211620032903c80c211b20034198056a41086a2008280200360200200320032903e0033703980520034198056a201b1060200341d00c6a41086a2014290300221b370300200320032903800122213703d00c2003280298052124200329029c052132200341e00c6a41086a201b370300200320213703e00c4112101e2214450d01201441106a41002f00e0d5433b0000201441086a41002900d8d543370000201441002900d0d54337000020144112412410222214450d0220142038370012200341e0076a41186a22084200370300200341e0076a41106a22114200370300200341e0076a41086a22094200370300200342003703e0072014411a200341e0076a1001200341d0066a41186a2008290300370300200341d0066a41106a2011290300370300200341d0066a41086a2009290300370300200320032903e0073703d006201410202003410036028001200341d0066a412020034180016a1003211102400240024002402003280280012209417f460d002011450d00200320093602e403200320113602e00320034180016a200341e0036a10e90220032903a0024202510d0720034198056a41086a220c200341c4016a29020037030020034198056a41106a220f200341cc016a280200360200200320032902bc013703980520034180016a41086a2903002121200329038001213420032802b801212d20032802b401212520032802b001212620032802ac01212720032802a801212820032802a401212920032802a001212a200328029c01212b200328029801212c200328029401212f2003280290012112200341f80b6a41086a221d200341e4016a290200370300200341f0066a41086a20034194026a290200370300200320032902dc013703f80b2003200329028c023703f00620032802d401210820032802d001210420032802ec01211420032903f001211b2003280284022105200328028802211c200328029c02212e02402009450d00201110200b200341e0076a41086a200c290300370300200341e0076a41106a200f280200360200200341d8096a41086a201d29030037030020032003290398053703e007200320032903f80b3703d8094102211d20084102470d014100211c200341003602fc0c200342013702f40c410021054100210841002104410221120c020b4100211c200341003602fc0c200342013702f40c200341c00c6a20032903f80c370300200320032903f00c3703b80c4102211d410021054100210841002104410221120c020b20034180016a41086a200341e0076a41086a29030037030020034180016a41106a200341e0076a41106a280200360200200341f8086a41086a200341d8096a41086a290300370300200320032903f0063703f00c200320032903e00737038001200320032903d8093703f8082003200341f0066a41086a2903003703f80c202d211d0b200341e0036a41086a20034180016a41086a290300370300200341e0036a41106a20034180016a41106a280200360200200341e0006a41086a200341f8086a41086a290300370300200341b80c6a41086a200341f00c6a41086a29030037030020032003290380013703e003200320032903f808370360200320032903f00c3703b80c0b201641016a212d200341e0076a41086a2231200341e0036a41086a220c290300370300200341e0076a41106a2230200341e0036a41106a280200360200200341d8096a41086a220f200341e0006a41086a290300370300200341f8086a41086a2233200341b80c6a41086a290300370300200320032903e0033703e007200320032903603703d809200320032903b80c3703f808200c200341e00c6a41086a290300370300200320032903e00c3703e0032008450d06201b422088a721080240201ba72211450d00201121160340201428026021142016417f6a22160d000b03402011417f6a22110d000b0b02402008450d004100211141002116410021090340200320093602a405200320163602a0052003201436029c05200320113602980520034180016a20034198056a10612003280288012111200328028c012114200328029001211620032802940121092008417f6a22080d000b0b201441908cc500460d0620142802002111201410202011450d0620112802002108201110202008450d06200828020022140d040c050b41fa8ac500412941a888c6001028000b41124101102d000b41244101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b0340200810202014210820142802002211211420110d000b0b200810200b200f200c290300370300200320032903e0033703d809200341b8016a201d360200200341b4016a2025360200200341b0016a2026360200200341ac016a2027360200200341a4016a2029360200200341a0016a202a3602002003419c016a202b36020020034198016a202c360200200341d8016a202336020020032021370388012003203437038001200320283602a8012003202f360294012003201236029001200341bc016a20032903e007370200200341c4016a2031290300370200200341cc016a2030280200360200200341013602d401200320043602d001200341e4016a200f290300370200200341dc016a20032903d80937020020034180026a2020360200200341fc016a2022360200200341f8016a202d360200200341f0016a2032370300200341ec016a20243602002003201c36028802200320053602840220034194026a20332903003702002003418c026a20032903f8083702002003202e36029c02203820034180016a10ec0202400240024020032802d401221441024b0d0020140e03010002010b200341f4016a280200210820032802ec012114024020032802f0012211450d00201121160340201428026021142016417f6a22160d000b03402011417f6a22110d000b0b02402008450d004100211141002116410021090340200320093602ec03200320163602e803200320143602e403200320113602e00320034198056a200341e0036a106120032802a005211120032802a405211420032802a805211620032802ac0521092008417f6a22080d000b0b201441908cc500460d0020142802002111201410202011450d0020112802002108201110202008450d00024020082802002214450d000340200810202014210820142802002211211420110d000b0b200810200b20034194026a280200450d0020032802900210200b20032903c80c21340240200341940e6a280200450d0020032802900e10200b0240201f450d000240200e450d00200e21140340201528026021152014417f6a22140d000b0340200e417f6a220e0d000b0b02402017450d0041002114410021084100210e03402003200e36028c0d200320083602880d200320153602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c0121152003280290012108200328029401210e2017417f6a22170d000b0b201541908cc500460d0020152802002108201510202008450d0020082802002114200810202014450d00024020142802002215450d000340201410202015211420152802002208211520080d000b0b201410200b0240201e450d00203b10200b0240200d450d00200d21150340201328026021132015417f6a22150d000b0340200d417f6a220d0d000b0b0240200b450d0041002115410021144100210d03402003200d36028c0d200320143602880d200320133602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c0121132003280290012114200328029401210d200b417f6a220b0d000b0b0240201341908cc500460d0020132802002114201310202014450d0020142802002115201410202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b4200211b200341d0066a41086a22134200370300200342003703d00641cca8c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003211302400240024002400240024002400240024002402003280280012215417f460d002013450d0020154108490d012013290000211b201310200b200341f8086a41186a200341b80a6a41186a290300370300200341f8086a41106a200341b80a6a41106a290300370300200341f8086a41086a200341b80a6a41086a290300370300200320032903b80a3703f808412a101e2213450d01201341286a41002f00c3ed423b0000201341206a41002900bbed42370000201341186a41002900b3ed42370000201341106a41002900abed42370000201341086a41002900a3ed423700002013410029009bed423700002013412a41d40010222213450d022013201b37002a200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00720134132200341e0076a1001200341f80b6a41186a2015290300370300200341f80b6a41106a2014290300370300200341f80b6a41086a200d290300370300200320032903e0073703f80b2013102020034198056a200341f80b6a109904024020032903d00522214202520d002003201b370380072015420037030020144200370300200d4200370300200342003703e00741c5edc2004132200341e0076a1001200341d0066a41186a2015290300370300200341d0066a41106a2014290300370300200341d0066a41086a200d290300370300200320032903e0073703d0062003410036028001200341d0066a412020034180016a10032113024002402003280280012215417f460d002013450d00024020154108490d002013290000213220131020412a101e22130d02412a4101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b42002135200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00741c5edc2004132200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d0062003201b37038001200341d0066a412020034180016a41081005420021210c0a0b201341286a41002f00c3ed423b0000201341206a41002900bbed42370000201341186a41002900b3ed42370000201341106a41002900abed42370000201341086a41002900a3ed423700002013410029009bed423700002013412a41d40010222213450d042013203237002a200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00720134132200341e0076a1001200341d8096a41186a2015290300370300200341d8096a41106a2014290300370300200341d8096a41086a200d290300370300200320032903e0073703d8092013102020034180016a200341d8096a10990420032903b8014202510d05200341800d6a20034180016a41d80010cd051a200341e0036a41306a2213200341800d6a41306a290300370300200341e0036a41286a2215200341800d6a41286a290300370300200341e0036a41206a2214200341800d6a41206a290300370300200341e0036a41186a220d200341800d6a41186a290300370300200341e0036a41106a2208200341800d6a41106a290300370300200341e0036a41086a220b200341800d6a41086a290300370300200320032903800d3703e003200341e0076a41186a220e200341d00d6a290300370300200341e0076a41106a200341c80d6a2903002221370300200341e0076a41086a200341c00d6a290300370300200320032903b80d3703e007200341bc016a200e410020214201511b36020020034180016a41306a201329030037030020034180016a41286a201529030037030020034180016a41206a201429030037030020034180016a41186a2213200d29030037030020034180016a41106a200829030037030020034180016a41086a200b290300370300200320032903e00337038001200320034180076a3602b801200341003602880d200342013703800d2013200341800d6a10ca0120032903800121210240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d18201541017422132014201320144b1b22134100480d180240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d07200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a202137000020032903880121210240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d18201541017422132014201320144b1b22134100480d180240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d08200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a20213700002003290390012121024020032802840d221520032802880d22136b4108490d0020032802800d21150c090b201341086a22142013490d17201541017422132014201320144b1b22134100480d170240024020150d002013101e21150c010b20032802800d20152013102221150b02402015450d00200320133602840d200320153602800d20032802880d21130c090b20134101102d000b200341e8056a2903002132200341e0056a290300213520032903d80521370c080b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b412a4101102d000b41d4004101102d000b41d4004101102d000b41b8e7c50041920141cce8c5001045000b20134101102d000b20134101102d000b2003201341086a3602880d201520136a2021370000200341b8016a200341800d6a107e20032802840d2113200341d8096a412020032802800d221520032802880d100502402013450d00201510200b200329038007213542002121200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e00741c5edc2004132200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2014290300370300200320032903e0073703d0062003203537038001200341d0066a412020034180016a41081005420121350b200341d0016a2032370300200341c8016a2035370300200341c0016a2037370300200341a0016a200341f8086a41086a290300370300200341a8016a20034188096a290300370300200341b0016a200341f8086a41186a290300370300200320343703900120032006370388012003201a37038001200320032903f80837039801200320213703b801200341003602880d200342013703800d20034180016a41186a200341800d6a10ca0120032903800121060240024002400240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d11201541017422132014201320144b1b22134100480d110240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d01200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a200637000020032903880121060240024020032802840d221520032802880d22136b4108490d0020032802800d21150c010b201341086a22142013490d11201541017422132014201320144b1b22134100480d110240024020150d002013101e21150c010b20032802800d20152013102221150b2015450d02200320133602840d200320153602800d20032802880d21130b2003201341086a3602880d201520136a20063700002003290390012106024020032802840d221520032802880d22136b4108490d0020032802800d21150c030b201341086a22142013490d10201541017422132014201320144b1b22134100480d100240024020150d002013101e21150c010b20032802800d20152013102221150b02402015450d00200320133602840d200320153602800d20032802880d21130c030b20134101102d000b20134101102d000b20134101102d000b2003201341086a3602880d201520136a2006370000200341b8016a200341800d6a10940120032802840d2113200341f80b6a412020032802800d221520032802880d100502402013450d00201510200b200341d0066a41086a22134200370300200342003703d00641cca8c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032113024002402003280280012215417f460d002013450d00024020154108490d002013290000210620131020200642017c21060c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b420121060b200341d0066a41086a22134200370300200342003703d00641cca8c300412c200341d0066a1000200341f00c6a41086a2013290300370300200320032903d0063703f00c2003200637038001200341f00c6a411020034180016a41081005024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002404126101e2213450d004100210d2013411e6a41002900e5ec42370000201341186a41002900dfec42370000201341106a41002900d7ec42370000201341086a41002900cfec42370000201341002900c7ec423700002013412641cc0010222213450d012013201a37002642002106200341e0076a41186a22084200370300200341e0076a41106a22154200370300200341e0076a41086a22144200370300200342003703e0072013412e200341e0076a1001200341980c6a41186a2008290300370300200341980c6a41106a2015290300370300200341980c6a41086a2014290300370300200320032903e0073703980c2013102020034180016a200341980c6a4120108d040240024020032903b8024202520d0041908cc50021054100211c410021084100210b4100210e410021114100211641002117410021094100210c4100210f4100211341022112410221040c010b20032802b402212620032f019c0221082003280298022125200328029402210b2003280290022124200328028c02210e20032802880221232003280284022111200328028002212220032802fc01211620032802f801212020032802f401211720032802f001211e20032802ec01210920032802e801211f20032802e401210c20032802e001210f20032802dc01211d20032802c00121272003280298012104200329038001210620032802d8012113200341f8086a41086a20034180016a41106a290300370300200341800d6a41086a200341a4016a290200370300200341800d6a41106a200341ac016a290200370300200341800d6a41186a220d200341b4016a290200370300200341800d6a41206a200341bc016a28020036020020032003290388013703f8082003200329029c013703800d200341e0036a41086a200341cc016a290200370300200341e0036a41106a200341d4016a280200360200200320032902c4013703e003200341f80b6a41086a200341a6026a2f01003b01002003200329019e023703f80b410221120240024020134102470d00420021064100210d41908cc50021054100211c410021084100210b4100210e410021114100211641002117410021094100210c4100210f41022104410021130c010b20034180076a41086a200341f8086a41086a29030037030020034198056a41086a200341800d6a41086a29030037030020034198056a41106a200341800d6a41106a29030037030020034198056a41186a200d29030037030020034198056a41206a200341800d6a41206a280200360200200320032903f80837038007200320032903800d3703980520032802a802210520032802ac02210d20032802b002211c200341d8096a41106a200341e0036a41106a280200360200200341d8096a41086a200341e0036a41086a290300370300200341d0066a41086a200341f80b6a41086a2f01003b0100200320032903e0033703d809200320032903f80b3703d006202721120b200341e00c6a41086a20034180076a41086a290300370300200341e0076a41086a20034198056a41086a290300370300200341e0076a41106a20034198056a41106a290300370300200341e0076a41186a20034198056a41186a290300370300200341e0076a41206a20034198056a41206a28020036020020032003290380073703e00c20032003290398053703e007200341800d6a41106a200341d8096a41106a280200360200200341800d6a41086a200341d8096a41086a290300370300200320032903d8093703800d200341f8086a41086a200341d0066a41086a2f01003b0100200320032903d0063703f8080b200341e0036a41186a2004360200200341fc036a20032903e007370200200341a0046a2012360200200341e0036a41106a200341e00c6a41086a29030037030020034184046a20142903003702002003418c046a201529030037020020034194046a200341e0076a41186a2903003702002003419c046a200341e0076a41206a280200360200200320063703e003200320032903e00c3703e803200341e0036a41d8006a2013360200200341bc046a201d360200200341c0046a200f360200200341c4046a200c360200200341c8046a201f360200200341cc046a2009360200200341d0046a201e360200200341d4046a2017360200200341d8046a2020360200200341dc046a2016360200200341e0046a2022360200200341e4046a2011360200200341e8046a2023360200200341ec046a200e360200200341f0046a2024360200200341f4046a200b360200200341f8046a2025360200200341fc046a20083b0100200341a4046a20032903800d370200200341ac046a200341800d6a41086a290300370200200341b4046a200341800d6a41106a2802003602002003418c056a200d36020020034190056a201c36020020034186056a200341f8086a41086a2f01003b0100200341fe046a20032903f8083701002003200536028805200320263602940520034188056a201b106020034198056a200341e0036a41b80110cd051a20034198056a41d8006a28020021154126101e2113024020154102470d002013450d032013411e6a41002900e5ec42370000201341186a41002900dfec42370000201341106a41002900d7ec42370000201341086a41002900cfec42370000201341002900c7ec423700002013412641cc0010222213450d042013201a370026200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e0072013412e200341e0076a1001200341f80b6a41186a2015290300370300200341f80b6a41106a2014290300370300200341f80b6a41086a200d290300370300200320032903e0073703f80b2013102020034180016a200341f80b6a4120108d04024020032903b802220642025122130d00200341f80b6a412010040b20130d14200341d0026a290300212120032903c002213220032802b002211120032802ac02210e20032802a802211520032802d8012109410021160240200341c8026a29030022344201520d00200341d8096a202110ec0320034180076a41186a200341d8096a41186a290300223537030020034180076a41106a200341d8096a41106a290300223737030020034180076a41086a200341d8096a41086a2903002236370300200320032903d80922393703800720034180016a41186a2213203537030020034180016a41106a2214203737030020034180016a41086a220d203637030020032039370380014120101e2216450d062016200329038001370000201641186a2013290300370000201641106a2014290300370000201641086a200d2903003700000b024020064201510d0020344201510d08200341e0076a41186a22134200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00741edecc200412e200341e0076a1001200341d8096a41186a2013290300370300200341d8096a41106a2014290300370300200341d8096a41086a200d290300370300200320032903e0073703d809200341d8096a412010040c130b200341d8096a203210ec03200341f8086a41186a200341d8096a41186a2903002235370300200341f8086a41106a200341d8096a41106a2903002237370300200341f8086a41086a200341d8096a41086a2903002236370300200320032903d80922393703f80820034180016a41186a2213203537030020034180016a41106a2214203737030020034180016a41086a220d203637030020032039370380014120101e2217450d062017200329038001370000201741186a2013290300370000201741106a2014290300370000201741086a200d29030037000020034180016a20174120108d0420032903b8024202510d08200341800d6a20034180016a41c80110cd051a200341d00e6a2021370300200341800d6a41c8016a20343703002003410036028801200342013703800120032903800d21214108101e2213450d0920034108360284012003200328028801221441086a360288012003201336028001201320146a2021370000200341a80e6a20034180016a1062200341800d6a41086a20034180016a10fa03200341b80e6a20034180016a1094012003280284012113201741202003280280012214200328028801100502402013450d00201410200b200341b00e6a280200211420032802a80e21130240200341ac0e6a280200220d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402014450d004100210d410021084100210b03402003200b3602ec07200320083602e807200320133602e4072003200d3602e00720034180016a200341e0076a1061200328028801210d200328028c0121132003280290012108200328029401210b2014417f6a22140d000b0b201341908cc500460d112013280200210d20131020200d450d11200d2802002114200d10202014450d11201428020022130d0a0c100b2013450d0a2013411e6a41002900e5ec42370000201341186a41002900dfec42370000201341106a41002900d7ec42370000201341086a41002900cfec42370000201341002900c7ec423700002013412641cc0010222213450d0b2013201a370026200341e0076a41186a22154200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e0072013412e200341e0076a1001200341f80b6a41186a2015290300370300200341f80b6a41106a2014290300370300200341f80b6a41086a200d290300370300200320032903e0073703f80b2013102020034180016a200341f80b6a4120108d04024020032903b8024202520d00200341800d6a201a108e040c0f0b200341800d6a41086a200341b8026a221341086a290300370300200341800d6a41106a201341106a290300370300200341800d6a41186a201341186a290300370300200320132903003703800d20032802b002211520032802a8022113024020032802ac022214450d002014210d034020132802602113200d417f6a220d0d000b03402014417f6a22140d000b0b02402015450d00410021144100210d410021080340200320083602e4092003200d3602e009200320133602dc09200320143602d809200341e0076a200341d8096a106120032802e807211420032802ec07211320032802f007210d20032802f40721082015417f6a22150d000b0b201341908cc500460d0e20132802002114201310202014450d0e20142802002115201410202015450d0e201528020022130d0c0c0d0b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b41204101102d000b41204101102d000b200341e0076a41186a22134200370300200341e0076a41106a22144200370300200341e0076a41086a220d4200370300200342003703e00741edecc200412e200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2014290300370300200341d0066a41086a200d290300370300200320032903e0073703d0062003202137038001200341d0066a412020034180016a410810050c0a0b41bde6c50041d8004198e7c5001045000b41084101102d000b034020141020201321142013280200220d2113200d0d000c060b0b41264101102d000b41cc004101102d000b0340201510202013211520132802002214211320140d000b0b201510200b20034180016a41106a200341800d6a41086a29030037030020034180016a41186a200341800d6a41106a29030037030020034180016a41206a200341800d6a41186a290300370300200320032903800d37038801200320034198056a36028001200341003602e807200342013703e007200329039805210602404108101e2213450d00200341083602e407200320032802e807221541086a3602e807200320133602e007201320156a2006370000200341c0066a200341e0076a106220034198056a41086a200341e0076a10fa0320034180016a41086a200341e0076a10940120032802e4072113200341f80b6a412020032802e007221520032802e80710052013450d08201510200c080b41084101102d000b201410200b201710204101210c0c010b410021174100210c0b0240024020160d00410021130c010b20034180016a20164120108d040240024002400240024020032903b8024202510d00200341800d6a20034180016a41d80110cd051a200341c00e6a2032370300200320063703b80e2003410036028801200342013703800120032903800d21064108101e2213450d0120034108360284012003200328028801221441086a360288012003201336028001201320146a2006370000200341a80e6a20034180016a1062200341800d6a41086a20034180016a10fa03200341b80e6a20034180016a1094012003280284012113201641202003280280012214200328028801100502402013450d00201410200b200341b00e6a280200211420032802a80e21130240200341ac0e6a280200220d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402014450d004100210d410021084100210b03402003200b3602ec07200320083602e807200320133602e4072003200d3602e00720034180016a200341e0076a1061200328028801210d200328028c0121132003280290012108200328029401210b2014417f6a22140d000b0b201341908cc500460d042013280200210d20131020200d450d04200d2802002114200d10202014450d04201428020022130d020c030b41bde6c50041d80041a8e7c5001045000b41084101102d000b034020141020201321142013280200220d2113200d0d000b0b201410200b20161020410121130b0240200c201745720d00201710200b02402016452013720d00201610200b20094102470d010b41908cc50021150c010b0240200e450d00200e21130340201528026021152013417f6a22130d000b0340200e417f6a220e0d000b0b2011450d0041002113410021144100210d03402003200d36028c0d200320143602880d200320153602840d200320133602800d20034180016a200341800d6a10612003280288012113200328028c0121152003280290012114200328029401210d2011417f6a22110d000b0b201541908cc500460d0020152802002113201510202013450d0020132802002115201310202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b024020032802f0054102460d00200341c8066a280200211520032802c00621130240200341c4066a2802002214450d002014210d034020132802602113200d417f6a220d0d000b03402014417f6a22140d000b0b02402015450d00410021144100210d4100210803402003200836028c0d2003200d3602880d200320133602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012113200328029001210d20032802940121082015417f6a22150d000b0b201341908cc500460d0020132802002114201310202014450d0020142802002115201410202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b20034198016a201b37030020034190016a201a37030020034188016a41093a0000200341163a00800120034180016a107702402010450d0002402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021154100210703402003200736028c0d200320153602880d200320023602840d200320133602800d20034180016a200341800d6a10612003280288012113200328028c01210220032802900121152003280294012107200a417f6a220a0d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b2018450d0920191020410021140c280b02402010450d0002402007450d002007210d034020022802602102200d417f6a220d0d000b03402007417f6a22070d000b0b0240200a450d00410021074100210d4100211003402003200736028c0d2003200d3602880d200320023602840d200320103602800d20034180016a200341800d6a10612003280288012110200328028c012102200328029001210d2003280294012107200a417f6a220a0d000b0b200241908cc500460d002002280200210a20021020200a450d00200a2802002107200a10202007450d00024020072802002202450d00034020071020200221072002280200220a2102200a0d000b0b200710200b02402018450d00201910200b2017450d000240200b450d00200b21020340201328026021132002417f6a22020d000b0340200b417f6a220b0d000b0b0240200e450d0041002102410021074100210a03402003200a36028c0d200320073602880d200320133602840d200320023602800d20034180016a200341800d6a10612003280288012102200328028c0121132003280290012107200328029401210a200e417f6a220e0d000b0b201341908cc500460d0020132802002102201310202002450d0020022802002113200210202013450d00024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200b2008450d26201110200c260b201310200c250b201310200c240b411b21154199e7c20021140c050b411f211541fae6c20021140c040b4114211541e6e6c20021140c030b4117211541e0e5c20021140c020b20034190016a200637030020034188016a410d3a0000200341163a00800120034180016a107702402013450d00201321150340200228026021022015417f6a22150d000b03402013417f6a22130d000b0b02402007450d004100211341002115410021140340200320133602a405200320153602a0052003200236029c05200320143602980520034180016a20034198056a10612003280288012114200328028c012102200328029001211520032802940121132007417f6a22070d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b410021140c1e0b02402013450d002013210a034020022802602102200a417f6a220a0d000b03402013417f6a22130d000b0b02402007450d00410021134100210a4100210d0340200320133602a4052003200a3602a0052003200236029c052003200d3602980520034180016a20034198056a1061200328028801210d200328028c012102200328029001210a20032802940121132007417f6a22070d000b0b200241908cc500460d1d20022802002107200210202007450d1d20072802002113200710202013450d1d024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c1d0b201310200b0240200a450d00201010200b20032802e00c21100240024020032802e40c22020d00201021080c010b20102108200221130340200828026021082013417f6a22130d000b0340201020102f01064102746a41e0006a28020021102002417f6a22020d000b0b20102f01062119024002400240024020032802e80c220f450d00024002400240024020082f01060d0002400240200828020022020d0041002115200341e00c6aad2106410021020c010b2008330104422086200341e00c6aad842106410121150b2006422088a7221320022f01064f0d012006211a0c020b200841086a210a41012114200341e00c6a2111200821130c020b03402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a210a201341027420026a41e4006a2802002113201aa72111410021142015417f6a2202450d000340201328026021132002417f6a22020d000b0b200341800d6a41046a2118200341a4026a211620034180016a4104722117200f2107034020034180016a200a10c70320032802a00221152003280280012102200341800d6a2017419c0110cd051a200341980b6a201641dc0010cd051a2007417f6a210702400240024020024101460d0020034198056a201841980110cd051a200341b80a6a200341980b6a41dc0010cd051a20154102470d010b2007450d03201420132f0106490d0102400240201328020022020d002011ad210641002115410021020c010b20133301044220862011ad842106410121150b02402006422088a7221320022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b201a21060b200220134103746a41086a210a201341027420026a41e4006a28020021132006a72111410021142015417f6a2202450d020340201328026021132002417f6a22020d000c030b0b200341e0036a20034198056a41980110cd051a200341d8096a200341b80a6a41dc0010cd051a200341e0076a200341d8096a41dc0010cd051a20034180016a200341e0036a41980110cd051a200341800d6a200341e0076a41dc0010cd051a024041f801101e2226450d00202620034180016a41980110cd0522022015360298012002419c016a200341800d6a41dc0010cd051a2007450d040240024002400240201420132f0106490d0002400240201328020022020d002011ad210641002115410021020c010b20133301044220862011ad842106410121150b2006422088a7221320022f01064f0d012006211a0c020b201441016a210a201320144103746a41086a21140c020b03402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a2114201341027420026a41e4006a2802002113201aa721114100210a2015417f6a2202450d000340201328026021132002417f6a22020d000b0b200341a4026a211620034180016a4104722117034020034180016a201410c70320032802a00221022003280280012115200341800d6a2017419c0110cd051a200341980b6a201641dc0010cd051a2007417f6a210702400240024020154101460d0020034198056a201841980110cd051a200341b80a6a200341980b6a41dc0010cd051a20024102470d010b2007450d07200a20132f0106490d0102400240201328020022020d002011ad210641002115410021020c010b20133301044220862011ad842106410121150b02402006422088a7221320022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042213200228020022022f01064f0d000b201a21060b200220134103746a41086a2114201341027420026a41e4006a28020021132006a721114100210a2015417f6a2202450d020340201328026021132002417f6a22020d000c030b0b200341e0036a20034198056a41980110cd051a200341d8096a200341b80a6a41dc0010cd051a200341f8086a200341d8096a41dc0010cd051a200341a4026a210920034180016a410472210c4100211541012117410121270340200341e0076a200341e0036a41980110cd051a20034180076a200341f8086a41dc0010cd051a20034180016a200341e0076a41980110cd051a200341e0036a20034180076a41dc0010cd051a02400240024020272017470d00201741016a22142017490d0d201741017422162014201620144b1b2227ad42f8017e2206422088a70d0d2006a722144100480d0d0240024020170d002014101e21260c010b2026201741f8016c2014102221260b2026450d010b2026201741f8016c6a20034180016a41980110cd0522144198016a20023602002014419c016a200341e0036a41dc0010cd051a201741016a21172007450d0a200320113602880d200320153602800d2003200a36028c0d200320133602840d0240200a20132f0106490d0002400240201328020022020d002011ad2106410021020c010b201541016a211520133301044220862011ad8421060b02402006422088a7221420022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042214200228020022022f01064f0d000b201a21060b2014410274200241e0006a220a6a41046a2802002113200220144103746a41086a21142006a7211102402015417f6a2202450d000340201328026021132002417f6a22020d000b0b2003200a3602940120032014360290012003410036028c012003201136028801200320133602840120034100360280010c020b200320113602880120032015360280012003200a41016a36028c0120032013360284012003201341e0006a3602940120032013200a4103746a41086a2214360290010c010b20144108102d000b20034180016a21160340201628020c210a20162802082111201628020421132016280200211520034180016a201410c70320032802a00221022003280280012114200341800d6a200c419c0110cd051a200341980b6a200941dc0010cd051a2007417f6a210702400240024020144101460d0020034198056a201841980110cd051a200341b80a6a200341980b6a41dc0010cd051a20024102470d010b2007450d0b200320113602880d200320153602800d2003200a36028c0d200320133602840d200a20132f0106490d0102400240201328020022020d002011ad2106410021020c010b201541016a211520133301044220862011ad8421060b02402006422088a7221420022f0106490d0003402006221a42ffffffff0f832106201541016a211520022f01042214200228020022022f01064f0d000b201a21060b2014410274200241e0006a220a6a41046a2802002113200220144103746a41086a21142006a7211102402015417f6a2202450d000340201328026021132002417f6a22020d000b0b2003200a3602940120032014360290012003410036028c012003201136028801200320133602840120034100360280010c020b200341e0036a20034198056a41980110cd051a200341d8096a200341b80a6a41dc0010cd051a200341f8086a200341d8096a41dc0010cd051a0c020b200320113602880120032015360280012003200a41016a36028c0120032013360284012003201341e0006a3602940120032013200a4103746a41086a2214360290010c000b0b0b2013200a4103746a41086a2114200a41016a210a0c000b0b41f8014108102d000b201320144103746a41086a210a201441016a21140c000b0b410021170c020b41012117410121270b02402017450d002026201741f8016c6a21112026210a0340200a41f0016a2802002113200a41e8016a28020021020240200a41ec016a2802002215450d000340200228026021022015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201536028c0d200320073602880d200320023602840d200320143602800d20034180016a200341800d6a10612003280288012114200328028c012102200328029001210720032802940121152013417f6a22130d000b0b200a41f8016a210a0240200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b200a2011470d000b0b2027450d00202610200b02402017200f460d0041d2ddc2002114412d21150c050b200342003702e40741908cc5002113200341908cc5003602e007410021114100210a0240200f450d000240024020082f01060d0002400240200828020022020d004100211541002113410021020c010b20082f01042113410121150b0240201320022f0106490d000340201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a2107201341027420026a41e4006a2802002113410021162015417f6a2202450d010340201328026021132002417f6a22020d000c020b0b200841086a210741012116200821130b200341a4026a2117200f2111034020034180016a200710c70320032802a002211520032802800121022003290398012106200341980b6a201741dc0010cd051a2011417f6a2111024020024101460d00200341e0036a200341980b6a41dc0010cd051a20154102460d00200341b80a6a200341e0036a41dc0010cd051a200328028c0b211520032802840b2102024020032802880b2207450d000340200228026021022007417f6a22070d000b0b02402015450d0041002107410021144100210a03402003200a3602a405200320143602a0052003200236029c052003200736029805200341800d6a20034198056a106120032802880d2107200328028c0d210220032802900d211420032802940d210a2015417f6a22150d000b0b0240200241908cc500460d0020022802002107200210202007450d0020072802002115200710202015450d00024020152802002202450d000340201510202002211520022802002207210220070d000b0b201510200b200341e0076a200610600b024002402011450d00201620132f0106490d0102400240201328020022020d004100211541002113410021020c010b20132f01042113410121150b0240201320022f0106490d000340201541016a211520022f01042213200228020022022f01064f0d000b0b200220134103746a41086a2107201341027420026a41e4006a2802002113410021162015417f6a2202450d020340201328026021132002417f6a22020d000c030b0b20032802e807211120032802e407210a20032802e00721130c020b201320164103746a41086a2107201641016a21160c000b0b2003419c0d6a2019360200200341940d6a20103602002003200f3602a00d200341800d6a41186a200341e00c6a3602002003420037028c0d200320083602840d200341003602800d2003200341e00c6a3602880d20034180016a200341800d6a10c60320032d00880122024104460d02200320032900890137039805200320034180016a41106a221529000037009f0520032903800121064118101e2210450d01201020023a0008201020063703002010200329039805370009201041106a200329009f0537000020034180016a41206a200341800d6a41206a28020036020020034180016a41186a200341800d6a41186a2903003703002015200341800d6a41106a29030037030020034180016a41086a200341800d6a41086a290300370300200320032903800d3703800120034198056a20034180016a10c6030240024020032d00a00522184104470d00410121154101210c0c010b4128210741022114410121154101210c034020032903a805210620032802a405211920032d00a305210920032d00a205211720032d00a1052116200329039805211a02402015200c470d00201541016a22022015490d0320142002201420024b1b220cad42187e2237422088a70d032037a722024100480d030240024020150d002002101e21100c010b2010200741706a2002102221100b20100d0020024108102d000b201020076a220220063700002002417c6a20193600002002417b6a20093a00002002417a6a20173a0000200241796a20163a0000200241786a20183a0000200241706a201a370300201441026a2114200741186a2107201541016a211520034198056a20034180016a10c60320032d00a00522184104470d000b0b200c450d03201010200c030b1027000b41184108102d000b410021150b02402015200f460d000240200a450d00200a21020340201328026021132002417f6a22020d000b0340200a417f6a220a0d000b0b02402011450d0041002102410021154100210703402003200236028c0d200320153602880d200320133602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c012113200328029001211520032802940121022011417f6a22110d000b0b41ffddc200211441272115201341908cc500460d0120132802002102201310202002450d0120022802002113200210202013450d01024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c010b20032011360280092003200a3602fc08200320133602f808024002400240024002400240024002400240024002400240024002400240024002404112101e2202450d00200241106a41002f00e0d5433b0000200241086a41002900d8d543370000200241002900d0d54337000020024112412410222202450d0120022036370012200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e0072002411a200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210200240024002400240024002400240200341d0066a412041e4fdc600410041001002417f460d0020034180016a20361090042003290380012106200329038801211a200341800d6a20034180016a41106a41900110cd051a200341e0036a200341800d6a41900110cd051a2003201a3703a005200320063703980520034198056a41106a200341e0036a41900110cd051a4101210a20032802ec054101470d05200341f0056a2d00000e03020301020b200341e0036a200341800d6a41900110cd051a4100210a0c0e0b200341f8056a2802002110200341f4056a2802002111410221020c020b200341f4056a2802002111410021020c010b200341f8056a2802002110200341f4056a2802002111410121020b024002402003418c066a280200450d00200320034184066a36028801200320032802840636028401200320034188066a28020036028001200341e0036a20034180016a10ea0220032802e00321130c010b200342003702e40341908cc5002113200341908cc5003602e0030b200320032902e4033702dc09200320133602d8094101210a20024101460d01410021170c070b0c080b4101211602404103410620032802a8054102461b22154106201f41014622021b22134102201d1b201320021b220a4106460d00410021170c070b410121174101211620154106202041014622021b22134102201e1b201320021b220a4106470d0641012117024020224101470d004102210a2025450d060b41012117024020224101470d004103210a41002116200341d0056a2802004102460d070b20032802f80822132102024020032802fc082207450d0020132102200721150340200228026021022015417f6a22150d000b2007211503402015417f6a22150d000b0b2003280280092214450d0420022f01060d0202400240200228020022130d004100211541002102410021130c010b20022f01042102410121150b0240200220132f0106490d000340201541016a211520132f01042202201328020022132f01064f0d000b0b201320024103746a41086a2107200241027420136a41e4006a28020021024100210a2015417f6a2213450d030340200228026021022013417f6a22130d000c040b0b41124101102d000b41244101102d000b200241086a21074101210a0b20072903002106024002404116101e2213450d0041002900aad543211a41002900a4d5432137410029009cd543213903402013410e6a201a370000201341086a20373700002013203937000002400240024020134116412c10222213450d0020132006370016200341e0076a41186a22154200370300200341e0076a41106a22184200370300200341e0076a41086a22194200370300200342003703e0072013411e200341e0076a1001200341d0066a41186a2015290300370300200341d0066a41106a2018290300370300200341d0066a41086a2019290300370300200320032903e0073703d006201310200240200341d0066a412041e4fdc600410041001002417f470d004104210a0c090b2014417f6a211420034180016a200729030010e50220032d008201211720032d0081012116024020032802c001450d0020032802bc0110200b2014450d05200a20022f0106490d0102400240200228020022130d004100211541002102410021130c010b20022f01042102410121150b0240200220132f0106490d000340201541016a211520132f01042202201328020022132f01064f0d000b0b201320024103746a41086a2107200241027420136a41e4006a28020021024100210a2015417f6a2213450d020340200228026021022013417f6a22130d000c030b0b412c4101102d000b2002200a4103746a41086a2107200a41016a210a0b200729030021064116101e22130d000b0b41164101102d000b20032802f808211320032802fc0821070b0240024020070d00201321020c010b20132102200721150340200228026021022015417f6a22150d000b0340201320132f01064102746a41e0006a28020021132007417f6a22070d000b0b20132f010621152003280280092107200342003702840d200341908cc5003602800d2003419c016a201536020020034194016a2013360200200320073602a00120034198016a200341f8086a3602002003420037028c0120032002360284014100211420034100360280012003200341f8086a3602880120034180016a200341800d6a10b503200341c00a6a20032802880d360200200320032903800d22063703b80a2006a7220a2113024020032802bc0a2217450d00200a211320172102034020132802f80621132002417f6a22020d000b2017210203402002417f6a22020d000b0b20032802c00a221821070240024002400340024020070d00200341013a00e007200341003602800d2003201d3602e4032003201f3602e0030240024020170d00200a21020c010b200a210220172113034020022802f80621022013417f6a22130d000b0340200a200a2f01064102746a41f8066a280200210a2017417f6a22170d000b0b2003419c016a200a2f010636020020034194016a200a360200200320183602a0012003420037028c0120032002360284012003410036028001200341ac016a200341e0076a360200200341a8016a200341800d6a36020020034198016a200341b80a6a3602002003200341b80a6a360288012003200341e0036a3602a40120034180016a10b60320032802d80922022107024020032802dc092215450d0020152113200221070340200728026021072013417f6a22130d000b0b20074520072f01064572210a2002211302402015450d0020152114200221130340201320132f01064102746a41e0006a28020021132014417f6a22140d000b0b024020134520132f010622144572201320144103746a22184572200a724101470d000240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114410021094102211820032802e009210a200341d8096a220721170c050b20032802f80822162114024020032802fc082217450d0020172113201621140340201428026021142013417f6a22130d000b0b20144520142f0106457221192016211302402017450d002017210a201621130340201320132f01064102746a41e0006a2802002113200a417f6a220a0d000b0b024020134520132f0106220a45722013200a4103746a221345722019724101470d000240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114410021094102211820032802e009210a200341d8096a220721170c050b024002400240024002402018290300223720142903082239540d00417f200729030822062013290300221a522006201a541b22134101460d002013450d0120372039520d0420150d02200221130c030b0240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114410021094102211820032802e009210a200341d8096a220721170c080b0240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f010621144100210941022118200341d8096a2117024020032802e00922150d00201721074100210a0c080b2015417f6a210a024020132f0106450d0041012109201721070c080b02400240201328020022150d0041002116200341d8096aad2106410021150c010b2013330104422086200341d8096aad842106410121160b024002402006422088a7221320152f01064f0d002006211a0c010b03402006221a42ffffffff0f832106201641016a211620152f01042213201528020022152f01064f0d000b0b41022118201341027420156a41e4006a2802002113201aa721072016417f6a2215450d060340201328026021132015417f6a22150d000c070b0b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f010621144100210941022118200341d8096a2107024020032802e00922150d00200721174100210a0c060b2015417f6a210a20140d0302400240200228020022150d0041002114200341d8096aad2106410021150c010b2002330104422086200341d8096aad842106410121140b02402006422088a722020d00034002400240201528020022020d00410021150c010b2015330104422086200642ffffffff0f83842106201441016a2114200221150b2006422088a72202450d000b0b41022118200241027420156a41dc006a280200210202402014417f6a2215450d000340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2006a7211720022f010621140c050b2003280280092219410476211820032802e009210a0240024020150d00200221130c010b20022113201521070340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b20022f01062114200341d8096a21070240200a20184b0d0041002109200341f8086a210c41012118200721170c050b0240024020170d00201621150c010b20162115201721180340201528026021152018417f6a22180d000b0340201620162f01064102746a41e0006a28020021162017417f6a22170d000b0b20162f0106211d410021184100210c41002109200721170c040b02400240201420132f0106490d0002400240201328020022020d004100211541002113410021020c010b20132f01042113410121150b0240201320022f0106490d000340201541016a211520022f01042213200228020022022f01064f0d000b0b2002201341c8006c6a41e0006a2116201341027420026a41fc066a2802002113410021142015417f6a2202450d01034020132802f80621132002417f6a22020d000c020b0b2013201441c8006c6a41e0006a2116201441016a21140b2007417f6a210720162d0030450d000b200a2017201810b7034105210a0c040b2014417f6a2114200721170c010b0b2003420037029c0b200341908cc5003602980b200341cc016a410036020020034180016a41c8006a2019360200200341c4016a201d360200200341bc016a2016360200200341b4016a4200370200200341ac016a2015360200200341a8016a200c360200200341a4016a200a360200200341a0016a20143602002003419c016a201736020020034198016a200236020020034194016a410036020020034190016a20093602002003418c016a200736020020034180016a41086a2013360200200341c0016a200341f8086a360200200341b0016a200341f8086a36020020034100360284012003201836028001024020034180016a10652202450d000340200341e0076a200210c20320022903002106200341800d6a200341e0076a41c80010cd051a200341e0036a200341980b6a2006200341800d6a10c303024020032903e8034202510d0020032802a004450d00200328029c0410200b20034180016a106522020d000b0b200341e0076a41086a200341980b6a41086a280200360200200320032903980b22063703e007200341023a00980b200320253602840d200320223602800d2003201e3602e403200320203602e0032006a721020240024020032802e40722150d00200221130c010b2002211320152107034020132802f80621132007417f6a22070d000b0340200220022f01064102746a41f8066a28020021022015417f6a22150d000b0b2003419c016a20022f010636020020034194016a2002360200200320032802e8073602a0012003420037028c012003201336028401200341ac016a200341980b6a360200200341a8016a200341800d6a36020020034180016a41186a200341e0076a3602002003200341e0076a360288012003200341e0036a3602a401200341003602800120034180016a10b60310792113200341800d6a203610900420034180016a200341800d6a41d00010cd051a200341e0036a41086a200341800d6a41086a290300370300200341e0036a41106a200341800d6a41106a290300370300200341e0036a41186a200341800d6a41186a290300370300200341e0036a41206a200341800d6a41206a290300370300200320032903800d3703e003200341800d6a41ec006a2802002115200341800d6a41f0006a2802002107200341800d6a41f4006a2802002114200341800d6a41f8006a280200210a200341800d6a41fc006a2802002116200341800d6a4180016a2802002117200341800d6a418c016a280200210220032802d00d211820032902840e210620032802d40d2119200341e0036a41c8006a20034180016a41c8006a290300370300200341e0036a41c0006a20034180016a41c0006a290300370300200341e0036a41386a20034180016a41386a290300370300200341e0036a41306a20034180016a41306a290300370300200320032903a8013703880420034180016a200341e0036a41d00010cd051a20034180016a418c016a200236020020034180016a4180016a20174100201941014622021b36020020034180016a41fc006a2016410020021b36020020034180016a41f8006a200a410020021b36020020034180016a41f4006a2014410020021b36020020034180016a41f0006a2007410020021b36020020034180016a41ec006a201541908cc50020021b360200200341e8016a2010360200200341e4016a4101360200200341e0016a2011360200200341dc016a2013360200200341d8016a4182083b010020034180016a4198016a200341800d6a4198016a2802003602002003200637028402200341013602d401200320183602d001200320032903900e37039002203620034180016a10b40320032802e00720032802e40720032802e80710b70320032802b80a20032802bc0a20032802c00a10b70320032802e009211320032802d8092102024020032802dc092215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b0240200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b024020032802ec05450d00200328028c0621132003280284062102024020034188066a2802002215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b0240200341ac066a280200450d0020032802a80610200b200341800d6a41086a200341f8086a41086a2802002214360200200320032903f80822063703800d2006a721020240024020032802840d22150d00200221130c010b20152107200221130340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2003419c016a20022f010636020020034198016a410036020020034194016a2002360200200320143602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a040c040b410021160b20032802e009211320032802d8092102024020032802dc092215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b0240200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b20032802ec05450d00200328028c0621132003280284062102024020034188066a2802002215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d0041002115410021074100211403402003201436028c0d200320073602880d200320023602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c012102200328029001210720032802940121142013417f6a22130d000b0b200241908cc500460d0020022802002115200210202015450d0020152802002113201510202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b200341ac066a280200450d0020032802a80610200b200341800d6a41086a200341f8086a41086a2802002214360200200320032903f80822063703800d2006a721020240024020032802840d22150d00200221130c010b20152107200221130340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2003419c016a20022f010636020020034198016a410036020020034194016a2002360200200320143602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a0441f7e5c2002114411b2115200a0e0701020304050800010b4102212720044102470d050c060b41ace1c2002114411321150c060b41bfe1c2002114411d21150c050b41dce1c20041a2e2c200201741ff017141014722021b41e4e2c20041a3e3c20020021b201641ff017141014622131b211441c60041c20020021b413f413b20021b20131b21150c040b41dee3c20041a4e4c200201741ff017141014722021b41e6e4c20041a5e5c20020021b201641ff017141014622131b211441c60041c20020021b413f413b20021b20131b21150c030b41e0e5c2002114411721150c020b4200213c200341d0066a41086a22024200370300200342003703d00641f8a7c3004118200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a1003210202400240024002402003280280012213417f460d002002450d0020134108490d012002290000213c200210200b410f101e2202450d01200241076a41002900d4ca40370000200241002900cdca403700002002410f411e10222202450d022002203c37000f200341e0076a41186a22134200370300200341e0076a41106a22154200370300200341e0076a41086a22074200370300200342003703e00720024117200341e0076a1001200341d0066a41186a2013290300370300200341d0066a41106a2015290300370300200341d0066a41086a2007290300370300200320032903e0073703d006200210200240200341d0066a412041e4fdc600410041001002417f470d0041c5e6c2002114412121150c050b20042127201210794b0d034192e6c2002114413321150c040b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b410f4101102d000b411e4101102d000b1079212820034200370264200341908cc5003602600240200f450d000240024020082f01060d0002400240200828020022020d004100211341002115410021020c010b20082f01042115410121130b0240201520022f0106490d000340201341016a211320022f01042215200228020022022f01064f0d000b0b200220154103746a41086a2107201541027420026a41e4006a2802002108410021102013417f6a2202450d010340200828026021082002417f6a22020d000c020b0b200841086a2107410121100b202341014621292024410146212a2027410146213d200341800d6a410272213e20034198056a410272213f200341800d6a41e0006a211720034198056a410172211f200341f40d6a2104200341800d6a41206a210c200341980b6a41186a21402035a7214120034180016a41206a210a200341d00d6a211e200341a4026a2116200341c00b6a2142034020034180016a200710c70320032802a00221142003280280012102200341800d6a41086a2215200a41086a290200370300200341800d6a41106a2207200a41106a290200370300200341800d6a41186a2213200a41186a2902003703002003200a2902003703800d200329039001211a200329039801213520032903c0012106200341980b6a201641dc0010cd051a024020024101460d00200341f80b6a41186a22022013290300370300200341f80b6a41106a22112007290300370300200341f80b6a41086a22182015290300370300200320032903800d3703f80b200341e0036a200341980b6a41dc0010cd051a20144102460d00200341b80a6a200341e0036a41dc0010cd051a200341980c6a41186a22222002290300370300200341980c6a41106a22232011290300370300200341980c6a41086a22242018290300370300200320032903f80b3703980c42002139024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020274102460d00200341f0066a41086a22024200370300200342003703f00641f684c2004121200341f0066a1000200341b80c6a41086a22252002290300370300200320032903f0063703b80c200341003602800d200341b80c6a4110200341800d6a100321140240024020032802800d2211417f470d00420021360c010b20114108490d0f20142900002136201410200b200320363703800720024200370300200342003703f00641f684c2004121200341f0066a100020252002290300370300200320032903f0063703b80c2003203642017c3703800d200341b80c6a4110200341800d6a41081005411a101e2214450d0d201441002900baef412238370000201441186a41002f00d2ef41222b3b0000201441106a41002900caef41223a370000201441086a41002900c2ef41224337000020032903800721362014411a413410222226450d0c2026203637001a200341d8096a41186a22144200370300200341d8096a41106a22114200370300200341d8096a41086a22184200370300200342003703d80920264122200341d8096a1001200341f8086a41186a222c2014290300370300200341f8086a41106a222f2011290300370300200341f8086a41086a222e2018290300370300200320032903d8093703f8082026102020034198056a200341f8086a10af030240024020032903b80522364202520d00200320034180076a3602f00c201442003703002011420037030020184200370300200342003703d80941d4efc1004122200341d8096a1001200341e0076a41186a222d2014290300370300200341e0076a41106a22312011290300370300200341e0076a41086a22302018290300370300200320032903d8093703e007200341003602800d200341e0076a4120200341800d6a100321260240024020032802800d2233417f460d002026450d00203341074b0d0141ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b42002136201442003703002011420037030020184200370300200342003703d80941d4efc1004122200341d8096a1001202d20142903003703002031201129030037030020302018290300370300200320032903d8093703e00720032003290380073703800d200341e0076a4120200341800d6a41081005420021390c020b2026290000214420261020200341d0066a204410b003200341800d6a200341d0066a10af0320032903a00d4202510d0d2030200c41086a29030022453703002031200c41106a2903002236370300202d200c41186a29030022463703002003200c29030022473703e007201529030021392013290300214820032903800d214920032903900d214a20402046370300200341980b6a41106a2036370300200341980b6a41086a2045370300200320473703980b201320483703002003204a3703900d200320393703880d200320493703800d20032040410020364201511b3602a40d2003200341f00c6a3602a00d200341003602e807200342013703e0074110101e2226450d0c20262049370000202620393700082003429080808080023702e407200320263602e00720264110412010222226450d0b2026204a370010202641186a2048370000200342a080808080043702e407200320263602e007200c200341e0076a10810120032802e4072126200341d0066a412020032802e007223320032802e807100502402026450d00203310200b20032802f00c2126201442003703002011420037030020184200370300200342003703d80941d4efc1004122200341d8096a1001202d20142903003703002031201129030037030020302018290300370300200320032903d8093703e007200320262903003703800d200341e0076a4120200341800d6a4108100542012139420021360c010b20032903d005214420032903c805213920032903c005214b0b201342003703002007420037030020154200370300200342003703800d200320443703b80d200320393703b00d2003204b3703a80d200320363703a00d200341003602a00520034201370398054110101e2215450d08201542003700082015420037000020034290808080800237029c05200320153602980520154110412010222215450d0720154200370010201541186a4200370000200342a0808080800437029c052003201536029805200c20034198056a109401200328029c052115200341f8086a4120200328029805220720032802a005100502402015450d00200710200b2003290380072139200341800d6a201a10f20220032903b00d4202510d0620034198056a41086a200441086a29020037030020034198056a41106a200441106a29020037030020034198056a41186a200441186a29020037030020034198056a41206a200441206a2d00003a0000200320042902003703980520032802f00d210720032802ec0d212620032802e80d212d20032802dc0d213120032802d80d214c20032802d00d213020032802cc0d214d20032802c40d213320032802c00d214e20034180076a41186a223b201f41186a29000037030020034180076a41106a224f201f41106a29000037030020034180076a41086a2250201f41086a2900003703002003201f29000037038007410f101e2215450d05201541076a41002900d4ca40370000201541002900cdca403700002015410f411e10222215450d042015203c37000f201442003703002011420037030020184200370300200342003703d80920154117200341d8096a1001200341e0076a41186a2014290300370300200341e0076a41106a2011290300370300200341e0076a41086a2018290300370300200320032903d8093703e00720151020024002400240200341e0076a412041e4fdc600410041001002417f470d00410121150c010b411a101e2215450d05201541186a202b3b0000201541106a203a370000201541086a2043370000201520383700002015411a413410222215450d042015203937001a201442003703002011420037030020184200370300200342003703d80920154122200341d8096a1001202c2014290300370300202f2011290300370300202e2018290300370300200320032903d8093703f8082015102041002115200341f8086a412041e4fdc600410041001002417f460d0010792012490d01410221150b200320153a00800d41a885c2004125200341800d6a41d085c20041e085c200102e000b20024200370300200342003703f00641f085c200412a200341f0066a100020252002290300370300200320032903f0063703b80c200341003602800d200341b80c6a4110200341800d6a100321150240024020032802800d2214417f470d00420021360c010b20144108490d0220152900002136201510200b20024200370300200342003703f00641f085c200412a200341f0066a100020252002290300370300200320032903f0063703b80c2003203642017c3703800d200341b80c6a4110200341800d6a4108100520132032370300201e200329038007370300201e41086a2050290300370300201e41106a204f290300370300201e41186a203b290300370300200c4200370300200c41086a4200370300200c41106a4200370300200c41186a4200370300200320343703900d2003203c3703880d200320393703800d200320413602cc0d2003203d3602c80d200320123602c40d200341013602c00d2036200341800d6a10c00302402033450d00204e10200b02402030450d00204d10200b02402031450d00204c10200b202d2026200710f502420121390b200341e0076a203510e50220032903f007213820032903e807213a200341f0066a41086a22024200370300200342003703f00641d5efc2004121200341f0066a1000200341d0066a41086a22152002290300370300200320032903f0063703d006200341003602800d200341d0066a4110200341800d6a1003211302400240024020032802800d2207417f470d00420021350c010b024020130d00420021350c010b200741074d0d0120132900002135201310200b20052009203a42015122131b21092029201d20131b211d201c201920131b21192038203720131b2137200342013703800d200320353703880d200341800d6a10fc032138200341d8096a41186a22112022290300370300200341d8096a41106a22182023290300370300200341d8096a41086a22222024290300370300200320032903980c3703d809410221070240202a410220131b22134102460d00201d4101462114201341014621070b200341f8086a41186a22132011290300370300200341f8086a41106a22112018290300370300200341f8086a41086a22182022290300370300200320032903d8093703f8082003202041ff017122203602dc0d200341003602c80d200320383703c00d200320283602b80d200320063703b00d2003201b3703a80d200320093602a40d200320143602a00d2003201936029c0d200320073602980d200320373703900d200320363703880d200320393703800d201720032903f808370300201741086a2018290300370300201741106a2011290300370300201741186a20132903003703002035200341800d6a10ed02200341033a00880d200320353703800d0240201a200341800d6a1089040d0020024200370300200342003703f00641d5efc2004121200341f0066a100020152002290300370300200320032903f0063703d006200341003602800d200341d0066a4110200341800d6a1003211302400240024020032802800d2207417f460d002013450d00200741074d0d022013290000211a20131020201a42017c211a0c010b4201211a0b20024200370300200342003703f00641d5efc2004121200341f0066a100020152002290300370300200320032903f0063703d0062003201a3703800d200341d0066a4110200341800d6a410810050240024002402003280260220241908cc500460d00200328026421140c010b203f410041b20110cc051a41b801101e2202450d014100211420024100360200200241046a20034198056a41b40110cd051a20034100360264200320023602600b03400240024020022f010622110d00410021130c010b20114103742115200241086a2107417f21130340024020150d00201121130c020b2007290300211a201541786a2115201341016a2113200741086a21070240417f201a200652201a2006561b41016a0e03020001020b0b200220134103746a41e0006a20353703000c150b02402014450d002014417f6a2114200220134102746a41b8016a28020021020c010b0b2003200328026841016a36026802400240024020022f01062215410b490d0002400240200241908cc500460d00203e410041b20110cc051a41b801101e22150d0141b8014108102d000b41c8a6c000412d41a888c6001028000b20154100360200201541046a200341800d6a41b40110cd051a200229039001211a20022903382139201541086a200241c0006a20022f010641796a2207410374221410cd052111201541e0006a20024198016a201410cd052114200241063b0106201520073b010620134107490d012011201341037441506a22186a2011201341796a221341037422226a2211200741ffff037120136b41037410ce051a20112006370300201420186a201420226a2214201541066a22072f010020136b41037410ce051a0c020b200241086a22142013410374220741086a22116a201420076a2214201520136b41037410ce051a20142006370300200241e0006a221520116a201520076a221520022f010620136b41037410ce051a20152035370300200220022f010641016a3b01060c150b200241066a2107200241086a22112013410374221441086a22186a201120146a221120022f010620136b41037410ce051a20112006370300200241e0006a221120186a201120146a221420022f010620136b41037410ce051a0b20142035370300200720072f010041016a3b01000240200228020022130d0041002113200341e0006a21020c130b200320022f01043602a4052003201336029c052003200341e0006a3602a0052003410136029805200341800d6a20034198056a2039201a20154100105920032802800d4101470d130340200328028c0d210220032802940d211320032802900d211520032903a00d211a20032903980d213920032802880d22072802002214450d1320032802840d2111200320072f01043602a405200320023602a0052003201436029c052003201141016a36029805200341800d6a20034198056a2039201a20152013105920032802800d4101460d000c140b0b41b8014108102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41cda6c3004121419c86c2001028000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b41344101102d000b411a4101102d000b411e4101102d000b410f4101102d000b41e988c700412b419885c2001028000b41204101102d000b41104101102d000b41204101102d000b41104101102d000b41b8e7c50041920141cce8c5001045000b41344101102d000b411a4101102d000b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b203f410041b20110cc051a200341800d6a20034198056a41b40110cd051a20424200370300200341980b6a41206a2214420037030020404200370300200341980b6a41106a22114200370300200341980b6a41086a22184200370300200342003703980b41e801101e2207450d0120074100360200200741046a200341800d6a41b40110cd051a200741e0016a2042290300370300200741d8016a2014290300370300200741d0016a2040290300370300200741c8016a2011290300370300200741c0016a2018290300370300200720032903980b3703b8012007200228020022143602b8012002200736020020022002280204221141016a360204201441003b01042014200736020020112013470d0220072f01062202410a4b0d03200720024103746a221341e0006a201a370300201341086a20393703002007200241016a22024102746a41b8016a2015360200200720023b0106201520023b0104201520073602000b024020032802a008450d00200328029c0810200b200328028c0b211320032802840b2102024020032802880b2215450d000340200228026021022015417f6a22150d000b0b02402013450d004100211541002107410021140340200320143602a405200320073602a0052003200236029c052003201536029805200341800d6a20034198056a106120032802880d2115200328028c0d210220032802900d210720032802940d21142013417f6a22130d000b0b200241908cc500460d0520022802002115200210202015450d0520152802002113201510202013450d05201328020022020d030c040b41e8014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b0340201310202002211320022802002215210220150d000b0b201310200b200f417f6a220f450d010240201020082f0106490d0002400240200828020022020d004100211341002115410021020c010b20082f01042115410121130b0240201520022f0106490d000340201341016a211320022f01042215200228020022022f01064f0d000b0b200220154103746a41086a2107201541027420026a41e4006a2802002108410021102013417f6a2202450d010340200828026021082002417f6a22020d000c020b0b200820104103746a41086a2107201041016a21100c000b0b2003418b0d6a200341e0006a41086a280200360000200320032903603700830d20034180016a41086a41073a000020034189016a20032900800d37000020034190016a200341800d6a41076a29000037000020034198016a2021370300200341163a00800120034180016a10770240200b450d00200b21020340200d280260210d2002417f6a22020d000b0340200b417f6a220b0d000b0b0240200e450d0041002102410021134100211503402003200236028c0d200320133602880d2003200d3602840d200320153602800d20034180016a200341800d6a10612003280288012115200328028c01210d20032802900121132003280294012102200e417f6a220e0d000b0b0240200d41908cc500460d00200d2802002102200d10202002450d0020022802002113200210202013450d00024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200b200341800d6a41086a200341e00c6a41086a280200220a360200200320032903e00c22063703800d2006a721020240024020032802840d22150d00200221130c010b20152107200221130340201328026021132007417f6a22070d000b0340200220022f01064102746a41e0006a28020021022015417f6a22150d000b0b2003419c016a20022f01063602004100211420034198016a410036020020034194016a20023602002003200a3602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a040c170b0240200b450d00200b21020340200d280260210d2002417f6a22020d000b0340200b417f6a220b0d000b0b0240200e450d0041002102410021134100210703402003200236028c0d200320133602880d2003200d3602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c01210d20032802900121132003280294012102200e417f6a220e0d000b0b200d41908cc500460d00200d2802002102200d10202002450d0020022802002113200210202013450d00024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200b200341800d6a41086a200341e00c6a41086a280200220d360200200320032903e00c22063703800d2006a721020240024020032802840d22070d00200221130c010b2007210a20022113034020132802602113200a417f6a220a0d000b0340200220022f01064102746a41e0006a28020021022007417f6a22070d000b0b2003419c016a20022f010636020020034198016a410036020020034194016a20023602002003200d3602a001200341003602900120034200370388012003201336028401200341003602800120034180016a109a040c150b201410200b200b41ff0171450d0220032802b404450d0020032802d404211420032802cc0421150240200341d0046a2802002208450d002008210b034020152802602115200b417f6a220b0d000b03402008417f6a22080d000b0b02402014450d00410021084100210b4100210e03402003200e36028c0d2003200b3602880d200320153602840d200320083602800d20034180016a200341800d6a10612003280288012108200328028c012115200328029001210b200328029401210e2014417f6a22140d000b0b201541908cc500460d0020152802002108201510202008450d0020082802002114200810202014450d00024020142802002215450d000340201410202015211420152802002208211520080d000b0b201410200b0240200341f4046a280200450d0020032802f00410200b411921154193e1c20021140b02402016450d000240200d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402010450d004100210d410021084100210b03402003200d36028c0d200320083602880d200320133602840d2003200b3602800d20034180016a200341800d6a1061200328028801210b200328028c0121132003280290012108200328029401210d2010417f6a22100d000b0b201341908cc500460d0020132802002110201310202010450d002010280200210d20101020200d450d000240200d2802002213450d000340200d10202013210d20132802002210211320100d000b0b200d10200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021074100210d03402003201336028c0d200320073602880d200320023602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c01210220032802900121072003280294012113200a417f6a220a0d000b0b200241908cc500460d1120022802002107200210202007450d1120072802002113200710202013450d11024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c110b1079211420034180016a200341e0036a41d00010cd051a200341800d6a41086a200341e0036a41086a290300370300200341800d6a41106a200341e0036a41106a290300370300200341800d6a41186a200341e0036a41186a290300370300200341800d6a41206a200341e0036a41206a290300370300200320032903e0033703800d200341e0036a41f0006a2802002108200341e0036a418c016a280200211520032802b004210b20032902e404211b20032802cc04210e20032802d404211820032802d804210920032802dc04210c20032802e004210f20032802b4042112200341800d6a41c8006a20034180016a41c8006a290300370300200341800d6a41c0006a20034180016a41c0006a290300370300200341800d6a41386a20034180016a41386a290300370300200341800d6a41306a20034180016a41306a290300370300200320032903a8013703a80d20034180016a200341800d6a41d00010cd051a20034180016a418c016a201536020020034180026a200f4100201241014622151b360200200341fc016a200c410020151b360200200341f8016a2009410020151b360200200341f4016a2018410020151b36020020034180016a41f0006a2008410020151b360200200341ec016a200e41908cc50020151b360200200341e0016a2014360200200341dc016a2019360200200341d8016a41013a000020034180016a4198016a200341e0036a4198016a2802003602002003201b37028402200341013602d4012003200b3602d001200320032903f00437039002201a20034180016a10b40320034180016a41106a200637030020034180016a41086a41063a0000200341163a00800120034180016a107702402016450d000240200d450d00200d21150340201328026021132015417f6a22150d000b0340200d417f6a220d0d000b0b02402010450d0041002115410021144100210d03402003201536028c0d200320143602880d200320133602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c012113200328029001211420032802940121152010417f6a22100d000b0b201341908cc500460d0020132802002114201310202014450d0020142802002115201410202015450d00024020152802002213450d000340201510202013211520132802002214211320140d000b0b201510200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021154100210703402003201336028c0d200320153602880d200320023602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c01210220032802900121152003280294012113200a417f6a220a0d000b0b410021140240200241908cc500470d000c110b2002280200211520021020024020150d000c110b2015280200211320151020024020130d000c110b024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200c100b201410200b02402018450d00201910200b4122211541f1e0c20021140b02402016450d000240200d450d00200d21080340201328026021132008417f6a22080d000b0340200d417f6a220d0d000b0b02402010450d004100210d410021084100210b03402003200d36028c0d200320083602880d200320133602840d2003200b3602800d20034180016a200341800d6a1061200328028801210b200328028c0121132003280290012108200328029401210d2010417f6a22100d000b0b201341908cc500460d0020132802002110201310202010450d002010280200210d20101020200d450d000240200d2802002213450d000340200d10202013210d20132802002210211320100d000b0b200d10200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021074100210d03402003201336028c0d200320073602880d200320023602840d2003200d3602800d20034180016a200341800d6a1061200328028801210d200328028c01210220032802900121072003280294012113200a417f6a220a0d000b0b200241908cc500460d0d20022802002107200210202007450d0d20072802002113200710202013450d0d024020132802002202450d000340201310202002211320022802002207210220070d000b0b201310200c0d0b201510200b02402011450d00201710200b02402007450d00200721130340200228026021022013417f6a22130d000b03402007417f6a22070d000b0b0240200a450d0041002113410021154100210703402003201336028c0d200320153602880d200320023602840d200320073602800d20034180016a200341800d6a10612003280288012107200328028c01210220032802900121152003280294012113200a417f6a220a0d000b0b410021140240200241908cc500470d000c0c0b2002280200211520021020024020150d000c0c0b2015280200211320151020024020130d000c0c0b024020132802002202450d000340201310202002211320022802002215210220150d000b0b201310200c0b0b201310200b20034180016a41106a201b370300200341b8016a2006370300200341b0016a201a370300200341a8016a202f3a0000200341a4016a200c36020020034180016a41206a202e3602002003419c016a200f36020020034180016a41186a202d360200200341ac016a200328009b0b360000200341d0016a20313a0000200341cc016a2019360200200341c8016a2030360200200341c4016a2009360200200341c0016a202c36020020032021370388012003203237038001200320032802980b3600a901200341d8016a200a360200200341dc016a200b360200200341e0016a2018360200200341e4016a2017360200200341e8016a2029360200200341ec016a2016360200200341f0016a2027360200200341f4016a2011360200200341f8016a2025360200200341fc016a200e36020020034180026a202336020020034184026a200836020020034188026a20203602002003418c026a201036020020034190026a201f36020020034194026a200d36020020034198026a201c360200200341a0026a20123b01002003419e026a20043b01002003419c026a20053b0100200341d4016a20032800bb0a360000200320032802b80a3600d101200341ac026a4200370200200341a6026a200341d4066a2f01003b0100200341a2026a20032802d006360100200341c0026a200341800d6a41086a290300370300200341c8026a200341800d6a41106a290300370300200341d0026a200341800d6a41186a290300370300200341908cc5003602a802200320032903800d3703b802200341003602a005200342013703980502400240024002404108101e2202450d002003410836029c05200320032802a005221341086a3602a0052003200236029805200220136a2032370000200341a8026a20034198056a106220034180016a41086a20034198056a10fa03200341b8026a20034198056a109401200328029c052102200341980c6a4120200328029805221320032802a005100502402002450d00201310200b20032802b002211320032802a8022102024020032802ac022215450d00201521070340200228026021022007417f6a22070d000b03402015417f6a22150d000b0b02402013450d004100211541002107410021140340200320153602a405200320073602a0052003200236029c052003201436029805200341800d6a20034198056a106120032802880d2114200328028c0d210220032802900d210720032802940d21152013417f6a22130d000b0b200241908cc500460d0320022802002115200210202015450d0320152802002113201510202013450d03201328020022020d010c020b41084101102d000b0340201310202002211320022802002215210220150d000b0b201310200b200341d0066a41086a22024200370300200342003703d00641d0a7c3004128200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012213417f460d002002450d00024020134108490d002002290000210620021020200642017c21060c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b420121060b200341d0066a41086a22024200370300200342003703d00641d0a7c3004128200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003200637038001200341f00c6a411020034180016a4108100520034180016a41106a203437030020034180016a41086a41043a0000200341163a00800120034180016a1077410021140c090b2013450d08200710200c080b0240200328029805450d00200328029c052202450d00200341a0056a280200450d00200210200b024020032802e003450d0020032802e4032202450d00200341e8036a280200450d00200210200b024020032802e007450d0020032802e4072202450d00200341e8076a280200450d00200210200b024020032802980b450d00200328029c0b2202450d00200341a00b6a280200450d00200210200b20032802b80a2202450d0720032802bc0a450d07200210200c070b41cda6c300412141b4a7c3001028000b4180a7c300412341a4a7c3001028000b20034188016a280200211520032802840121140240200d450d00201110200b02402002450d002010450d00200210200b02402013450d002008450d00201310200b02402007450d00200b450d00200710200b200a450d04200e450d04200a10200c040b20032802880121150b20032802840121140c020b2003201520026a220a36028801201320156a2014200210cd051a200341e0076a41186a22154200370300200341e0076a41106a220d4200370300200341e0076a41086a22104200370300200342003703e0072013200a200341e0076a1001200341980c6a41186a2015290300370300200341980c6a41106a200d290300370300200341980c6a41086a2010290300370300200320032903e0073703980c02402007450d00201310200b2003410036028001200341980c6a412020034180016a10032113024002400240024002402003280280012215417f460d002013450d002003201536029c05200320133602980520034180016a20034198056a109b042003290380014201510d02200341800d6a41186a2207200341a0016a290300370300200341800d6a41106a220a20034180016a41186a220d290300370300200341800d6a41086a221020034180016a41106a220829030037030020032003290388013703800d02402015450d00201310200b200d2007290300221b3703002008200a290300222137030020034180016a41086a2010290300223237030020034198056a41086a202137030020034198056a41106a201b370300200320032903800d370380012003203237039805410021130c010b20032002360288012003200236028401200320143602800120034198056a20034180016a109c04410121130b20034180016a41106a200341a0056a29030037030020034198016a20034198056a41106a2903003703002003201a37038001200320032903980537038801200341203602840d2003200341980c6a3602800d20034180016a200341800d6a109d0420032802880122150d010c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b2003418c016a280200450d00201510200b024020034194016a2802002215450d0020034198016a280200450d00201510200b02402002452013720d00201410200b200341d0066a41086a22024200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003410036028001200341f00c6a411020034180016a10032102024002402003280280012213417f460d002002450d00024020134108490d002002290000211b20021020201b42017c211b0c020b41ceb8c4004133200341d80e6a41fcbfc4004184b9c400102e000b4201211b0b200341d0066a41086a22024200370300200342003703d00641aca6c3004121200341d0066a1000200341f00c6a41086a2002290300370300200320032903d0063703f00c2003201b37038001200341f00c6a411020034180016a41081005024002402006200341e0036a1089040d0020034180016a41106a201a3703004100211420034180016a41086a41003a0000200341163a00800120034180016a107720032802fc080d010c030b41cda6c300412141f0a6c3001028000b201610200c010b02402010450d002011450d00201010200b0240200d450d00200e450d00200d10200b0240200a450d00200b450d00200a10200b02402007450d002008450d00200710200b20032802fc08450d0020032802f80810200b0240024020012d0000220241104b0d00410120027441bef207710d010b200241786a220241074b0d000240024002400240024020020e080005050105050203000b2001410c6a2802002113200141046a28020021020240200141086a2802002201450d00200121070340200228026021022007417f6a22070d000b03402001417f6a22010d000b0b02402013450d0041002101410021074100210a03402003200136028c0d200320073602880d200320023602840d2003200a3602800d20034180016a200341800d6a1061200328028801210a200328028c012102200328029001210720032802940121012013417f6a22130d000b0b200241908cc500460d0420022802002101200210202001450d0420012802002102200110202002450d0420022802002201450d030340200210202001210220012802002213210120130d000c040b0b200141286a280200450d03200141246a28020010200c030b200141086a280200450d02200141046a28020010200c020b200141086a280200450d01200141046a28020010200c010b200210200b2000201536020420002014360200200341e00e6a24000bb20c02067f067e230041b0016b2205240002400240024002404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302001200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b20054100360240200541106a4120200541c0006a1003210620052802402207417f460d022006450d0220074110490d01200641086a290000210b2006290000210c200610200c030b41144101102d000b41ceb8c4004133200541c0006a41fcbfc4004184b9c400102e000b4200210c4200210b0b02400240024002404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302002200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b20054100360240200541106a4120200541c0006a1003210620052802402207417f460d022006450d0220074110490d01200641086a290000210d2006290000210e200610200c030b41144101102d000b41ceb8c4004133200541c0006a41fcbfc4004184b9c400102e000b4200210e4200210d0b02400240200c20037d220f200c56200b20047d200c200354ad7d220c200b56200c200b511b4101470d00418abfc5002106411d21010c010b200541086a20014102200f200c10940402400240200528020822060d00200e20037c2210200e542206200d20047c2006ad7c220b200d54200b200d511b450d0141a7bfc5002106412d21010c020b200528020c21010c010b41002106024020012002470d000c010b024020012002412010cf050d000c010b2001200f200c10930302404114101e2206450d00200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370234200520063602302002200541306a10ca012005280238210620052802302107200541c0006a41186a22084200370300200541c0006a41106a22094200370300200541c0006a41086a220a42003703002005420037034020072006200541c0006a1001200541106a41186a2008290300370300200541106a41106a2009290300370300200541106a41086a200a2903003703002005200529034037031002402005280234450d00200528023010200b0240200541106a412041e4fdc600410041001002417f470d00200541f8006a200b370300200541f0006a2010370300200541c0006a41086a41003a0000200541c9006a2002290000370000200541d1006a200241086a290000370000200541d9006a200241106a290000370000200541e1006a200241186a290000370000200541023a0040200541c0006a10770b20022010200b10930320054200370348200542003703402005200541c0006a360210200541106a109402200541a8016a4200370300200541a0016a420037030020054198016a200437030020054190016a2003370300200541c0006a41086a41023a0000200541c9006a2001290000370000200541d1006a200141086a290000370000200541d9006a200141106a290000370000200541e1006a200141186a290000370000200541e9006a2002290000370000200541f1006a200241086a290000370000200541f9006a200241106a29000037000020054181016a200241186a290000370000200541023a0040200541c0006a1077410021060c010b41144101102d000b2000200136020420002006360200200541b0016a24000ba6d10105017f027e077f077e0f7f23004180066b22032400024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e10000102030405060708090e0f10111415000b200341ac016a41013602002003420137029c0120034184e6c6003602980120034104360294022003418cb4c60036029002200320034190026a3602a80120034198016a41d483c6001033000b200141306a2903002104200141286a290300210520012d0001210620034190026a41206a200141246a28020036020020034190026a41186a2001411c6a29020037030020034190026a41106a200141146a29020037030020034190026a41086a2001410c6a290200370300410421072003200141046a29020037039002200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d00200341d0006a41026a200a2d00003a000020034190036a41086a200b29030037030020034190036a41106a200c2d00003a0000200320032f0188053b015020032003290398013703900341002101200821070b200341e0056a41026a200341d0006a41026a2d00003a0000200341e0026a41086a20034190036a41086a290300370300200341e0026a41106a20034190036a41106a2d00003a0000200320032f01503b01e00520032003290390033703e0020240024020010d00200341e7006a200341e0026a41086a290300370000200341ef006a200341e0026a41106a2d00003a0000200320032f01e0053b01502003200d37005720032007360053200320032903e00237005f2003200341e2056a2d00003a0052410e101e2202450d16200241002900d8d643370000200241066a41002900ded6433700002003428e808080e00137029c012003200236029801200341d0006a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b200341f8006a412041e4fdc600410041001002417f460d0141bab5c4002101411421090c300b419affc6002101410f2109024020070e0700260a0b0c2530000b200d422088a72109200da721010c2f0b20034198016a41206a20034190026a41206a28020036020020034198016a41186a20034190026a41186a29030037030020034198016a41106a20034190026a41106a29030037030020034198016a41086a20034190026a41086a29030037030020032003290390023703980120034190036a20034198016a10b602200341aa056a220220032d0093033a0000200341e0056a41086a220120034190036a41186a290300370300200341e0056a41106a220920034190036a41206a2d00003a0000200320032f0091033b01a805200320034190036a41106a2903003703e00520032d0090034101460d2420034190036a41086a290300210d2003280294032107200341f7026a2001290300370000200341ff026a20092d00003a0000200320032f01a8053b01e0022003200d3700e702200320073600e302200320032903e0053700ef02200320022d00003a00e202410e101e2202450d152002410029008ed543370000200241066a4100290094d5433700002003428e808080e00137029c012003200236029801200341e0026a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b200341f8006a412041e4fdc600410041001002417f470d2d200341d0006a200341e0026a10cf04410d101e2202450d16200241002900e6d643370000200241056a41002900ebd6433700002003428d808080d00137029c012003200236029801200341d0006a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b024002400240024002400240200641037122024103460d0020020e03010203010b200341f8006a41204101410010050c040b200341003a00a8050c020b200341013a00a8050c010b200341023a00a8050b4101101e2202450d18200220032d00a8053a0000200341f8006a4120200241011005200210200b2003200341d0006a108903200341086a290300210d2003290300210e200341c6016a20032d00523a0000200341c7016a200328005336000041002101200341c0016a410036020020034198016a41186a200d2004200e200554200d200454200d2004511b22091b220d370300200341cb016a200341d0006a4107722202290000370000200341d3016a200241086a290000370000200341db016a200241106a290000370000200341e3016a200241186a2d00003a0000200320032f01503b01c401200342083703b8012003200e200520091b22043703a8012003200d3703a0012003200437039801200341e0026a20034198016a10c504200341bc016a280200450d1020032802b80110200c2e0b200141106a2903002104200141086a290300210541042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b2003418f016a20034190026a41086a29030037000020034197016a20034190026a41106a2d00003a0000200320032f0190033b01782003200736007b200320032903900237008701200320034190036a41026a2d00003a007a2003200d37007f0240024020010d00200341e0056a41186a200341f8006a41186a290300370300200341e0056a41106a200341f8006a41106a290300370300200341e0056a41086a200341f8006a41086a290300370300200320032903783703e00520034198016a200341e0056a10b104410121020240024020032d0098014101460d00410b210941ceb5c40021010c010b200341aa056a20032d009b013a000020034190026a41086a200341ac016a2902003703002003419d026a200341b1016a290000370000200320032f0099013b01a8052003200341a4016a2902003703900220034198016a41086a280200210941002102200328029c0121010b20034188056a41026a2207200341a8056a41026a2d00003a000020034190036a41086a20034190026a41086a29030037030020034190036a41106a20034190026a41106a290300370300200320032f01a8053b01880520032003290390023703900320020d2f200341f3026a20034190036a41086a2202290300370000200341e0026a41186a2003419d036a290000370000200320032f0188053b01e002200320093600e702200320013600e30220032003290390033700eb02200320072d00003a00e20220034198016a200341e0026a10fc0220032802b80122090d0141d9b5c4002101411021090c2f0b419affc6002101410f2109024020070e070025090a0b242f000b200d422088a72109200da721010c2e0b200341d0006a41086a20034198016a41346a290200220d3703002002200d370300200341a0036a220720034198016a413c6a29020037030020034190036a41186a220820034198016a41c4006a2902003703002003200341c4016a290200220d3703502003200d37039003200341e4016a280200210a20034198016a41286a280200210b20034198016a410c6a350200210d200328029801210c200329029c01210e20032903a801210f20032802bc01210120034190026a41186a20034198016a41186a290300221037030020034190026a410c6a200d3e020020034190026a41286a200b360200200341b4026a20013602002003200f3703a0022003200e37029402200320093602b0022003200c3602900220034190026a41c4006a200829030037020020034190026a413c6a200729030037020020034190026a41346a200229030037020020032003290390033702bc022003200a3602dc02200341106a200341e0056a10890302402003290310220d20032903900222117d2212200d56200341106a41086a290300220e20034190026a41086a29030022137d200d201154ad7d220d200e56200d200e511b0d002003200520122012200556200d200456200d2004511b22021b2205200f7c220e3703a002200341a8026a2004200d20021b220d20107c200e200554ad7c3703002003200520117c2204370390022003200d20137c2004200554ad7c37039802200341e0026a20034190026a10c50420032802b40221010b2001450d2b20032802b00210200c2b0b200141106a2903002104200141086a290300210541042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b2003418f016a20034190026a41086a29030037000020034197016a20034190026a41106a2d00003a0000200320032f0190033b01782003200736007b200320032903900237008701200320034190036a41026a2d00003a007a2003200d37007f0240024020010d00200341e0026a41186a200341f8006a41186a29030037030041102109200341e0026a41106a200341f8006a41106a290300370300200341e0026a41086a200341f8006a41086a290300370300200320032903783703e00220034198016a200341e0026a10fc0220032802b80122070d0141d9b5c40021010c2e0b419affc6002101410f2109024020070e07002408090a232e000b200d422088a72109200da721010c2d0b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2209200d37030020034190036a41106a220820034198016a413c6a29020037030020034190036a41186a220a20034198016a41c4006a2902003703002003200341c4016a290200220d3703502003200d37039003200341e4016a280200210b20034198016a41286a280200210120034198016a410c6a350200210f200328029801210c200329029c01211120032903a801210d20032802bc01210220034190026a41186a20034198016a41186a290300220e37030020034190026a410c6a200f3e020020034190026a41286a2001360200200341b4026a20023602002003200d3703a0022003201137029402200320073602b0022003200c3602900220034190026a41c4006a200a29030037020020034190026a413c6a200829030037020020034190026a41346a200929030037020020032003290390033702bc022003200b3602dc0202402001411f4d0d0041e9b5c4002101412321092002450d2d200710200c2d0b02400240200d2005200d200554200e200454200e2004511b22091b2205200e200420091b220484500d00200341a8026a200e20047d200d200554ad7d3703002003200d20057d3703a00220034198016a41086a22094200370300200342003703980141c7f9c600411220034198016a1000200341d0006a41086a200929030037030020032003290398013703502003410036029801200341d0006a411020034198016a10032109024002402003280298012207417f470d0041a00521090c010b024020090d0041a00521090c010b20074104490d192009280000210220091020200241a0056a210920032802b402210220032802b80221010b024020012002470d00200241016a22012002490d27200241017422072001200720014b1b2201ad42187e220d422088a70d27200da722074100480d270240024020020d002007101e21020c010b20032802b002200241186c2007102221020b2002450d02200320013602b402200320023602b00220032802b80221010b20032802b002200141186c6a220220043703082002200537030020022009360210200320032802b80241016a3602b802200341e0026a20034190026a10c50420032802b40221020b2002450d2b20032802b0021020410021010c2d0b20074108102d000b41042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d00200341e0026a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01e00220032003290398013703900241002101200821070b20034180046a41026a200341e0026a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f01e0023b01800420032003290390023703e0050240024020010d00200341a7036a200341e0056a41086a29030037000041102109200341af036a200341e0056a41106a2d00003a0000200320032f0180043b0190032003200d370097032003200736009303200320032903e00537009f03200320034182046a2d00003a00920320034198016a20034190036a10fc0220032802b801220a0d0141d9b5c40021010c2d0b419affc6002101410f2109024020070e070023070809222d000b200d422088a72109200da721010c2c0b200341f8006a41086a200341cc016a290200370300200341f8006a41106a200341d4016a290200370300200341f8006a41186a200341dc016a2902003703002003200341c4016a29020037037820034198016a41186a290300210f200341c0016a280200210c200341a4016a350200210d20032903a801211120032802bc0121062003350298012105200329029c01210420034198016a41086a22024200370300200342003703980141c7f9c600411220034198016a1000200341d0006a41086a20022903003703002003200329039801370350410021072003410036029801200341d0006a411020034198016a1003210202402003280298012201417f460d002002450d0020014104490d1720022800002107200210200b200d422086200442208884210d20044220862005842104024002400240200c41186c2202450d00200a20026a2108200241686a2101200a21020340200241086a290300210e200229030021052007200241106a2802002209490d024200200d200e7d2004200554ad7d220e200420057d2205200456200e200d56200e200d511b22091b210d4200200520091b2104200141686a2101200241186a22022008470d000b0b4108210b4100210902402006450d00200a10200b4100210c0c010b4118101e220b450d18200b2005370300200b2009360210200b200e3703080240024020010d00410121094101210c0c010b200241186a2114200c41186c200a6a41686a2115410121094101210c03402014210202400340200241086a290300210e200229030021052007200241106a2802002201490d014200200d200e7d2004200554ad7d220e200420057d2205200456200e200d56200e200d511b22011b210d4200200520011b2104200241186a22022008470d000c030b0b0240200c2009470d00200941016a220c2009490d2720094101742214200c2014200c4b1b220cad42187e2212422088a70d272012a722144100480d270240024020090d002014101e210b0c010b200b200941186c20141022210b0b200b450d230b200241186a2114200b200941186c6a2216200e3703082016200537030020162001360210200941016a210920152002470d000b0b2006450d00200a10200b200341c0016a2009360200200341bc016a200c360200200320113703a80120034198016a41186a200f370300200341dc016a200341f8006a41186a290300370200200341d4016a20034188016a290300370200200341cc016a20034180016a2903003702002003200437039801200320032903783702c4012003200b3602b8012003200d3703a00102402011200f844200520d002009450d280b20034190036a20034198016a10c5040c280b200141106a2903002104200141086a290300210541042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b20034180046a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01800420032003290390023703e0050240024020010d0020034187026a200341e0056a41086a290300370000411021092003418f026a200341e0056a41106a2d00003a0000200320032f0180043b01f0012003200d3700f701200320073600f301200320032903e0053700ff01200320034182046a2d00003a00f20120034198016a200341f0016a10fc0220032802b80122020d0141d9b5c40021010c2c0b419affc6002101410f2109024020070e070022060708212c000b200d422088a72109200da721010c2b0b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2201200d37030020034190036a41106a220920034198016a413c6a29020037030020034190036a41186a220720034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210820034198016a410c6a350200210d200328029801210a200329029c01210e20032903a801210f20032902bc01211120034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e0200200341b4026a20113702002003200f3703a0022003200e37029402200320023602b0022003200a3602900220034190026a41c4006a200729030037020020034190026a413c6a200929030037020020034190026a41346a200129030037020020032003290390033702bc02200320083602dc0220034190026a412c6a220110a4044112101e2202450d17200241002900d3d443370000200241106a41002f00e3d4433b0000200241086a41002900dbd44337000020034292808080a00237029c012003200236029801200120034198016a10ca0120032802a00121022003280298012109200341c0036a41186a22074200370300200341c0036a41106a22084200370300200341c0036a41086a220a4200370300200342003703c00320092002200341c0036a1001200341f8006a41186a2007290300370300200341f8006a41106a2008290300370300200341f8006a41086a200a290300370300200320032903c0033703780240200328029c01450d0020032802980110200b2003410036029801200341f8006a412020034198016a1003210b0240200328029801220c417f460d00200b450d002003200c3602e4052003200b3602e005200341386a200341e0056a109703024020032802380d0020032802e4052202450d0020032002417f6a22093602e405200320032802e005220841016a22073602e00520082d0000220241014b0d004100210a02400240024002400240024020020e020100010b41002102200341003a00b801034020092002460d0220034198016a20026a200820026a220141016a2d00003a00002003200141026a3602e0052003200241016a22013a00b8012001210220014120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003200920016b22093602e4054101210a200820016a41016a21070b200341c0036a41186a20034190036a41186a290300370300200341c0036a41106a20034190036a41106a290300370300200341c0036a41086a20034190036a41086a29030037030020032003290390033703c0032009450d0420032009417f6a22093602e4052003200741016a3602e00520072d0000220141014b0d044100210220010e020201020b200341003602e405200241ff0171450d03200341003a00b8010c030b41002102200341003a00b801034020092002460d0220034198016a20026a200720026a220141016a2d00003a00002003200141026a3602e0052003200241016a22013a00b8012001210220014120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003200920016b3602e405410121020b200341a0046a41186a220820034190036a41186a2201290300370300200341a0046a41106a220620034190036a41106a2209290300370300200341a0046a41086a221420034190036a41086a2207290300370300200341c0046a41086a2216200341c0036a41086a290300370300200341c0046a41106a2215200341c0036a41106a290300370300200341c0046a41186a2217200341c0036a41186a29030037030020032003290390033703a004200320032903c0033703c00420034180046a41186a2218201729030037030020034180046a41106a2217201529030037030020034180046a41086a22152016290300370300200320032903c00437038004200341e0036a41186a22162008290300370300200341e0036a41106a22082006290300370300200341e0036a41086a22062014290300370300200320032903a0043703e00320034198016a41186a2214201829030037030020034198016a41106a2218201729030037030020034198016a41086a22172015290300370300200320032903800437039801200120162903003703002009200829030037030020072006290300370300200320032903e00337039003200a4102460d01200341e0026a41186a2014290300370300200341e0026a41106a2018290300370300200341e0026a41086a2017290300370300200341d0006a41086a2007290300370300200341d0006a41106a2009290300370300200341d0006a41186a200129030037030020032003290398013703e00220032003290390033703500240200c450d00200b10200b20034190036a41186a200341e0026a41186a29030037030020034190036a41106a200341e0026a41106a29030037030020034190036a41086a200341e0026a41086a290300370300200341e0056a41086a200341d0006a41086a290300370300200341e0056a41106a200341d0006a41106a290300370300200341e0056a41186a200341d0006a41186a290300370300200320032903e00237039003200320032903503703e0050c280b200341003602e405200241ff0171450d00200341003a00b8010b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b200320013602c805200341d0006a41186a22024200370300200341d0006a41106a22094200370300200341d0006a41086a220742003703002003420037035041e5d4c300411a200341d0006a100120034198016a41186a2208200229030037030020034198016a41106a220a200929030037030020034198016a41086a220b2007290300370300200320032903503703980120034190036a20034198016a41201069024020032d0090030d002002420037030020094200370300200742003703002003420037035041e5d4c300411a200341d0006a100120082002290300370300200a2009290300370300200b20072903003703002003200329035037039801200341203602e402200320034198016a3602e0022001200341e0026a108203410021024100210a0c260b20034188056a41186a200341a9036a29000037030020034188056a41106a200341a1036a29000037030020034188056a41086a20034199036a290000370300200320032900910337038805200341e0046a20034188056a10a5042003410036029801200341e0046a412020034198016a1003210a0240200328029801220c417f460d00200a450d002003200c3602d4052003200a3602d005200341206a200341d0056a10970302402003290320a70d0020032802d4052202450d00200341306a290300210d2003290328210e20032002417f6a22093602d405200320032802d005220841016a22073602d00520082d0000220241014b0d004100210b02400240024002400240024020020e020100010b41002102200341003a00b801034020092002460d0220034198016a20026a200820026a220141016a2d00003a00002003200141026a3602d0052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220f370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200f370300200341e0026a41186a20034198016a41186a2903003703002003200920016b22093602d40520032003290398013703e0024101210b200820016a41016a21070b200341d0006a41186a200341e0026a41186a290300370300200341d0006a41106a200341e0026a41106a290300370300200341d0006a41086a200341e0026a41086a290300370300200320032903e00237035041002102200341003a00a8052009450d0420032009417f6a22093602d4052003200741016a3602d00520072d0000220141014b0d0420010e020201020b200341003602d405200241ff0171450d03200341003a00b8010c030b200341003a00b801410021020340200341003a00a80520092002460d0220034198016a20026a200720026a220141016a2d00003a00002003200141026a3602d0052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220f370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200f370300200341e0026a41186a20034198016a41186a2903003703002003200920016b3602d40520032003290398013703e002410121020b200341a0046a41186a2208200341e0026a41186a2201290300370300200341a0046a41106a2206200341e0026a41106a2209290300370300200341a0046a41086a2214200341e0026a41086a2207290300370300200341c0046a41086a2216200341d0006a41086a2215290300370300200341c0046a41106a2217200341d0006a41106a2218290300370300200341c0046a41186a2219200341d0006a41186a221a290300370300200320032903e0023703a004200320032903503703c00420034180046a41186a221b201929030037030020034180046a41106a2219201729030037030020034180046a41086a22172016290300370300200320032903c00437038004200341e0036a41186a22162008290300370300200341e0036a41106a22082006290300370300200341e0036a41086a22062014290300370300200320032903a0043703e00320034198016a41186a2214201b29030037030020034198016a41106a221b201929030037030020034198016a41086a22192017290300370300200320032903800437039801200120162903003703002009200829030037030020072006290300370300200320032903e0033703e002200b4102460d01201a20142903003703002018201b29030037030020152019290300370300200341e0056a41086a2007290300370300200341e0056a41106a2009290300370300200341e0056a41186a20012903003703002003200329039801370350200320032903e0023703e0050240200c450d00200a10200b200341e0026a41186a220a200341d0006a41186a2201290300370300200341e0026a41106a2209200341d0006a41106a2207290300370300200341e0026a41086a220c200341d0006a41086a2208290300370300200341a8056a41086a2206200341e0056a41086a2214290300370300200341a8056a41106a2216200341e0056a41106a2215290300370300200341a8056a41186a2217200341e0056a41186a2218290300370300200320032903503703e002200320032903e0053703a8052003200b3a009801200341a1016a200c290300370000200341a9016a2009290300370000200341b1016a200a290300370000200320032903e00237009901200320023a00b901200341ba016a220b20032903a805370100200341c2016a2006290300370100200341ca016a2016290300370100200341d2016a20172903003701004100210a200341f4026a200b410020021b3602002003200d3703e8022003200e3703e0022003200341c8056a3602f00220034100360258200342013703502003200341e0026a3602e005200341e0056a200341d0006a10df022009200341d0006a10d00420032802542102200341e0046a4120200328025022092003280258100502402002450d00200910200b20032802c80521022001420037030020074200370300200842003703002003420037035041e5d4c300411a200341d0006a100120034198016a41186a200129030037030020034198016a41106a200729030037030020034198016a41086a20082903003703002003200329035037039801200341203602e402200320034198016a3602e0022002200341e0026a108203201420034188056a41086a290300370300201520034188056a41106a290300370300201820034188056a41186a29030037030020032003290388053703e005410121020c280b200341003602d405200241ff0171450d00200341003a00b8010b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b41b8e7c50041920141cce8c5001045000b2001410c6a280200210b200141086a280200210a41042108200141046a2802002107200241046a280000210c20022d0000210920034188056a41026a2206200241036a2d00003a000020034198016a41086a2214200241186a29000037030020034198016a41106a2216200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a20062d00003a000020034190026a41086a201429030037030020034190026a41106a20162d00003a0000200320032f0188053b01900320032003290398013703900241002101200c21080b20034180046a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01800420032003290390023703e0050240024020010d0020034187026a200341e0056a41086a290300370000411021092003418f026a200341e0056a41106a2d00003a0000200320032f0180043b01f0012003200d3700f701200320083600f301200320032903e0053700ff01200320034182046a2d00003a00f20120034198016a200341f0016a10fc0220032802b80122010d0141d9b5c40021010c250b419affc6002101410f210902400240024002400240024020080e070001020304052a000b200d422088a72109200da721010c290b418cffc6002101410e21090c280b4180ffc6002101410c21090c270b41f7fec6002101410921090c260b41e4fec6002101411321090c250b41d3fec6002101411121090c240b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2209200d37030020034190036a41106a220820034198016a413c6a29020037030020034190036a41186a220c20034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210620034198016a41286a280200211420034198016a410c6a350200210d2003280298012116200329029c01210420032903a801210520032802bc01210220034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e020020034190026a41286a201436020020034190026a41246a2002360200200320053703a0022003200437029402200320013602b002200320163602900220034190026a41c4006a200c29030037020020034190026a413c6a200829030037020020034190026a41346a200929030037020020032003290390033702bc02200320063602dc02200b0d20418cb6c400210141012108411721090c220b41042107200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b2003418f016a20034190026a41086a29030037000020034197016a20034190026a41106a2d00003a0000200320032f0190033b01782003200736007b200320032903900237008701200320034190036a41026a2d00003a007a2003200d37007f0240024020010d00200341e0026a41186a200341f8006a41186a29030037030041102109200341e0026a41106a200341f8006a41106a290300370300200341e0026a41086a200341f8006a41086a290300370300200320032903783703e00220034198016a200341e0026a10fc0220032802b80122020d0141d9b5c40021010c2a0b419affc6002101410f2109024020070e0700200405061f2a000b200d422088a72109200da721010c290b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2201200d37030020034190036a41106a220920034198016a413c6a29020037030020034190036a41186a220720034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210820034198016a410c6a350200210d200328029801210a200329029c01210420032903a801210520032902bc01210e20034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e0200200341b4026a220b200e370200200320053703a0022003200437029402200320023602b0022003200a3602900220034190026a41c4006a200729030037020020034190026a413c6a200929030037020020034190026a41346a200129030037020020032003290390033702bc02200320083602dc0220034190026a412c6a220210a304200210a404200b280200450d2620032802b0021020410021010c280b4104210720012d00012106200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b20034180046a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01800420032003290390023703e0050240024020010d00200341f7026a200341e0056a41086a29030037000041102109200341ff026a200341e0056a41106a2d00003a0000200320032f0180043b01e0022003200d3700e702200320073600e302200320032903e0053700ef02200320034182046a2d00003a00e20220034198016a200341e0026a10fc0220032802b80122020d0141d9b5c40021010c290b419affc6002101410f2109024020070e07001f0304051e29000b200d422088a72109200da721010c280b200341d0006a41086a20034198016a41346a290200220d37030020034190036a41086a2201200d37030020034190036a41106a220920034198016a413c6a29020037030020034190036a41186a220720034198016a41c4006a290200370300200320034198016a412c6a290200220d3703502003200d37039003200341e4016a280200210820034198016a410c6a350200210d200328029801210a200329029c01210420032903a801210520032902bc01210e20034190026a41186a20034198016a41186a29030037030020034190026a410c6a200d3e0200200341b4026a200e370200200320053703a0022003200437029402200320023602b0022003200a3602900220034190026a41c4006a200729030037020020034190026a413c6a200929030037020020034190026a41346a200129030037020020032003290390033702bc02200320083602dc02410d101e2202450d15200241002900e6d643370000200241056a41002900ebd6433700002003428d808080d00137029c01200320023602980120034190026a412c6a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b024002400240024002400240200641037122024103460d0020020e03010203010b200341f8006a41204101410010050c040b200341003a00a8050c020b200341013a00a8050c010b200341023a00a8050b4101101e2202450d17200220032d00a8053a0000200341f8006a4120200241011005200210200b20032802b402450d2520032802b0021020410021010c270b200341d0006a41206a200141246a280200360200200341d0006a41186a2001411c6a290200370300200341d0006a41106a200141146a290200370300200341d0006a41086a2001410c6a290200370300410421072003200141046a290200370350200241046a280000210820022d0000210920034188056a41026a220a200241036a2d00003a000020034198016a41086a220b200241186a29000037030020034198016a41106a220c200241206a2d00003a0000200320022f00013b0188052003200241106a2900003703980141012101200241086a290000210d024020094101470d0020034190036a41026a200a2d00003a000020034190026a41086a200b29030037030020034190026a41106a200c2d00003a0000200320032f0188053b01900320032003290398013703900241002101200821070b200341a8056a41026a20034190036a41026a2d00003a0000200341e0056a41086a20034190026a41086a290300370300200341e0056a41106a20034190026a41106a2d00003a0000200320032f0190033b01a80520032003290390023703e005024020010d00200341b7046a200341e0056a41086a290300370000200341bf046a200341e0056a41106a2d00003a0000200320032f01a8053b01a0042003200d3700a704200320073600a304200320032903e0053700af042003200341a8056a41026a22022d00003a00a20420034198016a200341a0046a10b104410121070240024020032d0098014101460d00410b210941ceb5c40021010c010b200220032d009b013a000020034190026a41086a200341ac016a2902003703002003419d026a200341b1016a290000370000200320032f0099013b01a8052003200341a4016a2902003703900220034198016a41086a280200210941002107200328029c0121010b20034188056a41026a20022d00003a000020034190036a41086a20034190026a41086a29030037030020034190036a41106a20034190026a41106a290300370300200320032f01a8053b01880520032003290390023703900320070d27200341d3046a20034190036a41086a290300370000200341c0046a41186a2003419d036a290000370000200320032f0188053b01c004200320093600c704200320013600c30420032003290390033700cb04200320034188056a41026a2d00003a00c20420034198016a41206a200341d0006a41206a28020036020020034198016a41186a200341d0006a41186a29030037030020034198016a41106a200341d0006a41106a29030037030020034198016a41086a200341d0006a41086a290300370300200320032903503703980120034190026a20034198016a10b60220034180046a41026a220220032d0093023a0000200341e0056a41086a220120034190026a41186a290300370300200341e0056a41106a220920034190026a41206a2d00003a0000200320032f0091023b018004200320034190026a41106a2903003703e00520032d0090024101470d040c1d0b419affc6002101410f2109024020070e07001d0102031c27000b200d422088a72109200da721010c260b4180ffc6002101410c21090c250b41f7fec6002101410921090c240b41e4fec6002101411321090c230b20034190026a41086a290300210d2003280294022107200341f7046a2001290300370000200341ff046a20092d00003a0000200320032f0180043b01e0042003200d3700e704200320073600e304200320032903e0053700ef04200320022d00003a00e204410e101e2202450d122002410029008ed543370000200241066a4100290094d5433700002003428e808080e00137029c012003200236029801200341e0046a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b200341f8006a412041e4fdc600410041001002417f470d21200341e0046a200341c0046a412010cf05450d20200341a0046a200341e0046a10cf04410e101e2202450d132002410029008ed543370000200241066a4100290094d5433700002003428e808080e00137029c012003200236029801200341c0046a20034198016a10ca0120032802a00121022003280298012101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029c01450d0020032802980110200b2003410036029801200341f8006a412020034198016a10032101024002402003280298012209417f470d00410021020c010b024020010d00410021020c010b2003200936028404200320013602800420034198016a20034180046a10b20420032802b8012202450d15200341e0056a41186a20034198016a41186a290300370300200341e0056a41106a20034198016a41106a290300370300200341e0056a41086a20034198016a41086a29030037030020034190026a41086a200341c4016a29020037030020034190026a41106a200341cc016a29020037030020034190026a41186a200341d4016a29020037030020034190026a41206a200341dc016a290200370300200341b8026a200341e4016a28020036020020032003290398013703e005200320032902bc013703900202402009450d00200110200b200341f8006a412010040b200341a8056a41186a2208200341e0056a41186a290300370300200341a8056a41106a220a200341e0056a41106a290300370300200341a8056a41086a220b200341e0056a41086a29030037030020034190036a41086a220c20034190026a41086a220129030037030020034190036a41106a220620034190026a41106a220929030037030020034190036a41186a221420034190026a41186a220729030037030020034190036a41206a221620034190026a41206a29030037030020034190036a41286a221520034190026a41286a280200360200200320032903e0053703a8052003200329039002370390032001200b2903003703002009200a2903003703002007200829030037030020034198016a41086a2208200c29030037030020034198016a41106a220a200629030037030020034198016a41186a220b201429030037030020034198016a41206a220c201629030037030020034198016a41286a22062015280200360200200320032903a805370390022003200329039003370398012002450d2020034188056a41186a2214200729030037030020034188056a41106a2207200929030037030020034188056a41086a22092001290300370300200341e0026a41086a22012008290300370300200341e0026a41106a2216200a290300370300200341e0026a41186a2215200b290300370300200341e0026a41206a2217200c290300370300200341e0026a41286a220c200628020036020020032003290390023703880520032003290398013703e002200b2014290300370300200a200729030037030020082009290300370300200341bc016a20032903e002370200200341c4016a2001290300370200200341cc016a2016290300370200200341d4016a2015290300370200200341dc016a2017290300370200200341e4016a200c280200360200200320032903880537039801200320023602b801410e101e2202450d152002410029008ed543370000200241066a4100290094d5433700002003428e808080e001370294022003200236029002200341e0046a20034190026a10ca0120032802980221022003280290022101200341c0036a41186a22094200370300200341c0036a41106a22074200370300200341c0036a41086a22084200370300200342003703c00320012002200341c0036a1001200341f8006a41186a2009290300370300200341f8006a41106a2007290300370300200341f8006a41086a2008290300370300200320032903c0033703780240200328029402450d0020032802900210200b20034100360298022003420137039002200341c4016a20034190026a10ca01200320034198016a3602900320034190036a20034190026a10df02200320034198016a41106a3602900320034190036a20034190026a10df0220032802b80121022003200341c0016a28020022013602900320034190036a20034190026a106302402001450d002002200141186c6a21010340200320023602900320034190036a20034190026a10df02200241106a20034190026a10632001200241186a2202470d000b0b2003280294022102200341f8006a41202003280290022201200328029802100502402002450d00200110200b20032802bc01450d2020032802b8011020410021010c220b20022d00000d16200141046a280200210220034198016a41086a2201420037030020034200370398014194f9c600411620034198016a1000200341d0006a41086a200129030037030020032003290398013703502003200236029801200341d0006a411020034198016a41041005410021010c210b20022d00000d1520034198016a41086a220242003703002003420037039801419afac600411020034198016a1000200341d0006a41086a20022903003703002003200329039801370350200341023a00a80502404101101e2202450d00200220032d00a8053a0000200341d0006a411020024101100520021020410021010c210b41014101102d000b20022d00000d1420034198016a41086a220242003703002003420037039801419afac600411020034198016a1000200341d0006a41086a20022903003703002003200329039801370350200341013a00a80502404101101e2202450d00200220032d00a8053a0000200341d0006a411020024101100520021020410021010c200b41014101102d000b200141086a2802002107200141046a280200210820022d00000d012001410c6a280200210220034198016a41086a220142003703002003420037039801418cb5c400411520034198016a1000200341d0006a41086a20012903003703002003200329039801370350200341003602a0012003420137039801200320023602900220034190026a20034198016a106302402002450d0020024105742101200821020340200220034198016a10ca01200241206a2102200141606a22010d000b0b200328029c012102200341d0006a4110200328029801220120032802a001100502402002450d00200110200b410021012007450d00200810200b0c1d0b41d3fec6002101411121092007450d1c200810200c1c0b200341b0016a200141196a29000037030041112109200341a8016a200141116a29000037030020034198016a41086a200141096a290000370300200320012900013703980141d3fec600210120022d00000d1b200342f3e885db96cddbb3203703e0022003107936025020034190026a20034198016a10d104200328029402210120032802900221022003280298022107200341a4026a200341e0026a3602002003200220074105746a36029c022003200236029802200320013602940220032002360290022003200341d0006a3602a00220034190036a20034190026a10ea0320034190026a41086a20034190036a41086a28020036020020032003290390033703900220034198016a20034190026a10d20420034198016a10a204410021010c1b0b20022d00000d0f20034198016a41086a220242003703002003420037039801419afac600411020034198016a1000200341d0006a41086a20022903003703002003200329039801370350200341033a00a80502404101101e2202450d00200220032d00a8053a0000200341d0006a411020024101100520021020410021010c1b0b41014101102d000b410e4101102d000b410e4101102d000b410d4101102d000b41014101102d000b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b41184108102d000b41124101102d000b410d4101102d000b41014101102d000b410e4101102d000b410e4101102d000b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b410e4101102d000b20144108102d000b41d3fec6002101411121090c0a0b418cffc6002101410e21090c090b0240024002400240200b41246c2201450d0020034190036a41086a2202200741096a29000037030020034190036a41106a2209200741116a29000037030020034190036a41186a2208200741196a290000370300200341af036a220c200741206a280000360000200320072900013703900320072d000022064102460d0020034198016a41096a200229030037000020034198016a41116a200929030037000020034198016a41196a200829030037000020034198016a41206a200c280000360000200320063a009801200320032903900337009901200341e0026a20034198016a10b602200341c0036a41086a200341e0026a41096a290000370300200341c0036a41106a200341e0026a41116a290000370300200341c0036a41186a200341e0026a41196a290000370300200320032900e1023703c00341012102024020032d00e0024101470d00200341a8056a41086a200341e0056a41086a290300370300200341a8056a41106a200341e0056a41106a290300370300200341a8056a41186a200341e0056a41186a290300370300200320032903e0053703a8050c020b200341d0006a41086a2202200341c0036a41086a290300370300200341d0006a41106a2208200341c0036a41106a290300370300200341d0006a41186a220c200341c0036a41186a290300370300200320032903c003220d3703a8052003200d37035002404120101e2209450d0020092003290350370000200941186a200c290300370000200941106a2008290300370000200941086a2002290300370000024002400240200720016a200741246a460d0020034190036a41086a22022007412d6a29000037030020034190036a41106a2201200741356a29000037030020034190036a41186a22082007413d6a290000370300200341af036a220c200741c4006a280000360000200320072900253703900320072d002422064102460d0020034198016a41096a200229030037000020034198016a41116a200129030037000020034198016a41196a200829030037000020034198016a41206a200c280000360000200320063a009801200320032903900337009901200341e0026a20034198016a10b602200341c0036a41086a200341e0026a41096a290000370300200341c0036a41106a200341e0026a41116a290000370300200341c0036a41186a200341e0026a41196a290000370300200320032900e1023703c00320032d00e0024101470d02200341a8056a41086a200341e0056a41086a290300370300200341a8056a41106a200341e0056a41106a290300370300200341a8056a41186a200341e0056a41186a290300370300200320032903e0053703a805410121020c010b410021020b4101210b410121080c040b200741c8006a2101200341a8056a41086a221c200341c0036a41086a221d290300220d370300200341d0006a41186a2217200341c0036a41186a221e290300370300200341d0006a41106a2218200341c0036a41106a221f290300370300200341d0006a41086a2219200d370300200320032903c003220d3703a8052003200d370350200b41246c41b87f6a2115200341e0026a410172210620034198016a410172210c20034190036a411f6a212041022116412021144102210b410121080340200341e0056a41186a221a2017290300370300200341e0056a41106a221b2018290300370300200341e0056a41086a22212019290300370300200320032903503703e0050240200b417f6a2008470d002016200b2016200b4b1b220841ffffff3f712008470d07200841057422024100480d07200920142002102222090d0020024101102d000b200920146a220220032903e005370000200241186a201a290300370000200241106a201b290300370000200241086a202129030037000041002102200b4110460d042015450d0420034190036a41086a221a200141096a29000037030020034190036a41106a221b200141116a29000037030020034190036a41186a2221200141196a2900003703002020200141206a280000360000200320012900013703900320012d000022224102460d04200c200329039003370000200c41086a201a290300370000200c41106a201b290300370000200c41186a2021290300370000200c411f6a2020280000360000200320223a009801200341e0026a20034198016a10b602201d200641086a290000370300201f200641106a290000370300201e200641186a290000370300200320062900003703c003024020032d00e0024101470d00200341a8056a41086a200341e0056a41086a290300370300200341a8056a41106a200341e0056a41106a290300370300200341a8056a41186a200341e0056a41186a290300370300200320032903e0053703a805410121020c050b200141246a2101201c201d290300220d3703002017201e2903003703002018201f2903003703002019200d370300200320032903c003220d3703a8052003200d370350201641026a2116201441206a2114200b41016a210b2015415c6a21150c000b0b41204101102d000b410021020b41002108410121090240200a450d00200710200b4100210b0c010b200a450d00200710200b024002402002450d002008450d01200910200c010b2009450d0020034190026a412c6a220110a304024002400240024002400240024002404112101e2202450d00200241002900e1d343370000200241106a41002f00f1d3433b0000200241086a41002900e9d34337000020034292808080a00237029c012003200236029801200120034198016a10ca0120032802a00121022003280298012107200341c0036a41186a220a4200370300200341c0036a41106a220c4200370300200341c0036a41086a22064200370300200342003703c00320072002200341c0036a1001200341f8006a41186a200a290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903c0033703780240200328029c01450d0020032802980110200b2003410036029801200341f8006a412020034198016a100321070240200328029801220a417f460d002007450d002003200a3602e405200320073602e005200341e0026a200341e0056a10e30120032802e0022214450d0520032802e402210c024020032802e4052202450d0020032002417f6a22063602e405200320032802e005221641016a22153602e00520162d0000220141014b0d004100210202400240024002400240024020010e020100010b41002102200341003a00b801034020062002460d0220034198016a20026a201620026a220141016a2d00003a00002003200141026a3602e0052003200241016a22013a00b8012001210220014120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003200620016b22063602e40541012102201620016a41016a21150b200341c0036a41186a20034190036a41186a290300370300200341c0036a41106a20034190036a41106a290300370300200341c0036a41086a20034190036a41086a29030037030020032003290390033703c0032006450d0420032006417f6a22163602e4052003201541016a3602e00520152d0000220641014b0d044100210120060e020201020b200341003602e405200241ff0171450d03200341003a00b8010c030b41002101200341003a00b801034020162001460d0220034198016a20016a201520016a220641016a2d00003a00002003200641026a3602e0052003200141016a22063a00b8012006210120064120470d000b20034190036a41086a20034198016a41086a29030037030020034190036a41106a20034198016a41106a29030037030020034190036a41186a20034198016a41186a2903003703002003200329039801370390032003201620066b3602e405410121010b200341a0046a41186a220620034190036a41186a2216290300370300200341a0046a41106a221520034190036a41106a2217290300370300200341a0046a41086a221820034190036a41086a2219290300370300200341c0046a41086a221a200341c0036a41086a290300370300200341c0046a41106a221b200341c0036a41106a290300370300200341c0046a41186a2221200341c0036a41186a29030037030020032003290390033703a004200320032903c0033703c00420034180046a41186a2220202129030037030020034180046a41106a2221201b29030037030020034180046a41086a221b201a290300370300200320032903c00437038004200341e0036a41186a221a2006290300370300200341e0036a41106a22062015290300370300200341e0036a41086a22152018290300370300200320032903a0043703e00320034198016a41186a202029030037030020034198016a41106a202129030037030020034198016a41086a201b2903003703002003200329038004370398012016201a2903003703002017200629030037030020192015290300370300200320032903e003370390030c080b200341003602e405200141ff0171450d00200341003a00b8010b200c450d0520141020410221020c060b2003200136028405200341d0006a41186a22024200370300200341d0006a41106a22074200370300200341d0006a41086a220a42003703002003420037035041f3d3c300411a200341d0006a100120034198016a41186a220c200229030037030020034198016a41106a2206200729030037030020034198016a41086a2214200a290300370300200320032903503703980120034190036a20034198016a41201069024020032d0090030d002002420037030020074200370300200a42003703002003420037035041f3d3c300411a200341d0006a1001200c2002290300370300200620072903003703002014200a2903003703002003200329035037039801200341203602e402200320034198016a3602e0022001200341e0026a10820341002101410021020c070b20034188056a41186a200341a9036a29000037030020034188056a41106a200341a1036a29000037030020034188056a41086a20034199036a290000370300200320032900910337038805200341e0046a20034188056a10a6042003410036029801200341e0046a412020034198016a1003210c2003280298012216417f460d01200c450d01200320163602cc052003200c3602c805200341d0056a200341c8056a10e30120032802d0052206450d0220032802d405210a024020032802cc052202450d00200341d8056a280200210720032002417f6a22153602cc05200320032802c805221741016a22183602c80520172d0000220241014b0d004100211402400240024002400240024020020e020100010b41002102200341003a00b801034020152002460d0220034198016a20026a201720026a220141016a2d00003a00002003200141026a3602c8052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220d370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200d370300200341e0026a41186a20034198016a41186a2903003703002003201520016b22153602cc0520032003290398013703e00241012114201720016a41016a21180b200341d0006a41186a200341e0026a41186a290300370300200341d0006a41106a200341e0026a41106a290300370300200341d0006a41086a200341e0026a41086a290300370300200320032903e00237035041002101200341003a00a8052015450d0420032015417f6a22153602cc052003201841016a3602c80520182d0000220241014b0d0420020e020201020b200341003602cc05200241ff0171450d03200341003a00b8010c030b200341003a00b801410021020340200341003a00a80520152002460d0220034198016a20026a201820026a220141016a2d00003a00002003200141026a3602c8052003200241016a22013a00b8012001210220014120470d000b200341e0056a41106a20034198016a41106a290300220d370300200341e0026a41086a20034198016a41086a290300370300200341e0026a41106a200d370300200341e0026a41186a20034198016a41186a2903003703002003201520016b3602cc0520032003290398013703e002410121010b200341a0046a41186a2202200341e0026a41186a2215290300370300200341a0046a41106a2217200341e0026a41106a2218290300370300200341a0046a41086a2219200341e0026a41086a221a290300370300200341c0046a41086a221b200341d0006a41086a290300370300200341c0046a41106a2221200341d0006a41106a290300370300200341c0046a41186a2220200341d0006a41186a290300370300200320032903e0023703a004200320032903503703c00420034180046a41186a221d202029030037030020034180046a41106a2220202129030037030020034180046a41086a2221201b290300370300200320032903c00437038004200341e0036a41186a221b2002290300370300200341e0036a41106a22022017290300370300200341e0036a41086a22172019290300370300200320032903a0043703e00320034198016a41186a201d29030037030020034198016a41106a202029030037030020034198016a41086a20212903003703002003200329038004370398012015201b29030037030020182002290300370300201a2017290300370300200320032903e0033703e0020c050b200341003602cc05200241ff0171450d00200341003a00b8010b200a450d0220061020410221140c030b41124101102d000b41b8e7c50041920141cce8c5001045000b410221140b024020144102460d00200341d0006a41186a221820034198016a41186a290300370300200341d0006a41106a221920034198016a41106a290300370300200341d0006a41086a221a20034198016a41086a290300370300200341e0056a41086a221b200341e0026a41086a2215290300370300200341e0056a41106a2221200341e0026a41106a2202290300370300200341e0056a41186a2220200341e0026a41186a22172903003703002003200329039801370350200320032903e0023703e00502402016450d00200c10200b20172018290300370300200220192903003703002015201a290300370300200341a8056a41086a220c201b290300370300200341a8056a41106a22162021290300370300200341a8056a41186a22182020290300370300200320032903503703e002200320032903e0053703a805200320143a009801200341a1016a2015290300370000200341a9016a2002290300370000200341b1016a2017290300370000200320032903e00237009901200320013a00b901200341ba016a221420032903a805370100200341c2016a200c290300370100200341ca016a2016290300370100200341d2016a2018290300370100200220144100200141ff01714101461b360200200320073602e8022003200a3602e402200320063602e002200320034184056a3602ec022003410036025820034201370350200320073602e005200341e0056a200341d0006a1063200341ec026a210c02402007450d00200741057421012006210203402002200341d0006a10ca01200241206a2102200141606a22010d000b0b200c200341d0006a10d00420032802542102200341e0046a4120200328025022012003280258100502402002450d00200110200b0240200a450d00200610200b2003280284052102200341d0006a41186a22014200370300200341d0006a41106a22074200370300200341d0006a41086a220a42003703002003420037035041f3d3c300411a200341d0006a100120034198016a41186a200129030037030020034198016a41106a200729030037030020034198016a41086a200a2903003703002003200329035037039801200341203602e402200320034198016a3602e0022002200341e0026a108203200341e0056a41086a20034188056a41086a290300370300200341e0056a41106a20034188056a41106a290300370300200341e0056a41186a20034188056a41186a29030037030020032003290388053703e00541012101410021020c030b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b410221020b20024102460d01200341e0026a41186a220620034198016a41186a290300370300200341e0026a41106a221620034198016a41106a290300370300200341e0026a41086a221520034198016a41086a290300370300200341d0006a41086a221720034190036a41086a2218290300370300200341d0006a41106a221920034190036a41106a221a290300370300200341d0006a41186a221b20034190036a41186a222129030037030020032003290398013703e00220032003290390033703500240200a450d00200710200b20212006290300370300201a201629030037030020182015290300370300200341e0056a41086a2017290300370300200341e0056a41106a2019290300370300200341e0056a41186a201b290300370300200320032903e00237039003200320032903503703e005200c450d00201410200b200341a5016a200329039003370000200341ad016a20034190036a41086a290300370000200341b5016a20034190036a41106a290300370000200341bd016a20034190036a41186a290300370000200341c5016a20013a0000200341c6016a20032903e005370100200341ce016a200341e0056a41086a290300370100200341d6016a200341e0056a41106a290300370100200341de016a200341e0056a41186a290300370100200320023a00a4012003200bad4220862008ad8437029c012003200936029801200341203602e4022003200341f8006a3602e00220034198016a200341e0026a10e6030240200328029c01450d0020032802980110200b20032802b402450d0820032802b0021020410021010c0a0b41ceb8c4004133200341e0036a41fcbfc4004184b9c400102e000b418cffc6002101410e21094100210820032802b40221020c010b1027000b02402002450d0020032802b00210200b2008450d060b200a450d05200710200c050b200341a9016a200329039003370000200341b1016a20034190036a41086a290300370000200341b9016a20034190036a41106a290300370000200341c1016a20034190036a41186a290300370000200341c9016a20023a0000200341ca016a20032903e005370100200341d2016a200341e0056a41086a290300370100200341da016a200341e0056a41106a290300370100200341e2016a200341e0056a41186a290300370100200320043703a00120032005370398012003200a3a00a801200341003602e802200342013703e002200320034198016a360250200341d0006a200341e0026a10df0220034198016a41106a200341e0026a10e70320032802e4022102200341f8006a412020032802e002220120032802e802100502402002450d00200110200b20032802b402450d0220032802b0021020410021010c040b20034190026a41186a200341c4016a220241186a29000037030020034190026a41106a200241106a29000037030020034190026a41086a200241086a290000370300200342f3e885db96cddbb3203703a8052003200229000037039002200310793602e005200341e0026a20034190026a10d10420032802e402210120032802e002210220032802e8022109200341f4026a200341a8056a3602002003200220094105746a3602ec02200320023602e802200320013602e402200320023602e0022003200341e0056a3602f002200341d0006a200341e0026a10ea03200341e0026a41086a200341d0006a41086a280200360200200320032903503703e00220034190026a200341e0026a10d20420034190026a10a2040b20032802bc01450d0020032802b8011020410021010c020b410021010c010b41a1b5c4002101411921090b200020093602042000200136020020034180066a24000b970701097f230041e0016b2202240002400240410e101e2203450d002003410029008ed543370000200341066a4100290094d5433700002002428e808080e001370204200220033602002001200210ca01200228020821032002280200210120024190016a41186a2204420037030020024190016a41106a2205420037030020024190016a41086a2206420037030020024200370390012001200320024190016a1001200241d0006a41186a2004290300370300200241d0006a41106a2005290300370300200241d0006a41086a2006290300370300200220022903900137035002402002280204450d00200228020010200b2002410036029001200241d0006a412020024190016a10032101024002402002280290012204417f470d00410021030c010b024020010d00410021030c010b200220043602742002200136027020024190016a200241f0006a10b20420022802b0012203450d02200241306a41186a20024190016a41186a290300370300200241306a41106a20024190016a41106a290300370300200241306a41086a20024190016a41086a290300370300200241086a200241bc016a290200370300200241106a200241c4016a290200370300200241186a200241cc016a290200370300200241206a200241d4016a290200370300200241286a200241dc016a2802003602002002200229039001370330200220022902b4013703002004450d00200110200b200241f0006a41086a2201200241306a41086a290300370300200241f0006a41106a2204200241306a41106a290300370300200241f0006a41186a2205200241306a41186a29030037030020024190016a41086a2206200241086a29030037030020024190016a41106a2207200241106a29030037030020024190016a41186a2208200241186a29030037030020024190016a41206a2209200241206a29030037030020024190016a41286a220a200241286a28020036020020022002290330370370200220022903003703900102402003450d00200020022903703703002000200229039001370224200041186a2005290300370300200041106a2004290300370300200041086a20012903003703002000412c6a2006290300370200200041346a20072903003702002000413c6a2008290300370200200041c4006a2009290300370200200041cc006a200a2802003602000b20002003360220200241e0016a24000f0b410e4101102d000b41ceb8c4004133200241fcbfc4004184b9c400102e000bbf0401067f230041306b220224000240024002400240024002404110101e2203450d00200341086a41002900dfa646370000200341002900d7a646370000200242908080808002370214200220033602102002410d3602002002200241106a1063024020022802142204200228021822056b410d490d002005410d6a2106200228021021030c020b2005410d6a22062005490d02200441017422032006200320064b1b22074100480d020240024020040d002007101e21030c010b200228021020042007102221030b02402003450d002002200736021420022003360210200721040c020b20074101102d000b41104101102d000b20022006360218200320056a220541002900caa646370000200541056a41002900cfa64637000020022003200610a60502402004450d00200310200b20022802082203417f4c0d02200228020021060240024020030d00410121040c010b2003101e2204450d040b20042006200310cd05210702402002280204450d00200610200b200241106a200110d804200341206a22062003490d00200341017422042006200420064b1b22054100480d000240024020030d002005101e21040c010b200720032005102221040b20040d0120054101102d000b1027000b200420036a22032002290010370000200341186a200241106a41186a290000370000200341106a200241106a41106a290000370000200341086a200241106a41086a290000370000200020063602082000200536020420002004360200200241306a24000f0b102c000b20034101102d000b860601067f230041a0016b22022400024002404117101e2203450d00200341002900aff8413700002003410f6a41002900bef841370000200341086a41002900b7f84137000020024297808080f00237020c200220033602082001200241086a10ca012002280210210320022802082101200241f0006a41186a22044200370300200241f0006a41106a22054200370300200241f0006a41086a220642003703002002420037037020012003200241f0006a1001200241c0006a41186a2004290300370300200241c0006a41106a2005290300370300200241c0006a41086a2006290300370300200220022903703703400240200228020c450d00200228020810200b20024100360270200241c0006a4120200241f0006a100321010240024020022802702204417f470d00410421030c010b024020010d00410421030c010b2002200436026420022001360260200241f0006a200241e0006a10a60320022d007c22034104460d02200241306a41086a200241f0006a41086a280200360200200241086a41086a20024185016a290000370300200241186a2002418d016a290000370300200241206a20024195016a290000370300200241276a2002419c016a280000360000200220022903703703302002200229007d3703082004450d00200110200b200241e0006a41086a2201200241306a41086a280200360200200241f0006a41086a2204200241086a41086a290300370300200241f0006a41106a2205200241086a41106a290300370300200241f0006a41186a2206200241086a41186a290300370300200241f0006a411f6a2207200241086a411f6a2800003600002002200229033037036020022002290308370370024020034104460d00200020022903603703002000200229037037000d200041086a2001280200360200200041156a20042903003700002000411d6a2005290300370000200041256a20062903003700002000412c6a20072800003600000b200020033a000c200241a0016a24000f0b41174101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000be70401067f230041d0006b22012400024002404123101e2202450d00200241002900958e463700002002411f6a41002800b48e46360000200241186a41002900ad8e46370000200241106a41002900a58e46370000200241086a410029009d8e46370000200142a3808080b004370224200120023602202000200141206a10ca012001280228210220012802202103200141306a41186a22044200370300200141306a41106a22054200370300200141306a41086a220642003703002001420037033020032002200141306a1001200141186a2004290300370300200141106a2005290300370300200141086a20062903003703002001200129033037030002402001280224450d00200128022010200b4101210202402001412041e4fdc600410041001002417f470d004129101e2202450d02200241002900b88e46370000200241286a41002d00e08e463a0000200241206a41002900d88e46370000200241186a41002900d08e46370000200241106a41002900c88e46370000200241086a41002900c08e46370000200142a98080809005370224200120023602202000200141206a10ca012001280228210220012802202100200141306a41186a22034200370300200141306a41106a22044200370300200141306a41086a220542003703002001420037033020002002200141306a1001200141186a2003290300370300200141106a2004290300370300200141086a20052903003703002001200129033037030002402001280224450d00200128022010200b2001412041e4fdc600410041001002417f4721020b200141d0006a240020020f0b41234101102d000b41294101102d000bd70501087f230041e0006b220224000240024002400240024002404126101e2203450d002003411e6a41002900ccae46370000200341186a41002900c6ae46370000200341106a41002900beae46370000200341086a41002900b6ae46370000200341002900aeae463700002003412641cc0010222203450d0120032001370026200241386a41186a22044200370300200241386a41106a22054200370300200241386a41086a22064200370300200242003703382003412e200241386a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903383703082003102020024100360238200241086a4120200241386a1003210420022802382205417f460d022004450d022002200536023420022004360230200241386a200241306a10b70120022802382207450d05200228023c210320022802342206450d04200241c0006a280200210820022006417f6a36023420022002280230220641016a36023020062d0000220941014b0d04410021060240024020090e020100010b410121060b200241046a41026a2209200241dd006a41026a2d00003a0000200220022f005d3b010402402005450d00200410200b200241386a41026a20092d000022043a0000200241306a41026a20043a0000200220022f010422043b0138200220043b0130410021040c030b41264101102d000b41cc004101102d000b41022106200241386a41026a200241046a41026a2d00003a0000200220022f01043b0138410121040b0240024020040d0020002007360204200020022f01303b0011200041106a20063a00002000410c6a2008360200200041136a200241326a2d00003a0000410021040c010b200041988cc60036020441012104412d21030b20002004360200200041086a2003360200200241e0006a24000f0b2003450d00200710200b41ceb8c4004133200241386a41fcbfc4004184b9c400102e000bb90302047f017e230041d0006b22022400024002400240024002404117101e2203450d00410021042003410f6a41002900d5f841370000200341086a41002900cef841370000200341002900c6f8413700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a002820034117412e10222203450d01200320043a0017200241286a41186a22044200370300200241286a41106a22014200370300200241286a41086a220542003703002002420037032820034118200241286a1001200241186a2004290300370300200241106a2001290300370300200241086a200529030037030020022002290328370300200310202002410036022820024120200241286a1003210320022802282204417f460d032003450d032002200436022420022003360220200241286a200241206a10e30120022802282201450d02200229022c210602402004450d00200310200b20002006370204200020013602000c040b41174101102d000b412e4101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b20004100360208200042013702000b200241d0006a24000bf70301027f20002d000021020240024002400240024002404101101e2203450d00200320023a000020002d0001210220034101410210222203450d01200320023a000120002d0002210220034102410410222203450d02200320023a0002200320002d00033a000320002d0004210220034104410810222203450d03200320023a0004200320002d00053a0005200320002d00063a0006200320002d00073a000720002d0008210220034108411010222203450d04200320023a0008200320002d00093a0009200320002d000a3a000a200320002d000b3a000b200320002d000c3a000c200320002d000d3a000d200320002d000e3a000e200320002d000f3a000f20002d0010210220034110412010222203450d05200320023a0010200320002d00113a0011200320002d00123a0012200320002d00133a0013200320002d00143a0014200320002d00153a0015200320002d00163a0016200320002d00173a0017200320002d00183a0018200320002d00193a0019200320002d001a3a001a200320002d001b3a001b200320002d001c3a001c200320002d001d3a001d200320002d001e3a001e200320002d001f3a001f20012802002001280204200341201005200310200f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000ba37c05027f017e087f057e0a7f230041e0066b220324000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d000022040e09000102030b0c1b1a19000b20034184056a4101360200200342013702f40420034184e6c6003602f00420034104360284022003418cb4c60036028002200320034180026a36028005200341f0046a4180cfc2001033000b200141086a29030021054104210620012d00012107200241046a280000210820022d00002109200341e0016a41026a220a200241036a2d00003a0000200341f0046a41086a220b200241186a290000370300200341f0046a41106a220c200241206a2d00003a0000200320022f00013b01e0012003200241106a2900003703f0044101210d200241086a290000210e024020094101470d00200341b8036a41026a200a2d00003a000020034180026a41086a200b29030037030020034180026a41106a200c2d00003a0000200320032f01e0013b01b803200320032903f004370380024100210d200821060b20034188016a41176a20034180026a41086a290300370000200341a7016a20034180026a41106a2d00003a0000200320032f01b8033b0188012003200636008b012003200329038002370097012003200341b8036a41026a2d00003a008a012003200e37008f0102400240200d0d00200341b8066a41186a20034188016a41186a290300370300200341b8066a41106a20034188016a41106a290300370300200341b8066a41086a20034188016a41086a29030037030020032003290388013703b8064117101e2202450d17200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702f404200320023602f004200341b8066a200341f0046a10ca0120032802f804210220032802f004210d20034180026a41186a2206420037030020034180026a41106a2209420037030020034180026a41086a220842003703002003420037038002200d200220034180026a1001200341b8036a41186a2006290300370300200341b8036a41106a2009290300370300200341b8036a41086a200829030037030020032003290380023703b803024020032802f404450d0020032802f00410200b200341b8036a412041e4fdc600410041001002417f460d014190cfc200210d411421080c250b419affc600210d410f210802400240024002400240024020060e070001020304052a000b200e422088a72108200ea7210d0c290b418cffc600210d410e21080c280b4180ffc600210d410c21080c270b41f7fec600210d410921080c260b41e4fec600210d411321080c250b41d3fec600210d411121080c240b0240200710dd030d0041a4cfc200210d410d21080c240b200341f0046a200710de0320032802f0044101460d16200341a0056a290300210e20034198056a290300210f200341f0046a200510a7030240024020032903a0054202510d00200341e0056a2802002102200341d8056a280200210d200341c8056a280200210a200341c0056a280200210620032802dc05210920032802cc05210820032802bc05210b024020032802b405450d00200341b0056a28020010200b02402006450d00200b10200b02402008450d00200a10200b200d2009200210f502200341b8066a200f200e10df030d0141b1cfc200210d412121080c250b41c58cc600210d411821080c240b200341086a200341b8066a200f200e10e003200341f0046a41186a200341086a41186a29030037030020032003290318370380052003200341086a41086a2903003703f804200320032903083703f0042003200341f0046a3602800220034180026a109402200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a1003210220032802f0042206417f460d132002450d13200320063602bc03200320023602b803200341f0046a200341b8036a10a10220032802f004220d450d1420032902f404210e02402006450d00200210200b200e422088a72106200ea721090c210b20012d0001210d200341e8006a41186a2001411a6a290000370300200341e8006a41106a200141126a290000370300200341e8006a41086a2001410a6a2900003703002003200141026a2900003703682003200d3a00af0141042101200241046a280000210920022d00002106200341e0016a41026a2208200241036a2d00003a0000200341f0046a41086a220a200241186a290000370300200341f0046a41106a220b200241206a2d00003a0000200320022f00013b01e0012003200241106a2900003703f0044101210d200241086a290000210e024020064101470d00200341b8066a41026a20082d00003a000020034180026a41086a200a29030037030020034180026a41106a200b2d00003a0000200320032f01e0013b01b806200320032903f004370380024100210d200921010b200341d0016a41026a200341b8066a41026a2d00003a0000200341b8036a41086a20034180026a41086a290300370300200341b8036a41106a20034180026a41106a2d00003a0000200320032f01b8063b01d00120032003290380023703b80302400240200d0d00200341c7016a200341b8036a41086a290300370000200341cf016a200341b8036a41106a2d00003a0000200320032f01d0013b01b0012003200e3700b701200320013600b301200320032903b8033700bf012003200341d2016a2d00003a00b201200341b0016a10ff020d0141cad0c200210d412d21080c270b419affc600210d410f2108024020010e0700030405060727000b200e422088a72108200ea7210d0c260b200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a1003210220032802f0042201417f460d102002450d10200320013602bc03200320023602b803200341f0046a200341b8036a10a10220032802f004220a450d1120032902f40421052001450d1f200210200c1f0b200341b0016a41186a200141196a290000370300200341b0016a41106a200141116a290000370300200341b0016a41086a200141096a290000370300200320012900013703b00141042101200241046a280000210920022d00002106200341e0016a41026a2208200241036a2d00003a0000200341f0046a41086a220a200241186a290000370300200341f0046a41106a220b200241206a2d00003a0000200320022f00013b01e0012003200241106a2900003703f0044101210d200241086a290000210e024020064101470d0020034188016a41026a20082d00003a000020034180026a41086a200a29030037030020034180026a41106a200b2d00003a0000200320032f01e0013b018801200320032903f004370380024100210d200921010b200341d0016a41026a20034188016a41026a2d00003a0000200341b8036a41086a20034180026a41086a290300370300200341b8036a41106a20034180026a41106a2d00003a0000200320032f0188013b01d00120032003290380023703b8030240200d0d00200341cf066a200341b8036a41086a290300370000200341d7066a200341b8036a41106a2d00003a0000200320032f01d0013b01b8062003200e3700bf06200320013600bb06200320032903b8033700c7062003200341d2016a2d00003a00ba06200341f0046a200341b0016a10fe0220032d00fc0422024104460d06200341e0016a41086a20034185056a290000370300200341e0016a41106a2003418d056a29000037030041182108200341e0016a41186a20034195056a290000370300200320032900fd04220e370388012003200e3703e001200341f0046a20032903f004220e10a70320032903a0054202520d0741c58cc600210d0c250b419affc600210d410f2108024020010e0700010203040525000b200e422088a72108200ea7210d0c240b418cffc600210d410e21080c230b4180ffc600210d410c21080c220b41f7fec600210d410921080c210b41e4fec600210d411321080c200b41d3fec600210d411121080c1f0b41f7d0c200210d410c21080c1e0b20032802f0042101200341b8036a200341f0046a41047241b40110cd051a200320013602800220034180026a410472200341b8036a41b40110cd051a200341f5026a200341b8066a412010cf050d140c150b20022d00000d12200141306a290300210e200141286a2903002105200141206a290300210f200141186a2903002110200141106a2903002111200141086a2903002112200141d0006a2802002109200141cc006a2802002108200141c8006a280200210a200141c4006a280200210b200141c0006a280200210c2001413c6a2802002107200141386a280200211320012d000121064111101e2202450d064100210d200241106a41002d009dfb413a0000200241086a4100290095fb413700002002410029008dfb41370000024002400240024020060e0403000102030b4101210d0c020b4102210d0c010b4103210d0b2003200d3a00f00420024111412210222202450d052002200d3a001120034180026a41186a220d420037030020034180026a41106a2214420037030020034180026a41086a2215420037030020034200370380022002411220034180026a1001200341b8036a41186a200d290300370300200341b8036a41106a2014290300370300200341b8036a41086a201529030037030020032003290380023703b803200210204110101e2202450d04200220123700002002201137000820024110412010222202450d0320022007360014200220133600102002412041c00010222202450d022002201037001820022009360038200220083600342002200a3600302002200b36002c2002200c360028200241206a200f370000200241c00041800110222202450d012002200537003c200241c4006a200e370000200341b8036a4120200241cc0010052002102020034180026a20061081032003280284022109200328028002210602402003280288022202450d002002410574210d200621020340200241086a290000210e200241106a29000021052002290000210f200341f0046a41186a200241186a290000370300200341f0046a41106a2005370300200341f0046a41086a200e3703002003200f3703f004200342f2deb1abf6eb9cbaeb003703b803200341b8036a200341f0046a20122011417f411610e103200241206a2102200d41606a220d0d000b0b2009450d10200610200c100b200141086a280200210b200141046a280200210c20022d00000d102001410c6a2802002109200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f804200342013703f004200320093602b803200341b8036a200341f0046a10630240024020090d0020032802f804210820032802f404210120032802f004210d0c010b20032802f404210120032802f8042102200c21060340200320062d0000220a3a00b8060240024020022001460d0020032802f004210d0c010b200141016a220d2001490d1a20014101742208200d2008200d4b1b22084100480d1a0240024020010d002008101e210d0c010b20032802f004200120081022210d0b0240200d450d00200320083602f4042003200d3602f004200821010c010b20084101102d000b200641016a21062003200241016a22083602f804200d20026a200a3a0000200821022009417f6a22090d000b0b20034180026a4110200d2008100502402001450d00200d10200b4100210d0240200b0d000c1c0b200c10200c1b0b4180014101102d000b41c0004101102d000b41204101102d000b41104101102d000b41224101102d000b41114101102d000b4108210a420021050c0e0b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410021094108210d4200210e410021060c0d0b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b41174101102d000b200341f8046a280200210820032802f404210d0c0c0b200341d0066a200141196a29000037030041112108200341c8066a200141116a290000370300200341c0066a200141096a290000370300200320012900013703b80641d3fec600210d20022d00000d0e024002404117101e2202450d00200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702f404200320023602f004200341b8066a200341f0046a10ca0120032802f804210220032802f004210120034180026a41186a220d420037030020034180026a41106a2206420037030020034180026a41086a2209420037030020034200370380022001200220034180026a1001200341b8036a41186a200d290300370300200341b8036a41106a2006290300370300200341b8036a41086a200929030037030020032003290380023703b803024020032802f404450d0020032802f00410200b0240200341b8036a412041e4fdc600410041001002417f470d0041bcd1c200210d412821080c110b200341f0046a200341b8066a10fe0220032d00fc0422024104460d0120032903f0042105200341f0046a200210de03200341f0046a41086a2201290300210e024020032802f0044101460d00200341f0046a41106a220d290300210f200341b8056a2802002106200341f0046a41186a200341b8066a41186a290300370300200d200341b8066a41106a2903003703002001200341b8066a41086a290300370300200320032903b8063703f004200341f0046a200220052006200e200f10e2034100210d0c110b20032802f404210d200ea721080c100b41174101102d000b41e988c700412b41acd1c2001028000b4111210841d3fec600210d20022d00000d0a20012d0001210c200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024020032802f004220d417f460d002002450d002003200d3602bc03200320023602b803200341f0046a200341b8036a109a03024020032802f0042206450d0020032902f404210e200d450d02200210200c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b4200210e410121060b2006200e422088a722096a210b200ea7211441002102200c41ff0171210a0240024002400240034020092002460d01200620026a2d0000220d4104460d01200241016a2102200a200d460d000b4101101e2207450d03200620026a21022007200d3a0000200c41ff017121094101210a4101211302400340200b2002460d0120022d0000220d4104460d01200241016a21022009200d460d0002402013200a470d00200a41016a220c200a490d10200a4101742213200c2013200c4b1b22134100480d1002400240200a0d002013101e21070c010b2007200a2013102221070b2007450d050b2007200a6a200d3a0000200a41016a210a0c000b0b2014450d01200610200c010b410021134101210702402014450d00200610200b4100210a0b200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f804200342013703f0042003200a3602b803200341b8036a200341f0046a106302400240200a0d0020032802f804210b20032802f404210d20032802f00421060c010b20032802f404210d20032802f8042102200721090340200320092d0000220c3a00b806024002402002200d460d0020032802f00421060c010b200d41016a2206200d490d0e200d410174220b2006200b20064b1b220b4100480d0e02400240200d0d00200b101e21060c010b20032802f004200d200b102221060b02402006450d002003200b3602f404200320063602f004200b210d0c010b200b4101102d000b200941016a21092003200241016a220b3602f804200620026a200c3a0000200b2102200a417f6a220a0d000b0b20034180026a41102006200b10050240200d450d00200610200b4100210d2013450d0c200710200c0c0b20134101102d000b41014101102d000b20022d00000d0220012d0001210a200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024020032802f004220d417f460d002002450d002003200d3602bc03200320023602b803200341f0046a200341b8036a109a03024020032802f0042206450d0020032902f404210e200d450d02200210200c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b4200210e410121060b200e422088a72109200ea7210b41002102200a41ff017121080240034020092002460d01200620026a2d0000220d4104460d01200241016a2102200d2008470d000b200b450d01200610200c010b0240200b450d00200610200b200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a10032102024002400240024020032802f004220d417f460d002002450d002003200d3602bc03200320023602b803200341f0046a200341b8036a109a03024020032802f004220c450d0020032902f404210e0240200d450d00200210200b2003200c3602b8032003200e3702bc03200341b8036a210d200e422088a72202200ea72207470d030c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b41002102200341003602c003200342013703b8034101210c200341b8036a210d0b200d41046a28020022072002470d00200241016a22062002490d0a200241017422092006200920064b1b22074100480d0a0240024020020d002007101e21020c010b200d28020020022007102221020b2002450d01200d2002360200200d41046a200736020020032802c003210220032802b803210c0b200d28020020026a200a3a00002003200241016a22083602c003200341f0046a41086a22024200370300200342003703f00441f8fac1004115200341f0046a100020034180026a41086a2002290300370300200320032903f004370380020240200c0d0020034180026a411010040c020b200341003602f804200342013703f004200320083602b806200341b8066a200341f0046a10630240024020080d0020032802f804210a20032802f404210d20032802f00421060c010b20032802f404210d20032802f8042102200c21090340200320092d0000220b3a00b806024002402002200d460d0020032802f00421060c010b200d41016a2206200d490d0c200d410174220a2006200a20064b1b220a4100480d0c02400240200d0d00200a101e21060c010b20032802f004200d200a102221060b02402006450d002003200a3602f404200320063602f004200a210d0c010b200a4101102d000b200941016a21092003200241016a220a3602f804200620026a200b3a0000200a21022008417f6a22080d000b0b20034180026a41102006200a10050240200d450d00200610200b2007450d01200c10200c010b20074101102d000b411121084100210d200441084b0d08410120047441ac02710d0b0c080b4111210841d3fec600210d200b450d0a200c10200c0a0b4111210841d3fec600210d0c060b20034195036a200341b8066a412010cf05450d004183d1c200210d412821080c010b200341f0046a200210de03200341f0046a41086a22012903002105024020032802f0044101460d00200341f0046a41106a220d290300210f200341b8056a2802002106200341f0046a41186a200341e0016a41186a2209290300370300200d200341e0016a41106a22082903003703002001200341e0016a41086a220d290300370300200320032903e0013703f004200341f0046a2002200e20062005200f10e203200341fa046a200d29030037010020034182056a20082903003701002003418a056a200929030037010020034192056a20023a000020034190043b01f004200320032903e0013701f204200341f0046a10770240200341c4026a280200450d0020032802c00210200b0240200341d0026a280200450d0020032802cc0210200b0240200341dc026a280200450d0020032802d80210200b20032802e802200341ec026a280200200341f0026a28020010f5024100210d0c080b20032802f404210d2005a721080b0240200341c4026a280200450d0020032802c00210200b0240200341d0026a280200450d0020032802cc0210200b0240200341dc026a280200450d0020032802d80210200b20032802e802200341ec026a280200200341f0026a28020010f5020c060b2003418c026a200341af016a3602002003200a360280022003200a2005422088a741306c6a360284022003200341b0016a360290022003200341e8006a36028802200341d8006a20034180026a20034190026a10c503024002402003290358a70d004100210641082109410021010c010b2003290360210e02404108101e2209450d002009200e370300200341f0046a41106a220d20034180026a41106a280200360200200341f0046a41086a20034180026a41086a29030037030020032003290380023703f004200341c8006a200341f0046a200d10c50302402003290348a70d0041012101410121060c020b2003290350210e410121024101210603400240024020062002460d00200241016a21010c010b200241016a22012002490d05200241017422062001200620014b1b220641ffffffff01712006470d05200641037422084100480d050240024020020d002008101e21090c010b200920024103742008102221090b20090d0020084108102d000b200920024103746a200e370300200341386a200341f0046a200d10c5032003290340210e200121022003280238450d020c000b0b41084108102d000b02402005a7450d00200a10200b0240024020010d0041d2cfc200210d411d21080c010b2009290300210e02400240024002400240024002400240024002400240024002404117101e2202450d00200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702f404200320023602f004200341e8006a200341f0046a10ca0120032802f804210220032802f004210120034180026a41186a220d420037030020034180026a41106a2208420037030020034180026a41086a220a420037030020034200370380022001200220034180026a100120034188016a41186a200d29030037030020034188016a41106a200829030037030020034188016a41086a200a290300370300200320032903800237038801024020032802f404450d0020032802f00410200b024020034188016a412041e4fdc600410041001002417f460d004190cfc200210d411421080c0e0b024020032d00af0110dd030d0041a4cfc200210d410d21080c0e0b200341f0046a20032d00af0110de03200341f8046a2802002108024002400240024020032802f0044101460d0020034184056a350200210f200341fc046a2902002105200341ac056a2802002102200341d0016a20032d00af0110810320032802d8012002490d0141efcfc200210d410f21080c020b20032802f404210d0c100b200341286a200341e8006a108903200329032820054220862008ad8422125a200341306a2903002211200f42208620054220888422055a20112005511b0d0141fecfc200210d411b21080b20032802d401450d0e20032802d00110200c0e0b20032d00af01210d4117101e2202450d01410021012002410f6a41002900d5f841370000200241086a41002900cef841370000200241002900c6f8413700000240024002400240200d0e0403000102030b410121010c020b410221010c010b410321010b200320013a00f00420024117412e10222202450d02200220013a001720034180026a41186a2201420037030020034180026a41106a220d420037030020034180026a41086a2208420037030020034200370380022002411820034180026a1001200341b8036a41186a2001290300370300200341b8036a41106a200d290300370300200341b8036a41086a200829030037030020032003290380023703b80320021020200341003602f004200341b8036a4120200341f0046a1003210220032802f0042201417f460d042002450d0420032001360284022003200236028002200341f0046a20034180026a10e30120032802f004220d450d0320032902f404210f02402001450d00200210200b2003200d360280022003200f3702840220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a2101200f422088a72202200fa7220d470d060c050b41174101102d000b41174101102d000b412e4101102d000b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410021022003410036028802200342013703800220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a21010b200141046a280200220d2002470d00200241016a220d2002490d0920024101742208200d2008200d4b1b220d41ffffff3f71200d470d09200d41057422084100480d090240024020020d002008101e21020c010b200128020020024105742008102221020b2002450d0120012002360200200141046a200d36020020032802880221020b200128020022082002410574220a6a2201200329038801370000200141186a20034188016a41186a290300370000200141106a20034188016a41106a290300370000200141086a20034188016a41086a2903003700002003200241016a220136028802200341003602f804200342013703f004200320013602b806200341b8066a200341f0046a1063024020012002490d00200a41206a21012008210203402002200341f0046a10ca01200241206a2102200141606a22010d000b0b20032802f4042102200341b8036a412020032802f004220120032802f804100502402002450d00200110200b0240200d450d00200810200b0240024002400240411b101e2202450d00200241176a41002800b0d042360000200241106a41002900a9d042370000200241086a41002900a1d04237000020024100290099d0423700002002411b413610222202450d012002200e37001b20034180026a41186a2201420037030020034180026a41106a220d420037030020034180026a41086a2208420037030020034200370380022002412320034180026a1001200341b8036a41186a2001290300370300200341b8036a41106a200d290300370300200341b8036a41086a200829030037030020032003290380023703b80320021020200341003602f004200341b8036a4120200341f0046a1003210220032802f0042201417f460d032002450d0320032001360284022003200236028002200341f0046a20034180026a10e30120032802f004220d450d0220032902f404210f02402001450d00200210200b2003200d360280022003200f3702840220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a2101200f422088a72202200fa7220d470d060c050b411b4101102d000b41364101102d000b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410021022003410036028802200342013703800220034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a290300370300200320032903683703880120034180026a21010c010b20084101102d000b200141046a280200220d2002470d00200241016a220d2002490d0620024101742208200d2008200d4b1b220d41ffffff3f71200d470d06200d41057422084100480d060240024020020d002008101e21020c010b200128020020024105742008102221020b2002450d0120012002360200200141046a200d36020020032802880221020b200128020022082002410574220a6a2201200329038801370000200141186a20034188016a41186a290300370000200141106a20034188016a41106a290300370000200141086a20034188016a41086a2903003700002003200241016a220136028802200341003602f804200342013703f004200320013602b806200341b8066a200341f0046a1063024020012002490d00200a41206a21012008210203402002200341f0046a10ca01200241206a2102200141606a22010d000b0b20032802f4042102200341b8036a412020032802f004220120032802f804100502402002450d00200110200b0240200d450d00200810200b200342f2deb1abf6eb9cbaeb003703f004200341f0046a200341e8006a20122005417f411610e103200341e0016a41186a2202200341e8006a41186a290300370300200341e0016a41106a2201200341e8006a41106a290300370300200341e0016a41086a220d200341e8006a41086a290300370300200320032903683703e00120032d00af0121081079210a20034185056a200d2903003700002003418d056a200129030037000020034195056a2002290300370000200320083a00fc042003200e3703f0042003200a3602f804200320032903e0013700fd0402404117101e2202450d00200241002900aff8413700002002410f6a41002900bef841370000200241086a41002900b7f84137000020034297808080f0023702bc03200320023602b803200341e8006a200341b8036a10ca0120032802c003210220032802b803210120034180026a41186a220d420037030020034180026a41106a2208420037030020034180026a41086a220a420037030020034200370380022001200220034180026a100120034188016a41186a200d29030037030020034188016a41106a200829030037030020034188016a41086a200a290300370300200320032903800237038801024020032802bc03450d0020032802b80310200b2003410036028802200342013703800220032903f004210e0240024002400240024002404108101e2202450d0020034108360284022003200328028802220141086a360288022003200236028002200220016a200e37000020032d00fc040e0401020304010b41084101102d000b410021010c030b410121010c020b410221010c010b410321010b200320013a00b806024002402003280284022003280288022202460d00200328028002210d0c010b200241016a220d2002490d0720024101742208200d2008200d4b1b22084100480d070240024020020d002008101e210d0c010b200328028002200220081022210d0b200d450d0320032008360284022003200d3602800220032802880221020b2003200241016a36028802200d20026a20013a0000200341fd046a20034180026a10ca0120032802f804210d0240200328028402220120032802880222026b4104490d0020032802800221010c040b200241046a22082002490d06200141017422022008200220084b1b22024100480d060240024020010d002002101e21010c010b20032802800220012002102221010b02402001450d002003200236028402200320013602800220032802880221020c040b20024101102d000b41174101102d000b20084101102d000b20084101102d000b2003200241046a36028802200120026a200d360000200328028402210220034188016a41202003280280022201200328028802100502402002450d00200110200b200341f0046a41086a22024200370300200342003703f00441b4d0c2004116200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024002400240024020032802f0042201417f460d002002450d00200320013602bc03200320023602b803200341f0046a200341b8036a10e301024020032802f004220d450d0020032902f404210e02402001450d00200210200b2003200d3602b8032003200e3702bc0320034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a2903003703002003200329036837038801200341b8036a2101200e422088a72202200ea7220d470d030c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b41002102200341003602c003200342013703b80320034188016a41186a200341e8006a41186a29030037030020034188016a41106a200341e8006a41106a29030037030020034188016a41086a200341e8006a41086a2903003703002003200329036837038801200341b8036a21010b200141046a280200220d2002470d00200241016a220d2002490d0520024101742208200d2008200d4b1b220d41ffffff3f71200d470d05200d41057422084100480d050240024020020d002008101e21020c010b200128020020024105742008102221020b2002450d0120012002360200200141046a200d36020020032802c00321020b200128020022082002410574220b6a2201200329038801370000200141186a20034188016a41186a290300370000200141106a20034188016a41106a290300370000200141086a20034188016a41086a2903003700002003200241016a22013602c003200341f0046a41086a220a4200370300200342003703f00441b4d0c2004116200341f0046a100020034180026a41086a200a290300370300200320032903f00437038002200341003602f804200342013703f004200320013602b806200341b8066a200341f0046a1063024020012002490d00200b41206a21012008210203402002200341f0046a10ca01200241206a2102200141606a22010d000b0b20032802f404210220034180026a411020032802f004220120032802f804100502402002450d00200110200b0240200d450d00200810200b200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a10032102024020032802f0042201417f460d002002450d00200320013602bc03200320023602b803200341f0046a200341b8036a10a102024020032802f0042207450d0020032902f404210e2001450d03200210200c030b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b410821074200210e0c010b20084101102d000b200ea7211602400240024002400240200e422088a72217450d002007201741306c6a2113200341f0046a41086a210d41002101200341f0046a41296a221441036a2115034020034180026a41206a220a200720016a220241206a29030037030020034180026a41186a220b200241186a29030037030020034180026a41106a220c200241106a29030037030020034180026a41086a2204200241086a29030037030020032002290300370380022003200241296a2800003602a80620032002412c6a2800003600ab06200241286a2d000022084104460d01200341f0046a41206a200a290300370300200341f0046a41186a200b290300370300200341f0046a41106a200c290300370300200d2004290300370300201420032802a806360000201520032800ab0636000020032003290380023703f004200320083a009805200d200341e8006a412010cf050d02200141306a2101200241306a2013470d000b0b4108210d4100211402402016450d00200710200b410021180c010b200341b8066a41206a200341f0046a41206a290300220e370300200341b8066a41186a200341f0046a41186a2903002205370300200341b8066a41106a200341f0046a41106a290300220f370300200341b8066a41086a200341f0046a41086a2903002211370300200341b8036a41086a220a2011370300200341b8036a41106a220b200f370300200341b8036a41186a220c2005370300200341b8036a41206a2204200e370300200320032903f004220e3703b80620032014280000360288012003201441036a28000036008b012003200e3703b8032003200328008b013600b30620032003280288013602b006200320032800b3063600e301200320032802b0063602e0014130101e220d450d01200d20032903b803370300200d20083a0028200d20032802e001360029200d412c6a20032800e301360000200d41206a2004290300370300200d41186a200c290300370300200d41106a200b290300370300200d41086a200a29030037030002400240201741306c41506a2001470d0041012114410121180c010b200241306a210c201741306c20076a41506a2119200341f0046a41086a2108200341f0046a41296a221541036a211741012114410121180340200c2102034020034180026a41206a220a200241206a29030037030020034180026a41186a220b200241186a29030037030020034180026a41106a220c200241106a29030037030020034180026a41086a2204200241086a2903003703002003200229030037038002200241286a2d000021012003200241296a2800003602a80620032002412c6a2800003600ab0620014104460d02200341f0046a41206a221a200a290300370300200341f0046a41186a220a200b290300370300200341f0046a41106a220b200c29030037030020082004290300370300201520032802a806360000201720032800ab0636000020032003290380023703f004200320013a00980502402008200341e8006a412010cf050d00200241306a22022013470d010c030b0b200341b8066a41206a201a290300220e370300200341b8066a41186a200a2903002205370300200341b8066a41106a200b290300220f370300200341b8066a41086a20082903002211370300200341b8036a41086a220c2011370300200341b8036a41106a2204200f370300200341b8036a41186a221b2005370300200341b8036a41206a221c200e370300200320032903f004220e3703b80620032015280000360288012003201728000036008b012003200e3703b8032003200328008b013600b30620032003280288013602b006200320032800b3063600e301200320032802b0063602e0012008200c290300370300200b2004290300370300200a201b290300370300201a201c290300370300200320032903b8033703f004200320032802e00136028002200320032800e30136008302024020182014470d00201441016a220c2014490d0820144101742204200c2004200c4b1b2218ad42307e220e422088a70d08200ea7220c4100480d080240024020140d00200c101e210d0c010b200d201441306c200c1022210d0b200d450d050b200241306a210c2008290300210e200b2903002105200a290300210f201a290300211120032903f0042112200d201441306c6a220a20013a0028200a2012370300200a41206a2011370300200a41186a200f370300200a41106a2005370300200a41086a200e370300200a200328028002360029200a412c6a200328008302360000201441016a211420192002470d000b0b2016450d00200710200b200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341f0046a200d201410a20220034180026a411020032802f004220220032802f8041005024020032802f404450d00200210200b02402018450d00200d10200b20034192056a20032d00af013a0000200341fa046a200341f0006a29030037010020034182056a200341f8006a2903003701002003418a056a20034180016a29030037010020034190023b01f004200320032903683701f204200341f0046a1077024020032802d401450d0020032802d00110200b4100210d02402006450d00200910200b0c080b41304108102d000b200c4108102d000b2006450d05200910200c050b10792108200341f0046a41086a22024200370300200342003703f00441e9cec2004116200341f0046a100020034180026a41086a2002290300370300200320032903f00437038002200341003602f00420034180026a4110200341f0046a100321020240024020032802f004220a417f470d0041ac02210a0c010b024020020d0041ac02210a0c010b200a4104490d032002280000210a200210200b200341b8036a41086a220b200341b8066a41086a290300370300200341b8036a41106a220c200341b8066a41106a290300370300200341b8036a41186a2213200341b8066a41186a290300370300200320032903b8063703b803024020062009470d00200ea7200e422088a72202470d00200241016a22062002490d0120024101742209200620062009491bad220f42307e2211422088a70d012011a722064100480d010240024020020d002006101e210d0c010b200d200241306c20061022210d0b200d450d04200e42808080807083200f84210e0b200d200e422088a7220641306c6a2202200537030020132903002105200c290300210f200b290300211120032903b8032112200220073a002820022012370308200241106a2011370300200241186a200f370300200241206a20053703002002200a20086a36022c200220032f00f0043b00292002412b6a200341f2046a2d00003a0000200341f0046a41086a22024200370300200342003703f00441adfdc1004118200341f0046a100020034180026a41086a2002290300370300200320032903f0043703800202400240200d0d0020034180026a411010040c010b200ea72102200341f0046a200d200641016a10a20220034180026a411020032802f004220620032802f8041005024020032802f404450d00200610200b2002450d00200d10200b20034192056a20073a0000200341fa046a200341c0066a2903003701002003418a056a200341d0066a290300370100200341103b01f00420034182056a200341b8066a41106a290300370100200320032903b8063701f204200341f0046a10774100210d0c010b1027000b20044105470d02200141086a280200450d02200141046a28020010200c020b41ceb8c4004133200341e0016a41fcbfc4004184b9c400102e000b20064108102d000b200020083602042000200d360200200341e0066a24000bcce20107097f027e057f027e057f027e107f23004190056b220324000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e09000102030405060708000b200341d4026a4101360200200342013702c40220034184e6c6003602c002200341043602542003418cb4c6003602502003200341d0006a3602d002200341c0026a41d483c6001033000b20012d00012104200341d0006a41186a2001411a6a290000370300200341d0006a41106a200141126a290000370300200341d0006a41086a2001410a6a2900003703002003200141026a29000037035041d3fec6002105024020022d00000d00200341086a41086a220242003703002003420037030841e483c600410f200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a4110106920032d00c0022105200341086a41186a200341d9026a290000370300200341086a41106a200341d1026a2900003703002002200341c9026a290000370300200320032900c10237030841002102024020054101470d00200341f0016a41186a200341086a41186a290300370300200341f0016a41106a200341086a41106a290300370300200341f0016a41086a200341086a41086a290300370300200320032903083703f001410121020b02400240200441ff01714101460d00200341086a41086a220542003703002003420037030841e483c600410f200341086a1000200341e8036a41086a2005290300370300200320032903083703e803200341e8036a411010040c010b200341c0026a41186a200341d0006a41186a290300370300200341c0026a41106a200341d0006a41106a290300370300200341c0026a41086a200341d0006a41086a290300370300200320032903503703c002200341086a41086a220542003703002003420037030841e483c600410f200341086a1000200341e8036a41086a2005290300370300200320032903083703e803200341103602a4042003200341e8036a3602a004200341c0026a200341a0046a1082030b200341c9026a20023a0000200341c0026a41086a41073a0000200341ca026a20032903f001370100200341ea026a20043a0000200341eb026a2003290350370000200341d2026a200341f0016a41086a290300370100200341da026a200341f0016a41106a290300370100200341e2026a200341f0016a41186a290300370100200341f3026a200341d0006a41086a290300370000200341fb026a200341d0006a41106a29030037000020034183036a200341d0006a41186a2903003700002003410e3a00c002200341c0026a1077410021050b411121020c320b200141186a2802002106200141146a2802002107200141106a28020021082001410c6a2802002109200141086a280200210a41042104200141046a280200210b200141286a290300210c200141206a290300210d200241046a280000210e20022d0000210f200341e8036a41026a2210200241036a2d00003a0000200341c0026a41086a2211200241186a290000370300200341c0026a41106a2212200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200f4101470d00200341a0046a41026a20102d00003a0000200341d0006a41086a2011290300370300200341d0006a41106a20122d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200e21040b20034187026a200341d0006a41086a2903003700002003418f026a200341d0006a41106a2d00003a0000200320032f01a0043b01f001200320043600f301200320032903503700ff012003200341a0046a41026a2d00003a00f201200320133700f7010240024020050d00200341e0046a41186a200341f0016a41186a290300370300200341e0046a41106a200341f0016a41106a290300370300200341e0046a41086a200341f0016a41086a2204290300370300200320032903f0013703e004200341086a41086a220242003703002003420037030841e483c600410f200341086a100020042002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a220e20032d00c3023a00002004200341d4026a290200370300200341f0016a410d6a2210200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f0014101210f0240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a200e2d00003a0000200341a0046a41086a2004290300370300200341a0046a410d6a2010290000370000200320032f01303b01e803200320032903f0013703a0044100210f0b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200341a0046a41086a29030037030020034180046a41106a200341a0046a41106a290300370300200320032f01e8033b018005200320032903a00437038004200f0d32200341e3006a20034180046a41086a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034182056a2d00003a0052200341e0046a200341d0006a412010cf05450d01418684c6002105411621020c320b419affc6002105410f210202400240024002400240024020040e0700010203040537000b2013422088a721022013a721050c360b418cffc6002105410e21020c350b4180ffc6002105410c21020c340b41f7fec6002105410921020c330b41e4fec6002105411321020c320b41d3fec6002105411121020c310b200341086a41086a220242003703002003420037030841df82c700411d200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220541ffff0371200941ffff037122044d0d00419c84c6002105411921020c310b024020032f01c402410020021b20056a41ffff037120044f0d0041b584c6002105411821020c310b200341086a41086a220242003703002003420037030841fc82c7004123200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a107541cd84c6002105411e210220032f01c202410020032f01c00241014622041b220f41ffff0371200641ffff0371220e4b0d3020032f01c402410020041b200f6a41ffff0371200e490d30420021140240200d4200520d00200341086a21050c290b200341c0026a200c109a05024020032802c0024101470d00200341c8026a280200210220032802c40221050c310b200341cc026a280200220e41f8006c2105200341c8026a280200211120032802c40222102102024003402005450d01200241d4006a2104200241d5006a210f200541887f6a2105200241f8006a2102200f2d000020042d0000720d260c000b0b200e41026a41034d0d274126210241c585c60021050c250b200141026a2d00002110200141086a290300210c4104210420012d0001210e200241046a280000210a20022d00002107200341e8036a41026a220f200241036a2d00003a0000200341c0026a41086a2208200241186a290000370300200341c0026a41106a220b200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a2900002113024020074101470d00200341a0046a41026a200f2d00003a0000200341d0006a41086a2008290300370300200341d0006a41106a200b2d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200a21040b200341086a41086a200341d0006a41086a290300370300200341086a41106a200341d0006a41106a2d00003a0000200320032f01a0043b012c200320032903503703082003200341a0046a41026a2d00003a002e0240024020050d00200341f7046a200341086a41086a2202290300370000200341ff046a200341086a41106a2d00003a0000200320032d002e3a00e204200320032f012c3b01e004200320133700e704200320043600e304200320032903083700ef04200242003703002003420037030841e483c600410f200341086a1000200341f0016a41086a22042002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a220a20032d00c3023a00002004200341d4026a290200370300200341f0016a410d6a220f200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f001410121070240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a200a2d00003a0000200341a0046a41086a2004290300370300200341a0046a410d6a200f290000370000200320032f01303b01e803200320032903f0013703a004410021070b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200341a0046a41086a29030037030020034180046a41106a200341a0046a41106a290300370300200320032f01e8033b018005200320032903a0043703800420070d32200341e3006a20034188046a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034180056a41026a2d00003a0052200341e0046a200341d0006a412010cf05450d01418684c6002105411621020c320b419affc6002105410f210202400240024002400240024020040e0700010203040537000b2013422088a721022013a721050c360b418cffc6002105410e21020c350b4180ffc6002105410c21020c340b41f7fec6002105410921020c330b41e4fec6002105411321020c320b41d3fec6002105411121020c310b0240200e41ff01714102470d00201041ff01714102470d0041eb85c6002105411b21020c310b200341c0026a200c109a05024020032802c0024101470d00200341c8026a280200210220032802c40221050c310b200341c8026a280200211520032802c40221160240200341cc026a280200221741014d0d002017ad42f8007e2213422088a70d2b2013a72202417f4c0d2b4108211802402002450d002002101e2218450d070b2016201741f8006c6a2119410021074100210a0340201620076a220241386a2802002205417f4c0d2c20022903002113200241306a28020021040240024020050d004101210f0c010b2005101e220f450d090b200f2004200510cd05210f200241c4006a2802002204417f4c0d2c2002413c6a28020021080240024020040d004101210b0c010b2004101e220b450d0a0b200b2008200410cd052108200241c8006a290300210d200241d0006a280200210b200241d4006a2d00002111200241d5006a2d00002112200241086a2903002114200241106a2802002109200241186a290300211a200241206a290300211b200241286a2802002106200341a0046a41106a221c200241e6006a290100370300200341a0046a41186a221d200241ee006a29010037030020032005360214200320053602102003200f36020c200341a0046a41086a220f200241de006a2901003703002003200241d6006a2901003703a004201820076a220541286a2006360200200541206a201b370300200541186a201a370300200541106a2009360200200541086a2014370300200520133703002003290308211320032903102114200541d5006a20124100473a0000200541d4006a20114100473a0000200541d0006a200b360200200541c8006a200d370300200541c4006a2004360200200541c0006a20043602002005413c6a2008360200200541346a20143702002005412c6a2013370200200541d6006a20032903a004370100200541de006a200f290300370100200541e6006a201c290300370100200541ee006a201d290300370100200741f8006a2107200a41016a210a200241f8006a2019470d000b201841346a280200210220182802402105201828023c2104201828023021072018201841f8006a200a417f6a220841f8006c10ce05210f02402002450d00200710200b02402005450d00200410200b200a41f8006c41887f6a2105200f2102024003402005450d01200241d4006a2104200241d5006a2107200541887f6a2105200241f8006a210220072d000020042d000072450d000b02402008450d00200f41c0006a2102200a41f8006c41887f6a210503400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b200f1020419085c6002105413521020c240b02402008450d00200f41c0006a2102200a41f8006c41887f6a210503400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b200f10200b4112101e2202450d08200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d092002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22074200370300200342003703a0042002411a200341a0046a1001200341306a41186a2005290300370300200341306a41106a2004290300370300200341306a41086a2007290300370300200320032903a00437033020021020200341003602c002200341306a4120200341c0026a1003210220032802c0022205417f460d0b2002450d0b2003200536025420032002360250200341c0026a200341d0006a10970520032903d8024202510d0a20034180036a2802002112200341fc026a280200211c200341f4026a2802002109200341f0026a280200211d20032d009403210402402005450d00200210200b201041ff0171450d20200441ff0171450d2002402009450d00201d10200b418686c6002105412b21022012450d22201c10200c220b2001410c6a2802002111200141086a280200210a41042104200141046a280200210f200141206a290300210c200341306a41086a200141186a2802003602002003200141106a290200370330200241046a280000210820022d00002107200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a2900002113024020074101470d00200341a0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200821040b20034187026a200341d0006a41086a2903003700002003418f026a200341d0006a41106a2d00003a0000200320032f01a0043b01f001200320043600f301200320032903503700ff012003200341a0046a41026a2d00003a00f201200320133700f7010240024020050d0020034180046a41186a200341f0016a41186a29030037030020034180046a41106a200341f0016a41106a29030037030020034180046a41086a200341f0016a41086a290300370300200320032903f0013703800420034180046a10ff020d0141b186c6002105410f21020c200b419affc6002105410f210202400240024002400240024020040e0700010203040525000b2013422088a721022013a721050c240b418cffc6002105410e21020c230b4180ffc6002105410c21020c220b41f7fec6002105410921020c210b41e4fec6002105411321020c200b41d3fec6002105411121020c1f0b200341c0026a200c109a05024020032802c0024101470d00200341c8026a280200210220032802c40221050c1f0b200341cc026a280200220841f8006c2105200341c8026a280200210e20032802c402220b210203402005450d1d200241d4006a2104200241d5006a2107200541887f6a2105200241f8006a210220072d000020042d000072450d000b419085c6002105413521020c1d0b2001410c6a2802002111200141086a280200210741042104200141046a280200210f200141106a290300210c200241046a280000210820022d0000210a200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200a4101470d00200341a0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200821040b200341086a41086a200341d0006a41086a290300370300200341086a41106a200341d0006a41106a2d00003a0000200320032f01a0043b012c200320032903503703082003200341a0046a41026a2d00003a002e0240024020050d00200341b7026a200341086a41086a2202290300370000200341bf026a200341086a41106a2d00003a0000200320032d002e3a00a202200320032f012c3b01a002200320133700a702200320043600a302200320032903083700af02200242003703002003420037030841e483c600410f200341086a1000200341f0016a41086a22042002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a220820032d00c3023a00002004200341d4026a290200370300200341f0016a410d6a220b200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f0014101210a0240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a20082d00003a0000200341a0046a41086a2004290300370300200341a0046a410d6a200b290000370000200320032f01303b01e803200320032903f0013703a0044100210a0b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200341a0046a41086a29030037030020034180046a41106a200341a0046a41106a290300370300200320032f01e8033b018005200320032903a00437038004200a0d1c200341e3006a20034188046a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034182056a2d00003a0052200341a0026a200341d0006a412010cf05450d01418684c6002105411621020c1c0b419affc6002105410f210202400240024002400240024020040e0700010203040521000b2013422088a721022013a721050c200b418cffc6002105410e21020c1f0b4180ffc6002105410c21020c1e0b41f7fec6002105410921020c1d0b41e4fec6002105411321020c1c0b41d3fec6002105411121020c1b0b200341c0026a200c109b05024020032802c0024101470d0020032802c802210220032802c40221050c1b0b200341e0046a41086a200341fc026a290200370300200341e0046a41106a20034184036a290200370300200341e0046a41186a2003418c036a2902003703002003200341f4026a2902003703e004200341ec026a280200210e200341e8026a2802002104200341c0026a41106a290300211320034198036a2903002114200341a0036a2802002109200341a8036a2802002110200341ac036a280200210b200341b0036a2802002112200341b4036a2802002106200341b8036a280200211c200341bc036a280200211d20032903c802210d20034180046a41186a200341d8036a29030037030020034180046a41106a200341d0036a29030037030020034180046a41086a200341c8036a2903003703002003200341c0036a290300370380042004450d1841ea87c6002105411921020c190b200141106a290300210c200341e0046a41086a2001410c6a280200360200410421042003200141046a2902003703e004200241046a280000210a20022d00002107200341e8036a41026a220f200241036a2d00003a0000200341c0026a41086a2208200241186a290000370300200341c0026a41106a220b200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a2900002113024020074101470d0020034180046a41026a200f2d00003a0000200341d0006a41086a2008290300370300200341d0006a41106a200b2d00003a0000200320032f01e8033b018004200320032903c00237035041002105200a21040b2003411f6a200341d0006a41086a290300370000200341276a200341d0006a41106a2d00003a0000200320032f0180043b01082003200436000b20032003290350370017200320034180046a41026a2d00003a000a2003201337000f0240024020050d00200341a0046a41186a200341086a41186a290300370300200341a0046a41106a200341086a41106a290300370300200341a0046a41086a200341086a41086a2202290300370300200320032903083703a004200341a0046a10ff020d0141b186c6002105410f21020c180b419affc6002105410f210202400240024002400240024020040e070001020304051d000b2013422088a721022013a721050c1c0b418cffc6002105410e21020c1b0b4180ffc6002105410c21020c1a0b41f7fec6002105410921020c190b41e4fec6002105411321020c180b41d3fec6002105411121020c170b20032802e8042105200242003703002003420037030841ba83c7004118200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220441ffff0371200541ffff037122054d0d0041ed86c6002105411421020c170b024020032f01c402410020021b20046a41ffff037120054f0d00418187c6002105410e21020c170b200341c0026a200c109c05024020032802c0024101470d0020032802c802210220032802c40221050c170b200341ac036a280200210f200341a8036a280200210b200341ec026a2802002108200341e8026a280200210a200341c0026a200341d0026a290300109a0520032802c0024101460d14200341cc026a280200220e41f8006c2105200341c8026a280200211120032802c4022210210203402005450d14200241d4006a2104200241d5006a2107200541887f6a2105200241f8006a210220072d000020042d0000720d130c000b0b2001410c6a2802002111200141086a280200210741042104200141046a280200210f200141106a290300210c200241046a280000210820022d0000210a200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200a4101470d00200341a0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01a004200320032903c00237035041002105200821040b20034187026a200341d0006a41086a2903003700002003418f026a200341d0006a41106a2d00003a0000200320032f01a0043b01f001200320043600f301200320032903503700ff012003200341a0046a41026a2d00003a00f201200320133700f7010240024020050d00200341306a41186a200341f0016a41186a290200370300200341306a41106a200341f0016a41106a290200370300200341306a41086a200341f0016a41086a290200370300200320032902f001370330200341306a10ff020d0141b186c6002105410f21020c120b419affc6002105410f210202400240024002400240024020040e0700010203040517000b2013422088a721022013a721050c160b418cffc6002105410e21020c150b4180ffc6002105410c21020c140b41f7fec6002105410921020c130b41e4fec6002105411321020c120b41d3fec6002105411121020c110b200341086a41086a220242003703002003420037030841ba83c7004118200341086a1000200341a0046a41086a2002290300370300200320032903083703a004200341c0026a200341a0046a1075024020032f01c202410020032f01c00241014622021b220541ffff0371201141ffff037122044d0d0041ed86c6002105411421020c110b024020032f01c402410020021b20056a41ffff037120044f0d00418187c6002105410e21020c110b200341c0026a200c109d05024020032802c0024101470d0020032802c802210220032802c40221050c110b200341d0006a200341c8026a41a00110cd051a0240200341cc016a200341306a412010cf050d00410e101e2202450d09200241066a41002900e18846370000200241002900db88463700002002410e411c10222202450d0a2002200c37000e200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a220a4200370300200342003703a00420024116200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a200a290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003210520032802c0022204417f460d0f2005450d0f20032004360284042003200536028004200341c0026a20034180046a10940520032802a4032208450d0b200341e8036a41086a200341c0026a41086a290300370300200341a0046a41086a200341f4026a290200370300200341a0046a41106a200341fc026a290200370300200341a0046a41186a20034184036a290200370300200320032903c0023703e803200320032902ec023703a00420032903d002210c20032802d802211c20032802dc02211d20032802e002210e20032802e402211820032802e8022106200341e0046a41086a200341c4036a290200370300200341e0046a41106a200341cc036a290200370300200341e0046a41186a200341d4036a2902003703002003200341bc036a2902003703e004200341b8036a280200210a200341b4036a2802002102200341b0036a280200210b200341dc036a280200211720032802a803210920032802a0032112200328029c03211920032802980321102003290390032113200328028c0321162004450d10200510200c100b0240200341b8016a280200450d0020032802b40110200b0240200341f0006a2802002202450d002003280274450d00200210200b20032802c00121040240200341c8016a2802002202450d0020024105742105200441106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b0240200341c4016a280200450d00200410200b41b888c6002105412321020c100b2001410c6a2802002111200141086a280200210741042104200141046a280200210f200141106a290300210c200241046a280000210820022d0000210a200341e8036a41026a220b200241036a2d00003a0000200341c0026a41086a220e200241186a290000370300200341c0026a41106a2210200241206a2d00003a0000200320022f00013b01e8032003200241106a2900003703c00241012105200241086a29000021130240200a4101470d00200341e0046a41026a200b2d00003a0000200341d0006a41086a200e290300370300200341d0006a41106a20102d00003a0000200320032f01e8033b01e004200320032903c00237035041002105200821040b20034180046a41026a200341e0046a41026a2d00003a0000200341a0046a41086a200341d0006a41086a290300370300200341a0046a41106a200341d0006a41106a2d00003a0000200320032f01e0043b018004200320032903503703a0040240024020050d00200341b7026a200341a0046a41086a220a290300370000200341bf026a200341a0046a41106a220e2d00003a0000200320032f0180043b01a002200320133700a702200320043600a302200320032903a0043700af02200320034180046a41026a2d00003a00a202200341086a41086a220242003703002003420037030841e483c600410f200341086a1000200341f0016a41086a22082002290300370300200320032903083703f001200341c0026a200341f0016a4110106920032d00c0022102200341306a41026a221020032d00c3023a00002008200341d4026a290200370300200341f0016a410d6a2212200341d9026a290000370000200320032f00c1023b01302003200341cc026a2902003703f0014101210b0240024020024101460d004113210241f383c60021050c010b200341c0026a41086a280200210220032802c4022105200341e8036a41026a20102d00003a0000200a2008290300370300200341a0046a410d6a2012290000370000200320032f01303b01e803200320032903f0013703a0044100210b0b20034180056a41026a200341e8036a41026a2d00003a000020034180046a41086a200a29030037030020034180046a41106a200e290300370300200320032f01e8033b018005200320032903a00437038004200b0d0e200341e3006a20034188046a290300370000200341e8006a2003418d046a290000370000200320032f0180053b01502003200236005720032005360053200320032903800437005b200320034182056a2d00003a0052200341a0026a200341d0006a412010cf05450d01418684c6002105411621020c0e0b419affc6002105410f210202400240024002400240024020040e0700010203040513000b2013422088a721022013a721050c120b418cffc6002105410e21020c110b4180ffc6002105410c21020c100b41f7fec6002105410921020c0f0b41e4fec6002105411321020c0e0b41d3fec6002105411121020c0d0b200341c0026a200c109d05024020032802c0024101470d0020032802c802210220032802c40221050c0d0b200341c0036a280200210a200341bc036a2802002110200341b8036a280200210b200341b0036a280200210e200341ac036a2802002109200341ec026a2802002112200341e8026a2802002108200341d0026a290300211420032903c802210d200341086a41086a220242003703002003420037030841fb83c7004127200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00222024101461b220541ffff0371201141ffff037122064d0d0041e988c6002105412421020c0b0b20032f01c402410020024101461b20056a41ffff037120064f0d0b418d89c6002105412321020c0a0b20024108102d000b20054101102d000b20044101102d000b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b410021094101211d4101211c410021120c140b410e4101102d000b411c4101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b0240200e450d00200910200b02402008450d002012450d00200810200b0240200a450d00200a410574210a200b41106a210403400240200441046a280200450d00200428020010200b200441206a2104200a41606a220a0d000b0b2010450d01200b10200c010b1079211e10a902211a200341e8036a41086a200341a0026a410f6a220241086a290000370300200341e8036a41106a200241106a2d00003a0000200320032d00a2023a00fe03200320032f01a0023b01fc03200320022900003703e8032011417f4c0d190240024002400240024002400240024020110d00410121050c010b2011101e2205450d010b2005200f201110cd05211d200341086a41086a200341e8036a41086a290300370300200341086a41106a200341e8036a41106a2d00003a0000200320032f01fc033b012c200320032d00fe033a002e200320032903e803370308410e101e2202450d01200241066a41002900e18846370000200241002900db88463700002002410e411c10222202450d022002200c37000e200341a0046a41186a22064200370300200341a0046a41106a221c4200370300200341a0046a41086a22184200370300200342003703a00420024116200341a0046a1001200341306a41186a2006290300370300200341306a41106a201c290300370300200341306a41086a2018290300370300200320032903a00437033020021020200341003602c002200341306a4120200341c0026a1003210620032802c002221f417f460d042006450d042003201f3602e404200320063602e004200341c0026a200341e0046a10940520032802a4032202450d0320034180056a41086a200341c0026a41086a290300370300200341d0006a41086a200341f4026a290200370300200341d0006a41106a200341fc026a290200370300200341d0006a41186a20034184036a290200370300200320032903c00237038005200320032902ec02370350200341ac036a2802002117200341b0036a2802002120200341b4036a2802002115200341b8036a280200212120032802e002211c20032802e4022122200328028c032123200329039003210c2003280298032118200328029c03212420032802a003211620032802a8032119200341a0046a41186a200341d4036a290200370300200341a0046a41106a200341cc036a290200370300200341a0046a41086a200341c4036a2902003703002003200341bc036a2902003703a004200341dc036a2802002125201f450d05200610200c050b20114101102d000b410e4101102d000b411c4101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b410021020b4108210620034190026a41086a221f20034180056a41086a290300370300200341c0026a41086a2226200341d0006a41086a290300370300200341c0026a41106a2227200341d0006a41106a290300370300200341c0026a41186a2228200341d0006a41186a290300370300200341f0016a41086a2229200341a0046a41086a290300370300200341f0016a41106a222a200341a0046a41106a290300370300200341f0016a41186a222b200341a0046a41186a290300370300200320032903800537039002200320032903503703c002200320032903a0043703f0010240024020020d004200210c20034180046a41186a420037030020034180046a41106a420037030020034180046a41086a4200370300200341d0046a41086a42003703002003420037038004200342003703d004410121024100211c4100211841002116410021194100211741002115410021214101211f0c010b200341d0046a41086a201f290300370300200341e0046a41086a2026290300370300200341e0046a41106a2027290300370300200341e0046a41186a202829030037030020034180046a41086a202929030037030020034180046a41106a202a29030037030020034180046a41186a202b29030037030020032003290390023703d004200320032903c0023703e004200320032903f00137038004201c45211f202021060b20034187026a200341086a41086a2903003700002003418f026a200341086a41106a2d00003a0000200320113602ac04200320113602a8042003201d3602a404200320032f012c3b01f001200320032d002e3a00f201200320133700f701200320043600f301200320032903083700ff010240024020220d00201121040c010b20112104201f0d00201c102020032802ac04211120032802a804210420032802a404210520032802a004211d0b200341e0046a41186a221c200341f0016a41186a290200370300200341e0046a41106a2222200341f0016a41106a290200370300200341e0046a41086a221f200341f0016a41086a290200370300200320032902f0013703e004200341c0026a41086a200341d0046a41086a290300370300200341e8026a2011360200200341e4026a2004360200200341c0026a41206a2005360200200341dc026a201d360200200341c0026a41186a201e360200200320032903d0043703c0022003201a3703d002200341ec026a20032903e004370200200341f4026a201f290300370200200341fc026a202229030037020020034184036a201c290300370200200341b8036a2021360200200341b4036a2015360200200341ac036a2017360200200341a8036a201936020020034198036a20183602002003418c036a2023360200200320063602b003200320023602a403200320163602a0032003202436029c032003200c37039003200341d4036a20034180046a41186a290300370200200341cc036a20034180046a41106a290300370200200341c4036a20034180046a41086a29030037020020032003290380043702bc03200320253602dc030240024020020d00200341306a412010040c010b200341203602542003200341306a360250200341c0026a200341d0006a1098050b024020032802a4032202450d00024020032802a803450d00200210200b024020032802e0022202450d0020032802e402450d00200210200b0240200341b8036a2802002202450d002002410574210520032802b00341106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b200341b4036a280200450d0020032802b00310200b024002400240024002404110101e2202450d00200241086a410029009787463700002002410029008f874637000020024110412010222202450d0120022014370010200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22114200370300200342003703a00420024118200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a2011290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003210620032802c002221d417f460d032006450d032003201d3602a404200320063602a004200341c0026a200341a0046a10960520032802a0032202450d0220034180056a41086a200341c0026a41186a290300370300200341d0006a41086a200341ec026a290200370300200341d0006a41106a200341f4026a290200370300200341d0006a41186a200341fc026a290200370300200341f0006a20034184036a290200370300200341f8006a2003418c036a280200360200200320032903d00237038005200320032902e40237035020032903c802210c20032903c002211320032802e0022105200341e0046a41086a200341c0036a290300370300200341e0046a41106a200341c8036a290300370300200341e0046a41186a200341d0036a2903003703002003200341b8036a2903003703e004200341b4036a2802002116200341b0036a2802002118200341ac036a280200211120032902a403211a200328029c03211c20032802980321042003290390032114201d450d04200610200c040b41104101102d000b41204101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b410021020b20034180046a41086a220620034180056a41086a290300370300200341c0026a41086a221d200341d0006a41086a290300370300200341c0026a41106a2219200341d0006a41106a290300370300200341c0026a41186a2217200341d0006a41186a290300370300200341c0026a41206a2215200341d0006a41206a290300370300200341c0026a41286a2221200341d0006a41286a280200360200200320032903800537038004200320032903503703c002200341f0016a41086a221e200341e0046a41086a290300370300200341f0016a41106a2222200341e0046a41106a290300370300200341f0016a41186a2223200341e0046a41186a290300370300200320032903e0043703f0010240024020020d004200211a200341306a41186a4200370300200341306a41106a4200370300200341306a41086a4200370300200342003703304100211141012106417f211d410121024100210442002114410021054200210c420021130c010b200341d0046a41086a2006290300370300200341a0046a41086a201d290300370300200341a0046a41106a2019290300370300200341a0046a41186a2017290300370300200341a0046a41206a2015290300370300200341a0046a41286a2021280200360200200341306a41086a201e290300370300200341306a41106a2022290300370300200341306a41186a202329030037030020032003290380043703d004200320032903c0023703a004200320032903f001370330201641016a21062018417f6a211d0b200341c0026a41186a200341d0046a41086a290300370300200341c0026a41206a2005360200200341e4026a20032903a004370200200341ec026a200341a0046a41086a290300370200200341f4026a200341a0046a41106a290300370200200341fc026a200341a0046a41186a29030037020020034184036a200341a0046a41206a2903003702002003418c036a200341c8046a2802003602002003200c3703c802200320133703c002200320032903d0043703d002200341a4036a201a37020020034198036a2004360200200341c0036a200341306a41086a290300370300200341c8036a200341306a41106a290300370300200341d0036a200341306a41186a290300370300200320063602b4032003201d3602b003200320113602ac03200320023602a0032003201c36029c032003201437039003200320032903303703b803200341203602542003200341086a360250200341c0026a200341d0006a109905024020032802a0032202450d00024020032802a403450d00200210200b20032802e0022202450d0020032802e402450d00200210200b200341c0026a41106a200d370300200341c0026a41086a41053a00002003410e3a00c002200341c0026a10770240200e450d00200910200b02402008450d002012450d00200810200b0240200a450d00200a4105742105200b41106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b02402010450d00200b10200b410021052007450d17200f10200c1f0b2007450d1e200f10200c1e0b410021080b4108210420034190026a41086a2205200341e8036a41086a290300370300200341c0026a41086a2215200341a0046a41086a290300370300200341c0026a41106a2221200341a0046a41106a290300370300200341c0026a41186a221e200341a0046a41186a290300370300200341f0016a41086a2222200341e0046a41086a290300370300200341f0016a41106a2223200341e0046a41106a290300370300200341f0016a41186a2224200341e0046a41186a290300370300200320032903e80337039002200320032903a0043703c002200320032903e0043703f0010240024020080d004200211320034180056a41086a4200370300200341a0026a41086a4200370300200341a0026a41106a4200370300200341a0026a41186a4200370300200342003703800541012108200341013602d004200342003703a0024100210e410021104100211241002109410021024100210a0c010b20034180056a41086a200529030037030020034180046a41086a201529030037030020034180046a41106a202129030037030020034180046a41186a201e290300370300200341a0026a41086a2022290300370300200341a0026a41106a2023290300370300200341a0026a41186a2024290300370300200320032903900237038005200320032903c00237038004200320083602d004200320032903f0013703a002200b21040b1079211510a902210d200341bc016a2802002205417f4c0d1620032802b401210b024002400240024020050d00410121210c010b2005101e2221450d010b2021200b200510cd052121200320053602f403200320053602f003200320213602ec0302402009450d00200810200b2003200f3602d004200341a0046a41086a220f200341e8036a41086a290300370300200320032903e8033703a0040240200a2002460d0020022105200a21020c020b0240200241016a22052002490d00200241017422082005200820054b1b220541ffffff3f712005470d00200541057422084100480d000240024020020d002008101e21040c010b200420024105742008102221040b20040d0220084108102d000b1027000b20054101102d000b200420024105746a220220153602082002200d370300200241146a200f290300370200200220032903a00437020c200341c0026a41086a20034180056a41086a290300370300200341e8026a2006360200200341e4026a2018360200200341c0026a41206a200e360200200341dc026a201d360200200341c0026a41186a201c360200200341ec026a200329038004370200200341f4026a20034180046a41086a290300370200200341fc026a20034180046a41106a29030037020020034184036a20034180046a41186a29030037020020032003290380053703c0022003200c3703d00220034198036a20103602002003418c036a2016360200200341a8036a2007360200200341ac036a2011360200200341b4036a2005360200200341b8036a200a41016a360200200341c4036a200341a0026a41086a290300370200200341cc036a200341a0026a41106a290300370200200341d4036a200341a0026a41186a290300370200200320123602a0032003201936029c032003201337039003200320043602b003200320032802d00422023602a403200320032903a0023702bc03200320173602dc030240024020020d00200341086a412010040c010b200341203602a4042003200341086a3602a004200341c0026a200341a0046a1098050b024020032802a4032202450d00024020032802a803450d00200210200b024020032802e0022202450d0020032802e402450d00200210200b0240200341b8036a2802002202450d002002410574210520032802b00341106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b200341b4036a280200450d0020032802b00310200b20032903502113200341d8026a200341c8016a2802002202ad370300200341d0026a2013370300200341c8026a41063a00002003410e3a00c002200341c0026a10770240200341b8016a280200450d00200b10200b0240200341f0006a2802002205450d002003280274450d00200510200b20032802c001210402402002450d0020024105742105200441106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b200341c4016a280200450d0d20041020410021050c1c0b2007450d1b200f10200c1b0b0240200e450d00200e41f8006c2105201041c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b419085c6002105413521022011450d02201010200c020b200341c0026a200c200341e0046a200341a0046a109e05200341e0006a20032903c002370300200341d8006a41043a00002003410e3a0050200341d0006a10770240200341a8036a280200450d0020032802a40310200b0240200341e0026a2802002202450d0020032802e402450d00200210200b20032802b00321040240200341b8036a2802002202450d0020024105742105200441106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b0240200341b4036a280200450d00200410200b0240200e450d00200e41f8006c2105201041c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b02402011450d00201010200b0240200f450d00200b10200b0240200a450d002008450d00200a10200b4100210520032802e404450d1120032802e00410200c190b200341c8026a280200210220032802c40221050b0240200f450d00200b10200b200a450d002008450d00200a10200b20032802e404450d1620032802e00410200c160b200341086a41086a220242003703002003420037030841d283c7004129200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220541ffff0371201141ffff0371220a4d0d00419f87c6002105412621020c010b024020032f01c402410020021b20056a41ffff0371200a4f0d0041c587c6002105412521020c010b200341003602c802200342083703c0022013200341c0026a109f050240024020032802c8022218450d0020032802c4022119201841f8006c210520032802c0022216210203402005450d02200241d4006a210a200241d5006a2108200541887f6a2105200241f8006a210220082d0000200a2d000072450d000b201841f8006c2105201641c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b419085c6002105413521022019450d02201610200c020b418388c600412241a888c6001028000b1079210a10a902211a200341c0026a41186a200341a0026a41186a290300370300200341c0026a41106a200341a0026a41106a290300370300200341c0026a41086a200341a0026a41086a290300370300200320032903a0023703c0022011417f4c0d0f02400240024002400240024002400240024002400240024020110d00410121020c010b2011101e2202450d010b2002200f201110cd052104200341e0046a41086a200341c0026a41086a290300370300200341e0046a41106a200341c0026a41106a290300370300200341e0046a41186a200341c0026a41186a290300370300200320032903c0023703e0042012417f4c0d19410121024101210502402012450d002012101e2205450d020b20052010201210cd052105200341f0016a41186a2208200341e0046a41186a290300370300200341f0016a41106a220e200341e0046a41106a290300370300200341f0016a41086a2217200341e0046a41086a290300370300200320032903e0043703f00102402011450d002011101e2202450d030b20022004201110cd052102200341a8036a2012360200200341a4036a2012360200200341c0026a41206a2002360200200341c0026a41186a200a360200200341ec026a20032903f001370200200341f4026a2017290300370200200341fc026a200e29030037020020034184036a2008290300370200200341e4026a2011ad221b422086201b84370200200320053602a0032003200d3703c002200320063602ac03200320133703c8022003201a3703d0022003201d3602b4032003201c3602b00320034198036a2009360200200341c0036a20034180046a41086a290300370300200341c8036a20034180046a41106a290300370300200341d0036a20034180046a41186a290300370300200320143703900320032003290380043703b8034110101e2202450d03200241086a410029009787463700002002410029008f874637000020024110412010222202450d042002200c370010200341a0046a41186a22054200370300200341a0046a41106a220a4200370300200341a0046a41086a22084200370300200342003703a00420024118200341a0046a1001200341306a41186a2005290300370300200341306a41106a200a290300370300200341306a41086a2008290300370300200320032903a00437033020021020200341203602542003200341306a360250200341c0026a200341d0006a109905024020032802a403450d0020032802a00310200b024020032802e0022202450d0020032802e402450d00200210200b4112101e2202450d05200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d0620022013370012200341a0046a41186a22054200370300200341a0046a41106a220a4200370300200341a0046a41086a22084200370300200342003703a0042002411a200341a0046a1001200341306a41186a2005290300370300200341306a41106a200a290300370300200341306a41086a2008290300370300200320032903a00437033020021020200341003602c002200341306a4120200341c0026a1003211d20032802c0022221417f460d08201d450d082003202136020c2003201d360208200341c0026a200341086a10970520032903d80222134202510d07200341a0046a41086a200341e8026a290300370300200320032903e0023703a004200341f0026a2802002105200341f8026a280200210820034180036a280200211220034188036a280200210620034190036a280200212220032802d402211720032802d002210220032903c802211420032903c002210d20032802f402210a20032802fc02210e2003280284032109200328028c03211e20032f019403211c200341e8006a200341ae036a290100370300200341e0006a200341a6036a290100370300200341d0006a41086a2003419e036a290100370300200320032901960337035020032f01b60321152021450d09201d10200c090b20114101102d000b20124101102d000b20114101102d000b41104101102d000b41204101102d000b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b420221130b20034180056a41086a221d200341a0046a41086a290300370300200341086a41086a2221200341d0006a41086a290300370300200341086a41106a2223200341d0006a41106a290300370300200341086a41186a2224200341d0006a41186a290300370300200320032903a00437038005200320032903503703080240024020134202520d0042002114200341f0016a41186a4200370300200341f0016a41106a4200370300200341f0016a41086a4200370300200342003703f001417f211d4100210a41012105410021084101210e41002112410021094100211c4100210641012121410021024200210d420021130c010b200341e8036a41086a201d290300370300200341f0016a41086a2021290300370300200341f0016a41106a2023290300370300200341f0016a41186a202429030037030020032003290380053703e803200320032903083703f001202241016a2121201e417f6a211d0b200341e8026a200341e8036a41086a29030037030020034190036a202136020020034188036a200636020020034184036a200936020020034180036a2012360200200341fc026a200e360200200341f8026a2008360200200341f4026a200a360200200341f0026a2005360200200320133703d802200320173602d402200320023602d002200320143703c8022003200d3703c002200320032903e8033703e0022003201c3b0194032003201d36028c03200341ae036a20034188026a290300370100200341a6036a20034180026a2903003701002003419e036a200341f0016a41086a290300370100200320153b01b603200320032903f00137019603200341d0006a200341c0026a108c05200341306a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b200341d0026a200c370300200341c8026a41033a00002003410e3a00c002201841f8006c2105201641c0006a2102200341c0026a107703400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b02402019450d00201610200b0240200b450d00201010200b41002105024041000d002011450d00200410200b2007450d0d200f10200c150b0240200b450d00201010200b2004450d00200e450d00200410200b2007450d13200f10200c130b200341086a41086a2202420037030020034200370308419f83c700411b200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622021b220541ffff0371201141ffff037122044d0d0041c086c6002105411721020c010b024020032f01c402410020021b20056a41ffff037120044f0d0041d786c6002105411621020c010b20032802382102200341086a41086a220542003703002003420037030841ba83c7004118200341086a1000200341e8036a41086a2005290300370300200320032903083703e803200341c0026a200341e8036a1075024020032f01c202410020032f01c00241014622051b220441ffff0371200241ffff037122024d0d0041ed86c6002105411421020c010b024020032f01c402410020051b20046a41ffff037120024f0d00418187c6002105410e21020c010b024002400240024002404112101e2202450d00200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d012002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22074200370300200342003703a0042002411a200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a2007290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003210220032802c0022205417f460d032002450d032003200536025420032002360250200341c0026a200341d0006a10970520032903d8024202510d0220034190036a280200210720034180036a2802002118200341f0026a280200211e200328028c03210420032802fc02212120032802f402211602402005450d00200210200b200441016a21100c040b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b4101212141002118410021164101211e41002107410121100b42002113200341086a41086a220242003703002003420037030841bd82c7004112200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341003602c002200341e8036a4110200341c0026a1003210202400240024002400240024002400240024002400240024020032802c0022205417f460d002002450d0020054108490d0120022900002113200210200b2011417f4c0d17410121024101210502402011450d002011101e2205450d020b2005200f201110cd0521041079210510a902210d200341e0046a41186a221220034180046a41186a290300370300200341e0046a41106a220920034180046a41106a290300370300200341e0046a41086a220620034180046a41086a29030037030020032003290380043703e00402402011450d002011101e2202450d030b20022004201110cd052102200341a8036a2011360200200341a4036a2011360200200341c0026a41206a410036020020034198036a2005360200200341c0036a2006290300370300200341c8036a2009290300370300200341d0036a2012290300370300200320023602a003200320133703c0022003201020076a3602ac032003200c3703c802200342003703b0032003200d37039003200320032903e0043703b8034110101e2202450d03200241086a410029009787463700002002410029008f874637000020024110412010222202450d0420022013370010200341a0046a41186a22054200370300200341a0046a41106a22074200370300200341a0046a41086a22104200370300200342003703a00420024118200341a0046a1001200341086a41186a2005290300370300200341086a41106a2007290300370300200341086a41086a2010290300370300200320032903a00437030820021020200341203602542003200341086a360250200341c0026a200341d0006a109905024020032802a403450d0020032802a00310200b024020032802e0022202450d0020032802e402450d00200210200b4200210d200341086a41086a220242003703002003420037030841bd82c7004112200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341003602c002200341e8036a4110200341c0026a10032102024020032802c0022205417f460d002002450d0020054108490d062002290000210d200210200b200341086a41086a220242003703002003420037030841bd82c7004112200341086a1000200341e8036a41086a2002290300370300200320032903083703e8032003200d42017c3703c002200341e8036a4110200341c0026a410810054112101e2202450d06200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d072002200c370012200341a0046a41186a22054200370300200341a0046a41106a22074200370300200341a0046a41086a22104200370300200342003703a0042002411a200341a0046a1001200341086a41186a2005290300370300200341086a41106a2007290300370300200341086a41086a2010290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003211d20032802c0022215417f460d09201d450d09200320153602a4042003201d3602a004200341c0026a200341a0046a10970520032903d802220c4202510d08200341a0026a41086a200341e8026a290300370300200341ee006a200341ae036a290100370100200341e8006a200341a8036a290300370300200341e0006a200341a0036a290300370300200341d0006a41086a20034198036a290300370300200320032903e0023703a002200320034190036a290300370350200341f0026a2802002105200341f8026a280200211020034180036a280200210920034188036a280200211c20032802d402211920032802d002210220032903c802211420032903c002210d20032802f402210720032802fc0221122003280284032106200328028c03212220032f01b60321172015450d0a201d10200c0a0b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b20114101102d000b20114101102d000b41104101102d000b41204101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b4202210c0b20034180056a41086a221d200341a0026a41086a290300370300200341c0026a41086a2215200341d0006a41086a290300370300200341c0026a41106a2223200341d0006a41106a290300370300200341c0026a41186a2224200341d0006a41186a290300370300200341c0026a411e6a2225200341d0006a411e6a290100370100200320032903a00237038005200320032903503703c00202400240200c4202520d0042002114200341a0046a411e6a4200370100200341a0046a41186a4200370300200341a0046a41106a4200370300200341a0046a41086a4200370300200342003703a0044100210741012105410021104101211241002109410021064100211c4101211d410021024200210d4200210c0c010b200341e8036a41086a201d290300370300200341a0046a41086a2015290300370300200341a0046a41106a2023290300370300200341a0046a41186a2024290300370300200341a0046a411e6a202529010037010020032003290380053703e803200320032903c0023703a004202241016a211d0b200341e8026a200341e8036a41086a29030037030020034188036a201c36020020034184036a200636020020034180036a2009360200200341fc026a2012360200200341f8026a2010360200200341f4026a2007360200200341f0026a20053602002003200c3703d802200320193602d402200320023602d002200320143703c8022003200d3703c002200320032903e8033703e0022003201d36028c0320034190036a20032903a00437030020034198036a200341a0046a41086a290300370300200341a0036a200341b0046a290300370300200341a8036a200341b8046a290300370300200341ae036a200341be046a290100370100200320173b01b603200341d0006a200341c0026a108c05200341086a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b02402016450d00201e10200b02402018450d00202110200b200341c0026a2013200341306a20034180046a109e050240200341a8036a280200450d0020032802a40310200b0240200341e0026a2802002202450d0020032802e402450d00200210200b20032802b00321070240200341b8036a2802002202450d0020024105742105200741106a210203400240200241046a280200450d00200228020010200b200241206a2102200541606a22050d000b0b0240200341b4036a280200450d00200710200b200341d0026a2013370300200341c8026a41023a00002003410e3a00c002200341c0026a107702402011450d00200410200b02402008450d00200841f8006c2105200b41c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b0240200e450d00200b10200b02402003280234450d00200328023010200b41002105200a450d0a200f10200c120b02402008450d00200841f8006c2107200b41c0006a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441f8006a2104200741887f6a22070d000b0b200e450d00200b10200b02402003280234450d00200328023010200b200a450d10200f10200c100b024002400240024002404112101e2202450d00200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d012002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a22074200370300200342003703a0042002411a200341a0046a1001200341f0016a41186a2005290300370300200341f0016a41106a2004290300370300200341f0016a41086a2007290300370300200320032903a0043703f00120021020200341003602c002200341f0016a4120200341c0026a1003210620032802c0022221417f460d032006450d0320032021360284042003200636028004200341c0026a20034180046a10970520032903d80222134202510d02200341a0046a41086a200341e8026a290300370300200341e8036a41086a20034190036a280200360200200320032903e0023703a004200320034188036a2903003703e803200341f0026a280200210f200341f4026a280200210a200341f8026a280200210720034180036a280200210520032802d402211920032802d002211120032903c802210d20032903c002211420032802fc0221042003280284032102200341d0006a41086a2003419e036a290100370300200341e0006a200341a6036a290100370300200341e8006a200341ae036a290100370300200320032901960337035020032d009503210820032d009403210b20032f01b60321182021450d04200610200c040b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b420221130b200341c0026a41086a2206200341a0046a41086a290300370300200341a0026a41086a2221200341e8036a41086a280200360200200341306a41086a221e200341d0006a41086a290300370300200341306a41106a2222200341d0006a41106a290300370300200341306a41186a2223200341d0006a41186a290300370300200320032903a0043703c002200320032903e8033703a002200320032903503703300240024020134202520d004200210d200341086a41186a4200370300200341086a41106a4200370300200341086a41086a42003703004100210220034180056a41086a41003602002003420037030820034200370380054101210441002105410021074100210a4101210f410021084100210b4100211142002114420021130c010b20034180046a41086a200629030037030020034180056a41086a2021280200360200200341086a41086a201e290300370300200341086a41106a2022290300370300200341086a41186a2023290300370300200320032903c00237038004200320032903a00237038005200320032903303703080b200341e8026a20034180046a41086a29030037030020034180036a2005360200200341f8026a2007360200200341f4026a200a360200200341f0026a200f360200200320133703d802200320193602d402200320113602d0022003200d3703c802200320143703c00220032003290380043703e0022003200236028403200320043602fc0220034188036a20032903800537030020034190036a20034180056a41086a28020036020020032008200e410171200e41ff01714102461b3a0095032003200b2010410171201041ff01714102461b3a009403200341ae036a200341206a290300370100200341a6036a200341186a2903003701002003419e036a200341086a41086a2903003701002003200329030837019603200320183b01b603200341d0006a200341c0026a108c05200341f0016a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b200341d0026a200c370300200341ca026a20103a0000200341c9026a200e3a0000200341c8026a41013a00002003410e3a00c002200341c0026a107702402009450d00201d10200b02402012450d00201c10200b02402017450d00201741f8006c2105201641c0006a210203400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b0b2015450d00201610200b410021050c0e0b02402017450d00201741f8006c2107201641c0006a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441f8006a2104200741887f6a22070d000b0b2015450d0d201610200c0d0b41352102419085c6002105200e450d010b200e41f8006c210f201041c0006a210403400240200441746a280200450d00200441706a28020010200b02402004280200450d002004417c6a28020010200b200441f8006a2104200f41887f6a220f0d000b0b2011450d09201010200c090b024002400240024002404112101e2202450d00200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d012002200c370012200341a0046a41186a22054200370300200341a0046a41106a22044200370300200341a0046a41086a220f4200370300200342003703a0042002411a200341a0046a1001200341086a41186a2005290300370300200341086a41106a2004290300370300200341086a41086a200f290300370300200320032903a00437030820021020200341003602c002200341086a4120200341c0026a1003211820032802c0022217417f460d032018450d03200320173602a404200320183602a004200341c0026a200341a0046a10970520032903d80222134202510d02200341a0026a41086a200341c0026a41286a290300370300200341d0006a41086a20034194036a290200370300200341e0006a2003419c036a290200370300200341e8006a200341a4036a290200370300200341f0006a200341ac036a290200370300200341d0006a41286a200341b4036a2f01003b0100200320032903e0023703a0022003200329028c03370350200341f0026a280200211c200341f4026a2802002112200341f8026a280200210f20034180036a280200210520034188036a280200211520032802d402211920032802d002211d20032903c802210d20032903c002211420032802fc022104200328028403210220032f01b60321162017450d04201810200c040b41124101102d000b41244101102d000b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b420221130b20034180046a41086a2218200341a0026a41086a290300370300200341c0026a41086a2217200341d0006a41086a290300370300200341c0026a41106a2221200341d0006a41106a290300370300200341c0026a41186a221e200341d0006a41186a290300370300200341c0026a41206a2222200341d0006a41206a290300370300200341c0026a41286a2223200341d0006a41286a2f01003b0100200320032903a00237038004200320032903503703c0020240024020134202520d0041002102200341a0046a41286a41003b01004200210d200341a0046a41206a4200370300200341a0046a41186a4200370300200341a0046a41106a4200370300200341a0046a41086a4200370300200342003703a00441012104410021054100210f410021124101211c410121184100211d42002114420021130c010b20034180056a41086a2018290300370300200341a0046a41086a2017290300370300200341a0046a41106a2021290300370300200341a0046a41186a201e290300370300200341a0046a41206a2022290300370300200341a0046a41286a20232f01003b0100200320032903800437038005200320032903c0023703a004201541016a21180b200341c0026a41286a20034180056a41086a29030037030020034188036a201836020020034180036a2005360200200341f8026a200f360200200341f4026a2012360200200341f0026a201c360200200320133703d802200320193602d4022003201d3602d0022003200d3703c802200320143703c00220032003290380053703e0022003200236028403200320043602fc0220034194036a200341a0046a41086a2903003702002003419c036a200341b0046a290300370200200341a4036a200341b8046a290300370200200341ac036a200341a0046a41206a290300370200200341b4036a200341a0046a41286a2f01003b0100200320032903a00437028c03200320163b01b603200341d0006a200341c0026a108c05200341086a4120200328025022022003280258100502402003280254450d00200210200b024020032903d8024202510d00024020032802f402450d0020032802f00210200b200328028003450d0020032802fc0210200b0240200e450d00200e41f8006c2105201041c0006a21022010280248210403400240200241746a280200450d00200241706a28020010200b02402002280200450d002002417c6a28020010200b200241f8006a2102200541887f6a22050d000b42012114200341086a21052011450d01201010200c010b41e988c700412b418085c6001028000b42002113200341086a41086a220242003703002003420037030841a982c7004114200341086a1000200341e8036a41086a2002290300370300200320032903083703e803200341003602c002200341e8036a4110200341c0026a10032102024020032802c002220f417f460d002002450d00200f4108490d0220022900002113200210200b2009417f4c0d020240024020090d00410121020c010b2009101e2202450d040b2002200b200910cd0521022006417f4c0d020240024020060d004101210f0c010b2006101e220f450d050b200f2008200610cd05210f1079210e10a902210d20034184036a200636020020034180036a2006360200200341f8026a2009360200200341f4026a2009360200200341e8026a2004360200200341e0026a200c370300200341c0026a41106a200e3602002003418e036a42003701002003419e036a200341e0046a41086a290300370100200341a6036a200341e0046a41106a290300370100200341ae036a200341f8046a29030037010020034200370388032003200f3602fc02200320023602f002200320143703d8022003200d3703c802200320133703c002200320032903e004370196034112101e2202450d05200241106a41002f00fb84463b0000200241086a41002900f38446370000200241002900eb844637000020024112412410222202450d0620022013370012200341a0046a41186a22044200370300200341a0046a41106a220f4200370300200341a0046a41086a220e4200370300200342003703a0042002411a200341a0046a1001200341086a41186a2004290300370300200341086a41106a200f290300370300200341086a41086a200e290300370300200320032903a00437030820021020200341d0006a200341c0026a108c0520054120200328025022022003280258100502402003280254450d00200210200b024020032802f402450d0020032802f00210200b0240200328028003450d0020032802fc0210200b200341086a41086a220242003703002003420037030841a982c7004114200341086a1000200341e8036a41086a2002290300370300200320032903083703e8032003201342017c3703c002200341e8036a4110200341c0026a41081005200341c0026a41106a201337030041002105200341c0026a41086a41003a00002003410e3a00c002200341c0026a107702402007450d00200810200b200a450d00200b10200b0c070b41ceb8c4004133200341d0046a41fcbfc4004184b9c400102e000b102c000b20094101102d000b20064101102d000b41124101102d000b41244101102d000b02402007450d00200810200b200a450d00200b10200b024020012d0000417f6a4108490d00200141086a280200450d00200141046a28020010200b200020023602042000200536020020034190056a24000bed8801040b7f017e067f047e230041a0076b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e0a00010203040506070f10000b200341f4056a4101360200200342013702e40520034184e6c6003602e005200341043602f4022003418cb4c6003602f0022003200341f0026a3602f005200341e0056a4180cec6001033000b200141246a2802002104200141206a28020021052001411c6a2802002106200141186a2802002107200141146a2802002108200141106a28020021092001410c6a280200210a200141086a280200210b4104210c200141046a280200210d200141286a290300210e200241046a280000210f20022d0000211020034198076a41026a2211200241036a2d00003a0000200341f0026a41086a2212200241106a290000370300200341f0026a41106a2213200241186a290000370300200341f0026a41186a2214200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341d0026a41026a20112d00003a0000200341e0056a41086a2012290300370300200341e0056a41106a2013290300370300200341e0056a41186a20142d00003a0000200320032f0198073b01d002200320032903f0023703e00541002102200f210c0b200341f4006a41026a200341d0026a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f01d0023b0174200320032903e0053703a8040240024020020d00200341a7016a200341a8046a41086a290300370000200341af016a200341a8046a41106a290300370000200341b7016a200341c0046a2d00003a0000200320032f01743b0198012003200c36009b01200320032903a80437009f012003200341f6006a2d00003a009a01200341f8006a41086a220242003703002003420037037841f1ccc6004120200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341003602e005200341d0006a4110200341e0056a1003210220032802e0052210417f460d012002450d010240024002402010450d0020022d0000220f41014b0d0041002110200f0e020201020b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b410121100b2002102020104102460d0120100d014117211041d1cfc600210f0c2e0b419affc600210f410f2110024002400240024002400240200c0e0700010203040533000b20032802a804210f20032802ac0421100c320b418cffc600210f410e21100c310b4180ffc600210f410c21100c300b41f7fec600210f410921100c2f0b41e4fec600210f411321100c2e0b41d3fec600210f411121100c2d0b200341f8006a41086a220242003703002003420037037841cdcec6004124200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341003602e005200341d0006a4110200341e0056a100321020240024020032802e0052210417f460d002002450d00200320103602f402200320023602f002200341e0056a200341f0026a10ec0120032802e005220c450d1120032902e40521152010450d01200210200c010b4108101e220c450d11200c420037030042818080801021150b2015422088a74103742102200c2110024002400340024020020d0041b9cfc600210f411821100c020b200241786a210220102903002116201041086a21102016200e520d000b4122101e2202450d13200241206a41002f0091cf463b0000200241186a4100290089cf46370000200241106a4100290081cf46370000200241086a41002900f9ce46370000200241002900f1ce463700002002412241c40010222202450d142002200e370022200341e0056a41186a22104200370300200341e0056a41106a220f4200370300200341e0056a41086a22114200370300200342003703e0052002412a200341e0056a1001200341f8006a41186a2010290300370300200341f8006a41106a200f290300370300200341f8006a41086a2011290300370300200320032903e00537037820021020200341003602e005200341f8006a4120200341e0056a10032102024020032802e0052210417f460d002002450d00200320023602f002200320103602f402024020104110490d002003201041706a3602f4022003200241106a3602f002200241086a290000211620022900002117200341e0056a200341f0026a10b70120032802e00522120d030b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b4193cfc600210f412621100b2015a7450d2d200c10200c2d0b20032802e40521112002102020174220882016422086842118201642208821162017a7210202402015a7450d00200c10200b0240024020034198016a20184220862002ad8422152016422086201842208884221610df03450d00200341f0026a41206a20043602002003418c036a200536020020034184036a2007360200200341f0026a41106a2008360200200341f0026a41086a200a3602002003200636028803200320093602fc022003200b3602f4022003200d3602f002200341e0056a200341f0026a10b30520032802e0054101470d01200341e0056a41086a280200211020032802e405210f0c2c0b41a9cec600210f41242110410121020c2c0b200341a8046a41206a200341e0056a410472220241206a280200360200200341a8046a41186a200241186a290200370300200341a8046a41106a200241106a290200370300200341a8046a41086a200241086a290200370300200320022902003703a8044112101e2202450d13200241106a41002f00f8cf463b0000200241086a41002900f0cf46370000200241002900e8cf4637000020034292808080a0023702f402200320023602f00220032802a8042113200320032802b00422103602e005200341e0056a200341f0026a1063024020032802f402220c20032802f802220f6b2010490d0020032802f00221020c290b200f20106a2202200f490d19200c41017422142002201420024b1b22144100480d1902400240200c0d002014101e21020c010b20032802f002200c2014102221020b02402002450d00200320143602f402200320023602f0022014210c0c290b20144101102d000b200141106a2903002116200341d0006a41086a2001410c6a2802003602004104210c2003200141046a290200370350200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f0c280b419affc600210f024002400240024002400240200c0e070001020304052d000b200328007f210f20032800830121100c2c0b418cffc600210f410e21100c2b0b4180ffc600210f410c21100c2a0b41f7fec600210f410921100c290b41e4fec600210f411321100c280b41d3fec600210f411121100c270b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d2441facfc600210f413421100c250b200141106a2903002116200341d0006a41086a2001410c6a2802003602004104210c2003200141046a290200370350200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f0c240b419affc600210f024002400240024002400240200c0e0700010203040529000b200328007f210f20032800830121100c280b418cffc600210f410e21100c270b4180ffc600210f410c21100c260b41f7fec600210f410921100c250b41e4fec600210f411321100c240b41d3fec600210f411121100c230b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d2041aed0c600210f413021100c210b2001410c6a2802002111200141086a28020021064104210c200141046a2802002109200141106a2903002116200241046a280000210f20022d0000211020034198076a41026a220d200241036a2d00003a0000200341f0026a41086a2205200241106a290000370300200341f0026a41106a2208200241186a290000370300200341f0026a41186a220b200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a200d2d00003a0000200341e0056a41086a2005290300370300200341e0056a41106a2008290300370300200341e0056a41186a200b2d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f0c200b419affc600210f024002400240024002400240200c0e0700010203040525000b200328007f210f20032800830121100c240b418cffc600210f410e21100c230b4180ffc600210f410c21100c220b41f7fec600210f410921100c210b41e4fec600210f411321100c200b41d3fec600210f411121100c1f0b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d1c41ded0c600210f41302110410121020c1d0b200141246a2802002107200141206a28020021082001411c6a2802002109200141186a2802002104200141146a2802002105200141106a28020021062001410c6a280200210a200141086a280200210b4104210c200141046a280200210d200141286a2903002116200241046a280000210f20022d0000211020034198076a41026a2211200241036a2d00003a0000200341f0026a41086a2212200241106a290000370300200341f0026a41106a2213200241186a290000370300200341f0026a41186a2214200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341a8046a41026a20112d00003a0000200341e0056a41086a2012290300370300200341e0056a41106a2013290300370300200341e0056a41186a20142d00003a0000200320032f0198073b01a804200320032903f0023703e00541002102200f210c0b410f2110200341f8006a410f6a200341e0056a41086a2903003700002003418f016a200341e0056a41106a29030037000020034197016a200341e0056a41186a2d00003a0000200320032f01a8043b01782003200c36007b200320032903e00537007f2003200341a8046a41026a2d00003a007a0240024020020d0041182110200341d0026a41186a200341f8006a41186a290300370300200341d0026a41106a200341f8006a41106a290300370300200341d0026a41086a200341f8006a41086a290300370300200320032903783703d002200341e0056a201610a7032003290390064202520d0141c58cc600210f41012111410121024101210c0c1b0b419affc600210f0240024002400240024002400240200c0e0700010203040506000b200328007f210f20032800830121100c050b418cffc600210f410e21100c040b4180ffc600210f410c21100c030b41f7fec600210f410921100c020b41e4fec600210f411321100c010b41d3fec600210f411121100b41002102410121114100210c0c1b0b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a20034185046a200341d0026a412010cf05450d17418ed1c600210f412e211041012111410121024101210c0c180b200141286a2903002116200341d0006a41186a200141196a290000370300200341d0006a41106a200141116a290000370300200341d0006a41086a200141096a290000370300200320012900013703504104210c200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d0020034198016a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b019801200320032903f0023703e00541002102200f210c0b200341f4006a41026a20034198016a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f0198013b0174200320032903e0053703a8040240024020020d00200341df026a200341b0046a290300370000200341e7026a200341b8046a29030037000041182110200341ef026a200341a8046a41186a2d00003a0000200320032f01743b01d0022003200c3600d302200320032903a8043700d7022003200341f6006a2d00003a00d202200341e0056a201610a7032003290390064202520d0141c58cc600210f0c2a0b419affc600210f410f2110200c0e0702030405060729020b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a200341e5036a200341d0026a412010cf050d1520034185046a2210200341d0006a412010cf050d130240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c280b200141286a2903002116200341d0006a41186a200141196a290000370300200341d0006a41106a200141116a290000370300200341d0006a41086a200141096a290000370300200320012900013703504104210c200241046a280000210f20022d0000211020034198076a41026a2206200241036a2d00003a0000200341f0026a41086a2209200241106a290000370300200341f0026a41106a220d200241186a290000370300200341f0026a41186a2205200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d0020034198016a41026a20062d00003a0000200341e0056a41086a2009290300370300200341e0056a41106a200d290300370300200341e0056a41186a20052d00003a0000200320032f0198073b019801200320032903f0023703e00541002102200f210c0b200341f4006a41026a20034198016a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f0198013b0174200320032903e0053703a804024020020d00200341df026a200341b0046a290300370000200341e7026a200341b8046a29030037000041182110200341ef026a200341a8046a41186a2d00003a0000200320032f01743b01d0022003200c3600d302200320032903a8043700d7022003200341f6006a2d00003a00d202200341e0056a201610a7032003290390064202520d0741c58cc600210f0c280b419affc600210f410f2110200c0e0700010203040527000b20032802a804210f20032802ac0421100c260b418cffc600210f410e21100c250b4180ffc600210f410c21100c240b41f7fec600210f410921100c230b41e4fec600210f411321100c220b41d3fec600210f411121100c210b20032802e005210220034198016a200341e0056a41047241b40110cd051a200341a8046a20034198016a41b40110cd051a200320023602f002200341f0026a410472200341a8046a41b40110cd051a200341e5036a2210200341d0026a412010cf050d0a2010200341d0006a412010cf050d090240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c200b200341d0026a41186a200141196a290000370300200341d0026a41106a200141116a290000370300200341d0026a41086a200141096a290000370300200320012900013703d002200141246a2802002106200141286a28020021052001412c6a2802002104200141306a2802002109200141346a2802002108200141386a28020021072001413c6a280200210d200141c0006a280200210b200141c4006a280200210a4104210c200241046a280000210f20022d0000211020034198076a41026a2211200241036a2d00003a0000200341f0026a41086a2212200241106a290000370300200341f0026a41106a2213200241186a290000370300200341f0026a41186a2214200241206a2d00003a0000200320022f00013b0198072003200241086a2900003703f00241012102024020104101470d00200341f8006a41026a20112d00003a0000200341e0056a41086a2012290300370300200341e0056a41106a2013290300370300200341e0056a41186a20142d00003a0000200320032f0198073b0178200320032903f0023703e00541002102200f210c0b200341d0006a41026a200341f8006a41026a2d00003a0000200341a8046a41086a200341e0056a41086a290300370300200341a8046a41106a200341e0056a41106a290300370300200341a8046a41186a200341e0056a41186a2d00003a0000200320032f01783b0150200320032903e0053703a804024002400240024020020d0020034198016a410f6a200341a8046a41086a221029030037000020034198016a41176a200341a8046a41106a220f29030037000020034198016a411f6a200341a8046a41186a22112d00003a0000200320032f01503b0198012003200c36009b01200320032903a80437009f012003200341d0006a41026a2d00003a009a01200341f8006a41086a22024200370300200342003703784196d2c600411d200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341e0056a200341d0006a4110106920032d00e005210c200341f8006a41186a200341f9056a290000370300200341f8006a41106a200341f1056a2900003703002002200341e9056a290000370300200320032900e105370378200c4101460d01411e211041bfd2c600210f0c020b419affc600210f410f2110024002400240024002400240200c0e0700010203040507000b20032802a804210f20032802ac0421100c060b418cffc600210f410e21100c050b4180ffc600210f410c21100c040b41f7fec600210f410921100c030b41e4fec600210f411321100c020b41d3fec600210f411121100c010b200341f4006a41026a20032d007a22023a00002010200341f8006a410f6a290000370300200f200341f8006a41176a2900003703002011200341f8006a411f6a2d00003a0000200320032f0178220c3b01742003200329007f3703a804200328007b2112200320023a00e2052003200c3b01e005200320123600e305200341e0056a410f6a2010290300370000200341e0056a41176a200f290300370000200341e0056a411f6a20112d00003a0000200320032903a8043700e705024020034198016a200341e0056a412010cf05450d00410c211041b3d2c600210f0c010b200341f8006a41086a220242003703002003420037037841f1ccc6004120200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341003602e005200341d0006a4110200341e0056a1003210220032802e0052210417f460d012002450d010240024002402010450d0020022d0000220f41014b0d0041002110200f0e020201020b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b410121100b2002102020104102460d0120100d014117211041d1cfc600210f0b02402006450d002005450d00200610200b02402009450d002008450d00200910200b200d450d20200b450d20200d10200c200b200341f0026a41206a200a3602002003418c036a200b36020020034184036a2007360200200341f0026a41106a2008360200200341f0026a41086a20043602002003200d36028803200320093602fc02200320053602f402200320063602f002200341e0056a200341f0026a10b305024020032802e0054101470d00200341e0056a41086a280200211020032802e405210f0c200b200341a8046a41206a200341e0056a410472220241206a280200360200200341a8046a41186a200241186a290200370300200341a8046a41106a200241106a290200370300200341a8046a41086a200241086a290200370300200320022902003703a8044112101e2202450d06200241106a41002f00f8cf463b0000200241086a41002900f0cf46370000200241002900e8cf4637000020034292808080a0023702f402200320023602f00220032802a8042106200320032802b00422103602e005200341e0056a200341f0026a1063024020032802f402220c20032802f802220f6b2010490d0020032802f00221020c080b200f20106a2202200f490d0b200c41017422092002200920024b1b22094100480d0b02400240200c0d002009101e21020c010b20032802f002200c2009102221020b02402002450d00200320093602f402200320023602f0022009210c0c080b20094101102d000b200341f0026a41186a220c200141196a29000037030041112110200341f0026a41106a2206200141116a290000370300200341f0026a41086a2209200141096a290000370300200320012900013703f00241d3fec600210f20022d00000d1e200341e0056a41186a200c290300370300200341e0056a41106a2006290300370300200341e0056a41086a2009290300370300200320032903f0023703e005200341f8006a41086a22024200370300200342003703784196d2c600411d200341f8006a1000200341d0006a41086a200229030037030020032003290378370350200341103602ac042003200341d0006a3602a804200341e0056a200341a8046a1082034100210f0c1e0b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b41084108102d000b41224101102d000b41c4004101102d000b41124101102d000b41124101102d000b2003200f20106a22093602f8022002200f6a2006201010cd051a200341e0056a41186a22104200370300200341e0056a41106a220f4200370300200341e0056a41086a220d4200370300200342003703e00520022009200341e0056a1001200341f8006a41186a2010290300370300200341f8006a41106a200f290300370300200341f8006a41086a200d290300370300200320032903e0053703780240200c450d00200210200b0240200341f8006a412041e4fdc600410041001002417f460d00024020032802ac04450d00200610200b0240200341b8046a280200450d0020032802b40410200b4190cec600210f41192110200341c4046a280200450d1820032802c00410200c180b200341f9056a220220034198016a41186a290300370000200341f1056a221020034198016a41106a290300370000200341e9056a220f20034198016a41086a29030037000020032003290398013700e105200341013a00e005200341d0026a200341a8046a200341e0056a10b4052116200341e0056a41086a41003a0000200f20032903d0023700002010200341d0026a41086a2903003700002002200341d0026a41106a29030037000020034181066a200341d0026a41186a29030037000020034190066a20163703002003410d3a00e005200341e0056a1077024020032802ac04450d00200610200b0240200341a8046a41106a280200450d0020032802b40410200b200341c4046a280200450d1320032802c00410204100210f0c170b02400240024002404123101e2202450d00200241002900958e463700002002411f6a41002800b48e46360000200241186a41002900ad8e46370000200241106a41002900a58e46370000200241086a410029009d8e46370000200342a3808080b0043702ac04200320023602a8042010200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e40521172010450d03200210200c030b41234101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b42002117410821050b02402017422088a7220c450d0041002110200521024100210f0240024003400240024002402002290300220e2016510d0020100d01410021100c020b201041016a21100c010b200f20106b2206200c4f0d02200220104103746b220629030021152006200e370300200220153703000b200241086a2102200c200f41016a220f460d020c000b0b41b0d8c2002006200c102a000b2010417f6a200c4f0d00200c20106bad422086201742ffffffff0f838421170b0240024020050d00200341f8006a412010040c010b200341003602e805200342013703e00520032017422088a722023602a804200341a8046a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b2002410374210d410020032802e80522026b210f20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d06200641017422092010200920104b1b22094100480d060240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2017a7450d00200510200b0240024002400240024002404123101e2202450d00200241002900958e463700002002411f6a41002800b48e46360000200241186a41002900ad8e46370000200241106a41002900a58e46370000200241086a410029009d8e46370000200342a3808080b0043702ac04200320023602a804200341d0006a200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e405210e02402010450d00200210200b200320053602a8042003200e3702ac04200341a8046a2102200e422088a72210200ea72208470d040c030b41234101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b41002110200341003602b004200342083703a80441082105200341a8046a21020b200241046a28020022082010470d00201041016a220f2010490d042010410174220c200f200c200f4b1b220841ffffffff01712008470d042008410374220f4100480d040240024020100d00200f101e21100c010b20022802002010410374200f102221100b2010450d0120022010360200200241046a200836020020032802b004211020032802a80421050b200228020020104103746a20163703002003201041016a22023602b0040240024020050d00200341f8006a412010040c010b200341003602e805200342013703e005200320023602980120034198016a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b410020032802e80522026b210f201041037441086a210d20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d07200641017422092010200920104b1b22094100480d070240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2008450d00200510200b200341ed036a200341d0006a41086a290300220e370000200341f5036a200341e0006a2903002215370000200341fd036a200341e8006a29030022173700002003200329035022183700e503200341e0056a41086a41043a0000200341e9056a2018370000200341f1056a200e370000200341f9056a201537000020034181066a201737000020034190066a20163703002003410d3a00e005200341e0056a10770240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c170b200f4108102d000b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f50241ecd1c600210f412a21100c150b02400240024002404129101e2202450d00200241002900b88e46370000200241286a41002d00e08e463a0000200241206a41002900d88e46370000200241186a41002900d08e46370000200241106a41002900c88e46370000200241086a41002900c08e46370000200342a980808090053702ac04200320023602a8042010200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e40521172010450d03200210200c030b41294101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b42002117410821050b02402017422088a7220c450d0041002110200521024100210f0240024003400240024002402002290300220e2016510d0020100d01410021100c020b201041016a21100c010b200f20106b2206200c4f0d02200220104103746b220629030021152006200e370300200220153703000b200241086a2102200c200f41016a220f460d020c000b0b41b0d8c2002006200c102a000b2010417f6a200c4f0d00200c20106bad422086201742ffffffff0f838421170b0240024020050d00200341f8006a412010040c010b200341003602e805200342013703e00520032017422088a722023602a804200341a8046a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b2002410374210d410020032802e80522026b210f20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d04200641017422092010200920104b1b22094100480d040240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2017a7450d00200510200b0240024002400240024002404129101e2202450d00200241002900b88e46370000200241286a41002d00e08e463a0000200241206a41002900d88e46370000200241186a41002900d08e46370000200241106a41002900c88e46370000200241086a41002900c08e46370000200342a980808090053702ac04200320023602a804200341d0006a200341a8046a10ca0120032802b004210220032802a8042110200341e0056a41186a220f4200370300200341e0056a41106a220c4200370300200341e0056a41086a22064200370300200342003703e00520102002200341e0056a1001200341f8006a41186a200f290300370300200341f8006a41106a200c290300370300200341f8006a41086a2006290300370300200320032903e005370378024020032802ac04450d0020032802a80410200b200341003602e005200341f8006a4120200341e0056a1003210220032802e0052210417f460d022002450d02200320103602ac04200320023602a804200341e0056a200341a8046a10ec0120032802e0052205450d0120032902e405210e02402010450d00200210200b200320053602a8042003200e3702ac04200341a8046a2102200e422088a72210200ea72208470d040c030b41294101102d000b41ceb8c400413320034198076a41fcbfc4004184b9c400102e000b41002110200341003602b004200342083703a80441082105200341a8046a21020b200241046a28020022082010470d00201041016a220f2010490d022010410174220c200f200c200f4b1b220841ffffffff01712008470d022008410374220f4100480d020240024020100d00200f101e21100c010b20022802002010410374200f102221100b2010450d0120022010360200200241046a200836020020032802b004211020032802a80421050b200228020020104103746a20163703002003201041016a22023602b0040240024020050d00200341f8006a412010040c010b200341003602e805200342013703e005200320023602980120034198016a200341e0056a10630240024020020d0020032802e805210920032802e405210620032802e00521100c010b410020032802e80522026b210f201041037441086a210d20032802e40521062005210c0340200c290300210e024002402006200f6a4108490d0020032802e00521100c010b200241086a22102002490d05200641017422092010200920104b1b22094100480d050240024020060d002009101e21100c010b20032802e00520062009102221100b02402010450d00200320093602e405200320103602e005200921060c010b20094101102d000b200c41086a210c2003200241086a22093602e805201020026a200e370000200f41786a210f20092102200d41786a220d0d000b0b200341f8006a412020102009100502402006450d00201010200b2008450d00200510200b2003418d046a200341d0006a41086a220229030037000020034195046a200341e0006a22102903003700002003419d046a200341e8006a220f2903003700002003200329035037008504200341e0056a200341f0026a41b80110cd051a2016200341e0056a10a905200341e0056a41086a41053a0000200341e9056a2003290350370000200341f1056a2002290300370000200341f9056a201029030037000020034181066a200f29030037000020034190066a20163703002003410d3a00e005200341e0056a10774100210f0c150b200f4108102d000b1027000b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f50241bcd1c600210f413021100c120b410121024101210c02402006450d00200320043602e805200320053602e405200320063602e005200341c8006a2016200341e0056a10b50502402003280248220f0d0002402005450d00200610200b4100210c0c010b200328024c211002402005450d00200610200b4100210c41012111410121020c010b024002400240024002402009450d00200320073602e805200320083602e405200320093602e005200341c0006a2016200341e0056a10b6052003280240220f0d0102402008450d00200910200b410021020b200d0d01410021100c020b2003280244211002402008450d00200910200b41002102410121110c030b2003200a3602e8052003200b3602e4052003200d3602e005200341386a2016200341e0056a10b7052003280238220f0d01410121100b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020240200b450d00200d452010720d00200d10200b02402005450d002006450d00200c450d00200610200b4100210f024020080d000c130b024020090d000c130b024020020d000c130b200910200c120b200328023c2110410021110b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020b200c45210c20024521020b0240200b450d00200d450d002011450d00200d10200b02402005450d00200645200c720d00200610200b2008450d0e2009452002720d0e200910200c0e0b200320113602e805200320063602e405200320093602e005200341306a2016200341e0056a10b70502402003280230220f0d000240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f0c0e0b20032802342110410021020b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5022002450d0c0b2006450d0b200910200c0b0b200341286a2016200341d0006a10b50502402003280228220f0d000240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f024020032802540d000c0c0b200328025010200c0b0b200328022c21100b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020b2003280254450d08200328025010200c080b200341206a2016200341d0006a10b60502402003280220220f0d000240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5024100210f024020032802540d000c090b200328025010200c080b200328022421100b0240200341b4036a280200450d0020032802b00310200b0240200341c0036a280200450d0020032802bc0310200b0240200341cc036a280200450d0020032802c80310200b20032802d803200341dc036a280200200341e0036a28020010f5020b2003280254450d05200328025010200c050b2003200f20106a22143602f8022002200f6a2013201010cd051a200341e0056a41186a22104200370300200341e0056a41106a220f4200370300200341e0056a41086a22044200370300200342003703e00520022014200341e0056a1001200341f8006a41186a2010290300370300200341f8006a41106a200f290300370300200341f8006a41086a2004290300370300200320032903e0053703780240200c450d00200210200b0240200341f8006a412041e4fdc600410041001002417f460d00024020032802ac04450d00201310200b0240200341b8046a280200450d0020032802b40410200b4190cec600210f41192110200341c4046a280200450d0220032802c00410200c020b200320034198016a2015201610e003200341e0056a41186a200341186a290300370300200320032903103703f0052003200341086a2903003703e805200320032903003703e0052003200341e0056a3602f002200341f0026a109402200341e0056a41086a2202200e370300200341003a00e00520034198016a200341a8046a200341e0056a10b4052116200241003a0000200341e9056a200329039801370000200341f1056a20034198016a41086a290300370000200341f9056a20034198016a41106a29030037000020034181066a20034198016a41186a29030037000020034190066a20163703002003410d3a00e005200341e0056a1077024020032802ac04450d00201310200b0240200341a8046a41106a280200450d0020032802b40410200b0240200341c4046a280200450d0020032802c00410200b2011450d00201210200b4100210f0c030b410021020b02402011450d00201210200b2002450d010b0240200d450d00200b450d00200d10200b02402009450d002008450d00200910200b2006450d002005450d00200610200b024020012d0000417f6a220241084d0d00200241074b0d0002400240024002400240024020020e080001020304060605000b0240200141046a2802002202450d00200141086a280200450d00200210200b0240200141106a2802002202450d00200141146a280200450d00200210200b2001411c6a2802002202450d05200141206a280200450d05200210200c050b200141086a280200450d04200141046a28020010200c040b200141086a280200450d03200141046a28020010200c030b200141086a280200450d02200141046a28020010200c020b0240200141046a2802002202450d00200141086a280200450d00200210200b0240200141106a2802002202450d00200141146a280200450d00200210200b2001411c6a2802002202450d01200141206a280200450d01200210200c010b0240200141246a2802002202450d00200141286a280200450d00200210200b0240200141306a2802002202450d00200141346a280200450d00200210200b2001413c6a2802002202450d00200141c0006a280200450d00200210200b200020103602042000200f360200200341a0076a24000be30502067f047e230041d0006b2202240002400240024002404114101e2203450d00200341002900ce8a45370000200341106a41002800de8a45360000200341086a41002900d68a4537000020024294808080c002370224200220033602202001200241206a10ca012002280228210320022802202104200241306a41186a22054200370300200241306a41106a22064200370300200241306a41086a220742003703002002420037033020042003200241306a1001200241186a2005290300370300200241106a2006290300370300200241086a20072903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302204417f460d022003450d0220044110490d01200341086a290000210820032900002109200310200c030b41144101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b42002109420021080b02400240024002404118101e2203450d00200341002900e28a45370000200341106a41002900f28a45370000200341086a41002900ea8a45370000200242988080808003370224200220033602202001200241206a10ca012002280228210320022802202101200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020012003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302201417f460d022003450d0220014110490d01200341086a290000210a2003290000210b200310200c030b41184101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b4200210b4200210a0b2000200b20097c22093703002000200a20087c2009200b54ad7c370308200241d0006a24000bbb0403027f027e047f230041106b2203240020034100360208200342013703002003200236020c2003410c6a20031063024002402002450d00200120024106746a210403402001411c6a200310ca01200141086a2903002105200129030021060240024020032802042207200328020822026b4110490d00200328020021070c010b200241106a22082002490d03200741017422022008200220084b1b22024100480d030240024020070d002002101e21070c010b200328020020072002102221070b02402007450d002003200236020420032007360200200328020821020c010b20024101102d000b200720026a22072005370008200720063700002003200241106a3602082001280210210220032001280218220736020c2003410c6a2003106302402007450d00200741306c21090340200241106a200310ca01200241086a2903002105200229030021060240024020032802042208200328020822076b4110490d00200328020021080c010b200741106a220a2007490d0520084101742207200a2007200a4b1b22074100480d050240024020080d002007101e21080c010b200328020020082007102221080b02402008450d002003200736020420032008360200200328020821070c010b20074101102d000b200241306a2102200820076a22082005370008200820063700002003200741106a360208200941506a22090d000b0b200141c0006a22012004470d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000f0b1027000bf77f05017f027e067f0a7e047f230041d0066b2203240002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012d00000e12000102090a0b0c0d0e0f1011121314151617000b200341dc056a4101360200200342013702cc0520034184e6c6003602c805200341043602dc022003418cb4c6003602d8022003200341d8026a3602d805200341c8056a41c0f0c4001033000b200141106a2903002104200141086a290300210541042106200241046a280000210720022d0000210820034198046a41026a2209200241036a2d00003a0000200341c8056a41086a220a200241186a290000370300200341c8056a41106a220b200241206a2d00003a0000200320022f00013b0198042003200241106a2900003703c80541012101200241086a290000210c024020084101470d00200341f8046a41026a20092d00003a0000200341d8026a41086a200a290300370300200341d8026a41106a200b2d00003a0000200320032f0198043b01f804200320032903c8053703d80241002101200721060b2003419c026a41026a200341f8046a41026a2d00003a000020034188026a41086a200341d8026a41086a29030037030020034188026a41106a200341d8026a41106a2d00003a0000200320032f01f8043b019c02200320032903d802370388020240024020010d00200341b7056a20034188026a41086a290300370000200341bf056a20034198026a2d00003a0000200320032f019c023b01a0052003200c3700a705200320063600a30520032003290388023700af0520032003419e026a2d00003a00a205200341306a200341a0056a1089034182f1c4002101412721022003290330200341306a41086a29030084500d43200341a0056a10ff02450d43200341286a10e10420032802282106200341206a10e10420032802204103470d0141d0f0c4002101411421020c430b419affc6002101410f2102024020060e0700030405063843000b200c422088a72102200ca721010c420b41a9f1c400210141202102200641034b0d410240024020060e0401434300010b41e988c700412b41ccf1c4001028000b411f101e2201450d162001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f470d004200210c200341c8056a41086a22014200370300200342003703c80541dcf1c400411f200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321010240024020032802c8052202417f470d0042e400210d0c010b024020010d0042e400210d0c010b20024110490d19200141086a290000210c2001290000210d200110200b200d200556200c200456200c2004511b450d0041e4f0c4002101411e21020c420b200341d8026a41186a200341a0056a41186a290300370300200341d8026a41106a200341a0056a41106a290300370300200341d8026a41086a200341a0056a41086a290300370300200320032903a0053703d8024122101e2201450d18200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b200341c8056a200341a0026a10e204200341e0056a290300210e200341c8056a41206a290300210f41fbf1c40021010240200341d8026a200520032903d005420020032903c80542015122021b221020052010200554200341d8056a290300420020021b220c200454200c2004511b22061b220d7d22112004200c200420061b22127d2005200d54ad7d220410ea04450d00419df2c4002101200341d8026a20112004108a030d002003200341d8026a10d704200341186a290300211320032903102105200341086a2903002114200329030021154122101e2201450d1a200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210620034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042006200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f460d004122101e2201450d1c200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210620034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042006200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b4110101e2201450d1d20012010200d7d3700002001200c20127d2010200d54ad7d37000820014110412010222201450d1e2001200e420020021b370010200141186a200f420020021b370000200341a0026a4120200141201005200110200b411f101e2201450d1e2001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702cc05200320013602c805200341d8026a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b200341a0026a412041e4fdc600410041001002417f470d3f200341c8056a41086a22014200370300200342003703c8054195dec400411a200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a1003210120032802c8052202417f460d202001450d20200320023602fc04200320013602f804200341c8056a200341f8046a10e30120032802c8052206450d1f20032902cc05210c02402002450d00200110200b200341c8056a41186a200341d8026a41186a290300370300200341c8056a41106a200341d8026a41106a290300370300200341c8056a41086a200341d8026a41086a290300370300200320032903d8023703c8050240200c422088a72202200ca72208460d00200341c8056a21010c3f0b200341c8056a210120082008470d3e0c3d0b412221020c410b200141306a2903002104200141286a2903002105200341c4016a41026a200141036a2d00003a0000200341e8016a41086a200141186a290000370300200341e8016a41106a200141206a2d00003a0000200320012f00013b01c4012003200141106a2900003703e80141042106200141046a2800002116200141086a290000210d200241046a280000210720022d0000210820034198046a41026a2209200241036a2d00003a0000200341c8056a41086a220a200241186a290000370300200341c8056a41106a220b200241206a2d00003a0000200320022f00013b0198042003200241106a2900003703c80541012101200241086a290000210c024020084101470d00200341a0056a41026a20092d00003a0000200341d8026a41086a200a290300370300200341d8026a41106a200b2d00003a0000200320032f0198043b01a005200320032903c8053703d80241002101200721060b200341d4026a41026a200341a0056a41026a2d00003a0000200341c0026a41086a200341d8026a41086a290300370300200341c0026a41106a200341d8026a41106a2d00003a0000200320032f01a0053b01d402200320032903d8023703c002024020010d002003418f056a200341c0026a41086a29030037000020034197056a200341d0026a2d00003a0000200320032f01d4023b01f8042003200c3700ff04200320063600fb04200320032903c002370087052003200341d6026a2d00003a00fa04200341d0006a200341f8046a10890341caf3c4002101412621022003290350200341d0006a41086a29030084500d41200341f8046a10ff02450d41200341c8006a10e10420032802482106200341c0006a10e10441d0f0c40021014114210220032802404103460d4141f0f3c4002101411c21022006417f6a220641024b0d4120060e03064105060b419affc6002101410f2102024020060e0700010203043641000b200c422088a72102200ca721010c400b418cffc6002101410e21020c3f0b4180ffc6002101410c21020c3e0b41f7fec6002101410921020c3d0b41e4fec6002101411321020c3c0b41e988c700412b41c0f2c4001028000b4200210c200341c8056a41086a22014200370300200342003703c80541d0f2c400411e200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321010240024020032802c8052202417f470d00420a21100c010b024020010d00420a21100c010b20024110490d1a200141086a290000210c20012900002110200110200b41b6f3c4002101411421022010200556200c200456200c2004511b0d3a200341a0056a41186a200341f8046a41186a290300370300200341a0056a41106a200341f8046a41106a290300370300200341a0056a41086a200341f8046a41086a290300370300200320032903f8043703a005200341e0036a41026a200341c4016a41026a22012d00003a0000200341f0036a41086a200341e8016a41086a2202290300370300200341f0036a41106a200341e8016a41106a22062d00003a0000200320032f01c4013b01e003200320032903e8013703f0032003200d3700cf05200320163600cb05200320012d00003a00ca05200320032f01c4013b01c805200341df056a2002290300370000200341e7056a20062d00003a0000200320032903e8013700d7054115101e2201450d1a200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702dc02200320013602d8022003200341d8026a36029804200341c8056a20034198046a10b90120032802d802210120032802e002210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042001200220034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802dc02450d0020032802d80210200b0240200341a0026a412041e4fdc600410041001002417f460d0041a2f3c4002101411421020c3b0b4122101e2201450d1b200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b200341c8056a200341a0026a10e204200341c8056a41106a290300210f20032903d00521150240200341a0056a2005200341c8056a41186a290300420020032903c80542015122061b221120052011200554200341c8056a41206a290300420020061b220c200454200c2004511b22011b22107d22122004200c200420011b220e7d2005201054ad7d220410ea040d0041fbf1c4002101412221020c3b0b0240200341a0056a20122004108a03450d004183f3c4002101411f21020c3b0b200341c8056a41086a22014200370300200342003703c80541afdec400411b200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a1003210120032802c8052202417f460d1d2001450d1d200320023602dc02200320013602d802200341c8056a200341d8026a10e30120032802c8052208450d1c20032902cc05210502402002450d00200110200b2005422088a721012005a721020c340b200341c8016a41186a200141196a290000370300200341c8016a41106a200141116a290000370300200341c8016a41086a200141096a290000370300200320012900013703c801200341e8016a41186a200141396a290000370300200341e8016a41106a200141316a290000370300200341e8016a41086a200141296a2900003703002003200141216a2900003703e801200141c4006a2802002109200141c8006a2802002107200141cc006a280200210a41042106200241046a280000210b20022d0000210820034198046a41026a2216200241036a2d00003a0000200341c8056a41086a2217200241186a290000370300200341c8056a41106a2218200241206a2d00003a0000200320022f00013b0198042003200241106a2900003703c80541012101200241086a290000210c024020084101470d00200341a0056a41026a20162d00003a0000200341d8026a41086a2017290300370300200341d8026a41106a20182d00003a0000200320032f0198043b01a005200320032903c8053703d80241002101200b21060b200341e0036a41026a200341a0056a41026a2d00003a0000200341f0036a41086a200341d8026a41086a290300370300200341f0036a41106a200341d8026a41106a2d00003a0000200320032f01a0053b01e003200320032903d8023703f0030240024020010d00200341d4026a41026a200341e0036a41026a2d00003a0000200341c0026a41086a200341f0036a41086a290300370300200341c0026a41106a200341f0036a41106a2d00003a0000200320032f01e0033b01d402200320032903f0033703c002200a41204d0d01410e21024181f5c40021010c340b419affc6002101410f210202400240024002400240024020060e0700010203040539000b200c422088a72102200ca721010c380b418cffc6002101410e21020c370b4180ffc6002101410c21020c360b41f7fec6002101410921020c350b41e4fec6002101411321020c340b41d3fec6002101411121020c330b200341e8006a10e10420032802682101200341e0006a10e104024020032802604103470d004114210241d0f0c40021010c330b02402001417e6a220141014d0d00411f2102418ff5c40021010c330b0240024020010e020100010b41e988c700412b418cf4c4001028000b2003419c026a41026a200341d4026a41026a2d00003a000020034188026a41086a200341c0026a41086a29030037030020034188026a41106a200341c0026a41106a2d00003a0000200320032f01d4023b019c02200320032903c00237038802200341f0036a41186a200341c8016a41186a290300370300200341f0036a41106a200341c8016a41106a290300370300200341f0036a41086a200341c8016a41086a290300370300200320032903c8013703f003200341f8046a41186a200341e8016a41186a290300370300200341f8046a41106a200341e8016a41106a290300370300200341f8046a41086a200341e8016a41086a290300370300200320032903e8013703f8044115101e2201450d1d200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702cc05200320013602c8052003200341c8056a3602d802200341f0036a200341d8026a10b90120032802c805210120032802d005210220034198046a41186a2208420037030020034198046a41106a220b420037030020034198046a41086a2216420037030020034200370398042001200220034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a200b290300370300200341a0026a41086a201629030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f470d00419cf4c4002101411421020c310b200341d8026a200341f0036a10eb04024020032d00b803450d0041b0f4c4002101411521020c310b200341df056a20034190026a290300370000200341c8056a411f6a20034198026a2d00003a0000200320032f019c023b01c8052003200c3700cf05200320063600cb0520032003290388023700d70520032003419e026a2d00003a00ca050240200341c8056a200341d8026a41206a412010cf05450d0041c5f4c4002101411a21020c310b411f101e2201450d1e2001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702cc05200320013602c805200341f8046a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2208420037030020034198046a41106a220b420037030020034198046a41086a2216420037030020034200370398042002200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a200b290300370300200341a0026a41086a201629030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f470d0041dff4c4002101412221020c310b02400240200a0d00410121010c010b200a101e2201450d200b20012009200a10cd05210b200341a0056a41186a200341f8046a41186a290300370300200341a0056a41106a200341f8046a41106a290300370300200341a0056a41086a200341f8046a41086a290300370300200320032903f8043703a005200341a0026a200341a0056a10de01024020032802a402220820032802a80222016b200a490d0020032802a00221020c300b2001200a6a22022001490d37200841017422162002201620024b1b22164100480d370240024020080d002016101e21020c010b20032802a00220082016102221020b02402002450d00200320163602a402200320023602a002201621080c300b20164101102d000b20022d00000d2d200141046a2802002101107920014f0d2c200341c8056a41086a22024200370300200342003703c80541a1dfc4004115200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341003a00c8054101101e2202450d1f200220032d00c8053a000020024101410510222202450d202002200136000120034198046a4110200241051005200210200c370b20022d00000d2c200141046a2802002101107920014f0d2b200341c8056a41086a22024200370300200342003703c80541a1dfc4004115200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341023a00c8054101101e2202450d20200220032d00c8053a000020024101410510222202450d212002200136000120034198046a4110200241051005200210200c360b20022d00000d2b200141046a2802002101107920014f0d2a200341c8056a41086a22024200370300200342003703c80541a1dfc4004115200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341013a00c8054101101e2202450d21200220032d00c8053a000020024101410510222202450d222002200136000120034198046a4110200241051005200210200c350b20022d00000d2a200141046a2802002101200341f0006a10e10420032802704103470d282001450d27200341c8056a41086a22024200370300200342003703c8054181dfc4004120200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c340b20022d00000d29200141046a2802002101200341f8006a10e10420032802784103470d272001450d26200341c8056a41086a22024200370300200342003703c80541aef5c400411c200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c330b20022d00000d28200141046a280200210120034180016a10e1042003280280014103470d262001450d25200341c8056a41086a22024200370300200342003703c80541caf5c400411f200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c320b20022d00000d27200141106a290300210c200141086a290300210420034188016a10e1042003280288014103470d25200341c8056a41086a22014200370300200342003703c80541dcf1c400411f200341c8056a100020034198046a41086a2001290300370300200320032903c805370398042003200c3703d005200320043703c80520034198046a4110200341c8056a411010050c310b20022d00000d26200141046a280200210120034190016a10e1042003280290014103470d24024020010d0041e0f6c4002101412021020c320b200341c8056a41086a22024200370300200342003703c80541e9f5c400411f200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c300b20022d00000d25200141046a280200210120034198016a10e1042003280298014103470d23024020010d004180f7c4002101411b21020c310b200341c8056a41086a22024200370300200342003703c805419ff0c400411e200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321020240024020032802c8052206417f470d00411421060c010b024020020d00411421060c010b20064104490d1e20022800002106200210200b0240200620014f0d00419bf7c4002101413021020c310b200341c8056a41086a22024200370300200342003703c8054184f0c400411b200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c2f0b20022d00000d24200141046a2802002101200341a0016a10e10420032802a0014103470d22200341c8056a41086a22024200370300200342003703c8054184f0c400411b200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a100321020240024020032802c8052206417f470d00410a21060c010b024020020d00410a21060c010b20064104490d1e20022800002106200210200b0240200620014d0d0041cbf7c4002101413021020c300b200341c8056a41086a22024200370300200342003703c805419ff0c400411e200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013602c80520034198046a4110200341c8056a410410050c2e0b20022d00000d23200141106a290300210c200141086a2903002104200341a8016a10e10420032802a8014103470d21200341c8056a41086a22014200370300200342003703c80541d0f2c400411e200341c8056a100020034198046a41086a2001290300370300200320032903c805370398042003200c3703d005200320043703c80520034198046a4110200341c8056a411010050c2d0b20022d00000d22200341b0016a10e104024020032802b0014103470d0041fbf7c4002101412421020c2e0b200341003602f001200342083703e801200341c8056a41086a22014200370300200342003703c80541afdec400411b200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804200341003602c80520034198046a4110200341c8056a1003210120032802c8052202417f460d1d2001450d1d200320023602dc02200320013602d802200341c8056a200341d8026a10e30120032802c8052219450d1c20032902cc05210d2002450d1e200110200c1e0b20022d00000d21200341c8056a10f702200341b8016a200341c8056a10a50320032802bc01210220032802b80121010c2c0b20022d00000d2020012d00012101200341c8056a41086a22024200370300200342003703c80541aac2c4004119200341c8056a100020034198046a41086a2002290300370300200320032903c80537039804200320013a00c80520034198046a4110200341c8056a410110050c2a0b411f4101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41224101102d000b41224101102d000b41224101102d000b41104101102d000b41204101102d000b411f4101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b200341c8056a41186a200341d8026a41186a290300370300200341c8056a41106a200341d8026a41106a290300370300200341c8056a41086a200341d8026a41086a290300370300200320032903d8023703c8054100210841012106200341c8056a2101410021020c1c0b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41154101102d000b41224101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b410121084100210242002105410021010c160b41154101102d000b411f4101102d000b200a4101102d000b41014101102d000b41054101102d000b41014101102d000b41054101102d000b41014101102d000b41054101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b4200210d410121190b02400240200d422088a722010d00410021164108210a0c010b2001410574210b200341c8056a41e1006a21094108210a4100210641002108201921010240024002400340200141086a290000210c200141106a290000210420012900002105200341c8056a41186a200141186a290000370300200341c8056a41106a2004370300200341c8056a41086a200c370300200320053703c8054115101e2202450d01200241002900eef2443700002002410d6a41002900fbf244370000200241086a41002900f6f24437000020034295808080d0023702dc02200320023602d8022003200341d8026a36029804200341c8056a20034198046a10b90120032802d802210220032802e002210720034198046a41186a2216420037030020034198046a41106a2217420037030020034198046a41086a2218420037030020034200370398042002200720034198046a1001200341a0026a41186a2016290300370300200341a0026a41106a2017290300370300200341a0026a41086a201829030037030020032003290398043703a002024020032802dc02450d0020032802d80210200b200341003602c805200341a0026a4120200341c8056a100321160240024020032802c8052202417f470d00410221070c010b2003200236029c042003201636029804200341c8056a20034198046a10da0320032d00a80622074102460d03200341d8026a200341c8056a41e00010cd051a200341f8046a411f6a2009411f6a290000370000200341f8046a41186a200941186a290000370300200341f8046a41106a200941106a290000370300200341f8046a41086a200941086a290000370300200320092900003703f8042002450d00201610200b200341c8056a200341d8026a41e00010cd051a200341a0056a411f6a2202200341f8046a411f6a290000370000200341a0056a41186a2216200341f8046a41186a290300370300200341a0056a41106a2217200341f8046a41106a290300370300200341a0056a41086a2218200341f8046a41086a290300370300200320032903f8043703a0050240024020074102470d004100210720034198046a410041e00010cc051a0c010b20034198046a200341c8056a41e00010cd051a200341f0036a411f6a2002290000370000200341f0036a41186a2016290300370300200341f0036a41106a2017290300370300200341f0036a41086a2018290300370300200320032903a0053703f0030b02400240024020082006460d0020062116200821020c010b200641016a22022006490d13200641017422162002201620024b1b2216ad4288017e220c422088a70d13200ca722024100480d130240024020060d002002101e210a0c010b200a20064188016c20021022210a0b200a450d012003200a3602e80120062102201621060b200141206a2101200a20024188016c6a20034198046a41e00010cd05220220073a0060200241e1006a20032903f003370000200241e9006a200341f0036a41086a290300370000200241f1006a200341f0036a41106a290300370000200241f9006a200341f0036a41186a29030037000020024180016a200341f0036a411f6a290000370000200841016a2108200b41606a220b450d040c010b0b20024108102d000b41154101102d000b41ceb8c4004133200341c8016a41fcbfc4004184b9c400102e000b200320163602ec01200320083602f0010b0240200da7450d00201910200b200342003702dc02200341908cc5003602d802200341e8016a200341d8026a410010ec0420032802e002210720032802d80221010240024020032802dc0222060d00200121020c010b2006210820012102034020022802a80821022008417f6a22080d000b0340200120012f01064102746a41a8086a28020021012006417f6a22060d000b0b200341e4056a20012f0106360200200341e0056a4100360200200341dc056a2001360200200320073602e805200341003602d805200342003703d005200320023602cc05200341003602c805200341c8056a10ed042016450d0d200a10200c0d0b41cbf6c4002101411521020c0d0b41a7f6c4002101412421020c0c0b4188f6c4002101411f21020c0b0b41d3fec6002101411121020c0a0b200220016a200b200a10cd051a20032001200a6a22013602a80220034198046a41186a2216420037030020034198046a41106a2217420037030020034198046a41086a2218420037030020034200370398042002200120034198046a1001200341c8056a41186a2016290300370300200341c8056a41106a2017290300370300200341c8056a41086a201829030037030020032003290398043703c80541bdf1c1002101024020034198036a200341c8056a412010cf050d00200341b9036a20032903a005370000200341c1036a200341a0056a41086a290300370000200341c9036a200341a0056a41106a290300370000200341d1036a200341a0056a41186a290300370000200341013a00b803410021010b02402008450d00200210200b0240024020010d00200341c8056a200341d8026a41880110cd051a200341a0056a41186a200341f0036a41186a290300370300200341a0056a41106a200341f0036a41106a290300370300200341a0056a41086a200341f0036a41086a290300370300200320032903f0033703a0054115101e2201450d01200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702e403200320013602e0032003200341e0036a36029804200341a0056a20034198046a10b90120032802e003210120032802e803210220034198046a41186a2208420037030020034198046a41106a2216420037030020034198046a41086a2217420037030020034200370398042001200220034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2016290300370300200341a0026a41086a201729030037030020032003290398043703a002024020032802e403450d0020032802e00310200b2003412036029c042003200341a0026a36029804200341c8056a20034198046a10c1030240200a450d00200b10200b4100210102402007450d00200910200b0c030b410c2102200a450d01200b10200c010b41154101102d000b2007450d00200910200b20010d07200341d4056a200c370200200341c8056a41086a2006360200200341dc056a20032903c002370200200341ed056a20032903c801370000200341e4056a200341c0026a41086a290300370200200341ec056a200341c0026a41106a2d00003a0000200341f5056a200341c8016a41086a290300370000200341fd056a200341c8016a41106a29030037000020034185066a200341c8016a41186a2903003700002003410a3a00cc052003410a3a00c805200320032f01d4023b00cd052003200341d6026a2d00003a00cf05200341a5066a200341e8016a41186a2903003700002003419d066a200341e8016a41106a29030037000020034195066a200341e8016a41086a2903003700002003418d066a20032903e801370000200341c8056a10770c060b2007450d06200910200c060b200341b7026a200341f0036a41086a290300370000200341bf026a200341f0036a41106a2d00003a0000200320032f01e0033b01a0022003200d3700a702200320163600a302200320032903f0033700af022003200341e2036a2d00003a00a20202400240024020012002460d00200221070c010b024020022005a72207470d00200241016a22012002490d06200241017422072001200720014b1b220741ffffff3f712007470d06200741057422014100480d060240024020020d002001101e21080c010b200820024105742001102221080b2008450d0220054280808080708321050b2005422088a721010b200820014105746a220220032903a002370000200241186a200341a0026a41186a290300370000200241106a200341a0026a41106a290300370000200241086a200341a0026a41086a290300370000200341c8056a41086a22024200370300200342003703c80541afdec400411b200341c8056a100020034198046a41086a2002290300370300200320032903c805370398040240024020080d0020034198046a411010040c010b200341003602d005200342013703c8052003200141016a22023602d802200341d8026a200341c8056a106302402002450d00200141057441206a21022008210103402003200341c8056a3602d8022001200341d8026a10b901200141206a2101200241606a22020d000b0b20032802cc05210120034198046a411020032802c805220220032802d005100502402001450d00200210200b2007450d00200810200b2003419c026a41026a2201200341e0036a41026a22022d00003a000020034188026a41086a2208200341f0036a41086a220729030037030020034188026a41106a2209200341f0036a41106a220a2d00003a0000200320032f01e0033b019c02200320032903f0033703880220034180066a200341a0056a41186a290300370300200341f8056a200341a0056a41106a290300370300200341f0056a200341a0056a41086a2903003703002003418f066a200d3700002003418b066a2016360000200320032903a0053703e8052003418a066a20022d00003a0000200320032f01e0033b01880620034197066a20032903f0033700002003419f066a2007290300370000200341a7066a200a2d00003a0000200341c8056a41186a200e370300200320103703d805200320043703d005200320123703c805200341003a00a8062003200d3700df02200320163600db02200320012d00003a00da02200320032f019c023b01d802200341ef026a2008290300370000200341f7026a20092d00003a000020032003290388023700e702024002400240024002404115101e2201450d00200141002900eef2443700002001410d6a41002900fbf244370000200141086a41002900f6f24437000020034295808080d0023702cc01200320013602c8012003200341c8016a36029804200341d8026a20034198046a10b90120032802c801210120032802d001210220034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042001200220034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc01450d0020032802c80110200b200341203602dc022003200341a0026a3602d802200341c8056a200341d8026a10c1034122101e2201450d01200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042002200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b0240200341a0026a412041e4fdc600410041001002417f460d004122101e2201450d03200141002900cade44370000200141206a41002f00eade443b0000200141186a41002900e2de44370000200141106a41002900dade44370000200141086a41002900d2de44370000200342a2808080a0043702cc05200320013602c805200341a0056a200341c8056a10ca0120032802d005210120032802c805210220034198046a41186a2208420037030020034198046a41106a2207420037030020034198046a41086a2209420037030020034200370398042002200120034198046a1001200341a0026a41186a2008290300370300200341a0026a41106a2007290300370300200341a0026a41086a200929030037030020032003290398043703a002024020032802cc05450d0020032802c80510200b4110101e2201450d0420012015420020061b3700002001200f420020061b37000820014110412010222201450d052001201120107d370010200141186a200c200e7d2011201054ad7d370000200341a0026a4120200141201005200110200b200341d5056a200341f8046a41086a290300370000200341dd056a200341f8046a41106a290300370000200341e5056a20034190056a290300370000200341ed056a20032f01c4013b0000200341ef056a200341c6016a2d00003a0000200341f4056a200d370200200341f0056a2016360200200341093a00cc052003410a3a00c805200320032903f8043700cd05200341fc056a20032903e80137020020034184066a200341e8016a41086a2903003702002003418c066a200341e8016a41106a2d00003a0000200341c8056a10770c0a0b41154101102d000b41224101102d000b41224101102d000b41104101102d000b41204101102d000b20014101102d000b200841016a22072008490d02200841017422092007200920074b1b220741ffffff3f712007470d02200741057422094100480d020240024020080d002009101e21060c010b200620084105742009102221060b2006450d08200721080b200641206a2006200241057410ce051a200641186a200141186a290000370000200641106a200141106a290000370000200641086a200141086a29000037000020062001290000370000200341c8056a41086a22014200370300200342003703c8054195dec400411a200341c8056a100020034198046a41086a2001290300370300200320032903c80537039804024020060d0020034198046a411010040c010b200341003602d005200342013703c8052003200241016a22013602f804200341f8046a200341c8056a106302402001450d00200241057441206a21022006210103402001200341c8056a10ca01200141206a2101200241606a22020d000b0b20032802cc05210120034198046a411020032802c805220220032802d005100502402001450d00200210200b2008450d00200610200b200341c8056a41186a200341d8026a41186a290300370300200341c8056a41106a200341d8026a41106a290300370300200341c8056a41086a200341d8026a41086a290300370300200320032903d8023703c805411f101e2201450d032001410029008bc944370000200141176a41002900a2c944370000200141106a410029009bc944370000200141086a4100290093c9443700002003429f808080f0033702fc04200320013602f804200341c8056a200341f8046a10ca01200328028005210120032802f804210220034198046a41186a2206420037030020034198046a41106a2208420037030020034198046a41086a2207420037030020034200370398042002200120034198046a1001200341a0026a41186a2006290300370300200341a0026a41106a2008290300370300200341a0026a41086a200729030037030020032003290398043703a002024020032802fc04450d0020032802f80410200b4110101e2201450d042001201520117c220c3700002001201420047c200c201554ad7c37000820014110412010222201450d0520012005200d7c220c370010200141186a201320127c200c200554ad7c370000200341a0026a412020014120100520011020200341dd056a200341b0056a290300370000200341e5056a200341a0056a41186a290300370000200341083a00cc05200341d5056a200341a0056a41086a2903003700002003410a3a00c805200320032903a0053700cd05200341c8056a10770c010b1027000b410021010b2000200236020420002001360200200341d0066a24000f0b411f4101102d000b41104101102d000b41204101102d000b20094101102d000bfd0202057f027e230041d0006b2202240002400240024002404114101e2203450d00200341002900ce8a45370000200341106a41002800de8a45360000200341086a41002900d68a4537000020024294808080c002370224200220033602202001200241206a10ca012002280228210320022802202101200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020012003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302201417f460d022003450d0220014110490d01200341086a290000210720032900002108200310200c030b41144101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b42002108420021070b2000200837030020002007370308200241d0006a24000bd60602067f047e230041e0006b2203240002400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370234200320043602302000200341306a10ca012003280238210420032802302105200341c0006a41186a22064200370300200341c0006a41106a22074200370300200341c0006a41086a220842003703002003420037034020052004200341c0006a1001200341106a41186a2006290300370300200341106a41106a2007290300370300200341106a41086a20082903003703002003200329034037031002402003280234450d00200328023010200b20034100360240200341106a4120200341c0006a1003210420032802402205417f460d022004450d0220054110490d01200441086a29000021092004290000210a200410200c030b41144101102d000b41ceb8c4004133200341c0006a41fcbfc4004184b9c400102e000b4200210a420021090b41c6bec50021040240200a2001542205200920025420092002511b0d00200341086a20004104200a20017d220a200920027d2005ad7d2209109404200328020822040d0002400240024002404118101e2204450d00200441002900e28a45370000200441106a41002900f28a45370000200441086a41002900ea8a45370000200342988080808003370234200320043602302000200341306a10ca012003280238210420032802302105200341c0006a41186a22064200370300200341c0006a41106a22074200370300200341c0006a41086a220842003703002003420037034020052004200341c0006a1001200341106a41186a2006290300370300200341106a41106a2007290300370300200341106a41086a20082903003703002003200329034037031002402003280234450d00200328023010200b20034100360240200341106a4120200341c0006a1003210420032802402205417f460d022004450d0220054110490d01200441086a290000210b2004290000210c200410200c030b41184101102d000b41ceb8c4004133200341c0006a41fcbfc4004184b9c400102e000b4200210c4200210b0b2000200c20017c2201200b20027c2001200c54ad7c1094032000200a2009109303410021040b200341e0006a240020040bf20803037f027e037f230041106b22022400200241003602082002420137030020002802102103024002400240024002400240024002404104101e2204450d0020024284808080c0003702042002200436020020042003360000200041306a200210ca01200041086a2903002105200029030021060240024020022802042203200228020822046b4110490d00200228020021030c010b200441106a22072004490d06200341017422042007200420074b1b22044100480d060240024020030d002004101e21030c010b200228020020032004102221030b2003450d022002200436020420022003360200200228020821040b200320046a22032005370008200320063700002002200441106a3602082000280214210820022000411c6a280200220436020c2002410c6a200210630240024020022802042207200228020822036b2004490d00200228020021070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b200228020020072003102221070b2007450d032002200336020420022007360200200228020821030b2002200320046a360208200720036a2008200410cd051a200028022021082002200041286a280200220436020c2002410c6a200210630240024020022802042207200228020822036b2004490d00200228020021070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b200228020020072003102221070b2007450d042002200336020420022007360200200228020821030b2002200320046a360208200720036a2008200410cd051a2002200236020c200041d0006a2002410c6a10b901200028022c2107024020022802042203200228020822046b4104490d00200228020021030c050b200441046a22082004490d05200341017422042008200420084b1b22044100480d050240024020030d002004101e21030c010b200228020020032004102221030b02402003450d002002200436020420022003360200200228020821040c050b20044101102d000b41044101102d000b20044101102d000b20034101102d000b20034101102d000b2002200441046a360208200320046a200736000020002d0070220041054b0d02024002400240024002400240024020000e06000102030405000b410021040c050b410121040c040b410221040c030b410321040c020b410421040c010b410521040b200220043a000c0240200228020420022802082200460d00200228020021030c020b200041016a22032000490d00200041017422072003200720034b1b22074100480d000240024020000d002007101e21030c010b200228020020002007102221030b02402003450d002002200736020420022003360200200228020821000c020b20074101102d000b1027000b2002200041016a360208200320006a20043a00000b2002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bb60501047f230041a0026b220224000240024002404113101e2203450d002003410f6a4100280093fd41360000200341086a410029008cfd4137000020034100290084fd4137000020034113412610222203450d0120032001360013200241a0016a41186a22014200370300200241a0016a41106a22044200370300200241a0016a41086a22054200370300200242003703a00120034117200241a0016a100120024180016a41186a200129030037030020024180016a41106a200429030037030020024180016a41086a2005290300370300200220022903a0013703800120031020200241003602a00120024180016a4120200241a0016a100321010240024020022802a0012204417f470d00410621030c010b024020010d00410621030c010b2002200436029c022002200136029802200241a0016a20024198026a10b80320022d00900222034106460d03200241106a200241a0016a41f00010cd051a200220024194026a28000036000b20022002280091023602082004450d00200110200b200241a0016a200241106a41f00010cd051a2002200228000b36009b0220022002280208360298020240024020034106470d002000420037033020004200370300200042003703502000410036022c20004201370214200041c8006a4200370300200041c0006a4200370300200041386a4200370300200041086a4200370300200041106a4100360200200041246a42003702002000411c6a428080808010370200200041d8006a4200370300200041e0006a4200370300200041e8006a4200370300200041f0006a41003a00000c010b2000200241a0016a41f00010cd05220020033a00702000200228029802360071200041f4006a200228009b023600000b200241a0026a24000f0b41134101102d000b41264101102d000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000bc50101047f230041206b2201240010792102200141106a41086a22034200370300200142003703104197fdc1004116200141106a1000200141086a2003290300370300200120012903103703002001410036021020014110200141106a1003210302400240024020012802102204417f470d0041900121040c010b024020030d0041900121040c010b20044104490d0120032800002104200310200b200141206a24002002200420006a4f0f0b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000bcf0302067f047e230041d0006b2204240002400240024002404118101e2205450d00200541002900e28a45370000200541106a41002900f28a45370000200541086a41002900ea8a45370000200442988080808003370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210a2005290000210b200510200c030b41184101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210b4200210a0b2001200b2002200b200b200256200a200356200a2003511b22051b220c7d200a2003200a20051b220d7d200b200c54ad7d109403200041186a2003200d7d2002200c54ad7d37030020002002200c7d3703102000200d3703082000200c370300200441d0006a24000b920602067f057e230041d0006b2203240002400240024002404118101e2204450d00200441002900e28a45370000200441106a41002900f28a45370000200441086a41002900ea8a45370000200342988080808003370224200320043602202000200341206a10ca012003280228210420032802202105200341306a41186a22064200370300200341306a41106a22074200370300200341306a41086a220842003703002003420037033020052004200341306a1001200341186a2006290300370300200341106a2007290300370300200341086a20082903003703002003200329033037030002402003280224450d00200328022010200b2003410036023020034120200341306a1003210420032802302205417f460d022004450d0220054110490d01200441086a29000021092004290000210a200410200c030b41184101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b4200210a420021090b02400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370224200320043602202000200341206a10ca012003280228210420032802202105200341306a41186a22064200370300200341306a41106a22074200370300200341306a41086a220842003703002003420037033020052004200341306a1001200341186a2006290300370300200341106a2007290300370300200341086a20082903003703002003200329033037030002402003280224450d00200328022010200b2003410036023020034120200341306a1003210420032802302205417f460d022004450d0220054110490d01200441086a290000210b2004290000210c200410200c030b41144101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b4200210c4200210b0b2000200c2001200a200a200156200920025620092002511b22041b22017c220d200b2002200920041b22027c200d200c54ad7c1093032000200a20017d200920027d200a200154ad7d109403200341d0006a24000bdf1e05047f017e077f027e057f230041e0036b22022400200241f8016a41086a22034200370300200242003703f80141aefac100411b200241f8016a1000200241a8016a41086a2003290300370300200220022903f8013703a801200241003602e802200241a8016a4110200241e8026a100321030240024020022802e8022204417f460d002003450d00200220043602fc01200220033602f801200241e8026a200241f8016a10c101024020022802e8022205450d0020022902ec02210602402004450d00200310200b2006422088a721070c020b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b4100210741042105420021060b20052006422088a741027422046a21082006a721092005210a0240024002400240024002400240024002400240024002400240024003402004450d012004417c6a2104200a280200210b200a41046a2203210a200b2000460d000b4104101e220c450d02200c200b3602004101210b4101210d0240034020082003460d0120032802002104200341046a220a210320042000460d000240200d200b470d00200b41016a2203200b490d0d200b410174220d2003200d20034b1b220d41ffffffff0371200d470d0d200d41027422034100480d0d02400240200b0d002003101e210c0c010b200c200b41027420031022210c0b200c450d090b200c200b4102746a2004360200200b41016a210b200a21030c000b0b2009450d01200510200c010b4104210c4100210b02402009450d00200510200b4100210d0b0240200b2007460d00024002400240200141ff01710e060b0b010201000b0b200241e8026a2000108c03200241206a20024198036a20022903e802200241e8026a41086a290300108e03200241f8016a41186a200241206a41186a29030037030020022002290330370388022002200241206a41086a29030037038002200220022903203703f8012002200241f8016a3602d001200241d0016a1094020240200241e8026a41186a280200450d0020022802fc0210200b2002418c036a280200450d0a20022802880310200c0a0b200241e8026a2000108c03200241e8016a200241b0036a290300370300200241d0016a41106a200241a8036a290300370300200241d0016a41086a200241a0036a29030037030020022002290398033703d0014200210e200241f8016a41086a22034200370300200242003703f80141d6fcc1004116200241f8016a1000200241a8016a41086a2003290300370300200220022903f8013703a801200241003602f801200241a8016a4110200241f8016a100321030240024020022802f8012204417f470d00420a21060c010b024020030d00420a21060c010b20044110490d04200341086a290000210e20032900002106200310200b2002200241d0016a2006200e108e03200241f8016a41186a200241186a29030037030020022002290310370388022002200241086a29030037038002200220022903003703f8012002200241f8016a3602a801200241a8016a109402200241d0016a20022903e802220f20067d200241e8026a41086a290300200e7d200f200654ad7d108f030240200241e8026a41186a280200450d0020022802fc0210200b2002418c036a280200450d0920022802880310200c090b200241e8026a2000108c03200241d0016a41186a200241d0036a290300370300200241d0016a41106a200241c8036a290300370300200241d0016a41086a200241c0036a290300370300200220022903b8033703d0014118101e2203450d03200341002900ecfc41370000200341106a41002900fcfc41370000200341086a41002900f4fc413700002002429880808080033702ac01200220033602a8012002200241a8016a3602f801200241d0016a200241f8016a10b90120022802a801210320022802b0012104200241f8016a41186a220a4200370300200241f8016a41106a22084200370300200241f8016a41086a22054200370300200242003703f80120032004200241f8016a1001200241c0006a41186a200a290300370300200241c0006a41106a2008290300370300200241c0006a41086a2005290300370300200220022903f801370340024020022802ac01450d0020022802a80110200b200241003602f801200241c0006a4120200241f8016a1003210320022802f801220a417f460d062003450d062002200a3602d401200220033602d001200241f8016a200241d0016a10b70120022802f8012204450d0420022902fc012106200a450d07200310200c070b41aefcc1002103200d450d0b200c10200c0b0b41044104102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b41184101102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b20034104102d000b41012104420021060b200241b8036a210320024198036a20022903e802200241e8026a41086a290300108f0341fffbc000410520042006422088a7100502402006a7450d00200410200b200241a0026a200036020020024185026a200341086a2900003700002002418d026a200341106a29000037000020024195026a200341186a290000370000200241053a00fc01200241093a00f801200220032900003700fd01200241f8016a10770240200241e8026a41186a280200450d0020022802fc0210200b2002418c036a280200450d0020022802880310200b200241f8016a41086a22034200370300200242003703f80141aefac100411b200241f8016a1000200241a8016a41086a2003290300370300200220022903f8013703a801200241003602f002200242013703e8022002200b3602f801200241f8016a200241e8026a106302400240200b0d0020022802f002210520022802ec02210820022802e80221040c010b200b4102742107410020022802f00222036b210a20022802ec022108200c210b0340200b2802002109024002402008200a6a4104490d0020022802e80221040c010b200341046a22042003490d03200841017422052004200520044b1b22054100480d030240024020080d002005101e21040c010b20022802e80220082005102221040b02402004450d00200220053602ec02200220043602e802200521080c010b20054101102d000b200b41046a210b2002200341046a22053602f002200420036a2009360000200a417c6a210a200521032007417c6a22070d000b0b200241a8016a411020042005100502402008450d00200410200b0240200d450d00200c10200b0240024002404113101e2203450d002003410f6a4100280093fd41360000200341086a410029008cfd4137000020034100290084fd4137000020034113412610222203450d0120032000360013200241f8016a41186a22044200370300200241f8016a41106a220a4200370300200241f8016a41086a220b4200370300200242003703f80120034117200241f8016a1001200241e0006a41186a2004290300370300200241e0006a41106a200a290300370300200241e0006a41086a200b290300370300200220022903f80137036020031020200241003602e802200241e0006a4120200241e8026a1003210c20022802e8022210417f460d04200c450d04200220103602ac012002200c3602a801200241e8026a200241a8016a10b80320022d00d803220d4106460d02200241f8016a41086a200241a0036a290300370300200241f8016a41106a200241a8036a290300370300200241f8016a41186a200241b0036a29030037030020022002290398033703f801200241e8026a41086a290300210e20022903e802210620022802940321042002280290032108200228028c03210b200228028803210a2002280284032109200228028003210720022802fc02210520022802f8022103200241d0016a41186a200241d0036a290300370300200241d0016a41106a200241c8036a290300370300200241d0016a41086a200241c0036a290300370300200220022903b8033703d001200220022800d9033602c8012002200241dc036a2800003600cb012010450d05200c10200c050b41134101102d000b41264101102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b1027000b4106210d0b200241c0006a41086a220c200241f8016a41086a290300370300200241c0006a41106a2210200241f8016a41106a290300370300200241c0006a41186a2211200241f8016a41186a290300370300200241e8026a41086a2212200241d0016a41086a290300370300200241e8026a41106a2213200241d0016a41106a290300370300200241e8026a41186a2214200241d0016a41186a290300370300200220022903f801370340200220022903d0013703e802200220022802c8013602f001200220022800cb013600f30102400240200d4106470d0042002106200241a8016a41186a4200370300200241a8016a41106a4200370300200241a8016a41086a420037030020024188016a41086a420037030020024188016a41106a420037030020024188016a41186a4200370300200242003703a80120024200370388014100210b4101210a4100210841012105410021074100210941002104410021034200210e0c010b200241a8016a41186a2011290300370300200241a8016a41106a2010290300370300200241a8016a41086a200c29030037030020024188016a41086a201229030037030020024188016a41106a201329030037030020024188016a41186a2014290300370300200220022903403703a801200220022903e80237038801200220022802f00136028001200220022800f301360083010b20024190036a20083602002002418c036a200b36020020024184036a2009360200200241e8026a41186a2007360200200241a0036a200241a8016a41086a290300370300200241a8036a200241a8016a41106a290300370300200241b0036a200241a8016a41186a2903003703002002200e3703f002200220063703e80220022004360294032002200a36028803200220053602fc02200220033602f802200220022903a80137039803200241c0036a20024188016a41086a290300370300200241c8036a20024188016a41106a290300370300200241d0036a20024188016a41186a290300370300200241dc036a200228008301360000200220013a00d80320022002290388013703b80320022002280280013600d903200241203602fc012002200241e0006a3602f801200241e8026a200241f8016a108b03024020022d00d8034106460d000240200228028003450d0020022802fc0210200b200228028c03450d0020022802880310200b200241e8026a41086a2000360200200220013a00ed02200241023a00ec02200241093a00e802200241e8026a1077410021030b200241e0036a240020030bea1202067f047e23004180026b22032400200341086a41186a200041186a290000370300200341086a41106a200041106a290000370300200341086a41086a200041086a2900003703002003200029000037030802400240024002400240024002400240024002400240024002400240024002404119101e2204450d00200441186a41002d00e1fa413a0000200441106a41002900d9fa41370000200441086a41002900d1fa41370000200441002900c9fa4137000020044119413210222204450d0120042001360019200341d8016a41186a22054200370300200341d8016a41106a22064200370300200341d8016a41086a22074200370300200342003703d8012004411d200341d8016a1001200341c8006a41186a2005290300370300200341c8006a41106a2006290300370300200341c8006a41086a2007290300370300200320032903d801370348200410200240200341c8006a412041e4fdc600410041001002417f470d004121101e2204450d0320042003290308370000200420023a0020200441186a200341086a41186a290300370000200441106a200341086a41106a290300370000200441086a200341086a41086a2903003700004119101e2205450d04200541186a41002d00e1fa413a0000200541106a41002900d9fa41370000200541086a41002900d1fa41370000200541002900c9fa4137000020054119413210222205450d0520052001360019200341d8016a41186a22064200370300200341d8016a41106a22074200370300200341d8016a41086a22084200370300200342003703d8012005411d200341d8016a1001200341c8006a41186a2006290300370300200341c8006a41106a2007290300370300200341c8006a41086a2008290300370300200320032903d801370348200510202003412036026c2003200341c8006a36026820044101200341e8006a10aa02200410200c0c0b200341286a41186a200341086a41186a290300370300200341286a41106a200341086a41106a290300370300200341286a41086a200341086a41086a290300370300200320032903083703284119101e2204450d05200441186a41002d00e1fa413a0000200441106a41002900d9fa41370000200441086a41002900d1fa41370000200441002900c9fa4137000020044119413210222204450d0620042001360019200341d8016a41186a22054200370300200341d8016a41106a22064200370300200341d8016a41086a22074200370300200342003703d8012004411d200341d8016a1001200341c8006a41186a2005290300370300200341c8006a41106a2006290300370300200341c8006a41086a2007290300370300200320032903d8013703482004102020034100360268200341c8006a4120200341e8006a1003210420032802682206417f460d082004450d08200320063602dc01200320043602d801200341e8006a200341d8016a10a30320032802682205450d07200329026c210902402006450d00200410200b200341e8006a41186a200341286a41186a290300370300200341e8006a41106a200341286a41106a290300370300200341e8006a41086a200341286a41086a29030037030020032003290328370368200341e8006a21062009422088a722042009a7470d0a0c090b41194101102d000b41324101102d000b41214101102d000b41194101102d000b41324101102d000b41194101102d000b41324101102d000b41ceb8c4004133200341f8016a41fcbfc4004184b9c400102e000b200341e8006a41186a200341286a41186a290300370300200341e8006a41106a200341286a41106a290300370300200341e8006a41086a200341286a41086a29030037030020032003290328370368420021094101210541002104200341e8006a21060b024020042009a7470d00200441016a22072004490d03200441017422082007200820074b1bad220a42217e220b422088a70d03200ba722074100480d030240024020040d002007101e21050c010b2005200441216c2007102221050b2005450d05200942808080807083200a8421090b2009422088a721040b2005200441216c6a22072006290000370000200641086a290000210a200641106a290000210b200641186a290000210c200720023a0020200741186a200c370000200741106a200b370000200741086a200a370000024020050d00200341c8006a412010040c010b2003412036026c2003200341c8006a3602682005200441016a200341e8006a10aa022009a7450d00200510200b200341e8006a41186a200041186a290000370300200341e8006a41106a200041106a290000370300200341e8006a41086a200041086a2900003703002003200136028801200320002900003703684122101e2204450d01200441002900c9b642370000200441206a41002f00e9b6423b0000200441186a41002900e1b642370000200441106a41002900d9b642370000200441086a41002900d1b642370000200342a2808080a00437022c20032004360228200341e8006a200341286a10ca0120032802880121060240200328022c2205200328023022046b4104490d00200328022821050c040b200441046a22072004490d00200541017422042007200420074b1b22044100480d000240024020050d002004101e21050c010b200328022820052004102221050b02402005450d002003200436022c20032005360228200328023021040c040b20044101102d000b1027000b41224101102d000b20074101102d000b2003200441046a360230200520046a20063600002003280230210420032802282105200341d8016a41186a22064200370300200341d8016a41106a22074200370300200341d8016a41086a22084200370300200342003703d80120052004200341d8016a1001200341c8006a41186a2006290300370300200341c8006a41106a2007290300370300200341c8006a41086a2008290300370300200320032903d8013703480240200328022c450d00200328022810200b02400240024002400240200241ff01710e0400010203000b410021050c030b410121050c020b410221050c010b410321050b200320053a006802404101101e2204450d00200420053a0000200341c8006a41202004410110052004102020034190016a20013602002003418d016a20023a0000200341f5006a200041086a290000370000200341fd006a200041106a29000037000020034185016a200041186a290000370000200341033a006c200341093a00682003200029000037006d200341e8006a107720034180026a24000f0b41014101102d000bfe0a010b7f230041c0006b2202240002400240024002404110101e2203450d00200341086a41002900efa646370000200341002900e7a646370000200242908080808002370224200220033602202002410d3602002002200241206a1063024020022802242204200228022822056b410d490d002005410d6a2106200228022021030c020b2005410d6a22062005490d02200441017422032006200320064b1b22074100480d020240024020040d002007101e21030c010b200228022020042007102221030b02402003450d002002200736022420022003360220200721040c020b20074101102d000b41104101102d000b20022006360228200320056a220541002900caa646370000200541056a41002900cfa64637000020022003200610a60502402004450d00200310200b20022802082206417f4c0d0120022802002103024002400240024002400240024020060d00410121040c010b2006101e2204450d010b20042003200610cd05210802402002280204450d00200310200b200141086a280200220741046a2204417f4c0d060240024020040d00410121030c010b2004101e2203450d020b20024100360228200220043602242002200336022020012d00002105024020040d004101101e2203450d0320024101360224200220033602200b20024101360228200320053a000020012d0001210902400240024002400240024002402002280224220520022802282204470d00200441016a22052004490d0c2004410174220a2005200a20054b1b22054100480d0c0240024020040d002005101e21030c010b200320042005102221030b2003450d0120022005360224200220033602200b2002200441016a220a360228200320046a20093a000020012d0002210b2005200a460d01200521090c020b20054101102d000b200541016a22092005490d092005410174220c2009200c20094b1b22094100480d090240024020050d002009101e21030c010b200320052009102221030b2003450d0120022009360224200220033602200b2002200441026a22053602282003200a6a200b3a000020012d0003210a20092005470d02200941016a220b2009490d082009410174220c200b200c200b4b1b220b41004e0d010c080b20094101102d000b0240024020090d00200b101e21030c010b20032009200b102221030b2003450d042002200b360224200220033602200b2002200441036a360228200320056a200a3a000020012802042105200220073602002002200241206a1063024020022802242201200228022822046b2007490d00200228022021030c050b200420076a22032004490d05200141017422092003200920034b1b22094100480d050240024020010d002009101e21030c010b200228022020012009102221030b02402003450d002002200936022420022003360220200921010c050b20094101102d000b20064101102d000b20044101102d000b41014101102d000b200b4101102d000b200320046a2005200710cd051a200241206a41186a22054200370300200241206a41106a22094200370300200241206a41086a220a4200370300200242003703202003200420076a200241206a1001200241186a2005290300370300200241106a2009290300370300200241086a200a2903003703002002200229032037030002402001450d00200310200b200641206a22032006490d00200641017422042003200420034b1b22014100480d000240024020060d002001101e21040c010b200820062001102221040b02402004450d00200420066a22062002290300370000200641186a200241186a290300370000200641106a200241106a290300370000200641086a200241086a290300370000200020033602082000200136020420002004360200200241c0006a24000f0b20014101102d000b1027000b102c000b9c0201057f230041d0006b2203240002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370224200320043602202000200341206a10ca012003280228210420032802202100200341306a41186a22054200370300200341306a41106a22064200370300200341306a41086a220742003703002003420037033020002004200341306a1001200341186a2005290300370300200341106a2006290300370300200341086a20072903003703002003200329033037030002402003280224450d00200328022010200b200320023703382003200137033020034120200341306a41101005200341d0006a24000f0b41144101102d000b9c0201057f230041d0006b2203240002404118101e2204450d00200441002900e28a45370000200441106a41002900f28a45370000200441086a41002900ea8a45370000200342988080808003370224200320043602202000200341206a10ca012003280228210420032802202100200341306a41186a22054200370300200341306a41106a22064200370300200341306a41086a220742003703002003420037033020002004200341306a1001200341186a2005290300370300200341106a2006290300370300200341086a20072903003703002003200329033037030002402003280224450d00200328022010200b200320023703382003200137033020034120200341306a41101005200341d0006a24000f0b41184101102d000bb5f30109077f017e037f027e017f087e1e7f047e017f230041c0086b220224000240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200200541214b0d2320050e220102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122010b200041223602000c6f0b2006450d6d20042d0001210520012003417e6a22073602042001200441026a360200200541064b0d6d41012108024002400240024002400240024020050e0706000102030405060b200241c0056a200110b70120022802c0052206450d7320022902c4052109410221080c050b20074108490d72200429000221092001200341766a36020420012004410a6a360200410321080c040b200241c0056a200110b70120022802c0052206450d7120022902c4052109410421080c030b20022001105f20022802000d70200128020441186e220a41186c2204417f4c0d2d2002280204210b0240024020040d00410421060c010b2004101e2206450d2f0b0240200b450d004100210841002104410021050340200241d8026a200110b7010240024020022802d8022207450d0020022902dc022109200241c0056a200110b70120022802c005220c0d012009a7450d00200710200b02402005450d002006210103400240200141046a280200450d00200128020010200b0240200141106a280200450d002001410c6a28020010200b200141186a2101200441686a22040d000b0b200a450d73200610200c730b200541016a210320022902c405210d02402005200a470d0020082003200820034b1b220aad42187e220e422088a70d4b200ea7220f4100480d4b0240024020050d00200f101e21060c010b20062004200f102221060b2006450d370b200620046a22052007360200200541106a200d3702002005410c6a200c360200200541046a2009370200200841026a2108200441186a210420032105200b2003470d000b0b2006450d70200bad422086200aad842109410521080c020b200241c0056a200110ed0120022802c0052206450d6f20022902c4052109410621080c010b200241c0056a200110b70120022802c0052206450d6e20022902c4052109410721080b20004100360200200041106a20093702002000410c6a2006360200200041086a2008360200200041186a20024180076a41a80110cd051a0c6e0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c6d0b2006450d6a20042d0001210520012003417e6a22063602042001200441026a36020020050d6a2006450d6a20042d0002210520012003417d6a22083602042001200441036a360200024002400240200541037122064103460d000240024020060e03030001030b2008450d6e20042d0003210620012003417c6a3602042001200441046a3602002006410874200572220141ffff0371418002490d6e200141fcff0371410276ad21090c030b20084103490d6d200441056a2d0000210620042f0003210820012003417a6a3602042001200441066a3602002008200641107472410874200572220141808004490d6d2001410276ad21090c020b02402005410276220741044b0d000240024020070e050002020201000b20084104490d6e200428000321052001200341796a3602042001200441076a3602002005418080808004490d6e2005ad21090c030b20084108490d6d200429000321092001200341756a36020420012004410b6a360200200942ffffffffffffffff00560d020c6d0b200741046a220841084b0d6c2003417c6a2103200441046a2104410021054200210903402003417f460d6d2004417f6a310000210d20012003360204200120043602002003417f6a2103200441016a2104200d2005410374413871ad862009842109200541016a22062105200641ff01712008490d000b2009427f412820074103746b413871ad88580d6c0c010b2005410276ad21090b20004102360200200041086a2009370300200041106a20024180076a41b00110cd051a0c6c0b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241c0056a200110be0120022802c00522010d200b200041223602000c6b0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c6a0b02402006450d0020042d0001210520012003417e6a3602042001200441026a360200200541034b0d00024002400240024020050e0400010203000b200241c0056a200110960320022d00c0054102460d03200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241086a200110970320022802080d03200241186a290300211141012101200229031021120c6a0b200241c0056a200110960320022d00c0054102460d02200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241386a20011097032002290338a70d02200241386a41106a290300211120022903402112200241206a20011097032002290320a70d02200241206a41106a290300211320022903282114410221010c690b200241c0056a200110960320022d00c0054102460d01200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241c0056a200110960320022d00c0054102460d01200241d8026a41206a2203200241c0056a41206a280200360200200241d8026a41186a2205200241c0056a41186a290300370300200241d8026a41106a2206200241c0056a41106a290300370300200241d8026a41086a2208200241c0056a41086a290300370300200220022903c0053703d802200241d0006a20011097032002290350a70d01200241d0006a41106a2903002115200229035821162005290300211320062903002114200829030021112003350200211720022903d8022112410321010c680b200241c0056a200110960320022d00c0054102460d00200241dc056a2902002109200241d4056a290200210d200241cc056a290200210e20022902c405211020022802c0052104200241e8006a200110970320022802680d00200241f8006a290300211141042101200229037021120c670b200041223602000c690b2006450d6420042d0001210520012003417e6a22183602042001200441026a3602002005410e4b0d644104211902400240024002400240024002400240024002400240024002400240024020050e0f00010272030405060708090a0b0d0e000b200241c0056a200110960320022d00c0054102460d72200241cc056a2902002111200241dc056a2d0000211a200241db056a2d0000210f200241d7056a280000210b200241d6056a2d0000210a200241d5056a2d0000210c200241d4056a2d00002107200241dd056a3500002109200241e1056a3300002112200241e3056a310000211720022902c405210d20022802c005210620024180016a2001109703200229038001a70d7220012802042204450d7220024190016a2903002110200229038801210e200128020022032d0000210820012004417f6a360204410121192001200341016a360200200841024b0d72200920122017421086844220868421092011422088a7211b2011a7211c0c710b20024198016a2001109703200229039801a70d7120022903a001210d200241a8016a2903002209422088a7211b2009a7211c410221190c700b200241b0016a200110970320022903b001a70d7020022903b801210d200241c0016a2903002209422088a7211b2009a7211c410321190c6f0b200241c8016a200110970320022903c801a70d6f20022903d001210d200241d8016a2903002209422088a7211b2009a7211c410521194100210b0c6e0b200241e0016a2001105f20022802e0010d6e200128020441246e221d41246c2204417f4c0d2e20022802e401211e0240024020040d00410421060c010b2004101e2206450d310b0240201e450d00200241c0056a41017221034100210741002108410021040340200241c0056a2001109603200241d8026a41086a220c200341086a290000370300200241d8026a41106a220a200341106a290000370300200241d8026a41186a220b200341186a290000370300200241d8026a411f6a220f2003411f6a280000360000200220032900003703d8020240024020022d00c005221a4102460d00200441016a2105200241d8046a411f6a2219200f280000360000200241d8046a41186a220f200b290300370300200241d8046a41106a220b200a290300370300200241d8046a41086a220a200c290300370300200220022903d8023703d8042004201d470d0120072005200720054b1b221dad42247e2209422088a70d4d2009a7220c4100480d4d0240024020040d00200c101e21060c010b20062008200c102221060b20060d01200c4104102d000b201d450d71200610200c710b200620086a2204201a3a0000200441016a20022903d804370000200441096a200a290300370000200441116a200b290300370000200441196a200f290300370000200441206a2019280000360000200741026a2107200841246a210820052104201e2005470d000b0b2006450d6e201ead422086201dad84210d410621190c070b410721190c6c0b2018450d6c20042d0002210820012003417d6a3602042001200441036a360200200841034f0d6c410821194100211c4100211b0c6b0b200241c0056a200110960320022d00c0054102460d6b200241dd056a350000200241e1056a330000200241e3056a31000042108684422086842109200241cc056a290200220e422088a7211b200241dc056a2d0000211a200241db056a2d0000210f200241d7056a280000210b200241d6056a2d0000210a200241d5056a2d0000210c200241d4056a2d0000210720022902c405210d20022802c0052106200ea7211c410921190c6a0b200241e8016a2001105f20022802e8010d6a20022802ec012106410a21194200210d4100210c4100210a4100210b4100210f4100211c0c690b410b21190c680b410c21190c670b200241c0056a200110e30120022802c0052206450d6720022902c405210d410d21190b4100211c4100211b0c650b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105221e410876211d20022900d7052209423888a7210f2009421888a7210b2009421088a7210a2009420888a7210c200241cf056a290000220e422088a7211b20022900c705210d20022d00df05211a20022800c305210620022d00c00521082009a72107200ea7211c410e21190c650b200541ff0171450d65200241003a00e0050c650b410f21190c630b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241d8046a200110f60220022d00d8044101460d00200241f8036a200241d8046a41017241e00010cd051a200241d8046a200110b70120022802d80422010d1d0b200041223602000c670b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241f0016a2001105f20022802f0010d0020022802f40121012000410836020020002001360204200041086a20024180076a41b80110cd051a0c670b200041223602000c660b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241c0056a200110b70120022802c00522010d1c0b200041223602000c650b2006450d5e20042d0001210520012003417e6a22063602042001200441026a36020020050d5e20064104490d5e2004280002211920012003417a6a3602042001200441066a360200200241c0056a200110b70120022802c005220f450d5e200241c8056a280200211d20022802c405211a200241f8016a2001105f20022802f8010d5d2001280204410c6e220c410c6c2204417f4c0d2020022802fc01210a0240024020040d00410421080c010b2004101e2208450d240b0240200a450d004100210641002104410021050340200241c0056a200110b7010240024020022802c0052207450d00200541016a210320022902c40521092005200c470d0120062003200620034b1b220cad420c7e220d422088a70d3f200da7220b4100480d3f0240024020050d00200b101e21080c010b20082004200b102221080b20080d01200b4104102d000b02402005450d002008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c450d60200810200c600b200820046a22052007360200200541046a2009370200200641026a21062004410c6a210420032105200a2003470d000b0b2008450d5d200f450d5e02402001280204220341044f0d000240201a450d00200f10200b0240200a450d00200a410c6c21042008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c0d5d0c5f0b20012802002206280000210b20012003417c6a22043602042001200641046a36020020044104490d5b2006280004211e2001200341786a22073602042001200641086a36020041002104200241003a008006200341776a21030240034020072004460d01200241c0056a20046a200620046a220541086a2d00003a0000200120033602042001200541096a3602002002200441016a22053a0080062003417f6a210320052104200541c000470d000b200f450d5f200241c0056a41206a290300210920022903d805210d20022903f805210e20022802f405210120022f01f205210420022d00f005210320022903e805211020022802d405210520022d00d305210620022d00d205210720022d00d105211c20022d00d005211b20022903c805211120022903c0052112200020022d00f1053a0059200020063a003b200020073a003a2000201c3a0039200020193602042000410a360200200041c8006a2009370200200041c0006a200d370200200041e0006a200e370200200041dc006a2001360200200041da006a20043b0100200041d8006a20033a0000200041d0006a20103702002000413c6a2005360200200041386a201b3a0000200041306a2011370200200041286a2012370200200041246a201e360200200041206a200b3602002000411c6a200a360200200041186a200c360200200041146a2008360200200041106a201d3602002000410c6a201a360200200041086a200f360200200041e8006a20024180076a41d80010cd051a0c650b200441ff0171450d5a200241003a0080060c5a0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c630b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c620b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c610b2006450d5520042d0001210520012003417e6a3602042001200441026a360200200541024b0d5502400240024002400240024020050e03000102000b20024180076a20011095032002280280072101200241c0056a20024180076a41047241bc0110cd051a20014122470d020c5a0b20024180076a20011096034102210320022d0080074102460d592002419c076a290200210920024194076a290200210d2002418c076a290200210e200229028407211020022802800721040c020b20024180076a200110960320022d0080074102460d582002419c076a290200210920024194076a290200210d2002418c076a290200210e2002290284072110200228028007210420024180076a20011095032002280280072103200241c0056a20024180076a41047241bc0110cd051a20034122460d5820024180076a200241c0056a41bc0110cd051a41c001101e2201450d2420012003360200200141046a20024180076a41bc0110cd051a410321030c020b20024180076a200241c0056a41bc0110cd051a41c001101e2204450d2220042001360200200441046a20024180076a41bc0110cd051a410121030b0b200020033602042000410e360200200041246a20093702002000411c6a200d370200200041146a200e3702002000410c6a20103702002000412c6a2001360200200041086a2004360200200041306a200241d8026a41900110cd051a0c600b2006450d5320042d0001210520012003417e6a22063602042001200441026a360200200541044b0d5302400240024002400240024020050e050001020304000b20064110490d582004410a6a29000021092004290002210d20012003416e6a3602042001200441126a360200200241c0056a200110b70120022802c0052205450d58200241c8056a2206280200210720022802c4052104200241c0056a200110b70120022802c00522030d0420040d570c580b20064104490d572004280002210520012003417a6a22063602042001200441066a3602002006450d5720042d000621062001200341796a3602042001200441076a360200200641044f0d57410221080c540b20064104490d562004280002210520012003417a6a3602042001200441066a360200410321080c520b4104210820064104490d552004280002210520012003417a6a3602042001200441066a3602000c510b20064104490d542004280002210520012003417a6a3602042001200441066a36020041052108410021014200210e41002103410021040c500b2006280200210a20022802c405210c200241c0056a200110b70120022802c0052201450d5120022902c405210e410121080c4f0b2006450d4d20042d0001210520012003417e6a221b3602042001200441026a360200200541104b0d4d410f2106024002400240024002400240024002400240024002400240024002400240024020050e11000102030405060708090a0b0c0d260e0f000b201b4110490d5c2004410a6a29000021172004290002211220012003416e6a3602042001200441126a360200410121060c250b41002105200241003a00e0052003417e6a2107417d21060240034020072005460d01200241c0056a20056a200420056a220841026a2d00003a00002001200320066a3602042001200841036a3602002002200541016a22083a00e0052006417f6a21062008210520084120470d000b200320086b2203417e6a4110490d5c200241cf056a290000211720022900c705211220022d00df05211d20022900d705210e20022800c305211e20022f00c105210720022d00c005211c200420086a2204410a6a290000211141022106200441026a290000211020012003416e6a3602042001200441126a36020020074180fe037141087621194100210b0c250b200541ff0171450d5b200241003a00e0050c5b0b41002105200241003a00e005410220036b21072003417d6a2106024002400340200720056a450d01200241c0056a20056a200420056a220841026a2d00003a0000200120063602042001200841036a3602002002200541016a22083a00e0052006417f6a21062008210520084120470d000b200241d8026a410f6a200241c0056a410f6a290000370000200220022900c7053700df02200220022d00df053a00f702200220022900d7053700ef02200220022800c3053600db02200220022f00c1053b00d902200220022d00c0053a00d80241002105200241003a00e005200420086a2107200820036b41026a2103200241d8026a410372210f0340200320056a450d02200241c0056a20056a200720056a220441026a2d00003a0000200120063602042001200441036a3602002002200541016a22043a00e0052006417f6a21062004210520044120470d000b200220022900c7053703f803200220022d00df053a009004200220022900d705370388042002200241cf056a2900003703800420022800c305210a20022f00c105210820022d00c005210c200241c0056a200110b70120022802c005220b450d5c20022902c405210d200241d8046a41106a200f41106a290000370300200241d8046a41086a200f41086a290000370300200241d8046a41156a200f41156a2900003700002002200f2900003703d80420084180fe0371410876210f200241f8036a41086a290300211120022d00d802211c20022d00d902210720022d00da02211920022903f8032110200229038804210920022d009004211a200241e4046a290200211720022902ec04210e20022902dc04211220022d00f404211d20022802d804211e410321060c250b200541ff0171450d5b200241003a00e0050c5b0b200541ff0171450d5a200241003a00e0050c5a0b41042106201b4104490d592004280002211e20012003417a6a3602042001200441066a360200410021190c220b201b4104490d582004280002211e20012003417a6a3602042001200441066a360200410521060c210b201b4104490d572004280002211e20012003417a6a360204410621062001200441066a360200410021190c200b201b4104490d562004280002211e20012003417a6a3602042001200441066a36020041072106410021190c1f0b201b4104490d552004280002211e20012003417a6a3602042001200441066a36020041082106410021190c1e0b201b4104490d542004280002211e20012003417a6a3602042001200441066a36020041092106410021190c1d0b201b4110490d53410a21062004410a6a29000021172004290002211220012003416e6a3602042001200441126a3602000c1c0b201b4104490d522004280002211e20012003417a6a3602042001200441066a360200410b2106410021190c1b0b201b4104490d512004280002211e20012003417a6a3602042001200441066a36020042002112410c210641002119420021170c1a0b201b4104490d502004280002211e20012003417a6a3602042001200441066a36020042002112410d2106420021170c190b201b4110490d4f2004410a6a29000021172004290002211220012003416e6a3602042001200441126a360200410e21060c180b411021060c170b201b450d4d20042d0002210520012003417d6a3602042001200441036a360200200541014b0d4d411121064100211c20050e021615160b2006450d4b20042d0001210520012003417e6a22063602042001200441026a360200200541034b0d4b0240024002400240024020050e0400010203000b200241f8036a200110e30120022802f8032206450d4f200241f2036a41026a20024188026a41026a2d00003a0000200241d8026a41086a200241c0056a41086a290200370300200241d8026a41106a200241c0056a41106a280200360200200220022f0088023b01f203200220022902c0053703d80220022902fc032109410121050c030b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241f8036a41086a200241d7056a290000220937030041022105200241f2036a41026a20022d00c2053a0000200241e8026a200241df056a2d00003a0000200241d8026a41086a2009370300200220022900cf0522093703f803200220022f01c0053b01f203200220093703d80220022900c705210920022800c3052106200241eb026a200241f5036a41026a2d00003a0000200220022f00f5033b00e9020c030b200541ff0171450d4e200241003a00e0050c4e0b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241f8036a41086a200241d7056a2900002209370300200241f2036a41026a20022d00c2053a0000200241e8026a200241df056a2d00003a0000200241d8026a41086a2009370300200220022900cf0522093703f803200220022f01c0053b01f203200220093703d80220022900c705210920022800c3052106200241eb026a200241f5036a41026a2d00003a0000200220022f00f5033b00e902410321050c020b200541ff0171450d4d200241003a00e0050c4d0b4104210520064104490d4c2004280002210620012003417a6a3602042001200441066a360200200241f2036a41026a200241f8036a41026a2d00003a0000200241d8026a41086a200241c0056a41086a290200370300200241d8026a41106a200241c0056a41106a280200360200200220022f00f8033b01f203200220022902c0053703d8020b200241ee036a41026a200241f2036a41026a2d000022013a0000200241d8046a41086a2204200241d8026a41086a290300370300200241d8046a41106a2203200241d8026a41106a280200360200200220022f01f20322083b01ee03200220022903d8023703d804200020053a000420004111360200200020083b0005200041076a20013a00002000410c6a2009370200200041086a2006360200200041146a20022903d8043702002000411c6a2004290300370200200041246a2003280200360200200041286a20024180076a41980110cd051a0c5d0b02402006450d0020042d0001210520012003417e6a3602042001200441026a36020020050d00200241c0056a200110b70120022802c00522010d160b200041223602000c5c0b02402006450d0020042d0001210520012003417e6a22063602042001200441026a360200200541084b0d000240024002400240024002400240024002400240024020050e09000102030405060708000b20064108490d0a2004290002210d2001200341766a36020420012004410a6a360200200241c0056a20011098034101210520022802c0054101460d0a200241e4056a2802002107200241e2056a2f01002101200241e0056a2d0000210c200241d8056a2903002110200241d0056a290300210e200241c8056a290300211120022d00e105210420022802c4052103420021090c530b20064108490d092004290002210e2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052203450d0920022902c4052111410221050c510b20064108490d082004290002210e2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052203450d0820022902c4052111410321050c500b20064108490d072004290002210e2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052203450d0720022902c4052111410421054200211041002104420021124100210f410021014100211a41002119420021090c050b20064108490d062004290002210d2001200341766a36020420012004410a6a360200200241c0056a200110980320022802c0054101460d06200241e4056a2802002107200241e2056a2f01002101200241e0056a2d0000210c200241d8056a2903002110200241d0056a290300210e200241c8056a290300211120022d00e105210420022802c405210341052105420021090c4f0b20064108490d052004290002210d2001200341766a220836020420012004410a6a36020041002105200241003a00e005200341756a21030240034020082005460d01200241c0056a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105220a4108762106200241cf056a290000210e20022900c705211120022d00df05210c20022900d705211020022800c305210320022d00c00521084106210542002109410021010c4f0b200541ff0171450d05200241003a00e0050c050b20064108490d042004290002210d2001200341766a220836020420012004410a6a36020041002105200241003a00e005200341756a21030240034020082005460d01200241c0056a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105220a4108762106200241cf056a290000210e20022900c705211120022d00df05210c20022900d705211020022800c305210320022d00c00521084107210542002109410021014100211a0c4e0b200541ff0171450d04200241003a00e0050c040b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241d8026a410f6a200241c0056a410f6a290000370000200220022900c7053700df02200220022d00df053a00f702200220022900d7053700ef02200220022800c3053600db02200220022f00c1053b00d902200220022d00c0053a00d802200241c0056a200110980320022802c0054101460d0441082105200241e0056a2d00002119200241db056a2800002101200241d8056a2d0000210b200241c0056a41106a2903002112200241c0056a41086a290300210d200241e1056a3500002109200241e5056a330000210e200241e7056a310000211020022d00df05211a20022d00da05210f20022d00d905210420022802c4052107200241d8046a41086a200241d8026a410372220341086a290000370300200241d8046a41106a200341106a290000370300200241d8046a41156a200341156a290000370000200220032900003703d8042009200e20104210868442208684210920022d00d802210820022d00d902210a20022d00da02210620022d00f404210c20022902ec04211020022902e404210e20022902dc04211120022802d80421030c4d0b200541ff0171450d03200241003a00e0050c030b41002105200241003a00e0052003417e6a21082003417d6a2103034020082005460d02200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022f00c105220a4108762106200241cf056a290000210e20022900c705211120022d00df05210c20022900d705211020022800c305210320022d00c005210841092105410021010b0c4a0b200541ff0171450d00200241003a00e0050b200041223602000c5b0b2006450d4420042d0001210520012003417e6a22063602042001200441026a360200200541074b0d440240024002400240024002400240024002400240024020050e080001020305060708000b2006450d4e20042d0002210c20012003417d6a3602042001200441036a360200200c41014b0d4e4200210d41002106024002400240200c0e020100010b41002105200241003a00e0052003417d6a21082003417c6a2103034020082005460d02200241c0056a20056a200420056a220641036a2d00003a0000200120033602042001200641046a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200220022900c70522093703f803200241d8026a41086a20022800fb03360000200220022900d70537038804200220022d00df053a0090042002200241cf056a290000220d37038004200220022800c3053600d902200220093e00dd02200220022f00c10522074108763a00d8022009423888200d42088684210920022d00c0052108200233008f04210d20022900870421104101210620022802d80221050b20022902dc02220e422088a72103200ea72104410121010c500b200541ff0171450d4e200241003a00e0050c4e0b2006450d4d20042d0002210520012003417d6a22063602042001200441036a360200200541014b0d4d4200210d0240024020050e020100010b20064108490d4e2004290003210e2001200341756a36020420012004410b6a3602004201210d0b200241c0056a200110b70120022802c0052205450d4d200241c8056a2206280200210320022802c4052104200241c0056a200110b70120022802c0050d0720040d020c4d0b20064108490d4c200429000221092001200341766a220536020420012004410a6a3602002005450d4c20042d000a21052001200341756a220736020420012004410b6a220c360200200541014b0d4c410221060240024020050e020100010b2007450d4d20042d000b21052001200341746a220736020420012004410c6a220c360200200541014b0d4d41002106024020050e020100010b410121060b2007450d4c200c2d0000210420012007417f6a22033602042001200c41016a360200200441014b0d4c410221080240024020040e020100010b2003450d4d200c2d0001210420012007417e6a3602042001200c41026a360200200441014b0d4d41002108024020040e020100010b410121080b2009422088a721032009a72104410321010c4d0b20064108490d4b2004290002210d2001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4b200241c8056a2206280200210320022802c4052104200241c0056a200110b70120022802c0050d062004450d4b0b200510200c4a0b20064108490d49200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4920022902c405220d422088a72103200da72104410521014200210d0c4a0b20064108490d48200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4820022902c405220d422088a72103200da72104410621014200210d0c490b20064108490d47200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4720022902c405220d422088a72103200da72104410721014200210d0c480b20064108490d46200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052205450d4620022902c405220d422088a72103200da72104410821014200210d0c470b2006350200211020022903c005210941022101410021070c460b2006350200211020022903c0052109410421010c450b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c590b02402006450d0020042d0001210520012003417e6a22063602042001200441026a360200200541074b0d000240024002400240024002400240024020050e080001020304050607000b2006450d0720042d0002210820012003417d6a22053602042001200441036a360200200841034b0d0720054108490d07200429000321092001200341756a36020420012004410b6a3602004200210d4101210341002101420021120c490b2006450d0620042d0002210820012003417d6a22073602042001200441036a360200200841034b0d0641002105200241003a00e0052003417c6a21030240034020072005460d01200241c0056a20056a200420056a220641036a2d00003a0000200120033602042001200641046a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241e4046a200241cf056a290000370200200220022900d7053702ec04200220022900c7053702dc04200220022800c30522013602d804200220022d00df053a00f40420022f00c105220f410876210420022d00c005210b200241eb046a290000211220022900db04210920023300f304211720022900e304210d41022103410021194200210e4100211d4100211e420021160c490b200541ff0171450d06200241003a00e0050c060b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022800c3052204410876210120022f00c105220b410876210f200241cf056a290000210d20022900c705210920023100df05211720022900d705211220022d00c0052108410321030c480b200541ff0171450d05200241003a00e0050c050b2006450d0420042d0002210820012003417d6a3602042001200441036a360200200841034b0d04200241c0056a200110990320022903c0054201510d04200241f8056a2903002111200241f0056a2903002110200241d8056a2903002112200241d0056a290300210d20024190066a29030021162002418c066a280200211e2002418a066a2f0100211d20024188066a2d0000210a20024180066a290300210e200241ec056a280200210c200241e8056a2d0000211a200241e0056a290300211720022d008906211920022d00eb05210720022d00ea05210620022d00e905210520022903c8052109410421030c460b200241c0056a2001109a0320022802c0052204450d032004410876210120022902c40521094200210d41052103420021120c450b2006450d0220042d0002210820012003417d6a3602042001200441036a360200200841044f0d02410621030c440b2006450d0120042d0002210820012003417d6a3602042001200441036a360200200841044f0d01410721030c430b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b4108210320022800c3052204410876210120022f00c105220b410876210f200241cf056a290000210d20022900c705210920023100df05211720022900d705211220022d00c00521080c430b200541ff0171450d00200241003a00e0050b200041223602000c580b2006450d3f20042d0001210520012003417e6a22063602042001200441026a360200200541034b0d3f024002400240024020050e0400010203000b200241c0056a200110b70120022802c0052204450d4220022802c405210320012802042205450d40200241c8056a2802002106200128020022072d0000210820012005417f6a360204410121052001200741016a360200200841014b0d404100210120080e021514150b20064108490d41200429000221092001200341766a36020420012004410a6a360200200241c0056a200110b70120022802c0052204450d4120022802c405210320012802042205450d3e200241c8056a2802002106200128020022072d0000210820012005417f6a3602042001200741016a360200200841014b0d3e4102210541002101024020080e021500150b410121010c140b20064108490d40200429000221092001200341766a36020420012004410a6a3602002009422088a721062009a72103410321050c130b20064108490d3f200429000221092001200341766a36020420012004410a6a3602002009422088a721062009a72103410421050c120b2006450d3a20042d0001210520012003417e6a3602042001200441026a360200200541064b0d3a4105210b42002109420021170240024002400240024002400240024020050e0700010203070405000b41002105200241003a00e0052003417e6a2107417d21060240034020072005460d01200241c0056a20056a200420056a220841026a2d00003a00002001200320066a3602042001200841036a3602002002200541016a22083a00e0052006417f6a21062008210520084120470d000b200320086b2203417e6a4108490d4220022f00c1052107200241cf056a290000211020022900c705210e20022d00df05210c20022900d705210920022800c305210620022d00c005210a200420086a220441026a290000210d2001200341766a220536020420012004410a6a220836020020054108490d422008290000211120012003416e6a3602042001200441126a360200200241c0056a200110b70120022802c0052208450d422007410876210f200942808080807083211720022902c40521124101210b0c070b200541ff0171450d41200241003a00e0050c410b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4102210b0c050b200541ff0171450d40200241003a00e0050c400b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4103210b0c040b200541ff0171450d3f200241003a00e0050c3f0b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4104210b0c030b200541ff0171450d3e200241003a00e0050c3e0b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b20022900d705220942808080807083211720022f00c1052207410876210f200241cf056a290000211020022900c705210e20022d00df05210c20022800c305210620022d00c005210a4106210b0c020b200541ff0171450d3d200241003a00e0050c3d0b200241c0056a200110e30120022802c0052206450d3c20022902c405210e420021124107210b41002108420021094200211742002110420021110b0b200041003a002b200041003b00292000200f3a000b200020073a000a2000200a3a000920004118360200200041186a2010370000200041106a200e370000200041c0006a2011370200200041386a200d370200200041306a20123700002000412c6a2008360000200041286a200c3a00002000410c6a2006360000200041086a200b3a0000200041206a2017200942ffffffff0f8384370000200041c8006a20024180076a41f80010cd051a0c560b2006450d3820042d0001210520012003417e6a22063602042001200441026a360200200541024b0d380240024002400240024020050e03000102000b41002105200241003a00e0052003417e6a21082003417d6a21030240034020082005460d01200241c0056a20056a200420056a220641026a2d00003a0000200120033602042001200641036a3602002002200541016a22063a00e0052003417f6a21032006210520064120470d000b200241cf056a290000210920022900c705210d20022d00df05210120022900d705210e20022800c305210420022f00c105210320022d00c0052105410121060c040b200541ff0171450d3c200241003a00e0050c3c0b20064108490d3b2004290002210d2001200341766a36020420012004410a6a360200410221060c010b20064108490d3a2004290002210d2001200341766a36020420012004410a6a360200410321060b4200210e410021030b200041003a002b200041003b0029200020033b000a200020053a0009200041193602002000412c6a4100360200200041286a20013a0000200041206a200e370200200041186a2009370200200041106a200d3702002000410c6a2004360000200041086a20063a0000200041306a20024180076a41900110cd051a0c550b2006450d3620042d0001210520012003417e6a220f360204410221082001200441026a360200200541034b0d36024002400240024020050e0400380102000b200241c0056a200110b70120022802c0052206450d3920022802c4052107200128020422040d020c380b200f4104490d382004280002210620012003417a6a3602042001200441066a360200410321084100210a410021070c360b200241c0056a200110ed0120022802c0052206450d3720022902c4052209422088a7210c2009a72107410421080c350b200241c8056a280200210c200128020022052d0000210320012004417f6a22083602042001200541016a360200200341014b0d354100210b0240024020030e020100010b20084104490d362005280001210a20012004417b6a3602042001200541056a3602004101210b0b410121080c340b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c530b2006450d3120042d0001210520012003417e6a22063602042001200441026a3602002005410c4b0d31024002400240024002400240024002400240024002400240024002400240024020050e0d0001020304050d0e060708090a000b20064108490d40200429000221092001200341766a36020420012004410a6a360200200241c0056a2001105e20022802c0052204450d402009a7220541807e71210120022902c405220d422088a721032009422088a72107200da72106420021104101210a4100210f42002117420021164200211542002114420021130c3e0b2006450d3f20042d0002210520012003417d6a2206360204410321072001200441036a360200200541014b0d3f410021080240024020050e020100010b20064108490d40200429000321092001200341756a2206360204410b210720012004410b6a360200410121080b20064108490d3f200420076a2204290000210d2001200641786a3602042001200441086a360200200241c0056a2001105e20022802c0052204450d3f20022902c405210e20012802042205450d3e200128020022062d0000210320012005417f6a3602042001200641016a360200200341014b0d3e4100210520030e020a090a0b2006450d3e20042d0002210520012003417d6a2208360204410321072001200441036a360200200541014b0d3e410021060240024020050e020100010b20084108490d3f200429000321092001200341756a2208360204410b210720012004410b6a360200410121060b20084108490d3e200420076a2204290000210d2001200841786a22033602042001200441086a3602002003450d3e20042d000821032001200841776a3602042001200441096a360200200341014b0d3e4100210c0240024020030e020100010b4101210c0b2009a7220541807e712101200d422088a7210f2009422088a72107200da72108420021104103210a4100210342002117420021164200211542002114420021134100210b0c3c0b2006450d3d20042d0002210620012003417d6a2208360204410321072001200441036a360200200641014b0d3d410021050240024020060e020100010b20084108490d3e2004290003210d2001200341756a2208360204410b210720012004410b6a360200410121050b20084108490d3d200420076a220429000021092001200841786a3602042001200441086a360200200241c0056a2001105e20022802c0052204450d3d200d422088a7210f20022902c405220e422088a72103200da72108200ea72106420021104104210a0c3a0b2006450d3c20042d0002210620012003417d6a2208360204410321072001200441036a360200200641014b0d3c410021050240024020060e020100010b20084108490d3d2004290003210d2001200341756a2208360204410b210720012004410b6a360200410121050b20084108490d3c200420076a220429000021092001200841786a3602042001200441086a360200200241c0056a2001105e20022802c0052204450d3c200d422088a7210f20022902c405220e422088a72103200da72108200ea72106420021104105210a0c390b2006450d3b20042d0002210520012003417d6a2206360204410321072001200441036a360200200541014b0d3b410021080240024020050e020100010b20064108490d3c200429000321092001200341756a2206360204410b210720012004410b6a360200410121080b20064108490d3b200420076a2204290000210d2001200641786a3602042001200441086a360200200241c0056a200110920120022802c00522044103460d3b200241cc056a280200220541807e71210120022902c405220e422088a72103200ea72106420021104106210a4100210f42002117420021164200211542002114420021130c390b2006450d3a20042d0002210520012003417d6a2206360204410321082001200441036a360200200541014b0d3a420021090240024020050e020100010b20064108490d3b2004290003210d2001200341756a2206360204410b210820012004410b6a360200420121090b20064108490d3a200420086a2204290000210e2001200641786a3602042001200441086a360200200241c0056a200110e50120022802c0052204450d3a200241c8056a2208280200210320022802c4052106200241c0056a200110e70120022802c00522050d0820060d360c3a0b2006450d3920042d0002210520012003417d6a2208360204410321072001200441036a360200200541014b0d39410021060240024020050e020100010b20084108490d3a200429000321092001200341756a2208360204410b210720012004410b6a360200410121060b20084108490d39200420076a2204290000210d2001200841786a3602042001200441086a3602002009a7220541807e7121012009422088a72107200da72108200d422088a7210f42002110410a210a4100210342002117420021164200211542002114420021134100210b0c370b2006450d3820042d0002210620012003417d6a22083602042001200441036a2207360200200641014b0d38410021050240024020060e020100010b20084108490d392004290003210d2001200341756a220836020420012004410b6a2207360200410121050b2008450d3820072d0000210420012008417f6a22033602042001200741016a360200200441014b0d384100210c0240024020040e020100010b4101210c0b20034108490d38200729000121092001200841776a22043602042001200741096a36020020044102490d3820072f0009210b2001200841756a360204410b210a20012007410b6a360200200241c0056a200110e60120022802c0052204450d38200d422088a7210f20022902c405220e422088a72103200da72108200ea7210642002110410021014200211742002116420021154200211442002113410021070c360b2006450d3720042d0002210620012003417d6a22083602042001200441036a2207360200200641014b0d37410021050240024020060e020100010b20084108490d382004290003210d2001200341756a220836020420012004410b6a2207360200410121050b2008450d3720072d0000210420012008417f6a22033602042001200741016a360200200441014b0d374100210c0240024020040e020100010b4101210c0b20034108490d37200729000121092001200841776a3602042001200741096a360200200241c0056a200110e60120022802c0052204450d37200d422088a7210f20022902c405220e422088a72103200da72108200ea7210642002110410c210a410021014200211742002116420021154200211442002113410021070c350b20024180026a2001105f2002280280020d36200128020422044140712203417f4c0d13200228028402211a024002402004410676220a0d00410821040c010b2003101e2204450d1a0b0240201a450d004100210b4100210c410021060340024002402001280204220f450d00200128020022072d000021082001200f417f6a22053602042001200741016a2203360200200841014b0d00420021090240024020080e020100010b20054108490d012007290001210d2001200f41776a22053602042001200741096a2203360200420121090b2005450d0020032d0000210820012005417f6a22073602042001200341016a360200200841014b0d004200210e0240024020080e020100010b4201210e0b2007450d0020032d0001210820012005417e6a22073602042001200341026a360200200841024b0d00024002400240024020080e03000102000b20074108490d03200329000221102001200541766a36020420012003410a6a3602002010422088a7210f2010a72108410021190c020b2007450d0220032d0002210820012005417d6a22073602042001200341036a360200200841014b0d0202400240024020080e020001000b20074104490d042003280003211b2001200541796a3602042001200341076a360200410021080c010b20074108490d03200329000321122001200541756a36020420012003410b6a360200410121080b200241c0056a2001109b0320022802c005450d02200241d8026a41086a200241c0056a41086a280200360200200220022903c0053703d8024101211920122110201b210f0c010b2007450d0120032d0002210820012005417d6a22073602042001200341036a360200200841014b0d0102400240024020080e020001000b20074104490d03200328000321182001200541796a22053602042001200341076a2203360200410021080c010b20074108490d02200329000321172001200541756a220536020420012003410b6a2203360200410121080b20084102460d0120054102490d0120032f0000210720012005417e6a3602042001200341026a360200200241c0056a2001109b0320022802c005450d01200241d8026a41086a200241c0056a41086a280200360200200220022903c0053703d80241022119201721102018210f0b200641016a210520022f01e202211d20022d00e102211e20022d00e002211c20022903d80221112006200a470d01200b2005200b20054b1b220a41ffffff1f71200a470d32200a41067422034100480d320240024020060d002003101e21040c010b2004200c2003102221040b20040d0120034108102d000b200420061071200a450d390c350b2004200c6a22032009370300200341206a2010370300200341186a200fad4220862008ad84370300200341386a200e370300200341346a200741ffff0371360200200341326a201d3b0100200341316a201e3a0000200341306a201c3a0000200341286a2011370300200341146a4100360200200341136a41003a0000200341116a41003b0000200341106a20193a0000200341086a200d370300200b41026a210b200c41c0006a210c20052106201a2005470d000b0b2004450d36201aad422086200aad842209422088a721032009a7210642002110410d210a410021014200211742002116420021154200211442002113410021054100210f4100210b0c340b410121050b200e422088a72103200ea72106420021104102210a4100210142002117420021164200211542002114420021134100210f0c320b200241c0056a200110b70120022802c0052204450d33200241c8056a2208280200210320022802c4052106200241c0056a200110b70120022802c0052205450d2e2008280200210820022802c4052107200241c0056a200110910120022802e8054103460d2c20022902e405220942ffffffff0f8321102009428080808070832116200541807e712101200241ec056a290200211320024184066a290200211220024180066a280200211f200241fc056a2d0000211c200241f4056a290200211120022f01fe05212020022d00fd05211820022802e005211e20022d00df05211d20022d00de05211920022d00dd05211a20022d00dc05211b20022902d405210e20022902cc05210d20022902c405210920022802c005210f420021174107210a42002115420021140c310b200241c0056a200110b70120022802c0052204450d324108210a200241c0056a41086a2208280200210320022802c4052106200241c0056a200110b70120022802c0052205450d2c200541807e7121012008280200210820022802c40521074200211042002117420021164200211542002114420021130c300b200541807e7121012008280200210820022802c4052107420021114109210a41002118410021204100211f420021124200211042002117420021164200211542002114420021130c2f0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c510b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c500b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c4f0b02402006450d0020012003417e6a3602042001200441026a3602000b200041223602000c4e0b2006450d2320042d0001210520012003417e6a22083602042001200441026a360200200541124b0d23411121214200211341002122410021234200210d024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020050e13000102030405060708090b0c0d0e0f10331112000b20084108490d38200429000221092001200341766a220c36020420012004410a6a36020041002105200241003a00a007200341756a210802400340200c2005460d0120024180076a20056a200420056a2206410a6a2d00003a00002001200836020420012006410b6a3602002002200541016a22073a00a0072008417f6a21082007210520074120470d000b200341766a2007460d3920022f00810721182002418f076a290000210e200229008707211020022d009f07210c2002290097072111200228008307210620022d008007211d200420076a2204410a6a2d0000211c2001200836020420012004410b6a360200201c41034f0d3920024180076a200110b7012002280280072219450d39200228028407211b200128020422030d130c380b200541ff0171450d38200241003a00a0070c380b20084108490d372004290002210d2001200341766a220536020420012004410a6a36020020054108490d37200429000a210920012003416e6a22083602042001200441126a36020041002105200241003a00a0072003416d6a21032009422088a7210b2009a7210a0240034020082005460d0120024180076a20056a200420056a220641126a2d00003a0000200120033602042001200641136a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f00810722184108762124200d422088a721252002290097072209422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d200da7211b2009a7211f200ea721072010a7211e410221210c300b200541ff0171450d37200241003a00a0070c370b20084108490d36200429000221092001200341766a220536020420012004410a6a3602002005450d3620042d000a21052001200341756a36020420012004410b6a360200200541014b0d36410021060240024020050e020100010b20024180076a200110b7012002280280072206450d37200229028407210d0b20024180076a200110b302200da72107200228028007221e4102470d112006450d362007450d36200610200c360b2008450d3520042d0002210520012003417d6a2206360204410321082001200441036a360200200541014b0d35410021070240024020050e020100010b20064108490d36200429000321092001200341756a2206360204410b210820012004410b6a360200410121070b20064108490d35200420086a2204290000210d2001200641786a22033602042001200441086a3602002003450d3520042d000821032001200641776a22053602042001200441096a2208360200200341014b0d354102211d0240024020030e020100010b2005450d3620042d000921032001200641766a220536020420012004410a6a2208360200200341014b0d364100211d024020030e020100010b4101211d0b2005450d3520082d0000210420012005417f6a22033602042001200841016a360200200441014b0d35410221180240024020040e020100010b2003450d3620082d0001210420012005417e6a3602042001200841026a360200200441014b0d3641002118024020040e020100010b410121180b200d422088a721262009422088a72120200da7211f2009a7211e41042121420021134100212741002122410021234100211c41002125410021284200210d4200210e0c2f0b2008450d3420042d0002210520012003417d6a22083602042001200441036a360200200541014b0d34410021060240024020050e020100010b20084104490d35200428000321072001200341796a3602042001200441076a360200410121060b20024180076a2001109c0320022802d0074102460d3420024180086a2903002117200241f8076a2903002112200241d0076a290300210e200241c8076a290300210920024198086a290300211120024190086a2d0000212920024188086a2903002110200241f0076a2d0000212a200241e8076a2903002116200241e0076a2903002115200241c0076a290300210d200241bc076a280200212b200241b8076a280200212c200241b4076a280200212d200241b0076a280200212e200241a4076a280200210f200241a0076a280200211a2002419c076a280200210b20024198076a280200210a200228029408212f20022f019208213020022d009108213120022802f407213220022d00f307213320022d00f207213420022d00f107213520022903d807211420022903a80721362002290390072137200228028c072119200228028807210c200229038007213820024180076a200110b7012002280280072227450d34200d428080808070832113200c4180808078712122200c4180807c712123200c410876211c2036422088a721282037422088a721252038422088a721262002290284072239422088a721202036a7213a2037a7211b2038a7211f2039a7211e410521210c2e0b20084108490d33200429000221092001200341766a36020420012004410a6a3602002009422088a721272009a72107410621210c040b20084108490d32200429000221092001200341766a36020420012004410a6a3602002009422088a721272009a72107410721210c030b20084108490d312004290002210d2001200341766a36020420012004410a6a36020020024180076a2001105e2002280280072206450d312002290284072109200128020422040d0d0c220b20084108490d30200429000221092001200341766a36020420012004410a6a3602002009422088a721272009a72107410921210c010b20084108490d2f200429000221092001200341766a360204410a212120012004410a6a3602002009422088a721272009a721070b4200211341002120410021260c1e0b20084108490d2d200429000221092001200341766a220536020420012004410a6a36020020054108490d2d2009422088a7210b2009a7210a200429000a210920012003416e6a220c3602042001200441126a36020041002105200241003a00a0072009422088a7210f2009a7211a416d210802400240024002400340200c2005460d0120024180076a20056a200420056a220641126a2d00003a00002001200320086a3602042001200641136a3602002002200541016a22073a00a0072008417f6a21082007210520074120470d000b2003416e6a2007460d3120022f00810721182002418f076a2900002110200229008707211120022d009f07210c2002290097072112200228008307210620022d008007211d200420076a220541126a2d000021042001200320086a22083602042001200541136a2219360200200441014b0d3120040e020201020b200541ff0171450d30200241003a00a0070c300b20084110490d2f200541136a29000021092005411b6a290000210d2001200320076b415d6a22083602042001200541236a2219360200200da7212c2009a7212e200d422088a7212b2009422088a7212d4101213a0c010b4100212d4100212c4100212b4100213a0b2008450d2d20192d0000210420012008417f6a22033602042001201941016a360200200441014b0d2d4200210e4200210d0240024020040e020100010b20034110490d2e201941096a290000210e2019290001210920012008416f6a3602042001201941116a3602004201210d0b20024180076a200110b7012002280280072219450d2d201841087621242002290284072217422088a721252012422088a721262011422088a721272010422088a721202017a7211b2012a7211f2011a721072010a7211e410b2121420021134100212241002123410021280c270b20084108490d2c2004290002210d2001200341766a220536020420012004410a6a36020020054108490d2c200429000a210920012003416e6a22083602042001200441126a36020041002105200241003a00a0072003416d6a21032009422088a7210b2009a7210a0240034020082005460d0120024180076a20056a200420056a220641126a2d00003a0000200120033602042001200641136a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f00810722184108762124200d422088a721252002290097072209422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d200da7211b2009a7211f200ea721072010a7211e410c21210c250b200541ff0171450d2c200241003a00a0070c2c0b20084108490d2b200429000221092001200341766a220836020420012004410a6a36020041002105200241003a00a007200341756a21030240034020082005460d0120024180076a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f008107221841087621242009422088a72125200229009707220d422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d2009a7211b200da7211f200ea721072010a7211e410d21210c1b0b200541ff0171450d2b200241003a00a0070c2b0b20084108490d2a200429000221092001200341766a36020420012004410a6a36020020024180076a200110b7012002280280072206450d2a2009422088a72120200229028407220d422088a721272009a7211e200da72107410e21210c180b20084108490d29200429000221092001200341766a36020420012004410a6a36020020024180076a200110b7012002280280072206450d292009422088a72120200229028407220d422088a721272009a7211e200da72107410f21210c170b20084108490d28200429000221092001200341766a220836020420012004410a6a36020041002105200241003a00a007200341756a21030240034020082005460d0120024180076a20056a200420056a2206410a6a2d00003a00002001200336020420012006410b6a3602002002200541016a22063a00a0072003417f6a21032006210520064120470d000b20022f008107221841087621242009422088a72125200229009707220d422088a72126200229008707220e422088a721272002418f076a2900002210422088a7212020022d009f07210c200228008307210620022d008007211d2009a7211b200da7211f200ea721072010a7211e411021210c180b200541ff0171450d28200241003a00a0070c280b2008450d2720042d0002210520012003417d6a3602042001200441036a360200200541014b0d27411221214200211341002127410021204100211e4100212641002122410021234100211c41002125410021284200210d4200210e4100211d024020050e022200220b4101211d41002127410021204100211e4100212641002122410021234100211c41002125410021284200210d4200210e0c210b20084110490d262004410a6a29000021092004290002210d20012003416e6a3602042001200441126a3602002009a7211e200d422088a721272009422088a72120200da721074113212142002113410021260c160b20024188076a2802002125200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d244100210a0240024020040e020100010b20024180076a200110b701200228028007220a450d252002290284072112200128020421030b2012a7210b2003450d23200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d234100210f0240024020040e020100010b20024180076a200110b701200228028007220f450d242002290284072117200128020421030b2017a7213a2003450d22200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d224100212e0240024020040e020100010b20024180076a200110b701200228028007222e450d232002290284072116200128020421030b2016a7212d2003450d21200128020022052d0000210420012003417f6a22033602042001200541016a360200200441014b0d214100212b0240024020040e020100010b20024180076a200110b701200228028007222b450d22200229028407210d200128020421030b2003450d20200128020022052d0000210420012003417f6a3602042001200541016a360200200441014b0d2020184108762124201242208821122017422088211720164220882116410021230240024020040e020100010b4180800421230b2012a7211a2017a721282016a7212c200d4280808080708321132011422088a721262010422088a72127200e422088a721202011a7211f2010a72107200ea7211e41012121410021220c1f0b2002418c076a2204280200212620024188076a2203280200211f200228028407212020024180076a200110b302200228028007220c4102460d1b200428020021252003280200211b200228028407211920024180076a200110b302200228028007220a4102460d1a2002418c076a2203280200210f20024188076a2204280200211a200228028407210b20024180076a200110b302200228028007223a4102460d192004280200212e200228028407212820012802042204450d162003280200212d200128020022052d0000210320012004417f6a22083602042001200541016a360200200341014b0d164102211d024020030e021900190b2008450d1620052d0001210320012004417e6a3602042001200541026a360200200341014b0d164100211d20030e021817180b200128020022032d0000210520012004417f6a22083602042001200341016a360200200541014b0d14410221250240024020050e020100010b20084110490d15200341096a29000021112003290001210e20012004416f6a22053602042001200341116a36020020054104490d152003280011211b20012004416b6a22053602042001200341156a3602002005450d1520032d0015210520012004416a6a22083602042001200341166a360200200541014b0d1541002125420021100240024020050e020100010b20084104490d16200335001621102001200441666a36020420012003411a6a360200410121250b2011422088a721192011a7210c0b200c4180808078712122200c4180807c71212341082121200c410876211c2010422088a7210b200e422088a72126200d422088a721202009422088a721272010a7210a200ea7211f200da7211e2009a7210742002113410021284200210d4200210e0c1d0b200041223602000c4c0b200041086a20022902c4053702002000200136020420004103360200200041106a20024180076a41b00110cd051a0c4b0b200220022902dc043703800720024180076a41086a200241f8036a41e00010cd051a200241c0056a20024180076a41e80010cd051a200241d8026a200241c0056a41e80010cd051a2000200136020420004107360200200041086a200241d8026a41e80010cd051a200041f0006a20024188026a41d00010cd051a0c4a0b200041086a20022902c4053702002000200136020420004109360200200041106a20024180076a41b00110cd051a0c490b4101211c0b200041003b004a2000200f3a002b200020083a002a2000200c3a0029200020193a000b200020073a000a2000201c3a000920004110360200200041386a2011370200200041306a2010370200200041186a2017370200200041106a2012370200200041d0006a200d370000200041cc006a200b360000200041c8006a201a3a0000200041c0006a20093702002000412c6a200a360000200041286a201d3a0000200041206a200e3702002000410c6a201e360200200041086a20063a0000200041d8006a20024180076a41e80010cd051a0c470b200041086a20022902c4053702002000200136020420004112360200200041106a20024180076a41b00110cd051a0c460b41012101410121050b200041003b001a20004117360200200041206a2009370200200041186a20013a00002000410c6a2004360200200041086a2005360200200041106a2006ad4220862003ad84370200200041286a20024180076a41980110cd051a0c440b102c000b20044104102d000b20044104102d000b20044104102d000b41c0014108102d000b41c0014108102d000b20034108102d000b200f4104102d000b420021134100212641002122410021234100211c41002125410021284200210d4200210e0c0b0b4200211341002122410021230c090b41002122410021234100211c41002125410021284200210d4200210e0c090b2009422088a7210102402009a72204450d00200421030340200628026021062003417f6a22030d000b03402004417f6a22040d000b0b02402001450d004100210441002103410021050340200220053602cc05200220033602c805200220063602c405200220043602c00520024180076a200241c0056a10612002280288072104200228028c072106200228029007210320022802940721052001417f6a22010d000b0b200641908cc500460d0e20062802002101200610202001450d0e20012802002104200110202004450d0e024020042802002201450d000340200410202001210420012802002203210120030d000b0b200410200c0e0b0240203a450d002028450d00202e450d00202810200b0240200a450d00200b450d00201a450d00200b10200b0240200c450d002019450d00201b450d00201910200b0240201e450d002020450d00201f450d00202010200b2006450d0d2007450d0d200610200c0d0b4101211d0b2009422088a7212b2009a7212c200d422088a72127410321214200211341002122410021234100211c4200210d4200210e0c050b0240200a450d00200b450d00201a450d00200b10200b0240200c450d002019450d00201b450d00201910200b0240201e450d002020450d00201f450d00202010200b2006450d0a2007450d0a200610200c0a0b0240200c450d002019450d00201b450d00201910200b0240201e450d002020450d00201f450d00202010200b2006450d092007450d09200610200c090b0240201e450d002020450d00201f450d00202010200b2006450d082007450d08200610200c080b4200211341002122410021230b410021284200210d4200210e0b200020303b00b201200020313a00b101200020333a009301200020343a009201200020353a009101200020243a000b200020183a000a2000201d3a000920004121360200200041a0016a201737020020004198016a2012370200200041f0006a200e370200200041e8006a2009370200200041b8016a2011370000200041b4016a202f360000200041b0016a20293a0000200041a8016a201037020020004194016a203236000020004190016a202a3a000020004188016a201637020020004180016a2015370200200041f8006a2014370200200041dc006a202b360200200041d8006a202c360200200041d4006a202d360200200041d0006a202e360200200041c4006a200f360200200041c0006a201a3602002000413c6a200b360200200041386a200a3602002000412c6a20193602002000410c6a2006360200200041086a20213a0000200041e0006a2013200d42ffffffff0f8384370200200041186a2020ad422086201ead84370200200041106a2027ad4220862007ad84370200200041c8006a2028ad422086203aad84370200200041306a2025ad422086201bad84370200200041206a2026ad422086201fad84370200200041286a20222023418080fc077172201c41ff017141087472200c41ff0171723602000c2f0b0240202b450d00200da7450d00202b10200b0240202e450d00202d450d00202e10200b0240200f450d00203a450d00200f10200b0240200a450d00200b450d00200a10200b201b450d04201910200c040b0240202e450d00202d450d00202e10200b0240200f450d00203a450d00200f10200b0240200a450d00200b450d00200a10200b201b450d03201910200c030b0240200f450d00203a450d00200f10200b0240200a450d00200b450d00200a10200b201b450d02201910200c020b0240200a450d00200b450d00200a10200b201b450d01201910200c010b201b450d00201910200b200041223602000c290b1027000b2007450d00200510200b20060d010c050b2006450d040b200410200c030b410021014200211742002116420021154200211442002113410021070b200020203b0062200020183a00612000201d3a0043200020193a00422000201a3a00412000200c3a00092000411c360200200041e8006a2012370000200041e4006a201f360000200041e0006a201c3a0000200041d8006a2011370200200041c4006a201e360000200041c0006a201b3a0000200041386a200e370200200041306a200d370200200041286a20093702002000411c6a20073602002000410c6a20043602002000410a6a200b3b0100200041086a200a3a0000200041c8006a2014201684201084370200200041186a2001200541ff017172360200200041d0006a2013201584201784370200200041206a200fad4220862008ad84370200200041106a2003ad4220862006ad84370200200041f0006a20024180076a41d00010cd051a0c220b200e422088a721010240200ea72203450d00200321050340200428026021042005417f6a22050d000b03402003417f6a22030d000b0b02402001450d004100210341002105410021060340200220063602e402200220053602e002200220043602dc02200220033602d802200241c0056a200241d8026a106120022802c805210320022802cc05210420022802d005210520022802d40521062001417f6a22010d000b0b200441908cc500460d0020042802002101200410202001450d0020012802002104200110202004450d00024020042802002201450d000340200410202001210420012802002203210120030d000b0b200410200b200041223602000c200b200020083602042000411a360200200041186a200a360200200041146a200b360200200041106a200c3602002000410c6a2007360200200041086a20063602002000411c6a20024180076a41a40110cd051a0c1f0b2007450d00200610200b200041223602000c1d0b200041223602000c1c0b200041223602000c1b0b2003450d020c010b2003450d010b200410200b200041223602000c170b200020013b000d2000201d3b0052200020193a0051200020073a0033200020063a0032200020053a00312000200f3a000b2000200b3a000a200020083a0009200041163602002000410f6a20014110763a0000200041c0006a2011370200200041386a2010370200200041206a2012370200200041186a200d370200200041d8006a2016370000200041d4006a201e360000200041d0006a200a3a0000200041c8006a200e370200200041346a200c360000200041306a201a3a0000200041286a2017370200200041106a20093702002000410c6a20043a0000200041086a20033a0000200041e0006a20024180076a41e00010cd051a0c160b200041223602000c150b200020073a000b200020083a000a200020063a000920004114360200200041306a200e370200200041286a200d370200200041206a2010370200200041186a20093702002000410c6a2005360200200041086a20013a0000200041106a2003ad4220862004ad84370200200041386a20024180076a41880110cd051a0c140b4200211041002104410021014100210f4100211a41002119420021094200210d0b2000201a3a00472000200f3a0042200020043a0041200020013b002a200020043a0029200020063a000b2000200a3a000a200020083a000920004113360200200041cf006a20094230883c0000200041cd006a20094220883d0000200041c9006a20093e0000200041c8006a20193a0000200041c3006a2001360000200041c0006a200b3a0000200041386a2012370200200041306a200d3702002000412c6a2007360000200041286a200c3a0000200041206a2010370200200041186a200e370200200041106a20113700002000410c6a2003360000200041086a20053a0000200041d0006a20024180076a41f00010cd051a0c120b200041223602000c110b200041223602000c100b0b200041003a000b200020063a00092000410f360200200041386a2009370200200041306a200d370200200041286a200e370200200041246a2001360200200041206a200a3602002000411c6a200c360200200041186a2003360200200041146a2007360200200041106a20043602002000410c6a2005360200200041086a20083a0000200041c0006a20024180076a41800110cd051a0c0e0b0240200c450d00200310200b2004450d010b200510200b200041223602000c0b0b200041223602000c0a0b0240201a450d00200f10200b0240200a450d00200a410c6c21042008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c450d030c010b0240201a450d00200f10200b0240200a450d00200a410c6c21042008210103400240200141046a280200450d00200128020010200b2001410c6a2101200441746a22040d000b0b200c450d020b200810200c010b201a450d00200f10200b200041223602000c050b200020093e00292000200f3a00272000200b3600232000200a3a00222000200c3a00212000201d3a000b2000201e3a000a200020083a0009200041063602002000412f6a20094230883c00002000412d6a20094220883d0000200041386a2010370200200041306a200e370200200041106a200d370200200041286a201a3a0000200041206a20073a00002000410c6a2006360200200041086a20193a0000200041186a201bad422086201cad84370200200041c0006a20024180076a41800110cd051a0c040b200041223602000c030b20004105360200200041e0006a2015370200200041d8006a2016370200200041c8006a2013370200200041c0006a2014370200200041386a2011370200200041306a2012370200200041286a2009370200200041206a200d370200200041186a200e370200200041106a2010370200200041d0006a20173702002000410c6a2004360200200041086a2001360200200041e8006a20024180076a41d80010cd051a0c020b200041223602000c010b200041223602000b200241c0086a24000bf30601067f230041f0006b2102024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a2206360204410121072001200441016a360200200541f001490d06200541847e6a220541034b0d0120050e0402030405020b200041023a00000f0b200041023a00000f0b20064102490d0420042f0001210520012003417d6a3602042001200441036a3602000240200541ef014d0d00410121070c040b200041023a00000f0b20064104490d042004280001210520012003417b6a3602042001200441056a36020041012107200541ffff034b0d02200041023a00000f0b024020064104490d00200041023a000020012003417b6a3602042001200441056a3602000f0b200041023a00000f0b41002105200241003a00682003417f6a21062003417e6a210302400240034020062005460d01200241c8006a20056a200420056a220741016a2d00003a0000200120033602042001200741026a3602002002200541016a22073a00682003417f6a21032007210520074120470d000b200241c6006a20022d004a3a0000200241306a200241d7006a290000370300200241386a200241df006a290000370300200241c0006a200241e7006a2d00003a0000200220022f01483b01442002200229004f370328200228004b2105410021010c010b0240200541ff0171450d00200241003a00680b410121010b200241246a41026a2203200241c4006a41026a2d00003a0000200241086a41086a2207200241286a41086a290300370300200241086a41106a2204200241286a41106a290300370300200241086a41186a2206200241286a41186a2d00003a0000200220022f01443b01242002200229032837030820010d03200241286a41026a20032d00003a0000200241c8006a41086a2007290300370300200241c8006a41106a2004290300370300200241c8006a41186a20062d00003a0000200220022f01243b012820022002290308370348410021070b200020073a0000200020022f01283b0001200041046a2005360200200041086a2002290348370200200041036a2002412a6a2d00003a0000200041106a200241c8006a41086a290300370200200041186a200241c8006a41106a290300370200200041206a200241c8006a41186a2802003602000f0b200041023a00000f0b200041023a00000f0b200041023a00000be20506067f017e027f017e017f017e230041206b220224000240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a360200024002400240200541037122074103460d0002400240024020070e03000102000b2005410276ad21080c040b410121072006450d0220042d0001210620012003417e6a3602042001200441026a3602002006410874200572220141ffff0371418002490d02200141fcff0371410276ad21080c030b4101210720064103490d01200441036a2d0000210620042f0001210920012003417c6a3602042001200441046a3602002009200641107472410874200572220141808004490d012001410276ad21080c020b02402005410276220a410c4b0d00024002400240200a0e0d00030303010303030303030302000b20064104490d052004350001210820012003417b6a3602042001200441056a36020020084280808080045421074200210b0c060b20064108490d04200429000121082001200341776a3602042001200441096a3602002008428080808080808080015421074200210b0c050b20064110490d03200441096a290000210b2004290001210820012003416f6a3602042001200441116a360200200b428080808080808080015421070c040b200a41046a220941104b0d022003417e6a2103200441026a21044100210541012107200241186a210c420021084200210b03402003417f460d01200241106a2004417f6a3100004200200541037441f8007110d00520012003360204200120043602002003417f6a2103200441016a2104200c290300200b84210b20022903102008842108200541016a22062105200641ff01712009490d000b2002427f427f41e800200a4103746b41f8007110d1052008200229030058200b200241086a290300220d58200b200d511b21070c030b0c020b4200210b410021070c010b410121070b20002008370308200041106a200b37030020002007ad370300200241206a24000bee0306047f017e027f017e027f017e230041106b220224000240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22033602042001200441016a360200200541014b0d00410021040240024020050e020100010b2002200110b70120022802002204450d0120022902042106200128020421030b2006a721052003450d03200128020022072d0000210820012003417f6a22033602042001200741016a360200200841014b0d034100210720080e020201020b200041013602000c030b2002200110b70120022802002207450d0120022902042109200128020421030b2009a7210802402003450d002001280200220a2d0000210b20012003417f6a3602042001200a41016a360200200b41014b0d004100210302400240200b0e020100010b2002200110b70120022802002203450d012002290204210c0b2000200436020420004100360200200041206a200c3702002000411c6a2003360200200041186a2009422088a7360200200041146a2008360200200041106a20073602002000410c6a2006422088a7360200200041086a20053602000c020b2000410136020002402007450d002008450d00200710200b2004450d012005450d01200410200c010b200041013602002004450d002005450d00200410200b200241106a24000bad0406017e027f027e037f027e057f420121020240200128020422034110490d002001280200220441086a2900002105200429000021062001200441106a3602002001200341706a220736020420074104490d002004280010210820012003416c6a22073602042001200441146a360200200741034d0d00200428001421092001200341686a22073602042001200441186a36020020074110490d00200441206a290000210a2004290018210b2001200341586a22073602042001200441286a36020020074104490d002004280028210c2001200341546a220736020420012004412c6a36020020074104490d00200428002c210d2001200341506a22073602042001200441306a36020020074104490d002004280030210e20012003414c6a22073602042001200441346a36020020074104490d002004280034210f2001200341486a22073602042001200441386a36020020074104490d00200428003821102001200341446a220736020420012004413c6a36020020074110490d0020002006370308200041286a200429003c370300200041206a200a370300200041186a200b370300200041106a2005370300200041d0006a2010360200200041cc006a200f360200200041c8006a200e360200200041c4006a200d360200200041c0006a200c3602002000413c6a2009360200200041386a2008360200200041306a200441c4006a2900003703002001200341b47f6a3602042001200441cc006a360200420021020b200020023703000bcd0201097f230041106b22022400200241086a2001105f02400240024002402002280208450d00200041003602000c010b20012802042203417f4c0d01200228020c21040240024020030d00410121050c010b2003101e2205450d030b024002402004450d004100210641002107034020012802042208450d02200128020022092d0000210a20012008417f6a3602042001200941016a360200200a41044f0d02200741016a2108024020072003470d00024020062008200620084b1b22034100480d000240024020070d002003101e21050c010b200520072003102221050b20050d0120034101102d000b1027000b200520076a200a3a0000200641026a21062008210720042008470d000b0b2000200336020420002005360200200041086a20043602000c010b200041003602002003450d00200510200b200241106a24000f0b102c000b20034101102d000b8f0a03147f017e047f230041c0006b22022400200241106a2001105f02400240024002402002280210450d00200041003602000c010b200128020422034160712204417f4c0d022002280214210502400240200341057622060d00410821070c010b2004101e2207450d020b024002402005450d00410021084100210303400240024002400240200128020422044102490d00200128020022092f0000210a20012004417e6a220b3602042001200941026a2209360200200b450d0020092d0000210b20012004417d6a220c3602042001200941016a360200200b41024b0d0002400240024002400240200b0e03000102000b200241306a200110eb0120022d00304113470d020c040b200c4104490d032009280001210d2001200441796a3602042001200941056a3602004101210e41002104410021090c020b200241086a2001105f20022802080d0220012802042204417071220b417f4c0d0b200228020c210f024002400240200441047622090d00410821100c010b200b101e2210450d010b0240200f450d00410021114100210c4100210b03400240024020012802042212450d00200128020022042d0000211320012012417f6a22143602042001200441016a360200201341014b0d0002400240024020130e020001000b20144104490d022012417b6a2112200441056a211320042800012115410021140c010b20144108490d01201241776a2112200441096a211320042900012116410121140b200b41016a21042001201236020420012013360200200b2009470d0120112004201120044b1b220941ffffffff00712009470d09200941047422124100480d0902400240200b0d002012101e21100c010b2010200c2012102221100b20100d0120124108102d000b2009450d06201010200c060b2010200c6a220b2014360200200b41086a2016370200200b41046a2015360200201141026a2111200c41106a210c2004210b200f2004470d000b0b2010450d03200941807e7121044102210e200f21172010210d0c020b200b4108102d000b2002280230220941807e712104200228023c211820022802382119200228023421174100210e0b200241286a41046a200241306a41046a2f01003b010020022002280130360228200941ff0171200472211a0c010b200e210a4103210e0b200241206a41046a2209200241286a41046a2f01003b010020022002280228360220200e4103460d04200341016a2104200241186a41046a220b20092f01003b01002002200228022036021820062003470d01200341017422062004200620044b1b220641ffffff3f712006470d00200641057422094100480d000240024020030d002009101e21070c010b200720034105742009102221070b20070d0120094108102d000b1027000b200720034105746a2203200d3602042003200e360200200341186a200a3b0100200341146a2018360200200341106a20193602002003410c6a2017360200200341086a201a3602002003411a6a20022802183601002003411e6a200b2f01003b0100200841206a2108200a210e2004210320042005470d000b0b2000200636020420002007360200200041086a20053602000c010b2000410036020002402003450d00200741086a2103034002400240200341786a280200220141014b0d00024020010e020002000b2003106b0c010b2003280200450d002003417c6a28020010200b200341206a2103200841606a22080d000b0b2006450d00200710200b200241c0006a24000f0b20044108102d000b102c000b941104087f047e137f027e23004190016b220224000240024002400240024002400240024002400240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a2206360204410121072001200441016a360200200541014b0d00410021080240024020050e020100010b20064104490d012004280001210920012003417b6a2206360204410521072001200441056a360200410121080b20064104490d03200420076a2203280000210720012006417c6a22053602042001200341046a3602002005450d0420032d0004210520012006417b6a22043602042001200341056a360200200541014b0d044102210320050e020201020b200041023602500c0c0b200241e8006a200110f803200241d0006a41086a220520024184016a290200370300200241d0006a41106a22042002418c016a2802003602002002200229027c370350200228027822034102460d02200241e8006a41086a290300210a2002290368210b200241386a41106a2004280200360200200241386a41086a20052903003703002002200229035037033820034103460d02200128020421040b200241086a41106a200241386a41106a280200360200200241086a41086a200241386a41086a290300370300200220022903383703082004450d02200128020022062d0000210520012004417f6a22043602042001200641016a360200200541014b0d02410221060240024020050e020100010b200241e8006a200110f803200241d0006a41086a220520024184016a290200370300200241d0006a41106a22042002418c016a2802003602002002200229027c370350200228027822064102460d03200241e8006a41086a290300210c2002290368210d200241386a41106a2004280200360200200241386a41086a20052903003703002002200229035037033820064103460d03200128020421040b200241206a41106a200241386a41106a280200360200200241206a41086a200241386a41086a290300370300200220022903383703202004450d032001280200220e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d03410021110240024020050e020100010b200f4102490d04200e2f0001211220012004417d6a22053602042001200e41036a36020020054102490d04200e2f0003211320012004417b6a220f3602042001200e41056a2210360200410121110b200f450d0420102d000021052001200f417f6a22043602042001201041016a220e360200200541014b0d04410021140240024020050e020100010b20044104490d05201028000121152001200f417b6a22043602042001201041056a220e360200410121140b2004450d05200e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d05410021160240024020050e020100010b200f4104490d06200e280001211720012004417b6a220f3602042001200e41056a2210360200410121160b200f450d0620102d000021052001200f417f6a22043602042001201041016a220e360200200541014b0d06410021180240024020050e020100010b20044104490d07201028000121192001200f417b6a22043602042001201041056a220e360200410121180b2004450d07200e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d074100211a0240024020050e020100010b200f4104490d08200e280001211b20012004417b6a220f3602042001200e41056a22103602004101211a0b200f450d0820102d000021052001200f417f6a22043602042001201041016a220e360200200541014b0d084100211c0240024020050e020100010b20044104490d092010280001211d2001200f417b6a22043602042001201041056a220e3602004101211c0b2004450d09200e2d0000210520012004417f6a220f3602042001200e41016a2210360200200541014b0d094100211e0240024020050e020100010b200f4104490d0a200e280001211f20012004417b6a220f3602042001200e41056a22103602004101211e0b0240200f450d0020102d000021052001200f417f6a22043602042001201041016a360200200541014b0d004100210e0240024020050e020100010b20044104490d01201028000121202001200f417b6a3602042001201041056a3602004101210e0b200241e8006a41106a200241086a41106a2802002201360200200241e8006a41086a200241086a41086a2903002221370300200241d0006a41086a2205200241206a41086a290300370300200241d0006a41106a2204200241206a41106a280200360200200220022903082222370368200220022903203703502000200a3703082000200b370300200041306a200c3703002000200d37032820002003360210200020223702142000411c6a2021370200200041246a20013602002000200636023820004198016a20133b010020004196016a20123b010020004194016a20113b010020004190016a20203602002000418c016a200e36020020004188016a201f36020020004184016a201e36020020004180016a201d360200200041fc006a201c360200200041f8006a201b360200200041f4006a201a360200200041f0006a2019360200200041ec006a2018360200200041e8006a2017360200200041e4006a2016360200200041e0006a2015360200200041dc006a2014360200200041d8006a200736020020002009360254200020083602502000200229035037023c200041c4006a2005290300370200200041cc006a20042802003602002000419e016a2002413c6a2f01003b01002000200228013836019a010c0b0b200041023602500c0a0b200041023602500c090b200041023602500c080b200041023602500c070b200041023602500c060b200041023602500c050b200041023602500c040b200041023602500c030b200041023602500c020b200041023602500c010b200041023602500b20024190016a24000bf00204027f017e017f077e0240024020012802042202450d0020012802002203310000210420012002417f6a22053602042001200341016a3602002005450d012003310001210620012002417e6a22053602042001200341026a3602002005450d012003310002210720012002417d6a22053602042001200341036a3602002005450d012003310003210820012002417c6a22053602042001200341046a3602002005450d012003310004210920012002417b6a22053602042001200341056a3602002005450d012003310005210a20012002417a6a22053602042001200341066a3602002005450d012003310006210b2001200241796a22053602042001200341076a3602002005450d01200041003a00002003310007210c2001200241786a3602042001200341086a3602002000200c423886200b42308684200a422886842009422086842008421886842007421086842006420886842004843700010f0b200041013a00000f0b200041013a00000b800301057f230041d0006b220224002002410036022820014110200241286a100321030240024002400240024020022802282204417f460d0020030d010b200041023a00000c010b2004450d0220032d0000220541014b0d02410021010240024020050e020100010b41002101200241003a00482004417f6a2105200341016a2106034020052001460d03200241286a20016a200620016a2d00003a00002002200141016a22043a00482004210120044120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a29030037030020022002290328370308410121010b200020013a000020002002290308370001200041096a200241106a290300370000200041116a200241186a290300370000200041196a200241206a290300370000200310200b200241d0006a24000f0b200141ff0171450d00200241003a00480b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000bb004010a7f230041d0006b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020422034160712204417f4c0d012002280204210502400240200341057622060d00410121070c010b2004101e2207450d030b02402005450d00410021080340200241003a00482008220941016a21082001280204417f6a21034100210402400240024003402003417f460d01200241286a20046a2001280200220a2d00003a0000200120033602042001200a41016a3602002002200441016a220a3a00482003417f6a2103200a2104200a4120470d000b200241086a41186a2204200241286a41186a290300370300200241086a41106a220a200241286a41106a290300370300200241086a41086a220b200241286a41086a2903003703002002200229032837030820062009470d020240200941017422032008200320084b1b220641ffffff3f712006470d002006410574220341004e0d020b1027000b0240200441ff0171450d00200241003a00480b200041003602002006450d04200710200c040b0240024020090d002003101e21070c010b200720094105742003102221070b2007450d060b200720094105746a22032002290308370000200341186a2004290300370000200341106a200a290300370000200341086a200b29030037000020082005470d000b0b2000200636020420002007360200200041086a20053602000b200241d0006a24000f0b102c000b20044101102d000b20034101102d000b922901057f230041106b2203240020034100360208200342013703002003200236020c2003410c6a2003106302402002450d00200120024105746a2104034020012d0000210502400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d022003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141016a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d032003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141026a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d042003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141036a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d052003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141046a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d062003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141056a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d072003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141066a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d082003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141076a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d092003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141086a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0a2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141096a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0b2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410a6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0c2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410b6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0d2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410c6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0e2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410d6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d0f2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410e6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d102003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001410f6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d112003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141106a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d122003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141116a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d132003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141126a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d142003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141136a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d152003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141146a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d162003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141156a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d172003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141166a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d182003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141176a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d192003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141186a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1a2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a0000200141196a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1b2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411a6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1c2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411b6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1d2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411c6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1e2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411d6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d1f2003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411e6a2d0000210502400240200328020420032802082202460d00200328020021060c010b200241016a22062002490d01200241017422072006200720064b1b22074100480d010240024020020d002007101e21060c010b200328020020022007102221060b2006450d202003200736020420032006360200200328020821020b2003200241016a360208200620026a20053a00002001411f6a2d000021050240200328020420032802082202460d00200328020021060c210b200241016a22062002490d00200241017422072006200720064b1b22074100480d000240024020020d002007101e21060c010b200328020020022007102221060b02402006450d002003200736020420032006360200200328020821020c210b20074101102d000b1027000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b20074101102d000b2003200241016a360208200620026a20053a0000200141206a22012004470d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000b830e03047f017e027f230041106b22022400200241003602082002420137030002402001280200220341044b0d000240024002400240024002400240024020030e050004030201000b02404101101e2203450d00200242818080801037020420022003360200200341013a00002001280204210420022001410c6a280200220336020c2002410c6a2002106302402003450d002004200341286c6a210503402004200210ca01200441206a29030021060240024020022802042207200228020822036b4108490d00200228020021070c010b200341086a22082003490d08200741017422032008200320084b1b22034100480d080240024020070d002003101e21070c010b200228020020072003102221070b02402007450d002002200336020420022007360200200228020821030c010b20034101102d000b2002200341086a360208200720036a20063700002005200441286a2204470d000b0b200141106a2802002107024020022802042204200228020822036b4104490d00200228020021040c080b200341046a22082003490d05200441017422032008200320084b1b22034100480d050240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c080b20034101102d000b41014101102d000b024002404101101e2203450d00200242818080801037020420022003360200200341053a000020012802042108024020022802042207200228020822036b4104490d00200341046a2104200228020021070c020b200341046a22042003490d05200741017422012004200120044b1b22014100480d050240024020070d002001101e21070c010b200228020020072001102221070b02402007450d0020022001360204200220073602000c020b20014101102d000b41014101102d000b20022004360208200720036a20083600000c060b024002404101101e2203450d00200242818080801037020420022003360200200341043a000020012802042107024020022802042204200228020822036b4104490d00200228020021040c020b200341046a22082003490d04200441017422012008200120084b1b22084100480d040240024020040d002008101e21040c010b200228020020042008102221040b02402004450d0020022008360204200220043602000c020b20084101102d000b41014101102d000b2002200341046a360208200420036a20073600000c050b024002404101101e2203450d00200242818080801037020420022003360200200341033a0000200141086a2903002106024020022802042207200228020822036b4108490d00200341086a2104200228020021070c020b200341086a22042003490d03200741017422082004200820044b1b22084100480d030240024020070d002008101e21070c010b200228020020072008102221070b02402007450d0020022008360204200220073602000c020b20084101102d000b41014101102d000b20022004360208200720036a20063700000c040b024002404101101e2203450d00200242818080801037020420022003360200200341023a000020012802042107024020022802042204200228020822036b4104490d00200228020021040c020b200341046a22082003490d02200441017422052008200520084b1b22084100480d020240024020040d002008101e21040c010b200228020020042008102221040b02402004450d0020022008360204200220043602000c020b20084101102d000b41014101102d000b2002200341046a360208200420036a2007360000200128020821042002200141106a280200220336020c2002410c6a2002106302402003450d002004200341286c6a210503402004200210ca01200441206a29030021060240024020022802042207200228020822036b4108490d00200228020021070c010b200341086a22082003490d03200741017422032008200320084b1b22034100480d030240024020070d002003101e21070c010b200228020020072003102221070b02402007450d002002200336020420022007360200200228020821030c010b20034101102d000b2002200341086a360208200720036a20063700002005200441286a2204470d000b0b200141146a2802002107024020022802042204200228020822036b4104490d00200228020021040c020b200341046a22082003490d00200441017422032008200320084b1b22034100480d000240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c020b20034101102d000b1027000b2002200341046a360208200420036a20073600000c010b2002200341046a360208200420036a20073600000b20002002290300370200200041086a200241086a280200360200200241106a24000bd60201037f0240024002400240024002400240024002400240024002400240024020012802000e0400010203000b410121024101101e2201450d05200141003a0000410121030c040b4101101e2202450d05200241013a00002001280204210320024101410510222202450d062002200336000120012802082104410a210320024105410a10222201450d07200120043600050c020b410121024101101e2201450d07200141023a0000410121030c020b4101101e2202450d07200241033a00002001280204210320024101410510222202450d082002200336000120012802082104410a210320024105410a10222201450d09200120043600050b410921020b2000200236020820002003360204200020013602000f0b41014101102d000b41014101102d000b41054101102d000b410a4101102d000b41014101102d000b41014101102d000b41054101102d000b410a4101102d000be905020c7f037e230041b0016b2202240020022001105f024002400240024002402002280200450d00200041003602000c010b200128020441216e220341216c2204417f4c0d01200228020421050240024020040d00410121060c010b2004101e2206450d030b02402005450d00410021070340200241003a00a8012007220841016a21072001280204417f6a210441002109024002400240024003402004417f460d0120024188016a20096a2001280200220a2d00003a0000200120043602042001200a41016a3602002002200941016a220b3a00a8012004417f6a2104200b2109200b4120470d000b200241e8006a41186a220b20024188016a41186a290300370300200241e8006a41106a220c20024188016a41106a290300370300200241e8006a41086a220d20024188016a41086a29030037030020022002290388013703682004417f460d01200a2d00012109200120043602042001200a41026a360200200941044f0d01200241286a41086a200d290300220e370300200241286a41106a200c290300220f370300200241286a41186a200b2903002210370300200241086a41086a220b200e370300200241086a41106a220a200f370300200241086a41186a220c201037030020022002290368220e3703282002200e37030820032008470d030240200841017422042007200420074b1b2203ad42217e220e422088a70d00200ea7220441004e0d030b1027000b200941ff0171450d00200241003a00a8010b200041003602002003450d04200610200c040b0240024020080d002004101e21060c010b2006200841216c2004102221060b2006450d060b2006200841216c6a22042002290308370000200b290300210e200a290300210f200c2903002110200420093a0020200441186a2010370000200441106a200f370000200441086a200e37000020072005470d000b0b2000200336020420002006360200200041086a20053602000b200241b0016a24000f0b102c000b20044101102d000b20044101102d000bd9a7010a037f017e027f017e037f017e067f037e187f087e23004180096b2201240020014180066a10e10420012802840621020240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001280280060e0400010216000b20022000470d15200141023a009c062001410a3a00980620014198066a1077200141b0076a41086a22004200370300200142003703b0074195dec400411a200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210020012802b0072202417f460d032000450d03200120023602c408200120003602c008200141b0076a200141c0086a10e30120012802b0072203450d0220012902b407210402402002450d00200010200b2004422088a721020c0a0b20022000470d14200141043a009c062001410a3a00980620014198066a1077200141b0076a41086a22004200370300200142003703b00741caf5c400411f200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072202417f470d0041e40021020c010b024020000d0041e40021020c010b20024104490d0420002800002102200010200b10792105200141b0076a41086a22004200370300200142003703b00741a1dfc4004115200141b0076a100020014198066a41086a2000290300370300200120012903b007370398064101101e2200450d04200041023a000020004101410510222200450d052000200520026a36000120014198066a411020004105100520001020200141053a009c062001410a3a00980620014198066a10770c140b20022000470d13200141063a009c062001410a3a00980620014198066a107720014100360290062001420837038806200141b0076a41086a22004200370300200142003703b00741afdec400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210020012802b0072202417f460d062000450d06200120023602c408200120003602c008200141b0076a200141c0086a10e30120012802b0072206450d0520012902b40721072002450d07200010200c070b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b4100210242002104410121030c060b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41014101102d000b41054101102d000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41012106420021070b024002402007422088a722000d0041082108410021020c010b200041057421094108210841002100410021022006210502400240034020014198066a200510eb040240024020022000460d002000210a0c010b200041016a22022000490d142000410174220a2002200a20024b1b220aad4288017e220b422088a70d14200ba722024100480d140240024020000d002002101e21080c010b200820004188016c2002102221080b2008450d02200120083602880620002102200a21000b200541206a2105200820024188016c6a20014198066a41880110cd051a200241016a2102200941606a2209450d020c000b0b20024108102d000b2001200a36028c0620012002360290060b02402007a7450d00200610200b2001420037029c08200141908cc500360298080240024002402002450d00200820024188016c6a210c200141b4066a210d0340024020082d0060450d00200841e0006a41016a21092001280298082206210e200128029c08220f21100240034002400240200e2f010622110d00410021050c010b20114105742100200e41086a2102417f21050340024020000d00201121050c020b20092002412010cf05220a450d03200041606a2100200541016a2105200241206a2102200a417f4a0d000b0b02402010450d002010417f6a2110200e20054102746a41a8086a280200210e0c010b0b200141c0086a41186a200941186a2200290000370300200141c0086a41106a200941106a2202290000370300200141c0086a41086a200941086a2205290000370300200120092900003703c008200141b0076a41186a220a2000290000370300200141b0076a41106a22002002290000370300200141b0076a41086a22022005290000370300200120092900003703b007200141e0056a200910d704200141e0056a41186a2903002107200141e0056a41086a290300211220012903f005210b20012903e0052113200d41086a2002290300370000200d41106a2000290300370000200d41186a200a290300370000200d20012903b007370000200141003602b006200142083703a8062001200b20137c2213370398062001200720127c2013200b54ad7c3703a006200141b0076a20014198086a200141c0086a20014198066a10ef04024020012802c0072200450d0020012802c407450d00200010200b2001280298082106200128029c08210f0b024003400240024020062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200541016a210520092002412010cf05220a450d03200041606a2100200241206a2102200a417f4a0d000b0b200f450d02200f417f6a210f200620054102746a41a8086a28020021060c000b0b20014198066a41186a220a200841386a29000037030020014198066a41106a220e200841306a29000037030020014198066a41086a220f200841286a2900003703002001200829002037039806200841086a2903002107200841186a2903002112200829030021132008290310210b200620054106746a220941f8026a2105024020094180036a22022802002200200941fc026a280200470d00200041016a22092000490d15200041017422062009200620094b1b2209ad42307e2214422088a70d152014a722064100480d150240024020000d002006101e21000c010b2005280200200041306c2006102221000b2000450d0420052000360200200541046a2009360200200228020021000b2005280200200041306c6a2200201220077c200b20137c2207200b54ad7c370308200020073703002000200129039806370310200041186a200f290300370300200041206a200e290300370300200041286a200a2903003703002002200228020041016a3602000b20084188016a2208200c470d000b0b200141a0076a41086a20014198086a41086a28020036020020012001290398083703a007200141b0076a41086a22004200370300200142003703b0074195dec400411a200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a10032100024020012802b0072202417f460d002000450d00200120023602c408200120003602c008200141b0076a200141c0086a10e301024020012802b007220c450d0020012902b40721142002450d03200010200c030b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b4101210c420021140c010b20064108102d000b02402014422088a72200450d00200c20004105746a2110200141b4066a2111200c210f0340200f220a41206a210f200141a0076a210020012802a40721080240034002400240200028020022062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200a2002412010cf052209450d03200041606a2100200541016a2105200241206a21022009417f4a0d000b0b02402008450d002008417f6a2108200620054102746a41a8086a21000c010b0b200141c0086a41186a200a41186a2200290000370300200141c0086a41106a200a41106a2202290000370300200141c0086a41086a200a41086a22052900003703002001200a2900003703c008200141b0076a41186a22092000290000370300200141b0076a41106a22002002290000370300200141b0076a41086a220220052900003703002001200a2900003703b007200141c0056a200a10d704200141c0056a41186a2903002107200141c0056a41086a290300211220012903d005210b20012903c0052113201141086a2002290300370000201141106a2000290300370000201141186a2009290300370000201120012903b007370000200141003602b006200142083703a8062001200b20137c2213370398062001200720127c2013200b54ad7c3703a006200141b0076a200141a0076a200141c0086a20014198066a10ef0420012802c0072200450d0020012802c407450d00200010200b200f2010470d000b0b02402014a7450d00200c10200b20012802a8072102200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210002400240024002400240024002400240024020012802b0072205417f470d00410a21050c010b024020000d00410a21050c010b20054104490d0120002800002105200010200b20022005460d0620012802a8072102200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072205417f470d00410a21050c010b024020000d00410a21050c010b20054104490d0220002800002105200010200b200220054d0d06200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072202417f470d00410a21150c010b024020000d00410a21150c010b20024104490d0320002800002115200010200b20012802a80721002001200141a0076a3602f007200020154d0d06200141b0076a41086a22004200370300200142003703b0074195dec400411a200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210020012802b0072202417f460d042000450d04200120023602c408200120003602c008200141b0076a200141c0086a10e30120012802b0072216450d0320012902b407210b2002450d05200010200c050b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b4200210b410121160b200ba721170240200b422088a72200450d00201620004105746a211820012802f0072200280200210f200028020421102016210e034020014198066a41186a200e41186a29000037030020014198066a41106a200e41106a29000037030020014198066a41086a200e41086a2900003703002001200e29000037039806200e41206a210e200f210a2010210802400240034002400240200a2f010622060d00410021050c010b20064105742100200a41086a2102417f21050340024020000d00200621050c020b20014198066a2002412010cf052209450d03200041606a2100200541016a2105200241206a21022009417f4a0d000b0b2008450d022008417f6a2108200a20054102746a41a8086a280200210a0c000b0b20014198086a41086a220020014198066a41086a29030037030020014198086a41106a220220014198066a41106a29030037030020014198086a41186a220520014198066a41186a2903003703002001200129039806220b3703c0082001200b3703980802400240024002400240024002400240024002400240024002400240024002400240024002404120101e2203450d002003200129039808370000200341186a2005290300370000200341106a2002290300370000200341086a20002903003700000240024002400240200e2018470d00410121194101211a0c010b410121194101211a034020012802f0072200280200210f20002802042110034020014198066a41186a2211200e41186a29000037030020014198066a41106a220c200e41106a29000037030020014198066a41086a220d200e41086a2900003703002001200e29000037039806200e41206a210e200f210a201021080240034002400240200a2f010622060d00410021050c010b20064105742100200a41086a2102417f21050340024020000d00200621050c020b20014198066a2002412010cf052209450d03200041606a2100200541016a2105200241206a21022009417f4a0d000b0b02402008450d002008417f6a2108200a20054102746a41a8086a280200210a0c010b0b200e2018470d010c030b0b20014198086a41086a200d290300220b37030020014198086a41106a200c290300220737030020014198086a41186a201129030022123703002001200129039806221337039808200141c0086a41186a22022012370300200141c0086a41106a22052007370300200141c0086a41086a2209200b370300200120133703c0080240201a2019470d00201941016a22002019490d2b2019410174220a2000200a20004b1b221a41ffffff3f71201a470d2b201a41057422004100480d2b0240024020190d002000101e21030c010b200320194105742000102221030b2003450d030b200320194105746a220020012903c008370000200041186a2002290300370000200041106a2005290300370000200041086a2009290300370000201941016a2119200e2018470d000b0b02402017450d00201610200b201920154d0d032001200141f0076a3602b0072001200141b0076a3602980620194115490d062019410176221b41ffffff3f71201b470d1a201b4105742200417f4c0d1a4101211c02402000450d002000101e221c450d020b200341606a211d4100211e4104211f410021202019212103400240024020212218417f6a22000d0041012105410021210c010b2018417e6a210f200320004105746a210a2001280298062802002802002200280200221021082000280204221121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d00420021124200210b0c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b2003200f4105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d0042002113420021070c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b0240024002400240024002402012201354200b200754200b2007511b450d00024003400240200f22210d00410021210c020b2021417f6a210f200320214105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d00420021124200210b0c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b2003200f4105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d0042002113420021070c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b2012201354200b200754200b2007511b0d000b0b20182021490d02201820194b0d04201820216b22054101762209450d01201d20184105746a2100200320214105746a2102034020014198086a41186a220a200241186a220829000037030020014198086a41106a2206200241106a220e29000037030020014198086a41086a220f200241086a22102900003703002001200229000037039808200041086a2211290000210b200041106a220c2900002107200041186a220d29000021122002200029000037000020082012370000200e20073700002010200b370000200d200a290300370000200c20062903003700002011200f2903003700002000200129039808370000200041606a2100200241206a21022009417f6a22090d000c020b0b03400240200f22210d0041002121201821050c070b2021417f6a210f200320214105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d00420021124200210b0c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b2003200f4105746a210a20102108201121060240024003400240024020082f0106220e0d00410021050c010b200e4105742100200841086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020060d0042002113420021070c030b2006417f6a2106200820054102746a41a8086a28020021080c000b0b200820054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b201220135a200b20075a200b2007511b0d000b201820216b21050b2021450d04200541094b0d04201820194b0d01201820216b21052021417f6a2100201d20214105746a2102034020182000490d0b2002200541016a220520014198066a108a022000417f6a220920004f0d04200241606a2102200921002005410a490d000c040b0b20212018103b000b20182021417f6a2200490d080b20182019103a000b200941016a21210b024002400240024002402020201e460d00202021000c010b201e41016a2200201e490d2d201e41017422022000200220004b1b220241ffffffff01712002470d2d200241037422004100480d2d02400240201e0d002000101e211f0c010b201f201e41037420001022211f0b201f450d01201e21002002211e0b201f20004103746a2200200536020420002021360200202041016a2222212020224102490d020c010b20004104102d000b024003400240024002400240201f2022417f6a22204103746a2200280200450d002022410374201f6a220941746a2802002205200028020422024d0d000240202241024d0d00201f2022417d6a22234103746a2802042200200220056a4d0d02202241034d0d00200941646a280200200020056a4d0d020b202221200c060b20224103490d0120002802042102201f2022417d6a22234103746a28020421000b20002002490d010b2022417e6a21230b0240024002400240024002402022202341016a22244b2225450d00202220234b2226450d01201f20234103746a2227280204222820272802006a2200201f20244103746a2229280200222a490d02200020194b0d032003202a4105746a22172029280204222b41057422026a2108200320004105746a210d2000202a6b2205202b6b2200202b4f0d04201c20082000410574220210cd05221620026a211802400240202b4101480d00200041014e0d010b200821112016210a0c060b200128029806212c200821110340201141606a210a201841606a2108202c28020028020022002802002206210e2000280204220f211002400240034002400240200e2f0106220c0d00410021050c010b200c4105742100200e41086a2102417f21050340024020000d00200c21050c020b200541016a210520082002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020100d00420021124200210b0c030b2010417f6a2110200e20054102746a41a8086a280200210e0c000b0b200e20054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b0240024003400240024020062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b0240200f0d0042002113420021070c030b200f417f6a210f200620054102746a41a8086a28020021060c000b0b200620054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b200d41606a220d200a20082012201354200b200754200b2007511b22021b2200290000370000200d41186a200041186a290000370000200d41106a200041106a290000370000200d41086a200041086a2900003700002018200820021b211802402017200a201120021b2211490d002016210a0c070b2016210a20162018490d000c060b0b41d0e0c60020242022102a000b41d0e0c60020232022102a000b202a2000103b000b20002019103a000b201c2017200210cd05220020026a211802400240202b4101480d002005202b4a0d010b201721112000210a0c010b20012802980621162000210a201721110340201628020028020022002802002206210e2000280204220f211002400240034002400240200e2f0106220c0d00410021050c010b200c4105742100200e41086a2102417f21050340024020000d00200c21050c020b200541016a210520082002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b024020100d00420021124200210b0c030b2010417f6a2110200e20054102746a41a8086a280200210e0c000b0b200e20054106746a220041f0026a290300210b200041e8026a290300211220004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a290300200b7c2000290300220b20127c2212200b54ad7c210b200041306a2100200241506a22020d000b0b0240024003400240024020062f0106220e0d00410021050c010b200e4105742100200641086a2102417f21050340024020000d00200e21050c020b200541016a2105200a2002412010cf052209450d03200041606a2100200241206a21022009417f4a0d000b0b0240200f0d0042002113420021070c030b200f417f6a210f200620054102746a41a8086a28020021060c000b0b200620054106746a220041f0026a2903002107200041e8026a290300211320004180036a2802002202450d00200041f8026a2802002100200241306c21020340200041086a29030020077c2000290300220720137c2213200754ad7c2107200041306a2100200241506a22020d000b0b20112008200a2012201354200b200754200b2007511b22021b2200290000370000201141186a200041186a290000370000201141106a200041106a290000370000201141086a200041086a290000370000200a200a41206a20021b210a201141206a2111200841206a200820021b2208200d4f0d012018200a4b0d000b0b2011200a2018200a6b41607110cd051a02402026450d002027202a360200202741046a2028202b6a3602002025450d022029202941086a20222024417f736a41037410ce051a20202122202041014d0d030c010b0b41bcf8c60020232022102a000b41fad8c200411d41a888c6001028000b2021450d060c000b0b20004101102d000b20004101102d000b41204101102d000b201a450d14200310200c140b20002018103b000b0240201e450d00201f10200b201b450d01201c10200c010b4102210020194102490d0020032019417e6a22024105746a2105034020192002490d022005200020014198066a108a02200541606a2105200041016a21002002417f6a2202417f470d000b0b201920156b2200450d0c200320004105746a21212003212a0340202a220841206a212a20012802f007222928020421062029210002400240034002400240200028020022092f0106220e0d00410021020c010b200e410574210a417f21024100210003400240200a2000470d00200e21020c020b200241016a21022008200920006a41086a412010cf052205450d03200041206a21002005417f4a0d000b0b2006450d022006417f6a2106200920024102746a41a8086a21000c000b0b20292029280208417f6a360208024002402006450d00200241027420096a41ac086a280200210002402006417f6a2205450d00034020002802a80821002005417f6a22050d000b0b0240024020002f01060d00410021000c010b200041908cc500460d060b200041106a290000210b200041186a2900002107200041206a290000211220002900082113200041086a200041286a20002f0106220541057441606a10ce051a200041f0026a290300211420004180036a290300212d200041f8026a290300210420004190036a290300212e20004198036a290300212f200041a0036a290300213020002903e80221312000290388032132200041e8026a200041a8036a200541067441406a10ce051a20002005417f6a3b0106200920024105746a41086a220541186a2012370000200520073700102005200b37000820052013370000200941e8026a20024106746a220241386a2030370200200241306a202f370200200241286a202e37020020022032370220200241106a2205290300210b20052004370300200241186a202d37030020022031370300200241086a20143703000c010b200941908cc500460d05200941086a220020024105746a2000200241016a22054105746a2002417f73220020092f01066a41057410ce051a200941e8026a220a20024106746a220241106a290300210b2002200a20054106746a200020092f01066a41067410ce051a200920092f0106417f6a3b0106200921000b024020002f010641044b0d0041002102034020002802002209450d010240024020002f010422000d00410021054100210d20092f01060d0141e5dac500412841a888c6001028000b2000417f6a21054101210d0b200241016a21110240200941a8086a2200200541016a220a410274220c6a220628020022082f0106220e2000200541027422276a2200280200220f2f010622106a410b490d000240200d0d00024002400240200e450d00200841206a2900002107200841186a2900002112200841106a290000211320082900082114200841086a200841286a200e41057441606a10ce051a200841a0036a290300212d20084198036a290300210420084190036a290300212e20084180036a290300212f200841f8026a2903002130200841f0026a2903002131200829038803213220082903e8022133200841e8026a200841a8036a20082f0106220a41067441406a10ce051a20020d0141002110410121110c020b41f5a6c000412041a888c6001028000b20082802a8082110200841a8086a220a200841ac086a200e41027410ce051a41002106201041003602000340200a280200220f20063b0104200f2008360200200a41046a210a200e200641016a2206470d000b2002417f6a210620082f0106210a0b2008200a417f6a3b0106200920054105746a220a41206a2208290000213420082007370000200a41186a2208290000210720082012370000200a41106a2208290000211220082013370000200a41086a220a2900002113200a2014370000200920054106746a22054180036a220929030021142009202f370300200541f8026a2209290300212f20092030370300200541f0026a2209290300213020092031370300200541e8026a2209290300213120092033370300200541a0036a220929020021332009202d37020020054198036a2209290200212d2009200437020020054190036a220929020021042009202e37020020054188036a2205290200212e200520323702002000280200210002402002450d002010450d0a2011417e6a2006470d0b20002f01062205410a4b0d0c200020054105746a220241206a2034370000200241186a2007370000200241106a2012370000200241086a2013370000200020054106746a220241a0036a203337030020024198036a202d37030020024190036a200437030020024188036a202e37030020024180036a2014370300200241f8026a202f370300200241f0026a2030370300200241e8026a20313703002000200541016a22024102746a41a8086a22052010360200200020002f010641016a3b01062005280200220520023b0104200520003602000c040b20002f01062205410b4f0d0c200020054105746a220241206a2034370000200241186a2007370000200241106a2012370000200241086a2013370000200020054106746a220241f8026a202f370300200241f0026a2030370300200241e8026a2031370300200241a0036a203337030020024198036a202d37030020024190036a200437030020024188036a202e37030020024180036a2014370300200020002f010641016a3b01060c030b0240024002402010450d00200f2010417f6a220a4106746a220041a0036a290300210720004198036a290300211220004190036a290300211320004188036a290300211420004180036a290300212d200041f8026a2903002104200041f0026a290300212e200041e8026a290300212f200f200a4105746a220041206a2900002130200041186a2900002131200041106a2900002132200041086a290000213320020d014100210a410121110c020b41f5a6c000412041a888c6001028000b200f20104102746a41a8086a280200220a41003602002002417f6a210e0b200f200f2f0106417f6a3b0106200920054105746a220041206a2208290000213420082030370000200041186a2208290000213020082031370000200041106a2208290000213120082032370000200041086a2200290000213220002033370000200920054106746a22004180036a220529030021332005202d370300200041f8026a2205290300212d20052004370300200041f0026a220529030021042005202e370300200041e8026a2205290300212e2005202f370300200041a0036a2205290200212f2005200737020020004198036a220529020021072005201237020020004190036a220529020021122005201337020020004188036a22002902002113200020143702002006280200210502402002450d00200a450d0d2011417e6a200e470d0e024020052f01062200410a4b0d00200541286a200541086a200041057410ce051a200541186a2030370000200541106a203137000020052032370008200541206a2034370000200541a8036a200541e8026a20052f010641067410ce051a200541a0036a202f37030020054198036a200737030020054190036a201237030020054188036a201337030020054180036a2033370300200541f8026a202d370300200541f0026a20043703002005202e3703e802200541ac086a200541a8086a220020052f010641027441046a10ce051a2005200a3602a808200520052f010641016a22023b0106200241ffff037141016a210a4100210203402000280200220920023b010420092005360200200041046a2100200a200241016a2202470d000c050b0b41a8a5c000412741a888c6001028000b20052f01062200410b4f0d0e200541286a200541086a200041057410ce051a200541186a2030370000200541106a203137000020052032370008200541206a2034370000200541a8036a200541e8026a200041067410ce051a200541a0036a202f37030020054198036a200737030020054190036a2012370300200520133703880320054180036a2033370300200541f8026a202d370300200541f0026a20043703002005202e3703e802200520052f010641016a3b01060c020b2006280200220f2f0106220e200028020022082f010622106a2219410a4b0d0e20014198086a41086a2202200941086a220d20054105746a220041086a29000037030020014198086a41106a2218200041106a29000037030020014198086a41186a2216200041186a29000037030020012000290000370398082000200d200a4105746a2005417f73220d20092f01066a41057410ce051a200841086a221720104105746a220041186a2016290300370000200041106a2018290300370000200041086a200229030037000020002001290398083700002017201041016a22004105746a200f41086a200e41057410cd051a20014198066a41086a2218200941e8026a221620054106746a220241086a29030037030020014198066a41106a2217200241106a29030037030020014198066a41186a2222200241186a29030037030020014198066a41206a222c200241206a29030037030020014198066a41286a222b200241286a29030037030020014198066a41306a221f200241306a29030037030020014198066a41386a2223200241386a290300370300200120022903003703980620022016200a4106746a200d20092f01066a41067410ce051a200841e8026a220d20104106746a220241386a2023290300370300200241306a201f290300370300200241286a202b290300370300200241206a202c290300370300200241186a2022290300370300200241106a2017290300370300200241086a20182903003703002002200129039806370300200d20004106746a200f41e8026a200e41067410cd051a20062009200541026a22024102746a41a8086a412c200c6b10ce0521050240200a20092f010622064f0d0020052802002205200a3b01042005200936020020022006460d00202720096a41b0086a210503402005280200220a20023b0104200a2009360200200541046a21052006200241016a2202470d000b0b200920092f0106417f6a3b01062008200e20082f01066a41016a3b0106024020114102490d00200820004102746a41a8086a200f41a8086a200e41027441046a10cd051a2000201941026a4f0d00200e41016a2105200820104102746a41ac086a210203402002280200220a20003b0104200a2008360200200241046a2102200041016a21002005417f6a22050d000b0b200f1020024020092f01062205450d00201121022009210020054105490d010c020b0b20292802042202450d0e202928020022052802a808210020292002417f6a3602042029200036020020004100360200200510200b200b42ffffffff0f83500d00200ba72200450d00200b42808080807083500d00200010200b202a2021470d000c0d0b0b20022019103b000b41c8a6c000412d41a888c6001028000b41c8a6c000412d41a888c6001028000b41e988c700412b4180a8c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b41a8a5c000412741a888c6001028000b41e988c700412b4198a7c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b4190a8c000413641a888c6001028000b41a7a6c000412141a888c6001028000b201a450d03200310200c030b200e2018470d000b0b2017450d00201610200b20014188066a200141a0076a410110ec0420012802a807210a20012802a00721000240024020012802a40722050d00200021020c010b2005210920002102034020022802a80821022009417f6a22090d000b0340200020002f01064102746a41a8086a28020021002005417f6a22050d000b0b2001418c086a20002f010636020041002108200141f0076a41186a410036020020014184086a20003602002001200a360290082001410036028008200142003703f807200120023602f407200141003602f007024002400240200a450d002001200a417f6a22003602900820014198086a41086a200141f0076a41086a2202290300370300200120012903f0073703980820014198066a20014198086a10e102200220014198066a41086a2205290300370300200141b0076a41086a2202200141e4066a290200370300200141b0076a41106a2209200141ec066a290200370300200141b0076a41186a200141f4066a290200370300200141b0076a41206a220a200141fc066a290200370300200141b0076a41286a220620014184076a28020036020020012001290398063703f0072001200141dc066a2902003703b007200141d8066a280200220e450d00200141d0066a290300210b20012903c8062107200141c0086a41286a20062802002208360200200141c0086a41206a200a2903002212370300200141c0086a41186a200141b0076a41186a2903002213370300200141c0086a41106a20092903002214370300200141c0086a41086a2002290300222d370300200120012903b00722043703c00820014198066a41286a200836020020014198066a41206a201237030020014198066a41186a201337030020014198066a41106a20143703002005202d3703002001200437039806417f200041016a220220022000491b220a41ffffff1f71200a470d04200a4106742200417f4c0d0441082105024002402000450d002000101e2205450d010b200520073703002005200e3602102005200b370308200541146a2001290398063702002005411c6a20014198066a41086a290300370200200541246a20014198066a41106a2903003702002005412c6a20014198066a41186a290300370200200541346a20014198066a41206a2903003702002005413c6a20014198066a41286a28020036020020014198086a41206a200141f0076a41206a280200220036020020014198086a41186a200141f0076a41186a29030037030020014198086a41106a200141f0076a41106a29030037030020014198086a41086a200141f0076a41086a290300370300200120012903f007370398084101210802402000450d0020012000417f6a22093602b808200141f0086a41086a221f20014198086a41086a221029030037030020012001290398083703f00820014198066a200141f0086a10e102201020014198066a41086a2206290300370300200141b0076a41086a2211200141e4066a290200370300200141b0076a41106a200141ec066a290200370300200141b0076a41186a200141f4066a290200370300200141b0076a41206a200141fc066a290200370300200141b0076a41286a20014184076a2802003602002001200129039806370398082001200141dc066a22022902003703b00720014198066a41c0006a280200220c450d00200141d0066a2223290300210b20012903c80621074102210f41c0002108410121000340200141c0086a41286a200141b0076a41286a2222280200220e360200200141c0086a41206a200141b0076a41206a222c2903002212370300200141c0086a41186a200141b0076a41186a222b2903002213370300200141c0086a41106a200141b0076a41106a22032903002214370300200141c0086a41086a2011290300222d370300200120012903b00722043703c00820014198066a41286a220d200e36020020014198066a41206a2218201237030020014198066a41186a2216201337030020014198066a41106a221720143703002006202d370300200120043703980602402000220e200a470d00200e417f200941016a220020002009491b6a2200200e490d16200f2000200f20004b1b220a41ffffff1f71200a470d16200a41067422004100480d1620052008200010222205450d050b200520086a2200200b37030820002007370300200041106a200c360200200041146a2001290398063702002000411c6a2006290300370200200041246a20172903003702002000412c6a2016290300370200200041346a20182903003702002000413c6a200d28020036020002402009450d00200e41016a210020012009417f6a22093602b808201f201029030037030020012001290398083703f00820014198066a200141f0086a10e102201020062903003703002011200241086a2902003703002003200241106a290200370300202b200241186a290200370300202c200241206a2902003703002022200241286a280200360200200120012903980637039808200120022902003703b007200f41026a210f200841c0006a21082023290300210b20012903c806210720012802d806220c0d010b0b200e41016a21080b20014198086a10ed040c030b20004108102d000b200141f0076a10ed04410821054100210a0c010b20004108102d000b200141b0076a41086a22004200370300200142003703b00741e9f5c400411f200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a1003210002400240024020012802b0072202417f470d0041e80721090c010b024020000d0041e80721090c010b20024104490d0120002800002109200010200b200141b0076a41086a22004200370300200142003703b007418cc6c1004115200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141b0076a2005200810870320014198066a411020012802b007220020012802b8071005024020012802b407450d00200010200b02402008450d0020084106742102200541106a210003400240200041046a280200450d00200028020010200b200041c0006a2100200241406a22020d000b0b0240200a450d00200510200b10792102200141b0076a41086a22054200370300200142003703b00741a1c6c1004112200141b0076a100020014198066a41086a22002005290300370300200120012903b007370398062001200220096a22023602b00720014198066a4110200141b0076a41041005200020023602002001410136029c062001410b3a00980620014198066a107720001079360200200141073a009c062001410a3a00980620014198066a1077200128028c06450d0c20012802880610200c0c0b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072205417f470d00410a21050c010b024020000d00410a21050c010b20054104490d0420002800002105200010200b20022005490d04200141b0076a41086a22004200370300200142003703b0074184f0c400411b200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321020240024020012802b0072200417f470d00410a21000c010b024020020d00410a21000c010b20004104490d0320022800002100200210200b200141b0076a41086a22024200370300200142003703b007419ff0c400411e200141b0076a100020014198066a41086a2002290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321050240024020012802b0072202417f470d00411421020c010b024020050d00411421020c010b20024104490d0220052800002102200510200b41e4fdc60021054100210920002002200020024b1b22242004422088a722274f0d0820274115490d062004422188a7222541ffffff3f712025470d0020254105742200417f4c0d0041012129024002402000450d002000101e2229450d010b200341606a212a200341a07f6a21204100212c410021214104210c20272122024003400240024020222208417f6a22050d004101210a410021220c010b200141a0056a200320054105746a10d704200141a0056a41186a2903002107200141a0056a41086a290300211220012903b005210b20012903a005211320014180056a2008410574220220036a41406a10d704024002400240024002400240200b20137c221320012903900522142001290380057c222d54200720127c2013200b54ad7c220b20014180056a41186a29030020014180056a41086a2903007c202d201454ad7c220754200b2007511b0d002008417e6a2105202020026a210041002122410021020340024020052002470d002008210a0c080b200141e0046a200041206a10d704200141e0046a41186a2903002107200141e0046a41086a290300211220012903f004210b20012903e0042113200141c0046a200010d704200041606a2100200241016a2102200b20137c221320012903d004221420012903c0047c222d5a200720127c2013200b54ad7c220b200141c0046a41186a290300200141c0046a41086a2903007c202d201454ad7c22075a200b2007511b0d000b200241016a210a2002417f7320086a21050c010b202020026a210002400340024020054101470d00410021050c020b200141a0046a200041206a10d704200141a0046a41186a2903002107200141a0046a41086a290300211220012903b004210b20012903a004211320014180046a200010d704200041606a21002005417f6a2105200b20137c221320012903900422142001290380047c222d54200720127c2013200b54ad7c220b20014180046a41186a29030020014180046a41086a2903007c202d201454ad7c220754200b2007511b0d000b0b20082005490d01200820274b0d03200820056b220a4101762209450d00202a20026a2100200320054105746a2102034020014198086a41186a2206200241186a220e29000037030020014198086a41106a220f200241106a221029000037030020014198086a41086a2211200241086a220d2900003703002001200229000037039808200041086a2218290000210b200041106a22162900002107200041186a2217290000211220022000290000370000200e201237000020102007370000200d200b370000201720062903003700002016200f290300370000201820112903003700002000200129039808370000200041606a2100200241206a21022009417f6a22090d000b0b024020050d00200521220c050b0240200a41094d0d00200521220c050b200820274b0d01200820056b2109200320054105746a2106034020082005417f6a2222490d040240200820226b220a4102490d00200141e0036a200320054105746a220010d704200141e0036a41186a2903002107200141e0036a41086a290300211220012903f003210b20012903e0032113200141c0036a200320224105746a220510d704200b20137c221320012903d003221420012903c0037c222d5a200720127c2013200b54ad7c220b200141c0036a41186a290300200141c0036a41086a2903007c202d201454ad7c22075a200b2007511b0d0020014198066a41186a2210200541186a220229000037030020014198066a41106a2211200541106a220e29000037030020014198066a41086a220d200541086a220f290000370300200120052900003703980620052000290000370000200f200041086a290000370000200e200041106a2900003700002002200041186a2900003700004101210f0240200a4103490d00200141a0036a200541c0006a10d704200141a0036a41086a2903002107200141a0036a41186a290300211220012903a003211320012903b003210b20014180036a20014198066a10d704200b20137c221320012903900322142001290380037c222d5a201220077c2013200b54ad7c220b20014180036a41186a29030020014180036a41086a2903007c202d201454ad7c22075a200b2007511b0d00410221022006210002400340200041186a200041386a290000370000200041106a200041306a290000370000200041086a200041286a2900003700002000200041206a220e29000037000020092002460d01200141e0026a200041c0006a10d704200141e0026a41086a2903002107200141e0026a41186a290300211220012903e002211320012903f002210b200141c0026a20014198066a10d7042002210f200e2100200241016a2102200b20137c221320012903d002221420012903c0027c222d5a201220077c2013200b54ad7c220b200141c0026a41186a290300200141c0026a41086a2903007c202d201454ad7c22075a200b2007511b0d020c000b0b2002210f0b2005200f4105746a2200200129039806370000200041186a2010290300370000200041106a2011290300370000200041086a200d2903003700000b2022450d05200641606a2106200941016a210920222105200a410a4f0d050c000b0b20052008103b000b20082005417f6a2222490d010b20082027103a000b20222008103b000b0240202c2021470d00202c41016a2200202c490d12202c41017422022000200220004b1b222141ffffffff01712021470d12202141037422004100480d1202400240202c0d002000101e210c0c010b200c202c41037420001022210c0b200c0d0020004104102d000b200c202c4103746a2200200a36020420002022360200202c41016a2210212c0240024020104102490d0003400240024002400240200c2010417f6a222c4103746a2200280200450d002010410374200c6a220941746a2802002205200028020422024d0d000240201041024b0d002010212c2022450d100c080b200c2010417d6a220d4103746a2802042200200220056a4d0d010240201041034b0d002010212c2022450d100c080b200941646a280200200020056a4d0d012010212c2022450d0f0c070b20104103490d0120002802042102200c2010417d6a220d4103746a28020421000b20002002490d010b2010417e6a210d0b02400240024002400240024002402010200d41016a222b4b221f450d002010200d4b2223450d01200c200d4103746a2218280204221920182802006a2200200c202b4103746a22162802002217490d02200020274b0d03200320174105746a220f2016280204221141057422026a210920004105742105200020176b220820116b220020114f0d04202920092000410574220210cd05220e20026a210a20114101480d0520004101480d05202a20056a2105200921000340200141e0016a200a41606a220910d704200141e0016a41086a2903002107200141e0016a41186a290300211220012903e001211320012903f001210b200141c0016a200041606a220810d704200520082009200b20137c221320012903d001221420012903c0017c222d54201220077c2013200b54ad7c220b200141c0016a41186a290300200141c0016a41086a2903007c202d201454ad7c220754200b2007511b22061b2202290000370000200541086a200241086a290000370000200541106a200241106a290000370000200541186a200241186a290000370000200a200920061b210a0240200f2008200020061b2200490d00200e21020c080b200541606a2105200e2102200e200a490d000c070b0b41d0e0c600202b2010102a000b41d0e0c600200d2010102a000b20172000103b000b20002027103a000b2029200f200210cd05220e20026a210a024020114101480d00200820114c0d00200320056a2106200e2102200f21000340200141a0026a200910d704200141a0026a41086a2903002107200141a0026a41186a290300211220012903a002211320012903b002210b20014180026a200210d704200020092002200b20137c221320012903900222142001290380027c222d54201220077c2013200b54ad7c220b20014180026a41186a29030020014180026a41086a2903007c202d201454ad7c220754200b2007511b22081b2205290000370000200041086a200541086a290000370000200041106a200541106a290000370000200041186a200541186a2900003700002002200241206a20081b2102200041206a2100200941206a200920081b220920064f0d03200a20024b0d000c030b0b200f2100200e21020c010b20092100200e21020b20002002200a20026b41607110cd051a2023450d0220182017360200201841046a201920116a360200201f450d042016201641086a2010202b417f736a41037410ce051a202c2110202c41014b0d000b0b2022450d090c010b0b41bcf8c600200d2010102a000b41fad8c200411d41a888c6001028000b20004101102d000b102c000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b10e3040c040b02402021450d00200c10200b2025450d01202910200c010b20274102490d0020032027417f6a22024105746a210a417f21050340024002400240024020022200417f6a220220274b0d00202720026b22084102490d03200141a0016a200320004105746a220010d704200141a0016a41186a2903002107200141a0016a41086a290300211220012903b001210b20012903a001211320014180016a200320024105746a220910d704200b20137c221320012903900122142001290380017c222d5a200720127c2013200b54ad7c220b20014180016a41186a29030020014180016a41086a2903007c202d201454ad7c22075a200b2007511b0d0320014198066a41186a220f200941186a220629000037030020014198066a41106a2210200941106a220e29000037030020014198066a41086a2211200941086a220c290000370300200120092900003703980620092000290000370000200c200041086a290000370000200e200041106a2900003700002006200041186a2900003700004101210020084103490d02200141e0006a200941c0006a10d704200141e0006a41086a2903002107200141e0006a41186a2903002112200129036021132001290370210b200141c0006a20014198066a10d704200b20137c22132001290350221420012903407c222d5a201220077c2013200b54ad7c220b200141c0006a41186a290300200141c0006a41086a2903007c202d201454ad7c22075a200b2007511b0d0241002108200a21000340200041186a200041386a290000370000200041106a200041306a290000370000200041086a200041286a2900003700002000200041206a220e290000370000200520082206460d02200141206a200041c0006a10d704200141206a41086a2903002107200141206a41186a2903002112200129032021132001290330210b200120014198066a10d704200641016a2108200e2100200b20137c22132001290310221420012903007c222d5a201220077c2013200b54ad7c220b200141186a290300200141086a2903007c202d201454ad7c22075a200b2007511b0d020c000b0b20022027103b000b200641026a21000b200920004105746a2200200129039806370000200041186a200f290300370000200041106a2010290300370000200041086a20112903003700000b200a41606a210a200541016a210520020d000b0b202720246b2109200321050b2005200910ee04200141b0076a41086a22004200370300200142003703b00741aef5c400411c200141b0076a100020014198066a41086a2000290300370300200120012903b00737039806200141003602b00720014198066a4110200141b0076a100321000240024020012802b0072202417f470d0041e40021020c010b024020000d0041e40021020c010b20024104490d0320002800002102200010200b10792105200141b0076a41086a22004200370300200142003703b00741a1dfc4004115200141b0076a100020014198066a41086a2000290300370300200120012903b007370398064101101e2200450d03200041013a000020004101410510222200450d042000200520026a36000120014198066a411020004105100520001020200141033a009c062001410a3a00980620014198066a10770b2004a7450d00200310200b20014180096a24000f0b41ceb8c4004133200141f0086a41fcbfc4004184b9c400102e000b41014101102d000b41054101102d000b1027000bd12009057f017e077f017e017f057e077f057e027f23004190026b22022400200241086a10e10402400240024020022802084103460d0041adddc4002103411c21040c010b200241a0016a41086a22054200370300200242003703a0014189ddc4004124200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a001200241f0006a4110200241a0016a10032105024002400240024002400240024020022802a0012206417f460d002005450d002002200636025420022005360250200241a0016a200241d0006a10e30120022802a0012203450d0120022902a401210702402006450d00200510200b02402007a7450d00200310202007428080808010540d010c070b20074280808080105a0d060b200241a0016a41086a22054200370300200242003703a0014195dec400411a200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a001200241f0006a4110200241a0016a100321050240024020022802a0012206417f460d002005450d002002200636025420022005360250200241a0016a200241d0006a10e30120022802a0012203450d0120022902a401210702402006450d00200510200b02402007a7450d00200310202007428080808010540d010c070b200742ffffffff0f560d060b200241a0016a41086a22054200370300200242003703a00141afdec400411b200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a001200241f0006a4110200241a0016a100321050240024020022802a0012206417f460d002005450d002002200636025420022005360250200241a0016a200241d0006a10e30120022802a0012203450d0120022902a401210702402006450d00200510200b02402007a7450d00200310202007428080808010540d010c070b200742ffffffff0f560d060b20012802002208200128020822054106746a21092001280204210a024020050d004101210b4100210c4100210d2008210e0c040b200241a0016a41106a2101200241a0016a41186a21034100210c4100210d4101210b200821050340200241a0016a41086a2204200541246a290200370300200541146a290200210f2005280210211020012005412c6a2902003703002003200541346a2902003703002002200529021c3703a001200541c0006a210e2010450d04200541086a290300211120052903002112200241106a41186a20032903002207370300200241106a41106a20012903002213370300200241106a41086a20042903002214370300200220022903a0012215370310200241306a41186a22162007370300200241306a41106a22172013370300200241306a41086a221820143703002002201537033002400240024002404122101e2205450d00200541002900cade442207370000200541206a41002f00eade4422193b0000200541186a41002900e2de442213370000200541106a41002900dade442214370000200541086a41002900d2de442215370000200242a2808080a00437025420022005360250200241306a200241d0006a10ca012002280258210520022802502106200342003703002001420037030020044200370300200242003703a00120062005200241a0016a1001200241f0006a41186a221a2003290300370300200241f0006a41106a221b2001290300370300200241f0006a41086a221c2004290300370300200220022903a00137037002402002280254450d00200228025010200b024002400240024002400240024002400240024002400240024002400240200241f0006a412041e4fdc600410041001002417f470d004122101e2205450d0220052007370000200541206a20193b0000200541186a2013370000200541106a2014370000200541086a2015370000200242a2808080a00437025420022005360250200241306a200241d0006a10ca012002280258210520022802502106200342003703002001420037030020044200370300200242003703a00120062005200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a00137037002402002280254450d00200228025010200b4110101e2205450d03200520123700002005201137000820054110412010222205450d0420054200370010200541186a4200370000200241f0006a412020054120100520051020200320162903003703002001201729030037030020042018290300370300200220022903303703a0010240200c200d470d00200c41016a2205200c490d12200c41017422062005200620054b1b220d41ffffff3f71200d470d12200d41057422054100480d1202400240200c0d002005101e210b0c010b200b200c41057420051022210b0b200b450d110b200b200c4105746a220520022903a001370000200541186a2003290300370000200541106a2001290300370000200541086a2004290300370000200c41016a210c0c010b4122101e2205450d0420052007370000200541206a20193b0000200541186a2013370000200541106a2014370000200541086a2015370000200242a2808080a00437025420022005360250200241306a200241d0006a10ca012002280258210520022802502106200342003703002001420037030020044200370300200242003703a00120062005200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a00137037002402002280254450d00200228025010200b200241a0016a200241f0006a10e20420022903a001211d200241a0016a41206a290300211e20022903b801211f2001290300212020022903a80121214110101e2205450d05200520214200201d42015122061b221d20127c221237000020052020420020061b20117c2012201d54ad7c37000820054110412010222205450d062005201f420020061b370010200541186a201e420020061b370000200241f0006a4120200541201005200510200b200f422088a741306c2205450d10201020056a2122201021050340200541086a290300211120052903002112200541106a290000211d200541186a290000211e200541206a290000211f200241d0006a41186a2217200541286a290000370300200241d0006a41106a2218201f370300200241d0006a41086a2223201e3703002002201d3703504122101e2206450d0720062007370000200641206a20193b0000200641186a2013370000200641106a2014370000200641086a2015370000200242a2808080a004370294012002200636029001200241d0006a20024190016a10ca0120022802980121062002280290012116200342003703002001420037030020044200370300200242003703a00120162006200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a0013703700240200228029401450d0020022802900110200b02400240200241f0006a412041e4fdc600410041001002417f470d004122101e2206450d0a20062007370000200641206a20193b0000200641186a2013370000200641106a2014370000200641086a2015370000200242a2808080a004370294012002200636029001200241d0006a20024190016a10ca0120022802980121062002280290012116200342003703002001420037030020044200370300200242003703a00120162006200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a0013703700240200228029401450d0020022802900110200b4110101e2206450d0b200642003700082006420037000020064110412010222206450d0c20062012370010200641186a2011370000200241f0006a412020064120100520061020200320172903003703002001201829030037030020042023290300370300200220022903503703a0010240200c200d470d00200c41016a2206200c490d13200c41017422162006201620064b1b220d41ffffff3f71200d470d13200d41057422064100480d1302400240200c0d002006101e210b0c010b200b200c41057420061022210b0b200b0d0020064101102d000b200b200c4105746a220620022903a001370000200641186a2003290300370000200641106a2001290300370000200641086a2004290300370000200c41016a210c0c010b4122101e2206450d0c20062007370000200641206a20193b0000200641186a2013370000200641106a2014370000200641086a2015370000200242a2808080a004370294012002200636029001200241d0006a20024190016a10ca0120022802980121062002280290012116200342003703002001420037030020044200370300200242003703a00120162006200241a0016a1001201a2003290300370300201b2001290300370300201c2004290300370300200220022903a0013703700240200228029401450d0020022802900110200b200241a0016a200241f0006a10e20420022903a001211d20022903b801211e200241a0016a41206a290300211f2001290300212020022903a80121214110101e2206450d0d200620204200201d42015122161b37000820062021420020161b37000020064110412010222206450d0e2006201e420020161b221d20127c2212370010200641186a201f420020161b20117c2012201d54ad7c370000200241f0006a4120200641201005200610200b200541306a22052022470d000c110b0b41224101102d000b41104101102d000b41204101102d000b41224101102d000b41104101102d000b41204101102d000b41224101102d000b41224101102d000b41104101102d000b41204101102d000b41224101102d000b41104101102d000b41204101102d000b41224101102d000b20054101102d000b1027000b0240200fa7450d00201010200b200e2105200e2009470d000c050b0b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b2009200e460d000340200e41c0006a21050240200e41146a280200450d00200e41106a28020010200b2005210e20092005470d000b0b0240200a450d00200810200b200241a0016a41086a22054200370300200242003703a0014189ddc4004124200241a0016a1000200241f0006a41086a2005290300370300200220022903a001370370200241003602a801200242013703a0012002200c360250200241d0006a200241a0016a10630240200c450d00200b200c4105746a2106200b210503402005200241a0016a10ca012006200541206a2205470d000b0b20022802a4012105200241f0006a411020022802a001220620022802a801100502402005450d00200610200b0240200d450d00200b10200b41002103200241003a00a4012002410a3a00a001200241a0016a107710e3040c040b41fcddc4002103411921040c020b41e4ddc4002103411821040c010b41c9ddc4002103411b21040b2001280200210c024020012802082205450d0020054106742106200c41106a210503400240200541046a280200450d00200528020010200b200541c0006a2105200641406a22060d000b0b200141046a280200450d00200c10200b200020043602042000200336020020024190026a24000b9e0404037f017e087f047e230041d0006b21020240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a22073602002006450d0220072d000021082001200341776a22093602042001200741016a360200200841044f0d0241002107200241003a004841762106034020092007460d02200241286a20076a200420076a220a41096a2d00003a00002001200320066a3602042001200a410a6a3602002002200741016a220a3a00482006417f6a2106200a2107200a4120470d000b200241086a41186a2207200241286a41186a2206290300370300200241086a41106a2209200241286a41106a220b290300370300200241086a41086a220c200241286a41086a220d290300370300200220022903283703082003200a6b220341776a4104490d032004200a6a220a41096a28000021042001200341736a3602042001200a410d6a360200200d200c290300220e370300200b2009290300220f370300200620072903002210370300200220022903082211370328200020083a000c20002004360208200020053703002000201137000d200041156a200e3700002000411d6a200f370000200041256a20103700002000412d6a20022f00083b00002000412f6a2002410a6a2d00003a00000f0b200041043a000c0f0b0240200741ff0171450d00200241003a00480b200041043a000c0f0b200041043a000c0f0b200041043a000c0baf0601067f230041c0036b220224000240024002404118101e2203450d00200341106a410029008d8e46370000200341086a41002900858e46370000200341002900fd8d4637000020034118413010222203450d012003200137001820024188026a41186a2204420037030020024188026a41106a2205420037030020024188026a41086a2206420037030020024200370388022003412020024188026a1001200241b8016a41186a2004290300370300200241b8016a41106a2005290300370300200241b8016a41086a200629030037030020022002290388023703b801200310202002410036028802200241b8016a412020024188026a10032103024002402002280288022204417f470d00420221010c010b024020030d00420221010c010b200220043602dc01200220033602d80120024188026a200241d8016a10840420022903b80222014202510d0320024188016a41286a20024188026a41286a29030037030020024188016a41206a20024188026a41206a29030037030020024188016a41186a20024188026a41186a29030037030020024188016a41106a20024188026a41106a29030037030020024188016a41086a20024188026a41086a290300370300200220022903880237038801200241086a200241c0026a41800110cd051a2004450d00200310200b200241d8016a41086a220320024188016a41086a290300370300200241d8016a41106a220420024188016a41106a290300370300200241d8016a41186a220520024188016a41186a290300370300200241d8016a41206a220620024188016a41206a290300370300200241d8016a41286a220720024188016a41286a29030037030020022002290388013703d80120024188026a200241086a41800110cd051a024020014202510d00200020022903d801370300200041286a2007290300370300200041206a2006290300370300200041186a2005290300370300200041106a2004290300370300200041086a2003290300370300200041386a20024188026a41800110cd051a0b20002001370330200241c0036a24000f0b41184101102d000b41304101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bf00302067f037e230041e0006b22042400200420011086030240024002400240024002402004290300200441086a29030084500d004114101e2205450d01200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370234200420053602302001200441306a10ca012004280238210520042802302106200441c0006a41186a22074200370300200441c0006a41106a22084200370300200441c0006a41086a220942003703002004420037034020062005200441c0006a1001200441106a41186a2007290300370300200441106a41106a2008290300370300200441106a41086a20092903003703002004200429034037031002402004280234450d00200428023010200b20044100360240200441106a4120200441c0006a1003210520042802402206417f460d032005450d0320064110490d02200541086a290000210a2005290000210b200510200c040b200041f989c500360204200041086a4122360200410121010c040b41144101102d000b41ceb8c4004133200441c0006a41fcbfc4004184b9c400102e000b4200210b4200210a0b2001200b20027c220c200a20037c200c200b54ad7c109303200041106a2003370300200041086a2002370300410021010b20002001360200200441e0006a24000bb30202027f047e230041e0016b220224002002410036027020014120200241f0006a10032101024002400240024020022802702203417f460d0020010d010b200042023703500c010b2002200336021c20022001360218200241f0006a200241186a10ae032002290380014204510d01200241206a200241f0006a41d00010cd051a200241c0016a200241186a10930120022903c00122044202510d012000200241206a41d00010cd052100200241106a200241d8016a2903002205370300200241086a200241c0016a41106a2903002206370300200220022903c80122073703002000200437035020002007370358200041e0006a2006370300200041e8006a20053703002003450d00200110200b200241e0016a24000f0b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000bc91503047f037e017f23004190036b220224002002200136020c20024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241dccac000411720024190026a1001200241a0016a41186a2003290300370300200241a0016a41106a2004290300370300200241a0016a41086a200529030037030020022002290390023703a0012002410036029002200241a0016a412020024190026a100321030240024002402002280290022204417f460d002003450d00024020044108490d002003290000210620031020200241106a200610e40120024190026a200241106a10a90320022903e0024202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024190026a41fcbfc4004184b9c400102e000b20024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241dccac000411720024190026a1001200241a0016a41186a2003290300370300200241a0016a41106a2004290300370300200241a0016a41086a200529030037030020022002290390023703a0012002200129030037039002200241a0016a412020024190026a4108100520004200370310200042003703000c010b200241a0016a20024190026a41f00010cd051a200241306a200241a0016a41d00010cd051a20024198016a220120024188026a29030037030020024180016a41106a20024180026a290300220737030020024180016a41086a200241f8016a290300370300200220022903f0013703800120024190026a200241306a41d00010cd051a200241e4026a2001410020074201511b36020020022002410c6a3602e0022002410036028803200242013703800320024190026a41086a29030021072002290390022108024002400240024002400240024002404110101e2201450d002002200136028003200120022802880322046a220320073700082003200837000020024110360284032002200441106a220336028803024020022903a00222074203520d00024020040d0020014110412010222201450d032002412036028403200220013602800320022802880321030b2002200341016a36028803200120036a41003a00000c050b024020040d0020014110412010222201450d032002412036028403200220013602800320022802880321030b2002200341016a36028803200120036a41013a0000200241b8026a28020021040240200228028403220320022802880322016b4104490d0020022802800321030c040b200141046a22052001490d05200341017422012005200120054b1b22014100480d050240024020030d002001101e21030c010b20022802800320032001102221030b02402003450d002002200136028403200220033602800320022802880321010c040b20014101102d000b41104101102d000b41204101102d000b41204101102d000b2002200141046a36028803200320016a20043600000240024002400240024002402007a7220141024b0d0002400240024020010e03000102000b02402002280284032002280288032201460d0020022802800321030c060b200141016a22032001490d09200141017422042003200420034b1b22044100480d090240024020010d002004101e21030c010b20022802800320012004102221030b02402003450d002002200436028403200220033602800320022802880321010c060b20044101102d000b02402002280284032002280288032201460d0020022802800321030c040b200141016a22032001490d08200141017422042003200420034b1b22044100480d080240024020010d002004101e21030c010b20022802800320012004102221030b02402003450d002002200436028403200220033602800320022802880321010c040b20044101102d000b02402002280284032002280288032201460d0020022802800321030c020b200141016a22032001490d07200141017422042003200420034b1b22044100480d070240024020010d002004101e21030c010b20022802800320012004102221030b02402003450d002002200436028403200220033602800320022802880321010c020b20044101102d000b200228028403210320022802880321010c040b2002200141016a36028803200320016a41023a000020022903a80221072002200241b0026a2903003703a801200220073703a001200241a0016a21040c020b2002200141016a36028803200320016a41013a000020022903a80221072002200241b0026a2903003703a801200220073703a001200241a0016a21040c010b2002200141016a36028803200320016a41003a000020022903a80221072002200241b0026a2903003703a801200220073703a001200241a0016a21040b02400240200228028403220320022802880322016b4110490d0020022802800321050c010b200141106a22052001490d03200341017422012005200120054b1b22094100480d030240024020030d002009101e21050c010b20022802800320032009102221050b02402005450d00200220093602840320022005360280032002280288032101200921030c010b20094101102d000b200520016a220541086a200441086a2900003700002002200141106a220136028803200520042900003700000b200241c0026a280200210402400240200320016b4104490d0020022802800321030c010b200141046a22052001490d02200341017422012005200120054b1b22014100480d020240024020030d002001101e21030c010b20022802800320032001102221030b02402003450d002002200136028403200220033602800320022802880321010c010b20014101102d000b2002200141046a36028803200320016a20043600000b20022802d802210402400240200228028403220320022802880322016b4104490d0020022802800321030c010b200141046a22052001490d01200341017422012005200120054b1b22014100480d010240024020030d002001101e21030c010b20022802800320032001102221030b2003450d022002200136028403200220033602800320022802880321010b2002200141046a36028803200320016a2004360000200241d0026a290300210720022903c80221080240200228028403220320022802880322016b4110490d0020022802800321030c030b200141106a22042001490d00200341017422012004200120044b1b22014100480d000240024020030d002001101e21030c010b20022802800320032001102221030b02402003450d002002200136028403200220033602800320022802880321010c030b20014101102d000b1027000b20014101102d000b200320016a22032007370008200320083700002002200141106a3602880320024190026a41d0006a20024180036a1081012002280284032101200241106a41202002280280032203200228028803100502402001450d00200310200b200228020c210120024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241dccac000411720024190026a1001200241a0016a41186a2003290300370300200241a0016a41106a2004290300370300200241a0016a41086a200529030037030020022002290390023703a0012002200129030037039002200241a0016a412020024190026a41081005200041186a200637030020004201370310200042003703000b20024190036a24000ba20703027f027e057f230041206b2202240020024100360208200242013703002000280200220341086a2903002104200329030021050240024002400240024002400240024002404110101e2206450d0020062005370000200620043700082002429080808080023702042002200636020020032903102104200641104120102221060240024020044203520d002006450d03200641003a0010200242a080808090023702042002200636020041112107412021060c010b2006450d03200641013a00102006200341286a28020036001120022006360200200242a0808080d002370204024002402003280210220741024d0d00411521070c010b024002400240024020070e03000102000b200641003a001520024116360208200341186a29030021042002200341206a29030037031820022004370310200241106a21070c020b200641013a001520024116360208200341186a29030021042002200341206a29030037031820022004370310200241106a21070c010b200641023a001520024116360208200341186a29030021042002200341206a29030037031820022004370310200241106a21070b2006412041c00010222206450d05200620072900003700162006411e6a200741086a290000370000200242c0808080e00437020420022006360200412621070b2002200741046a360208200620076a200341306a28020036000020022802042106200228020821070b200328024821080240200620076b4104490d00200228020021090c050b200741046a22092007490d052006410174220a2009200a20094b1b220a4100480d050240024020060d00200a101e21090c010b20022802002006200a102221090b02402009450d002002200a36020420022009360200200a21060c050b200a4101102d000b41104101102d000b41204101102d000b41204101102d000b41c0004101102d000b2002200741046a220a360208200920076a2008360000200341c0006a2903002104200329033821052006200a6b410f4b0d02200a41106a2203200a490d00200641017422082003200820034b1b220341004e0d010b1027000b0240024020060d002003101e21090c010b200920062003102221090b2009450d0120022003360204200220093602000b2009200a6a22032004370008200320053700002002200741146a360208200041086a20021094012002280204210320012802002001280204200228020022062002280208100502402003450d00200610200b200241206a24000f0b20034101102d000bf80101057f230041206b22022400024002404123101e2203450d002003411f6a41002800ddf041360000200341186a41002900d6f041370000200341106a41002900cef041370000200341086a41002900c6f041370000200341002900bef0413700002003412341c60010222203450d0120032001370023200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412b20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41234101102d000b41c6004101102d000bb50202027f047e230041a0026b2202240020024100360290012001412020024190016a1003210102400240024002402002280290012203417f460d0020010d010b200042023703700c010b2002200336021c2002200136021820024190016a200241186a10bb0320022802d0014102460d01200241206a20024190016a41f00010cd051a20024180026a200241186a10930120022903800222044202510d012000200241206a41f00010cd052100200241106a20024198026a2903002205370300200241086a20024180026a41106a290300220637030020022002290388022207370300200020043703702000200737037820004180016a200637030020004188016a20053703002003450d00200110200b200241a0026a24000f0b41ceb8c400413320024190016a41fcbfc4004184b9c400102e000bee0507037f027e037f017e017f027e017f230041106b21020240024002400240200128020422034110490d002001280200220441086a2900002105200429000021062001200441106a3602002001200341706a22073602042007450d0320042d0010210720012003416f6a22083602042001200441116a2209360200200741014b0d034203210a0240024020070e020100010b20084104490d042004280011210b20012003416b6a22073602042001200441156a3602002007450d0420042d0015210720012003416a6a22093602042001200441166a2208360200200741024b0d04024002400240024020070e03000102000b4200210a200241086a220742003703002002420037030020094110490d072007200841086a2900003703002008290000210c20012003415a6a22033602042001200441266a22073602002002200c3703000c020b200241086a220742003703002002420037030020094110490d062007200841086a2900003703002008290000210a20012003415a6a22033602042001200441266a22073602002002200a3703004201210a0c010b200241086a220742003703002002420037030020094110490d052007200841086a2900003703002008290000210a20012003415a6a22033602042001200441266a22073602002002200a3703004202210a0b2002210220034104490d04200241086a290300210d2002290300210c2007280000210e20012003417c6a220836020420012004412a6a22093602000b20084104490d022009280000210320012008417c6a22043602042001200941046a36020020044110490d012000200c370318200020063703002000200a370310200041386a2009290004370300200041206a200d37030020002005370308200041c8006a2003360200200041306a200e360200200041286a200b360200200041c0006a2009410c6a29000037030020012008416c6a3602042001200941146a3602000f0b200042043703100f0b200042043703100f0b200042043703100f0b200042043703100be70202037f087e230041c0006b220224002002410036022020014120200241206a10032101024002400240024020022802202203417f460d0020010d010b200042023703200c010b200220013602182002200336021c20034110490d012002200141106a3602182002200341706a220436021c20044110490d01200141086a2900002105200129000021062002200341606a36021c2002200141206a360218200141186a290000210720012900102108200241206a200241186a109301200229032022094202510d01200241106a200241206a41186a290300220a370300200241086a200241206a41106a290300220b37030020022002290328220c370300200041186a2007370300200020083703102000200537030820002006370300200020093703202000200c370328200041306a200b370300200041386a200a370300200110200b200241c0006a24000f0b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000be70101057f230041206b2202240002400240411a101e2203450d00200341186a41002f00d2ef413b0000200341106a41002900caef41370000200341086a41002900c2ef41370000200341002900baef413700002003411a413410222203450d012003200137001a200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412220021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411a4101102d000b41344101102d000b9e1503047f027e017f230041e0036b2202240020022001370308200241d0026a41186a22034200370300200241d0026a41106a22044200370300200241d0026a41086a22054200370300200242003703d00241e1f0c100412b200241d0026a1001200241c0016a41186a2003290300370300200241c0016a41106a2004290300370300200241c0016a41086a2005290300370300200220022903d0023703c001200241003602d002200241c0016a4120200241d0026a10032103024002400240024020022802d0022204417f460d002003450d00024020044108490d002003290000210120031020200241106a200110ac03200241d0026a200241106a10ad0320022903c0034202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200241d0026a41fcbfc4004184b9c400102e000b200241d0026a41186a22034200370300200241d0026a41106a22044200370300200241d0026a41086a22054200370300200242003703d00241e1f0c100412b200241d0026a1001200241c0016a41186a2003290300370300200241c0016a41106a2004290300370300200241c0016a41086a2005290300370300200220022903d0023703c001200220013703d002200241c0016a4120200241d0026a4108100520004200370310200042003703000c010b200241c0016a200241d0026a41900110cd051a200241306a200241c0016a41f00010cd051a200241b8016a2203200241c8026a290300370300200241b0016a200241c0026a2903002206370300200241a0016a41086a200241b8026a290300370300200220022903b0023703a001200241d0026a200241306a41f00010cd051a200241c4036a2003410020064201511b3602002002200241086a3602c003200241003602c801200242013703c00120022903d00221060240024002400240024002400240024002404108101e2203450d00200241083602c401200220022802c801220441086a3602c801200220033602c001200320046a200637000020022903d80221060240024020022802c401220420022802c80122036b4108490d0020022802c00121040c010b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b20022802c00120042003102221040b2004450d02200220033602c401200220043602c00120022802c80121030b2002200341086a3602c801200420036a2006370000200241a0036a200241c0016a10ca01200241e8026a290300210620022903e00221070240024020022802c401220320022802c80122056b4110490d0020022802c00121040c010b200541106a22042005490d07200341017422052004200520044b1b22084100480d070240024020030d002008101e21040c010b20022802c00120032008102221040b2004450d03200220083602c401200220043602c00120022802c8012105200821030b200420056a22082006370008200820073700002002200541106a22053602c80102402002280290034101460d000240024020032005470d00200341016a22052003490d09200341017422082005200820054b1b22054100480d090240024020030d002005101e21040c010b200420032005102221040b2004450d01200220053602c401200220043602c00120022802c80121050b2002200541016a3602c801200420056a41003a00000c070b20054101102d000b024020032005470d00200341016a22052003490d07200341017422082005200820054b1b22054100480d070240024020030d002005101e21040c010b200420032005102221040b2004450d04200220053602c401200220043602c00120022802c80121050b2002200541016a3602c801200420056a41013a00002002280294032105024020022802c401220420022802c80122036b4104490d0020022802c00121040c050b200341046a22082003490d06200441017422032008200320084b1b22034100480d060240024020040d002003101e21040c010b20022802c00120042003102221040b02402004450d00200220033602c401200220043602c00120022802c80121030c050b20034101102d000b41084101102d000b20034101102d000b20084101102d000b20054101102d000b2002200341046a3602c801200420036a20053600000b0240024002402002280298034101460d00024020022802c40120022802c8012203460d0020022802c00121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00120032005102221040b02402004450d00200220053602c401200220043602c00120022802c80121030c020b20054101102d000b024002400240024020022802c40120022802c8012203460d0020022802c00121040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802c00120032005102221040b2004450d01200220053602c401200220043602c00120022802c80121030b2002200341016a3602c801200420036a41013a0000200228029c032105024020022802c401220420022802c80122036b4104490d0020022802c00121040c020b200341046a22082003490d04200441017422032008200320084b1b22034100480d040240024020040d002003101e21040c010b20022802c00120042003102221040b02402004450d00200220033602c401200220043602c00120022802c80121030c020b20034101102d000b20054101102d000b2002200341046a3602c801200420036a20053600000c010b2002200341016a3602c801200420036a41003a00000b200241f8026a290300210620022903f00221070240024020022802c401220520022802c80122046b4110490d0020022802c00121030c010b200441106a22032004490d01200541017422042003200420034b1b22084100480d010240024020050d002008101e21030c010b20022802c00120052008102221030b02402003450d00200220083602c401200220033602c00120022802c8012104200821050c010b20084101102d000b200320046a22082006370008200820073700002002200441106a22043602c80120024188036a29030021062002290380032107200520046b410f4b0d02200441106a22082004490d00200541017422042008200420084b1b220441004e0d010b1027000b0240024020050d002004101e21030c010b200320052004102221030b2003450d02200220043602c401200220033602c00120022802c80121040b200320046a22032006370008200320073700002002200441106a3602c801200241d0026a41f0006a200241c0016a107e20022802c4012103200241106a412020022802c001220420022802c801100502402003450d00200410200b20022903082106200241d0026a41186a22034200370300200241d0026a41106a22044200370300200241d0026a41086a22054200370300200242003703d00241e1f0c100412b200241d0026a1001200241c0016a41186a2003290300370300200241c0016a41106a2004290300370300200241c0016a41086a2005290300370300200220022903d0023703c001200220063703d002200241c0016a4120200241d0026a41081005200041186a200137030020004201370310200042003703000b200241e0036a24000f0b20044101102d000b850204017f017e037f017e230041c0006b2201240042002102200141206a41186a22034200370300200141206a41106a22044200370300200141206a41086a220542003703002001420037032041e2d5c300411a200141206a1001200141186a2003290300370300200141106a2004290300370300200141086a2005290300370300200120012903203703002001410036022020014120200141206a1003210302400240024020012802202204417f470d000c010b024020030d000c010b20044108490d012003290000210620031020420121020b2000200637030820002002370300200141c0006a24000f0b41ceb8c4004133200141206a41fcbfc4004184b9c400102e000bd00204027f017e017f027e23004190036b22022400200128020021032001420037030002400240024002402003450d00200241086a2001290308220410b804200241003602c801200241086a4120200241c8016a1003210320022802c8012205417f460d032003450d032002200536028c032002200336028803200241c8016a20024188036a10e90220022903e8024202510d02200241286a200241c8016a41a00110cd051a20024180036a2903002106200241f8026a290300210702402005450d00200310200b200241c8016a200241286a41a00110cd051a200241286a200241c8016a41a00110cd051a200120063703082001200737030020002004370300200041086a200241286a41a00110cd051a0c010b2000410236025c0b20024190036a24000f0b41ceb8c4004133200241286a41fcbfc4004184b9c400102e000b418ddbc50041dd0041ecdbc5001045000ba709010b7f230041b0026b220224000240024002400240024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032000370012200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411a200241e0006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903603703082003102020024100360260200241086a4120200241e0006a10032106024020022802602207417f460d002006450d002002200736022c20022006360228200241e0006a200241286a10e90220022903800222004202510d03200241d0006a220820024190026a290300370300200241c8006a41106a220920024198026a2903003703002002200229038802370348200241d4016a2802002105200241cc016a280200210320022802f401210a20022802f001210b20022802d001210420022802b401210c02402007450d00200610200b200241286a41106a2008290300370300200241c0006a20092903003703002002200037032820022002290348370330200c450d0502402004450d00200421060340200328026021032006417f6a22060d000b03402004417f6a22040d000b0b02402005450d004100210441002106410021070340200220043602ac02200220063602a802200220033602a402200220073602a002200241e0006a200241a0026a106120022802682107200228026c210320022802702106200228027421042005417f6a22050d000b0b200341908cc500460d0520032802002105200310202005450d0520052802002104200510202004450d0520042802002203450d040340200410202003210420032802002205210320050d000c050b0b200241286a200010c6040c050b41124101102d000b41244101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000b200410200b200a450d00200b10200b200241e0006a200141a00110cd051a20024198026a200241c0006a29030037030020024190026a200241386a29030037030020024188026a200241306a29030037030020022002290328370380022002412036024c2002200241086a360248200241e0006a200241c8006a10c704024020022802b401450d00200241d4016a2802002104200241cc016a28020021030240200241d0016a2802002205450d00200521060340200328026021032006417f6a22060d000b03402005417f6a22050d000b0b02402004450d00410021054100210641002107034020022007360214200220063602102002200336020c20022005360208200241286a200241086a1061200228023021052002280234210320022802382106200228023c21072004417f6a22040d000b0b200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b0240200241f4016a280200450d0020022802f00110200b200241b0026a24000b970402067f017e230041e0016b22022400024020002802202203450d002000280200210402400240200028020c2205200028020422062f0106490d0002400240200628020022000d0041002106410021000c010b200441016a210420062f010421060b0240200620002f0106490d000340200441016a210420002f01042206200028020022002f01064f0d000b0b200020064103746a41086a2107200641027420006a41e4006a28020021064100210002402004417f6a2204450d000340200628026021062004417f6a22040d000b0b410021040c010b200541016a2100200620054103746a41086a21070b0340200241086a200710c2032007290300210820024198016a200241086a41c80010cd051a200241d0006a2001200820024198016a10c3032003417f6a2103024020022903584202510d00200228029001450d00200228028c0110200b2003450d010240200020062f0106490d0002400240200628020022000d0041002106410021000c010b200441016a210420062f010421060b0240200620002f0106490d000340200441016a210420002f01042206200028020022002f01064f0d000b0b2004417f6a2105200020064103746a41086a2107200641027420006a41e4006a280200210641002100410021042005450d010340200628026021062005417f6a22050d000b410021040c010b200620004103746a41086a2107200041016a21000c000b0b200241e0016a24000baa0401097f024020002802202201450d002000412c6a2802002102200041286a2802002103200028022421042000280200210502400240200028020c2206200028020422072f0106490d0002400240200728020022000d0041002107410021000c010b200541016a210520072f010421070b0240200720002f0106490d000340200541016a210520002f01042207200028020022002f01064f0d000b0b2000200741c8006c6a41e0006a2108200020074103746a41086a2109200741027420006a41fc066a28020021074100210002402005417f6a2205450d00034020072802f80621072005417f6a22050d000b0b410021050c010b200641016a2100200720064103746a41086a21092007200641c8006c6a41e0006a21080b034020082009290300200428020020042802042003280200200328020420022d000010c4031a2001417f6a2201450d010240200020072f0106490d0002400240200728020022000d0041002107410021000c010b200541016a210520072f010421070b0240200720002f0106490d000340200541016a210520002f01042207200028020022002f01064f0d000b0b2005417f6a21062000200741c8006c6a41e0006a2108200020074103746a41086a2109200741027420006a41fc066a280200210741002100410021052006450d01034020072802f80621072006417f6a22060d000b410021050c010b200720004103746a41086a21092007200041c8006c6a41e0006a2108200041016a21000c000b0b0b820403027f017e037f02402001450d00034020002802f80621002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41fc066a28020021002001200341c8006c6a220141a0016a28020021072001419c016a2802002108200141e8006a2903002105410021032006417f6a2201450d01034020002802f80621002001417f6a22010d000c020b0b2000200341c8006c6a220141a0016a28020021072001419c016a2802002108200141e8006a2903002105200341016a21030b20054202510d012002417f6a210202402007450d00200810200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0be10903087f027e077f23004190016b220224000240024002400240200128020422034104490d0020012802002204280000210520012003417c6a22063602042001200441046a36020041002107200241003a008801417b21080240034020062007460d01200241e8006a20076a200420076a220941046a2d00003a00002001200320086a3602042001200941056a3602002002200741016a22093a0088012008417f6a21082009210720094120470d000b200241086a41086a200241e8006a41086a290300370300200241086a41106a200241e8006a41106a290300370300200241086a41186a200241e8006a41186a29030037030020022002290368370308200320096b2207417c6a4110490d02200420096a2208410c6a290000210a200841046a290000210b20012007416c6a3602042001200841146a360200200241e8006a200110b701200228026822060d03200041063a00700c040b0240200741ff0171450d00200241003a0088010b200041063a00700c030b200041063a00700c020b200041063a00700c010b200241f0006a2207280200210c200228026c210d200241e8006a200110b70102402002280268220e450d002007280200210f200228026c211041002107200241003a00880120012802042103417f210802400240034020032007460d01200241e8006a20076a200128020022042d00003a00002001200320086a3602042001200441016a3602002002200741016a22093a0088012008417f6a21082009210720094120460d020c000b0b0240200741ff0171450d00200241003a0088010b200041063a007002402010450d00200e10200b200d450d02200610200c020b200241286a41086a200241e8006a41086a290300370300200241286a41106a200241e8006a41106a290300370300200241286a41186a200241e8006a41186a2903003703002002200229036837032802400240200320096b22074104490d00200428000121082001200441056a36020020012007417c6a3602042003417c6a2009460d0120042d000521092001200441066a36020020012007417b6a360204200941064f0d01200241e8006a41186a2207200241086a41186a290300370300200241e8006a41106a2201200241086a41106a290300370300200241e8006a41086a2203200241086a41086a290300370300200241c8006a41086a2204200241286a41086a290300370300200241c8006a41106a2211200241286a41106a290300370300200241c8006a41186a2212200241286a41186a29030037030020022002290308370368200220022903283703482000200a3703082000200b3703002000200836022c2000200f360228200020103602242000200e3602202000200c36021c2000200d360218200020063602142000200536021020002002290368370330200041386a2003290300370300200041c0006a2001290300370300200041c8006a200729030037030020002002290348370350200041d8006a2004290300370300200041e0006a2011290300370300200041e8006a2012290300370300200020093a0070200041f4006a2002412b6a280000360000200020022800283600710c030b200041063a007002402010450d00200e10200b200d450d02200610200c020b200041063a007002402010450d00200e10200b200d450d01200610200c010b200041063a0070200d450d00200610200b20024190016a24000bd10903067f017e057f230041f0016b220224000240024002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a3602002005417f6a220541014b0d0320050e020102010b200041023a00000c030b0240024020064104490d002004280001210720012003417b6a22053602042001200441056a360200024020054108490d00200429000521082001200341736a36020420012004410d6a36020041002105200241003a00b001410d20036b2109200341726a210602400340200920056a450d0120024190016a20056a200420056a220a410d6a2d00003a0000200120063602042001200a410e6a3602002002200541016a220a3a00b0012006417f6a2106200a2105200a4120470d000b200241f0006a41186a20024190016a41186a290300370300200241f0006a41106a20024190016a41106a290300370300200241f0006a41086a20024190016a41086a290300370300200220022903900137037041002105200241003a00d0012004200a6a2109200a20036b410d6a210a0340200a20056a450d0420024190016a20056a200920056a2204410d6a2d00003a00002001200636020420012004410e6a3602002002200541016a22043a00d0012006417f6a210620042105200441c000470d000b200241106a41386a220120024190016a41386a290300370300200241106a41306a220520024190016a41306a290300370300200241106a41286a220620024190016a41286a290300370300200241106a41206a220420024190016a41206a290300370300200241106a41186a220a20024190016a41186a290300370300200241106a41106a220320024190016a41106a290300370300200241106a41086a220920024190016a41086a290300370300200241d0006a41086a220b200241f0006a41086a290300370300200241d0006a41106a220c200241f0006a41106a290300370300200241d0006a41186a220d200241f0006a41186a290300370300200220022903900137031020022002290370370350200041003a000020002002290350370001200041096a200b290300370000200041116a200c290300370000200041196a200d290300370000200041216a2002290310370000200041296a2009290300370000200041316a2003290300370000200041396a200a290300370000200041c1006a2004290300370000200041c9006a2006290300370000200041d1006a2005290300370000200041d9006a2001290300370000200041e3006a2002410f6a2d00003a0000200041e1006a20022f000d3b0000200041e8006a2008370300200041e4006a20073602000c060b0240200541ff0171450d00200241003a00b0010b200041023a00000c050b200041023a00000c040b200041023a00000c030b0240200541ff0171450d00200241003a00d0010b200041023a00000c020b024020064104490d002004280001210620012003417b6a22053602042001200441056a36020020054108490d00200041013a0000200020022f00103b0001200429000521082001200341736a36020420012004410d6a360200200041086a2008370300200041046a2006360200200041036a200241126a2d00003a0000200041106a20024190016a41e00010cd051a0c020b200041023a00000c010b200041023a00000b200241f0016a24000bc90403047f017e027f230041106b220224002002410036020820024201370300200128020021034101101e21040240024002400240024020034101460d0002402004450d00200242818080801037020420022004360200200441013a00002001280204210320022001410c6a280200220436020c2002410c6a2002106302402004450d002003200441286c6a210503402003200210ca01200341206a29030021060240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22082004490d05200741017422042008200420084b1b22044100480d050240024020070d002004101e21070c010b200228020020072004102221070b02402007450d002002200436020420022007360200200228020821040c010b20044101102d000b2002200441086a360208200720046a20063700002005200341286a2203470d000b0b200141106a200210db010c050b41014101102d000b2004450d01200242818080801037020420022004360200200441023a000020012802042107024020022802042203200228020822046b4104490d00200228020021030c030b200441046a22082004490d00200341017422052008200520084b1b22084100480d000240024020030d002008101e21030c010b200228020020032008102221030b02402003450d0020022008360204200220033602000c030b20084101102d000b1027000b41014101102d000b2002200441046a360208200320046a20073600000b20002002290300370200200041086a200241086a280200360200200241106a24000be60708037f017e017f017e037f027e037f047e230041d0006b210202400240024002400240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a36020020064108490d01200429000821072001200341706a22083602042001200441106a36020041002106200241003a0048416f2109034020082006460d03200241286a20066a200420066a220a41106a2d00003a00002001200320096a3602042001200a41116a3602002002200641016a220a3a00482009417f6a2109200a2106200a4120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a290300370300200220022903283703082003200a6b220941706a4110490d032004200a6a220641186a290000210b200641106a290000210c2001200941606a3602042001200641206a2204360200200341606a200a460d0720042d0000210a20012009415f6a22033602042001200641216a2204360200200a41014b0d07200a0e020405040b200041023602400f0b200041023602400f0b0240200641ff0171450d00200241003a00480b200041023602400f0b200041023602400f0b410021080c010b20034104490d01200641216a280000210d20012009415b6a22033602042001200641256a2204360200410121080b024002402003450d0020042d0000210620012003417f6a22093602042001200441016a220a360200200641014b0d004100210e0240024020060e020100010b20094104490d012004280001210f20012003417b6a22093602042001200441056a220a3602004101210e0b024020094110490d00200a41086a2900002110200a29000021112001200941706a22063602042001200a41106a36020020064110490d02200a2900102112200241286a41106a2206200241086a41106a290300370300200a41186a29000021132001200941606a3602042001200a41206a360200200241286a41086a2201200241086a41086a290300370300200241286a41186a2209200241086a41186a29030037030020022002290308370328200041386a201337030020002012370330200041286a201037030020002011370320200041186a200b3703002000200c370310200041cc006a200f360200200041c8006a200e3602002000200d360244200020083602402000200737030820002005370300200041d0006a2002290328370300200041d8006a2001290300370300200041e0006a2006290300370300200041e8006a20092903003703000f0b200041023602400f0b200041023602400f0b200041023602400f0b200041023602400bfc0d04017f017e047f017e230041106b2202240020024100360208200242013703002000290300210302400240024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200029030821030240024020022802042205200228020822046b4108490d00200441086a2106200228020021050c010b200441086a22062004490d07200541017422072006200720064b1b22074100480d070240024020050d002007101e21050c010b200228020020052007102221050b2005450d0220022007360204200220053602000b20022006360208200520046a2003370000200041d0006a200210ca01200041186a2903002103200029031021080240024020022802042204200228020822056b4110490d00200228020021060c010b200541106a22062005490d07200441017422052006200520064b1b22074100480d070240024020040d002007101e21060c010b200228020020042007102221060b2006450d03200220073602042002200636020020022802082105200721040b200620056a22072003370008200720083700002002200541106a2205360208024020002802404101460d000240024020042005470d00200441016a22052004490d09200441017422072005200720054b1b22054100480d090240024020040d002005101e21060c010b200620042005102221060b2006450d012002200536020420022006360200200228020821050b2002200541016a360208200620056a41003a00000c070b20054101102d000b024020042005470d00200441016a22052004490d07200441017422072005200720054b1b22054100480d070240024020040d002005101e21060c010b200620042005102221060b2006450d042002200536020420022006360200200228020821050b2002200541016a360208200620056a41013a000020002802442105024020022802042206200228020822046b4104490d00200228020021060c050b200441046a22072004490d06200641017422042007200420074b1b22044100480d060240024020060d002004101e21060c010b200228020020062004102221060b02402006450d002002200436020420022006360200200228020821040c050b20044101102d000b41084101102d000b20074101102d000b20074101102d000b20054101102d000b2002200441046a360208200620046a20053600000b02400240024020002802484101460d000240200228020420022802082204460d00200228020021060c020b200441016a22062004490d03200441017422052006200520064b1b22054100480d030240024020040d002005101e21060c010b200228020020042005102221060b02402006450d002002200536020420022006360200200228020821040c020b20054101102d000b0240024002400240200228020420022802082204460d00200228020021060c010b200441016a22062004490d05200441017422052006200520064b1b22054100480d050240024020040d002005101e21060c010b200228020020042005102221060b2006450d012002200536020420022006360200200228020821040b2002200441016a360208200620046a41013a0000200028024c2105024020022802042206200228020822046b4104490d00200228020021060c020b200441046a22072004490d04200641017422042007200420074b1b22044100480d040240024020060d002004101e21060c010b200228020020062004102221060b02402006450d002002200436020420022006360200200228020821040c020b20044101102d000b20054101102d000b2002200441046a360208200620046a20053600000c010b2002200441016a360208200620046a41003a00000b200041286a2903002103200029032021080240024020022802042205200228020822066b4110490d00200228020021040c010b200641106a22042006490d01200541017422062004200620044b1b22074100480d010240024020050d002007101e21040c010b200228020020052007102221040b02402004450d00200220073602042002200436020020022802082106200721050c010b20074101102d000b200420066a22072003370008200720083700002002200641106a2206360208200041386a290300210320002903302108200520066b410f4b0d02200641106a22072006490d00200541017422062007200620074b1b220641004e0d010b1027000b0240024020050d002006101e21040c010b200420052006102221040b2004450d012002200636020420022004360200200228020821060b200420066a22042003370008200420083700002002200641106a360208200041f0006a20021094012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000f0b20064101102d000b34002000418280c20036020420004100360200200041146a4104360200200041106a419480c200360200200041086a420f3702000b800e02057f027e23004180016b22022400200241e8006a4200370300200241e0006a4200370300200241d8006a420037030020024200370350200241003602482002410041c40010cc05220241003602782002420137037002400240024002400240024002400240024002404108101e2203450d0020024288808080800137027420022003360270200342003700000240024020022802742204200228027822036b4108490d00200341086a2105200228027021040c010b200341086a22052003490d07200441017422062005200620054b1b22064100480d070240024020040d002006101e21040c010b200228027020042006102221040b2004450d0220022006360274200220043602700b20022005360278200420036a4200370000200241d0006a200241f0006a10ca01200241186a2903002107200229031021080240024020022802742203200228027822046b4110490d00200228027021050c010b200441106a22052004490d07200341017422042005200420054b1b22064100480d070240024020030d002006101e21050c010b200228027020032006102221050b2005450d03200220063602742002200536027020022802782104200621030b200520046a22062007370008200620083700002002200441106a2204360278024020022802404101460d000240024020032004470d00200341016a22042003490d09200341017422062004200620044b1b22044100480d090240024020030d002004101e21050c010b200520032004102221050b2005450d012002200436027420022005360270200228027821040b2002200441016a360278200520046a41003a00000c070b20044101102d000b024020032004470d00200341016a22042003490d07200341017422062004200620044b1b22044100480d070240024020030d002004101e21050c010b200520032004102221050b2005450d042002200436027420022005360270200228027821040b2002200441016a360278200520046a41013a000020022802442104024020022802742205200228027822036b4104490d00200228027021050c050b200341046a22062003490d06200541017422032006200320064b1b22034100480d060240024020050d002003101e21050c010b200228027020052003102221050b02402005450d002002200336027420022005360270200228027821030c050b20034101102d000b41084101102d000b20064101102d000b20064101102d000b20044101102d000b2002200341046a360278200520036a20043600000b02400240024020022802484101460d000240200228027420022802782203460d00200228027021050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b200228027020032004102221050b02402005450d002002200436027420022005360270200228027821030c020b20044101102d000b0240024002400240200228027420022802782203460d00200228027021050c010b200341016a22052003490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21050c010b200228027020032004102221050b2005450d012002200436027420022005360270200228027821030b2002200341016a360278200520036a41013a0000200228024c2104024020022802742205200228027822036b4104490d00200228027021050c020b200341046a22062003490d04200541017422032006200320064b1b22034100480d040240024020050d002003101e21050c010b200228027020052003102221050b02402005450d002002200336027420022005360270200228027821030c020b20034101102d000b20044101102d000b2002200341046a360278200520036a20043600000c010b2002200341016a360278200520036a41003a00000b200241286a2903002107200229032021080240024020022802742204200228027822056b4110490d00200228027021030c010b200541106a22032005490d01200441017422052003200520034b1b22064100480d010240024020040d002006101e21030c010b200228027020042006102221030b02402003450d00200220063602742002200336027020022802782105200621040c010b20064101102d000b200320056a22062007370008200620083700002002200541106a2205360278200241386a290300210720022903302108200420056b410f4b0d02200541106a22062005490d00200441017422052006200520064b1b220541004e0d010b1027000b0240024020040d002005101e21030c010b200320042005102221030b2003450d012002200536027420022003360270200228027821050b200320056a220320073700082003200837000020002002290370370200200041086a200541106a36020020024180016a24000f0b20054101102d000b6101017f024002404110101e2202450d00200242003700082002420037000020024110412010222202450d0120024200370010200042a0808080800437020420002002360200200241186a42003700000f0b41104101102d000b41204101102d000bf70301057f230041e0016b22022400024002404123101e2203450d002003411f6a41002800ddf041360000200341186a41002900d6f041370000200341106a41002900cef041370000200341086a41002900c6f041370000200341002900bef0413700002003412341c60010222203450d0120032000370023200241c8006a41186a22044200370300200241c8006a41106a22054200370300200241c8006a41086a22064200370300200242003703482003412b200241c8006a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a20062903003703002002200229034837030820031020200241c8006a200241086a10ad030240024020022903b8014202520d00200241286a200010b1030c010b200241286a41186a200241b8016a220341186a290300370300200241286a41106a200341106a290300370300200241286a41086a200341086a290300370300200220032903003703280b200241c8006a200141f00010cd051a200241d0016a200241c0006a290300370300200241c8016a200241386a290300370300200241c0016a200241306a290300370300200220022903283703b801200241203602dc012002200241086a3602d801200241c8006a200241d8016a10bc03200241e0016a24000f0b41234101102d000b41c6004101102d000bfb0503017f027e047f230041106b220224002002410036020820024201370300200041206a200210ca012002200236020c200041c0006a2002410c6a10b901200041086a2903002103200029030021040240024002400240024020022802042205200228020822066b4110490d00200228020021070c010b200641106a22072006490d01200541017422062007200620074b1b22084100480d010240024020050d002008101e21070c010b200228020020052008102221070b02402007450d00200220083602042002200736020020022802082106200821050c010b20084101102d000b200720066a22082003370008200820043700002002200641106a2206360208200041186a29030021032000290310210402400240200520066b410f4d0d00200521080c010b200641106a22082006490d01200541017422062008200620084b1b22084100480d010240024020050d002008101e21070c010b200720052008102221070b2007450d022002200836020420022007360200200228020821060b200720066a22052003370008200520043700002002200641106a2205360208024020002d00604101460d000240024020082005470d00200841016a22002008490d03200841017422052000200520004b1b22004100480d030240024020080d002000101e21070c010b200720082000102221070b2007450d012002200036020420022007360200200228020821050b2002200541016a360208200720056a41003a00000c040b20004101102d000b0240024020082005470d00200841016a22052008490d02200841017422062005200620054b1b22054100480d020240024020080d002005101e21070c010b200720082005102221070b2007450d012002200536020420022007360200200228020821050b2002200541016a360208200720056a41013a0000200041e1006a200210ca010c030b20054101102d000b1027000b20084101102d000b2002280204210720012802002001280204200228020022002002280208100502402007450d00200010200b200241106a24000bed0605027f017e027f017e027f230041b0016b22022400024002400240024002404116101e2203450d002003410e6a41002900aad543370000200341086a41002900a4d5433700002003410029009cd5433700002001290300210420034116412c10222203450d0120032004370016200241e0006a41186a22014200370300200241e0006a41106a22054200370300200241e0006a41086a22064200370300200242003703602003411e200241e0006a1001200241c0006a41186a2001290300370300200241c0006a41106a2005290300370300200241c0006a41086a2006290300370300200220022903603703402003102020024100360260200241c0006a4120200241e0006a1003210320022802602201417f460d032003450d03200220013602ac01200220033602a801200241e0006a200241a8016a10d802200229036822044202510d02200241106a200241e0006a41186a290300370300200241186a200241e0006a41206a290300370300200241086a41186a200241e0006a41286a290300370300200241086a41206a200241e0006a41306a290300370300200241086a41286a20024198016a290300370300200241086a41306a200241a0016a29030037030020022002290370370308200229036021072001450d04200310200c040b41164101102d000b412c4101102d000b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b420221040b200241e0006a41306a2203200241086a41306a290300370300200241e0006a41286a2201200241086a41286a290300370300200241e0006a41206a2205200241086a41206a290300370300200241e0006a41186a2206200241086a41186a290300370300200241e0006a41106a2208200241086a41106a290300370300200241e0006a41086a2209200241086a41086a290300370300200220022903083703600240024020044202520d002000420037030020004200370318200042003703282000420137023c200041086a4200370300200041306a41003a0000200041c4006a41003602000c010b2000200437030820002007370300200041106a2002290360370300200041186a2009290300370300200041206a2008290300370300200041286a2006290300370300200041306a2005290300370300200041386a2001290300370300200041c0006a20032903003703000b200241b0016a24000bd71603077f097e077f230041a0096b220424000240024002400240024002400240024002402001280200220541908cc500460d00200128020421060c010b41002106200441e0076a410272410041da0010cc051a20044198016a410041980610cc051a41f806101e2205450d0120054100360200200541046a200441e0076a41dc0010cd051a200541e0006a20044198016a41980610cd051a20014100360204200120053602000b03400240024020052f010622070d00410021080c010b20074103742109200541086a210a417f21080340024020090d00200721080c020b200a290300210b200941786a2109200841016a2108200a41086a210a0240417f200b200252200b2002561b41016a0e03020001020b0b2005200841c8006c6a220541f8006a2208290300210b200341c0006a2903002102200341206a290300210c200341286a290300210d200341306a290300210e200341386a290300210f2003290300211020032903082111200329031021122008200341186a290300370300200541f0006a2208290300211320082012370300200541e8006a2208290300211220082011370300200541e0006a220829030021112008201037030020054198016a220829030021102008200f37030020054190016a2208290300210f2008200e37030020054188016a2208290300210e2008200d37030020054180016a2208290300210d2008200c370300200541a0016a2205290200210c20052002370200200041206a200d370300200041286a200e370300200041306a200f370300200041386a2010370300200020113703002000201237030820002013370310200041186a200b370300200041c0006a200c3703000c050b02402006450d002006417f6a2106200520084102746a41f8066a28020021050c010b0b2001200128020841016a360208200441e0076a200341c80010cd051a02400240024020052f01062209410b490d0002400240200541908cc500460d00200441c0086a410272410041da0010cc051a20044198016a410041980610cc051a41f806101e22140d0141f8064108102d000b41c8a6c000412d41a888c6001028000b20144100360200201441046a200441c0086a41dc0010cd051a201441e0006a20044198016a41980610cd05210a2005290338210b20044198016a20054190046a41c80010cd051a201441086a200541c0006a20052f010641796a220941037410cd052103200a200541d8046a200941c8006c10cd05210a200541063b0106201420093b0106200441c0086a20044198016a41c80010cd051a0240024020084107490d00200841037420036a41506a2003200841796a22064103746a2203200941ffff037120066b41037410ce051a20032002370300200841c8006c200a6a220841d07c6a200841887c6a2208201441066a22092f010020066b41c8006c10ce051a2008200441e0076a41c80010cd051a0c010b200541066a2109200541086a20084103746a220a41086a200a20052f010620086b41037410ce051a200a2002370300200541e0006a200841c8006c6a220a41c8006a200a20052f010620086b41c8006c10ce051a200a200441e0076a41c80010cd051a0b200920092f010041016a3b0100200441d0006a200441c0086a41c80010cd051a200441086a200441d0006a41c80010cd051a0240200528020022060d00410021150c050b20052f01042116200441c0086a4102722117410021150340200441d0006a200441086a41c80010cd051a41000d02201641ffff0371210302400240024020062f01062205410b490d002017410041da0010cc051a200441e0076a200441c0086a41dc0010cd051a20044198016a410041c80610cc051a41a807101e220a450d06200a4100360200200a41046a200441e0076a41dc0010cd051a200a41e0006a20044198016a41c80610cd0521082006290338210220044198016a20064190046a41c80010cd051a200a41086a200641c0006a20062f0106220941796a220541037410cd0521182008200641d8046a200541c8006c10cd052119200a41f8066a20064194076a2009417a6a220741027410cd05211a200641063b0106200a20053b010602402007450d0041002105201a210803402008280200220920053b01042009200a360200200841046a21082007200541016a2205470d000b0b200441c0086a20044198016a41c80010cd051a20044198016a200441c0086a41c80010cd051a201641ffff037122054107490d0120182003417a6a22084103746a2018200341796a22054103746a2209200a2f010620056b41037410ce051a2009200b370300200341c8006c20196a220941d07c6a200941887c6a2209200a2f010620056b41c8006c10ce051a2009200441d0006a41c80010cd051a200a200a2f010641016a22093b010620034102742216201a6a416c6a201a20084102746a2207200941ffff0371220320086b41027410ce051a2007201436020020032008490d02200a20166a41e0066a2108034020082802002209200541016a22053b01042009200a360200200841046a210820052003490d000c030b0b200641086a2209200341016a22084103746a200920034103746a2209200520036b220a41037410ce051a2009200b3703002006200341c8006c6a220941a8016a200941e0006a2209200a41c8006c10ce051a2009200441d0006a41c80010cd051a2006200541016a22053b01062003410274200641f8066a22096a41086a200920084102746a2209200541ffff0371220520086b41027410ce051a20092014360200201641ffff037120054f0d08201420083b010420142006360200200820054f0d082005417f6a210a20062008417f6a22054102746a4180076a2108034020082802002209200541026a3b010420092006360200200841046a2108200a200541016a2205470d000c090b0b200641086a2209200341016a22084103746a200920034103746a220920062f0106220720036b221641037410ce051a2009200b370300200641e0006a200341c8006c6a220941c8006a2009201641c8006c10ce051a2009200441d0006a41c80010cd051a2006200741016a22093b010620034102742216200641f8066a22076a41086a200720084102746a2207200941ffff0371220920086b41027410ce051a20072014360200200520094f0d00200620166a41fc066a2105034020052802002208200341016a22033b010420082006360200200541046a210520092003470d000b0b201541016a2115200441086a20044198016a41c80010cd051a0240200628020022050d00200a21142002210b0c060b20062f01042116200521062002210b200a21140c000b0b200520084103746a220a41106a200a41086a220a200920086b41037410ce051a200a20023703002005200841c8006c6a220941a8016a200941e0006a220920052f010620086b41c8006c10ce051a2009200441e0076a41c80010cd051a200520052f010641016a3b01060c040b41c6a8c000413541a888c6001028000b41a8074108102d000b41f8064108102d000b200441e0076a410272410041da0010cc051a200441c0086a200441e0076a41dc0010cd051a20044198016a410041c80610cc051a41a807101e2205450d0220054100360200200541046a200441c0086a41dc0010cd051a200541e0006a20044198016a41c80610cd0521092005200128020022083602f8062001200536020020012001280204220a41016a360204200841003b01042008200536020020044198016a200441086a41c80010cd051a200a2015470d0320052f01062208410a4b0d04200520084103746a41086a200b3703002009200841c8006c6a20044198016a41c80010cd051a2005200841016a22084102746a41f8066a2014360200200520083b0106201420083b0104201420053602000b200042023703080b200441a0096a24000f0b41a8074108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000be03409027f017e017f017e027f027e017f027e127f230041d0056b2207240041002108024020002d00300d0002400240024002400240024002400240024002400240200029031822094201520d002007200041206a29030037039004410c101e220a450d01200a428180808010370200200a41086a22084101360200200a4174460d0220074190046a2002200310ad02210220082008280200417f6a360200200a200a280200417f6a2203360200200241ff01712102024020030d00200a200a280204417f6a220336020420030d00200a10200b20024105470d030b410021020240200641ff01714101460d0002402000290308220b4201520d002007200041106a29030037039004410c101e220a450d05200a428180808010370200200a41086a22024101360200200a4174460d0620074190046a2004200510ad02210320022002280200417f6a360200200a200a280200417f6a2202360200200341ff01712103024020020d00200a200a280204417f6a220236020420020d00200a10200b20034105470d070b200ba721020b107921034116101e220a450d06200a410e6a41002900aad543370000200a41086a41002900a4d543370000200a410029009cd543370000200a4116412c1022220a450d07200a20013700164200210b20074190046a41186a2208420037030020074190046a41106a2204420037030020074190046a41086a220542003703002007420037039004200a411e20074190046a1001200741b8026a41186a2008290300370300200741b8026a41106a2004290300370300200741b8026a41086a200529030037030020072007290390043703b802200a10202007410036029004200741b8026a412020074190046a1003210a200728029004220c417f460d08200a450d082007200c3602fc012007200a3602f80120074190046a200741f8016a10d80202400240200729039804220b4202510d00200741d0046a2802002108200741b8046a280200210d200741b0046a290300210e200741a8046a290300210f20072802d404210520072802cc04210420072802bc04211020072903a00421112007290390042112200741206a200741f8016a10930120072903204202520d012008450d00200410200b41ceb8c4004133200741c0036a41fcbfc4004184b9c400102e000b200c450d09200a10200c090b410c4104102d000b4196e2c6004118200741c0036a41f8aac10041c0e2c600102e000b41b2aac40041a60141a888c6001028000b410c4104102d000b4196e2c6004118200741c0036a41f8aac10041c0e2c600102e000b41b2aac40041a60141a888c6001028000b41164101102d000b412c4101102d000b41012104410021054100210842002112410021104100210d4200210f0b200741e0006a2008360200200741d8006a2003360200200741d4006a2003360200200741d0006a410241012009502002457122131b22083a0000200741c8006a200d360200200741c0006a200e370300200741386a200f370300200720053602642007200436025c200720063a00512007201036024c200720113703302007200b3703282007201237032002400240024002404116101e220a450d00200a410e6a41002900aad543370000200a41086a41002900a4d543370000200a410029009cd543370000200a4116412c1022220a450d01200a200137001620074190046a41186a2206420037030020074190046a41106a2203420037030020074190046a41086a220442003703002007420037039004200a411e20074190046a1001200741186a2006290300370300200741106a2003290300370300200741086a20042903003703002007200729039004370300200a102020074100360290042007412020074190046a1003210a2007280290042206417f460d02200a450d02200720063602c4012007200a3602c00120074190046a200741c0016a10d802024002402007290398044202510d00200741d0046a280200210320072802cc042114200741f8016a200741c0016a10930120072903f8014202520d012003450d00201410200b41ceb8c4004133200741c0036a41fcbfc4004184b9c400102e000b200741d8036a41186a200741f8016a41186a22042903002201370300200741d8036a41106a200741f8016a41106a2205290300220b37030020074188036a41086a2210200741f8016a41086a220d29030037030020074188036a41106a220c200b37030020074188036a41186a22152001370300200720072903f8013703880302402006450d00200a10200b200420152903003703002005200c290300370300200d201029030037030020072007290388033703f8012003450d03201410200c030b41164101102d000b412c4101102d000b200741f8016a20011098040b20074190046a41106a200741f8016a41086a29030037030020074190046a41186a200741f8016a41106a290300370300200741b0046a200741f8016a41186a290300370300200720072903f801370398042007200741206a36029004200741003602e003200742013703d803200729032021010240024002400240024002400240024002404108101e220a450d00200741083602dc03200720072802e003220641086a3602e0032007200a3602d803200a20066a2001370000200741c8006a28020021030240024020072802dc03220620072802e003220a6b4104490d0020072802d80321060c010b200a41046a2204200a490d082006410174220a2004200a20044b1b220a4100480d080240024020060d00200a101e21060c010b20072802d8032006200a102221060b2006450d022007200a3602dc03200720063602d80320072802e003210a0b2007200a41046a3602e0032006200a6a2003360000200728024c21030240024020072802dc03220620072802e003220a6b4104490d0020072802d80321060c010b200a41046a2204200a490d082006410174220a2004200a20044b1b220a4100480d080240024020060d00200a101e21060c010b20072802d8032006200a102221060b2006450d032007200a3602dc03200720063602d80320072802e003210a0b2007200a41046a3602e0032006200a6a2003360000024020072903284201510d00024020072802dc0320072802e003220a460d0020072802d80321060c070b200a41016a2206200a490d08200a41017422032006200320064b1b22034100480d0802400240200a0d002003101e21060c010b20072802d803200a2003102221060b02402006450d00200720033602dc03200720063602d80320072802e003210a0c070b20034101102d000b0240024020072802dc0320072802e003220a460d0020072802d80321060c010b200a41016a2206200a490d08200a41017422032006200320064b1b22034100480d0802400240200a0d002003101e21060c010b20072802d803200a2003102221060b2006450d04200720033602dc03200720063602d80320072802e003210a0b2007200a41016a3602e0032006200a6a41013a000020072903302101024020072802dc03220620072802e003220a6b4108490d0020072802d80321060c050b200a41086a2203200a490d072006410174220a2003200a20034b1b220a4100480d070240024020060d00200a101e21060c010b20072802d8032006200a102221060b02402006450d002007200a3602dc03200720063602d80320072802e003210a0c050b200a4101102d000b41084101102d000b200a4101102d000b200a4101102d000b20034101102d000b2007200a41086a3602e0032006200a6a20013700000c010b2007200a41016a3602e0032006200a6a41003a00000b024002400240200741386a2903004201510d00024020072802dc0320072802e003220a460d0020072802d80321060c020b200a41016a2206200a490d03200a41017422032006200320064b1b22034100480d0302400240200a0d002003101e21060c010b20072802d803200a2003102221060b02402006450d00200720033602dc03200720063602d80320072802e003210a0c020b20034101102d000b024002400240024020072802dc0320072802e003220a460d0020072802d80321060c010b200a41016a2206200a490d05200a41017422032006200320064b1b22034100480d0502400240200a0d002003101e21060c010b20072802d803200a2003102221060b2006450d01200720033602dc03200720063602d80320072802e003210a0b2007200a41016a3602e0032006200a6a41013a000020072903402101024020072802dc03220620072802e003220a6b4108490d0020072802d80321060c020b200a41086a2203200a490d042006410174220a2003200a20034b1b220a4100480d040240024020060d00200a101e21060c010b20072802d8032006200a102221060b02402006450d002007200a3602dc03200720063602d80320072802e003210a0c020b200a4101102d000b20034101102d000b2007200a41086a3602e0032006200a6a20013700000c010b2007200a41016a3602e0032006200a6a41003a00000b200741d0006a200741d8036a10d902200728025c21042007200741e4006a280200220a3602880320074188036a200741d8036a1063024020072802dc03220320072802e00322066b200a490d0020072802d80321030c020b2006200a6a22052006490d00200341017422062005200620054b1b22064100480d000240024020030d002006101e21030c010b20072802d80320032006102221030b02402003450d00200720063602dc03200720033602d80320072802e00321060c020b20064101102d000b1027000b20072006200a6a3602e003200320066a2004200a10cd051a20074190046a41086a200741d8036a10940120072802dc03210a2007412020072802d803220620072802e00310050240200a450d00200610200b024020072903284202510d002007280260450d00200728025c10200b20002903002101024002400240024002404112101e2200450d00200041106a41002f00e0d5433b0000200041086a41002900d8d543370000200041002900d0d54337000020004112412410222200450d012000200137001220074190046a41186a220a420037030020074190046a41106a2206420037030020074190046a41086a2203420037030020074200370390042000411a20074190046a1001200741186a200a290300370300200741106a2006290300370300200741086a200329030037030020072007290390043703002000102020074100360290042007412020074190046a100321062007280290042216417f460d032006450d03200720163602242007200636022020074190046a200741206a10e90220072903b0054202510d02200741e0026a41086a221720074190046a41086a2218290300370300200741b8026a41086a2219200741ac046a290200370300200741b8026a41106a221a200741b4046a290200370300200741b8026a41186a221b200741bc046a290200370300200741b8026a41206a221c200741c4046a280200360200200741a0026a41086a221d200741d4046a290200370300200741a0026a41106a221e200741dc046a28020036020020072007290390043703e002200720072902a4043703b802200720072902cc043703a00220072802a004211520072802c804211f200741f8016a41086a2220200741f4046a290200370300200741f8016a41106a2221200741fc046a290200370300200741f8016a41186a222220074184056a290200370300200741f8016a41206a22232007418c056a290200370300200720072902ec043703f80120072802e804210020072802e404210a20072802e0042104200728029405210c200728029805210d200728029c05211420072802a005210320072802a405210520072802a805211020072802ac05212402402016450d00200610200b20074180046a41086a2017290300370300200741d8036a41086a2019290300370300200741d8036a41106a201a290300370300200741d8036a41186a201b290300370300200741d8036a41206a201c280200360200200720072903e00237038004200720072903b8023703d803200741c0036a41086a201d290300370300200741c0036a41106a201e280200360200200720072903a0023703c00320074190046a41206a202329030037030020074190046a41186a202229030037030020074190046a41106a202129030037030020182020290300370300200720072903f801370390044102210602400240200a4102470d00410121034100210041002105410021104100210d4100210c4100210a41002104410221150c010b200741b0036a41086a20074180046a41086a29030037030020074188036a41086a200741d8036a41086a29030037030020074188036a41106a200741d8036a41106a29030037030020074188036a41186a200741d8036a41186a29030037030020074188036a41206a200741d8036a41206a280200360200200741f0026a41086a200741c0036a41086a290300370300200741f0026a41106a200741c0036a41106a28020036020020072007290380043703b003200720072903d80337038803200720072903c0033703f002200741206a41206a20074190046a41206a290300370300200741206a41186a20074190046a41186a290300370300200741206a41106a20074190046a41106a290300370300200741206a41086a20074190046a41086a2903003703002007200729039004370320201f21060b200741e8016a41086a200741b0036a41086a290300370300200741c0016a41086a20074188036a41086a290300370300200741c0016a41106a20074188036a41106a290300370300200741c0016a41186a20074188036a41186a290300370300200741c0016a41206a20074188036a41206a280200360200200720072903b0033703e80120072007290388033703c001200741d8036a41106a200741f0026a41106a280200360200200741d8036a41086a200741f0026a41086a290300370300200720072903f0023703d80320074190046a41206a200741206a41206a29030037030020074190046a41186a200741206a41186a29030037030020074190046a41106a200741206a41106a29030037030020074190046a41086a200741206a41086a29030037030020072007290320370390040c040b41124101102d000b41244101102d000b41ceb8c4004133200741c0036a41fcbfc4004184b9c400102e000b41022106410121034100210041002105410021104100210d4100210c4100210a41002104410221150b200741206a41086a200741e8016a41086a2903003703002007413c6a200741c0016a41086a290300370200200741c4006a200741c0016a41106a290300370200200741cc006a200741c0016a41186a290300370200200741d4006a200741c0016a41206a280200360200200741d8006a2006360200200720072903e80137032020072015360230200720072903c001370234200741dc006a20072903d803370200200741e4006a200741d8036a41086a290300370200200741ec006a200741d8036a41106a280200360200200741f8006a2000360200200720043602702007200a3602742007419c016a20074190046a41206a29030037020020074194016a20074190046a41186a2903003702002007418c016a220420074190046a41106a29030037020020074184016a20074190046a41086a290300370200200741fc006a200729039004370200200741b8016a2010360200200741b4016a2005360200200741ac016a2014360200200720243602bc01200720033602b0012007200d3602a8012007200c3602a4010240024002400240200a4101470d00024002400240024020074198016a280200220a450d004100210520094200522002410047722106200728029c01210220072802a0012103200041ff01710e03030201030b41f6abc400412f41a888c6001028000b20074184016a280200410146210d20074188016a280200211020074180016a280200210c410221050c010b20074180016a280200210c410121050b20004108762115200220066a2114200320136a2113200a417f6a2124200728027c21160240024020074194016a2802000d00200742003702dc03200741908cc5003602d8034100210a0c010b20072004360298042007200728028c0136029404200720074190016a28020036029004200741d8036a20074190046a10ea022007280274450d04200728029401210a0b200728028c012100024020074190016a2802002206450d00200621020340200028026021002002417f6a22020d000b03402006417f6a22060d000b0b0240200a450d00410021064100210241002103034020072003360284022007200236028002200720003602fc01200720063602f80120074190046a200741f8016a10612007280298042106200728029c04210020072802a004210220072802a4042103200a417f6a220a0d000b0b200041908cc500460d0320002802002106200010202006450d032006280200210a20061020200a450d03200a28020022000d010c020b41d8abc400411e41a888c6001028000b0340200a10202000210a20002802002206210020060d000b0b200a10200b200420072902d80337020020074188016a201036020020074184016a200d36020020074180016a200c360200200441086a200741d8036a41086a2802003602002007201636027c200720153a0079200720053a007820074101360274200720133602a0012007201436029c01200720243602980120074190046a200741206a41a00110cd051a0240024020072802e4044102470d00200110eb020c010b200120074190046a10ec020b0240024020072802e404220041024b0d0020000e03010002010b20074184056a280200210a200741fc046a2802002100024020074180056a2802002206450d00200621020340200028026021002002417f6a22020d000b03402006417f6a22060d000b0b0240200a450d004100210641002102410021030340200720033602e403200720023602e003200720003602dc03200720063602d803200741f8016a200741d8036a1061200728028002210620072802840221002007280288022102200728028c022103200a417f6a220a0d000b0b200041908cc500460d0020002802002106200010202006450d002006280200210a20061020200a450d000240200a2802002200450d000340200a10202000210a20002802002206210020060d000b0b200a10200b200741a4056a280200450d0020072802a00510200b200741d0056a240020080bde0405067f017e037f017e087f230041f0026b22032400200341b8016a4104722104200341f0016a2105200341cd026a2106200341ad026a2107024003400240200128020022082001280204470d00420021090c020b2001200841306a36020002400240200841086a220a2001280208220b460d004100210c200a200b412010cf050d010b4100210c024020082d0028200128020c2d0000460d000c010b200341b8016a2008290300220d10a70320032903e80122094202510d0020034188016a41086a220c200441086a220a29020037030020034188016a41106a220b200441106a220e29020037030020034188016a41186a220f200441186a221029020037030020034188016a41206a2211200441206a221229020037030020034188016a41286a2213200441286a2214280200360200200320042902003703880120032802b8012115200341086a200541800110cd051a200228020021082004200329038801370200200a200c290300370200200e200b2903003702002010200f2903003702002012201129030037020020142013280200360200200320153602b801200320093703e8012005200341086a41800110cd051a4101210c024020072008460d0020072008412010cf05450d00024020062008470d004101210c0c010b20062008412010cf0545210c0b024020032802fc01450d0020032802f80110200b0240200328028802450d0020032802840210200b0240200328029402450d0020032802900210200b20032802a00220032802a40220032802a80210f5020b200c450d000b420121090b2000200d37030820002009370300200341f0026a24000bea0a03057f027e027f230041f0036b220224000240024020012802202203450d0020012003417f6a36022020012802082104200128020021050240024002400240200128020c2203200128020422062f0106490d0002400240200628020022030d002004ad2107410021030c010b200541016a210520063301044220862004ad8421070b2007422088a7220620032f01064f0d01200721080c020b200341016a2109200620034103746a41086a210a0c020b03402007220842ffffffff0f832107200541016a210520032f01042206200328020022032f01064f0d000b0b200320064103746a41086a210a200641027420036a41e4006a28020021062008a721044100210902402005417f6a2203450d000340200628026021062003417f6a22030d000b0b410021050b2001200936020c2001200436020820012006360204200120053602000340200241106a200a10c703024002400240024020022802104101460d0020022802b0014102460d00200228028802210620022802800221032002290320210802402002280284022205450d000340200328026021032005417f6a22050d000b0b02402006450d004100210541002104410021090340200220053602ec03200220043602e803200220033602e403200220093602e003200241a0026a200241e0036a106120022802a802210920022802ac02210320022802b002210420022802b40221052006417f6a22060d000b0b0240200341908cc500460d0020032802002105200310202005450d0020052802002106200510202006450d00024020062802002203450d000340200610202003210620032802002205210320050d000b0b200610200b200241a0026a41086a22034200370300200242003703a00241d5efc2004121200241a0026a1000200241e0036a41086a2003290300370300200220022903a0023703e003200241003602a002200241e0036a4110200241a0026a100321030240024020022802a0022206417f470d00420021070c010b024020030d00420021070c010b200641074d0d0220032900002107200310200b200241033a00e803200220073703e003200241a0026a2008200241e0036a10c80320022802a0024101460d002002280298032103200228029403210620022802900321052002280284032104200228028003210120022802f802210920022802f402210a024020022802ec02450d0020022802e80210200b02402009450d00200a10200b02402004450d00200110200b20052006200310f502200220024199026a41036a28000036009302200220022800990236029002200220022800930236000b2002200228029002360208200220022802083602002002200228000b360003200041033a000820002007370300200041106a2007370000200020022802003600092000410c6a20022800033600000c060b20012802202203450d0420012003417f6a3602202001280208210920012802002104200128020c2203200128020422062f0106490d0102400240200628020022030d002009ad2107410021030c010b200441016a210420063301044220862009ad8421070b02402007422088a7220620032f0106490d0003402007220842ffffffff0f832107200441016a210420032f01042206200328020022032f01064f0d000b200821070b2004417f6a2105200320064103746a41086a210a200641027420036a41e4006a28020021062007a721094100210402402005450d000340200628026021062005417f6a22050d000b0b410021050c020b41ceb8c4004133200241a0026a41fcbfc4004184b9c400102e000b200341016a2105200620034103746a41086a210a0b2001200536020c2001200936020820012006360204200120043602000c000b0b200041043a00080b200241f0036a24000b871a05027f017e097f077e167f230041f0036b2202240002400240024002400240024002400240412a101e2203450d00200341286a41002f00c3ed423b0000200341206a41002900bbed42370000200341186a41002900b3ed42370000200341106a41002900abed42370000200341086a41002900a3ed423700002003410029009bed42370000200129030021042003412a41d40010222203450d012003200437002a200241b8026a41186a22014200370300200241b8026a41106a22054200370300200241b8026a41086a22064200370300200242003703b80220034132200241b8026a1001200241306a41186a2001290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903b802370330200310200240200241306a412041e4fdc600410041001002417f460d00412a101e2203450d03200341286a41002f00c3ed423b0000200341206a41002900bbed42370000200341186a41002900b3ed42370000200341106a41002900abed42370000200341086a41002900a3ed423700002003410029009bed423700002003412a41d40010222203450d042003200437002a200241b8026a41186a22014200370300200241b8026a41106a22054200370300200241b8026a41086a22064200370300200242003703b80220034132200241b8026a1001200241306a41186a2001290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903b80237033020031020200241003602b802200241306a4120200241b8026a1003210320022802b8022201417f460d062003450d062002200136026c20022003360268200241b8026a200241e8006a10f20320022903b8024201510d0520024188026a41086a2205200241b8026a41186a220729030037030020024188026a41106a2206200241b8026a41206a220829030037030020024188026a41186a2209200241b8026a41286a220a29030037030020024188026a41206a220b200241e8026a29030037030020024188026a41286a220c200241f0026a2903003703002002200241b8026a41106a220d2903003703880220022903c002210e02402001450d00200310200b200241e8006a41286a200c290300220f370300200241e8006a41206a200b2903002210370300200241e8006a41186a20092903002211370300200241e8006a41106a20062903002212370300200241e8006a41086a2005290300221337030020022002290388022214370368200a200f3703002008201037030020072011370300200d2012370300200241b8026a41086a2013370300200220143703b802200c200f370300200b201037030020092011370300200620123703002005201337030020022014370388020c070b20004193ddc20036020420004101360200200041086a41223602000c070b412a4101102d000b41d4004101102d000b412a4101102d000b41d4004101102d000b41ceb8c4004133200241186a41fcbfc4004184b9c400102e000b4200210e20024188026a41086a420037030020024188026a41106a420037030020024188026a41186a420037030020024188026a41206a420037030020024188026a41286a4200370300200241b8026a41286a200241e8006a41286a290300370300200241b8026a41206a200241e8006a41206a290300370300200241b8026a41186a200241e8006a41186a290300370300200241b8026a41106a200241e8006a41106a290300370300200241b8026a41086a200241e8006a41086a2903003703002002420037038802200220022903683703b8020b024002400240024002404126101e2203450d002003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d012003200e370026200241b8026a41186a22014200370300200241b8026a41106a22054200370300200241b8026a41086a22064200370300200242003703b8022003412e200241b8026a1001200241306a41186a2001290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903b80237033020031020200241003602b802200241306a4120200241b8026a1003211520022802b8022216417f460d032015450d03200220163602e401200220153602e001200241b8026a200241e0016a10f70320022802900322034102460d02200241c0016a41086a200241b8026a41106a290300370300200241e8006a41086a200241dc026a290200370300200241e8006a41106a200241e4026a29020037030020024180016a200241ec026a29020037030020024188016a200241f4026a280200360200200241a8016a41086a20024184036a290200370300200241a8016a41106a2002418c036a280200360200200220022903c0023703c001200220022902d402370368200220022902fc023703a80120022903b802210f20022802d002211720022802f8022118200241d4036a2f01002105200241d0036a2802002119200241cc036a2802002106200241c8036a280200211a200241c4036a2802002109200241c0036a280200211b200241bc036a280200210b200241b8036a280200211c200241b4036a280200210c200241b0036a280200211d200241ac036a2802002107200241a8036a280200211e200241a4036a2802002108200241a0036a280200211f2002419c036a280200210a20024198036a280200210d200228029403212020024198016a41086a200241de036a2f01003b0100200220022901d60337039801200241e0036a2802002101200241e4036a2802002121200241e8036a2802002122200241ec036a28020021232016450d04201510200c040b41264101102d000b41cc004101102d000b41ceb8c4004133200241186a41fcbfc4004184b9c400102e000b410221030b200241f8016a41086a2216200241c0016a41086a290300370300200241b8026a41086a2224200241e8006a41086a290300370300200241b8026a41106a2225200241e8006a41106a290300370300200241b8026a41186a2226200241e8006a41186a290300370300200241b8026a41206a2227200241e8006a41206a280200360200200220022903c0013703f801200220022903683703b802200241e0016a41086a2228200241a8016a41086a290300370300200241e0016a41106a2229200241a8016a41106a280200360200200220022903a8013703e001200241d0016a41086a222a20024198016a41086a2f01003b010020022002290398013703d001410221150240024020034102470d004200210f41908cc500210141002121410021224100210541002106410021094100210b4100210c41002107410021084100210a4100210d41022117410021030c010b200241d8006a41086a2016290300370300200241306a41086a2024290300370300200241306a41106a2025290300370300200241306a41186a2026290300370300200241306a41206a2027280200360200200241186a41086a2028290300370300200241186a41106a2029280200360200200220022903f801370358200220022903b802370330200220022903e001370318200241086a41086a202a2f01003b0100200220022903d001370308201821150b200041086a200e370300200041106a200229038802370300200041186a20024188026a41086a290300370300200041206a20024188026a41106a290300370300200041286a20024188026a41186a290300370300200041306a20024188026a41206a290300370300200041386a20024188026a41286a290300370300200041c8006a200f370300200041c0006a2004370300200041d0006a2002290358370300200041d8006a200241d8006a41086a290300370300200041e0006a201736020020004184016a200241306a41206a280200360200200041fc006a200241306a41186a290300370200200041f4006a200241306a41106a290300370200200041ec006a200241306a41086a290300370200200041e4006a200229033037020020004188016a20153602002000419c016a200241186a41106a28020036020020004194016a200241186a41086a2903003702002000418c016a2002290318370200200041e4016a20053b0100200041e0016a2019360200200041dc016a2006360200200041d8016a201a360200200041d4016a2009360200200041d0016a201b360200200041cc016a200b360200200041c8016a201c360200200041c4016a200c360200200041c0016a201d360200200041bc016a2007360200200041b8016a201e360200200041b4016a2008360200200041b0016a201f360200200041ac016a200a360200200041a8016a200d360200200041a4016a2020360200200041a0016a2003360200200041fc016a2023360200200041f8016a2022360200200041f4016a2021360200200041f0016a200136020020004100360200200041ee016a200241086a41086a2f01003b0100200020022903083701e6010b200241f0036a24000bca0b01167f23004190046b22032400200341d8026a200110a703024002402003290388034202520d00200041086a4118360200200041c58cc600360204200041013602000c010b20034198026a41086a2204200341e4026a29020037030020034198026a41106a2205200341ec026a29020037030020034198026a41186a2206200341f4026a29020037030020034198026a41206a2207200341d8026a41246a29020037030020034198026a41286a220820034184036a29020037030020034198026a41306a22092003418c036a29020037030020034198026a41386a220a20034194036a280200360200200320032902dc023703980220034198036a280200210b200341a0036a280200210c200341a8036a280200210d200341b0036a280200210e200341b8036a2903002101200341c0036a280200210f200341c8036a280200211020032802d8022111200328029c03211220032802a403211320032802ac03211420032802b403211520032802c403211620032d00cc032117200341d0016a200341cd036a41c30010cd051a20034190016a41086a2218200429030037030020034190016a41106a2204200529030037030020034190016a41186a2205200629030037030020034190016a41206a2206200729030037030020034190016a41286a2207200829030037030020034190016a41306a2208200929030037030020034190016a41386a2209200a280200360200200320032903980237039001200341c8006a200341d0016a41c30010cd051a200341086a41086a2018290300370300200341086a41106a2004290300370300200341086a41186a2005290300370300200341086a41206a2006290300370300200341086a41286a2007290300370300200341086a41306a2008290300370300200341086a41386a20092802003602002003200329039001370308200341d8026a200341c8006a41c30010cd051a024002400240024002402017450d00411e210241b6afc60021040c010b4124101e2204450d0241002105200441206a41002800818f46360000200441186a41002900f98e46370000200441106a41002900f18e46370000200441086a41002900e98e46370000200441002900e18e46370000024002400240024020022d00080e0403000102030b410121050c020b410221050c010b410321050b200320053a00d0012004412441c80010222204450d03200420053a00242004200229030037002541182102200341d0016a41186a22054200370300200341d0016a41106a22064200370300200341d0016a41086a22074200370300200342003703d0012004412d200341d0016a1001200341c8006a41186a2005290300370300200341c8006a41106a2006290300370300200341c8006a41086a2007290300370300200320032903d00137034820041020419eafc6002104200341c8006a412041e4fdc600410041001002417f460d010b2000200436020420004101360200200041086a200236020002402012450d00200b10200b0240200d450d00201310200b02402015450d00200e10200b200f2016201010f5020c030b200041086a20113602002000410c6a2003290308370200200041fc006a41003a0000200041f8006a2010360200200041f4006a2016360200200041f0006a200f360200200041e8006a2001370300200041e4006a2015360200200041e0006a200e360200200041dc006a2014360200200041d8006a200d360200200041d4006a2013360200200041d0006a200c360200200041cc006a2012360200200041c8006a200b360200200041146a200341086a41086a2903003702002000411c6a200341086a41106a290300370200200041246a200341206a2903003702002000412c6a200341086a41206a290300370200200041346a200341306a2903003702002000413c6a200341386a290300370200200041c4006a200341c0006a280200360200200041fd006a200341d8026a41c30010cd051a200041003602000c020b41244101102d000b41c8004101102d000b20034190046a24000b3400200041ac86c20036020420004100360200200041146a4109360200200041106a41b086c200360200200041086a42043702000bcf0101017f0240024002400240024002404101101e2202450d00200241003a000020024101410210222202450d01200241003a000120024102410410222202450d02200241003b000220024104410810222202450d032002410036000420024108411010222202450d042002420037000820024110412010222202450d052002420037001820024200370010200042a08080808004370204200020023602000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b130020004102360204200041e098c2003602000b3101017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242f02e3700000b3101017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242e4003700000b3400200041869ec20036020420004100360200200041146a410f360200200041106a41909ec200360200200041086a42093702000b9a0101017f02400240024002404104101e2202450d002002410036000020024104410810222202450d012002410036000420024108411010222202450d022002420037000820024110412010222202450d0320024100360015200241003a001420024100360010200042a08080809003370204200020023602000f0b41044101102d000b41084101102d000b41104101102d000b41204101102d000be00a03037f027e037f23004190016b22022400200241d0006a4200370300200241c8006a4200370300200241c0006a4200370300200241106a22034200370300200241086a41106a41003602002002412c6a4200370200200241246a428080808010370200200241e0006a4200370300200241e8006a4200370300200241f0006a4200370300200241f8006a41003a0000200242003703382002420037030820024200370358200241003602342002420137021c20024100360288012002420137038001024002400240024002400240024002404104101e2204450d0020024284808080c00037028401200220043602800120044100360000200241386a20024180016a10ca01200329030021052002290308210602400240200228028401220320022802880122046b4110490d0020022802800121030c010b200441106a22072004490d06200341017422042007200420074b1b22044100480d060240024020030d002004101e21030c010b20022802800120032004102221030b2003450d022002200436028401200220033602800120022802880121040b200320046a22032005370008200320063700002002200441106a36028801200228021c210820022002280224220436028c012002418c016a20024180016a106302400240200228028401220720022802880122036b2004490d0020022802800121070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b20022802800120072003102221070b2007450d032002200336028401200220073602800120022802880121030b2002200320046a36028801200720036a2008200410cd051a2002280228210820022002280230220436028c012002418c016a20024180016a106302400240200228028401220720022802880122036b2004490d0020022802800121070c010b200320046a22092003490d06200741017422032009200320094b1b22034100480d060240024020070d002003101e21070c010b20022802800120072003102221070b2007450d042002200336028401200220073602800120022802880121030b2002200320046a36028801200720036a2008200410cd051a200220024180016a36028c01200241d8006a2002418c016a10b901200228023421070240200228028401220320022802880122046b4104490d0020022802800121030c050b200441046a22082004490d05200341017422042008200420084b1b22044100480d050240024020030d002004101e21030c010b20022802800120032004102221030b02402003450d002002200436028401200220033602800120022802880121040c050b20044101102d000b41044101102d000b20044101102d000b20034101102d000b20034101102d000b2002200441046a36028801200320046a200736000020022d0078220441054b0d02024002400240024002400240024020040e06000102030405000b410021030c050b410121030c040b410221030c030b410321030c020b410421030c010b410521030b200220033a008c0102402002280284012002280288012204460d0020022802800121070c020b200441016a22072004490d00200441017422082007200820074b1b22084100480d000240024020040d002008101e21070c010b20022802800120042008102221070b02402007450d002002200836028401200220073602800120022802880121040c020b20084101102d000b1027000b2002200441016a36028801200720046a20033a00000b2000200229038001370200200041086a20024180016a41086a28020036020002402002280220450d00200228021c10200b0240200228022c450d00200228022810200b20024190016a24000b3301017f02404104101e22020d0041044101102d000b20004284808080c000370204200020023602002002418089fa003600000b3201017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024190ce003600000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241e4003600000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024190013600000b3701017f02404110101e22020d0041104101102d000b200242003700082002420a370000200042908080808002370204200020023602000b3701017f02404110101e22020d0041104101102d000b2002420037000820024205370000200042908080808002370204200020023602000b3801017f02404110101e22020d0041104101102d000b20024200370008200242e400370000200042908080808002370204200020023602000b3001017f02404104101e22020d0041044101102d000b20004284808080c000370204200020023602002002413c3600000b13002000410536020420004188b8c2003602000bb40a03077f047e037f230041b0016b2202240041002103200241003a00a8012001280204415e6a21040240024002400240024002400240024003402004415e460d0120024188016a20036a200128020022052d00003a00002001200441216a3602042001200541016a3602002002200341016a22063a00a8012004417f6a21042006210320064120470d000b200241286a41086a20024188016a41086a290300370300200241286a41106a20024188016a41106a290300370300200241286a41186a20024188016a41186a290300370300200220022903880137032841002103200241003a00a801200441226a2107417f2108034020072003460d0220024188016a20036a200520036a220641016a2d00003a00002001200420036b41216a3602042001200641026a3602002002200341016a22063a00a8012008417f6a21082006210320064120470d000b200241c8006a41086a20024188016a41086a290300370300200241c8006a41106a20024188016a41106a290300370300200241c8006a41186a20024188016a41186a2903003703002002200229038801370348200420066b220441226a4110490d06200520066a220341096a2900002109200341016a290000210a2001200441126a22053602042001200341116a220836020020054110490d06200341196a290000210b2008290000210c2001200441026a3602042001200341216a22053602002007200641206a460d0520052d000021062001200441016a3602042001200341226a360200200641014b0d054100210520060e020302030b0240200341ff0171450d00200241003a00a8010b200041023a00600c060b0240200341ff0171450d00200241003a00a8010b200041023a00600c050b41002106200241003a00a80103402004417f460d0220024188016a20066a200320066a220541226a2d00003a0000200120043602042001200541236a3602002002200641016a22053a00a8012004417f6a21042005210620054120470d000b200241e8006a41186a20024188016a41186a290300370300200241e8006a41106a20024188016a41106a290300370300200241e8006a41086a20024188016a41086a2903003703002002200229038801370368410121050b200241086a41186a2206200241e8006a41186a2204290300370300200241086a41106a2208200241e8006a41106a2201290300370300200241086a41086a2207200241e8006a41086a220329030037030020024188016a41086a220d200241286a41086a29030037030020024188016a41106a220e200241286a41106a29030037030020024188016a41186a220f200241286a41186a2903003703002002200229036837030820022002290328370388012004200241c8006a41186a2903003703002001200241c8006a41106a2903003703002003200241c8006a41086a29030037030020022002290348370368200041186a200b3703002000200c370310200020093703082000200a3703002000200229038801370320200041286a200d290300370300200041306a200e290300370300200041386a200f29030037030020002002290368370340200041c8006a2003290300370300200041d0006a2001290300370300200041d8006a2004290300370300200020053a0060200041f9006a2006290300370000200041f1006a2008290300370000200041e9006a20072903003700002000200229030837006120004184016a200241cb006a28000036000020004181016a20022800483600000c030b200641ff0171450d00200241003a00a8010b200041023a00600c010b200041023a00600b200241b0016a24000b3400200041eac0c20036020420004100360200200041146a4108360200200041106a41f0c0c200360200200041086a42063702000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241ac023600000bc00203047f017e037f230041306b22012400200141186a41086a220242003703002001420037031841f8fac1004115200141186a1000200141086a2002290300370300200120012903183703002001410036021820014110200141186a100321020240024020012802182203417f460d002002450d002001200336021420012002360210200141186a200141106a109a03024020012802182204450d00200129021c21052003450d02200210200c020b41ceb8c4004133200141286a41fcbfc4004184b9c400102e000b42002105410121040b2005422088a721032005a72106200041ff017121074100210202400340024020032002470d00410021080c020b0240200420026a2d000022004104470d00410021080c020b41012108200241016a210220002007470d000b0b02402006450d00200410200b200141306a240020080bf90301047f230041d0016b220224000240024002404111101e2203450d0041002104200341106a41002d009dfb413a0000200341086a4100290095fb413700002003410029008dfb413700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a007020034111412210222203450d01200320043a0011200241f0006a41186a22044200370300200241f0006a41106a22014200370300200241f0006a41086a220542003703002002420037037020034112200241f0006a1001200241186a2004290300370300200241106a2001290300370300200241086a200529030037030020022002290370370300200310202002410036027020024120200241f0006a100321030240024020022802702204417f460d002003450d00200220043602cc01200220033602c801200241f0006a200241c8016a10990320022903704201510d04200241206a200241f0006a41086a41d00010cd051a02402004450d00200310200b200241f0006a200241206a41d00010cd051a200041086a200241f0006a41d00010cd051a410021030c010b20004198d2c200360204200041086a4116360200410121030b20002003360200200241d0016a24000f0b41114101102d000b41224101102d000b41ceb8c4004133200241206a41fcbfc4004184b9c400102e000bff0202057f027e230041d0006b2203240002400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370224200320043602202000200341206a10ca012003280228210420032802202100200341306a41186a22054200370300200341306a41106a22064200370300200341306a41086a220742003703002003420037033020002004200341306a1001200341186a2005290300370300200341106a2006290300370300200341086a20072903003703002003200329033037030002402003280224450d00200328022010200b2003410036023020034120200341306a1003210420032802302200417f460d022004450d0220004110490d01200441086a290000210820042900002109200410200c030b41144101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002109420021080b200341d0006a2400200920015a200820025a20082002511b0b9f0702067f067e230041d0006b2204240002400240024002404114101e2205450d00200541002900ce8a45370000200541106a41002800de8a45360000200541086a41002900d68a4537000020044294808080c002370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210a2005290000210b200510200c030b41144101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b4200210b4200210a0b2001200b2002200b200b200256200a200356200a2003511b22051b220c7d200a2003200a20051b220d7d200b200c54ad7d109303024002402002200c7d220a2003200d7d2002200c54ad7d220e8450450d004200210b4200210e0c010b02400240024002404118101e2205450d00200541002900e28a45370000200541106a41002900f28a45370000200541086a41002900ea8a45370000200442988080808003370224200420053602202001200441206a10ca012004280228210520042802202106200441306a41186a22074200370300200441306a41106a22084200370300200441306a41086a220942003703002004420037033020062005200441306a1001200441186a2007290300370300200441106a2008290300370300200441086a20092903003703002004200429033037030002402004280224450d00200428022010200b2004410036023020044120200441306a1003210520042802302206417f460d022005450d0220064110490d01200541086a290000210320052900002102200510200c030b41184101102d000b41ceb8c4004133200441306a41fcbfc4004184b9c400102e000b42002102420021030b20012002200a20022002200a562003200e562003200e511b22051b220b7d2003200e200320051b220f7d2002200b54ad7d109403200e200f7d200a200b54ad7d210e200f200d7c200b200c7c2202200b54ad7c2103200a200b7d210b0b2000200b37031020002002370300200041186a200e37030020002003370308200441d0006a24000bcf0a07037f017e047f057e017f047e027f230022062107200641c0006b416071220624001079210820062003370310200620023703082006200436021842012102200642013703002006200028000036021c20003500042103200641206a200110d10420032005ad42ff01834220868421092006280220210a2006280224210b0240024002400240024002400240024020062802282205450d00200a200541057422046a210c200641346a210d2006290318210e2006290310210f2006290308211020062903002103200a21050340200541086a2903002102200541106a290300211120052903002112200641206a41186a200541186a290300370300200641206a41106a22132011370300200641206a41086a2002370300200620123703204200210202400240200d2000460d00200d2900002000290000510d0002400240200628023020084b0d00420021110c010b20132903002114200629032821152006290320211642012111200629033821170b200321020c010b200921172003211120102116200f2115200e21140b20114201510d02200541206a210520022103200441606a22040d000b20062002370300200620103703082006200f3703102006200e3703180b410021040240200b450d00200a10200b41002118410821130c010b20062002370300200620103703082006200f3703102006200e3703184120101e2213450d05201320173703182013201637030020132015370308201341106a20143703000240024020044120470d0041012104410121180c010b200541206a2105200641346a211920022103410121044101211803400240024020192000460d00200321110340200641206a41186a200541186a290300370300200641206a41106a220d200541106a290300370300200641206a41086a200541086a290300370300200620052903003703200240024020192900002000290000510d000240200628023020084b0d0020112103420021110c020b200d290300211620062903282117200629032021122006290338211520112103420121110c010b42002102200642003703004200210320102112200f2117200e2116200921150b024020114201510d0020032111200c200541206a2205470d010c050b0b200541206a21050c010b024003402006420037030020034201510d0142002103200c200541206a2205470d000b420021020c030b200541206a2105420021024200210320102112200f2117200e2116200921150b024020182004470d00200441016a220d2004490d0420044101742218200d2018200d4b1b221841ffffff3f712018470d042018410574220d4100480d040240024020040d00200d101e21130c010b20132004410574200d102221130b2013450d070b201320044105746a220d2017370308200d2012370300200d41106a2016370300200d41186a2015370300200441016a21042005200c470d000b0b200b450d00200a10200b20024201520d02200641206a41106a22002006410872220541106a290300370300200641206a41086a220d200541086a2903003703002006200529030037032020042018470d01200441016a22052004490d00200441017422082005200820054b1b221841ffffff3f712018470d00201841057422054100480d000240024020040d002005101e21130c010b201320044105742005102221130b20130d0120054108102d000b1027000b201320044105746a22052006290320370300200541106a2000290300370300200541086a200d290300370300200541186a2009370300200441016a21040b2006200436022820062018360224200620133602202001200641206a10d204200724000f0b200d4108102d000b41204108102d000bf31101057f230041a0016b2206240010792107200642f2deb1abf6eb9cbaeb003703800120064180016a200020042005200720036a411610e103200641186a200041186a290000370300200641106a200041106a290000370300200641086a200041086a2900003703002006200029000037030020064180016a20011081032006280284012103200620062802800122002006280288014105746a36028c012006200036028801200620033602840120062000360280012006200636029001200641206a20064180016a10e30320062802202108200628022421092006280228210702400240024002400240024002400240024002404117101e2200450d00410021032000410f6a41002900d5f841370000200041086a41002900cef841370000200041002900c6f8413700000240024002400240200141ff01710e0403000102030b410121030c020b410221030c010b410321030b200620033a00800120004117412e10222200450d01200020033a001720064180016a41186a2203420037030020064180016a41106a2201420037030020064180016a41086a220a420037030020064200370380012000411820064180016a1001200641d0006a41186a2003290300370300200641d0006a41106a2001290300370300200641d0006a41086a200a2903003703002006200629038001370350200010202006410036028801200642013703800120062007360270200641f0006a20064180016a106302402007450d0020074105742103200821000340200020064180016a10ca01200041206a2100200341606a22030d000b0b2006280284012100200641d0006a41202006280280012203200628028801100502402000450d00200310200b02402009450d00200810200b411b101e2200450d02200041176a41002800b0d042360000200041106a41002900a9d042370000200041086a41002900a1d04237000020004100290099d0423700002000411b413610222200450d032000200237001b4200210420064180016a41186a2203420037030020064180016a41106a2207420037030020064180016a41086a2201420037030020064200370380012000412320064180016a1001200641d0006a41186a2003290300370300200641d0006a41106a2007290300370300200641d0006a41086a20012903003703002006200629038001370350200010202006410036028001200641d0006a412020064180016a10032103024002402006280280012207417f470d00410121000c010b024020030d00410121000c010b200620073602742006200336027020064180016a200641f0006a10e3012006280280012200450d0520062902840121042007450d00200310200b20062000360288012006200036028001200620043e028401200620002004422088a74105746a36028c012006200636029001200641306a20064180016a10e303200628023021072006280234210120062802382103411b101e2200450d05200041176a41002800b0d042360000200041106a41002900a9d042370000200041086a41002900a1d04237000020004100290099d0423700002000411b413610222200450d062000200237001b20064180016a41186a2208420037030020064180016a41106a2209420037030020064180016a41086a220a420037030020064200370380012000412320064180016a1001200641d0006a41186a2008290300370300200641d0006a41106a2009290300370300200641d0006a41086a200a2903003703002006200629038001370350200010202006410036028801200642013703800120062003360270200641f0006a20064180016a106302402003450d0020034105742103200721000340200020064180016a10ca01200041206a2100200341606a22030d000b0b2006280284012100200641d0006a41202006280280012203200628028801100502402000450d00200310200b02402001450d00200710200b20064180016a41086a22004200370300200642003703800141b4d0c200411620064180016a1000200641d0006a41086a200029030037030020062006290380013703502006410036028001200641d0006a411020064180016a100321032006280280012207417f460d082003450d08200620073602742006200336027020064180016a200641f0006a10e3012006280280012200450d0720062902840121042007450d09200310200c090b41174101102d000b412e4101102d000b411b4101102d000b41364101102d000b41ceb8c4004133200641c0006a41fcbfc4004184b9c400102e000b411b4101102d000b41364101102d000b41ceb8c4004133200641c0006a41fcbfc4004184b9c400102e000b41012100420021040b20062000360288012006200036028001200620043e028401200620002004422088a74105746a36028c012006200636029001200641c0006a20064180016a10e30320062802402107200628024421012006280248210020064180016a41086a22034200370300200642003703800141b4d0c200411620064180016a1000200641d0006a41086a200329030037030020062006290380013703502006410036028801200642013703800120062000360270200641f0006a20064180016a106302402000450d0020004105742103200721000340200020064180016a10ca01200041206a2100200341606a22030d000b0b2006280284012100200641d0006a41102006280280012203200628028801100502402000450d00200310200b02402001450d00200710200b02404117101e2200450d00200041002900aff8413700002000410f6a41002900bef841370000200041086a41002900b7f84137000020064297808080f002370274200620003602702006200641f0006a10ca01200628027821002006280270210320064180016a41186a2207420037030020064180016a41106a2201420037030020064180016a41086a2208420037030020064200370380012003200020064180016a1001200641d0006a41186a2007290300370300200641d0006a41106a2001290300370300200641d0006a41086a2008290300370300200620062903800137035002402006280274450d00200628027010200b200641d0006a412010042006108c02200641a0016a24000f0b41174101102d000ba60705067f037e067f017e027f23004180016b220224000240024002400240200141086a220328020022042001410c6a2802002205460d002001280210210603402003200441206a2207360200200441086a2900002108200441106a29000021092004290000210a200241e0006a41186a200441186a290000370300200241e0006a41106a2009370300200241e0006a41086a20083703002002200a37036002402006200241e0006a46220b0d00200241e0006a2006412010cf050d030b2007210420052007470d000b0b20004100360208200042013702002001280204450d01200128020010200c010b200241c0006a41086a2207200241e0006a41086a290300370300200241c0006a41106a2203200241e0006a41106a290300370300200241c0006a41186a220c200241e0006a41186a290300370300200220022903602208370300200220083703404120101e220d450d01200d2002290340370000200d41186a200c290300370000200d41106a2003290300370000200d41086a20072903003700002001280204210e2001280200210f4101210102400240200541606a2004470d004101210c0c010b0240200b450d004101210c0c010b200441206a2103200541606a2110410121014101210c03402003210402400340200241e0006a41186a2207200441186a290000370300200241e0006a41106a2203200441106a290000370300200241e0006a41086a220b200441086a29000037030020022004290000370360200241e0006a2006412010cf050d012005200441206a2204470d000c030b0b200241c0006a41086a200b2903002208370300200241c0006a41106a20032903002209370300200241c0006a41186a2007290300220a370300200220022903602211370340200241186a220b200a370300200241106a22122009370300200241086a22132008370300200220113703000240200c2001470d000240200141016a22072001490d00200141017422032007200320074b1b220c41ffffff3f71200c470d00200c41057422074100480d000240024020010d002007101e210d0c010b200d200141057420071022210d0b200d0d0120074101102d000b1027000b200441206a2103200d20014105746a22072002290300370000200741186a200b290300370000200741106a2012290300370000200741086a2013290300370000200141016a210120102004470d000b0b0240200e450d00200f10200b200020013602082000200c3602042000200d3602000b20024180016a24000f0b41204101102d000b130020004108360204200041b0d2c2003602000b800201077f230041106b2202240002400240024020012802042203450d00200128020022042d0000210520012003417f6a22063602042001200441016a3602002006450d0020042d0001210720012003417e6a22063602042001200441026a3602002006450d0020042d0002210820012003417d6a22063602042001200441036a3602002006450d0020042d0003210620012003417c6a3602042001200441046a3602002002200110b70120022802000d01200041003602040c020b200041003602040c010b200020022903003702042000410c6a200241086a280200360200200020074108742005722008411074722006411874723602000b200241106a24000ba00101047f230041106b2202240020024100360208200242013703002000280200210320022000280208220436020c2000410c6a21052002410c6a2002106302402004450d002004410574210003402003200210ca01200341206a2103200041606a22000d000b0b2005200210e7032002280204210320012802002001280204200228020022002002280208100502402003450d00200010200b200241106a24000bde0501037f02400240024002400240024020002d00004101460d000240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b02400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c010b20044101102d000b200141086a200241016a360200200320026a41013a0000200041016a200110ca010c010b200141086a200241016a360200200320026a41003a00000b024020002d00214101460d000240200141046a280200200141086a2802002200460d00200128020021020c040b200041016a22022000490d01200041017422032002200320024b1b22034100480d010240024020000d002003101e21020c010b200128020020002003102221020b02402002450d0020012002360200200141046a2003360200200141086a28020021000c040b20034101102d000b0240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d00200241017422042003200420034b1b22044100480d000240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b1027000b200141086a200241016a360200200320026a41013a0000200041226a200110ca010f0b200141086a200041016a360200200220006a41003a00000b850505027f017e0a7f037e037f230041206b2202240002400240024020012802082203ad42d0007e2204422088a70d002004a72205417f4c0d00200128020021060240024020050d00410821070c010b2005101e2207450d020b0240024020030d00410021080c010b2006200341d0006c6a2109410021082007210a0340200241186a220b200641186a290300370300200241106a220c200641106a290300370300200241086a220d200641086a29030037030020022006290300370300200641c8006a280200220ead42307e2204422088a70d022004a72205417f4c0d02200641386a2903002104200641306a290300210f200641286a2903002110200641c0006a2802002101200629032021110240024020050d00410821120c010b2005101e2212450d050b200641d0006a210602400240200e0d00410021130c010b2001200e41306c6a211441002113201221050340200520012903003703002005200141086a290300370308200541106a200141106a290300370300200541186a200141186a290300370300200541206a200141206a290300370300200541286a200141286a290300370300200541306a2105201341016a2113200141306a22012014470d000b0b200a2011370320200a2002290300370300200a41386a2004370300200a41306a200f370300200a41286a2010370300200a41c8006a2013360200200a41c4006a200e360200200a41c0006a2012360200200a41186a200b290300370300200a41106a200c290300370300200a41086a200d290300370300200841016a2108200a41d0006a210a20062009470d000b0b200020083602082000200336020420002007360200200241206a24000f0b102c000b20054108102d000b20054108102d000bdd0704067f017e097f027e230041f0006b22032400200341206a2001200228020c220411030002400240024002402003280220450d00200341c8006a41106a200341206a41106a290300370300200341c8006a41086a200341206a41086a290300370300200341c8006a41186a200341206a41186a290300370300200341c8006a41206a200341206a41206a280200360200200341086a200341d4006a290200370300200341106a200341dc006a290200370300200341186a200341e4006a290200370300200320032903203703482003200329024c370300200341c8006a200120022802102205110300417f2003280248220641016a220720072006491b2208ad42287e2209422088a70d022009a72206417f4c0d024108210a02402006450d002006101e220a450d040b200a2003290300370300200a4201370320200a41186a200341186a220b290300370300200a41106a200341106a220c290300370300200a41086a200341086a290300370300200341206a20012004110300024002400240024020032802200d004101210d0c010b200341c8006a410472210641c800210e4101210d0340200341c8006a41206a200341206a41206a280200360200200341c8006a41186a220f200341206a41186a290300370300200341c8006a41106a2210200341206a41106a290300370300200341c8006a41086a2211200341206a41086a29030037030020032003290320370348200341086a2207200641086a290200370300200c200641106a290200370300200b200641186a29020037030020032006290200370300200f200b2903003703002010200c29030037030020112007290300370300200320032903003703480240200d2008470d00200341206a200120051103002008417f2003280220220741016a221220122007491b6a22072008490d04200841017422122007201220074b1b2207ad42287e2209422088a70d042009a722124100480d040240024020080d002012101e210a0c010b200a200841286c20121022210a0b200a450d03200721080b200a200e6a221241606a220720032903483703002011290300210920102903002113200f290300211420124201370300200741186a2014370300200741106a2013370300200741086a2009370300200341206a20012004110300200e41286a210e200d41016a210d20032802200d000b0b2001200228020011020002402002280204450d00200110200b2000200d360208200020083602042000200a3602000c030b20124108102d000b1027000b2000410036020820004208370200200120022802001102002002280204450d00200110200b200341f0006a24000f0b102c000b20064108102d000bac0705077f037e097f017e017f23004180016b22022400024002400240200141086a220328020022042001410c6a2802002205460d0020012802102106200241f4006a2107034020032004220841206a2204360200200841086a2903002109200841106a290300210a2008290300210b200241e0006a41186a200841186a290300370300200241e0006a41106a200a370300200241e0006a41086a20093703002002200b3703600240200aa720062802004d0d002001280214220c2007460d002007290000200c290000520d030b20052004470d000b0b20004100360208200042083702002001280204450d01200128020010200c010b200241086a2204200241e0006a41086a290300370300200241106a2203200241e0006a41106a290300370300200241186a2207200241e0006a41186a29030037030020022002290360220a3703202002200a3703000240024002404120101e220d450d00200d2002290300370300200d41186a2007290300370300200d41106a2003290300370300200d41086a20042903003703002001280204210e2001280200210f200541606a2008460d01200841206a2110200541606a2111200241f4006a21014101211241012113200d21140340200c2001460d022010210802400340200241e0006a41186a2204200841186a290300370300200241e0006a41106a2203200841106a290300220a370300200241e0006a41086a2207200841086a290300370300200220082903003703600240200aa720062802004d0d002001290000200c290000520d020b2005200841206a2208470d000c050b0b200241206a41086a2007290300220a370300200241206a41106a20032903002209370300200241206a41186a2004290300220b3703002002200229036022153703202004200b370300200320093703002007200a37030020022015370360024020132012470d000240201241016a22132012490d00201241017422102013201020134b1b221341ffffff3f712013470d00201341057422104100480d000240024020120d002010101e21140c010b201420124105742010102221140b20140d0120104108102d000b1027000b200841206a2110201420124105746a22162002290360370300201641186a2004290300370300201641106a2003290300370300201641086a2007290300370300201241016a211220112008470d000c030b0b41204108102d000b4101211241012113200d21140b0240200e450d00200f10200b2000201236020820002013360204200020143602000b20024180016a24000be70101057f230041206b2202240002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200137001f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411f4101102d000b413e4101102d000bf80101057f230041206b22022400024002404126101e2203450d002003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d0120032001370026200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412e20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41264101102d000b41cc004101102d000bc00301067f230041306b22022400024002404125101e2203450d002003411d6a41002900daee42370000200341186a41002900d5ee42370000200341106a41002900cdee42370000200341086a41002900c5ee42370000200341002900bdee42370000200242a5808080d0043702042002200336020020012802002104200220012802082201360210200241106a20021063024020022802042205200228020822066b2001490d00200228020021030c020b0240200620016a22032006490d00200541017422072003200720034b1b22074100480d000240024020050d002007101e21030c010b200228020020052007102221030b02402003450d002002200736020420022003360200200721050c030b20074101102d000b1027000b41254101102d000b2002200620016a2207360208200320066a2004200110cd051a200241106a41186a22014200370300200241106a41106a22064200370300200241106a41086a220442003703002002420037031020032007200241106a1001200041186a2001290300370000200041106a2006290300370000200041086a20042903003700002000200229031037000002402005450d00200310200b200241306a24000be70101057f230041206b2202240002400240411f101e2203450d00200341176a41002900a6ef42370000200341106a410029009fef42370000200341086a4100290097ef423700002003410029008fef423700002003411f413e10222203450d012003200137001f200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003412720021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b411f4101102d000b413e4101102d000b860e04077f037e067f047e230041f0006b2202240041002103200241003a004820012802042104417f210502400240024002400240024002400240024002400240034020042003460d01200241286a20036a200128020022062d00003a00002001200420056a3602042001200641016a3602002002200341016a22073a00482005417f6a21052007210320074120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a2903003703002002200229032837030820042007460d0420062d000121032001200420056a22053602042001200641026a2208360200200341014b0d0420030e020201020b0240200341ff0171450d00200241003a00480b200042023703000c090b20054108490d022006290002210920012006410a6a22083602002001200420076b41776a22053602044201210a0c010b4200210a0b024002400240024002402005450d0020082d0000210320012005417f6a22073602042001200841016a2204360200200341014b0d00410221060240024020030e020100010b20074108490d012008290001210b2001200541776a22033602042001200841096a3602002003450d0120082d000921032001200541766a220c36020420012008410a6a220d360200200341014b0d01410021060240024020030e020100010b200c4104490d02200828000a210e2001200541726a220c36020420012008410e6a220d360200410121060b200c450d01200d2d000021032001200c417f6a22073602042001200d41016a2204360200200341014b0d014100210f024020030e020100010b20074104490d01200d28000121102001200c417b6a22073602042001200d41056a22043602004101210f0b2007450d0a20042d0000210320012007417f6a22053602042001200441016a360200200341024b0d0a410021080240024020030e03060001060b2005450d0220042d0001210320012007417e6a22053602042001200441026a360200200341014b0d02410021080240024020030e020100010b410121080b20054104490d072004280002211120012007417a6a3602042001200441066a360200200241e0006a200110b70120022802600d03200241023a00380c0b0b0240024002402005450d0020042d0001210320012007417e6a22053602042001200441026a360200200341014b0d004100210c0240024020030e020100010b4101210c0b20054104490d012004280002211120012007417a6a3602042001200441066a360200200241e0006a200110b70120022802600d02200241023a00380c0d0b200241023a00380c0c0b200241023a00380c0b0b200241346a200241e8006a280200360200410221082002413b6a200241cd006a41026a2d00003a0000200220113602282002200229036037022c2002200c3a0038200220022f004d3b0039200241286a21030c030b200042023703000c0a0b200241023a00380c080b200241346a200241e8006a2802003602002002413b6a200241cf006a2d00003a0000200220113602282002200229036037022c200220083a0038200220022f004d3b003941012108200241286a21030b2003410c6a2902002112200341086a280200210c2003280204210d200128020421050b20054108490d022001280200220329000021132001200541786a22073602042001200341086a36020020074108490d02200329000821142001200541706a22073602042001200341106a220336020020074104490d022003280000210420012005416c6a22073602042001200341046a36020020074108490d030c040b200042023703000c050b200241023a00380c030b200042023703000240200841014b0d00024020080e020500050b200c450d04200d10200c040b200c450d03200d10200c030b200042023703000240200841014b0d00024020080e020400040b200c450d03200d10200c030b200c450d02200d10200c020b200329000421152001200541646a36020420012003410c6a360200200241286a41086a2203200241086a41086a290300370300200241286a41106a2201200241086a41106a290300370300200241286a41186a2205200241086a41186a29030037030020022002290308370328200041d8006a2012370300200041d4006a200c360200200041d0006a200d360200200041cc006a2011360200200041c8006a2008360200200041c0006a2015370300200041386a2004360200200041306a2014370300200041286a201337030020002010360224200041206a200f3602002000200e36021c200041186a2006360200200041106a200b370300200020093703082000200a370300200041e0006a2002290328370300200041e8006a2003290300370300200041f0006a2001290300370300200041f8006a20052903003703000c010b200042023703000b200241f0006a24000b860504077f027e017f047e41002102230041d0006b220341003a004820012802042104417f210502400240024002400240034020042002460d01200341286a20026a200128020022062d00003a00002001200420056a3602042001200641016a3602002003200241016a22073a00482005417f6a21052007210220074120470d000b200341086a41186a200341286a41186a290300370300200341086a41106a200341286a41106a290300370300200341086a41086a200341286a41086a2903003703002003200329032837030820042007460d0420062d000121022001200420056a22053602042001200641026a2208360200200241014b0d0420020e020201020b200241ff0171450d03200341003a00480c030b20054108490d02410a21022006290002210920012006410a6a22083602002001200420076b41776a22053602044201210a0c010b4200210a410221020b20054104490d002008280000210420012005417c6a22073602042001200620026a220241046a3602002007450d0020022d0004210720012005417b6a22063602042001200241056a360200200741014b0d00410021080240024020070e020100010b20064104490d012002280005210b2001200541776a3602042001200241096a360200410121080b200341286a41186a200341086a41186a290300220c370300200341286a41106a200341086a41106a290300220d370300200341286a41086a200341086a41086a290300220e37030020032003290308220f370328200041186a200b36020020002008360214200041106a2004360200200020093703082000200a3703002000200f37021c200041246a200e3702002000412c6a200d370200200041346a200c3702000f0b200042023703000bb71109087f017e027f017e027f017e047f017e0b7f230041d0006b2202240002400240024020012802042203450d00200128020022042d0000210520012003417f6a3602042001200441016a360200200541014b0d00410021030240024020050e020100010b410121030b200241286a200110b701200228022822050d01200041023a00500c020b200041023a00500c010b200228022c2104024020012802042206450d00200241306a2802002107200128020022082d0000210920012006417f6a22063602042001200841016a360200200941014b0d00410021080240024020090e020100010b200241286a200110b70120022802282208450d01200229022c210a200128020421060b200aa7210902402006450d002001280200220b2d0000210c20012006417f6a22063602042001200b41016a360200200c41014b0d004100210b02400240200c0e020100010b200241286a200110b7012002280228220b450d01200229022c210d200128020421060b200da7210c02402006450d002001280200220e2d0000210f20012006417f6a22063602042001200e41016a360200200f41014b0d004100210e02400240200f0e020100010b200241286a200110b7012002280228220e450d01200229022c2110200128020421060b2010a7211102402006450d00200128020022122d0000210f20012006417f6a22133602042001201241016a360200200f41014b0d004100211402400240200f0e020100010b200241286a200110b70120022802282214450d01200229022c2115200128020421130b2015a72116024002402013450d00200128020022172d0000211820012013417f6a22063602042001201741016a36020020184103490d010b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d05200510200c050b024002400240024002400240024002400240024020064108490d00200a422088a72119200d422088a7211a2010422088a7211b2015422088a7211c2017290001210a2001201341776a221d3602042001201741096a36020041002106200241003a00484176210f0340201d2006460d02200241286a20066a201720066a221241096a2d00003a000020012013200f6a36020420012012410a6a3602002002200641016a22123a0048200f417f6a210f2012210620124120470d000b200241086a41186a200241286a41186a290300370300200241086a41106a200241286a41106a290300370300200241086a41086a200241286a41086a29030037030020022002290328370308201341776a2012460d04201720126a220641096a2d0000211720012013200f6a36020420012006410a6a360200201741014b0d04201341766a210f4100211d20170e020302030b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d0d200510200c0d0b0240200641ff0171450d00200241003a00480b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d0c200510200c0c0b4101211d0b200f2012460d032006410a6a2d0000210f2001201320126b221341756a221236020420012006410b6a360200200f41014b0d0341002117200f0e020201020b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d09200510200c090b410121170b20124104490d022006410b6a28000021122001201341716a220f36020420012006410f6a221e360200200f4108490d01200241286a41086a220f200241086a41086a290300370300200241286a41106a221f200241086a41106a290300370300200241286a41186a2220200241086a41186a290300370300201e290000210d2001201341696a3602042001200641176a36020020022002290308370328200020183a0051200020033a00502000201236024c2000201c36024820002016360244200020143602402000201b36023c200020113602382000200e3602342000201a3602302000200c36022c2000200b36022820002019360224200020093602202000200836021c2000200736021820002004360214200020053602102000200d3703082000200a370300200041f2006a201d3a0000200041f3006a20173a0000200041ea006a2020290300370100200041e2006a201f290300370100200041da006a200f290300370100200041d2006a20022903283701000c070b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d06200510200c060b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d05200510200c050b200041023a005002402014450d002016450d00201410200b0240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d04200510200c040b200041023a00500240200e450d002011450d00200e10200b0240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d03200510200c030b200041023a00500240200b450d00200c450d00200b10200b02402008450d002009450d00200810200b2004450d02200510200c020b200041023a005002402008450d002009450d00200810200b2004450d01200510200c010b200041023a00502004450d00200510200b200241d0006a24000bea0302067f077e41002102230041d0006b220341003a004820012802042104417f210502400240034020042002460d01200341286a20026a200128020022062d00003a00002001200420056a3602042001200641016a3602002003200241016a22073a00482005417f6a21052007210220074120470d000b200341086a41186a200341286a41186a290300370300200341086a41106a200341286a41106a290300370300200341086a41086a200341286a41086a29030037030020032003290328370308200420076b22024108490d01200629000121082001200641096a3602002001200241786a220536020420054108490d01200629000921092001200641116a3602002001200241706a220536020420054108490d012006290011210a2001200641196a3602002001200241686a360204200341286a41086a200341086a41086a290300220b370300200341286a41106a200341086a41106a290300220c370300200341286a41186a200341086a41186a290300220d37030020032003290308220e370328200041186a200a370300200041106a200937030020002008370308200041206a200e370300200041286a200b370300200041306a200c370300200041386a200d370300200042003703000f0b200241ff0171450d00200341003a00480b200042013703000bc32104047f017e1c7f017e23004190046b2202240020022001370308200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a220542003703002002420037037041aeefc2004127200241f0006a1001200241b0036a41186a2003290300370300200241b0036a41106a2004290300370300200241b0036a41086a2005290300370300200220022903703703b00320024100360270200241b0036a4120200241f0006a1003210302400240024020022802702204417f460d002003450d00024020044108490d002003290000210120031020200241106a200110ee0320024100360270200241106a4120200241f0006a10032103024020022802702204417f460d0020030d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000b200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a220542003703002002420037037041aeefc2004127200241f0006a1001200241b0036a41186a2003290300370300200241b0036a41106a2004290300370300200241b0036a41086a2005290300370300200220022903703703b00320022001370370200241b0036a4120200241f0006a4108100520004200370310200042003703000c010b20022004360284032002200336028003200241f0006a20024180036a10ef0302400240200229037022064202510d00200241b0036a41386a2207200241b0016a290300370300200241b0036a41306a2208200241f0006a41386a290300370300200241b0036a41286a2209200241f0006a41306a290300370300200241b0036a41206a2205200241f0006a41286a290300370300200241b0036a41186a220a200241f0006a41206a290300370300200241b0036a41106a220b200241f0006a41186a290300370300200241b0036a41086a220c200241f0006a41106a290300370300200220022903783703b003200241b8016a280200210d200241c0016a280200210e20022802bc01210f20022802c401211020024188036a41206a2211200241e8016a29030037030020024188036a41186a2212200241e0016a29030037030020024188036a41106a2213200241d8016a29030037030020024188036a41086a2214200241d0016a2903003703002002200241c8016a29030037038803200241f0036a20024180036a10930120022903f0034202520d010240200d41014b0d00200d0e020100010b2010450d00200e10200b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000b200241c0026a41386a22152007290300370300200241c0026a41306a22072008290300370300200241c0026a41286a22082009290300370300200241c0026a41206a22092005290300370300200241c0026a41186a2216200a290300370300200241c0026a41106a2217200b290300370300200241c0026a41086a2218200c29030037030020024198026a41086a2219201429030037030020024198026a41106a221a201329030037030020024198026a41186a221b201229030037030020024198026a41206a221c2011290300370300200220022903b0033703c002200220022903880337039802200241f8016a41086a2211200241f0036a41086a290300370300200241f8016a41106a221d200241f0036a41106a290300370300200241f8016a41186a221e200241f0036a41186a290300370300200241306a41086a2018290300370300200241306a41106a2017290300370300200241306a41186a2016290300370300200241306a41206a2009290300370300200241306a41286a2008290300370300200241306a41306a2007290300370300200241306a41386a2015290300370300200220022903f0033703f801200220022903c0023703302005201c290300370300200a201b290300370300200b201a290300370300200c20192903003703002012201e2903003703002013201d2903003703002014201129030037030020022002290398023703b003200220022903f8013703880302402004450d00200310200b200241f0006a41386a2203200241306a41386a290300370300200241f0006a41306a2204200241306a41306a290300370300200241f0006a41286a2205200241306a41286a290300370300200241f0006a41206a220a200241306a41206a220b290300370300200241f0006a41186a220c200241306a41186a2212290300370300200241f0006a41106a2213200241306a41106a2214290300370300200241f0006a41086a2217200241306a41086a2207290300370300200241c0026a41086a2218200241b0036a41086a2208290300370300200241c0026a41106a2219200241b0036a41106a2209290300370300200241c0026a41186a221a200241b0036a41186a2211290300370300200241c0026a41206a221b200241b0036a41206a221529030037030020022002290330370370200220022903b0033703c00220024198026a41186a221c20024188036a41186a221629030037030020024198026a41106a221d20024188036a41106a221e29030037030020024198026a41086a221f20024188036a41086a222029030037030020022002290388033703980220082017290300370300200920132903003703002011200c2903003703002015200a290300370300200241b0036a41286a22172005290300370300200241b0036a41306a22212004290300370300200241b0036a41386a22222003290300370300200220022903703703b00320072018290300370300201420192903003703002012201a290300370300200b201b290300370300200220022903c0023703302016201c290300370300201e201d29030022233703002020201f290300370300200220022903980237038803200241c4016a2010360200200241c0016a200e360200200241bc016a200f3602002002200637037020132008290300370300200c2009290300370300200a2011290300370300200520152903003703002004201729030037030020032021290300370300200241b0016a20222903003703002002200d3602b801200220022903b003370378200241f4016a2016410020234201511b360200200241e8016a200b290300370300200241e0016a2012290300370300200241d8016a2014290300370300200241c8016a2002290330370300200220072903003703d0012002200241086a3602f001200241003602c802200242013703c002200241d0016a200241c0026a10ca0120022802c402210420022802c80221030240024002400240024002400240024020022903704201510d00024020042003460d0020022802c00221040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00220032005102221040b02402004450d00200220053602c402200220043602c00220022802c80221030c020b20054101102d000b024002400240024020042003460d0020022802c00221040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802c00220032005102221040b2004450d01200220053602c402200220043602c00220022802c80221030b2002200341016a3602c802200420036a41013a000020022903782106024020022802c402220420022802c80222036b4108490d0020022802c00221040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b20022802c00220042003102221040b02402004450d00200220033602c402200220043602c00220022802c80221030c020b20034101102d000b20054101102d000b2002200341086a3602c802200420036a20063700000c010b2002200341016a3602c802200420036a41003a00000b02400240024020024188016a2802004102470d00024020022802c40220022802c8022203460d0020022802c00221040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00220032005102221040b02402004450d00200220053602c402200220043602c00220022802c80221030c020b20054101102d000b0240024020022802c40220022802c8022203460d0020022802c00221040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802c00220032005102221040b02402004450d00200220053602c402200220043602c00220022802c80221030c010b20054101102d000b2002200341016a3602c802200420036a41013a000020024180016a200241c0026a10f5030c010b2002200341016a3602c802200420036a41003a00000b200241b8016a200241c0026a10f60320022903980121060240024020022802c402220420022802c80222036b4108490d0020022802c00221040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802c00220042003102221040b2004450d02200220033602c402200220043602c00220022802c80221030b2002200341086a3602c802200420036a2006370000200241a0016a29030021060240024020022802c402220420022802c80222036b4108490d0020022802c00221040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802c00220042003102221040b2004450d03200220033602c402200220043602c00220022802c80221030b2002200341086a3602c802200420036a2006370000200241a8016a28020021050240024020022802c402220420022802c80222036b4104490d0020022802c00221040c010b200341046a220a2003490d0120044101742203200a2003200a4b1b22034100480d010240024020040d002003101e21040c010b20022802c00220042003102221040b2004450d04200220033602c402200220043602c00220022802c80221030b2002200341046a3602c802200420036a200536000020022903b0012106024020022802c402220420022802c80222036b4108490d0020022802c00221040c050b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b20022802c00220042003102221040b02402004450d00200220033602c402200220043602c00220022802c80221030c050b20034101102d000b1027000b20034101102d000b20034101102d000b20034101102d000b2002200341086a3602c802200420036a2006370000200241f0016a200241c0026a107e20022802c4022103200241106a412020022802c002220420022802c802100502402003450d00200410200b0240024020022802b801220341014b0d00024020030e020200020b20022802c401450d0120022802c00110200c010b20022802c401450d0020022802c00110200b20022903082106200241f0006a41186a22034200370300200241f0006a41106a22044200370300200241f0006a41086a220542003703002002420037037041aeefc2004127200241f0006a1001200241b0036a41186a2003290300370300200241b0036a41106a2004290300370300200241b0036a41086a2005290300370300200220022903703703b00320022006370370200241b0036a4120200241f0006a41081005200041186a200137030020004201370310200042003703000b20024190046a24000bc40c03047f017e017f230041106b220224002002410036020820024201370300200041e0006a200210ca010240024002400240024002400240024020002903004201510d000240200228020420022802082203460d00200228020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c020b20054101102d000b0240024002400240200228020420022802082203460d00200228020021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200228020020032005102221040b2004450d012002200536020420022004360200200228020821030b2002200341016a360208200420036a41013a000020002903082106024020022802042204200228020822036b4108490d00200228020021040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c020b20034101102d000b20054101102d000b2002200341086a360208200420036a20063700000c010b2002200341016a360208200420036a41003a00000b024002400240200041186a2802004102470d000240200228020420022802082203460d00200228020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c020b20054101102d000b02400240200228020420022802082203460d00200228020021040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228020020032005102221040b02402004450d002002200536020420022004360200200228020821030c010b20054101102d000b2002200341016a360208200420036a41013a0000200041106a200210f5030c010b2002200341016a360208200420036a41003a00000b200041c8006a200210f603200029032821060240024020022802042204200228020822036b4108490d00200228020021040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200228020020042003102221040b2004450d022002200336020420022004360200200228020821030b2002200341086a360208200420036a2006370000200041306a29030021060240024020022802042204200228020822036b4108490d00200228020021040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200228020020042003102221040b2004450d032002200336020420022004360200200228020821030b2002200341086a360208200420036a2006370000200041386a28020021050240024020022802042204200228020822036b4104490d00200228020021040c010b200341046a22072003490d01200441017422032007200320074b1b22034100480d010240024020040d002003101e21040c010b200228020020042003102221040b2004450d042002200336020420022004360200200228020821030b2002200341046a360208200420036a200536000020002903402106024020022802042204200228020822036b4108490d00200228020021040c050b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200228020020042003102221040b02402004450d002002200336020420022004360200200228020821030c050b20034101102d000b1027000b20034101102d000b20034101102d000b20034101102d000b2002200341086a360208200420036a200637000020004180016a20021094012002280204210020012802002001280204200228020022032002280208100502402000450d00200310200b200241106a24000bdc0902017e047f2000290300210202400240024002400240024002400240024002400240200141046a2802002203200141086a28020022046b4108490d00200128020021030c010b200441086a22052004490d06200341017422042005200420054b1b22044100480d060240024020030d002004101e21030c010b200128020020032004102221030b2003450d0120012003360200200141046a2004360200200141086a28020021040b200141086a2205200441086a360200200320046a2002370000024020002802084101460d000240200141046a28020020052802002204460d00200128020021030c050b200441016a22032004490d06200441017422052003200520034b1b22054100480d060240024020040d002005101e21030c010b200128020020042005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021040c050b20054101102d000b02400240200141046a28020020052802002204460d00200128020021030c010b200441016a22032004490d06200441017422052003200520034b1b22054100480d060240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a0000200028020c21060240200141046a2802002203200528020022046b4104490d00200128020021030c030b200441046a22052004490d05200341017422042005200420054b1b22044100480d050240024020030d002004101e21030c010b200128020020032004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021040c030b20044101102d000b20044101102d000b20054101102d000b200141086a200441046a360200200320046a20063600000c010b200141086a200441016a360200200320046a41003a00000b024020002802104101460d000240200141046a280200200141086a2802002200460d00200128020021040c050b200041016a22042000490d01200041017422032004200320044b1b22034100480d010240024020000d002003101e21040c010b200128020020002003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021000c050b20034101102d000b02400240200141046a280200200141086a2802002204460d00200128020021030c010b200441016a22032004490d01200441017422052003200520034b1b22054100480d010240024020040d002005101e21030c010b200128020020042005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021040b200141086a2205200441016a360200200320046a41013a0000200028021421030240200141046a2802002204200528020022006b4104490d00200128020021040c030b200041046a22052000490d00200441017422002005200020054b1b22004100480d000240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20054101102d000b200141086a200041046a360200200420006a20033600000f0b200141086a200041016a360200200420006a41003a00000b940d01057f230041106b2202240002402000280200220341024b0d00024002400240024002400240024002400240024002400240024020030e03000102000b0240200141046a280200200141086a2802002200460d00200128020021030c0c0b200041016a22032000490d02200041017422042003200420034b1b22044100480d020240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c0c0b20044101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0320012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41013a0000200041146a2d0000210602400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d02200341017422052004200520044b1b22054100480d020240024020030d002005101e21040c010b200128020020032005102221040b2004450d0420012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20063a00002000280204210602400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d02200441017422032005200320054b1b22034100480d020240024020040d002003101e21040c010b200128020020042003102221040b2004450d0520012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200041086a28020021062002200041106a2802002200360208200241086a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c0a0b200320006a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0a0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0520012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a41023a0000200041146a2d0000210602400240200141046a28020020052802002203460d00200128020021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200128020020032005102221040b2004450d0620012004360200200141046a2005360200200141086a28020021030b200141086a2205200341016a360200200420036a20063a00002000280204210602400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b200128020020042003102221040b2004450d0720012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200041086a28020021062002200041106a280200220036020c2002410c6a200110630240200141046a2802002204200528020022036b2000490d00200128020021040c080b200320006a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c080b20034101102d000b1027000b20054101102d000b20054101102d000b20034101102d000b20054101102d000b20054101102d000b20034101102d000b200141086a200320006a360200200420036a2006200010cd051a0c020b200141086a200320006a360200200420036a2006200010cd051a0c010b200141086a200041016a360200200320006a41003a00000b200241106a24000bd70303037f017e017f230041c0026b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241a0016a2001105e20022802a00122030d01200041023602580c020b200041023602580c010b200241a0016a41086a280200210620022802a4012104200241a0016a2001109c03024020022802f0014102460d002002200241a0016a41a00110cd05210120002005370300200041086a200141a00110cd051a200041b0016a2006360200200041ac016a2004360200200041a8016a20033602000c010b2000410236025802402004450d00200421010340200328026021032001417f6a22010d000b03402004417f6a22040d000b0b02402006450d0041002104410021014100210003402002200436020c200220013602082002200336020420022000360200200241a0016a2002106120022802a801210020022802ac01210320022802b001210120022802b40121042006417f6a22060d000b0b200341908cc500460d0020032802002106200310202006450d0020062802002104200610202004450d00024020042802002203450d000340200410202003210420032802002206210320060d000b0b200410200b200241c0026a24000baa0303037f027e077f230041106b21020240200128020422034110490d002001280200220441086a2900002105200429000021062001200441106a3602002001200341706a22073602042007450d0020042d0010210720012003416f6a22083602042001200441116a360200200741014b0d00410021090240024020070e020100010b410121090b2008450d0020042d0011210720012003416e6a22083602042001200441126a220a360200200741014b0d004100210b0240024020070e020100010b20084104490d012004280012210c20012003416a6a22083602042001200441166a220a3602004101210b0b2008450d00200a2d0000210420012008417f6a22033602042001200a41016a360200200441014b0d00410021070240024020040e020100010b20034104490d01200a280001210d20012008417b6a3602042001200a41056a360200410121070b200020063703002000200c3602142000200b3602102000200228000936002120002005370308200041206a20093a00002000411c6a200d360200200041186a2007360200200041246a2002410c6a2800003600000f0b200041023602100bb21c02067f017e230041106b2202240020002d00502103024002400240024002400240024002400240024002400240024002400240200141046a280200200141086a2802002204460d00200128020021050c010b200441016a22052004490d07200441017422062005200620054b1b22064100480d070240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a20033a0000200028021021072002200041186a280200220436020c2002410c6a2001106302400240200141046a2802002203200628020022056b2004490d00200128020021030c010b200520046a22062005490d07200341017422052006200520064b1b22054100480d070240024020030d002005101e21030c010b200128020020032005102221030b2003450d0220012003360200200141046a2005360200200141086a28020021050b200141086a2206200520046a360200200320056a2007200410cd051a200141046a2802002105200628020021040240200028021c22060d00024020052004460d00200128020021050c060b200441016a22052004490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c060b20034101102d000b0240024020052004460d00200128020021050c010b200441016a22052004490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21050c010b200128020020042003102221050b2005450d0320012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a00002002200041246a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c040b200520046a22072005490d06200341017422052007200520074b1b22054100480d060240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c040b20054101102d000b20064101102d000b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b200141046a2802002105200141086a2802002104024002400240200028022822060d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b024002400240024020052004460d00200128020021050c010b200441016a22052004490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21050c010b200128020020042003102221050b2005450d0120012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a00002002200041306a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c020b200520046a22072005490d04200341017422052007200520074b1b22054100480d040240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c020b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b200141046a2802002105200141086a2802002104024002400240200028023422060d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b024002400240024020052004460d00200128020021050c010b200441016a22052004490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21050c010b200128020020042003102221050b2005450d0120012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a000020022000413c6a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c020b200520046a22072005490d04200341017422052007200520074b1b22054100480d040240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c020b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b200141046a2802002105200141086a2802002104024002400240200028024022060d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422032005200320054b1b22034100480d030240024020040d002003101e21050c010b200128020020042003102221050b02402005450d0020012005360200200141046a2003360200200141086a28020021040c020b20034101102d000b024002400240024020052004460d00200128020021050c010b200441016a22052004490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21050c010b200128020020042003102221050b2005450d0120012005360200200141046a2003360200200141086a28020021040b200141086a2207200441016a360200200520046a41013a00002002200041c8006a280200220436020c2002410c6a200110630240200141046a2802002203200728020022056b2004490d00200128020021030c020b200520046a22072005490d04200341017422052007200520074b1b22054100480d040240024020030d002005101e21030c010b200128020020032005102221030b02402003450d0020012003360200200141046a2005360200200141086a28020021050c020b20054101102d000b20034101102d000b200141086a200520046a360200200320056a2006200410cd051a0c010b200141086a200441016a360200200520046a41003a00000b20002d0051210302400240200141046a280200200141086a2802002204460d00200128020021050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200128020020042006102221050b2005450d0220012005360200200141046a2006360200200141086a28020021040b200141086a2206200441016a360200200520046a20033a00002000290300210802400240200141046a2802002205200628020022046b4108490d00200128020021050c010b200441086a22032004490d01200541017422042003200420034b1b22044100480d010240024020050d002004101e21050c010b200128020020052004102221050b2005450d0320012005360200200141046a2004360200200141086a28020021040b200141086a2203200441086a360200200520046a2008370000200041d2006a200110ca0120002d0072210602400240200141046a28020020032802002204460d00200128020021050c010b200441016a22052004490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21050c010b200128020020042003102221050b2005450d0420012005360200200141046a2003360200200141086a28020021040b200141086a2203200441016a360200200520046a20063a000020002d0073210602400240200141046a28020020032802002204460d00200128020021050c010b200441016a22052004490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21050c010b200128020020042003102221050b2005450d0520012005360200200141046a2003360200200141086a28020021040b200141086a2203200441016a360200200520046a20063a0000200028024c210602400240200141046a2802002205200328020022046b4104490d00200128020021050c010b200441046a22032004490d01200541017422042003200420034b1b22044100480d010240024020050d002004101e21050c010b200128020020052004102221050b2005450d0620012005360200200141046a2004360200200141086a28020021040b200141086a2203200441046a360200200520046a2006360000200029030821080240200141046a2802002204200328020022006b4108490d00200128020021040c070b200041086a22052000490d00200441017422002005200020054b1b22004100480d000240024020040d002000101e21040c010b200128020020042000102221040b02402004450d0020012004360200200141046a2000360200200141086a28020021000c070b20004101102d000b1027000b20064101102d000b20044101102d000b20034101102d000b20034101102d000b20044101102d000b200141086a200041086a360200200420006a2008370000200241106a24000b832c01067f024002400240024002400240024020002802504101460d000240200141046a280200200141086a2802002202460d00200128020021030c020b200241016a22032002490d03200241017422042003200420034b1b22044100480d030240024020020d002004101e21030c010b200128020020022004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021020c020b20044101102d000b0240024002400240200141046a280200200141086a2802002202460d00200128020021030c010b200241016a22032002490d05200241017422042003200420034b1b22044100480d050240024020020d002004101e21030c010b200128020020022004102221030b2003450d0120012003360200200141046a2004360200200141086a28020021020b200141086a2204200241016a360200200320026a41013a0000200028025421050240200141046a2802002203200428020022026b4104490d00200128020021030c020b200241046a22042002490d04200341017422022004200220044b1b22024100480d040240024020030d002002101e21030c010b200128020020032002102221030b02402003450d0020012003360200200141046a2002360200200141086a28020021020c020b20024101102d000b20044101102d000b200141086a200241046a360200200320026a20053600000c010b200141086a200241016a360200200320026a41003a00000b20002802582106024002400240024002400240200141046a22032802002205200141086a220228020022046b4104490d00200128020021050c010b200441046a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b2005450d0120012005360200200141046a2004360200200141086a28020021040b2002200441046a360200200520046a2006360000024020002802104102470d000240200328020020022802002204460d00200128020021050c040b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c040b20064101102d000b0240200328020020022802002204460d00200128020021050c020b200441016a22052004490d04200441017422062005200620054b1b22064100480d040240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b20044101102d000b200141086a200441016a360200200520046a41013a00002000200110fb030c010b2002200441016a360200200520046a41003a00000b024002400240200041386a2802004102470d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b02400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c010b20064101102d000b200141086a200441016a360200200520046a41013a0000200041286a200110fb030c010b2002200441016a360200200520046a41003a00000b200328020021052002280200210402400240024020002f0194014101460d00024020052004460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240024020052004460d00200128020021050c010b200441016a22052004490d06200441017422062005200620054b1b22064100480d060240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020004196016a2f010021060240024020032802002205200228020022046b4102490d00200128020021050c010b200441026a22072004490d06200541017422042007200420074b1b22044100480d060240024020050d002004101e21050c010b200128020020052004102221050b2005450d0220012005360200200141046a2004360200200141086a28020021040b2002200441026a360200200520046a20063b000020004198016a2f01002106024020032802002205200228020022046b4102490d00200128020021050c030b200441026a22072004490d05200541017422042007200420074b1b22044100480d050240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c030b20044101102d000b20064101102d000b20044101102d000b2002200441026a360200200520046a20063b00000c010b2002200441016a360200200520046a41003a00000b024002400240200028025c4101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802602106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b02400240024020002802644101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802682106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b024002400240200028026c4101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802702106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b02400240024020002802744101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a000020002802782106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b024002400240200028027c4101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a00002000280280012106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b0240024002402000280284014101460d000240200328020020022802002204460d00200128020021050c020b200441016a22052004490d03200441017422062005200620054b1b22064100480d030240024020040d002006101e21050c010b200128020020042006102221050b02402005450d0020012005360200200141046a2006360200200141086a28020021040c020b20064101102d000b0240024002400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d05200441017422062005200620054b1b22064100480d050240024020040d002006101e21050c010b200128020020042006102221050b2005450d0120012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a00002000280288012106024020032802002205200228020022046b4104490d00200128020021050c020b200441046a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200128020020052004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021040c020b20044101102d000b20064101102d000b2002200441046a360200200520046a20063600000c010b2002200441016a360200200520046a41003a00000b0240200028028c014101460d000240200328020020022802002200460d00200128020021030c050b200041016a22032000490d01200041017422042003200420034b1b22044100480d010240024020000d002004101e21030c010b200128020020002004102221030b02402003450d0020012003360200200141046a2004360200200141086a28020021000c050b20044101102d000b02400240200328020020022802002204460d00200128020021050c010b200441016a22052004490d01200441017422062005200620054b1b22064100480d010240024020040d002006101e21050c010b200128020020042006102221050b2005450d0220012005360200200141046a2006360200200141086a28020021040b2002200441016a360200200520046a41013a00002000280290012104024020032802002203200228020022006b4104490d00200128020021030c030b200041046a22052000490d00200341017422002005200020054b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20064101102d000b2002200041046a360200200320006a20043600000f0b2002200041016a360200200320006a41003a00000b9b0b02027e047f200041086a290300210220002903002103024002400240024002400240024002400240024002400240200141046a2802002204200141086a28020022056b4110490d00200128020021040c010b200541106a22062005490d07200441017422052006200520064b1b22054100480d070240024020040d002005101e21040c010b200128020020042005102221040b2004450d0120012004360200200141046a2005360200200141086a28020021050b200141086a2206200541106a360200200420056a220520023700082005200337000020002d0020210702400240200141046a28020020062802002205460d00200128020021040c010b200541016a22042005490d07200541017422062004200620044b1b22064100480d070240024020050d002006101e21040c010b200128020020052006102221040b2004450d0220012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a20073a0000024020002802104101460d000240200141046a28020020062802002205460d00200128020021040c060b200541016a22042005490d07200541017422062004200620044b1b22064100480d070240024020050d002006101e21040c010b200128020020052006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021050c060b20064101102d000b02400240200141046a28020020062802002205460d00200128020021040c010b200541016a22042005490d07200541017422062004200620044b1b22064100480d070240024020050d002006101e21040c010b200128020020052006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41013a0000200028021421070240200141046a2802002204200628020022056b4104490d00200128020021040c040b200541046a22062005490d06200441017422052006200520064b1b22054100480d060240024020040d002005101e21040c010b200128020020042005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021050c040b20054101102d000b20054101102d000b20064101102d000b20064101102d000b200141086a200541046a360200200420056a20073600000c010b200141086a200541016a360200200420056a41003a00000b024020002802184101460d000240200141046a280200200141086a2802002200460d00200128020021050c050b200041016a22052000490d01200041017422042005200420054b1b22044100480d010240024020000d002004101e21050c010b200128020020002004102221050b02402005450d0020012005360200200141046a2004360200200141086a28020021000c050b20044101102d000b02400240200141046a280200200141086a2802002205460d00200128020021040c010b200541016a22042005490d01200541017422062004200620044b1b22064100480d010240024020050d002006101e21040c010b200128020020052006102221040b2004450d0220012004360200200141046a2006360200200141086a28020021050b200141086a2206200541016a360200200420056a41013a0000200028021c21040240200141046a2802002205200628020022006b4104490d00200128020021050c030b200041046a22062000490d00200541017422002006200020064b1b22004100480d000240024020050d002000101e21050c010b200128020020052000102221050b02402005450d0020012005360200200141046a2000360200200141086a28020021000c030b20004101102d000b1027000b20064101102d000b200141086a200041046a360200200520006a20043600000f0b200141086a200041016a360200200520006a41003a00000ba41206017f017e027f017e027f067e230041e0016b2201240042002102200141a0016a41086a22034200370300200142003703a0014189fdc2004123200141a0016a1000200141286a41086a2003290300370300200120012903a001370328200141003602a001200141286a4110200141a0016a1003210302400240024002400240024002400240024002400240024020012802a0012204417f460d002003450d0020044108490d0120032900002102200310200b200141a0016a41086a22034200370300200142003703a0014189fdc2004123200141a0016a1000200141286a41086a2003290300370300200120012903a001370328200141003602a001200141286a4110200141a0016a100321030240024020012802a0012204417f460d002003450d00024020044108490d002003290000210520031020200542017c21050c020b41ceb8c400413320014180016a41fcbfc4004184b9c400102e000b420121050b200141a0016a41086a22034200370300200142003703a0014189fdc2004123200141a0016a1000200141286a41086a2003290300370300200120012903a001370328200120053703a001200141286a4110200141a0016a410810054121101e2203450d01200341206a41002d0096f0423a0000200341186a410029008ef042370000200341106a4100290086f042370000200341086a41002900feef42370000200341002900f6ef423700002003412141c20010222203450d022003200237002120014180016a41186a2206420037030020014180016a41106a2204420037030020014180016a41086a2207420037030020014200370380012003412920014180016a1001200141086a41186a2006290300370300200141086a41106a2004290300370300200141086a41086a2007290300370300200120012903800137030820031020200141286a200141086a10d30202400240200129033822054202520d002001200237035820014180016a41186a22034200370300200442003703002007420037030020014200370380014197f0c200412920014180016a1001200141a0016a41186a2003290300370300200141a0016a41106a2004290300370300200141a0016a41086a200729030037030020012001290380013703a0012001410036028001200141a0016a412020014180016a10032103024002402001280280012204417f460d002003450d00024020044108490d002003290000210820031020200141e0006a200810d202200141a0016a200141e0006a10d30220012903b0014202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320014180016a41fcbfc4004184b9c400102e000b4200210920014180016a41186a2203420037030020014180016a41106a2204420037030020014180016a41086a2207420037030020014200370380014197f0c200412920014180016a1001200141a0016a41186a2003290300370300200141a0016a41106a2004290300370300200141a0016a41086a200729030037030020012001290380013703a0012001200237038001200141a0016a412020014180016a41081005420021050c020b20014180016a41086a200141a0016a41106a220341086a290300220a37030020014180016a41106a2204200341106a290300220537030020014180016a41186a200341186a290300220b37030020012003290300220c3703800120012903a001210920012903a801210d200141a0016a41186a2207200b37030020032005370300200141a0016a41086a200a3703002001200c3703a00120014194016a2007410020054201511b3602002001200d3703880120012009370380012001200141d8006a36029001200141003602d801200142013703d00102402009a7220341024b0d0002400240024020030e03000102000b02404101101e2203450d0020014281808080103702d401200120033602d001200341003a00000c030b41014101102d000b4101101e2203450d0720014281808080103702d401200120033602d001200341013a000020034101410910222203450d082001428980808090013702d401200120033602d0012003200d3700010c010b4101101e2203450d0820014281808080103702d401200120033602d001200341023a000020034101410910222203450d092001428980808090013702d401200120033602d0012003200d3700010b2004200141d0016a107e20012802d4012103200141e0006a412020012802d001220420012802d801100502402003450d00200410200b200129035821094200210520014180016a41186a2203420037030020014180016a41106a2204420037030020014180016a41086a2207420037030020014200370380014197f0c200412920014180016a1001200141a0016a41186a2003290300370300200141a0016a41106a2004290300370300200141a0016a41086a200729030037030020012001290380013703a0012001200937038001200141a0016a412020014180016a41081005420121090c010b200141d0006a2903002108200141c8006a29030021092001290340210d0b200141a0016a41206a2008370300200141b8016a2009370300200141b0016a200d370300200120053703a801200120003602a001200141003602302001420137032802402000280200220341024b0d0002400240024020030e03000102000b02404101101e2203450d00200142818080801037022c20012003360228200341003a00000c030b41014101102d000b4101101e2203450d09200142818080801037022c20012003360228200341013a00002000290308210520034101410910222203450d0a20014289808080900137022c20012003360228200320053700010c010b4101101e2203450d0a200142818080801037022c20012003360228200341023a00002000290308210520034101410910222203450d0b20014289808080900137022c20012003360228200320053700010b200141a8016a200141286a109401200128022c2103200141086a4120200128022822002001280230100502402003450d00200010200b200141e0016a240020020f0b41ceb8c400413320014180016a41fcbfc4004184b9c400102e000b41214101102d000b41c2004101102d000b41014101102d000b41094101102d000b41014101102d000b41094101102d000b41014101102d000b41094101102d000b41014101102d000b41094101102d000b3400200041d8fec20036020420004100360200200041146a4119360200200041106a41ecfec200360200200041086a42133702000b5001017f024002404101101e2202450d00200241003a000020024101410910222202450d0120004289808080900137020420002002360200200242003700010f0b41014101102d000b41094101102d000baa0e03047f017e017f23004190016b22022400200241f8006a4200370300200241f0006a4200370300200241e8006a4200370300200241186a4102360200200241306a4200370300200241386a4100360200200242003703602002410036024820024200370300200242003703282002420037034020024100360288012002420137038001200241e0006a20024180016a10ca010240024002400240024002400240024020022903004201510d0002402002280284012002280288012203460d0020022802800121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802800120032005102221040b02402004450d002002200536028401200220043602800120022802880121030c020b20054101102d000b02400240024002402002280284012002280288012203460d0020022802800121040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802800120032005102221040b2004450d012002200536028401200220043602800120022802880121030b2002200341016a36028801200420036a41013a0000200229030821060240200228028401220420022802880122036b4108490d0020022802800121040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b20022802800120042003102221040b02402004450d002002200336028401200220043602800120022802880121030c020b20034101102d000b20054101102d000b2002200341086a36028801200420036a20063700000c010b2002200341016a36028801200420036a41003a00000b02400240024020022802184102470d0002402002280284012002280288012203460d0020022802800121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802800120032005102221040b02402004450d002002200536028401200220043602800120022802880121030c020b20054101102d000b024002402002280284012002280288012203460d0020022802800121040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802800120032005102221040b02402004450d002002200536028401200220043602800120022802880121030c010b20054101102d000b2002200341016a36028801200420036a41013a0000200241106a20024180016a10f5030c010b2002200341016a36028801200420036a41003a00000b200241c8006a20024180016a10f6032002290328210602400240200228028401220420022802880122036b4108490d0020022802800121040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802800120042003102221040b2004450d022002200336028401200220043602800120022802880121030b2002200341086a36028801200420036a2006370000200241306a290300210602400240200228028401220420022802880122036b4108490d0020022802800121040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802800120042003102221040b2004450d032002200336028401200220043602800120022802880121030b2002200341086a36028801200420036a2006370000200241386a280200210502400240200228028401220420022802880122036b4104490d0020022802800121040c010b200341046a22072003490d01200441017422032007200320074b1b22034100480d010240024020040d002003101e21040c010b20022802800120042003102221040b2004450d042002200336028401200220043602800120022802880121030b2002200341046a36028801200420036a2005360000200229034021060240200228028401220420022802880122036b4108490d0020022802800121040c050b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b20022802800120042003102221040b02402004450d002002200336028401200220043602800120022802880121030c050b20034101102d000b1027000b20034101102d000b20034101102d000b20034101102d000b2002200341086a36028801200420036a2006370000200041086a2002280288013602002000200229038001370200024002402002280248220341014b0d00024020030e020200020b200241d4006a280200450d01200241d0006a28020010200c010b200241d4006a280200450d00200241d0006a28020010200b20024190016a24000bcf0201017f23004190016b22022400200241206a4200370300200241086a41086a4200370300200241e1006a4200370000200241e9006a4200370000200241f1006a4200370000200241f8006a410036000020024100360254200241003602482002410036023c2002410036023020024201370318200241003a0058200242003703082002420037005920024100360288012002420137038001200241086a20024180016a10f903200041086a200228028801360200200020022903800137020002402002411c6a280200450d00200228021810200b024020022802242200450d00200241286a280200450d00200010200b024020022802302200450d00200241346a280200450d00200010200b0240200228023c2200450d00200241c0006a280200450d00200010200b024020022802482200450d00200241cc006a280200450d00200010200b20024190016a24000b830503027f017e027f230041d0006b22022400200241386a4200370300200241306a4200370300200241286a4200370300200241206a22034200370300200241186a4200370300200241086a41086a42003703002002420037030820024100360248200242013703402003200241c0006a10ca012002290308210402400240024002400240024020022802442205200228024822036b4108490d00200228024021050c010b200341086a22062003490d01200541017422032006200320064b1b22034100480d010240024020050d002003101e21050c010b200228024020052003102221050b2005450d022002200336024420022005360240200228024821030b2002200341086a360248200520036a2004370000200229031021040240024020022802442205200228024822036b4108490d00200228024021050c010b200341086a22062003490d01200541017422032006200320064b1b22034100480d010240024020050d002003101e21050c010b200228024020052003102221050b2005450d032002200336024420022005360240200228024821030b2002200341086a360248200520036a200437000020022903182104024020022802442205200228024822036b4108490d00200228024021050c040b200341086a22062003490d00200541017422032006200320064b1b22034100480d000240024020050d002003101e21050c010b200228024020052003102221050b02402005450d002002200336024420022005360240200228024821030c040b20034101102d000b1027000b20034101102d000b20034101102d000b2002200341086a360248200520036a2004370000200041086a200228024836020020002002290340370200200241d0006a24000ba80401057f230041e0016b22022400200241ac016a42003702002002419c016a41003b010020024194016a41003602002002418c016a410036020020024184016a4100360200200241fc006a4100360200200241f4006a4100360200200241ec006a4100360200200241e0006a4200370300200241d8006a4100360200200241c0006a4102360200200241186a4102360200200241908cc5003602a80120024200370300200241003602c001200242013703b80102400240024002404108101e2203450d002002428880808080013702bc01200220033602b80120034200370000200241a8016a200241b8016a1062200241086a200241b8016a10fa03200041086a20022802c001360200200020022903b80137020020022802b001210320022802a8012100024020022802ac012204450d00200421050340200028026021002005417f6a22050d000b03402004417f6a22040d000b0b02402003450d004100210441002105410021060340200220043602dc01200220053602d801200220003602d401200220063602d001200241b8016a200241d0016a106120022802c001210620022802c401210020022802c801210520022802cc0121042003417f6a22030d000b0b200041908cc500460d0320002802002104200010202004450d0320042802002103200410202003450d03200328020022000d010c020b41084101102d000b0340200310202000210320002802002204210020040d000b0b200310200b200241e0016a24000bfe0903047f017e017f230041d0006b22022400200241346a42003702002002412c6a4200370200200241246a42003702002002420037021c200242003703102002420037030020024100360248200242013703402002411c6a200241c0006a10ca0102400240024002400240024002400240024020022903004201510d000240200228024420022802482203460d00200228024021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200228024020032005102221040b02402004450d002002200536024420022004360240200228024821030c020b20054101102d000b0240024002400240200228024420022802482203460d00200228024021040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200228024020032005102221040b2004450d012002200536024420022004360240200228024821030b2002200341016a360248200420036a41013a000020022903082106024020022802442204200228024822036b4108490d00200228024021040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200228024020042003102221040b02402004450d002002200336024420022004360240200228024821030c020b20034101102d000b20054101102d000b2002200341086a360248200420036a20063700000c010b2002200341016a360248200420036a41003a00000b200228021021050240024020022802442204200228024822036b4104490d00200228024021040c010b200341046a22072003490d01200441017422032007200320074b1b22034100480d010240024020040d002003101e21040c010b200228024020042003102221040b2004450d022002200336024420022004360240200228024821030b2002200341046a360248200420036a2005360000024020022802144101460d000240200228024420022802482203460d00200228024021040c060b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200228024020032005102221040b02402004450d002002200536024420022004360240200228024821030c060b20054101102d000b02400240200228024420022802482203460d00200228024021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200228024020032005102221040b2004450d032002200536024420022004360240200228024821030b2002200341016a360248200420036a41013a000020022802182105024020022802442204200228024822036b4104490d00200228024021040c040b200341046a22072003490d00200441017422032007200320074b1b22034100480d000240024020040d002003101e21040c010b200228024020042003102221040b02402004450d002002200336024420022004360240200228024821030c040b20034101102d000b1027000b20034101102d000b20054101102d000b2002200341046a360248200420036a20053600000c010b2002200341016a360248200420036a41003a00000b20002002290340370200200041086a200241c0006a41086a280200360200200241d0006a24000ba216060e7f017e047f037e027f047e230041e0016b22022400200241b8016a200110b7010240024020022802b80122030d00200042023703300c010b200241c0016a2204280200210520022802bc012106200241b8016a200110b701024020022802b8012207450d002004280200210820022802bc012104200241b8016a200110b701024020022802b8012209450d0020022802bc01210a02402001280204220b4104490d00200241b8016a41086a280200210c2001280200220d280000210e2001200b417c6a220f3602042001200d41046a3602000240024002400240024002400240024002400240024002400240200f4108490d00200d29000421102001200b41746a22113602042001200d410c6a220f3602002011450d04200f2d000021112001200b41736a22123602042001200f41016a221336020041022114201141024b0d0420110e03020103020b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d0f200310200c0f0b4100210f200241003a00d801200b41736a211241722111024003402012200f460d01200241b8016a200f6a200d200f6a2213410d6a2d00003a00002001200b20116a36020420012013410e6a3602002002200f41016a22133a00d8012011417f6a21112013210f20134120470d000b200241a0016a41086a200241cf016a2900002215370300200241a0016a41106a200241d7016a2d0000220f3a0000200220022800bb01360013200220022802b801360210200220022900c70122163703a00120022002280210360298012002200228001336009b0120022900bf012117200241e0006a41106a200f3a0000200241e0006a41086a201537030020022016370360200241f4006a200241fb006a28000036000020022002280078360071200b20136b41736a2112200d20136a410d6a2113410121140c020b200f41ff0171450d02200241003a00d8010c020b20124108490d01200f29000121172001200b416b6a22123602042001200f41096a2213360200200241e0006a41086a200241b8016a41086a290300370300200241e0006a41106a200241b8016a41106a290300370300200220022800a00136029801200220022903b8013703602002200241a3016a28000036009b01410021140b200241c0006a41086a200241e0006a41086a290300370300200241c0006a41106a200241e0006a41106a2903003703002002200228009b0136005b2002200228029801360258200220022903603703402012450d0320132d0000210f20012012417f6a220b3602042001201341016a360200200f41014b0d0341002118200f0e020201020b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d0b200310200c0b0b410121180b200b450d0220132d0001210f20012012417e6a22113602042001201341026a2219360200200f41014b0d024200211502400240200f0e020100010b20114108490d03201329000221162001201241766a221136020420012013410a6a2219360200420121150b4100210f200241003a00d801417f210b03402011200f460d02200241b8016a200f6a2019200f6a220d2d00003a000020012011200b6a3602042001200d41016a3602002002200f41016a220d3a00d801200b417f6a210b200d210f200d4120470d000b200241a0016a41086a200241cf016a290000221a370300200241a0016a41106a200241d7016a2d0000220f3a0000200220022800bb01360013200220022802b801360210200220022900c701221b3703a0012002200228021036029001200220022800133600930120022900bf01211c200241f8006a41106a200f3a0000200241f8006a41086a201a3703002002201b3703784100210f200241003a00d8012011200d6b21132019200d6a21122011200b6a210b03402013200f460d04200241b8016a200f6a2012200f6a220d2d00003a00002001200b3602042001200d41016a3602002002200f41016a220d3a00d801200b417f6a210b200d210f200d4120470d000b200241a0016a41086a200241cf016a290000221a370300200241a0016a41106a200241d7016a2d0000220f3a0000200220022800bb01360013200220022802b801360210200220022900c701221b3703a00120022002280210360298012002200228001336009b0120022900bf01211d200241e0006a41106a200f3a0000200241e0006a41086a201a3703002002201b370360200241086a2001105f20022802080d05200228020c2111200242003702bc01200241908cc5003602b80102402011450d0003402001280204220b450d062001280200220f2d0000210d2001200b417f6a22133602042001200f41016a360200200d41034b0d0620134108490d06200f290001211a2001200b41776a3602042001200f41096a360200200241b8016a201a200d108b051a2011417f6a22110d000b0b20022802b8012201450d0520022902bc01211a200241b8016a41086a220f200241c0006a41086a290300370300200241b8016a41106a220b200241c0006a41106a290300370300200241a0016a41086a220d200241f8006a41086a290300370300200241a0016a41106a2211200241f8006a41106a2d00003a00002002200228005b36003b20022002280258360238200220022903403703b80120022002280290013602302002200228009301360033200220022903783703a001200241106a41106a2213200241e0006a41106a2d00003a0000200241106a41086a2212200241e0006a41086a2903003703002002200228009b0136002b200220022802980136022820022002290360370310200020143a00082000201037030020002017370310200020022802383600092000410c6a200228003b360000200020183a0074200041ec006a201a370200200041e8006a20013602002000200e360264200041e0006a200c360200200041dc006a200a360200200041d8006a2009360200200041d4006a2008360200200041d0006a20043602002000200736024c200041c8006a2005360200200041c4006a2006360200200041c0006a20033602002000201637033820002015370330200020022903b801370318200041206a200f290300370300200041286a200b290300370300200041fc006a201c3700002000419c016a201d370000200041f8006a20022800333600002000200228023036007520004194016a20112d00003a00002000418c016a200d29030037000020004184016a20022903a00137000020004198016a200228002b3600002000200228022836009501200041b4016a20132d00003a0000200041ac016a2012290300370000200041a4016a2002290310370000200041b7016a200241e2006a2d00003a0000200020022f00603b00b5010c090b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d08200310200c080b0240200f41ff0171450d00200241003a00d8010b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d07200310200c070b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d06200310200c060b0240200f41ff0171450d00200241003a00d8010b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d05200310200c050b20022802b80120022902bc012210a72010422088a710f5020b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d03200310200c030b200042023703300240200a450d00200910200b02402004450d00200710200b2006450d02200310200c020b2000420237033002402004450d00200710200b2006450d01200310200c010b200042023703302006450d00200310200b200241e0016a24000b990501067f230041d0006b22022400200241306a41086a220342003703002002420037033041b0a3c300412b200241306a1000200241086a200329030037030020022002290330370300200241306a200210750240024020022f0132410020022f013041014622041b220541ffff0371200141086a280200220341ffff037122064d0d004197d9c2002101411921030c010b024020022f0134410020041b20056a41ffff037120064f0d0041b0d9c2002101411821030c010b024002404125101e2204450d002004411d6a41002900daee42370000200441186a41002900d5ee42370000200441106a41002900cdee42370000200441086a41002900c5ee42370000200441002900bdee42370000200242a5808080d004370224200220043602202001280200210620022003360230200241306a200241206a1063024020022802242205200228022822046b2003490d00200228022021010c020b0240200420036a22012004490d00200541017422072001200720014b1b22074100480d000240024020050d002007101e21010c010b200228022020052007102221010b02402001450d002002200736022420022001360220200721050c030b20074101102d000b1027000b41254101102d000b2002200420036a2207360228200120046a2006200310cd051a200241306a41186a22034200370300200241306a41106a22044200370300200241306a41086a220642003703002002420037033020012007200241306a1001200241186a2003290300370300200241106a2004290300370300200241086a20062903003703002002200229033037030002402005450d00200110200b410041b6dac2002002412041e4fdc600410041001002417f461b2101411f21030b2000200336020420002001360200200241d0006a24000bf60d03057f037e047f230041b0056b22022400024002400240411f101e2203450d00200341176a410029008eee42370000200341106a4100290087ee42370000200341086a41002900ffed42370000200341002900f7ed423700002003411f413e10222203450d012003200037001f20024180036a41186a2204420037030020024180036a41106a2205420037030020024180036a41086a2206420037030020024200370380032003412720024180036a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903800337030820031020200241286a200241086a109e04024020022903a00122074202520d00200220003703c0012004420037030020024180036a41106a2203420037030020024180036a41086a2205420037030020024200370380034196eec200412720024180036a100120024198046a41186a200429030037030020024198046a41106a200329030037030020024198046a41086a2005290300370300200220022903800337039804200241003602800320024198046a412020024180036a100321030240024002402002280280032204417f460d002003450d00024020044108490d002003290000210020031020200241c8016a200010eb0320024198046a200241c8016a109e042002290390054202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024180036a41fcbfc4004184b9c400102e000b4200210820024180036a41186a2203420037030020024180036a41106a2204420037030020024180036a41086a2205420037030020024200370380034196eec200412720024180036a100120024198046a41186a200329030037030020024198046a41106a200429030037030020024198046a41086a2005290300370300200220022903800337039804200220003703800320024198046a412020024180036a410810050c010b20024180036a20024198046a41980110cd051a200241e8016a20024180036a41f80010cd051a200241f8026a220320024190046a290300370300200241f0026a20024188046a2903002207370300200241e8026a20024180046a290300370300200220022903f8033703e00220024198046a200241e8016a41f80010cd051a20024194056a2003410020074201511b3602002002200241c0016a360290052002410036028803200242013703800320024198046a20024180036a10f90320024198046a41f8006a20024180036a107e2002280284032103200241c8016a41202002280280032204200228028803100502402003450d00200410200b0240200241ac046a280200450d0020022802a80410200b024020022802b4042203450d00200241b8046a280200450d00200310200b024020022802c0042203450d00200241c4046a280200450d00200310200b024020022802cc042203450d00200241d0046a280200450d00200310200b024020022802d8042203450d00200241dc046a280200450d00200310200b20022903c001210720024180036a41186a2203420037030020024180036a41106a2204420037030020024180036a41086a2205420037030020024200370380034196eec200412720024180036a100120024198046a41186a200329030037030020024198046a41106a200429030037030020024198046a41086a2005290300370300200220022903800337039804200220073703800320024198046a412020024180036a41081005420121080b420021070c030b200241b8016a2903002100200241b0016a290300210820022903a8012109200228026c210a200228026821032002280260210b200228025c21042002280254210c200228025021052002280248210d200228024421060240200228023c450d00200228023810200b02402006450d00200d450d00200610200b02402005450d00200c450d00200510200b02402004450d00200b450d00200410200b2003450d02200a450d02200310200c020b411f4101102d000b413e4101102d000b20024198046a200141f80010cd051a200241a8056a2000370300200241a0056a200837030020024198056a200937030020022007370390052002410036028803200242013703800320024198046a20024180036a10f90320024198046a41f8006a20024180036a1094012002280284032103200241086a41202002280280032204200228028803100502402003450d00200410200b0240200241ac046a280200450d0020022802a80410200b024020022802b4042203450d00200241b8046a280200450d00200310200b024020022802c0042203450d00200241c4046a280200450d00200310200b024020022802cc042203450d00200241d0046a280200450d00200310200b024020022802d8042203450d00200241dc046a280200450d00200310200b200241b0056a24000bcf0602087f017e230041c0026b2203240041042104200141046a280000210520012d00002106200341086a41026a2207200141036a2d00003a0000200341c0016a41086a2208200141186a290000370300200341c0016a41106a2209200141206a2d00003a0000200320012f00013b01082003200141106a2900003703c0014101210a200141086a290000210b024020064101470d00200341c4006a41026a20072d00003a0000200341c8006a41086a2008290300370300200341c8006a41106a20092d00003a0000200320032f01083b0144200320032903c0013703484100210a200521040b200341c0006a41026a200341c4006a41026a2d00003a0000200341286a41086a200341c8006a41086a290300370300200341286a41106a200341c8006a41106a2d00003a0000200320032f01443b014020032003290348370328024002400240200a0d002003411f6a200341286a41086a290300370000200341276a200341386a2d00003a0000200320032f01403b01082003200b37000f2003200436000b200320032903283700172003200341c2006a2d00003a000a200341c0016a200210d50220032802c0014101470d01200020032902c401370204200041013602000c020b419affc6002101410f210a024002400240024002400240024020040e0700010203040506000b200b422088a7210a200ba721010c050b418cffc6002101410e210a0c040b4180ffc6002101410c210a0c030b41f7fec60021014109210a0c020b41e4fec60021014113210a0c010b41d3fec60021014111210a0b2000200136020420004101360200200041086a200a3602000c010b200341c8006a200341c0016a41086a41f80010cd051a0240200341086a2003419a016a412010cf050d00200041086a200341c8006a41f80010cd051a200041003602000c010b200041f0dbc20036020420004101360200200041086a412a3602000240200341dc006a280200450d00200328025810200b024020032802642201450d00200341e8006a280200450d00200110200b024020032802702201450d00200341f4006a280200450d00200110200b0240200328027c2201450d0020034180016a280200450d00200110200b2003280288012201450d002003418c016a280200450d00200110200b200341c0026a24000bfd1807057f017e057f017e057f017e027f230041e0056b220224000240024002404124101e2203450d0041002104200341206a41002800818f46360000200341186a41002900f98e46370000200341106a41002900f18e46370000200341086a41002900e98e46370000200341002900e18e463700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a00a80402402003412441c80010222203450d00200320043a002420032000370025200241a8046a41186a22044200370300200241a8046a41106a22054200370300200241a8046a41086a22064200370300200242003703a8042003412d200241a8046a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903a804370308200310200240200241086a412041e4fdc600410041001002417f470d0041a0b0c60021030c040b02404124101e2203450d0041002104200341206a41002800818f46360000200341186a41002900f98e46370000200341106a41002900f18e46370000200341086a41002900e98e46370000200341002900e18e463700000240024002400240200141ff01710e0403000102030b410121040c020b410221040c010b410321040b200220043a00a80402402003412441c80010222203450d00200320043a00242003200037002542002107200241a8046a41186a22044200370300200241a8046a41106a22054200370300200241a8046a41086a22064200370300200242003703a8042003412d200241a8046a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903a80437030820031020200241003602a804200241086a4120200241a8046a100321030240024020022802a8042204417f460d002003450d0020044108490d0120032900002107200310200b200241a8046a200710a703024020022903d8044202520d0041c58cc60021030c070b20022802a8042103200241f4026a200241a8046a41047241b40110cd051a200241c0016a200241f4026a41b40110cd051a20022003360208200241086a410472200241c0016a41b40110cd051a200241f0006a2103200241f4006a2802002108200141ff01712109034002400240200328020022052f0106220a0d00410021060c010b200a4104742104200541086a21034100210b0340200b2106024020040d00200a21060c020b02400240200341086a2d0000220b2009460d00417f4101200b20094b1b210c0c010b2003290300220d2000560d02200d200052210c0b200641016a210b200341106a2103200441706a21040240200c41016a0e03020001020b0b200b417f6a2106200241f8006a22032003280200417f6a36020002400240024002400240024002400240024002400240024002402008450d00200641027420056a41bc016a280200210302402008417f6a2204450d00034020032802b80121032004417f6a22040d000b0b0240024020032f01060d00410021030c010b200341908cc500460d030b20032d001021082003290308210d200341086a200341186a20032f0106220441047441706a10ce051a20032004417f6a3b0106200520064104746a41086a2204200d37030020042d0008210e200420083a00080c010b200541908cc500460d02200520064104746a220341106a2d0000210e200341086a200341186a2006417f7320052f01066a41047410ce051a200520052f0106417f6a3b0106200521030b024020032f010641044b0d004100210f034020032802002206450d010240024020032f010422030d00410021044100211020062f01060d0141e5dac500412841a888c6001028000b2003417f6a2104410121100b0240200641b8016a2203200441016a2205410274220c6a2208280200220b2f0106220a2003200441027422116a220328020022092f010622126a410b490d00024020100d00024002400240200a450d00200b2d00102112200b290308210d200b41086a200b41186a200a41047441706a10ce051a200f0d0141002109417f21050c020b41f5a6c000412041a888c6001028000b200b2802b8012109200b41b8016a2205200b41bc016a200a41027410ce051a410021082009410036020003402005280200220c20083b0104200c200b360200200541046a2105200a200841016a2208470d000b200f417f6a21050b200b200b2f0106417f6a3b0106200620044104746a220441106a22062d00002108200620123a0000200441086a220429030021132004200d370300200328020021030240200f450d002009450d0720052005470d0820032f01062204410a4b0d09200320044104746a220541106a20083a0000200541086a20133703002003200441016a22044102746a41b8016a22052009360200200320032f010641016a3b01062005280200220520043b0104200520033602000c040b20032f01062204410b4f0d09200320044104746a220441106a20083a0000200441086a2013370300200320032f010641016a3b01060c030b0240024002402012450d00201241047420096a22032d0000210b200341786a290300210d200f0d0141002105417f21030c020b41f5a6c000412041a888c6001028000b200920124102746a41b8016a28020022054100360200200f417f6a21030b200920092f0106417f6a3b0106200620044104746a220441106a22062d0000210c2006200b3a0000200441086a220429030021132004200d370300200828020021060240200f450d002005450d0a20032003470d0b024020062f01062203410a4b0d00200641186a200641086a200341047410ce051a2006200c3a001020062013370308200641bc016a200641b8016a220320062f010641027441046a10ce051a200620053602b801200620062f010641016a22043b0106200441ffff037141016a21084100210403402003280200220520043b010420052006360200200341046a21032008200441016a2204470d000c050b0b41a8a5c000412741a888c6001028000b20062f01062203410b4f0d0b200641186a200641086a200341047410ce051a2006200c3a001020062013370308200620062f010641016a3b01060c020b200828020022092f0106220a2003280200220b2f010622126a2214410a4b0d0b200f41016a210f200641086a221020044104746a2203290300210d20032d000821152003201020054104746a2004417f7320062f01066a41047410ce051a200b41086a221020124104746a220320153a00082003200d3703002010201241016a22034104746a200941086a200a41047410cd051a20082006200441026a22044102746a41b8016a412c200c6b10ce0521080240200520062f0106220c4f0d002008280200220820053b0104200820063602002004200c460d00201120066a41c0016a210503402005280200220820043b010420082006360200200541046a2105200c200441016a2204470d000b0b200620062f0106417f6a3b0106200b200a200b2f01066a41016a3b01060240200f4102490d00200b20034102746a41b8016a200941b8016a200a41027441046a10cd051a2003201441026a4f0d00200a41016a2105200b20124102746a41bc016a210403402004280200220820033b01042008200b360200200441046a2104200341016a21032005417f6a22050d000b0b20091020024020062f01062204450d002006210320044105490d010c020b0b200241f4006a2802002203450d0b20022003417f6a3602742002200228027022032802b801220436027020044100360200200310200b200e41ff01714104460d12200241a8046a200241086a41b80110cd051a2007200241a8046a10a905200241c8046a20013a0000200241c0046a2000370300200241b8046a2007370300200241b0046a41073a00002002410d3a00a804200241a8046a1077410021030c130b41c8a6c000412d41a888c6001028000b41c8a6c000412d41a888c6001028000b41e988c700412b4180a8c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b41a8a5c000412741a888c6001028000b41e988c700412b4198a7c0001028000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b4190a8c000413641a888c6001028000b41a7a6c000412141a888c6001028000b2008450d062008417f6a2108200520064102746a41b8016a21030c000b0b41ceb8c4004133200241a8046a41fcbfc4004184b9c400102e000b41c8004101102d000b41244101102d000b41c8004101102d000b41244101102d000b41b3b0c600413f41f4b0c6001028000b200241e0056a240020030bac0403017f017e047f230041a0036b22022400200241c0016a2000200110c8030240024020022802c0014101470d0020022802c40121010c010b200241086a200241c8016a41b80110cd051a0240200241f0006a2001290300220320012d00082204108b05450d0041d4afc600413c4190b0c6001028000b200241c0016a200241086a41b80110cd051a2000200241c0016a10a905024002404124101e2201450d0041002105200141206a41002800818f46360000200141186a41002900f98e46370000200141106a41002900f18e46370000200141086a41002900e98e46370000200141002900e18e46370000024002400240024020040e0403000102030b410121050c020b410221050c010b410321050b200220053a00c0012001412441c80010222201450d01200120053a002420012003370025200241c0016a41186a22054200370300200241c0016a41106a22064200370300200241c0016a41086a22074200370300200242003703c0012001412d200241c0016a100120024180036a41186a200529030037030020024180036a41106a200629030037030020024180036a41086a2007290300370300200220022903c0013703800320011020200220003703c00120024180036a4120200241c0016a41081005200241c0016a41206a20043a00002005200337030020062000370300200741063a00002002410d3a00c001200241c0016a1077410021010c020b41244101102d000b41c8004101102d000b200241a0036a240020010ba44506037f017e0c7f057e027f017e230041e0066b22092400024002402002280200220a450d0002400240024002400240411f101e220b450d00200b41176a410029008eee42370000200b41106a4100290087ee42370000200b41086a41002900ffed42370000200b41002900f7ed423700002000290300210c200b411f413e1022220b450d01200b200c37001f200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a220f4200370300200942003703b004200b4127200941b0046a1001200941186a200d290300370300200941106a200e290300370300200941086a200f290300370300200920092903b004370300200b1020200941003602c80520094120200941c8056a1003210b20092802c805220e417f460d03200b450d032009200e3602b4042009200b3602b004200941c8056a200941b0046a10f10320092d0098064102460d02200928028c062110200928028806210f200928028006211120092802fc05211220092802f405211320092802f005211420092802e805211520092802e405211620092802e005210d20092802dc05211720092802d80521180240200e450d00200b10200b02402015450d002016450d00201610200b02402013450d002014450d00201410200b02402011450d002012450d00201210200b2010450d04200f450d04200f10200c040b411f4101102d000b413e4101102d000b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b410121184100210d410021170b0240024002400240024002404125101e220b450d00200b411d6a41002900daee42370000200b41186a41002900d5ee42370000200b41106a41002900cdee42370000200b41086a41002900c5ee42370000200b41002900bdee42370000200942a5808080d0043702cc052009200b3602c8052009200d3602b004200941b0046a200941c8056a1063024020092802cc05220f20092802d005220e6b200d490d0020092802c805210b0c020b200e200d6a220b200e490d02200f4101742212200b2012200b4b1b22124100480d0202400240200f0d002012101e210b0c010b20092802c805200f20121022210b0b0240200b450d00200920123602cc052009200b3602c8052012210f0c020b20124101102d000b41254101102d000b2009200e200d6a22123602d005200b200e6a2018200d10cd051a200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22144200370300200942003703b004200b2012200941b0046a1001200941186a200d290300370300200941106a200e290300370300200941086a2014290300370300200920092903b0043703000240200f450d00200b10200b02402017450d00201810200b4100210b200941003602c80520094120200941c8056a1003210d024002400240024002400240024002400240024020092802c805220e417f460d00200d450d002009200e3602dc012009200d3602d801200941c8056a200941d8016a109b0420092903c8054201510d01200941b0046a41186a220b200941c8056a41206a290300370300200941b0046a41106a220f200941c8056a41186a2218290300370300200941b0046a41086a2217200941c8056a41106a2212290300370300200920092903d0053703b0040240200e450d00200d10200b2018200b2903003703002012200f290300370300200941c8056a41086a2017290300370300200920092903b0043703c8052009412010044101210b0b200941d8016a41186a200941c8056a41186a290300220c370300200941d8016a41106a200941c8056a41106a2903002219370300200941d8016a41086a200941c8056a41086a290300221a370300200920092903c8053703d801200941e0006a41106a220d200c370300200941e0006a41086a220e20193703002009201a370360200b450d0820094198036a41106a200d29030037030020094198036a41086a200e2903003703002009200929036037039803200941a4036a210e0240024020092802a403220f0d004100210b0c010b200941f0026a200e10ed03200941b0046a41186a200941f0026a41186a290000220c370300200941b0046a41106a200941f0026a41106a2900002219370300200941b0046a41086a200941f0026a41086a290000221a370300200920092900f002221b3703b004200941c8056a41186a220d200c370300200941c8056a41106a22182019370300200941c8056a41086a2217201a3703002009201b3703c8054120101e220b450d02200b20092903c805370000200b41186a200d290300370000200b41106a2018290300370000200b41086a20172903003700000b024020092802980322140d00200f0d04200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22184200370300200942003703b00441e2eec200412d200941b0046a1001200941f0026a41186a200d290300370300200941f0026a41106a200e290300370300200941f0026a41086a2018290300370300200920092903b0043703f002200941f0026a412010040c070b200941f0026a20094198036a10ed03200941b0046a41186a200941f0026a41186a290000220c370300200941b0046a41106a200941f0026a41106a2900002219370300200941b0046a41086a200941f0026a41086a290000221a370300200920092900f002221b3703b004200941c8056a41186a2218200c370300200941c8056a41106a22172019370300200941c8056a41086a2212201a3703002009201b3703c8054120101e220d450d02200d20092903c805370000200d41186a2018290300370000200d41106a2017290300370000200d41086a2012290300370000200941003602c805200d4120200941c8056a1003211820092802c8052217417f460d052018450d0520092017360294042009201836029004200941c8056a20094190046a109b0420092903c8054201510d04200941b0046a41186a2216200941e8056a290300370300200941b0046a41106a2210200941c8056a41186a2211290300370300200941b0046a41086a2212200941c8056a41106a2213290300370300200920092903d0053703b00402402017450d00201810200b2011201629030037030020132010290300370300200941c8056a41086a2012290300370300200920092903b0043703c8052012200e41086a2802003602002009200e2902003703b0040240200941dc056a220e2802002218450d00200941e0056a280200450d00201810200b200e20092903b004370200200e41086a200941b0046a41086a280200360200200941203602b4042009200d3602b004200941c8056a200941b0046a109d04024020092802d005220e450d00200941d4056a280200450d00200e10200b024020092802dc05220e450d00200941e0056a280200450d00200e10200b200d10204101210e0c070b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41204101102d000b41204101102d000b200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22184200370300200942003703b00441e2eec200412d200941b0046a1001200941c8056a41186a200d290300370300200941c8056a41106a200e290300370300200941c8056a41086a2018290300370300200920092903b0043703c805200941203602b4042009200941c8056a3602b004200f200941ac036a280200200941b0046a10a3020c020b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b4100210d4100210e0b024002400240024002400240200b0d00410121180c010b200941003602c805200b4120200941c8056a1003211820092802c8052217417f460d022018450d0220092017360294042009201836029004200941c8056a20094190046a109b0420092903c8054201510d01200941b0046a41186a2216200941e8056a290300370300200941b0046a41106a2210200941c8056a41186a2211290300370300200941b0046a41086a2212200941c8056a41106a2213290300370300200920092903d0053703b00402402017450d00201810200b2011201629030037030020132010290300370300200941c8056a41086a22182012290300220c370300200920092903b0043703c805201220094198036a41086a28020036020020092009290398033703b0040240200ca72217450d00200941d4056a280200450d00201710200b201820092903b004370200201841086a200941b0046a41086a280200360200200941203602b4042009200b3602b004200941c8056a200941b0046a109d04024020092802d0052218450d00200941d4056a280200450d00201810200b0240200941dc056a2802002218450d00200941e0056a280200450d00201810200b200b1020410021180b200e200d4572450d020c030b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b200d10200b024002400240200b0d0020180d010c020b2018450d01200b10200b2014450d00200928029c03450d00201410200b200e200f45720d00200941a8036a280200450d00200f10200b200241086a280200220b417f4c0d0502400240024002400240200b0d004101210d0c010b200b101e220d450d010b200d200a200b10cd0521164125101e220d450d01200d411d6a41002900daee42370000200d41186a41002900d5ee42370000200d41106a41002900cdee42370000200d41086a41002900c5ee42370000200d41002900bdee42370000200942a5808080d0043702cc052009200d3602c8052009200b3602b004200941b0046a200941c8056a1063024020092802cc05220f20092802d005220e6b200b490d0020092802c805210d0c030b200e200b6a220d200e490d03200f4101742218200d2018200d4b1b22184100480d0302400240200f0d002018101e210d0c010b20092802c805200f20181022210d0b0240200d450d00200920183602cc052009200d3602c8052018210f0c030b20184101102d000b200b4101102d000b41254101102d000b2009200e200b6a22183602d005200d200e6a2016200b10cd051a200941b0046a41186a220e4200370300200941b0046a41106a22174200370300200941b0046a41086a22124200370300200942003703b004200d2018200941b0046a1001200941186a200e290300370300200941106a2017290300370300200941086a2012290300370300200920092903b0043703000240200f450d00200d10200b200941003602c80520094120200941c8056a1003210d024002400240024002400240024020092802c805220e417f460d00200d450d002009200e3602dc012009200d3602d801200941c8056a200941d8016a109b0420092903c8054201510d02200941b0046a41186a220f200941e8056a290300370300200941b0046a41106a2218200941c8056a41186a2217290300370300200941b0046a41086a2212200941c8056a41106a2214290300370300200920092903d0053703b0040240200e450d00200d10200b2017200f290300220c370300201420182903002219370300200941c8056a41086a2012290300221a370300200941d8016a41086a2019370300200941d8016a41106a200c370300200920092903b0043703c8052009201a3703d801410021110c010b2009200b3602d0052009200b3602cc05200920163602c805200941d8016a200941c8056a109c04410121110b200941d8016a41086a2802002112200941d8016a41106a2802002113200941ec016a280200211420092802d801210f20092802dc01211520092802e40121184108101e220d450d012009428880808080013702cc052009200d3602c805200d2000290300370000200d410841101022210d0240200f0d000240200d450d002009429080808090013702cc05200d41003a00082009200d3602c805410921174110210e0c060b41104101102d000b200d450d022009429080808090013702cc05200d41013a00082009200d3602c805200920123602b004200941b0046a200941c8056a1063024020092802cc05220e20092802d00522106b2012490d0020092802c805210d0c040b201020126a220d2010490d05200e4101742217200d2017200d4b1b22174100480d0502400240200e0d002017101e210d0c010b20092802c805200e20171022210d0b0240200d450d00200920173602cc052009200d3602c8052017210e0c040b20174101102d000b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b41084101102d000b41104101102d000b2009201020126a22173602d005200d20106a200f201210cd051a0b024020180d0002400240200e2017470d00200e41016a2212200e490d03200e41017422142012201420124b1b22124100480d0302400240200e0d002012101e210d0c010b200d200e20121022210d0b200d450d01200920123602cc052009200d3602c8050b2009201741016a3602d005200d20176a41003a000020092802d005211220092802cc05210e20092802c805210d0c050b20124101102d000b0240200e2017470d00200e41016a2212200e490d01200e41017422102012201020124b1b22124100480d0102400240200e0d002012101e210d0c010b200d200e20121022210d0b200d450d02200920123602cc052009200d3602c8050b2009201741016a3602d005200d20176a41013a0000200920143602b004200941b0046a200941c8056a1063024020092802cc05220e20092802d00522176b2014490d0020092802c805210d0c030b201720146a220d2017490d00200e4101742212200d2012200d4b1b22124100480d0002400240200e0d002012101e210d0c010b20092802c805200e20121022210d0b0240200d450d00200920123602cc052009200d3602c8052012210e0c030b20124101102d000b1027000b20124101102d000b2009201720146a22123602d005200d20176a2018201410cd051a0b20094120200d201210050240200e450d00200d10200b0240200f450d002015450d00200f10200b02402018450d002013450d00201810200b200b452011720d00201610200b024002400240024002400240024002400240411f101e220b450d00200b41176a410029008eee42370000200b41106a4100290087ee42370000200b41086a41002900ffed42370000200b41002900f7ed423700002000290300210c200b411f413e1022220b450d01200b200c37001f4200210c200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a220f4200370300200942003703b004200b4127200941b0046a1001200941206a41186a200d290300370300200941206a41106a200e290300370300200941206a41086a200f290300370300200920092903b004370320200b1020200941c8056a200941206a109e04024002400240024020092903c0064202510d0020092802bc06211520092d00bb06211620092d00ba06211020092d00990621112009280294062113200929028c06211a2009280288062118200929038006211b20092802fc05211720092902f405211c20092802f005211220092903e805211d20092802e405211420092903d005211920092903c805210c20092d009806210f200941dc056a280200210d20092802e005210b20092802d805210e200941086a221e200941a2066a290100370300200941106a221f200941aa066a290100370300200941186a200941b2066a2901003703002009200929019a06370300200f4102470d0142002119200941c8046a4200370300200941b0046a41106a4200370300200941b0046a41086a4200370300200942003703b0044100210b4101210e4100210d41002116410021104100211141002113410021184100211741002112410021144200210c4100210f0c020b200941e0016a4200370300200941e8016a4200370300200941d8016a41186a4200370300200942003703d8014100210b4101210e4100210d420021194100211641002110410021114100210f41002113410021184100211741002112410021140c020b200941b0046a41186a200941186a290300370300200941b0046a41106a201f290300370300200941b0046a41086a201e290300370300200920092903003703b0040b200941d8016a41086a200941b0046a41086a290300370300200941d8016a41106a200941b0046a41106a290300370300200941d8016a41186a200941b0046a41186a290300370300200920092903b0043703d8010b200941c0006a41186a200941d8016a41186a290300370300200941c0006a41106a200941d8016a41106a290300370300200941c0006a41086a200941d8016a41086a290300370300200920092903d8013703400240200a450d00200241086a280200220b417f4c0d0a02400240200b0d00410121020c010b200b101e2202450d040b2002200a200b10cd0521020240200d450d00200e10200b200b210d2002210e0b0240024020032802004101460d00201d2120201421020c010b024002402003280204221e0d00410021020c010b2003410c6a280200220a417f4c0d0b02400240200a0d00410121020c010b200a101e2202450d060b2002201e200a10cd051a200aad222042208620208421200b201da7450d002014450d00201410200b0240024020042802004101460d00201c211d2012210a0c010b02400240200428020422140d004100210a0c010b2004410c6a2802002203417f4c0d0b0240024020030d004101210a0c010b2003101e220a450d070b200a2014200310cd051a2003ad221d422086201d84211d0b201ca7450d002012450d00201210200b0240024020052802004101460d00201b211c201721030c010b02400240200528020422120d00410021030c010b2005410c6a2802002204417f4c0d0b0240024020040d00410121030c010b2004101e2203450d080b20032012200410cd051a2004ad221c422086201c84211c0b201ba7450d002017450d00201710200b0240024020062802004101460d00201a211b201821040c010b02400240200628020422170d00410021040c010b2006410c6a2802002205417f4c0d0b0240024020050d00410121040c010b2005101e2204450d090b20042017200510cd051a2005ad221b422086201b84211b0b201aa7450d002018450d00201810200b200941a4016a201b37020020094198016a201c3703002009418c016a201d37020020094180016a2020370300200941e0006a41186a200b360200200941f4006a200d360200200941ba016a200941c0006a41086a290300370100200941c2016a200941c0006a41106a290300370100200941ca016a200941c0006a41186a290300370100200920113a00b1012009200f2001410171200141ff01714102461b3a00b001200920133602ac01200920043602a00120092003360294012009200a360288012009200236027c2009200e360270200920193703682009200c370360200920092903403701b201200920153602d401200920162008410171200841ff01714102461b3a00d30120092010200741ff0171220b410146200b4102461b3a00d201411f101e220b450d07200b41176a410029008eee42370000200b41106a4100290087ee42370000200b41086a41002900ffed42370000200b41002900f7ed423700002000290300210c200b411f413e1022220b450d08200b200c37001f200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22024200370300200942003703b004200b4127200941b0046a1001200941186a200d290300370300200941106a200e290300370300200941086a2002290300370300200920092903b004370300200b1020200941d8016a2009109e040240024020092903d002220c4202520d002009200036029403200d4200370300200e420037030020024200370300200942003703b0044196eec2004127200941b0046a1001200941c8056a41186a200d290300370300200941c8056a41106a200e290300370300200941c8056a41086a2002290300370300200920092903b0043703c805200941003602b004200941c8056a4120200941b0046a1003210b0240024020092802b004220d417f460d00200b450d000240200d4108490d00200b2900002119200b1020200941f0026a201910eb03200941c8056a200941f0026a109e0420092903c0064202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200941f0026a41fcbfc4004184b9c400102e000b4200211a200941b0046a41186a220b4200370300200941b0046a41106a220d4200370300200941b0046a41086a220e4200370300200942003703b0044196eec2004127200941b0046a1001200941c8056a41186a200b290300370300200941c8056a41106a200d290300370300200941c8056a41086a200e290300370300200920092903b0043703c805200920002903003703b004200941c8056a4120200941b0046a410810054200210c0c020b200941b0046a200941c8056a41980110cd051a20094198036a200941b0046a41f80010cd051a200941a8046a220b200941c0056a290300370300200941a0046a200941b8056a290300220c37030020094198046a200941b0056a290300370300200920092903a80537039004200941c8056a20094198036a41f80010cd051a200941c4066a200b4100200c4201511b360200200920094194036a3602c006200941003602b804200942013703b004200941c8056a200941b0046a10f903200941c8056a41f8006a200941b0046a10810120092802b404210b200941f0026a412020092802b004220d20092802b80410050240200b450d00200d10200b0240200941dc056a280200450d0020092802d80510200b024020092802e405220b450d00200941e8056a280200450d00200b10200b024020092802f005220b450d00200941f4056a280200450d00200b10200b024020092802fc05220b450d0020094180066a280200450d00200b10200b0240200928028806220b450d002009418c066a280200450d00200b10200b200928029403210b4200210c200941b0046a41186a220d4200370300200941b0046a41106a220e4200370300200941b0046a41086a22024200370300200942003703b0044196eec2004127200941b0046a1001200941c8056a41186a200d290300370300200941c8056a41106a200e290300370300200941c8056a41086a2002290300370300200920092903b0043703c8052009200b2903003703b004200941c8056a4120200941b0046a410810054201211a0c010b200941e8026a2903002119200941e0026a290300211a20092903d802211b200928029c02210a200928029802210b2009280290022101200928028c02210d2009280284022108200928028002210e20092802f801210320092802f4012102024020092802ec01450d0020092802e80110200b02402002450d002003450d00200210200b0240200e450d002008450d00200e10200b0240200d450d002001450d00200d10200b200b450d00200a450d00200b10200b200941c8056a41206a2019370300200941e0056a201a370300200941d8056a201b3703002009200c3703d0052009200941e0006a3602c805200941003602b804200942013703b004200941e0006a200941b0046a10f903200941d0056a200941b0046a10940120092802b404210b2009412020092802b004220d20092802b80410050240200b450d00200d10200b024020092d00b0014102460d0002402009280274450d00200928027010200b0240200928027c220b450d0020094180016a280200450d00200b10200b0240200928028801220b450d002009418c016a280200450d00200b10200b0240200928029401220b450d0020094198016a280200450d00200b10200b20092802a001220b450d00200941a4016a280200450d00200b10200b200941c8056a41106a2000290300370300200941d0056a41103a0000200941163a00c805200941c8056a1077200941e0066a24000f0b411f4101102d000b413e4101102d000b200b4101102d000b200a4101102d000b20034101102d000b20044101102d000b20054101102d000b411f4101102d000b413e4101102d000b102c000bb50a03087f017e027f230041b0046b2203240041042104200141046a280000210520012d00002106200341cc016a41026a2207200141036a2d00003a0000200341a8036a41086a2208200141186a290000370300200341a8036a41106a2209200141206a2d00003a0000200320012f00013b01cc012003200141106a2900003703a8034101210a200141086a290000210b024020064101470d00200341b8026a41026a20072d00003a0000200341206a41086a2008290300370300200341206a41106a20092d00003a0000200320032f01cc013b01b802200320032903a8033703204100210a200521040b20034190026a41026a200341b8026a41026a2d00003a0000200341e0026a41086a200341206a41086a290300370300200341e0026a41106a200341206a41106a2d00003a0000200320032f01b8023b019002200320032903203703e0020240024002400240200a0d00200341176a200341e0026a41086a2903003700002003411f6a200341e0026a41106a2d00003a0000200320032f0190023b01002003200b37000720032004360003200320032903e00237000f200320034192026a2d00003a0002200341a8036a200210d60241012101024020032802a8034101470d0020032802b003210420032802ac03210c0c030b20032802b0032104200341e0026a200341b4036a41c40010cd051a200341b8026a41086a20034190046a290300370300200341b8026a41106a20034198046a290300370300200341b8026a41186a2201200341a0046a290300370300200341b8026a41206a2205200341a8046a290300370300200320034188046a2903003703b80220034184046a280200210a20034180046a2802002106200341f8036a2802000d01200341fc036a280200210d200341a8036a200341e0026a41c40010cd051a20034190026a41206a200529030037030020034190026a41186a200129030037030020034190026a41106a200341b8026a41106a29030037030020034190026a41086a200341b8026a41086a290300370300200320032903b80237039002410021010c020b419affc6002101410f210a024002400240024002400240024020040e0700010203040506000b200b422088a7210a200ba721010c050b418cffc6002101410e210a0c040b4180ffc6002101410c210a0c030b41f7fec60021014109210a0c020b41e4fec60021014113210a0c010b41d3fec60021014111210a0b2000200136020420004101360200200041086a200a3602000c020b411521044101210141bcdec200210c0240200a0d000c010b200610200b200341cc016a200341a8036a41c40010cd051a200341a0016a41206a220520034190026a41206a290300370300200341a0016a41186a220720034190026a41186a290300370300200341a0016a41106a220820034190026a41106a290300370300200341a0016a41086a220920034190026a41086a29030037030020032003290390023703a00102402001450d002000200c36020420004101360200200041086a20043602000c010b20032004360220200341206a410472200341cc016a41c40010cd051a200341f4006a200a360200200341f0006a2006360200200341ec006a200d360200200341f8006a20032903a00137030020034188016a200829030037030020034190016a200729030037030020034198016a20052903003703002003410036026820032009290300370380010240200320034180016a412010cf050d00200041086a200341206a41800110cd051a200041003602000c010b200041e3dfc20036020420004101360200200041086a41223602000b200341b0046a24000b970904037f017e047f017e230041d0016b22022400200241086a41086a220342003703002002420037030841e6ebc2004121200241086a1000200241b8016a41086a2003290300370300200220022903083703b80120024100360208200241b8016a4110200241086a100321030240024002400240024020022802082204417f460d002003450d0020044108490d032003290000210520031020200241c8006a2005108001200241086a41386a200241c8006a41386a290300370300200241086a41306a200241c8006a41306a290300370300200241086a41286a200241c8006a41286a290300370300200241086a41206a200241c8006a41206a290300370300200241086a41186a200241c8006a41186a290300370300200241086a41106a200241c8006a41106a290300370300200241086a41086a200241c8006a41086a2903003703002002200229034837030841042103200141046a280000210620012d00002107200241cc016a41026a2208200141036a2d00003a0000200241b8016a41086a200141186a290000370300200241b8016a41106a2209200141206a2d00003a0000200220012f00013b01cc012002200141106a2900003703b80141012104200141086a290000210a024020074101470d00200241b4016a41026a20082d00003a0000200241a0016a41086a200241b8016a41086a290300370300200241a0016a41106a20092d00003a0000200220022f01cc013b01b401200220022903b8013703a00141002104200621030b2002419c016a41026a200241b4016a41026a2d00003a000020024188016a41086a2201200241a0016a41086a29030037030020024188016a41106a200241a0016a41106a2d00003a0000200220022f01b4013b019c01200220022903a0013703880120040d01200241df006a2001290300370000200241e7006a20024188016a41106a2d00003a0000200220022f019c013b01482002200a37004f2002200336004b200220022903880137005720022002419e016a2d00003a004a200241c8006a200241246a412010cf050d0220004100360200200041086a2005370300200041106a2002290308370300200041186a200241086a41086a290300370300200041206a200241086a41106a290300370300200041286a200241086a41186a290300370300200041306a200241086a41206a290300370300200041386a200241086a41286a290300370300200041c0006a200241086a41306a290300370300200041c8006a200241086a41386a2903003703000c040b200041b5dcc20036020420004101360200200041086a41173602000c030b419affc6002101410f2104024002400240024002400240024020030e0700010203040506000b200a422088a72104200aa721010c050b418cffc6002101410e21040c040b4180ffc6002101410c21040c030b41f7fec6002101410921040c020b41e4fec6002101411321040c010b41d3fec6002101411121040b2000200136020420004101360200200041086a20043602000c020b200041ccdcc20036020420004101360200200041086a41123602000c010b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000b200241d0016a24000bf20402057f047e230041b0036b22032400200341003602b00120012002200341b0016a1003210402400240024002400240024020032802b0012205417f460d0020040d010b200042023703b8010c010b2003200536020420032004360200200341b0016a200310f70320034188026a2802004102460d03200341086a200341b0016a41a80110cd051a200341e0026a2802002106200341dc026a280200210220032802e402210720032802d8022101200341e8026a2003109301024020032903e80222084202520d0002402002450d00200221040340200128026021012004417f6a22040d000b03402002417f6a22020d000b0b02402006450d004100210241002104410021000340200320023602ac03200320043602a803200320013602a403200320003602a00320034188036a200341a0036a1061200328029003210020032802940321012003280298032104200328029c0321022006417f6a22060d000b0b200141908cc500460d0420012802002106200110202006450d0420062802002102200610202002450d04200228020022010d020c030b2000200341086a41a80110cd05220020073602b401200020063602b001200020023602ac01200020013602a80120034188036a41106a20034180036a290300220937030020034190036a200341e8026a41106a290300220a370300200320032903f002220b37038803200020083703b8012000200b3703c001200041c8016a200a370300200041d0016a20093703002005450d00200410200b200341b0036a24000f0b0340200210202001210220012802002206210120060d000b0b200210200b41ceb8c4004133200341b0016a41fcbfc4004184b9c400102e000b8c0a03047f017e027f230041c0056b2202240020022001370300200241d8036a41186a22034200370300200241d8036a41106a22044200370300200241d8036a41086a22054200370300200242003703d80341edecc200412e200241d8036a100120024180026a41186a200329030037030020024180026a41106a200429030037030020024180026a41086a2005290300370300200220022903d80337038002200241003602d80320024180026a4120200241d8036a1003210302400240024020022802d8032204417f460d002003450d00024020044108490d002003290000210120031020200241086a200110ec03200241d8036a200241086a4120108d042002290390054202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200241d8036a41fcbfc4004184b9c400102e000b200241d8036a41186a22034200370300200241d8036a41106a22044200370300200241d8036a41086a22054200370300200242003703d80341edecc200412e200241d8036a100120024180026a41186a200329030037030020024180026a41106a200429030037030020024180026a41086a2005290300370300200220022903d80337038002200220013703d80320024180026a4120200241d8036a4108100520004200370310200042003703000c010b20024180026a200241d8036a41d80110cd051a200241286a20024180026a41b80110cd051a200241f8016a2203200241d0036a290300370300200241f0016a200241c8036a2903002206370300200241e0016a41086a200241c0036a290300370300200220022903b8033703e001200241d8036a200241286a41b80110cd051a20024194056a2003410020064201511b36020020022002360290052002410036028802200242013703800220022903d803210602400240024002404108101e2203450d0020024108360284022002200228028802220441086a360288022002200336028002200320046a200637000020024180056a20024180026a1062200241d8036a41086a20024180026a10fa03200241d8036a41b8016a20024180026a107e2002280284022103200241086a41202002280280022204200228028802100502402003450d00200410200b20024188056a28020021042002280280052103024020024184056a2802002205450d00200521070340200328026021032007417f6a22070d000b03402005417f6a22050d000b0b02402004450d004100210541002107410021080340200220083602bc05200220073602b805200220033602b405200220053602b00520024180026a200241b0056a10612002280288022105200228028c022103200228029002210720022802940221082004417f6a22040d000b0b200341908cc500460d0320032802002105200310202005450d0320052802002104200510202004450d03200428020022030d010c020b41084101102d000b0340200410202003210420032802002205210320050d000b0b200410200b20022903002106200241d8036a41186a22034200370300200241d8036a41106a22044200370300200241d8036a41086a22054200370300200242003703d80341edecc200412e200241d8036a100120024180026a41186a200329030037030020024180026a41106a200429030037030020024180026a41086a2005290300370300200220022903d80337038002200220063703d80320024180026a4120200241d8036a41081005200041186a200137030020004201370310200042003703000b200241c0056a24000ba51101227f230041b0036b22022400024002400240024002400240024002404126101e2203450d002003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d0120032001370026200241f8016a41186a22044200370300200241f8016a41106a22054200370300200241f8016a41086a22064200370300200242003703f8012003412e200241f8016a1001200241286a41186a2004290300370300200241286a41106a2005290300370300200241286a41086a2006290300370300200220022903f801370328200310200240200241286a412041e4fdc600410041001002417f460d004126101e2203450d032003411e6a41002900e5ec42370000200341186a41002900dfec42370000200341106a41002900d7ec42370000200341086a41002900cfec42370000200341002900c7ec423700002003412641cc0010222203450d0420032001370026200241f8016a41186a22044200370300200241f8016a41106a22054200370300200241f8016a41086a22064200370300200242003703f8012003412e200241f8016a1001200241286a41186a2004290300370300200241286a41106a2005290300370300200241286a41086a2006290300370300200220022903f80137032820031020200241003602f801200241286a4120200241f8016a1003210720022802f8012208417f460d062007450d06200220083602d401200220073602d001200241f8016a200241d0016a10f70320022802d00222034102460d05200241b0016a41086a200241f8016a41106a29030037030020024188016a41086a2002419c026a29020037030020024188016a41106a200241a4026a290200370300200241a0016a200241ac026a290200370300200241a8016a200241b4026a280200360200200241f0006a41086a200241c4026a290200370300200241f0006a41106a200241cc026a28020036020020022002290380023703b001200220022902940237038801200220022902bc0237037020022903f8012101200228029002210920022802b802210a20024194036a2f0100210620024190036a280200210b2002418c036a280200210c20024188036a280200210d20024184036a280200210e20024180036a280200210f200241fc026a2802002110200241f8026a2802002111200241f4026a2802002112200241f0026a2802002113200241ec026a2802002114200241e8026a2802002115200241e4026a2802002116200241e0026a2802002117200241dc026a2802002118200241d8026a280200211920022802d402211a200241e0006a41086a2002419e036a2f01003b01002002200229019603370360200241a0036a2802002104200241a4036a2802002105200241a8036a280200211b200241ac036a280200211c2008450d07200710200c070b200041f5dcc20036020420004101360200200041086a411e3602000c070b41264101102d000b41cc004101102d000b41264101102d000b41cc004101102d000b41ceb8c400413320024188016a41fcbfc4004184b9c400102e000b410221030b200241e8016a41086a2208200241b0016a41086a290300370300200241f8016a41086a221d20024188016a41086a290300370300200241f8016a41106a221e20024188016a41106a290300370300200241f8016a41186a221f20024188016a41186a290300370300200241f8016a41206a222020024188016a41206a280200360200200220022903b0013703e80120022002290388013703f801200241d0016a41086a2221200241f0006a41086a290300370300200241d0016a41106a2222200241f0006a41106a280200360200200220022903703703d001200241c0016a41086a2223200241e0006a41086a2f01003b0100200220022903603703c001410221070240024020034102470d004200210141908cc5002104410021054100211b410021064100210c4100210e41002110410021124100211441002116410021184100211941022109410021030c010b200241d0006a41086a2008290300370300200241286a41086a201d290300370300200241286a41106a201e290300370300200241286a41186a201f290300370300200241286a41206a2020280200360200200241106a41086a2021290300370300200241106a41106a2022280200360200200220022903e801370350200220022903f801370328200220022903d001370310200241086a20232f01003b0100200220022903c001370300200a21070b200241f8016a2001109004200041086a2001370300200041206a2009360200200041c8006a2007360200200041106a2002290350370300200041186a200241d0006a41086a290300370300200041246a20022903283702002000412c6a200241286a41086a290300370200200041346a200241286a41106a2903003702002000413c6a200241286a41186a290300370200200041c4006a200241286a41206a280200360200200041cc006a2002290310370200200041d4006a200241106a41086a290300370200200041dc006a200241106a41106a280200360200200041a4016a20063b0100200041a0016a200b3602002000419c016a200c36020020004198016a200d36020020004194016a200e36020020004190016a200f3602002000418c016a201036020020004188016a201136020020004184016a201236020020004180016a2013360200200041fc006a2014360200200041f8006a2015360200200041f4006a2016360200200041f0006a2017360200200041ec006a2018360200200041e8006a2019360200200041e4006a201a360200200041e0006a2003360200200041bc016a201c360200200041b8016a201b360100200041b4016a2005360100200041b0016a2004360100200041ae016a200241086a2f01003b0100200020022903003701a601200041c0016a200241f8016a41a00110cd051a200041003602000b200241b0036a24000bc60401057f23004190036b220224000240024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032001370012200241e8016a41186a22044200370300200241e8016a41106a22054200370300200241e8016a41086a22064200370300200242003703e8012003411a200241e8016a1001200241a0016a41186a2004290300370300200241a0016a41106a2005290300370300200241a0016a41086a2006290300370300200220022903e8013703a00120031020200241003602e801200241a0016a4120200241e8016a100321040240024020022802e8012205417f470d00410221030c010b024020040d00410221030c010b2002200536028c032002200436028803200241e8016a20024188036a10b90420022802bc0222034102460d03200241c8006a200241e8016a41d40010cd051a2002200241c0026a41c80010cd051a2005450d00200410200b200241e8016a200241c8006a41d40010cd051a200241a0016a200241c80010cd051a0240024020034102470d0020004200370284014100210320004100360250200042013703900120004102360210200041d8006a410036020020004198016a4100360200200041386a41023602000c010b2000200241e8016a41d40010cd0541d8006a200241a0016a41c80010cd051a0b2000200336025420024190036a24000f0b41124101102d000b41244101102d000b41ceb8c4004133200241c8006a41fcbfc4004184b9c400102e000bb31003077f017e027f230041e0036b2205240002400240024002400240024002404116101e2206450d002006410e6a41002900aad543370000200641086a41002900a4d5433700002006410029009cd54337000020064116412c10222206450d0120062000370016200541b0026a41186a22074200370300200541b0026a41106a22084200370300200541b0026a41086a22094200370300200542003703b0022006411e200541b0026a1001200541086a41186a220a2007290300370300200541086a41106a220b2008290300370300200541086a41086a2009290300370300200520052903b0023703082006102002400240200541086a412041e4fdc600410041001002417f470d00410121060c010b200541b0026a200010e502200541106a2008290300370300200b2007290300370300200a200541b0026a41206a290300370300200541086a41206a200541b0026a41286a290300370300200541086a41286a200541b0026a41306a290300370300200541086a41306a200541b0026a41386a290300370300200541086a41386a200541f0026a290300370300200520052903b802370308200541b0026a20052903b002220c109004410021060b200541f0016a41386a2207200541086a41386a2208290300370300200541f0016a41306a2209200541086a41306a290300370300200541f0016a41286a220d200541086a41286a220e290300370300200541f0016a41206a200541086a41206a290300370300200541f0016a41186a200a290300370300200541f0016a41106a200b290300370300200541f0016a41086a220a200541086a41086a290300370300200520052903083703f001200541d0006a200541b0026a41a00110cd051a0240024020060d00200541086a41106a200a290300370300200541086a41186a200541f0016a41106a290300370300200541086a41206a200541f0016a41186a290300370300200e200541f0016a41206a29030037030020082009290300370300200541c8006a20072903003703002005200c370308200520052903f0013703102005200d290300370338200541b0026a200541d0006a41a00110cd051a4101210920052d00380d072005280284034101460d01410221090c070b410021090c070b20054188036a2d0000210d02400240200541a4036a2802000d0041908cc50021060c010b20052005419c036a3602582005200528029c033602542005200541a0036a280200360250200541f0016a200541d0006a10ea0220052802f001210620052802f8012107024020052802f4012208450d002008210a034020062802602106200a417f6a220a0d000b03402008417f6a22080d000b0b2007450d00410021084100210a4100210b03402005200b3602fc012005200a3602f801200520063602f401200520083602f001200541d0006a200541f0016a106120052802582108200528025c21062005280260210a2005280264210b2007417f6a22070d000b0b200641908cc500460d0420062802002108200610202008450d0420082802002107200810202007450d04200728020022060d020c030b41164101102d000b412c4101102d000b0340200710202006210720062802002208210620080d000b0b200710200b41022109200d41ff01710d004104410520052802c0024102461b4105200141014622061b2207410320021b200720061b22094105470d0041044105200541e8026a2802004102461b4105200341014622061b2207410320041b200720061b22094105470d002005200541086a20002001200220032004410010c40341ff017122063a00d70302400240024002402006450d00200528028403450d0320052802a4032107200528029c0321060240200541a0036a2802002208450d002008210a034020062802602106200a417f6a220a0d000b03402008417f6a22080d000b0b02402007450d00410021084100210a4100210b03402005200b3602fc012005200a3602f801200520063602f401200520083602f001200541d0006a200541f0016a106120052802582108200528025c21062005280260210a2005280264210b2007417f6a22070d000b0b200641908cc500460d0320062802002108200610202008450d0320082802002107200810202007450d03200728020022060d010c020b200541fc016a410d360200200541e4006a410236020020054203370254200541f4a8c4003602502005410d3602f4012005200541d7036a3602d803200541f1a8c4003602dc032005200541f0016a3602602005200541dc036a3602f8012005200541d8036a3602f001200541d0006a41d483c6001033000b0340200710202006210720062802002208210620080d000b0b200710200b0240200541c4036a280200450d0020052802c00310200b0240200541c8006a280200450d00200528024410200b410521090c010b0240200528028403450d00200541a4036a28020021072005419c036a28020021060240200541a0036a2802002208450d002008210a034020062802602106200a417f6a220a0d000b03402008417f6a22080d000b0b02402007450d00410021084100210a4100210b0340200520083602fc012005200a3602f801200520063602f4012005200b3602f001200541d0006a200541f0016a10612005280258210b200528025c21062005280260210a200528026421082007417f6a22070d000b0b200641908cc500460d0020062802002108200610202008450d0020082802002107200810202007450d00024020072802002206450d000340200710202006210720062802002208210620080d000b0b200710200b0240200541c4036a280200450d0020052802c00310200b200541c8006a280200450d00200528024410200b200541e0036a240020090bea4c09017f017e047f037e017f057e0e7f037e1b7f230041b0056b22042400024020012903004201520d0020012903082105024002400240024002400240024002404123101e2206450d002006411f6a41002800ddf041360000200641186a41002900d6f041370000200641106a41002900cef041370000200641086a41002900c6f041370000200641002900bef0413700002006412341c60010222206450d0120062005370023200441a0016a41186a22074200370300200441a0016a41106a22084200370300200441a0016a41086a22094200370300200442003703a0012006412b200441a0016a100120044180046a41186a200729030037030020044180046a41106a200829030037030020044180046a41086a2009290300370300200420042903a001370380042006102020044180046a412041e4fdc600410041001002417f460d054123101e2206450d022006411f6a41002800ddf041360000200641186a41002900d6f041370000200641106a41002900cef041370000200641086a41002900c6f041370000200641002900bef0413700002006412341c60010222206450d0320062005370023200441a0016a41186a22074200370300200441a0016a41106a22084200370300200441a0016a41086a22094200370300200442003703a0012006412b200441a0016a100120044180046a41186a200729030037030020044180046a41106a200829030037030020044180046a41086a2009290300370300200420042903a0013703800420061020200441003602a00120044180046a4120200441a0016a1003210720042802a0012209417f460d062007450d0620042009360294032004200736029003200441a0016a20044190036a10bb0320042802e00122064102460d04200441d0046a200441f8016a290300370300200441d8046a20044180026a290300370300200441c8046a41186a20044188026a2903003703002004200441f0016a2903003703c804200441d8016a290300210a200441c8016a290300210b200441a0016a41186a290300210c200441ec016a280200210d200441e8016a280200210820042903d001210e20042903c001210f20042903b001211020042903a801211120042903a00121122009450d07200710200c070b41234101102d000b41c6004101102d000b41234101102d000b41c6004101102d000b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b41c8aac3004116200441a8056a41e0aac30041f0aac300102e000b410221060b200441a0016a41186a2207200441c8046a41186a290300370300200441a0016a41106a2209200441c8046a41106a290300370300200441a0016a41086a2213200441c8046a41086a290300370300200420042903c8043703a0010240024020064102470d004200210e200441c0026a41186a4200370300200441c0026a41106a4200370300200441c0026a41086a4200370300200442003703c002410021064200210a4200210f4200210b420021104200210c4200211142002112410021080c010b200441c0026a41186a2007290300370300200441c0026a41106a2009290300370300200441c0026a41086a2013290300370300200420042903a0013703c002200641014621060b200441d8036a41086a2207200441c0026a41086a290300370300200441d8036a41106a2209200441c0026a41106a290300370300200441d8036a41186a2213200441c0026a41186a290300370300200420042903c0023703d8032006450d00200441d8016a200a370300200441c8016a200b370300200441a0016a41186a200c370300200441ec016a200d360200200441f8016a200729030037030020044180026a200929030037030020044188026a20132903003703002004200e3703d0012004200f3703c001200420103703b001200441003602e001200420113703a801200420123703a001200420042903d8033703f001200420084101463602e8012005200441a0016a10c0030b107921140240024002400240024002400240024002400240024002400240024002400240024020032802082206417f4c0d00200328020021074101210302402006450d002006101e2203450d020b20032007200610cd05210d200241ff0171211302400240200141186a28020022034102470d004101210902402006450d002006101e2209450d050b2009200d200610cd051a410a4108200241ff01714101461b2115200141186a28020021034100211641022117410221080c010b20044180046a41026a200441016a41026a2d00003a0000200420042f00013b01800441012117200141246a2001411c6a201341014622021b2802002118200141206a280200200320021b210820012903102105410b2115200d2109410121160b2000290300210a41022119200441046a41026a220220044180046a41026a2d00003a0000200420042f0180043b0104200441086a41086a200441a0016a41086a290300370300200441086a41106a200441a0016a41106a290300370300200441086a41186a200441a0016a41186a290300370300200420042800c8043602282004200441cb046a28000036002b200420042903a001370308200441c8046a41026a20022d00003a0000200420042f01043b01c80420044180016a41186a200141f8006a29000037030020044180016a41106a200141f0006a29000037030020044180016a41086a200141e8006a2900003703002004200129006037038001200141086a290300210f2001290300210b0240024020034102470d000c010b20034101462119200141206a280200410146211a200141246a280200211b2001411c6a280200211c200129031021100b4100210702400240024020012802480e03020100020b200141d8006a2802002203417f4c0d02200141d0006a28020021070240024020030d00410121020c010b2003101e2202450d060b200420033602a801200420033602a401200420023602a00120022007200310cd051a410221070c010b200141d8006a2802002203417f4c0d01200141d0006a280200211d410121074101210202402003450d002003101e2202450d060b200420033602a801200420033602a401200420023602a0012002201d200310cd051a0b200441306a41086a20044180016a41086a290300370300200441306a41106a20044180016a41106a290300370300200441306a41186a20044180016a41186a290300370300200441d4006a41026a200441c8046a41026a2d00003a00002004200429038001370330200420042f01c8043b0154200141386a280200211d200141306a290300210c200141286a29030021112001290340211202400240200741014b0d0020070e020100010b2003450d00200210200b200441fc006a41026a200441d4006a41026a2d00003a0000200441d8006a41086a200441306a41086a290300370300200441d8006a41106a200441306a41106a290300370300200441d8006a41186a200441306a41186a290300370300200420042f01543b017c20042004290330370358411f101e2201450d05200141176a41002900a6ef42370000200141106a410029009fef42370000200141086a4100290097ef423700002001410029008fef423700002000290300210e2001411f413e10222201450d062001200e37001f200441a0016a41186a22034200370300200441a0016a41106a22024200370300200441a0016a41086a22074200370300200442003703a00120014127200441a0016a100120044180016a41186a200329030037030020044180016a41106a200229030037030020044180016a41086a2007290300370300200420042903a0013703800120011020200441003602a00120044180016a4120200441a0016a100321010240024020042802a0012203417f460d002001450d0020042003360284042004200136028004200441a0016a20044180046a10ef030240024020042903a0014202510d0020044198036a20044180026a29030037030020044190036a41106a20044188026a29030037030020044190036a41186a220720044190026a29030037030020044190036a41206a221e20044198026a2903003703002004200441f8016a29030037039003200441f0016a280200211f200441e8016a280200210220042802f4012120200441c8046a20044180046a10930120042903c80422214202520d010240200241014b0d0020020e020100010b2020450d00201f10200b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b200441e0026a41206a201e290300370300200441e0026a41186a2007290300370300200441c8046a41106a2903002122200441c8046a41186a290300210e20042903d004212302402003450d00200110200b200241014b0d0120020e021201120b2004200036028c03200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22024200370300200442003703a00141aeefc2004127200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2002290300370300200420042903a00137038004200441003602a00120044180046a4120200441a0016a100321010240024020042802a0012203417f460d002001450d00024020034108490d002001290000210e20011020200441c0026a200e10ee03200441003602a001200441c0026a4120200441a0016a10032101024020042802a0012203417f460d0020010d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b42002122200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22024200370300200442003703a00141aeefc2004127200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2002290300370300200420042903a00137038004200420002903003703a00120044180046a4120200441a0016a41081005420021210c120b200420033602c404200420013602c004200441a0016a200441c0046a10ef030240024020042903a00122214202510d00200441c8046a41386a2202200441e0016a290300370300200441c8046a41306a2207200441a0016a41386a290300370300200441c8046a41286a221e200441a0016a41306a290300370300200441c8046a41206a2220200441a0016a41286a290300370300200441c8046a41186a221f200441a0016a41206a290300370300200441c8046a41106a2224200441a0016a41186a290300370300200441c8046a41086a2225200441a0016a41106a290300370300200420042903a8013703c804200441e8016a2802002126200441f0016a280200212720042802ec01212820042802f401212920044190036a41206a222a20044198026a29030037030020044190036a41186a222b20044190026a29030037030020044190036a41106a222c20044188026a29030037030020044190036a41086a222d20044180026a2903003703002004200441f8016a2903003703900320044188056a200441c0046a1093012004290388054202520d010240202641014b0d0020260e020100010b2029450d00202710200b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b20044180046a41386a222e200229030037030020044180046a41306a222f200729030037030020044180046a41286a2230201e29030037030020044180046a41206a2231202029030037030020044180046a41186a2232201f29030037030020044180046a41106a2233202429030037030020044180046a41086a22342025290300370300200441e0026a41086a2235202d290300370300200441e0026a41106a2236202c290300370300200441e0026a41186a2237202b290300370300200441e0026a41206a2238202a290300370300200420042903c8043703800420042004290390033703e002200441d8036a41086a22392035290300370300200441d8036a41106a223a2036290300370300200441d8036a41186a223b2037290300370300200441d8036a41206a223c2038290300370300200441b8036a41086a223820044188056a41086a290300370300200441b8036a41106a223d20044188056a41106a290300370300200441b8036a41186a223e20044188056a41186a290300370300200420042903e0023703d80320042004290388053703b8032002202e2903003703002007202f290300370300201e203029030037030020202031290300370300201f2032290300370300202420332903003703002025203429030037030020042004290380043703c804202a203c290300370300202b203b290300370300202c203a290300370300202d2039290300370300200420042903d803370390032037203e2903003703002036203d29030037030020352038290300370300200420042903b8033703e00202402003450d00200110200b200441a0016a41386a2201200441c8046a41386a2203290300370300200441a0016a41306a2202200441c8046a41306a2207290300370300200441a0016a41286a221e200441c8046a41286a2220290300370300200441a0016a41206a221f200441c8046a41206a2224290300370300200441a0016a41186a2225200441c8046a41186a222a290300370300200441a0016a41106a222b200441c8046a41106a222c290300370300200441a0016a41086a2236200441c8046a41086a222d29030037030020044180046a41086a223720044190036a41086a222e29030037030020044180046a41106a222f20044190036a41106a223029030037030020044180046a41186a223120044190036a41186a223529030037030020044180046a41206a223220044190036a41206a290300370300200420042903c8043703a00120042004290390033703800420044188056a41186a2233200441e0026a41186a29030037030020044188056a41106a2234200441e0026a41106a29030037030020044188056a41086a2238200441e0026a41086a290300370300200420042903e00237038805202d2036290300370300202c202b290300370300202a20252903003703002024201f2903003703002020201e2903003703002007200229030037030020032001290300370300200420042903a0013703c804200441d8036a41086a22362037290300370300200441d8036a41106a2237202f290300370300200441d8036a41186a222f2031290300370300200441d8036a41206a2231203229030037030020042004290380043703d80320352033290300370300203020342903002222370300202e2038290300370300200420042903880537039003200441f4016a2029360200200441f0016a2027360200200441ec016a2028360200200420213703a001202b202d2903003703002025202c290300370300201f202a290300370300201e20242903003703002002202029030037030020012007290300370300200441e0016a2003290300370300200420263602e801200420042903c8043703a801200441a4026a2035410020224201511b36020020044198026a203129030037030020044190026a202f29030037030020044188026a2037290300370300200441f8016a20042903d803370300200420362903003703800220042004418c036a3602a0022004410036028804200442013703800420044180026a20044180046a10ca0120042802840421032004280288042101024020042903a0014201510d00024020032001460d0020042802800421030c0c0b200141016a22032001490d0d200141017422022003200220034b1b22024100480d0d0240024020010d002002101e21030c010b20042802800420012002102221030b02402003450d002004200236028404200420033602800420042802880421010c0c0b20024101102d000b0240024020032001460d0020042802800421030c010b200141016a22032001490d0d200141017422022003200220034b1b22024100480d0d0240024020010d002002101e21030c010b20042802800420012002102221030b2003450d092004200236028404200420033602800420042802880421010b2004200141016a36028804200320016a41013a000020042903a80121210240200428028404220320042802880422016b4108490d0020042802800421030c0a0b200141086a22022001490d0c200341017422012002200120024b1b22014100480d0c0240024020030d002001101e21030c010b20042802800420032001102221030b02402003450d002004200136028404200420033602800420042802880421010c0a0b20014101102d000b2020450d10201f10200c100b102c000b20064101102d000b20064101102d000b20034101102d000b20034101102d000b411f4101102d000b413e4101102d000b20024101102d000b2004200141086a36028804200320016a20213700000c010b2004200141016a36028804200320016a41003a00000b024002400240200441b8016a2802004102470d0002402004280284042004280288042201460d0020042802800421030c020b200141016a22032001490d03200141017422022003200220034b1b22024100480d030240024020010d002002101e21030c010b20042802800420012002102221030b02402003450d002004200236028404200420033602800420042802880421010c020b20024101102d000b024002402004280284042004280288042201460d0020042802800421030c010b200141016a22032001490d03200141017422022003200220034b1b22024100480d030240024020010d002002101e21030c010b20042802800420012002102221030b02402003450d002004200236028404200420033602800420042802880421010c010b20024101102d000b2004200141016a36028804200320016a41013a0000200441b0016a20044180046a10f5030c010b2004200141016a36028804200320016a41003a00000b200441e8016a20044180046a10f60320042903c801212102400240200428028404220320042802880422016b4108490d0020042802800421030c010b200141086a22022001490d01200341017422012002200120024b1b22014100480d010240024020030d002001101e21030c010b20042802800420032001102221030b2003450d022004200136028404200420033602800420042802880421010b2004200141086a36028804200320016a2021370000200441d0016a290300212102400240200428028404220320042802880422016b4108490d0020042802800421030c010b200141086a22022001490d01200341017422012002200120024b1b22014100480d010240024020030d002001101e21030c010b20042802800420032001102221030b2003450d032004200136028404200420033602800420042802880421010b2004200141086a36028804200320016a2021370000200441d8016a280200210202400240200428028404220320042802880422016b4104490d0020042802800421030c010b200141046a22072001490d01200341017422012007200120074b1b22014100480d010240024020030d002001101e21030c010b20042802800420032001102221030b2003450d042004200136028404200420033602800420042802880421010b2004200141046a36028804200320016a200236000020042903e00121210240200428028404220320042802880422016b4108490d0020042802800421030c050b200141086a22022001490d00200341017422012002200120024b1b22014100480d000240024020030d002001101e21030c010b20042802800420032001102221030b02402003450d002004200136028404200420033602800420042802880421010c050b20014101102d000b1027000b20014101102d000b20014101102d000b20014101102d000b2004200141086a36028804200320016a2021370000200441a0026a20044180046a1081012004280284042101200441c0026a41202004280280042203200428028804100502402001450d00200310200b0240024020042802e801220141014b0d00024020010e020200020b20042802f401450d0120042802f00110200c010b20042802f401450d0020042802f00110200b200428028c03210142002121200441a0016a41186a22034200370300200441a0016a41106a22024200370300200441a0016a41086a22074200370300200442003703a00141aeefc2004127200441a0016a100120044180046a41186a200329030037030020044180046a41106a200229030037030020044180046a41086a2007290300370300200420042903a00137038004200420012903003703a00120044180046a4120200441a0016a41081005420121220b200441fc016a20134101463a0000200441f8016a2006360200200441f4016a2006360200200441f0016a2009360200200441ec016a2014360200200441d8016a201d360200200441d0016a200c370300200441c4016a201b360200200441a0016a41206a201a360200200441bc016a201c360200200441a0016a41186a2019360200200441ff016a200441fe006a2d00003a0000200420173602e801200420123703e001200420113703c801200420103703b0012004200f3703a8012004200b420151ad3703a001200420042f017c3b00fd01200441b8026a200e370300200441b0026a2022370300200441a8026a202337030020044198026a200441d8006a41186a29030037030020044190026a200441e8006a29030037030020044188026a200441e0006a290300370300200420213703a0022004200429035837038002200441203602cc04200420044180016a3602c804200441a0016a200441c8046a10f4030240024020042802e801220141014b0d00024020010e020200020b20042802f401450d0120042802f00110200c010b20042802f401450d0020042802f00110200b02400240024002400240024020084102460d00200441e4036a2018360200200420083602e003200420053703d8032000290300210e4125101e2201450d012001411d6a41002900ddf042370000200141186a41002900d8f042370000200141106a41002900d0f042370000200141086a41002900c8f042370000200141002900c0f0423700002001412541ca0010222201450d0220012005370025200441a0016a41186a22034200370300200441a0016a41106a22004200370300200441a0016a41086a22024200370300200442003703a0012001412d200441a0016a100120044180016a41186a200329030037030020044180016a41106a200029030037030020044180016a41086a2002290300370300200420042903a0013703800120011020200441c8046a20044180016a412010ee020240024020042903c8044202520d002004200537038805200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22004200370300200442003703a00141e5f0c200412d200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2000290300370300200420042903a00137038004200441003602a00120044180046a4120200441a0016a1003210102400240024020042802a0012203417f460d002001450d00024020034108490d002001290000210520011020200441c0026a200510ef02200441a0016a200441c0026a412010ee0220042903a001220f4202520d0241b8e7c50041920141cce8c5001045000b41ceb8c4004133200441a8056a41fcbfc4004184b9c400102e000b4200210f200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22004200370300200442003703a00141e5f0c200412d200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2000290300370300200420042903a00137038004200420053703a00120044180046a4120200441a0016a410810050c010b20044180046a41086a200441a0016a41186a2201290300220c37030020044180046a41106a2203200441a0016a41206a290300220b37030020044180046a41186a200441c8016a29030022113703002004200441a0016a41106a220029030022123703800420042903a8012110200120113703002000200b370300200441a0016a41086a200c370300200420123703a00120044194046a20014100200b4201511b3602002004201037038804200420044188056a360290042004200f37038004200441003602980320044201370390034101101e210102400240200f4201510d0002402001450d00200141003a00002004428180808010370294032004200136029003200420103703e002200441e0026a21000c020b41014101102d000b2001450d07200141013a00002004428180808010370294032004200136029003200420103703e002200441e0026a21000b20014101410910222201450d0720012000290300370001200420013602900320044289808080900137029403200320044190036a107e2004280294032101200441c0026a41202004280290032203200428029803100502402001450d00200310200b200429038805210f200441a0016a41186a22014200370300200441a0016a41106a22034200370300200441a0016a41086a22004200370300200442003703a00141e5f0c200412d200441a0016a100120044180046a41186a200129030037030020044180046a41106a200329030037030020044180046a41086a2000290300370300200420042903a001370380042004200f3703a00120044180046a4120200441a0016a410810054201210f0b4200210b20042802e403211820042802e00321080c010b200441f0046a2903002105200441c8046a41206a290300210f200441e0046a2903002110200441d8046a290300210b0b200441c8016a2005370300200441a0016a41206a200f370300200441b8016a20103703002004200b3703b0012004200e3703a801200442013703a001200441203602cc04200420044180016a3602c804200441a0016a200441c8046a10f002200441d8036a2008201810ad0241ff017122014105470d050b200441a0016a41086a20153a0000200441a9016a2004280228360000200441ac016a200428002b360000200441a0016a41106a200a370300200441a0016a41186a2004290308370300200441c0016a200441086a41086a290300370300200441c8016a200441086a41106a290300370300200441d0016a200441086a41186a290300370300200441163a00a001200441a0016a107702402006410047201641017371450d00200d10200b200441b0056a24000f0b41254101102d000b41ca004101102d000b41014101102d000b41094101102d000b200420013a00a0014180abc3004127200441a0016a41a8abc30041b8abc300102e000bd12204057f027e047f017e230041d0036b22022400024002400240024002400240024002400240024002400240024002400240411c101e2203450d00200341186a410028009fec42360000200341106a4100290097ec42370000200341086a410029008fec4237000020034100290087ec423700002003411c413810222203450d012003200037001c20024190026a41186a2204420037030020024190026a41106a2205420037030020024190026a41086a2206420037030020024200370390022003412420024190026a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a2006290300370300200220022903900237030820031020200241286a200241086a109f04024020022903284202520d00200220003703880120024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241a3ecc200412420024190026a1001200241f0026a41186a2003290300370300200241f0026a41106a2004290300370300200241f0026a41086a200529030037030020022002290390023703f0022002410036029002200241f0026a412020024190026a10032103024002402002280290022204417f460d002003450d00024020044108490d002003290000210020031020411c101e22030d02411c4101102d000b41ceb8c400413320024190026a41fcbfc4004184b9c400102e000b4200210720024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241a3ecc200412420024190026a1001200241f0026a41186a2003290300370300200241f0026a41106a2004290300370300200241f0026a41086a200529030037030020022002290390023703f0022002200037039002200241f0026a412020024190026a41081005420021080c0a0b200341186a410028009fec42360000200341106a4100290097ec42370000200341086a410029008fec4237000020034100290087ec423700002003411c413810222203450d032003200037001c20024190026a41186a2204420037030020024190026a41106a2205420037030020024190026a41086a2206420037030020024200370390022003412420024190026a100120024190016a41186a200429030037030020024190016a41106a200529030037030020024190016a41086a200629030037030020022002290390023703900120031020200241f0026a20024190016a109f0420022903f0024202510d0420024190026a200241f0026a41e00010cd051a200241b0016a41386a220320024190026a41386a290300370300200241b0016a41306a220420024190026a41306a290300370300200241b0016a41286a220520024190026a41286a290300370300200241b0016a41206a220620024190026a41206a290300370300200241b0016a41186a220920024190026a41186a290300370300200241b0016a41106a220a20024190026a41106a290300370300200241b0016a41086a220b20024190026a41086a29030037030020022002290390023703b001200241f0016a41186a220c200241e8026a290300370300200241f0016a41106a200241e0026a2903002207370300200241f0016a41086a200241d8026a290300370300200220022903d0023703f001200241b4036a200c410020074201511b360200200241f0026a41386a2003290300370300200241f0026a41306a2004290300370300200241f0026a41286a2005290300370300200241f0026a41206a2006290300370300200241f0026a41186a2009290300370300200241f0026a41106a200a290300370300200241f0026a41086a200b290300370300200220022903b0013703f002200220024188016a3602b003200241003602980220024201370390022002418c036a20024190026a10ca01024020022903f0024201510d0002402002280294022002280298022203460d0020022802900221040c090b200341016a22042003490d0b200341017422052004200520044b1b22054100480d0b0240024020030d002005101e21040c010b20022802900220032005102221040b02402004450d002002200536029402200220043602900220022802980221030c090b20054101102d000b024002402002280294022002280298022203460d0020022802900221040c010b200341016a22042003490d0b200341017422052004200520044b1b22054100480d0b0240024020030d002005101e21040c010b20022802900220032005102221040b2004450d062002200536029402200220043602900220022802980221030b2002200341016a36029802200420036a41013a000020022903f80221070240200228029402220420022802980222036b4108490d0020022802900221040c070b200341086a22052003490d0a200441017422032005200320054b1b22034100480d0a0240024020040d002003101e21040c010b20022802900220042003102221040b02402004450d002002200336029402200220043602900220022802980221030c070b20034101102d000b20024180016a2903002100200241f8006a2903002107200241f0006a290300210d200241e8006a29030021080c080b411c4101102d000b41384101102d000b41384101102d000b41b8e7c50041920141cce8c5001045000b20054101102d000b2002200341086a36029802200420036a20073700000c010b2002200341016a36029802200420036a41003a00000b20022802800321050240024002400240024002400240200228029402220420022802980222036b4104490d0020022802900221040c010b200341046a22062003490d07200441017422032006200320064b1b22034100480d070240024020040d002003101e21040c010b20022802900220042003102221040b2004450d012002200336029402200220043602900220022802980221030b2002200341046a36029802200420036a200536000002402002280284034101460d0002402002280294022002280298022203460d0020022802900221040c050b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b20022802900220032005102221040b02402004450d002002200536029402200220043602900220022802980221030c050b20054101102d000b024002402002280294022002280298022203460d0020022802900221040c010b200341016a22042003490d07200341017422052004200520044b1b22054100480d070240024020030d002005101e21040c010b20022802900220032005102221040b2004450d022002200536029402200220043602900220022802980221030b2002200341016a36029802200420036a41013a000020022802880321050240200228029402220420022802980222036b4104490d0020022802900221040c030b200341046a22062003490d06200441017422032006200320064b1b22034100480d060240024020040d002003101e21040c010b20022802900220042003102221040b02402004450d002002200336029402200220043602900220022802980221030c030b20034101102d000b20034101102d000b20054101102d000b2002200341046a36029802200420036a20053600000c010b2002200341016a36029802200420036a41003a00000b200241b0036a20024190026a107e200228029402210320024190016a41202002280290022204200228029802100502402003450d00200410200b20022903880121074200210820024190026a41186a2203420037030020024190026a41106a2204420037030020024190026a41086a22054200370300200242003703900241a3ecc200412420024190026a1001200241f0026a41186a2003290300370300200241f0026a41106a2004290300370300200241f0026a41086a200529030037030020022002290390023703f0022002200737039002200241f0026a412020024190026a41081005420121070b200241c8036a2000370300200241c0036a2007370300200241b8036a200d370300200241f0026a41386a200141386a290300370300200241f0026a41306a200141306a290300370300200241f0026a41286a200141286a290300370300200241f0026a41206a200141206a290300370300200241f0026a41186a200141186a290300370300200241f0026a41106a200141106a290300370300200241f0026a41086a200141086a290300370300200220083703b003200220012903003703f002200241003602980220024201370390022002418c036a20024190026a10ca0102400240024020022903f0024201510d0002402002280294022002280298022201460d0020022802900221030c020b200141016a22032001490d03200141017422042003200420034b1b22044100480d030240024020010d002004101e21030c010b20022802900220012004102221030b02402003450d002002200436029402200220033602900220022802980221010c020b20044101102d000b02400240024002402002280294022002280298022201460d0020022802900221030c010b200141016a22032001490d05200141017422042003200420034b1b22044100480d050240024020010d002004101e21030c010b20022802900220012004102221030b2003450d012002200436029402200220033602900220022802980221010b2002200141016a36029802200320016a41013a000020022903f80221000240200228029402220320022802980222016b4108490d0020022802900221030c020b200141086a22042001490d04200341017422012004200120044b1b22014100480d040240024020030d002001101e21030c010b20022802900220032001102221030b02402003450d002002200136029402200220033602900220022802980221010c020b20014101102d000b20044101102d000b2002200141086a36029802200320016a20003700000c010b2002200141016a36029802200320016a41003a00000b200228028003210402400240200228029402220320022802980222016b4104490d0020022802900221030c010b200141046a22052001490d01200341017422012005200120054b1b22014100480d010240024020030d002001101e21030c010b20022802900220032001102221030b2003450d022002200136029402200220033602900220022802980221010b2002200141046a36029802200320016a200436000002402002280284034101460d0002402002280294022002280298022201460d0020022802900221030c060b200141016a22032001490d01200141017422042003200420034b1b22044100480d010240024020010d002004101e21030c010b20022802900220012004102221030b02402003450d002002200436029402200220033602900220022802980221010c060b20044101102d000b024002402002280294022002280298022201460d0020022802900221030c010b200141016a22032001490d01200141017422042003200420034b1b22044100480d010240024020010d002004101e21030c010b20022802900220012004102221030b2003450d032002200436029402200220033602900220022802980221010b2002200141016a36029802200320016a41013a000020022802880321040240200228029402220320022802980222016b4104490d0020022802900221030c040b200141046a22052001490d00200341017422012005200120054b1b22014100480d000240024020030d002001101e21030c010b20022802900220032001102221030b02402003450d002002200136029402200220033602900220022802980221010c040b20014101102d000b1027000b20014101102d000b20044101102d000b2002200141046a36029802200320016a20043600000c010b2002200141016a36029802200320016a41003a00000b200241b0036a20024190026a1094012002280294022101200241086a41202002280290022203200228029802100502402001450d00200310200b200241d0036a24000bc20904067f047e017f047e23004180016b22052400024002402002410671450d000240024002400240024002404110101e2206450d00200641002900dfbd45370000200641086a41002900e7bd45370000200542908080808002370254200520063602502001200541d0006a10ca012005280258210620052802502107200541e0006a41186a22084200370300200541e0006a41106a22094200370300200541e0006a41086a220a42003703002005420037036020072006200541e0006a1001200541306a41186a2008290300370300200541306a41106a2009290300370300200541306a41086a200a2903003703002005200529036037033002402005280254450d00200528025010200b20054100360260200541306a4120200541e0006a1003210620052802602207417f460d062006450d0620074110490d0320074170714110460d032007417c714120460d03200641086a290000210b2006290000210c200641186a290000210d2006290010210e20062800202107200610204114101e2206450d01200641002900ce8a45370000200641106a41002800de8a45360000200641086a41002900d68a4537000020054294808080c002370254200520063602502001200541d0006a10ca012005280258210620052802502108200541e0006a41186a22094200370300200541e0006a41106a220a4200370300200541e0006a41086a220f42003703002005420037036020082006200541e0006a1001200541306a41186a2009290300370300200541306a41106a200a290300370300200541306a41086a200f2903003703002005200529036037033002402005280254450d00200528025010200b20054100360260200541306a4120200541e0006a1003210620052802602208417f460d042006450d0420084110490d02200641086a290000211020062900002111200610200c050b41104101102d000b41144101102d000b41ceb8c4004133200541e0006a41fcbfc4004184b9c400102e000b41ceb8c4004133200541e0006a41fcbfc4004184b9c400102e000b42002111420021100b42002112200541106a200d420041001079220620076b2207200720064b1bad2213420010d205200541206a20134200200e420010d205200542004200200e420010d2054200210e02402005290308200529031884420052200541286a2903002213200529030020052903107c7c220d201354720d00200b200d200c2005290320221256200b200d56200b200d511b22061b200d7d200c201220061b220d201254ad7d210e200d20127d21120b2012201120112012562010200e562010200e511b22061b200356200e201020061b220e200456200e2004511b450d0041a0bec5002101412621060c010b200541e0006a200110d10402400240200528026822010d00410021012005280264450d01200528026010200c010b2001410574210610792107200528026421082005280260220921010240034002402007200141106a2802004f0d002001290300200358200141086a290300220e200458200e2004511b0d002001411c6a2d000020027141ff01710d020b200141206a2101200641606a22060d000b410021012008450d01200910200c010b41efbdc50021012008450d00200910200b413121060b200020063602042000200136020020054180016a24000bd21c02157f017e23004180056b22082400024002400240024002400240024002400240024002400240024002404112101e2209450d00200941106a41002f00e0d5433b0000200941086a41002900d8d543370000200941002900d0d54337000020094112412410222209450d0120092001370012200841b0036a41186a220a4200370300200841b0036a41106a220b4200370300200841b0036a41086a220c4200370300200842003703b0032009411a200841b0036a1001200841e0046a41186a200a290300370300200841e0046a41106a200b290300370300200841e0046a41086a200c290300370300200820082903b0033703e00420091020024002400240200841e0046a412041e4fdc600410041001002417f460d00200841b0036a200110900420084188026a41056a200841b0036a41a00110cd051a200841e0006a20084188026a41a50110cd051a20084188026a200841e0006a41056a41a00110cd051a200841c0026a280200210920024201510d014102210a4100210d20094102460d020c0e0b200041013b01000c0f0b4101210a20094102460d0c4101210d4103210a20082903b0022202200385200841b8026a290300220120048584502002200358200120045820012004511b200841d0026a2d00004101461b4101470d0c0b20082802980221090240024020054201510d004102210a4100210e20094102460d010c0c0b4101210a20094102460d0b4101210e4103210a200829038802220220068520084190026a290300220120078584502002200658200120075820012007511b200841a8026a2d00004101461b4101470d0b0b20082802dc024101470d0202400240024002400240200841e0026a2d00000e03010200010b200841ec026a280200410146210f200841f0026a2802002110200841e8026a2802002111200841e4026a28020021124102210920082d00e10221130c030b200841e4026a2802002112410021090c010b200841e8026a2802002111200841e4026a2802002112410221090b0b02400240200841fc026a280200450d002008200841f4026a360268200820082802f4023602642008200841f8026a280200360260200841b0036a200841e0006a10ea020c010b200842003702b403200841908cc5003602b0030b200841e0046a41086a200841b0036a41086a280200220a360200200820082903b00322013703e004200828028803211420082802840321152008280280032116200841d0046a41086a200a360200200820013703d004024020090d0002402008280290034101460d00420021010c080b20084194036a280200211720082802d00421090240024020082802d404220b0d002009210a0c010b2009210a200b210c0340200a280260210a200c417f6a220c0d000b0340200920092f01064102746a41e0006a2802002109200b417f6a220b0d000b0b20092f0106210b20082802d804210c200842003702b403200841908cc5003602b003200841fc006a200b360200200841f4006a20093602002008200c36028001200841f8006a200841d0046a3602002008420037026c2008200a36026441002118200841003602602008200841d0046a360268200841e0006a200841b0036a10b503200841e8046a20082802b803360200200820082903b00322013703e0042001a72109024020082802e404220a450d00200a210b034020092802f8062109200b417f6a220b0d000b0340200a417f6a220a0d000b0b20082802e8042219450d0620092f01060d04024002402009280200220a0d004100210c4100210b4100210a0c010b20092f0104210b4101210c0b0240200b200a2f0106490d000340200c41016a210c200a2f0104220b200a280200220a2f01064f0d000b0b200a200b41c8006c6a41e0006a211a200b410274200a6a41fc066a280200210b4100211b200c417f6a220a450d050340200b2802f806210b200a417f6a220a0d000c060b0b200041043b00010c090b41124101102d000b41244101102d000b20004181083b01000c090b200941e0006a211a4101211b2009210b0b410021182019211c0340201c417f6a211c4100210a0240201a2d00300d00200841d0006a201a290308201a29031010c904200841c0006a201a290318201a29032010c9044101210a0b200a20186a2118201c450d010240201b200b2f0106490d0002400240200b280200220a0d004100210c4100210b4100210a0c010b200b2f0104210b4101210c0b0240200b200a2f0106490d000340200c41016a210c200a2f0104220b200a280200220a2f01064f0d000b0b200a200b41c8006c6a41e0006a211a200b410274200a6a41fc066a280200210b4100211b200c417f6a220a450d010340200b2802f806210b200a417f6a220a0d000c020b0b200b201b41c8006c6a41e0006a211a201b41016a211b0c000b0b02400240024020182017490d0020074200200e1b20044200200d1b7c20064200200e1b220120034200200d1b7c221d200154ad7c21064100210a03402019450d0602400240200a20092f0106490d00024002402009280200220a0d004100210b410021094100210a0c010b20092f010421094101210b0b02402009200a2f0106490d000340200b41016a210b200a2f01042209200a280200220a2f01064f0d000b0b200a200941c8006c6a211a200a20094103746a41086a210c2009410274200a6a41fc066a28020021090240200b417f6a220a450d00034020092802f8062109200a417f6a220a0d000b0b201a41e0006a210b4100210a0c010b2009200a4103746a41086a210c2009200a41c8006c6a41e0006a210b200a41016a210a0b2019417f6a2119200b2d00300d000b200841306a200b290308200b29031010c904200841306a41086a290300210120082903302102200841206a200b290318200b29032010c9042001200841206a41086a2903007c2002200829032022017c2205200154ad7c2101200cad21072019450d020240200a20092f0106490d00024002402009280200220a0d004100210b410021094100210a0c010b20092f010421094101210b0b02402009200a2f0106490d000340200b41016a210b200a2f01042209200a280200220a2f01064f0d000b0b200a200941c8006c6a41e0006a210c200a20094103746a41086a211c2009410274200a6a41fc066a28020021094100211a200b417f6a220a450d02034020092802f8062109200a417f6a220a0d000c030b0b200a41016a211a2009200a4103746a41086a211c2009200a41c8006c6a41e0006a210c0c010b20082802e00420082802e40420082802e80410b703420021010c020b03402019417f6a21190240200c2d00300d00200841106a200c290308200c29031010c904200841106a41086a2903002104200829031021022008200c290318200c29032010c90420052002200829030022037c22025820012004200841086a2903007c2002200354ad7c22045820012004511b0d00201cad210720022105200421010b2019450d010240201a20092f0106490d00024002402009280200220a0d004100210b410021094100210a0c010b20092f010421094101210b0b02402009200a2f0106490d000340200b41016a210b200a2f01042209200a280200220a2f01064f0d000b0b200a200941c8006c6a41e0006a210c200a20094103746a41086a211c2009410274200a6a41fc066a28020021094100211a200b417f6a220a450d01034020092802f8062109200a417f6a220a0d000c020b0b2009201a4103746a41086a211c2009201a41c8006c6a41e0006a210c201a41016a211a0c000b0b2007a72209450d0202400240201d200556200620015620062001511b0d00410121090c010b20092903002102410021090b20082802e00420082802e40420082802e80410b7034201210120090d010b200041086a20084188026a41a00110cd051a200041c8016a2010360200200041c4016a200f360200200041c0016a2011360200200041bc016a2012360200200041b9016a20133a0000200041b8016a41003a0000200041b0016a2002370300200041a8016a2001370300200041e0016a2014360200200041dc016a2015360200200041d8016a2016360200200041003a0000200041cc016a20082903d004370200200041d4016a200841d0046a41086a2802003602000c060b200041053a00010c010b41a5acc40041cb0041a888c6001028000b200041013a000020082802d804210a20082802d0042109024020082802d4042200450d002000210b034020092802602109200b417f6a220b0d000b03402000417f6a22000d000b0b0240200a450d00410021004100210b4100210c0340200820003602bc032008200b3602b803200820093602b4032008200c3602b003200841e0006a200841b0036a10612008280268210c200828026c21092008280270210b20082802742100200a417f6a220a0d000b0b200941908cc500460d0220092802002100200910202000450d022000280200210a20001020200a450d020240200a2802002209450d000340200a10202009210a20092802002200210920000d000b0b200a10200c020b2000200a3a0001200041013a0000200041026a41013a00000c010b2000200a3a0001200041013a0000200041026a41003a00000b024020082802dc02450d00200841fc026a280200210a200841f4026a28020021090240200841f8026a2802002200450d002000210b034020092802602109200b417f6a220b0d000b03402000417f6a22000d000b0b0240200a450d00410021004100210b4100210c03402008200c3602bc032008200b3602b803200820093602b403200820003602b003200841e0006a200841b0036a106120082802682100200828026c21092008280270210b2008280274210c200a417f6a220a0d000b0b200941908cc500460d0020092802002100200910202000450d002000280200210a20001020200a450d000240200a2802002209450d000340200a10202009210a20092802002200210920000d000b0b200a10200b2008419c036a280200450d0020082802980310200b20084180056a24000bba1f05057f037e017f027e037f23004190026b22052400200541286a2003370300200520023703202005200137031802400240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024002402001a74101470d00410c101e2206450d012006428180808010370200200641086a410136020020064174460d0242002101200541d0016a41086a22074200370300200542003703d00141d1aac1004117200541d0016a1000200541a0016a41086a2007290300370300200520052903d0013703a001200541003602d001200541a0016a4110200541d0016a10032107024020052802d0012208417f460d002007450d0020084108490d0420072900002101200710200b2005200137038001200541d0016a41086a22074200370300200542003703d00141d1aac1004117200541d0016a1000200541a0016a41086a2007290300370300200520052903d0013703a0012005200142017c3703d001200541a0016a4110200541d0016a4108100510792107200541033a00f001200520073602800220054180016a200541d0016a1099022005290380012101200641086a22072007280200417f6a3602002005200137033020062006280200417f6a2207360200024020070d0020062006280204417f6a220736020420070d00200610200b411f101e2206450d04200641176a41002900a4d443370000200641106a410029009dd443370000200641086a4100290095d4433700002006410029008dd4433700002006411f413e10222206450d052006200137001f200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820064127200541d8006a1001200541386a41186a2007290300370300200541386a41106a2008290300370300200541386a41086a20092903003703002005200529035837033820061020200541386a412041e4fdc600410041001002417f470d11411f101e2206450d06200641176a41002900a4d443370000200641106a410029009dd443370000200641086a4100290095d4433700002006410029008dd4433700002006411f413e10222206450d072006200137001f200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820064127200541d8006a1001200541386a41186a2007290300370300200541386a41106a2008290300370300200541386a41086a20092903003703002005200529035837033820061020200541003602d001200541386a4120200541d0016a100321060240024020052802d0012207417f460d002006450d00200520073602a401200520063602a001200541d0016a200541a0016a10830120052903d801220a4202510d0a200541f0016a2903002101200541e8016a290300210b20052903e001210c2007450d01200610200c010b20052001370378200541d8006a41186a22064200370300200541d8006a41106a22074200370300200541d8006a41086a220842003703002005420037035841acd4c3004127200541d8006a1001200541a0016a41186a2006290300370300200541a0016a41106a2007290300370300200541a0016a41086a2008290300370300200520052903583703a001200541003602d001200541a0016a4120200541d0016a1003210602400240024020052802d0012207417f460d002006450d00024020074108490d00200629000021012006102020054180016a200110e602200541003602d00120054180016a4120200541d0016a10032106024020052802d0012207417f460d0020060d030b41b8e7c50041920141cce8c5001045000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b4200210b200541d8006a41186a22064200370300200541d8006a41106a22074200370300200541d8006a41086a220842003703002005420037035841acd4c3004127200541d8006a1001200541a0016a41186a2006290300370300200541a0016a41106a2007290300370300200541a0016a41086a2008290300370300200520052903583703a001200520013703d001200541a0016a4120200541d0016a410810050c010b2005200736025c20052006360258200541d0016a200541d8006a10830120052903d801220b4202510d0b200541a0016a41086a2208200541d0016a41186a2209290300370300200541a0016a41106a220d200541d0016a41206a290300370300200520052903e0013703a00120052903d001210c02402007450d00200610200b200541d8006a41106a2206200d290300220e370300200541d8006a41086a22072008290300220a370300200520052903a001220f370358200541d0016a41106a200a3703002009200e3703002005200b3703d0012005200f3703d8014201210b200541ac016a20094100200a4201511b3602002005200c3703a0012005200541f8006a3602a8012005412036025c200520054180016a360258200541a0016a200541d8006a1087012005290378210a200541d8006a41186a2209420037030020064200370300200742003703002005420037035841acd4c3004127200541d8006a1001200541a0016a41186a2009290300370300200d200629030037030020082007290300370300200520052903583703a0012005200a3703d001200541a0016a4120200541d0016a410810050b4200210a0b200541d0016a41206a2001370300200541e8016a200b370300200541e0016a200c3703002005200a3703d801200520043602d001200541203602a4012005200541386a3602a001200541d0016a200541a0016a108801410c101e2206450d0a2006428180808010370200200641086a410136020020064174460d0b20052003370340200520023703384110101e2204450d0c20044100290088ab41370000200441086a4100290090ab413700002005290330210120044110412010222204450d0d20042001370010200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820044118200541d8006a1001200541d0016a41186a2007290300370300200541d0016a41106a2008290300370300200541d0016a41086a2009290300370300200520052903583703d001200410200240200541d0016a412041e4fdc600410041001002417f460d004110101e2204450d0f20044100290088ab41370000200441086a4100290090ab413700002005290330210120044110412010222204450d1020042001370010200541d8006a41186a22074200370300200541d8006a41106a22084200370300200541d8006a41086a220942003703002005420037035820044118200541d8006a1001200541a0016a41186a2007290300370300200541a0016a41106a2008290300370300200541a0016a41086a2009290300370300200520052903583703a00120041020200541003602d001200541a0016a4120200541d0016a1003210420052802d0012209417f460d142004450d142005200936025c20052004360258200541d0016a200541d8006a10970220052d00f00122074104460d1120054180016a41186a200541d0016a41186a29030037030020054180016a41106a200541d0016a41106a29030037030020054180016a41086a200541d0016a41086a290300370300200541fa006a200541f3016a2d00003a0000200520052903d00137038001200520052f00f1013b0178200541f4016a280200210d200541f8016a2802002110200541fc016a280200211120054180026a280200210820054184026a28020021122009450d15200410200c150b410321040c150b4200210220014201510d110c160b410c4104102d000b4196e2c600411820054188026a41f8aac10041c0e2c600102e000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b411f4101102d000b413e4101102d000b411f4101102d000b413e4101102d000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b410c4104102d000b4196e2c600411820054188026a41f8aac10041c0e2c600102e000b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41ceb8c400413320054188026a41fcbfc4004184b9c400102e000b41a4a9c40041c60041a888c6001028000b2005200541206a3602d001200541d0016a1094020c040b410421070b200541d0016a41086a20054180016a41086a290300370300200541d0016a41106a20054180016a41106a290300370300200541d0016a41186a20054180016a41186a290300370300200541a0016a41026a2204200541f8006a41026a2d00003a000020052005290380013703d001200520052f01783b01a0010240024020074104470d0041032107410021080c010b200541d8006a41026a20042d00003a0000200520052f01a0013b015820052903e80121010b200541c4016a41026a200541d8006a41026a2d00003a0000200520052f01583b01c401024002400240024020052903382202200541386a41086a290300220384500d004102210420074103470d01200541f8016a4200370300200541f4016a41908cc500360200200541023a00f001200541f3016a200541c4016a41026a2d00003a0000200520023703d001200520013703e801200542003703e001200520052f01c4013b00f10120052012360284022005200836028002200520033703d801200541306a200541d0016a109902200541386a41086a290300210220052903382101200542eadee59bc7aed8b5e5003703a001200541d0016a200541a0016a10ae02200541086a200541d0016a2001200210f302200541b0016a2002200541086a41086a290300220a7d20012005290308220354ad7d200a20027d2003200154ad7d2003200158200a200258200a20025122041b22071b3703002005200120037d200320017d20071b3703a80120052003200156200a20025620041b2204ad3703a001200541a0016a41086a210720040d02200520073602800120054180016a1094020c030b4100210420074103460d030b200d201020111098020c020b200520073602800120054180016a10f4020b410421040c010b2005200541386a3602d001200541d0016a1094020b200641086a22072007280200417f6a360200200520043a003820044104470d0120062006280200417f6a2204360200024020040d0020062006280204417f6a220436020420040d00200610200b20052903302101420121020b200020013703082000200237030020054190026a24000f0b200541ac016a410e360200200541e4016a4102360200200542033702d401200541eca9c4003602d0012005410e3602a4012005200541386a360258200541eaa9c400360280012005200541a0016a3602e001200520054180016a3602a8012005200541d8006a3602a001200541d0016a41d483c6001033000bd60101017f230041106b22022400024002400240024020002802002d00000e03010200010b2002200128021841a284c700410b2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b2002200128021841ad84c70041072001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841b484c70041092001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000baf1403047f017e027f230041f0026b220224002002200137030820024180026a41186a2203420037030020024180026a41106a2204420037030020024180026a41086a22054200370300200242003703800241b2d5c300411e20024180026a100120024198016a41186a200329030037030020024198016a41106a200429030037030020024198016a41086a2005290300370300200220022903800237039801200241003602800220024198016a412020024180026a100321030240024002402002280280022204417f460d002003450d00024020044108490d002003290000210120031020200241106a200110e70220024180026a200241106a10e8022002290388024202520d0241b8e7c50041920141cce8c5001045000b41ceb8c400413320024180026a41fcbfc4004184b9c400102e000b20024180026a41186a2203420037030020024180026a41106a2204420037030020024180026a41086a22054200370300200242003703800241b2d5c300411e20024180026a100120024198016a41186a200329030037030020024198016a41106a200429030037030020024198016a41086a2005290300370300200220022903800237039801200220013703800220024198016a412020024180026a4108100520004200370310200042003703000c010b20024198016a20024180026a41e80010cd051a200241306a20024198016a41c80010cd051a20024190016a2203200241f8016a29030037030020024188016a200241f0016a2903002206370300200241f8006a41086a200241e8016a290300370300200220022903e00137037820024180026a200241306a41c80010cd051a200241cc026a2003410020064201511b3602002002200241086a3602c802200241003602a001200242013703980120022903800221060240024002400240024002400240024002404108101e2203450d002002410836029c01200220022802a001220441086a3602a0012002200336029801200320046a200637000020022802a802210502400240200228029c01220420022802a00122036b4104490d0020022802980121040c010b200341046a22072003490d08200441017422032007200320074b1b22034100480d080240024020040d002003101e21040c010b20022802980120042003102221040b2004450d022002200336029c01200220043602980120022802a00121030b2002200341046a3602a001200420036a200536000020022802ac02210502400240200228029c01220420022802a00122036b4104490d0020022802980121040c010b200341046a22072003490d08200441017422032007200320074b1b22034100480d080240024020040d002003101e21040c010b20022802980120042003102221040b2004450d032002200336029c01200220043602980120022802a00121030b2002200341046a3602a001200420036a200536000002402002290388024201510d000240200228029c0120022802a0012203460d0020022802980121040c070b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802980120032005102221040b02402004450d002002200536029c01200220043602980120022802a00121030c070b20054101102d000b02400240200228029c0120022802a0012203460d0020022802980121040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802980120032005102221040b2004450d042002200536029c01200220043602980120022802a00121030b2002200341016a3602a001200420036a41013a000020022903900221060240200228029c01220420022802a00122036b4108490d0020022802980121040c050b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b20022802980120042003102221040b02402004450d002002200336029c01200220043602980120022802a00121030c050b20034101102d000b41084101102d000b20034101102d000b20034101102d000b20054101102d000b2002200341086a3602a001200420036a20063700000c010b2002200341016a3602a001200420036a41003a00000b0240024002402002290398024201510d000240200228029c0120022802a0012203460d0020022802980121040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802980120032005102221040b02402004450d002002200536029c01200220043602980120022802a00121030c020b20054101102d000b0240024002400240200228029c0120022802a0012203460d0020022802980121040c010b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b20022802980120032005102221040b2004450d012002200536029c01200220043602980120022802a00121030b2002200341016a3602a001200420036a41013a000020022903a00221060240200228029c01220420022802a00122036b4108490d0020022802980121040c020b200341086a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b20022802980120042003102221040b02402004450d002002200336029c01200220043602980120022802a00121030c020b20034101102d000b20054101102d000b2002200341086a3602a001200420036a20063700000c010b2002200341016a3602a001200420036a41003a00000b200241b0026a20024198016a10d90220022802bc0221072002200241c4026a28020022033602ec02200241ec026a20024198016a10630240200228029c01220520022802a00122046b2003490d0020022802980121050c020b200420036a22082004490d00200541017422042008200420084b1b22044100480d000240024020050d002004101e21050c010b20022802980120052004102221050b02402005450d002002200436029c01200220053602980120022802a00121040c020b20044101102d000b1027000b2002200420036a3602a001200520046a2007200310cd051a20024180026a41c8006a20024198016a107e200228029c012103200241106a4120200228029801220420022802a001100502402003450d00200410200b0240200241c0026a280200450d00200710200b2002290308210620024180026a41186a2203420037030020024180026a41106a2204420037030020024180026a41086a22054200370300200242003703800241b2d5c300411e20024180026a100120024198016a41186a200329030037030020024198016a41106a200429030037030020024198016a41086a2005290300370300200220022903800237039801200220063703800220024198016a412020024180026a41081005200041186a200137030020004201370310200042003703000b200241f0026a24000b960402087f017e230041c0016b220224002002410036026020014120200241e0006a10032101024002400240024020022802602203417f460d0020010d010b200042023703380c010b2002200336022420022001360220200241e0006a200241206a10f20320022903604201510d01200241286a41306a220420024198016a290300370300200241286a41286a2205200241e0006a41306a290300370300200241286a41206a2206200241e0006a41286a290300370300200241286a41186a2207200241e0006a41206a290300370300200241286a41106a2208200241e0006a41186a290300370300200241286a41086a2209200241e0006a41106a29030037030020022002290368370328200241a0016a200241206a10930120022903a001220a4202510d0120002002290328370300200041306a2004290300370300200041286a2005290300370300200041206a2006290300370300200041186a2007290300370300200041106a2008290300370300200041086a2009290300370300200241086a41086a2204200241a0016a41106a290300370300200241086a41106a2205200241a0016a41186a290300370300200220022903a8013703082000200a37033820002002290308370340200041c8006a2004290300370300200041d0006a20052903003703002003450d00200110200b200241c0016a24000f0b41ceb8c4004133200241e0006a41fcbfc4004184b9c400102e000bde0101037f230041306b22012400024020002802202202450d00200141086a41086a2103034020002002417f6a360220200141206a41086a200041086a220229020037030020012000290200370320200141086a200141206a10612002200341086a29020037020020002003290200370200200028022022020d000b0b02402000280204220041908cc500460d0020002802002103200010202003450d0020032802002102200310202002450d00024020022802002200450d000340200210202000210220002802002203210020030d000b0b200210200b200141306a24000be40208017f017e027f017e017f017e027f017e230041106b22022400420121030240200128020422044108490d002001280200220529000021062001200441786a22073602042001200541086a22053602002007450d0020052d000021072001200441776a22043602042001200541016a360200200741014b0d00410021050240024020070e020100010b2002200110b70120022802002205450d0120022902042108200128020421040b2008a7210702402004450d00200128020022092d0000210a20012004417f6a3602042001200941016a360200200a41014b0d004100210402400240200a0e020100010b2002200110b70120022802002204450d012002290204210b0b2000200436021c20002006370308200041206a200b370300200041186a2008422088a7360200200041146a2007360200200041106a2005360200420021030c010b2005450d002007450d00200510200b20002003370300200241106a24000b841103067f047e027f23004180016b22022400200241c8006a41186a22034200370300200241c8006a41106a22044200370300200241c8006a41086a220542003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2003290300370300200241106a41106a2004290300370300200241106a41086a20052903003703002002200229034837031020024100360248200241106a4120200241c8006a100321030240024002400240024002400240024002400240024002400240024020022802482204417f460d002003450d002002200436023420022003360230200241c8006a200241306a10b70120022802482205450d04200241d0006a2802002106200228024c210702402004450d00200310200b200220063602082002200736020420022005360200200241106a200210ed0320024100360248200241106a4120200241c8006a1003210320022802482204417f460d062003450d062002200436027420022003360270200241c8006a200241f0006a109b0420022903484201510d05200241306a41086a2205200241e0006a290300370300200241306a41106a2206200241e8006a2903003703002002200241c8006a41106a22072903003703302002290350210802402004450d00200310200b200720062903002209370300200241c8006a41086a2005290300220a37030020022002290330220b370348200620093703002005200a3703002002200b370330200228023c210c4108101e2203450d0720024288808080800137024c200220033602482003200837000020034108411010222203450d0820024290808080900137024c200341013a0008200220033602482001280200210d200220012802082205360270200241f0006a200241c8006a1063200228024c2204200228025022066b2005490d01200228024821030c020b02400240200128020022030d00200241c8006a41186a22014200370300200241c8006a41106a22034200370300200241c8006a41086a220442003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2001290300370300200241106a41106a2003290300370300200241106a41086a200429030037030020022002290348370310200241106a412010040c010b2001280204210420012802082101200241c8006a41186a22054200370300200241c8006a41106a22064200370300200241c8006a41086a220742003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2005290300370300200241106a41106a2006290300370300200241106a41086a2007290300370300200220022903483703102002412036024c2002200241106a36024820032001200241c8006a10a3022004450d00200310200b2000410036020c200041003602000c0c0b200620056a22032006490d01200441017422072003200720034b1b22074100480d010240024020040d002007101e21030c010b200228024820042007102221030b2003450d072002200736024c20022003360248200721040b2002200620056a2207360250200320066a200d200510cd051a0240200c0d0002400240024020042007460d00200421050c010b200441016a22052004490d03200441017422062005200620054b1b22054100480d030240024020040d002005101e21030c010b200320042005102221030b2003450d012002200536024c200220033602480b2002200741016a220c360250200320076a41003a00000c0b0b20054101102d000b024020042007470d00200441016a22052004490d01200441017422062005200620054b1b22054100480d010240024020040d002005101e21030c010b200320042005102221030b2003450d082002200536024c200220033602480b2002200741016a360250200320076a41013a00002002413c6a4100200c1b22032802002107200220032802082204360270200241f0006a200241c8006a10630240200228024c2205200228025022066b2004490d00200228024821030c090b200620046a22032006490d002005410174220c2003200c20034b1b220c4100480d000240024020050d00200c101e21030c010b20022802482005200c102221030b02402003450d002002200c36024c20022003360248200c21050c090b200c4101102d000b1027000b41ceb8c4004133200241f8006a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8006a41fcbfc4004184b9c400102e000b41b8e7c50041920141cce8c5001045000b41084101102d000b41104101102d000b20074101102d000b20054101102d000b2002200620046a220c360250200320066a2007200410cd051a0b200241106a41202003200c100502402005450d00200310200b024020022802302203450d002002280234450d00200310200b0240200228023c2203450d00200241c0006a280200450d00200310200b02400240200128020022030d00200241c8006a41186a22014200370300200241c8006a41106a22034200370300200241c8006a41086a220442003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2001290300370300200241106a41106a2003290300370300200241106a41086a200429030037030020022002290348370310200241106a412010040c010b2001280204210420012802082101200241c8006a41186a22054200370300200241c8006a41106a22064200370300200241c8006a41086a220742003703002002420037034841e2eec200412d200241c8006a1001200241106a41186a2005290300370300200241106a41106a2006290300370300200241106a41086a2007290300370300200220022903483703102002412036024c2002200241106a36024820032001200241c8006a10a3022004450d00200310200b20004100360200200020022902483702042000410c6a2002290300370200200041146a200241086a2802003602000b20024180016a24000be80601077f230041106b22022400024002400240024002400240024002404108101e2203450d0020024288808080800137020420022003360200200320002903003700002000280208210420034108411010222103024020040d0002402003450d00200242908080809001370204200341003a00082002200336020041092105411021060c050b41104101102d000b2003450d01200242908080809001370204200341013a0008200220033602002002200041106a280200220736020c2002410c6a20021063024020022802042206200228020822086b2007490d00200228020021030c030b200820076a22032008490d04200641017422052003200520034b1b22054100480d040240024020060d002005101e21030c010b200228020020062005102221030b02402003450d002002200536020420022003360200200521060c030b20054101102d000b41084101102d000b41104101102d000b2002200820076a2205360208200320086a2004200710cd051a0b0240200041146a28020022040d000240024020062005470d00200641016a22002006490d03200641017422072000200720004b1b22004100480d030240024020060d002000101e21030c010b200320062000102221030b2003450d0120022000360204200220033602000b2002200541016a360208200320056a41003a00002002280208210720022802042106200228020021030c050b20004101102d000b024020062005470d00200641016a22072006490d01200641017422082007200820074b1b22074100480d010240024020060d002007101e21030c010b200320062007102221030b2003450d0220022007360204200220033602000b2002200541016a360208200320056a41013a000020022000411c6a280200220036020c2002410c6a20021063024020022802042206200228020822056b2000490d00200228020021030c030b200520006a22032005490d00200641017422072003200720034b1b22074100480d000240024020060d002007101e21030c010b200228020020062007102221030b02402003450d002002200736020420022003360200200721060c030b20074101102d000b1027000b20074101102d000b2002200520006a2207360208200320056a2004200010cd051a0b2001280200200128020420032007100502402006450d00200310200b200241106a24000bfd0602167f017e23004180026b220224002002410036026820014120200241e8006a1003210102400240024020022802682203417f460d0020010d010b200042023703780c010b2002200336022420022001360220200241e8006a200241206a10f1030240024020022d00b8014102460d00200241d8006a41086a2204200241e8006a41086a29030037030020022002290368370358200241fc006a2802002105200241e8006a41186a2802002106200241e8006a41206a28020021072002418c016a280200210820024194016a280200210920024198016a280200210a200241a0016a280200210b200241a4016a280200210c200241ac016a280200210d2002280278210e200228028401210f2002280290012110200228029c01211120022802a8012112200241d0006a2213200241e8006a41f0006a290300370300200241286a41206a2214200241e8006a41e8006a290300370300200241286a41186a2215200241e8006a41e0006a290300370300200241286a41106a2216200241e8006a41d8006a290300370300200241286a41086a2217200241e8006a41d0006a2903003703002002200241b0016a290300370328200241e0016a200241206a10930120022903e00122184202520d0102402005450d00200e10200b0240200f450d002007450d00200f10200b02402010450d002009450d00201010200b02402011450d00200b450d00201110200b2012450d00200d450d00201210200b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b200020022903583703002000200d360244200020123602402000200c36023c2000200b360238200020113602342000200a3602302000200936022c2000201036022820002008360224200020073602202000200f36021c20002006360218200020053602142000200e360210200041086a2004290300370300200041f0006a2013290300370300200041e8006a2014290300370300200041e0006a2015290300370300200041d8006a2016290300370300200041d0006a201729030037030020002002290328370348200241086a41086a2204200241e0016a41106a290300370300200241086a41106a2205200241e0016a41186a290300370300200220022903e80137030820002018370378200020022903083703800120004188016a200429030037030020004190016a20052903003703002003450d00200110200b20024180026a24000bbf0403027f017e067f230041a0026b220224002002410036026820014120200241e8006a10032101024002400240024020022802682203417f460d0020010d010b200042023703000c010b2002200336026420022001360260200241c0016a200241e0006a10f00320022903c00122044202510d01200241086a41306a2205200241f8016a290300370300200241086a41286a2206200241c0016a41306a290300370300200241086a41206a2207200241c0016a41286a290300370300200241086a41186a2208200241c0016a41206a290300370300200241086a41106a2209200241c0016a41186a290300370300200241086a41086a220a200241c0016a41106a290300370300200220022903c80137030820024180026a200241e0006a1093012002290380024202510d01200241e8006a41306a2005290300370300200241e8006a41286a2006290300370300200241e8006a41206a2007290300370300200241e8006a41186a2008290300370300200241e8006a41106a2009290300370300200241e8006a41086a200a290300370300200241a8016a20024180026a41086a290300370300200241b0016a20024180026a41106a290300370300200241b8016a20024180026a41186a2903003703002002200229030837036820022002290380023703a001200241086a200241e8006a41d80010cd051a20002004370300200041086a200241086a41d80010cd051a2003450d00200110200b200241a0026a24000f0b41ceb8c4004133200241e8006a41fcbfc4004184b9c400102e000b0d00200141c8abc3004102103c0b130020004113360204200041ccabc3003602000ba00803067f047e027f230041b0016b22012400024002400240410e101e2202450d00200241002900d8d643370000200241066a41002900ded6433700002001428e808080e00137026c200120023602682000200141e8006a10ca01200128027021022001280268210320014188016a41186a2204420037030020014188016a41106a2205420037030020014188016a41086a2206420037030020014200370388012003200220014188016a1001200141286a41186a2004290300370300200141286a41106a2005290300370300200141286a41086a200629030037030020012001290388013703280240200128026c450d00200128026810200b20014188016a200141286a41201069024020012d0088012202450d00200141286a412010040b200141c8006a41186a2203200141a1016a2900002207370300200141c8006a41106a220420014199016a2900002208370300200141c8006a41086a220520014191016a29000022093703002001200129008901220a370348200141e8006a41186a22062007370300200141e8006a41106a220b2008370300200141e8006a41086a220c20093703002001200a370368024020024101470d00200141086a41186a20062903002207370300200141086a41106a200b2903002208370300200141086a41086a200c290300220937030020012001290368220a3703082003200737030020042008370300200520093703002001200a370348410e101e2202450d022002410029008ed543370000200241066a4100290094d5433700002001428e808080e00137022c20012002360228200141c8006a200141286a10ca01200128023021022001280228210320014188016a41186a2204420037030020014188016a41106a2205420037030020014188016a41086a2206420037030020014200370388012003200220014188016a1001200141e8006a41186a2004290300370300200141e8006a41106a2005290300370300200141e8006a41086a200629030037030020012001290388013703680240200128022c450d00200128022810200b200141e8006a412010040b410d101e2202450d02200241002900e6d643370000200241056a41002900ebd6433700002001428d808080d00137024c200120023602482000200141c8006a10ca01200128025021022001280248210320014188016a41186a2204420037030020014188016a41106a2205420037030020014188016a41086a2206420037030020014200370388012003200220014188016a1001200141e8006a41186a2004290300370300200141e8006a41106a2005290300370300200141e8006a41086a200629030037030020012001290388013703680240200128024c450d00200128024810200b200141e8006a41201004200010a304200010a404200141b0016a24000f0b410e4101102d000b410e4101102d000b410d4101102d000bd53205087f017e067f037e037f23004180066b220124000240024002404112101e2202450d00200241002900d3d443370000200241106a41002f00e3d4433b0000200241086a41002900dbd44337000020014292808080a0023702e404200120023602e0042000200141e0046a10ca0120012802e804210220012802e0042100200141b0026a41186a22034200370300200141b0026a41106a22044200370300200141b0026a41086a22054200370300200142003703b00220002002200141b0026a1001200141c8006a41186a2003290300370300200141c8006a41106a2004290300370300200141c8006a41086a2005290300370300200120012903b002370348024020012802e404450d0020012802e00410200b200141003602e004200141c8006a4120200141e0046a1003210620012802e0042207417f460d012006450d01200120073602e405200120063602e005200141306a200141e0056a109703024020012802300d0020012802e4052202450d0020012002417f6a22033602e405200120012802e005220541016a22043602e00520052d0000220241014b0d004100210802400240024002400240024020020e020100010b41002102200141003a008005034020032002460d02200141e0046a20026a200520026a220041016a2d00003a00002001200041026a3602e0052001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002209370300200141e8016a41086a200141e0046a41086a290300370300200141e8016a41106a2009370300200141e8016a41186a200141e0046a41186a2903003703002001200320006b22033602e405200120012903e0043703e80141012108200520006a41016a21040b200141a0046a41186a200141e8016a41186a290300370300200141a0046a41106a200141e8016a41106a290300370300200141a0046a41086a200141e8016a41086a290300370300200120012903e8013703a0042003450d0420012003417f6a22033602e4052001200441016a3602e00520042d0000220041014b0d044100210220000e020201020b200141003602e405200241ff0171450d03200141003a0080050c030b41002102200141003a008005034020032002460d02200141e0046a20026a200420026a220041016a2d00003a00002001200041026a3602e0052001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002209370300200141e8016a41086a200141e0046a41086a290300370300200141e8016a41106a2009370300200141e8016a41186a200141e0046a41186a2903003703002001200320006b3602e405200120012903e0043703e801410121020b200141e0036a41186a2205200141e8016a41186a2200290300370300200141e0036a41106a220a200141e8016a41106a2203290300370300200141e0036a41086a220b200141e8016a41086a220429030037030020014180046a41086a220c200141a0046a41086a29030037030020014180046a41106a220d200141a0046a41106a29030037030020014180046a41186a220e200141a0046a41186a290300370300200120012903e8013703e003200120012903a00437038004200141c0036a41186a220f200e290300370300200141c0036a41106a220e200d290300370300200141c0036a41086a220d200c29030037030020012001290380043703c003200141a0036a41186a220c2005290300370300200141a0036a41106a2205200a290300370300200141a0036a41086a220a200b290300370300200120012903e0033703a003200141e0046a41186a220b200f290300370300200141e0046a41106a220f200e290300370300200141e0046a41086a220e200d290300370300200120012903c0033703e0042000200c290300370300200320052903003703002004200a290300370300200120012903a0033703e801200141c0056a41046a22052001419a036a41046a2f01003b01002001200128019a033602c00520084102460d01200141f8026a41186a200b290300370300200141f8026a41106a200f290300370300200141f8026a41086a200e290300370300200141d8026a41086a2004290300370300200141d8026a41106a2003290300370300200141d8026a41186a2000290300370300200141d0026a41046a20052f01003b0100200120012903e0043703f802200120012903e8013703d802200120012802c0053602d00202402007450d00200610200b200141c8006a412010040c040b200141003602e405200241ff0171450d00200141003a0080050b41ceb8c400413320014180046a41fcbfc4004184b9c400102e000b41124101102d000b410221080b20014188016a41186a2200200141f8026a41186a29030037030020014188016a41106a2203200141f8026a41106a29030037030020014188016a41086a2204200141f8026a41086a290300370300200141e8006a41086a2205200141d8026a41086a290300370300200141e8006a41106a2206200141d8026a41106a290300370300200141e8006a41186a2207200141d8026a41186a290300370300200120012903f80237038801200120012903d802370368200141c8016a41086a220a2004290300370300200141c8016a41106a22042003290300370300200141c8016a41186a2203200029030037030020012001290388013703c801200141a8016a41086a22002005290300370300200141a8016a41106a22052006290300370300200141a8016a41186a22062007290300370300200120012903683703a801024002400240024020084102460d002001418a026a220720012903a801370100200141f1016a200a290300370000200141f9016a200429030037000020014181026a200329030037000020014192026a20002903003701002001419a026a2005290300370100200141a2026a2006290300370100200120083a00e801200120012903c8013700e901200120023a00890241002106024002400240024002400240200241ff01714101470d00200141e0046a200710a504200141e0056a41186a200141e0046a41186a22022900002209370300200141e0056a41106a200141e0046a41106a22002900002210370300200141e0056a41086a200141e0046a41086a22032900002211370300200120012900e00422123703e005200220093703002000201037030020032011370300200120123703e0044120101e2206450d01200620012903e004370000200641186a2002290300370000200641106a2000290300370000200641086a200329030037000020012d00e80121080b0240200841ff01714101460d0020012d0089024101460d03200141c0056a41186a22024200370300200141c0056a41106a22004200370300200141c0056a41086a22034200370300200142003703c00541e5d4c300411a200141c0056a1001200141e0046a41186a2002290300370300200141e0046a41106a2000290300370300200141e0046a41086a2003290300370300200120012903c0053703e004200141e0046a412010040c040b200141e0046a200141e8016a41017210a504200141e0056a41186a200141e0046a41186a22022903002209370300200141e0056a41106a200141e0046a41106a22002903002210370300200141e0056a41086a200141e0046a41086a22032903002211370300200120012903e00422123703e005200220093703002000201037030020032011370300200120123703e0044120101e2208450d01200820012903e004370000200841186a2002290300370000200841106a2000290300370000200841086a2003290300370000200141003602e00420084120200141e0046a10032107024020012802e004220b417f460d002007450d002001200b3602a404200120073602a004200141186a200141a0046a10970302402001290318a70d0020012802a4042202450d00200141286a29030021092001290320211020012002417f6a22033602a404200120012802a004220541016a22043602a00420052d0000220241014b0d004100210a02400240024002400240024020020e020100010b41002102200141003a008005034020032002460d02200141e0046a20026a200520026a220041016a2d00003a00002001200041026a3602a0042001200241016a22003a0080052000210220004120470d000b200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a200141e0046a41106a290300370300200141e0056a41186a200141e0046a41186a290300370300200120012903e0043703e0052001200320006b22033602a4044101210a200520006a41016a21040b200141c0056a41186a200141e0056a41186a290300370300200141c0056a41106a200141e0056a41106a290300370300200141c0056a41086a200141e0056a41086a290300370300200120012903e0053703c0052003450d0420012003417f6a22033602a4042001200441016a3602a00420042d0000220241014b0d0420020e020201020b200141003602a404200241ff0171450d03200141003a0080050c030b41002102200141003a008005034020032002460d02200141e0046a20026a200420026a220041016a2d00003a00002001200041026a3602a0042001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002211370300200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a2011370300200141e0056a41186a200141e0046a41186a2903003703002001200320006b3602a404200120012903e0043703e0050b200141e0036a41186a2202200141e0056a41186a2200290300370300200141e0036a41106a2203200141e0056a41106a2204290300370300200141e0036a41086a2205200141e0056a41086a220c29030037030020014180046a41086a220d200141c0056a41086a29030037030020014180046a41106a220e200141c0056a41106a29030037030020014180046a41186a220f200141c0056a41186a290300370300200120012903e0053703e003200120012903c00537038004200141c0036a41186a2213200f290300370300200141c0036a41106a220f200e290300370300200141c0036a41086a220e200d29030037030020012001290380043703c003200141a0036a41186a2002290300370300200141a0036a41106a2003290300370300200141a0036a41086a2005290300370300200120012903e0033703a003200141e0046a41186a22032013290300370300200141e0046a41106a2205200f290300370300200141e0046a41086a220d200e290300370300200120012903c0033703e004200141c0056a41046a220e2001419a036a41046a2f01003b01002001200128019a033602c005200a4102460d0120014189026a21022000200329030037030020042005290300370300200c200d290300370300200141c0046a41046a200e2f01003b0100200120012903e0043703e005200120012802c0053602c0040240200b450d00200710200b200141f1046a20012903e005370000200141f9046a200141e0056a41086a29030037000020014181056a200141e0056a41106a29030037000020014189056a200141e0056a41186a290300370000200141b6056a200141c4046a2f01003b0100200120103703e0042001200a3a00f004200120012802c0043601b205200120093703e80420014191056a200229000037000020014199056a200241086a290000370000200141a1056a200241106a290000370000200141a9056a200241186a290000370000200141b1056a200241206a2d00003a0000200141003602e805200142013703e0052001200141e0046a3602c005200141c0056a200141e0056a10df02200141e0046a41106a200141e0056a10e70320012802e40521022008412020012802e005220020012802e805100502402002450d00200010200b200810204101210a0c070b200141003602a404200241ff0171450d00200141003a0080050b41ceb8c400413320014180046a41fcbfc4004184b9c400102e000b41bde6c50041d8004198e7c5001045000b41204101102d000b41204101102d000b200141c0056a41186a22024200370300200141c0056a41106a22004200370300200141c0056a41086a22034200370300200142003703c00541e5d4c300411a200141c0056a1001200141e0046a41186a2002290300370300200141e0046a41106a2000290300370300200141e0046a41086a2003290300370300200120012903c0053703e004200141203602e4052001200141e0046a3602e0052007200141e0056a1082030b410021084100210a0b0240024020060d00410021020c010b200141003602e00420064120200141e0046a1003210720012802e004220b417f460d042007450d042001200b3602bc05200120073602b8052001200141b8056a1097032001290300a70d0320012802bc052202450d03200141106a29030021092001290308211020012002417f6a22033602bc05200120012802b805220541016a22043602b80520052d0000220241014b0d034100210c0240024002400240024020020e020100010b41002102200141003a008005034020032002460d02200141e0046a20026a200520026a220041016a2d00003a00002001200041026a3602b8052001200241016a22003a0080052000210220004120470d000b200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a200141e0046a41106a290300370300200141e0056a41186a200141e0046a41186a2903003703002001200320006b22033602bc05200120012903e0043703e0054101210c200520006a41016a21040b200141c0056a41186a200141e0056a41186a290300370300200141c0056a41106a200141e0056a41106a290300370300200141c0056a41086a200141e0056a41086a290300370300200120012903e0053703c0052003450d0620012003417f6a22033602bc052001200441016a3602b80520042d0000220241014b0d064100210520020e020201020b200141003602bc05200241ff0171450d05200141003a0080050c050b41002102200141003a008005034020032002460d04200141e0046a20026a200420026a220041016a2d00003a00002001200041026a3602b8052001200241016a22003a0080052000210220004120470d000b200141c0046a41106a200141e0046a41106a2903002211370300200141e0056a41086a200141e0046a41086a290300370300200141e0056a41106a2011370300200141e0056a41186a200141e0046a41186a2903003703002001200320006b3602bc05200120012903e0043703e005410121050b200141e0036a41186a2204200141e0056a41186a2202290300370300200141e0036a41106a220d200141e0056a41106a2200290300370300200141e0036a41086a220e200141e0056a41086a220329030037030020014180046a41086a220f200141c0056a41086a29030037030020014180046a41106a2213200141c0056a41106a29030037030020014180046a41186a2214200141c0056a41186a290300370300200120012903e0053703e003200120012903c00537038004200141c0036a41186a22152014290300370300200141c0036a41106a22142013290300370300200141c0036a41086a2213200f29030037030020012001290380043703c003200141a0036a41186a220f2004290300370300200141a0036a41106a2204200d290300370300200141a0036a41086a220d200e290300370300200120012903e0033703a003200141e0046a41186a220e2015290300370300200141e0046a41106a22152014290300370300200141e0046a41086a22142013290300370300200120012903c0033703e0042002200f290300370300200020042903003703002003200d290300370300200120012903a0033703e005200141c0056a41046a22042001419a036a41046a2f01003b01002001200128019a033602c005200c4102460d03200141f8026a41186a200e290300370300200141f8026a41106a2015290300370300200141f8026a41086a2014290300370300200141d8026a41086a2003290300370300200141d8026a41106a2000290300370300200141d8026a41186a2002290300370300200141d0026a41046a20042f01003b0100200120012903e0043703f802200120012903e0053703d802200120012802c0053602d0020240200b450d00200710200b20014191056a20053a000020014192056a20012903d8023701002001419a056a200141d8026a41086a290300370100200141a2056a200141d8026a41106a290300370100200141aa056a200141d8026a41186a290300370100200141b6056a200141d4026a2f01003b0100200120103703e004200120012802d0023601b205200120093703e80420014190056a200141e8016a41206a2d00003a000020014188056a200141e8016a41186a290300370300200141e0046a41206a200141e8016a41106a290300370300200141e0046a41186a200141e8016a41086a290300370300200120012903e8013703f004200141003602e805200142013703e0052001200141e0046a3602c005200141c0056a200141e0056a10df02200141e0046a41106a200141e0056a10e70320012802e40521022006412020012802e005220020012802e805100502402002450d00200010200b20061020410121020b0240200a200845720d00200810200b2006452002720d00200610200b20014180066a24000f0b200141003602bc05200241ff0171450d00200141003a0080050b41ceb8c400413320014180046a41fcbfc4004184b9c400102e000b41bde6c50041d80041a8e7c5001045000b8b32050a7f017e067f037e057f230041b0056b22012400024002400240024002404112101e2202450d00200241002900e1d343370000200241106a41002f00f1d3433b0000200241086a41002900e9d34337000020014292808080a00237029c042001200236029804200020014198046a10ca0120012802a00421022001280298042100200141f0016a41186a22034200370300200141f0016a41106a22044200370300200141f0016a41086a22054200370300200142003703f00120002002200141f0016a1001200141086a41186a2003290300370300200141086a41106a2004290300370300200141086a41086a2005290300370300200120012903f0013703080240200128029c04450d0020012802980410200b2001410036029804200141086a412020014198046a100321042001280298042205417f460d032004450d03200120053602f404200120043602f00420014190056a200141f0046a10e3012001280290052206450d012001280294052107024020012802f4042202450d0020012002417f6a22083602f404200120012802f004220941016a220a3602f00420092d0000220241014b0d004100210002400240024002400240024020020e020100010b41002102200141003a00b804034020082002460d0220014198046a20026a200920026a220041016a2d00003a00002001200041026a3602f0042001200241016a22033a00b8042003210220034120470d000b200141f8036a41106a20014198046a41106a290300220b370300200141a8016a41086a20014198046a41086a290300370300200141a8016a41106a200b370300200141a8016a41186a20014198046a41186a2903003703002001200820036b22083602f40420012001290398043703a80141012100200920036a41016a210a0b200141d8036a41186a200141a8016a41186a290300370300200141d8036a41106a200141a8016a41106a290300370300200141d8036a41086a200141a8016a41086a290300370300200120012903a8013703d8032008450d0420012008417f6a22083602f4042001200a41016a3602f004200a2d0000220241014b0d044100210320020e020201020b200141003602f404200241ff0171450d03200141003a00b8040c030b41002102200141003a00b804034020082002460d0220014198046a20026a200a20026a220341016a2d00003a00002001200341026a3602f0042001200241016a22033a00b8042003210220034120470d000b200141f8036a41106a20014198046a41106a290300220b370300200141a8016a41086a20014198046a41086a290300370300200141a8016a41106a200b370300200141a8016a41186a20014198046a41186a2903003703002001200820036b3602f40420012001290398043703a801410121030b20014198036a41186a2202200141a8016a41186a220829030037030020014198036a41106a2209200141a8016a41106a220a29030037030020014198036a41086a220c200141a8016a41086a220d290300370300200141b8036a41086a220e200141d8036a41086a290300370300200141b8036a41106a220f200141d8036a41106a290300370300200141b8036a41186a2210200141d8036a41186a290300370300200120012903a80137039803200120012903d8033703b803200141f8026a41186a22112010290300370300200141f8026a41106a2210200f290300370300200141f8026a41086a220f200e290300370300200120012903b8033703f802200141d8026a41186a220e2002290300370300200141d8026a41106a22022009290300370300200141d8026a41086a2209200c29030037030020012001290398033703d80220014198046a41186a201129030037030020014198046a41106a201029030037030020014198046a41086a200f290300370300200120012903f802370398042008200e290300370300200a2002290300370300200d2009290300370300200120012903d8023703a8010c040b200141003602f404200241ff0171450d00200141003a00b8040b2007450d0120061020410221000c020b41124101102d000b410221000b024020004102460d00200141b8026a41186a20014198046a41186a290300370300200141b8026a41106a20014198046a41106a290300370300200141b8026a41086a20014198046a41086a29030037030020014198026a41086a200141a8016a41086a29030037030020014198026a41106a200141a8016a41106a29030037030020014198026a41186a200141a8016a41186a29030037030020012001290398043703b802200120012903a80137039802200120012f0190053b01960202402005450d00200410200b200141086a412010040c020b41ceb8c4004133200141d8036a41fcbfc4004184b9c400102e000b410221000b200141c8006a41186a2202200141b8026a41186a290300370300200141c8006a41106a2204200141b8026a41106a290300370300200141c8006a41086a2205200141b8026a41086a290300370300200141286a41086a220820014198026a41086a290300370300200141286a41106a220920014198026a41106a290300370300200141286a41186a220a20014198026a41186a290300370300200120012903b802370348200120012903980237032820014188016a41086a220c200529030037030020014188016a41106a2205200429030037030020014188016a41186a220420022903003703002001200129034837038801200141e8006a41086a22022008290300370300200141e8006a41106a22082009290300370300200141e8006a41186a2209200a29030037030020012001290328370368024020004102460d00200141ca016a220a2001290368370100200141b1016a200c290300370000200141b9016a2005290300370000200141c1016a2004290300370000200141d2016a2002290300370100200141da016a2008290300370100200141e2016a2009290300370100200120003a00a80120012001290388013700a901200120033a00c90141002102024002400240024002400240024002400240200341ff01714101470d0020014198046a200a10a60420014190056a41186a20014198046a41186a2200290000220b37030020014190056a41106a20014198046a41106a2203290000221237030020014190056a41086a20014198046a41086a2204290000221337030020012001290098042214370390052000200b370300200320123703002004201337030020012014370398044120101e2202450d012002200129039804370000200241186a2000290300370000200241106a2003290300370000200241086a200429030037000020012d00a80121000b0240200041ff01714101460d0020012d00c9014101460d03200141f0046a41186a22004200370300200141f0046a41106a22034200370300200141f0046a41086a22044200370300200142003703f00441f3d3c300411a200141f0046a100120014198046a41186a200029030037030020014198046a41106a200329030037030020014198046a41086a2004290300370300200120012903f0043703980420014198046a412010040c070b20014198046a200141a8016a41017210a60420014190056a41186a20014198046a41186a2200290300220b37030020014190056a41106a20014198046a41106a2204290300221237030020014190056a41086a20014198046a41086a2205290300221337030020012001290398042214370390052000200b370300200420123703002005201337030020012014370398044120101e2203450d012003200129039804370000200341186a2000290300370000200341106a2004290300370000200341086a200529030037000020014100360298042003412020014198046a10032105200128029804220a417f460d032005450d032001200a3602bc02200120053602b802200141f8036a200141b8026a10e30120012802f803220e450d0420012802fc032109024020012802bc022200450d0020014180046a280200210f20012000417f6a220c3602bc02200120012802b802220d41016a22103602b802200d2d0000220041014b0d004100210802400240024002400240024020000e020100010b41002100200141003a00b8040340200c2000460d0220014198046a20006a200d20006a220441016a2d00003a00002001200441026a3602b8022001200041016a22043a00b8042004210020044120470d000b20014190056a41086a20014198046a41086a29030037030020014190056a41106a20014198046a41106a29030037030020014190056a41186a20014198046a41186a2903003703002001200129039804370390052001200c20046b220c3602bc0241012108200d20046a41016a21100b200141f0046a41186a20014190056a41186a290300370300200141f0046a41106a20014190056a41106a290300370300200141f0046a41086a20014190056a41086a29030037030020012001290390053703f004200c450d042001200c417f6a220c3602bc022001201041016a3602b80220102d0000220041014b0d0420000e020201020b200141003602bc02200041ff0171450d03200141003a00b8040c030b41002100200141003a00b8040340200c2000460d0220014198046a20006a201020006a220441016a2d00003a00002001200441026a3602b8022001200041016a22043a00b8042004210020044120470d000b20014190056a41086a20014198046a41086a29030037030020014190056a41106a20014198046a41106a29030037030020014190056a41186a20014198046a41186a2903003703002001200c20046b3602bc022001200129039804370390050b20014198036a41186a220020014190056a41186a29030037030020014198036a41106a220420014190056a41106a29030037030020014198036a41086a220c20014190056a41086a290300370300200141b8036a41086a220d200141f0046a41086a290300370300200141b8036a41106a2210200141f0046a41106a290300370300200141b8036a41186a2211200141f0046a41186a290300370300200120012903900537039803200120012903f0043703b803200141f8026a41186a22152011290300370300200141f8026a41106a22112010290300370300200141f8026a41086a2210200d290300370300200120012903b8033703f802200141d8026a41186a2000290300370300200141d8026a41106a2004290300370300200141d8026a41086a200c29030037030020012001290398033703d80220014198046a41186a201529030037030020014198046a41106a201129030037030020014198046a41086a2010290300370300200120012903f802370398040c070b200141003602bc02200041ff0171450d00200141003a00b8040b2009450d04200e1020410221080c050b41204101102d000b41204101102d000b200141f0046a41186a22004200370300200141f0046a41106a22034200370300200141f0046a41086a22044200370300200142003703f00441f3d3c300411a200141f0046a100120014198046a41186a200029030037030020014198046a41106a200329030037030020014198046a41086a2004290300370300200120012903f004370398042001412036029405200120014198046a36029005200a20014190056a1082030c030b41bde6c50041d8004198e7c5001045000b410221080b024020084102460d00200141c9016a210020014190056a41186a220420014198046a41186a29030037030020014190056a41106a220c20014198046a41106a29030037030020014190056a41086a220d20014198046a41086a290300370300200120012903980437039005200120012f01f0043b01f8030240200a450d00200510200b200141a5046a200129039005370000200141ad046a200d290300370000200141b5046a200c290300370000200141bd046a2004290300370000200120083a00a4042001200f3602a0042001200936029c042001200e36029804200120012f01f8033b01e604200141c5046a2000290000370000200141cd046a200041086a290000370000200141d5046a200041106a290000370000200141dd046a200041186a290000370000200141e5046a200041206a2d00003a00002001412036029405200120033602900520014198046a20014190056a10e6030240200128029c04450d0020012802980410200b20031020410121080c020b41ceb8c4004133200141d8036a41fcbfc4004184b9c400102e000b41002103410021080b0240024002400240024020020d00410021000c010b20014100360298042002412020014198046a100321050240024002402001280298042209417f460d002005450d00200120093602ec04200120053602e804200141d8036a200141e8046a10e3014200210b20012802d803220d450d0120012802dc032110024020012802ec042200450d00200141e0036a350200211220012000417f6a220a3602ec04200120012802e804220c41016a220f3602e804200c2d0000220041014b0d004100210e02400240024002400240024020000e020100010b41002100200141003a00b8040340200a2000460d0220014198046a20006a200c20006a220441016a2d00003a00002001200441026a3602e8042001200041016a22043a00b8042004210020044120470d000b200141f8036a41106a20014198046a41106a290300221337030020014190056a41086a20014198046a41086a29030037030020014190056a41106a201337030020014190056a41186a20014198046a41186a2903003703002001200a20046b220a3602ec042001200129039804370390054101210e200c20046a41016a210f0b200141f0046a41186a20014190056a41186a290300370300200141f0046a41106a20014190056a41106a290300370300200141f0046a41086a20014190056a41086a29030037030020012001290390053703f004200a450d042001200a417f6a220a3602ec042001200f41016a3602e804200f2d0000220441014b0d044100210020040e020201020b200141003602ec04200041ff0171450d03200141003a00b8040c030b41002100200141003a00b8040340200a2000460d0220014198046a20006a200f20006a220441016a2d00003a00002001200441026a3602e8042001200041016a22043a00b8042004210020044120470d000b200141f8036a41106a20014198046a41106a290300220b37030020014190056a41086a20014198046a41086a29030037030020014190056a41106a200b37030020014190056a41186a20014198046a41186a2903003703002001200a20046b3602ec04200120012903980437039005410121000b20014198036a41186a220420014190056a41186a220a29030037030020014198036a41106a220c20014190056a41106a220f29030037030020014198036a41086a221120014190056a41086a2215290300370300200141b8036a41086a2216200141f0046a41086a290300370300200141b8036a41106a2217200141f0046a41106a290300370300200141b8036a41186a2218200141f0046a41186a290300370300200120012903900537039803200120012903f0043703b803200141f8026a41186a22192018290300370300200141f8026a41106a22182017290300370300200141f8026a41086a22172016290300370300200120012903b8033703f802200141d8026a41186a22162004290300370300200141d8026a41106a2204200c290300370300200141d8026a41086a220c201129030037030020012001290398033703d80220014198046a41186a201929030037030020014198046a41106a201829030037030020014198046a41086a2017290300370300200120012903f80237039804200a2016290300370300200f20042903003703002015200c290300370300200120012903d80237039005201242208621122010ad210b0c040b200141003602ec04200041ff0171450d00200141003a00b8040b2010450d01200d10200c010b41bde6c50041d80041a8e7c5001045000b4102210e420021120b200e4102460d01200141b8026a41186a20014198046a41186a290300370300200141b8026a41106a20014198046a41106a290300370300200141b8026a41086a20014198046a41086a29030037030020014198026a41086a220420014190056a41086a29030037030020014198026a41106a220a20014190056a41106a29030037030020014198026a41186a220c20014190056a41186a29030037030020012001290398043703b802200120012903900537039802200120012f01f0043b0196022012200b84210b02402009450d00200510200b200141c5046a20003a0000200141c6046a200129039802370100200141ce046a2004290300370100200141d6046a200a290300370100200141de046a200c290300370100200141ac046a200141a8016a41086a290300370200200141b4046a200141a8016a41106a290300370200200141bc046a200141a8016a41186a290300370200200141c4046a200141a8016a41206a2d00003a00002001200b37029c042001200d36029804200120012f0196023b01e604200120012903a8013702a4042001412036029405200120023602900520014198046a20014190056a10e6030240200128029c04450d0020012802980410200b20021020410121000b200820034572450d010c020b41ceb8c4004133200141d8036a41fcbfc4004184b9c400102e000b200310200b02402002452000720d00200210200b2006450d002007450d00200610200b200141b0056a24000bfc0101057f230041306b2202240002404112101e2203450d00200341002900d3d443370000200341106a41002f00e3d4433b0000200341086a41002900dbd44337000020024292808080a002370204200220033602002001200210ca012002280208210320022802002101200241106a41186a22044200370300200241106a41106a22054200370300200241106a41086a220642003703002002420037031020012003200241106a1001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229031037000002402002280204450d00200228020010200b200241306a24000f0b41124101102d000bfc0101057f230041306b2202240002404112101e2203450d00200341002900e1d343370000200341106a41002f00f1d3433b0000200341086a41002900e9d34337000020024292808080a002370204200220033602002001200210ca012002280208210320022802002101200241106a41186a22044200370300200241106a41106a22054200370300200241106a41086a220642003703002002420037031020012003200241106a1001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229031037000002402002280204450d00200228020010200b200241306a24000f0b41124101102d000bca0101037f230041206b220224002002410036021020014110200241106a10032101024002400240024020022802102203417f460d0020010d010b200041003602040c010b200220013602082002200336020c20034104490d0120022003417c6a36020c2002200141046a36020820012800002103200241106a200241086a10c10120022802102204450d01200020022902143702082000200436020420002003360200200110200b200241206a24000f0b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b13002000410f3602042000418cd7c3003602000b34002000419586c40036020420004100360200200041146a4113360200200041106a419c86c400360200200041086a42073702000b4901017f230041106b2202240020024100360208200242013703002002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000b7701027f230041106b22022400200241003602082002420137030002404104101e2203450d002003410036000020024284808080c000370204200220033602002002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000f0b41044101102d000b3001017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242003700000b970201037f230041c0006b22022400200241186a4200370300200241106a22034200370300200241086a4200370300200241286a22044100360200200242003703002002420837032020024100360238200242013703302002200236023c2002413c6a200241306a10df022002200336023c2002413c6a200241306a10df022002280220210320022004280200220436023c2002413c6a200241306a106302402004450d00200441306c21040340200341106a200241306a10ca012002200336023c200341306a21032002413c6a200241306a10df02200441506a22040d000b0b20002002290330370200200041086a200241306a41086a28020036020002402002280224450d00200228022010200b200241c0006a24000b7001027f230041306b2202240020024200370310200242003703082002200241086a36021c02404101101e22030d0041014101102d000b20024201370224200220033602202002411c6a200241206a10df02200041086a200228022836020020002002290320370200200241306a24000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241043600000b9f0402057f027e230041d0016b22022400200241086a200110b1040240024020022d00084101470d00200241d0006a41186a200241216a290000370300200241d0006a41106a200241196a290000370300200241d0006a41086a200241116a2900003703002002200229000937035002400240410e101e2201450d002001410029008ed543370000200141066a4100290094d5433700002002428e808080e00137027420022001360270200241d0006a200241f0006a10ca01200228027821012002280270210320024180016a41186a2204420037030020024180016a41106a2205420037030020024180016a41086a2206420037030020024200370380012003200120024180016a1001200241306a41186a2004290300370300200241306a41106a2005290300370300200241306a41086a2006290300370300200220022903800137033002402002280274450d00200228027010200b2002410036028001200241306a412020024180016a100321012002280280012203417f460d022001450d02200220033602542002200136025020024180016a200241d0006a10b20420022802a0012205450d0120024198016a2903002107200229039001210820022802a401210402402003450d00200110200b2004450d03200510200c030b410e4101102d000b41ceb8c4004133200241f0006a41fcbfc4004184b9c400102e000b42002108420021070b2000200837030020002007370308200241d0016a24000bb60301057f230041f0006b220224000240410e101e2203450d00200341002900d8d643370000200341066a41002900ded6433700002002428e808080e001370254200220033602502001200241d0006a10ca012002280258210320022802502101200241086a41186a22044200370300200241086a41106a22054200370300200241086a41086a220642003703002002420037030820012003200241086a1001200241306a41186a2004290300370300200241306a41106a2005290300370300200241306a41086a20062903003703002002200229030837033002402002280254450d00200228025010200b200241086a200241306a41201069200241d0006a41086a200241086a41096a290000370300200241d0006a41106a200241086a41116a290000370300200241d0006a41186a200241086a41196a290000370300200220022900093703500240024020022d00084101460d00200041003a00000c010b200041013a000020002002290350370001200041096a200241d8006a290300370000200041116a200241e0006a290300370000200041196a200241e8006a2903003700000b200241f0006a24000f0b410e4101102d000bff0608047f047e057f027e017f017e017f017e230041a0016b2202240041002103200241003a0098012001280204417f6a2104024002400240024002400240024002400240024003402004417f460d01200241f8006a20036a200128020022052d00003a0000200120043602042001200541016a3602002002200341016a22053a0098012004417f6a21042005210320054120470d000b200241d8006a41186a200241f8006a41186a290300370300200241d8006a41106a200241f8006a41106a290300370300200241d8006a41086a200241f8006a41086a29030037030020022002290378370358200241c0006a20011097032002290340a70d01200241c0006a41106a290300210620022903482107200241286a20011097032002290328a70d08200241286a41106a290300210820022903302109200241206a2001105f20022802200d04200128020441186e220a41186c2204417f4c0d062002280224210b20040d024108210c0c030b0240200341ff0171450d00200241003a0098010b200041003602200c080b200041003602200c070b2004101e220c450d040b0240200b450d00200241086a41106a210d4100210e41002105410021030340200241086a2001109703024002402002290308a70d00200d290300210f2002290310211020022001105f20022802000d00200341016a2104200228020421112003200a470d010240200e2004200e20044b1b220aad42187e2212422088a70d002012a722134100480d000240024020030d002013101e210c0c010b200c200520131022210c0b200c0d0220134108102d000b1027000b200a450d03200c10200c030b200c20056a2203200f37030820032010370300200341106a2011360200200e41026a210e200541186a210520042103200b2004470d000b0b200c0d010b200041003602200c040b200241f8006a41186a200241d8006a41186a290300220f370300200241f8006a41106a200241d8006a41106a2903002210370300200241f8006a41086a200241d8006a41086a2903002212370300200220022903582214370378200041186a2008370300200020093703102000200637030820002007370300200041286a200b3602002000200a3602242000200c3602202000412c6a2014370200200041346a20123702002000413c6a2010370200200041c4006a200f3702000c030b102c000b20044108102d000b200041003602200b200241a0016a24000b130020004102360204200041a0a6c4003602000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241a0053600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241063600000bfd0501057f23004190016b2202240002400240410f101e2203450d00200341002900ffd443370000200341076a4100290086d5433700002002428f808080f001370214200220033602102001200241106a10ca012002280218210320022802102101200241e0006a41186a22044200370300200241e0006a41106a22054200370300200241e0006a41086a220642003703002002420037036020012003200241e0006a1001200241306a41186a2004290300370300200241306a41106a2005290300370300200241306a41086a20062903003703002002200229036037033002402002280214450d00200228021010200b20024100360260200241306a4120200241e0006a100321010240024020022802602204417f470d00410021030c010b024020010d00410021030c010b2002200436025420022001360250200241e0006a200241d0006a10b7042002280280012203450d02200241106a41186a200241e0006a41186a290300370300200241106a41106a200241e0006a41106a290300370300200241106a41086a200241e0006a41086a290300370300200241086a2002418c016a2802003602002002200229036037031020022002290284013703002004450d00200110200b200241e0006a41086a2201200241106a41086a290300370300200241e0006a41106a2204200241106a41106a290300370300200241e0006a41186a2205200241106a41186a290300370300200241d0006a41086a2206200241086a28020036020020022002290310370360200220022903003703500240024020030d002000420037030020004208370320200041186a4200370300200041106a4200370300200041086a4200370300200041286a41003602000c010b2000200229036037030020002003360220200041246a2002290350370200200041186a2005290300370300200041106a2004290300370300200041086a20012903003703002000412c6a20062802003602000b20024190016a24000f0b410f4101102d000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b920705017f047e087f057e017f23004180026b22022400200241c0006a200110970302400240024002400240024002400240024002402002290340a70d00200241c0006a41106a290300210320022903482104200241286a20011097032002290328a70d07200241286a41106a290300210520022903302106200241206a2001105f20022802200d03200128020441306e220741306c2208417f4c0d052002280224210920080d014108210a0c020b200041003602200c080b2008101e220a450d040b02402009450d004100210b0340200241003a00f801200b220c41016a210b2001280204417f6a21084100210d024002400240024003402008417f460d01200241d8016a200d6a2001280200220e2d00003a0000200120083602042001200e41016a3602002002200d41016a220e3a00f8012008417f6a2108200e210d200e4120470d000b200241b8016a41186a2208200241d8016a41186a290300370300200241b8016a41106a220d200241d8016a41106a290300370300200241b8016a41086a220e200241d8016a41086a290300370300200220022903d8013703b801200241086a20011097032002290308a70d01200241086a41106a290300210f20022903102110200241f8006a41086a200e2903002211370300200241f8006a41106a200d2903002212370300200241f8006a41186a20082903002213370300200241d8006a41086a220d2011370300200241d8006a41106a220e2012370300200241d8006a41186a22142013370300200220022903b8012211370378200220113703582007200c470d030240200c4101742208200b2008200b4b1b2207ad42307e2211422088a70d002011a7220841004e0d030b1027000b200d41ff0171450d00200241003a00f8010b200241f8006a41086a20024198016a41086a2903003703002007450d04200a10200c040b02400240200c0d002008101e210a0c010b200a200c41306c20081022210a0b200a450d080b200a200c41306c6a2208200f3703082008201037030020082002290358370310200841186a200d290300370300200841206a200e290300370300200841286a2014290300370300200b2009470d000b0b200a0d010b200041003602200c050b20002004370300200020073602242000200a3602202000200637031020002003370308200041286a2009360200200041186a20053703000c040b102c000b20084108102d000b200041003602200c010b20084108102d000b20024180026a24000bd80101057f230041206b22022400024002404112101e2203450d00200341106a41002f00e0d5433b0000200341086a41002900d8d543370000200341002900d0d54337000020034112412410222203450d0120032001370012200241186a22044200370300200241106a22054200370300200241086a22064200370300200242003703002003411a20021001200041186a2004290300370000200041106a2005290300370000200041086a20062903003700002000200229030037000020031020200241206a24000f0b41124101102d000b41244101102d000bda1f03187f047e027f230041a0016b22022400024002400240024002400240024002400240024002400240024002400240024002400240024002400240200128020422034104490d0020012802002204280000210520012003417c6a22063602042001200441046a22073602002006450d1320072d0000210620012003417b6a22083602042001200741016a360200200641014b0d1302400240024020060e020001000b20084104490d15200728000121062001200341776a22083602042001200741056a220936020020064180807c71210a200641807e71210b4100210c0c010b2008450d1420072d0001210620012003417a6a22083602042001200741026a360200200641024b0d140240024002400240024020060e03000102000b4100210b2002410036027820084104490d182007280002210d2001200341766a3602042001200741066a3602002002200d360278410021060c020b20084104490d172007280002210d2001200341766a22043602042001200741066a3602004100210b2002410036027820044104490d172007280006210e2001200341726a36020420012007410a6a3602002002200e360278410121060c010b2008450d1620072d000221062001200341796a22083602042001200741036a360200200641044b0d1620084104490d162007280003210d2001200341756a22083602042001200741076a36020020084104490d162007280007210e2001200341716a220836020420012007410b6a3602002008450d1620042d000f21072001200341706a22083602042001200441106a360200200741014b0d162006410874210b410221064100210f024020070e020200020b2002410036027820084104490d162004280010211020012003416c6a3602042001200441146a36020020022010360278410221060b4101210f0b200241f8006a2001105e2002280278450d14200241c8006a41086a200241f8006a41086a28020036020020022002290378370348200128020422034104490d1320012802002207280000211120012003417c6a22043602042001200741046a36020020044104490d12200728000421122001200341786a22043602042001200741086a36020020044104490d11200728000821132001200341746a220836020420012007410c6a22093602004101210c4100210a20022802502104200228024c2107200228024821030b20084104490d032009280000211420012008417c6a22153602042001200941046a3602002015450d0620092d0004211520012008417b6a22163602042001200941056a2217360200201541014b0d064100211820150e020201020b200041023602540c130b20164104490d04200928000521192001200841776a22163602042001200941096a2217360200410121180b2016450d0620172d0000210820012016417f6a22093602042001201741016a360200200841014b0d064102211520080e020201020b20004102360254200c450d1002402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200136026c200220003602682002200336026420022007360260200241f8006a200241e0006a1061200228028001210720022802840121032002280288012100200228028c0121012004417f6a22040d000b0b200341908cc500460d1020032802002101200310202001450d1020012802002103200110202003450d1020032802002201450d0b0340200310202001210320012802002200210120000d000c0c0b0b200241f8006a200110f803200241e0006a41086a220820024194016a290200370300200241e0006a41106a22092002419c016a2802003602002002200229028c0137036020022802880122154102460d04200241f8006a41086a290300211a2002290378211b200241c8006a41106a2009280200360200200241c8006a41086a20082903003703002002200229036037034820154103460d04200128020421090b200241186a41106a200241c8006a41106a280200360200200241186a41086a200241c8006a41086a290300370300200220022903483703182009450d04200128020022162d0000210820012009417f6a3602042001201641016a360200200841014b0d044102210920080e020201020b20004102360254200c450d0d02402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0d20032802002101200310202001450d0d20012802002103200110202003450d0d20032802002201450d070340200310202001210320012802002200210120000d000c080b0b200241f8006a200110f803200241e0006a41086a220820024194016a290200370300200241e0006a41106a22162002419c016a2802003602002002200229028c0137036020022802880122094102460d02200241f8006a41086a290300211c2002290378211d200241c8006a41106a2016280200360200200241c8006a41086a20082903003703002002200229036037034820094103460d020b200241306a41106a2208200241c8006a41106a280200360200200241306a41086a2216200241c8006a41086a221729030037030020022002290348370330200241c8006a200110b70120022802480d0220004102360254200c450d0b02402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0b20032802002101200310202001450d0b20012802002103200110202003450d0b024020032802002201450d000340200310202001210320012802002200210120000d000b0b200310200c0b0b20004102360254200c450d0a02402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0a20032802002101200310202001450d0a20012802002103200110202003450d0a20032802002201450d030340200310202001210320012802002200210120000d000c040b0b20004102360254200c450d0902402007450d00200721010340200328026021032001417f6a22010d000b03402007417f6a22070d000b0b02402004450d0041002101410021004100210703402002200736026c200220003602682002200336026420022001360260200241f8006a200241e0006a1061200228028001210120022802840121032002280288012100200228028c0121072004417f6a22040d000b0b200341908cc500460d0920032802002101200310202001450d0920012802002103200110202003450d0920032802002201450d010340200310202001210320012802002200210120000d000c020b0b200241086a41086a22012017280200360200200241f8006a41086a2217200241186a41086a290300370300200241f8006a41106a221e200241186a41106a280200360200200241e0006a41086a221f2016290300370300200241e0006a41106a221620082802003602002002200229034837030820022002290318370378200220022903303703602000201a3703082000201b37030020002015360210200041306a201c3703002000201d37032820002009360238200020022903783702142000411c6a2017290300370200200041246a201e2802003602002000418c016a201936020020004188016a201836020020004184016a201436020020004180016a2013360200200041fc006a2012360200200041f8006a2011360200200041f4006a2004360200200041f0006a2007360200200041ec006a2003360200200041e8006a2010360200200041e4006a200f360200200041e0006a200e360200200041dc006a200d3602002000200b4180fe0371200641ff017172200a723602582000200c360254200020053602502000200229036037023c200041c4006a201f290300370200200041cc006a201628020036020020004198016a200128020036020020004190016a20022903083703000c080b200310200c070b200310200c060b200310200c050b200310200c040b20022802502103200228024821010240200228024c2207450d00200721040340200128026021012004417f6a22040d000b03402007417f6a22070d000b0b02402003450d0041002107410021044100210603402002200736026c200220043602682002200136026420022006360260200241f8006a200241e0006a1061200228028001210620022802840121012002280288012104200228028c0121072003417f6a22030d000b0b200141908cc500460d0220012802002107200110202007450d0220072802002103200710202003450d02024020032802002201450d000340200310202001210320012802002207210120070d000b0b200310200c020b20022802502103200228024821010240200228024c2207450d00200721040340200128026021012004417f6a22040d000b03402007417f6a22070d000b0b02402003450d0041002107410021044100210603402002200736026c200220043602682002200136026420022006360260200241f8006a200241e0006a1061200228028001210620022802840121012002280288012104200228028c0121072003417f6a22030d000b0b200141908cc500460d0120012802002107200110202007450d0120072802002103200710202003450d01024020032802002201450d000340200310202001210320012802002207210120070d000b0b200310200c010b20022802502103200228024821010240200228024c2207450d00200721040340200128026021012004417f6a22040d000b03402007417f6a22070d000b0b02402003450d0041002107410021044100210603402002200736026c200220043602682002200136026420022006360260200241f8006a200241e0006a1061200228028001210620022802840121012002280288012104200228028c0121072003417f6a22030d000b0b200141908cc500460d0020012802002107200110202007450d0020072802002103200710202003450d00024020032802002201450d000340200310202001210320012802002207210120070d000b0b200310200b200041023602540b200241a0016a24000bc3ec0115047f017e017f027e037f017e017f017e017f057e017f017e017f077e027f027e027f017e037f097e2a7f23004180146b22022400200241d00c6a41086a22034200370300200242003703d00c41fcf9c600411e200241d00c6a1000200241f0096a41086a22042003290300370300200220022903d00c3703f009200241d00c6a200241f0096a10a7040240024020022802d40c22050d004104210542002106410021070c010b200241f0096a4110100420022802d00c210720022903d80c21060b10a902210820034200370300200242003703d00c41ddd2c3004117200241d00c6a100020042003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a100321030240024002400240024002400240024002400240024002400240024002400240024002400240024002400240024020022802d00c2204417f470d00420021090c010b024020030d00420021090c010b20044108490d0120032900002109200310200b200241d00c6a41086a220a4200370300200242003703d00c41ddd2c3004117200241d00c6a1000200241f0096a41086a220b200a290300370300200220022903d00c3703f009200220083703d00c200241f0096a4110200241d00c6a410810054100210c200820097d220d500d04200a4200370300200242003703d00c41f3d6c3004116200241d00c6a1000200b200a290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a1003210320022802d00c2204417f460d022003450d02200220043602c409200220033602c009200241d00c6a200241c0096a10e30120022802d00c220e450d0120022902d40c210f02402004450d00200310200b200f422088a721040c030b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b410021044101210e4200210f0b42002108200241d00c6a41086a22034200370300200242003703d00c41b5a8c4004111200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024002400240024020022802d00c2210417f470d0042002108420021110c010b024020030d00420021110c010b20104110490d01200341086a290000211120032900002108200310200b42002109200241f0056a200820112004ad420010d205200241d00c6a41086a22034200370300200242003703d00c41b88ac5004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103200241f0056a41086a290300211120022903f005211202400240024020022802d00c2204417f470d0042002109420021080c010b024020030d00420021080c010b20044110490d01200341086a290000210820032900002109200310200b200241e0056a20092008428094ebdc03420010d305200241d0056a20022903e0052213200241e0056a41086a29030022144280ec94a37c427f10d205200820112012200956201120085620112008511b22031b21082009201220031b211220022903d00520097c2115200d428086ebc7f500200d428086ebc7f500541b421f8042ffffffff0f83428094ebdc037e429880b5e50380210d4100210441d87d2103024002400340200241c0056a201320142003418cc6c1006a3502002209420010d2052004201220022903c0052211200920157e22092009428094ebdc038022094280ec94a37c7e7c4280cab5ee01562009a76aad7c22095a2008200241c0056a41086a2903002009201154ad7c22115a200820115122101b6a21042012200954200820115420101b0d01200341086a22030d000b200241b0056a2013201442e8aafa0b420010d205200241b8056a29030020022903b0052209201542e8aafa0b7e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208200954ad7c21110c010b02402004417f6a220320044d0d00200241b0046a2013201442c0f0f50b420010d205200241b8046a29030020022903b0042209201542c0f0f50b7e201542288022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208200954ad7c21110c010b02400240200341244b0d00200241a0056a201320142003410374221041e4c3c1006a2802002216ad2209420010d20520024180056a201220022903a0052211200920157e22092009428094ebdc038022094280ec94a37c7e7c4280cab5ee01562009a76aad7c220920122009562008200241a0056a41086a2903002009201154ad7c22115620082011511b22031b22172009201220031b22097d22122008201120031b2011200820031b7d2017200954ad7d41002004410374221841e4c3c1006a280200220420166b2216201620044b1b22044101200441014b1bad2208420010d305200241f0046a200229038005220920024180056a41086a29030022172008420010d20520024190056a20132014201041e8c3c1006a2802002204ad2219420010d205200241c0046a20174200201841e8c3c1006a28020022102004201020044b22161b2004201020161b6bad2211420010d205200241e0046a200942002011420010d205200241d0046a420042002009420010d205427f427f200241e0046a41086a290300220920022903c00420022903d0047c7c221720022903c80420022903d8048442005220172009547222161b2217427f20022903e00420161b2209201220022903f0047d20117e2008807c22082009542216ad7c221120162011201754200820095a1b22161b2112427f200820161b211120024190056a41086a2903002002290390052208201920157e22092009428094ebdc038022094280ec94a37c7e7c4280cab5ee01562009a76aad7c2209200854ad7c21082003201020044d730d014200200820127d2009201154ad7d2212200920117d2217200956201220085620122008511b22031b21114200201720031b21080c020b418cffc10020034125102a000b427f200820127c200920117c22122009542203ad7c22092003200920085420092008511b22031b2111427f201220031b21080b4200211a200241f0036a201320144280c2d72f420010d205200241e0036a20022903f003221220154280c2d72f7e2015420a8022094280ec94a37c7e7c4280cab5ee01562009a76aad7c2209200241f0036a41086a2903002009201254ad7c428094ebdc03420010d305200241a0046a20082011428094ebdc03420010d305200241d0036a20022903e0032211200241e0036a41086a29030022124280ec94a37c427f10d205200241c0036a20112012200d420010d20520024190046a20022903a0042211200241a0046a41086a29030022124280ec94a37c427f10d20520024180046a20112012200d420010d205200d200920022903d0037c7e221b428094ebdc0380211c20022903c003211d200241c0036a41086a290300211e200d20082002290390047c7e2209428094ebdc038021080240200f422088a722030d004200211f0c030b20052006422088a74102746a2120200e20034105746a2121200241b0036a2002290380042211200920084280ec94a37c7e7c4280cab5ee01562008a76aad7c220820024180046a41086a2903002008201154ad7c428094ebdc03420010d305200241a0036a20022903b0032222200241b0036a41086a29030022234280ec94a37c427f10d20520074101200741014b1b2224418094ebdc036e22034101200341014b1b2125200820022903a0037c2126200241d00c6a41086a2127200241f0096a41086a2118200521074200211a4200211f200e2116034020072020460d03024020072802002203450d0020024190036a202220232024200320242003491b20256ead428094ebdc037e202420256ead8042ffffffff0f832208420010d205200820267e2215428094ebdc03802108200229039003211120024190036a41086a290300211302400240024002404112101e2203450d00200341002900d3d443370000200341106a41002f00e3d4433b0000200341086a41002900dbd44337000020024292808080a0023702d40c200220033602d00c2016200241d00c6a10ca0120022802d80c210320022802d00c2104200241b0066a41186a22104200370300200241b0066a41106a22284200370300200241b0066a41086a22294200370300200242003703b00620042003200241b0066a100120024190096a41186a201029030037030020024190096a41106a202829030037030020024190096a41086a2029290300370300200220022903b00637039009024020022802d40c450d0020022802d00c10200b200241003602d00c20024190096a4120200241d00c6a1003210320022802d00c2204417f460d022003450d02200220043602d40c200220033602d00c200241f8026a200241d00c6a10970320022903f802a70d01200241f8026a41106a290300210920022903800321122004450d03200310200c030b41124101102d000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b42002112420021090b02400240024002400240024002402011201520084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208201220082012200854200920132008201154ad7c22115420092011511b22031b222a7d222b20112009201120031b222c7d2008202a54ad7d222d8450450d00420021134200211242002108420021090c010b200241d00c6a201610b60442002113200241e8026a20022903d00c220842012008420156202729030022084200522008501b22031b22152008420020031b2209428094ebdc03420010d30520022802f00c2128200241e8026a41086a290300212e20022903e802212f0240024020022802f80c22030d00420021120c010b200241d8026a20152009202f4201202f420156202e420052202e501b22041b220d202e420020041b221710d305200241b8026a202b202d428094ebdc03420010d305200241c8026a202b202d428094ebdc03420010d4050240024020022903d802220842ffffffff0f56200241d8026a41086a29030022114200522011501b0d0002402008a7450d002028200341306c6a2110200842ffffffff0f832119200241b8026a41086a290300213020022903b802213120022903c80221324200211342002112202821030340200241a8026a20152003290300220820152008542009200341086a29030022085420092008511b22041b2009200820041b200d201710d30520022903a8022208428080808010544100200241a8026a41086a290300501b450d0320024180026a20312030200842ffffffff0f83428094ebdc037e20198042ffffffff0f832208420010d20520024190026a200341106a22032002290380022211200820327e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c220820024180026a41086a2903002008201154ad7c10bb0420022903900221082002290398022111200241f0096a41106a20024190026a41106a2903002214370300200220113703f809200220083703f009024002402008a74101470d00427f201220147c201320117c22112013542204ad7c22082004200820125420082012511b22041b2112427f201120041b21130c010b20084201520d00200220183602c009200241c0096a10f4020b200341206a22032010460d040c000b0b200241f0016a20152028290300220820152008542009202841086a29030022085420092008511b22031b2009200820031b200d201710d30520022903f001428080808010544100200241f0016a41086a290300501b450d014180bcc400411941ecbbc4001028000b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041e0bac400102e000b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041dcbbc400102e000b200241e0016a20152009202f4201202f420156202e420052202e501b22031b2214202e420020031b220d10d30520022903e0012208428080808010544100200241e0016a41086a290300501b450d01200241d0016a201520022903e00c221120152011542009200241d00c6a41186a29030022115420092011511b22031b2009201120031b2014200d10d30520022903d0012209428080808010544100200241d0016a41086a290300501b450d022008a7450d03200241c0016a202b202d428094ebdc03420010d305200241b0016a20022903c0012211200241c0016a41086a29030022154280ec94a37c427f10d205200241a0016a20112015200942ffffffff0f83428094ebdc037e200842ffffffff0f838042ffffffff0f832208420010d20520022903a00122092008202b20022903b0017c7e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208200954ad2109200241a0016a41086a2903002111024020022802f40c450d00202810200b201120097c21090b20024188016a20162008202a7c22112009202c7c2011200854ad7c10bb0420022903880121082002290390012109200241d00c6a41106a20024188016a41106a2903002211370300200220093703d80c200220083703d00c02402008a74101470d00427f201220117c201320097c22092013542203ad7c22082003200820125420082012511b22031b2112427f200920031b21130c050b20084201510d030c040b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041e0bac400102e000b200241113602f40920024199bcc4003602f00941ffb9c40041e000200241f0096a418cc0c40041dcbbc400102e000b4180bcc400411941ecbbc4001028000b200220273602f009200241f0096a10f4020b427f201f20127c201a20137c2209201a542203ad7c220820032008201f542008201f511b22031b211f427f200920031b211a0b200741046a2107201641206a22162021470d000c030b0b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b201e201d201b201c4280ec94a37c7e7c4280cab5ee0156201ca76aad7c2208201d54ad7c211102402006a7450d00200510200b200241e80c6a201f370300200241d00c6a41106a201a370300200241d00c6a41086a220341003a000042002109200241f80c6a42002011201f7d2008201a54ad7d22122008201a7d2215200856201220115620122011511b22041b2211370300200241f00c6a4200201520041b2212370300200241033a00d00c200241d00c6a10772002201f3703d80c2002201a3703d00c2002200241d00c6a3602f009200241f0096a10f40220034200370300200242003703d00c41b88ac5004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a100321030240024020022802d00c2204417f470d0042002109420021080c010b024020030d00420021080c010b20044110490d02200341086a290000210820032900002109200310200b200241d00c6a41086a22034200370300200242003703d00c41b88ac5004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f0092002427f200820117c200920127c22132009542203ad7c22152003201520085420152008511b22031b3703d80c2002427f201320031b3703d00c200241f0096a4110200241d00c6a4110100520022008427f85201120031b3703d80c20022009427f85201220031b3703d00c2002200241d00c6a3602f009200241f0096a1094024101210c200fa7450d00200e10200b200a4200370300200242003703d00c41c7f9c6004112200241d00c6a1000200b200a290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a1003210302400240024020022802d00c2204417f470d00410021210c010b024020030d00410021210c010b20044104490d0120032800002121200310200b200241d00c6a41086a22034200370300200242003703d00c41c7f9c6004112200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f0092002202141016a22273602d00c200241f0096a4110200241d00c6a4104100502404117101e2203450d002003410f6a41002900d5a844370000200341086a41002900cea844370000200341002900c6a844370000024020034117412e10222203450d0020032021360017200241b0066a41186a22044200370300200241b0066a41106a22104200370300200241b0066a41086a22074200370300200242003703b0062003411b200241b0066a100120024190096a41186a200429030037030020024190096a41106a201029030037030020024190096a41086a2007290300370300200220022903b006370390092003102020024190096a41201004200241d00c6a41086a22034200370300200242003703d00c41d9f9c6004123200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a100321030240024020022802d00c2204417f460d002003450d00200441034d0d01200310200b200241d00c6a41086a220a4200370300200242003703d00c41d9f9c6004123200241d00c6a1000200241f0096a41086a220b200a290300370300200220022903d00c3703f009200220013602d00c200241f0096a4110200241d00c6a4104100502400240024002400240024002400240024002400240202741a105490d00200a4200370300200242003703d00c41c5fac6004112200241d00c6a1000200b200a290300370300200220022903d00c3703f00941002124200241003602d00c200241f0096a4110200241d00c6a1003210e0240024020022802d00c2233417f470d000c010b0240200e0d000c010b200220333602d40c2002200e3602d00c20024180016a200241d00c6a105f2002280280010d1f20022802d40c22164178712203417f4c0d15200228028401212902400240201641037622250d00410421240c010b2003101e2224450d0c0b02402029450d004100211841002107410021100340200241003602c0090240024020164104490d0020022016417c6a22163602d40c200220022802d00c220341046a3602d00c20032800002128200241003602c00920164104490d00201041016a210420022016417c6a22163602d40c2002200341086a3602d00c2003280004210320102025470d0120182004201820044b1b222541ffffffff01712025470d22202541037422204100480d220240024020100d002020101e21240c010b202420072020102221240b20240d0120204104102d000b2025450d22202410200c220b202420076a22102028360200201041046a2003360200201841026a2118200741086a21072004211020292004470d000b0b2024450d1f2029ad4220862025ad8421082033450d00200e10200b2024410420241b212902402008420020241b22084220882209a722032008a7470d00200341016a22042003490d1e2009a722074101742210200420042010491b220441ffffffff01712004470d1e200441037422104100480d1e0240024020030d002010101e21290c010b202920074103742010102221290b2029450d062008422088a721032004ad21080b202920034103746a2204200136020420042027360200200842ffffffff0f8321080240200341016a22162003490d00202141e17a6a2110200341ffffffff017141016a2107410021042029210302400340200328020020104f0d01200341086a21032007200441016a2204470d000b0b20162004490d0a201620046b2225450d0002402004450d002029202920044103746a202541037410ce051a0b20292802042128200241d00c6a41086a22244200370300200242003703d00c41a7f8c6004113200241d00c6a1000200241f0096a41086a22202024290300370300200220022903d00c3703f009200241d00c6a200241f0096a10bc044101210320022902d40c21090240024020022802d00c22044101460d00200441014621030c010b2009422088a722212028202820214b1b22182009a72204490d000240201820044d0d000340411a101e2203450d0c200341186a41002f0089c9443b0000200341106a4100290081c944370000200341086a41002900f9c844370000200341002900f1c8443700002003411a413410222203450d0b2003200436001a200241b0066a41186a22104200370300200241b0066a41106a22074200370300200241b0066a41086a22164200370300200242003703b0062003411e200241b0066a1001200241d0066a41186a2010290300370300200241d0066a41106a2007290300370300200241d0066a41086a2016290300370300200220022903b0063703d00620031020200241d0066a41201004200441016a2203210420182003470d000b0b202820214921032009428080808070832018ad8421090b20082025ad42208684210820244200370300200242003703d00c41a7f8c6004113200241d00c6a100020202024290300370300200220022903d00c3703f009024020030d00200241f0096a411010040c010b4108101e2203450d07200320093e0000200320094220883e0004200241f0096a4110200341081005200310200b200241d00c6a41086a22034200370300200242003703d00c41c5fac6004112200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009024020290d00200241f0096a411010040c010b200241003602d80c200242013703d00c20022008422088a722033602c009200241c0096a200241d00c6a10630240024020030d0020022802d80c210320022802d40c211020022802d00c21040c010b202920034103746a2121410020022802d80c22186b210720022802d40c2110410021030340201820036a2116202920036a2224280200212502400240201020076a4104490d0020022802d00c21040c010b201641046a22042016490d20201041017422282004202820044b1b22284100480d200240024020100d002028101e21040c010b20022802d00c20102028102221040b02402004450d00200220283602d40c200220043602d00c202821100c010b20284101102d000b2002201641046a22283602d80c200420186a20036a2025360000202441046a28020021250240201020076a417c6a41034b0d00202841046a22202028490d20201041017422282020202820204b1b22284100480d200240024020100d002028101e21040c010b200420102028102221040b2004450d04200220283602d40c200220043602d00c202821100b2002201641086a3602d80c200420186a20036a41046a2025360000200741786a2107200341086a2103202441086a2021470d000b201820036a21030b2008a72107200241f0096a411020042003100502402010450d00200410200b2007450d00202910200b200a4200370300200242003703d00c4194f9c6004116200241d00c6a1000200b200a290300370300200220022903d00c3703f00941002134200241003602d00c200241f0096a4110200241d00c6a10032103024002400240024002400240024020022802d00c2204417f460d002003450d0020044104490d0120032800002134200310200b200241d00c6a41086a22034200370300200242003703d00c41aaf9c600411d200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024002400240024020022802d00c2204417f460d0020030d010b410421040c010b20044104490d0320032800002104200310204101210b200441014d0d010b2004210b0b200241b0066a41186a22034200370300200241b0066a41106a22044200370300200241b0066a41086a22104200370300200242003703b00641e5d4c300411a200241b0066a1001200241d00c6a41186a2003290300370300200241d00c6a41106a2004290300370300200241d00c6a41086a2010290300370300200220022903b0063703d00c20024190096a200241d00c6a41201069200241c0096a41206a20024190096a41206a2d00003a0000200241c0096a41186a20024190096a41186a290300370300200241c0096a41106a20024190096a41106a290300370300200241c0096a41086a20024190096a41086a29030037030020022002290390093703c009200241d00c6a200241c0096a10bd040240024020022903d00c4201520d00200220022f01d80c3b01b808200220022900eb0c3703a8072002200241da0c6a2d00003a00ba082002200241d00c6a41206a2900003700ad07200241db0c6a2800002103200241df0c6a2800002104200241e30c6a2800002110200241e70c6a28000021074120101e2218450d04201820022f01b8083b00002018200736000f2018201036000b2018200436000720182003360003201820022903a807370013201841026a20022d00ba083a0000201841186a20022900ad07370000200241f0096a41206a200241c0096a41206a2d00003a0000200241f0096a41186a200241c0096a41186a290300370300200241f0096a41106a200241c0096a41106a290300370300200241f0096a41086a200241c0096a41086a290300370300200220022903c0093703f009200241d00c6a200241f0096a10bd0441012107024020022903d00c4201510d00410121210c020b200241d00c6a41086a2103410221164120211041012107410121210340200241d0066a41186a200341186a2903002208370300200241d0066a41106a200341106a2903002209370300200241d0066a41086a200341086a29030022113703002002200329030022123703d006200241b0066a41186a22242008370300200241b0066a41106a22252009370300200241b0066a41086a22282011370300200220123703b006024020072021470d00200741016a22042007490d2620162004201620044b1b222141ffffff3f712021470d26202141057422044100480d260240024020070d002004101e21180c010b201820102004102221180b2018450d0b0b201820106a220420022903b006370000200441186a2024290300370000200441106a2025290300370000200441086a2028290300370000201641026a2116201041206a2110200741016a2107200241d00c6a200241f0096a10bd0420022903d00c4201510d000c020b0b4101211841002107410021210b200241b0066a41186a22034200370300200241b0066a41106a22044200370300200241b0066a41086a22104200370300200242003703b00641f3d3c300411a200241b0066a1001200241d00c6a41186a2003290300370300200241d00c6a41106a2004290300370300200241d00c6a41086a2010290300370300200220022903b0063703d00c200241e0086a200241d00c6a4120106920024190096a41206a200241e0086a41206a2d00003a000020024190096a41186a200241e0086a41186a29030037030020024190096a41106a200241e0086a41106a29030037030020024190096a41086a200241e0086a41086a290300370300200220022903e00837039009200241d00c6a20024190096a10be0402400240024020022802f00c450d00412c101e2235450d06203520022903d00c370200203541286a200241d00c6a41286a2224280200360200203541206a200241d00c6a41206a2225290300370200203541186a200241d00c6a41186a2228290300370200203541106a200241d00c6a41106a2229290300370200203541086a200241d00c6a41086a2220290300370200200241c0096a41206a20024190096a41206a2d00003a0000200241c0096a41186a20024190096a41186a290300370300200241c0096a41106a20024190096a41106a290300370300200241c0096a41086a20024190096a41086a29030037030020022002290390093703c009200241f0096a200241c0096a10be0420022802900a0d0141012104410121360c020b4104213541002104410021360c010b41022116412c2110410121044101213603402024200241f0096a41286a2802003602002025200241f0096a41206a2903003703002028200241f0096a41186a2903003703002029200241f0096a41106a2903003703002020200241f0096a41086a290300370300200220022903f0093703d00c024020042036470d00200441016a22032004490d2520162003201620034b1b2236ad422c7e2208422088a70d252008a722034100480d250240024020040d002003101e21350c010b203520102003102221350b2035450d0b0b203520106a220320022903d00c370200200341286a2024280200360200200341206a2025290300370200200341186a2028290300370200200341106a2029290300370200200341086a2020290300370200201641026a21162010412c6a2110200441016a2104200241f0096a200241c0096a10be0420022802900a0d000b0b2002420037028406200241908cc50036028006200420076a2210ad42e0007e2208422088a70d192008a72203417f4c0d190240024020030d00410821160c010b2003101e2216450d050b200241003602980620022010360294062002201636029006200241e0086a41206a20024180066a360200200241003602f808200241f4086a200241f8136a36020020022018200741057422106a22293602ec08200220183602e808200220213602e408200220183602e008200220024190066a3602fc082002200241f8136a3602f00841022128410121250240024020070d000c010b420021122018210302400340200341086a2900002108200341106a290000210920032900002111200241d00c6a41186a2207200341186a290000370300200241d00c6a41106a22162009370300200241d00c6a41086a22242008370300200220113703d00c200241f0006a200241d00c6a10b004200241c0096a41086a4200370300200241c0096a41106a4200370300200241c0096a41186a4200370300200241b0066a41086a2024290300370300200241b0066a41106a2016290300370300200241b0066a41186a2007290300370300200242003703c009200220022903d00c3703b0062002290370427f200241f0006a41086a290300428080808010541b22084200520d01200341206a2103201041606a22100d000b200220293602e8080c010b200241d00c6a41086a2210200241c0096a41086a290300370300200241d00c6a41106a2207200241c0096a41106a290300370300200241d00c6a41186a2216200241c0096a41186a290300370300200241d0066a41086a2224200241b0066a41086a290300370300200241d0066a41106a2225200241b0066a41106a290300370300200241d0066a41186a2228200241b0066a41186a290300370300200220022903c0093703d00c200220022903b0063703d006200220022800b8083602b0082002200341206a3602e8082002200241bb086a2800003600b308200241c0086a41186a22032028290300370300200241c0086a41106a22282025290300370300200241c0086a41086a2225202429030037030020024190086a41186a201629030037030020024190086a41106a200729030037030020024190086a41086a2010290300370300200220022903d0063703c008200220022800b3083600eb07200220022802b0083602e807200220022903d00c37039008200241f0076a41186a2003290300370300200241f0076a41106a2028290300370300200241f0076a41086a2025290300370300200220022903c0083703f007200220022800eb0736009b07200220022802e8073602980741002125410021280b200241d00c6a41086a220320024190086a41086a290300370300200241d00c6a41106a221020024190086a41106a290300370300200241d00c6a41186a220720024190086a41186a290300370300200241c0096a41086a2216200241f0076a41086a290300370300200241c0096a41106a2224200241f0076a41106a290300370300200241c0096a41186a2229200241f0076a41186a29030037030020022002290390083703d00c200220022903f0073703c00920022002280298073602a0072002200228009b073600a30702402025450d00200241023a00c00a0c180b200241c8076a41186a22252007290300370300200241c8076a41106a22202010290300370300200241c8076a41086a220a2003290300370300200241a8076a41086a22272016290300370300200241a8076a41106a22162024290300370300200241a8076a41186a22242029290300370300200220022903d00c3703c807200220022903c0093703a807200220022802a0073602f006200220022800a3073600f306200241013602f808200241dc0c6a2229200a290300370200200241e40c6a220a2020290300370200200241d00c6a411c6a22202025290300370200200220022903c8073702d40c20024190096a41086a2225200329020037030020024190096a41106a2203201029020037030020024190096a41186a2210200729020037030020024190096a41206a2207200241d00c6a41206a280200360200200220022902d00c37039009200241f8066a41186a22012024290300370300200241f8066a41106a22242016290300370300200241f8066a41086a22162027290300370300200220022903a8073703f806200241800d6a2012370300200241f80c6a2008370300200241003602d00c20292025290300370200200a200329030037020020202010290300370200200241f40c6a200728020036020020022002290390093702d40c200241880d6a20022903f806370300200241900d6a2016290300370300200241980d6a2024290300370300200241a00d6a2001290300370300200241d00c6a41d8006a20283a0000200241ac0d6a20022800f306360000200241a90d6a20022802f006360000200241f0096a200241e0086a411c6a200241d00c6a10bf0420022d00c00a4102460d1741d800101e2221450d052021200241f0096a41d80010cd051a200241c0096a41086a200241e0086a41086a2903002208370300200241c0096a41206a200241e0086a41206a280200360200200241c0096a41186a200241e0086a41186a290300370300200241c0096a41106a200241e0086a41106a290300370300200220022903e0083703c00941012129024002402008a7220320022802cc092210460d00200241d40c6a210e200241a90d6a2137200241dc096a2138420021120340200341086a2900002108200341106a290000210920032900002111200241d00c6a41186a2207200341186a290000370300200241d00c6a41106a22162009370300200241d00c6a41086a22182008370300200220113703d00c200241e0006a200241d00c6a10b004200241c0086a41086a4200370300200241c0086a41106a4200370300200241c0086a41186a4200370300200241b0066a41086a2018290300370300200241b0066a41106a2016290300370300200241b0066a41186a2007290300370300200242003703c008200220022903d00c3703b0062002290360427f200241e0006a41086a290300428080808010541b22084200520d022010200341206a2203470d000b200220103602c8090b410121390c160b20024190086a41086a223a200241c0086a41086a222429030037030020024190086a41106a223b200241c0086a41106a222529030037030020024190086a41186a223c200241c0086a41186a2228290300370300200241d0066a41086a223d200241b0066a41086a2220290300370300200241d0066a41106a223e200241b0066a41106a220a290300370300200241d0066a41186a223f200241b0066a41186a2227290300370300200220022903c00837039008200220022903b0063703d006200220022800b8083602b0082002200341206a22033602c8092002200241b8086a41036a22402800003600b308200241f0076a41186a2241203f290300370300200241f0076a41106a2242203e290300370300200241f0076a41086a2243203d290300370300200220022903d0063703f007200220022800b3083600eb07200220022802b0083602e807200241880d6a2133200241d00c6a410472210120022802d8092144200241800d6a214541012129410121390340200241c8076a41186a2207203c290300370300200241c8076a41106a2216203b290300370300200241c8076a41086a2218203a290300370300200241a8076a41086a22462043290300370300200241a8076a41106a22472042290300370300200241a8076a41186a2248204129030037030020022002290390083703c807200220022903f0073703a807200220022802e8073602a007200220022800eb073600a3072002204441016a22493602d809200e41186a2007290300370200200e41106a2016290300370200200e41086a2018290300370200200e20022903c80737020020024190096a41086a224a200241d00c6a41086a220729020037030020024190096a41106a224b200241d00c6a41106a221629020037030020024190096a41186a224c200241d00c6a41186a221829020037030020024190096a41206a224d200241d00c6a41206a280200360200200220022902d00c37039009200241f8066a41186a224e2048290300370300200241f8066a41106a22482047290300370300200241f8066a41086a22472046290300370300200220022903a8073703f80620452012370300200220443602d00c2001200229039009370200200141086a204a290300370200200141106a204b290300370200200141186a204c290300370200200141206a204d280200360200200220083703f80c203320022903f806370200203341086a2047290300370200203341106a2048290300370200203341186a204e290300370200200241003a00a80d203741036a20022800a307360000203720022802a007360000200241f0096a2038200241d00c6a10bf0420022d00c00a4102460d17200241d00c6a200241f0096a41d80010cd051a024020392029470d00202941016a22442029490d24202941017422392044203920444b1b2239ad42d8007e2208422088a70d242008a722444100480d240240024020290d002044101e21210c010b2021202941d8006c2044102221210b2021450d0b0b2021202941d8006c6a200241d00c6a41d80010cd051a202941016a212920032010460d16024003402018200341186a2900003703002016200341106a2900003703002007200341086a290000370300200220032900003703d00c200241d0006a200241d00c6a10b0044200211220244200370300202542003703002028420037030020202007290300370300200a201629030037030020272018290300370300200242003703c008200220022903d00c3703b0062002290350427f200241d0006a41086a290300428080808010541b22084200520d012010200341206a2203470d000b200220103602c8090c170b203a2024290300370300203b2025290300370300203c2028290300370300203d2020290300370300203e200a290300370300203f2027290300370300200220022903c00837039008200220022903b0063703d006200220022800b8083602b0082002200341206a22033602c809200220402800003600b3082041203f2903003703002042203e2903003703002043203d290300370300200220022903d0063703f007200220022800b3083600eb07200220022802b0083602e807204921440c000b0b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41204101102d000b412c4104102d000b20034108102d000b41d8004108102d000b20284101102d000b20044101102d000b20034104102d000b20444108102d000b20104104102d000b41084101102d000b41344101102d000b411a4101102d000b41c0d8c200411c41a888c6001028000b20034104102d000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b412e4101102d000b41174101102d000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b200241023a00c00a0b024020022802c409450d0020022802c00910200b200220293602a806200220393602a406200220213602a0060c010b41002139200241003602a806200242083703a00602402021450d00201810200b41082121410021290b024002402029200b490d0002402002280294062203200228029806223a6b2004412c6c2210412c6d2207490d0020022802900621030c020b203a20076a2207203a490d0b200341017422162007201620074b1b2216ad42e0007e2208422088a70d0b2008a722074100480d0b0240024020030d002007101e21030c010b200228029006200341e0006c2007102221030b02402003450d0020022016360294062002200336029006200228029806213a0c020b20074108102d000b02402039450d00202110200b02402002280298062203450d00200341e0006c211020022802900641306a210303400240200341046a280200450d00200328020010200b200341e0006a2103201041a07f6a22100d000b0b0240200228029406450d0020022802900610200b20022802800620022802840620022802880610c00402402004450d002004412c6c2104203541206a210303400240200341046a280200450d00200328020010200b2003412c6a2103200441546a22040d000b0b2036450d07203510200c070b203520106a213802400240024020040d00203521370c010b2003203a41e0006c6a2133203521030240024002400340200241c0086a41186a2204200341186a290200370300200241c0086a41106a2210200341106a290200370300200241c0086a41086a2207200341086a290200370300200220032902003703c0082003412c6a213720032802202244450d04200341286a2802002128200341246a280200213b200241f0096a41186a223c2004290300370300200241f0096a41106a22412010290300370300200241f0096a41086a22422007290300370300200220022903c0083703f009200241c0006a200241f0096a10b0042028ad42c8007e2208422088a70d062008a72203417f4c0d06200241c0006a41086a2903002113200229034021140240024020030d004108210a0c010b2003101e220a450d020b0240024020280d0041002128410021200c010b204420284105746a210e2014427f2013428080808010541b211541002120204421250340202541086a2900002108202541106a290000210920252900002111200241d00c6a41186a2227202541186a290000370300200241d00c6a41106a220b2009370300200241d00c6a41086a22012008370300200220113703d00c202541206a212520024180066a2103200228028406211802400240034002400240200328020022162f010622240d00410021100c010b20244105742103201641086a2104417f21100340024020030d00202421100c020b201041016a2110200241d00c6a2004412010cf052207450d03200341606a2103200441206a21042007417f4a0d000b0b2018450d022018417f6a2118201620104102746a4194036a21030c000b0b2029201620104102746a41e8026a220428020022034d0d052021200341d8006c6a2203427f2003290320220820157c220920092008542210200341286a220329030022112010ad7c2212201154200920085a1b22101b3703202003427f201220101b370300200241b0066a41186a22102027290300370300200241b0066a41106a2207200b290300370300200241b0066a41086a22162001290300370300200220022903d00c3703b006200428020021040240024020202028460d00202021030c010b202841016a22032028490d13202841017422182003201820034b1b2218ad42c8007e2208422088a70d132008a722034100480d130240024020280d002003101e210a0c010b200a202841c8006c20031022210a0b200a450d0720282103201821280b200a200341c8006c6a2203420037030020032004360220200341186a4200370300200341106a4200370300200341086a4200370300200320022903b0063702242003412c6a2016290300370200200341346a20072903003702002003413c6a2010290300370200202041016a21200b2025200e470d000b0b0240203b450d00204410200b200241d0066a41186a2203203c290300370300200241d0066a41106a22042041290300370300200241d0066a41086a22102042290300370300200220022903f0093703d0062033420037030820332014427f2013428080808010541b37030020334200370310203341186a4200370300203341286a42003703002033420137032020332020360238203320283602342033200a360230203320022903d00637023c203341c4006a2010290300370200203341cc006a2004290300370200203341d4006a2003290300370200203a41016a213a203341e0006a21332037210320372038470d000b2002203a360298060c040b20034108102d000b41d0e0c60020032029102a000b20034108102d000b2002203a3602980620382037460d0003402037412c6a21030240203741246a280200450d00203741206a28020010200b2003213720382003470d000b0b02402036450d00203510200b2034ad42307e2208422088a70d002008a72203417f4c0d00024002400240024020030d00410821200c010b2003101e2220450d010b2034412c6c2203417f4c0d0202400240024020030d00410421360c010b2003101e2236450d010b4100210e02402029203420292034491b223c0d00410021252034214f0c030b202141a87f6a213a202941d8006c2138200241d00c6a41186a213b200241d00c6a41106a2101200241d00c6a41086a214420212103410021352034214f0240034002402029450d002038210403400240200341d0006a2d00000d0002400240200341206a2903002209200341286a29030022118450450d0042002108427f2109427f21110c010b427f2108200241306a427f427f2009201110d305200241306a41086a2903002111200229033021090b2003200937030020032011370308200341106a2008370300200341186a20083703000b200341d8006a2103200441a87f6a22040d000b0b024002402002280298062203450d002002280290062207200341e0006c6a21250340024020072802382203450d00200341c8006c2110200728023041206a210303402029200328020022044d0d0402402021200441d8006c6a22042d00500d0020042903202208200441286a290300220984500d00200241d00c6a2007290310200741186a2903002007290300200741086a2903002008200910c104200420042903002208427f2008427f20022903d80c20022802d00c41014622161b22117c220920092008542218200441086a22242903002208427f200129030020161b22127c2018ad7c220920085420092008511b22161b20112012845022181b37030020242008427f200920161b20181b3703000b200341c8006a2103201041b87f6a22100d000b0b200741e0006a22072025470d000b0b203541016a212520382103203a2104202121100340024020030d00203521250c070b200341a87f6a2103200441d8006a2104201041d0006a2107201041d8006a2216211020072d00000d000b02402003450d00200441086a2903002108200441186a2903002109200441106a2903002111200429030021154100211003400240201620106a220741d0006a2d00000d0020072903002113200741086a29030021120240024002402011200741106a2903002214852009200741186a290300220d8584500d00201120098450450d01410121180c020b417f20152013852008201285844200522015201354200820125420082012511b1b21180c010b02402014200d8450450d0041ff0121180c010b200241c0096a2015200810c204200241f0096a2014200d10c2042044200241c0096a41086a2218280200360200200220022903c0093703d00c200241e0086a200241d00c6a200241f0096a10c304024020022802f409450d0020022802f00910200b200241c0096a2013201210c204200241f0096a2011200910c20420442018280200360200200220022903c0093703d00c20024190096a200241d00c6a200241f0096a10c304024020022802f409450d0020022802f00910200b200241e0086a20024190096a10c40421180240200228029409450d0020022802900910200b20022802e408450d0020022802e00810200b20072004201841ff017141014622181b21042012200820181b21082013201520181b2115200d200920181b21092014201120181b21110b2003201041d8006a2210470d000b20040d00203521250c060b200441013a005002402002280298062203450d002002280290062210200341e0006c6a21372004410c6a2127200441306a210b0340201041e0006a2133024020102802382207450d0020102802302103200741c8006c210703400240024020272003460d00200341246a200b412010cf050d010b201041186a22162903002112200441086a22182903002108201029031021112004290300210920042903102115200341186a200441186a2224290300370300200341106a2015370300200320084200200820127d2009201154ad7d2215200920117d2213200956201520085620152008511b22281b201120128450220a1b370308200320094200201320281b200a1b37030020182903002108202429030021092004290300211120102004290310370320201041286a200937030020102011370310201620083703000b200341c8006a2103200741b87f6a22070d000b0b2033211020332037470d000b0b203b200441c8006a2900003703002001200441c0006a2900003703002044200441386a290000370300200220042900303703d00c200441286a29030021082004290320210902402035204f470d0020354101742203203541016a2204200320044b1b224fad42307e2211422088a70d102011a722034100480d100240024020350d002003101e21200c010b2020203541306c2003102221200b2020450d030b2044290300211120012903002112203b290300211520022903d00c21132020203541306c6a2203200937032020032013370300200341286a2008370300200341186a2015370300200341106a2012370300200341086a201137030020212103202521352025203c4f0d050c010b0b41bcf8c60020042029102a000b20034108102d000b20034104102d000b20034108102d000b02402002280298062203450d002002280290062218200341e0006c6a21352020202541306c6a2110200241c0096a41186a2101200241c0096a41106a2133200241c0096a41086a21374100210e024002400240024003402001201841d4006a2900003703002033201841cc006a2900003703002037201841c4006a2900003703002002201829003c3703c009024020182802382203450d0020182802302207200341c8006c6a21242018413c6a21274104210a410021164100210b034002402025450d0002400240200241d00c6a200741246a2204460d00202021030340200241d00c6a41186a200341186a290300370300200241d00c6a41106a200341106a290300370300200241d00c6a41086a200341086a290300370300200220032903003703d00c200241d00c6a41286a200341286a2903003703002002200341206a2903003703f00c200241d00c6a2004412010cf05450d02200341306a22032010460d030c000b0b202041086a2903002108202041106a2903002109202041186a290300211120202903002112200241d00c6a41286a202041286a290300370300200241d00c6a41186a2011370300200241d00c6a41106a2009370300200241d00c6a41086a2008370300200220123703d00c200220202903203703f00c0b200241f0096a41286a200241d00c6a41286a22032903002208370300200241f0096a41206a200241d00c6a41206a22042903002209370300200241f0096a41186a200241d00c6a41186a22282903002211370300200241f0096a41106a200241d00c6a41106a22292903002212370300200241f0096a41086a200241d00c6a41086a22212903002215370300200220022903d00c22133703f0092003200837030020042009370300202820113703002029201237030020212015370300200220133703d00c200241d00c6a2027460d00200241d00c6a2027412010cf05450d00024002400240201829032022082007290310220985201841286a22042903002211200741186a222829030022128584500d00200241c0086a2018290310201841186a29030010c204200241e0086a2009201210c20420024190096a41086a2203200241c0086a41086a2229280200360200200220022903c00837039009200241f0076a20024190096a200241e0086a10c304024020022802e408450d0020022802e00810200b200241c0086a2007290300200741086a29030010c204200241e0086a2008201110c20420032029280200360200200220022903c0083703900920024190086a20024190096a200241e0086a10c304024020022802e408450d0020022802e00810200b200241f0076a20024190086a10c40421030240200228029408450d0020022802900810200b024020022802f407450d0020022802f00710200b0240200341ff01710d00418094ebdc0321030c030b4100210320072903102018290320852028290300200429030085844200520d020c010b418094ebdc0321032018290310200729030085201841186a290300200741086a2903008584500d010b20024190096a428094ebdc0342002007290300200741086a2903002018290310201841186a29030010c104418094ebdc0321032002280290094101460d00200229039809220942ff93ebdc035620024190096a41106a29030022084200522008501b0d002009a721030b20022003360290092002418094ebdc033602940920024190096a2003418094ebdc034b4102746a280200210420024190096a41186a22282007413c6a29000037030020024190096a41106a2229200741346a29000037030020024190096a41086a22212007412c6a2900003703002002200729002437039009024002402016200b470d00201641016a22032016490d142016410174220b2003200b20034b1b220bad42247e2208422088a70d142008a722034100480d140240024020160d002003101e210a0c010b200a201641246c20031022210a0b200a450d010b200a201641246c6a220320022903900937020020212903002108202929030021092028290300211120032004360220200341186a2011370200200341106a2009370200200341086a2008370200201641016a21160c010b20034104102d000b200741c8006a22072024470d000b024020160d00200b450d01200a10200c010b02400240201641246c22070d00410021040c010b200a41206a2103410021040340200328020020046a2104200341246a21032007415c6a22070d000b0b02404100418094ebdc0320046b22032003418094ebdc034b1b222920166e2203418094ebdc032003418094ebdc03491b2228450d00200a41206a210341002104034020162004460d042002417f2003280200220720286a222420242007491b2207360290092002418094ebdc0336029409200320024190096a2007418094ebdc034b4102746a280200360200200341246a21032016200441016a2204470d000b0b02402029202820166c6b2228450d004100210303402016200320167022044d0d052002417f200a200441246c6a2204280220220741016a222420242007491b2207360290092002418094ebdc0336029409200420024190096a2007418094ebdc034b4102746a280200360220200341016a22032028490d000b0b200241d00c6a41186a22042001290300370300200241d00c6a41106a22072033290300370300200241d00c6a41086a22242037290300370300200220022903c0093703d00c0240200e2034470d00200e41016a2203200e490d11200e41017422282003202820034b1b2234ad422c7e2208422088a70d112008a722034100480d1102400240200e0d002003101e21360c010b2036200e412c6c2003102221360b2036450d050b2036200e412c6c6a220320022903d00c370200202429030021082007290300210920042903002111200320163602282003200b3602242003200a360220200341186a2011370200200341106a2009370200200341086a2008370200200e41016a210e0b201841e0006a22182035460d040c000b0b41d0e0c60020042016102a000b41d0e0c60020042016102a000b20034104102d000b20022802a40621390b02402039450d0020022802a00610200b02402002280298062203450d00200341e0006c210420022802900641306a210303400240200341046a280200450d00200328020010200b200341e0006a2103200441a07f6a22040d000b0b0240200228029406450d0020022802900610200b20022802800620022802840620022802880610c0042020450d06202541306c220341306e2104024002400240024002400240024020030d0042002131410121500c010b200441057422104100480d0f2010101e2250450d012004ad21310b024002402020202020036a470d00410021270c010b202541306c2110410021272050210320202104034020032004290000370000200341186a200441186a290000370000200341106a200441106a290000370000200341086a200441086a290000370000202741016a2127200341206a2103200441306a2104201041506a22100d000b0b200242003702fc06200241908cc5003602f806024020274105742203450d00205020036a2151200241d00c6a4102722152200241b0066a41136a2138200241d0066a41136a2153205021280340200241206a202810b004200241206a41086a290300210820022903202109202841086a2900002111202841106a290000211220282900002115200241c0096a41186a2229202841186a290000370300200241c0096a41106a22212012370300200241c0096a41086a220a2011370300200220153703c0090240024002400240024002400240024020022802f806221641908cc500460d0020022802fc0621180c010b200241f0096a410041e00210cc051a200241d00c6a410041900410cc051a41f806101e2216450d0141002118201641003b010620164100360200201641086a200241f0096a41e00210cd051a201641e8026a200241d00c6a41900410cd051a200241003602fc06200220163602f8060b2009427f2008428080808010541b2108202841206a2128024003400240024020162f010622240d00410021100c010b20244105742103201641086a2104417f21100340024020030d00202421100c020b201041016a2110200241c0096a2004412010cf052207450d03200341606a2103200441206a21042007417f4a0d000b0b02402018450d002018417f6a2118201620104102746a41f8066a28020021160c010b0b200241c0086a41186a22032029290300370300200241c0086a41106a20212903002209370300200241c0086a41086a200a2903002211370300200220022903c00922123703c008200220022802800741016a3602800720024190096a41106a223b200937030020024190096a41086a223c201137030020024190096a41186a22412003290300370300200220123703900920162f01062204410b490d0202400240201641908cc500460d00200241f0096a410041e00210cc051a200241d00c6a410041900410cc051a41f806101e22030d0141f8064108102d000b41c8a6c000412d41a888c6001028000b200341003b010620034100360200200341086a200241f0096a41e00210cd052107200341e8026a200241d00c6a41900410cd052118200241d0066a41086a2254201641d0016a290000370300200241d0066a41106a2255201641d8016a290000370300200241d0066a41186a2256201641e0016a290000370300200241d00c6a41086a220b20164190056a290300370300200241d00c6a41106a220120164198056a290300370300200241d00c6a41186a2233201641a0056a290300370300200241d00c6a41206a2237201641a8056a290300370300200241d00c6a41286a2235201641b0056a290300370300200220162900c8013703d00620022016290388053703d00c2007201641e8016a20162f010641796a220441057410cd0521072018201641b8056a200441306c10cd052118201641063b0106200320043b0106200220022f01d0063b01b808200220022d00d2063a00ba08200220532900003703a8072002205341056a22572900003700ad0720022800d306214320022800d706214620022800db06214720022800df062148200241f0096a41286a224a2035290300370300200241f0096a41206a224b2037290300370300200241f0096a41186a224c2033290300370300200241f0096a41106a224d2001290300370300200241f0096a41086a224e200b290300370300200220022903d00c3703f0090240024020104107490d00201041057420076a41c07e6a2007201041796a22244105746a2207200441ffff037120246b41057410ce051a200741186a2041290300370000200741106a203b290300370000200741086a203c2903003700002007200229039009370000201041306c20186a220441e07d6a200441b07d6a2204200341066a22072f010020246b41306c10ce051a200441186a4200370300200420083703102004420037030820042008370300200441286a4100360200200442083703200c010b201641066a2107201641086a20104105746a220441206a200420162f010620106b41057410ce051a200441186a2041290300370000200441106a203b290300370000200441086a203c2903003700002004200229039009370000201641e8026a201041306c6a220441306a200420162f010620106b41306c10ce051a200441186a4200370300200420083703102004420037030820042008370300200441286a4100360200200442083703200b200720072f010041016a3b0100200241f0076a41026a220420022d00ba083a0000200a204e2903003703002021204d2903003703002029204c290300370300200241c0096a41206a2242204b290300370300200241c0096a41286a2239204a290300370300200220022f01b8083b01f007200220022903a80737039008200220022900ad0737009508200220022903f0093703c009200241e0086a41286a223d2039290300370300200241e0086a41206a223e2042290300370300200241e0086a41186a223f2029290300370300200241e0086a41106a22452021290300370300200241e0086a41086a2249200a29030037030020024180066a41026a224020042d00003a0000200220022903c0093703e00820022002290390083703c80720022002290095083700cd07200220022f01f0073b0180060240201628020022180d0041002118200241f8066a2104200321100c060b20162f0104214441002158200321590340200241a0066a41026a225a20402d00003a0000200220022f0180063b01a006200220022903c80737039008200220022900cd07370095082039203d2903003703002042203e2903003703002029203f29030037030020212045290300370300200a2049290300370300200220022903e0083703c00941000d04204441ffff0371212402400240024020182f01062203410b490d002052410041a20710cc051a41a807101e2207450d0820074100360200200741046a200241d00c6a41a40710cd051a2056201841e0016a2900003703002055201841d8016a2900003703002054201841d0016a290000370300200220182900c8013703d0062035201841b0056a2903003703002037201841a8056a2903003703002033201841a0056a290300370300200120184198056a290300370300200b20184190056a29030037030020022018290388053703d00c200741086a201841e8016a20182f0106220441796a220341057410cd05215b200741e8026a201841b8056a200341306c10cd05215c200741f8066a20184194076a2004417a6a222541027410cd05213a201841063b0106200720033b010602402025450d0041002103203a210403402004280200221020033b010420102007360200200441046a21042025200341016a2203470d000b0b204a2035290300370300204b2037290300370300204c2033290300370300204d2001290300370300204e200b290300370300200220022903d00c3703f009200220022f01d0063b01b808200220022d00d2063a00ba0820022900d306210820022900db062109200220572900003700ad07200220532900003703a807203820022903a807370000203841056a222520022900ad07370000200220022d00ba083a00b206200220022f01b8083b01b006200220093700bb06200220083700b3062035204a2903003703002037204b2903003703002033204c2903003703002001204d290300370300200b204e290300370300200220022903f0093703d00c204441ffff037122044107490d01205b2024417a6a22104105746a205b202441796a22034105746a220420072f010620036b41057410ce051a200441186a2002290095083700002004204836000f2004204736000b2004204636000720042043360003200441026a205a2d00003a0000200420022f01a0063b00002004200229039008370013202441306c205c6a220441e07d6a200441b07d6a220420072f0106224420036b41306c10ce051a200441286a2039290300370300200441206a2042290300370300200441186a2029290300370300200441106a2021290300370300200441086a200a290300370300200420022903c0093703002007204441016a22043b010620244102742244203a6a416c6a203a20104102746a2224200441ffff037120106b41027410ce051a20242059360200201020072f010622244b0d02200720446a41e0066a2104034020042802002210200341016a22033b010420102007360200200441046a210420032024490d000c030b0b201841086a2204202441016a22104105746a200420244105746a2204200320246b220741057410ce051a2004204836000f2004204736000b2004204636000720042043360003200441026a205a2d00003a0000200420022f01a0063b00002004200229039008370013200441186a2002290095083700002018202441306c6a22044198036a200441e8026a2225200741306c10ce051a20044190036a203929030037030020044188036a204229030037030020044180036a2029290300370300200441f8026a2021290300370300200441f0026a200a290300370300202520022903c0093703002018200341016a22033b01062024410274201841f8066a22046a41086a200420104102746a2204200341ffff037120106b41027410ce051a200420593602000240202420182f010622034f0d00205920103b010420592018360200201020034f0d002003417f6a210720182010417f6a22034102746a4180076a2104034020042802002210200341026a3b010420102018360200200441046a21042007200341016a2203470d000b0b41001a200241f8066a1a20161a0c090b201841086a2203202441016a22104105746a200320244105746a220320182f0106224420246b223a41057410ce051a2003204836000f2003204736000b2003204636000720032043360003200341026a205a2d00003a0000200320022f01a0063b00002003200229039008370013200341186a200229009508370000201841e8026a202441306c6a220341306a2003203a41306c10ce051a200341286a2039290300370300200341206a2042290300370300200341186a2029290300370300200341106a2021290300370300200341086a200a290300370300200320022903c0093703002018204441016a22033b01062024410274223a201841f8066a22446a41086a204420104102746a2244200341ffff037120106b41027410ce051a20442059360200200420182f010622104f0d002018203a6a41fc066a2103034020032802002204202441016a22243b010420042018360200200341046a210320102024470d000b0b205841016a212420024190066a41026a220320022d00b2063a0000203c200b290300370300203b20012903003703002041203329030037030020024190096a41206a2204203729030037030020024190096a41286a22102035290300370300200220022f01b0063b019006200220022903d00c37039009200220382900003703f007200220252900003700f50720022800b306214320022800b706214620022800bb06214720022800bf062148203d2010290300370300203e2004290300370300203f20412903003703002045203b2903003703002049203c290300370300204020032d00003a000020022002290390093703e008200220022903f0073703c807200220022900f5073700cd07200220022f0190063b0180060240201828020022030d0020181a200241f8066a22041a20242118200721100c070b20182f01042144200241f8066a1a20181a2003211820072159202421580c000b0b2016201041306c6a22034180036a4200370300200341f8026a2008370300200341f0026a4200370300200341e8026a200837030020034190036a410036020020034188036a221028020021042003418c036a2802002103201042083703002004450d052003450d05200410200c050b41f8064108102d000b201620104105746a220341286a200341086a2207200420106b41057410ce051a200341206a2041290300370000200341186a203b290300370000200341106a203c29030037000020072002290390093700002016201041306c6a22034198036a200341e8026a220420162f010620106b41306c10ce051a20034190036a410036020020034188036a420837030020034180036a4200370300200341f8026a2008370300200341f0026a420037030020042008370300201620162f010641016a3b01060c030b41c6a8c000413541a888c6001028000b41a8074108102d000b2052410041a20710cc051a41a807101e2203450d0620034100360200200341046a200241d00c6a41a40710cd051a2003200428020022073602f8062004200336020020042004280204222441016a360204200741003b010420072003360200200241c0096a41026a222520402d00003a0000200220022f0180063b01c009200220022903c8073703f009200220022900cd073700f5092035203d2903003703002037203e2903003703002033203f29030037030020012045290300370300200b2049290300370300200220022903e0083703d00c20242018470d0520032f01062207410a4b0d04200320074105746a2204410a6a20252d00003a0000200441086a20022f01c0093b0000200441176a2048360000200441136a20473600002004410f6a20463600002004410b6a20433600002004411b6a20022903f009370000200441206a20022900f5093700002003200741306c6a220441e8026a20022903d00c370300200441f0026a200b290300370300200441f8026a200129030037030020044180036a203329030037030020044188036a203729030037030020044190036a20352903003703002003200741016a22044102746a41f8066a2010360200200320043b010620102003360200201020043b010441001a20161a0b20282051470d000b0b0240200e412c6c2203450d00203620036a210b2036212803400240202828022841246c2203450d002028280220222920036a21210340200241106a202810b00420022002290310427f200241106a41086a290300428080808010541b2208428094ebdc038022094200202922163502202211420010d205200241086a290300200229030022122011200820094280ec94a37c7e7c7e22082008428094ebdc038022084280ec94a37c7e7c4280cab5ee01562008a76aad7c2208201254ad7c2109201641246a2129200241f8066a210320022802fc062124024002400240034002400240200328020022182f010622250d00410021100c010b20254105742103201841086a2104417f21100340024020030d00202521100c020b201041016a211020162004412010cf052207450d03200341606a2103200441206a21042007417f4a0d000b0b2024450d022024417f6a2124201820104102746a41f8066a21030c000b0b2018201041306c6a220341f8026a2204427f2004290300221120087c22122012201154220420034180036a2210290300221120097c2004ad7c221220115420122011511b22041b3703002010427f201220041b370300202841086a2900002111202841106a29000021122028290000211520024190096a41186a2216202841186a29000037030020024190096a41106a2218201237030020024190096a41086a22242011370300200220153703900920034188036a2107024020034190036a221028020022042003418c036a280200470d00200441016a22032004490d15200441017422252003202520034b1b220aad42307e2211422088a70d152011a722254100480d150240024020040d002025101e21030c010b2007280200200441306c2025102221030b2003450d0220072003360200200741046a200a360200201028020021040b20242903002111201829030021122016290300211520022903900921132007280200200441306c6a2203200837032020032013370300200341286a2009370300200341186a2015370300200341106a2012370300200341086a20113703002010201028020041016a3602000b20292021460d020c010b0b20254108102d000b2028412c6a2228200b470d000b0b200228028007212120022802fc06211020022802f8062128200241d00c6a41086a22034200370300200242003703d00c41f3d6c3004116200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024020022802d00c2204417f460d002003450d00200220043602c409200220033602c009200241d00c6a200241c0096a10e301024020022802d00c2229450d0020022902d40c21082004450d06200310200c060b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b42002108410121290c040b20104101102d000b41a8a5c000412741a888c6001028000b41f7a5c000413041a888c6001028000b41a8074108102d000b02402029450d002008422088a72203450d0020034105742107202921040340410f101e2203450d03200341002900ffd443370000200341076a4100290086d5433700002002428f808080f0013702d40c200220033602d00c2004200241d00c6a10ca0120022802d80c210320022802d00c2116200241b0066a41186a22184200370300200241b0066a41106a22244200370300200241b0066a41086a22254200370300200242003703b00620162003200241b0066a100120024190096a41186a201829030037030020024190096a41106a202429030037030020024190096a41086a2025290300370300200220022903b00637039009024020022802d40c450d0020022802d00c10200b200441206a210420024190096a41201004200741606a22070d000b0b02402008a7450d00202910200b02402010450d0020102103034020282802f80621282003417f6a22030d000b03402010417f6a22100d000b0b024020210d00427f2112427f21110c060b200242003703980920022028360294092002410036029009200241d00c6a20024190096a10e202200241f0096a41086a223a200241d00c6a41186a2218290300370300200241f0096a41106a2237200241d00c6a41206a290300370300200241f0096a41186a2235200241d00c6a41286a290300370300200220022903e00c3703f0092021417f6a212920022802d00c210b20022802d40c212820022802d80c210120022802dc0c21330240200241a00d6a28020022210d00427f2112427f21110c050b200241880d6a223b2903002115200241980d6a223c2903002113200241900d6a2903002114200241a40d6a290200210820022903800d210d200241d00c6a41106a2107427f2112427f21110340200241c0096a41186a20352903002209370300200241c0096a41106a203729030022173703004108210a200241c0096a41086a200241f0096a41086a22032903002219370300200220022903f00922303703c009203520093703002037201737030020032019370300200220303703f0094100214402402008422088a741306c2216450d00201641306d2244ad42307e2209422088a70d0b2009a722034100480d0b2003101e220a450d050b2008a72138410021100240202120166a2021460d0041002110200a2103202121040340200441286a2903002108200441206a29030021092018200441186a2903003703002007200441106a290300370300200241d00c6a41086a2224200441086a290300370300200220042903003703d00c2003200842002009427f5241002008501b22251b37030820032009427f20251b370300200341106a20022903d00c370300200341186a2024290300370300200341206a2007290300370300200341286a2018290300370300200341306a2103201041016a2110200441306a2104201641506a22160d000b0b02402038450d00202110200b2010ad42307e2208422088a70d012008a72203417f4c0d010240024020030d00410821250c010b2003101e2225450d040b201342002014427f5241002013501b22031b21082014427f20031b210920154200200d427f5241002015501b22031b2115200d427f20031b21130240024020100d00410021160c010b200a201041306c6a21244100211620252103200a21040340200320042903003703002003200441086a290300370308200341106a200441106a290300370300200341186a200441186a290300370300200341206a200441206a290300370300200341286a200441286a290300370300200341306a2103201641016a2116200441306a22042024470d000b0b20182015370300200220133703e00c200220093703d00c200220163602f80c200220103602f40c200220253602f00c200220083703d80c0240410f101e2203450d00200341002900ffd443370000200341076a4100290086d5433700002002428f808080f0013702e408200220033602e008200241f0096a200241e0086a10ca0120022802e808210320022802e0082104200241b0066a41186a22104200370300200241b0066a41106a22164200370300200241b0066a41086a22244200370300200242003703b00620042003200241b0066a100120024190096a41186a201029030037030020024190096a41106a201629030037030020024190096a41086a2024290300370300200220022903b00637039009024020022802e408450d0020022802e00810200b200241003602e808200242013703e0082002200241d00c6a3602c008200241c0086a200241e0086a10df02200220073602c008200241c0086a200241e0086a10df0220022802f00c2103200220022802f80c22043602c008200241c0086a200241e0086a106302402004450d00200441306c21040340200341106a200241e0086a10ca01200220033602c008200341306a2103200241c0086a200241e0086a10df02200441506a22040d000b0b20022802e408210320024190096a412020022802e008220420022802e808100502402003450d00200410200b200920125421032008201151210420082011542110024020022802f40c450d0020022802f00c10200b2003201020041b210302402044450d00200a10200b2008201120031b21112009201220031b21122029450d072002203336029c09200220013602980920022028360294092002200b36029009200241d00c6a20024190096a10e202203a200741086a2903003703002037200741106a2903003703002035200741186a290300370300200220072903003703f0092029417f6a2129203b2903002115203c290300211320022903800d210d20022903900d211420022802d00c210b20022802d40c212820022802d80c210120022802dc0c213320022902a40d210820022802a00d2221450d060c010b0b410f4101102d000b102c000b410f4101102d000b20034108102d000b20034108102d000b2029450d000340200220333602fc09200220013602f809200220283602f4092002200b3602f009200241d00c6a200241f0096a10e20220022802d40c212820022802a00d2203450d012029417f6a212920022802d00c210b20022802d80c210120022802dc0c2133024020022802a40d450d00200310200b20290d000b0b0240202841908cc500460d0020282802002103202810202003450d0020032802002104200310202004450d00024020042802002203450d000340200410202003210420032802002210210320100d000b0b200410200b200241d00c6a41086a22034200370300200242003703d00c41b5a8c4004111200241d00c6a1000200241f0096a41086a22042003290300370300200220022903d00c3703f009200220113703d80c200220123703d00c200241f0096a4110200241d00c6a4110100520034200370300200242003703d00c41f3d6c3004116200241d00c6a100020042003290300370300200220022903d00c3703f009200241003602d80c200242013703d00c200220273602c009200241c0096a200241d00c6a106302402027450d00202741057421042050210303402003200241d00c6a10ca01200341206a2103200441606a22040d000b0b20022802d40c2103200241f0096a411020022802d00c220420022802d80c100502402003450d00200410200b2027ad21080240200e450d00200e412c6c2104203641206a210303400240200341046a280200450d00200328020010200b2003412c6a2103200441546a22040d000b0b2008422086210802402034450d00203610200b20312008842108204f450d01202010200c010b200241d00c6a41086a22034200370300200242003703d00c41b5a8c4004111200241d00c6a1000200241f0096a41086a2003290300370300200220022903d00c3703f009200241003602d00c200241f0096a4110200241d00c6a10032103024020022802d00c2204417f460d002003450d002004410f4d0d02200310200b410021500b20002008370204200020503602000240200c417f732006a741004771450d00200510200b20024180146a24000f0b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b1027000b41ceb8c4004133200241f8136a41fcbfc4004184b9c400102e000b8a0d021e7f037e230041f0026b220424000240024002400240410d101e2205450d00200541002900e6d643370000200541056a41002900ebd6433700002004428d808080d0013702e401200420053602e0012001200441e0016a10ca0120042802e801210520042802e0012106200441a0026a41186a22074200370300200441a0026a41106a22084200370300200441a0026a41086a22094200370300200442003703a00220062005200441a0026a1001200441a0016a41186a2007290300370300200441a0016a41106a2008290300370300200441a0016a41086a2009290300370300200420042903a0023703a001024020042802e401450d0020042802e00110200b200441003602a002200441a0016a4120200441a0026a1003210502400240024020042802a0022206417f460d002005450d002006450d0420052d0000220641034f0d042005102020060e03000201000b200441f8006a200110b10420042d00784101470d04200441c0016a41186a220720044191016a290000370300200441c0016a41106a220520044189016a290000370300200441c0016a41086a220620044181016a290000370300200420042900793703c001200441a0026a200441c0016a10fc02200441a0016a41186a22082007290300370300200441a0016a41106a22072005290300370300200441a0016a41086a22092006290300370300200420042903c0013703a00120042802c002220a450d04200441e0016a41186a220b2008290300370300200441e0016a41106a220c2007290300370300200441e0016a41086a220d2009290300370300200441e0016a41286a2207200441a0026a41086a2208290300370300200441e0016a41306a2209200441a0026a41106a220e290300370300200441e0016a41386a220f200441a0026a41186a2210290300370300200441086a41286a2211200441ec026a2212280200360200200441086a41206a2213200441e4026a2214290200370300200441086a41186a2215200441dc026a2216290200370300200441086a41106a2217200441d4026a2218290200370300200441086a41086a2219200441cc026a221a290200370300200420042903a0013703e001200420042903a00237038002200420042902c402370308200441386a41386a221b200f290300370300200441386a41306a221c2009290300370300200441386a41286a221d2007290300370300200441386a41206a221e200429038002370300200441386a41186a221f200b290300370300200441386a41106a2220200c290300370300200441386a41086a2221200d290300370300200420042903e001370338200f201b2903003703002009201c2903003703002007201d290300370300200441e0016a41206a221b201e290300370300200b201f290300370300200c2020290300370300200d2021290300370300200420042903383703e001200441f8006a41186a201f290300370300200441f8006a41106a2020290300370300200441f8006a41086a2021290300370300200420042903383703782010200f290300370300200e2009290300370300200820072903003703002004200a3602c0022004201b2903003703a002200441c4026a22072004290308370200201a20192903003702002018201729030037020020162015290300370200201420132903003702002012201128020036020020102903002122200e200e290300222320027c22243703002010202220037c2024202354ad7c37030020082903002122200420042903a002222320027c22243703a0022008202220037c2024202354ad7c370300200441c0016a20012002200310a80320043502c00121022005290300212220062903002103200441f8006a200441a0026a10c50402402007280200450d0020042802c00210200b200242018521020c050b200441a0026a200110b10420042d00a0024101470d03200441f8016a200441b9026a290000370300200441e0016a41106a200441b1026a290000370300200441e0016a41086a200441a9026a290000370300200420042900a1023703e001200441386a200441e0016a2002200310a80320043502384201852102200441386a41106a2903002122200441386a41086a29030021030c040b200441a0026a20012002200310a80320043502a0024201852102200441b0026a2903002122200441a8026a29030021030c030b410d4101102d000b41ceb8c4004133200441a0026a41fcbfc4004184b9c400102e000b420021020b2000200337030820002002370300200041106a2022370300200441f0026a24000baa0101037f230041206b22022400410021032002410036021420014110200241146a100321010240024020022802142204417f460d002001450d002002410036020c20044104490d0120012800002103200241003602102004417c714104460d012001280004210420011020200041086a200436020020002003360204410121030b20002003360200200241206a24000f0b41ceb8c4004133200241186a41fcbfc4004184b9c400102e000b930a05037f047e057f027e047f230022022103200241c0016b41607122022400200141186a220429000021052004200229039801370000200129001021062001200229039001370010200129000821072001200229038801370008200241003a00800120012900002108200120022903800137000020022005370378200220063703702002200737036820022008370360200141206a2d0000210420024180016a41176a2209200537000020024180016a41106a220a200229007137030020024180016a41086a220b200229006937030020022002290061370380010240024002402008a741ff01714101470d00200241186a41176a2009290000370000200241186a41106a200a290300370300200241186a41086a200b2903003703002002200229038001370318200220043a0037200241386a200241186a10a5042002410036028001200241386a412020024180016a1003210c0240200228028001220d417f460d00200c450d002002200d36025c2002200c3602582002200241d8006a1097032002290300a70d03200228025c2204450d03200241106a290300210e2002290308210f20022004417f6a220a36025c20022002280258221041016a220b36025820102d0000220441014b0d03410021110240024020040e020100010b410021040340200a2004460d042002201020046a41026a360258200441016a2209210420094120470d000b2002200a20096b220a36025c41012111201020096a41016a210b0b200a450d032002200a417f6a220a36025c2002200b41016a360258200b2d0000220941014b0d034100210402400240024020090e020100010b41002104200241003a00a0010340200a2004460d0220024180016a20046a200b20046a220941016a2d00003a00002002200941026a3602582002200441016a22093a00a0012009210420094120470d000b200241e0006a41086a20024180016a41086a290300370300200241e0006a41106a20024180016a41106a290300370300200241e0006a41186a20024180016a41186a29030037030020022002290380013703602002200a20096b36025c410121040b20024180016a41186a2209200241e0006a41186a220a29030037030020024180016a41106a220b200241e0006a41106a221029030037030020024180016a41086a2212200241e0006a41086a2213290300370300200220022903603703800120114102460d04200a20092903003703002010200b2903003703002013201229030037030020022002290380013703600240200d450d00200c10200b20024180016a41186a200241e0006a41186a2209290300220537030020024180016a41106a200241e0006a41106a220a290300220837030020024180016a41086a200241e0006a41086a220b29030022063703002002200229036022073703800120092005370300200a2008370300200b200637030020022007370360200120043a000020012007370001200141096a2006370000200141116a2008370000200141196a2005370000200041306a200e370300200041286a200f3703002000420137030020002002290318370008200041106a200241186a41086a290300370000200041186a200241186a41106a290300370000200041206a200241186a41186a290300370000200324000f0b2002410036025c200441ff0171450d03200241003a00a0010c030b418ddbc50041dd0041ecdbc5001045000b20004200370300200324000f0b2002410036025c0b41ceb8c4004133200241b8016a41fcbfc4004184b9c400102e000b9f0a03037f047e0c7f230022022103200241c0016b41607122022400200141186a220429000021052004200229039801370000200129001021062001200229039001370010200129000821072001200229038801370008200241003a00800120012900002108200120022903800137000020022005370378200220063703702002200737036820022008370360200141206a2d0000210420024180016a41176a2209200537000020024180016a41106a220a200229007137030020024180016a41086a220b2002290069370300200220022900613703800102400240024002402008a741ff01714101470d00200241086a41176a2009290000370000200241086a41106a200a290300370300200241086a41086a200b2903003703002002200229038001370308200220043a0027200241286a200241086a10a6042002410036028001200241286a412020024180016a1003210c0240200228028001220d417f460d00200c450d002002200d36024c2002200c360248200241d0006a200241c8006a10e3012002280250220e450d042002280254210f200228024c2204450d03200241d8006a280200211020022004417f6a220a36024c20022002280248221141016a220b36024820112d0000220441014b0d03410021120240024020040e020100010b410021040340200a2004460d042002201120046a41026a360248200441016a2209210420094120470d000b2002200a20096b220a36024c41012112201120096a41016a210b0b200a450d032002200a417f6a220a36024c2002200b41016a360248200b2d0000220941014b0d034100210402400240024020090e020100010b41002104200241003a00a0010340200a2004460d0220024180016a20046a200b20046a220941016a2d00003a00002002200941026a3602482002200441016a22093a00a0012009210420094120470d000b200241e0006a41086a20024180016a41086a290300370300200241e0006a41106a20024180016a41106a290300370300200241e0006a41186a20024180016a41186a29030037030020022002290380013703602002200a20096b36024c410121040b20024180016a41186a2209200241e0006a41186a220a29030037030020024180016a41106a220b200241e0006a41106a221129030037030020024180016a41086a2213200241e0006a41086a2214290300370300200220022903603703800120124102460d05200a20092903003703002011200b2903003703002014201329030037030020022002290380013703600240200d450d00200c10200b20024180016a41186a200241e0006a41186a2209290300220537030020024180016a41106a200241e0006a41106a220a290300220837030020024180016a41086a200241e0006a41086a220b29030022063703002002200229036022073703800120092005370300200a2008370300200b200637030020022007370360200120043a000020012007370001200141096a2006370000200141116a2008370000200141196a2005370000200041286a20103602002000200f3602242000200e36022020002002290308370000200041086a200241086a41086a290300370000200041106a200241086a41106a290300370000200041186a200241086a41186a290300370000200324000f0b2002410036024c200441ff0171450d03200241003a00a0010c030b418ddbc50041dd0041ecdbc5001045000b20004100360220200324000f0b2002410036024c0b200f450d00200e10200b41ceb8c4004133200241d0006a41fcbfc4004184b9c400102e000b882605017f037e097f047e107f23004180066b22032400200241306a2903002104200241286a2903002105200241d8006a290300210620022802002107200341206a41086a2002410c6a290200370300200341206a41106a200241146a290200370300200341206a41186a2002411c6a290200370300200341c0006a200241246a280200360200200341086a2208200241c0006a2209290300370300200341106a220a200241c8006a220b290300370300200341186a220c200241d0006a220d290300370300200320022902043703202003200241386a2202290300370300200341e8006a41086a200341206a410c6a290200370300200341e8006a41106a200341206a41146a290200370300200341e8006a41186a200341206a411c6a290200370300200341c8006a41086a220e2009290300370300200341c8006a41106a220f200b290300370300200341c8006a41186a220b200d290300370300200320032902243703682003200229030037034820012802002109200341c0026a41186a2202200c290300370300200341c0026a41106a220c200a290300370300200341c0026a41086a220a2008290300370300200320032903003703c002024002400240024002400240024002400240024041c800101e2208450d00200842003703002008200736022020082003290348370224200841186a4200370300200841106a4200370300200841086a42003703002008412c6a200e290300370200200841346a200f2903003702002008413c6a200b29030037020020034190026a41086a200a29030037030020034190026a41106a200c29030037030020034190026a41186a2002290300370300200320032903c002370390020240024002400240024020092802082202200941046a280200470d00200241016a220a2002490d022002410174220b200a200b200a4b1b220aad42e0007e2210422088a70d022010a7220b4100480d020240024020020d00200b101e21020c010b2009280200200241e0006c200b102221020b2002450d0120092002360200200941046a200a360200200928020821020b2009280200200241e0006c6a22024200370310200220043703082002200537030020022008360230200220032903900237023c200241286a4200370300200241206a4201370300200241186a4200370300200241346a428180808010370200200241c4006a20034190026a41086a2208290300370200200241cc006a20034190026a41106a220c290300370200200241d4006a20034190026a41186a22022903003702002009200928020841016a3602082001280204210d200341d0016a41186a200341c8006a41186a290300370300200341d0016a41106a200341c8006a41106a290300370300200341d0016a41086a200341c8006a41086a290300370300200320032903483703d001200d280200220a41908cc500460d02200d280204210b0c030b200b4108102d000b1027000b4100210b200341c0026a410041e00210cc051a20034190026a41286a410036020020034190026a41206a420037030020024200370300200c4200370300200842003703002003420037039002419403101e220a450d02200a41003b0106200a4100360200200a41086a200341c0026a41e00210cd051a200a4190036a200341b8026a280200360200200a4188036a200341b0026a290300370200200a4180036a200341a8026a290300370200200a41f8026a200341a0026a290300370200200a41f0026a20034190026a41086a290300370200200a2003290390023702e802200d4100360204200d200a3602000b0240034002400240200a2f0106220c0d00410021090c010b200c4105742102200a41086a2108417f21090340024020020d00200c21090c020b200941016a2109200341d0016a2008412010cf052201450d03200241606a2102200841206a21082001417f4a0d000b0b0240200b450d00200b417f6a210b200a20094102746a4194036a280200210a0c010b0b20034188016a41186a200341d0016a41186a2202290300221037030020034188016a41106a200341d0016a41106a2208290300221137030020034188016a41086a200341d0016a41086a22012903002212370300200320032903d001221337038801200d200d28020841016a360208200220103703002008201137030020012012370300200320133703d001200a2f0106220c410b490d0302400240200a41908cc500460d00200341c0026a410041e00210cc051a200341b8026a22024100360200200341b0026a22084200370300200341a8026a22014200370300200341a0026a220b420037030020034190026a41086a220c42003703002003420037039002419403101e220e0d014194034104102d000b41c8a6c000412d41a888c6001028000b200e41003b0106200e4100360200200e41086a200341c0026a41e00210cd05210f200e4190036a2002280200360200200e4188036a2008290300370200200e4180036a2001290300370200200e41f8026a200b290300370200200e41f0026a200c290300370200200e2003290390023702e8022003200a2f00c8013b018c022003200a41ca016a2d00003a008e02200a41cb016a2800002114200a41cf016a2800002115200a41d3016a2800002116200a41d7016a28000021172003200a41e0016a2900003700fd012003200a2900db013703f801200a280280032118200f200a41e8016a200a2f010641796a220841057410cd052101200e41e8026a200a4184036a200841027410cd05210b200a41063b0106200e20083b0106200320032f018c023b01f401200320032d008e023a00f601200320032903f80137039002200320032900fd01370095020240024020094107490d00200e41066a210220012009417a6a220c4105746a2001200941796a22094105746a2201200841ffff037120096b41057410ce051a200141186a200341d0016a41186a290300370000200141106a200341d0016a41106a290300370000200141086a200341d0016a41086a290300370000200120032903d001370000200b200c4102746a2101200b20094102746a21080c010b200a41086a2202200941016a22014105746a200220094105746a2208200a41066a22022f010020096b41057410ce051a200841186a200341d0016a41186a290300370000200841106a200341d0016a41106a290300370000200841086a200341d0016a41086a290300370000200820032903d001370000200a41e8026a220b20094102746a2108200b20014102746a2101200921090b2001200820022f010020096b41027410ce051a20082007360200200220022f010041016a3b0100200341f0016a41026a221920032d00f60122023a0000200341bc016a41026a221a20023a000020032003290095023700c50120032003290390023703c001200320032f01f40122023b01f001200320032900c5013700ad01200320032903c0013703a801200320023b01bc010240200a280200220b0d004100211b0c070b200a2f01042107200341c0026a410272211c4100211b03402019201a2d00003a0000200320032f01bc013b01f001200320032903a8013703d001200320032900ad013700d50141000d05200741ffff0371210a024002400240200b2f01062202410b490d00201c410041be0310cc051a41c403101e2201450d0920014100360200200141046a200341c0026a41c00310cd051a2003200b2f00c8013b018c022003200b41ca016a2d00003a008e022003200b41db016a2900003703f8012003200b41e0016a2900003700fd01200b41cb016a280000211d200b41cf016a280000211e200b41d3016a280000211f200b41d7016a2800002120200b4180036a2802002121200141086a200b41e8016a200b2f0106220841796a220241057410cd052122200141e8026a200b4184036a200241027410cd05212320014194036a200b41b0036a2008417a6a220c41027410cd05210f200b41063b0106200120023b01060240200c450d0041002102200f210803402008280200220920023b010420092001360200200841046a2108200c200241016a2202470d000b0b200320032d008e0222023a00f601200320032f018c0222083b01f401200320032903f80137039002200320032900fd0137009502200341c0016a41026a220c20023a0000200320083b01c00120032003290390023703c00220032003290095023700c502200741ffff037122084107490d012022200a417a6a22094105746a2022200a41796a22024105746a220820012f010620026b41057410ce051a200841186a20032900d5013700002008201736000f2008201636000b2008201536000720082014360003200841026a20192d00003a0000200820032f01f0013b0000200820032903d0013700132023200941027422086a202320024102746a220720012f0106221420026b41027410ce051a200720183602002001201441016a22073b0106200a4102742214200f6a416c6a200f20086a2208200741ffff0371220a20096b41027410ce051a2008200e360200200a2009490d02200120146a41fc026a2108034020082802002209200241016a22023b010420092001360200200841046a21082002200a490d000c030b0b200b41086a2208200a41016a22094105746a2008200a4105746a22082002200a6b41057410ce051a200841186a20032900d5013700002008201736000f2008201636000b2008201536000720082014360003200841026a200341f0016a41026a2d00003a0000200820032f01f0013b0000200820032903d001370013200b41e8026a2202200941027422086a2002200a41027422016a2202200b2f0106220c200a6b41027410ce051a20022018360200200b200c41016a22023b01062001200b4194036a220a6a41086a200a20086a2208200241ffff0371220120096b41027410ce051a2008200e360200200741ffff037120014f0d0a200b2009417f6a22024102746a4198036a2108034020082802002209200241016a22023b01042009200b360200200841046a210820022001490d000c0b0b0b200b41086a2202200a41016a22074105746a2002200a4105746a2202200b2f0106200a6b41057410ce051a200241186a20032900d5013700002002201736000f2002201636000b2002201536000720022014360003200241026a20192d00003a0000200220032f01f0013b0000200220032903d001370013200b41e8026a22092007410274220f6a2009200a41027422026a2209200b2f01062214200a6b41027410ce051a20092018360200200b201441016a22093b01062002200b4194036a22146a41086a2014200f6a220f200941ffff0371220920076b41027410ce051a200f200e360200200820094f0d00200b20026a4198036a2102034020022802002208200a41016a220a3b01042008200b360200200241046a21022009200a470d000b0b201b41016a211b201a200c2d00003a0000200320032f01c0013b01bc01200320032903c0023703a801200320032900c5023700ad010240200b28020022020d00201d211420202117201f2116201e21152001210e202121180c080b200b2f01042107201d211420202117201f2116201e21152002210b202121182001210e0c000b0b200a20094102746a41e8026a20073602000c060b41c8004108102d000b4194034104102d000b200a41086a220b200941016a220d4105746a200b20094105746a220b200c20096b41057410ce051a200b41186a2002290300370000200b41106a2008290300370000200b41086a2001290300370000200b20032903d001370000200a41e8026a2202200d4102746a200220094102746a2202200a2f010620096b41027410ce051a20022007360200200a200a2f010641016a3b01060c030b41c6a8c000413541a888c6001028000b41c4034104102d000b200341c0026a410272410041be0310cc051a41c403101e2202450d0120024100360200200241046a200341c0026a41c00310cd051a2002200d280200220836029403200d2002360200200d200d280204220941016a360204200841003b01042008200236020020034190026a41026a200341bc016a41026a2d00003a0000200320032f01bc013b019002200320032903a8013703c002200320032900ad013700c5022009201b470d0220022f01062209410a4b0d03200220094105746a2208410a6a20034190026a41026a2d00003a0000200841086a20032f0190023b0000200841176a2017360000200841136a20163600002008410f6a20153600002008410b6a20143600002008411b6a20032903c002370000200841206a20032900c5023700002002200941016a22084102746a4194036a200e360200200220094102746a41e8026a2018360200200220083b0106200e20083b0104200e20023602000b20002005370320200020032903683703002000200329034837033020002006370350200041286a2004370300200041186a200341e8006a41186a290300370300200041106a200341e8006a41106a290300370300200041086a200341e8006a41086a290300370300200041386a200341c8006a41086a290300370300200041c0006a200341c8006a41106a290300370300200041c8006a200341c8006a41186a29030037030020034180066a24000f0b41c4034104102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000bb30403037f017e017f230041206b2203240002402001450d00034020002802940321002001417f6a22010d000b0b02402002450d004100210441002105034002400240200420002f0106490d00024002400240200041908cc500460d00200028020022010d012005ad210641002107410021010c020b41cfa5c000412841a888c6001028000b20003301044220862005ad842106410121070b200010202006a7210502402006422088a7220420012f0106490d00034002400240200128020022000d002005ad2106410021000c010b200741016a210720013301044220862005ad8421060b200110202006a72105200021012006422088a7220420002f01064f0d000b0b200341186a200120044105746a220041206a290000370300200341106a200041186a290000370300200341086a200041106a2900003703002003200041086a290000370300200441027420016a4198036a2802002100410021042007417f6a2201450d01034020002802940321002001417f6a22010d000c020b0b200341186a200020044105746a220141206a290000370300200341106a200141186a290000370300200341086a200141106a2900003703002003200141086a290000370300200441016a21040b2002417f6a22020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002205210120050d000b0b200010200b200341206a24000bbb2e07017f017e017f027e017f027e187f23004180036b2207240002400240024002402001200284500d002003200484500d004201210820074198016a200320012003200156200420025620042002511b22091b220a2004200220091b220b20054201200542015620064200522006501b220c1b220520064200200c1b220610d30520074188016a200729039801220d20074198016a41086a290300220e2005200610d2052002200420091b21022001200320091b2104200a20072903880185200b20074188016a41086a290300858450450d01200d210a200e210b420021060c020b20004100360200200041106a4200370300200041086a42003703000c020b200741f8006a200420022005200610d305200741e8006a20072903782201200741f8006a41086a29030022032005200610d2054200200620042007290368852002200741e8006a41086a29030085845022091b21064201200520091b21082003200220091b21022001200420091b21040b200741386a200b42002004420010d205200741c8006a20024200200a420010d205200741d8006a200a42002004420010d205024002400240024002400240024002400240024002400240024002400240024002400240024002400240200b420052200242005271200729034042005272200729035042005272200741d8006a41086a2903002201200729033820072903487c7c2203200154724101470d004110101e2209450d032009200a3e020c2009200a4220883e02082009200b3e02042009200b4220883e020020074284808080c00037029c02200720093602980220074198026a10bd05200741a8016a41086a20072802a00236020020072007290398023703a8014110101e2209450d02200920043e020c200920044220883e0208200920023e0204200920024220883e020020074284808080c00037029c02200720093602980220074198026a10bd05200741b8016a41086a20072802a00236020020072007290398023703b8014110101e2209450d0120092008a7220f36020c200920084220883e0208200920063e0204200920064220883e020020074284808080c00037029c02200720093602980220074198026a10bd0520072802a0022110200728029c0221112007280298022112200741f0026a41086a200741b8016a41086a280200360200200720072903b8013703f00220074198026a41086a200741a8016a41086a280200360200200720072903a80137039802200741c8016a20074198026a200741f0026a10c304024020072802f402450d0020072802f00210200b200741c8016a10bd0520104101460d0420072802cc01211320072802c80121142010450d0e2012280200450d0e024020072802d0012215450d002014280200450d0f201520104d0d0f200720103602d401201520106b221641016a22174101201741014b1b221841ffffffff03712018470d0620184102742209417f4c0d0602400240024020090d00410421190c010b200910242219450d010b201041ffffffff03712010470d072010410274221a417f4c0d07024002400240201a0d004104211b0c010b201a1024221b450d010b410221094101210f2012280200220c67221c211d0240200c41ffffffff034b0d0041022109201c210c4101210f034020094101200c4101711b200f6c210f200c41034b211e200920096c2109200c410176221d210c201e0d000b0b200720153602f802200720133602f402200720143602f0024104211e02404104101e220c450d00200c20094101201d4101461b200f6c220f360200200742818080801037029c022007200c36029802200741d8016a200741f0026a20074198026a10c304200c102002400240201a450d00201a101e221e450d010b201e2012201041027410cd052109200720103602f802200720103602f402200720093602f00202404104101e2209450d002009200f360200200742818080801037029c022007200936029802200741e8016a200741f0026a20074198026a10c304200910200240024020072802d40120176a220920072802e001220c4d0d0002400240024002402009200c6b22090d004104210f410021090c010b200941ffffffff03712009470d012009410274221e4100480d01201e101e220f450d04200f4100200941027410cc051a0b20072802d801211d2009211e200c450d012009200c6a221e2009490d0020094101742214201e2014201e4b1b221e41ffffffff0371201e470d00201e41027422144100480d000240024020090d002014101e210f0c010b200f200941027420141022210f0b200f0d0120144104102d000b1027000b200f20094102746a201d200c41027410cd051a2009200c6a2109024020072802dc01450d00201d10200b200720093602e0012007201e3602dc012007200f3602d8010b200741e8016a10bd0502400240024002400240024002400240024002400240034020072016221f3602f401024020072802e001220920072802d401220c201f6a220f417f736a221e2009490d0041d0e0c600201e2009102a000b0240024002400240024002400240024002400240024002400240024002400240024020092009200f6b220f4d0d0020072802f00122092009200c6b220c4d0d0120072802e801200c4102746a35020022024200510d02201f201f4100476b211620072802d8012209201e4102746a35020021012009200f4102746a3502002104200741003602f80120072004200142208684200280220137038002200741003602880220072004200120027e7d42ffffffff0f83370390022007200741f4016a3602ac022007200741d8016a3602a8022007200741d4016a3602a4022007200741e8016a3602a002200720074188026a36029c022007200741f8016a3602980220074198026a10bf051a034020072802880241016a41004c0d04024020072903900242ffffffff0f560d0020074198026a10bf050d010b0b200729038002210220072802f401210920072802d401210c200741003a00f8022007200c20096a3602f402200720093602f0022007200741d8016a3602fc02200741b0026a200741f0026a10c00520072802f001220941ffffffff03712009470d292009410274220c417f4c0d2920072802e801210f02400240200c0d004104211e0c010b200c101e221e450d050b201e200f200c10cd05210c200720093602e802200720093602e4022007200c3602e0024108101e2209450d0520092002a72220360204200920024220883e020020074282808080203702f402200720093602f002200741c0026a200741e0026a200741f0026a10c3042009102020072802b802222120072802c8022222202120224b1b22144101201441014b1b220c41ffffffff0371200c470d29200c410274220f417f4c0d2920072802b402212320072802b002212402400240200f0d00410421250c010b200f10242225450d070b2014450d092022417f6a221720224b211520072802c00221262021417f6a221a20214b0d07200c417f6a21092025200f6a417c6a211d4100210f4200210203404100211e02402021201a200f6b22134d0d004100211e2013201a4b0d00202420134102746a280200211e0b201ead21044100211e024020150d0020222017200f6b22134d0d00201320174b0d00202620134102746a280200211e0b024002402004201ead22037d22012004560d00200120027d220a2001560d00200a42ffffffff0f832104420021020c010b20044280808080108420027d20037d2104420121020b200c20094d0d0c201d20043e0200201d417c6a211d2009417f6a2109200f41016a220f2014490d000c090b0b41d0e0c600200f2009102a000b41d0e0c600200c2009102a000b41e0e1c600411941e0e0c6001028000b4196e2c6004118200741f0026a41b0e2c60041c0e2c600102e000b200c4104102d000b41084104102d000b200f4104102d000b200c417f6a21092025200f6a417c6a211e4100211d4200210203404100210f024020150d004100210f20222017201d6b22134d0d004100210f201320174b0d00202620134102746a280200210f0b024002404200200fad22017d22044200520d00200420027d22032004560d00200342ffffffff0f832104420021020c010b428080808010200220017c7d2104420121020b200c20094d0d04201e20043e0200201e417c6a211e2009417f6a2109201d41016a221d2014490d000b0b41012113200250450d010b410021130b02402023450d00202410200b20072802d401221e20072802f401220f6a2215201e490d05200f20154f0d01200f417f7321090340200c200c200f6a20096a221d4d0d03200920072802e00122146a220f20094f0d0420072802d801200f4102746a2025201d4102746a2802003602002009417f6a210920072802f401210f201e417f6a221e0d000c050b0b41bcf8c6002009200c102a000b201e450d020c030b41d0e0c60020222021202220214b1b22074101200741014b1b200f6a20096a200c102a000b41bcf8c600200f2014102a000b200c200c2015417f7322096a200f6a220f4d0d0220072802e001220c20096a2209200c4f0d0320072802d80120094102746a2025200f4102746a28020036020020072802f401210f0b2018200f417f736a220920184f0d03201920094102746a202036020002402013450d00201820072802f401417f736a220920184f0d05201920094102746a22092009280200417f6a36020020072802f401210920072802d401210c200741003a00f8022007200c20096a3602f402200720093602f0022007200741d8016a3602fc02200741d0026a200741f0026a10c00520072802f001220941ffffffff03712009470d192009410274220c417f4c0d1920072802e801210f02400240200c0d004104211e0c010b200c101e221e450d070b201e200f200c10cd05210c200720093602f802200720093602f4022007200c3602f002200741e0026a200741f0026a200741d0026a10be05024020072802d401220920072802f40122146a220c2009490d00024002402014200c4f0d00200c417f73210920072802e002211320072802e802210f2014211e0340200f200f201e6a20096a221e4d0d0b200920072802e00122156a221d20094f0d0c20072802d801201d4102746a2013201e4102746a280200360200200941016a210920072802f401211e2014200c417f6a220c490d000c020b0b20090d0120072802e802210f2014211e0b201e2014417f7322096a220c200f6a221e200c4f0d0a20072802e001220c20096a2209200c4f0d0b20072802d80120094102746a20072802e002201e4102746a2802003602000b024020072802e402450d0020072802e00210200b20072802d402450d0020072802d00210200b20251020024020072802c402450d0020072802c00210200b201f0d000b0240201c0d0020072802e001211020072802dc01210f20072802d801211e201b1020410021090c1e0b4101210920072802d401220c4101460d1c4100200c6b2114201c411f7121134100201c6b411f7121152010410274201b6a417c6a210c417f210903400240200920072802e001221e6a220f2009490d0041d0e0c600200f201e102a000b201e200f417f6a221d4d0d0a201020096a221e20104f0d0b200c20072802d801221e201d4102746a280200201574201e200f4102746a28020020137672360200200c417c6a210c20142009417f6a2209460d1c0c000b0b41d0e0c600200f200c102a000b41bcf8c6002009200c102a000b41bcf8c60020092018102a000b41d0e0c60020092018102a000b200c4104102d000b41d0e0c600201e200f102a000b41bcf8c600201d2015102a000b41d0e0c600201e200f102a000b41bcf8c6002009200c102a000b41d0e0c600200f417f6a201e102a000b41bcf8c600201e2010102a000b201e4104102d000b41044104102d000b201a4104102d000b41044104102d000b201a4104102d000b20094104102d000b41d0e0c60041004100102a000b200741286a200729035820032008200610d30520004100360200200041106a200741286a41086a290300370300200041086a20072903283703000c140b41104104102d000b41104104102d000b41104104102d000b20074198026a41086a200741c8016a41086a280200221d360200200720072903c80137039802201d4101201d41014b1b221e41ffffffff0371201e470d00201e4102742209417f4c0d000240024020090d004104211a0c010b20091024221a450d020b201d450d03201d417f6a2114201a201e201d6b22134102746a210c200f4101200f41014b1bad21024200210441002109200728029802210f0340201e201320096a22154d0d03200c2004422086200f35020084220420028022013e020020142009460d04200c41046a210c200f41046a210f2004200120027e7d2104201d200941016a22094b0d000b41d0e0c6002009201d102a000b102c000b20094104102d000b41bcf8c6002015201e102a000b2007201e3602f8022007201e3602f4022007201a3602f002200728029c02450d0720072802980210200c070b20072802d40121090b20072802e001220c200c20096b220f4d0d012010201020096b22094d0d02201b20094102746a20072802d801200f4102746a280200201c411f7176360200410121092010210f201b211e0b024020072802ec01450d0020072802e80110200b2009450d0320072802dc01450d0320072802d80110200c030b41d0e0c600200f200c102a000b41bcf8c60020092010102a000b4100211902402013450d00201410200b0b4104101e2209450d01200941003602004104101e220c450d02200c41003602004101211d0240024020190d002009211941012118200c211e4101210f410121100c010b20091020200c10200b2007201836028002200720183602fc01200720193602f801200720103602a0022007200f36029c022007201e3602980220074198026a10bd05420021020240024020072802a00222094105744180014d0d00421d21040c010b4100211d024020090d00420021040c010b200728029802220c200941027422096a417c6a220f280200211e0240200c200f470d00201ead21040c010b200c41786a210f201ead2104200741206a211e4120210c420021020340200741186a200f20096a3502004200200c41e0007110d005201e29030020027c2007290318220220047c2204200254ad7c2102200c41206a210c2009417c6a22094104470d000b0b0240200728029c02450d0020072802980210200b201d0d030240200420084201882006423f8684562002200642018822045620022004511b450d0020074188026a41086a200741f8016a41086a280200360200200720072903f801370388024110101e2209450d0520094280808080103702082009420037020020074284808080c00037029c02200720093602980220074198026a10bd05200741f0026a41086a20072802a00236020020072007290398023703f002200741f8016a20074188026a200741f0026a10be0520072802f402450d0020072802f00210200b200741f0026a41086a200741f8016a41086a280200360200200720072903f8013703f0020b200741f0026a10bd0520074198026a41086a2209200741f0026a41086a280200360200200720072903f0023703980220074198026a10bd054200210202400240200928020022094105744180014d0d00421d21044101211d0c010b4100211d024020090d00420021040c010b200728029802220c200941027422096a417c6a220f280200211e0240200c200f470d00201ead21040c010b200c41786a210f201ead2104200741106a211e4120210c420021020340200741086a200f20096a3502004200200c41e0007110d005201e29030020027c2007290308220220047c2204200254ad7c2102200c41206a210c2009417c6a22094104470d000b0b0240200728029c02450d0020072802980210200b02400240201d450d0020004194e4c600360204200041086a4119360200410121090c010b200041106a2002370300200041086a2004370300410021090b200020093602002011450d04201210200c040b41044104102d000b41044104102d000b200720043e029c02200741f9e1c6003602980241c4e3c600412f20074198026a41f4e3c6004184e4c600102e000b41104104102d000b20074180036a24000b7701027f230041106b2203240002404110101e22040d0041104104102d000b200420013e020c200420014220883e0208200420023e0204200420024220883e020020034284808080c00037020420032004360200200310bd05200041086a200328020836020020002003290300370200200341106a24000bbf04030d7f017e017f02400240200241086a2802002203200141086a28020022046a22054101200541014b1b220641ffffffff03712006470d0020064102742205417f4c0d0002400240024020050d00410421070c010b200510242207450d010b2004450d022001280200210802400240024020030d0020082004417f6a22054102746a210320072006417f6a22024102746a21090340200420054d0d0302402003280200450d00200620024d0d03200941003602000b2003417c6a21032009417c6a21092002417f6a21022005417f6a2205417f470d000c060b0b200641027420076a417c6a210a200341027420022802006a417c6a210b4100210c2006210d03402004200c417f736a220520044f0d020240200820054102746a220e280200220f450d0042002110417f2105200a2102200b2109024003402006200d20056a22114d0d0120022009350200200fad7e20107c20023502007c22103e0200201042208821100240200320056a0d002006200c20036a417f736a220220064f0d05200720024102746a20103e02000c030b2002417c6a21022009417c6a2109200e280200210f20032005417f6a22056a22112003490d000b41d0e0c60020112003102a000b41d0e0c60020112006102a000b200a417c6a210a200d417f6a210d200c41016a220c2004460d050c000b0b41bcf8c60020022006102a000b41d0e0c60020052004102a000b20054104102d000b102c000b2000200636020820002006360204200020073602000240200141046a280200450d00200128020010200b0b9e0301087f200028020822024102742103410021042000280200220521000240024003402003450d012004417f6a21042003417c6a210320002802002106200041046a21002006450d000b410121072004417f73200641004741016a4101716a21080c010b41002107410020046b21080b200128020822094102742103410021042001280200220121000240024003402003450d012004417f6a21042003417c6a210320002802002106200041046a21002006450d000b410021032004417f73200641004741016a4101716a21000c010b410020046b2100410121030b024020070d00410020034101736b0f0b4101210402400240024020030d0020022008490d0120092000490d02417f200220086b2203200920006b22064720032006491b22040d0020062003200320064b1b2107200120004102746a2103200520084102746a2100417f210103400240200141016a22012007490d0041000f0b2003280200210420002802002106200341046a2103200041046a2100417f200620044720062004491b2204450d000b0b20040f0b20082002103b000b20002009103b000b820401067f230041e0006b22022400200242f3e885db96cddbb320370308200241086a2001412c6a22032001290300200141086a290300417f411f10e1030240410e101e2204450d002004410029008ed543370000200441066a4100290094d5433700002002428e808080e001370234200220043602302000200241306a10ca012002280238210420022802302100200241c0006a41186a22054200370300200241c0006a41106a22064200370300200241c0006a41086a220742003703002002420037034020002004200241c0006a1001200241106a41186a2005290300370300200241106a41106a2006290300370300200241106a41086a20072903003703002002200229034037031002402002280234450d00200228023010200b20024100360248200242013703402003200241c0006a10ca0120022001360230200241306a200241c0006a10df022002200141106a360230200241306a200241c0006a10df02200128022021042002200141286a2802002201360230200241306a200241c0006a106302402001450d002004200141186c6a2101034020022004360230200241306a200241c0006a10df02200441106a200241c0006a10632001200441186a2204470d000b0b20022802442104200241106a4120200228024022012002280248100502402004450d00200110200b200241e0006a24000f0b410e4101102d000bae1803047f017e027f230041d0036b2202240020022001370300200241e8016a41186a22034200370300200241e8016a41106a22044200370300200241e8016a41086a22054200370300200242003703e80141e2d5c300411a200241e8016a1001200241c8006a41186a2003290300370300200241c8006a41106a2004290300370300200241c8006a41086a2005290300370300200220022903e801370348200241003602e801200241c8006a4120200241e8016a1003210302400240024020022802e8012204417f460d002003450d00024020044108490d002003290000210120031020200241086a200110b804200241003602e801200241086a4120200241e8016a10032103024020022802e8012204417f460d0020030d030b41b8e7c50041920141cce8c5001045000b41ceb8c4004133200241c0036a41fcbfc4004184b9c400102e000b200241e8016a41186a22034200370300200241e8016a41106a22044200370300200241e8016a41086a22054200370300200242003703e80141e2d5c300411a200241e8016a1001200241c8006a41186a2003290300370300200241c8006a41106a2004290300370300200241c8006a41086a2005290300370300200220022903e801370348200220013703e801200241c8006a4120200241e8016a4108100520004200370310200042003703000c010b200220043602ac03200220033602a803200241e8016a200241a8036a10e90202400240024002400240024002400240024020022903880322064202510d00200241c8006a200241e8016a41a00110cd051a200241286a41106a2205200241a0036a290300370300200241286a41086a220720024198036a290300370300200220022903900337032802402004450d00200310200b200241e8016a200241c8006a41a00110cd051a200241a8036a41106a22032005290300370300200241a8036a41086a22042007290300370300200220022903283703a803200241c8006a200241e8016a41a00110cd051a200241c0006a2205200329030037030020022006370328200220022903a803370330200220042903002206370338200241e8016a200241c8006a41a00110cd051a2002418c036a2005410020064201511b3602002002200236028803200241003602b003200242013703a80320022802b80221044104101e2203450d01200241043602ac03200220022802b003220541046a3602b003200220033602a803200320056a2004360000200241bc026a200241a8036a10cb0420022802ec0221050240024020022802ac03220420022802b00322036b4104490d0020022802a80321040c010b200341046a22072003490d08200441017422032007200320074b1b22034100480d080240024020040d002003101e21040c010b20022802a80320042003102221040b2004450d03200220033602ac03200220043602a80320022802b00321030b2002200341046a3602b003200420036a2005360000024020022802f0024101460d00024020022802ac0320022802b0032203460d0020022802a80321040c070b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c070b20054101102d000b0240024020022802ac0320022802b0032203460d0020022802a80321040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b20022802a80320032005102221040b2004450d04200220053602ac03200220043602a80320022802b00321030b2002200341016a3602b003200420036a41013a000020022802f4022105024020022802ac03220420022802b00322036b4104490d0020022802a80321040c050b200341046a22072003490d07200441017422032007200320074b1b22034100480d070240024020040d002003101e21040c010b20022802a80320042003102221040b02402004450d00200220033602ac03200220043602a80320022802b00321030c050b20034101102d000b41ceb8c4004133200241c0036a41fcbfc4004184b9c400102e000b41044101102d000b20034101102d000b20054101102d000b2002200341046a3602b003200420036a20053600000c010b2002200341016a3602b003200420036a41003a00000b02400240024020022802f8014102470d00024020022802ac0320022802b0032203460d0020022802a80321040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c020b20054101102d000b0240024020022802ac0320022802b0032203460d0020022802a80321040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c010b20054101102d000b2002200341016a3602b003200420036a41013a0000200241e8016a200241a8036a10fb030c010b2002200341016a3602b003200420036a41003a00000b024002400240200241a0026a2802004102470d00024020022802ac0320022802b0032203460d0020022802a80321040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c020b20054101102d000b0240024020022802ac0320022802b0032203460d0020022802a80321040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b20022802a80320032005102221040b02402004450d00200220053602ac03200220043602a80320022802b00321030c010b20054101102d000b2002200341016a3602b003200420036a41013a000020024190026a200241a8036a10fb030c010b2002200341016a3602b003200420036a41003a00000b20022802f8022107200220024180036a28020022033602c003200241c0036a200241a8036a1063024020022802ac03220520022802b00322046b2003490d0020022802a80321050c020b200420036a22082004490d00200541017422042008200420084b1b22044100480d000240024020050d002004101e21050c010b20022802a80320052004102221050b02402005450d00200220043602ac03200220053602a80320022802b00321040c020b20044101102d000b1027000b2002200420036a3602b003200520046a2007200310cd051a200241e8016a41a0016a200241a8036a107e20022802ac032103200241086a412020022802a803220420022802b003100502402003450d00200410200b024020022802bc02450d00200241dc026a2802002104200241d4026a28020021030240200241d8026a2802002205450d00200521070340200328026021032007417f6a22070d000b03402005417f6a22050d000b0b02402004450d004100210541002107410021080340200220083602cc03200220053602c803200220033602c403200220073602c003200241a8036a200241c0036a106120022802b003210720022802b403210320022802b803210520022802bc0321082004417f6a22040d000b0b200341908cc500460d0020032802002105200310202005450d0020052802002104200510202004450d00024020042802002203450d000340200410202003210420032802002205210320050d000b0b200410200b0240200241fc026a280200450d0020022802f80210200b20022903002106200241e8016a41186a22034200370300200241e8016a41106a22044200370300200241e8016a41086a22054200370300200242003703e80141e2d5c300411a200241e8016a1001200241c8006a41186a2003290300370300200241c8006a41106a2004290300370300200241c8006a41086a2005290300370300200220022903e801370348200220063703e801200241c8006a4120200241e8016a41081005200041186a200137030020004201370310200042003703000b200241d0036a24000bd40c01067f230041106b22022400200241003602082002420137030020002802502103024002400240024002400240024002404104101e2204450d0020024284808080c0003702042002200436020020042003360000200041d4006a200210cb0420002802840121050240024020022802042206200228020822046b4104490d00200441046a2103200228020021060c010b200441046a22032004490d07200641017422072003200720034b1b22074100480d070240024020060d002007101e21060c010b200228020020062007102221060b2006450d0220022007360204200220063602000b20022003360208200620046a200536000002402000280288014101460d000240200228020420022802082204460d00200228020021030c060b200441016a22032004490d07200441017422062003200620034b1b22064100480d070240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c060b20064101102d000b02400240200228020420022802082204460d00200228020021030c010b200441016a22032004490d07200441017422062003200620034b1b22064100480d070240024020040d002006101e21030c010b200228020020042006102221030b2003450d0320022006360204200220033602000b2002200441016a360208200320046a41013a0000200028028c012106024020022802042203200228020822046b4104490d00200228020021030c040b200441046a22052004490d06200341017422072005200720054b1b22054100480d060240024020030d002005101e21030c010b200228020020032005102221030b02402003450d0020022005360204200220033602000c040b20054101102d000b41044101102d000b20074101102d000b20064101102d000b2002200441046a360208200320046a20063600000c010b2002200441016a360208200320046a41003a00000b02400240024020002802104102470d000240200228020420022802082204460d00200228020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b02400240200228020420022802082204460d00200228020021030c010b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c010b20064101102d000b2002200441016a360208200320046a41013a00002000200210fb030c010b2002200441016a360208200320046a41003a00000b024002400240200041386a2802004102470d000240200228020420022802082204460d00200228020021030c020b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b02400240200228020420022802082204460d00200228020021030c010b200441016a22032004490d03200441017422062003200620034b1b22064100480d030240024020040d002006101e21030c010b200228020020042006102221030b02402003450d0020022006360204200220033602000c010b20064101102d000b2002200441016a360208200320046a41013a0000200041286a200210fb030c010b2002200441016a360208200320046a41003a00000b2000280290012105200220004198016a280200220436020c2002410c6a20021063024020022802042206200228020822036b2004490d00200228020021060c020b200320046a22072003490d00200641017422032007200320074b1b22034100480d000240024020060d002003101e21060c010b200228020020062003102221060b02402006450d002002200336020420022006360200200228020821030c020b20034101102d000b1027000b2002200320046a360208200620036a2005200410cd051a200041a0016a20021094012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bbd0602047f047e230041b0016b220424000240024002400240024020002d00000e03010200010b200441e8006a41186a22054200370300200441e8006a41106a22064200370300200441e8006a41086a220742003703002004420037036820012002200441e8006a1001200441086a41186a2005290300370300200441086a41106a2006290300370300200441086a41086a20072903003703002004200429036837030841002101200441a8016a41003a000020044188016a41186a420037030020044188016a41106a420037030020044188016a41086a42003703002004420037038801200441086a200041016a20044188016a10162200417f6a4103490d032000450d02200441fc006a41013602002004420137026c20044184e6c6003602682004410436024c200441b8e6c6003602482004200441c8006a360278200441e8006a4188e7c6001033000b20044188016a41186a200341186a29000037030020044188016a41106a200341106a29000037030020044188016a41086a200341086a290000370300200420032900003703880120012002200041016a20044188016a10174521010c020b20044188016a41186a200341186a29000037030020044188016a41106a200341106a29000037030020044188016a41086a200341086a290000370300200420032900003703880120012002200041016a20044188016a10104521010c010b200441286a41086a20044191016a22002900002208370300200441286a41106a20044199016a22012900002209370300200441286a41186a200441a1016a2202290000220a3703002004200429008901220b37032820042d008801210520002008370000200120093700002002200a370000200420053a0088012004200b37008901200441e8006a41186a22004200370300200441e8006a41106a22014200370300200441e8006a41086a220242003703002004420037036820044188016a4121200441e8006a1001200441c8006a41186a2000290300370300200441c8006a41106a2001290300370300200441c8006a41086a2002290300370300200420042903683703480240200441c8006a2003470d00410121010c010b200441c8006a2003412010cf054521010b200441b0016a240020010bcb0801087f23004190016b220324000240024002402001a70d0042002102420021010c010b024002400240024002400240024002400240024002400240410c101e2204450d002004428180808010370200200441086a410136020020044174460d014110101e2205450d02200541086a4100290090ab4137000020054100290088ab4137000020054110412010222205450d0320052002370010200341c8006a41186a22064200370300200341c8006a41106a22074200370300200341c8006a41086a220842003703002003420037034820054118200341c8006a1001200341286a41186a2006290300370300200341286a41106a2007290300370300200341286a41086a20082903003703002003200329034837032820051020200341286a412041e4fdc6004100410010022105200441086a22062006280200417f6a36020020042004280200417f6a2206360200024020060d0020042004280204417f6a220636020420060d00200410200b2005417f460d09410c101e2204450d042004428180808010370200200441086a410136020020044174460d054110101e2205450d06200541086a4100290090ab4137000020054100290088ab4137000020054110412010222205450d0720052002370010200341c8006a41186a22064200370300200341c8006a41106a22074200370300200341c8006a41086a220842003703002003420037034820054118200341c8006a1001200341286a41186a2006290300370300200341286a41106a2007290300370300200341286a41086a2008290300370300200320032903483703282005102020034100360248200341286a4120200341c8006a1003210520032802482209417f460d0a2005450d0a20032009360284012003200536028001200341c8006a20034180016a10970220032d006822064104460d08200341086a41186a200341c8006a41186a290300370300200341086a41106a200341c8006a41106a290300370300200341086a41086a200341c8006a41086a29030037030020032003290348370308200341ec006a2802002107200341f0006a2802002108200341f4006a280200210a2009450d0b200510200c0b0b410c4104102d000b4196e2c600411820034188016a41f8aac10041c0e2c600102e000b41104101102d000b41204101102d000b410c4104102d000b4196e2c600411820034188016a41f8aac10041c0e2c600102e000b41104101102d000b41204101102d000b41ceb8c400413320034188016a41fcbfc4004184b9c400102e000b41f4d2c30041cb0041a888c6001028000b410421060b200341086a41086a290300210120032903082102200441086a22052005280200417f6a36020020042004280200417f6a2205360200024020050d0020042004280204417f6a220536020420050d00200410200b2006417d6a41ff01714102490d0120072008200a1098020b200020023703002000200137030820034190016a24000f0b41bfd3c300412241a888c6001028000bda0201037f230041106b2202240002400240200028020022002d00004104460d002002200128021841efd2c40041032001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a41f4d2c400105021000c010b200220012802184184d3c40041022001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a4188d3c400105021000b20002d00082101024020002802042203450d00200141ff0171210441012101024020040d00024020034101470d0020002d0009450d00200028020022042d00004104710d0041012101200428021841cea4c00041012004411c6a28020028020c1100000d010b2000280200220128021841cfa4c00041012001411c6a28020028020c11000021010b200020013a00080b200241106a2400200141ff01714100470b8a1801067f230041106b220224000240024002400240024020002802004101460d000240200141046a280200200141086a2802002203460d00200128020021040c020b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c020b20054101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d03200341017422052004200520044b1b22054100480d030240024020030d002005101e21040c010b200128020020032005102221040b02402004450d0020012004360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a2205200341016a360200200420036a41013a0000024020002d0004220341024b0d0002400240024002400240024002400240024002400240024002400240024020030e03000102000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d12200341017422062004200620044b1b22064100480d120240024020030d002006101e21040c010b200128020020032006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41003a0000200028020821070240200141046a2802002204200628020022036b4104490d00200128020021040c0e0b200341046a22062003490d11200441017422032006200320064b1b22034100480d110240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0e0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d11200341017422062004200620044b1b22064100480d110240024020030d002006101e21040c010b200128020020032006102221040b2004450d0320012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41013a00002000280208210702400240200141046a2802002204200628020022036b4104490d00200128020021040c010b200341046a22062003490d11200441017422032006200320064b1b22034100480d110240024020040d002003101e21040c010b200128020020042003102221040b2004450d0420012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a2007360000200028020c21070240200141046a2802002204200628020022036b4104490d00200128020021040c0c0b200341046a22062003490d10200441017422032006200320064b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c0c0b20034101102d000b02400240200141046a280200200141086a2802002203460d00200128020021040c010b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b2004450d0420012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41023a000020002d0005210702400240200141046a28020020062802002203460d00200128020021040c010b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b2004450d0520012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a20073a00002000280208210702400240200141046a2802002204200628020022036b4104490d00200128020021040c010b200341046a22062003490d10200441017422032006200320064b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b2004450d0620012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a2007360000200028020c210702400240200141046a2802002204200628020022036b4104490d00200128020021040c010b200341046a22062003490d10200441017422032006200320064b1b22034100480d100240024020040d002003101e21040c010b200128020020042003102221040b2004450d0720012004360200200141046a2003360200200141086a28020021030b200141086a2206200341046a360200200420036a2007360000024020002802104101460d000240200141046a28020020062802002203460d00200128020021040c0b0b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b02402004450d0020012004360200200141046a2006360200200141086a28020021030c0b0b20064101102d000b02400240200141046a28020020062802002203460d00200128020021040c010b200341016a22042003490d10200341017422062004200620044b1b22064100480d100240024020030d002006101e21040c010b200128020020032006102221040b2004450d0820012004360200200141046a2006360200200141086a28020021030b200141086a2206200341016a360200200420036a41013a0000200028021421070240200141046a2802002204200628020022036b4104490d00200128020021040c090b200341046a22062003490d0f200441017422032006200320064b1b22034100480d0f0240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c090b20034101102d000b20064101102d000b20064101102d000b20034101102d000b20064101102d000b20064101102d000b20034101102d000b20034101102d000b20064101102d000b200141086a200341046a360200200420036a20073600000c030b200141086a200341016a360200200420036a41003a00000c020b200141086a200341046a360200200420036a20073600000c010b200141086a200341046a360200200420036a20073600000b200041186a20011062200028022421060240024002400240200141046a2802002204200528020022036b4104490d00200128020021040c010b200341046a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200128020020042003102221040b2004450d0120012004360200200141046a2003360200200141086a28020021030b200141086a2205200341046a360200200420036a2006360000200028022821060240200141046a2802002204200528020022036b4104490d00200128020021040c020b200341046a22052003490d04200441017422032005200320054b1b22034100480d040240024020040d002003101e21040c010b200128020020042003102221040b02402004450d0020012004360200200141046a2003360200200141086a28020021030c020b20034101102d000b20034101102d000b200141086a200341046a360200200420036a20063600002002200028022c220436020c2002410c6a21050c010b200141086a200341016a360200200420036a41003a0000200220002802042204360208200241086a21050b0240200141046a2802002203200141086a28020022006b4104490d00200128020021030c020b200041046a22042000490d00200341017422002004200020044b1b22004100480d000240024020030d002000101e21030c010b200128020020032000102221030b02402003450d0020012003360200200141046a2000360200200141086a2802002100200528020021040c020b20004101102d000b1027000b200141086a200041046a360200200320006a2004360000200241106a24000b3400200041f0acc40036020420004100360200200041146a4105360200200041106a41f8acc400360200200041086a42063702000bb50501047f230041e0006b22022400200241086a41086a4200370300200241386a41003a0000200241cc006a4100360200200242003703082002420037032020024200370330200242013702442002410036025820024201370350024002400240024002404108101e2203450d00200242888080808001370254200220033602502003420037000020022802504108411010222203450d0120024290808080c00137025420034100360008200220033602500240024002404110200228025822036b4104490d00200228025021040c010b200341046a22042003490d01411041017422052004200520044b1b22054100480d010240024041100d002005101e21040c010b200228025041102005102221040b2004450d0420022005360254200220043602500b2002200341046a360258200420036a410036000002400240200228025420022802582203460d00200228025021040c010b200341016a22042003490d01200341017422052004200520044b1b22054100480d010240024020030d002005101e21040c010b200228025020032005102221040b2004450d0520022005360254200220043602500b2002200341016a360258200420036a41003a00000240200228025420022802582203460d00200228025021040c060b200341016a22042003490d00200341017422052004200520044b1b22054100480d000240024020030d002005101e21040c010b200228025020032005102221040b02402004450d0020022005360254200220043602500c060b20054101102d000b1027000b41084101102d000b41104101102d000b20054101102d000b20054101102d000b2002200341016a360258200420036a41003a0000200241386a200241d0006a10d9022002410036025c200241dc006a200241d0006a1063200041086a200228025836020020002002290350370200200241e0006a24000baa1001067f230041d0016b22022400200241e0006a4100360200200241a0016a4100360200200241c0006a41023602002002420037028c0120024200370358200242013703980120024102360218200241003602b001200242013703a801024002400240024002400240024002404104101e2203450d0020024284808080c0003702ac01200220033602a80120034100360000200241dc006a200241a8016a10cb04200228028c0121040240024020022802ac01220520022802b00122036b4104490d0020022802a80121050c010b200341046a22062003490d07200541017422032006200320064b1b22034100480d070240024020050d002003101e21050c010b20022802a80120052003102221050b2005450d02200220033602ac01200220053602a80120022802b00121030b2002200341046a3602b001200520036a200436000002402002280290014101460d00024020022802ac0120022802b0012203460d0020022802a80121050c060b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c060b20044101102d000b0240024020022802ac0120022802b0012203460d0020022802a80121050c010b200341016a22052003490d07200341017422042005200420054b1b22044100480d070240024020030d002004101e21050c010b20022802a80120032004102221050b2005450d03200220043602ac01200220053602a80120022802b00121030b2002200341016a3602b001200520036a41013a00002002280294012104024020022802ac01220520022802b00122036b4104490d0020022802a80121050c040b200341046a22062003490d06200541017422032006200320064b1b22034100480d060240024020050d002003101e21050c010b20022802a80120052003102221050b02402005450d00200220033602ac01200220053602a80120022802b00121030c040b20034101102d000b41044101102d000b20034101102d000b20044101102d000b2002200341046a3602b001200520036a20043600000c010b2002200341016a3602b001200520036a41003a00000b02400240024020022802184102470d00024020022802ac0120022802b0012203460d0020022802a80121050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c020b20044101102d000b0240024020022802ac0120022802b0012203460d0020022802a80121050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c010b20044101102d000b2002200341016a3602b001200520036a41013a0000200241086a200241a8016a10fb030c010b2002200341016a3602b001200520036a41003a00000b02400240024020022802404102470d00024020022802ac0120022802b0012203460d0020022802a80121050c020b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c020b20044101102d000b0240024020022802ac0120022802b0012203460d0020022802a80121050c010b200341016a22052003490d03200341017422042005200420054b1b22044100480d030240024020030d002004101e21050c010b20022802a80120032004102221050b02402005450d00200220043602ac01200220053602a80120022802b00121030c010b20044101102d000b2002200341016a3602b001200520036a41013a0000200241306a200241a8016a10fb030c010b2002200341016a3602b001200520036a41003a00000b2002280298012106200220022802a00122033602c001200241c0016a200241a8016a1063024020022802ac01220420022802b00122056b2003490d0020022802a80121040c020b200520036a22072005490d00200441017422052007200520074b1b22054100480d000240024020040d002005101e21040c010b20022802a80120042005102221040b02402004450d00200220053602ac01200220043602a80120022802b00121050c020b20054101102d000b1027000b2002200520036a3602b001200420056a2006200310cd051a200041086a20022802b001360200200020022903a8013702000240200228025c450d00200241fc006a2802002105200241f4006a28020021030240200241f8006a2802002200450d00200021040340200328026021032004417f6a22040d000b03402000417f6a22000d000b0b02402005450d004100210041002104410021060340200220003602cc01200220043602c801200220033602c401200220063602c001200241a8016a200241c0016a106120022802b001210620022802b401210320022802b801210420022802bc0121002005417f6a22050d000b0b200341908cc500460d0020032802002100200310202000450d0020002802002105200010202005450d00024020052802002203450d000340200510202003210520032802002200210320000d000b0b200510200b0240200228029c01450d0020022802980110200b200241d0016a24000b8a0201057f230041d0006b220224000240410e101e2203450d00200341002900d8d643370000200341066a41002900ded6433700002002428e808080e001370224200220033602202000200241206a10ca012002280228210320022802202100200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020002003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b20024120360234200220023602302001200241306a108203200241d0006a24000f0b410e4101102d000bc90501047f200141046a2802002102200141086a2802002103024002400240024002400240200028020022040d00024020022003460d00200128020021020c020b200341016a22022003490d03200341017422042002200420024b1b22044100480d030240024020030d002004101e21020c010b200128020020032004102221020b02402002450d0020012002360200200141046a2004360200200141086a28020021030c020b20044101102d000b0240024020022003460d00200128020021020c010b200341016a22022003490d03200341017422052002200520024b1b22054100480d030240024020030d002005101e21020c010b200128020020032005102221020b02402002450d0020012002360200200141046a2005360200200141086a28020021030c010b20054101102d000b200141086a200341016a360200200220036a41013a00002004280200200110ca010c010b200141086a200341016a360200200220036a41003a00000b200141046a2802002102200141086a28020021030240200028020422040d00024020022003460d00200128020021000c040b200341016a22002003490d01200341017422022000200220004b1b22024100480d010240024020030d002002101e21000c010b200128020020032002102221000b02402000450d0020012000360200200141046a2002360200200141086a28020021030c040b20024101102d000b024020022003460d00200128020021000c020b200341016a22002003490d00200341017422022000200220004b1b22024100480d000240024020030d002002101e21000c010b200128020020032002102221000b02402000450d0020012000360200200141046a2002360200200141086a28020021030c020b20024101102d000b1027000b200141086a200341016a360200200020036a41013a00002004200110ca010f0b200141086a200341016a360200200020036a41003a00000bb307030b7f037e037f230041f0006b22022400024002400240024002400240410e101e2203450d00200341002900c78b45370000200341066a41002900cd8b453700002002428e808080e001370234200220033602302001200241306a10ca012002280238210320022802302101200241c0006a41186a22044200370300200241c0006a41106a22054200370300200241c0006a41086a220642003703002002420037034020012003200241c0006a1001200241106a41186a2004290300370300200241106a41106a2005290300370300200241106a41086a20062903003703002002200229034037031002402002280234450d00200228023010200b20024100360240200241106a4120200241c0006a1003210720022802402208417f460d032007450d032002200836023420022007360230200241086a200241306a105f20022802080d05200228023422034160712201417f4c0d01200228020c2109024002402003410576220a0d004108210b0c010b2001101e220b450d030b02402009450d004100210c41002106410021050340200241c0006a200241306a109d030240024020022d00404101460d00200228023422014110490d002002290041210d20022002280230220341106a3602302002200141706a220436023420044104490d00200341086a290000210e2003290000210f20022001416c6a22043602342002200341146a3602302004450d00200541016a210420032800102110200241e6006a41026a200241ed006a41026a2d000022113a0000200241e2006a41026a221220113a000020022001416b6a3602342002200341156a360230200220022f006d22013b0166200220013b016220032d001421012005200a470d010240200c2004200c20044b1b220a41ffffff3f71200a470d00200a41057422034100480d000240024020050d002003101e210b0c010b200b200620031022210b0b200b0d0220034108102d000b1027000b200a450d08200b10200c080b200b20066a2203411c6a20013a00002003200e3703082003200f370300200341146a200d370200200341106a20103602002003411d6a20022f01623b00002003411f6a20122d00003a0000200c41026a210c200641206a21062004210520092004470d000b0b200b450d052009ad422086200aad84210d02402008450d00200710200b2000200d3702042000200b3602000c040b410e4101102d000b102c000b20014108102d000b20004100360208200042083702000b200241f0006a24000f0b41ceb8c4004133200241c0006a41fcbfc4004184b9c400102e000bb90201057f230041d0006b220224000240410e101e2203450d00200341002900c78b45370000200341066a41002900cd8b453700002002428e808080e001370224200220033602202000200241206a10ca012002280228210320022802202100200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020002003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b200241306a20012802002203200128020810f50420024120200228023022002002280238100502402002280234450d00200010200b0240200141046a280200450d00200310200b200241d0006a24000f0b410e4101102d000b3400200041a3b6c40036020420004100360200200041146a4101360200200041106a41acb6c400360200200041086a42093702000bbd0201037f230041106b220224000240024020002d00004104470d002002200128021841e4c8c400410d2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841c8e0c60041052001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a41d4c8c4001050210120022d0008210020022802042203450d00200041ff0171210441012100024020040d00024020034101470d0020012d0009450d00200128020022042d00004104710d0041012100200428021841cea4c00041012004411c6a28020028020c1100000d010b2001280200220028021841cfa4c00041012000411c6a28020028020c11000021000b200120003a00080b200241106a2400200041ff01714100470bc50201037f230041206b2202240002400240200028020022002d00004103470d0020022001280218418886c70041262001411c6a28020028020c11000022003a001820022001360210200241003a0019200241003602140c010b2002200128021841ae86c700410e2001411c6a28020028020c1100003a001820022001360210200241003a0019200241003602142002200036020c200241106a2002410c6a41bc86c7001050210120022d0018210020022802142203450d00200041ff0171210441012100024020040d00024020034101470d0020012d0009450d00200128020022042d00004104710d0041012100200428021841cea4c00041012004411c6a28020028020c1100000d010b2001280200220028021841cfa4c00041012000411c6a28020028020c11000021000b200120003a00080b200241206a2400200041ff01714100470b810101027f230041106b220124002001410036020420004110200141046a1003210002400240024020012802042202417f470d00410421020c010b024020000d00410421020c010b2002450d0120002d0000220241044f0d01200010200b200141106a240020020f0b41ceb8c4004133200141086a41fcbfc4004184b9c400102e000bc00302057f047e230041d0006b220224000240024002400240411f101e2203450d002003410029008bc944370000200341176a41002900a2c944370000200341106a410029009bc944370000200341086a4100290093c9443700002002429f808080f003370224200220033602202001200241206a10ca012002280228210320022802202101200241306a41186a22044200370300200241306a41106a22054200370300200241306a41086a220642003703002002420037033020012003200241306a1001200241186a2004290300370300200241106a2005290300370300200241086a20062903003703002002200229033037030002402002280224450d00200228022010200b2002410036023020024120200241306a1003210320022802302201417f460d022003450d0220014110490d0120014170714110460d01200341086a290000210720032900002108200341186a29000021092003290010210a200310200c030b411f4101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000b4200210a4200210942002108420021070b2000200a37031020002008370300200041186a200937030020002007370308200241d0006a24000bdb0401047f230041206b2202240020012d000021030240024002400240024002404101101e2204450d00200420033a000020012d0001210320044101410210222204450d01200420033a000120012d0002210320044102410410222204450d02200420033a0002200420012d00033a000320012d0004210320044104410810222204450d03200420033a0004200420012d00053a0005200420012d00063a0006200420012d00073a000720012d0008210320044108411010222204450d04200420033a0008200420012d00093a0009200420012d000a3a000a200420012d000b3a000b200420012d000c3a000c200420012d000d3a000d200420012d000e3a000e200420012d000f3a000f20012d0010210320044110412010222204450d05200420033a0010200420012d00113a0011200420012d00123a0012200420012d00133a0013200420012d00143a0014200420012d00153a0015200420012d00163a0016200420012d00173a0017200420012d00183a0018200420012d00193a0019200420012d001a3a001a200420012d001b3a001b200420012d001c3a001c200420012d001d3a001d200420012d001e3a001e200420012d001f3a001f200241186a22014200370300200241106a22034200370300200241086a22054200370300200242003703002004412020021001200041186a2001290300370000200041106a2003290300370000200041086a20052903003700002000200229030037000020041020200241206a24000f0b41014101102d000b41024101102d000b41044101102d000b41084101102d000b41104101102d000b41204101102d000b13002000410136020420004190cbc4003602000b3400200041caccc40036020420004100360200200041146a4104360200200041106a41d4ccc400360200200041086a42083702000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241003600000bc20201037f230041106b2202240002400240200028020022002d00004103470d002002200128021841e4c8c400410d2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841c8e0c60041052001411c6a28020028020c1100003a000820022001360200200241003a0009200241003602042002200036020c20022002410c6a4198d3c4001050210120022d0008210020022802042203450d00200041ff0171210441012100024020040d00024020034101470d0020012d0009450d00200128020022042d00004104710d0041012100200428021841cea4c00041012004411c6a28020028020c1100000d010b2001280200220028021841cfa4c00041012000411c6a28020028020c11000021000b200120003a00080b200241106a2400200041ff01714100470bd60101017f230041106b22022400024002400240024020002802002d00000e03010200010b20022001280218419285c700410d2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b20022001280218419f85c700410f2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841ae85c70041212001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000b130020004103360204200041a8d4c4003602000b3400200041eedbc40036020420004100360200200041146a4101360200200041106a41f4dbc400360200200041086a42043702000b4001017f230041206b22022400200241186a4200370300200241106a4200370300200241086a4200370300200242003703002000200210de01200241206a24000bb80201057f230041206b22012400200141106a41086a220242003703002001420037031041a1dfc4004115200141106a1000200141086a2002290300370300200120012903103703002001410036021020014110200141106a100321020240024020012802102203417f460d002002450d0002402003450d0020022d0000220441024b0d002003417f6a2105024002400240024020040e03000102000b410021032001410036021020054104490d032001200228000122043602100c020b2001410036021020054104490d02200120022800012204360210410121030c010b2001410036021020054104490d01200120022800012204360210410221030b200210200c020b41ceb8c4004133200141106a41fcbfc4004184b9c400102e000b410321030b2000200436020420002003360200200141206a24000bd30102027f047e230041106b220224002002410036020420014120200241046a1003210102400240024020022802042203417f470d00420021040c010b024020010d00420021040c010b20034110490d0120034170714110460d01200141086a290000210420012900002105200141186a29000021062001290010210720011020200041206a2006370300200041186a2007370300200041106a200437030020002005370308420121040b20002004370300200241106a24000f0b41ceb8c4004133200241086a41fcbfc4004184b9c400102e000bc90401057f23004180016b22002400200041106a41086a220142003703002000420037031041ecdec4004115200041106a1000200041086a2001290300370300200020002903103703002000410036021020004110200041106a100321010240024020002802102202417f460d002001450d00024020024104490d002001280000210220011020200241016a21020c020b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000b410121020b200041106a41086a220142003703002000420037031041ecdec4004115200041106a1000200041086a22032001290300370300200020002903103703002000200236021020004110200041106a4104100520014200370300200042003703104181dfc4004120200041106a100020032001290300370300200020002903103703002000410036021020004110200041106a100321010240024002400240024020002802102203417f470d0041e40021030c010b024020010d0041e40021030c010b20034104490d0120012800002103200110200b10792104200041106a41086a220142003703002000420037031041a1dfc4004115200041106a1000200041086a2001290300370300200020002903103703004101101e2201450d01200141003a000020014101410510222201450d022001200420036a3600012000411020014105100520011020200041186a2002360200200041013a00142000410a3a0010200041106a107720004180016a24000f0b41ceb8c4004133200041106a41fcbfc4004184b9c400102e000b41014101102d000b41054101102d000b3400200041b6dfc40036020420004100360200200041146a4111360200200041106a41c8dfc400360200200041086a420f3702000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241e8073600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241143600000b3001017f02404104101e22020d0041044101102d000b20004284808080c000370204200020023602002002410a3600000ba30603017f027e047f230041a0016b22022400200241086a410041e10010cc051a20024100360298012002420137039001200241286a20024190016a10ca01200220024190016a36029c01200241c8006a2002419c016a10b901200241106a29030021032002290308210402400240024002400240200228029401220520022802980122066b4110490d0020022802900121070c010b200641106a22072006490d01200541017422062007200620074b1b22084100480d010240024020050d002008101e21070c010b20022802900120052008102221070b02402007450d00200220083602940120022007360290012002280298012106200821050c010b20084101102d000b200720066a22082003370008200820043700002002200641106a220636029801200241206a29030021032002290318210402400240200520066b410f4d0d00200521080c010b200641106a22082006490d01200541017422062008200620084b1b22084100480d010240024020050d002008101e21070c010b200720052008102221070b2007450d022002200836029401200220073602900120022802980121060b200720066a22052003370008200520043700002002200641106a220536029801024020022d00684101460d000240024020082005470d00200841016a22052008490d03200841017422062005200620054b1b22054100480d030240024020080d002005101e21070c010b200720082005102221070b2007450d012002200536029401200220073602900120022802980121050b2002200541016a36029801200720056a41003a00000c040b20054101102d000b0240024020082005470d00200841016a22052008490d02200841017422062005200620054b1b22054100480d020240024020080d002005101e21070c010b200720082005102221070b2007450d012002200536029401200220073602900120022802980121050b2002200541016a36029801200720056a41013a0000200241e9006a20024190016a10ca010c030b20054101102d000b1027000b20084101102d000b2000200229039001370200200041086a20024190016a41086a280200360200200241a0016a24000b2f01017f02404101101e22020d0041014101102d000b200042818080801037020420002002360200200241013a00000bc50302067f037e230041e0006b2203240002400240024002404114101e2204450d00200441002900ce8a45370000200441106a41002800de8a45360000200441086a41002900d68a4537000020034294808080c002370234200320043602302000200341306a10ca012003280238210420032802302105200341c0006a41186a22064200370300200341c0006a41106a22074200370300200341c0006a41086a220842003703002003420037034020052004200341c0006a1001200341106a41186a2006290300370300200341106a41106a2007290300370300200341106a41086a20082903003703002003200329034037031002402003280234450d00200328023010200b20034100360240200341106a4120200341c0006a1003210420032802402205417f460d022004450d0220054110490d01200441086a29000021092004290000210a200410200c030b41144101102d000b41ceb8c4004133200341c0006a41fcbfc4004184b9c400102e000b4200210a420021090b410021040240200a20017d220b200a56200920027d200a200154ad7d220a200956200a2009511b0d00200341086a20004104200b200a10940420032802084521040b200341e0006a240020040b890601067f230041e0026b22022400024002404115101e2203450d00200341002900eef2443700002003410d6a41002900fbf244370000200341086a41002900f6f24437000020024295808080d002370234200220033602302002200241306a3602d8012001200241d8016a10b9012002280230210320022802382101200241d8016a41186a22044200370300200241d8016a41106a22054200370300200241d8016a41086a22064200370300200242003703d80120032001200241d8016a100120024190016a41186a200429030037030020024190016a41106a200529030037030020024190016a41086a2006290300370300200220022903d8013703900102402002280234450d00200228023010200b200241003602d80120024190016a4120200241d8016a100321030240024020022802d8012204417f470d00410221010c010b024020030d00410221010c010b200220043602b401200220033602b001200241d8016a200241b0016a10da0320022d00b80222014102460d02200241306a200241d8016a41e00010cd051a200241276a200241d8026a290000370000200241206a200241d1026a290000370300200241186a200241c9026a290000370300200241106a200241c1026a290000370300200220022900b9023703082004450d00200310200b200241d8016a200241306a41e00010cd051a200241b0016a411f6a2204200241086a411f6a290000370000200241b0016a41186a2205200241086a41186a290300370300200241b0016a41106a2206200241086a41106a290300370300200241b0016a41086a2207200241086a41086a290300370300200220022903083703b0010240024020014102470d002000410041e10010cc051a0c010b2000200241d8016a41e00010cd05220320013a0060200341e1006a20022903b001370000200341e9006a2007290300370000200341f1006a2006290300370000200341f9006a200529030037000020034180016a20042900003700000b200241e0026a24000f0b41154101102d000b41ceb8c4004133200241306a41fcbfc4004184b9c400102e000bd425030a7f077e097f23004190016b22032400024002400240024002400240024020002802082204450d002000280200220520044188016c6a210603400240024020052d00604101470d00200541e0006a41016a21072001280204210820012100034002400240200028020022092f0106220a0d004100210b0c010b200a4105742100200941086a2104417f210b0340024020000d00200a210b0c020b20072004412010cf05220c450d04200041606a2100200b41016a210b200441206a2104200c417f4a0d000b0b2008450d012008417f6a21082009200b4102746a41a8086a21000c000b0b200541206a210402402005290300220d200541086a290300220e84500d002004200d200e108f030b2005290310200541186a220b29030084500d004122101e2200450d03200041002900cade44370000200041206a41002f00eade443b0000200041186a41002900e2de44370000200041106a41002900dade44370000200041086a41002900d2de44370000200342a2808080a00437020c200320003602082004200341086a10ca012003280210210020032802082104200341306a41186a220c4200370300200341306a41106a22074200370300200341306a41086a220842003703002003420037033020042000200341306a1001200341f0006a41186a200c290300370300200341f0006a41106a2007290300370300200341f0006a41086a2008290300370300200320032903303703700240200328020c450d00200328020810200b200341086a200341f0006a10e2042003290308210e200341086a41206a290300210f200341086a41106a29030021102003290310211120032903202112200b29030021132005290310210d4110101e2200450d04200020104200200e42015122041b37000820002011420020041b37000020004110412010222200450d052000200d2012420020041b7c220e370010200041186a2013200f420020041b7c200e200d54ad7c370000200341f0006a4120200041201005200010200b20054188016a22052006470d000b0b200341086a41086a220042003703002003420037030841afdec400411b200341086a1000200341f0006a41086a20002903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d042000450d042003200436025420032000360250200341086a200341d0006a10e30120032802082209450d03200329020c21102004450d05200010200c050b41224101102d000b41104101102d000b41204101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b41012109420021100b024002400240024002402010422088a72200450d002000410574210b200921000340200041086a290000210d200041106a290000210e2000290000210f200341086a41186a200041186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f3703084115101e2204450d02200441002900eef2443700002004410d6a41002900fbf244370000200441086a41002900f6f24437000020034295808080d002370254200320043602502003200341d0006a360230200341086a200341306a10b901200328025021042003280258210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a22084200370300200342003703302004200c200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a20082903003703002003200329033037037002402003280254450d00200328025010200b200041206a2100200341f0006a41201004200b41606a220b0d000b0b02402010a7450d00200910200b200341086a41086a220042003703002003420037030841afdec400411b200341086a1000200341f0006a41086a2204200029030037030020032003290308370370200341f0006a4110100420004200370300200342003703084195dec400411a200341086a1000200420002903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082214450d01200329020c210d2004450d03200010200c030b41154101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b410121144200210d0b200da72115024002400240024002400240200d422088a72200450d00201420004105746a210a2001280200210620012802042116201421080340200841086a290000210d200841106a290000210e2008290000210f200341086a41186a200841186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f370308200841206a21082006210720162105024003400240024020072f010622090d004100210b0c010b20094105742100200741086a2104417f210b0340024020000d002009210b0c020b200341086a2004412010cf05220c450d03200041606a2100200b41016a210b200441206a2104200c417f4a0d000b0b02402005450d002005417f6a21052007200b4102746a41a8086a28020021070c010b0b200341306a41086a2200200341086a41086a290300370300200341306a41106a2204200341086a41106a290300370300200341306a41186a220b200341086a41186a29030037030020032003290308220d3703502003200d3703304120101e2217450d0420172003290330370000201741186a200b290300370000201741106a2004290300370000201741086a2000290300370000024002402008200a470d0041012118410121190c010b4101211841012119034020012802002106200128020421160340200341086a41186a221a200841186a290000370300200341086a41106a221b200841106a290000370300200341086a41086a221c200841086a29000037030020032008290000370308200841206a210820062107201621050240024003400240024020072f010622090d004100210b0c010b20094105742100200741086a2104417f210b0340024020000d002009210b0c020b200341086a2004412010cf05220c450d03200041606a2100200b41016a210b200441206a2104200c417f4a0d000b0b2005450d022005417f6a21052007200b4102746a41a8086a28020021070c000b0b2008200a470d010c030b0b200341306a41086a201c290300220d370300200341306a41106a201b290300220e370300200341306a41186a201a290300220f370300200320032903082210370330200341d0006a41186a2204200f370300200341d0006a41106a220b200e370300200341d0006a41086a220c200d37030020032010370350024020192018470d000240201841016a22002018490d00201841017422072000200720004b1b221941ffffff3f712019470d00201941057422004100480d000240024020180d002000101e21170c010b201720184105742000102221170b20170d0120004101102d000b1027000b201720184105746a22002003290350370000200041186a2004290300370000200041106a200b290300370000200041086a200c290300370000201841016a21182008200a470d000b0b02402015450d00201410200b2017201810ee042019450d03201710200c030b2008200a470d000b0b02402015450d00201410200b4101410010ee040b200341086a41086a22004200370300200342003703084195dec400411a200341086a1000200341f0006a41086a20002903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082209450d01200329020c21102004450d03200010200c030b41204101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002110410121090b02400240024002400240024002400240024002402010422088a72200450d002000410574210b200921000340200041086a290000210d200041106a290000210e2000290000210f200341086a41186a200041186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f370308411f101e2204450d022004410029008bc944370000200441176a41002900a2c944370000200441106a410029009bc944370000200441086a4100290093c9443700002003429f808080f00337025420032004360250200341086a200341d0006a10ca01200328025821042003280250210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a2208420037030020034200370330200c2004200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a20082903003703002003200329033037037002402003280254450d00200328025010200b200041206a2100200341f0006a41201004200b41606a220b0d000b0b02402010a7450d00200910200b200341086a41086a22094200370300200342003703084195dec400411a200341086a1000200341f0006a41086a220a200929030037030020032003290308370370200341f0006a411010042002450d0420094200370300200342003703084189ddc4004124200341086a1000200a20092903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082201450d01200329020c21112004450d03200010200c030b411f4101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002111410121010b02402011422088a72200450d002000410574210b2001210403404122101e2200450d03200041002900cade44370000200041206a41002f00eade443b0000200041186a41002900e2de44370000200041106a41002900dade44370000200041086a41002900d2de44370000200342a2808080a00437020c200320003602082004200341086a10ca01200328021021002003280208210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a2208420037030020034200370330200c2000200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a2008290300370300200320032903303703700240200328020c450d00200328020810200b200341086a200341f0006a10e204024020032903204200200329030842015122001b220d2003290310420020001b220e84200341086a41206a290300420020001b220f200341086a41106a290300420020001b22108484500d002004200d200e7c220e200f20107c200e200d54ad7c108f030b200441206a2104200b41606a220b0d000b0b2011a7450d00200110200b20094200370300200342003703084189ddc4004124200341086a1000200a20092903003703002003200329030837037020034100360208200341f0006a4110200341086a1003210020032802082204417f460d022000450d022003200436025420032000360250200341086a200341d0006a10e30120032802082209450d01200329020c21102004450d03200010200c030b41224101102d000b41ceb8c4004133200341306a41fcbfc4004184b9c400102e000b42002110410121090b024002402010422088a72200450d002000410574210b200921040340200441086a290000210d200441106a290000210e2004290000210f200341086a41186a200441186a290000370300200341086a41106a200e370300200341086a41086a200d3703002003200f3703084122101e2200450d02200041002900cade44370000200041206a41002f00eade443b0000200041186a41002900e2de44370000200041106a41002900dade44370000200041086a41002900d2de44370000200342a2808080a00437025420032000360250200341086a200341d0006a10ca01200328025821002003280250210c200341306a41186a22074200370300200341306a41106a22054200370300200341306a41086a2208420037030020034200370330200c2000200341306a1001200341f0006a41186a2007290300370300200341f0006a41106a2005290300370300200341f0006a41086a20082903003703002003200329033037037002402003280254450d00200328025010200b200441206a2104200341f0006a41201004200b41606a220b0d000b0b02402010a7450d00200910200b200341086a41086a22004200370300200342003703084189ddc4004124200341086a1000200341f0006a41086a2204200029030037030020032003290308370370200341f0006a41101004200042003703002003420037030841a1dfc4004115200341086a10002004200029030037030020032003290308370370200341f0006a4110100420034190016a24000f0b41224101102d000bef0101037f23004180016b22012400024020002802202202450d00034020002002417f6a360220200141f0006a41086a200041086a2202290200370300200120002902003703702001200141f0006a10e1022002200141086a2903003702002000200129030037020020012802402202450d0102402001280244450d00200210200b200028022022020d000b0b02402000280204220041908cc500460d0020002802002103200010202003450d0020032802002102200310202002450d00024020022802002200450d000340200210202000210220002802002203210020030d000b0b200210200b20014180016a24000ba21106047f017e047f027e077f047e230041b0016b22022400200241286a41086a22034200370300200242003703284195dec400411a200241286a100020024190016a41086a200329030037030020022002290328370390012002410036022820024190016a4110200241286a100321030240024020022802282204417f460d002003450d002002200436027420022003360270200241286a200241f0006a10e301024020022802282205450d00200229022c21062004450d02200310200c020b41ceb8c4004133200241d0006a41fcbfc4004184b9c400102e000b41012105420021060b2006a72107024002400240024002400240024002402006422088a72203450d00200520034105746a2108200141057421092005210a0340200a41086a2900002106200a41106a290000210b200a290000210c200241286a41186a200a41186a290000370300200241286a41106a200b370300200241286a41086a20063703002002200c370328200a41206a210a200921042000210303402004450d030240200241286a2003460d00200441606a21042003200241286a412010cf05210d200341206a2103200d0d010b0b200a2008470d000b0b4101210e4100210f02402007450d00200510200b410021100c010b20024190016a41086a2203200241286a41086a29030037030020024190016a41106a2204200241286a41106a29030037030020024190016a41186a220d200241286a41186a29030037030020022002290328220637035020022006370390014120101e220e450d01200e200229039001370000200e41186a200d290300370000200e41106a2004290300370000200e41086a200329030037000002400240200a2008470d004101210f410121100c010b200141057421114101210f410121100340200241286a41186a2209200a41186a290000370300200241286a41106a2212200a41106a290000370300200241286a41086a2213200a41086a2900003703002002200a290000370328200a41206a210a2011210420002103024003402004450d010240200241286a2003460d00200441606a21042003200241286a412010cf05210d200341206a2103200d0d010b0b200a2008470d010c020b20024190016a41086a2013290300220637030020024190016a41106a2012290300220b37030020024190016a41186a2009290300220c37030020022002290328221437039001200241d0006a41186a2204200c370300200241d0006a41106a220d200b370300200241d0006a41086a220920063703002002201437035002402010200f470d000240200f41016a2203200f490d00200f41017422122003201220034b1b221041ffffff3f712010470d00201041057422034100480d0002400240200f0d002003101e210e0c010b200e200f41057420031022210e0b200e0d0120034101102d000b1027000b200e200f4105746a22032002290350370000200341186a2004290300370000200341106a200d290300370000200341086a2009290300370000200f41016a210f200a2008470d000b0b2007450d00200510200b02402001450d002001410574210d200241086a41086a2113200241086a41186a21080340200241086a200010d704200829030021062002290318210b02402002290308220c2013290300221484500d002000200c2014108f030b0240200b200684500d004122101e2203450d04200341002900cade44370000200341206a41002f00eade443b0000200341186a41002900e2de44370000200341106a41002900dade44370000200341086a41002900d2de44370000200242a2808080a00437022c200220033602282000200241286a10ca01200228023021032002280228210420024190016a41186a220a420037030020024190016a41106a2209420037030020024190016a41086a2212420037030020024200370390012004200320024190016a1001200241f0006a41186a200a290300370300200241f0006a41106a2009290300370300200241f0006a41086a201229030037030020022002290390013703700240200228022c450d00200228022810200b200241286a200241f0006a10e2042002290328210c200241286a41206a290300211420022903402115200241286a41106a2903002116200229033021174110101e2203450d05200320174200200c42015122041b220c200b7c220b37000020032016420020041b20067c200b200c54ad7c37000820034110412010222203450d0620032015420020041b370010200341186a2014420020041b370000200241f0006a4120200341201005200310200b411f101e2203450d062003410029008bc944370000200341176a41002900a2c944370000200341106a410029009bc944370000200341086a4100290093c9443700002002429f808080f00337022c200220033602282000200241286a10ca01200228023021032002280228210420024190016a41186a220a420037030020024190016a41106a2209420037030020024190016a41086a2212420037030020024200370390012004200320024190016a1001200241f0006a41186a200a290300370300200241f0006a41106a2009290300370300200241f0006a41086a201229030037030020022002290390013703700240200228022c450d00200228022810200b200041206a2100200241f0006a41201004200d41606a220d0d000b0b200241286a41086a22034200370300200242003703284195dec400411a200241286a100020024190016a41086a2003290300370300200220022903283703900120024100360230200242013703282002200f360270200241f0006a200241286a10630240200f450d00200f4105742104200e210303402003200241286a10ca01200341206a2103200441606a22040d000b0b200228022c210320024190016a4110200228022822042002280230100502402003450d00200410200b02402010450d00200e10200b200241b0016a24000f0b41204101102d000b41224101102d000b41104101102d000b41204101102d000b411f4101102d000bc03104077f037e337f067e230041b00e6b2204240020044180026a41186a200241186a29000037030020044180026a41106a200241106a29000037030020044180026a41086a200241086a2900003703002004200229000037038002024002400240024002400240024002400240024002402001280200220541908cc500460d00200128020421060c010b41002106200441f0026a410041e00210cc051a200441d8056a410041c00510cc051a41a808101e2205450d01200541003b010620054100360200200541086a200441f0026a41e00210cd051a200541e8026a200441d8056a41c00510cd051a20014100360204200120053602000b024003400240024020052f010622070d00410021080c010b20074105742102200541086a2109417f21080340024020020d00200721080c020b200841016a210820044180026a2009412010cf05220a450d03200241606a2102200941206a2109200a417f4a0d000b0b02402006450d002006417f6a2106200520084102746a41a8086a28020021050c010b0b200441186a220220044180026a41186a2209290300370300200441106a20044180026a41106a220a290300220b370300200441086a20044180026a41086a2206290300220c3703002004200429038002220d3703002001200128020841016a36020820044188016a41106a2207200b37030020044188016a41086a220e200c37030020044188016a41186a220f20022903003703002004200d3703880120044180026a41386a2210200341386a29030037030020044180026a41306a2211200341306a29030037030020044180026a41286a2212200341286a29030037030020044180026a41206a2213200341206a2903003703002009200341186a290300370300200a200341106a2903003703002006200341086a2903003703002004200329030037038002024020052f01062203410b490d0002400240200541908cc500460d00200441f0026a410041e00210cc051a200441d8056a410041c00510cc051a41a808101e22140d0141a8084108102d000b41c8a6c000412d41a888c6001028000b201441003b010620144100360200201441086a200441f0026a41e00210cd052109201441e8026a200441d8056a41c00510cd05210a200441d8056a41086a2206200541f0056a290300370300200441d8056a41106a2203200541f8056a290300370300200441d8056a41186a220720054180066a290300370300200441d8056a41206a220e20054188066a290300370300200441d8056a41286a220f20054190066a290300370300200441d8056a41306a221020054198066a290300370300200441d8056a41386a2211200541a0066a290300370300200420052f00c8013b01ec022004200541ca016a2d00003a00ee02200420052900db013703d8022004200541e0016a2900003700dd02200420052903e8053703d805200541cb016a2800002115200541cf016a2800002116200541d3016a2800002117200541d7016a28000021182009200541e8016a20052f010641796a220241057410cd052109200a200541a8066a200241067410cd05210a200541063b0106201420023b0106200420042f01ec023b01d402200420042d00ee023a00d602200420042903d8023703c002200420042900dd023700c502200441f0026a41386a2011290300370300200441f0026a41306a2010290300370300200441f0026a41286a200f290300370300200441f0026a41206a200e290300370300200441f0026a41186a2007290300370300200441f0026a41106a2003290300370300200441f0026a41086a2006290300370300200420042903d8053703f0020240024020084107490d0020092008417a6a22064105746a2009200841796a22084105746a2209200241ffff037120086b41057410ce051a200941186a20044188016a41186a290300370000200941106a20044188016a41106a290300370000200941086a20044188016a41086a2903003700002009200429038801370000200a20064106746a200a20084106746a2202201441066a22092f010020086b41067410ce051a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000c010b200541066a2109200541086a2202200841016a220a4105746a200220084105746a220220052f010620086b41057410ce051a200241186a20044188016a41186a290300370000200241106a20044188016a41106a290300370000200241086a20044188016a41086a2903003700002002200429038801370000200541e8026a2202200a4106746a200220084106746a220220052f010620086b41067410ce051a200241386a20044180026a41386a290300370300200241306a20044180026a41306a290300370300200241286a20044180026a41286a290300370300200241206a20044180026a41206a290300370300200241186a20044180026a41186a290300370300200241106a20044180026a41106a290300370300200241086a20044180026a41086a29030037030020022004290380023703000b200920092f010041016a3b0100200441e8016a41026a220220042d00d6023a0000200441a8016a41086a2219200441f0026a41086a221a290300370300200441a8016a41106a221b200441f0026a41106a221c290300370300200441a8016a41186a221d200441f0026a41186a221e290300370300200441a8016a41206a221f200441f0026a41206a2220290300370300200441a8016a41286a2221200441f0026a41286a2222290300370300200441a8016a41306a2223200441f0026a41306a2224290300370300200441a8016a41386a2225200441f0026a41386a2226290300370300200420042f01d4023b01e801200420042903c002370378200420042900c50237007d200420042903f0023703a801200441386a41386a22272025290300370300200441386a41306a22282023290300370300200441386a41286a22292021290300370300200441386a41206a222a201f290300370300200441386a41186a222b201d290300370300200441386a41106a222c201b290300370300200441386a41086a222d2019290300370300200441346a41026a222e20022d00003a0000200420042903a8013703382004200429007d37002520042004290378370320200420042f01e8013b01340240200528020022060d004100212f0c060b20052f01042130200441d8056a41027221314100212f0340200441fc016a41026a2232202e2d00003a0000200420042f01343b01fc01200420042903203703782004200429002537007d20044180026a41386a2233202729030037030020044180026a41306a2234202829030037030020044180026a41286a2235202929030037030020044180026a41206a2236202a29030037030020044180026a41186a2237202b29030037030020044180026a41106a2238202c29030037030020044180026a41086a2239202d290300370300200420042903383703800241000d04203041ffff0371210502400240024020062f01062202410b490d002031410041d20810cc051a41d808101e220a450d08200a4100360200200a41046a200441d8056a41d40810cd051a200420062f00c8013b01ec022004200641ca016a2d00003a00ee02200420062900db013703d8022004200641e0016a2900003700dd02200641cb016a280000213a200641cf016a280000213b200641d3016a280000213c200641d7016a280000213d200441d8056a41386a2207200641a0066a290300370300200441d8056a41306a220e20064198066a290300370300200441d8056a41286a220f20064190066a290300370300200441d8056a41206a221020064188066a290300370300200441d8056a41186a221120064180066a290300370300200441d8056a41106a2212200641f8056a290300370300200441d8056a41086a2213200641f0056a290300370300200420062903e8053703d805200a41086a200641e8016a20062f0106220941796a220241057410cd05213e200a41e8026a200641a8066a200241067410cd05213f200a41a8086a200641c4086a2009417a6a220341027410cd052140200641063b0106200a20023b010602402003450d00410021022040210903402009280200220820023b01042008200a360200200941046a21092003200241016a2202470d000b0b202620072903003703002024200e2903003703002022200f29030037030020202010290300370300201e2011290300370300201c2012290300370300201a2013290300370300200420042903d8053703f002200420042f01ec023b01d402200420042d00ee023a00d602200420042900dd023700c502200420042903d8023703c002200441d4056a41026a220320042d00d6023a0000200420042f01d4023b01d405200420042903c00237038801200420042900c50237008d0120072026290300370300200e2024290300370300200f2022290300370300201020202903003703002011201e2903003703002012201c2903003703002013201a290300370300200420042903f0023703d805203041ffff037122304107490d01203e2005417a6a22084105746a203e200541796a22024105746a2209200a2f010620026b41057410ce051a200941186a200429007d3700002009201836000f2009201736000b2009201636000720092015360003200941026a20322d00003a0000200920042f01fc013b000020092004290378370013203f20084106746a203f20024106746a2209200a2f010620026b41067410ce051a200941386a2033290300370300200941306a2034290300370300200941286a2035290300370300200941206a2036290300370300200941186a2037290300370300200941106a2038290300370300200941086a20392903003703002009200429038002370300200a200a2f010641016a22093b01062005410274221520406a416c6a204020084102746a2230200941ffff0371220520086b41027410ce051a2030201436020020052008490d02200a20156a4190086a2109034020092802002208200241016a22023b01042008200a360200200941046a210920022005490d000c030b0b200641086a2209200541016a22084105746a200920054105746a2209200220056b220a41057410ce051a2009201836000f2009201736000b2009201636000720092015360003200941026a200441fc016a41026a2d00003a0000200920042f01fc013b000020092004290378370013200941186a200429007d370000200641e8026a220920084106746a200920054106746a2209200a41067410ce051a200941386a20044180026a41386a290300370300200941306a20044180026a41306a290300370300200941286a20044180026a41286a290300370300200941206a20044180026a41206a290300370300200941186a20044180026a41186a290300370300200941106a20044180026a41106a290300370300200941086a20044180026a41086a29030037030020092004290380023703002006200241016a22023b01062005410274200641a8086a22096a41086a200920084102746a2209200241ffff037120086b41027410ce051a20092014360200203041ffff037120062f010622024f0d09201420083b010420142006360200200820024f0d092002417f6a210a20062008417f6a22024102746a41b0086a2109034020092802002208200241026a3b010420082006360200200941046a2109200a200241016a2202470d000c0a0b0b200641086a2202200541016a22094105746a200220054105746a220220062f0106220820056b224041057410ce051a2002201836000f2002201736000b2002201636000720022015360003200241026a20322d00003a0000200220042f01fc013b000020022004290378370013200241186a200429007d370000200641e8026a220220094106746a200220054106746a2202204041067410ce051a200241386a2033290300370300200241306a2034290300370300200241286a2035290300370300200241206a2036290300370300200241186a2037290300370300200241106a2038290300370300200241086a203929030037030020022004290380023703002006200841016a22023b010620054102742240200641a8086a22086a41086a200820094102746a2208200241ffff037120096b41027410ce051a20082014360200203020062f010622084f0d00200620406a41ac086a2102034020022802002209200541016a22053b010420092006360200200241046a210220082005470d000b0b202f41016a212f200441f8016a41026a220220032d00003a000020192013290300370300201b2012290300370300201d2011290300370300201f20102903003703002021200f2903003703002023200e29030037030020252007290300370300200420042f01d4053b01f80120042004290388013703e8012004200429008d013700ed01200420042903d8053703a801202720252903003703002028202329030037030020292021290300370300202a201f290300370300202b201d290300370300202c201b290300370300202d2019290300370300202e20022d00003a0000200420042903a801370338200420042900ed01370025200420042903e801370320200420042f01f8013b01340240200628020022020d00203a2115203d2118203c2117203b2116200a21140c070b20062f01042130203a2115203d2118203c2117203b211620022106200a21140c000b0b200541086a2202200841016a22014105746a200220084105746a2202200320086b41057410ce051a200241186a200f290300370000200241106a2007290300370000200241086a200e2903003700002002200429038801370000200541e8026a220220014106746a200220084106746a220220052f010620086b41067410ce051a200241386a2010290300370300200241306a2011290300370300200241286a2012290300370300200241206a2013290300370300200241186a2009290300370300200241106a200a290300370300200241086a20062903003703002002200429038002370300200520052f010641016a3b01060c050b200520084106746a22024180036a2209290300210b200341206a290300210c200341286a290300210d200341306a2903002141200341386a29030021422003290300214320032903082144200329031021452009200341186a290300370300200241f8026a2209290300214620092045370300200241f0026a2209290300214520092044370300200241e8026a2209290300214420092043370300200241a0036a220929020021432009204237020020024198036a220929020021422009204137020020024190036a220929020021412009200d37020020024188036a2202290200210d2002200c370200200041206a200d370300200041286a2041370300200041306a2042370300200041386a2043370300200020443703002000204537030820002046370310200041186a200b3703000c050b41a8084108102d000b41c6a8c000413541a888c6001028000b41d8084108102d000b200441d8056a410272410041d20810cc051a41d808101e2202450d0220024100360200200241046a200441d8056a41d40810cd051a2002200128020022093602a8082001200236020020012001280204220841016a360204200941003b01042009200236020020044180026a41026a200441346a41026a2d00003a0000200420042f01343b018002200420042903203703f002200420042900253700f502200441d8056a41386a200441386a41386a290300370300200441d8056a41306a200441386a41306a290300370300200441d8056a41286a200441386a41286a290300370300200441d8056a41206a200441386a41206a290300370300200441d8056a41186a200441386a41186a290300370300200441d8056a41106a200441386a41106a290300370300200441d8056a41086a200441386a41086a290300370300200420042903383703d8052008202f470d0320022f01062208410a4b0d04200220084105746a2209410a6a20044180026a41026a2d00003a0000200941086a20042f0180023b0000200941176a2018360000200941136a20173600002009410f6a20163600002009410b6a20153600002009411b6a20042903f002370000200941206a20042900f502370000200220084106746a220941e8026a20042903d805370300200941f0026a200441d8056a41086a290300370300200941f8026a200441e8056a29030037030020094180036a200441f0056a29030037030020094188036a200441d8056a41206a29030037030020094190036a20044180066a29030037030020094198036a20044188066a290300370300200941a0036a20044190066a2903003703002002200841016a22094102746a41a8086a2014360200200220093b0106201420093b0104201420023602000b200041003602100b200441b00e6a24000f0b41d8084108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b130020004111360204200041dcf8c4003602000b34002000419784c50036020420004100360200200041146a4102360200200041106a419c84c500360200200041086a42043702000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024180203600000b130020004100360204200041e4fdc6003602000b130020004101360204200041c886c5003602000bf40e03077f027e017f230041106b2203240020034100360208200342013703002003200236020c2003410c6a20031063024002402002450d0020024105742104410021050340200120056a220241146a2d0000210602400240024002400240024002400240024002400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d012003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241156a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d022003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241166a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d032003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241176a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d042003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241186a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d052003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241196a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d062003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a00002002411a6a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d072003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a00002002411b6a2d0000210602400240200328020420032802082207460d00200328020021080c010b200741016a22082007490d0c200741017422092008200920084b1b22094100480d0c0240024020070d002009101e21080c010b200328020020072009102221080b2008450d082003200936020420032008360200200328020821070b2003200741016a360208200820076a20063a0000200241086a290300210a2002290300210b024020032802042206200328020822086b4110490d00200328020021070c090b200841106a22072008490d0b200641017422082007200820074b1b22094100480d0b0240024020060d002009101e21070c010b200328020020062009102221070b02402007450d00200320093602042003200736020020032802082108200921060c090b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b20094101102d000b200720086a2209200a3700082009200b3700002003200841106a2208360208200241106a2802002109024002400240200620086b41034b0d00200841046a220c2008490d0520064101742208200c2008200c4b1b22084100480d050240024020060d002008101e21070c010b200720062008102221070b2007450d012003200836020420032007360200200328020821080b2003200841046a360208200720086a20093600002002411c6a2d000021080240200328020420032802082202460d00200328020021070c020b200241016a22072002490d04200241017422062007200620074b1b22064100480d040240024020020d002006101e21070c010b200328020020022006102221070b02402007450d002003200636020420032007360200200328020821020c020b20064101102d000b20084101102d000b2003200241016a360208200720026a20083a00002004200541206a2205470d000b0b20002003290300370200200041086a200341086a280200360200200341106a24000f0b1027000b130020004104360204200041f08cc5003602000b340020004189a2c50036020420004100360200200041146a4105360200200041106a4194a2c500360200200041086a42083702000b3701017f02404110101e22020d0041104101102d000b2002420037000820024200370000200042908080808002370204200020023602000b130020004103360204200041a0b3c5003602000b34002000419db6c50036020420004100360200200041146a4103360200200041106a41a8b6c500360200200041086a42083702000b5b01027f230041106b2202240002404104101e22030d0041044101102d000b20024204370204200220033602002002410036020c2002410c6a20021063200041086a200228020836020020002002290300370200200241106a24000b939a01080d7f017e017f017e097f017e1f7f127e230041e00f6b22022400200241c8026a200141086a10e803200028020821032000280204210420002802002105200128020421062001280200210720022802d002210820022802cc02210920022802c802210a0240024002400240024002404104101e220b450d00200b200736000020024284808080c00037029c072002200b36029807411b101e2200450d01200041176a4100280082f446360000200041106a41002900fbf346370000200041086a41002900f3f346370000200041002900ebf3463700002000411b413610222200450d02200042e5f4bcb3e68cdbb4ee00370023200042e9dab5f9e68ddbb4ee0037001b200241c8066a41186a220c4200370300200241c8066a41106a220d4200370300200241c8066a41086a220e4200370300200242003703c8062000412b200241c8066a1001200241e8076a41186a200c290300370300200241e8076a41106a200d290300370300200241e8076a41086a200e290300370300200220022903c8063703e80720001020200241003602b808200241e8076a4120200241b8086a1003210c20022802b808220d417f460d04200c450d042002200d3602fc052002200c3602f805200241b8086a200241f8056a10b70120022802b8082200450d0320022902bc08210f200d450d05200c10200c050b41044101102d000b411b4101102d000b41364101102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410021000b20022000410120001b22103602e8072002200f420020001b22114220883e02ec07200241c0026a200241e8076a105f20022802c402211241002113024002400240024002400240024002400240024002400240024002400240024002400240024020022802c0020d0020022802ec07220041246e221441246c220c417f4c0d0602400240200c0d00410421130c010b200c101e2213450d020b2012450d0041002115034002400240024020004104490d00201541016a211620022000417c6a220d3602ec07200220022802e807220e41046a3602e807200e280000211741002100200241003a00d80802400340200241003a00a804200d2000460d01200241b8086a20006a200e20006a220c41046a2d00003a00002002200c41056a3602e8072002200041016a220c3a00d808200c2100200c4120470d000b200241c8066a41086a220e200241b8086a41086a290300370300200241c8066a41106a2218200241b8086a41106a290300370300200241c8066a41186a2219200241b8086a41186a290300370300200220022903b8083703c8062002200d200c6b22003602ec0720142015470d032015410174220c2016200c20164b1b2214ad42247e220f422088a70d17200fa7220c41004e0d020c170b200241003602ec07200041ff0171450d00200241003a00d8080b02402014450d00201310200b410021130c030b0240024020150d00200c101e21130c010b2013201541246c200c102221130b2013450d050b2013201541246c6a220c2017360200200c20022903c806370204200c410c6a200e290300370200200c41146a2018290300370200200c411c6a20192903003702002016211520162012470d000b0b200241e8076a20024198076a10fd0420022802f007210c20022802e8072100200241003602b8082000200c200241b8086a1003210c20022802b808220d417f460d03200c450d032002200d3602fc052002200c3602f805200241b8086a200241f8056a10e30120022802b808221a450d0120022902bc08210f200d450d04200c10200c040b200c4104102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b200c4104102d000b4200210f4101211a0b024020022802ec07450d00200010200b200f422088211b02402011a7450d00201010200b2012410020131b211c2014410020131b211d2013410420131b2110201ba7211e200fa7211f200242003702dc02200241908cc5003602d802200a200841d0006c6a21200240024020080d00200a21120c010b200241b8036a41306a2121200241b8086a410c6a2122200341ffffff3f7120034721232003410574222441606a41057641016a2125200241b8086a41306a2126200241b8086a41206a2127200241b8086a410272212820024198056a41046a2129200241b8086a41c0006a212a200241e8076a41106a211920024198076a410472212b200241b8036a41c4006a212c200a2112024002400340200241b8086a41386a22132012220041386a2903003703002026200041306a290300370300200241b8086a41286a2214200041286a2903003703002027200041206a290300370300200241b8086a41186a222d200041186a290300370300200241b8086a41106a222e200041106a290300370300200241b8086a41086a222f200041086a290300370300200241e8076a41086a2218200041cc006a280200360200200220002903003703b8082002200041c4006a2902003703e807200041d0006a2112200041c0006a2802002200450d03200241f8026a41386a220c2013290300370300200241f8026a41306a220d2026290300370300200241f8026a41286a220e2014290300370300200241f8026a41206a22082027290300370300200241f8026a41186a2215202d290300370300200241f8026a41106a2216202e290300370300200241f8026a41086a2217202f290300370300200241e8026a41086a22302018280200360200200220022903b8083703f802200220022903e8073703e802200241b8036a41386a2231200c2903003703002021200d290300370300200241b8036a41286a2232200e290300370300200241b8036a41206a220e2008290300370300200241b8036a41186a22332015290300370300200241b8036a41106a22342016290300370300200241b8036a41086a22352017290300370300200220022903f8023703b803200220003602f803202c20022903e802370200202c41086a20302802003602000240024002404104101e220d450d00200d2007360000202241002900dbbe45370000202241086a41002900e3be4537000020024284808080c0003702bc082002200d3602b8082002200241b8036a3602d4084108101e2200450d01200242083702ec07200220003602e8072022200241e8076a10f802200241043602980720024198076a200241e8076a1063024020022802ec07220c20022802f00722006b4104490d0020022802e807210c0c030b200041046a22082000490d13200c41017422002008200020084b1b22004100480d1302400240200c0d002000101e210c0c010b20022802e807200c20001022210c0b0240200c450d00200220003602ec072002200c3602e80720022802f00721000c030b20004101102d000b41044101102d000b41084101102d000b2002200041046a3602f007200c20006a200d280000360000200241b8036a200241e8076a10ca012002200e3602980720024198076a200241e8076a10df02200220213602980720024198076a200241e8076a10df0220022802f80321002002200228028004220c3602980720024198076a200241e8076a10630240200c450d00200c41306c210c0340200041106a200241e8076a10ca012002200036029807200041306a210020024198076a200241e8076a10df02200c41506a220c0d000b0b20022802ec07210c20022802f007210e20022802e8072100200241c8066a41186a22154200370300200241c8066a41106a22164200370300200241c8066a41086a22174200370300200242003703c8062000200e200241c8066a100120024188046a41186a2236201529030037030020024188046a41106a2237201629030037030020024188046a41086a22382017290300370300200220022903c806370388040240200c450d00200010200b200d102002400240024002404110101e2200450d00200041002900b78b45220f370000200041086a41002900bf8b4522113700002002429080808080023702bc08200220003602b8082002200241b8086a3602980720024188046a20024198076a10b90120022802b808210020022802c008210c201542003703002016420037030020174200370300200242003703c8062000200c200241c8066a1001200241e8076a41186a223920152903003703002019201629030037030020182017290300370300200220022903c8063703e807024020022802bc08450d0020022802b80810200b200241e8076a412041e4fdc600410041001002417f460d020c010b41104101102d000b20022802fc03450d0120022802f80310200c010b200241a8046a41186a223a2033290300370300200241a8046a41106a22332034290300370300200241a8046a41086a22342035290300370300200220022903b8033703a8042002280280042208ad42307e221b422088a70d05201ba7220c417f4c0d052031290300211b2032290300213b20022903e803213c20022903d803213d20022802f80321000240024002400240024002400240024002400240024002400240024002400240200c0d00410821300c010b200c101e2230450d010b0240024020080d004100210d0c010b2000200841306c6a210e4100210d2030210c0340200c2000290300370300200c200041086a290300370308200c41106a200041106a290300370300200c41186a200041186a290300370300200c41206a200041206a290300370300200c41286a200041286a290300370300200c41306a210c200d41016a210d200041306a2200200e470d000b0b200241e8076a41386a201b370300200241e8076a41286a203b3703002039203a29030037030020192033290300370300201820342903003703002002203c370398082002203d37038808200220022903a8043703e8072002200d3602b008200220083602ac08200220303602a8080240024020022802d802220041908cc500460d0020022802dc02210c0c010b200241b8086a410041f00610cc051a41f806101e2200450d024100210c200041003b010620004100360200200041086a200241b8086a41f00610cd051a200241003602dc02200220003602d8020b200220003602bc082002200c3602b8082002200241d8026a3602c00820024198076a200241b8086a200241e8076a109c0102402002280298074101470d00202a202b290200370200202f201941086a290300370300202e201941106a290300370300202d201941186a2903003703002027201941206a2903003703002014201941286a2903003703002026201941306a2903003703002013201941386a290300370300202a41086a202b41086a290200370200200220192903003703b80820022802f407210e202941086a220c2018280200360200202920022903e807370200200241c8046a200241b8086a41d00010cd051a200241a8056a200241c8046a41d00010cd051a200220022802e00241016a3602e00220022802e805213020022802f005213520022802f405210d20022802ec0521002017200241c8046a41086a2903003703002016200241c8046a41106a2903003703002015200241c8046a41186a290300370300200241c8066a41206a2213200241c8046a41206a290300370300200241c8066a41286a2214200241c8046a41286a290300370300200241c8066a41306a2208200241c8046a41306a290300370300200241c8066a41386a2231200241c8046a41386a29030037030020024188076a41086a2233200c280200360200200220022903c8043703c806200220292902003703880720002f01062232410b490d0302400240200041908cc500460d00200241b8086a410041f00610cc051a41f806101e22320d0141f8064108102d000b41c8a6c000412d41a888c6001028000b203241003b010620324100360200203241086a200241b8086a41f00610cd05210c200241b8086a200041e8036a41d00010cd051a200c200041b8046a20002f010641796a223441d0006c10cd05210c200041063b0106203220343b0106200241e8076a200241b8086a41d00010cd051a02400240200d4107490d00200d41d0006c200c6a220c41a07c6a200c41d07b6a220c203441ffff0371200d6b41d0006c41b0046a10ce051a200c200e36020c200c41186a2017290300370300200c41206a2016290300370300200c41286a2015290300370300200c41306a2013290300370300200c41386a2014290300370300200c41c0006a2008290300370300200c41c8006a2031290300370300200c41086a2033280200360200200c200229038807370300200c20022903c806370310203220322f010641016a3b01060c010b200041086a200d41d0006c6a220c41d0006a200c20002f0106200d6b41d0006c10ce051a200c200e36020c200c41186a2017290300370300200c41206a2016290300370300200c41286a2015290300370300200c41306a2013290300370300200c41386a2014290300370300200c41c0006a2008290300370300200c41c8006a2031290300370300200c41086a2033280200360200200c200229038807370300200c20022903c806370310200020002f010641016a3b01060b20024198076a200241e8076a41d00010cd051a200241f8056a20024198076a41d00010cd051a0240200028020022080d00410021000c070b20002f0104213141002100034020024198076a200241f8056a41d00010cd051a20302000470d05203141ffff0371211302400240024020082f01062200410b490d002028410041a20710cc051a41a807101e220e450d09200e4100360200200e41046a200241b8086a41a40710cd051a200241b8086a200841e8036a41d00010cd051a200e41086a200841b8046a20082f0106220041796a220c41d0006c10cd052134200e41f8066a20084194076a2000417a6a221441027410cd052133200841063b0106200e200c3b010602402014450d00410021002033210c0340200c280200220d20003b0104200d200e360200200c41046a210c2014200041016a2200470d000b0b200241e8076a200241b8086a41d00010cd051a200241b8086a200241e8076a41d00010cd051a203141ffff037122004107490d01201341d0006c20346a220041a07c6a200041d07b6a2200200e2f010620136b41d0006c41b0046a10ce051a200020024198076a41d00010cd051a200e200e2f010641016a220c3b01062013410274223120336a416c6a20332013417a6a22004102746a220d200c41ffff0371221420006b41027410ce051a200d203236020020142000490d02201341796a2100200e20316a41e0066a210c0340200c280200220d200041016a22003b0104200d200e360200200c41046a210c20002014490d000c030b0b2008201341d0006c6a220c41d8006a200c41086a220c200020136b41d0006c10ce051a200c20024198076a41d00010cd051a2008200041016a220c3b01062013410274200841f8066a220d6a41086a200d201341016a22004102746a220d200c41ffff0371220c20006b41027410ce051a200d20323602002013200c4f0d0a203220003b0104203220083602002000200c4f0d0a200c417f6a210e20082000417f6a22004102746a4180076a210c0340200c280200220d200041026a3b0104200d2008360200200c41046a210c200e200041016a2200470d000c0b0b0b200841086a201341d0006c6a220c41d0006a200c20082f0106220d20136b41d0006c10ce051a200c20024198076a41d00010cd051a2008200d41016a220c3b010620134102742233200841f8066a220d6a41086a200d201341016a22144102746a2231200c41ffff0371220d20146b41027410ce051a203120323602002000200d4f0d00200820336a41fc066a210003402000280200220c201341016a22133b0104200c2008360200200041046a2100200d2013470d000b0b203041016a2100200241f8056a200241b8086a41d00010cd051a02402008280200220c0d00200e21320c080b20082f01042131200c2108200e2132200021300c000b0b20024198056a41086a202b41086a2902003703002002202b290200370398052008450d06203010200c060b200c4108102d000b41f8064108102d000b2000200d41d0006c6a220c41d8006a200c41086a22302032200d6b41d0006c10ce051a200c41146a200e360200200c41206a2017290300370300200c41286a2016290300370300200c41306a2015290300370300200c41386a2013290300370300200c41c0006a2014290300370300200c41c8006a2008290300370300200c41d0006a2031290300370300200c41106a20332802003602002030200229038807370300200c41186a20022903c806370300200020002f010641016a3b01060c030b41c6a8c000413541a888c6001028000b41a8074108102d000b2028410041a20710cc051a41a807101e220c450d01200c4100360200200c41046a200241b8086a41a40710cd051a200c2035280200220d3602f8062035200c36020020352035280204220e41016a360204200d41003b0104200d200c360200200241b8086a200241f8056a41d00010cd051a200e2000470d02200c2f01062200410a4b0d03200c200041d0006c6a41086a200241b8086a41d00010cd051a200c200041016a22004102746a41f8066a2032360200200c20003b0106203220003b01042032200c3602000b200241e8076a200241b8036a41d00010cd051a20230d0c2024417f4c0d0c0240024020240d004101210e0c010b2024101e220e450d040b0240024020030d00410021000c010b2024210d200e21002005210c03402000200c290000370000200041186a200c41186a290000370000200041106a200c41106a290000370000200041086a200c41086a290000370000200041206a2100200c41206a210c200d41606a220d0d000b202521000b200241b8086a200241e8076a41d00010cd051a20022000360290092002200336028c092002200e360288094110101e2200450d042000200f370000200041086a201137000020024290808080800237029c072002200036029807200220024198076a3602f80520024188046a200241f8056a10b901200228029807210020022802a007210c201542003703002016420037030020174200370300200242003703c8062000200c200241c8066a1001203920152903003703002019201629030037030020182017290300370300200220022903c8063703e8070240200228029c07450d0020022802980710200b200241003602a0072002420137039807200241b8086a20024198076a10ca01200220273602f805200241f8056a20024198076a10df02200220263602f805200241f8056a20024198076a10df0220022802f80821002002200228028009220c3602f805200241f8056a20024198076a10630240200c450d00200c41306c210c0340200041106a20024198076a10ca01200220003602f805200041306a2100200241f8056a20024198076a10df02200c41506a220c0d000b0b20022802880921002002200228029009220c3602f805200241f8056a20024198076a10630240200c450d00200c410574210c0340200020024198076a10ca01200041206a2100200c41606a220c0d000b0b200228029c072100200241e8076a4120200228029807220c20022802a007100502402000450d00200c10200b024020022802fc08450d0020022802f80810200b0240200228028c09450d0020022802880910200b20024198076a41186a2213203629030037030020024198076a41106a2214203729030037030020024198076a41086a22082038290300370300200220022903880437039807410021000240201c41014b0d000240201c0e020007000b202d2013290300370300202e2014290300370300202f200829030037030020022002290398073703b808410021000c070b201c210c03402000200c410176220d20006a220e2010200e41246c6a28020020074b1b2100200c200d6b220c41014b0d000c060b0b41a8074108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000b20244101102d000b41104101102d000b02402010200041246c6a280200220c2007460d002000200c2007496a21000b202d2013290300370300202e2014290300370300202f200829030037030020022002290398073703b808201c20004f0d0041dcd8c200411e41a888c6001028000b0240201c201d470d00201c41016a220c201c490d12201c410174220d200c200d200c4b1b221dad42247e220f422088a70d12200fa7220c4100480d1202400240201c0d00200c101e21100c010b2010201c41246c200c102221100b2010450d030b2010200041246c6a220c41246a200c201c20006b41246c10ce051a200c2007360200200c411c6a202d290300370200200c41146a202e290300370200200c410c6a202f290300370200200c20022903b80837020420392013290300370300201920142903003703002018200829030037030020022002290398073703e8070240201e201f470d00201e41016a2200201e490d12201e410174220c2000200c20004b1b221f41ffffff3f71201f470d12201f41057422004100480d1202400240201e0d002000101e211a0c010b201a201e41057420001022211a0b201a450d040b201c41016a211c201a201e4105746a220020022903e807370000200041186a2039290300370000200041106a2019290300370000200041086a2018290300370000201e41016a211e0b20122020470d000b202021120c020b200c4104102d000b20004101102d000b024020202012460d000340201241d0006a21000240201241c4006a280200450d00201241c0006a28020010200b2000211220202000470d000b0b02402009450d00200a10200b024002400240024002400240024002400240024020022802e0020d0020022802d80220022802dc02410010fe04200b10200240201f450d00201a10200b0240201d450d00201010200b2004450d01200510200c010b024002400240201e450d00201e410574210c201a21000340200241b8086a200010ff0420022802f808220d0d02200041206a2100200c41606a220c0d000b0b4108212041002139410021350c010b20024198076a41386a2220200241b8086a41386a221229030037030020024198076a41306a222d200241b8086a41306a221529030037030020024198076a41286a222e200241b8086a41286a221629030037030020024198076a41206a222f200241b8086a41206a221729030037030020024198076a41186a220e200241b8086a41186a221829030037030020024198076a41106a2213200241b8086a41106a221929030037030020024198076a41086a2214200241b8086a41086a2222290300370300200241a8056a41086a2230200241b8086a41cc006a290200370300200241a8056a41106a2231200241b8086a41d4006a290200370300200241a8056a41186a2232200241b8086a41dc006a280200360200200220022903b808370398072002200241fc086a22082902003703a805200241e8076a41086a22262014290300370300200241e8076a41106a22272013290300370300200241e8076a41186a2239200e290300370300200241e8076a41206a2233202f290300370300200241e8076a41286a222f202e290300370300200241e8076a41306a222e202d290300370300200241e8076a41386a222d2020290300370300200241f8056a41086a22202030290300370300200241f8056a41106a22302031290300370300200241f8056a41186a2231203228020036020020022002290398073703e807200220022903a8053703f805202220262903003703002019202729030037030020182039290300370300201720332903003703002016202f2903003703002015202e2903003703002012202d290300370300200220022903e8073703b8082014202029030037030020132030290300370300200e2031280200360200200220022903f8053703980741e000101e2220450d07202020022903b8083703002020200d3602402020200229039807370244202041386a2012290300370300202041306a2015290300370300202041286a2016290300370300202041206a2017290300370300202041186a2018290300370300202041106a2019290300370300202041086a2022290300370300202041cc006a2014290300370200202041d4006a2013290300370200202041dc006a200e2802003602000240200c4120470d0041012139410121350c010b200041206a2115201a201e4105746a220d41606a212f410121394101213503402015210002400340200241b8086a200010ff0420022802f808220c0d01200d200041206a2200470d000c030b0b20024198076a41386a220e200241b8086a41386a221629030037030020024198076a41306a2215200241b8086a41306a221729030037030020024198076a41286a2230200241b8086a41286a221829030037030020024198076a41206a2231200241b8086a41206a221929030037030020024198076a41186a2213200241b8086a41186a222229030037030020024198076a41106a2214200241b8086a41106a222d29030037030020024198076a41086a2212200241b8086a41086a222e290300370300200241a8056a41086a2232200841086a290200370300200241a8056a41106a2226200841106a290200370300200241a8056a41186a2227200841186a280200360200200220022903b80837039807200220082902003703a805200241e8076a41086a22332012290300370300200241e8076a41106a22212014290300370300200241e8076a41186a222c2013290300370300200241e8076a41206a22342031290300370300200241e8076a41286a22312030290300370300200241e8076a41306a22302015290300370300200241e8076a41386a2215200e290300370300200241f8056a41086a220e2032290300370300200241f8056a41106a22322026290300370300200241f8056a41186a2226202728020036020020022002290398073703e807200220022903a8053703f805202e2033290300370300202d20212903003703002022202c29030037030020192034290300370300201820312903003703002017203029030037030020162015290300370300200220022903e8073703b8082012200e2903003703002014203229030037030020132026280200360200200220022903f80537039807024020352039470d00203941016a220e2039490d1820394101742215200e2015200e4b1b2235ad42e0007e220f422088a70d18200fa7220e4100480d180240024020390d00200e101e21200c010b2020203941e0006c200e102221200b2020450d080b200041206a21152020203941e0006c6a220e20022903b808370300200e41106a202d290300370300200e41086a202e2903003703002017290300210f201629030021112018290300211b2019290300213b2022290300213c200e41c0006a200c360200200e41186a203c370300200e41206a203b370300200e41286a201b370300200e41386a2011370300200e41306a200f370300200e41c4006a200229039807370200200e41cc006a2012290300370200200e41d4006a2014290300370200200e41dc006a2013280200360200203941016a2139202f2000470d000b0b200241d8086a201c360200200241d4086a201d360200200241c8086a201ead422086201fad843703002002201a3602c40820024284808080c0003702bc082002200b3602b808200220103602d008200241003602f007200242013703e8072002201c3602980720024198076a200241e8076a10630240201c450d002010201c41246c6a21142010210c0340200c280200210e0240024020022802ec07220d20022802f00722006b4104490d0020022802e807210d0c010b200041046a22132000490d18200d41017422002013200020134b1b22004100480d1802400240200d0d002000101e210d0c010b20022802e807200d20001022210d0b0240200d450d00200220003602ec072002200d3602e80720022802f00721000c010b20004101102d000b2002200041046a3602f007200d20006a200e3600002002200241e8076a36029807200c41046a20024198076a10b901200c41246a220c2014470d000b0b20022802f007210d20022802ec07210e20022802e807210c411b101e2200450d02200041176a4100280082f446360000200041106a41002900fbf346370000200041086a41002900f3f346370000200041002900ebf3463700002000411b413610222200450d03200042e5f4bcb3e68cdbb4ee00370023200042e9dab5f9e68ddbb4ee0037001b200241c8066a41186a22134200370300200241c8066a41106a22144200370300200241c8066a41086a22084200370300200242003703c8062000412b200241c8066a1001200241e8076a41186a2013290300370300200241e8076a41106a2014290300370300200241e8076a41086a2008290300370300200220022903c8063703e807200010202002412036029c072002200241e8076a36029807200c200d20024198076a10a3020240200e450d00200c10200b20024198076a200241b8086a10fd0420022802a007210e200228029807210d200241003602f007200242013703e8072002201e3602f805200241f8056a200241e8076a10630240201e450d00201e410574210c201a210003402002200241e8076a3602f8052000200241f8056a10b901200041206a2100200c41606a220c0d000b0b20022802ec072100200d200e20022802e807220c20022802f007100502402000450d00200c10200b0240200228029c07450d00200d10200b200b10200240201f450d00201a10200b0240201d450d00201010200b20022802d802210020022902dc02210f02402004450d00200510200b20000d010b2001280208210d0240200141106a2802002200450d00200041d0006c210c200d41c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200c41b07f6a220c0d000b0b2001410c6a280200450d13200d10200c130b2002200f3702bc03200220003602b8034104101e2200450d0220002007360000200241c0086a4284808080c00037030041002136200241c8086a41002900dbbe45370300200241d0086a41002900e3be45370300200220003602bc08200241073a00b808200241b8086a10772002418094ebdc033602bc08200220064101200641014b1b2200203941036c417d6a220c2000200c491b2000418094ebdc036e220c4101200c41014b1b220c6ead428094ebdc037e2000200c6ead22118042fcffffff0f83421480a7220d3602b808200241b8086a200d418094ebdc034b4102746a280200220e210d2039200f422088a76b22130d050c060b411b4101102d000b41364101102d000b41044101102d000b200e4108102d000b41e0004108102d000b2002418094ebdc033602bc08200220004100203920136b220d200d20394b1b41036c417d6a220d2000200d491b200c6ead428094ebdc037e20118042fcffffff0f83421480a722003602b808200241b8086a2000418094ebdc034b4102746a28020021002002418094ebdc033602bc0820024100200e20006b220c200c200e4b1b220c3602b808200241b8086a200c418094ebdc034b4102746a350200210f2002418094ebdc033602bc082002200f4100418094ebdc0320006b22002000418094ebdc034b1bad7e428094ebdc0380a722003602b808200241b8086a2000418094ebdc034b4102746a280200210d0b203941e0006c220041e0006e210c0240024020000d00410421310c010b200c4102742214101e2231450d02200c21360b410021120240202020006a2020460d00024020130d00203941e0006c210c410021122031210003402000200d360200201241016a2112200041046a2100200c41a07f6a220c0d000c020b0b2020203941e0006c6a2113203941057441606a2114203121002020210c0340200220022802b8033602ec07200220022802bc033602e8072002200241b8036a3602f007200241b8086a200241e8076a200c109c012000200d200e20022802b8084101461b360200200041046a21002013200c41e0006a220c470d000b201441057641016a21120b200241b8086a41086a22004200370300200242003703b80841aafac600411b200241b8086a1000200241e8076a41086a2000290300370300200220022903b8083703e807200241003602b808200241e8076a4110200241b8086a100321000240024020022802b808220c417f470d00410021180c010b024020000d00410021180c010b200c4104490d0320002800002118200010200b200241b8086a41086a22004200370300200242003703b80841c7f9c6004112200241b8086a1000200241e8076a41086a2000290300370300200220022903b8083703e80741002134200241003602b808200241e8076a4110200241b8086a10032100024020022802b808220c417f460d002000450d00200c4104490d0420002800002134200010200b4117101e2200450d042000410f6a41002900d5a844370000200041086a41002900cea844370000200041002900c6a84437000020004117412e10222200450d05200020343600174200213e200241a8056a41186a220c4200370300200241a8056a41106a220d4200370300200241a8056a41086a220e4200370300200242003703a8052000411b200241a8056a1001200241c8046a41186a200c290300370300200241c8046a41106a200d290300370300200241c8046a41086a200e290300370300200220022903a8053703c80420001020200241003602b808200241c8046a4120200241b8086a1003211620022802b8082217417f460d092016450d09200220173602fc02200220163602f802200241b8026a200241f8026a105f20022802b8020d0820022802fc02220e4140712200417f4c0d0020022802bc02211502400240200e41067622080d00410821190c010b2000101e2219450d070b02402015450d00410021140340200241003a00d8082014221341016a2114410021000240024002400340200241003a00a804200e2000460d01200241b8086a20006a20022802f802220d2d00003a00002002200d41016a3602f8022002200041016a220c3a00d808200c2100200c4120470d000b200241a8056a41186a2200200241b8086a41186a290300370300200241a8056a41106a2207200241b8086a41106a290300370300200241a8056a41086a2210200241b8086a41086a290300370300200220022903b8083703a805200e200c6b220c4110490d012002200d41116a3602f802200c41706a410f4b0d02200c41706a210c0c010b0240200041ff0171450d00200241003a00d8080b4100210c0b20024198076a41086a200241e8076a41086a290300370300200220022903e807370398072002200c3602fc022008450d0b201910200c0b0b200d41096a290000210f200d290001211120024198076a41086a220e201029030037030020024198076a41106a2210200729030037030020024198076a41186a220720002903003703002002200d41216a3602f802200220022903a805221b3703e8072002201b37039807200d41196a290000211b200d290011213b200241f8056a41186a220d2007290300370300200241f8056a41106a22072010290300370300200241f8056a41086a2210200e29030037030020022002290398073703f805024020082013470d00201341017422002014200020144b1b220841ffffff1f712008470d0f200841067422004100480d0f0240024020130d002000101e21190c010b201920134106742000102221190b2019450d0a0b200c41606a210e201920134106746a2200203b3703102000200f37030820002011370300200041186a201b370300200020022903f805370320200041286a2010290300370300200041306a2007290300370300200041386a200d29030037030020142015470d000b2002200c41606a3602fc020b2019450d082015ad4220862008ad84213e02402017450d00201610200b203e422088a7210c203ea721080c0a0b102c000b20144104102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b41174101102d000b412e4101102d000b20004108102d000b20004108102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410821194100210c410021080b0240024020122039203920124b1b221e0d004200213f420021400c010b200241b8086a410572213320024198076a41036a212c200241b8086a41086a21082018ad2141200241c1086a212d2020210e4200213f42002140410021160240024003402016210020084200370300200242003703b808418cb5c4004115200241b8086a1000200241e8076a41086a22222008290300370300200220022903b8083703e807200241003602b808200241e8076a4110200241b8086a1003210d0240024020022802b808220c417f460d002002200c36029c072002200d36029807200241b8086a20024198076a10e301024020022802b8082212450d0020022902bc08210f200c450d02200d10200c020b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b4200210f410121120b200041016a2116203120004102746a21072020200041e0006c6a220d41206a2117200f422088a7410574210c20122100024003400240200c0d00410021140c020b41012114200e2000460d012000200d412010cf052113200c41606a210c200041206a210020130d000b0b0240200fa7450d00201210200b0240024020140d00024002400240024002404112101e2200450d00200041002900d3d443370000200041106a41002f00e3d4433b0000200041086a41002900dbd44337000020024292808080a0023702bc08200220003602b808200d200241b8086a10ca0120022802c008210020022802b808210c200241a8056a41186a22134200370300200241a8056a41106a22144200370300200241a8056a41086a22124200370300200242003703a805200c2000200241a8056a1001200241c8046a41186a222e2013290300370300200241c8046a41106a222f2014290300370300200241c8046a41086a22302012290300370300200220022903a8053703c804024020022802bc08450d0020022802b80810200b0240200241c8046a412041e4fdc600410041001002417f460d00200d10a30420084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e80702404100200241e8076a10d6042200200041ff01714104461b41ff0171417f6a220041024b0d0020000e03010001010b20084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e807200241013a00a8044101101e2200450d02200020022d00a8043a0000200241e8076a4110200041011005200010200b200241a8026a2017290300220f201741086a2226290300428094ebdc03420010d30520024198026a20022903a8022211200241a8026a41086a290300221b4280ec94a37c427f10d20520024188026a2011201b2007350200223b420010d2052002290388022211203b200f2002290398027c7e220f200f428094ebdc0380220f4280ec94a37c7e7c4280cab5ee0156200fa76aad7c220f20024188026a41086a290300200f201154ad7c221184500d0520084200370300200242003703b80841868cc6004112200241b8086a100020024198056a41086a22102008290300370300200220022903b80837039805200241003602b80820024198056a4110200241b8086a1003210020022802b808220c417f460d032000450d032002200c3602ec07200220003602e807200241b8086a200241e8076a10e30120022802b8082227450d0220022902bc08211b200c450d04200010200c040b41124101102d000b41014101102d000b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410121274200211b0b4102213202400240024002400240024002400240201b422088a72200450d00200041057421134100210c2027210002400340200e2000460d01200c2000200d412010cf0522144100476a210c2014450d01200041206a2100201341606a22130d000c020b0b20084200370300200242003703b80841baf6c600411a200241b8086a100020102008290300370300200220022903b80837039805200241003602b80820024198056a4110200241b8086a100321000240024020022802b8082214417f460d002000450d00200220143602ec07200220003602e807200241b8086a200241e8076a10c101024020022802b8082213450d0020022902bc08213b2014450d02200010200c020b41ceb8c4004133200241a8056a41fcbfc4004184b9c400102e000b410021130b2013410420131b2118410021000240024002400240203b420020131b223b422088223ca7220741014b0d0020070e020201020b20072113034020002013410176221420006a2212200c201820124102746a280200491b2100201320146b221341014b0d000b0b410021320240200c201820004102746a2802002213470d00410021210c020b2000200c20134b6a21000b20084200370300200242003703b80841868cc6004112200241b8086a100020102008290300370300200220022903b80837039805200241003602b80820024198056a4110200241b8086a100321140240024020022802b8082212417f470d00410021130c010b024020140d00410021130c010b200220123602bc08200220143602b80820024180026a200241b8086a105f02400240200228028002450d00410021130c010b20022802840221130b2012450d00201410200b20132013418094ebdc036e22144180ec94a37c6c6aad4280fd87d1007e2242428094ebdc0380213d200020074b0d0702402007203ba7470d00200741016a22132007490d1120074101742212201320132012491b221341ffffffff03712013470d11201341027422124100480d110240024020070d002012101e21180c010b201820074102742012102221180b2018450d072013ad213b0b201820004102746a221341046a2013200720006b41027410ce051a2013200c36020041012121203b42ffffffff0f83200741016a2200ad223c42208684213b200020144180fd87d1006c203da76a2042203d4280ec94a37c7e7c4280cab5ee01566a4b21320b20084200370300200242003703b80841baf6c600411a200241b8086a100020102008290300370300200220022903b808370398050240024020180d0020024198056a411010040c010b200241003602c008200242013703b8082002203ca722133602e807200241e8076a200241b8086a10630240024020130d0020022802c008211020022802bc08210720022802b80821130c010b410020022802c00822006b2114201820134102746a211c20022802bc0821072018211203402012280200211502400240200720146a4104490d0020022802b80821130c010b200041046a22132000490d13200741017422102013201020134b1b22104100480d130240024020070d002010101e21130c010b20022802b80820072010102221130b02402013450d00200220103602bc08200220133602b808201021070c010b20104101102d000b2002200041046a22103602c008201320006a20153600002014417c6a211420102100201c201241046a2212470d000b0b203ba7210020024198056a411020132010100502402007450d00201310200b2000450d00201810200b2021450d00200241023602e8072002200cad3703f007200241b8086a200241e8076a10a103202c41086a2008280200360000202c20022903b8083700002033200229009807370000203341076a20024198076a41076a290000370000200241c6a4b9da043600b908200241023a00b808200241b8086a10fe01200241023a00a8044101101e2200450d01200020022d00a8043a000020004101410510222200450d022000200c360001203320022f00e8073b0000200241023a00b808203341026a200241e8076a41026a2d00003a0000200241c28289aa043600b90820024285808080d0003702c408200220003602c008200241b8086a10fe010b0240201ba7450d00202710200b024020324102460d002032410171450d0020084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e80702404100200241e8076a10d6042200200041ff01714104461b41ff0171417f6a220041024b0d0020000e03010001010b20084200370300200242003703b808419afac6004110200241b8086a100020222008290300370300200220022903b8083703e807200241013a00a8044101101e2200450d03200020022d00a8043a0000200241e8076a4110200041011005200010200b2026290300223b20112017290300223d200f54203b201154203b2011511b22001b2143203d200f20001b214402400240203e4220882245a722140d00420021114200210f0c010b2014410674210c201941206a2100420021114200210f034002400240200e2000460d002000200d412010cf050d010b427f200f200041706a221341086a2903007c201120132903007c221b2011542213ad7c221120132011200f542011200f511b22131b210f427f201b20131b21110b200041c0006a2100200c41406a220c0d000b0b200241e0016a200d20444200200d290330221b20117d223c203c201b56200d41386a290300223c200f7d201b201154ad7d220f203c56200f203c511b22001b221120112044564200200f20001b220f204356200f2043511b22001b22112043200f20001b220f10e003200241e0016a41086a290300214620022903e001214702402044201120022903f00122427d22487d22492043200f200241e0016a41186a2903007d2011204254ad7d224a7d2044204854ad7d221184500d00203d201b7d2242203b203c7d203d201b54ad7d220f84500d00200d280248220c450d00200d2802402100200241d0016a204242012042420156200f420052200f501b22131b221b200f420020131b220f428094ebdc03420010d305200241b0016a20492011428094ebdc03420010d305200241c0016a201b200f20022903d001221142012011420156200241d0016a41086a29030022114200522011501b22131b223c2011420020131b223d10d305200241a0016a20022903b0012242200241b0016a41086a290300224b4280ec94a37c427f10d20520022903c001221142ffffffff0f56200241c0016a41086a290300223b420052203b501b0d042011a7450d092000200c41306c6a2113204920022903a0017c2149201142ffffffff0f83214c034020024190016a201b20002903002211201b201154200f200041086a290300221154200f2011511b220c1b200f2011200c1b203c203d10d305200229039001221142808080801054410020024190016a41086a290300501b450d0c200241e0006a2042204b201142ffffffff0f83428094ebdc037e204c8042ffffffff0f832211420010d205200241f0006a200041106a2002290360223b201120497e22112011428094ebdc038022114280ec94a37c7e7c4280cab5ee01562011a76aad7c2211200241e0006a41086a2903002011203b54ad7c10e003427f2046200241f0006a41086a2903007c204720022903707c223b204754220cad7c2211200c201120465420112046511b220c1b2146427f203b200c1b2147200041306a22002013470d000b0b202e200d41186a2213290300370300202f200d41106a22122903003703002030200d41086a22072903003703002002200d2903003703c80402400240024002402014203ea7460d002014210c0c010b201441016a22002014490d112045a7220c4101742210200020002010491b220041ffffff1f712000470d11200041067422104100480d110240024020140d002010101e21190c010b2019200c4106742010102221190b2019450d012000ad213e0b200241c0006a20472046428094ebdc03420010d305200241306a2002290340220f200241c0006a41086a29030022114280ec94a37c427f10d205200241206a200f20112041420010d2052019200c4106746a220020483703102000204337030820002044370300200041186a204a370300200020022903c804370320200041286a2030290300370300200041306a202f290300370300200041386a202e290300370300200241033a00b808200241013a00c0082013290000210f201229000021112007290000211b200d290000213b200241b8086a41386a2043370300202d203b370000202d41086a201b370000202d41106a2011370000202d41186a200f370000200220443703e808200229033021112002290320210f200241206a41086a290300211b203e42ffffffff0f83200c41016aad42208684213e200241b8086a10770240200f204720117c20417e22112011428094ebdc038022114280ec94a37c7e7c4280cab5ee01562011a76aad7c2211201b2011200f54ad7c220f84500d00200d41d8006a28020022000d020b427f204020467c203f20477c2211203f542200ad7c220f2000200f204054200f2040511b22001b2140427f201120001b213f0c090b20104108102d000b200241106a2011204720472011562046200f562046200f511b220c1b2249200f2046200c1b224c2000ad420010d3052000410574210c200d2802502100200241106a41086a29030021422002290310214b2049213b204c213c034020022000204b203b203b204b56203c204256203c2042511b220d1b220f2042203c200d1b221110f302200241b8086a41106a2011200241086a290300223d7d200f2002290300221b54ad7d203d20117d201b200f54ad7d201b200f58203d201158203d201151220d1b22131b3703002002200f201b7d201b200f7d20131b3703c0082002201b200f56203d201156200d1b220dad3703b808203c20117d2111203b200f54ad211b02400240200d0d00200220083602e807200241e8076a1094020c010b200220083602e807200241e8076a10f4020b2011201b7d213c203b200f7d213b200041206a2100200c41606a220c450d070c000b0b41014101102d000b41054101102d000b41014101102d000b200241113602bc0820024199bcc4003602b80841ffb9c40041e000200241b8086a418cc0c40041e0bac400102e000b20124104102d000b41dcd8c200411e41a888c6001028000b427f427f2040203c7c203f203b7c2211203f542200ad7c220f2000200f204054200f2040511b22001b220f2046204c7d2047204954ad7d7c427f201120001b2211204720497d7c221b2011542200ad7c221120002011200f542011200f511b22001b2140427f201b20001b213f0b200e41e0006a210e2016201e4f0d030c010b0b200241d0006a201b20002903002211201b201154200f200041086a290300221154200f2011511b22001b200f201120001b203c203d10d3052002290350428080808010544100200241d0006a41086a290300501b450d004180bcc400411941ecbbc4001028000b200241113602bc0820024199bcc4003602b80841ffb9c40041e000200241b8086a418cc0c40041dcbbc400102e000b203e422088a7210c203ea721080b024002404117101e2200450d002000410f6a41002900d5a844370000200041086a41002900cea844370000200041002900c6a844370000024020004117412e10222200450d0020002034360017200241a8056a41186a220d4200370300200241a8056a41106a220e4200370300200241a8056a41086a22134200370300200242003703a8052000411b200241a8056a1001200241c8046a41186a200d290300370300200241c8046a41106a200e290300370300200241c8046a41086a2013290300370300200220022903a8053703c80420001020200241003602c008200242013703b8082002200c3602e807200241e8076a200241b8086a10630240200c450d00200c4106742114201921000340200041206a200241b8086a10ca01200041086a290300210f200029030021110240024020022802bc08220d20022802c008220e6b4110490d0020022802b808210c0c010b200e41106a220c200e490d07200d410174220e200c200e200c4b1b22134100480d0702400240200d0d002013101e210c0c010b20022802b808200d20131022210c0b0240200c450d00200220133602bc082002200c3602b80820022802c008210e2013210d0c010b20134101102d000b200c200e6a2213200f370008201320113700002002200e41106a220e3602c008200041186a290300210f200041106a2903002111024002400240200d200e6b410f4d0d00200d21130c010b200e41106a2213200e490d08200d410174220e2013200e20134b1b22134100480d0802400240200d0d002013101e210c0c010b200c200d20131022210c0b200c450d01200220133602bc082002200c3602b80820022802c008210e0b200041c0006a2100200c200e6a220d200f370008200d20113700002002200e41106a220d3602c008201441406a22140d010c050b0b20134101102d000b20022802c008210d20022802bc08211320022802b808210c0c020b412e4101102d000b41174101102d000b200241c8046a4120200c200d100502402013450d00200c10200b02402008450d00201910200b2002203f3703b808200220403703c0082002200241b8086a3602e807200241e8076a10940202402036450d00203110200b02402039450d00203941e0006c210c202041d4006a210003400240200041706a280200450d002000416c6a28020010200b02402000280200450d002000417c6a28020010200b200041e0006a2100200c41a07f6a220c0d000b0b02402035450d00202010200b20022802b80320022802bc0320022802c00310fe042001280208210d0240200141106a2802002200450d00200041d0006c210c200d41c0006a210003400240200041046a280200450d00200028020010200b200041d0006a2100200c41b07f6a220c0d000b0b2001410c6a280200450d00200d10200b200241e00f6a24000f0b1027000bbf0601087f230041c0006b22022400024002400240024002400240411f101e2203450d00200341176a4100290082bf45370000200341106a41002900fbbe45370000200341086a41002900f3be45370000200341002900ebbe453700002003411f413e10222203450d01200342e5f4bcb3e68cdbb4ee00370027200342e9dab5f9e68ddbb4ee0037001f200241206a41186a22044200370300200241206a41106a22054200370300200241206a41086a22064200370300200242003703202003412f200241206a1001200241186a22072004290300370300200241106a2005290300370300200241086a200629030037030020022002290320370300200310204120101e2203450d0220032002290300370000200341186a2007290300370000200341106a200241106a290300370000200341086a200241086a2903003700002001280208220441046a2205417f4c0d03200128020021070240024020050d00410121010c010b2005101e2201450d050b200241003602282002200536022420022001360220200220043602002002200241206a1063024020022802242206200228022822016b2004490d00200228022021050c060b0240200120046a22052001490d00200641017422082005200820054b1b22084100480d000240024020060d002008101e21050c010b200228022020062008102221050b02402005450d002002200836022420022005360220200821060c070b20084101102d000b1027000b411f4101102d000b413e4101102d000b41204101102d000b102c000b20054101102d000b200520016a2007200410cd051a200241206a41186a22074200370300200241206a41106a22084200370300200241206a41086a22094200370300200242003703202005200120046a200241206a1001200241186a2007290300370300200241106a2008290300370300200241086a20092903003703002002200229032037030002402006450d00200510200b02402003412041c00010222203450d0020032002290300370020200341386a200241186a290300370000200341306a200241106a290300370000200341286a200241086a290300370000200042c0808080800837020420002003360200200241c0006a24000f0b41c0004101102d000bea0303027f017e037f02402001450d00034020002802f80621002001417f6a22010d000b0b02402002450d004100210341002104034002400240200320002f0106490d00024002400240200041908cc500460d00200028020022010d012004ad210541002106410021010c020b41cfa5c000412841a888c6001028000b20003301044220862004ad842105410121060b200010202005a7210402402005422088a7220320012f0106490d00034002400240200128020022000d002004ad2105410021000c010b200641016a210620013301044220862004ad8421050b200110202005a72104200021012005422088a7220320002f01064f0d000b0b200341027420016a41fc066a28020021002001200341d0006c6a220141cc006a2802002107200141c8006a2802002108410021032006417f6a2201450d01034020002802f80621002001417f6a22010d000c020b0b2000200341d0006c6a220141cc006a2802002107200141c8006a2802002108200341016a21030b2008450d012002417f6a210202402007450d00200810200b20020d000b0b0240200041908cc500460d0020002802002101200010202001450d0020012802002100200110202000450d00024020002802002201450d000340200010202001210020012802002204210120040d000b0b200010200b0bf70c030c7f017e067f230041a0026b220224000240024002404110101e2203450d00200341002900b78b45370000200341086a41002900bf8b453700002002429080808080023702e401200220033602e0012002200241e0016a3602a0012001200241a0016a10b90120022802e001210320022802e801210120024180016a41186a2204420037030020024180016a41106a2205420037030020024180016a41086a2206420037030020024200370380012003200120024180016a1001200241d8006a41186a2004290300370300200241d8006a41106a2005290300370300200241d8006a41086a20062903003703002002200229038001370358024020022802e401450d0020022802e00110200b200241003602e001200241d8006a4120200241e0016a1003210420022802e0012205417f460d012004450d012002200536027c2002200436027841002103200241003a0038024002400240034020052003460d01200241186a20036a200420036a22012d00003a00002002200141016a3602782002200341016a22013a00382001210320014120470d000b20024180016a41086a2206200241186a41086a220729030037030020024180016a41106a2208200241186a41106a220929030037030020024180016a41186a220a200241186a41186a220b29030037030020022002290318370380012002200520016b36027c200241186a200241f8006a10b70420022802382203450d01200241e0016a41186a220c200a290300370300200241e0016a41106a220a2008290300370300200241e0016a41086a220d2006290300370300200241e0016a41286a22062007290300370300200241e0016a41306a22072009290300370300200241e0016a41386a2208200b29030037030020022002290380013703e00120022002290318370380022002413c6a2802002101200241186a41286a2209290300210e200241a0016a41086a200d290300370300200241a0016a41106a200a290300370300200241a0016a41186a200c290300370300200241a0016a41206a220a200229038002370300200241a0016a41286a220b2006290300370300200241a0016a41306a220c2007290300370300200241a0016a41386a220d2008290300370300200220022903e0013703a001200241186a200241f8006a10e30120022802180d022001450d01200310200c010b2002410036027c200341ff0171450d00200241003a00380b41ceb8c4004133200241a0016a41fcbfc4004184b9c400102e000b20024180016a41086a220f200241186a41086a2210280200360200200241e0016a41086a2211200241a0016a41086a290300370300200241e0016a41106a2212200241a0016a41106a290300370300200241e0016a41186a2213200241a0016a41186a290300370300200241e0016a41206a2214200a2903003703002006200b2903003703002007200c2903003703002008200d2903003703002002200229031837038001200220022903a0013703e00120102011290300370300200241186a41106a2012290300370300200241186a41186a2013290300370300200241186a41206a201429030037030020092006290300370300200241186a41306a2007290300370300200241186a41386a2008290300370300200241086a41086a200f280200360200200220022903e00137031820022002290380013703082005450d02200410200c020b41104101102d000b410021030b200241e0016a41086a2204200241186a41086a290300370300200241e0016a41106a2205200241186a41106a290300370300200241e0016a41186a2206200241186a41186a290300370300200241e0016a41206a2207200241186a41206a290300370300200241e0016a41286a2208200241186a41286a290300370300200241e0016a41306a2209200241186a41306a290300370300200241e0016a41386a220a200241186a41386a290300370300200220022903183703e001200241a0016a41086a220b200241086a41086a280200360200200220022903083703a00102402003450d00200020022903e00137030020002001360244200041c8006a200e370200200041386a200a290300370300200041306a2009290300370300200041286a2008290300370300200041206a2007290300370300200041186a2006290300370300200041106a2005290300370300200041086a2004290300370300200041d8006a200b280200360200200041d0006a20022903a0013702000b20002003360240200241a0026a24000b8c0201057f230041c0006b2202240002400240411c101e2203450d00200341186a41002800a4f246360000200341106a410029009cf246370000200341086a4100290094f2463700002003410029008cf2463700002003411c413810222203450d012003200037001c200241206a41186a22044200370300200241206a41106a22054200370300200241206a41086a220642003703002002420037032020034124200241206a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290320370300200310202002200128020036022020024120200241206a41041005200241c0006a24000f0b411c4101102d000b41384101102d000bd80b02067f017e230041306b22042400200441186a41086a2205420037030020044200370318418cc6c500411d200441186a1000200441086a41086a2005290300370300200420042903183703080240024002400240024002400240024002400240200441086a411041e4fdc600410041001002417f470d001079210602400240024020024101470d00200441186a41086a220542003703002004420037031841a9c6c500411a200441186a1000200441086a41086a20052903003703002004200429031837030820044100360218200441086a4110200441186a10032105024020042802182207417f460d002005450d0020074104490d052005280000210720051020200720064b0d020b200441186a41086a220542003703002004420037031841a9c6c500411a200441186a1000200441086a41086a2005290300370300200420042903183703082004200620014101746a360218200441086a4110200441186a410410050b200028020821052000280204210820002802002109200441186a41086a2200420037030020044200370318418cc6c500411d200441186a1000200441086a41086a20002903003703002004200429031837030820044100360220200442013703184104101e2200450d042004410436021c20042004280220220741046a36022020042000360218200020076a2006360000200428021c2206200428022022006b4104490d01200428021821060c050b200041046a280200450d0a200028020010200c0a0b200041046a22072000490d04200641017422002007200020074b1b22004100480d040240024020060d002000101e21060c010b200428021820062000102221060b02402006450d002004200036021c20042006360218200428022021000c040b20004101102d000b200041046a280200450d08200028020010200c080b41ceb8c4004133200441186a41fcbfc4004184b9c400102e000b41044101102d000b2004200041046a360220200620006a20013600002004200536022c2004412c6a200441186a106302402005450d002009200541286c6a21072009210503402005200441186a10ca01200541206a290300210a02400240200428021c2201200428022022006b4108490d00200428021821010c010b200041086a22062000490d03200141017422002006200020064b1b22004100480d030240024020010d002000101e21010c010b200428021820012000102221010b02402001450d002004200036021c20042001360218200428022021000c010b20004101102d000b2004200041086a360220200120006a200a3700002007200541286a2205470d000b0b200428021c210520042802202100024020024101460d00024020052000460d00200428021821050c050b200041016a22052000490d01200041017422012005200120054b1b22014100480d010240024020000d002001101e21050c010b200428021820002001102221050b02402005450d002004200136021c20042005360218200428022021000c050b20014101102d000b0240024020052000460d00200428021821050c010b200041016a22052000490d01200041017422012005200120054b1b22014100480d010240024020000d002001101e21050c010b200428021820002001102221050b2005450d022004200136021c20042005360218200428022021000b2004200041016a360220200520006a41013a00000240200428021c2205200428022022006b4104490d00200428021821050c030b200041046a22012000490d00200541017422002001200020014b1b22004100480d000240024020050d002000101e21050c010b200428021820052000102221050b02402005450d002004200036021c20042005360218200428022021000c030b20004101102d000b1027000b20014101102d000b2004200041046a360220200520006a20033600000c010b2004200041016a360220200520006a41003a00000b200428021c2100200441086a4110200428021822052004280220100502402000450d00200510200b2008450d00200910200b200441306a24000b280020004101360204200041086a200128020420012802006b4107762201360200200020013602000bf40101047f230041d0006b21020240200128020022032001280204470d00200041003602000f0b200120034180016a3602002002200341c2006a29000037012a2002200341ca006a290000370132200241106a220120022903303703002002200341d2006a29000037013a200241186a220420022903383703002002200341da006a2800003601422002200341de006a2f00003b0146200241206a220520022903403703002002200341c0006a2f00003b01282002200229032837030820002003360200200020022903083700042000410c6a2001290300370000200041146a20042903003700002000411c6a20052903003700000bb905020b7f047e23004190016b22032400024002402001280200220420012802042205460d00200120044180016a22063602002003200441c2006a29000037016a2003200441ca006a290000370172200341c8006a41086a220720032903703703002003200441d2006a29000037017a200341c8006a41106a220820032903783703002003200441da006a280000360182012003200441de006a2f00003b018601200341c8006a41186a22092003290380013703002003200441c0006a2f00003b016820032003290368370348200341286a41186a220a2009290300370300200341286a41106a220b2008290300370300200341286a41086a220c200729030037030020032003290348370328200541807f6a210d02400340200341086a41186a200a290300220e370300200341086a41106a200b290300220f370300200341086a41086a200c2903002210370300200320032903282211370308200341e8006a41186a200e370300200341e8006a41106a200f370300200341e8006a41086a2010370300200320113703682002450d01200d2004460d02200120064180016a22053602002003200641c2006a29000037016a2003200641ca006a290000370172200720032903703703002003200641d2006a29000037017a200820032903783703002003200641da006a280000360182012003200641de006a2f00003b01860120092003290380013703002003200641c0006a2f00003b016820032003290368370348200a2009290300370300200b2008290300370300200c20072903003703002003200329034837032820044180016a21042002417f6a2102200521060c000b0b20002004360200200020032903683702042000410c6a200341f0006a290300370200200041146a200341f8006a2903003702002000411c6a20034180016a2903003702000c010b200041003602000b20034190016a24000b130020004101360204200041c4c6c5003602000b3400200041c4c7c50036020420004100360200200041146a4107360200200041106a41d4c7c500360200200041086a420f3702000b2201017f230041106b22022400200241003602002000200210a203200241106a24000b130020004101360204200041c8d6c5003602000b1300200041023602042000419cd8c5003602000b3101017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241e5003600000bb015020a7f017e23004190016b22032400024002400240024002400240024002402000280200220441908cc500460d00200028020421050c010b41b801101e2204450d0141002105200441003a001020044200370308200441003b01062004410036020020042003280008360011200441003a00202004420037031820042003280051360021200441003a0030200442003703282004200328004a360031200441146a200341086a41036a280000360000200441246a200341d1006a41036a280000360000200441346a200341ca006a41036a280000360000200441003a00402004420037033820044200370348200441003a005020044200370358200441003a006020042003280043360041200441c4006a200341c3006a41036a2800003600002004200328003c360051200441d4006a2003413c6a41036a28000036000020042003280035360061200441e4006a200341356a41036a280000360000200441003a007020044200370368200441003a00800120044200370378200441003a00900120044200370388012004200328002e360071200441f4006a2003412e6a41036a280000360000200420032800273600810120044184016a200341276a41036a280000360000200420032800203600910120044194016a200341206a41036a280000360000200441003a00a0012004420037039801200441a4016a200341196a41036a280000360000200420032800193600a101200441003a00b001200442003703a801200441b4016a200341d8006a41036a280000360000200420032800583600b10120004100360204200020043602000b200241ff0171210603400240024020042f010622070d00410021080c010b20074104742109200441086a210a4100210b0340200b2108024020090d00200721080c020b02400240200a41086a2d0000220b2006460d00417f4101200b20064b1b210c0c010b200a290300220d2001560d02200d200152210c0b200841016a210b200a41106a210a200941706a21090240200c41016a0e03020001020b0b410121040c040b02402005450d002005417f6a2105200420084102746a41b8016a28020021040c010b0b2000200028020841016a36020802400240024020042f0106220a410b490d0002400240200441908cc500460d0041b801101e220a0d0141b8014108102d000b41c8a6c000412d41a888c6001028000b200a41003a0010200a4200370308200a41003b0106200a4100360200200a2003280008360011200a41003a0020200a4200370318200a2003280051360021200a41003a0030200a4200370328200a200328004a360031200a41146a200341086a41036a280000360000200a41246a200341d1006a41036a280000360000200a41346a200341ca006a41036a280000360000200a41003a0040200a4200370338200a4200370348200a41003a0050200a4200370358200a41003a0060200a2003280043360041200a41c4006a200341c3006a41036a280000360000200a200328003c360051200a41d4006a2003413c6a41036a280000360000200a2003280035360061200a41e4006a200341356a41036a280000360000200a41003a0070200a4200370368200a41003a008001200a4200370378200a41003a009001200a420037038801200a200328002e360071200a41f4006a2003412e6a41036a280000360000200a200328002736008101200a4184016a200341276a41036a280000360000200a200328002036009101200a4194016a200341206a41036a280000360000200a41003a00a001200a420037039801200a41a4016a200341196a41036a280000360000200a20032800193600a101200a41003a00b001200a42003703a801200a41b4016a200341d8006a41036a280000360000200a20032800583600b10120042d007021092004290368210d200a41086a200441f8006a20042f010641796a220b41047410cd052105200441063b0106200a200b3b010620084107490d01200841047420056a41a07f6a2005200841796a220c4104746a2208200b41ffff0371200c6b41047410ce051a200820023a000820082001370300200a200a2f010641016a3b01060c020b200420084104746a220941186a200941086a220b200a20086b41047410ce051a200941106a20023a0000200b2001370300200420042f010641016a3b0106410021040c040b200441086a20084104746a220b41106a200b20042f010620086b41047410ce051a200b20023a0008200b2001370300200420042f010641016a3b01060b0240200428020022080d00410021080c020b200320042f0104360214200320003602102003200836020c2003410136020841002104200341d8006a200341086a200d2009200a4100105b20032802584101470d02034020032802642100200328026c21082003280268210a20032d007821092003290370210d2003280260220b2802002205450d02200328025c210c2003200b2f0104360214200320003602102003200536020c2003200c41016a360208200341d8006a200341086a200d2009200a2008105b20032802584101460d000c030b0b41b8014108102d000b20034187016a220b4200370000200341ff006a4200370000200341f7006a4200370000200341ef006a4200370000200341e7006a42003700002003420037005f41e801101e2204450d01200441003a001020044200370308200441003b01062004410036020020042003280008360011200441003a00202004420037031820042003280051360021200441003a0030200442003703282004200328004a360031200441146a200341086a41036a280000360000200441246a200341d1006a41036a280000360000200441346a200341ca006a41036a280000360000200441003a00402004420037033820044200370348200441003a005020044200370358200441003a006020042003280043360041200441c4006a200341c3006a41036a2800003600002004200328003c360051200441d4006a2003413c6a41036a28000036000020042003280035360061200441e4006a200341356a41036a280000360000200441003a007020044200370368200441003a00800120044200370378200441003a00900120044200370388012004200328002e360071200441f4006a2003412e6a41036a280000360000200420032800273600810120044184016a200341276a41036a280000360000200420032800203600910120044194016a200341206a41036a280000360000200441003a00a0012004420037039801200441a4016a200341196a41036a280000360000200420032800193600a101200441003a00b001200442003703a801200441e0016a200b290000370000200441d9016a20034180016a290000370000200441d1016a200341f8006a290000370000200441c9016a200341f0006a290000370000200441c1016a200341e8006a290000370000200441b9016a200341e0006a290000370000200420032900583700b10120042000280200220b3602b8012000200436020020002000280204220541016a360204200b41003b0104200b200436020020052008470d0220042f01062208410a4b0d03200420084104746a220b41106a20093a0000200b41086a200d3703002004200841016a22094102746a41b8016a200a360200200420093b0106200a20093b0104200a2004360200410021040b20034190016a240020040f0b41e8014108102d000b41f7a5c000413041a888c6001028000b41a8a5c000412741a888c6001028000bfe1103017f017e057f230041106b220224002002410036020820024201370300200129030021030240024002400240024002400240024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200128023021052002200141386a280200220436020c2002410c6a2002106302400240024020022802042206200228020822076b2004490d00200228020021060c010b200720046a22082007490d01200641017422072008200720084b1b22074100480d010240024020060d002007101e21060c010b200228020020062007102221060b2006450d032002200736020420022006360200200228020821070b2002200720046a360208200620076a2005200410cd051a200128023c21052002200141c4006a280200220436020c2002410c6a200210630240024020022802042206200228020822076b2004490d00200228020021060c010b200720046a22082007490d01200641017422072008200720084b1b22074100480d010240024020060d002007101e21060c010b200228020020062007102221060b2006450d042002200736020420022006360200200228020821070b2002200720046a360208200620076a2005200410cd051a200141106a28020021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d052002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200129030821030240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22062004490d01200741017422042006200420064b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d062002200436020420022007360200200228020821040b2002200441086a360208200720046a200337000020012d0054210602400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d01200441017422052007200520074b1b22054100480d010240024020040d002005101e21070c010b200228020020042005102221070b2007450d072002200536020420022007360200200228020821040b2002200441016a360208200720046a20063a000020012d0055210602400240200228020420022802082204460d00200228020021070c010b200441016a22072004490d01200441017422052007200520074b1b22054100480d010240024020040d002005101e21070c010b200228020020042005102221070b2007450d082002200536020420022007360200200228020821040b2002200441016a360208200720046a20063a0000200128024821060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d092002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200128024c21060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d0a2002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200128025021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d0b2002200436020420022007360200200228020821040b2002200441046a360208200720046a20063600002002280204210720022802082104024020012903184201510d00024020072004460d00200228020021070c100b200441016a22072004490d01200441017422062007200620074b1b22064100480d010240024020040d002006101e21070c010b200228020020042006102221070b02402007450d002002200636020420022007360200200228020821040c100b20064101102d000b0240024020072004460d00200228020021070c010b200441016a22072004490d01200441017422062007200620074b1b22064100480d010240024020040d002006101e21070c010b200228020020042006102221070b2007450d0c2002200636020420022007360200200228020821040b2002200441016a360208200720046a41013a0000200141206a29030021030240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22062004490d01200741017422042006200420064b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d0d2002200436020420022007360200200228020821040b2002200441086a360208200720046a2003370000200141286a2802002106024020022802042207200228020822046b4104490d00200228020021070c0e0b200441046a22052004490d00200741017422042005200420054b1b22044100480d000240024020070d002004101e21070c010b200228020020072004102221070b02402007450d002002200436020420022007360200200228020821040c0e0b20044101102d000b1027000b41084101102d000b20074101102d000b20074101102d000b20044101102d000b20044101102d000b20054101102d000b20054101102d000b20044101102d000b20044101102d000b20044101102d000b20064101102d000b20044101102d000b2002200441046a360208200720046a20063600000c010b2002200441016a360208200720046a41003a00000b200141d6006a200210ca01200041086a200241086a28020036020020002002290300370200200241106a24000b130020004108360204200041dce8c5003602000b3400200041b7f2c50036020420004100360200200041146a410d360200200041106a41bcf2c500360200200041086a42053702000b5001017f024002404102101e2202450d00200241003b000020024102410410222202450d0120004284808080c00037020420002002360200200241003b00020f0b41024101102d000b41044101102d000b9b0a03027f017e047f230041b0016b22022400200241e8006a4200370300200241206a4100360200200241f4006a4200370200200241d8006a4100360200200241fc006a420037020020024184016a42003702002002418c016a420037020020024194016a420037020020024108360270200241086a420037030020024200370300200242808080801037036020024200370350200241003602a801200242013703a0010240024002400240024002404108101e2203450d002002428880808080013702a401200220033602a001200342003700002002290308210402400240024020022802a401220520022802a80122036b4108490d00200341086a210620022802a00121050c010b200341086a22062003490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21050c010b20022802a00120052007102221050b2005450d03200220073602a401200220053602a0010b200220063602a801200520036a2004370000200228026021070240024020022802a401220520022802a80122036b4104490d00200341046a210620022802a00121050c010b200341046a22062003490d01200541017422082006200820064b1b22084100480d010240024020050d002008101e21050c010b20022802a00120052008102221050b2005450d04200220083602a401200220053602a0010b200220063602a801200520036a2007360000200228026421072002200228026c22033602ac01200241ac016a200241a0016a10630240024020022802a401220520022802a80122066b2003490d0020022802a00121050c010b200620036a22082006490d01200541017422062008200620084b1b22064100480d010240024020050d002006101e21050c010b20022802a00120052006102221050b2005450d05200220063602a401200220053602a00120022802a80121060b2002200620036a3602a801200520066a2007200310cd051a200241106a200241a0016a10b40220022802702002280278200241a0016a109105200228025821050240024020022802a401220620022802a80122036b4104490d0020022802a00121060c010b200341046a22072003490d01200641017422032007200320074b1b22034100480d010240024020060d002003101e21060c010b20022802a00120062003102221060b2006450d06200220033602a401200220063602a00120022802a80121030b2002200341046a3602a801200620036a200536000020022903502104024020022802a401220620022802a80122036b4108490d0020022802a00121060c070b200341086a22052003490d00200641017422032005200320054b1b22034100480d000240024020060d002003101e21060c010b20022802a00120062003102221060b02402006450d00200220033602a401200220063602a00120022802a80121030c070b20034101102d000b1027000b41084101102d000b20074101102d000b20084101102d000b20064101102d000b20034101102d000b2002200341086a3602a801200620036a2004370000200241fc006a200241a0016a10ca01200041086a20022802a801360200200020022903a00137020002402002280268450d00200228026410200b024020022802202203450d002002280224450d00200310200b024020022802782203450d0020034105742106200228027041106a210303400240200341046a280200450d00200328020010200b200341206a2103200641606a22060d000b0b02402002280274450d00200228027010200b200241b0016a24000be60403077f017e017f230041106b2203240020032001360208200341086a2002106302402001450d00200141057421040340200041086a2802002105024002400240024002400240200241046a22062802002207200241086a220128020022086b4104490d00200228020021070c010b200841046a22092008490d01200741017422082009200820094b1b22084100480d010240024020070d002008101e21070c010b200228020020072008102221070b2007450d022002200736020020062008360200200128020021080b2001200841046a360200200720086a20053600002000290300210a0240024020062802002207200128020022086b4108490d00200228020021070c010b200841086a22052008490d01200741017422082005200820054b1b22084100480d010240024020070d002008101e21070c010b200228020020072008102221070b2007450d032002200736020020062008360200200128020021080b2001200841086a360200200720086a200a370000200041106a28020021092003200041186a280200220836020c2003410c6a20021063024020062802002205200128020022076b2008490d00200228020021050c040b200720086a220b2007490d0020054101742207200b2007200b4b1b22074100480d000240024020050d002007101e21050c010b200228020020052007102221050b02402005450d002002200536020020062007360200200128020021070c040b20074101102d000b1027000b20084101102d000b20084101102d000b200041206a21002001200720086a360200200520076a2009200810cd051a200441606a22040d000b0b200341106a24000bc80a02057f017e230041b0016b22022400200241ec006a4200370200200241e0006a4100360200200241286a4100360200200241f4006a4200370200200241fc006a420037020020024184016a42003702002002418c016a420037020020024194016a42003702002002419c016a410036020020024101360268200242003703082002420037035820024200370310200241003602a801200242013703a00102400240024002400240024002404108101e2203450d002002428880808080013702a401200220033602a00120034200370000200241003602ac01200241ac016a200241a0016a106302400240024020022802a401220420022802a80122036b4108490d0020022802a00121040c010b200341086a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d03200220033602a401200220043602a00120022802a80121030b2002200341086a3602a801200420036a42003700000240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22052003490d01200441017422032005200320054b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d04200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a4100360000200241186a200241a0016a10b402200228027821050240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22062003490d01200441017422032006200320064b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d05200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a2005360000200228027c21050240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22062003490d01200441017422032006200320064b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d06200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a2005360000200228026021050240024020022802a401220420022802a80122036b4104490d0020022802a00121040c010b200341046a22062003490d01200441017422032006200320064b1b22034100480d010240024020040d002003101e21040c010b20022802a00120042003102221040b2004450d07200220033602a401200220043602a00120022802a80121030b2002200341046a3602a801200420036a200536000020022903582107024020022802a401220420022802a80122036b4108490d0020022802a00121040c080b200341086a22052003490d00200441017422032005200320054b1b22034100480d000240024020040d002003101e21040c010b20022802a00120042003102221040b02402004450d00200220033602a401200220043602a00120022802a80121030c080b20034101102d000b1027000b41084101102d000b20034101102d000b20034101102d000b20034101102d000b20034101102d000b20034101102d000b2002200341086a3602a801200420036a200737000020024180016a200241a0016a10ca01200041086a20022802a801360200200020022903a0013702000240200228026c450d00200228026810200b024020022802282203450d00200228022c450d00200310200b200241b0016a24000bc90101017f23004180016b22022400200241c0006a428080808010370300200241c8006a4200370300200241186a4100360200200241d0006a4200370300200241d8006a4200370300200241e0006a4200370300200241e8006a4200370300200241f0006a4200370300200241f6006a4200370100200242013703382002420037030820024200370320200242003703102000200241086a108c0502402002413c6a280200450d00200228023810200b02402002280248450d00200228024410200b20024180016a24000bf31007037f017e017f017e0d7f027e017f230041f0016b2202240002400240024002400240024002400240200128020422034108490d002001280200220429000021052001200341786a22063602042001200441086a36020002400240024020064108490d00200429000821072001200341706a22063602042001200441106a220436020020064104490d012004280000210820012003416c6a3602042001200441046a360200200241b0016a200110b70120022802b00122090d02200041003602640c0a0b200041003602640c090b200041003602640c080b20022802b401210a20012802042204450d06200241b8016a280200210b200128020022062d0000210320012004417f6a3602042001200641016a360200200341014b0d064100210c0240024020030e020100010b200241b0016a2001109505200241a0016a41086a2203200241b0016a41086a290300370300200241f8006a41086a2204200241b0016a41206a290300370300200241f8006a41106a2206200241d8016a290300370300200241f8006a41186a220d200241e0016a290300370300200241f8006a41206a220e200241e8016a290300370300200220022903b0013703a0012002200241b0016a41186a29030037037820022802c001220c450d0720022802c401210f200241e8006a41086a2003290300370300200241c0006a41086a2004290300370300200241c0006a41106a2006290300370300200241c0006a41186a200d290300370300200241c0006a41206a200e290300370300200220022903a001370368200220022903783703400b200241306a41086a200241e8006a41086a290300370300200241086a41086a200241c0006a41086a290300370300200241086a41106a200241c0006a41106a290300370300200241086a41186a200241c0006a41186a290300370300200241086a41206a200241c0006a41206a290300370300200220022903683703302002200229034037030820022001105f20022802000d05200128020422034160712204417f4c0d012002280204211002400240200341057622110d00410821120c010b2004101e2212450d030b02402010450d004100210e41002103410021060340024002402001280204220d4104490d002001280200220428000021132001200d417c6a22143602042001200441046a36020020144108490d00200429000421152001200d41746a36020420012004410c6a360200200241b0016a200110b70120022802b001220d450d00200641016a210420022902b401211620062011470d010240200e2004200e20044b1b221141ffffff3f712011470d00201141057422144100480d000240024020060d002014101e21120c010b201220032014102221120b20120d0220144108102d000b1027000b02402006450d00201241106a210103400240200141046a280200450d00200128020010200b200141206a2101200341606a22030d000b0b2011450d08201210200c080b201220036a22062015370300200641146a2016370200200641106a200d360200200641086a2013360200200e41026a210e200341206a21032004210620102004470d000b0b2012450d05200128020422044104490d032001280200220d280000211420012004417c6a22033602042001200d41046a36020020034108490d03200d29000421152001200441746a220e3602042001200d410c6a36020041002103200241003a009801200441736a21040c040b200041003602640c060b102c000b20044108102d000b2000410036026402402010450d0020104105742100201241106a210103400240200141046a280200450d00200128020010200b200141206a2101200041606a22000d000b0b02402011450d00201210200b0240200c450d00200f450d00200c10200b200a450d03200910200c030b02400340200e2003460d01200241f8006a20036a200d20036a2206410c6a2d00003a00002001200436020420012006410d6a3602002002200341016a22063a0098012004417f6a21042006210320064120470d000b200241c0006a41186a2201200241f8006a41186a290300370300200241c0006a41106a2203200241f8006a41106a290300370300200241c0006a41086a2204200241f8006a41086a290300370300200241a0016a41086a2206200241306a41086a290300370300200241b0016a41086a220d200241086a41086a290300370300200241b0016a41106a220e200241086a41106a290300370300200241b0016a41186a2213200241086a41186a290300370300200241b0016a41206a2217200241086a41206a29030037030020022002290378370340200220022903303703a001200220022903083703b00120002007370308200020053703002000200f3602242000200c360220200020022903a001370310200041186a2006290300370300200020022903b001370328200041306a200d290300370300200041386a200e290300370300200041c0006a2013290300370300200041c8006a2017290300370300200041f8006a2010360200200041f4006a2011360200200041f0006a2012360200200041ec006a200b3602002000200a3602682000200936026420002008360260200020143602582000201537035020004194016a20012903003702002000418c016a200329030037020020004184016a2004290300370200200041fc006a20022903403702000c030b0240200341ff0171450d00200241003a0098010b2000410036026402402010450d0020104105742100201241106a210103400240200141046a280200450d00200128020010200b200141206a2101200041606a22000d000b0b02402011450d00201210200b0240200c450d00200f450d00200c10200b200a450d02200910200c020b200041003602640240200c450d00200f450d00200c10200b200a450d01200910200c010b20004100360264200a450d00200910200b200241f0016a24000b9c0403057f017e037f23004180016b22022400024002400240200128020422034104490d0020012802002204280000210520012003417c6a22063602042001200441046a36020020064108490d00200429000421072001200341746a220836020420012004410c6a36020041002106200241003a0078200341736a21030240034020082006460d01200241d8006a20066a200420066a2209410c6a2d00003a00002001200336020420012009410d6a3602002002200641016a22093a00782003417f6a21032009210620094120470d000b200241186a41186a2204200241d8006a41186a2206290300370300200241186a41106a2208200241d8006a41106a2203290300370300200241186a41086a220a200241d8006a41086a220929030037030020022002290358370318200241c8006a200110b70120022802480d02200041003602100c030b0240200641ff0171450d00200241003a00780b200041003602100c020b200041003602100c010b2009200a2903003703002003200829030037030020062004290300370300200241146a200241c8006a41086a280200360200200220022903183703582002200229034837020c20002005360208200020073703002000200229020837020c200041146a200241086a41086a2902003702002000411c6a2002290358370200200041246a20092903003702002000412c6a2003290300370200200041346a20062903003702000b20024180016a24000b980d07037f017e037f017e097f017e027f230041f0016b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241b0016a200110b70120022802b00122030d01200041003602600c020b200041003602600c010b20022802b401210402400240024002400240024002400240200128020422064108490d00200241b0016a41086a28020021072001280200220829000021092001200641786a220a3602042001200841086a2208360200200a4104490d012008280000210b2001200641746a220a3602042001200841046a360200200a0d020c030b200041003602602004450d07200310200c070b200041003602602004450d06200310200c060b20082d0004210a2001200641736a220c3602042001200841056a360200200a41014b0d004100210802400240200a0e020100010b200241b0016a2001109505200241a0016a41086a2206200241b0016a41086a290300370300200241f8006a41086a220a200241b0016a41206a290300370300200241f8006a41106a220c200241d8016a290300370300200241f8006a41186a220d200241e0016a290300370300200241f8006a41206a220e200241e8016a290300370300200220022903b0013703a0012002200241b0016a41186a29030037037820022802c0012208450d0120022802c401210f200241e8006a41086a2006290300370300200241c0006a41086a200a290300370300200241c0006a41106a200c290300370300200241c0006a41186a200d290300370300200241c0006a41206a200e290300370300200220022903a001370368200220022903783703402001280204210c0b200241306a41086a200241e8006a41086a290300370300200241086a41086a200241c0006a41086a290300370300200241086a41106a200241c0006a41106a290300370300200241086a41186a200241c0006a41186a290300370300200241086a41206a200241c0006a41206a2903003703002002200229036837033020022002290340370308200c4104490d012001280200220d28000021102001200c417c6a22063602042001200d41046a36020020064104490d02200d28000421112001200c41786a22063602042001200d41086a36020020064104490d04200d28000821122001200c41746a22063602042001200d410c6a36020020064108490d04200d29000c21132001200c416c6a220e3602042001200d41146a36020041002106200241003a009801200c416b6a210a0340200e2006460d04200241f8006a20066a200d20066a220c41146a2d00003a00002001200a3602042001200c41156a3602002002200641016a220c3a009801200a417f6a210a200c2106200c4120470d000b200241c0006a41186a2201200241f8006a41186a290300370300200241c0006a41106a2206200241f8006a41106a290300370300200241c0006a41086a220a200241f8006a41086a290300370300200241a0016a41086a220c200241306a41086a290300370300200241b0016a41086a220d200241086a41086a290300370300200241b0016a41106a220e200241086a41106a290300370300200241b0016a41186a2214200241086a41186a290300370300200241b0016a41206a2215200241086a41206a29030037030020022002290378370340200220022903303703a001200220022903083703b00120002009370308200020053703002000200f36022420002008360220200020022903a001370310200041186a200c290300370300200020022903b001370328200041306a200d290300370300200041386a200e290300370300200041c0006a2014290300370300200041c8006a2015290300370300200041f4006a2011360200200041f0006a2010360200200041ec006a200b360200200041e8006a20073602002000200436026420002003360260200020123602582000201337035020004190016a200129030037030020004188016a200629030037030020004180016a200a290300370300200041f8006a20022903403703000c050b200041003602602004450d04200310200c040b2000410036026002402008450d00200f450d00200810200b2004450d03200310200c030b2000410036026002402008450d00200f450d00200810200b2004450d02200310200c020b0240200641ff0171450d00200241003a0098010b2000410036026002402008450d00200f450d00200810200b2004450d01200310200c010b2000410036026002402008450d00200f450d00200810200b2004450d00200310200b200241f0016a24000ba00a07037f017e087f017e077f027e017f230041d0006b22022400024002400240200128020422034108490d002001280200220429000021052001200341786a3602042001200441086a360200200241286a200110b701200228022822030d01200042023703180c020b200042023703180c010b200241306a22062802002107200228022c2104200241286a200110b701024020022802282208450d00200228022c210902402001280204220a4104490d002006280200210b20012802002206280000210c2001200a417c6a220d3602042001200641046a360200200d4108490d002006290004210e2001200a41746a220d36020420012006410c6a2206360200024002400240200d450d0020062d0000210d2001200a41736a220f3602042001200641016a360200200d41014b0d0041002110200d0e020201020b2000420237031802402009450d00200810200b2004450d04200310200c040b410121100b02400240024002400240024002400240200f450d0020062d0001210d2001200a41726a220f3602042001200641026a360200200d41014b0d004100211102400240200d0e020100010b410121110b200f4104490d01200628000221122001200a416e6a220d3602042001200641066a360200200d4104490d02200628000621132001200a416a6a220d36020420012006410a6a360200200d4104490d05200628000a21142001200a41666a220d36020420012006410e6a360200200d450d0720062d000e210d2001200a41656a220f36020420012006410f6a2215360200200d41014b0d0742002116200d0e020403040b2000420237031802402009450d00200810200b2004450d09200310200c090b2000420237031802402009450d00200810200b2004450d08200310200c080b2000420237031802402009450d00200810200b2004450d07200310200c070b200f4108490d03200629000f21172001200a415d6a220d3602042001200641176a360200200d4104490d03200628001721182001200a41596a220f36020420012006411b6a2215360200420121160b41002106200241003a0048200f417f6a210a0340200f2006460d02200241286a20066a201520066a220d2d00003a00002001200a3602042001200d41016a3602002002200641016a220d3a0048200a417f6a210a200d2106200d4120470d000b200241086a41186a2201200241286a41186a290300370300200241086a41106a2206200241286a41106a290300370300200241086a41086a220a200241286a41086a29030037030020022002290328370308200020113a0055200020103a0054200041d0006a20143602002000201336024c200041c8006a2012360200200041c4006a200b360200200041c0006a20093602002000200836023c200041386a2007360200200041346a2004360200200041306a2003360200200041286a201836020020002017370220200020163702182000200c3602102000200e3703082000200537030020002002290308370156200041de006a200a290300370100200041e6006a2006290300370100200041ee006a20012903003701000c050b2000420237031802402009450d00200810200b2004450d04200310200c040b0240200641ff0171450d00200241003a00480b2000420237031802402009450d00200810200b2004450d03200310200c030b2000420237031802402009450d00200810200b2004450d02200310200c020b2000420237031802402009450d00200810200b2004450d01200310200c010b200042023703182004450d00200310200b200241d0006a24000bfe0703017f017e057f230041106b220224002002410036020820024201370300200029030021030240024002400240024002404108101e2204450d0020024288808080800137020420022004360200200420033700002000290308210302400240024020022802042205200228020822046b4108490d00200441086a2106200228020021050c010b200441086a22062004490d01200541017422072006200720064b1b22074100480d010240024020050d002007101e21050c010b200228020020052007102221050b2005450d0320022007360204200220053602000b20022006360208200520046a2003370000200028026021070240024020022802042205200228020822046b4104490d00200441046a2106200228020021050c010b200441046a22062004490d01200541017422082006200820064b1b22084100480d010240024020050d002008101e21050c010b200228020020052008102221050b2005450d0420022008360204200220053602000b20022006360208200520046a2007360000200028026421072002200041ec006a280200220436020c2002410c6a200210630240024020022802042205200228020822066b2004490d00200228020021050c010b200620046a22082006490d01200541017422062008200620084b1b22064100480d010240024020050d002006101e21050c010b200228020020052006102221050b2005450d052002200636020420022005360200200228020821060b2002200620046a360208200520066a2007200410cd051a200041106a200210b4022000280270200041f8006a2802002002109105200041d8006a28020021050240024020022802042206200228020822046b4104490d00200228020021060c010b200441046a22072004490d01200641017422042007200420074b1b22044100480d010240024020060d002004101e21060c010b200228020020062004102221060b2006450d062002200436020420022006360200200228020821040b2002200441046a360208200620046a200536000020002903502103024020022802042206200228020822046b4108490d00200228020021060c070b200441086a22052004490d00200641017422042005200420054b1b22044100480d000240024020060d002004101e21060c010b200228020020062004102221060b02402006450d002002200436020420022006360200200228020821040c070b20044101102d000b1027000b41084101102d000b20074101102d000b20084101102d000b20064101102d000b20044101102d000b2002200441086a360208200620046a2003370000200041fc006a200210ca012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bb70a03017f017e057f230041106b22022400200241003602082002420137030020002903002103024002400240024002400240024002404108101e2204450d002002428880808080013702042002200436020020042003370000200028026021052002200041e8006a280200220436020c2002410c6a2002106302400240024020022802042206200228020822076b2004490d00200228020021060c010b200720046a22082007490d01200641017422072008200720084b1b22074100480d010240024020060d002007101e21060c010b200228020020062007102221060b2006450d032002200736020420022006360200200228020821070b2002200720046a360208200620076a2005200410cd051a200029030821030240024020022802042207200228020822046b4108490d00200228020021070c010b200441086a22062004490d01200741017422042006200420064b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d042002200436020420022007360200200228020821040b2002200441086a360208200720046a2003370000200028026c21060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d052002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200041106a200210b402200028027021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d062002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200028027421060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d072002200436020420022007360200200228020821040b2002200441046a360208200720046a2006360000200041d8006a28020021060240024020022802042207200228020822046b4104490d00200228020021070c010b200441046a22052004490d01200741017422042005200420054b1b22044100480d010240024020070d002004101e21070c010b200228020020072004102221070b2007450d082002200436020420022007360200200228020821040b2002200441046a360208200720046a200636000020002903502103024020022802042207200228020822046b4108490d00200228020021070c090b200441086a22062004490d00200741017422042006200420064b1b22044100480d000240024020070d002004101e21070c010b200228020020072004102221070b02402007450d002002200436020420022007360200200228020821040c090b20044101102d000b1027000b41084101102d000b20074101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b20044101102d000b2002200441086a360208200720046a2003370000200041f8006a200210ca012002280204210020012802002001280204200228020022042002280208100502402000450d00200410200b200241106a24000bed0201057f230041c0006b22022400024002404112101e2203450d00200341106a41002f00fb84463b0000200341086a41002900f38446370000200341002900eb844637000020034112412410222203450d0120032001370012200241206a41186a22044200370300200241206a41106a22054200370300200241206a41086a22064200370300200242003703202003411a200241206a1001200241186a2004290300370300200241106a2005290300370300200241086a200629030037030020022002290320370300200310200240024002402002412041e4fdc600410041001002417f460d004100210320024100360228200242083703202001200241206a109f0520022802282204450d02200020022903203702042000410c6a20043602000c010b200041a78bc600360204200041086a4118360200410121030b20002003360200200241c0006a24000f0b41bf8bc600412e41a888c6001028000b41124101102d000b41244101102d000bb50e05077f027e037f017e077f230041b0036b22022400024002400240024002400240024002404110101e2203450d00200341086a410029009787463700002003410029008f874637000020034110412010222203450d012003200137001020024198026a41186a2204420037030020024198026a41106a2205420037030020024198026a41086a2206420037030020024200370398022003411820024198026a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a20062903003703002002200229039802370368200310200240200241e8006a412041e4fdc600410041001002417f470d00200041d88ac60036020420004101360200200041086a41153602000c080b4110101e2203450d02200341086a410029009787463700002003410029008f874637000020034110412010222203450d032003200137001020024198026a41186a2204420037030020024198026a41106a2205420037030020024198026a41086a2206420037030020024200370398022003411820024198026a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a20062903003703002002200229039802370368200310202002410036029802200241e8006a412020024198026a100321072002280298022208417f460d052007450d052002200836022c2002200736022820024198026a200241286a10960520022802f8022203450d04200241d8016a41086a20024198026a41186a290300370300200241a8016a41086a200241c4026a290200370300200241a8016a41106a200241cc026a290200370300200241a8016a41186a200241d4026a290200370300200241c8016a200241dc026a290200370300200241d0016a200241e4026a280200360200200220022903a8023703d801200220022902bc023703a80120022903a0022109200229039802210a20022802b802210b20024188016a41086a20024198036a29030037030020024188016a41106a200241a0036a29030037030020024188016a41186a200241a8036a290300370300200220024190036a290300370388012002418c036a280200210420024188036a280200210520024184036a280200210620022902fc02210120022802f402210c20022802f002210d20022903e802210e2008450d06200710200c060b41104101102d000b41204101102d000b41104101102d000b41204101102d000b41ceb8c4004133200241a8016a41fcbfc4004184b9c400102e000b410021030b20024188026a41086a2207200241d8016a41086a29030037030020024198026a41086a2208200241a8016a41086a29030037030020024198026a41106a220f200241a8016a41106a29030037030020024198026a41186a2210200241a8016a41186a29030037030020024198026a41206a2211200241a8016a41206a29030037030020024198026a41286a2212200241a8016a41286a280200360200200220022903d80137038802200220022903a80137039802200241e8016a41086a221320024188016a41086a290300370300200241e8016a41106a221420024188016a41106a290300370300200241e8016a41186a221520024188016a41186a29030037030020022002290388013703e8010240024020030d0042002101200241086a41186a4200370300200241086a41106a4200370300200241086a41086a420037030020024200370308410021044101210341002105410021064100210d4200210e4100210b420021094200210a0c010b200241d8006a41086a2007290300370300200241286a41086a2008290300370300200241286a41106a200f290300370300200241286a41186a2010290300370300200241286a41206a2011290300370300200241286a41286a2012280200360200200241086a41086a2013290300370300200241086a41106a2014290300370300200241086a41186a201529030037030020022002290388023703582002200229039802370328200220022903e8013703080b200041106a2009370300200041086a200a370300200041186a2002290358370300200041206a200241d8006a41086a290300370300200041286a200b3602002000412c6a2002290328370200200041346a200241286a41086a2903003702002000413c6a200241286a41106a290300370200200041c4006a200241286a41186a290300370200200041cc006a200241286a41206a290300370200200041d4006a200241286a41286a280200360200200041fc006a2004360200200041f8006a2005360200200041f4006a2006360200200041ec006a2001370200200041e8006a2003360200200041e4006a200c360200200041e0006a200d360200200041d8006a200e3703002000410036020020004180016a200229030837030020004188016a200241086a41086a29030037030020004190016a200241086a41106a29030037030020004198016a200241086a41186a2903003703000b200241b0036a24000bd10803037f017e0a7f230041a0026b2202240020024180016a2001109b05024002402002280280014101470d002000200229028401370204200041013602000c010b200241f0006a41086a20024180016a41206a290300370300200241386a41086a200241b8016a290300370300200241386a41106a200241c0016a290300370300200241386a41186a200241c8016a290300370300200241386a41206a200241d0016a290300370300200241386a41286a200241d8016a290300370300200241386a41306a200241e0016a290300370300200220024180016a41186a290300370370200220024180016a41306a29030037033820024180016a41106a290300210120024180016a41286a2802002103200241ac016a28020021042002290388012105200241086a41086a20024180016a41f8006a290300370300200241086a41106a20024180026a290300370300200241086a41186a20024188026a290300370300200241086a41206a20024190026a290300370300200241086a41286a20024198026a2903003703002002200241f0016a290300370308200241ec016a2802002106200241e8016a280200210702400240024020030d004100210820024100360288012002420837038001200120024180016a109f05200228028801220941f8006c210a200228028401210b200228028001220c210d02400340200a450d01200d41d4006a210e200d41d5006a210f200a41887f6a210a200d41f8006a210d200f2d0000200e2d000072450d000b419085c60021080b02402009450d00200941f8006c210a200c41c0006a210d03400240200d41746a280200450d00200d41706a28020010200b0240200d280200450d00200d417c6a28020010200b200d41f8006a210d200a41887f6a220a0d000b0b0240200b450d00200c10200b20080d01200041106a2001370300200041086a2005370300200041186a20022903703703002000412c6a2004360200200041286a4100360200200041306a2002290338370300200041206a200241f0006a41086a290300370300200041386a200241386a41086a290300370300200041c0006a200241386a41106a290300370300200041c8006a200241386a41186a290300370300200041d0006a200241386a41206a290300370300200041d8006a200241386a41286a290300370300200041e0006a200241386a41306a290300370300200041ec006a2006360200200041e8006a200736020020004100360200200041f0006a2002290308370300200041f8006a200241086a41086a29030037030020004180016a200241086a41106a29030037030020004188016a200241086a41186a29030037030020004190016a200241086a41206a29030037030020004198016a200241086a41286a2903003703000c030b200041d689c6003602044114210d0c010b200020083602044135210d0b20004101360200200041086a200d36020002402006450d00200710200b2003450d002004450d00200310200b200241a0026a24000be01505097f017e097f017e077f230041b0046b2202240002400240024002400240024002400240410e101e2203450d00200341066a41002900e18846370000200341002900db88463700002003410e411c10222203450d012003200137000e20024190036a41186a2204420037030020024190036a41106a2205420037030020024190036a41086a2206420037030020024200370390032003411620024190036a1001200241e8016a41186a2004290300370300200241e8016a41106a2005290300370300200241e8016a41086a200629030037030020022002290390033703e801200310200240200241e8016a412041e4fdc600410041001002417f470d0041012107411421080c080b410e101e2203450d02200341066a41002900e18846370000200341002900db88463700002003410e411c10222203450d032003200137000e20024190036a41186a2209420037030020024190036a41106a2207420037030020024190036a41086a220a420037030020024200370390032003411620024190036a1001200241e8016a41186a2009290300370300200241e8016a41106a2007290300370300200241e8016a41086a200a29030037030020022002290390033703e801200310202002410036029003200241e8016a412020024190036a10032107200228029003220a417f460d052007450d052002200a3602b401200220073602b00120024190036a200241b0016a10940520022802f4032209450d04200241d0026a41086a20024190036a41186a290300370300200241a8026a41086a200241c0036a290300370300200241a8026a41106a200241c8036a290300370300200241a8026a41186a200241d0036a290300370300200241c8026a200241d8036a290300370300200220022903a0033703d002200220022903b8033703a802200229039803210b200228029403210c200228029003210820022802b003210320022802b403210d20024188026a41086a20024194046a29020037030020024188026a41106a2002419c046a29020037030020024188026a41186a200241a4046a29020037030020022002418c046a2902003703880220024188046a280200210e20024184046a280200210f20024180046a2802002110200241ac046a280200211120022903f803210120022802f003211220022802ec03211320022802e803211420022903e0032115200a450d06200710200c060b410e4101102d000b411c4101102d000b410e4101102d000b411c4101102d000b41ceb8c4004133200241a8026a41fcbfc4004184b9c400102e000b410021090b4108210a20024180036a41086a2207200241d0026a41086a29030037030020024190036a41086a2216200241a8026a41086a29030037030020024190036a41106a2217200241a8026a41106a29030037030020024190036a41186a2218200241a8026a41186a29030037030020024190036a41206a2219200241a8026a41206a290300370300200241e0026a41086a221a20024188026a41086a290300370300200241e0026a41106a221b20024188026a41106a290300370300200241e0026a41186a221c20024188026a41186a290300370300200220022903d00237038003200220022903a8023703900320022002290388023703e0020240024020090d004200210b20024190016a41186a420037030020024190016a41106a420037030020024190016a41086a420037030020024200370390014100210c410121094100210e4100210f4200210141002108410021124100211442002115410021030c010b200241d8016a41086a2007290300370300200241b0016a41086a2016290300370300200241b0016a41106a2017290300370300200241b0016a41186a2018290300370300200241b0016a41206a201929030037030020024190016a41086a201a29030037030020024190016a41106a201b29030037030020024190016a41186a201c29030037030020022002290380033703d80120022002290390033703b001200220022903e002370390012010210a0b20024180016a41086a200241d8016a41086a290300370300200241d8006a41086a200241b0016a41086a290300370300200241d8006a41106a200241b0016a41106a290300370300200241d8006a41186a200241b0016a41186a290300370300200241d8006a41206a200241b0016a41206a290300370300200220022903d80137038001200220022903b00137035820024190036a41186a20024190016a41186a29030037030020024190036a41106a20024190016a41106a29030037030020024190036a41086a20024190016a41086a290300370300200220022903900137039003410021070b200241c8006a41086a20024180016a41086a290300370300200241206a41086a200241d8006a41086a290300370300200241206a41106a200241d8006a41106a290300370300200241206a41186a200241d8006a41186a290300370300200241206a41206a200241d8006a41206a290300370300200241086a2006290300370300200241106a2005290300370300200241186a20042903003703002002200229038001370348200220022903583703202002200229039003370300024002402007450d00200041b089c60036020420004101360200200041086a20083602000c010b200241d8006a41086a200241c8006a41086a290300370300200241a8026a41086a200241206a41086a290300370300200241a8026a41106a200241206a41106a290300370300200241a8026a41186a200241206a41186a290300370300200241a8026a41206a200241206a41206a290300370300200241b0016a41086a200241086a290300370300200241b0016a41106a200241106a290300370300200241b0016a41186a200241186a29030037030020022002290348370358200220022903203703a802200220022903003703b0010240024020030d0020024190036a200b109c050240024002402002280290034101460d00200241bc036a2802002104200241b8036a28020021030240200241fc036a280200450d00200241f8036a28020010200b20030d010c020b2000200229029403370204200041013602000c030b2004450d00200310200b200041106a200b3703002000410c6a200c360200200041086a2008360200200041186a20022903583703002000412c6a200d360200200041286a4100360200200041306a20022903a802370300200041206a200241d8006a41086a290300370300200041386a200241a8026a41086a290300370300200041c0006a200241a8026a41106a290300370300200041c8006a200241a8026a41186a290300370300200041d0006a200241a8026a41206a29030037030020004180016a200e360200200041fc006a200f360200200041f8006a200a360200200041f0006a2001370300200041ec006a2009360200200041e8006a2012360200200041e4006a2013360200200041e0006a2014360200200041d8006a2015370300200041a4016a201136020020004184016a20022903b0013702002000418c016a200241b0016a41086a29030037020020004194016a200241b0016a41106a2903003702002000419c016a200241b0016a41186a290300370200200041003602000c020b200041c489c60036020420004101360200200041086a41123602000b02402001a7450d00200910200b02402003450d00200d450d00200310200b0240200e450d00200e4105742103200a41106a210003400240200041046a280200450d00200028020010200b200041206a2100200341606a22030d000b0b200f450d00200a10200b200241b0046a24000bf71b090a7f027e047f017e017f017e017f027e077f230041d0036b22042400024002400240024002404110101e2205450d00200541086a410029009787463700002005410029008f874637000020054110412010222205450d012005200137001020044180036a41186a2206420037030020044180036a41106a2207420037030020044180036a41086a2208420037030020044200370380032005411820044180036a1001200441c0016a41186a2006290300370300200441c0016a41106a2007290300370300200441c0016a41086a200829030037030020042004290380033703c0012005102020044100360220200441c0016a4120200441206a1003210520042802202206417f460d032005450d0320042006360284032004200536028003200441206a20044180036a1096052004280280012209450d0220044194016a280200210820044190016a2802002107200428028401210a2004280244210b2004280240210c02402006450d00200510200b200741016a210d0c040b41104101102d000b41204101102d000b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b410121094100210a4100210c410021084101210d0b4200210e200441206a41086a220542003703002004420037032041cf82c7004110200441206a100020044180036a41086a200529030037030020042004290320370380032004410036022020044180036a4110200441206a10032105024002400240024002400240024002400240024002400240024020042802202206417f460d002005450d0020064108490d012005290000210e200510200b20022802082206417f4c0d0120022802002107410121054101210202402006450d002006101e2202450d030b20022007200610cd0521021079210710a902210f200441186a2210200341186a290000370300200441106a2211200341106a290000370300200441086a2212200341086a2900003703002004200329000037030002402006450d002006101e2205450d040b20052002200610cd0521032004418c016a200636020020044188016a2006360200200441c0006a410036020020044198016a4100360200200441f8006a2007360200200441cc006a20042902e001370200200441d4006a200441e0016a41086a290200370200200441dc006a200441e0016a41106a290200370200200441e4006a200441e0016a41186a29020037020020042003360284012004200d20086a221336028001200420013703282004200e37032020044208370390012004200f370370200441b4016a2010290300370200200441ac016a2011290300370200200441a4016a20122903003702002004200429030037029c01410e101e2203450d04200341066a41002900e18846370000200341002900db88463700002003410e411c10222203450d052003200e37000e20044180036a41186a2205420037030020044180036a41106a2208420037030020044180036a41086a220d420037030020044200370380032003411620044180036a1001200441c0016a41186a2005290300370300200441c0016a41106a2008290300370300200441c0016a41086a200d29030037030020042004290380033703c0012003102020044120360284032004200441c0016a36028003200441206a20044180036a1098050240200428028801450d0020042802840110200b024020042802402203450d002004280244450d00200310200b02402004280298012203450d002003410574210520042802900141106a210303400240200341046a280200450d00200328020010200b200341206a2103200541606a22050d000b0b0240200428029401450d0020042802900110200b200441206a41086a220342003703002004420037032041cf82c7004110200441206a100020044180036a41086a200329030037030020042004290320370380032004410036022020044180036a4110200441206a100321030240024020042802202205417f470d00420121140c010b024020030d00420121140c010b20054108490d072003290000211420031020201442017c21140b200441206a41086a220342003703002004420037032041cf82c7004110200441206a100020044180036a41086a200329030037030020042004290320370380032004201437032020044180036a4110200441206a410810054110101e2203450d07200341086a410029009787463700002003410029008f874637000020034110412010222203450d082003200137001020044180036a41186a2205420037030020044180036a41106a2208420037030020044180036a41086a220d420037030020044200370380032003411820044180036a100120044180026a41186a200529030037030020044180026a41106a200829030037030020044180026a41086a200d290300370300200420042903800337038002200310202004410036022020044180026a4120200441206a1003211120042802202215417f460d0a2011450d0a200420153602a402200420113602a002200441206a200441a0026a1096052004280280012203450d09200441b0036a41086a200441206a41186a29030037030020044180036a41086a200441cc006a29020037030020044180036a41106a200441d4006a29020037030020044180036a41186a200441dc006a290200370300200441a0036a200441e4006a290200370300200441a8036a200441ec006a280200360200200420042903303703b0032004200429024437038003200429032821162004290320211420042802402105200441e0026a41086a200441a0016a290300370300200441e0026a41106a200441a8016a290300370300200441e0026a41186a200441b0016a290300370300200420044198016a2903003703e00220044194016a280200211020044190016a28020021172004418c016a280200210d2004290284012118200428027c211220042802782108200429037021192015450d0b201110200c0b0b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b102c000b20064101102d000b20064101102d000b410e4101102d000b411c4101102d000b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b41104101102d000b41204101102d000b41ceb8c4004133200441e0016a41fcbfc4004184b9c400102e000b410021030b200441c0036a41086a2211200441b0036a41086a290300370300200441206a41086a221520044180036a41086a290300370300200441206a41106a221a20044180036a41106a290300370300200441206a41186a221b20044180036a41186a290300370300200441206a41206a221c20044180036a41206a290300370300200441206a41286a221d20044180036a41286a280200360200200420042903b0033703c0032004200429038003370320200441e0016a41086a221e200441e0026a41086a290300370300200441e0016a41106a221f200441e0026a41106a290300370300200441e0016a41186a2220200441e0026a41186a290300370300200420042903e0023703e0010240024020030d0042002118200441c0016a41186a4200370300200441c0016a41106a4200370300200441c0016a41086a4200370300200442003703c00141002110410121114100210d4101210341002108420021194100210542002116420021140c010b200441d0026a41086a2011290300370300200441a0026a41086a2015290300370300200441a0026a41106a201a290300370300200441a0026a41186a201b290300370300200441a0026a41206a201c290300370300200441a0026a41286a201d280200360200200441c0016a41086a201e290300370300200441c0016a41106a201f290300370300200441c0016a41186a2020290300370300200420042903c0033703d002200420042903203703a002200420042903e0013703c001201741016a21110b200441206a41186a2215200441d0026a41086a290300370300200441206a41206a2005360200200441c4006a20042903a002370200200441206a412c6a200441a0026a41086a290300370200200441206a41346a200441a0026a41106a290300370200200441206a413c6a200441a0026a41186a290300370200200441206a41c4006a200441a0026a41206a290300370200200441ec006a200441c8026a2802003602002004201637032820042014370320200420042903d00237033020044184016a2018370200200441206a41d8006a2008360200200441a0016a200441c0016a41086a290300370300200441a8016a200441c0016a41106a290300370300200441b0016a200441c0016a41186a290300370300200420103602940120042011360290012004200d36028c0120042003360280012004201236027c20042019370370200420042903c001370398012004412036028403200420044180026a36028003200441206a20044180036a10990502402004280280012203450d000240200428028401450d00200310200b20042802402203450d002004280244450d00200310200b20004200370310200020013703082000200e370300200041186a4200370300200041206a41003602002000412c6a2004290220370200200041346a200441206a41086a2902003702002000413c6a200441206a41106a290200370200200041c4006a2015290200370200200041f8006a410036020020004208370370200041ec006a2006360200200041e8006a20063602002000200236026420002013360260200041d8006a20073602002000200f37035020004194016a200441186a2903003702002000418c016a200441106a29030037020020004184016a200441086a2903003702002000200429030037027c0240200a450d00200910200b0240200b450d00200c450d00200c10200b200441d0036a24000b970d060b7f017e027f027e057f017e23004190026b22022400024002400240024002404112101e2203450d00200341106a41002f00fb84463b0000200341086a41002900f38446370000200341002900eb844637000020034112412410222203450d012003200037001220024198016a41186a2204420037030020024198016a41106a2205420037030020024198016a41086a2206420037030020024200370398012003411a20024198016a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a20062903003703002002200229039801370368200310202002410036029801200241e8006a412020024198016a100321032002280298012207417f460d032003450d032002200736020c2002200336020820024198016a200241086a10970520022903b00122004202510d022002200241e0016a2903003703582002200241e6016a29010037015e200241d8016a2802002105200241d0016a2802002108200241c8016a2802002109200241c0016a280200210a20022802dc01210420022802d401210620022802cc01210b20022802c401210c20022903b801210d20022802ac01210e20022802a801210f20022903a00121102002290398012111200241d0006a20024186026a290100370300200241c8006a200241fe016a290100370300200241c0006a200241f6016a290100370300200220022901ee0137033820022f018e0221122007450d04200310200c040b41124101102d000b41244101102d000b41ceb8c4004133200241386a41fcbfc4004184b9c400102e000b420221000b20024198016a41086a2203200241386a41086a29030037030020024198016a41106a2207200241386a41106a29030037030020024198016a41186a2213200241386a41186a29030037030020022002290358370388012002200229015e37018e0120022002290338370398010240024020004202520d0042002110200241086a41186a4200370300200241086a41106a4200370300200241086a41086a420037030020024200370308200242003703282002420037012e4100210b41012109410021084100210441002105410121064100210f42002111420021000c010b200241086a41086a2003290300370300200241086a41106a2007290300370300200241086a41186a20132903003703002002200229018e0137012e200220022903880137032820022002290398013703080b20024198016a41086a2207200241086a41086a29030037030020024198016a41106a2213200241086a41106a29030037030020024198016a41186a2214200241086a41186a290300370300200220022903283703682002200229012e37016e200220022903083703980102400240024002400240024020012802082203200141046a280200470d00200341016a22152003490d02200341017422162015201620154b1b2215ad42f8007e2217422088a70d022017a722164100480d020240024020030d002016101e21030c010b2001280200200341f8006c2016102221030b2003450d0120012003360200200141046a2015360200200128020821030b2001280200200341f8006c6a2203200636023c200320093602302003200c36022c200320003703182003200e360214200320103703082003201137030020032002290368370348200341c4006a2004360200200341c0006a2005360200200341386a2008360200200341346a200b360200200341286a200a360200200341206a200d370300200341106a200f360200200341ce006a200229016e370100200320123b01762003200229039801370156200341de006a2007290300370100200341e6006a2013290300370100200341ee006a20142903003701002001200128020841016a360208024020004201520d004112101e2203450d03200341106a41002f00fb84463b0000200341086a41002900f38446370000200341002900eb844637000020034112412410222203450d042003200d37001220024198016a41186a2204420037030020024198016a41106a2205420037030020024198016a41086a2206420037030020024200370398012003411a20024198016a1001200241e8006a41186a2004290300370300200241e8006a41106a2005290300370300200241e8006a41086a2006290300370300200220022903980137036820031020200241e8006a412041e4fdc600410041001002417f460d05200d2001109f050b20024190026a24000f0b20164108102d000b1027000b41124101102d000b41244101102d000b41888ac60041d00041a888c6001028000b02000b130020004101360204200041dc93c6003602000b3400200041dd97c60036020420004100360200200041146a4107360200200041106a41e497c600360200200041086a42073702000b2f01017f02404101101e22020d0041014101102d000b200042818080801037020420002002360200200241003a00000b130020004101360204200041f4a4c6003602000b930201057f230041106b22022400024002404111101e2203450d0020024211370204200220033602002002410d36020c2002410c6a20021063024020022802042204200228020822036b410d490d002003410d6a2105200228020021040c020b02402003410d6a22052003490d00200441017422062005200620054b1b22064100480d000240024020040d002006101e21040c010b200228020020042006102221040b02402004450d0020022006360204200220043602000c030b20064101102d000b1027000b41114101102d000b20022005360208200420036a220341002900caa646370000200341056a41002900cfa64637000020002002290300370200200041086a2002280208360200200241106a24000bc904010b7f230041106b220324002003420037030820012002200341086a101b20032003290308370300200120026a21040240024002400240200241086a220520024f0d00200341086a2106200321074100210841002105410121094100210a0340200841017421022006200741016a220b6b210c034020072d00002107024002400240024020082005470d00200c2105024002400240200a41ff01710e03010200010b200420016b21050c010b417f200c200420016b6a22052005200c491b21050b2008417f200541016a220d200d2005491b6a22052008490d0720022005200220054b1b22054100480d070240024020080d002005101e21090c010b200920082005102221090b2009450d010b200920086a20073a00000240024002400240200a41ff01710e03010300010b20042001460d010c050b0240200b2006460d004100210a0c040b20042001470d040b200841016a21080c090b4101210a200b2006470d01200841016a21080c080b20054101102d000b200841016a2108200b21070c020b200841016a21084102210a200241026a21022001220741016a21010c000b0b0b410121092005450d0120054100480d002005101e22090d0120054101102d000b1027000b410021080340200920086a200320086a2d00003a0000200841016a22084108470d000b024020020d00410821080c010b200920086a210a410021080340200a20086a200120086a2d00003a00002002200841016a2208470d000b200420016b41086a21080b200020083602082000200536020420002009360200200341106a24000b1300200041013602042000419ca7c6003602000b3400200041a5a8c60036020420004100360200200041146a4103360200200041106a41b0a8c600360200200041086a420a3702000bba1e01097f230041d0006b22022400024002400240024002400240024002404118101e2203450d00200341106a410029008d8e46370000200341086a41002900858e46370000200341002900fd8d4637000020034118413010222203450d0120032000370018200241286a41186a22044200370300200241286a41106a22054200370300200241286a41086a220642003703002002420037032820034120200241286a1001200241086a41186a2004290300370300200241086a41106a2005290300370300200241086a41086a200629030037030020022002290328370308200310202002410036023020024201370328200128024021062002200141c8006a280200220336024c200241cc006a200241286a106302400240200228022c2205200228023022046b2003490d00200228022821050c010b200420036a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200228022820052004102221050b2005450d032002200436022c20022005360228200228023021040b2002200420036a360230200520046a2006200310cd051a200128024c21062002200141d4006a280200220336024c200241cc006a200241286a106302400240200228022c2205200228023022046b2003490d00200228022821050c010b200420036a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200228022820052004102221050b2005450d042002200436022c20022005360228200228023021040b2002200420036a360230200520046a2006200310cd051a200128025821062002200141e0006a280200220336024c200241cc006a200241286a106302400240200228022c2205200228023022046b2003490d00200228022821050c010b200420036a22072004490d08200541017422042007200420074b1b22044100480d080240024020050d002004101e21050c010b200228022820052004102221050b2005450d052002200436022c20022005360228200228023021040b2002200420036a360230200520046a2006200310cd051a2001280264210502400240200228022c2204200228023022036b4104490d00200228022821040c010b200341046a22062003490d08200441017422032006200320064b1b22034100480d080240024020040d002003101e21040c010b200228022820042003102221040b2004450d062002200336022c20022004360228200228023021030b2002200341046a360230200420036a2005360000200129030021000240200228022c2204200228023022036b4108490d00200228022821040c070b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200228022820042003102221040b02402004450d002002200336022c20022004360228200228023021030c070b20034101102d000b41184101102d000b41304101102d000b20044101102d000b20044101102d000b20044101102d000b20034101102d000b2002200341086a360230200420036a2000370000024020012d0008220341024b0d00024002400240024002400240024020030e03000102000b02400240200228022c20022802302203460d00200228022821040c010b200341016a22042003490d08200341017422052004200520044b1b22054100480d080240024020030d002005101e21040c010b200228022820032005102221040b2004450d032002200536022c20022004360228200228023021030b2002200341016a360230200420036a41003a0000200129031021000240200228022c2204200228023022036b4108490d00200228022821040c060b200341086a22052003490d07200441017422032005200320054b1b22034100480d070240024020040d002003101e21040c010b200228022820042003102221040b02402004450d002002200336022c20022004360228200228023021030c060b20034101102d000b0240200228022c20022802302203460d00200228022821040c040b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022820032005102221040b02402004450d002002200536022c20022004360228200228023021030c040b20054101102d000b0240200228022c20022802302203460d00200228022821040c020b200341016a22042003490d05200341017422052004200520044b1b22054100480d050240024020030d002005101e21040c010b200228022820032005102221040b02402004450d002002200536022c20022004360228200228023021030c020b20054101102d000b20054101102d000b2002200341016a360230200420036a41023a00000c020b2002200341016a360230200420036a41013a0000200141096a200241286a10ca010c010b2002200341086a360230200420036a20003700000b20012d007421050240024002400240024002400240200228022c20022802302203460d00200228022821040c010b200341016a22042003490d06200341017422062004200620044b1b22064100480d060240024020030d002006101e21040c010b200228022820032006102221040b2004450d012002200636022c20022004360228200228023021030b2002200341016a360230200420036a20053a0000024020012903304201510d000240200228022c20022802302203460d00200228022821040c050b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022820032005102221040b02402004450d002002200536022c20022004360228200228023021030c050b20054101102d000b02400240200228022c20022802302203460d00200228022821040c010b200341016a22042003490d06200341017422052004200520044b1b22054100480d060240024020030d002005101e21040c010b200228022820032005102221040b2004450d022002200536022c20022004360228200228023021030b2002200341016a360230200420036a41013a0000200129033821000240200228022c2204200228023022036b4108490d00200228022821040c030b200341086a22052003490d05200441017422032005200320054b1b22034100480d050240024020040d002003101e21040c010b200228022820042003102221040b02402004450d002002200336022c20022004360228200228023021030c030b20034101102d000b20064101102d000b20054101102d000b2002200341086a360230200420036a20003700000c010b2002200341016a360230200420036a41003a00000b200141f5006a200241286a10ca0120014195016a200241286a10ca012002200141f0006a220628020036024c200241cc006a200241286a1063200141e8006a28020021030240200141ec006a2802002204450d0020042105034020032802b80121032005417f6a22050d000b03402004417f6a22040d000b0b024020062802002208450d0002400240024002400240024020032f01060d0002400240200328020022040d004100210541002103410021040c010b20032f01042103410121050b0240200320042f0106490d000340200541016a210520042f01042203200428020022042f01064f0d000b0b200420034104746a41086a2109200341027420046a41bc016a28020021034100210602402005417f6a2204450d00034020032802b80121032004417f6a22040d000b0b20092d00080e0404030201040b41012106200341086a22092d00080e0403020100030b410321050c030b410221050c020b410121050c010b410021050b200220053a004c0240024002400240200228022c20022802302204460d00200228022821070c010b200441016a22072004490d042004410174220a2007200a20074b1b220a4100480d040240024020040d00200a101e21070c010b20022802282004200a102221070b2007450d012002200a36022c20022007360228200228023021040b2002200441016a360230200720046a20053a0000200929030021000240200228022c2205200228023022046b4108490d00200228022821050c020b200441086a22072004490d03200541017422042007200420074b1b22044100480d030240024020050d002004101e21050c010b200228022820052004102221050b02402005450d002002200436022c20022005360228200228023021040c020b20044101102d000b200a4101102d000b2002200441086a360230200520046a20003700002008417f6a2209450d000340024002400240024002400240200620032f0106490d0002400240200328020022040d004100210541002103410021040c010b20032f01042103410121050b0240200320042f0106490d000340200541016a210520042f01042203200428020022042f01064f0d000b0b200420034104746a41086a2108200341027420046a41bc016a28020021034100210602402005417f6a2204450d00034020032802b80121032004417f6a22040d000b0b20082d00080e0404030201040b20064104742104200641016a2106200320046a41086a22082d00080e0403020100030b410321050c030b410221050c020b410121050c010b410021050b200220053a004c0240024002400240200228022c20022802302204460d00200228022821070c010b200441016a22072004490d052004410174220a2007200a20074b1b220a4100480d050240024020040d00200a101e21070c010b20022802282004200a102221070b2007450d012002200a36022c20022007360228200228023021040b2002200441016a360230200720046a20053a0000200829030021000240200228022c2205200228023022046b4108490d00200228022821050c020b200441086a22072004490d04200541017422042007200420074b1b22044100480d040240024020050d002004101e21050c010b200228022820052004102221050b02402005450d002002200436022c20022005360228200228023021040c020b20044101102d000b200a4101102d000b2002200441086a360230200520046a20003700002009417f6a22090d000b0b200228022c2103200241086a4120200228022822042002280230100502402003450d00200410200b0240200141c4006a280200450d00200128024010200b0240200141d0006a280200450d00200128024c10200b0240200141dc006a280200450d00200128025810200b2001280268200141ec006a280200200141f0006a28020010f502200241d0006a24000f0b1027000b340020004192b1c60036020420004100360200200041146a4103360200200041106a41a8b1c600360200200041086a42163702000b3001017f02404108101e22020d0041084101102d000b20004288808080800137020420002002360200200242013700000b130020004104360204200041e8b5c6003602000b340020004183b9c60036020420004100360200200041146a410f360200200041106a4190b9c600360200200041086a420a3702000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024180103600000b3101017f02404104101e22020d0041044101102d000b20004284808080c0003702042000200236020020024180083600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241283600000b3001017f02404104101e22020d0041044101102d000b20004284808080c00037020420002002360200200241053600000bea0101057f230041106b2202240020024100360208200242013703002002410136020c2002410c6a200210630240024020022802042203200228020822046b4108490d00200441086a2105200228020021030c010b0240200441086a22052004490d00200341017422062005200620054b1b22064100480d000240024020030d002006101e21030c010b200228020020032006102221030b02402003450d0020022006360204200220033602000c020b20064101102d000b1027000b20022005360208200320046a4200370000200041086a200228020836020020002002290300370200200241106a24000bb20903067f017e047f230041206b220224002001280204412b200128020022031b2104200341a8d3c60020031b2105024002400240024020030d002000200536020420004101360200200041086a20043602000c010b200141086a2802002103200241106a41086a22064200370300200242003703104191cdc600411a200241106a1000200241086a2006290300370300200220022903103703002002410036021020024110200241106a100321060240024002400240024020022802102207417f470d00410521070c010b024020060d00410521070c010b20074104490d0120062800002107200610200b0240200720034d0d004110210641ddd2c60021030c030b200241106a41086a220642003703002002420037031041abcdc600411a200241106a1000200241086a2006290300370300200220022903103703002002410036021020024110200241106a100321060240024020022802102207417f470d00412821070c010b024020060d00412821070c010b20074104490d0220062800002107200610200b200720034f0d04410f210641edd2c60021030c020b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b2000200336020420004101360200200041086a20063602002004450d00200510200b0240200128020c2200450d00200141106a280200450d00200010200b20012802182200450d012001411c6a280200450d01200010200c010b02400240024002402001411c6a2902004200200128021822071b2208422088a72206417f4c0d004101210902402006450d002006101e2209450d020b20092007410120071b220a200610cd05210b200241106a41086a220742003703002002420037031041e2cdc600411d200241106a1000200241086a2007290300370300200220022903103703002002410036021020024110200241106a100321070240024020022802102209417f470d0041801021090c010b024020070d0041801021090c010b20094104490d0320072800002109200710200b02402008a7450d00200a10200b02400240200128020c22070d0041012107420021084100210c0c010b200141106a2902002208422088a7210c0b200241106a41086a220142003703002002420037031041c5cdc600411d200241106a1000200241086a2001290300370300200220022903103703002002410036021020024110200241106a10032101024002402002280210220a417f470d00418008210a0c010b024020010d00418008210a0c010b200a4104490d042001280000210a200110200b0240200a200c490d002000200536020420004100360200200041246a20062009200920064b1b360200200041206a20063602002000411c6a200b360200200041146a2008370200200041106a20073602002000410c6a2003360200200041086a20043602000c050b200041fcd2c60036020420004101360200200041086a411336020002402008a7450d00200710200b02402006450d00200b10200b2004450d04200510200c040b102c000b20064101102d000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b41ceb8c4004133200241106a41fcbfc4004184b9c400102e000b200241206a24000bef1907017f017e0a7f017e027f017e037f230041e0026b2203240042002104200341f0006a41086a2205420037030020034200370370418fd3c6004119200341f0006a1000200341a8026a41086a2005290300370300200320032903703703a80220034100360270200341a8026a4110200341f0006a10032105024002400240024002400240024002400240024002400240024002400240024020032802702206417f460d002005450d0020064108490d0120052900002104200510200b20012802082207417f4c0d01200128020021080240024020070d00410121050c010b2007101e2205450d030b20052008200710cd052109200141146a280200220a417f4c0d01200128020c210502400240200a0d00410121060c010b200a101e2206450d040b20062005200a10cd05210b200141206a280200220c417f4c0d012001280218210102400240200c0d00410121050c010b200c101e2205450d050b20052001200c10cd05210d1079210e10a902210f200341c8006a41206a200241206a290300370300200341c8006a41186a200241186a290300370300200341c8006a41106a200241106a290300370300200341c8006a41086a200241086a290300370300200341286a41086a200041086a2201290000370300200341286a41106a200041106a2205290000370300200341286a41186a200041186a22062900003703002003200229030037034820032000290000370328200341086a41186a2006290000370300200341086a41106a2005290000370300200341086a41086a2001290000370300200320002900003703084123101e2201450d05200141002900958e463700002001411f6a41002800b48e46360000200141186a41002900ad8e46370000200141106a41002900a58e46370000200141086a410029009d8e46370000200342a3808080b0043702cc02200320013602c8022000200341c8026a10ca0120032802d002210120032802c8022102200341f0006a41186a22054200370300200341f0006a41106a22064200370300200341f0006a41086a221042003703002003420037037020022001200341f0006a1001200341a8026a41186a2005290300370300200341a8026a41106a2006290300370300200341a8026a41086a2010290300370300200320032903703703a802024020032802cc02450d0020032802c80210200b20034100360270200341a8026a4120200341f0006a1003210120032802702202417f460d072001450d07200320023602cc02200320013602c802200341f0006a200341c8026a10ec0120032802702211450d062003290274211202402002450d00200110200b200320113602c802200320123702cc02200341c8026a21012012422088a722022012a72213470d090c080b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b102c000b20074101102d000b200a4101102d000b200c4101102d000b41234101102d000b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b41002102200341003602d002200342083703c80241082111200341c8026a21010b200141046a28020022132002470d00200241016a22052002490d05200241017422062005200620054b1b221341ffffffff01712013470d05201341037422054100480d050240024020020d002005101e21020c010b200128020020024103742005102221020b2002450d0120012002360200200141046a201336020020032802d002210220032802c80221110b200128020020024103746a20043703002003200241016a22013602d0020240024020110d00200341a8026a412010040c010b2003410036027820034201370370200320013602d802200341d8026a200341f0006a10630240024020010d002003280278211420032802742110200328027021020c010b4100200328027822016b2105200241037441086a2115200328027421102011210603402006290300211202400240201020056a4108490d00200328027021020c010b200141086a22022001490d08201041017422142002201420024b1b22144100480d080240024020100d002014101e21020c010b200328027020102014102221020b02402002450d002003201436027420032002360270201421100c010b20144101102d000b200641086a21062003200141086a2214360278200220016a2012370000200541786a210520142101201541786a22150d000b0b200341a8026a412020022014100502402010450d00200210200b2013450d00201110200b0240024002404129101e2201450d00200141002900b88e46370000200141286a41002d00e08e463a0000200141206a41002900d88e46370000200141186a41002900d08e46370000200141106a41002900c88e46370000200141086a41002900c08e46370000200342a980808090053702cc02200320013602c8022000200341c8026a10ca0120032802d002210120032802c8022102200341f0006a41186a22054200370300200341f0006a41106a22064200370300200341f0006a41086a221042003703002003420037037020022001200341f0006a1001200341a8026a41186a2005290300370300200341a8026a41106a2006290300370300200341a8026a41086a2010290300370300200320032903703703a802024020032802cc02450d0020032802c80210200b20034100360270200341a8026a4120200341f0006a1003210120032802702202417f460d022001450d02200320023602cc02200320013602c802200341f0006a200341c8026a10ec0120032802702200450d012003290274211202402002450d00200110200b200320003602c802200320123702cc02200341c8026a21012012422088a722022012a72211470d050c040b41294101102d000b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b41002102200341003602d002200342083703c80241082100200341c8026a21010c010b20054108102d000b200141046a28020022112002470d00200241016a22052002490d02200241017422062005200620054b1b221141ffffffff01712011470d02201141037422054100480d020240024020020d002005101e21020c010b200128020020024103742005102221020b2002450d0120012002360200200141046a201136020020032802d002210220032802c80221000b200128020020024103746a20043703002003200241016a22013602d0020240024020000d00200341a8026a412010040c010b2003410036027820034201370370200320013602d802200341d8026a200341f0006a10630240024020010d002003280278211420032802742110200328027021020c010b4100200328027822016b2105200241037441086a2115200328027421102000210603402006290300211202400240201020056a4108490d00200328027021020c010b200141086a22022001490d05201041017422142002201420024b1b22144100480d050240024020100d002014101e21020c010b200328027020102014102221020b02402002450d002003201436027420032002360270201421100c010b20144101102d000b200641086a21062003200141086a2214360278200220016a2012370000200541786a210520142101201541786a22150d000b0b200341a8026a412020022014100502402010450d00200210200b2011450d00200010200b200341f0006a41106a200341c8006a41086a290300370300200341f0006a41186a200341c8006a41106a290300370300200341f0006a41206a200341c8006a41186a29030037030020034198016a200341c8006a41206a290300370300200341d0016a200c360200200341cc016a200c360200200341c4016a200a360200200341c0016a200a360200200341b8016a2007360200200341b4016a20073602002003200f37037020032003290348370378200341908cc5003602d8012003200e3602d4012003200d3602c8012003200b3602bc01200320093602b001200342003703a001200341e4016a41003a0000200341dc016a4200370200200341ed016a200341286a41086a290300370000200341f5016a200341286a41106a290300370000200341fd016a200341286a41186a2903003700002003418d026a200341086a41086a29030037000020034195026a200341086a41106a2903003700002003419d026a200341086a41186a290300370000200320032903283700e5012003200329030837008502200341a7026a200341ca026a2d00003a0000200320032f00c8023b00a5022004200341f0006a10a90502400240024020070d00410121010c010b2007101e2201450d010b20012008200710cd052101200320073602782003200736027420032001360270200341f0006a200410b805200341f0006a41086a2201420037030020034200370370418fd3c6004119200341f0006a1000200341a8026a41086a2001290300370300200320032903703703a8022003200442017c370370200341a8026a4110200341f0006a41081005200341e0026a240020040f0b20074101102d000b20054108102d000b1027000bea0a030c7f017e087f23004190046b22032400200341d8026a200110a703024002402003290388034202520d0041c58cc6002104411821020c010b20034198026a41086a2204200341e4026a29020037030020034198026a41106a2205200341ec026a29020037030020034198026a41186a2206200341f4026a29020037030020034198026a41206a2207200341fc026a29020037030020034198026a41286a220820034184036a29020037030020034198026a41306a22092003418c036a29020037030020034198026a41386a220a20034194036a280200360200200320032902dc023703980220034198036a280200210b200341a0036a280200210c200341a8036a280200210d200341b0036a280200210e200341b8036a290300210f200341c0036a2802002110200341c8036a280200211120032802d8022112200328029c03211320032802a403211420032802b403211520032802c4032116200341d0016a200341cc036a41c40010cd051a20034190016a41086a2217200429030037030020034190016a41106a2204200529030037030020034190016a41186a2205200629030037030020034190016a41206a2206200729030037030020034190016a41286a2207200829030037030020034190016a41306a2208200929030037030020034190016a41386a2209200a280200360200200320032903980237039001200341c8006a200341d0016a41c40010cd051a200341086a41086a2017290300370300200341086a41106a2004290300370300200341086a41186a2005290300370300200341086a41206a2006290300370300200341086a41286a2007290300370300200341086a41306a2008290300370300200341086a41386a20092802003602002003200329039001370308200341d0016a200341c8006a41c40010cd051a200241086a2802002104200341d8026a41086a22054200370300200342003703d80241c5cdc600411d200341d8026a1000200341c8006a41086a2005290300370300200320032903d802370348200341003602d802200341c8006a4110200341d8026a100321050240024002400240024020032802d8022206417f470d0041800821060c010b024020050d0041800821060c010b20064104490d0120052800002106200510200b20062004490d010c020b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b02402013450d00200b10200b0240200d450d00201410200b02402015450d00200e10200b20102016201110f50241fcd2c6002104411321020c010b024002402004417f4c0d00200228020021020240024020040d00410121050c010b2004101e2205450d020b20052002200410cd0521020240200d450d00201410200b200341d8026a41106a2001370300200341d8026a41086a41023a00002003410d3a00d802200341d8026a1077200341e4026a200341086a41086a290300370200200341ec026a200341086a41106a290300370200200341f4026a200341206a290300370200200341fc026a200341286a29030037020020034184036a200341306a2903003702002003418c036a200341386a29030037020020034194036a200341c0006a280200360200200341c8036a2011360200200341c4036a2016360200200341b8036a200f370300200341b4036a2015360200200341ac036a2004360200200341a8036a2004360200200341a0036a200c360200200341d8026a41c4006a2013360200200320123602d802200320032903083702dc02200320103602c0032003200e3602b003200320023602a4032003200b36029803200341cc036a200341d0016a41c40010cd051a2001200341d8026a10a905410021040c020b102c000b20044101102d000b200020023602042000200436020020034190046a24000b890501077f23004190046b22032400200341d8026a200110a703024002402003290388034202520d0041012104411821050c010b20032802d802210520034184026a200341d8026a41047241d40010cd051a200341b0036a280200210620032802b4032107200341b0016a200341bc036a41d40010cd051a410021040b200341d8006a20034184026a41d40010cd051a200341046a200341b0016a41d40010cd051a024002402004450d0041c58cc60021040c010b20034184026a200341d8006a41d40010cd051a200341b0016a200341046a41d40010cd051a02400240024020022802082204417f4c0d00200228020021020240024020040d00410121080c010b2004101e2208450d020b20082002200410cd052109200341d8026a41086a22024200370300200342003703d80241e2cdc600411d200341d8026a1000200341d8006a41086a2002290300370300200320032903d802370358200341003602d802200341d8006a4110200341d8026a100321080240024020032802d8022202417f470d0041801021020c010b024020080d0041801021020c010b20024104490d0320082800002102200810200b2004200220042002491b210202402007450d00200610200b200341e8026a2001370300200341e0026a41013a00002003410d3a00d802200341d8026a1077200320053602d802200341d8026a41047220034184026a41d40010cd051a200341b8036a2002360200200341b4036a2004360200200320093602b003200341bc036a200341b0016a41d40010cd051a2001200341d8026a10a905410021040c030b102c000b20044101102d000b41ceb8c4004133200341d8026a41fcbfc4004184b9c400102e000b200020053602042000200436020020034190046a24000bf213030c7f017e0a7f230041d0046b2203240020034198036a200110a70302400240024020032903c8034202520d0041c58cc6002104411821050c010b200341d8026a41086a2204200341a4036a290200370300200341d8026a41106a2205200341ac036a290200370300200341d8026a41186a2206200341b4036a290200370300200341d8026a41206a2207200341bc036a290200370300200341d8026a41286a2208200341c4036a290200370300200341d8026a41306a2209200341cc036a290200370300200341d8026a41386a220a200341d4036a2802003602002003200329029c033703d802200341d8036a280200210b200341e0036a280200210c200341e8036a280200210d200341f0036a280200210e200341f8036a290300210f20034180046a280200211020034188046a2802002111200328029803211220032802dc03211320032802e403211420032802ec03211520032802f4032116200328028404211720034190026a2003418c046a41c40010cd051a200341d0016a41086a22182004290300370300200341d0016a41106a22042005290300370300200341d0016a41186a22052006290300370300200341d0016a41206a22062007290300370300200341d0016a41286a22072008290300370300200341d0016a41306a22082009290300370300200341d0016a41386a2209200a280200360200200320032903d8023703d00120034188016a20034190026a41c40010cd051a200341c8006a41086a2018290300370300200341c8006a41106a2004290300370300200341c8006a41186a2005290300370300200341c8006a41206a2006290300370300200341c8006a41286a2007290300370300200341c8006a41306a2008290300370300200341c8006a41386a2009280200360200200320032903d001370348200320034188016a41c40010cd052104200241086a280200210520044198036a41086a2206420037030020044200370398034191cdc600411a20044198036a100020044190026a41086a2006290300370300200420042903980337039002200441003602980320044190026a411020044198036a1003210602400240024002400240024002400240024002402004280298032207417f470d00410521070c010b024020060d00410521070c010b20074104490d0120062800002107200610200b0240200720054d0d004110210541ddd2c60021040c040b20044198036a41086a22064200370300200442003703980341abcdc600411a20044198036a100020044190026a41086a2006290300370300200420042903980337039002200441003602980320044190026a411020044198036a10032106024002402004280298032207417f470d00412821070c010b024020060d00412821070c010b20074104490d0220062800002107200610200b200720054f0d02410f210541edd2c60021040c030b41ceb8c400413320044198036a41fcbfc4004184b9c400102e000b41ceb8c400413320044198036a41fcbfc4004184b9c400102e000b024002404112101e2206450d00200641106a41002f00f8cf463b0000200641086a41002900f0cf46370000200641002900e8cf4637000020044292808080a00237028c01200420063602880120022802002109200420053602980320044198036a20044188016a10630240200428028c01220820042802900122076b2005490d0020042802880121060c020b200720056a22062007490d042008410174220a2006200a20064b1b220a4100480d040240024020080d00200a101e21060c010b2004280288012008200a102221060b02402006450d002004200a36028c012004200636028801200a21080c020b200a4101102d000b41124101102d000b2004200720056a220a36029001200620076a2009200510cd051a20044198036a41186a2207420037030020044198036a41106a2218420037030020044198036a41086a2219420037030020044200370398032006200a20044198036a100120044190026a41186a200729030037030020044190026a41106a201829030037030020044190026a41086a201929030037030020042004290398033703900202402008450d00200610200b20044190026a412041e4fdc600410041001002417f460d014190cec6002104411921050b02402013450d00200b10200b0240200d450d00201410200b02402016450d00200e10200b20102017201110f5020c040b4112101e2206450d01200641106a41002f00f8cf463b0000200641086a41002900f0cf46370000200641002900e8cf4637000020044292808080a00237028c0120042006360288012004200c3602980320044198036a20044188016a10630240200428028c01220820042802900122076b200c490d0020042802880121060c030b2007200c6a22062007490d002008410174220a2006200a20064b1b220a4100480d000240024020080d00200a101e21060c010b2004280288012008200a102221060b02402006450d002004200a36028c012004200636028801200a21080c030b200a4101102d000b1027000b41124101102d000b20042007200c6a220a36029001200620076a200b200c10cd051a20044198036a41186a2207420037030020044198036a41106a2218420037030020044198036a41086a220c420037030020044200370398032006200a20044198036a100120044190026a41186a200729030037030020044190026a41106a201829030037030020044190026a41086a200c29030037030020042004290398033703900202402008450d00200610200b20044190026a41201004024002402005417f4c0d000240024020050d00410121060c010b2005101e2206450d020b20062009200510cd052106200420053602a0032004200536029c03200420063602980320044198036a200110b8052002280204210202402013450d00200b10200b20044198036a41106a200137030020044198036a41086a41033a00002004410d3a00980320044198036a1077200441a4036a200441c8006a41086a290300370200200441ac036a200441c8006a41106a290300370200200441b4036a200441e0006a290300370200200441bc036a200441e8006a290300370200200441c4036a200441f0006a290300370200200441cc036a200441f8006a290300370200200441d4036a20044180016a28020036020020044188046a201136020020044184046a2017360200200441f8036a200f370300200441f4036a2016360200200441ec036a2015360200200441e8036a200d360200200441e0036a200536020020044198036a41c4006a200236020020042012360298032004200429034837029c0320042010360280042004200e3602f003200420143602e403200420093602d8032004418c046a200441c40010cd051a200120044198036a10a905410021040c030b102c000b20054101102d000b200241046a280200450d00200228020010200b2000200536020420002004360200200341d0046a24000bd00301087f230041d0006b22022400200028020821032000280204210420002802002105024002404112101e2200450d00200041106a41002f00f8cf463b0000200041086a41002900f0cf46370000200041002900e8cf4637000020024292808080a0023702242002200036022020022003360230200241306a200241206a1063024020022802242206200228022822076b2003490d00200228022021000c020b0240200720036a22002007490d00200641017422082000200820004b1b22084100480d000240024020060d002008101e21000c010b200228022020062008102221000b02402000450d002002200836022420022000360220200821060c030b20084101102d000b1027000b41124101102d000b2002200720036a2208360228200020076a2005200310cd051a200241306a41186a22034200370300200241306a41106a22074200370300200241306a41086a220942003703002002420037033020002008200241306a1001200241186a2003290300370300200241106a2007290300370300200241086a20092903003703002002200229033037030002402006450d00200010200b02402004450d00200510200b2002200137033020024120200241306a41081005200241d0006a24000b130020004109360204200041d4d3c6003602000b040041000b02000b02000ba30201077f0240024002400240200041086a2802002201450d00410020014102746b2102417f210320002802002204210503402002450d01200341016a2103200241046a210220052802002106200541046a21052006450d000b4100200641004741016a41017122056b2003460d002001200520036a2207490d012001200641004741016a4101716b20036b220541ffffffff03712005470d0220054102742203417f4c0d024104210102402003450d002003101e2201450d040b2001200420074102746a4104200641004741016a41017141027420026a6b10cd0521020240200041046a280200450d00200028020010200b20002002360200200041086a2005360200200041046a20053602000b0f0b20072001103b000b102c000b20034104102d000bbf0403067f017e097f02400240024002400240200141086a2802002203200241086a2802002204200320044b1b220541016a22064101200641014b1b220741ffffffff03712007470d0020074102742206417f4c0d000240024020060d00410421080c010b200610242208450d020b024020050d00420021090c040b2004417f6a220a20044b210b2002280200210c2003417f6a220d20034b0d022001280200210e20082007417f6a22024102746a210f410021064200210903404100211002402003200d20066b22114d0d00410021102011200d4b0d00200e20114102746a28020021100b410021110240200b0d002004200a20066b22124d0d002012200a4b0d00200c20124102746a28020021110b200720024d0d05200f20092010ad7c2011ad7c22093e0200200f417c6a210f2002417f6a210220094220882109200641016a22062005490d000c040b0b102c000b20064104102d000b20082007417f6a22024102746a21104100210f420021090340410021060240200b0d00410021062004200a200f6b22114d0d00410021062011200a4b0d00200c20114102746a28020021060b200720024d0d02201020092006ad7c22093e02002010417c6a21102002417f6a210220094220882109200f41016a220f2005490d000b0b024020072005417f736a220220074f0d00200020073602082000200736020420002008360200200820024102746a20093e02000240200141046a280200450d00200128020010200b0f0b41bcf8c60020022007102a000b41bcf8c60020022007102a000bca0302097f017e230041106b2201240002400240024002400240024002402000280200220228020041016a41004c0d002000280204220328020041016a41004c0d012000280208220441086a28020022054101200028020c22062802006b22076a220820054f0d02200720002802142802006b22052000280210220741086a28020022006a220920054f0d03024002402002290308220a42ffffffff0f560d0041002100200a200428020020084102746a3502007e2003290308422086200728020020094102746a35020084580d010b20022802000d052002410036020020022002290308427f7c370308200441086a2802002200200020062802006b22024d0d0620032802000d07200428020020024102746a350200210a200341003602002003200a20032903087c370308410121000b200141106a240020000f0b4196e2c6004118200141086a41b0e2c60041c0e2c600102e000b4196e2c6004118200141086a41b0e2c60041c0e2c600102e000b41d0e0c60020082005102a000b41d0e0c60020092000102a000b4193e3c6004110200141086a41a4e3c60041b4e3c600102e000b41d0e0c60020022000102a000b4193e3c6004110200141086a41a4e3c60041b4e3c600102e000b9d05010b7f02400240024002400240024002402001280204220220012802002203490d0020012d000841ff01710d00200128000c2104024002404100200220036b2205200520024b1b220141016a220620014f0d00200441086a2105410021074100210841002101410021064104210903402005280200220a2002417f736a220b200a4f0d04200320024f210a200220032002496b21022004280200200b4102746a280200210b024020012006470d002001417f41004100417f4100200220036b2206200620024b1b220641016a220c200c2006491b200a1b20022003491b220641016a220c200c2006491b6a22062001490d0320072006200720064b1b220641ffffffff03712006470d032006410274220c4100480d030240024020010d00200c101e21090c010b20092008200c102221090b2009450d060b200920086a200b360200200741026a2107200841046a2108200141016a21012002200349200a72450d000c070b0b024020060d00410421090c050b200641ffffffff03712006470d00200641027422014100480d002001101e22090d0420014104102d000b1027000b4104210941002101410021060c030b41d0e0c600200b200a102a000b200c4104102d000b02400240200220034d0d002002417f732101200441086a210a2009210803402001200a280200220b6a220720014f0d042008200428020020074102746a280200360200200141016a2101200841046a210820032002417f6a2202490d000b200541016a21010c010b4100210120022003470d0141012101200921080b200441086a28020022022003417f736a220320024f0d022008200428020020034102746a2802003602000b2000200136020820002006360204200020093602000f0b41d0e0c6002007200b102a000b41d0e0c60020032002102a000bb00301047f230041c0006b2202240020002802002103410121000240200128021841c9a3c000410c2001411c6a28020028020c1100000d0002400240200328020822000d0020032802002200200328020428020c11040042e4aec285979ba58811520d012002200036020c2002410f36021420022002410c6a36021020012802182104200128021c2105410121002002413c6a41013602002002420237022c200241d8a3c0003602282002200241106a36023820042005200241286a102b0d020c010b2002200036020c2002411036021420022002410c6a36021020012802182104200128021c2105410121002002413c6a41013602002002420237022c200241d8a3c0003602282002200241106a36023820042005200241286a102b0d010b200328020c2100200241106a41146a4101360200200241106a410c6a410136020020022000410c6a3602202002200041086a360218200241043602142002200036021020012802182100200128021c2101200241286a41146a41033602002002420337022c200241e8a3c0003602282002200241106a36023820002001200241286a102b21000b200241c0006a240020000b08002000200110060b6901037f230041206b220224002001411c6a280200210320012802182104200241086a41106a2000280200220141106a290200370300200241086a41086a200141086a2902003703002002200129020037030820042003200241086a102b2101200241206a240020010b040041010bb30101017f230041c0006b2202240020024100360210200242013703082002411036021c20022001410c6a3602202002200241206a3602182002200241086a3602242002413c6a41013602002002420137022c200241f0fac6003602282002200241186a360238200241246a41f8fac600200241286a102b1a2001280200200141046a280200200141086a28020020022802082002280210101c0240200228020c450d00200228020810200b200241c0006a24000bc10101037f024002402000280200220041046a2802002203200041086a28020022046b2002490d00200028020021030c010b0240200420026a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200028020020032004102221030b02402003450d0020002003360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420026a360200200320046a2001200210cd051a41000bac0301047f230041106b22022400200028020021002002410036020c02400240024002402001418001490d002001418010490d012001418080044f0d0220022001413f71418001723a000e20022001410676413f71418001723a000d20022001410c76410f7141e001723a000c410321010c030b200220013a000c410121010c020b20022001413f71418001723a000d20022001410676411f7141c001723a000c410221010c010b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d410421010b02400240200041046a2802002203200041086a28020022046b2001490d00200028020021030c010b0240200420016a22052004490d00200341017422042005200420054b1b22044100480d000240024020030d002004101e21030c010b200028020020032004102221030b02402003450d0020002003360200200041046a2004360200200041086a28020021040c020b20044101102d000b1027000b200041086a200420016a360200200320046a2002410c6a200110cd051a200241106a240041000b6301017f230041206b2202240020022000280200360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41f8fac600200241086a102b2101200241206a240020010b8f0201017f230041106b220224000240024002400240024020002d00000e0401020300010b2002200128021841bd84c700411a2001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c030b2002200128021841d784c70041112001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b2002200128021841e884c70041142001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841fc84c70041162001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000bd60101017f230041106b22022400024002400240024020002802002d00000e03010200010b2002200128021841d885c70041202001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c020b2002200128021841cf85c70041092001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040c010b2002200128021841f885c70041102001411c6a28020028020c11000022003a000820022001360200200241003a0009200241003602040b200241106a240020000b9a0301027f024002402000280200220141014b0d00024020010e020002000b0240200041086a2d0000220141114b0d0002400240024002400240024002400240024020010e120b0b0b0b0b0b0b0b000b01020304050607080b0b200041106a280200450d0a2000410c6a28020010200f0b200041106a280200450d092000410c6a28020010200f0b200041106a280200450d082000410c6a28020010200f0b200041106a280200450d072000410c6a28020010200f0b200041106a280200450d062000410c6a28020010200f0b200041106a280200450d052000410c6a28020010200f0b200041106a280200450d042000410c6a28020010200f0b200041106a280200450d032000410c6a28020010200f0b0240200041146a2802002202450d002000410c6a28020021012002410c6c210203400240200141046a280200450d00200128020010200b2001410c6a2101200241746a22020d000b0b200041106a280200450d02200028020c10200c020b200041106a280200450d012000410c6a28020010200f0b200041086a280200450d00200028020410200f0b0b2c01017f02402002450d00200021030340200320013a0000200341016a21032002417f6a22020d000b0b20000b3601017f02402002450d00200021030340200320012d00003a0000200341016a2103200141016a21012002417f6a22020d000b0b20000b7101017f0240024020012000490d002002450d01200021030340200320012d00003a0000200141016a2101200341016a21032002417f6a22020d000c020b0b2002450d002001417f6a21012000417f6a21030340200320026a200120026a2d00003a00002002417f6a22020d000b0b20000b4a01037f4100210302402002450d000240034020002d0000220420012d00002205470d01200041016a2100200141016a21012002417f6a2202450d020c000b0b200420056b21030b20030b5701017e02400240200341c000710d002003450d012001410020036b413f71ad8820022003413f71ad220486842102200120048621010c010b20012003413f71ad862102420021010b20002001370300200020023703080b5701017e02400240200341c000710d002003450d0120012003413f71ad2204882002410020036b413f71ad86842101200220048821020c010b20022003413f71ad882101420021020b20002001370300200020023703080b7501027e200020034220882205200142208822067e200320027e7c200420017e7c200342ffffffff0f832203200142ffffffff0f8322017e2204422088200320067e7c22034220887c200342ffffffff0f83200520017e7c22034220887c37030820002003422086200442ffffffff0f83843703000b3e01017f230041106b2205240020052001200220032004410010d505200529030021012000200541086a29030037030820002001370300200541106a24000b4c01017f230041206b22052400200542003703182005420037031020052001200220032004200541106a10d505200529031021012000200529031837030820002001370300200541206a24000be20502037f067e230041306b2206240002400240024002400240024002400240024002402002500d002003500d012004500d02200479a7200279a76b2207413f4b0d0341ff0020076b2108200741016a21070c080b02402004500d0020050d040c060b024002402005450d0020034200510d0620054200370308200520012003823703000c010b20034200510d050b200120038021010c060b2004500d030240024002402001500d0020047b4201510d01200479a7200279a76b2207413e4b0d0241ff0020076b2108200741016a21070c090b02402005450d0020054200370300200520022004823703080b200220048021010c070b02402005450d002005200137030020052004427f7c2002833703080b200220047a423f838821010c060b2005450d040c020b024020037b4201510d0041bf7f200379a7200279a76b22076b2108200741c1006a21070c060b02402005450d002005420037030820052003427f7c2001833703000b20034201510d06200641206a2001200220037aa710d105200641286a2903002102200629032021010c060b2005450d020b2005200137030020052002370308420021010c020b00000b420021010b420021020c010b200620012002200841ff007110d005200641106a20012002200741ff007110d105200641086a2903002102200641106a41086a2903002109200629030021012006290310210a0240024020070d004200210b4200210c0c010b4200210c4200210d03402009420186200a423f8884220b200b427f8520047c200a4201862002423f8884220a427f85220b20037c200b54ad7c423f87220b2004837d200a200b200383220e54ad7d2109200a200e7d210a420020024201862001423f8884842102200d2001420186842101200b420183220b210d2007417f6a22070d000b0b02402005450d002005200a370300200520093703080b200c20024201862001423f8884842102200b20014201868421010b2000200137030020002002370308200641306a24000b0bc78a070300418080c0000b9c8a076361706163697479206f766572666c6f770000002400100017000000eb020000050000007372632f6c6962616c6c6f632f7261775f7665632e727300cb0010004600000058010000130000001100000004000000040000001200000013000000140000006120666f726d617474696e6720747261697420696d706c656d656e746174696f6e2072657475726e656420616e206572726f720011000000000000000100000015000000b8001000130000003b020000050000007372632f6c6962616c6c6f632f666d742e72732f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f666d742f6d6f642e7273010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002020202020202020202020202020202020202020202020202020202020203030303030303030303030303030303040404040400000000000000000000000000003402100020000000540210001200000011000000000000000100000016000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e646578206973203030303130323033303430353036303730383039313031313132313331343135313631373138313932303231323232333234323532363237323832393330333133323333333433353336333733383339343034313432343334343435343634373438343935303531353235333534353535363537353835393630363136323633363436353636363736383639373037313732373337343735373637373738373938303831383238333834383538363837383838393930393139323933393439353936393739383939000068031000060000006e031000220000005003100018000000b10a0000050000007372632f6c6962636f72652f736c6963652f6d6f642e7273696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820b003100016000000c60310000d0000005003100018000000b70a000005000000736c69636520696e64657820737461727473206174202062757420656e6473206174205b2e2e2e5d8e0410000b0000009a11100016000000041511000100000078041000160000009208000009000000781110000e00000086111000040000008a111000100000000415110001000000780410001600000096080000050000007804100016000000a70800000e0000008e0410000b0000009904100026000000bf04100008000000c70410000600000004151100010000007804100016000000a9080000050000007372632f6c6962636f72652f7374722f6d6f642e72736279746520696e64657820206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f6620600000000e05100002000000f8041000160000004604000024000000f8041000160000003c040000110000007372632f6c6962636f72652f666d742f6d6f642e72732e2e3078040f151b190312171100000e160000000000000000000000000000000000000000000000000000000006130000000000000000000000000000000000000002070a00080c1d1c181a00000000000000000000000000000000000005010000000000000000000000000000000000000010000000000b00090014000d00000000000000000000000000000000000000000000000000000000000f12000000000000000000000000001f0000000000000000000000000000004946661d0000000000000000000000008a3e000000000000000000000000004b530000000000000000000000006723420000000000000000000000003d0000000000230000000000000000007500002d000000000000000000000000824e3c0000000000000000000000006300000025005a000000000000008136000003000000000000000000002f000000000000000010000000000013000800000000000000000000000000430072008900000000000000000000070000007d05183f003787094064000021000000000000000000000000000a0000410000000000000000000000000c0030005c00000019777100604735442e0000743911652c515e7f500000003431000000530000000000003a00000000381a00885f2b6b695d4f5d84802a68143b0017000000000000000000000000005500005700000083000000000000000059000000000000266e1b1600000000006d4a1c000000000000000000002400007c0052007b06150000000048000000007e2876276c2900225b0e610d567062048520780200007a1e7901540033000000867358004d456f0b6a0000326c4c0000898a00008a8a8a3e0000000000000000000000f80b10001a000000380000000f000000f80b10001a0000003900000010000000000000000000000001000000000000000d000000000000001c000000000000004000000000000000b600000000000000bf00000000000000f803000000000000f007000000000000ff070000000000000010000000000000001e0000000000000038000000000000003f000000000000807f0000000000000080000000000000c0ff01000000000080ff030000000000008007000000000000007f000000000001208000000000000000a3000000000000fc7f030000000000000006000000000000ff070000000000008009000000000000000e0000000080007e0e00000000642000200000000040fe0f2000000000010000300000000000000040000000005c00004000000000000000600000000000845c8000000000000000c000000000000000e00000000000000000010000000000f00c01000000443060000c000000c13d60000c0000001e2080000c0000001e20c0000c000000fe21fe000c00000000000000200000000000000060000000440800006000000000000000f000000060000000000200007ffffff9db07000000000080f8070000000000e0bc0f00000000000020210000030000003c3b0000e70f0000003c00000000c09f9f3d00000000c0fbef3e000000000000c03f00000000000000f000000000000000fc0000100000f8feff0000ffff0000ffff0000ffffffffffff000000f8ffff0000010000000000c0ff01000000ffffffff0100000000000000030000000000008003000000000040a30300000000000000080000000c0000000c000400000000f80f00000000000000180000001c0000001c00000000c301001e000000000000001f0001008000c01f1f000700000080ef1f00ffffffffff1f20008639020000002300020000000030400000000000007e66000000fcfffffc6d000000000000007f00000000000028bf000000000000f0cf00000000030000a0020000f7fffd2110030300000000007806000000000080ff06000000000000c007000000000000f207000000008701040e0600000000000010081000000000001007000000000000140f0000000000f017000000000000f21fdfe0fffeffffff1f00000000000000200000000000f80f20070000000000c833000000000000b03f000000000080f73f04000000000000401e2080000c000040000000000080d340020000000000005003000000000000580000000000e0fd66fe0700000000f879030000000000c07f000000000000fe7f000000000000ff7f00000000000000807f0000000000008030000000ffff03806ef000000000008702000000000000900000407fe51ff89f000000000000f9a5000000000000f8a70000000000803cb00000000000007eb40000000000007fbf0000feffffffffbf11000000000000c00000000000009dc102000000000000d000000000a0c307f8ffffffffffff7ff8fffffffffffffffbbe2100000c0000fc00000000000000ff02000000000000ff000002000000ffff0000f8fffbffffff00000000ffffffffffffffffffffffff7372632f6c6962636f72652f756e69636f64652f6d6f642e727300010305050606030706080809110a1c0b190c140d120e0d0f0410031212130916011705180219031a071c021d011f1620032b042c022d0b2e01300331023201a702a902aa04ab08fa02fb05fd04fe03ff09ad78798b8da23057588b8c901c1ddd0e0f4b4cfbfc2e2f3f5c5d5fb5e2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d112945495764658d91a9b4babbc5c9dfe4e5f0040d1145496465808184b2bcbebfd5d7f0f183858ba4a6bebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff800d6d71dedf0e0f1f6e6f1c1d5f7d7eaeafbbbcfa16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f747596972f5f262e2fa7afb7bfc7cfd7df9a409798308f1fc0c1ceff4e4f5a5b07080f10272feeef6e6f373d3f42459091feff536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab351e1580e003190801042f043404070301070607110a500f1207550802041c0a090308030703020303030c0405030b06010e15053a0311070605100757070207150d500443032d03010411060f0c3a041d255f206d046a2580c80582b0031a0682fd035907150b1709140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a061f414c042d0374083c030f033c0738082b0582ff1118082f112d032010210f808c048297190b158894052f053b07020e180980b030740c80d61a0c0580ff0580b605240c9bc60ad23010848d033709815c1480b80880c73035040a06380846080c06740b1e035a0459098083181c0a16094808808a06aba40c170431a10481da26070c050580a511816d1078282a064c04808d0480be031b030f0d0058111000200000001a000000280000000006010103010402080809020a050b02100111041205131114021502170219041c051d0824016a036b02bc02d102d40cd509d602d702da01e005e102e802ee20f004f906fa020c273b3e4e4f8f9e9e9f060709363d3e56f3d0d104141836375657bd35cecfe01287898e9e040d0e11122931343a4546494a4e4f64655a5cb6b71b1ca8a9d8d909379091a8070a3b3e66698f926f5feeef5a629a9b2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a22253e3fc5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d00c72a3a4cbcc6e6f5e227b0503042d036504012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b018090813709160a088098390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a81261f808128082a808617094e041e0f430e19070a0647092709750b3f412a063b050a0651060105100305808b602048080a80a65e22450b0a060d1339070a362c041080c03c64530c0180a0451b4808531d398107460a1d03474937030e080a0639070a81361980c7320d839b66750b80c48abc842f8fd18247a1b98239072a040260260a460a28051382b05b654b0439071140041c97f80882f3a50d811f3103110408818c89046b050d03090710936080f60a73086e1746809a140c570919808781470385420f1585502b80d52d031a040281703a0501850080d7294c040a04028311444c3d80c23c06010455051b3402810e2c04640c560a0d035d033d391d0d2c040907020e06809a83d60a0d030b05740c59070c140c0438080a0628081e527703310380a60c14040305030d06856a7372632f6c6962636f72652f756e69636f64652f7072696e7461626c652e7273626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e672060206973206f7574206f6620626f756e6473206f662060426f72726f774572726f72426f72726f774d75744572726f7270616e69636b65642061742000000001121000010000000212100003000000e4be110000000000001210000100000000121000010000003a27272c2020202020207b202c20207b0a000000110000000c000000040000001700000018000000190000002c0a00001100000004000000040000001a0000001b0000001c000000207d7d28280a2c291100000004000000040000001d0000001100000004000000040000001e000000536f6d654e6f6e65557466384572726f7276616c69645f75705f746f6572726f725f6c656e0000001100000004000000040000001f000000617373657274696f6e206661696c65643a2073656c662e6c656e2829203c204341504143495459617373657274696f6e206661696c65643a202173656c662e69735f7368617265645f726f6f742829617373657274696f6e206661696c65643a20656467652e686569676874203d3d2073656c662e686569676874202d2031617373657274696f6e206661696c65643a2073656c662e686569676874203e2030617373657274696f6e206661696c65643a202173656c662e6e6f64652e69735f7368617265645f726f6f742829617373657274696f6e206661696c65643a2073656c662e6c656e2829203e2030000000a813100056000000f4040000520000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962616c6c6f632f636f6c6c656374696f6e732f62747265652f6e6f64652e72730000a813100056000000050500004c000000617373657274696f6e206661696c65643a206c6566745f6c656e202b2072696768745f6c656e202b2031203c3d204341504143495459617373657274696f6e206661696c65643a20656467652e686569676874203d3d2073656c662e6e6f64652e686569676874202d203156657273696f6e656453746f72655065726d697373696f6e7320456e746974794d61696e7461696e65724279456e74697479496468656164206f662056657273696f6e656453746f72655065726d697373696f6e7320456e746974794d61696e7461696e65724279456e74697479496456657273696f6e656453746f72655065726d697373696f6e7320436c6173735065726d697373696f6e734279436c617373496468656164206f662056657273696f6e656453746f72655065726d697373696f6e7320436c6173735065726d697373696f6e734279436c61737349644e6f74526f6f744f726967696e4261644f726967696e3a4578706563746564526f6f744f725369676e65644163636573734c6576656c3a3a456e746974794d61696e7461696e65722d557365644f75744f66506c616365556e7370656369666965644163746f724e6f74496e41646d696e735365744f726967696e43616e6e6f744163745769746852657175657374656443726564656e7469616c4e6f74496e416464536368656d6173536574456e746974794e6f74466f756e64556e6b6e6f776e4163746f724d61696e7461696e65724e6f74476976656e416c6c5065726d697373696f6e7343726564656e7469616c4e6f74496e456e746974795065726d697373696f6e735570646174655365744e6f74456e6974794d61696e7461696e6572456e7469747943616e6e6f745265666572656e6365546172676574456e74697479456e74697469657343616e6e6f744265437265617465644e6f74496e437265617465456e7469746965735365744e6f745065726d6974746564546f437265617465436c617373436c6173735065726d697373696f6e734e6f74466f756e644279436c617373496400000000004019100010000000000000005019100002000000000000000000000080191000010000000000000000000000881910001c00000000000000a4191000030000000000000000000000e4be1100000000000000000000000000ec1910002100000000000000101a1000030000000000000000000000e4be1100000000000000000000000000581a10001900000000000000741a1000030000000000000000000000e4be1100000000000000000000000000bc1a10001d00000000000000741a1000030000000000000000000000e4be1100000000000000000000000000d91a10001e00000000000000f81a1000030000000000000000000000e4be1100000000000000000000000000401b10000c000000000000004c1b1000030000000000000000000000e4be1100000000000000000000000000941b10002500000000000000bc1b1000020000000000000000000000e4be1100000000000000000000000000ec1b10001000000000000000fc1b1000040000000000000000000000e4be11000000000000000000000000005c1c10000d000000000000006c1c10000200000000000000000000009c1c1000020000000000000000000000ac1c10001c00000000000000c81c1000050000000000000000000000e4be1100000000000000000000000000401d10001d00000000000000601d1000040000000000000000000000e4be1100000000000000000000000000c01d10000b00000000000000cc1d1000010000000000000000000000e4be110000000000000000007365745f636c6173735f61646d696e7300000000141f100008000000000000004625100007000000000000002b2010000600000000000000b31f10001c0000000f2010001c0000007365745f636c6173735f656e746974795f7065726d697373696f6e73000000000b1e10000f000000000000001a1e10001500000000000000141f10000800000000000000462510000700000000000000dd1f10001200000000000000ef1f1000200000007365745f636c6173735f656e7469746965735f63616e5f62655f63726561746564000000000000000b1e10000f000000000000001a1e10001500000000000000141f10000800000000000000462510000700000000000000cf1f10000e00000000000000a58e1100040000007365745f636c6173735f6164645f736368656d61735f736574000000000000000b1e10000f000000000000001a1e10001500000000000000141f10000800000000000000462510000700000000000000a51f10000e00000000000000b31f10001c0000007365745f636c6173735f6372656174655f656e7469746965735f7365747365745f636c6173735f7265666572656e63655f636f6e73747261696e7400000000000b1e10000f000000000000001a1e10001500000000000000141f100008000000000000004625100007000000000000007a1f10000a00000000000000841f1000210000006372656174655f636c617373000000005da010000400000000000000d68b11000700000000000000fa7811000b00000000000000d68b11000700000000000000521f10001100000000000000631f1000170000006372656174655f636c6173735f776974685f64656661756c745f7065726d697373696f6e73000000000000005da010000400000000000000d68b11000700000000000000fa7811000b00000000000000d68b1100070000006164645f636c6173735f736368656d61000000000b1e10000f000000000000001a1e10001500000000000000141f100008000000000000004625100007000000000000001c1f100013000000000000002f1f10000800000000000000371f10000e00000000000000451f10000d0000006372656174655f656e74697479000000000000000b1e10000f000000000000001a1e10001500000000000000141f1000080000000000000046251000070000007b1e100081000000fc1e1000180000006164645f736368656d615f737570706f72745f746f5f656e74697479000000000b1e10000f000000000000001a1e100015000000000000002f1e10001400000000000000a58e11000400000000000000431e100009000000000000003b2510000800000000000000721e100009000000000000004325100003000000000000004c1e10000f000000000000005b1e1000170000007570646174655f656e746974795f70726f70657274795f76616c756573000000000000000b1e10000f000000000000001a1e100015000000000000002f1e10001400000000000000a58e11000400000000000000431e100009000000000000003b25100008000000000000004c1e10000f000000000000005b1e1000170000007472616e73616374696f6e0000000000e41d10000a00000000000000ee1d10001d0000006f7065726174696f6e735665633c4f7065726174696f6e3c543a3a43726564656e7469616c3e3e776974685f63726564656e7469616c4f7074696f6e3c543a3a43726564656e7469616c3e61735f656e746974795f6d61696e7461696e6572656e746974795f696470726f70657274795f76616c7565735665633c436c61737350726f706572747956616c75653e736368656d615f696420437265617465732061206e657720656e74697479206f66207479706520636c6173735f69642e20546865206d61696e7461696e65722069732073657420746f20626520656974686572204e6f6e6520696620746865206f726967696e20697320726f6f742c206f72207468652070726f76696465642063726564656e7469616c206173736f6369617465642077697468207369676e65722e636c6173735f69646578697374696e675f70726f706572746965735665633c7531363e6e65775f70726f706572746965735665633c50726f70657274793e636c6173735f7065726d697373696f6e73436c6173735065726d697373696f6e73547970653c543e636f6e73747261696e745265666572656e6365436f6e73747261696e743c436c61737349642c207531363e63726564656e7469616c5f73657443726564656e7469616c5365743c543a3a43726564656e7469616c3e63616e5f62655f63726561746564656e746974795f7065726d697373696f6e73456e746974795065726d697373696f6e733c543a3a43726564656e7469616c3e2053657473207468652061646d696e7320666f72206120636c61737361646d696e7300000000000000e4201000190000000101010000000000462510000700000000000000631f10001700000000000000000000000000000000000000e4be11000021100000000000000000001021100001000000000000000100000000000000182110001a00000001010100000000003b2510000800000000000000322110000d00000000000000000000000000000000000000e4be110040211000000000000000000050211000010000000000000000000000436c6173735065726d697373696f6e734279436c617373496400000011000000000000000100000020000000b121100041000000456e746974794d61696e7461696e65724279456e746974794964543a3a43726564656e7469616c00110000000000000001000000210000005821100059000000204f776e6572206f6620616e20656e7469747920696e207468652076657273696f6e65642073746f72652e204966206974206973204e6f6e65207468656e206974206973206f776e6564206279207468652073797374656d2e20436c6173735065726d697373696f6e73206f6620636f72726573706f6e64696e6720436c617373657320696e207468652076657273696f6e65642073746f72650000372210000d0000001c2210001b000000b460110002000000ecaf11002b000000760300000100000042616420696e70757420646174612070726f766964656420746f20657865637574655f626c6f636b4c22100010000000696e697469616c697a655f626c6f636b642210000f0000006170706c795f65787472696e736963007c22100013000000696e686572656e745f65787472696e7369637300982210000f000000636865636b5f696e686572656e747300b02210001400000076616c69646174655f7472616e73616374696f6ecc2210000f0000006f6666636861696e5f776f726b657200e4221000040000007369676ef0221000060000007665726966790000002310000d0000006163636f756e745f6e6f6e6365000000182310001500000067656e65726174655f73657373696f6e5f6b65797300000000000000382410000c0000000000000044241000010000000000000000000000e4be11000000000000000000000000004c24100010000000000000005c241000020000000000000000000000e4be11000000000000000000000000006c2410000d000000000000007c241000010000000000000000000000e4be11000000000000000000000000008424100017000000000000007c241000010000000000000000000000e4be11000000000000000000000000009b2410001100000000000000ac241000020000000000000000000000e4be1100000000000000000000000000bc2410000e0000000000000054441100010000000000000000000000cc2410000100000000000000436c617373437265617465644625100007000000436c617373536368656d61416464656446251000070000004325100003000000456e74697479437265617465640000003b25100008000000456e7469747950726f7065727469657355706461746564456e74697479536368656d6141646465643b251000080000004325100003000000466978436f6d70696c6174696f6e0000d424100067000000205468697320697320612066616b65206576656e7420746861742075736573204163636f756e7449642074797065206a75737420746f206d616b65205275737420636f6d70696c657220686170707920746f20636f6d70696c652074686973206d6f64756c652e456e746974794964753136436c6173734964546f6b656e4d696e74204d696e747368656164206f6620546f6b656e4d696e74204d696e7473436f6e74656e7420776974682074686973204944206e6f7420666f756e642e4f6e6c7920746865206c696169736f6e20666f722074686520636f6e74656e74206d6179206d6f6469667920697473207374617475732e4f6e6c7920616374697665206d656d62657273206d61792063726561746520636f6e74656e742e43616e6e6f742063726561746520636f6e74656e7420666f7220696e616374697665206f72206d697373696e672064617461206f626a65637420747970652e4e6f2064617461206f626a6563742073746f726167652072656c6174696f6e7368697020666f756e6420666f7220746869732049442e4f6e6c792073746f726167652070726f7669646572732063616e206372656174652064617461206f626a6563742073746f726167652072656c6174696f6e73686970732e4f6e6c79207468652073746f726167652070726f766964657220696e206120444f53522063616e20646563696465207768657468657220746865792772652072656164792e000000000000742710000c0000000000000080271000020000000000000000000000e4be1100000000000000000000000000902710000f0000000000000080271000020000000000000000000000e4be11000000000000000000000000009f2710000f0000000000000080271000020000000000000000000000e4be11000000000000000000436f6e74656e744164646564ae27100009000000d289110009000000436f6e74656e744163636570746564436f6e74656e7452656a6563746564436f6e74656e74496400000000006828100022000000000000008c281000030000000000000000000000e4be1100000000000000000000000000a42810002900000000000000d0281000020000000000000000000000e4be1100000000000000000000000000e02810001b00000000000000fc281000020000000000000000000000e4be11000000000000000000000000000c2910001d00000000000000fc281000020000000000000000000000e4be11000000000000000000446174614f626a65637453746f7261676552656c6174696f6e7368697041646465640000292910001f000000ae27100009000000d289110009000000446174614f626a65637453746f7261676552656c6174696f6e73686970526561647955706461746564000000292910001f000000a58e11000400000053746f7261676550726f76696465724164646564436f6e74656e7400d289110009000000ae2710000900000053746f7261676550726f766964657252656d6f766564436f6e74656e74446174614f626a65637453746f7261676552656c6174696f6e73686970496452616e646f6d6e657373436f6c6c656374697665466c69702052616e646f6d4d6174657269616c436c617373206e616d6520697320746f6f2073686f7274436c617373206e616d6520697320746f6f206c6f6e67436c617373206465736372697074696f6e20697320746f6f206c6f6e67436c61737320776173206e6f7420666f756e6420627920696443616e6e6f7420616464206120636c61737320736368656d61207769746820616e20656d707479206c697374206f662070726f7065727469657350726f7065727479206e616d6520697320746f6f2073686f727450726f7065727479206e616d6520697320746f6f206c6f6e6750726f7065727479206465736372697074696f6e20697320746f6f206c6f6e6750726f7065727479206e616d65206973206e6f7420756e697175652077697468696e2069747320636c6173734e657720636c61737320736368656d612072656665727320746f20616e20756e6b6e6f776e2070726f706572747920696e6465784e657720636c61737320736368656d612072656665727320746f20616e20756e6b6e6f776e20696e7465726e616c20636c617373206964000000000000b82d1000090000000101000000000000462510000700000000000000c12d10000500000000000000000000000000000000000000e4be1100c82d10000000000000000000e4be110000000000000000000100000000000000d82d10000a00000001010000000000003b2510000800000000000000e22d10000600000000000000000000000000000000000000e4be1100e82d10000000000000000000e4be110000000000000000000100000000000000f82d10000b0000000000000000000000462510000700000000000000000000000000000000000000000000000000000000000000e4be1100c03110000000000000000000e4be110000000000000000000100000000000000032e10000c00000000000000000000003b2510000800000000000000000000000000000000000000000000000000000000000000e4be1100c03110000000000000000000e4be1100000000000000000001000000000000000f2e10001600000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be110000000000000000000100000000000000252e10001d00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be110000000000000000000100000000000000422e10001300000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be110000000000000000000100000000000000552e10001a00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100702e10000000000000000000e4be1100000000000000000001000000436c61737342794964436c617373000011000000000000000100000022000000456e7469747942794964456e74697479110000000000000001000000230000004e657874436c61737349644e657874456e74697479496450726f70657274794e616d65436f6e73747261696e7450726f70657274794465736372697074696f6e436f6e73747261696e74436c6173734e616d65436f6e73747261696e74436c6173734465736372697074696f6e436f6e73747261696e740011000000000000000100000024000000456e7469747920776173206e6f7420666f756e64206279206964556e6b6e6f776e20636c61737320736368656d6120696443616e6e6f7420616464206120736368656d61207468617420697320616c726561647920616464656420746f207468697320656e74697479000000fc2f10003d000000c80100001f000000fc2f10003d000000d80100001e000000536f6d652072657175697265642070726f706572747920776173206e6f7420666f756e64207768656e20616464696e6720736368656d6120737570706f727420746f20656e74697479496e7465726e616c2070726f706572747920646f6573206e6f74206d617463682069747320636c617373566563746f722070726f7065727920697320746f6f206c6f6e67536f6d65206f66207468652070726f76696465642070726f70657274792076616c75657320646f6e2774206d61746368207468652065787065637465642070726f70657274792074797065546578742070726f7065727920697320746f6f206c6f6e672f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d76657273696f6e65642d73746f72652f7372632f6c69622e7273000000fc2f10003d0000002b02000022000000536f6d65206f66207468652070726f76696465642070726f7065727479206964732063616e6e6f7420626520666f756e64206f6e207468652063757272656e74206c697374206f662070726f706572792076616c756573206f66207468697320656e74697479546f6b656e4d696e7400000000006c3110000500000001010100000000007131100009000000000000007a3110002200000000000000000000000000000000000000e4be11009c3110000000000000000000ac31100001000000000000000100000000000000b43110000c0000000000000000000000713110000900000000000000000000000000000000000000000000000000000000000000e4be1100c03110000000000000000000d03110000100000000000000010000004d696e7473543a3a4d696e7449644d696e743c42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e11000000000000000100000025000000f5311000060000004d696e74734372656174656411000000000000000100000026000000d83110001d00000020546865206e756d626572206f66206d696e747320637265617465642e204d696e74730000000000543210000e0000000000000000000000a33611000c00000000000000000000000000000000000000000000000000000000000000e4be1100043c100000000000000000006432100003000000000000000100000052616e646f6d4d6174657269616c00007c32100058000000d4321000580000002c3310001100000020536572696573206f6620626c6f636b20686561646572732066726f6d20746865206c61737420383120626c6f636b73207468617420616374732061732072616e646f6d2073656564206d6174657269616c2e205468697320697320617272616e67656420617320612072696e672062756666657220776974682060626c6f636b5f6e756d626572202520383160206265696e672074686520696e64657820696e746f20746865206056656360206f6620746865206f6c6465737420686173682e00000000000000483410000f0000000000000000000000573410001100000000000000000000000000000000000000000000000000000000000000e4be1100043c10000000000000000000e4be110000000000000000000100000000000000683410001500000001010000000000007d3410000c00000000000000893410000d00000000000000000000000000000000000000e4be1100b03410000000000000000000e4be11000000000000000000000000000000000096341000170000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be1100b03410000000000000000000e4be11000000000000000000000000004b6e6f776e436f6e74656e744964735665633c543a3a436f6e74656e7449643e446174614f626a6563744279436f6e74656e744964543a3a436f6e74656e744964446174614f626a6563743c543e5072696d6172794c696169736f6e4163636f756e74496400000011000000000000000100000021000000633510003e000000710000000100000044617461206f626a6563742061726561647920616464656420756e646572207468697320636f6e74656e74206964446174614469726563746f727920446174614f626a6563744279436f6e74656e744964446174614469726563746f7279205072696d6172794c696169736f6e4163636f756e744964446174614469726563746f7279204b6e6f776e436f6e74656e744964732f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f73746f726167652f646174615f6469726563746f72792e727300000000000000d83610000b00000000000000e4361000040000000000000000000000e4be1100000000000000000000000000443710000e0000000000000054371000010000000000000000000000e4be11000000000000000000000000006c3710000e0000000000000054371000010000000000000000000000e4be11000000000000000000000000007a3710001e0000000000000050741000010000000000000000000000e4be1100000000000000000000000000983710002000000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000b8371000170000000000000054371000010000000000000000000000e4be1100000000000000000000000000cf3710001400000000000000e4371000010000000000000000000000e4be110000000000000000006164645f636f6e74656e740000000000073810000a000000000000007d3410000c000000000000001138100007000000000000001838100022000000000000003a3810000400000000000000ad71110003000000000000003e3810000f00000000000000d68b1100070000006163636570745f636f6e74656e74000000000000073810000a000000000000007d3410000c00000072656a6563745f636f6e74656e747365745f7072696d6172795f6c696169736f6e5f6163636f756e745f6964756e7365745f7072696d6172795f6c696169736f6e5f6163636f756e745f696472656d6f76655f6b6e6f776e5f636f6e74656e745f69647365745f6b6e6f776e5f636f6e74656e745f69640000000000fc3710000b000000000000005734100011000000636f6e74656e745f696473636f6e74656e745f6964747970655f69643c5420617320444f545254726169743e3a3a446174614f626a65637454797065496473697a65697066735f636f6e74656e745f696400000000000000b83a1000130000000000000000000000cb3a10002200000000000000000000000000000000000000000000000000000000000000e4be1100003b10000000000000000000e4be110000000000000000000100000000000000ed3a1000120000000000000000000000cb3a10002200000000000000000000000000000000000000000000000000000000000000e4be1100003b10000000000000000000e4be110000000000000000000100000000000000103b10000d0000000101000000000000cb3a100022000000000000001d3b10002000000000000000000000000000000000000000e4be1100403b10000000000000000000e4be110000000000000000000000000000000000503b10001800000001010000000000007d3410000c00000000000000683b10002700000000000000000000000000000000000000e4be1100043c10000000000000000000e4be1100000000000000000001000000000000008f3b10000f0000000000000000000000573410001100000000000000000000000000000000000000000000000000000000000000e4be1100043c10000000000000000000e4be1100000000000000000001000000000000009e3b10001c0000000101000000000000ba3b10001c00000000000000a58e11000400000000000000000000000000000000000000e4be1100d83b10000000000000000000e4be110000000000000000000100000000000000e83b10001b00000001010000000000007d3410000c000000000000001c3611001100000000000000000000000000000000000000e4be1100043c10000000000000000000e4be1100000000000000000001000000466972737452656c6174696f6e736869704964543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049644e65787452656c6174696f6e736869704964001100000000000000010000002700000052656c6174696f6e7368697073446174614f626a65637453746f7261676552656c6174696f6e736869703c543e0000001100000000000000010000002100000052656c6174696f6e73686970734279436f6e74656e7449645665633c543a3a446174614f626a65637453746f7261676552656c6174696f6e7368697049643e5265616479436f6e74656e7449647353746f7261676550726f7669646572536572766573436f6e74656e7428543a3a4163636f756e7449642c20543a3a436f6e74656e7449642900001100000000000000010000002100000053746f7261676550726f7669646572734279436f6e74656e7449640011000000000000000100000028000000a93c10004c0000007b00000001000000446174614f626a65637453746f726167655265676973747279204e65787452656c6174696f6e736869704964446174614f626a65637453746f7261676552656769737472792052656c6174696f6e7368697073446174614f626a65637453746f7261676552656769737472792052656c6174696f6e73686970734279436f6e74656e7449642f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f73746f726167652f646174615f6f626a6563745f73746f726167655f72656769737472792e7273000000000000007c3d100010000000000000008c3d1000010000000000000000000000e4be1100000000000000000000000000a43d10001600000000000000bc3d1000010000000000000000000000e4be1100000000000000000000000000d43d10001800000000000000bc3d1000010000000000000000000000e4be110000000000000000006164645f72656c6174696f6e7368697000000000ec3d100003000000000000007d3410000c0000007365745f72656c6174696f6e736869705f7265616479000000000000639c11000200000000000000cb3a100022000000756e7365745f72656c6174696f6e736869705f72656164796369643a65787472696e7369635f696e6465783a636f646553797374656d20506172656e744861736853797374656d204e756d62657253797374656d2045787472696e73696373526f6f7453797374656d2044696765737453797374656d20426c6f636b4861736853797374656d204163636f756e744e6f6e63650000000000c03e10001200000000000000d43e1000020000000000000000000000e4be1100000000000000000000000000e43e1000120000000000000054441100010000000000000000000000e4be110000000000000000004163636f756e74496e666f557064617465640000d289110009000000f63e10000c0000004163636f756e74496e666f52656d6f76656449504e534964656e7469747953797374656d204576656e747353797374656d204576656e74546f7069637300000000000000584010000a00000000000000e4be1100000000000000000000000000644010000100000000000000000000006c4010000600000000000000744010000100000000000000000000008c401000010000000000000000000000944010000e00000000000000a4401000010000000000000000000000bc401000010000000000000000000000c44010000800000000000000cc401000010000000000000000000000e4401000010000000000000000000000ec4010000b00000000000000f840100001000000000000000000000010411000010000000000000000000000184110000c00000000000000244110000100000000000000000000003c411000010000000000000000000000444110000b000000000000005041100001000000000000000000000068411000010000000000000066696c6c5f626c6f636b0000864210004800000072656d61726b0000000000007f4210000700000000000000d68b110007000000644210001b0000007365745f686561705f70616765730000000000005f4210000500000000000000ad71110003000000204210003f0000007365745f636f6465000000009d2d11000300000000000000d68b1100070000000e421000120000007365745f73746f726167650000000000fc4110000500000000000000014210000d000000e14110001b0000006b696c6c5f73746f7261676500000000c68b11000400000000000000d941100008000000bb4110001e0000006b696c6c5f7072656669780000000000b541100006000000000000004c2e1100030000007041100045000000204b696c6c20616c6c2073746f72616765206974656d7320776974682061206b657920746861742073746172747320776974682074686520676976656e207072656669782e707265666978204b696c6c20736f6d65206974656d732066726f6d2073746f726167652e5665633c4b65793e2053657420736f6d65206974656d73206f662073746f726167652e6974656d735665633c4b657956616c75653e2053657420746865206e657720636f64652e2053657420746865206e756d626572206f6620706167657320696e2074686520576562417373656d626c7920656e7669726f6e6d656e74277320686561702e7061676573204d616b6520736f6d65206f6e2d636861696e2072656d61726b2e5f72656d61726b20412062696720646973706174636820746861742077696c6c20646973616c6c6f7720616e79206f74686572207472616e73616374696f6e20746f20626520696e636c756465642e000000000000484710000c0000000101000000000000969511000c00000000000000544710000800000000000000000000000000000000000000e4be1100d448100000000000000000005c47100001000000000000000100000000000000644710000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100b0471000000000000000000074471000010000000000000000000000000000007c4710001300000000000000000000008f4710000600000000000000000000000000000000000000000000000000000000000000e4be1100b047100000000000000000009847100001000000000000000000000000000000a0471000100000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100b04710000000000000000000c047100001000000000000000000000000000000c8471000090000000101000000000000026711000e00000000000000c53611000700000000000000000000000000000000000000e4be1100384810000000000000000000d447100001000000000000000100000000000000dc4710000d0000000101000000000000aba311000300000000000000d68b11000700000000000000000000000000000000000000e4be1100ec4710000000000000000000fc4710000100000000000000010000000000000004481000060000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100d448100000000000000000000c48100001000000000000000100000000000000144810000a0000000000000000000000c53611000700000000000000000000000000000000000000000000000000000000000000e4be11003848100000000000000000002048100001000000000000000100000000000000284810000e0000000000000000000000c53611000700000000000000000000000000000000000000000000000000000000000000e4be1100384810000000000000000000484810000100000000000000010000000000000050481000060000000000000000000000564810000b00000000000000000000000000000000000000000000000000000000000000e4be110064481000000000000000000074481000010000000000000001000000000000007c481000060000000000000000000000824810002300000000000000000000000000000000000000000000000000000000000000e4be1100a84810000000000000000000b848100001000000000000000100000000000000c04810000a0000000000000000000000ca4810000a00000000000000000000000000000000000000000000000000000000000000e4be1100d44810000000000000000000e448100001000000000000000100000000000000ec4810000b0000000201010000000000c8d510000200000000000000c53611000700000000000000f74810002100000000000000e4be1100045010000000000000000000184910000d00000000000000010000004163636f756e744e6f6e6365543a3a496e646578944e10001f00000045787472696e736963436f756e740000664e10002e000000416c6c45787472696e73696373576569676874576569676874000000214e100045000000416c6c45787472696e736963734c656e11000000000000000100000021000000d14d100050000000426c6f636b48617368000000ab4d10002600000045787472696e73696344617461000000110000000000000001000000290000005c4d10004f0000004e756d62657200001a4d100042000000506172656e74486173680000fe4c10001c00000045787472696e73696373526f6f7400001100000000000000010000002a000000b94c1000450000004469676573744469676573744f663c543e000000110000000000000001000000280000007d4c10003c0000004576656e74735665633c4576656e745265636f72643c543a3a4576656e742c20543a3a486173683e3e0000001100000000000000010000002b000000554c1000280000004576656e74436f756e744576656e74496e6465781100000000000000010000002c000000274c10002e0000004576656e74546f706963735665633c28543a3a426c6f636b4e756d6265722c204576656e74496e646578293e8049100049000000c949100025000000e4be110000000000ee4910004b000000394a10002a000000e4be110000000000634a100054000000b74a100051000000084b100039000000e4be110000000000414b100053000000944b100053000000e74b100040000000204d617070696e67206265747765656e206120746f7069632028726570726573656e74656420627920543a3a486173682920616e64206120766563746f72206f6620696e6465786573206f66206576656e747320696e2074686520603c4576656e74733c543e3e60206c6973742e20546865206669727374206b657920736572766573206e6f20707572706f73652e2054686973206669656c64206973206465636c6172656420617320646f75626c655f6d6170206a75737420666f7220636f6e76656e69656e6365206f66207573696e67206072656d6f76655f707265666978602e20416c6c20746f70696320766563746f727320686176652064657465726d696e69737469632073746f72616765206c6f636174696f6e7320646570656e64696e67206f6e2074686520746f7069632e205468697320616c6c6f7773206c696768742d636c69656e747320746f206c6576657261676520746865206368616e67657320747269652073746f7261676520747261636b696e67206d656368616e69736d20616e6420696e2063617365206f66206368616e67657320666574636820746865206c697374206f66206576656e7473206f6620696e7465726573742e205468652076616c756520686173207468652074797065206028543a3a426c6f636b4e756d6265722c204576656e74496e646578296020626563617573652069662077652075736564206f6e6c79206a7573742074686520604576656e74496e64657860207468656e20696e20636173652069662074686520746f70696320686173207468652073616d6520636f6e74656e7473206f6e20746865206e65787420626c6f636b206e6f206e6f74696669636174696f6e2077696c6c20626520747269676765726564207468757320746865206576656e74206d69676874206265206c6f73742e20546865206e756d626572206f66206576656e747320696e2074686520604576656e74733c543e60206c6973742e204576656e7473206465706f736974656420666f72207468652063757272656e7420626c6f636b2e20446967657374206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2045787472696e7369637320726f6f74206f66207468652063757272656e7420626c6f636b2c20616c736f2070617274206f662074686520626c6f636b206865616465722e2048617368206f66207468652070726576696f757320626c6f636b2e205468652063757272656e7420626c6f636b206e756d626572206265696e672070726f6365737365642e205365742062792060657865637574655f626c6f636b602e2045787472696e73696373206461746120666f72207468652063757272656e7420626c6f636b20286d61707320616e2065787472696e736963277320696e64657820746f206974732064617461292e204d6170206f6620626c6f636b206e756d6265727320746f20626c6f636b206861736865732e20546f74616c206c656e6774682028696e2062797465732920666f7220616c6c2065787472696e736963732070757420746f6765746865722c20666f72207468652063757272656e7420626c6f636b2e20546f74616c2077656967687420666f7220616c6c2065787472696e736963732070757420746f6765746865722c20666f72207468652063757272656e7420626c6f636b2e20546f74616c2065787472696e7369637320636f756e7420666f72207468652063757272656e7420626c6f636b2e2045787472696e73696373206e6f6e636520666f72206163636f756e74732e3a686561707061676573446973636f76657279204163636f756e74496e666f42794163636f756e74496400000000000000e84f1000120000000000000000000000fa4f10000800000000000000000000000000000000000000000000000000000000000000e4be110004501000000000000000000014501000010000000000000001000000000000001c501000160000000101000000000000969511000c00000000000000325010001b00000000000000000000000000000000000000e4be11005050100000000000000000006050100001000000000000000100000000000000685010000f0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be110078501000000000000000000088501000010000000000000001000000426f6f747374726170456e64706f696e74735665633c55726c3e0000110000000000000001000000280000000e511000270000004163636f756e74496e666f42794163636f756e7449644163636f756e74496e666f3c543a3a426c6f636b4e756d6265723e0000001100000000000000010000002d000000d05010003e00000044656661756c744c69666574696d65001100000000000000010000002e0000009050100040000000204c69666574696d65206f6620616e204163636f756e74496e666f207265636f726420696e204163636f756e74496e666f42794163636f756e744964206d6170204d617070696e67206f6620736572766963652070726f76696465727327204163636f756e7449647320746f207468656972204163636f756e74496e666f20426f6f74737472617020656e64706f696e7473206d61696e7461696e656420627920726f6f74446973636f7665727920426f6f747374726170456e64706f696e7473000000d7511000430000004f000000010000006f6e6c7920726f6c65206163636f756e74732063616e207365742069706e73206964446973636f766572792044656661756c744c69666574696d65646973636f766572793a2064656661756c74206c69666574696d65206d75737420626520677465206d696e696d756d206c69666574696d652f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f736572766963655f646973636f766572792f646973636f766572792e7273000000000000cc5210000b00000000000000d8521000020000000000000000000000e4be1100000000000000000000000000085310000d00000000000000e4be1100000000000000000000000000e4be11000000000000000000000000001553100014000000000000002c531000010000000000000000000000e4be11000000000000000000000000004453100017000000000000005c531000010000000000000000000000e4be110000000000000000007365745f69706e735f69640000000000639c11000200000000000000d68b110007000000000000008953100008000000000000009153100016000000756e7365745f69706e735f69647365745f64656661756c745f6c69666574696d6500000000000000895310000800000000000000026711000e0000007365745f626f6f7473747261705f656e64706f696e747300000000007453100009000000000000007d5310000c000000656e64706f696e74735665633c5665633c75383e3e6c69666574696d654f7074696f6e3c543a3a426c6f636b4e756d6265723e0000000000d45310000f00000000000000e4531000020000000000000000000000f453100004000000000000004e65774163636f756e74496e64657800d2891100090000008f5410000c0000001454100022000000e4be110000000000365410004100000077541000180000002041206e6577206163636f756e7420696e646578207761732061737369676e65642e2054686973206576656e74206973206e6f7420747269676765726564207768656e20616e206578697374696e6720696e64657820697320726561737369676e656420746f20616e6f7468657220604163636f756e744964602e4163636f756e74496e64657854696d657374616d70206d7573742062652075706461746564206f6e636520696e2074686520626c6f636b54696d657374616d70206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b54696d657374616d70206d75737420696e6372656d656e74206279206174206c65617374203c4d696e696d756d506572696f643e206265747765656e2073657175656e7469616c20626c6f636b7354696d657374616d70204e6f775374616b65506f6f6c205374616b6573437265617465641100000008000000040000002f000000110000000000000001000000300000005374616b65506f6f6c205374616b657368656164206f66205374616b65506f6f6c205374616b657354696d657374616d7020746f6f2066617220696e2066757475726520746f206163636570744765747320616e64206465636f6465732074696d657374616d7020696e686572656e74206461746100000010561000600000001a0100001f0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f74696d657374616d702f7372632f6c69622e727300000000205710000b00000000000000000000002b5710000f00000000000000000000000000000000000000000000000000000000000000e4be11003c57100000000000000000004c57100001000000000000000100000000000000545710000700000001010000000000002b5710000f000000000000001c3611001100000000000000000000000000000000000000e4be11005c57100000000000000000006c5710000100000000000000010000004e657874456e756d536574543a3a4163636f756e74496e64657800001100000000000000010000002c0000008a5710001f000000456e756d536574001100000000000000010000002800000074571000160000002054686520656e756d65726174696f6e20736574732e20546865206e657874206672656520656e756d65726174696f6e207365742e506172656e7420686173682073686f756c642062652076616c69642e5472616e73616374696f6e207472696520726f6f74206d7573742062652076616c69642e0000004358100032000000446967657374206974656d206d757374206d6174636820746861742063616c63756c617465642e53746f7261676520726f6f74206d757374206d6174636820746861742063616c63756c617465642e4e756d626572206f6620646967657374206974656d73206d757374206d6174636820746861742063616c63756c617465642e00000000000000a45810000300000000000000a8581000010000000000000000000000c058100009000000000000007365740000000000425a10000300000000000000455a1000120000000859100016000000e4be1100000000001e591000560000007459100036000000e4be110000000000aa59100051000000fb59100011000000e4be1100000000000c5a10003600000020536574207468652063757272656e742074696d652e20546869732063616c6c2073686f756c6420626520696e766f6b65642065786163746c79206f6e63652070657220626c6f636b2e2049742077696c6c2070616e6963206174207468652066696e616c697a6174696f6e2070686173652c20696620746869732063616c6c206861736e2774206265656e20696e766f6b656420627920746861742074696d652e205468652074696d657374616d702073686f756c642062652067726561746572207468616e207468652070726576696f7573206f6e652062792074686520616d6f756e742073706563696669656420627920604d696e696d756d506572696f64602e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d7573742062652060496e686572656e74602e6e6f77436f6d706163743c543a3a4d6f6d656e743e0000000000085b1000030000000000000000000000118d10000900000000000000000000000000000000000000000000000000000000000000e4be11007c5e100000000000000000000c5b100001000000000000000100000000000000145b1000090000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100205b10000000000000000000305b10000100000000000000010000004e6f7700655b10002400000044696455706461746500000011000000000000000100000021000000385b10002d00000020446964207468652074696d657374616d7020676574207570646174656420696e207468697320626c6f636b3f2043757272656e742074696d6520666f72207468652063757272656e7420626c6f636b2e00000000000000c45b10000d00000000000000118d10000900000000000000e4be1100d45b10000000000000000000e45b100004000000000000004d696e696d756d506572696f6400000011000000000000000100000031000000045c10005a0000005e5c10005a000000b85c100059000000115d10001c00000020546865206d696e696d756d20706572696f64206265747765656e20626c6f636b732e204265776172652074686174207468697320697320646966666572656e7420746f20746865202a65787065637465642a20706572696f6420746861742074686520626c6f636b2070726f64756374696f6e206170706172617475732070726f76696465732e20596f75722063686f73656e20636f6e73656e7375732073797374656d2077696c6c2067656e6572616c6c7920776f726b2077697468207468697320746f2064657465726d696e6520612073656e7369626c6520626c6f636b2074696d652e20652e672e20466f7220417572612c2069742077696c6c20626520646f75626c65207468697320706572696f64206f6e2064656661756c742073657474696e67732e706f6f6c20686164206c657373207468616e2065787065637465642066756e64732100807710003a0000003a030000090000005374616b65506f6f6c000000000000001c5e1000060000000101010000000000501911000a00000000000000225e10002f00000000000000000000000000000000000000e4be1100545e10000000000000000000645e1000010000000000000001000000000000006c5e10000d0000000000000000000000501911000a00000000000000000000000000000000000000000000000000000000000000e4be11007c5e100000000000000000008c5e10000200000000000000010000005374616b65735374616b653c543a3a426c6f636b4e756d6265722c2042616c616e63654f663c543e2c20543a3a536c61736849643e000000110000000000000001000000320000003a5f10001d0000005374616b657343726561746564000000110000000000000001000000260000009c5e10006a000000065f100034000000204964656e7469666965722076616c756520666f72206e657874207374616b652c20616e6420636f756e74206f6620746f74616c207374616b6573206372656174656420286e6f74206e65636573736172696c7920746865206e756d626572206f662063757272656e74207374616b657320696e20746865205374616b6573206d6170206173207374616b65732063616e2062652072656d6f7665642e29204d617073206964656e7469666965727320746f2061207374616b652e0000000000b05f1000110000000000000000000000c15f10000a00000000000000000000000000000000000000000000000000000000000000e4be1100cc5f10000000000000000000e4be11000000000000000000010000004e6578744665654d756c7469706c6965724d756c7469706c6965720011000000000000000100000026000000000000004c6010001200000000000000a73711000c00000000000000e4be110060601000000000000000000070601000010000000000000000000000786010001200000000000000a73711000c00000000000000e4be11008c60100000000000000000009c60100001000000000000005472616e73616374696f6e42617365466565000011000000000000000100000033000000e7601000370000005472616e73616374696f6e42797465466565000011000000000000000100000034000000a460100043000000205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b20746865207065722d6279746520706f7274696f6e2e205468652066656520746f206265207061696420666f72206d616b696e672061207472616e73616374696f6e3b2074686520626173652e496e646963657320456e756d53657400000011000000080000000400000035000000ecaf11002b000000740200001e0000006a6f7973747265616d2d6e6f64650000df6acb689907609b0200000037e397fc7c91f5e40100000040fe3ad401f8959a03000000d2bc9897eed08f1501000000f78b278be53f454c01000000ed99c5acb25eedf502000000cbca25e39f14238701000000687ad44ad37f03c201000000bc9d89904f5b923f01000000ab3c0572291feb8b010000006772616e62616265696d6f6e0000000040787d010065cd1d00e1f505d85aae1ec0542205b0508f1f38e4750488467020d853e903603c5121d0bf760338323222a8591903402013236039cd02480ef423a82a8f0268f8d42470955c02b8dab525c05a3302d8c4962648bd1102e0b27727a855f601e8a05828e8fedf0180773929c0cacd01586d1a2af8f1be019053fb2a50d8b201d00edc2be0fca80138edbc2c48f2a001e06d9d2d80669a01c80d7e2e500f9501c0575e2f08b6900140323f30e0278d0148202031b0418a0108a3ff3120e8870120bedf32f0fb85013856c03398698401f0fda03478218301b8d87f35d8178201d8c26036183d8101b8223e37508d800188d21c38c8fc7f0168b5f93898877f01a829d139d8297f0120d6ab3ab8db7e0168ae803b389d7e0100ca9a3b68957e01436f756e63696c20416374697665436f756e63696c436f756e63696c205465726d456e647341740000000000f8711000060000000000000036000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000038000000000000000000000000000000390000000000000000000000000000003a0000000000000000000000000000002c83100004000000000000003b0000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003c00000000000000000000000000000039000000000000000000000000000000fe71100009000000000000003d000000000000000000000000000000000000000000000000000000000000003e000000000000000000000002000000000000000000000000000000000000003f00000000000000000000000000000039000000000000000000000000000000259411000a000000000000004000000000000000000000000000000000000000000000000000000000000000410000000000000000000000020000000000000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000000772100007000000000000004200000000000000000000000000000000000000000000000000000000000000390000000000000000000000000000004300000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000000951110008000000000000004400000000000000000000000000000000000000000000000000000000000000450000000000000000000000000000004600000000000000000000000000000047000000000000000000000000000000390000000000000000000000000000000e72100012000000000000004800000000000000000000000000000000000000000000000000000002000000000000000000000000000000020000000000000000000000000000000000000049000000000000000000000000000000390000000000000000000000000000001503110007000000000000004a000000000000000000000000000000000000000000000000000000000000004b0000000000000000000000000000004c0000000000000000000000000000004d00000000000000000000000000000039000000000000000000000000000000dd8b110007000000000000004e000000000000000000000000000000000000000000000000000000000000004f000000000000000000000000000000500000000000000000000000000000005100000000000000000000000000000039000000000000000000000000000000207210000f000000020000000000000000000000000000000000000000000000000000000000000000000000520000000000000000000000020000000000000000000000000000000000000053000000000000000000000000000000390000000000000000000000000000002f72100007000000000000005400000000000000000000000000000000000000000000000000000000000000550000000000000000000000000000005600000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000004a26110008000000000000005700000000000000000000000000000000000000000000000000000000000000580000000000000000000000000000005900000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000003672100012000000020000000000000000000000000000000000000000000000000000000000000000000000390000000000000000000000020000000000000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000001d5b110008000000000000005a00000000000000000000000000000000000000000000000000000000000000390000000000000000000000000000005b00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000004872100018000000000000005c0000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000ee2d110004000000000000005d000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000005f0000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000068f10000900000000000000600000000000000000000000000000000000000000000000000000000000000061000000000000000000000000000000620000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000b62f11000f0000000000000063000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000065000000000000000000000000000000390000000000000000000000000000003900000000000000000000000000000060721000070000000000000066000000000000000000000000000000000000000000000000000000000000006700000000000000000000000000000068000000000000000000000000000000390000000000000000000000000000003900000000000000000000000000000017421100040000000000000069000000000000000000000000000000000000000000000000000000000000006a0000000000000000000000000000006b00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000006772100007000000000000006c000000000000000000000000000000000000000000000000000000000000006d0000000000000000000000000000006e00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000003779110005000000000000006f0000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000710000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000231b110009000000000000007200000000000000000000000000000000000000000000000000000000000000390000000000000000000000000000007300000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000006aa0100006000000000000007400000000000000000000000000000000000000000000000000000000000000750000000000000000000000000000007600000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000009298110016000000000000007700000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000007900000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000006e7210000d000000000000007a000000000000000000000000000000000000000000000000000000000000007b0000000000000000000000000000007c00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000007b72100019000000000000007d000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000007f00000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000009472100009000000000000008000000000000000000000000000000000000000000000000000000000000000810000000000000000000000000000008200000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000009d7210000e00000000000000830000000000000000000000000000000000000000000000000000000000000039000000000000000000000000000000840000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000ab7210001900000000000000850000000000000000000000000000000000000000000000000000000000000086000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000c47210000500000000000000870000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000c97210000700000000000000880000000000000000000000000000000000000000000000000000000000000039000000000000000000000002000000000000000000000000000000000000003900000000000000000000000000000039000000000000000000000000000000d072100010000000000000008900000000000000000000000000000000000000000000000000000000000000390000000000000000000000020000000000000000000000000000000000000039000000000000000000000000000000390000000000000000000000000000007016110006000000000000008a000000000000000000000000000000000000000000000000000000000000003900000000000000000000000200000000000000000000000000000000000000390000000000000000000000000000003900000000000000000000000000000058bf100013000000000000008b000000000000000000000000000000000000000000000000000000000000008c0000000000000000000000000000008d0000000000000000000000000000003900000000000000000000000000000039000000000000000000000053797374656d54696d657374616d70496e64696365735472616e73616374696f6e5061796d656e7446696e616c697479547261636b65724772616e647061417574686f72697479446973636f7665727952616e646f6d6e657373436f6c6c656374697665466c6970436f756e63696c4d656d62657273446174614469726563746f7279446174614f626a65637453746f726167655265676973747279446973636f7665727956657273696f6e656453746f726556657273696f6e656453746f72655065726d697373696f6e735374616b654d696e74696e67526563757272696e675265776172647300000000387310001000000000000000b0231100010000000000000000000000e4be1100000000000000000000000000487310001500000000000000b0231100010000000000000000000000e4be11000000000000000000436f756e63696c5465726d456e6465644e6577436f756e63696c5465726d5374617274656400000000000000107410000b000000000000001c741000010000000000000000000000347410000100000000000000000000003c7410001200000000000000507410000100000000000000000000006874100001000000000000000000000070741000150000000000000088741000010000000000000000000000e4be1100000000000000000000000000a0741000100000000000000000401100010000000000000000000000b074100001000000000000007365745f636f756e63696c00000000007475100008000000000000001c361100110000001d751000570000006164645f636f756e63696c5f6d656d626572000000000000167510000700000000000000969511000c000000f47410002200000072656d6f76655f636f756e63696c5f6d656d62657200000000000000e37410001100000000000000969511000c0000007365745f7465726d5f656e64735f6174b87410002b0000002053657420626c6f636b6e756d626572207768656e20636f756e63696c207465726d2077696c6c20656e646163636f756e745f746f5f72656d6f766520416464732061207a65726f207374616b656420636f756e63696c206d656d6265726163636f756e7420466f726365207365742061207a65726f207374616b656420636f756e63696c2e205374616b657320696e206578697374696e6720636f756e63696c2077696c6c2076616e69736820696e746f207468696e20616972216163636f756e7473000000002c7610000d0000000000000000000000397610002100000000000000000000000000000000000000000000000000000000000000e4be11005c7610000000000000000000e4be1100000000000000000001000000000000006c7610000a0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100787610000000000000000000e4be1100000000000000000001000000416374697665436f756e63696c53656174733c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e0000110000000000000001000000280000005465726d456e6473417400001100000000000000010000008e0000005365656420697320616e207574663820737472696e670000ecaf11002b000000ea0300002e0000006e6f207374616b6564206163636f756e7420666f756e6400347710003a000000410000000100000063616e6e6f74206164642073616d65206163636f756e74206d756c7469706c652074696d65736163636f756e74206973206e6f74206120636f756e63696c6f726d757374207365742066757475726520626c6f636b206e756d6265722f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f636f756e63696c2e72730000807710003a000000ef0000001d0000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d7374616b652d6d6f64756c652f7372632f6c69622e7273526563757272696e6752657761726420526563697069656e747368656164206f6620526563757272696e6752657761726420526563697069656e74732f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f6f70732f61726974682e7273526563757272696e675265776172642052657761726452656c6174696f6e736869707368656164206f6620526563757272696e675265776172642052657761726452656c6174696f6e736869707374696d657374616d702073657420696e20626c6f636b20646f65736e2774206d6174636820736c6f7420696e207365616c696e76616c69642073616c7400000000000000007a10000f00000000000000107a1000020000000000000000000000207a1000030000000000000000000000387a10001000000000000000107a1000020000000000000000000000e4be1100000000000000000000000000487a10001500000000000000607a1000020000000000000000000000e4be1100000000000000000000000000bf2311000500000000000000707a1000030000000000000000000000887a1000040000000000000000000000a87a10000e00000000000000b87a1000010000000000000000000000e4be1100000000000000000000000000c07a10000e00000000000000d07a1000020000000000000000000000e07a1000010000000000000000000000e87a10000e0000000000000054231100010000000000000000000000f87a1000010000000000000050726f706f73616c4372656174656400d289110009000000aba31100030000005e7b100008000000c87b100027000000ef7b10004000000050726f706f73616c43616e63656c656450726f706f73616c53746174757355706461746564000000aba3110003000000ba7b10000e000000d289110009000000aba3110003000000b27b1000080000005e7b100008000000667b1000280000008e7b100014000000a27b10001000000054616c6c7946696e616c697a65640000467b10001800000052756e74696d65557064617465640000aba3110003000000f423110004000000187b10002e00000050726f706f73616c5665746f65640000007b10001800000020526f6f742063616e63656c6c65642070726f706f73616c202a2048617368202d2068617368206f66207761736d20636f6465206f662072756e74696d65207570646174652e54616c6c79526573756c743c426c6f636b4e756d6265723e20506172616d733a202a20566f746572202d20616e206163636f756e74206964206f66206120636f756e63696c6f722e202a204964206f6620612070726f706f73616c2e202a204b696e64206f6620766f74652e566f74654b696e6450726f706f73616c537461747573202a204163636f756e74206964206f662061206d656d6265722077686f2070726f706f7365642e202a204964206f662061206e65776c7920637265617465642070726f706f73616c2061667465722069742077617320736176656420696e2073746f726167652e4163746f7273204163746f7242794163636f756e7449644163746f7273204163636f756e744964734279526f6c6500000000000000e47c10000e00000000000000f47c1000020000000000000000000000e4be1100000000000000000000000000047d10000600000000000000f47c1000020000000000000000000000e4be11000000000000000000000000000a7d10000800000000000000f47c1000020000000000000000000000e4be11000000000000000000456e7472795265717565737465640000d289110009000000127d1000040000005374616b6564556e7374616b6564526f6c6550726f706f73616c7320417070726f76616c51756f72756d50726f706f73616c732041637469766550726f706f73616c49647350726f706f73616c7320566f746573427950726f706f73616c50726f706f73616c732054616c6c79526573756c74734163746f727320417661696c61626c65526f6c65734163746f727320506172616d65746572730000617474656d707420746f2063616c63756c617465207468652072656d61696e646572207769746820612064697669736f72206f66207a65726f000000f677100048000000120200002d000000617373657274696f6e206661696c65643a203c526563697069656e74733c543e3e3a3a657869737473282672656c6174696f6e736869702e726563697069656e742950726f706f73616c2073746174757320686173206265656e207570646174656420616c726561647950726f706f73616c732052656a656374696f6e46656550726f706f73616c73205761736d436f646542794861736850726f706f73616c732050726f706f73616c7350726f706f73616c7320566f74696e67506572696f644163746f727320526f6c65456e747279526571756573747365706f636820696e64696365732077696c6c206e6576657220726561636820325e3634206265666f726520746865206465617468206f662074686520756e6976657273653b207165640000307f10005b000000960100001b000000307f10005b0000009e010000200000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f626162652f7372632f6c69622e7273009c7f10006600000033000000120000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d7072696d6974697665732f7372632f63757276652e7273526563757272696e6752657761726400000000000000748110000a00000001010100000000007e8110000e000000000000008c8110001700000000000000000000000000000000000000e4be1100a48110000000000000000000e4be110000000000000000000100000000000000b48110001100000000000000000000007e8110000e00000000000000000000000000000000000000000000000000000000000000e4be1100b48610000000000000000000e4be110000000000000000000100000000000000c5811000130000000101010000000000d88110001700000000000000ef8110005a00000000000000000000000000000000000000e4be11004c8210000000000000000000e4be1100000000000000000001000000000000005c8210001a0000000000000000000000d88110001700000000000000000000000000000000000000000000000000000000000000e4be1100b48610000000000000000000e4be1100000000000000000001000000526563697069656e7473543a3a526563697069656e744964526563697069656e743c42616c616e63654f663c543e3e001100000000000000010000008f000000526563697069656e74734372656174656452657761726452656c6174696f6e7368697073543a3a52657761726452656c6174696f6e73686970496452657761726452656c6174696f6e736869703c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c20543a3a0a4d696e7449642c20543a3a526563697069656e7449643e0000001100000000000000010000009000000052657761726452656c6174696f6e736869707343726561746564526563757272696e6752657761726420526563697069656e7473437265617465640048be100041000000fc0500002a0000004661696c656420746f20637265617465207265776172642072656c6174696f6e73686970210000001100000001000000010000009100000048be100041000000020600002b000000526563757272696e675265776172642052657761726452656c6174696f6e736869707343726561746564000048be1000410000003c060000110000004261626500000000488610000a0000000000000000000000ad7111000300000000000000000000000000000000000000000000000000000000000000e4be1100b4861000000000000000000054861000010000000000000001000000000000003c6611000b00000000000000000000005c8610002700000000000000000000000000000000000000000000000000000000000000e4be110020a41000000000000000000084861000010000000000000001000000000000008c8610000b0000000000000000000000ad7111000300000000000000000000000000000000000000000000000000000000000000e4be1100b486100000000000000000009886100002000000000000000100000000000000a88610000b0000000000000000000000ad7111000300000000000000000000000000000000000000000000000000000000000000e4be1100b48610000000000000000000c486100001000000000000000100000000000000cc8610000a0000000000000000000000d68610000800000000000000000000000000000000000000000000000000000000000000e4be1100408710000000000000000000e08610000a000000000000000100000000000000308710000e0000000000000000000000d68610000800000000000000000000000000000000000000000000000000000000000000e4be11004087100000000000000000005087100001000000000000000100000000000000588710000c0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11005c95100000000000000000006487100009000000000000000100000000000000ac871000110000000101000000000000aba311000300000000000000bd8710000d00000000000000000000000000000000000000e4be1100cc8710000000000000000000e4be110000000000000000000100000000000000dc8710000b0000000000000000000000e78710000800000000000000000000000000000000000000000000000000000000000000e4be1100f087100000000000000000000088100002000000000000000000000045706f6368496e64657800004b8c1000150000005665633c28417574686f7269747949642c2042616265417574686f72697479576569676874293e00308c10001b00000047656e65736973536c6f7400ce8b10003e0000000c8c10002400000043757272656e74536c6f740011000000000000000100000026000000b98b10001500000052616e646f6d6e6573735b75383b2033325d0000f38910002e000000e4be110000000000218a10000b000000e4be1100000000002c8a1000410000006d8a10003e000000ab8a100045000000f08a100045000000358b100041000000768b1000430000004e65787452616e646f6d6e657373000011000000000000000100000092000000dc891000170000005365676d656e74496e646578978810001f000000e4be110000000000b68810003d000000f3881000400000003389100025000000e4be110000000000588910003b0000009389100042000000d589100007000000556e646572436f6e737472756374696f6e5665633c5b75383b2033325d3e000011000000000000000100000028000000496e697469616c697a65644d617962655672660011000000000000000100000021000000108810004000000050881000470000002054656d706f726172792076616c75652028636c656172656420617420626c6f636b2066696e616c697a6174696f6e292077686963682069732060536f6d6560206966207065722d626c6f636b20696e697469616c697a6174696f6e2068617320616c7265616479206265656e2063616c6c656420666f722063757272656e7420626c6f636b2e2052616e646f6d6e65737320756e64657220636f6e737472756374696f6e2e205765206d616b6520612074726164656f6666206265747765656e2073746f7261676520616363657373657320616e64206c697374206c656e6774682e2057652073746f72652074686520756e6465722d636f6e737472756374696f6e2072616e646f6d6e65737320696e207365676d656e7473206f6620757020746f2060554e4445525f434f4e535452554354494f4e5f5345474d454e545f4c454e475448602e204f6e63652061207365676d656e7420726561636865732074686973206c656e6774682c20776520626567696e20746865206e657874206f6e652e20576520726573657420616c6c207365676d656e747320616e642072657475726e20746f206030602061742074686520626567696e6e696e67206f662065766572792065706f63682e204e6578742065706f63682072616e646f6d6e6573732e205468652065706f63682072616e646f6d6e65737320666f7220746865202a63757272656e742a2065706f63682e20232053656375726974792054686973204d555354204e4f54206265207573656420666f722067616d626c696e672c2061732069742063616e20626520696e666c75656e6365642062792061206d616c6963696f75732076616c696461746f7220696e207468652073686f7274207465726d2e204974204d4159206265207573656420696e206d616e792063727970746f677261706869632070726f746f636f6c732c20686f77657665722c20736f206c6f6e67206173206f6e652072656d656d626572732074686174207468697320286c696b652065766572797468696e6720656c7365206f6e2d636861696e29206974206973207075626c69632e20466f72206578616d706c652c2069742063616e20626520757365642077686572652061206e756d626572206973206e656564656420746861742063616e6e6f742068617665206265656e2063686f73656e20627920616e206164766572736172792c20666f7220707572706f7365732073756368206173207075626c69632d636f696e207a65726f2d6b6e6f776c656467652070726f6f66732e2043757272656e7420736c6f74206e756d6265722e2054686520736c6f74206174207768696368207468652066697273742065706f63682061637475616c6c7920737461727465642e2054686973206973203020756e74696c2074686520666972737420626c6f636b206f662074686520636861696e2e2043757272656e742065706f636820617574686f7269746965732e2043757272656e742065706f636820696e6465782e00000000d08c10000d00000000000000ad7111000300000000000000e4be1100e08c10000000000000000000f08c1000020000000000000000000000008d10001100000000000000118d10000900000000000000e4be11001c8d100000000000000000002c8d1000050000000000000045706f63684475726174696f6e00000011000000000000000100000093000000848e100043000000c78e10003f0000004578706563746564426c6f636b54696d65543a3a4d6f6d656e74000011000000000000000100000094000000548d100041000000958d100044000000d98d1000410000001a8e1000420000005c8e10002800000020546865206578706563746564206176657261676520626c6f636b2074696d6520617420776869636820424142452073686f756c64206265206372656174696e6720626c6f636b732e2053696e636520424142452069732070726f626162696c6973746963206974206973206e6f74207472697669616c20746f20666967757265206f7574207768617420746865206578706563746564206176657261676520626c6f636b2074696d652073686f756c64206265206261736564206f6e2074686520736c6f74206475726174696f6e20616e642074686520736563757269747920706172616d657465722060636020287768657265206031202d20636020726570726573656e7473207468652070726f626162696c697479206f66206120736c6f74206265696e6720656d707479292e20546865206e756d626572206f66202a2a736c6f74732a2a207468617420616e2065706f63682074616b65732e20576520636f75706c652073657373696f6e7320746f2065706f6368732c20692e652e2077652073746172742061206e65772073657373696f6e206f6e636520746865206e65772065706f636820626567696e732e50726f706f73616c730000000000389410000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100489410000000000000000000589410000200000000000000010000000000000068941000080000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be11007094100000000000000000008094100001000000000000000100000000000000889410000f0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100989410000000000000000000a894100001000000000000000100000000000000b09410000c0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100bc9410000000000000000000cc94100001000000000000000100000000000000303711000c0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100d49410000000000000000000e494100001000000000000000100000000000000ec9410000a0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f89410000000000000000000e4be11000000000000000000010000000000000008951000110000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11001c9510000000000000000000e4be1100000000000000000001000000000000002c9510000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11003c9510000000000000000000e4be1100000000000000000001000000000000004c9510000d0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be11005c95100000000000000000006c95100001000000000000000100000000000000068f1000090000000101000000000000aba311000300000000000000749510004c00000000000000000000000000000000000000e4be1100c09510000000000000000000d095100001000000000000000100000000000000d8951000110000000000000000000000068f11000800000000000000000000000000000000000000000000000000000000000000e4be110020a410000000000000000000ec95100001000000000000000100000000000000f49510000e0000000101000000000000c53611000700000000000000d68b11000700000000000000000000000000000000000000e4be110004961000000000000000000014961000010000000000000001000000000000001c9610000f0000000101000000000000aba3110003000000000000002b9610001d00000000000000000000000000000000000000e4be1100489610000000000000000000e4be11000000000000000000010000000000000058961000180000000101000000000000709610001300000000000000b27b10000800000000000000000000000000000000000000e4be1100849610000000000000000000e4be110000000000000000000100000000000000949610000c0000000101000000000000aba311000300000000000000a09610001b00000000000000000000000000000000000000e4be1100bc9610000000000000000000e4be1100000000000000000001000000417070726f76616c51756f72756d000011000000000000000100000095000000bc98100032000000ee9810002f0000004d696e5374616b6511000000000000000100000096000000769810004600000043616e63656c6c6174696f6e46656500110000000000000001000000970000002a9810004c00000052656a656374696f6e46656511000000000000000100000098000000ee9710003c000000110000000000000001000000990000009d971000510000004e616d654d61784c656e00001100000000000000010000009a0000004465736372697074696f6e4d61784c656e0000001100000000000000010000009b0000005761736d436f64654d61784c656e00001100000000000000010000009c00000050726f706f73616c436f756e740000001100000000000000010000002c0000006e9710002f00000052756e74696d655570677261646550726f706f73616c3c543a3a4163636f756e7449642c2042616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c20540a3a3a486173683e1100000000000000010000009d0000004e9710002000000041637469766550726f706f73616c49647300000005971000490000005761736d436f6465427948617368000011000000000000000100000029000000cc96100039000000566f746573427950726f706f73616c5665633c28543a3a4163636f756e7449642c20566f74654b696e64293e11000000000000000100000028000000566f746542794163636f756e74416e6450726f706f73616c28543a3a4163636f756e7449642c2075333229001100000000000000010000002100000054616c6c79526573756c747354616c6c79526573756c743c543a3a426c6f636b4e756d6265723e001100000000000000010000009e00000020476574205741534d20636f6465206f662072756e74696d6520757067726164652062792068617368206f662069747320636f6e74656e742e20496473206f662070726f706f73616c73207468617420617265206f70656e20666f7220766f74696e67202868617665206e6f74206265656e2066696e616c697a656420796574292e204765742070726f706f73616c2064657461696c73206279206974732069642e20436f756e74206f6620616c6c2070726f706f73616c7320746861742068617665206265656e20637265617465642e204d6178206475726174696f6e206f662070726f706f73616c20696e20626c6f636b7320756e74696c2069742077696c6c2062652065787069726564206966206e6f7420656e6f75676820766f7465732e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f73616c207761732072656a65637465642e20412066656520746f20626520736c617368656420286275726e2920696e206361736520612070726f706f736572206465636964657320746f2063616e63656c20612070726f706f73616c2e204d696e696d756d20616d6f756e74206f6620612062616c616e636520746f206265207374616b656420696e206f7264657220746f206d616b6520612070726f706f73616c2e20412070657263656e742028757020746f2031303029206f662074686520636f756e63696c207061727469636970616e74732074686174206d75737420766f74652061666669726d61746976656c7920696e206f7264657220746f20706173732e50726f706f73616c73204e616d654d61784c656e50726f706f73616c73204465736372697074696f6e4d61784c656e50726f706f73616c73205761736d436f64654d61784c656e50726f706f73616c732050726f706f73616c436f756e7400c99b10003c000000d90000000100000050726f706f73616c73204d696e5374616b655374616b6520697320746f6f206c6f7750726f706f73616c2063616e6e6f74206861766520616e20656d707479206e616d654e616d6520697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479206465736372697074696f6e4465736372697074696f6e20697320746f6f206c6f6e6750726f706f73616c2063616e6e6f74206861766520616e20656d707479205741534d20636f64655741534d20636f646520697320746f6f206269674f6e6c79206d656d626572732063616e206d616b6520612070726f706f73616c42616c616e636520697320746f6f206c6f7720746f206265207374616b65644f6e6c7920636f756e63696c6f72732063616e20766f7465206f6e2070726f706f73616c73546869732070726f706f73616c20646f6573206e6f7420657869737450726f706f73616c2069732066696e616c697a656420616c7265616479566f74696e6720706572696f64206973206578706972656420666f7220746869732070726f706f73616c596f75206861766520616c726561647920766f746564206f6e20746869732070726f706f73616c50726f706f73616c7320566f746542794163636f756e74416e6450726f706f73616c596f7520646f206e6f74206f776e20746869732070726f706f73616c50726f706f73616c732043616e63656c6c6174696f6e466565617070726f76616c2071756f726f6d206d7573742062652067726561746572207468616e207a65726f2f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f70726f706f73616c732e727300000000000000e49c10000f00000000000000f49c1000040000000000000000000000549d1000040000000000000000000000749d10001000000000000000849d1000020000000000000000000000b49d1000040000000000000000000000d49d10000f00000000000000e49d1000010000000000000000000000fc9d1000010000000000000000000000049e10000d00000000000000e49d1000010000000000000000000000149e10000100000000000000000000001c9e10001300000000000000309e1000010000000000000000000000e4be110000000000000000006372656174655f70726f706f73616c0000000000124211000500000000000000a73711000c000000000000005da010000400000000000000d68b11000700000000000000fa7811000b00000000000000d68b1100070000000000000061a010000900000000000000d68b110007000000e99e1000440000002d9f100006000000d09f10008d000000cc9f100004000000766f74655f6f6e5f70726f706f73616c00000000de9e10000b00000000000000aba311000300000000000000683f11000400000000000000b27b100008000000e99e1000440000002d9f100006000000339f100099000000cc9f10000400000063616e63656c5f70726f706f73616c0000000000de9e10000b00000000000000aba3110003000000859e1000590000007665746f5f70726f706f73616c000000519e1000340000007365745f617070726f76616c5f71756f72756d0000000000489e10000900000000000000aba31100030000006e65775f76616c75652043616e63656c20612070726f706f73616c20616e642072657475726e207374616b6520776974686f757420736c617368696e672043616e63656c20612070726f706f73616c20627920697473206f726967696e616c2070726f706f7365722e20536f6d65206665652077696c6c2062652077697468647261776e2066726f6d206869732062616c616e63652e70726f706f73616c5f696420557365206e65787420636f646520746f2063726561746520612070726f706f73616c2066726f6d2053756273747261746520554927732077656220636f6e736f6c653a206060606a7320706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e766f74654f6e50726f706f73616c28312c207b206f7074696f6e3a2022417070726f7665222c205f747970653a2022566f74654b696e6422207d29207d292e74696528636f6e736f6c652e6c6f67292060606020706f7374287b2073656e6465723a2072756e74696d652e696e64696365732e737335384465636f646528274637476827292c2063616c6c3a2063616c6c732e70726f706f73616c732e63726561746550726f706f73616c28323530302c20223078313233222c20223078343536222c202230783738392229207d292e74696528636f6e736f6c652e6c6f67296e616d657761736d5f636f64654163746f72730000000030a310000a0000000101000000000000127d100004000000000000003aa310002c00000000000000000000000000000000000000e4be1100d0a31000000000000000000068a310000100000000000000000000000000000070a310000e00000000000000000000007ea310000900000000000000000000000000000000000000000000000000000000000000e4be110088a31000000000000000000098a3100001000000000000000100000000000000a0a310000f00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be110020a410000000000000000000b0a3100001000000000000000100000000000000b8a31000100000000101000000000000969511000c00000000000000c8a310000800000000000000000000000000000000000000e4be1100d0a310000000000000000000e0a3100001000000000000000000000000000000e8a31000100000000101000000000000127d100004000000000000001c3611001100000000000000000000000000000000000000e4be110020a410000000000000000000f8a310000100000000000000010000000000000000a4100014000000010100000000000014a410000b000000000000001c3611001100000000000000000000000000000000000000e4be110020a41000000000000000000030a410000100000000000000010000000000000038a4100011000000000000000000000049a410000b00000000000000000000000000000000000000000000000000000000000000e4be110054a41000000000000000000064a410000600000000000000010000000000000094a410000f0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100a4a410000000000000000000b4a41000010000000000000001000000506172616d6574657273526f6c65506172616d65746572733c42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e000036a7100033000000417661696c61626c65526f6c65735665633c526f6c653e001100000000000000010000002800000015a71000210000004163746f724163636f756e744964730009a710000c0000004163746f7242794163636f756e7449644163746f723c543e11000000000000000100000021000000e4a61000250000004163636f756e744964734279526f6c65bea61000260000004163636f756e7449647342794d656d62657249644d656d62657249643c543e001100000000000000010000002800000093a610002b000000526f6c65456e747279526571756573747352657175657374733c543e11000000000000000100000028000000eea410004d0000003ba510004500000080a5100063000000e3a510003c0000001fa610003c0000005ba6100038000000526571756573744c69666554696d65001100000000000000010000009f000000bca410003200000020456e747279207265717565737420657870697265732061667465722074686973206e756d626572206f6620626c6f636b732046697273742073746570206265666f726520656e746572206120726f6c65206973207265676973746572696e6720696e74656e7420776974682061206e6577206163636f756e742f6b65792e205468697320697320646f6e652062792073656e64696e67206120726f6c655f656e7472795f7265717565737428292066726f6d20746865206e6577206163636f756e742e20546865206d656d626572206d757374207468656e2073656e642061207374616b652829207472616e73616374696f6e20746f20617070726f766520746865207265717565737420616e6420656e74657220746865206465736972656420726f6c652e20546865206163636f756e74206d616b696e672074686520726571756573742077696c6c20626520626f6e64656420616e64206d75737420686176652073756666696369656e742062616c616e636520746f20636f76657220746865206d696e696d756d207374616b6520666f722074686520726f6c652e20426f6e64696e67206f6e6c79206f6363757273206166746572207375636365737366756c20656e74727920696e746f206120726f6c652e206163746f72206163636f756e7473206173736f63696174656420776974682061206d656d626572206964206163746f72206163636f756e7473206173736f6369617465642077697468206120726f6c65206163746f72206163636f756e7473206d617070656420746f207468656972206163746f72204163746f7273206c6973742074686520726f6c6573206d656d626572732063616e20656e74657220696e746f20726571756972656d656e747320746f20656e74657220616e64206d61696e7461696e2073746174757320696e20726f6c65734163746f727320526571756573744c69666554696d6500e4a8100034000000ef000000010000006163636f756e7420616c72656164792075736564696e61637469766520726f6c6563616e6e6f742070617920726f6c6520656e7472792072657175657374206665656e6f20726f6c6520656e7472792072657175657374206d617463686573726f6c6520736c6f74732066756c6c6e6f7420656e6f7567682062616c616e636520746f207374616b654163746f7273204163636f756e7449647342794d656d62657249644163746f7273204163746f724163636f756e744964736d656d62657273206f6e6c792063616e206163636570742073746f7261676520656e74727920726571756573746e6f7420726f6c65206b65796f6e6c79206d656d6265722063616e20756e7374616b652073746f726167652070726f766964657200e4a81000340000009d010000190000006572726f7220747279696e6720746f2072656d6f7665206e6f6e206163746f72206163636f756e742f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f726f6c65732f6163746f72732e72736e6f20706172616d657465727320666f7220726f6c6500000000000090aa10001200000000000000a4aa1000020000000000000000000000e4be1100000000000000000000000000124211000500000000000000d4aa100002000000000000000000000004ab10000100000000000000000000000cab1000070000000000000014ab1000010000000000000000000000e4be11000000000000000000000000002cab1000130000000000000040ab1000020000000000000000000000e4be110000000000000000000000000070ab1000130000000000000084ab1000010000000000000000000000e4be11000000000000000000000000009cab10001600000000000000b4ab1000010000000000000000000000e4be1100000000000000000000000000ccab10001b00000000000000b4ab1000010000000000000000000000e4be1100000000000000000000000000e7ab10000c0000000000000014ab1000010000000000000000000000e4be11000000000000000000726f6c655f656e7472795f72657175657374000000000000f3ab10000400000000000000127d1000040000000000000000ae1100090000000000000014a410000b00000000000000f3ab10000400000000000000127d1000040000000000000002ac10000d00000000000000969511000c0000000fac100020000000756e7374616b65000000000002ac10000d00000000000000969511000c0000007365745f726f6c655f706172616d65746572730000000000f3ab10000400000000000000127d10000400000000000000fcab100006000000000000003aa310002c0000007365745f617661696c61626c655f726f6c65730000000000f7ab100005000000000000007ea31000090000006164645f746f5f617661696c61626c655f726f6c6573000000000000f3ab10000400000000000000127d10000400000072656d6f76655f66726f6d5f617661696c61626c655f726f6c657372656d6f76655f6163746f72726f6c65726f6c6573706172616d736163746f725f6163636f756e74204d656d6265722061637469766174696e6720656e7472792072657175657374004cbc1100480000000e02000023000000617373657274696f6e206661696c65643a20656e64203c3d206c656e617373657274696f6e206661696c65643a20696e646578203c3d206c656e617373657274696f6e206661696c65643a20696e646578203c206c656e4368616e6e656c2068616e646c6520746f6f2073686f72742e4368616e6e656c2068616e646c6520746f6f206c6f6e672e4368616e6e656c206465736372697074696f6e20746f6f2073686f72744368616e6e656c206465736372697074696f6e20746f6f206c6f6e674368616e6e656c20696420696e76616c69644368616e6e656c206372656174696f6e2063757272656e746c792064697361626c65644368616e6e656c2068616e646c6520697320616c72656164792074616b656e4368616e6e656c207469746c6520746f6f2073686f72744368616e6e656c207469746c6520746f6f206c6f6e674368616e6e656c206176617461722055524c20746f6f2073686f72744368616e6e656c206176617461722055524c20746f6f206c6f6e674368616e6e656c2062616e6e65722055524c20746f6f2073686f72744368616e6e656c2062616e6e65722055524c20746f6f206c6f6e674f726967696e20646f6573206e6f74206d61746368206368616e6e656c20726f6c65206163636f756e7443757272656e74206c65616420697320616c72656164792073657443757272656e74206c656164206973206e6f74207365744f726967696e206973206e6f74206c6561644f726967696e206973206e6f74206170706c6963616e7443757261746f72206f70656e696e6720646f6573206e6f7420657869737443757261746f72206170706c69636174696f6e20646f6573206e6f74206578697374496e73756666696369656e742062616c616e636520746f206170706c795375636365737366756c2063757261746f72612070706c69636174696f6e20646f6573206e6f742065786973744d656d626572206e6f206c6f6e676572207265676973747261626c652061732063757261746f7243757261746f7220646f6573206e6f7420657869737443757261746f72206973206e6f742061637469766543757261746f72206578697420726174696f6e616c65207465787420697320746f6f206c6f6e6743757261746f72206578697420726174696f6e616c65207465787420697320746f6f2073686f727443757261746f72206170706c69636174696f6e207465787420746f6f206c6f6e6743757261746f72206170706c69636174696f6e207465787420746f6f2073686f72745369676e6572206973206e6f742063757261746f7220726f6c65206163636f756e74556e7374616b657220646f6573206e6f7420657869737443757261746f7220686173206e6f20726563757272696e672072657761726443757261746f72206e6f7420636f6e74726f6c6c6564206279206d656d6265724f70656e696e6720646f6573206e6f742065786973744f70656e696e67204973204e6f7420696e2057616974696e6720746f20626567696e4f70656e696e67204973204e6f7420696e2057616974696e674f70656e696e67446f65734e6f7445786973744f70656e696e674e6f74496e526576696577506572696f6453746167654170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320746f6f2073686f72744170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320746f6f2073686f7274526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320746f6f2073686f7274526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320746f6f2073686f72744170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320726564756e64616e744170706c69636174696f6e207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320726564756e64616e74526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72207375636365737366756c206170706c6963616e747320726564756e64616e74526f6c65207374616b6520756e7374616b696e6720706572696f6420666f72206661696c6564206170706c6963616e747320726564756e64616e744170706c69636174696f6e446f65734e6f7445786973744170706c69636174696f6e4e6f74496e416374697665537461676552657761726420706f6c6963792068617320696e76616c6964206e657874207061796d656e7420626c6f636b206e756d626572576f726b696e672067726f7570206d696e7420646f6573206e6f742065786973744170706c69636174696f6e4e6f744163746976654f70656e696e674e6f74416363657074696e674170706c69636174696f6e73556e7374616b696e67506572696f64546f6f53686f7274202e2e2e526564756e64616e74556e7374616b696e67506572696f6450726f7669646564202e2e2e4973206e6f742061206d656d6265724163636f756e74206973206e6f7420636f6e74726f6c6c6572206163636f756e74206f66206d656d6265724f70656e696e6720646f6573206e6f7420616374697661746520696e2074686520667574757265526f6c65207374616b6520616d6f756e74206c657373207468616e206d696e696d756d2063757272656e63792062616c616e63655374616b6550726f76696465645768656e526564756e64616e74202e2e2e5374616b654d697373696e675768656e5265717569726564202e2e2e5374616b65416d6f756e74546f6f4c6f77202e2e2e4f70656e696e674e6f74496e416363657074696e674170706c69636174696f6e7353746167654e65774170706c69636174696f6e57617343726f776465644f75744170706c69636174696f6e20726174696f6e696e6720686173207a65726f206d617820616374697665206170706c6963616e7473556e7369676e6564206f726967696e4d656d62657220696420697320696e76616c69645369676e657220646f6573206e6f74206d6174636820636f6e74726f6c6c6572206163636f756e744f726967696e206d75737420626520636f6e74726f6c6c6572206f7220726f6f74206163636f756e74206f66206d656d6265724d656d62657220616c72656164792068617320616e20616374697665206170706c69636174696f6e206f6e20746865206f70656e696e67436f6e74656e74576f726b696e6747726f75702043757272656e744c6561644964436f6e74656e74576f726b696e6747726f7570204c6561644279496468656164206f6620436f6e74656e74576f726b696e6747726f7570204c65616442794964436f6e74656e74576f726b696e6747726f75702043757261746f724f70656e696e674279496468656164206f6620436f6e74656e74576f726b696e6747726f75702043757261746f724f70656e696e6742794964436f6e74656e74576f726b696e6747726f75702043757261746f724170706c69636174696f6e4279496468656164206f6620436f6e74656e74576f726b696e6747726f75702043757261746f724170706c69636174696f6e42794964436f6e74656e74576f726b696e6747726f7570204368616e6e656c4279496468656164206f6620436f6e74656e74576f726b696e6747726f7570204368616e6e656c42794964436f6e74656e74576f726b696e6747726f7570204368616e6e656c4964427948616e646c6568656164206f6620436f6e74656e74576f726b696e6747726f7570204368616e6e656c4964427948616e646c65436f6e74656e74576f726b696e6747726f75702043757261746f724279496468656164206f6620436f6e74656e74576f726b696e6747726f75702043757261746f7242794964436f6e74656e74576f726b696e6747726f7570204e65787443757261746f724964436f6e74656e74576f726b696e6747726f7570205072696e636970616c4279496468656164206f6620436f6e74656e74576f726b696e6747726f7570205072696e636970616c42794964436f6e74656e74576f726b696e6747726f757020556e7374616b657242795374616b65496468656164206f6620436f6e74656e74576f726b696e6747726f757020556e7374616b657242795374616b654964000000000000acbb10000e00000000000000bcbb1000010000000000000000000000e4be1100000000000000000000000000c4bb10001b00000000000000bcbb1000010000000000000000000000e4be1100000000000000000000000000dfbb10000700000000000000e8bb1000010000000000000000000000e4be1100000000000000000000000000f0bb10000900000000000000e8bb1000010000000000000000000000e4be1100000000000000000000000000f9bb100013000000000000000cbc1000010000000000000000000000e4be110000000000000000000000000014bc10001b000000000000000cbc1000010000000000000000000000e4be11000000000000000000000000002fbc10001d000000000000000cbc1000010000000000000000000000e4be11000000000000000000000000004cbc1000140000000000000060bc1000020000000000000000000000e4be110000000000000000000000000070bc1000110000000000000084bc1000010000000000000000000000e4be11000000000000000000000000008cbc10001700000000000000a4bc1000020000000000000000000000e4be1100000000000000000000000000b4bc10000d0000000000000084bc1000010000000000000000000000e4be1100000000000000000000000000c1bc1000100000000000000084bc1000010000000000000000000000e4be1100000000000000000000000000d1bc10001c00000000000000f0bc1000010000000000000000000000e4be1100000000000000000000000000f8bc10001b00000000000000f0bc1000010000000000000000000000e4be110000000000000000000000000013bd100019000000000000002cbd1000020000000000000000000000e4be11000000000000000000000000003cbd10001b000000000000002cbd1000020000000000000000000000e4be110000000000000000000000000057bd10001d00000000000000bcbb1000010000000000000000000000e4be110000000000000000000000000074bd10001d00000000000000a8201100010000000000000000000000e4be110000000000000000004368616e6e656c437265617465640000e6bd1000090000004368616e6e656c4f776e6572736869705472616e736665727265644c6561645365740000e0bd1000060000004c656164556e73657443757261746f724f70656e696e674164646564aebd100010000000416363657074656443757261746f724170706c69636174696f6e73426567616e43757261746f724170706c69636174696f6e52657669657743757261746f724f70656e696e6746696c6c6564aebd100010000000bebd1000220000005465726d696e6174656443757261746f7200000091bd1000090000004170706c6965644f6e43757261746f724f70656e696e6700aebd1000100000009abd10001400000043757261746f7245786974656443757261746f72556e7374616b696e6743757261746f724170706c69636174696f6e5465726d696e617465640000009abd10001400000043757261746f724170706c69636174696f6e57697468647261776e43757261746f72526f6c654163636f756e745570646174656491bd100009000000d28911000900000043757261746f725265776172644163636f756e74557064617465644368616e6e656c5570646174656442794375726174696f6e4163746f724368616e6e656c4372656174696f6e456e61626c65645570646174656443757261746f72496443757261746f724170706c69636174696f6e496443757261746f724f70656e696e67496443757261746f724170706c69636174696f6e4964546f43757261746f7249644d61704c65616449644368616e6e656c49644368616e6e656c206d7573742065786973740000001100000008000000040000002f00000048be100041000000030800001100000043757261746f72206d757374206578697374000048be100041000000fd070000110000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f636f6e74656e745f776f726b696e675f67726f75702f6c69622e7273436f6e74656e74576f726b696e6747726f7570204e6578745072696e636970616c496448be100041000000b50a00001800000053686f756c64206e6f7420626520706f737369626c652c206f6e6c792063757261746f727320756e7374616b6520696e2074686973206d6f64756c652063757272656e746c792e0048be100041000000bc0a00000d00000048be100041000000c00a00002100000043757261746f72206d75737420626520696e20756e7374616b696e672073746167652e0048be100041000000cb0a000011000000436f6e74656e74576f726b696e6747726f7570000000000004c8100004000000000000000000000008c810001d00000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000028c810000100000000000000010000000000000030c810000d00000000000000000000003dc810000900000000000000000000000000000000000000000000000000000000000000e4be110048c81000000000000000000058c810000100000000000000000000000000000060c810000800000001010100000000003dc81000090000000000000068c810003b00000000000000000000000000000000000000e4be1100a4c810000000000000000000b4c8100001000000000000000100000000000000bcc810000a00000000000000000000003dc810000900000000000000000000000000000000000000000000000000000000000000e4be110020cc10000000000000000000c8c8100001000000000000000100000000000000d0c81000120000000101010000000000e2c810001300000000000000f5c810005300000000000000000000000000000000000000e4be110048c91000000000000000000058c910000100000000000000010000000000000060c91000140000000000000000000000e2c810001300000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000074c91000010000000000000001000000000000007cc9100016000000010101000000000092c910001700000000000000a9c910005500000000000000000000000000000000000000e4be110000ca1000000000000000000010ca10000100000000000000010000000000000018ca100018000000000000000000000092c910001700000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000030ca10000100000000000000010000000000000038ca10000b000000010101000000000043ca10000c000000000000004fca10004200000000000000000000000000000000000000e4be110094ca10000000000000000000a4ca100001000000000000000100000000000000acca10000d000000000000000000000043ca10000c00000000000000000000000000000000000000000000000000000000000000e4be110020cc10000000000000000000bcca100001000000000000000100000000000000c4ca1000110000000101010000000000d68b1100070000000000000043ca10000c00000000000000000000000000000000000000e4be110020cc10000000000000000000d8ca100003000000000000000100000000000000f0ca10000b0000000101010000000000fbca10000c0000000000000007cb10007f00000000000000000000000000000000000000e4be110088cb1000000000000000000098cb100001000000000000000100000000000000a0cb10000d0000000000000000000000fbca10000c00000000000000000000000000000000000000000000000000000000000000e4be110020cc10000000000000000000b0cb100001000000000000000100000000000000b8cb10000d0000000101010000000000c5cb10000e00000000000000d3cb10002500000000000000000000000000000000000000e4be1100f8cb1000000000000000000008cc10000100000000000000010000000000000010cc10000f0000000000000000000000c5cb10000e00000000000000000000000000000000000000000000000000000000000000e4be110020cc1000000000000000000030cc10000100000000000000010000000000000038cc1000160000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be110050cc1000000000000000000060cc10000100000000000000010000000000000068cc100011000000010101000000000079cc10000a0000000000000083cc10002d00000000000000000000000000000000000000e4be1100b0cc10000000000000000000c0cc100001000000000000000100000000000000c8cc10001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e0cc100001000000000000000100000000000000e8cc10001600000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be110000000000000000000100000000000000fecc10001c00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be1100000000000000000001000000000000001acd10001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000031cd10001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000048cd10001800000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000060cd10002300000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000000000000083cd10001800000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be11009ccd10000000000000000000e4be11000000000000000000010000004d696e743c54206173206d696e74696e673a3a54726169743e3a3a4d696e7449640000004ed110003800000043757272656e744c65616449644c65616449643c543e0000110000000000000001000000210000003cd11000120000004c656164427949644c6561643c543a3a4163636f756e7449642c20543a3a52657761726452656c6174696f6e7368697049642c20543a3a426c6f636b4e756d6265723e00110000000000000001000000a000000015d11000270000004e6578744c65616449640000efd010002600000043757261746f724f70656e696e674279496443757261746f724f70656e696e6749643c543e43757261746f724f70656e696e673c543a3a4f70656e696e6749642c20543a3a426c6f636b4e756d6265722c2042616c616e63654f663c543e2c0a43757261746f724170706c69636174696f6e49643c543e3e110000000000000001000000a1000000cbd01000240000004e65787443757261746f724f70656e696e6749649dd010002e00000043757261746f724170706c69636174696f6e4279496443757261746f724170706c69636174696f6e49643c543e43757261746f724170706c69636174696f6e3c543a3a4163636f756e7449642c2043757261746f724f70656e696e6749643c543e2c20543a3a4d656d62657249642c20540a3a3a4170706c69636174696f6e49643e0000110000000000000001000000a20000006ad01000330000004e65787443757261746f724170706c69636174696f6e496437d01000330000004368616e6e656c427949644368616e6e656c49643c543e4368616e6e656c3c543a3a4d656d62657249642c20543a3a4163636f756e7449642c20543a3a426c6f636b4e756d6265722c205072696e636970616c49643c543e3e000000110000000000000001000000a30000000dd010002a0000004e6578744368616e6e656c4964000000d7cf1000360000004368616e6e656c4964427948616e646c65000000f7ce10004e00000045cf100070000000b5cf10002200000043757261746f724279496443757261746f7249643c543e43757261746f723c543a3a4163636f756e7449642c20543a3a52657761726452656c6174696f6e7368697049642c20543a3a5374616b6549642c20543a3a0a426c6f636b4e756d6265722c204c65616449643c543e2c2043757261746f724170706c69636174696f6e49643c543e2c205072696e636970616c49643c543e3e0000110000000000000001000000a4000000cdce10002a0000004e65787443757261746f724964000000acce1000210000005072696e636970616c427949645072696e636970616c49643c543e5072696e636970616c3c43757261746f7249643c543e2c204368616e6e656c49643c543e3e110000000000000001000000210000008ece10001e0000004e6578745072696e636970616c496400110000000000000001000000260000007ace1000140000004368616e6e656c4372656174696f6e456e61626c656400001100000000000000010000002100000025ce100055000000556e7374616b657242795374616b6549645374616b6549643c543e576f726b696e6747726f7570556e7374616b65723c4c65616449643c543e2c2043757261746f7249643c543e3e110000000000000001000000a5000000e5cd1000400000004368616e6e656c48616e646c65436f6e73747261696e7400accd1000390000004368616e6e656c5469746c65436f6e73747261696e744368616e6e656c4465736372697074696f6e436f6e73747261696e744368616e6e656c417661746172436f6e73747261696e744368616e6e656c42616e6e6572436f6e73747261696e744f70656e696e6748756d616e5265616461626c655465787443757261746f724170706c69636174696f6e48756d616e5265616461626c655465787443757261746f7245786974526174696f6e616c65546578740011000000000000000100000024000000204c696d6974732074686520746f74616c206e756d626572206f662063757261746f72732077686963682063616e206265206163746976652e205265636f7665722063757261746f722062792074686520726f6c65207374616b652077686963682069732063757272656e746c7920756e7374616b696e672e20576865746865722069742069732063757272656e746c7920706f737369626c6520746f206372656174652061206368616e6e656c2076696120606372656174655f6368616e6e656c602065787472696e7369632e204e657874206964656e74696669657220666f72204d617073206964656e74696669657220746f207072696e636970616c2e204e657874206964656e74696669657220666f72206e65772063757261746f722e204d617073206964656e74696669657220746f20636f72726573706f6e64696e672063757261746f722e204d6170732028756e6971756529206368616e6e656c2068616e646c6520746f2074686520636f72726573706f6e64696e67206964656e74696669657220666f7220746865206368616e6e656c2e204d617070696e6720697320726571756972656420746f20616c6c6f7720656666696369656e7420284f286c6f67204e2929206f6e2d636861696e20766572696669636174696f6e207468617420612070726f706f7365642068616e646c6520697320696e6465656420756e69717565206174207468652074696d65206974206973206265696e672070726f706f7365642e204964656e74696669657220746f206265207573656420627920746865206e657874206368616e6e656c20696e74726f64756365642e204d617073206964656e74696669657220746f20636f72726573706f6e64696e67206368616e6e656c2e204e657874206964656e7469666965722076616c756520666f72206e65772063757261746f72206170706c69636174696f6e2e204d617073206964656e74696669657220746f2063757261746f72206170706c69636174696f6e206f6e206f70656e696e672e204e657874206964656e7469666965722076616c7565666f72206e65772063757261746f72206f70656e696e672e204d617073206964656e74696665697220746f2063757261746f72206f70656e696e672e204e657874206964656e74696669657220666f72206e65772063757272656e74206c6561642e204d617073206964656e74696669657220746f20636f72726573706f6e64696e67206c6561642e205468652063757272656e74206c6561642e20546865206d696e742063757272656e746c792066756e64696e6720746865207265776172647320666f722074686973206d6f64756c652e436f6e74656e74576f726b696e6747726f7570204368616e6e656c4372656174696f6e456e61626c6564436f6e74656e74576f726b696e6747726f7570204368616e6e656c48616e646c65436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c5469746c65436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c4465736372697074696f6e436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c417661746172436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204368616e6e656c42616e6e6572436f6e73747261696e74436f6e74656e74576f726b696e6747726f7570204f70656e696e6748756d616e5265616461626c6554657874436f6e74656e74576f726b696e6747726f75702043757261746f724170706c69636174696f6e48756d616e5265616461626c6554657874436f6e74656e74576f726b696e6747726f75702043757261746f7245786974526174696f6e616c6554657874000048be1000410000004d04000001000000436f6e74656e74576f726b696e6747726f7570204e6578744368616e6e656c4964617373657274696f6e206661696c65643a20726567697374657265645f726f6c65000048be100041000000aa0400000d000000617373657274696f6e206661696c65643a20756e726567697374657265645f726f6c650048be100041000000cf0400000d00000048be100041000000d70400000d000000000000000000000000000000436f6e74656e74576f726b696e6747726f7570204e65787443757261746f724f70656e696e674964436f6e74656e74576f726b696e6747726f7570204d696e74617373657274696f6e206661696c65643a2077697468647261775f726573756c742e69735f6f6b282900000048be100041000000020a00000d000000436f6e74656e74576f726b696e6747726f7570204e65787443757261746f724170706c69636174696f6e4964617373657274696f6e206661696c65643a206164645f6170706c69636174696f6e5f726573756c742e69735f6f6b282948be100041000000da0600000d0000004d757374206265207365742c2073696e63652063757261746f722068617320726563757272696e6720726577617264001100000001000000010000009100000048be100041000000270700000d000000436f6e74656e74576f726b696e6747726f7570204e6578744c6561644964000048be1000410000009a0700000d00000048be100041000000b50700000d00000052656c6174696f73686970206d7573742065786973740000110000000000000001000000a600000048be1000410000001d0a00000d000000556e7374616b696e67206d75737420626520706f737369626c6520617420746869732074696d6500110000000100000001000000a700000048be100041000000590a00000d000000282900000000000010d910000e0000000000000020d91000090000000000000000000000f8d9100001000000000000000000000000da10001a000000000000001cda100003000000000000000000000064da10000500000000000000000000008cda10001700000000000000a4da10000700000000000000000000004cdb100001000000000000000000000054db1000200000000000000074db1000040000000000000000000000d4db1000010000000000000000000000dcdb10001300000000000000f0db100003000000000000000000000038dc100001000000000000000000000040dc10001b000000000000005cdc100001000000000000000000000074dc10000100000000000000000000007cdc10001e000000000000005cdc10000100000000000000000000009cdc1000010000000000000000000000a4dc10001400000000000000b8dc100003000000000000000000000000dd100001000000000000000000000008dd10001c0000000000000024dd1000010000000000000000000000e4be11000000000000000000000000003cdd10001d0000000000000024dd10000100000000000000000000005cdd100001000000000000000000000064dd100018000000000000007cdd10000600000000000000000000000cde100001000000000000000000000014de10001b0000000000000030de100003000000000000000000000078de100001000000000000000000000080de10001d00000000000000a0de1000020000000000000000000000d0de1000020000000000000000000000e0de10001200000000000000f4de100002000000000000000000000024df10000100000000000000000000002cdf10001600000000000000f4de100002000000000000000000000044df10000100000000000000000000004cdf1000080000000000000054df100002000000000000000000000084df10000100000000000000000000008cdf10000a00000000000000e4be110000000000000000000000000098df1000010000000000000000000000a0df10001c00000000000000bcdf100001000000000000000000000038dc1000010000000000000000000000d4df10001600000000000000ecdf100001000000000000000000000004e0100001000000000000006372656174655f6368616e6e656c000000000000fbe610000500000000000000c6a111000b00000000000000b6e010000c00000000000000969511000c0000000000000000e71000070000000000000007e7100012000000000000007d9c11000600000000000000d68b1100070000000000000093781100050000000000000019e710000c00000000000000fa7811000b0000000000000019e710000c0000000000000025e71000060000000000000019e710000c000000000000002be71000060000000000000019e710000c0000000000000031e71000120000000000000043e7100018000000e5e61000160000007472616e736665725f6368616e6e656c5f6f776e6572736869700000000000008de410000a0000000000000043ca10000c00000000000000dce610000900000000000000c6a111000b00000000000000c5e110001000000000000000969511000c00000090e5100035000000e4be110000000000c5e5100037000000fce51000430000003fe610009d0000007570646174655f6368616e6e656c5f61735f6f776e657200000000008de410000a0000000000000043ca10000c0000000000000001e510000a000000000000000be510000f000000000000001ae51000090000000000000023e51000140000000000000037e510000f0000000000000023e51000140000000000000046e510000a0000000000000023e51000140000000000000050e510000a0000000000000023e5100014000000000000005ae51000160000000000000070e5100020000000d3e410002e0000007570646174655f6368616e6e656c5f61735f6375726174696f6e5f6163746f720000000064e410000e0000000000000072e410001b000000000000008de410000a0000000000000043ca10000c0000000000000097e410000c00000000000000177311000c00000000000000a3e410001300000000000000b6e410001d00000041e41000230000006164645f63757261746f725f6f70656e696e670000000000d8e310000b00000000000000e3e310002900000000000000044211000a000000000000000ce4100035000000000000004ae210001300000000000000d68b110007000000b5e31000230000006163636570745f63757261746f725f6170706c69636174696f6e730000000000f1e110001200000000000000e2c810001300000072e3100043000000626567696e5f63757261746f725f6170706c6963616e745f726576696577000033e310003f00000066696c6c5f63757261746f725f6f70656e696e6700000000f1e110001200000000000000e2c810001300000000000000afe210002200000000000000d1e210001a00000000000000ebe210000d00000000000000f8e210003b00000096e210001900000077697468647261775f63757261746f725f6170706c69636174696f6e0000000080e21000160000000000000092c91000170000007465726d696e6174655f63757261746f725f6170706c69636174696f6e0000005de21000230000006170706c795f6f6e5f63757261746f725f6f70656e696e670000000000ae11000900000000000000c6a111000b00000000000000f1e110001200000000000000e2c810001300000000000000b6e010000c00000000000000969511000c0000000000000003e21000160000000000000019e2100014000000000000002de210001d0000000000000019e2100014000000000000004ae210001300000000000000d68b110007000000d5e110001c0000007570646174655f63757261746f725f726f6c655f6163636f756e74000000000000ae11000900000000000000c6a111000b0000000000000006e110000a00000000000000fbca10000c00000000000000c5e110001000000000000000969511000c0000008be110003a0000007570646174655f63757261746f725f7265776172645f6163636f756e740000000000000006e110000a00000000000000fbca10000c0000000000000079e110001200000000000000969511000c0000001ee110003b00000059e11000200000006c656176655f63757261746f725f726f6c6500000000000006e110000a00000000000000fbca10000c0000000000000010e110000e00000000000000d68b110007000000e8e010001e0000007465726d696e6174655f63757261746f725f726f6c650000c2e01000260000007365745f6c65616400000000b0e010000600000000000000c6a111000b00000000000000b6e010000c00000000000000969511000c00000080e0100030000000756e7365745f6c656164000061e010001f0000007365745f6368616e6e656c5f6372656174696f6e5f656e61626c6564000000005ae010000700000000000000a58e110004000000696e6372656173655f6d696e745f636170616369747900000000000032e01000130000000000000045e01000150000000ce01000260000002041646420746f206361706163697479206f662063757272656e74206163697665206d696e746164646974696f6e616c5f63617061636974796d696e74696e673a3a42616c616e63654f663c543e656e61626c6564204576696374207468652063757272656e746c7920756e736574206c65616420496e74726f647563652061206c656164207768656e206f6e65206973206e6f742063757272656e746c79207365742e6d656d626572726f6c655f6163636f756e74204c6561642063616e207465726d696e61746520616e64206163746976652063757261746f7220416e206163746976652063757261746f72206c656176657320726f6c6563757261746f725f6964726174696f6e616c655f7465787420416e206163746976652063757261746f722063616e207570646174652074686520726577617264206163636f756e74206173736f6369617465642077697468206120736574207265776172642072656c6174696f6e736869702e6e65775f7265776172645f6163636f756e7420416e206163746976652063757261746f722063616e2075706461746520746865206173736f63696174656420726f6c65206163636f756e742e6e65775f726f6c655f6163636f756e74204170706c79206f6e20612063757261746f72206f70656e696e672e63757261746f725f6f70656e696e675f69646f70745f726f6c655f7374616b655f62616c616e63654f7074696f6e3c42616c616e63654f663c543e3e6f70745f6170706c69636174696f6e5f7374616b655f62616c616e636568756d616e5f7265616461626c655f74657874204c656164207465726d696e6174652063757261746f72206170706c69636174696f6e63757261746f725f6170706c69636174696f6e5f69642046696c6c206f70656e696e6720666f722063757261746f727375636365737366756c5f63757261746f725f6170706c69636174696f6e5f69647343757261746f724170706c69636174696f6e49645365743c543e7265776172645f706f6c6963794f7074696f6e3c526577617264506f6c6963793c6d696e74696e673a3a42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265723e3e20426567696e20726576696577696e672c20616e64207468657265666f7265206e6f7420616363657074696e67206e6577206170706c69636174696f6e732e20426567696e20616363657074696e672063757261746f72206170706c69636174696f6e7320746f20616e206f70656e696e672074686174206973206163746976652e2041646420616e206f70656e696e6720666f7220612063757261746f7220726f6c652e61637469766174655f6174686972696e673a3a41637469766174654f70656e696e6741743c543a3a426c6f636b4e756d6265723e4f70656e696e67506f6c696379436f6d6d69746d656e743c543a3a426c6f636b4e756d6265722c2042616c616e63654f663c543e3e20557064617465206368616e6e656c2061732061206375726174696f6e206163746f726375726174696f6e5f6163746f724375726174696f6e4163746f723c43757261746f7249643c543e3e6368616e6e656c5f69646e65775f76657269666965646e65775f6375726174696f6e5f7374617475734f7074696f6e3c4368616e6e656c4375726174696f6e5374617475733e204368616e6e656c206f776e6572207570646174657320736f6d65206368616e6e656c2070726f706572746965736e65775f68616e646c654f7074696f6e3c5665633c75383e3e6e65775f7469746c654f7074696f6e3c4f7074696f6e616c546578743e6e65775f6465736372697074696f6e6e65775f6176617461726e65775f62616e6e65726e65775f7075626c69636174696f6e5f7374617475734f7074696f6e3c4368616e6e656c5075626c69636174696f6e5374617475733e20416e206f776e6572207472616e7366657273206368616e6e656c206f776e65727368697020746f2061206e6577206f776e65722e204e6f74696365207468617420776f726b696e672067726f7570207061727469636970616e74732063616e6e6f7420646f20746869732e204e6f7469636520746861742063656e736f726564206f7220756e6c6973746564206368616e6e656c206d6179207374696c6c206265207472616e736665727265642e204e6f746963652074686174207472616e73666572732061726520756e696c61746572616c2c20736f206e6577206f776e65722063616e6e6f7420626c6f636b2e2054686973206d61792062652070726f626c656d617469633a2068747470733a2f2f6769746875622e636f6d2f4a6f7973747265616d2f7375627374726174652d72756e74696d652d6a6f7973747265616d2f6973737565732f39356e65775f6f776e6572204372656174652061206e6577206368616e6e656c2e6f776e6572636f6e74656e744368616e6e656c436f6e74656e74547970654f7074696f6e616c5465787461766174617262616e6e65727075626c69636174696f6e5f7374617475734368616e6e656c5075626c69636174696f6e5374617475730000000000e0e710000600000000000000e8e71000020000000000000000000000f8e7100002000000000000000000000008e8100005000000000000002c44110002000000000000000000000010e8100001000000000000000000000018e810001a000000000000008cbb110001000000000000000000000034e8100002000000000000005265776172640000c044110007000000c044110007000000e6e81000540000003ae9100023000000536c6173680000009de81000490000004f6c64536c617368696e675265706f7274446973636172646564000044e81000470000008be810001200000020416e206f6c6420736c617368696e67207265706f72742066726f6d2061207072696f72206572612077617320646973636172646564206265636175736520697420636f756c64206e6f742062652070726f6365737365642e204f6e652076616c696461746f722028616e6420697473206e6f6d696e61746f72732920686173206265656e20736c61736865642062792074686520676976656e20616d6f756e742e20416c6c2076616c696461746f72732068617665206265656e207265776172646564206279207468652066697273742062616c616e63653b20746865207365636f6e64206973207468652072656d61696e6465722066726f6d20746865206d6178696d756d20616d6f756e74206f66207265776172642e5374616b696e672043757272656e744572615374617274617373657274696f6e206661696c65643a20543a3a5374616b6548616e646c657250726f76696465723a3a7374616b696e6728292e7374616b655f657869737473287374616b655f6964297374616b65204d55535420626520696e20746865207374616b65642073746174652e5374616b696e67204e6f6d696e61746f727368656164206f66205374616b696e67204e6f6d696e61746f7273486972696e67204170706c69636174696f6e496442795374616b696e67496468656164206f6620486972696e67204170706c69636174696f6e496442795374616b696e6749645374616b696e672056616c696461746f727368656164206f66205374616b696e672056616c696461746f72735374616b696e67205374616b6572735374616b696e67204c6564676572486972696e67204170706c69636174696f6e4279496468656164206f6620486972696e67204170706c69636174696f6e42794964486972696e67204f70656e696e674279496468656164206f6620486972696e67204f70656e696e67427949644d6967726174696f6e205370656356657273696f6e0000000000000040eb1000080000000000000048eb1000020000000000000000000000e4be110000000000000000004d69677261746564f82311000b000000aba31100030000005374616b696e6720426f6e6465645374616b696e672050617965655374616b696e672043757272656e74456c65637465640000000000000020ee1000040000000000000024ee10000300000000000000000000006cee10000f0000000000000000000000e4ee10000a00000000000000f0ee100001000000000000000000000008ef10000e000000000000000000000078ef1000060000000000000080ef100001000000000000000000000098ef100017000000000000000000000050f010001100000000000000e4be110000000000000000000000000064f01000100000000000000000000000e4f010000800000000000000ecf0100001000000000000000000000004f110000b00000000000000000000005cf11000080000000000000064f110000100000000000000000000007cf110000b0000000000000000000000d4f110000500000000000000e4be1100000000000000000000000000dcf110000b000000000000000000000034f21000090000000000000040f2100001000000000000000000000058f210000b0000000000000000000000b0f210000e00000000000000c0f21000010000000000000000000000d8f210000b000000000000000000000030f31000130000000000000044f310000100000000000000000000005cf3100001000000000000000000000064f310000d00000000000000e4be110000000000000000000000000074f310000500000000000000000000009cf310000d00000000000000e4be1100000000000000000000000000acf31000060000000000000000000000dcf310001100000000000000f0f3100001000000000000000000000008f4100001000000000000000000000010f410000d0000000000000020f4100001000000000000000000000038f4100001000000000000000000000040f410001400000000000000e4be110000000000000000000000000054f410000500000000000000626f6e64000000007bf710000a00000000000000b14a11002300000000000000d84a11000500000000000000caff1000150000000000000008f8100005000000000000000df810001100000013011100590000006c01110021000000e4be1100000000008d0111004c000000e4be110000000000d901110049000000e4be110000000000778b11000b0000002202110035000000a92c110008000000570211001a000000e4be110000000000710211005b000000cc02110049000000ba8b11000c000000626f6e645f6578747261000000000000050111000e00000000000000caff100015000000dfff100059000000380011000d000000e4be11000000000045001100540000009900110059000000f200110013000000e4be11000000000094f6100055000000e4be110000000000778b11000b000000e9f610003a000000a92c110008000000b0ff100010000000ba8b11000c000000756e626f6e64000000000000d84a11000500000000000000caff100015000000dffb10005500000034fc10004000000074fc100049000000e4be110000000000bdfc1000520000000ffd100030000000e4be1100000000003ffd10004f0000008efd10004f000000ddfd10003f000000e4be110000000000b3f7100055000000e4be1100000000001cfe100026000000e4be110000000000778b11000b00000042fe10005000000023f710002600000092fe100059000000ebfe10005c00000047ff100069000000b0ff100010000000c0ff10000a00000077697468647261775f756e626f6e646564000000d8f910004b000000e4be11000000000023fa10004d00000070fa100013000000e4be110000000000b3f7100055000000e4be11000000000083fa10001b000000e4be110000000000778b11000b0000009efa100055000000f3fa10005100000044fb10003d00000081fb10005e00000049f7100032000000ba8b11000c00000076616c696461746500000000b7f910000500000000000000bcf910001c0000007df910003a000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000e9f610003a00000023f710002600000049f7100032000000ba8b11000c0000006e6f6d696e617465000000004ef91000070000000000000055f910002800000065f8100044000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000a9f8100049000000f2f810002600000018f9100036000000ba8b11000c0000006368696c6c0000001ef8100032000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000e9f610003a00000050f810001500000049f7100032000000ba8b11000c0000007365745f70617965650000000000000008f8100005000000000000000df810001100000085f710002e000000e4be1100000000005df6100037000000e4be110000000000b3f7100055000000e4be110000000000778b11000b000000e9f610003a00000023f710002600000049f7100032000000ba8b11000c0000007365745f636f6e74726f6c6c65720000000000007bf710000a00000000000000b14a11002300000039f6100024000000e4be1100000000005df6100037000000e4be11000000000094f6100055000000e4be110000000000778b11000b000000e9f610003a00000023f710002600000049f7100032000000ba8b11000c0000007365745f76616c696461746f725f636f756e7400000000009d2d110003000000000000002df610000c0000000df6100020000000666f7263655f6e6f5f65726173000000e1f510002c000000e4be110000000000778b11000b000000d1f5100010000000ba8b11000c000000666f7263655f6e65775f65726100000056f5100053000000a9f5100028000000e4be110000000000778b11000b000000d1f5100010000000ba8b11000c0000007365745f696e76756c6e657261626c6573000000000000004cf510000a000000000000001c3611001100000019f5100033000000666f7263655f756e7374616b650000000000000014f510000500000000000000969511000c000000d1f4100043000000666f7263655f6e65775f6572615f616c776179737cf4100041000000e4be110000000000778b11000b000000bdf4100014000000ba8b11000c00000020466f72636520746865726520746f2062652061206e6577206572612061742074686520656e64206f662073657373696f6e7320696e646566696e6974656c792e202d204f6e652073746f7261676520777269746520466f72636520612063757272656e74207374616b657220746f206265636f6d6520636f6d706c6574656c7920756e7374616b65642c20696d6d6564696174656c792e737461736820536574207468652076616c696461746f72732077686f2063616e6e6f7420626520736c61736865642028696620616e79292e76616c696461746f727320466f72636520746865726520746f2062652061206e6577206572612061742074686520656e64206f6620746865206e6578742073657373696f6e2e20416674657220746869732c2069742077696c6c20626520726573657420746f206e6f726d616c20286e6f6e2d666f7263656429206265686176696f75722e202d204e6f20617267756d656e74732e20466f72636520746865726520746f206265206e6f206e6577206572617320696e646566696e6974656c792e2054686520696465616c206e756d626572206f662076616c696461746f72732e436f6d706163743c7533323e202852652d297365742074686520636f6e74726f6c6c6572206f6620612073746173682e20456666656374732077696c6c2062652066656c742061742074686520626567696e6e696e67206f6620746865206e657874206572612e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f206279207468652073746173682c206e6f742074686520636f6e74726f6c6c65722e202d20496e646570656e64656e74206f662074686520617267756d656e74732e20496e7369676e69666963616e7420636f6d706c65786974792e202d20436f6e7461696e732061206c696d69746564206e756d626572206f662072656164732e202d2057726974657320617265206c696d6974656420746f2074686520606f726967696e60206163636f756e74206b65792e636f6e74726f6c6c6572202852652d2973657420746865207061796d656e742074617267657420666f72206120636f6e74726f6c6c65722e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2062792074686520636f6e74726f6c6c65722c206e6f74207468652073746173682e706179656552657761726444657374696e6174696f6e204465636c617265206e6f2064657369726520746f206569746865722076616c6964617465206f72206e6f6d696e6174652e202d20436f6e7461696e73206f6e6520726561642e204465636c617265207468652064657369726520746f206e6f6d696e6174652060746172676574736020666f7220746865206f726967696e20636f6e74726f6c6c65722e202d20546865207472616e73616374696f6e277320636f6d706c65786974792069732070726f706f7274696f6e616c20746f207468652073697a65206f66206074617267657473602c2077686963682069732063617070656420617420604d41585f4e4f4d494e4154494f4e53602e202d20426f74682074686520726561647320616e642077726974657320666f6c6c6f7720612073696d696c6172207061747465726e2e746172676574735665633c3c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f757263653e204465636c617265207468652064657369726520746f2076616c696461746520666f7220746865206f726967696e20636f6e74726f6c6c65722e707265667356616c696461746f7250726566733c42616c616e63654f663c543e3e2052656d6f766520616e7920756e6c6f636b6564206368756e6b732066726f6d207468652060756e6c6f636b696e67602071756575652066726f6d206f7572206d616e6167656d656e742e205468697320657373656e7469616c6c7920667265657320757020746861742062616c616e636520746f206265207573656420627920746865207374617368206163636f756e7420746f20646f2077686174657665722069742077616e74732e2053656520616c736f205b6043616c6c3a3a756e626f6e64605d2e202d20436f756c6420626520646570656e64656e74206f6e2074686520606f726967696e6020617267756d656e7420616e6420686f77206d7563682060756e6c6f636b696e6760206368756e6b732065786973742e2020497420696d706c6965732060636f6e736f6c69646174655f756e6c6f636b656460207768696368206c6f6f7073206f76657220604c65646765722e756e6c6f636b696e67602c2077686963682069732020696e6469726563746c7920757365722d636f6e74726f6c6c65642e20536565205b60756e626f6e64605d20666f72206d6f72652064657461696c2e202d20436f6e7461696e732061206c696d69746564206e756d626572206f662072656164732c20796574207468652073697a65206f6620776869636820636f756c64206265206c61726765206261736564206f6e20606c6564676572602e205363686564756c65206120706f7274696f6e206f662074686520737461736820746f20626520756e6c6f636b656420726561647920666f72207472616e73666572206f75742061667465722074686520626f6e6420706572696f6420656e64732e2049662074686973206c656176657320616e20616d6f756e74206163746976656c7920626f6e646564206c657373207468616e20543a3a43757272656e63793a3a6d696e696d756d5f62616c616e636528292c207468656e20697420697320696e6372656173656420746f207468652066756c6c20616d6f756e742e204f6e63652074686520756e6c6f636b20706572696f6420697320646f6e652c20796f752063616e2063616c6c206077697468647261775f756e626f6e6465646020746f2061637475616c6c79206d6f7665207468652066756e6473206f7574206f66206d616e6167656d656e7420726561647920666f72207472616e736665722e204e6f206d6f7265207468616e2061206c696d69746564206e756d626572206f6620756e6c6f636b696e67206368756e6b73202873656520604d41585f554e4c4f434b494e475f4348554e4b5360292063616e20636f2d657869737473206174207468652073616d652074696d652e20496e207468617420636173652c205b6043616c6c3a3a77697468647261775f756e626f6e646564605d206e65656420746f2062652063616c6c656420666972737420746f2072656d6f766520736f6d65206f6620746865206368756e6b732028696620706f737369626c65292e2053656520616c736f205b6043616c6c3a3a77697468647261775f756e626f6e646564605d2e202d20496e646570656e64656e74206f662074686520617267756d656e74732e204c696d697465642062757420706f74656e7469616c6c79206578706c6f697461626c6520636f6d706c65786974792e202d20456163682063616c6c20287265717569726573207468652072656d61696e646572206f662074686520626f6e6465642062616c616e636520746f2062652061626f766520606d696e696d756d5f62616c616e6365602920202077696c6c2063617573652061206e657720656e74727920746f20626520696e73657274656420696e746f206120766563746f722028604c65646765722e756e6c6f636b696e676029206b65707420696e2073746f726167652e202020546865206f6e6c792077617920746f20636c65616e207468652061666f72656d656e74696f6e65642073746f72616765206974656d20697320616c736f20757365722d636f6e74726f6c6c656420766961206077697468647261775f756e626f6e646564602e202d204f6e6520444220656e7472792e203c2f7765696768743e436f6d706163743c42616c616e63654f663c543e3e2041646420736f6d6520657874726120616d6f756e742074686174206861766520617070656172656420696e207468652073746173682060667265655f62616c616e63656020696e746f207468652062616c616e636520757020666f72207374616b696e672e20557365207468697320696620746865726520617265206164646974696f6e616c2066756e647320696e20796f7572207374617368206163636f756e74207468617420796f75207769736820746f20626f6e642e20556e6c696b65205b60626f6e64605d206f72205b60756e626f6e64605d20746869732066756e6374696f6e20646f6573206e6f7420696d706f736520616e79206c696d69746174696f6e206f6e2074686520616d6f756e7420746861742063616e2062652061646465642e6d61785f6164646974696f6e616c2054616b6520746865206f726967696e206163636f756e74206173206120737461736820616e64206c6f636b207570206076616c756560206f66206974732062616c616e63652e2060636f6e74726f6c6c6572602077696c6c20626520746865206163636f756e74207468617420636f6e74726f6c732069742e206076616c756560206d757374206265206d6f7265207468616e2074686520606d696e696d756d5f62616c616e636560207370656369666965642062792060543a3a43757272656e6379602e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f20627920746865207374617368206163636f756e742e202d20496e646570656e64656e74206f662074686520617267756d656e74732e204d6f64657261746520636f6d706c65786974792e202d20546872656520657874726120444220656e74726965732e204e4f54453a2054776f206f66207468652073746f726167652077726974657320286053656c663a3a626f6e646564602c206053656c663a3a7061796565602920617265205f6e657665725f20636c65616e656420756e6c6573732074686520606f726967696e602066616c6c732062656c6f77205f6578697374656e7469616c206465706f7369745f20616e6420676574732072656d6f76656420617320647573742e5374616b696e6700000000a40911000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100880b11000000000000000000b409110001000000000000000100000000000000bc091100150000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100d40911000000000000000000e409110001000000000000000100000000000000ec0911000d00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100ec0c11000000000000000000fc09110003000000000000000100000000000000140a1100060000000101000000000000969511000c00000000000000969511000c00000000000000000000000000000000000000e4be1100540a110000000000000000001c0a110001000000000000000000000000000000240a1100060000000101000000000000969511000c000000000000002a0a11002900000000000000000000000000000000000000e4be1100540a11000000000000000000640a1100010000000000000000000000000000006c0a1100050000000101000000000000969511000c000000000000000df810001100000000000000000000000000000000000000e4be1100740a11000000000000000000840a1100010000000000000001000000000000004c8e11000a0000000101010000000000969511000c00000000000000bcf910001c00000000000000000000000000000000000000e4be11008c0a110000000000000000009c0a110001000000000000000100000000000000a40a11000a0000000101010000000000969511000c000000000000001c3611001100000000000000000000000000000000000000e4be1100ec0c11000000000000000000b00a110001000000000000000100000000000000b80a1100070000000101000000000000969511000c00000000000000bf0a11002400000000000000000000000000000000000000e4be1100e40a11000000000000000000f40a110004000000000000000100000000000000140b11000e00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100ec0c11000000000000000000240b1100010000000000000001000000000000002c0b11000a0000000000000000000000360b11000800000000000000000000000000000000000000000000000000000000000000e4be1100880b11000000000000000000400b110001000000000000000100000000000000480b11000f0000000000000000000000570b11000b00000000000000000000000000000000000000000000000000000000000000e4be11005c1911000000000000000000640b1100010000000000000001000000000000006c0b11001b00000000000000000000001bbc11000c00000000000000000000000000000000000000000000000000000000000000e4be1100880b11000000000000000000980b110001000000000000000100000000000000a00b1100160000000000000000000000b60b11000900000000000000000000000000000000000000000000000000000000000000e4be1100c00b11000000000000000000d00b110001000000000000000100000000000000d80b1100090000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100e40b11000000000000000000f40b1100030000000000000001000000000000000c0c1100080000000000000000000000140c11000700000000000000000000000000000000000000000000000000000000000000e4be11001c0c110000000000000000002c0c110001000000000000000100000000000000340c1100130000000000000000000000470c11000700000000000000000000000000000000000000000000000000000000000000e4be1100500c11000000000000000000600c110003000000000000000100000000000000780c11000a0000000000000000000000820c11001d00000000000000000000000000000000000000000000000000000000000000e4be1100ec0c11000000000000000000a00c110001000000000000000100000000000000a80c11000f0000000101000000000000360b11000800000000000000b70c11003200000000000000000000000000000000000000e4be1100ec0c11000000000000000000fc0c110001000000000000000100000056616c696461746f72436f756e740000f61211002a0000004d696e696d756d56616c696461746f72436f756e74000000110000000000000001000000a8000000a612110050000000496e76756c6e657261626c6573000000d21111005600000028121100530000007b1211002b000000426f6e646564000092111100400000004c65646765725374616b696e674c65646765723c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e001100000000000000010000002100000041111100510000005061796565000000110000000000000001000000210000000811110039000000110000000000000001000000a9000000b7101100510000004e6f6d696e61746f727300005e101100590000005374616b6572734578706f737572653c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e00110000000000000001000000aa000000a10f110053000000f40f110046000000e4be1100000000003a1011002400000043757272656e74456c65637465640000620f11003f00000043757272656e74457261457261496e64657800004b0f11001700000043757272656e7445726153746172744d6f6d656e744f663c543e00002d0f11001e00000043757272656e74457261537461727453657373696f6e496e646578001100000000000000010000002c000000f90e11003400000043757272656e74457261506f696e74734561726e6564457261506f696e747300110000000000000001000000ab000000b60e110043000000536c6f745374616b65000000110000000000000001000000340000003a0e11004c000000e4be110000000000860e110030000000466f726365457261466f7263696e670011000000000000000100000021000000f30d110047000000536c6173685265776172644672616374696f6e50657262696c6c00001100000000000000010000002c0000007c0d11003e000000e4be110000000000ba0d110039000000426f6e646564457261735665633c28457261496e6465782c2053657373696f6e496e646578293e00330d110049000000457261536c6173684a6f75726e616c5665633c536c6173684a6f75726e616c456e7472793c543a3a4163636f756e7449642c2042616c616e63654f663c543e3e3e00000011000000000000000100000028000000040d11002f00000020416c6c20736c617368657320746861742068617665206f6363757272656420696e206120676976656e206572612e2041206d617070696e672066726f6d207374696c6c2d626f6e646564206572617320746f207468652066697273742073657373696f6e20696e646578206f662074686174206572612e205468652070657263656e74616765206f662074686520736c617368207468617420697320646973747269627574656420746f207265706f72746572732e205468652072657374206f662074686520736c61736865642076616c75652069732068616e646c6564206279207468652060536c617368602e205472756520696620746865206e6578742073657373696f6e206368616e67652077696c6c2062652061206e657720657261207265676172646c657373206f6620696e6465782e2054686520616d6f756e74206f662062616c616e6365206163746976656c79206174207374616b6520666f7220656163682076616c696461746f7220736c6f742c2063757272656e746c792e2054686973206973207573656420746f20646572697665207265776172647320616e642070756e6973686d656e74732e205265776172647320666f72207468652063757272656e74206572612e205573696e6720696e6469636573206f662063757272656e7420656c6563746564207365742e205468652073657373696f6e20696e646578206174207768696368207468652063757272656e742065726120737461727465642e20546865207374617274206f66207468652063757272656e74206572612e205468652063757272656e742065726120696e6465782e205468652063757272656e746c7920656c65637465642076616c696461746f7220736574206b65796564206279207374617368206163636f756e742049442e204e6f6d696e61746f727320666f72206120706172746963756c6172206163636f756e74207468617420697320696e20616374696f6e207269676874206e6f772e20596f752063616e27742069746572617465207468726f7567682076616c696461746f727320686572652c2062757420796f752063616e2066696e64207468656d20696e207468652053657373696f6e206d6f64756c652e2054686973206973206b6579656420627920746865207374617368206163636f756e742e20546865206d61702066726f6d206e6f6d696e61746f72207374617368206b657920746f2074686520736574206f66207374617368206b657973206f6620616c6c2076616c696461746f727320746f206e6f6d696e6174652e20546865206d61702066726f6d202877616e6e616265292076616c696461746f72207374617368206b657920746f2074686520707265666572656e636573206f6620746861742076616c696461746f722e2057686572652074686520726577617264207061796d656e742073686f756c64206265206d6164652e204b657965642062792073746173682e204d61702066726f6d20616c6c2028756e6c6f636b6564292022636f6e74726f6c6c657222206163636f756e747320746f2074686520696e666f20726567617264696e6720746865207374616b696e672e204d61702066726f6d20616c6c206c6f636b65642022737461736822206163636f756e747320746f2074686520636f6e74726f6c6c6572206163636f756e742e20416e792076616c696461746f72732074686174206d6179206e6576657220626520736c6173686564206f7220666f726369626c79206b69636b65642e20497427732061205665632073696e63652074686579277265206561737920746f20696e697469616c697a6520616e642074686520706572666f726d616e636520686974206973206d696e696d616c2028776520657870656374206e6f206d6f7265207468616e20666f757220696e76756c6e657261626c65732920616e64207265737472696374656420746f20746573746e6574732e204d696e696d756d206e756d626572206f66207374616b696e67207061727469636970616e7473206265666f726520656d657267656e637920636f6e646974696f6e732061726520696d706f7365642e2054686520696465616c206e756d626572206f66207374616b696e67207061727469636970616e74732e00000000901311000e000000000000001bbc11000c00000000000000e4be1100a01311000000000000000000b0131100010000000000000000000000b81311000f00000000000000360b11000800000000000000e4be1100c81311000000000000000000d8131100010000000000000053657373696f6e735065724572610000110000000000000001000000ac000000191411001c000000426f6e64696e674475726174696f6e00110000000000000001000000ad000000e013110039000000204e756d626572206f6620657261732074686174207374616b65642066756e6473206d7573742072656d61696e20626f6e64656420666f722e204e756d626572206f662073657373696f6e7320706572206572612e5374616b696e6720536c6f745374616b655374616b696e6720457261536c6173684a6f75726e616c486972696e67204e6578744f70656e696e674964000000051511002d000000d5bd11000c0000000415110001000000486972696e67204e6578744170706c69636174696f6e4964617373657274696f6e206661696c65643a20213c4170706c69636174696f6e496442795374616b696e6749643c543e3e3a3a657869737473286e65775f7374616b655f6964290400a8bd11002d000000d5bd11000c000000041511000100000060617373657274696f6e206661696c65643a2060286c65667420213d20726967687429600a20206c6566743a2060617373657274696f6e206661696c65643a20543a3a5374616b6548616e646c657250726f76696465723a3a7374616b696e6728292e696e6974696174655f756e7374616b696e6728267374616b655f69642c0a2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020206f70745f756e7374616b696e675f706572696f64292e69735f6f6b28296f70656e696e67207374616765206d757374206265202741637469766527617373657274696f6e206661696c65643a202a6163746976655f6170706c69636174696f6e5f636f756e74203e2030606e756d6265725f6f665f6163746976655f6170706c69636174696f6e736020286c656e677468206f6620606163746976655f6170706c69636174696f6e735f697465726029203d3d2030486972696e67000000000000301811000b00000001010100000000003b1811000c00000000000000471811003700000000000000000000000000000000000000e4be11008018110000000000000000009018110001000000000000000100000000000000981811000d00000000000000000000003b1811000c00000000000000000000000000000000000000000000000000000000000000e4be11005c1911000000000000000000a818110001000000000000000100000000000000b01811000f0000000101010000000000bf1811001000000000000000cf1811003500000000000000000000000000000000000000e4be110004191100000000000000000014191100010000000000000001000000000000001c191100110000000000000000000000bf1811001000000000000000000000000000000000000000000000000000000000000000e4be11005c1911000000000000000000301911000100000000000000010000000000000038191100180000000101010000000000501911000a00000000000000bf1811001000000000000000000000000000000000000000e4be11005c19110000000000000000006c1911000100000000000000010000004f70656e696e6742794964543a3a4f70656e696e6749644f70656e696e673c42616c616e63654f663c543e2c20543a3a426c6f636b4e756d6265722c20543a3a4170706c69636174696f6e49643e0000110000000000000001000000ae000000441a11000a0000004e6578744f70656e696e6749640000001b1a1100290000004170706c69636174696f6e42794964543a3a4170706c69636174696f6e49644170706c69636174696f6e3c543a3a4f70656e696e6749642c20543a3a426c6f636b4e756d6265722c20543a3a5374616b6549643e110000000000000001000000af0000000e1a11000d0000004e6578744170706c69636174696f6e4964000000e11911002d0000004170706c69636174696f6e496442795374616b696e674964543a3a5374616b654964000011000000000000000100000026000000741911006d00000020496e7465726e616c20707572706f7365206f6620676976656e207374616b652c20692e652e2066726f2077686174206170706c69636174696f6e2c20616e64207768657468657220666f722074686520726f6c65206f7220666f7220746865206170706c69636174696f6e2e204964656e74696669657220666f72206e657874206170706c69636174696f6e20746f2062652061646465642e204170706c69636174696f6e73204964656e74696669657220666f72206e657874206f70656e696e6720746f2062652061646465642e204f70656e696e67732e617373657274696f6e206661696c65643a203c4170706c69636174696f6e427949643c543e3e3a3a657869737473286170706c69636174696f6e5f6964295374616b696e6720496e76756c6e657261626c6573636f6e74726f6c6c657220616c726561647920706169726564737461736820616c726561647920626f6e6465646e6f7420612073746173686e6f74206120636f6e74726f6c6c657263616e206e6f74207363686564756c65206d6f726520756e6c6f636b206368756e6b73746172676574732063616e6e6f7420626520656d7074794d6967726174696f6e00000000841b11000b0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100901b11000000000000000000a01b11000200000000000000000000005370656356657273696f6e0011000000000000000100000021000000b01b110058000000081c110046000000205265636f72647320617420776861742072756e74696d6520737065632076657273696f6e207468652073746f72652077617320696e697469616c697a65642e205468697320616c6c6f7773207468652072756e74696d6520746f206b6e6f77207768656e20746f2072756e20696e697469616c697a6520636f64652069662069742077617320696e7374616c6c656420617320616e207570646174652e73746f72616765206973206e6f74206e756c6c2c207468657265666f7265206d75737420626520612076616c69642074797065000000941c11006b00000019000000090000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f737570706f72742f7372632f73746f726167652f756e6861736865642e727371202f2028712f246d617829203c202832202a20246d6178292e204d6163726f2070726576656e747320616e792074797065206265696e672063726561746564207468617420646f6573206e6f74207361746973667920746869733b2071656400701d11006b0000005d000000270000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d61726974686d657469632f7372632f7065725f7468696e67732e727300701d11006b0000006400000027000000701d11006b0000006f0000002100000000000000617474656d707420746f20646976696465206279207a65726f4661696c656420746f20636f6e76657274000000000000b01e11001100000000000000c41e1100010000000000000000000000cc1e1100010000000000000000000000d41e11000700000000000000e4be1100000000000000000000000000dc1e1100010000000000000000000000e41e11000b00000000000000f01e1100010000000000000000000000f81e110001000000000000004865617274626561745265636569766564000000c91f11000b000000991f110030000000416c6c476f6f6400641f110035000000536f6d654f66666c696e65004c1f110018000000001f11004c0000002041742074686520656e64206f66207468652073657373696f6e2c206174206c65617374206f6e63652076616c696461746f722077617320666f756e6420746f206265206f66666c696e652e5665633c4964656e74696669636174696f6e5475706c653e2041742074686520656e64206f66207468652073657373696f6e2c206e6f206f6666656e63652077617320636f6d6d69747465642e2041206e657720686561727462656174207761732072656365697665642066726f6d2060417574686f72697479496460417574686f7269747949645375646f204b6579496d4f6e6c696e6520476f737369704174496d4f6e6c696e65204b6579730000110000000000000001000000150000001100000008000000040000002f00000000000000a02011000500000000000000a8201100010000000000000000000000b0201100010000000000000000000000b82011000a0000000000000054441100010000000000000000000000c4201100010000000000000000000000cc2011000a00000000000000a8201100010000000000000000000000b020110001000000000000005375646964000000a58e11000400000012211100180000004b65794368616e6765640000d62011003c0000005375646f4173446f6e6520546865207375646f6572206a757374207377697463686564206964656e746974793b20746865206f6c64206b657920697320737570706c6965642e2041207375646f206a75737420746f6f6b20706c6163652e436f756e63696c456c656374696f6e204175746f53746172740000000000282311000f00000000000000e4be11000000000000000000000000003823110001000000000000000000000040231100110000000000000054231100010000000000000000000000e4be11000000000000000000000000005c2311000f00000000000000e4be1100000000000000000000000000e4be11000000000000000000000000006b2311000d00000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000782311000b00000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000832311001000000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000932311000e00000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000a12311000e00000000000000b0231100010000000000000000000000e4be1100000000000000000000000000b8231100070000000000000054441100010000000000000000000000e4be1100000000000000000000000000bf2311000500000000000000c4231100020000000000000000000000e4be1100000000000000000000000000d42311000800000000000000dc231100030000000000000000000000e4be11000000000000000000456c656374696f6e53746172746564000324110017000000416e6e6f756e63696e6753746172746564000000aba3110003000000416e6e6f756e63696e67456e646564566f74696e6753746172746564566f74696e67456e64656452657665616c696e675374617274656452657665616c696e67456e646564436f756e63696c456c656374656400f82311000b0000004170706c696564566f746564d289110009000000f42311000400000052657665616c6564d289110009000000f423110004000000d28911000900000048617368426c6f636b4e756d6265722041206e657720656c656374696f6e2073746172746564000000000000482411000b0000000000000054441100010000000000000000000000e4be110000000000000000004d656d6f5570646174656400110000000400000004000000b00000005374616b654e6f74466f756e6453657373696f6e20486973746f726963616c53657373696f6e73436f756e63696c456c656374696f6e204170706c6963616e745374616b6573496d4f6e6c696e6520417574686f726564426c6f636b7373726d6c2f696d2d6f6e6c696e652d776f726b65722d73746174757300000066251100080000006e25110020000000696d6f6e6c696e6573726d6c5f696d5f6f6e6c696e652f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f696d2d6f6e6c696e652f7372632f6c69622e72735b696e6465783a205d205265706f7274696e6720696d2d6f6e6c696e6520617420626c6f636b3a20000000000000bc2511000900000000000000c8251100020000000000000000000000e4be1100000000000000000068656172746265617400000000000000bc2511000900000000000000f82511001900000000000000112611000a000000000000001b2611002f0000004865617274626561743c543a3a426c6f636b4e756d6265723e5f7369676e61747572653c543a3a417574686f7269747949642061732052756e74696d654170705075626c69633e3a3a5369676e6174757265496d4f6e6c696e65000000000000b4271100080000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100f83511000000000000000000bc27110001000000000000000100000000000000c4271100040000000000000000000000c82711001300000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000dc27110001000000000000000100000000000000e42711001200000002010100000000001bbc11000c00000000000000f62711000900000000000000d68b11000700000000000000e4be11000028110000000000000000001028110002000000000000000000000000000000202811000e00000002010100000000001bbc11000c00000000000000308f11000e00000000000000aba311000300000000000000e4be1100f8351100000000000000000030281100020000000000000001000000476f73736970417447291100280000004b6579735665633c543a3a417574686f7269747949643e00132911003400000052656365697665644865617274626561747341757468496e6465780011000000000000000100000021000000b728110039000000f028110023000000417574686f726564426c6f636b7300004028110045000000852811003200000020466f7220656163682073657373696f6e20696e6465782c207765206b6565702061206d617070696e67206f662060543a3a56616c696461746f7249646020746f20746865206e756d626572206f6620626c6f636b7320617574686f7265642062792074686520676976656e20617574686f726974792e20466f7220656163682073657373696f6e20696e6465782c207765206b6565702061206d617070696e67206f66206041757468496e6465786020746f20606f6666636861696e3a3a4f70617175654e6574776f726b5374617465602e205468652063757272656e7420736574206f66206b6579732074686174206d61792069737375652061206865617274626561742e2054686520626c6f636b206e756d626572207768656e2077652073686f756c6420676f737369702e4572720000110000000400000004000000b10000004f6b0000110000000400000004000000b2000000110000000400000004000000b30000006f6e6c79207468652063757272656e74207375646f206b65792063616e207375646f6f6e6c79207468652063757272656e74207375646f206b65792063616e206368616e676520746865207375646f206b65794475706c696361746564206865617274626561742e4e6f6e206578697374656e74207075626c6963206b65792e00000000ac2a11000400000000000000b02a1100010000000000000000000000c82a11000a0000000000000000000000182b11000700000000000000202b1100010000000000000000000000382b1100090000000000000000000000802b11000700000000000000882b1100020000000000000000000000b82b11000b000000000000007375646f00000000172d110008000000000000001f2d110010000000a02d11004e000000e4be110000000000752c110034000000e4be110000000000778b11000b000000a92c110008000000b12c110019000000ca2c110018000000e22c110035000000ba8b11000c0000007365745f6b657900000000009d2d11000300000000000000b14a1100230000002f2d11005d000000e4be110000000000752c110034000000e4be110000000000778b11000b000000a92c110008000000b12c1100190000008c2d110011000000ba8b11000c0000007375646f5f617300000000009d4c11000300000000000000b14a11002300000000000000172d110008000000000000001f2d110010000000102c110054000000642c110011000000e4be110000000000752c110034000000e4be110000000000778b11000b000000a92c110008000000b12c110019000000ca2c110018000000e22c110035000000ba8b11000c0000002041757468656e7469636174657320746865207375646f206b657920616e64206469737061746368657320612066756e6374696f6e2063616c6c207769746820605369676e656460206f726967696e2066726f6d206120676976656e206163636f756e742e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d757374206265205f5369676e65645f2e202d204f2831292e202d204c696d697465642073746f726167652072656164732e202d204f6e6520444220777269746520286576656e74292e202d20556e6b6e6f776e20776569676874206f662064657269766174697665206070726f706f73616c6020657865637574696f6e2e70726f706f73616c426f783c543a3a50726f706f73616c3e2041757468656e74696361746573207468652063757272656e74207375646f206b657920616e6420736574732074686520676976656e204163636f756e7449642028606e6577602920617320746865206e6577207375646f206b65792e202d204f6e65204442206368616e67652e6e65772041757468656e7469636174657320746865207375646f206b657920616e64206469737061746368657320612066756e6374696f6e2063616c6c20776974682060526f6f7460206f726967696e2e5375646f0000000000004c2e1100030000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be1100502e11000000000000000000602e11000100000000000000010000004b657900110000000000000001000000b4000000682e1100210000002054686520604163636f756e74496460206f6620746865207375646f206b65792e436f756e63696c456c656374696f6e204578697374696e675374616b65486f6c64657273656c656374696f6e20616c726561647920696e2070726f67726573737374616b6520686f6c64657273206d75737420626520656d7074796170706c6963616e7473206d75737420626520656d707479636f6d6d69746d656e7473206d75737420626520656d707479436f756e63696c456c656374696f6e204170706c6963616e7473436f756e63696c456c656374696f6e20436f6d6d69746d656e7473436f756e63696c456c656374696f6e205472616e7366657261626c655374616b6573436f756e63696c456c656374696f6e20526f756e64436f756e63696c456c656374696f6e20416e6e6f756e63696e67506572696f64436f756e63696c456c656374696f6e205374616765436f756e63696c456c656374696f6e00000000000000a0351100090000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100ac3511000000000000000000e4be110000000000000000000100000000000000bc351100050000000000000000000000c13511001d00000000000000000000000000000000000000000000000000000000000000e4be1100e03511000000000000000000e4be110000000000000000000000000000000000f0351100050000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f83511000000000000000000e4be110000000000000000000100000000000000083611001400000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000e4be1100000000000000000001000000000000002d361100120000000101000000000000969511000c000000000000003f3611001f00000000000000000000000000000000000000e4be1100883611000000000000000000e4be1100000000000000000001000000000000005e3611000a00000000000000000000001c3611001100000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000e4be110000000000000000000100000000000000683611000f0000000101000000000000969511000c00000000000000773611001000000000000000000000000000000000000000e4be1100883611000000000000000000e4be110000000000000000000100000000000000983611000b0000000000000000000000a33611000c00000000000000000000000000000000000000000000000000000000000000e4be1100b03611000000000000000000e4be110000000000000000000100000000000000c0361100050000000101000000000000c53611000700000000000000cc3611004100000000000000000000000000000000000000e4be1100103711000000000000000000e4be11000000000000000000010000000000000020371100100000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11004c3711000000000000000000e4be110000000000000000000100000000000000303711000c0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11004c3711000000000000000000e4be1100000000000000000001000000000000003c3711000f0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11004c3711000000000000000000e4be1100000000000000000001000000000000005c3711000b0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100683711000000000000000000e4be110000000000000000000100000000000000783711000e0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100883711000000000000000000e4be110000000000000000000100000000000000983711000f0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100b43711000000000000000000e4be110000000000000000000100000000000000c43711000f0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be1100d43711000000000000000000e4be110000000000000000000100000000000000e43711000e0000000000000000000000a73711000c00000000000000000000000000000000000000000000000000000000000000e4be1100f43711000000000000000000e4be11000000000000000000010000004175746f5374617274000000110000000000000001000000b50000005374616765456c656374696f6e53746167653c543a3a426c6f636b4e756d6265723e000011000000000000000100000021000000526f756e640000001100000000000000010000002c0000004578697374696e675374616b65486f6c646572735665633c543a3a4163636f756e7449643e5472616e7366657261626c655374616b65735472616e7366657261626c655374616b653c42616c616e63654f663c543e3e4170706c6963616e74734170706c6963616e745374616b6573456c656374696f6e5374616b653c543e001100000000000000010000008f000000436f6d6d69746d656e74735665633c543a3a486173683e0011000000000000000100000028000000566f746573543a3a486173685365616c6564566f74653c543a3a4163636f756e7449642c20456c656374696f6e5374616b653c543e2c20543a3a486173682c20543a3a4163636f756e7449643e000000110000000000000001000000b6000000416e6e6f756e63696e67506572696f64566f74696e67506572696f6452657665616c696e67506572696f64001100000000000000010000009a000000436f756e63696c53697a6500110000000000000001000000b700000043616e6469646163794c696d69740000110000000000000001000000b80000004d696e436f756e63696c5374616b6542616c616e63654f663c543e00110000000000000001000000960000004e65775465726d4475726174696f6e00110000000000000001000000b90000004d696e566f74696e675374616b65000011000000000000000100000098000000436f756e63696c456c656374696f6e20436f756e63696c53697a65436f756e63696c456c656374696f6e2043616e6469646163794c696d69740000001f3c11003b000000d002000001000000656c656374696f6e206e6f742072756e6e696e676d696e696d756d207374616b65206d7573742062652070726f76696465644f6e6c79206d656d626572732063616e206170706c7920746f206265206f6e20636f756e63696c656c656374696f6e206e6f7420696e20616e6e6f756e63696e672073746167650000001f3c11003b000000e202000027000000436f756e63696c456c656374696f6e204d696e436f756e63696c5374616b656e6f7420656e6f75676820667265652062616c616e636520746f20726573657276656661696c656420746f2072657365727665206170706c6963616e74207374616b6521001f3c11003b000000f902000023000000436f756e63696c456c656374696f6e204d696e566f74696e675374616b65436f756e63696c456c656374696f6e20566f7465736661696c656420746f207265736572766520766f74696e67207374616b65216475706c696361746520636f6d6d69746d656e74766f74696e67207374616b6520746f6f206c6f774f6e6c79206d656d626572732063616e20766f746520666f7220616e206170706c6963616e74656c656374696f6e206e6f7420696e20766f74696e672073746167651f3c11003b0000000c03000026000000636f6d6d69746d656e74206e6f7420666f756e64766f746520616c72656164792072657665616c65646f6e6c7920766f7465722063616e2072657665616c20766f7465766f746520666f72206e6f6e2d6170706c6963616e74206e6f7420616c6c6f77656473616c7420746f6f206c61726765656c656374696f6e206e6f7420696e2072657665616c696e67207374616765436f756e63696c456c656374696f6e20566f74696e67506572696f64436f756e63696c456c656374696f6e2052657665616c696e67506572696f64436f756e63696c456c656374696f6e204e65775465726d4475726174696f6e6d75737420656e642061742066757475726520626c6f636b206e756d62657263616e6e6f74206368616e676520706172616d7320647572696e6720656c656374696f6e706572696f642063616e6e6f74206265207a65726f6e6577207465726d206475726174696f6e2063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f74206265207a65726f636f756e63696c2073697a652063616e6e6f742067726561746572207468616e2063616e646964616379206c696d697463616e646964616379206c696d69742063616e6e6f74206265206c657373207468616e20636f756e63696c2073697a656f6e6c792072756e6e696e6720656c656374696f6e2063616e2062652073746f707065642f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f676f7665726e616e63652f656c656374696f6e2e7273000000000000483f11000500000000000000503f1100010000000000000000000000e4be1100000000000000000000000000683f110004000000000000006c3f1100020000000000000000000000e4be11000000000000000000000000009c3f11000600000000000000a43f1100030000000000000000000000e4be1100000000000000000000000000ec3f1100140000000000000000401100010000000000000000000000e4be110000000000000000000000000018401100130000000000000000401100010000000000000000000000e4be11000000000000000000000000002b401100100000000000000000401100010000000000000000000000e4be11000000000000000000000000003b4011001b0000000000000058401100010000000000000000000000e4be110000000000000000000000000070401100170000000000000058401100010000000000000000000000e4be1100000000000000000000000000874011001a0000000000000058401100010000000000000000000000e4be1100000000000000000000000000a14011001b00000000000000bc401100010000000000000000000000e4be1100000000000000000000000000d44011001b00000000000000f0401100010000000000000000000000e4be110000000000000000000000000008411100160000000000000020411100010000000000000000000000e4be110000000000000000000000000038411100190000000000000054411100010000000000000000000000e4be11000000000000000000000000006c4111001a00000000000000bc401100010000000000000000000000e4be1100000000000000000000000000864111001300000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000994111001400000000000000e4be1100000000000000000000000000e4be1100000000000000000000000000ad4111000e00000000000000bc411100010000000000000000000000e4be110000000000000000006170706c7900000000000000124211000500000000000000a73711000c000000766f746500000000044211000a00000000000000c53611000700000000000000124211000500000000000000a73711000c00000072657665616c000000000000044211000a00000000000000c53611000700000000000000683f11000400000000000000969511000c000000000000000e4211000400000000000000d68b1100070000007365745f73746167655f616e6e6f756e63696e6700000000fd4111000700000000000000026711000e0000007365745f73746167655f72657665616c696e677365745f73746167655f766f74696e677365745f706172616d5f616e6e6f756e63696e675f706572696f64000000000000f74111000600000000000000026711000e0000007365745f706172616d5f766f74696e675f706572696f647365745f706172616d5f72657665616c696e675f706572696f647365745f706172616d5f6d696e5f636f756e63696c5f7374616b6500000000f14111000600000000000000a73711000c0000007365745f706172616d5f6e65775f7465726d5f6475726174696f6e0000000000e94111000800000000000000026711000e0000007365745f706172616d5f636f756e63696c5f73697a65000000000000dd4111000c00000000000000aba31100030000007365745f706172616d5f63616e6469646163795f6c696d697400000000000000d84111000500000000000000aba31100030000007365745f706172616d5f6d696e5f766f74696e675f7374616b65666f7263655f73746f705f656c656374696f6e666f7263655f73746172745f656c656374696f6e7365745f6175746f5f73746172740000000000d44111000400000000000000a58e110004000000666c61676c696d6974636f756e63696c5f73697a656475726174696f6e616d6f756e74706572696f64656e64735f6174636f6d6d69746d656e7473616c747374616b654d656d6f000000000017421100040000000101000000000000969511000c00000000000000cc4211000800000000000000000000000000000000000000e4be1100d44211000000000000000000e4be110000000000000000000100000000000000e44211000d0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f44211000000000000000000e4be11000000000000000000010000004d656d6f54657874110000000000000001000000290000004d61784d656d6f4c656e677468000000110000000000000001000000ba0000004d656d6f204d61784d656d6f4c656e6774686163636f756e74206d757374206861766520612062616c616e63656d656d6f20746f6f206c6f6e674d656d6f204d656d6f0000000000744311000b0000000000000080431100010000000000000000000000e4be110000000000000000007570646174655f6d656d6f0000000000984311000400000000000000cc421100080000006d656d6f00000000204411000a000000000000002c4411000200000000000000000000003c441100010000000000000000000000444411000d00000000000000544411000100000000000000000000005c4411000100000000000000000000006444110008000000000000006c4411000400000000000000000000008c44110001000000000000004e65774163636f756e740000d289110009000000c044110007000000de4411001b0000005265617065644163636f756e74000000d289110009000000c7441100170000005472616e73666572d289110009000000d289110009000000c044110007000000c044110007000000944411002c000000205472616e7366657220737563636565646564202866726f6d2c20746f2c2076616c75652c2066656573292e42616c616e636520416e206163636f756e7420776173207265617065642e2041206e6577206163636f756e742077617320637265617465642e62656e6566696369617279206163636f756e74206d757374207072652d6578697374746f6f2066657720667265652066756e647320696e206163636f756e7442616c616e63657320546f74616c49737375616e636542616c616e636573204672656542616c616e636542616c616e63657320526573657276656442616c616e636575706461746564206f70656e696e672073686f756c6420626520696e206163746976652073746167657374616765204d555354206265206163746976654f6666656e636573205265706f72747342616c616e636573204c6f636b7350726576696f7573206d617463682061726d206d61746368657320616e7974696e67206c657373207468616e20325e33303b2071656400000000000000000000000000204611003d000000736869667465642073756666696369656e74206269747320726967687420746f206c656164206f6e6c79206c656164696e67207a65726f733b2071656400000000000000000000000000000000000000000000002047110008000000000000002847110002000000000000000000000058471100190000000000000000000000204811000b000000000000002c481100030000000000000000000000744811000d0000000000000000000000dc4811000e00000000000000ec48110003000000000000000000000034491100020000000000000000000000444911001300000000000000284711000200000000000000000000005849110006000000000000007472616e7366657200000000d44a11000400000000000000b14a11002300000000000000d84a11000500000000000000dd4a110013000000b44c110036000000e4be110000000000ea4c1100420000002c4d110048000000744d110045000000b94d11002d000000e4be110000000000e64d110046000000e4be110000000000778b11000b0000002c4e11004c000000784e110033000000ab4e11005a000000e4be110000000000054f110013000000e4be110000000000184f1100540000006c4f11004b000000b74f110035000000ec4f11003700000023501100560000007950110052000000cb5011003e000000e4be110000000000ba8b11000c0000007365745f62616c616e636500000000009d4c11000300000000000000b14a11002300000000000000a04c11000800000000000000dd4a11001300000000000000a84c11000c00000000000000dd4a110013000000f04a110025000000e4be110000000000154b1100480000005d4b1100420000009f4b110046000000e54b11003a000000e4be1100000000001f4c11002d000000e4be110000000000778b11000b0000004c4c1100200000006c4c110031000000ba8b11000c000000666f7263655f7472616e73666572000000000000ab4a11000600000000000000b14a11002300000000000000d44a11000400000000000000b14a11002300000000000000d84a11000500000000000000dd4a1100130000004c4a110054000000a04a11000b0000007472616e736665725f6b6565705f616c697665008849110054000000dc49110010000000e4be110000000000ec4911002f000000e4be1100000000001b4a1100310000002053616d6520617320746865205b607472616e73666572605d2063616c6c2c206275742077697468206120636865636b207468617420746865207472616e736665722077696c6c206e6f74206b696c6c20746865206f726967696e206163636f756e742e20393925206f66207468652074696d6520796f752077616e74205b607472616e73666572605d20696e73746561642e205b607472616e73666572605d3a207374727563742e4d6f64756c652e68746d6c236d6574686f642e7472616e736665722045786163746c7920617320607472616e73666572602c2065786365707420746865206f726967696e206d75737420626520726f6f7420616e642074686520736f75726365206163636f756e74206d6179206265207370656369666965642e736f757263653c543a3a4c6f6f6b7570206173205374617469634c6f6f6b75703e3a3a536f757263656465737476616c7565436f6d706163743c543a3a42616c616e63653e20536574207468652062616c616e636573206f66206120676976656e206163636f756e742e20546869732077696c6c20616c74657220604672656542616c616e63656020616e642060526573657276656442616c616e63656020696e2073746f726167652e2069742077696c6c20616c736f2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d202860546f74616c49737375616e636560292e20496620746865206e65772066726565206f722072657365727665642062616c616e63652069732062656c6f7720746865206578697374656e7469616c206465706f7369742c2069742077696c6c20726573657420746865206163636f756e74206e6f6e636520286073797374656d3a3a4163636f756e744e6f6e636560292e20546865206469737061746368206f726967696e20666f7220746869732063616c6c2069732060726f6f74602e202d20496e646570656e64656e74206f662074686520617267756d656e74732e202d20436f6e7461696e732061206c696d69746564206e756d626572206f6620726561647320616e64207772697465732e77686f6e65775f667265656e65775f7265736572766564205472616e7366657220736f6d65206c697175696420667265652062616c616e636520746f20616e6f74686572206163636f756e742e20607472616e73666572602077696c6c207365742074686520604672656542616c616e636560206f66207468652073656e64657220616e642072656365697665722e2049742077696c6c2064656372656173652074686520746f74616c2069737375616e6365206f66207468652073797374656d2062792074686520605472616e73666572466565602e204966207468652073656e6465722773206163636f756e742069732062656c6f7720746865206578697374656e7469616c206465706f736974206173206120726573756c74206f6620746865207472616e736665722c20746865206163636f756e742077696c6c206265207265617065642e20546865206469737061746368206f726967696e20666f7220746869732063616c6c206d75737420626520605369676e65646020627920746865207472616e736163746f722e202d20446570656e64656e74206f6e20617267756d656e747320627574206e6f7420637269746963616c2c20676976656e2070726f70657220696d706c656d656e746174696f6e7320666f72202020696e70757420636f6e6669672074797065732e205365652072656c617465642066756e6374696f6e732062656c6f772e202d20497420636f6e7461696e732061206c696d69746564206e756d626572206f6620726561647320616e642077726974657320696e7465726e616c6c7920616e64206e6f20636f6d706c657820636f6d7075746174696f6e2e2052656c617465642066756e6374696f6e733a2020202d2060656e737572655f63616e5f77697468647261776020697320616c776179732063616c6c656420696e7465726e616c6c792062757420686173206120626f756e64656420636f6d706c65786974792e2020202d205472616e7366657272696e672062616c616e63657320746f206163636f756e7473207468617420646964206e6f74206578697374206265666f72652077696c6c20636175736520202020202060543a3a4f6e4e65774163636f756e743a3a6f6e5f6e65775f6163636f756e746020746f2062652063616c6c65642e2020202d2052656d6f76696e6720656e6f7567682066756e64732066726f6d20616e206163636f756e742077696c6c2074726967676572202020202060543a3a4475737452656d6f76616c3a3a6f6e5f756e62616c616e6365646020616e642060543a3a4f6e4672656542616c616e63655a65726f3a3a6f6e5f667265655f62616c616e63655f7a65726f602e2020202d20607472616e736665725f6b6565705f616c6976656020776f726b73207468652073616d652077617920617320607472616e73666572602c206275742068617320616e206164646974696f6e616c2020202020636865636b207468617420746865207472616e736665722077696c6c206e6f74206b696c6c20746865206f726967696e206163636f756e742e42616c616e63657300000000000000cc5211000d0000000000000000000000d95211000a00000000000000000000000000000000000000000000000000000000000000e4be1100845a11000000000000000000e452110001000000000000000100000000000000ec521100070000000101000000000000969511000c00000000000000f35211002b00000000000000000000000000000000000000e4be11002053110000000000000000003053110001000000000000000000000000000000385311000b0000000101000000000000969511000c00000000000000d95211000a00000000000000000000000000000000000000e4be1100845a11000000000000000000445311000b0000000000000001000000000000009c5311000f0000000101000000000000969511000c00000000000000d95211000a00000000000000000000000000000000000000e4be1100845a11000000000000000000ac5311000b00000000000000010000000000000004541100050000000101000000000000969511000c00000000000000095411002c00000000000000000000000000000000000000e4be110038541100000000000000000048541100010000000000000001000000546f74616c49737375616e6365543a3a42616c616e636500795911002600000056657374696e6756657374696e675363686564756c653c543a3a42616c616e63652c20543a3a426c6f636b4e756d6265723e00001100000000000000010000002100000043591100360000004672656542616c616e636500c956110027000000e4be110000000000f056110050000000405711005d0000009d57110055000000f25711004f00000041581100510000009258110015000000e4be110000000000a758110057000000fe58110045000000526573657276656442616c616e6365007e5411005d000000db54110027000000e4be110000000000025511005b0000005d55110049000000e4be110000000000a65511005d000000035611002d000000e4be110000000000305611005300000083561100460000004c6f636b735665633c42616c616e63654c6f636b3c543a3a42616c616e63652c20543a3a426c6f636b4e756d6265723e3e00000011000000000000000100000028000000505411002e00000020416e79206c6971756964697479206c6f636b73206f6e20736f6d65206163636f756e742062616c616e6365732e2054686520616d6f756e74206f66207468652062616c616e6365206f66206120676976656e206163636f756e7420746861742069732065787465726e616c6c792072657365727665643b20746869732063616e207374696c6c2067657420736c61736865642c20627574206765747320736c6173686564206c617374206f6620616c6c2e20546869732062616c616e63652069732061202772657365727665272062616c616e63652074686174206f746865722073756273797374656d732075736520696e206f7264657220746f2073657420617369646520746f6b656e73207468617420617265207374696c6c20276f776e65642720627920746865206163636f756e7420686f6c6465722c20627574207768696368206172652073757370656e6461626c652e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e2074686973202772657365727665206163636f756e74272069732064656c657465643a207370656369666963616c6c792c2060526573657276656442616c616e6365602e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c6574656420696620604672656542616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e2920546865202766726565272062616c616e6365206f66206120676976656e206163636f756e742e205468697320697320746865206f6e6c792062616c616e63652074686174206d61747465727320696e207465726d73206f66206d6f7374206f7065726174696f6e73206f6e20746f6b656e732e20497420616c6f6e65206973207573656420746f2064657465726d696e65207468652062616c616e6365207768656e20696e2074686520636f6e747261637420657865637574696f6e20656e7669726f6e6d656e742e205768656e20746869732062616c616e63652066616c6c732062656c6f77207468652076616c7565206f6620604578697374656e7469616c4465706f736974602c207468656e20746865202763757272656e74206163636f756e74272069732064656c657465643a207370656369666963616c6c7920604672656542616c616e6365602e20467572746865722c2074686520604f6e4672656542616c616e63655a65726f602063616c6c6261636b20697320696e766f6b65642c20676976696e672061206368616e636520746f2065787465726e616c206d6f64756c657320746f20636c65616e2075702064617461206173736f6369617465642077697468207468652064656c65746564206163636f756e742e206073797374656d3a3a4163636f756e744e6f6e63656020697320616c736f2064656c657465642069662060526573657276656442616c616e63656020697320616c736f207a65726f2028697420616c736f206765747320636f6c6c617073656420746f207a65726f2069662069742065766572206265636f6d6573206c657373207468616e20604578697374656e7469616c4465706f736974602e20496e666f726d6174696f6e20726567617264696e67207468652076657374696e67206f66206120676976656e206163636f756e742e2054686520746f74616c20756e6974732069737375656420696e207468652073797374656d2e0000000000485a11001200000000000000d95211000a00000000000000e4be1100845a110000000000000000005c5a1100010000000000000000000000645a11000b00000000000000d95211000a00000000000000e4be1100845a11000000000000000000705a1100010000000000000000000000785a11000b00000000000000d95211000a00000000000000e4be1100845a11000000000000000000945a110001000000000000004578697374656e7469616c4465706f7369740000e85a1100350000005472616e7366657246656500c35a1100250000004372656174696f6e46656500110000000000000001000000340000009c5a110027000000205468652066656520726571756972656420746f2063726561746520616e206163636f756e742e205468652066656520726571756972656420746f206d616b652061207472616e736665722e20546865206d696e696d756d20616d6f756e7420726571756972656420746f206b65657020616e206163636f756e74206f70656e2e4f6666656e63657300000000000000305c1100070000000101000000000000375c11000d00000000000000445c11003400000000000000000000000000000000000000e4be1100785c11000000000000000000885c110001000000000000000000000000000000905c1100160000000201010000000000ffba1100040000000000000003bb11000e00000000000000a65c11001200000000000000e4be1100b85c11000000000000000000c85c110001000000000000000100000000000000d05c1100120000000101000000000000ffba11000400000000000000d68b11000700000000000000000000000000000000000000e4be1100e45c11000000000000000000f45c11000600000000000000010000005265706f7274735265706f727449644f663c543e4f6666656e636544657461696c733c543a3a4163636f756e7449642c20543a3a4964656e74696669636174696f6e5475706c653e110000000000000001000000210000008d5e110052000000436f6e63757272656e745265706f727473496e6465785665633c5265706f727449644f663c543e3e11000000000000000100000028000000435e11004a0000005265706f72747342794b696e64496e646578000011000000000000000100000029000000245d110044000000e4be110000000000685d11002f000000e4be110000000000975d110052000000e95d11005a00000020456e756d65726174657320616c6c207265706f727473206f662061206b696e6420616c6f6e672077697468207468652074696d6520746865792068617070656e65642e20416c6c207265706f7274732061726520736f72746564206279207468652074696d65206f66206f6666656e63652e204e6f74652074686174207468652061637475616c2074797065206f662074686973206d617070696e6720697320605665633c75383e602c207468697320697320626563617573652076616c756573206f6620646966666572656e7420747970657320617265206e6f7420737570706f7274656420617420746865206d6f6d656e7420736f2077652061726520646f696e6720746865206d616e75616c2073657269616c697a6174696f6e2e204120766563746f72206f66207265706f727473206f66207468652073616d65206b696e6420746861742068617070656e6564206174207468652073616d652074696d6520736c6f742e20546865207072696d61727920737472756374757265207468617420686f6c647320616c6c206f6666656e6365207265636f726473206b65796564206279207265706f7274206964656e746966696572732e42616c616e6365732056657374696e676163636f756e74206c6971756964697479207265737472696374696f6e732070726576656e74207769746864726177616c76657374696e672062616c616e636520746f6f206869676820746f2073656e642076616c75656e6f7420656e6f75676820667265652066756e6473696d2d6f6e6c696e653a6f66666c696e4f6666656e63657320436f6e63757272656e745265706f727473496e64657862616c616e636520746f6f206c6f7720746f2073656e642076616c756564657374696e6174696f6e2062616c616e636520746f6f206869676820746f20726563656976652076616c75653a6772616e6470615f617574686f72697469657354696d657374616d702055706461746554696d657374616d7020526563656e7448696e7473417574686f72697479446973636f76657279204b65797346696e616c2068696e74206d7573742062652075706461746564206f6e6c79206f6e636520696e2074686520626c6f636b46696e616c697a6564206865696768742061626f766520626c6f636b206e756d62657263616c6c65642060526573756c743a3a756e77726170282960206f6e20616e2060457272602076616c756500e4be110000000000b4601100020000003a204469676573744974656d206e6f7420657175616c4772616e64706146696e616c697479205374616c6c6564000000110000000800000004000000bb000000bc0000000000000000000000bd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000800000004000000bb000000bc0000000000000000000000bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004772616e64706146696e616c6974792050656e64696e674368616e67654772616e64706146696e616c697479204e657874466f726365640000000000706311001200000000000000846311000100000000000000000000009c63110001000000000000007265706f72745f6d69736265686176696f72000000000000bd6311000700000000000000d68b110007000000a463110019000000205265706f727420736f6d65206d69736265686176696f722e5f7265706f72744772616e64706146696e616c69747900000000003c6611000b0000000000000000000000e3b811000d00000000000000000000000000000000000000000000000000000000000000e4be11004866110000000000000000005866110004000000000000000100000000000000786611000500000000000000000000007d6611001b00000000000000000000000000000000000000000000000000000000000000e4be1100986611000000000000000000a866110001000000000000000100000000000000b06611000d0000000000000000000000bd6611002300000000000000000000000000000000000000000000000000000000000000e4be1100e06611000000000000000000f066110001000000000000000000000000000000f86611000a0000000000000000000000026711000e00000000000000000000000000000000000000000000000000000000000000e4be11009867110000000000000000001067110001000000000000000000000000000000186711000700000000000000000000001f6711002000000000000000000000000000000000000000000000000000000000000000e4be11004067110000000000000000005067110001000000000000000000000000000000586711000c0000000000000000000000646711000500000000000000000000000000000000000000000000000000000000000000e4be11006c67110000000000000000007c671100020000000000000001000000000000008c6711000c00000001010000000000006467110005000000000000001bbc11000c00000000000000000000000000000000000000e4be1100986711000000000000000000a8671100010000000000000000000000417574686f7269746965730011000000000000000100000028000000506911000b000000e4be1100000000005b69110058000000b369110025000000537461746553746f72656453746174653c543a3a426c6f636b4e756d6265723e110000000000000001000000be0000002c6911002400000050656e64696e674368616e676553746f72656450656e64696e674368616e67653c543a3a426c6f636b4e756d6265723e11000000000000000100000021000000fb681100310000004e657874466f72636564543a3a426c6f636b4e756d626572cc6811002f0000005374616c6c656428543a3a426c6f636b4e756d6265722c20543a3a426c6f636b4e756d626572290011000000000000000100000021000000a86811002400000043757272656e74536574496453657449640000001100000000000000010000002600000020681100570000007768110031000000536574496453657373696f6e11000000000000000100000021000000b0671100700000002041206d617070696e672066726f6d206772616e6470612073657420494420746f2074686520696e646578206f6620746865202a6d6f737420726563656e742a2073657373696f6e20666f7220776869636820697473206d656d62657273207765726520726573706f6e7369626c652e20546865206e756d626572206f66206368616e6765732028626f746820696e207465726d73206f66206b65797320616e6420756e6465726c79696e672065636f6e6f6d696320726573706f6e736962696c69746965732920696e20746865202273657422206f66204772616e6470612076616c696461746f72732066726f6d2067656e657369732e20607472756560206966207765206172652063757272656e746c79207374616c6c65642e206e65787420626c6f636b206e756d6265722077686572652077652063616e20666f7263652061206368616e67652e2050656e64696e67206368616e67653a20287369676e616c65642061742c207363686564756c6564206368616e6765292e205374617465206f66207468652063757272656e7420617574686f72697479207365742e20444550524543415445442054686973207573656420746f2073746f7265207468652063757272656e7420617574686f72697479207365742c20776869636820686173206265656e206d6967726174656420746f207468652077656c6c2d6b6e6f776e204752414e4450415f415554484f52495445535f4b455920756e686173686564206b65792e4772616e64706146696e616c69747920537461746554696d657374616d70204f72646572656448696e747354696d657374616d70204d656469616e616c77617973206174206c65617374206f6e6520726563656e742073616d706c653b20716564000000df6a110067000000990000002b000000726563656e7420616e64206f72646572656420636f6e7461696e207468652073616d65206974656d733b2071656400001100000004000000040000000a000000df6a110067000000a40000001b0000007072756e696e672064696374617465642062792077696e646f775f73697a6520776869636820697320616c776179732073617475726174656420617420313b207165642f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f66696e616c6974792d747261636b65722f7372632f6c69622e7273000000000000746b11000a00000000000000806b1100010000000000000000000000986b1100020000000000000066696e616c5f68696e74000000000000006c11000400000000000000046c110017000000a86b11003d000000e56b11001b0000002048696e7420746861742074686520617574686f72206f66207468697320626c6f636b207468696e6b732074686520626573742066696e616c697a656420626c6f636b2069732074686520676976656e206e756d6265722e68696e74436f6d706163743c543a3a426c6f636b4e756d6265723e00000000008c6c11000a00000000000000026711000e00000000000000e4be1100986c11000000000000000000a86c1100010000000000000000000000b06c11000d00000000000000026711000e00000000000000e4be1100c06c11000000000000000000d06c1100010000000000000057696e646f7753697a650000110000000000000001000000bf0000001f6d1100460000005265706f72744c6174656e6379000000110000000000000001000000b9000000d86c110047000000205468652064656c617920616674657220776869636820706f696e74207468696e6773206265636f6d6520737573706963696f75732e2044656661756c7420697320313030302e20546865206e756d626572206f6620726563656e742073616d706c657320746f206b6565702066726f6d207468697320636861696e2e2044656661756c74206973203130312e696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f646570726576696f75732f6e657874206f6e6c7920636f6e7461696e206578697374696e6720656e74697265733b0a090909090909776520656e756d6572617465207573696e67206e6578743b20656e747279206578697374733b207165640000fc6d1100770000007d0000000d0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f73726d6c2f737570706f72742f7372632f73746f726167652f67656e657261746f722f6c696e6b65645f6d61702e72730000000000d46f11000f00000000000000e46f1100010000000000000000000000ec6f1100010000000000000000000000f46f11000f00000000000000047011000300000000000000000000001c701100030000000000000000000000347011000d00000000000000447011000100000000000000000000004c701100010000000000000000000000547011000f0000000000000044701100010000000000000000000000647011000100000000000000000000006c70110009000000000000007870110001000000000000000000000080701100010000000000000000000000887011000d000000000000007870110001000000000000000000000098701100010000000000000000000000a07011000f00000000000000b0701100020000000000000000000000c0701100020000000000000000000000d07011000c00000000000000dc701100020000000000000000000000ec701100010000000000000043617465676f727943726561746564000d7311000a000000237311001a00000043617465676f727955706461746564000d7311000a000000177311000c000000177311000c00000044721100260000006a72110052000000bc72110051000000546872656164437265617465640000003c7211000800000018721100240000005468726561644d6f6465726174656400f271110026000000506f73744164646564000000a771110006000000d271110020000000506f73744d6f64657261746564000000b071110022000000506f7374546578745570646174656400a771110006000000ad711100030000002a711100290000005371110054000000466f72756d5375646f53657419711100110000001971110011000000f47011002500000020476976656e206163636f756e74207761732073657420617320666f72756d207375646f2e4f7074696f6e3c4163636f756e7449643e20506f7374207769746820676976656e2069642068616420697473207465787420757064617465642e20546865207365636f6e6420617267756d656e74207265666c6563747320746865206e756d626572206f6620746f74616c206564697473207768656e20746865207465787420757064617465206f63637572732e506f7374496475363420506f73742077697468206769766e6520696420776173206d6f646572617465642e20506f7374207769746820676976656e2069642077617320637265617465642e204120746872656164207769746820676976656e20696420776173206d6f646572617465642e204120746872656164207769746820676976656e2069642077617320637265617465642e546872656164496420412063617465676f7279207769746820676976656e2069642077617320757064617465642e20546865207365636f6e6420617267756d656e74207265666c6563747320746865206e657720617263686976616c20737461747573206f66207468652063617465676f72792c206966206368616e6765642e2054686520746869726420617267756d656e74207265666c6563747320746865206e65772064656c6574696f6e20737461747573206f66207468652063617465676f72792c206966206368616e6765642e43617465676f727949644f7074696f6e3c626f6f6c3e20412063617465676f72792077617320696e74726f64756365644c696e6b616765206973207570646174656420696e206361736520656e7472792069732072656d6f7665643b0a0909090909697420616c7761797320706f696e747320746f206578697374696e67206b6579733b20716564000000fc6d1100770000009a00000017000000fc6d110077000000a5000000170000006865616420697320736574207768656e20666972737420656c656d656e7420697320696e7365727465640a090909090909616e6420756e736574207768656e206c61737420656c656d656e742069732072656d6f7665643b0a0909090909096966206865616420697320536f6d65207468656e20697420706f696e747320746f206578697374696e67206b65793b207165640000fc6d110077000000c50000002300000000000000bc7511000e00000000000000cc751100010000000000000000000000e4751100010000000000000000000000ec7511000f00000000000000fc751100030000000000000000000000447611000100000000000000000000004c7611000f000000000000005c761100030000000000000000000000a4761100010000000000000000000000ac7611000d00000000000000bc761100030000000000000000000000047711000100000000000000000000000c7711000f000000000000001c7711000200000000000000000000004c7711000100000000000000000000005477110008000000000000005c7711000200000000000000000000008c771100010000000000000000000000947711000e00000000000000a47711000200000000000000000000008c771100010000000000000000000000d47711000d00000000000000e47711000200000000000000000000001478110001000000000000007365745f666f72756d5f7375646f000000000000157911000e00000000000000237911001400000005791100100000006372656174655f63617465676f72790000000000e27811000600000000000000e87811001200000000000000937811000500000000000000d68b11000700000000000000fa7811000b00000000000000d68b110007000000ce781100140000007570646174655f63617465676f72790000000000887811000b000000000000000d7311000a00000000000000a87811001300000000000000177311000c00000000000000bb7811001300000000000000177311000c00000098781100100000006372656174655f74687265616400000000000000887811000b000000000000000d7311000a00000000000000937811000500000000000000d68b1100070000000000000013af11000400000000000000d68b1100070000006a7811001e0000006d6f6465726174655f74687265616400000000005178110009000000000000003c7211000800000000000000317811000900000000000000d68b1100070000005a781100100000006164645f706f7374000000005178110009000000000000003c721100080000000000000013af11000400000000000000d68b110007000000427811000f000000656469745f706f73745f746578740000000000002a7811000700000000000000a771110006000000000000003a7811000800000000000000d68b1100070000006d6f6465726174655f706f7374000000000000002a7811000700000000000000a77111000600000000000000317811000900000000000000d68b1100070000001c7811000e000000204d6f64657261746520706f7374706f73745f6964726174696f6e616c656e65775f74657874204564697420706f737420746578747468726561645f6964204d6f6465726174652074687265616420437265617465206e65772074687265616420696e2063617465676f727963617465676f72795f69647469746c65205570646174652063617465676f72796e65775f617263686976616c5f7374617475736e65775f64656c6574696f6e5f737461747573204164642061206e65772063617465676f72792e706172656e744f7074696f6e3c43617465676f727949643e6465736372697074696f6e2053657420666f72756d207375646f2e6e65775f666f72756d5f7375646f4f7074696f6e3c543a3a4163636f756e7449643e466f72756d00000000b47d11000c00000001010000000000000d7311000a00000000000000c07d11003100000000000000000000000000000000000000e4be1100f47d11000000000000000000047e1100010000000000000001000000000000000c7e11000e00000000000000000000000d7311000a00000000000000000000000000000000000000000000000000000000000000e4be1100e87e110000000000000000001c7e110001000000000000000100000000000000247e11000a00000001010000000000003c72110008000000000000002e7e11002f00000000000000000000000000000000000000e4be1100607e11000000000000000000707e110001000000000000000100000000000000787e11000c00000000000000000000003c7211000800000000000000000000000000000000000000000000000000000000000000e4be1100e87e11000000000000000000847e1100010000000000000001000000000000008c7e1100080000000101000000000000a77111000600000000000000947e11002d00000000000000000000000000000000000000e4be1100c47e11000000000000000000d47e110001000000000000000100000000000000dc7e11000a0000000000000000000000a77111000600000000000000000000000000000000000000000000000000000000000000e4be1100e87e11000000000000000000f87e110001000000000000000100000000000000007f1100090000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be11000c7f110000000000000000001c7f110001000000000000000000000000000000247f11001700000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f110000000000000000005c7f110003000000000000000100000000000000747f11001d00000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000917f11001500000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000a67f11001200000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000b87f11002300000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000000000000db7f11002100000000000000000000003b7f11001f00000000000000000000000000000000000000000000000000000000000000e4be1100fc7f11000000000000000000e4be110000000000000000000100000043617465676f72794279496443617465676f72793c543a3a426c6f636b4e756d6265722c20543a3a4d6f6d656e742c20543a3a4163636f756e7449643e000000110000000000000001000000c00000009f811100330000004e65787443617465676f7279496400005b81110044000000546872656164427949645468726561643c543a3a426c6f636b4e756d6265722c20543a3a4d6f6d656e742c20543a3a4163636f756e7449643e000000110000000000000001000000c10000002c8111002f0000004e6578745468726561644964ea80110042000000506f737442794964506f73743c543a3a426c6f636b4e756d6265722c20543a3a4d6f6d656e742c20543a3a4163636f756e7449643e000000110000000000000001000000c2000000bf8011002b0000004e657874506f73744964000011000000000000000100000026000000838011003c000000466f72756d5375646f000000110000000000000001000000210000006c8011001700000043617465676f72795469746c65436f6e73747261696e74496e70757456616c69646174696f6e4c656e677468436f6e73747261696e7400000c801100120000001e801100400000005e8011000e00000043617465676f72794465736372697074696f6e436f6e73747261696e745468726561645469746c65436f6e73747261696e74506f737454657874436f6e73747261696e745468726561644d6f6465726174696f6e526174696f6e616c65436f6e73747261696e74506f73744d6f6465726174696f6e526174696f6e616c65436f6e73747261696e741100000000000000010000002400000020496e70757420636f6e73747261696e74732054686573652061726520616c6c20666f7277617264206c6f6f6b696e672c207468617420697320746865792061726520656e666f72636564206f6e20616c6c206675747572652063616c6c732e204163636f756e74206f6620666f72756d207375646f2e20506f7374206964656e7469666965722076616c756520746f206265207573656420666f7220666f72206e65787420706f737420637265617465642e204d617020706f7374206964656e74696669657220746f20636f72726573706f6e64696e6720706f73742e20546872656164206964656e7469666965722076616c756520746f206265207573656420666f72206e6578742054687265616420696e20746872656164427949642e204d617020746872656164206964656e74696669657220746f20636f72726573706f6e64696e67207468726561642e2043617465676f7279206964656e7469666965722076616c756520746f206265207573656420666f7220746865206e6578742043617465676f727920637265617465642e204d61702063617465676f7279206964656e74696669657220746f20636f72726573706f6e64696e672063617465676f72792e0000ea8411001e0000000500000032000000466f72756d20466f72756d5375646f466f72756d207375646f206e6f74207365742e4f726967696e206e6f7420666f72756d207375646f2e43617465676f7279207469746c6520746f6f2073686f72742e43617465676f7279207469746c6520746f6f206c6f6e672e43617465676f7279206465736372697074696f6e20746f6f206c6f6e672e466f72756d2043617465676f7279427949640000006d8511003a000000b202000027000000416e636573746f722063617465676f727920696d6d757461626c652c20692e652e2064656c65746564206f722061726368697665644d6178696d756d2076616c69642063617465676f72792064657074682065786365656465642e43617465676f7279206e6f74206265696e6720757064617465642e43617465676f72792063616e6e6f7420626520756e6172636869766564207768656e2064656c657465642e4e6f7420666f72756d20757365722e546872656164207469746c6520746f6f2073686f72742e546872656164207469746c6520746f6f206c6f6e672e506f7374207465787420746f6f2073686f72742e506f737420746f6f206c6f6e672e466f72756d2054687265616442794964546872656164206d6f6465726174696f6e20726174696f6e616c6520746f6f2073686f72742e546872656164206d6f6465726174696f6e20726174696f6e616c6520746f6f206c6f6e672e54687265616420616c7265616479206d6f646572617465642e617373657274696f6e206661696c65643a2021706174682e69735f656d7074792829000000ea8411001e00000002000000020000004163636f756e7420646f6573206e6f74206d6174636820706f737420617574686f722e466f72756d20506f737442794964506f7374206d6f6465726174696f6e20726174696f6e616c6520746f6f2073686f72742e506f7374206d6f6465726174696f6e20726174696f6e616c6520746f6f206c6f6e672e506f737420646f6573206e6f742065786973742e506f7374206973206d6f646572617465642e546872656164206973206d6f646572617465642e3c3a3a636f72653a3a6d6163726f733a3a70616e6963206d6163726f733e617373657274696f6e206661696c65643a203c43617465676f7279427949643c543e3e3a3a65786973747328266368696c645f706f736974696f6e5f696e5f706172656e742e706172656e745f69642954687265616420646f6573206e6f742065786973742f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d666f72756d2d6d6f64756c652f7372632f6c69622e727343617465676f727920646f6573206e6f742065786973742e617373657274696f6e206661696c65643a2063617465676f72795f747265655f706174682e6c656e2829203e203066696e616c6e756d417574686f727368697020417574686f7253657373696f6e2056616c696461746f727344617461204f626a656374205479706520776974682074686520676976656e204944206e6f7420666f756e642e6d656d6265722070726f66696c65206e6f7420666f756e6400000000000000b88611001800000000000000d0861100010000000000000000000000e4be1100000000000000000000000000d88611001500000000000000d0861100010000000000000000000000e4be11000000000000000000446174614f626a6563745479706552656769737465726564ed86110010000000446174614f626a6563745479706555706461746564446174614f626a6563745479706549644d656d62657273686970204d656d62657250726f66696c654d656d62657273686970204d656d6265724964734279526f6f744163636f756e7449644d656d62657273686970204d656d6265724964734279436f6e74726f6c6c65724163636f756e7449644d656d62657273686970204d656d62657273686970496442794163746f72496e526f6c6500000000000000e88811001000000000000000f8881100020000000000000000000000e4be110000000000000000000000000008891100160000000000000020891100010000000000000000000000e4be110000000000000000000000000028891100130000000000000020891100010000000000000000000000e4be11000000000000000000000000003b891100130000000000000020891100010000000000000000000000e4be11000000000000000000000000004e8911001400000000000000f8881100020000000000000000000000e4be1100000000000000000000000000628911001a00000000000000f8881100020000000000000000000000e4be11000000000000000000000000007c891100140000000000000090891100020000000000000000000000e4be1100000000000000000000000000a0891100160000000000000090891100020000000000000000000000e4be110000000000000000004d656d62657252656769737465726564b689110008000000d2891100090000004d656d6265725570646174656441626f7574546578740000b6891100080000004d656d626572557064617465644176617461724d656d6265725570646174656448616e646c654d656d626572536574526f6f744163636f756e744d656d626572536574436f6e74726f6c6c65724163636f756e744d656d62657252656769737465726564526f6c65b689110008000000be891100140000004d656d626572556e72656769737465726564526f6c654d656d62657249644163746f72496e526f6c653c4163746f7249643e4163636f756e7449640000000000088a11000800000000000000108a1100020000000000000000000000408a11000a000000000000007365745f6b65797300000000c68b11000400000000000000ca8b11000700000000000000d18b11000500000000000000d68b110007000000908a110039000000c98a110048000000118b110031000000e4be110000000000428b110035000000e4be110000000000778b11000b000000828b110022000000a48b110016000000ba8b11000c0000002053657473207468652073657373696f6e206b6579287329206f66207468652066756e6374696f6e2063616c6c657220746f20606b6579602e20416c6c6f777320616e206163636f756e7420746f20736574206974732073657373696f6e206b6579207072696f7220746f206265636f6d696e6720612076616c696461746f722e205468697320646f65736e27742074616b652065666665637420756e74696c20746865206e6578742073657373696f6e2e20546865206469737061746368206f726967696e206f6620746869732066756e6374696f6e206d757374206265207369676e65642e2023203c7765696768743e202d204f286c6f67206e2920696e206e756d626572206f66206163636f756e74732e202d204f6e6520657874726120444220656e7472792e2023203c2f7765696768743e6b657973543a3a4b65797370726f6f665665633c75383e53657373696f6e000000004c8e11000a0000000000000000000000568e11001300000000000000000000000000000000000000000000000000000000000000e4be110054a2110000000000000000006c8e110001000000000000000100000000000000748e11000c00000000000000000000001bbc11000c00000000000000000000000000000000000000000000000000000000000000e4be1100808e11000000000000000000908e110001000000000000000100000000000000988e11000d0000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100b89511000000000000000000ac8e110002000000000000000100000000000000bc8e11000a0000000000000000000000c68e11001e00000000000000000000000000000000000000000000000000000000000000e4be110054a211000000000000000000e48e110002000000000000000100000000000000f48e1100120000000000000000000000068f11000800000000000000000000000000000000000000000000000000000000000000e4be110054a211000000000000000000108f110003000000000000000100000000000000288f1100080000000204010000000000d68b11000700000000000000308f11000e00000000000000ca8b11000700000000000000e4be1100408f11000000000000000000508f110004000000000000000000000000000000708f1100080000000204010000000000d68b11000700000000000000788f11001400000000000000308f11000e00000000000000e4be11008ca3110000000000000000008c8f110004000000000000000000000056616c696461746f72735665633c543a3a56616c696461746f7249643e000000539211001f00000043757272656e74496e6465781100000000000000010000002c000000359211001e0000005175657565644368616e676564626f6f6c000000be9111004e0000000c921100290000005175657565644b6579735665633c28543a3a56616c696461746f7249642c20543a3a4b657973293e379111004f000000869111003800000044697361626c656456616c696461746f72735665633c7533323e0000ca90110020000000e4be110000000000ea9011004d0000004e6578744b657973543a3a56616c696461746f724964000011000000000000000100000021000000a390110027000000e4be110000000000f58f1100560000004b901100580000004b65794f776e6572284b65795479706549642c205665633c75383e29ac8f110049000000e4be110000000000f58f1100560000004b9011005800000020546865206f776e6572206f662061206b65792e20546865207365636f6e64206b65792069732074686520604b657954797065496460202b2074686520656e636f646564206b65792e20546865206669727374206b657920697320616c77617973206044454455505f4b45595f5052454649586020746f206861766520616c6c20746865206461746120696e207468652073616d65206272616e6368206f662074686520747269652e20486176696e6720616c6c206461746120696e207468652073616d65206272616e63682073686f756c642070726576656e7420736c6f77696e6720646f776e206f7468657220717565726965732e20546865206e6578742073657373696f6e206b65797320666f7220612076616c696461746f722e20496e6469636573206f662064697361626c65642076616c696461746f72732e205468652073657420697320636c6561726564207768656e20606f6e5f73657373696f6e5f656e64696e67602072657475726e732061206e657720736574206f66206964656e7469746965732e2054686520717565756564206b65797320666f7220746865206e6578742073657373696f6e2e205768656e20746865206e6578742073657373696f6e20626567696e732c207468657365206b6579732077696c6c206265207573656420746f2064657465726d696e65207468652076616c696461746f7227732073657373696f6e206b6579732e20547275652069662074686520756e6465726c79696e672065636f6e6f6d6963206964656e746974696573206f7220776569676874696e6720626568696e64207468652076616c696461746f727320686173206368616e67656420696e20746865207175657565642076616c696461746f72207365742e2043757272656e7420696e646578206f66207468652073657373696f6e2e205468652063757272656e7420736574206f662076616c696461746f72732e000000000000ac9211001000000000000000bc9211000500000000000000e4be1100c49211000000000000000000d4921100020000000000000044454455505f4b45595f505245464958265b75385d000000110000000000000001000000c3000000e4921100590000003d9311000d0000002055736564206173206669727374206b657920666f7220604e6578744b6579736020616e6420604b65794f776e65726020746f2070757420616c6c20746865206461746120696e746f207468652073616d65206272616e6368206f662074686520747269652e3a73657373696f6e3a6b65797353657373696f6e204e6578744b65797353657373696f6e204b65794f776e657253657373696f6e205175657565644b657973417574686f727368697020556e636c6573000000000000c89311000a00000000000000d4931100010000000000000000000000ec93110001000000000000007365745f756e636c65730000000000000d9411000a00000000000000179411000e000000f4931100190000002050726f76696465206120736574206f6620756e636c65732e6e65775f756e636c65735665633c543a3a4865616465723e417574686f72736869700000000000389511000600000000000000000000003e9511003a00000000000000000000000000000000000000000000000000000000000000e4be1100789511000000000000000000889511000100000000000000010000000000000090951100060000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be11008ca311000000000000000000a495110001000000000000000000000000000000ac9511000c0000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be1100b89511000000000000000000c8951100010000000000000001000000556e636c65735665633c556e636c65456e7472794974656d3c543a3a426c6f636b4e756d6265722c20543a3a486173682c20543a3a4163636f756e7449643e3e110000000000000001000000280000001896110007000000417574686f72543a3a4163636f756e7449640000ff95110019000000446964536574556e636c657311000000000000000100000021000000d09511002f000000205768657468657220756e636c6573207765726520616c72656164792073657420696e207468697320626c6f636b2e20417574686f72206f662063757272656e7420626c6f636b2e20556e636c65736e6f206173736f6369617465642076616c696461746f7220494420666f72206163636f756e742e72656769737465726564206475706c6963617465206b6579556e636c657320616c72656164792073657420696e20626c6f636b2e756e636c6520616c726561647920696e636c75646564756e636c652069732067656e65736973756e636c6520697320746f6f206869676820696e20636861696e756e636c6520706172656e74206e6f7420696e20636861696e756e636c65206e6f7420726563656e7420656e6f75676820746f20626520696e636c7564656444656661756c742064617461206f626a656374207479706520666f7220617564696f20616e6420766964656f20636f6e74656e742e446174614f626a65637454797065526567697374727920446174614f626a6563745479706573649711003a000000a40100001b0000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f6d656d626572736869702f6d656d626572732e72734163746f72496e526f6c65416c726561647945786973747353757370656e6465644d656d62657243616e6e6f74456e746572526f6c65617373657274696f6e206661696c65643a2070726f66696c652e726f6c65732e72656769737465725f726f6c65286163746f725f696e5f726f6c6529649711003a000000ae020000090000004163746f72496e526f6c654e6f74466f756e64617373657274696f6e206661696c65643a2070726f66696c652e726f6c65732e756e72656769737465725f726f6c6528266163746f725f696e5f726f6c65290000649711003a000000c602000009000000446174614f626a65637454797065446174614f626a65637454797065526567697374727900000000b0991100150000000000000000000000c59911001300000000000000000000000000000000000000000000000000000000000000e4be1100a4a211000000000000000000e4be110000000000000000000100000000000000d8991100140000000000000000000000c59911001300000000000000000000000000000000000000000000000000000000000000e4be1100a4a211000000000000000000e4be110000000000000000000100000000000000ec9911000f0000000101000000000000c59911001300000000000000849811000e00000000000000000000000000000000000000e4be1100fc9911000000000000000000e4be11000000000000000000000000004669727374446174614f626a656374547970654964543a3a446174614f626a6563745479706549644e657874446174614f626a656374547970654964446174614f626a65637454797065730011000000000000000100000021000000989a1100230000004f9a1100490000005100000001000000446174614f626a656374547970655265676973747279204e657874446174614f626a6563745479706549642f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f73746f726167652f646174615f6f626a6563745f747970655f72656769737472792e72735f5f5068616e746f6d4974656d2073686f756c64206e6576657220626520757365642e446174614f626a656374547970655265676973747279204669727374446174614f626a6563745479706549640000000000989b11001900000000000000b49b1100010000000000000000000000e4be1100000000000000000000000000cc9b11001700000000000000e49b1100020000000000000000000000e4be1100000000000000000000000000149c11001900000000000000309c1100010000000000000000000000e4be1100000000000000000000000000489c11001b00000000000000309c1100010000000000000000000000e4be1100000000000000000072656769737465725f646174615f6f626a6563745f7479706500000000000000659c11001000000000000000849811000e0000007570646174655f646174615f6f626a6563745f747970650000000000639c11000200000000000000c59911001300000000000000659c11001000000000000000849811000e00000061637469766174655f646174615f6f626a6563745f7479706500000000000000639c11000200000000000000c599110013000000646561637469766174655f646174615f6f626a6563745f747970656964646174615f6f626a6563745f7479706555736572496e666f68616e646c654d656d6265727368697000000000000000b8a111000e0000000000000000000000c6a111000b00000000000000000000000000000000000000000000000000000000000000e4be110058a411000000000000000000d4a1110002000000000000000100000000000000e4a111000d0000000101000000000000c6a111000b00000000000000f1a111000a00000000000000000000000000000000000000e4be11008ca311000000000000000000fca111000100000000000000000000000000000004a21100180000000101000000000000969511000c000000000000001ca211001000000000000000000000000000000000000000e4be110054a2110000000000000000002ca211000100000000000000010000000000000034a211001e0000000101000000000000969511000c000000000000001ca211001000000000000000000000000000000000000000e4be110054a21100000000000000000064a21100010000000000000001000000000000006ca21100070000000101000000000000d68b11000700000000000000c6a111000b00000000000000000000000000000000000000e4be110058a41100000000000000000074a21100010000000000000001000000000000007ca2110019000000000000000000000095a211000d00000000000000000000000000000000000000000000000000000000000000e4be1100a4a211000000000000000000b4a2110001000000000000000100000000000000bca2110017000000010100000000000095a211000d00000000000000d3a211001600000000000000000000000000000000000000e4be1100eca211000000000000000000fca211000100000000000000000000000000000004a311001900000000000000000000001da311001200000000000000000000000000000000000000000000000000000000000000e4be110030a31100000000000000000040a311000100000000000000010000000000000048a31100150000000000000000000000a58e11000400000000000000000000000000000000000000000000000000000000000000e4be110060a31100000000000000000070a311000100000000000000010000000000000078a31100120000000000000000000000969511000c00000000000000000000000000000000000000000000000000000000000000e4be11008ca311000000000000000000e4be1100000000000000000000000000000000009ca311000f0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100b0a311000000000000000000e4be110000000000000000000100000000000000c0a311000f0000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100d0a311000000000000000000e4be110000000000000000000100000000000000e0a31100120000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be1100f4a311000000000000000000e4be11000000000000000000010000000000000004a41100120000000000000000000000aba311000300000000000000000000000000000000000000000000000000000000000000e4be110018a411000000000000000000e4be11000000000000000000010000000000000028a4110019000000010100000000000041a411001700000000000000c6a111000b00000000000000000000000000000000000000e4be110058a411000000000000000000e4be11000000000000000000010000004d656d6265727343726561746564543a3a4d656d6265724964000000e6a511005100000037a611003a0000004d656d62657250726f66696c6550726f66696c653c543e00b3a51100330000004d656d6265724964734279526f6f744163636f756e7449645665633c543a3a4d656d62657249643e72a51100410000004d656d6265724964734279436f6e74726f6c6c65724163636f756e7449640000110000000000000001000000280000002ba511004700000048616e646c657300f0a411003b0000004e657874506169644d656d626572736869705465726d734964543a3a506169645465726d4964000011000000000000000100000027000000d2a411001e000000506169644d656d626572736869705465726d7342794964506169644d656d626572736869705465726d733c543e00000011000000000000000100000021000000b5a411001d000000416374697665506169644d656d626572736869705465726d735665633c543a3a506169645465726d49643e00110000000000000001000000c400000098a411001d0000004e65774d656d6265727368697073416c6c6f776564000000110000000000000001000000b500000068a411003000000053637265656e696e67417574686f726974790000110000000000000001000000210000004d696e48616e646c654c656e6774687533320000110000000000000001000000c50000004d617848616e646c654c656e67746800110000000000000001000000c60000004d61784176617461725572694c656e6774680000110000000000000001000000c70000004d617841626f7574546578744c656e6774680000110000000000000001000000c80000004d656d62657273686970496442794163746f72496e526f6c654163746f72496e526f6c653c543a3a4163746f7249643e110000000000000001000000260000002049732074686520706c6174666f726d20697320616363657074696e67206e6577206d656d62657273206f72206e6f74204163746976652050616964206d656d62657273686970207465726d732050616964206d656d62657273686970207465726d73207265636f7264204e6578742070616964206d656d62657273686970207465726d73206964205265676973746572656420756e697175652068616e646c657320616e64207468656972206d617070696e6720746f207468656972206f776e6572204d617070696e67206f66206120636f6e74726f6c6c6572206163636f756e7420696420746f20766563746f72206f66206d656d6265722069647320697420636f6e74726f6c73204d617070696e67206f66206120726f6f74206163636f756e7420696420746f20766563746f72206f66206d656d6265722069647320697420636f6e74726f6c73204d617070696e67206f66206d656d626572277320696420746f207468656972206d656d626572736869702070726f66696c65204d656d626572496420746f2061737369676e20746f206e657874206d656d626572207468617420697320616464656420746f207468652072656769737472792c20616e6420697320616c736f2074686520746f74616c206e756d626572206f66206d656d6265727320637265617465642e204d656d626572496473207374617274206174205a65726f2e4d656d62657273686970204e65774d656d6265727368697073416c6c6f7765644d656d62657273686970204d696e48616e646c654c656e6774684d656d62657273686970204d617848616e646c654c656e6774684d656d62657273686970204d61784176617461725572694c656e6774684d656d62657273686970204d617841626f7574546578744c656e67746800649711003a000000e60000000100000068616e646c6520616c726561647920726567697374657265646e6f7420656e6f7567682062616c616e636520746f20627579206d656d626572736869704d656d6265727368697020416374697665506169644d656d626572736869705465726d734d656d6265727368697020506169644d656d626572736869705465726d734279496470616964206d656d62657273686970207465726d20696420646f6573206e6f7420657869737470616964207465726d73206964206e6f74206163746976656e6577206d656d62657273206e6f7420616c6c6f7765644d656d626572736869702048616e646c65736f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d6265722061626f757420746578746f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d626572206176617461726f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d6265722068616e646c656f6e6c7920636f6e74726f6c6c6572206163636f756e742063616e20757064617465206d656d62657220696e666f6f6e6c7920726f6f74206163636f756e742063616e20736574206e657720636f6e74726f6c6c6572206163636f756e746f6e6c7920726f6f74206163636f756e742063616e20736574206e657720726f6f74206163636f756e744d656d626572736869702053637265656e696e67417574686f726974796e6f742073637265656e65726e6f2073637265656e696e6720617574686f7269747920646566696e656468616e646c6520746f6f2073686f727468616e646c6520746f6f206c6f6e676176617461722075726920746f6f206c6f6e674d656d62657273686970204d656d626572734372656174656468616e646c65206d7573742062652070726f766964656420647572696e6720726567697374726174696f6e000000000060ab11000e0000000000000070ab1100020000000000000000000000a0ab1100010000000000000000000000a8ab11001800000000000000c0ab1100020000000000000000000000f0ab1100010000000000000000000000f8ab110014000000000000000cac11000200000000000000000000003cac110001000000000000000000000044ac1100140000000000000058ac110002000000000000000000000088ac110002000000000000000000000098ac11000e00000000000000a8ac1100020000000000000000000000d8ac1100010000000000000000000000e0ac11001600000000000000f8ac1100020000000000000000000000e4be110000000000000000000000000028ad1100100000000000000038ad1100020000000000000000000000e4be110000000000000000000000000068ad110013000000000000007cad1100020000000000000000000000e4be1100000000000000000000000000acad11001700000000000000c4ad1100010000000000000000000000e4be110000000000000000006275795f6d656d6265727368697000000000000036af11000d0000000000000095a211000d00000000000000f7ad11000900000000000000759c11000800000017af11001f0000006368616e67655f6d656d6265725f61626f75745f746578740000000000ae11000900000000000000c6a111000b0000000000000013af11000400000000000000d68b110007000000f8ae11001b0000006368616e67655f6d656d6265725f6176617461720000000000ae11000900000000000000c6a111000b00000000000000f5ae11000300000000000000d68b110007000000deae1100170000006368616e67655f6d656d6265725f68616e646c650000000000ae11000900000000000000c6a111000b000000000000007d9c11000600000000000000d68b1100070000006dae110057000000c4ae11001a0000007570646174655f70726f66696c6500000000000000ae11000900000000000000c6a111000b00000000000000f7ad11000900000000000000759c1100080000002fae11003e0000007365745f636f6e74726f6c6c65725f6163636f756e7400000000000000ae11000900000000000000c6a111000b0000000000000019ae11001600000000000000969511000c0000007365745f726f6f745f6163636f756e740000000000ae11000900000000000000c6a111000b0000000000000009ae11001000000000000000969511000c0000006164645f73637265656e65645f6d656d6265720000000000e5ad11001200000000000000969511000c00000000000000f7ad11000900000000000000759c1100080000007365745f73637265656e696e675f617574686f726974790000000000dcad11000900000000000000969511000c000000617574686f726974796e65775f6d656d6265725f6163636f756e74757365725f696e666f6d656d6265725f69646e65775f726f6f745f6163636f756e746e65775f636f6e74726f6c6c65725f6163636f756e7420557064617465206d656d626572277320616c6c206f7220736f6d65206f662068616e646c652c2061766174617220616e642061626f757420746578742e204368616e6765206d656d62657227732068616e646c652e2057696c6c20656e73757265206e65772068616e646c6520697320756e6971756520616e64206f6c64206f6e652077696c6c20626520617661696c61626c6520666f72206f74686572206d656d6265727320746f207573652e204368616e6765206d656d626572277320617661746172757269204368616e6765206d656d62657227732061626f7574207465787474657874204e6f6e2d6d656d626572732063616e20627579206d656d62657273686970706169645f7465726d735f6964756e636c65733030496e686572656e7420776974682073616d65206964656e74696669657220616c726561647920657869737473214e6f206f74686572206572726f72732061726520616363657074656420616674657220616e2068617264206572726f72215468657265206973206f6e6c79206f6e6520666174616c206572726f723b20716564001100000008000000040000002f000000ecaf11002b0000002d030000010000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f72756e74696d652f7372632f6c69622e727300110000000000000001000000c9000000ca000000cb000000110000000000000001000000c9000000ca000000cb0000004572726f720000004cbc110048000000260b00000a00000070b0110068000000440000000d0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d61726974686d657469632f7372632f62696775696e742e72730000000000000000617474656d707420746f20646976696465206279207a65726f63616e6e6f74206669742061206e756d62657220696e746f2075313238616c7265616479206d757461626c7920626f72726f77656400001100000000000000010000003000000050b11100430000001e030000090000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f63656c6c2e7273616c726561647920626f72726f77656400110000000000000001000000cc00000050b11100430000006e0300000900000072656d696e646572206f6620646976206279206320697320616c77617973206c657373207468616e20633b20716564001100000008000000040000002f0000002db211006f000000680000001b000000726573756c742063616e6e6f742066697420696e20753132382f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d61726974686d657469632f7372632f68656c706572735f3132386269742e72732f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d696f2f7372632f2e2e2f776974686f75745f7374642e7273000cb311002a000000696e7465726e616c206572726f723a20656e746572656420756e726561636861626c6520636f64653a20000040b3110047000000606578745f736563703235366b315f65636473615f7265636f7665725f636f6d7072657373656460206f6e6c792072657475726e7320302c20312c2032206f7220333b20716564009cb2110067000000e303000012000000e4be11000000000052756e74696d65206d656d6f7279206578686175737465642e2041626f7274696e6748617368206e6f7420657175616c53797374656d2073746174652063757272656e746c792070726576656e74732074686973207472616e73616374696f6e5472616e73616374696f6e20646f6573206e6f742068617665207265717569726564207065726d697373696f6e73496e76616c69645472616e73616374696f6e20637573746f6d206572726f725472616e73616374696f6e20776f756c642065786861757374732074686520626c6f636b206c696d6974735472616e73616374696f6e2068617320616e20616e6369656e7420626972746820626c6f636b5472616e73616374696f6e20686173206120626164207369676e61747572655472616e73616374696f6e206973206f757464617465645472616e73616374696f6e2077696c6c2062652076616c696420696e2074686520667574757265496e6162696c69747920746f2070617920736f6d6520666565732028652e672e206163636f756e742062616c616e636520746f6f206c6f77295472616e73616374696f6e2063616c6c206973206e6f74206578706563746564556e6b6e6f776e5472616e73616374696f6e20637573746f6d206572726f72436f756c64206e6f742066696e6420616e20756e7369676e65642076616c696461746f7220666f722074686520756e7369676e6564207472616e73616374696f6e436f756c64206e6f74206c6f6f6b757020696e666f726d6174696f6e20726571756972656420746f2076616c696461746520746865207472616e73616374696f6e0000000000000000000000617474656d707420746f20646976696465206279207a65726f0000002cb611006c000000580000002b0000002f55736572732f6d6f6b687461722f2e636172676f2f6769742f636865636b6f7574732f7375627374726174652d376530383433336434633337306132312f633337626230382f636f72652f73722d7072696d6974697665732f7372632f67656e657269632f6572612e7273417574686f727368697020446964536574556e636c6573426162652045706f6368496e6465784261626520417574686f726974696573426162652047656e65736973536c6f74426162652043757272656e74536c6f74426162652052616e646f6d6e65737342616265204e65787452616e646f6d6e65737342616265205365676d656e74496e6465784261626520556e646572436f6e737472756374696f6e4261626520496e697469616c697a656462616265736c6f74436f756c64206e6f74206465636f64652072657175657374656420696e686572656e742074797065214241424520696e686572656e742064617461206e6f7420666f756e6454696d657374616d7020496e697469616c697a65640000000000000030b811000e0000000000000040b8110001000000000000000000000048b8110001000000000000000000000050b811000600000000000000e4be110000000000000000000000000058b8110001000000000000000000000060b811000700000000000000e4be110000000000000000000000000068b8110001000000000000004e6577417574686f7269746965730000e3b811000d000000bfb8110024000000506175736564000098b8110027000000526573756d65640070b81100280000002043757272656e7420617574686f726974792073657420686173206265656e20726573756d65642e2043757272656e7420617574686f726974792073657420686173206265656e207061757365642e204e657720617574686f726974792073657420686173206265656e206170706c6965642e417574686f726974794c6973744772616e64706146696e616c6974792043757272656e7453657449644772616e64706146696e616c69747920536574496453657373696f6e4f6666636861696e206572726f723a206665746368696e67206e6574776f726b207374617465206661696c6564214f6666636861696e206572726f723a207369676e696e67206661696c6564214f6666636861696e206572726f723a206465636f64696e6720576f726b6572537461747573206661696c6564214f6666636861696e206572726f723a207375626d697474696e67207472616e73616374696f6e206661696c656421496d4f6e6c696e65205265636569766564486561727462656174734f6666656e636573205265706f72747342794b696e64496e64657800000000000034ba110007000000000000003cba11000200000000000000000000004cba110002000000000000004f6666656e636500ffba11000400000003bb11000e0000005cba110055000000b1ba11004e00000020546865726520697320616e206f6666656e6365207265706f72746564206f662074686520676976656e20606b696e64602068617070656e656420617420746865206073657373696f6e5f696e6465786020616e6420286b696e642d7370656369666963292074696d6520736c6f742e2054686973206576656e74206973206e6f74206465706f736974656420666f72206475706c696361746520736c61736865732e4b696e644f706171756554696d65536c6f7453657373696f6e2043757272656e74496e64657853657373696f6e205175657565644368616e67656453657373696f6e2044697361626c656456616c696461746f72730000000080bb11000a000000000000008cbb110001000000000000000000000094bb110002000000000000004e657753657373696f6e00001bbc11000c000000a4bb110055000000f9bb110022000000204e65772073657373696f6e206861732068617070656e65642e204e6f746520746861742074686520617267756d656e74206973207468652073657373696f6e20696e6465782c206e6f742074686520626c6f636b206e756d626572206173207468652074797065206d6967687420737567676573742e53657373696f6e496e64657853657373696f6e2053746f72656452616e676500004cbc1100480000002c0b00000e0000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f736c6963652f6d6f642e72735374616b696e672056616c696461746f72436f756e745374616b696e67204d696e696d756d56616c696461746f72436f756e745374616b696e672043757272656e744572615374616b696e672043757272656e74457261537461727453657373696f6e496e6465785374616b696e672043757272656e74457261506f696e74734561726e65645374616b696e6720466f7263654572615374616b696e6720536c6173685265776172644672616374696f6e5374616b696e6720426f6e6465644572617300110000000000000001000000cd000000ce000000cb00000057bd110000000000110000000400000004000000cf000000d0000000d1000000a8bd11002d000000d5bd11000c000000e1bd110003000000617373657274696f6e206661696c65643a2060286c656674203d3d20726967687429600a20206c6566743a2060602c0a2072696768743a2060603a20ecbd11003400000064657374696e6174696f6e20616e6420736f7572636520736c69636573206861766520646966666572656e74206c656e6774687330be110049000000120000000d0000002f72757374632f366436396361626131313063306332666239303138306466316362633862653530333362393164342f7372632f6c6962636f72652f6d6163726f732f6d6f642e727300000000000000d4be11001000000000000000e4be1100000000000000000000000000e4be1100010000000000000000000000ecbe11000f00000000000000fcbe110001000000000000000000000004bf1100010000000000000045787472696e736963537563636573732ebf11002500000045787472696e7369634661696c65640021bf11000d0000000cbf11001500000020416e2065787472696e736963206661696c65642e44697370617463684572726f7220416e2065787472696e73696320636f6d706c65746564207375636365737366756c6c792e52657175697265526f6f744f726967696e526571756972655369676e65644f726967696e426c6f636b46756c6c4261645369676e617475726543616e206e6f74206c6f6f6b7570526571756972654e6f4f726967696e0000000000000080bf11000c00000000000000e4be110000000000000000000000000077bf11000900000000000000e4be110000000000000000000000000064bf11001300000000000000e4be110000000000000000000000000053bf11001100000000000000e4be11000000000000000000000000009abf11000f00000000000000e4be1100000000000000000053797374656d2045787472696e736963436f756e7453797374656d20416c6c45787472696e7369637357656967687453797374656d20416c6c45787472696e736963734c656e53797374656d2045787472696e7369634461746153797374656d204576656e74436f756e7474696d737461703054696d657374616d7020696e686572656e742064617461206973206e6f742070726f76696465642e496e76616c69642074696d657374616d7020696e686572656e74206461746120656e636f64696e672e54696d657374616d702044696455706461746542616c616e636573204e6578744665654d756c7469706c696572466f72756d204e65787443617465676f72794964466f72756d204e6578745468726561644964466f72756d204e657874506f73744964466f72756d2043617465676f72795469746c65436f6e73747261696e74466f72756d2043617465676f72794465736372697074696f6e436f6e73747261696e74466f72756d205468726561645469746c65436f6e73747261696e74466f72756d20506f737454657874436f6e73747261696e74466f72756d205468726561644d6f6465726174696f6e526174696f6e616c65436f6e73747261696e74466f72756d20506f73744d6f6465726174696f6e526174696f6e616c65436f6e73747261696e74446561637469766174656449676e6f726564556e7374616b696e6752657761726452656c6174696f6e736869704e6f74466f756e64526563697069656e744e6f74466f756e64526577617264536f757263654e6f74466f756e644e6578745061796d656e744e6f74496e467574757265416c72656164795374616b656443616e6e6f745374616b655a65726f43616e6e6f745374616b654c6573735468616e4d696e696d756d42616c616e63654e6f745374616b656443616e6e6f74556e7374616b655768696c65536c61736865734f6e676f696e67416c7265616479556e7374616b696e67556e7374616b696e67506572696f6453686f756c644265477265617465725468616e5a65726f556e7374616b696e674572726f72110000000400000004000000d200000056657273696f6e656453746f726520436c6173734279496456657273696f6e656453746f726520456e746974794279496456657273696f6e656453746f7265204e657874436c617373496456657273696f6e656453746f7265204e657874456e74697479496456657273696f6e656453746f72652050726f70657274794e616d65436f6e73747261696e7456657273696f6e656453746f72652050726f70657274794465736372697074696f6e436f6e73747261696e7456657273696f6e656453746f726520436c6173734e616d65436f6e73747261696e7456657273696f6e656453746f726520436c6173734465736372697074696f6e436f6e73747261696e74456e746974794e6f744372656174656442794f7065726174696f6e63616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c7565a4c41100570000004a000000210000002f55736572732f6d6f6b687461722f6a6f7973747265616d2f7375627374726174652d76657273696f6e65642d73746f72652d7065726d697373696f6e732d6d6f64756c652f7372632f6f7065726174696f6e732e727300a4c41100570000006200000025000000a4c4110057000000730000003100000000419c8ac7000b0800000000000000000041a48ac7000b08e4be110018b0110000b19904046e616d6501a89904d605000c6578745f74776f785f313238010e6578745f626c616b65325f32353602146578745f6765745f73746f726167655f696e746f03196578745f6765745f616c6c6f63617465645f73746f7261676504116578745f636c6561725f73746f72616765050f6578745f7365745f73746f72616765060e6578745f7072696e745f75746638070d6578745f7072696e745f686578080d6578745f7072696e745f6e756d09106578745f69735f76616c696461746f720a156578745f6c6f63616c5f73746f726167655f6765740b216578745f6c6f63616c5f73746f726167655f636f6d706172655f616e645f7365740c116578745f6e6574776f726b5f73746174650d106578745f737232353531395f7369676e0e166578745f7375626d69745f7472616e73616374696f6e0f156578745f6c6f63616c5f73746f726167655f73657410126578745f737232353531395f76657269667911146578745f656432353531395f67656e657261746512146578745f737232353531395f67656e657261746513106578745f73746f726167655f726f6f7414186578745f73746f726167655f6368616e6765735f726f6f7415106578745f636c6561725f70726566697816266578745f736563703235366b315f65636473615f7265636f7665725f636f6d7072657373656417126578745f656432353531395f76657269667918236578745f626c616b65325f3235365f656e756d6572617465645f747269655f726f6f74190a6578745f6d616c6c6f631a086578745f667265651b0b6578745f74776f785f36341c076578745f6c6f671d176578745f737232353531395f7075626c69635f6b6579731e0c5f5f727573745f616c6c6f631f0a5f5f72675f616c6c6f63200e5f5f727573745f6465616c6c6f63210c5f5f72675f6465616c6c6f63220e5f5f727573745f7265616c6c6f63230c5f5f72675f7265616c6c6f6324135f5f727573745f616c6c6f635f7a65726f656425115f5f72675f616c6c6f635f7a65726f65642609686173685f746573742734616c6c6f633a3a7261775f7665633a3a63617061636974795f6f766572666c6f773a3a68326661656465366538356363393330382829636f72653a3a70616e69636b696e673a3a70616e69633a3a68393339353163376535643433626236342925616c6c6f633a3a666d743a3a666f726d61743a3a68363664643236666436663761663162312a36636f72653a3a70616e69636b696e673a3a70616e69635f626f756e64735f636865636b3a3a68356661653664326266376165363734612b23636f72653a3a666d743a3a77726974653a3a68663339663937666464356536343933662c48616c6c6f633a3a7261775f7665633a3a5261775665633c542c413e3a3a616c6c6f636174655f696e3a3a7b7b636c6f737572657d7d3a3a68303032393536373831386563373662392d08727573745f6f6f6d2e33636f72653a3a6f7074696f6e3a3a6578706563745f6e6f6e655f6661696c65643a3a68393135343765633731336333363531302f3a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a6862353138623437376563393464323339303b3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f636861723a3a6831336536316335313434326162613936313a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f666d743a3a68643564346562346661316135366238383239636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653a3a63616c6c5f6f6e63653a3a6866343433663934323535353965623137332d636f72653a3a70616e69636b696e673a3a70616e69635f666d743a3a6864356636313865643138383335646331344e636f72653a3a666d743a3a6e756d3a3a696d703a3a3c696d706c20636f72653a3a666d743a3a446973706c617920666f72207533323e3a3a666d743a3a6837323331383637366562363039383337352f636f72653a3a666d743a3a6e756d3a3a696d703a3a666d745f7536343a3a68313539643438633061303166646664633611727573745f626567696e5f756e77696e6437313c5420617320636f72653a3a616e793a3a416e793e3a3a747970655f69643a3a68383638613836336362363134343234623835636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a68396130666533326262623136643737663943636f72653a3a666d743a3a466f726d61747465723a3a7061645f696e74656772616c3a3a77726974655f7072656669783a3a68656439306635303832666261353430353a34636f72653a3a736c6963653a3a736c6963655f696e6465785f6c656e5f6661696c3a3a68323763343161346339353839643134643b36636f72653a3a736c6963653a3a736c6963655f696e6465785f6f726465725f6661696c3a3a68346363383061663530333531643138303c2c636f72653a3a666d743a3a466f726d61747465723a3a7061643a3a68643962393264373763663062313061313d2e636f72653a3a7374723a3a736c6963655f6572726f725f6661696c3a3a68383334333963373938343161353937313e323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a68333332373535633663653862613838343f4a3c636f72653a3a6f70733a3a72616e67653a3a52616e67653c4964783e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686335313861646331303737633136643240323c6368617220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a68373631366662616337373038323563374145636f72653a3a636861723a3a6d6574686f64733a3a3c696d706c20636861723e3a3a6573636170655f64656275675f6578743a3a68616265386536643961666639373831364249636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207573697a653e3a3a666d743a3a683061663630373134663831666337626243453c636f72653a3a63656c6c3a3a426f72726f774572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683330383962396365303866366362393544483c636f72653a3a63656c6c3a3a426f72726f774d75744572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6836336330393734343762663034346338452e636f72653a3a6f7074696f6e3a3a6578706563745f6661696c65643a3a686335376663353432666431336432623346303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683633316535653636303437303138336447323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a683265386666313564623638366437343148533c636f72653a3a666d743a3a6275696c646572733a3a5061644164617074657220617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a6861623534363037663263343830626365492e636f72653a3a736c6963653a3a6d656d6368723a3a6d656d6368723a3a68616436353233663664353163303762334a3a636f72653a3a666d743a3a6275696c646572733a3a44656275675374727563743a3a6669656c643a3a68393265633432663831396264656637614b2f636f72653a3a666d743a3a57726974653a3a77726974655f636861723a3a68643363323364313838363864346337344c2e636f72653a3a666d743a3a57726974653a3a77726974655f666d743a3a68663731623165643538653866373835324d3a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a68643639333739323335323139303936344e3b3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f636861723a3a68393639323964343934646632663464324f3a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f666d743a3a68346230336539663261396261363937375039636f72653a3a666d743a3a6275696c646572733a3a44656275675475706c653a3a6669656c643a3a686663346336633532623135393534376351443c636f72653a3a666d743a3a417267756d656e747320617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a686164316338393536303432313532643952313c73747220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6832663935383663383433666432343732538001636f72653a3a7374723a3a7472616974733a3a3c696d706c20636f72653a3a736c6963653a3a536c696365496e6465783c7374723e20666f7220636f72653a3a6f70733a3a72616e67653a3a52616e67653c7573697a653e3e3a3a696e6465783a3a7b7b636c6f737572657d7d3a3a686136653663386665663535306231316454303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683139323137613362383632383637303255303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6832613930646563316434643965656564563e3c636f72653a3a666d743a3a4572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683032343632396430323262323336623957423c636f72653a3a7374723a3a557466384572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a686236643730626162663235636539633458303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683936373238626666383837633964313359fe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68363136333132643263333430343261375afe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68373138323036663162663836623066635bfe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68623335313131646533646135633766305cfe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68663532666433623035643764323432325dfe01616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a48616e646c653c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a4e6f64655265663c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a4d75742c4b2c562c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a496e7465726e616c3e2c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e6f64653a3a6d61726b65723a3a456467653e3a3a696e736572743a3a68666332326539353336356135643332355e6d3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a42547265655365743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68353934333135343061396335666131615f6b3c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c7533323e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68323830346338373938356434373131376048616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a68613166616133643066376339616139366153616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e617669676174653a3a6e6578745f756e636865636b65645f6465616c6c6f636174696e673a3a686432666431633136623663363435633062703c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a42547265655365743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686365343361633236386139303130393663713c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163745265663c7533323e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a683635343631363135613865646632303464703c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a42547265655365743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a686639653764666163313833353238663865723c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365743a3a446966666572656e63653c543e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6838383966396364333062373965383961667b3c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a683530653035616565313162616535643167647375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f636c6173735f7065726d697373696f6e733a3a686136626239616339636234326339313468c7013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a436f6e74656e74576f726b696e6747726f757043726564656e7469616c73206173207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a43726564656e7469616c436865636b65723c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653e3e3a3a6163636f756e745f6861735f63726564656e7469616c3a3a6839366264303433653139313461643335693773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68386235313230663230353431643230336a587375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a6372656174655f636c6173733a3a68343266663130633964653765393030616b2b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a68303239313563646131646361343535326c7c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a6f7065726174696f6e733a3a706172616d657472697a65645f70726f70657274795f76616c7565735f746f5f70726f70657274795f76616c7565733a3a68353134613466383331646133626133626d6c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a646f5f7570646174655f656e746974795f70726f70657274795f76616c7565733a3a68366132343336613661643530656130376e5c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a646f5f6372656174655f656e746974793a3a68323865633830633130356564343830656f6b7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a646f5f6164645f736368656d615f737570706f72745f746f5f656e746974793a3a683233373539653135343335616462343370613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6861323961393534623930336465636336712b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a683039336564323765666436376536353172613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68623762313565636130376433303735367386017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a436c6173733e3a3a6465636f64653a3a68316638393138663338653337363733377448616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a6835663262663634613661313030393261753773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6839663135396232333330626431393461764a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6865613632613831396134343839323135774073726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6576656e745f696e64657865643a3a686130306165356663626163376531363178613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6863316431653936396565323164386436793773726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a626c6f636b5f6e756d6265723a3a68353963356631373664393634383134367a820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a68303165316633613635653339393735667b697375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a636c6173735f7065726d697373696f6e735f62795f636c6173735f69643a3a68333965343062623138653636663465637c7d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a68663934656134386336613831306439337d6f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a68363238383130323339323936366632667eca0173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e636f64654c696b654c696e6b6167653c504b65792c4e4b65792c4b65793e3e3a3a656e636f64655f746f3a3a68346339303533636337323435643234667f437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a683739633764666436353961336532633580017f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a68386164633830666365653563393734378101ca0173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e636f64654c696b654c696e6b6167653c504b65792c4e4b65792c4b65793e3e3a3a656e636f64655f746f3a3a686535383339353833643736326465373682014a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a686132633263313631356338623764346483017d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a683436383964333562633431343330646284013873726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a74616b653a3a683466663930646363333666656232343985016f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a68393637346438633332636537333266398601437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68343033663032663631623162376639318701437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68653731313263643534633532666366358801437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a683536323331343236353534313030623489017573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6578697374733a3a68376436393033363831366463636661308a01457375627374726174655f76657273696f6e65645f73746f72653a3a4d6f64756c653c543e3a3a656e746974795f62795f69643a3a68313337303866386230636235616530398b01757375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f696e7465726e616c5f70726f70657274795f76616c7565735f7065726d69747465643a3a68366136343231613538623635353936358c015f7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a6465726976655f6163636573735f6c6576656c3a3a68353463313731366461363464386132318d0187017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a456e746974793e3a3a6465636f64653a3a68353534623337613130323431333837338e01443c616c6c6f633a3a7665633a3a5665633c543e20617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a68313239363830626338313739353061308f015a3c7375627374726174655f76657273696f6e65645f73746f72653a3a50726f706572747956616c756520617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a68353635396136376131336362613438639001577375627374726174655f76657273696f6e65645f73746f72653a3a4d6f64756c653c543e3a3a656e737572655f70726f70657274795f76616c75655f69735f76616c69643a3a68333632633262323533623238336337669101ff017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a7065726d697373696f6e733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a7065726d697373696f6e733a3a436c6173735065726d697373696f6e733c436c61737349642c43726564656e7469616c2c50726f7065727479496e6465782c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68333736396337613339303831616564669201e9017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a636f6e73747261696e743a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a636f6e73747261696e743a3a5265666572656e6365436f6e73747261696e743c436c61737349642c50726f7065727479496e6465783e3e3a3a6465636f64653a3a68346634653139633666316131633734649301b30173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a4c696e6b6167653c4b65793e3e3a3a6465636f64653a3a68613537373331653338623837363638399401b60173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a4c696e6b6167653c4b65793e3e3a3a656e636f64655f746f3a3a683461313138303362356335323739653295015a7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683535666637613233393566356365373796015c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a683966666463623465313635653162386597019a013c7375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a5f5f47657442797465537472756374436c6173735065726d697373696f6e734279436c61737349643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68393335373832646330303362653463619801b1017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a43616c6c3c543e3e3a3a656e636f64655f746f3a3a68383761636136623432656238356463669901db017375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a6f7065726174696f6e733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f76657273696f6e65645f73746f72655f7065726d697373696f6e735f6d6f64756c653a3a6f7065726174696f6e733a3a506172616d657472697a656450726f706572747956616c75653e3a3a656e636f64655f746f3a3a68323531353763666464343963306636339a0191017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a50726f706572747956616c75653e3a3a656e636f64655f746f3a3a68613863613065353130666636613061339b01483c5b545d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68643563663930633635383234666163339c0141616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a7365617263683a3a7365617263685f747265653a3a68383361326436303635643733393439669d010c436f72655f76657273696f6e9e0112436f72655f657865637574655f626c6f636b9f01a00173725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073725f7072696d6974697665733a3a67656e657269633a3a626c6f636b3a3a426c6f636b3c4865616465722c45787472696e7369633e3e3a3a6465636f64653a3a6862346664386365646437633038376434a0017173726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c426c6f636b2c436f6e746578742c556e7369676e656456616c696461746f722c416c6c4d6f64756c65733e3a3a696e697469616c697a655f626c6f636b3a3a6838353632376165393238613666623237a1013573726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a626c6f636b5f686173683a3a6832376363333962336563383361343338a2019f013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f65787472696e7369633a3a556e636865636b656445787472696e7369633c416464726573732c43616c6c2c5369676e61747572652c45787472613e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6831313661663130363530663637616236a301693c73725f7072696d6974697665733a3a7472616974733a3a426c616b6554776f3235362061732073725f7072696d6974697665733a3a7472616974733a3a486173683e3a3a6f7264657265645f747269655f726f6f743a3a6834356537346264353830653133393864a4017973726d6c5f6578656375746976653a3a4578656375746976653c53797374656d2c426c6f636b2c436f6e746578742c556e7369676e656456616c696461746f722c416c6c4d6f64756c65733e3a3a6170706c795f65787472696e7369635f776974685f6c656e3a3a6864666333326361363861643265656236a5012b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6862646666336137356364323530393937a6013873726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a74616b653a3a6835613734643564333265663535613737a701723c285475706c65456c656d656e74302c205475706c65456c656d656e7431292061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a6865633234393639383162373038383030a8013373726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a66696e616c697a653a3a6834643366366161653761353861643333a901723c73725f7072696d6974697665733a3a67656e657269633a3a6469676573743a3a4469676573744974656d3c486173683e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6863636462663065343865313834383232aa01363c5420617320636f72653a3a636f6e766572743a3a496e746f3c553e3e3a3a696e746f3a3a6862316163366430336533373464363939ab01303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6865623934666137353761633965366233ac0115436f72655f696e697469616c697a655f626c6f636bad01753c73725f7072696d6974697665733a3a67656e657269633a3a6865616465723a3a4865616465723c4e756d6265722c486173683e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834613662396232323535363434333666ae01114d657461646174615f6d65746164617461af016c3c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830333262383261343231663536646133b001483c5b545d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6832343035616638386562633432353839b101683c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6839356435313062313933633465613438b201683c73726d6c5f6d657461646174613a3a4465636f6465446966666572656e743c422c4f3e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6861353163386663306336316533303337b3011c426c6f636b4275696c6465725f6170706c795f65787472696e736963b4019f013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f65787472696e7369633a3a556e636865636b656445787472696e7369633c416464726573732c43616c6c2c5369676e61747572652c45787472613e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838326534343537393237343238323135b501b00173725f7072696d6974697665733a3a7472616e73616374696f6e5f76616c69646974793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073725f7072696d6974697665733a3a7472616e73616374696f6e5f76616c69646974793a3a5472616e73616374696f6e56616c69646974794572726f723e3a3a656e636f64655f746f3a3a6865663562326236336333346262303732b6011b426c6f636b4275696c6465725f66696e616c697a655f626c6f636bb701543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832373139386364316634376665366436b801437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6861623931633961336432653561333236b901437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6863663639343766373934393866633437ba0120426c6f636b4275696c6465725f696e686572656e745f65787472696e73696373bb016f3c636f72653a3a697465723a3a61646170746572733a3a526573756c745368756e743c492c453e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6833313161626361316535646336633439bc01613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6831393438313030653365386436323335bd013873726d6c5f74696d657374616d703a3a657874726163745f696e686572656e745f646174613a3a6830623662303936373737313162373832be01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6862626663376338633264666565323961bf01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6834356436336232613636316135636339c001437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6865336330666631313866336532396661c101543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6838356634356436346337373330313437c2011c426c6f636b4275696c6465725f636865636b5f696e686572656e7473c3014b616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a566163616e74456e7472793c4b2c563e3a3a696e736572743a3a6861353461323965323739326165356138c40118426c6f636b4275696c6465725f72616e646f6d5f73656564c5014073726d6c5f737570706f72743a3a7472616974733a3a52616e646f6d6e6573733a3a72616e646f6d5f736565643a3a6834316232653534316530636465363433c6012b5461676765645472616e73616374696f6e51756575655f76616c69646174655f7472616e73616374696f6ec701a5013c73725f7072696d6974697665733a3a67656e657269633a3a756e636865636b65645f65787472696e7369633a3a556e636865636b656445787472696e7369633c416464726573732c43616c6c2c5369676e61747572652c45787472613e2061732073725f7072696d6974697665733a3a7472616974733a3a436865636b61626c653c4c6f6f6b75703e3e3a3a636865636b3a3a6864626636333237336538623162366161c8016f3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073725f7072696d6974697665733a3a776569676874733a3a4765744469737061746368496e666f3e3a3a6765745f64697370617463685f696e666f3a3a6838346662613930623938383535616332c9015673725f7072696d6974697665733a3a7472616e73616374696f6e5f76616c69646974793a3a56616c69645472616e73616374696f6e3a3a636f6d62696e655f776974683a3a6865653063323230316561333634333432ca01463c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6835616431623666326166333637613231cb016c3c73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a56616c6964617465556e7369676e65643e3a3a76616c69646174655f756e7369676e65643a3a6865393765373266343065666334616632cc014273726d6c5f73797374656d3a3a436865636b5765696768743c543e3a3a636865636b5f626c6f636b5f6c656e6774683a3a6833323363343238313932663764366537cd013c73726d6c5f73797374656d3a3a436865636b5765696768743c543e3a3a636865636b5f7765696768743a3a6866353165373135393861306266613163ce017e3c73726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4368617267655472616e73616374696f6e5061796d656e743c543e2061732073725f7072696d6974697665733a3a7472616974733a3a5369676e6564457874656e73696f6e3e3a3a76616c69646174653a3a6861396466333232646365653462353536cf012b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6862646666336137356364323530393937d001214f6666636861696e576f726b65724170695f6f6666636861696e5f776f726b6572d1017473726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a76616c75653a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f7261676556616c75653c543e20666f7220473e3a3a6765743a3a6861363561383433346366653736366330d201a3017375627374726174655f6170706c69636174696f6e5f63727970746f3a3a737232353531393a3a3c696d706c207375627374726174655f6170706c69636174696f6e5f63727970746f3a3a7472616974733a3a52756e74696d655075626c696320666f72207375627374726174655f7072696d6974697665733a3a737232353531393a3a5075626c69633e3a3a616c6c3a3a6837336539656331393639363239396439d3013673726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a76616c696461746f72733a3a6835356134336161336133313537343339d4013b73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e3a3a69735f6f6e6c696e655f6175783a3a6830323437373938663331663063343336d5013973726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a63757272656e745f696e6465783a3a6862666633643839626338303832653632d60147636f72653a3a666d743a3a6e756d3a3a3c696d706c20636f72653a3a666d743a3a446562756720666f72207533323e3a3a666d743a3a6833656563666432343331623563306235d7011e4772616e6470614170695f6772616e6470615f617574686f726974696573d801543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6832373735613137656566336362373334d90115426162654170695f636f6e66696775726174696f6eda013773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6866616431316364613262326163373431db014c3c5b543b2033325d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6863666166663666343561653761343737dc0121417574686f72697479446973636f766572794170695f617574686f726974696573dd01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839656533316466326165333763326163de01433c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64653a3a6839363130326563653734333633303932df011a417574686f72697479446973636f766572794170695f7369676ee0011c417574686f72697479446973636f766572794170695f766572696679e1011d4163636f756e744e6f6e63654170695f6163636f756e745f6e6f6e6365e2012153657373696f6e4b6579735f67656e65726174655f73657373696f6e5f6b657973e301543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6833373130653833376164323936366265e4016f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6833373132363662373964656539336238e501543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839653638333839623963656531646264e601543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839636537666330356464303236393237e701543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6831653330323861646439663437663166e801497375627374726174655f76657273696f6e65645f73746f72653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6861353535313430613834306462636231e901783c7375627374726174655f76657273696f6e65645f73746f72653a3a5f5f47657442797465537472756374456e74697479427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862336639383662356435626636336464ea01773c7375627374726174655f76657273696f6e65645f73746f72653a3a5f5f47657442797465537472756374436c617373427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861386266326666613564643535636134eb018e017375627374726174655f76657273696f6e65645f73746f72653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f76657273696f6e65645f73746f72653a3a50726f706572747956616c75653e3a3a6465636f64653a3a6831396335353130366431303232636561ec01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6862663432633738323237663866656634ed01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861656338653562626565663362326330ee014b7375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866663366346536396630323937663635ef01753c7375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a5f5f476574427974655374727563744d696e74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836363466653234646536643466643763f0014f73726d6c5f72616e646f6d6e6573735f636f6c6c6563746976655f666c69703a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6865316363343761306364333462633666f101303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6831373562393334636439386339383636f201303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6832383161616430623730613338376233f301303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839363763346164313333656435613363f401303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839656439346633363031316362333562f5014a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6834303537323665346430326462643334f601ba016a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a446174614f626a6563743c543e3e3a3a6465636f64653a3a6862633462333331303863643036653733f7015f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863373031346462356331616666623430f801676a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a7570646174655f636f6e74656e745f6a756467656d656e743a3a6830363161316234623735653232643465f9015d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6469726563746f72793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6836633732636539656231363061353231fa016d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831653034663936613533333135313135fb016e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a746f67676c655f646f73725f72656164793a3a6839363564636562613832613631346135fc016b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f73746f726167655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862646535613662333238653034636132fd01543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6863306139623362393132383864306430fe013673726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6465706f7369745f6c6f673a3a6833643033643532393336363135613463ff01463c616c6c6f633a3a7665633a3a5665633c543e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68343535373766343437636535633863308002703c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68303732626262313236656432346534328102463c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a683631303266613432386363313135336682022b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a68363132626530366331383363653534328302613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a683333376238303562356365383661343284023973726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683230633462303264326234386336393385023b73726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68616166663365323162636365666362398602663c73726d6c5f73797374656d3a3a5f5f476574427974655374727563744576656e74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68636530313334323561326435326463638702693c73726d6c5f73797374656d3a3a5f5f47657442797465537472756374426c6f636b486173683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686430613662373061393462316666613788023173726d6c5f73797374656d3a3a4d6f64756c653c543e3a3a6469676573743a3a6837373639626365333139636131363664890283016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a4576656e743e3a3a656e636f64655f746f3a3a68663535646330353264616165646534338a022c616c6c6f633a3a736c6963653a3a696e736572745f686561643a3a68386161643062333962353838333536308b025b3c73726d6c5f73797374656d3a3a4d6f64756c653c543e2061732073726d6c5f6d657461646174613a3a4d6f64756c654572726f724d657461646174613e3a3a6d657461646174613a3a68616535643339346261653137633234328c02676a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a72656d6f76655f6163636f756e745f696e666f3a3a68306337396264346664613762353433338d026b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a69735f6163636f756e745f696e666f5f657870697265643a3a68356530356163633534336162636434368e02646a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68623666363936393338656261316561338f0298013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a5f5f4765744279746553747275637444656661756c744c69666574696d653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683330303438303730363630633633613290029f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a5f5f476574427974655374727563744163636f756e74496e666f42794163636f756e7449643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68626237373435666234633933663137349102626a6f7973747265616d5f6e6f64655f72756e74696d653a3a736572766963655f646973636f766572793a3a646973636f766572793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a686565656661623266613365323638646292023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6839343463303263393934313964306634930281013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a77697468647261773a3a683035333236323233373237353561303194027773726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a76616c75653a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f7261676556616c75653c543e20666f7220473e3a3a6d75746174653a3a686663323336303365626463386538613195023c73726d6c5f696e64696365733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a683333393461303430333132303764656296026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a683136626430333430616538663964623597029d017375627374726174655f7374616b655f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f7374616b655f6d6f64756c653a3a5374616b653c426c6f636b4e756d6265722c42616c616e63652c536c61736849643e3e3a3a6465636f64653a3a68613031623731373831383565366333349802613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68646434623534353530373833386539649902820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a68303337333464633239323335363030629a023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68313538363433623735326462636237399b02a6017375627374726174655f7374616b655f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f7374616b655f6d6f64756c653a3a5374616b656453746174653c426c6f636b4e756d6265722c42616c616e63652c536c61736849643e3e3a3a656e636f64655f746f3a3a68303463336664316134346630313063399c023673726d6c5f626162653a3a4d6f64756c653c543e3a3a646f5f696e697469616c697a653a3a68663066333936383335666238613565619d023c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a68386237396132366633336532343066389e023573726d6c5f617574686f72736869703a3a4d6f64756c653c543e3a3a617574686f723a3a68303930386464316333616538663365639f023973726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7265776172645f62795f6964733a3a6837653463623938626566393133376561a0028a013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e496e697469616c697a653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f696e697469616c697a653a3a6863633862653531666363633131343831a102543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6836376138333033316439373066383732a2023c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6865303339303865643934323536646239a302437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6837373938633535333862393039373137a402623c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6831373238633737383064613863656437a5023c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6864353634656663636661393033626231a6023e73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6865383838353363653362616538343931a7024773726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6864356135653866626231653634383565a80298013c73726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a4d696e696d756d506572696f6444656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834373766383838326536323033653162a9023173726d6c5f74696d657374616d703a3a4d6f64756c653c543e3a3a6e6f773a3a6838356535643937623361396666303339aa02437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6834623863613439646634373938643433ab02467375627374726174655f7374616b655f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866366538626131663837373463613731ac02713c7375627374726174655f7374616b655f6d6f64756c653a3a5f5f476574427974655374727563745374616b65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832343131613832386132366335303563ad02487375627374726174655f7374616b655f6d6f64756c653a3a4d6f64756c653c543e3a3a696e6974696174655f756e7374616b696e673a3a6837373737383763333139386566306665ae024b73725f7072696d6974697665733a3a7472616974733a3a4163636f756e744964436f6e76657273696f6e3a3a696e746f5f6163636f756e743a3a6864363165306337303138326264386532af02ae013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a436f6e74656e74576f726b696e6747726f75705374616b696e674576656e7448616e646c6572206173207375627374726174655f7374616b655f6d6f64756c653a3a5374616b696e674576656e747348616e646c65723c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653e3e3a3a756e7374616b65643a3a6835326163336636633462356233306539b0024873726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6836343666323336613663663137666436b1025173726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6865656564306139383966636361323534b202a7013c73726d6c5f7472616e73616374696f6e5f7061796d656e743a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a5472616e73616374696f6e4261736546656544656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839306235363936653163316131323233b302593c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6839356634333966303036346634623433b4025c3c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6836633336323666626239336336366161b5025c3c636f72653a3a6f7074696f6e3a3a4f7074696f6e3c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6837346265316439316335363537636563b6025b3c73726d6c5f696e64696365733a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a5374617469634c6f6f6b75703e3a3a6c6f6f6b75703a3a6837623237626665346536616231313238b7024a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73797374656d3a3a6830616632323436353239306466363336b8024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696e64696365733a3a6837386339613464653965336632623632b9024c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f62616c616e6365733a3a6834383161643332313130306234613932ba024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7374616b696e673a3a6864623930383361653433663938396136bb024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f73657373696f6e3a3a6839336639346132343263343030613332bc024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6772616e6470613a3a6864373334626562346661323936356466bd024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f696d5f6f6e6c696e653a3a6863623663306135623336623564396662be024c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6f6666656e6365733a3a6836333065663364613934373736633836bf02486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f7375646f3a3a6831666337653835373765663338613733c0024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f70726f706f73616c733a3a6836613035393032323431346264643961c1024c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f656c656374696f6e3a3a6835616566303239386232323332646133c2025b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6837333065653033326132383433643637c302596a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6834343439353561356262623030646564c4024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f756e63696c3a3a6836353836653537353462626339626534c502486a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d6f3a3a6831326438343138643263353039356136c6024b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d656d626572733a3a6861326130323339613831636535333932c702496a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f666f72756d3a3a6861616161343332373934316130396164c8024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6d6967726174696f6e3a3a6838646333396434323039383337306262c9024a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f6163746f72733a3a6863306235326265343934396434643061ca025d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f747970655f72656769737472793a3a6866613037613136336134336233626165cb02526a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6469726563746f72793a3a6839663438653663353930613036326266cc02606a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646174615f6f626a6563745f73746f726167655f72656769737472793a3a6866613630363737316164643663313335cd024d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f646973636f766572793a3a6838303730356439336263653438313962ce02536a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f76657273696f6e65645f73746f72653a3a6863303365393965386130613034306539cf024e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a52756e74696d653a3a5f5f6d6f64756c655f6576656e74735f636f6e74656e745f77673a3a6832336430383231366364636565343235d0028a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a5f5f476574427974655374727563745465726d456e647341743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6864613934373730643037623932323461d1024a73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a726561645f686561643a3a6834323634663965626631343435663837d2026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6833393365613036333430623438356635d3023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6866646232343461363034353062613564d4027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6833303731353139613837333133656662d5026c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6368616e6e656c5f69645f69735f76616c69643a3a6836393937636530663933303131626566d602676a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f63757261746f725f6578697374733a3a6831643530313836663234396231363563d7027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6839666432383630383038616538643133d802d1017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a4170706c69636174696f6e3c4f70656e696e6749642c426c6f636b4e756d6265722c5374616b6549643e3e3a3a6465636f64653a3a6834333266616566666662373137313366d902c7017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6170706c69636174696f6e3a3a4170706c69636174696f6e53746167653c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6832613339333136643533653463396634da0282016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c3e3a3a656e636f64655f746f3a3a6835623263366139626165393534366262db02bd016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43616c6c3c543e3e3a3a656e636f64655f746f3a3a6838313037383362643064656561353734dc023f7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64655f746f3a3a6830373063363331393734613138306563dd02b0016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a55736572496e666f3e3a3a656e636f64655f746f3a3a6834346566346438353866366364623062de027b3c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6833613032323632633764396165326331df02723c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163745265663c753132383e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6830323630316439343531643434326130e002437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6864333563366235303938643136306532e10253616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e617669676174653a3a6e6578745f756e636865636b65645f6465616c6c6f636174696e673a3a6839323938316131626334636432373639e20253616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6e617669676174653a3a6e6578745f756e636865636b65645f6465616c6c6f636174696e673a3a6862303039626639666464653562633030e302576a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a69735f636f756e63696c6f723a3a6862363938643737346438356339316434e402543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6861356432343065613235623339386163e5027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6862386636613561643539623234636664e6026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6836346563323935653839626435663536e7026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6838303463313161323932646330376537e8023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6864616262663037393931646439383461e9027d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a6863356431326332646537643662626636ea026e3c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a636c6f6e655f737562747265653a3a6861383935343537366133376136326365eb02820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a72656d6f76653a3a6864326262383739366562623864366637ec02820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6837626165636662393963663831336665ed02820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6861326437306334623661333332326165ee023773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6831363735333136636265626232613134ef026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6832613862643766666235613635393965f002437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862343633303433336134313365356638f1027f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6864373263383035343839633633313464f2027273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a6864356633643130646563346434363636f30289013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6465706f7369745f6372656174696e673a3a6833346231333430326333326462303833f4027773726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a76616c75653a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f7261676556616c75653c543e20666f7220473e3a3a6d75746174653a3a6861313034356432376130666265353336f502613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830643766663230373931336462376265f60286016a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a53657373696f6e4b6579733e3a3a6465636f64653a3a6839633637383133353138633830653462f702596a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a636f756e63696c3a3a4d6f64756c653c543e3a3a6163746976655f636f756e63696c3a3a6862313636376466336165323261326263f8024c3c5b543b2031365d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a6833616232336332333763623434623161f90281013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6839646634613262343235393764386231fa0281013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7472616e736665723a3a6838363631303665373637333031366562fb025b3c73726d6c5f7374616b696e673a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6866633131646362303831633262663032fc023273726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6c65646765723a3a6833353163613736633662346434333965fd026f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a646f75626c655f6d61703a3a53746f72616765446f75626c654d61703a3a73746f726167655f646f75626c655f6d61705f66696e616c5f6b65793a3a6863643462623265356366626338616266fe02586a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a6163746f725f62795f6163636f756e745f69643a3a6862373765616163323463326536633234ff025c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a69735f6d656d6265725f6163636f756e743a3a68633237643738616164663438376335618003716a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a656e737572655f646174615f6f626a6563745f747970653a3a686531636136316262396161623766356581037273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a686536396139653139343662343230333482034a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68333331303133316163393936393761318303743c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a68323664316339363037643361376438368403653c7375627374726174655f666f72756d5f6d6f64756c653a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a683530613734316366316431326261323085037a3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6837313236396630656463396533316462860386013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a746f74616c5f62616c616e63653a3a683639373936396366613161646166633287033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a683435366537303065303966373638636188037b3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a43616c6c3c543e2061732073725f7072696d6974697665733a3a7472616974733a3a446973706174636861626c653e3a3a64697370617463683a3a6836353061323737623335323137383535890385013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a667265655f62616c616e63653a3a68656631356434616634366130356237368a038a013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a726573657276653a3a68633636393566613634663934386162368b034a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68623764613734636361653739303833648c03566a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a70726f706f73616c733a3a68376536366434303837313831303234648d03656a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a69735f766f74696e675f706572696f645f657870697265643a3a68353732386433376132653739613164318e0391013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173685f72657365727665643a3a68656133653663396262376263356161658f038c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a756e726573657276653a3a68346566613836663537343264356531379003646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f7570646174655f70726f706f73616c5f7374617475733a3a683562383061303239643532613830333591035a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a5f70726f636573735f766f74653a3a683035306265613539313139353835373992036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a646f75626c655f6d61703a3a53746f72616765446f75626c654d61703a3a73746f726167655f646f75626c655f6d61705f66696e616c5f6b65793a3a686631363733313363366630316466636493033f73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f667265655f62616c616e63653a3a686265613636333134363530336234366494034373726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a7365745f72657365727665645f62616c616e63653a3a686531616530336434656561646437353995037f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a43616c6c3e3a3a6465636f64653a3a68373533343461633534663234333464359603783c73726d6c5f696e64696365733a3a616464726573733a3a416464726573733c4163636f756e7449642c4163636f756e74496e6465783e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a683033373036353039333462336634623297036c3c7061726974795f7363616c655f636f6465633a3a636f6d706163743a3a436f6d706163743c753132383e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68326365623763303731303339343938399803ad016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a55736572496e666f3e3a3a6465636f64653a3a68386435616237353061663934326536659903bc016a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a526f6c65506172616d65746572733c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a68303966613637383338613435393932659a03543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68363266393434306464363630326238399b03543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68373638346533356364616232623130309c03df016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4f70656e696e67506f6c696379436f6d6d69746d656e743c426c6f636b4e756d6265722c42616c616e63653e3e3a3a6465636f64653a3a68333839373536633764643665623437619d03483c5b543b20385d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a68306339613565613339313165663139379e033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68623931333065623233313539616161639f03543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6865306539303665633630333030633439a0033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6833646131393137373631656432393732a1033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6831663739353863633266343665383936a2033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6864646465353132653532626466623661a303543c616c6c6f633a3a7665633a3a5665633c543e206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f64653e3a3a6465636f64653a3a6862333336303361326563353637633832a403a6013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e2061732073725f7072696d6974697665733a3a7472616974733a3a4f6e46696e616c697a653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a426c6f636b4e756d6265723e3e3a3a6f6e5f66696e616c697a653a3a6834346134616662646161316463666538a5035a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746172745f656c656374696f6e3a3a6832393234356138343331326533313734a603a1016a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4163746f723c543e3e3a3a6465636f64653a3a6834613331303266643538303963643866a703596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a6d656d6265725f70726f66696c653a3a6865613236656135356161393665353132a8038e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a6465706f7369745f696e746f5f6578697374696e673a3a6832346439323532386330333266646433a9033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6866653530666436396361383634363664aa035173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6864643330383132613437633961376433ab03437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6862663363613339326535393931643461ac036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6865333538376438373133643361616262ad033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6865343234353238363831633137323361ae03aa017375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a6d696e743a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f746f6b656e5f6d696e745f6d6f64756c653a3a6d696e743a3a4d696e743c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6835636632323462383662373638326264af033773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6838653463316561313236323866353636b0036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6862633331383363356332343966653838b1035173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6861333939663634343464306465613061b2034a73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a726561645f686561643a3a6838363131306338656334373239633639b30384013c73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e756d657261746f723c4b2c562c473e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6834623736313336323465353035376135b403820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6831326131336362666166636563643061b503633c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a666f6c643a3a6831343531383735643662653866663162b603633c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a666f6c643a3a6863303332396138393935643937353232b703613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6837363563353836313135323136663564b803e3016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a52756e74696d655570677261646550726f706f73616c3c4163636f756e7449642c42616c616e63652c426c6f636b4e756d6265722c486173683e3e3a3a6465636f64653a3a6833383066306261306134613165613034b903b5017375627374726174655f636f6e73656e7375735f626162655f7072696d6974697665733a3a6469676573743a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f636f6e73656e7375735f626162655f7072696d6974697665733a3a6469676573743a3a526177426162655072654469676573743e3a3a6465636f64653a3a6861393430666537616561666332316539ba033c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6838633638613137623262616236376137bb03d5017375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a52657761726452656c6174696f6e736869703c4163636f756e7449642c42616c616e63652c426c6f636b4e756d6265722c4d696e7449642c526563697069656e7449643e3e3a3a6465636f64653a3a6862646536646661336465636131386364bc03437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6866363438366633663938616530653933bd03517375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863393537616336393732373565646562be0389013c7375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a5f5f4765744279746553747275637452657761726452656c6174696f6e73686970733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866663665646531633435386338333836bf0380013c7375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a5f5f47657442797465537472756374526563697069656e74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861343136326333336337623965363065c003820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6863646531393764343332653464396261c1034a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a6861643731663564343532376630316537c2037f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a6837643666663138343332386163363131c30348616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a6837363633373436326639333561373532c4035f7375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a7472795f746f5f696e6974696174655f6170706c69636174696f6e5f646561637469766174696f6e3a3a6839393563383666643762383535353266c503673c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6836653038353062336139626433313438c603673c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a7472795f666f6c643a3a6863333337643133333932326636656430c703736a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f63757261746f725f6170706c69636174696f6e5f6578697374733a3a6835633164353534643437313739396262c803666a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a63616e5f72656769737465725f726f6c655f6f6e5f6d656d6265723a3a6863656364613630323839373837366133c9033973726d6c5f626162653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866333035656531393334353432303738ca03683c73726d6c5f626162653a3a5f5f4765744279746553747275637452616e646f6d6e6573733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865373962313137306438383264646461cb034273726d6c5f626162653a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6861353735396561396139623735356439cc0397013c73726d6c5f626162653a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a4578706563746564426c6f636b54696d6544656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836653562636139663130366138633066cd0393013c73726d6c5f626162653a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a45706f63684475726174696f6e44656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834353832363739653564343435316161ce035d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831383233353135343863396634336263cf038e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637454616c6c79526573756c74733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832653536313264396634323830323636d0038b013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637450726f706f73616c733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863643835653238333839363931343535d10390013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563745761736d436f64654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865393831633765353334623038333363d20393013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744465736372697074696f6e4d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838306637373839306130373432386264d3038c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744e616d654d61784c656e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834313239393363343733373332623930d4038e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374566f74696e67506572696f643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861373031633363316463386166396664d5038e013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637452656a656374696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838363335343832663265386536356532d60391013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f4765744279746553747275637443616e63656c6c6174696f6e4665653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865643336633663386262313336356338d7038a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f476574427974655374727563744d696e5374616b653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836303432643862623661646465323531d80390013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a5f5f47657442797465537472756374417070726f76616c51756f72756d3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839336263396531326135393031633938d9035b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a70726f706f73616c733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862663261616637326166396438663661da03d2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a7365616c65645f766f74653a3a5365616c6564566f74653c4163636f756e7449642c5374616b652c486173682c566f74653e3e3a3a6465636f64653a3a6835323632626131393233376336623565db03556a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831633738373565663536646265613030dc0389013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a5f5f47657442797465537472756374526571756573744c69666554696d653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835373034323862616535623963666462dd03566a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a69735f726f6c655f617661696c61626c653a3a6861313935373139633531333261633461de035b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a656e737572655f726f6c655f706172616d65746572733a3a6839333633323463306434666439616564df0382013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f736c6173683a3a6838393563643130353437373034376664e0037e3c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a736c6173683a3a6866643765646636656566626531626239e10389013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a4c6f636b61626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a7365745f6c6f636b3a3a6830376436663235336361323364373130e203526a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a6170706c795f756e7374616b653a3a6862333336313166373262613832383135e303513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6861643262396564643830663332613134e403536a6f7973747265616d5f6e6f64655f72756e74696d653a3a726f6c65733a3a6163746f72733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6866643263636131343062663563373531e5037d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a6862666536613062313437333935373131e603437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6866363031393532636439393864323839e703b60173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a4c696e6b6167653c4b65793e3e3a3a656e636f64655f746f3a3a6831336566633831643438343633306435e803443c616c6c6f633a3a7665633a3a5665633c543e20617320636f72653a3a636c6f6e653a3a436c6f6e653e3a3a636c6f6e653a3a6864373835623535323863393335656335e903513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6834323138316437313765633631666665ea03513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6866646261326232383036663866376135eb036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6831323531323534323937643939363366ec036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6835386233343233383339636361386561ed036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6837336331626664633266326134323363ee036f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6839393066653532623166393461383762ef0396026a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f723c4163636f756e7449642c52657761726452656c6174696f6e7368697049642c5374616b6549642c426c6f636b4e756d6265722c4c65616449642c43757261746f724170706c69636174696f6e49642c5072696e636970616c49643e3e3a3a6465636f64653a3a6863633935663234306533633762353134f003e3016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4c6561643c4163636f756e7449642c52657761726452656c6174696f6e7368697049642c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6832373864316132633032613663313564f103e6016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4368616e6e656c3c4d656d62657249642c4163636f756e7449642c426c6f636b4e756d6265722c5072696e636970616c49643e3e3a3a6465636f64653a3a6862643235373639383835396433636131f203f8016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f724170706c69636174696f6e3c4163636f756e7449642c43757261746f724f70656e696e6749642c4d656d62657249642c4170706c69636174696f6e49643e3e3a3a6465636f64653a3a6864643832306137666539326130353761f3035173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6834613236313931386661373462303933f403437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6834343638616437373736653830656534f503e2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f72526f6c655374616b6550726f66696c653c5374616b6549642c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6836643166623764653739366532666431f603d3016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f72526f6c6553746167653c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6835383838313332666230653163353366f703f5016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a43757261746f724f70656e696e673c4f70656e696e6749642c426c6f636b4e756d6265722c42616c616e63652c43757261746f724170706c69636174696f6e49643e3e3a3a6465636f64653a3a6836386231633162316234313963373837f803cf017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5374616b696e67506f6c6963793c42616c616e63652c426c6f636b4e756d6265723e3e3a3a6465636f64653a3a6839653265306261646661393333636231f903e9016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4368616e6e656c3c4d656d62657249642c4163636f756e7449642c426c6f636b4e756d6265722c5072696e636970616c49643e3e3a3a656e636f64655f746f3a3a6838656464643766623762313936373830fa03e2016a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4f70656e696e67506f6c696379436f6d6d69746d656e743c426c6f636b4e756d6265722c42616c616e63653e3e3a3a656e636f64655f746f3a3a6830393433623632316165353934363732fb03d2017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a7374616b696e675f706f6c6963793a3a5374616b696e67506f6c6963793c42616c616e63652c426c6f636b4e756d6265723e3e3a3a656e636f64655f746f3a3a6832643737386630353065656365393034fc03636a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a6164645f6e65775f7072696e636970616c3a3a6863346664643032383135643663333932fd03626a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863613862613538646365383633633362fe0398013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f47657442797465537472756374556e7374616b657242795374616b6549643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6831326630393936633463626462373636ff0392013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f4765744279746553747275637443757261746f72427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862323336373735653631623637643430800492013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f476574427974655374727563744368616e6e656c427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686134623933373231623763303436626681049d013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f4765744279746553747275637443757261746f724170706c69636174696f6e427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862336431653335636132613264633630820499013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f4765744279746553747275637443757261746f724f70656e696e67427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683930393033356333386566613564643183048f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a5f5f476574427974655374727563744c656164427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68623663326236333266653936643634658404af016a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72206a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a50726f66696c653c543e3e3a3a6465636f64653a3a68376232336631373034663861313931618504706a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6368616e6e656c5f68616e646c655f69735f76616c69643a3a68633863323963333633306162386136368604820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a683933653564643336643339343833336187046d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6368616e6e656c5f6f776e65725f7369676e65643a3a683166333634376266623435613665343788045a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a756e72656769737465725f726f6c653a3a68383862656239393561646439343338618904626a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a72656769737465725f726f6c655f6f6e5f6d656d6265723a3a68356364366665396535346232323266628a04606a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a7570646174655f6368616e6e656c3a3a68363764653937666437323665653762398b046e6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6163746976655f63757261746f725f7369676e65643a3a68306264636436326361326566356632638c046b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f6f726967696e5f69735f7365745f6c6561643a3a68353564316131306632643134663662338d043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68396238666362613363316565663134348e045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a68313462323935666133646266376130398f046f6a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a656e737572655f63757261746f725f6f70656e696e675f6578697374733a3a686430383561636265313738386266303690047f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a6765743a3a683962623734343231323966336539316191044b7375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a64656163746976655f6170706c69636174696f6e3a3a68633431636435626537323430343032399204646a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a646561637469766174655f63757261746f723a3a68623266336265636633363761366265379304820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a696e736572743a3a683263663831363230373435326230323294048c013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a43757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a656e737572655f63616e5f77697468647261773a3a68303434653430336636613462663164339504517375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f63616e5f6164645f6170706c69636174696f6e3a3a68336162343263613031623533623163669604567375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a696e66616c6c69626c655f6f70745f7374616b655f696e6974696174696f6e3a3a68633933623036386661393639343338619704303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a683336636339323262373634363834383198045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a686131663538356565316336616434396399043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68626238316333633561353364363663649a04613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a68376563313238643938633336646136329b047d7061726974795f7363616c655f636f6465633a3a636f6465633a3a696e6e65725f7475706c655f696d706c3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72202851302c205230293e3a3a6465636f64653a3a68636533653932646266313035343933349c045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a68383130666337396366393961373763389d04437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a68613862393865316639353531303666349e043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a68323761333362316238616664363035659f043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6862313931653931376164306665643564a004303c282920617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6830663233306363623135316135373830a104606a6f7973747265616d5f6e6f64655f72756e74696d653a3a636f6e74656e745f776f726b696e675f67726f75703a3a6c69623a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6835306164303634626636613365616437a2043673726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6b696c6c5f73746173683a3a6830393161663361343862383563393130a304820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a72656d6f76653a3a6865393035346366643966353932396436a404820173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654c696e6b65644d61703c4b2c563e20666f7220473e3a3a72656d6f76653a3a6838343732343737323636663063613830a5046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6836356266643336313431376163636166a6046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6830656538383165303964343563656465a7043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6836343631313932623363313636313335a8043a73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838393134623730653532313238623435a9043c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6864326162626133656564386466633530aa04703c73726d6c5f7374616b696e673a3a5f5f47657442797465537472756374457261536c6173684a6f75726e616c3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866633937656636616232363034616535ab04773c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637443757272656e74457261506f696e74734561726e65643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865316639363861323665333166646165ac04703c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637443757272656e7445726153746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866336435626163313535313135366462ad04683c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563745374616b6572733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861353132383838363731346564363739ae046b3c73726d6c5f7374616b696e673a3a5f5f4765744279746553747275637456616c696461746f72733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838356332303463356132643138303735af04763c73726d6c5f7374616b696e673a3a5f5f476574427974655374727563744d696e696d756d56616c696461746f72436f756e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865643734616535636236353464616664b0044073726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a736c61736861626c655f62616c616e63655f6f663a3a6831383433343138623963323332303230b1043273726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a626f6e6465643a3a6830343034316461356661396637383361b204870173726d6c5f7374616b696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a5374616b696e674c65646765723c4163636f756e7449642c42616c616e63653e3e3a3a6465636f64653a3a6839363962623163386331386334303333b3044573726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6865303664366465616336306533353732b40498013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a426f6e64696e674475726174696f6e44656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862306236646533646438363463623730b50497013c73726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a53657373696f6e7350657245726144656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6863333734303330313230616266626239b6043373726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7374616b6572733a3a6863643361326639396561373733323936b704820173726d6c5f7374616b696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f722073726d6c5f7374616b696e673a3a4578706f737572653c4163636f756e7449642c42616c616e63653e3e3a3a6465636f64653a3a6865356364373830313639613137623764b8046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a53746f726167654c696e6b65644d61703a3a73746f726167655f6c696e6b65645f6d61705f66696e616c5f6b65793a3a6864346563636433353361383063323433b904c9017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a4f70656e696e673c42616c616e63652c426c6f636b4e756d6265722c4170706c69636174696f6e49643e3e3a3a6465636f64653a3a6836663262353139303532333835646465ba043373726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6e65775f6572613a3a6861323063363763646165653237313033bb043773726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a6d616b655f7061796f75743a3a6839343236373039346333666266393735bc043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6834393339353235356462383935333937bd0484013c73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e756d657261746f723c4b2c562c473e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6866623533316465656433396533396332be0484013c73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e756d657261746f723c4b2c562c473e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a6862303937373266633362306238643562bf046a636f72653a3a6f70733a3a66756e6374696f6e3a3a696d706c733a3a3c696d706c20636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4f6e63653c413e20666f7220266d757420463e3a3a63616c6c5f6f6e63653a3a6835653562626666663533376330386330c004613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6833343536313235626535643739613436c1044673725f61726974686d657469633a3a68656c706572735f3132386269743a3a6d756c7469706c795f62795f726174696f6e616c3a3a6865376337343031363137383536333334c2043d73725f61726974686d657469633a3a68656c706572735f3132386269743a3a746f5f6269675f75696e743a3a6864343335633066373766396464373463c3043773725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6d756c3a3a6833306638363834343738643865326266c4044b3c73725f61726974686d657469633a3a62696775696e743a3a42696755696e7420617320636f72653a3a636d703a3a4f72643e3a3a636d703a3a6832326331623133326634643430623439c5043973726d6c5f7374616b696e673a3a4d6f64756c653c543e3a3a7570646174655f6c65646765723a3a6838313465316263373232363733326463c6045173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a6e65775f686561645f6c696e6b6167653a3a6862383737306565363436656133343566c704437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6863646261343664363365633731633739c8045b3c73725f7072696d6974697665733a3a4d756c74695369676e61747572652061732073725f7072696d6974697665733a3a7472616974733a3a5665726966793e3a3a7665726966793a3a6832386434323932353537656634623437c9044b7375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a6765745f6f70745f7374616b655f616d6f756e743a3a6861663931313432346331346333333164ca04303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839356161623539313330633930623863cb04c9017375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f72207375627374726174655f686972696e675f6d6f64756c653a3a686972696e673a3a6f70656e696e673a3a4f70656e696e6753746167653c426c6f636b4e756d6265722c4170706c69636174696f6e49643e3e3a3a656e636f64655f746f3a3a6862363563643463636432303933313231cc04477375627374726174655f686972696e675f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866373538666336653531396261356232cd047b3c7375627374726174655f686972696e675f6d6f64756c653a3a5f5f476574427974655374727563744170706c69636174696f6e427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861616635623632303431396331663638ce04773c7375627374726174655f686972696e675f6d6f64756c653a3a5f5f476574427974655374727563744f70656e696e67427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866313434306661396131306233363737cf047573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6838373038666234383233623639383665d004ca0173726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f646520666f722073726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6c696e6b65645f6d61703a3a456e636f64654c696b654c696e6b6167653c504b65792c4e4b65792c4b65793e3e3a3a656e636f64655f746f3a3a6837316135643036323061323462626365d1043473726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a6c6f636b733a3a6866636334326230653937633535356364d2047573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6861326135383036393834303961376336d304516a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d6967726174696f6e3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6837386235616637326163346536373765d404693c7375627374726174655f7374616b655f6d6f64756c653a3a6572726f72733a3a5374616b65416374696f6e4572726f723c4572726f72547970653e20617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6864666232636532333434376534616433d504303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6838623537666135336135323865623133d6043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6864323862626538663866333166643563d7047273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a6834333962636531663432373065653465d804437061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a7573696e675f656e636f6465643a3a6833623430646234623063376666313330d9043c73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6861363365353439663634613430366638da043e73726d6c5f696d5f6f6e6c696e653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866396430323461653236313763623766db04713c73726d6c5f696d5f6f6e6c696e653a3a5f5f47657442797465537472756374417574686f726564426c6f636b733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836633430363766383335333531333732dc04303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839353933313239333762323633393661dd04303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6862393261353063353062366532633231de043773726d6c5f7375646f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6865313639323230323363656264366133df043973726d6c5f7375646f3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6835383964353739396365383932643336e004613c73726d6c5f7375646f3a3a5f5f476574427974655374727563744b65793c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6834366165613164363131313331633065e104516a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746167653a3a6866303031313064626163636561316664e2043773726d6c5f737570706f72743a3a73746f726167653a3a756e6861736865643a3a6765743a3a6863383561316332353165386238633437e304646a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a6d6f76655f746f5f616e6e6f756e63696e675f73746167653a3a6831643264326636643361333866383635e4045c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6861646664343435653361636636626336e50490013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744e65775465726d4475726174696f6e3c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838323839633961313730366165613839e6048f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f4765744279746553747275637443616e6469646163794c696d69743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830643261396339313837333130643662e7048c013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374436f756e63696c53697a653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6862666330656239663866346564343032e80486013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f47657442797465537472756374566f7465733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839363732643735666266313938306334e9048a013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a5f5f476574427974655374727563744175746f53746172743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6839623861636263623635646132633835ea048e013c73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e2061732073726d6c5f737570706f72743a3a7472616974733a3a52657365727661626c6543757272656e63793c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449643e3e3a3a63616e5f726573657276653a3a6837333439333362656538623938633439eb047273726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a6765743a3a6837353265363865366637346562373663ec045d6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a74656172646f776e5f656c656374696f6e3a3a6830303238663162383335653630383961ed04613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a496e746f497465723c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6830313534313338333932633165643463ee045b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a64726f705f6170706c6963616e74733a3a6866383533356232383634363764616364ef0448616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a6831623465383438383735633232633761f0045a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a676f7665726e616e63653a3a656c656374696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6866643438383937633735643363633061f1044c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6861346236663465323933376237386339f2047e3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a5f5f476574427974655374727563744d61784d656d6f4c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6833633637386132316564636166633262f3046c3c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e2061732073726d6c5f6d657461646174613a3a4d6f64756c654572726f724d657461646174613e3a3a6d657461646174613a3a6837623334643731656634303964656666f4044a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d6f3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838336232313461633765643632376437f5043c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a6863306432323933623663303962353162f6043d73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a63616c6c5f66756e6374696f6e733a3a6865616134633665643565363066616566f7043f73726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a73746f726167655f6d657461646174613a3a6862633934383239326366363532393765f8046f3c73726d6c5f62616c616e6365733a3a5f5f476574427974655374727563744672656542616c616e63653c542c493e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6836383464653431323861626531386162f9044873726d6c5f62616c616e6365733a3a4d6f64756c653c542c493e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6833306532616136346334643032353136fa043d73726d6c5f6f6666656e6365733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6831656533636463353135633832333761fb04743c73726d6c5f6f6666656e6365733a3a5f5f476574427974655374727563745265706f72747342794b696e64496e6465783c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837363565636666366633623665303665fc04c7013c73726d6c5f6f6666656e6365733a3a4d6f64756c653c543e2061732073725f7374616b696e675f7072696d6974697665733a3a6f6666656e63653a3a5265706f72744f6666656e63653c3c542061732073726d6c5f73797374656d3a3a54726169743e3a3a4163636f756e7449642c3c542061732073726d6c5f6f6666656e6365733a3a54726169743e3a3a4964656e74696669636174696f6e5475706c652c4f3e3e3a3a7265706f72745f6f6666656e63653a3a6837613139353965356363633833393834fd046f73726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a646f75626c655f6d61703a3a53746f72616765446f75626c654d61703a3a73746f726167655f646f75626c655f6d61705f66696e616c5f6b65793a3a6838303636306137373533366331303263fe04613c616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e20617320636f72653a3a6f70733a3a64726f703a3a44726f703e3a3a64726f703a3a6834356266623730353030393565666536ff0468636f72653a3a6f70733a3a66756e6374696f6e3a3a696d706c733a3a3c696d706c20636f72653a3a6f70733a3a66756e6374696f6e3a3a466e4d75743c413e20666f7220266d757420463e3a3a63616c6c5f6d75743a3a686330656332343534313364313730663980057573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a683964653163363238343531636166353181053b73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a7363686564756c655f6368616e67653a3a68316665393261663531663036343831668205683c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a73697a655f68696e743a3a68333733636364343764616565656664378305633c636f72653a3a697465723a3a61646170746572733a3a4d61703c492c463e20617320636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723e3a3a6e6578743a3a683465313133373331346364633064303084053e636f72653a3a697465723a3a7472616974733a3a6974657261746f723a3a4974657261746f723a3a6e74683a3a683438333831616161633166386337376485053a73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683937343237316336323239333763356686053c73726d6c5f6772616e6470613a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68336166366431353535656633626533638705663c73726d6c5f6772616e6470613a3a5f5f4765744279746553747275637453746174653c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a683032666333393131316264386437643488054373726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a683061326164646166336666363436613889054e73726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a68346532643039313164316134643336658a059c013c73726d6c5f66696e616c6974795f747261636b65723a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a57696e646f7753697a6544656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68643364383036383435346139613263658b0548616c6c6f633a3a636f6c6c656374696f6e733a3a62747265653a3a6d61703a3a42547265654d61703c4b2c563e3a3a696e736572743a3a68326639623431653665343430373563378c053c7061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653a3a656e636f64653a3a68323461626236366164303030393832308d05447375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a68626266386231633837303039336564348e05467375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a68373639623630663066366566656330328f057d3c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f47657442797465537472756374506f737454657874436f6e73747261696e743c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68353134663763623131316263623365629005733c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f47657442797465537472756374506f7374427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68366437323936373638356366653532349105483c5b545d206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a656e636f64655f746f3a3a68626365303632326131643530613961669205753c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f47657442797465537472756374546872656164427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a68313562613233306630643264653266359305773c7375627374726174655f666f72756d5f6d6f64756c653a3a5f5f4765744279746553747275637443617465676f7279427949643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a686161393535643837303931653934653694059d017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a506f73743c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a68376661316434666366633166303062619505a9017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a4d6f6465726174696f6e416374696f6e3c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a683461383761313333353930656535623496059f017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a5468726561643c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a68363830646134616639316534626239379705a1017375627374726174655f666f72756d5f6d6f64756c653a3a5f3a3a3c696d706c207061726974795f7363616c655f636f6465633a3a636f6465633a3a4465636f646520666f72207375627374726174655f666f72756d5f6d6f64756c653a3a43617465676f72793c426c6f636b4e756d6265722c4d6f6d656e742c4163636f756e7449643e3e3a3a6465636f64653a3a683264396564616239303161313733363098054a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a683332646263316434313864383633353499054a3c58206173207061726974795f7363616c655f636f6465633a3a636f6465633a3a456e636f64653e3a3a7573696e675f656e636f6465643a3a68336365366166333731633437366339649a05687375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f76616c69645f63617465676f72795f616e645f6275696c645f63617465676f72795f747265655f706174683a3a68303438393163623431626138323139309b054a7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f7468726561645f6578697374733a3a68646663626539636433356239383937319c054e7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f7468726561645f69735f6d757461626c653a3a68323930393663363065373037616636339d054c7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a656e737572655f706f73745f69735f6d757461626c653a3a68376434656131663361383232353161369e05427375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a6164645f6e65775f706f73743a3a68306639316137306366656435643032379f054f7375627374726174655f666f72756d5f6d6f64756c653a3a4d6f64756c653c543e3a3a5f6275696c645f63617465676f72795f747265655f706174683a3a6831333362343666366234343561666436a0052b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6830306238623364316633316139316264a1053a73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6862363135333830383836353931373466a2053c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866663764316536666166363338663331a305703c73726d6c5f617574686f72736869703a3a5f5f47657442797465537472756374446964536574556e636c65733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6865616332313135303435336361623563a4054573726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a6832383131303635323033616235633439a50599013c73726d6c5f73657373696f6e3a3a4d6f64756c653c543e3a3a6d6f64756c655f636f6e7374616e74735f6d657461646174613a3a44454455505f4b45595f50524546495844656661756c74427974654765747465723c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6838333139333230623634323262643630a605603c73726d6c5f737570706f72743a3a686173683a3a54776f783634436f6e6361742061732073726d6c5f737570706f72743a3a686173683a3a53746f726167654861736865723e3a3a686173683a3a6863613836336635313566386164623737a7053d73726d6c5f617574686f72736869703a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6861363632373565396462633164343562a8053f73726d6c5f617574686f72736869703a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6837316561326433343331363830396462a9057573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6836613438353562656437663261373334aa056a6a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6866653239623531663464393734316163ab0599013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744e657874506169644d656d626572736869705465726d7349643c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6835353262316330303734343164643136ac05686a6f7973747265616d5f6e6f64655f72756e74696d653a3a73746f726167653a3a646174615f6f626a6563745f747970655f72656769737472793a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6838373934393963366137366539393831ad055b6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a73746f726167655f6d657461646174613a3a6863646533313430356539663331386231ae0592013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617841626f7574546578744c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6830366439306662373731346632383162af0592013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d61784176617461725572694c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6866333332336637303961636239376433b0058f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d617848616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6861323936633663663930646338366535b1058f013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f476574427974655374727563744d696e48616e646c654c656e6774683c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6837336639663564316631653861626534b20599013c6a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a5f5f47657442797465537472756374416374697665506169644d656d626572736869705465726d733c543e2061732073726d6c5f6d657461646174613a3a44656661756c74427974653e3a3a64656661756c745f627974653a3a6832663130373466663739623962353564b305676a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a636865636b5f757365725f726567697374726174696f6e5f696e666f3a3a6837346462643261386436653831383164b405586a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a696e736572745f6d656d6265723a3a6836623330333865376238643435646462b505606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f6176617461723a3a6865343362636664656537663065393730b605646a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f61626f75745f746578743a3a6832326133613461656666343466633066b705606a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a5f6368616e67655f6d656d6265725f68616e646c653a3a6835336231316665336436623631616135b8057573726d6c5f737570706f72743a3a73746f726167653a3a67656e657261746f723a3a6d61703a3a3c696d706c2073726d6c5f737570706f72743a3a73746f726167653a3a53746f726167654d61703c4b2c563e20666f7220473e3a3a696e736572743a3a6834623638303031313237303131373833b905596a6f7973747265616d5f6e6f64655f72756e74696d653a3a6d656d626572736869703a3a6d656d626572733a3a4d6f64756c653c543e3a3a63616c6c5f66756e6374696f6e733a3a6833656536633238616339356664383131ba05383c6c6f673a3a4e6f704c6f67676572206173206c6f673a3a4c6f673e3a3a656e61626c65643a3a6831636566376361353635383838356463bb05343c6c6f673a3a4e6f704c6f67676572206173206c6f673a3a4c6f673e3a3a6c6f673a3a6831656634393539323431633436343630bc05363c6c6f673a3a4e6f704c6f67676572206173206c6f673a3a4c6f673e3a3a666c7573683a3a6862653965653039343162326130386539bd053a73725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6c73747269703a3a6831653662393366623635303435306231be053773725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6164643a3a6838663430326566653964373836663731bf054473725f61726974686d657469633a3a62696775696e743a3a42696755696e743a3a6469763a3a7b7b636c6f737572657d7d3a3a6866366561643639393463373532386439c005513c616c6c6f633a3a7665633a3a5665633c543e20617320616c6c6f633a3a7665633a3a53706563457874656e643c542c493e3e3a3a66726f6d5f697465723a3a6830616235393966326432343436353732c105323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6830366539363537633830633139316664c2054e73725f696f3a3a696d703a3a6578743a3a65787465726e5f66756e6374696f6e735f686f73745f696d706c3a3a6578745f7072696e745f757466383a3a6838373936363064383334613639616366c305323c265420617320636f72653a3a666d743a3a446973706c61793e3a3a666d743a3a6830343432346562373937353734643231c4054c3c73726d6c5f737570706f72743a3a64656275673a3a52756e74696d654c6f67676572206173206c6f673a3a4c6f673e3a3a656e61626c65643a3a6830333833663261613333363338343363c505483c73726d6c5f737570706f72743a3a64656275673a3a52756e74696d654c6f67676572206173206c6f673a3a4c6f673e3a3a6c6f673a3a6838653235373765383264613537643839c6053a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f7374723a3a6862393961343264623235356465353566c7053b3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f636861723a3a6832313536333138333362333863323063c8053a3c266d7574205720617320636f72653a3a666d743a3a57726974653e3a3a77726974655f666d743a3a6863353964393830323264633261623933c9055d3c7375627374726174655f726563757272696e675f7265776172645f6d6f64756c653a3a526577617264734572726f7220617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839333138356239666565303765653135ca05303c265420617320636f72653a3a666d743a3a44656275673e3a3a666d743a3a6839666164333365373937616335323030cb052b636f72653a3a7074723a3a64726f705f696e5f706c6163653a3a6866313835326234313266616230383639cc05066d656d736574cd05066d656d637079ce05076d656d6d6f7665cf050462636d70d005095f5f6173686c746933d105095f5f6c736872746933d205085f5f6d756c746933d305095f5f75646976746933d405095f5f756d6f64746933d5050c5f5f756469766d6f6474693400550970726f64756365727302086c616e6775616765010452757374000c70726f6365737365642d62790105727573746325312e34332e302d6e696768746c79202836643639636162613120323032302d30322d323729" - }, - "babe": { - "authorities": [] - }, - "indices": { - "ids": [] - }, - "balances": { - "balances": [ - [ - "5C5Emc3PvsdxQqFiNiNpLVAZTbFzqMaYPS2o9J846cnaSxeb", - 10000000 - ], - [ - "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh", - 2000 - ] - ], - "vesting": [] - }, - "staking": { - "validatorCount": 20, - "minimumValidatorCount": 1, - "invulnerables": [ - "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh" - ], - "currentEra": 0, - "forceEra": "NotForcing", - "slashRewardFraction": 100000000, - "stakers": [ - [ - "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh", - "5E4wkzGQwuBMy566V6kKZwb4jPVv5peDjAEGnfmshEu66uQB", - 2000, - "Validator" - ] - ] - }, - "session": { - "keys": [ - [ - "5Dc7ZXDCnxMZShQKY8TRJsUi1mLN1E3FqjX7Zc43ZrYosLqh", - { - "grandpa": "5E8gJFd9V9jCX86Xj9DmbB19L32pRyjkonbzBRyiHq61rxqd", - "babe": "5DnadmTwi7EKR8ceJjByJziBk7G29Cdou5pAQaizQ5QwADXQ", - "im_online": "5Gs6RH3KkBQqzgxVrRdh8t7G72iSnhmynfZVn3J6NfsRnbat" - } - ] - ] - }, - "grandpa": { - "authorities": [] - }, - "imOnline": { - "keys": [] - }, - "authorityDiscovery": { - "keys": [] - }, - "sudo": { - "key": "5C5Emc3PvsdxQqFiNiNpLVAZTbFzqMaYPS2o9J846cnaSxeb" - }, - "proposals": { - "approvalQuorum": 66, - "minStake": 200, - "cancellationFee": 10, - "rejectionFee": 100, - "votingPeriod": 28800, - "nameMaxLen": 512, - "descriptionMaxLen": 10000, - "wasmCodeMaxLen": 2000000 - }, - "election": { - "autoStart": true, - "announcingPeriod": 43200, - "votingPeriod": 14400, - "revealingPeriod": 14400, - "councilSize": 12, - "candidacyLimit": 25, - "minCouncilStake": 1000, - "newTermDuration": 201600, - "minVotingStake": 100 - }, - "council": { - "activeCouncil": [], - "termEndsAt": 1 - }, - "members": { - "defaultPaidMembershipFee": 100, - "members": [ - [ - "5DcAKnrUmfes76j5ok8XcFheTdzS72NFsJA56AzVrNz9gVEz", - "joystream_storage_member", - "https://assets.website-files.com/5c78435271c31384e942f111/5c78435271c313493442f123_Helmet.svg", - "Joystream run member account for storage nodes." - ], - [ - "5DaDUnNVzZPwK9KLwyPFgeSbc9Xeh6G39A2oq36tiV9aEzcx", - "bwhm0", - "", - "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." - ], - [ - "5FnXBHfcDE6nQrwHjZqHYYpnzCLap2b9d3eQHt2Jt9eBG6mv", - "tomato", - "", - "" - ], - [ - "5GLLKE5LqfYtzJyE779jcciT8uM5rjQfGZ65r3sKBvvoUfBZ", - "tzdutchcom", - "", - "" - ], - [ - "5FMrFXCbhtdv4tG5XaPsG3MyS6u36ZfsdCoHZxk4cTGdE56D", - "nexusfallout", - "https://www.gravatar.com/avatar/00000000000000000000000000000000", - "I am Finny, a blockchain enthusiast, been here since the beginning of the new project. Looking forward to be an active member." - ], - [ - "5CiGc9SzUjaVPZd66HVDnJNSRh5Ld3TK477nGYiwurwHZnZv", - "enjoythefood", - "https://cdn.pixabay.com/photo/2016/12/26/17/28/food-1932466__480.jpg", - "Following this project. Hope the best for it" - ], - [ - "5GSMNn8Sy8k64mGUWPDafjMZu9bQNX26GujbBQ1LeJpNbrfg", - "alex_joystream", - "https://avatars2.githubusercontent.com/u/153928?s=200&v=4", - "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)" - ], - [ - "5H8kTuZp2T2geceCuaEQ29Jg8fFjCJkwGQgZjRhhGLxFVMSC", - "benholdencrowther", - "https://www.benholdencrowther.com/wp-content/uploads/2019/03/Hanging_Gardens_of_Babylon.jpg", - "I am an investor, publisher and security researcher." - ], - [ - "5Gn9n7SDJ7VgHqHQWYzkSA4vX6DCmS5TFWdHxikTXp9b4L32", - "mokhtar", - "https://avatars2.githubusercontent.com/u/1621012?s=460&v=4", - "mokhtar" - ], - [ - "5EtFzT8ZJN7VPKfcxjsQhtJUhHzuPsUFMaahPLGoaw5odaqj", - "staked_podcast", - "https://pbs.twimg.com/profile_images/1100673229310644229/HUbup-M5_bigger.png", - "staked podcast" - ], - [ - "5EHCSTmnRVedbVssiWBLbE9LjXsF3MZje961LswgxvKBjPPy", - "nexus", - "https://www.gravatar.com/avatar/00000000000000000000000000000000", - "This is Finny, a Crypto enthusiast and a web dev. (old account no longer validating.)" - ], - [ - "5GxkVNvkKRWcrMxyNzgiVD42Fiovw3DezC62XKei24sdezaf", - "pskyhard", - "", - "hobby mining,musician,guitarist,music maker,crypto trader" - ], - [ - "5Dba5neECYe3eyEJ9bdd2mCQzuXwruqaYdrF1UPjE2B9rzAb", - "ch3n9lee", - "", - "GPU/CPU/HDD MINER, musician,guitarist,song writter,music maker.crypto trader" - ], - [ - "5DPovdRPEPvfRqzAgEB6xpC6teknC8fdDk5HCE6FATnqRARf", - "gnossienli", - "https://staker.space/stkrspcLogo.png", - "Validator trying out joystream" - ], - [ - "5G7Hzo7eqWQKuNHAG8NN1xEDXsRidFd26rgibw4e3Tw392Bb", - "bontoo", - "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", - "testnet for future" - ], - [ - "5FZQZAFncWciyFeDbbSPuKtFwPovizCdTdA1BHKsNjYtyc7T", - "storage_tester", - "", - "just testing..." - ], - [ - "5EwRZv5hFb2oy1Ubsvor1nfeFUjV4Ycgk7hjNCfHDBQBcExs", - "storage_test_edwards", - "", - "still testing..." - ], - [ - "5HUA38wojV9PfMZGsNksMR3PDGskshJgknnBnFUGQBgZRs92", - "still_testing_storage", - "", - "will unreg later..." - ], - [ - "5CFJhfdE5xbp9KZ4b3kULCYvfAm1PDfjL6SdAmeewMj7roPw", - "dolby", - "https://drive.google.com/file/d/1ygXMTeoy16qGBr03GW6MuogdEbtScsev/view?usp", - "I love this test" - ], - [ - "5FeamBx9DWjG5aLAMLyvmu3JphwyCFEA9HFoUYWfHRFMGNK1", - "periskystorageprovider", - "", - "storage provider, free music& video content" - ], - [ - "5En5s2iZ865T9iY59bFdm1p8Hxdb2w3jL1obx3SK1YUDYKf9", - "abyanstorage", - "", - "tes for storage provider" - ], - [ - "5CMP8SssaKGyPFS4dftDM1UNbo2irDuibNoSggjASwxjHA7B", - "naimastorage", - "", - "testing storage provider" - ], - [ - "5EC1Wrd15LjMcgdF8MFsner3hwWeKtSaqKigVDLH6Abd7BxC", - "storageathens", - "", - "im naima want to join as a joystream team" - ], - [ - "5GbivJkHuHs6wxgiH2SS44MyQ9PfDKfTjSgwoyunqrCZ3HEF", - "botsawana", - "", - "" - ], - [ - "5DwUCvgQ99ghQArqLQx3mjbedCdLjzznuVfw8nv2JNK5DaqY", - "radithot", - "", - "newbie testing" - ], - [ - "5GZkh2yxD2d6c8muJjnM4PE4e3dsRnv8XJ8dk4iwyPcDen3J", - "papayadee", - "", - "testing " - ], - [ - "5CRBBpNJqoonH6shfJWHJTDqisti36Nxc9P52SHxrTrkmwcc", - "meetlica", - "", - "this is test" - ], - [ - "5DWp8NhZDgbk7aWs36uT3UjJayBAz7pfhE2mfmbLuUVZGd3p", - "storage_debugging", - "", - "" - ], - [ - "5Do6LSqMybi1MXm47oYhA4Um367Yt6xLqnFybXfSKzU4HicZ", - "roarhansen", - "https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/James_Dean_-_publicity_-_early.JPG/220px-James_Dean_-_publicity_-_early.JPG", - "Scandinavian person interested in cryptocurrency and file sharing." - ], - [ - "5DLrbgdXYfAJRwXwm7wrkEfgujmwrQMxa39hJeeC7bQwjhhv", - "aisyah", - "https://testnet.joystream.org/athens/pioneer/#/members/edit", - "Gogogo test and moon" - ], - [ - "5Gj7TbThxL1PiVHd4jJjYeJvDAmvp1j8hdcpPEFtqGoswZLJ", - "jamiek", - "https://pbs.twimg.com/profile_images/810014496131428352/if9jywHE_bigger.jpg", - "Creator of the Make World and STEAL THIS SHOW podcasts." - ], - [ - "5DzGS4AiDH9vdzMC4rDj1hBnxWmDJD3NjGNsbSxEDYo2Jpdu", - "milzam", - "", - "Hello World im here to joint Joystreeam team" - ], - [ - "5CNWS2V6RYKZVeqjqg9UqbQhAxGGphWtv9STxKKuuJW9kG3S", - "nexus_storage", - "", - "this is the test storage account of nexus" - ], - [ - "5GTGsVLz1VWPmD9KbMtdW5wMJjcAwmpt3SjEZHbTJiQycawy", - "pskyubuntu", - "", - "want to become a part Joystream team" - ], - [ - "5CEw8JxuM1kh34VoocG9bqqjqs98pdA7fG5uaTtPdjzShqFb", - "nectar", - "", - "Validator/Council Member" - ], - [ - "5FU95CyecEJo3czvTcYfmR6LTNXT7fXTrkkRJFNcbRFuCYXH", - "pskysession", - "", - "awesome joystream node" - ], - [ - "5HZ4RchQki238Zq4x47bj8fijGvhosaH1bXtAB9z9iAed2BR", - "mekienak", - "", - "gimme joystream token" - ], - [ - "5Fnkp3p2fgKXN3rEDTTRQNBekfdWE3xEZToRWqHiCrTqsDKC", - "hountez", - "", - "" - ], - [ - "5DeomUpfJiaohdrNoiNd4KTJAmz4SjB5z7ep5JQ8Lwx8Mmvr", - "tienee", - "https://testnet.joystream.org/athens/pioneer/#/members/5DeomUpfJiaohdrNoiNd4KTJAmz4SjB5z7ep5JQ8Lwx8Mmvr", - "My job" - ], - [ - "5DPjwKLAKqVNMwmHWqX3SwwJ5WraPWRuLx71gFaCCcchcdmc", - "arjuna", - "https://drive.google.com/file/d/12iTZzBpdeHrN2tjJz7zIlrzDxpIFugl_/view?usp=drivesdk", - "Xmr im loved" - ], - [ - "5DcZjBgXcsDi51etbUvkB9twJL9yUnwTFnmsj75Q6ean7qNb", - "bitcatstorage", - "https://s3.amazonaws.com/keybase_processed_uploads/ce9e45f57a027881e69021a12543d905_360_360.jpg", - "validator service from China team" - ], - [ - "5GnWANB5HxqbXd5kfhTKDvpeVGuDXH5G4ofEVEndT6CT9jFm", - "nickname", - "", - "" - ], - [ - "5DFJfZePK15RThiZwdwjSDY87J3w94mCvyCve9BGaQqdeqww", - "boatman", - "https://lh3.googleusercontent.com/-Wnc3u2TxtWw/ToZ-uQvDmFI/AAAAAAAAUUM/sxs71ntW_5wdMxZTGjdBdr14k9seixVBQCEwYBhgL/w280-h276-p/BoatHead2.JPG", - "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. " - ], - [ - "5DoZsgfmppmxm5N2nmWvpE7vk3EiojZoeBYKjfKNnm7dY1CS", - "yasin", - "https://testnet.joystream.org/athens/pioneer/#/members/edit", - "good to try" - ], - [ - "5GxcUjY3tXYaDnm6LDu3yRdgE9wACXbmqjYVVAg8FwRZYPmF", - "sudapl", - "", - "" - ], - [ - "5G8bFk4TGm5JKhLMj199zf6iQfrHYBrLh9JBuipERF6WLYX7", - "shadowmen", - "", - "" - ], - [ - "5D347Qwfk9Jexfaju3d2iqi8UY1JguKazmz6Zsc2HEzFTnr5", - "night_raven", - "", - "" - ], - [ - "5HDHZQyuBZZiX7yThA2SzPBW2xVKk6v6dgCnQDiRABkqfdpY", - "picasso", - "", - "" - ], - [ - "5HD1jy4hco4SLKU8GkJvHZNWH6kQeiCm3eTssngk5nf85DmA", - "mb00g", - "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/48/48657feccbb3bef0dcfc8511ba500a0fdcf687b0_full.jpg", - "" - ], - [ - "5FVMRqxB3KNVrq6r3yMc4jrDVWwkLxCBwu3pAtRF3HpXZkjd", - "alkno12", - "", - "" - ], - [ - "5ECH7vPtCVTs1Y6U4NonWJYBSPo87gGWYUn3xN9evPvYDyaW", - "storage_dude", - "", - "..." - ], - [ - "5Hp4rr7YQtjLQ82W4a55cQm3e6aePxZqATWAk23vKMxZ4Qfm", - "roar_storage", - "https://image.freepik.com/vector-gratis/fondo-borroso-colores-claros_1159-750.jpg", - "" - ], - [ - "5F4k8DAGNTgXRtYbSf1pbqpBueP1nQmvmyrRDwVmFqVRFtsu", - "rioplata", - "https://i.kym-cdn.com/entries/icons/original/000/026/913/excuse.jpg", - "" - ], - [ - "5GHQsSq2Cbu2UuMpJExRFNkngrJyf9bvmWjHtoaQTcyZfx7n", - "joyousjester", - "", - "" - ], - [ - "5EWUe17geJfL8YhJKjpnXswWkbMJpMj2AonLYygLptUchDsL", - "roar_stor", - "", - "" - ], - [ - "5HNk1sE1Fwq3teKCJybnDzTaihYoDCCLVtfWVKoUEjs1fppb", - "tigernr2", - "", - "" - ], - [ - "5DU3yCmcKYdhMhx8qwhtREDpB96ALg4n3GZ7KWqD8RYuHf85", - "fast_inet_offer", - "", - "i have no idea if its usefull but have an 500/500 mb/s EU west connection to use" - ], - [ - "5CJ4DWRdrCCt4qQhWutSiHuEAHVXFcQ8Fsb2UJbFbwzUj4En", - "sdjakasampurna", - "", - "love joystream project" - ], - [ - "5GT93iCiNmgnKznXrwg7VYfyxgtwYAsejPaVMFiEq35HDFb3", - "kampung2", - "", - "earn xmr with join tesnet Joystream athens project" - ], - [ - "5GkE2fc3Yh1CeikUjNedPeKAyEUGzJvMRV4vgbawB7nsPNQt", - "sedotwc", - "", - "love joystream team" - ], - [ - "5HSvkJ3KgBPQYFRVZatjWqim6oSbCDgYgK6pR9JERD9xkmyd", - "jolowiprabowo", - "", - "vote me and let me in :)" - ], - [ - "5DfbxvnYEnAe18yWX5HKsxt8AaoDAjtmfpUco9rcZBYwqhJi", - "jablay", - "", - "awesome tesnet joystream athens " - ], - [ - "5DGsFBByiSRTo248vk6Qu9CjQMgvbgyVRjQpix3J6oCHbXoV", - "farel", - "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:", - "my chance" - ], - [ - "5CiQy3WMqEhmVgWecgd7PDf4zFYjySsCeSoEPHfwKDX1ZXKH", - "gembong", - "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:", - "Star for all" - ], - [ - "5HYs84s2wAUkyuP43sm1AvRQ6kYrUDS9KDcXoAHTxFdX5CTF", - "memberkonsil1", - "", - "vote me" - ], - [ - "5CidUM3X95rizhAkfwx9DjsuBAkytAPv6wxkaHT5kiUz5s2v", - "dafaa", - "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:", - "Join" - ], - [ - "5GEd1rmfmgxtu2ab9ZwkiWKiu12mnxzSx1YiUHqaAPZpoG4b", - "yacobtsige", - "", - "exploring the blockchain got me here im very curious and easy to understand " - ], - [ - "5F1X2QM9Y4Zyf2gEEzT45xYx2jXaz62ZRhaXmMoz1u3a9EmR", - "awuldor", - "", - "" - ], - [ - "5Ct589RpqCSXfR9x3nMC2q3kdsXJc57K3o78MJGyn4mQdt9u", - "oroor21", - "", - "cheaters" - ], - [ - "5HmHHAVsDnbrngfpHrFba1CCyobeVscvM8LS2F8e6BoX3ujc", - "boggieman", - "", - "vote me" - ], - [ - "5E5QTPqfRua4TNUFby9BwNirf18hjL8BfDixqNxzmHH7AQuw", - "sitim", - "https://testnet.joystream.org/faucet?address=5E5QTPqfRua4TNUFby9BwNirf18hjL8BfDixqNxzmHH7AQuw", - "Everything" - ], - [ - "5GiSPEa9RkuKwHC8Gsd9Mvz8AuRpLqyCxt6PX2uGMhLBkMt6", - "saitama", - "", - "" - ], - [ - "5CsrS5WKjLMnhz5C44uuqAmzF8hiMCdB3jfPU183pVZCiYic", - "stake5labs", - "", - "" - ], - [ - "5GvnVHdoKpeY3mXKqFKxemZWhp3LHYnP1pjsUxvBsdAQQ1Uj", - "bepoo", - "", - "" - ], - [ - "5Dgkz2T8F7nCHBcCFkkUmVapn128Y7FjoLcAkKn3VKt4HWFa", - "sta5l", - "", - "" - ], - [ - "5EpDFAf1GXbyJA91nWGVMt3nfTcJumdKaZouhkce9vnDkTnu", - "aneukayah", - "", - "" - ], - [ - "5G7hWpjtmWvY6bAVEE9eUbHAakU83BiacgvWpeMwNZounTXc", - "sapimin", - "", - "" - ], - [ - "5CLTmmq9MYHFzFcxdx61ehaTSyH4LXHNuxxxGd4rMbaK2GFa", - "arjanz", - "https://pbs.twimg.com/profile_images/1122362089/image_bigger.jpg", - "Polkascan test" - ], - [ - "5CtDrkRsqSVrYoWuEuEcMJoMkv3V28qzuVSmxmHZGYDmxotA", - "arjan", - "", - "Test account" - ], - [ - "5GajxrWgmhCDnKBEdYDX8dEi3hPbYRsCFDrJsFHXeJ1dbESy", - "inchain_works", - "https://i.imgur.com/LI85WjO.jpg", - "inchain.works" - ], - [ - "5EZbBSiTwmd7V3dn5PhZKWp1LuGXoTCBUk8TJmadXdfVwnWG", - "11th_member", - "", - "" - ], - [ - "5CiuCY1684Kpseg3CtEepqvmEumveoTEgHbkTHgEkZWN463q", - "huang", - "", - "" - ], - [ - "5FEEHAeXbMZRWMRvGFMGN18RUEhjX5nrgonB5YZ4NLahTXGJ", - "riyue", - "", - "" - ], - [ - "5HdGgQKeWvKTmnq6jnNeM6t6gnRSaAExdTg5oK9LFAunEjmf", - "rethwe", - "", - "" - ], - [ - "5Ei3dtaie8WGrJBMrF8mexCi62fjE7EuMPTfQ8midtDH1ssx", - "ch3storage", - "", - "hi im beginer to join joystream storage provider and im still learn about joystream project" - ], - [ - "5DFKsQKbosQ41mpy4NbWLP8rQApc1bb1gEbxxCCDkToUmzNE", - "tryptamine", - "", - "" - ], - [ - "5CknxEPjaCEXm2e7Xvn7X6ergCewPdfpNSTNYfoNZtkrUB4J", - "martintibor40", - "https://lh3.googleusercontent.com/a-/AAuE7mAOxgww3L4uBSuatEvkZkB-TQ3TF1o-raqPy6z4oA=s96", - "\"Ready to embrace the future'\"" - ], - [ - "5DYFgPoqT27Wf6Pq7sFxdAV2BrshYQZ5qSqeTrXeWbidbW9G", - "john_pars", - "", - "" - ], - [ - "5H12THfoB3U3HQmZDRc5kawbVr1q5SSwWWg1d7p6VwREwSus", - "bintang", - "", - "he im new joystream member" - ], - [ - "5ER3KmWi2oLkQ3Mwc68UyeEfsL1eX6k9WEnWmouB8JXx1F21", - "bintang3", - "", - "hi joystream team" - ], - [ - "5GBTtfYboQJYa7Ao6UwGBNKFbp4xMHYsCZtyQa8gjxG9Rpj6", - "shamson", - "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:", - "try to know" - ], - [ - "5He1Mn1U8kSE1uwYpQ51R3f1MBb2vcDr3NTLvXUschgFdtuG", - "edivalidator", - "", - "hi vote me :P" - ], - [ - "5GYQ1kP5RAgNxQqkddLVhFvfYAnDDLVCLSLpUGXhahp1sRTm", - "herikeren", - "", - "newbie in joystream project" - ], - [ - "5EwPRFkgaj9YqjQ6w3LVf4YewFpEeUZkKoY6hTLbHCHYehDB", - "aray12", - "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:", - "Try to know" - ], - [ - "5H8XFhvFDsiDGrF26ZvgcG9swt34wSAr8AbvRoeq7U5yi7Yd", - "nadine", - "https://drive.google.com/file/d/1Gk4ubqBcEvcQpre1r_ePZ7T65ZgHCfrF/view?usp=drivesdk", - "Wana claim" - ], - [ - "5HfGdiZ182XX5rwUwrje9rgvae2WX9eDRWDXwJg3sD2DbQHD", - "kubil", - "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", - "Choice me p p p" - ], - [ - "5C6bM8CJP7X6zkBeDe2pD3LMxomnoQBRsJqB1c9tPYsatftb", - "jhuan", - "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:", - "Easy trial and earn X" - ], - [ - "5Dy4FpfUcnVCx9A4XtpFXYkWWWoM1dsKoS3K89VskjjMUQj8", - "bamsrd", - "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:", - "My friend tell me about this" - ], - [ - "5DXwzZ6P4QTKS14Wv79Ne9YtvmG6yiN8xEPqwecg42pFH1EX", - "raden", - "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:", - "My first time" - ], - [ - "5Drcpx3M7FhPgexUyxoEJDR9Ltne69r3YVhCkQifBV1b5zGz", - "siman", - "", - "" - ], - [ - "5DUaFPy1eqkQuU7DEBZ9YpTmTGjSuQaCXT6wFpYx4iM489H5", - "andyt", - "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:", - "Newbieeee" - ], - [ - "5DY2bBaB24Zv8WivThmpQuRH8PAMkJaz8rpLnUtT9RhpdVnQ", - "yohanesyuen", - "", - "" - ], - [ - "5CCrySRCh6Rykmj8hHTeSwgsagvD3tr34Qtv2756SP9CpvWL", - "linuxif", - "", - "" - ], - [ - "5FrXNhhS9RjZsiQH737yHMoz3Kw8pg7Uc5cMtw5PE6Y7HJ6J", - "linuxifraw", - "", - "" - ], - [ - "5CBNQvCiFYaCVsr6A1nFChDwddzmeBboHMydstULtjzQFVXN", - "kacung", - "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:", - "Mantap" - ], - [ - "5Dos9CnNqnp5jDxdBXBCsdRFQRDkNHUo6qULEqT6infbRKxi", - "arikan", - "https://pbs.twimg.com/profile_images/1110553699636649984/PPjcoiD4_400x400.jpg", - "machine readable artist" - ], - [ - "5Fa2QXToUMNHfmgJ4oskA63hLr4RmY7fEMdEEAGwthbgqjPT", - "kaizer", - "", - "" - ], - [ - "5EJK2q7TZ3zBpM86dUNYG36ioDJjWzrzRFqPpKWq4huxSoN1", - "rezza", - "https://images.app.goo.gl/dTMUy1Tebpn5rJCV7", - "Here here" - ], - [ - "5GFGT91YyMGq9Gob67DKuMHmEm2LYG6tmbRuoKN8kA1x3hCB", - "jstar269", - "", - "" - ], - [ - "5HjMzAgoTqZnAtNbTgHk7eHUvH5dBthEUNmmRqdjHrJRUnWv", - "misterjo9", - "", - "" - ], - [ - "5HYaW898Z3EJBmSaYPFqp2DBgkW13zf6aMWfdbZ44dkLdSpA", - "sally", - "", - "" - ], - [ - "5GPVHW88RPtzxEM2QH6cZMp6JJR4TKX7xTNiwuf81ZDkT2TM", - "kagami_san", - "https://i.imgur.com/BwViZJq.png", - "If elected, I will be an independent, fair counsel member that interacts with the community and represents the community sentiment. Thank you!" - ], - [ - "5GWH3K3ivLK32kKyLbws2SJpGisLd4CM1kjPeAGwxsB7XJZN", - "glenden", - "", - "I am Glenden" - ], - [ - "5EDwsMeq5AKo278rgh38TvjkCDSiBZpiKq7LZLQEAbmsxv65", - "shmoop", - "https://sites.psu.edu/siowfa16/files/2016/10/YeDYzSR-10apkm4.png", - "" - ], - [ - "5HEsfa5rjDYALKyDBY7oFX6qYTTUSJgjEB9uACA6kptHQAmD", - "zxczxczxczczxc", - "", - "" - ], - [ - "5HMpE8Z2AuntT6Wow9Zjq74m5dBMViZmoK35byFPKMF2CiAX", - "r1sk97", - "https://yt3.ggpht.com/a/AGF-l78nwhTvUtstqRUDD_nIz_y40JSYHFV2yoZ46Q=s900-mo-c-c0xffffffff-rj-k-no", - "Just a bored guy." - ], - [ - "5G3jMHcbqgzyqCiiBMZ26LFZoqTPw77XzMqwj8cyrb58ybhE", - "ascii", - "", - "" - ], - [ - "5GfdBhXPK6GHSwSkPHYiYf3KVw5dYsCLUCsTkh2EnHhr16oi", - "asdfasdfasdf", - "http://example.org/image.png", - "asdf" - ], - [ - "5E7pc4DgSKWbFQNUQsEa6ffHPQQYnvWpRfRGFRthg2pRaBhp", - "billl2", - "", - "" - ], - [ - "5EygRdm7QJ32UA5Hyt18LEyH1QMX3jviRBvk16vzmJw2TjNp", - "emmaodia", - "", - "I'm a JavaScript Back-end (APIs) Engineer." - ], - [ - "5DwH4PtUdGcQYMqYpUpjzPmwgkakuDMJ1K4zzexd9sxMyej4", - "santos", - "https://images.app.goo.gl/vH6eTrNZtzQTQAFn7", - "Try Try try" - ], - [ - "5HZoz6XFiWwkJ5kqNSKAeZ52AXJ4t9Va9XgWp8FMop1H5yVL", - "leifeng", - "", - "" - ], - [ - "5G6i4AgpZRuad3cJM16hLEtGFabni6W9YGDdxoDL1r1DweQP", - "joyne", - "", - "" - ], - [ - "5Fu5XLEUvP7GAtb1pfYarDxRH4NcJfRWWNCDYA3uoip4BZ9m", - "bwhm0_2", - "", - "" - ], - [ - "5DnmGqe8qkNipYWgmnqsFDNayNo33dHtpEbjeymAMawfrdkD", - "samurai", - "", - "" - ], - [ - "5Fg79fdT6w51QdN5p7QQhiifbxtnRzGwXR24wsf2d3m5rD1M", - "enfipy", - "https://avatars2.githubusercontent.com/u/24860875", - "👋" - ], - [ - "5CtULUV5Qw5ydB4FUjkh3Lb2tJJf9qUSdahtLUhfcDDJ4D4v", - "john9261", - "", - "" - ], - [ - "5GwaCBvrGFpTSVdDJPTg1XaYvDaLcz6Dn2Brwf19ehDJpA6W", - "royalgarter", - "", - "" - ], - [ - "5EfiZ76aX4Y3pqW6VBwQmx9NzYVxui1Xeu3KnGW9b9YbUqCH", - "inabszentia", - "", - "" - ], - [ - "5Dihr72NbSTZmKp6JFfGUd5AboRbvqYkVGSAUshNB2Jg8sPh", - "anthony", - "", - "" - ], - [ - "5GyrFrzo8GE4YUTpVyjkJeSneXAFJW7aGWCrreDUvRdCoHp1", - "storage_fail_test", - "", - "" - ], - [ - "5DsomYCpUhWSZkFUPUtNg6iZe3M37gaqwhjDG6CdSTEN6imh", - "jjbutton", - "", - "" - ], - [ - "5FkVkzN712z8CN4oMPbAXqbfP5QzNquy3e1zbMDez6Z1Ea3m", - "bithodl", - "", - "" - ], - [ - "5CJzTaCp5fuqG7NdJQ6oUCwdmFHKichew8w4RZ3zFHM8qSe6", - "joystream", - "https://uploads-ssl.webflow.com/5d0395c96d24108d8e5850d1/5d0395c96d241044b5585131_registered.svg", - "Joystream Project Admins" - ], - [ - "5GS23g9sF4QGWSu3EG82GPHzomS9gbTS81pj3pCWgXgGSxv6", - "dawson", - "https://upload.cc/i1/2019/06/24/QuEl62.png", - "Polkadot." - ], - [ - "5Cxpq2xpCKzpDGRgx67j7HzLDTZdAT9J3CUhQXUKp9Q4jarQ", - "iceberg", - "", - "" - ], - [ - "5DScjX1t5LUFzJZ4vz9DuR1DAffPFYnYurkZUe65eRKnoZ9B", - "betuha", - "", - "" - ], - [ - "5GsdqdGXysPVQhWJh3Hxt23F9DvbDn5RrSeLQc3shApodhJd", - "betst", - "", - "" - ], - [ - "5H4vibfYZJrbHqRQydmaSD5dyHo9Y5KhYA8SXy11LsvxFVZy", - "betstorage", - "", - "" - ], - [ - "5GvsGwc58fSqCKgy9xeVJhk7M5dVRatDL9GHCfU7UKDbgZzk", - "btstor", - "", - "" - ], - [ - "5DYE3wP1VF9goXuwDAgTybitatNovYF2fnxdp3hHsMdhhvAv", - "acropolisstorage", - "", - "" - ], - [ - "5D9A659vCJoB36B5R8hUc6rVdRLy8pT22whYb1Aq76HhkCCY", - "godofknockers", - "https://i.imgur.com/Vqykyvl.jpg", - "Gamer who wants to make some monies." - ], - [ - "5GjMdeajoaC6cuxb48hAkrU2F9DJXeUmsLc5oxN8E71hFLdk", - "j_storage", - "", - "" - ], - [ - "5DFGMS4zGjJRtkM995d3TRWASSw6o47KmtFK5P8i8GNSn8HM", - "computt", - "", - "" - ], - [ - "5FtKBecxCRKdNQ1g4fv82hCkeVnyFKWZ1e6AYYCpMBLPns3c", - "storgeali", - "", - "" - ], - [ - "5HPbJNY5iBcYVUb8Qiw6ZkJFbNFK3QDMAvgF8Q3MPybzaW1b", - "stct1", - "https://gravatar.com/avatar/3c04e4d89494648ed4574862da1eb8ce?s=400&d=robohash&r=x", - "" - ], - [ - "5EeQsimvxSFYAvk19m8xKdjN4efLGKWsYxXTuJ5ukhvfHFEF", - "gusar", - "http://static4.depositphotos.com/1001003/351/i/950/depositphotos_3517957-stock-photo-3d-buddhism-symbol-wheel-of.jpg", - "" - ], - [ - "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd", - "moderator", - "https://uploads-ssl.webflow.com/5d0395c96d24108d8e5850d1/5d0395c96d241028ce58511b_Communication%20Moderator.svg", - "I am the sole [communication screener](https://www.joystream.org/roles#Communication-Moderator) for now." - ], - [ - "5HUoZqRpVwHeEMYLruqL93cJT47FdKgGTWVpwayoD4K6tgyK", - "duren", - "", - "" - ], - [ - "5F8ruq25knuup7jNYoJsTDUep5uKD3n6kooooeyusWJkwa3a", - "laurynas", - "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTV6Xgt_kvbKNkw2Mb74NXQAp0Xd9p1DqhMu4FpjoPZH6fUvbjx", - "A pioneer in JoyStream, tester." - ], - [ - "5D3kkfSTygkxDBjy71YUvHbrrv3gpZ8xhg3LfmrrHXsFU39t", - "scarf", - "", - "" - ], - [ - "5GBonukAQsiG7pr7UFNUYW3BYudduTKWokKCJPy1bMeu7ZhB", - "bedeho", - "https://messari.s3.amazonaws.com/images/agora-images/0%3Fe%3D1555545600%26v%3Dbeta%26t%3Dv4BRu5EH-z-7Pa9UGy1ri3ibFxu96uRhflHsJUoZcKQ", - "Jsgenesis CEO" - ], - [ - "5Dr8UZRdLrBRcikQR2LQSmNUEwttfgQKeHsVkkzpwoE63tx5", - "joystorage", - "", - "" - ], - [ - "5FGiEbhnGLaBXV3WVuvPCXjjVfJrV7zedwWhsfoAmjeKGSpn", - "gavofyork", - "http://gavwood.com/images/gav6.jpg", - "Gav." - ], - [ - "5FojUvZkLuTxkQ96Qgxes5FrA9ERHnvuM1EW2u2H9cVN14Cu", - "tbaut", - "https://avatars3.githubusercontent.com/u/33178835?s=460&v=4", - "" - ], - [ - "5CrszqoWaVc2v8ybnN1H6ffw1PziBBM8FGUcB3uMBEsPU9kG", - "tady386", - "", - "" - ], - [ - "5H64HbzJJrc68isVJYwyLiJwo1TQTuomwfejcHE8TfzhQD1u", - "marin", - "", - "" - ], - [ - "5Cb4M1bVtj7GEMuyofCkjMS3HXGa8DdbY5sBGikTxrJVchGd", - "marmarak", - "", - "" - ], - [ - "5DJdjyuRQytD1933L8Fn1gkwux9bi8P6YdqERZoYgpzjzHDH", - "enfipy_stash", - "", - "" - ], - [ - "5ETTzoYcBy8LoMrUGXPWwyc1j8vG3u1nddFiqip9298HBQTY", - "yangwao", - "", - "hypersignal.xyz" - ], - [ - "5HdAqcBjwsoi2wG8TrD12e4axqVcr4wvLaUUa2o4GzbXvBre", - "ffpremium", - "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", - "Let's join" - ], - [ - "5FZtYGpRMCN6FpPrHsz7NqGgqKPVsiVpZuYxJh1YXs8Z3BJv", - "prayut_chanocha", - "https://pbs.twimg.com/profile_images/1084270206938099712/qR9TdPQD.jpg", - "" - ], - [ - "5EVJNaHARYERarac7RkiQTakwjSTtt7BVyB9jBr3DbajFGMf", - "hkzero_1999st", - "https://keep.line.me/s/XnJquhXTXSEUToHsAgdi0I3D-AQg1HLV4wuDigCmYcI", - "Who Am I ?" - ], - [ - "5FsabyqtArsY2GX5sdYvg4ZFZLLdTq6upayjqWrLRS7hK5Ke", - "fsaby", - "", - "" - ], - [ - "5GQaNV1EdnC21cGiwv1pT8nThSEUebHDxRrAWRLdR9LApLum", - "ratuaisya", - "https://www.ufreegames.com/?utm=ads&gclid=EAIaIQobChMIrJq5zayQ4gIV2kl9Ch2VkAZOEAEYASAAEgI5MvD_BwE", - "Deep way" - ], - [ - "5FnsBRu9FcBBVYKhwdxY8SDaQw4XxcKtardXxpCbYwAiQNTA", - "maxibazar", - "", - "" - ], - [ - "5GZTctfXt5SzzwUSPpZu6Um16HnC9wNfgbK5HWpcJqbgUCs1", - "nunzio", - "", - "" - ], - [ - "5C6k3Ec2LJdViX4mpVigHPhsytEcYxne7VjV13YMN5amKNB9", - "aisha", - "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:", - "Love earn mone" - ], - [ - "5CmXLs7XWJvYCqPSEiQHKwRuwVyHPYF3S33FnHQ5tkA1S9MK", - "lilis", - "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", - "Test too" - ], - [ - "5EkgATaUSuprTPE9eGFc5N7eKMrGNPsRPXnLhRU9u8zSxk9t", - "natsuma", - "http://www.neutralbayhealth.com.au/wp-content/uploads/2014/08/Chiropractic.jpg", - "Natsuma JOY" - ], - [ - "5DspdxjBxghbqAebXedyqW7scBygx1ip1jX7Utby4rJVmC7H", - "being", - "", - "" - ], - [ - "5FVJHqe3rWRmGRTeEKULMMMmtQEcWVMmAwLgLSzLzbKX7Eng", - "bengmia", - "", - "" - ], - [ - "5HkCHTHAvCbkYLDrKz1GordVD4cE2o3tiLftN5cfQptuMs5x", - "gnar1", - "https://imgur.com/a/Kv17O2H", - "" - ], - [ - "5DAiCGnQ1X7FDgyx18AviJKxZM7vAudrwgTjrPcCxQi3wjfj", - "salaeones", - "", - "" - ], - [ - "5GcbTxhu29yb68wT9dqVBRtY1Mr7rB3HkFkAdQJgxyVgvcGP", - "titivoot_tan", - "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", - "" - ], - [ - "5Eb2gN4d6d67sgBFGKcoqEthWPDvVhcUgFGj8NPQDmFZWxJg", - "storage1", - "", - "" - ], - [ - "5HCoA8d7WZYQrmAnQS4sY2geQBmiSG2qVxgbCsu1vvHu14ZT", - "titivoot_tan1", - "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", - "" - ], - [ - "5DDKuMJACDGz7v173Pv7bbXxzbZMtbrkPPxuu7Rjyffm2QRx", - "node_network", - "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", - "Node.Network Monetize : https://www.facebook.com/Node.Network/" - ], - [ - "5Gk4WmQYU52q9cgxUGw8gn9tFzLj4V3RNcfXBwD7AVXiTSTx", - "peacenana", - "", - "" - ], - [ - "5H3YibPf9MKFTc1p42fKfUS4PMtahB6hfod7xQR4hEhGYaJA", - "quangteo3391", - "", - "" - ], - [ - "5EnMHmi4onoW8QDgDXHSQb9b9KfW7CsTPis2iP9KbvLNTP3g", - "crypto", - "https://cdn.ccn.com/wp-content/uploads/2018/09/bitcoin-cryptocurrency-exchange.jpg", - "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." - ], - [ - "5CeGo5j7hRvYi1NpthBzKL7TE738PUGRuUrsQzSSBY2t4sgk", - "romulus", - "", - "Hello, I am Romulus." - ], - [ - "5DQLn2TZT2PPEQtUEpXPuqVM8mrcRmyTasY1oba7xrCymLoY", - "joystreamfan", - "https://testnet.joystream.org/acropolis/pioneer/images/logo-joytream.svg", - "big fan of joystream" - ], - [ - "5GVqVyPUyQHuBpLn6pHPvtKNvohoY6ehoVfTdCFURMaJwdkz", - "_____", - "", - "Welcome to my page!" - ], - [ - "5F1qeRM7ejkipw45FuD5Jp7parqQtQLmeo6992ShrdrdVMPV", - "fluzzard", - "https://www.mariowiki.com/images/8/8f/FluzzardBird.png", - "“You flew! You flew! Even Fluzzard looks happy! Happy!”" - ], - [ - "5H1DtKZAgkXyFacLH9Cb9XGaSN8uZ3AzibdcZVABtLfBBs2p", - "axel90", - "https://upload.wikimedia.org/wikipedia/commons/e/e7/EddieMurphy1988.jpg", - "Blockchain researcher." - ], - [ - "5CWN7DyfaqrsmSVMnYCPPkjXxsbQWrVbTmWCZMCtQNNiRmUk", - "aaaaa", - "http://clipartmag.com/images/a-letter-pictures-12.jpg", - "" - ], - [ - "5E6Nx1bWXP834WG3cANEFsZN412A3xYaykR8xNVmXYkESVHG", - "skvye", - "", - "" - ], - [ - "5FffRxDHwB8RyRMgumLjeAa6NTjaVzHHFRzATBSyHvHzdc59", - "kimmy", - "", - "" - ], - [ - "5GZRsxF1wUUKQZ8KGLvTyu1MvpRYnH86cVJxVpgJTmLpnFPT", - "zeroed", - "", - "" - ], - [ - "5E4mBK7JqfXFxshqUnWAnj6xPnsNM4S3XfLZYH1bZkKG5S77", - "rddewan", - "", - "" - ], - [ - "5ETuBSbZL22DdquA75jtFe8HeSuKyn7u3KpHzWJBJwkyRi6h", - "minami", - "", - "Research Web3 and Machine Intelligence business models." - ], - [ - "5DeH9e3kZhiCxT6zDEk7LKuXPGiK8A3QbcW1zXkh78qgmJ2v", - "toomuchfomo", - "https://ibb.co/SfppHpZ", - "Here to stay" - ], - [ - "5E4fGovW5xwzBvdL2iq6xGc6xUmre97p52cNKLhNFCqJzYwx", - "node_network_storage_provider", - "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", - "Node.Network Storage Provider" - ], - [ - "5Cd2iKhz2Cu6WTyjWexa3nJKNfzFEEtRJaMu2nVT4y6pZbsW", - "gugx_13", - "", - "" - ], - [ - "5DXytFunQPPX6bhWD7GR2kEmQYxDhsEWFoUr2534Lzrn557m", - "node_network_storage_provider_key", - "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", - "Node.Network Storage Provider" - ], - [ - "5GMSWFLuNo45kMxZBALUJopjT2NYD6X7f5AhEggrBh3aA9tM", - "titivoot_tan8", - "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", - "" - ], - [ - "5G3gAq4orAQ2bBvywQcVFNiUHdbNigf7JEST2YJM6WVA2bjD", - "phoenix", - "", - "New to the blockchain world." - ], - [ - "5EEqQmeDsxQhNMqYijqTBx2yLkcyqd58TQLxSCycdefnhTxn", - "empty", - "", - "" - ], - [ - "5HqShJ8WLfZibvV4QAHEara49XTQr1apEobrmPPwm8L5dWTx", - "cyborg", - "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSyWiC6ll_05KGk-AL1hYzFodlWJtgwbEmq2LJyc2EHaim3M_A", - "" - ], - [ - "5CRrU6dMbcXNCbyhtthoXKLLRADPzvrBBV2Eaqp8T1xPmx49", - "warrior", - "", - "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." - ], - [ - "5HDvuzdSSPHaq7uZmJze5NzLWmoeD54Y1nqPL7dFXVhtwYu3", - "tonefreqhz", - "https://hosting.photobucket.com/albums/qq338/RogerGlyndwrLewis/chapmeme/ghist%20segiovuia.jpg", - "Web 3 developer and Publisher of Philosophy, Poetry, Literature and Journalism" - ], - [ - "5CDn5QPqSUyNcSTHTsPAEC2fxkFfRy5kFJiK7JbjCrYj7xhc", - "kekmex", - "", - "Hello everyone! I am a young crypto enthusiast from europe, and im looking to follow joystream and to contribute to the project." - ], - [ - "5GfoBraUT9FQ3sX6JWRBWGsbnwTZfY97XR2WktADHbyiarh4", - "noaccount", - "", - "welcome" - ], - [ - "5CE14xG6DHi1DcCNUeHR43UxefhFUkgP8qDL7SnBBSG1emzL", - "kongzhi", - "https://pbs.twimg.com/profile_images/378800000706976227/5d781dbcf446d751d82afe1f58048361_400x400.jpeg", - "" - ], - [ - "5D9PxeiAw43SMZaQAxNgRJ6nr4KXvWnfEare5EMLKE8uZ2sc", - "igorsouza", - "https://testnet.joystream.org/acropolis/pioneer/#/accounts", - "igor souza casado idade 23 anos " - ], - [ - "5H9CdSu7KZ1Gq8BSNESyGPWzvV9EKWXPVNtuPds5gTwaG1kw", - "nin19a", - "https://cdn.pixabay.com/photo/2013/07/21/13/00/rose-165819_1280.jpg", - "" - ], - [ - "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY", - "chevdor", - "", - "Chevdor" - ], - [ - "5CG4KgSVAYa4y7RZqVQMpvxFsoxkvpso5gPxXzP5nRey1gdu", - "dustan", - "https://www.facebook.com/photo.php?fbid=1444244385897762&set=a.1444244399231094&type=3&theater", - "I am a student . trying hard to earn some on inernet. " - ], - [ - "5HeqKdJHhhZQuwerQZLQ6UuSZn9qC2oJffReWQ83qypP1goZ", - "jaykpatel304", - "", - "Hey, I am new here. I am a blockchain developer and highly interested in it." - ], - [ - "5FktYqVHRWn3dW68Edt16yP3Y99sonTuT6qExTQuCECwWfXg", - "kekmex_storage", - "", - "" - ], - [ - "5H59BoJkTrXhhe2nqUwUj3dL23sduxzkJ9Nc3U7fsdVo8QZg", - "kekmex_storage_member", - "", - "" - ], - [ - "5FrF9xqBNwRk7KvTtNdftfVTacQ1z5RokYS3B5PuihuRbamh", - "rodrigograca31", - "", - "" - ], - [ - "5FUdGogcu6SKS5rCN5wNVJjqMswVrqXXgonrLwwkDhMSEbhK", - "keks_storage_member_key_new", - "", - "" - ], - [ - "5GNUGsD1QWcYDThoN79iWy8axFGfWund4jYxaewYGebbGk68", - "aahsiaap", - "", - "im newbie joystream tesnet " - ], - [ - "5CCzYScXPWRhiwn1BC2qTdYdry27t17Sow7HfLFyiBTa1dvE", - "habibrijik", - "", - "" - ], - [ - "5GRUk4q13G2MeRPhpvrZUjpvY581cuH8xpzqRLSvKeBprPBf", - "echaterapis", - "", - "" - ], - [ - "5FxWFDN8NaGqFgr6sfyEqQyaeJHckWap3rUawukt7ZMkch8a", - "lexitherapis", - "", - "" - ], - [ - "5H2wrjqnyZJf3nLjstpy1pdVGFHCTUoRRUFjvvmbwP7Cnwt6", - "rinduexst", - "", - "" - ], - [ - "5DEcN8w9iUhxVXbAgRGesZRJcEvZEdtV6NbTBQ7ktH78Sqae", - "rereyolan", - "", - "hi joystream" - ], - [ - "5EHyifUv9i5ZoBNeWjHGoKJ3iD5TyXafWMNFNNowVk9scvEi", - "mnemonic_hash_char", - "", - "" - ], - [ - "5HAq1PrLiB1jQQ9R7YDRvhuJtoetXWfvTKe9pq7jDS2q57Hc", - "bodgeup", - "", - "IT Freelancer looking for passive income and explorer new Tech." - ], - [ - "5DFYfuCMCHx2VGjvbN6S98sEvDGfEF9cHVCJbiejV51oW6dQ", - "testees", - "", - "" - ], - [ - "5DpDqfrDqGqEMEuu7kRoFmQtc9nzPBSGaQWVUUhm88Q1aoZN", - "mhillajeremy", - "https://files.gamebanana.com/img/ico/sprays/crono_pose.gif", - "" - ], - [ - "5Ffv2VrCch42yBiGWWUGME5ihyewKYvHKq3TBwHkPQXXFSfS", - "arno608rw", - "https://gravatar.com/avatar/32c7535449ae8a992501e283a5879e33?s=400&d=robohash&r=x", - "" - ], - [ - "5DGr5nH3HXBVFuSG85rxGLejSWHQtFwfwquY8wa1FYLBou9Y", - "ali878", - "", - "" - ], - [ - "5DvM8RLjzqVKTSUCYDJATNjzWBWbTEankbwPpeAJASYwE5LM", - "arnone", - "", - "" - ], - [ - "5FZw3cnkL5RvuERaB2BicpL1gqUv4fRZSNbyPj4cS389eM4E", - "keep_it_a_secret", - "", - "" - ], - [ - "5D9tREUZ8jTB2gJt1BYFeHGCYFFDPkx9MCg8Pa21iY5wmeAD", - "ahaa1000", - "", - "Come on,bch players" - ], - [ - "5D1AVX6VjfsunLZJHumk6WjkJUiM1g4tk9sTrz2f87XZk73t", - "alpser", - "", - "" - ], - [ - "5FdyqzHPZe71EzDU3pHKBWEPChbUitfoToUgrDtnWoojFtic", - "dltmoon1903", - "", - "" - ], - [ - "5Cwmqmr4sfJnWSehiQChNzb2MKVts6eSu1JSL3ZCFoVpuaMA", - "solomon", - "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", - "Lets Goooooooo!" - ], - [ - "5CVh5qEUPMQZqoBUuFpFCjuqe6tvUcLXnCbGLQnBbxhhkYaN", - "lisatai21", - "", - "" - ], - [ - "5C9TiKjVWRw36nS68V6rKie4GB8btwzFVdvZ2HPXnSJ8kQNo", - "kyukyu", - "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/88207535-9be7-42c6-8aab-8403e025b92d/d9m51f3-d9781858-411a-473b-a217-ce202bbba1e6.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzg4MjA3NTM1LTliZTctNDJjNi04YWFiLTg0MDNlMDI1YjkyZFwvZDltNTFmMy1kOTc4MTg1OC00MTFhLTQ3M2ItYTIxNy1jZTIwMmJiYmExZTYucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.gKzCIo7DowmKz8LewrPuqc2RawT5IG2fWkS3-W0L8i0", - "Eccentric" - ], - [ - "5DCuouTw4Fojn8eaQTZFkmLYiu1Qjwf5ZqzfpjpVkwFA5vWP", - "lebuissonvert", - "", - "" - ], - [ - "5DduqUGa6adAjCzctobEYCi7H95zVHmYJz4ABSxVDca2jnyc", - "kanye", - "", - "i like music" - ], - [ - "5ErJnL5y3ULbpY9ET72jH55463hUgtCizegxHM1z2UAU1QSS", - "testuser", - "", - "Test user tutorial video :)" - ], - [ - "5FhsNAweHdxpyYFPYrxTd7AUmcUF4BurLLFXod5shFnBnare", - "ninja", - "", - "" - ], - [ - "5HNmE3cF4jsLmH1ncMsFfjizzJ3rN3jqPZsDRrBny2c3ArFJ", - "alice31taky29", - "", - "" - ], - [ - "5Cu8m13XcUzQBWnx2MpW7vv3uqn7AULjfz2oHjnXemz3NRf4", - "amins", - "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:", - "Newbie and i wana try" - ], - [ - "5DmT8k6yKxvaEsqTQJbnMcmEN5jnHzexrNpAhgv6Av43ujCc", - "sameeraio", - "", - "" - ], - [ - "5FxqY3WjWEXN6NvoQKizX4zKbsDjWSjHhSAGybevsPyK4A7c", - "arvydas77", - "https://previews.123rf.com/images/lar01joka/lar01joka1712/lar01joka171200138/90908719-avatar-of-an-elephant.jpg", - "Freedom is the only form of bright future. Seeking it. " - ], - [ - "5FPS4Zwnw8wEkeHU1bAQvJdeNi6npFtZ4ZGn7u1jV5RT7TRZ", - "axl77", - "", - "Huge fan of Joy. " - ], - [ - "5HTnAnbS4pmaphWTbswEzKqiPooZ3nhaz3BXrZcK6xZqFScy", - "sameeraiostore", - "", - "" - ], - [ - "5CGU3jcszVXmVzfYadnbTV7UX8WGFCdhK4747H6nQS9DkANB", - "kuzo998", - "https://trinitymargate.co.uk/centre/wp-content/uploads/2018/10/blank-profile-head-hi.png", - "Looking For a way to enjoy and learn ! , its boring if not to " - ], - [ - "5GaLH57Uc8Ukcu8K5LyV74cFdT5QBrs4i2fv21cH28zQ1KSn", - "gordon_freeman", - "", - "" - ], - [ - "5Hhigra11Ysa6eToMnq7u1zNdt7jpkDay96GQnEzd51sHSAy", - "beesus", - "", - "freedom! and plants :)" - ], - [ - "5EU1xYaDfS3soKfsC9KYCFke27MNe72P3ppRmbhL4KPGXqYt", - "emcbandit", - "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", - "Hello!" - ], - [ - "5Em2snJcaFUZEfNTd5ptiz8UGMR4afAyuHjkWgTChz7iuCis", - "trollzor", - "", - "" - ], - [ - "5DyadsUvmq8R4gVNaBvmxbTYMSKzY6C7GDu2Cbe8myoc2d25", - "smartone", - "", - "" - ], - [ - "5HAqzEbGjqAogGkB79LAyaykGrVBQzcNbbprXXDLQXEBJ6Hu", - "mari987", - "", - ":)" - ], - [ - "5Gt22BMiRRpCMYmGH7ZPiqvu75dCxRKQi9isTQaP6hQe3rsN", - "st342", - "", - "" - ], - [ - "5G9YYKhvKfQALRaQxcr7xNCnYeHrjtvPzBsAaQNrquxEbPh5", - "bowene", - "", - "" - ], - [ - "5HCm7oxxHz31nLaBa3AaquiUh4YZpVMVPXc8394knQisuuY7", - "kiwi7", - "", - "" - ], - [ - "5ECGdL57kUvZp2wEV2oFCDhHgR2xVkVj94J8QYSHELEMArZ8", - "yourheropaul", - "https://yhp.io/img/paul.svg", - "" - ], - [ - "5DM86nVT4KUjyYoKRxMgHRVzoaxtD7TwBQBH51fCd369sUpY", - "bradt", - "", - "" - ], - [ - "5DfUdK9eDYieRiduVteTiMmvkESZP5e9HY7QGN7KJkKktfbV", - "leverett", - "", - "" - ], - [ - "5Ctiz9ob2cwyNKpW19Z8Lupva3n2TiypP6wNWE96uWoYhyJU", - "nonoenee", - "", - "try to be luck" - ], - [ - "5FYkKPu31Da34u98dqmLLCbvN2nvEYrgA8nrAijzfPTEwDzt", - "almohajer", - "", - "" - ], - [ - "5ExX4ukX34r776hChUdEyWDgedGn2tQYJ12vR7HknBaJzEWi", - "cupton668", - "", - "" - ], - [ - "5Dz3Q57rSWC7oz9pqCNvSGW2GoqgHT1ALhP317Js567Qcm6V", - "fae811", - "", - "" - ], - [ - "5D2sy535bCjWP2xdsq99Zi8V9AXmxAQATAYghF8UAi8fUPr7", - "hotels", - "", - "" - ], - [ - "5EqNE3qoEU9pFgD4Lxi6JmygSzU2WSNuUsJCW8t7iLFYwRRj", - "roversl", - "", - "" - ], - [ - "5C693F9TvcWbgX6yL16uiaHZViSdH56NeAaPJsx35gNuTTzL", - "magickwar", - "", - "lets play lol" - ], - [ - "5E1NMAJCN1iVkDVx8AyHYS7bAy1RHYeCGibunENAc5FYPumy", - "ulrich0h", - "", - "" - ], - [ - "5CpLsg7C8GiJoooZxghV1grHzuoQTMwoYu6cMJmwY4eRumHT", - "plerrr", - "", - "love joy stream" - ], - [ - "5DMzgbnt1DxhDbqVsApXERn6H6kjbVmSszZoKv3jZuZXsgZH", - "iced_tea", - "", - "" - ], - [ - "5FcGZZriqZAyLo4E1AAaSVVMs5pUpkRgErP6V9CexXEL5959", - "kekmexs_voting_key", - "", - "This is kek-mex's voting key for council votes." - ], - [ - "5FbfGSJwhF86PpELtSR1M72Qk1WnRTqWCtYv5xpeUga3heiS", - "muibast", - "https://i.imgur.com/gLSRbRgh.jpg", - "" - ], - [ - "5Heho3UpURG9SkSegA2Nq5v1L9yb7mNreaq6wzocUdmzP5F9", - "arish", - "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", - "Wana try storege for income" - ], - [ - "5Ebbqp937kZUzZHvrUf41kEhbuZnYmRm4NqPj72NpvHfWgsQ", - "kemau", - "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:", - "monero" - ] - ] - }, - "forum": { - "categoryById": [ - [ - 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": 1010118, - "time": 1561400376 - }, - "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": "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": 1010132, - "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": 1010212, - "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": 1021321, - "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": 1021334, - "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": 1021344, - "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": 1021369, - "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": 1190821, - "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": 1281336, - "time": 1563034584 - }, - "deleted": false, - "archived": false, - "num_direct_subcategories": 0, - "num_direct_unmoderated_threads": 0, - "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": 2245480, - "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": 2254128, - "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" - } - ] - ], - "nextCategoryId": 12, - "threadById": [ - [ - 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": 1011134, - "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": 1011254, - "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": 1011265, - "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": 1021294, - "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": 1028071, - "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": 1035129, - "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": 1061687, - "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": 1136406, - "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": 1281409, - "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": 1281297, - "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": 1281973, - "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": 2245487, - "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": 2245491, - "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": 2245497, - "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": 2245501, - "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": 2245508, - "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": 2254069, - "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": 2254074, - "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": 2254079, - "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": 2254102, - "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": 2254108, - "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": 2254152, - "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": 2254156, - "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": 2254207, - "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": 2254211, - "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": 2254214, - "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": 2254224, - "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": 2254238, - "time": 1568900484 - }, - "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" - } - ] - ], - "nextThreadId": 28, - "postById": [ - [ - 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": 1011134, - "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": 1011254, - "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": 1011265, - "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": 1017392, - "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": 1018546, - "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": 1019406, - "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": 1021294, - "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": 1028071, - "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": 1030883, - "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": 1035129, - "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": 1061687, - "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": 1134118, - "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": 1136380, - "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": 1136406, - "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": [ - { - "expired_at": { - "block": 1150700, - "time": 1562247822 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150719, - "time": 1562247936 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150767, - "time": 1562248224 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150776, - "time": 1562248278 - }, - "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 - ] - }, - { - "expired_at": { - "block": 1150807, - "time": 1562248464 - }, - "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 - ] - } - ], - "created_at": { - "block": 1150684, - "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": 1218378, - "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": 1224663, - "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": 1271763, - "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": [ - { - "expired_at": { - "block": 1279770, - "time": 1563025104 - }, - "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, - 116, - 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 - ] - } - ], - "created_at": { - "block": 1271962, - "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": [ - { - "expired_at": { - "block": 1271997, - "time": 1562978346 - }, - "text": [ - 87, - 104, - 97, - 116, - 32, - 105, - 110, - 32, - 112, - 97, - 114, - 116, - 105, - 99, - 117, - 108, - 97, - 114, - 32, - 97, - 116, - 116, - 114, - 97, - 99, - 116, - 101, - 100, - 32, - 121, - 111, - 117, - 32, - 116, - 111, - 32, - 116, - 104, - 101, - 32, - 105, - 100, - 101, - 97, - 32, - 111, - 102, - 32, - 97, - 32, - 117, - 115, - 101, - 114, - 32, - 103, - 111, - 118, - 101, - 114, - 110, - 101, - 100, - 32, - 97, - 110, - 100, - 32, - 111, - 112, - 101, - 114, - 97, - 116, - 101, - 100, - 32, - 118, - 105, - 100, - 101, - 111, - 32, - 112, - 108, - 97, - 116, - 102, - 111, - 114, - 109, - 63 - ] - }, - { - "expired_at": { - "block": 1279806, - "time": 1563025320 - }, - "text": [ - 72, - 105, - 32, - 116, - 104, - 101, - 114, - 101, - 33, - 32, - 87, - 104, - 97, - 116, - 32, - 105, - 110, - 32, - 112, - 97, - 114, - 116, - 105, - 99, - 117, - 108, - 97, - 114, - 32, - 97, - 116, - 116, - 114, - 97, - 99, - 116, - 101, - 100, - 32, - 121, - 111, - 117, - 32, - 116, - 111, - 32, - 116, - 104, - 101, - 32, - 105, - 100, - 101, - 97, - 32, - 111, - 102, - 32, - 97, - 32, - 117, - 115, - 101, - 114, - 32, - 103, - 111, - 118, - 101, - 114, - 110, - 101, - 100, - 32, - 97, - 110, - 100, - 32, - 111, - 112, - 101, - 114, - 97, - 116, - 101, - 100, - 32, - 118, - 105, - 100, - 101, - 111, - 32, - 112, - 108, - 97, - 116, - 102, - 111, - 114, - 109, - 63 - ] - }, - { - "expired_at": { - "block": 1324500, - "time": 1563294780 - }, - "text": [ - 72, - 105, - 32, - 116, - 104, - 101, - 114, - 101, - 33, - 32, - 87, - 104, - 97, - 116, - 32, - 105, - 110, - 32, - 112, - 97, - 114, - 116, - 105, - 99, - 117, - 108, - 97, - 114, - 32, - 97, - 116, - 116, - 114, - 97, - 99, - 116, - 101, - 100, - 32, - 121, - 111, - 117, - 32, - 116, - 111, - 32, - 116, - 104, - 101, - 32, - 105, - 100, - 101, - 97, - 32, - 111, - 102, - 32, - 97, - 32, - 117, - 115, - 101, - 114, - 32, - 103, - 111, - 118, - 101, - 114, - 110, - 101, - 100, - 32, - 97, - 110, - 100, - 32, - 111, - 112, - 101, - 114, - 97, - 116, - 101, - 100, - 32, - 109, - 101, - 100, - 105, - 97, - 32, - 112, - 108, - 97, - 116, - 102, - 111, - 114, - 109, - 63 - ] - } - ], - "created_at": { - "block": 1271994, - "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": 1279782, - "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": 1281297, - "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": 1281973, - "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": [ - { - "expired_at": { - "block": 1306505, - "time": 1563186186 - }, - "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 - ] - } - ], - "created_at": { - "block": 1306501, - "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": 1309887, - "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": 1310797, - "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": 2134593, - "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": 2187819, - "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": [ - { - "expired_at": { - "block": 2270455, - "time": 1568998128 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270550, - "time": 1568998698 - }, - "text": [ - 35, - 32, - 79, - 118, - 101, - 114, - 118, - 105, - 101, - 119, - 10, - 84, - 104, - 105, - 115, - 32, - 116, - 104, - 114, - 101, - 97, - 100, - 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 - ] - } - ], - "created_at": { - "block": 2245487, - "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": [ - { - "expired_at": { - "block": 2270386, - "time": 1568997714 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270416, - "time": 1568997894 - }, - "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, - 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 - ] - } - ], - "created_at": { - "block": 2245491, - "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": [ - { - "expired_at": { - "block": 2270646, - "time": 1568999274 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270649, - "time": 1568999292 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2245497, - "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": [ - { - "expired_at": { - "block": 2270725, - "time": 1568999748 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2270732, - "time": 1568999790 - }, - "text": [ - 35, - 35, - 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, - 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, - 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, - 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, - 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, - 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, - 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 - ] - }, - { - "expired_at": { - "block": 2270743, - "time": 1568999856 - }, - "text": [ - 35, - 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, - 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, - 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, - 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, - 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, - 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, - 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 - ] - } - ], - "created_at": { - "block": 2245501, - "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": [ - { - "expired_at": { - "block": 2270776, - "time": 1569000054 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2245508, - "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": [ - { - "expired_at": { - "block": 2285041, - "time": 1569085848 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254069, - "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": [ - { - "expired_at": { - "block": 2300521, - "time": 1569179088 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254074, - "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": [ - { - "expired_at": { - "block": 2300522, - "time": 1569179094 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254079, - "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": [ - { - "expired_at": { - "block": 2300646, - "time": 1569179838 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254102, - "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": [ - { - "expired_at": { - "block": 2300717, - "time": 1569180264 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - }, - { - "expired_at": { - "block": 2300720, - "time": 1569180282 - }, - "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, - 10 - ] - } - ], - "created_at": { - "block": 2254108, - "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": [ - { - "expired_at": { - "block": 2284752, - "time": 1569084114 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254152, - "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": [ - { - "expired_at": { - "block": 2284863, - "time": 1569084780 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254156, - "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": [ - { - "expired_at": { - "block": 2284917, - "time": 1569085104 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254207, - "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": [ - { - "expired_at": { - "block": 2284935, - "time": 1569085212 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254211, - "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": [ - { - "expired_at": { - "block": 2284980, - "time": 1569085482 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254214, - "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": [ - { - "expired_at": { - "block": 2285002, - "time": 1569085614 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254224, - "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": [ - { - "expired_at": { - "block": 2285021, - "time": 1569085728 - }, - "text": [ - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120, - 120 - ] - } - ], - "created_at": { - "block": 2254238, - "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": [ - { - "expired_at": { - "block": 2270412, - "time": 1568997870 - }, - "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, - 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 - ] - } - ], - "created_at": { - "block": 2270391, - "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": [ - { - "expired_at": { - "block": 2270402, - "time": 1568997810 - }, - "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, - 49, - 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 - ] - } - ], - "created_at": { - "block": 2270395, - "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": 2270405, - "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": [ - { - "expired_at": { - "block": 2270579, - "time": 1568998872 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2270429, - "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": 2270458, - "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": [ - { - "expired_at": { - "block": 2270468, - "time": 1568998206 - }, - "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, - 10, - 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 - ] - } - ], - "created_at": { - "block": 2270463, - "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": 2270470, - "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": 2270475, - "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": 2270478, - "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": 2270484, - "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": [ - { - "expired_at": { - "block": 2270492, - "time": 1568998350 - }, - "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, - 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, - 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, - 91, - 67, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 32, - 66, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 93, - 40, - 35, - 99, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 45, - 98, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 41, - 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 - ] - } - ], - "created_at": { - "block": 2270486, - "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": [ - { - "expired_at": { - "block": 2270500, - "time": 1568998398 - }, - "text": [ - 45, - 32, - 42, - 42, - 66, - 111, - 117, - 110, - 116, - 121, - 42, - 42, - 10, - 32, - 32, - 45, - 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, - 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, - 91, - 67, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 32, - 66, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 93, - 40, - 35, - 99, - 111, - 110, - 99, - 108, - 117, - 100, - 101, - 100, - 45, - 98, - 111, - 117, - 110, - 116, - 105, - 101, - 115, - 41, - 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 - ] - } - ], - "created_at": { - "block": 2270496, - "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": 2270515, - "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": 2270518, - "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": [ - { - "expired_at": { - "block": 2270538, - "time": 1568998626 - }, - "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, - 105, - 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 - ] - } - ], - "created_at": { - "block": 2270523, - "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": 2270525, - "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": [ - { - "expired_at": { - "block": 2270541, - "time": 1568998644 - }, - "text": [ - 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 - ] - }, - { - "expired_at": { - "block": 2270545, - "time": 1568998668 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2270530, - "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": 2270572, - "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": 2270655, - "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": 2270660, - "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": 2270663, - "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": 2270666, - "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": 2270669, - "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": 2270674, - "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": 2270679, - "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": 2270707, - "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": 2270739, - "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": 2270779, - "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": 2270784, - "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": 2270787, - "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": 2270794, - "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": 2270802, - "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": 2284756, - "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": 2284759, - "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": 2284762, - "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": 2284764, - "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": 2284766, - "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": 2284768, - "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": 2284771, - "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": 2284774, - "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": 2284782, - "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": 2284793, - "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": 2284796, - "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": 2284800, - "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": 2284803, - "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": 2284807, - "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": 2284811, - "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": 2284813, - "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": 2284819, - "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": 2284822, - "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": 2284827, - "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": 2284831, - "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": 2284841, - "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": 2284848, - "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": 2284853, - "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": 2284857, - "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": 2284865, - "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": 2284868, - "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": 2284871, - "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": 2284877, - "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": 2284881, - "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": 2284883, - "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": 2284890, - "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": 2284894, - "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": 2284919, - "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": 2284921, - "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": [ - { - "expired_at": { - "block": 2284939, - "time": 1569085236 - }, - "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 - ] - } - ], - "created_at": { - "block": 2284932, - "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": [ - { - "expired_at": { - "block": 2284955, - "time": 1569085332 - }, - "text": [ - 35, - 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 - ] - } - ], - "created_at": { - "block": 2284947, - "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": 2284951, - "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": 2284957, - "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": 2284959, - "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": 2284961, - "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": 2284963, - "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": [ - { - "expired_at": { - "block": 2285012, - "time": 1569085674 - }, - "text": [ - 35, - 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 - ] - } - ], - "created_at": { - "block": 2285008, - "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": 2285010, - "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": 2285044, - "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": 2285046, - "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": 2285049, - "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": 2285051, - "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": [ - { - "expired_at": { - "block": 2285061, - "time": 1569085968 - }, - "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 - ] - } - ], - "created_at": { - "block": 2285053, - "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": 2285080, - "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": 2285100, - "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": 2285102, - "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": 2285110, - "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": 2285112, - "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": 2285116, - "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": 2285120, - "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": 2285123, - "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": 2285127, - "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": 2300526, - "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": 2300527, - "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": 2300532, - "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": 2300534, - "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": 2300536, - "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": 2300539, - "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": 2300547, - "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": 2300555, - "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": [ - { - "expired_at": { - "block": 2300604, - "time": 1569179586 - }, - "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, - 111, - 32, - 91, - 104, - 101, - 114, - 101, - 93, - 40, - 35, - 103, - 101, - 110, - 101, - 114, - 97, - 116, - 101, - 45, - 121, - 111, - 117, - 114, - 45, - 107, - 101, - 121, - 115, - 41, - 32, - 116, - 111, - 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, - 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 - ] - } - ], - "created_at": { - "block": 2300557, - "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": 2300561, - "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": 2300563, - "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": 2300566, - "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": 2300568, - "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": 2300571, - "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": 2300578, - "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": 2300583, - "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": 2300585, - "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": 2300588, - "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": 2300590, - "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": 2300593, - "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": 2300596, - "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": 2300599, - "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": 2300610, - "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": 2300612, - "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": 2300615, - "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": 2300617, - "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": 2300619, - "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": 2300653, - "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": 2300655, - "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": 2300657, - "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": 2300658, - "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": 2300663, - "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": [ - { - "expired_at": { - "block": 2300673, - "time": 1569180000 - }, - "text": [ - 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 - ] - } - ], - "created_at": { - "block": 2300665, - "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": 2300677, - "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": 2300681, - "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": 2300686, - "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": 2300688, - "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": 2300692, - "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": 2300697, - "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": 2300699, - "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": 2300722, - "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": [ - { - "expired_at": { - "block": 2300736, - "time": 1569180378 - }, - "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, - 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 - ] - } - ], - "created_at": { - "block": 2300726, - "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": [ - { - "expired_at": { - "block": 2300743, - "time": 1569180420 - }, - "text": [ - 45, - 45, - 45, - 10, - 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, - 79, - 114, - 58, - 10, - 10, - 45, - 45, - 45 - ] - } - ], - "created_at": { - "block": 2300731, - "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": 2300738, - "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": [ - { - "expired_at": { - "block": 2300754, - "time": 1569180486 - }, - "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, - 45, - 45, - 45, - 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 - ] - } - ], - "created_at": { - "block": 2300745, - "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": 2300748, - "time": 1569180450 - }, - "author_id": "5CgLHZp1KMVCMhGGgJC8VRMagCSon3n5JAKRbtAMeZNdbdNd" - } - ] - ], - "nextPostId": 181, - "forumSudo": "5C5Emc3PvsdxQqFiNiNpLVAZTbFzqMaYPS2o9J846cnaSxeb", - "categoryTitleConstraint": { - "min": 10, - "max_min_diff": 90 - }, - "categoryDescriptionConstraint": { - "min": 10, - "max_min_diff": 490 - }, - "threadTitleConstraint": { - "min": 10, - "max_min_diff": 90 - }, - "postTextConstraint": { - "min": 10, - "max_min_diff": 990 - }, - "threadModerationRationaleConstraint": { - "min": 10, - "max_min_diff": 290 - }, - "postModerationRationaleConstraint": { - "min": 10, - "max_min_diff": 290 - } - }, - "actors": { - "requestLifeTime": 300, - "enableStorageRole": true - }, - "dataObjectTypeRegistry": { - "firstDataObjectTypeId": 1 - }, - "dataObjectStorageRegistry": { - "firstRelationshipId": 1 - }, - "versionedStore": { - "classById": [], - "entityById": [], - "nextClassId": 1, - "nextEntityId": 1, - "propertyNameConstraint": { - "min": 1, - "max_min_diff": 99 - }, - "propertyDescriptionConstraint": { - "min": 1, - "max_min_diff": 999 - }, - "classNameConstraint": { - "min": 1, - "max_min_diff": 99 - }, - "classDescriptionConstraint": { - "min": 1, - "max_min_diff": 999 - } - }, - "contentWg": { - "curatorOpeningById": [], - "nextCuratorOpeningId": 0, - "curatorApplicationById": [], - "nextCuratorApplicationId": 0, - "channelById": [], - "nextChannelId": 1, - "channelIdByHandle": [], - "curatorById": [], - "nextCuratorId": 0, - "principalById": [], - "nextPrincipalId": 0, - "channelCreationEnabled": true, - "unstakerByStakeId": [], - "channelHandleConstraint": { - "min": 5, - "max_min_diff": 20 - }, - "channelTitleConstraint": { - "min": 5, - "max_min_diff": 1024 - }, - "channelDescriptionConstraint": { - "min": 1, - "max_min_diff": 1024 - }, - "channelAvatarConstraint": { - "min": 5, - "max_min_diff": 1024 - }, - "channelBannerConstraint": { - "min": 5, - "max_min_diff": 1024 - }, - "openingHumanReadableText": { - "min": 1, - "max_min_diff": 2048 - }, - "curatorApplicationHumanReadableText": { - "min": 1, - "max_min_diff": 2048 - }, - "curatorExitRationaleText": { - "min": 1, - "max_min_diff": 2048 - }, - "mintCapacity": 100000 - } - } - } -} \ No newline at end of file diff --git a/src/chain_spec.rs b/src/chain_spec.rs index 5013f18f9c..5bc2015558 100644 --- a/src/chain_spec.rs +++ b/src/chain_spec.rs @@ -14,16 +14,16 @@ // You should have received a copy of the GNU General Public License // along with Joystream node. If not, see . -use hex_literal::hex; use node_runtime::{ - versioned_store::InputValidationLengthConstraint as VsInputValidation, AccountId, ActorsConfig, + versioned_store::InputValidationLengthConstraint as VsInputValidation, ActorsConfig, AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, ContentWorkingGroupConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, - DataObjectTypeRegistryConfig, GenesisConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, - MembersConfig, Perbill, ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, - StakingConfig, SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, + DataObjectTypeRegistryConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, + Perbill, ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, StakingConfig, + SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, }; -use primitives::{crypto::UncheckedInto, sr25519, Pair, Public}; +pub use node_runtime::{AccountId, GenesisConfig}; +use primitives::{sr25519, Pair, Public}; use runtime_primitives::traits::{IdentifyAccount, Verify}; use babe_primitives::AuthorityId as BabeId; @@ -31,13 +31,9 @@ use grandpa_primitives::AuthorityId as GrandpaId; use im_online::sr25519::AuthorityId as ImOnlineId; use serde_json as json; use substrate_service; -use substrate_telemetry::TelemetryEndpoints; type AccountPublic = ::Signer; -// Note this is the URL for the telemetry server -const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/"; - /// Specialized `ChainSpec`. This is a specialization of the general Substrate ChainSpec type. pub type ChainSpec = substrate_service::ChainSpec; @@ -50,10 +46,6 @@ pub enum Alternative { Development, /// Whatever the current runtime is, with simple Alice/Bob auths. LocalTestnet, - /// Staging testnet - StagingTestnet, - /// Testnet - the current live testnet - LiveTestnet, } /// Helper function to generate a crypto pair from seed @@ -149,8 +141,6 @@ impl Alternative { Some(chain_spec_properties()), None, ), - Alternative::StagingTestnet => staging_testnet_config(), - Alternative::LiveTestnet => live_testnet_config()?, }) } @@ -158,9 +148,6 @@ impl Alternative { match s { "dev" => Some(Alternative::Development), "local" => Some(Alternative::LocalTestnet), - "staging" => Some(Alternative::StagingTestnet), - "rome-experimental" => Some(Alternative::LiveTestnet), - // "" | "tesnet" => Some(Alternative::LiveTestnet), _ => None, } } @@ -170,11 +157,6 @@ fn new_vs_validation(min: u16, max_min_diff: u16) -> VsInputValidation { return VsInputValidation { min, max_min_diff }; } -/// Joystream LiveTestnet generator -pub fn live_testnet_config() -> Result { - ChainSpec::from_json_bytes(&include_bytes!("../res/rome-experimental.json")[..]) -} - pub fn chain_spec_properties() -> json::map::Map { let mut properties: json::map::Map = json::map::Map::new(); properties.insert( @@ -188,41 +170,11 @@ pub fn chain_spec_properties() -> json::map::Map { properties } -/// Staging testnet config -pub fn staging_testnet_config() -> ChainSpec { - let boot_nodes = vec![ - String::from("/dns4/rome-reckless.joystream.org/tcp/30333/p2p/QmaTTdEF6YVCtynSjsXmGPSGcEesAahoZ8pmcCmmBwSE7S") - ]; - - ChainSpec::from_genesis( - "Joystream Rome Reckless Testnet", - "joy_rome_reckless_N", - staging_testnet_config_genesis, - boot_nodes, - Some(TelemetryEndpoints::new(vec![( - STAGING_TELEMETRY_URL.to_string(), - 0, - )])), - // protocol_id - Some(&*"/joy/rome/reckless/N"), - // Properties - Some(chain_spec_properties()), - // Extensions - None, - ) -} - -fn staging_testnet_config_genesis() -> GenesisConfig { - let initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)> = vec![( - hex!["4430a31121fc174b1c361b365580c54ef393813171e59542f5d2ce3d8b171a2d"].into(), // stash - hex!["58a743f1bab2f472fb99af98b6591e23a56fd84bc9c2a62037ed8867caae7c21"].into(), // controller - hex!["af5286fb1e403afd44d92ae3fb0b371a0f4f8faf3e6b2ff50ea91fb426b0015f"].unchecked_into(), // session - grandpa - hex!["d69529ed1549644977cec8dc027e71e1e2ae7aab99833a7f7dc08677a8d36307"].unchecked_into(), // session - babe - hex!["56bfd27715ce6c76e4d884c31374b9928391e461727ffaf27b94b6ce48570d39"].unchecked_into(), // session - im-online - )]; - let endowed_accounts = - vec![hex!["00680fb81473784017291ef0afd968b986966daa7842d5b5063c8427c2b62577"].into()]; - +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; @@ -267,7 +219,7 @@ fn staging_testnet_config_genesis() -> GenesisConfig { ..Default::default() }), sudo: Some(SudoConfig { - key: endowed_accounts[0].clone(), + key: root_key.clone(), }), babe: Some(BabeConfig { authorities: vec![], @@ -355,156 +307,3 @@ fn staging_testnet_config_genesis() -> GenesisConfig { }), } } - -/// Helper function to create GenesisConfig for testing -pub fn testnet_genesis( - initial_authorities: Vec<(AccountId, AccountId, GrandpaId, BabeId, ImOnlineId)>, - root_key: AccountId, - endowed_accounts: Vec, -) -> GenesisConfig { - const STASH: Balance = 2000; - const ENDOWMENT: Balance = 10_000_000; - - // Static members - let initial_members = crate::members_config::initial_members(); - - // let mut additional_members = vec![ - // // Make Root a member - // ( - // root_key.clone(), - // String::from("system"), - // String::from("http://joystream.org/avatar.png"), - // String::from("I am root!"), - // ), - // ]; - - // // Additional members - // initial_members.append(&mut additional_members); - - GenesisConfig { - //substrate modules - system: Some(SystemConfig { - code: WASM_BINARY.to_vec(), - changes_trie_config: Default::default(), - }), - balances: Some(BalancesConfig { - balances: endowed_accounts - .iter() - .map(|k| (k.clone(), ENDOWMENT)) - .collect(), - vesting: vec![], - }), - indices: Some(IndicesConfig { ids: vec![] }), - staking: Some(StakingConfig { - current_era: 0, - minimum_validator_count: 1, - validator_count: 2, - 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() - }), - session: Some(SessionConfig { - keys: initial_authorities - .iter() - .map(|x| { - ( - x.0.clone(), - session_keys(x.2.clone(), x.3.clone(), x.4.clone()), - ) - }) - .collect::>(), - }), - 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![], - }), - // joystream modules - council: Some(CouncilConfig { - active_council: vec![], - term_ends_at: 1, - }), - election: Some(CouncilElectionConfig { - auto_start: true, - announcing_period: 50, - voting_period: 50, - revealing_period: 50, - council_size: 2, - candidacy_limit: 25, - min_council_stake: 100, - new_term_duration: 1000, - min_voting_stake: 10, - }), - proposals: Some(ProposalsConfig { - approval_quorum: 66, - min_stake: 100, - cancellation_fee: 5, - rejection_fee: 10, - voting_period: 100, - name_max_len: 100, - description_max_len: 10_000, - wasm_code_max_len: 2_000_000, - }), - members: Some(MembersConfig { - default_paid_membership_fee: 100u128, - members: initial_members, - }), - forum: Some(crate::forum_config::from_serialized::create( - root_key.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), - }), - } -} From c58d26a2fd2620666924b7ba4b6eb4edd1223d2a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 16 Mar 2020 19:47:30 +0400 Subject: [PATCH 309/350] update README --- README.md | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index d0012a8f5d..53b655d486 100644 --- a/README.md +++ b/README.md @@ -2,26 +2,31 @@ # Joystream Full Node -Joystream node built on top of [Substrate](https://github.com/paritytech/substrate). +Joystream node built with [Substrate](https://github.com/paritytech/substrate). + +Follow the instructions below to download the software or build it from source. + +For setting up a full node and valiador review the [advanced guide from the helpdesk](https://github.com/Joystream/helpdesk/tree/master/roles/validators). -Follow the instructions below to download the software or build it from source. Further instructions for windows and mac can be found [here.](https://blog.joystream.org/sparta/) -Linux should be similar to mac. ## Binary releases -Downloads are available in [releases](https://github.com/Joystream/substrate-node-joystream/releases). + +The latest pre build binaries can be downloads from the [releases](https://github.com/Joystream/substrate-node-joystream/releases) page. + ## Building from source ### Initial setup -If you want to build from source you will need the Rust [toolchain](https://rustup.rs/), openssl and llvm/libclang. You can install the required dependencies with: +If you want to build from source you will need the [Rust toolchain](https://rustup.rs/), openssl and llvm/libclang. You can install the required dependencies with: ```bash git clone https://github.com/Joystream/substrate-node-joystream.git cd substrate-node-joystream/ +git checkout v2.1.2 ./setup.sh ``` -If you prefer to use docker see [building with docker](Docker). +If you are familiar with docker see the [building with docker section](#Docker). ### Building @@ -29,16 +34,16 @@ If you prefer to use docker see [building with docker](Docker). cargo build --release ``` -### Running a public node +### Running a public node on the Rome testnet + +Run the node and connect to the public testnet. -Run the node and connect to the public testnet ```bash -cargo run --release --chain chain-file.json +cargo run --release --chain ./rome-tesnet.json ``` -The chain file for the required testnet is also avilable on the [releases](https://github.com/Joystream/substrate-node-joystream/releases) page. +The `rome-testnet.json` chain file can be ontained from the [release page](https://github.com/Joystream/substrate-node-joystream/releases/tag/v2.1.2) -The current public testnet is Rome. So you would download the rome-testnet.json file to use. ### 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. @@ -50,7 +55,7 @@ cargo install --path ./ Now you can run ```bash -joystream-node --chain chain-file.json +joystream-node --chain rome-testnet.json ``` ## Development @@ -92,8 +97,6 @@ docker pull joystream/node Create a working directory to store the node's data and where you will need to place the chain file. -Download the [Rome Testnet chain file](https://github.com/Joystream/substrate-node-joystream/releases/download/v2.1.2/rome-tesnet.json) - ```bash mkdir ${HOME}/joystream-node-data/ From 37943c39927025ba689ee3a308b30f73a6e5fe11 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 16 Mar 2020 21:05:40 +0400 Subject: [PATCH 310/350] readme: add missing `--` after cardo run --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 53b655d486..d8d57b83e1 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ cargo build --release Run the node and connect to the public testnet. ```bash -cargo run --release --chain ./rome-tesnet.json +cargo run --release -- --chain ./rome-tesnet.json ``` The `rome-testnet.json` chain file can be ontained from the [release page](https://github.com/Joystream/substrate-node-joystream/releases/tag/v2.1.2) From 75fa0415de56a038eff10183758db85ab91e82e8 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 17:25:49 +0400 Subject: [PATCH 311/350] staking module: add slash_immediate function --- runtime-modules/stake/src/errors.rs | 6 ++ runtime-modules/stake/src/lib.rs | 101 ++++++++++++++++++++++++++- runtime-modules/stake/src/macroes.rs | 12 ++++ 3 files changed, 117 insertions(+), 2 deletions(-) diff --git a/runtime-modules/stake/src/errors.rs b/runtime-modules/stake/src/errors.rs index 3e6ed502e0..5f726e363b 100644 --- a/runtime-modules/stake/src/errors.rs +++ b/runtime-modules/stake/src/errors.rs @@ -44,6 +44,12 @@ pub enum DecreasingStakeError { CannotDecreaseStakeWhileUnstaking, } +#[derive(Debug, Eq, PartialEq)] +pub enum ImmediateSlashingError { + NotStaked, + SlashAmountShouldBeGreaterThanZero, +} + #[derive(Debug, Eq, PartialEq)] pub enum InitiateSlashingError { NotStaked, diff --git a/runtime-modules/stake/src/lib.rs b/runtime-modules/stake/src/lib.rs index 27de4a687d..465ff7816e 100755 --- a/runtime-modules/stake/src/lib.rs +++ b/runtime-modules/stake/src/lib.rs @@ -307,7 +307,7 @@ pub struct Stake { impl Stake where - BlockNumber: Copy + SimpleArithmetic, + BlockNumber: Copy + SimpleArithmetic + Zero, Balance: Copy + SimpleArithmetic, SlashId: Copy + Ord + Zero + One, { @@ -408,6 +408,38 @@ where } } + fn slash_immediate( + &mut self, + slash_amount: Balance, + minimum_balance: Balance, + ) -> Result { + ensure!( + slash_amount > Zero::zero(), + ImmediateSlashingError::SlashAmountShouldBeGreaterThanZero + ); + + match self.staking_status { + StakingStatus::Staked(ref mut staked_state) => { + // irrespective of wether we are unstaking or not, slash! + + let actually_slashed = staked_state.apply_slash( + Slash { + slash_amount, + // below values are irrelevant + is_active: true, + blocks_remaining_in_active_period_for_slashing: BlockNumber::zero(), + started_at_block: BlockNumber::zero(), + }, + minimum_balance, + ); + + Ok(actually_slashed) + } + // can't slash if not staked + _ => Err(ImmediateSlashingError::NotStaked), + } + } + fn initiate_slashing( &mut self, slash_amount: Balance, @@ -680,6 +712,12 @@ where } } +pub struct SlashImmediateOutcome { + caused_unstake: bool, + slashed_amount: Imbalance, + remaining_stake: Balance, +} + decl_storage! { trait Store for Module as StakePool { /// Maps identifiers to a stake. @@ -938,7 +976,66 @@ impl Module { Ok(staked_amount) } - /// Initiate a new slashing of a staked stake. + /// Slashes a stake with immediate effect, returns actual slashed amount as an imbalance. + /// If attempt to slash more than staked amount, actual slashed amount may be less than requested amount to slash. + /// Slashing adheres to system minimum balance, so if slashing results in amount at staked going below the + /// minimum balance, the entire stake will be slashed, and the state of the stake will change to Unstaked. + pub fn slash_immediate( + stake_id: &T::StakeId, + slash_amount: BalanceOf, + ) -> Result< + SlashImmediateOutcome, NegativeImbalance>, + StakeActionError, + > { + let mut stake = ensure_stake_exists!(T, stake_id, StakeActionError::StakeNotFound)?; + + // Get amount at stake before slashing to be used in unstaked event trigger + let staked_amount_before_slash = + ensure_staked_amount!(stake, ImmediateSlashingError::NotStaked); + + let actually_slashed_amount = + stake.slash_immediate(slash_amount, T::Currency::minimum_balance())?; + + // Remove the slashed amount from the pool + let slashed_imbalance = Self::withdraw_funds_from_stake_pool(actually_slashed_amount); + + // What remains at stake? + let staked_amount_after_slash = + ensure_staked_amount!(stake, ImmediateSlashingError::NotStaked); + + if staked_amount_after_slash == BalanceOf::::zero() { + // Set NotStaked status + stake.staking_status = StakingStatus::NotStaked; + + >::insert(stake_id, stake); + + // Trigger the event handler but since we are returning the imbalance in the result + // we pass a zero negative imbalance to the event handler to indicate someone else + // has already handled the unstaked amount. + let _ = T::StakingEventsHandler::unstaked( + &stake_id, + staked_amount_before_slash, + NegativeImbalance::::zero(), + ); + + Ok(SlashImmediateOutcome { + caused_unstake: true, + slashed_amount: slashed_imbalance, + remaining_stake: BalanceOf::::zero(), + }) + } else { + // Update the state of the stake + >::insert(stake_id, stake); + + Ok(SlashImmediateOutcome { + caused_unstake: false, + slashed_amount: slashed_imbalance, + remaining_stake: staked_amount_after_slash, + }) + } + } + + /// Initiate a new slashing of a staked stake. Slashing begins at next block. pub fn initiate_slashing( stake_id: &T::StakeId, slash_amount: BalanceOf, diff --git a/runtime-modules/stake/src/macroes.rs b/runtime-modules/stake/src/macroes.rs index 494ab6cea3..358b5644d3 100644 --- a/runtime-modules/stake/src/macroes.rs +++ b/runtime-modules/stake/src/macroes.rs @@ -17,3 +17,15 @@ macro_rules! ensure_stake_exists { ensure_map_has_mapping_with_key!(Stakes, $runtime_trait, $stake_id, $error) }}; } + +#[macro_export] +macro_rules! ensure_staked_amount { + ($stake:expr, $error:expr) => {{ + match $stake.staking_status { + StakingStatus::Staked(ref staked_state) => staked_state.staked_amount, + _ => { + return Err(StakeActionError::Error(ImmediateSlashingError::NotStaked)); + } + } + }}; +} From bce86af2348bc95ca8fd729ba83c6b3235956e4a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 19:27:12 +0400 Subject: [PATCH 312/350] stake module: simplify apply_slash signature --- runtime-modules/stake/src/lib.rs | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/runtime-modules/stake/src/lib.rs b/runtime-modules/stake/src/lib.rs index 465ff7816e..7544444cff 100755 --- a/runtime-modules/stake/src/lib.rs +++ b/runtime-modules/stake/src/lib.rs @@ -245,14 +245,14 @@ where /// Returns the actual slashed amount. fn apply_slash( &mut self, - slash: Slash, + slash_amount: Balance, minimum_balance: Balance, ) -> Balance { // calculate how much to slash - let mut slash_amount = if slash.slash_amount > self.staked_amount { + let mut slash_amount = if slash_amount > self.staked_amount { self.staked_amount } else { - slash.slash_amount + slash_amount }; // apply the slashing @@ -274,7 +274,7 @@ where for (slash_id, slash) in self.get_slashes_to_finalize().iter() { // apply the slashing and get back actual amount slashed - let slashed_amount = self.apply_slash(*slash, minimum_balance); + let slashed_amount = self.apply_slash(slash.slash_amount, minimum_balance); finalized_slashes.push((*slash_id, slashed_amount, self.staked_amount)); } @@ -423,13 +423,7 @@ where // irrespective of wether we are unstaking or not, slash! let actually_slashed = staked_state.apply_slash( - Slash { - slash_amount, - // below values are irrelevant - is_active: true, - blocks_remaining_in_active_period_for_slashing: BlockNumber::zero(), - started_at_block: BlockNumber::zero(), - }, + slash_amount, minimum_balance, ); From 6f6f6559a3a85f3db8b4d584e5cdaa0cc2b19048 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 19:28:06 +0400 Subject: [PATCH 313/350] stake module: make pub properties of SlashImmediateOutcome fixing compiler warning --- runtime-modules/stake/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime-modules/stake/src/lib.rs b/runtime-modules/stake/src/lib.rs index 7544444cff..107bd4d31c 100755 --- a/runtime-modules/stake/src/lib.rs +++ b/runtime-modules/stake/src/lib.rs @@ -707,9 +707,9 @@ where } pub struct SlashImmediateOutcome { - caused_unstake: bool, - slashed_amount: Imbalance, - remaining_stake: Balance, + pub caused_unstake: bool, + pub slashed_amount: Imbalance, + pub remaining_stake: Balance, } decl_storage! { From 78b5f4fc678026de4c3c65f6eff21b33539cac89 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 19:35:16 +0400 Subject: [PATCH 314/350] staking module: fix macro to use $error arg and cargo-fmt --- runtime-modules/stake/src/lib.rs | 23 ++++++++++------------- runtime-modules/stake/src/macroes.rs | 6 ++---- 2 files changed, 12 insertions(+), 17 deletions(-) diff --git a/runtime-modules/stake/src/lib.rs b/runtime-modules/stake/src/lib.rs index 107bd4d31c..84c0cfc2f7 100755 --- a/runtime-modules/stake/src/lib.rs +++ b/runtime-modules/stake/src/lib.rs @@ -243,11 +243,7 @@ where /// Executes a Slash. If remaining at stake drops below the minimum_balance, it will slash the entire staked amount. /// Returns the actual slashed amount. - fn apply_slash( - &mut self, - slash_amount: Balance, - minimum_balance: Balance, - ) -> Balance { + fn apply_slash(&mut self, slash_amount: Balance, minimum_balance: Balance) -> Balance { // calculate how much to slash let mut slash_amount = if slash_amount > self.staked_amount { self.staked_amount @@ -422,10 +418,7 @@ where StakingStatus::Staked(ref mut staked_state) => { // irrespective of wether we are unstaking or not, slash! - let actually_slashed = staked_state.apply_slash( - slash_amount, - minimum_balance, - ); + let actually_slashed = staked_state.apply_slash(slash_amount, minimum_balance); Ok(actually_slashed) } @@ -984,8 +977,10 @@ impl Module { let mut stake = ensure_stake_exists!(T, stake_id, StakeActionError::StakeNotFound)?; // Get amount at stake before slashing to be used in unstaked event trigger - let staked_amount_before_slash = - ensure_staked_amount!(stake, ImmediateSlashingError::NotStaked); + let staked_amount_before_slash = ensure_staked_amount!( + stake, + StakeActionError::Error(ImmediateSlashingError::NotStaked) + )?; let actually_slashed_amount = stake.slash_immediate(slash_amount, T::Currency::minimum_balance())?; @@ -994,8 +989,10 @@ impl Module { let slashed_imbalance = Self::withdraw_funds_from_stake_pool(actually_slashed_amount); // What remains at stake? - let staked_amount_after_slash = - ensure_staked_amount!(stake, ImmediateSlashingError::NotStaked); + let staked_amount_after_slash = ensure_staked_amount!( + stake, + StakeActionError::Error(ImmediateSlashingError::NotStaked) + )?; if staked_amount_after_slash == BalanceOf::::zero() { // Set NotStaked status diff --git a/runtime-modules/stake/src/macroes.rs b/runtime-modules/stake/src/macroes.rs index 358b5644d3..56d76e4787 100644 --- a/runtime-modules/stake/src/macroes.rs +++ b/runtime-modules/stake/src/macroes.rs @@ -22,10 +22,8 @@ macro_rules! ensure_stake_exists { macro_rules! ensure_staked_amount { ($stake:expr, $error:expr) => {{ match $stake.staking_status { - StakingStatus::Staked(ref staked_state) => staked_state.staked_amount, - _ => { - return Err(StakeActionError::Error(ImmediateSlashingError::NotStaked)); - } + StakingStatus::Staked(ref staked_state) => Ok(staked_state.staked_amount), + _ => Err($error), } }}; } From ec89b3552c3684df477ed6143f8acbd44626c31c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 20:23:09 +0400 Subject: [PATCH 315/350] staking module: call slash handler when doing immediate slash updates the staking events slashed handler to make slash_id and Option --- runtime-modules/stake/src/lib.rs | 78 ++++++++++++++++++-------------- runtime/src/lib.rs | 2 +- 2 files changed, 44 insertions(+), 36 deletions(-) diff --git a/runtime-modules/stake/src/lib.rs b/runtime-modules/stake/src/lib.rs index 84c0cfc2f7..b1b8d7dcc1 100755 --- a/runtime-modules/stake/src/lib.rs +++ b/runtime-modules/stake/src/lib.rs @@ -69,12 +69,13 @@ pub trait StakingEventsHandler { remaining_imbalance: NegativeImbalance, ) -> NegativeImbalance; - // Handler for slashing event. - // NB: actually_slashed can be less than amount of the slash itself if the - // claim amount on the stake cannot cover it fully. + /// Handler for slashing event. + /// NB: actually_slashed can be less than amount of the slash itself if the + /// claim amount on the stake cannot cover it fully. + /// The SlashId is optional, as slashing may not be associated with a slashing that was initiated, but was an immediate slashing. fn slashed( id: &T::StakeId, - slash_id: &T::SlashId, + slash_id: Option, slashed_amount: BalanceOf, remaining_stake: BalanceOf, remaining_imbalance: NegativeImbalance, @@ -93,7 +94,7 @@ impl StakingEventsHandler for () { fn slashed( _id: &T::StakeId, - _slash_id: &T::SlashId, + _slash_id: Option, _slahed_amount: BalanceOf, _remaining_stake: BalanceOf, _remaining_imbalance: NegativeImbalance, @@ -121,7 +122,7 @@ impl, Y: StakingEventsHandler> StakingEv fn slashed( id: &T::StakeId, - slash_id: &T::SlashId, + slash_id: Option, slashed_amount: BalanceOf, remaining_stake: BalanceOf, imbalance: NegativeImbalance, @@ -699,10 +700,11 @@ where } } -pub struct SlashImmediateOutcome { +pub struct SlashImmediateOutcome { pub caused_unstake: bool, - pub slashed_amount: Imbalance, + pub actually_slashed: Balance, pub remaining_stake: Balance, + pub remaining_imbalance: NegativeImbalance, } decl_storage! { @@ -982,48 +984,54 @@ impl Module { StakeActionError::Error(ImmediateSlashingError::NotStaked) )?; - let actually_slashed_amount = + let actually_slashed = stake.slash_immediate(slash_amount, T::Currency::minimum_balance())?; // Remove the slashed amount from the pool - let slashed_imbalance = Self::withdraw_funds_from_stake_pool(actually_slashed_amount); + let slashed_imbalance = Self::withdraw_funds_from_stake_pool(actually_slashed); // What remains at stake? - let staked_amount_after_slash = ensure_staked_amount!( + let remaining_stake = ensure_staked_amount!( stake, StakeActionError::Error(ImmediateSlashingError::NotStaked) )?; - if staked_amount_after_slash == BalanceOf::::zero() { - // Set NotStaked status + let caused_unstake = remaining_stake == BalanceOf::::zero(); + + // Set state to NotStaked if immediate slashing removed all the staked amount + if caused_unstake { stake.staking_status = StakingStatus::NotStaked; + } - >::insert(stake_id, stake); + // Update state before calling handlers! + >::insert(stake_id, stake); + + // Notify slashing event handler before unstaked handler. + let remaining_imbalance_after_slash_handler = T::StakingEventsHandler::slashed( + stake_id, + None, + actually_slashed, + remaining_stake, + slashed_imbalance, + ); - // Trigger the event handler but since we are returning the imbalance in the result - // we pass a zero negative imbalance to the event handler to indicate someone else - // has already handled the unstaked amount. - let _ = T::StakingEventsHandler::unstaked( + let remaining_imbalance = if caused_unstake { + // Notify unstaked handler with any remaining unused imbalance from the slashing event handler + T::StakingEventsHandler::unstaked( &stake_id, staked_amount_before_slash, - NegativeImbalance::::zero(), - ); - - Ok(SlashImmediateOutcome { - caused_unstake: true, - slashed_amount: slashed_imbalance, - remaining_stake: BalanceOf::::zero(), - }) + remaining_imbalance_after_slash_handler, + ) } else { - // Update the state of the stake - >::insert(stake_id, stake); + remaining_imbalance_after_slash_handler + }; - Ok(SlashImmediateOutcome { - caused_unstake: false, - slashed_amount: slashed_imbalance, - remaining_stake: staked_amount_after_slash, - }) - } + Ok(SlashImmediateOutcome { + caused_unstake, + actually_slashed, + remaining_stake, + remaining_imbalance, + }) } /// Initiate a new slashing of a staked stake. Slashing begins at next block. @@ -1153,7 +1161,7 @@ impl Module { let _ = T::StakingEventsHandler::slashed( &stake_id, - &slash_id, + Some(slash_id), slashed_amount, staked_amount, imbalance, diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 748a61ca29..d8ed411c8c 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -632,7 +632,7 @@ impl stake::StakingEventsHandler for ContentWorkingGroupStakingEventHan // Handler for slashing event fn slashed( _id: &::StakeId, - _slash_id: &::SlashId, + _slash_id: Option<::SlashId>, _slashed_amount: stake::BalanceOf, _remaining_stake: stake::BalanceOf, remaining_imbalance: stake::NegativeImbalance, From 8e9cf2c809dce178fc07c625489fa850108e281a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 20:33:46 +0400 Subject: [PATCH 316/350] staking module: make immediate unstaking after immediate slashing optional update versions: staking module major version update because of breaking change only impl version number bumped for runtime since consensus rules haven't been affected --- runtime-modules/stake/Cargo.toml | 2 +- runtime-modules/stake/src/lib.rs | 36 +++++++++++++++----------------- runtime/Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 21 deletions(-) diff --git a/runtime-modules/stake/Cargo.toml b/runtime-modules/stake/Cargo.toml index a8588b6e5e..d8de052e4c 100755 --- a/runtime-modules/stake/Cargo.toml +++ b/runtime-modules/stake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'substrate-stake-module' -version = '1.0.1' +version = '2.0.0' authors = ['Joystream contributors'] edition = '2018' diff --git a/runtime-modules/stake/src/lib.rs b/runtime-modules/stake/src/lib.rs index b1b8d7dcc1..27d33f200a 100755 --- a/runtime-modules/stake/src/lib.rs +++ b/runtime-modules/stake/src/lib.rs @@ -73,6 +73,8 @@ pub trait StakingEventsHandler { /// NB: actually_slashed can be less than amount of the slash itself if the /// claim amount on the stake cannot cover it fully. /// The SlashId is optional, as slashing may not be associated with a slashing that was initiated, but was an immediate slashing. + /// For Immediate slashes, the stake may have transitioned to NotStaked so handler should not assume the state + /// is still in staked status. fn slashed( id: &T::StakeId, slash_id: Option, @@ -409,7 +411,7 @@ where &mut self, slash_amount: Balance, minimum_balance: Balance, - ) -> Result { + ) -> Result<(Balance, Balance), ImmediateSlashingError> { ensure!( slash_amount > Zero::zero(), ImmediateSlashingError::SlashAmountShouldBeGreaterThanZero @@ -421,7 +423,9 @@ where let actually_slashed = staked_state.apply_slash(slash_amount, minimum_balance); - Ok(actually_slashed) + let remaining_stake = staked_state.staked_amount; + + Ok((actually_slashed, remaining_stake)) } // can't slash if not staked _ => Err(ImmediateSlashingError::NotStaked), @@ -965,13 +969,13 @@ impl Module { Ok(staked_amount) } - /// Slashes a stake with immediate effect, returns actual slashed amount as an imbalance. - /// If attempt to slash more than staked amount, actual slashed amount may be less than requested amount to slash. - /// Slashing adheres to system minimum balance, so if slashing results in amount at staked going below the - /// minimum balance, the entire stake will be slashed, and the state of the stake will change to Unstaked. + /// Slashes a stake with immediate effect, returns the outcome of the slashing. + /// Can optionally specify if slashing can result in immediate unstaking if staked amount + /// after slashing goes to zero. pub fn slash_immediate( stake_id: &T::StakeId, slash_amount: BalanceOf, + unstake_on_zero_staked: bool, ) -> Result< SlashImmediateOutcome, NegativeImbalance>, StakeActionError, @@ -984,21 +988,11 @@ impl Module { StakeActionError::Error(ImmediateSlashingError::NotStaked) )?; - let actually_slashed = + let (actually_slashed, remaining_stake) = stake.slash_immediate(slash_amount, T::Currency::minimum_balance())?; - // Remove the slashed amount from the pool - let slashed_imbalance = Self::withdraw_funds_from_stake_pool(actually_slashed); + let caused_unstake = unstake_on_zero_staked && remaining_stake == BalanceOf::::zero(); - // What remains at stake? - let remaining_stake = ensure_staked_amount!( - stake, - StakeActionError::Error(ImmediateSlashingError::NotStaked) - )?; - - let caused_unstake = remaining_stake == BalanceOf::::zero(); - - // Set state to NotStaked if immediate slashing removed all the staked amount if caused_unstake { stake.staking_status = StakingStatus::NotStaked; } @@ -1006,6 +1000,9 @@ impl Module { // Update state before calling handlers! >::insert(stake_id, stake); + // Remove the slashed amount from the pool + let slashed_imbalance = Self::withdraw_funds_from_stake_pool(actually_slashed); + // Notify slashing event handler before unstaked handler. let remaining_imbalance_after_slash_handler = T::StakingEventsHandler::slashed( stake_id, @@ -1016,7 +1013,8 @@ impl Module { ); let remaining_imbalance = if caused_unstake { - // Notify unstaked handler with any remaining unused imbalance from the slashing event handler + // Notify unstaked handler with any remaining unused imbalance + // from the slashing event handler T::StakingEventsHandler::unstaked( &stake_id, staked_amount_before_slash, diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 89bcbe3708..25c158357d 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -5,7 +5,7 @@ edition = '2018' name = 'joystream-node-runtime' # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1 # {Authoring}.{Spec}.{Impl} of the RuntimeVersion -version = '6.8.0' +version = '6.8.1' [features] default = ['std'] From f9e0fdfb301f19139d9201d2bd422e1fe4dd254f Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 22:58:43 +0400 Subject: [PATCH 317/350] staking module: tests --- runtime-modules/stake/src/lib.rs | 1 + runtime-modules/stake/src/tests.rs | 77 ++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) diff --git a/runtime-modules/stake/src/lib.rs b/runtime-modules/stake/src/lib.rs index 27d33f200a..4c3e38f6dd 100755 --- a/runtime-modules/stake/src/lib.rs +++ b/runtime-modules/stake/src/lib.rs @@ -704,6 +704,7 @@ where } } +#[derive(Debug, Eq, PartialEq)] pub struct SlashImmediateOutcome { pub caused_unstake: bool, pub actually_slashed: Balance, diff --git a/runtime-modules/stake/src/tests.rs b/runtime-modules/stake/src/tests.rs index c24cfb9fb5..0505a9ae23 100644 --- a/runtime-modules/stake/src/tests.rs +++ b/runtime-modules/stake/src/tests.rs @@ -802,3 +802,80 @@ fn unstake() { assert_eq!(StakePool::stake_pool_balance(), starting_stake_fund_balance); }); } + +#[test] +fn immediate_slashing() { + build_test_externalities().execute_with(|| { + let staked_amount = Balances::minimum_balance() + 10000; + let _ = Balances::deposit_creating(&StakePool::stake_pool_account_id(), staked_amount); + + // NegativeImbalance doesn't impl Debug so we cannot use this macro + // assert_err!( + // StakePool::slash_immediate(&100, 5000, false), + // StakeActionError::StakeNotFound + // ); + + // Cannot slash non-existant stake + let outcome = StakePool::slash_immediate(&100, 5000, false); + assert!(outcome.is_err()); + let error = outcome.err().unwrap(); + assert_eq!(error, StakeActionError::StakeNotFound); + + let stake_id = StakePool::create_stake(); + let created_at = System::block_number(); + let initial_stake_state = Stake { + created: created_at, + staking_status: StakingStatus::Staked(StakedState { + staked_amount, + staked_status: StakedStatus::Normal, + next_slash_id: 0, + ongoing_slashes: BTreeMap::new(), + }), + }; + >::insert(&stake_id, initial_stake_state); + + let slash_amount = 5000; + + let outcome = StakePool::slash_immediate(&stake_id, slash_amount, false); + assert!(outcome.is_ok()); + let outcome = outcome.ok().unwrap(); + + assert_eq!(outcome.caused_unstake, false); + assert_eq!(outcome.actually_slashed, slash_amount); + assert_eq!(outcome.remaining_stake, staked_amount - slash_amount); + // Default handler destroys imbalance + assert_eq!(outcome.remaining_imbalance.peek(), 0); + + assert_eq!( + >::get(stake_id), + Stake { + created: created_at, + staking_status: StakingStatus::Staked(StakedState { + staked_amount: outcome.remaining_stake, + staked_status: StakedStatus::Normal, + next_slash_id: 0, + ongoing_slashes: BTreeMap::new() + }), + } + ); + + // Slash and unstake by making slash go to zero + let slash_amount = outcome.remaining_stake; + let outcome = StakePool::slash_immediate(&stake_id, outcome.remaining_stake, true) + .ok() + .unwrap(); + assert_eq!(outcome.caused_unstake, true); + assert_eq!(outcome.actually_slashed, slash_amount); + assert_eq!(outcome.remaining_stake, 0); + // Default handler destroys imbalance + assert_eq!(outcome.remaining_imbalance.peek(), 0); + // Should now be unstaked + assert_eq!( + >::get(stake_id), + Stake { + created: created_at, + staking_status: StakingStatus::NotStaked + } + ); + }); +} From 4dfe54ae9b364f3bbc35d4b152e10bdbc60d4467 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 23:18:54 +0400 Subject: [PATCH 318/350] stake module: one more test --- runtime-modules/stake/src/tests.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/runtime-modules/stake/src/tests.rs b/runtime-modules/stake/src/tests.rs index 0505a9ae23..850a429da8 100644 --- a/runtime-modules/stake/src/tests.rs +++ b/runtime-modules/stake/src/tests.rs @@ -877,5 +877,12 @@ fn immediate_slashing() { staking_status: StakingStatus::NotStaked } ); + + let outcome = StakePool::slash_immediate(&stake_id, outcome.remaining_stake, false); + let outcome_err = outcome.err().unwrap(); + assert_eq!( + outcome_err, + StakeActionError::Error(ImmediateSlashingError::NotStaked) + ); }); } From 00652b5e7db98586a177e60c4600c5641928c7c1 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 18 Mar 2020 23:43:52 +0400 Subject: [PATCH 319/350] staking module: more tests --- runtime-modules/stake/src/tests.rs | 119 +++++++++++++++++++++++++---- 1 file changed, 105 insertions(+), 14 deletions(-) diff --git a/runtime-modules/stake/src/tests.rs b/runtime-modules/stake/src/tests.rs index 850a429da8..aba815e838 100644 --- a/runtime-modules/stake/src/tests.rs +++ b/runtime-modules/stake/src/tests.rs @@ -804,22 +804,21 @@ fn unstake() { } #[test] -fn immediate_slashing() { +fn immediate_slashing_cannot_slash_non_existent_stake() { build_test_externalities().execute_with(|| { - let staked_amount = Balances::minimum_balance() + 10000; - let _ = Balances::deposit_creating(&StakePool::stake_pool_account_id(), staked_amount); - - // NegativeImbalance doesn't impl Debug so we cannot use this macro - // assert_err!( - // StakePool::slash_immediate(&100, 5000, false), - // StakeActionError::StakeNotFound - // ); - - // Cannot slash non-existant stake let outcome = StakePool::slash_immediate(&100, 5000, false); assert!(outcome.is_err()); let error = outcome.err().unwrap(); assert_eq!(error, StakeActionError::StakeNotFound); + }); +} + +#[test] +fn immediate_slashing_without_unstaking() { + build_test_externalities().execute_with(|| { + const UNSTAKE_POLICY: bool = false; + let staked_amount = Balances::minimum_balance() + 10000; + let _ = Balances::deposit_creating(&StakePool::stake_pool_account_id(), staked_amount); let stake_id = StakePool::create_stake(); let created_at = System::block_number(); @@ -836,7 +835,7 @@ fn immediate_slashing() { let slash_amount = 5000; - let outcome = StakePool::slash_immediate(&stake_id, slash_amount, false); + let outcome = StakePool::slash_immediate(&stake_id, slash_amount, UNSTAKE_POLICY); assert!(outcome.is_ok()); let outcome = outcome.ok().unwrap(); @@ -859,9 +858,57 @@ fn immediate_slashing() { } ); + // slash to zero but without asking to unstake // Slash and unstake by making slash go to zero let slash_amount = outcome.remaining_stake; - let outcome = StakePool::slash_immediate(&stake_id, outcome.remaining_stake, true) + let outcome = StakePool::slash_immediate(&stake_id, slash_amount, UNSTAKE_POLICY) + .ok() + .unwrap(); + assert_eq!(outcome.caused_unstake, false); + assert_eq!(outcome.actually_slashed, slash_amount); + assert_eq!(outcome.remaining_stake, 0); + // Default handler destroys imbalance + assert_eq!(outcome.remaining_imbalance.peek(), 0); + + // Should still be staked, even if staked amount = 0 + assert_eq!( + >::get(stake_id), + Stake { + created: created_at, + staking_status: StakingStatus::Staked(StakedState { + staked_amount: 0, + staked_status: StakedStatus::Normal, + next_slash_id: 0, + ongoing_slashes: BTreeMap::new() + }), + } + ); + }); +} + +#[test] +fn immediate_slashing_with_unstaking() { + build_test_externalities().execute_with(|| { + const UNSTAKE_POLICY: bool = true; + let staked_amount = Balances::minimum_balance() + 10000; + let _ = Balances::deposit_creating(&StakePool::stake_pool_account_id(), staked_amount); + + let stake_id = StakePool::create_stake(); + let created_at = System::block_number(); + let initial_stake_state = Stake { + created: created_at, + staking_status: StakingStatus::Staked(StakedState { + staked_amount, + staked_status: StakedStatus::Normal, + next_slash_id: 0, + ongoing_slashes: BTreeMap::new(), + }), + }; + >::insert(&stake_id, initial_stake_state); + + // Slash whole amount unstake by making slash go to zero + let slash_amount = staked_amount; + let outcome = StakePool::slash_immediate(&stake_id, slash_amount, UNSTAKE_POLICY) .ok() .unwrap(); assert_eq!(outcome.caused_unstake, true); @@ -877,8 +924,21 @@ fn immediate_slashing() { staking_status: StakingStatus::NotStaked } ); + }); +} + +#[test] +fn immediate_slashing_cannot_slash_if_not_staked() { + build_test_externalities().execute_with(|| { + let stake_id = StakePool::create_stake(); + let created_at = System::block_number(); + let initial_stake_state = Stake { + created: created_at, + staking_status: StakingStatus::NotStaked, + }; + >::insert(&stake_id, initial_stake_state); - let outcome = StakePool::slash_immediate(&stake_id, outcome.remaining_stake, false); + let outcome = StakePool::slash_immediate(&stake_id, 1, false); let outcome_err = outcome.err().unwrap(); assert_eq!( outcome_err, @@ -886,3 +946,34 @@ fn immediate_slashing() { ); }); } + +#[test] +fn immediate_slashing_cannot_slash_zero() { + build_test_externalities().execute_with(|| { + let staked_amount = Balances::minimum_balance() + 10000; + let _ = Balances::deposit_creating(&StakePool::stake_pool_account_id(), staked_amount); + + let stake_id = StakePool::create_stake(); + let created_at = System::block_number(); + let initial_stake_state = Stake { + created: created_at, + staking_status: StakingStatus::Staked(StakedState { + staked_amount, + staked_status: StakedStatus::Normal, + next_slash_id: 0, + ongoing_slashes: BTreeMap::new(), + }), + }; + >::insert(&stake_id, initial_stake_state); + + const ZERO_SLASH_AMOUNT: u64 = 0; + + let outcome_err = StakePool::slash_immediate(&stake_id, ZERO_SLASH_AMOUNT, true) + .err() + .unwrap(); + assert_eq!( + outcome_err, + StakeActionError::Error(ImmediateSlashingError::SlashAmountShouldBeGreaterThanZero) + ); + }); +} From 7e61263d85054998ea895bf3009511cad2fa96e9 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 01:29:24 +0400 Subject: [PATCH 320/350] move node to monorepo --- .dockerignore => node/.dockerignore | 0 .gitignore => node/.gitignore | 0 .travis.yml => node/.travis.yml | 0 Cargo.lock => node/Cargo.lock | 0 Cargo.toml => node/Cargo.toml | 0 Dockerfile => node/Dockerfile | 0 Dockerfile_experimental => node/Dockerfile_experimental | 0 LICENSE => node/LICENSE | 0 README.md => node/README.md | 0 {bin => node/bin}/main.rs | 0 build-clean-start.sh => node/build-clean-start.sh | 0 build.rs => node/build.rs | 0 {chain-spec-builder => node/chain-spec-builder}/Cargo.lock | 0 {chain-spec-builder => node/chain-spec-builder}/Cargo.toml | 0 {chain-spec-builder => node/chain-spec-builder}/build.rs | 0 {chain-spec-builder => node/chain-spec-builder}/src/main.rs | 0 raspberry-cross-build.sh => node/raspberry-cross-build.sh | 0 {res => node/res}/acropolis_members.json | 0 {res => node/res}/forum_data_acropolis_encoded.json | 0 {res => node/res}/forum_data_acropolis_serialized.json | 0 {res => node/res}/forum_data_empty.json | 0 setup.sh => node/setup.sh | 0 {src => node/src}/chain_spec.rs | 0 {src => node/src}/cli.rs | 0 {src => node/src}/forum_config/from_encoded.rs | 0 {src => node/src}/forum_config/from_serialized.rs | 0 {src => node/src}/forum_config/mod.rs | 0 {src => node/src}/lib.rs | 0 {src => node/src}/members_config.rs | 0 {src => node/src}/service.rs | 0 validator-node_new.svg => node/validator-node_new.svg | 0 31 files changed, 0 insertions(+), 0 deletions(-) rename .dockerignore => node/.dockerignore (100%) rename .gitignore => node/.gitignore (100%) rename .travis.yml => node/.travis.yml (100%) rename Cargo.lock => node/Cargo.lock (100%) rename Cargo.toml => node/Cargo.toml (100%) rename Dockerfile => node/Dockerfile (100%) rename Dockerfile_experimental => node/Dockerfile_experimental (100%) rename LICENSE => node/LICENSE (100%) rename README.md => node/README.md (100%) rename {bin => node/bin}/main.rs (100%) rename build-clean-start.sh => node/build-clean-start.sh (100%) rename build.rs => node/build.rs (100%) rename {chain-spec-builder => node/chain-spec-builder}/Cargo.lock (100%) rename {chain-spec-builder => node/chain-spec-builder}/Cargo.toml (100%) rename {chain-spec-builder => node/chain-spec-builder}/build.rs (100%) rename {chain-spec-builder => node/chain-spec-builder}/src/main.rs (100%) rename raspberry-cross-build.sh => node/raspberry-cross-build.sh (100%) rename {res => node/res}/acropolis_members.json (100%) rename {res => node/res}/forum_data_acropolis_encoded.json (100%) rename {res => node/res}/forum_data_acropolis_serialized.json (100%) rename {res => node/res}/forum_data_empty.json (100%) rename setup.sh => node/setup.sh (100%) rename {src => node/src}/chain_spec.rs (100%) rename {src => node/src}/cli.rs (100%) rename {src => node/src}/forum_config/from_encoded.rs (100%) rename {src => node/src}/forum_config/from_serialized.rs (100%) rename {src => node/src}/forum_config/mod.rs (100%) rename {src => node/src}/lib.rs (100%) rename {src => node/src}/members_config.rs (100%) rename {src => node/src}/service.rs (100%) rename validator-node_new.svg => node/validator-node_new.svg (100%) diff --git a/.dockerignore b/node/.dockerignore similarity index 100% rename from .dockerignore rename to node/.dockerignore diff --git a/.gitignore b/node/.gitignore similarity index 100% rename from .gitignore rename to node/.gitignore diff --git a/.travis.yml b/node/.travis.yml similarity index 100% rename from .travis.yml rename to node/.travis.yml diff --git a/Cargo.lock b/node/Cargo.lock similarity index 100% rename from Cargo.lock rename to node/Cargo.lock diff --git a/Cargo.toml b/node/Cargo.toml similarity index 100% rename from Cargo.toml rename to node/Cargo.toml diff --git a/Dockerfile b/node/Dockerfile similarity index 100% rename from Dockerfile rename to node/Dockerfile diff --git a/Dockerfile_experimental b/node/Dockerfile_experimental similarity index 100% rename from Dockerfile_experimental rename to node/Dockerfile_experimental diff --git a/LICENSE b/node/LICENSE similarity index 100% rename from LICENSE rename to node/LICENSE diff --git a/README.md b/node/README.md similarity index 100% rename from README.md rename to node/README.md diff --git a/bin/main.rs b/node/bin/main.rs similarity index 100% rename from bin/main.rs rename to node/bin/main.rs diff --git a/build-clean-start.sh b/node/build-clean-start.sh similarity index 100% rename from build-clean-start.sh rename to node/build-clean-start.sh diff --git a/build.rs b/node/build.rs similarity index 100% rename from build.rs rename to node/build.rs diff --git a/chain-spec-builder/Cargo.lock b/node/chain-spec-builder/Cargo.lock similarity index 100% rename from chain-spec-builder/Cargo.lock rename to node/chain-spec-builder/Cargo.lock diff --git a/chain-spec-builder/Cargo.toml b/node/chain-spec-builder/Cargo.toml similarity index 100% rename from chain-spec-builder/Cargo.toml rename to node/chain-spec-builder/Cargo.toml diff --git a/chain-spec-builder/build.rs b/node/chain-spec-builder/build.rs similarity index 100% rename from chain-spec-builder/build.rs rename to node/chain-spec-builder/build.rs diff --git a/chain-spec-builder/src/main.rs b/node/chain-spec-builder/src/main.rs similarity index 100% rename from chain-spec-builder/src/main.rs rename to node/chain-spec-builder/src/main.rs diff --git a/raspberry-cross-build.sh b/node/raspberry-cross-build.sh similarity index 100% rename from raspberry-cross-build.sh rename to node/raspberry-cross-build.sh diff --git a/res/acropolis_members.json b/node/res/acropolis_members.json similarity index 100% rename from res/acropolis_members.json rename to node/res/acropolis_members.json diff --git a/res/forum_data_acropolis_encoded.json b/node/res/forum_data_acropolis_encoded.json similarity index 100% rename from res/forum_data_acropolis_encoded.json rename to node/res/forum_data_acropolis_encoded.json diff --git a/res/forum_data_acropolis_serialized.json b/node/res/forum_data_acropolis_serialized.json similarity index 100% rename from res/forum_data_acropolis_serialized.json rename to node/res/forum_data_acropolis_serialized.json diff --git a/res/forum_data_empty.json b/node/res/forum_data_empty.json similarity index 100% rename from res/forum_data_empty.json rename to node/res/forum_data_empty.json diff --git a/setup.sh b/node/setup.sh similarity index 100% rename from setup.sh rename to node/setup.sh diff --git a/src/chain_spec.rs b/node/src/chain_spec.rs similarity index 100% rename from src/chain_spec.rs rename to node/src/chain_spec.rs diff --git a/src/cli.rs b/node/src/cli.rs similarity index 100% rename from src/cli.rs rename to node/src/cli.rs diff --git a/src/forum_config/from_encoded.rs b/node/src/forum_config/from_encoded.rs similarity index 100% rename from src/forum_config/from_encoded.rs rename to node/src/forum_config/from_encoded.rs diff --git a/src/forum_config/from_serialized.rs b/node/src/forum_config/from_serialized.rs similarity index 100% rename from src/forum_config/from_serialized.rs rename to node/src/forum_config/from_serialized.rs diff --git a/src/forum_config/mod.rs b/node/src/forum_config/mod.rs similarity index 100% rename from src/forum_config/mod.rs rename to node/src/forum_config/mod.rs diff --git a/src/lib.rs b/node/src/lib.rs similarity index 100% rename from src/lib.rs rename to node/src/lib.rs diff --git a/src/members_config.rs b/node/src/members_config.rs similarity index 100% rename from src/members_config.rs rename to node/src/members_config.rs diff --git a/src/service.rs b/node/src/service.rs similarity index 100% rename from src/service.rs rename to node/src/service.rs diff --git a/validator-node_new.svg b/node/validator-node_new.svg similarity index 100% rename from validator-node_new.svg rename to node/validator-node_new.svg From 7fa0703f6e05a439355dd7a152c05a608e496c5c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 02:55:49 +0400 Subject: [PATCH 321/350] update dependency path, integrate node into workspace --- .gitignore | 3 - Cargo.toml | 2 + node/Cargo.lock | 6356 ----------------- node/Cargo.toml | 10 +- node/chain-spec-builder/Cargo.lock | 6258 ---------------- {node => utils}/chain-spec-builder/Cargo.toml | 2 +- {node => utils}/chain-spec-builder/build.rs | 0 .../chain-spec-builder/src/main.rs | 0 8 files changed, 4 insertions(+), 12627 deletions(-) delete mode 100644 node/Cargo.lock delete mode 100644 node/chain-spec-builder/Cargo.lock rename {node => utils}/chain-spec-builder/Cargo.toml (93%) rename {node => utils}/chain-spec-builder/build.rs (100%) rename {node => utils}/chain-spec-builder/src/main.rs (100%) diff --git a/.gitignore b/.gitignore index dbaa0c705f..2d38b3a5a7 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 diff --git a/Cargo.toml b/Cargo.toml index 280ee5a743..62ef6a5869 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,5 +16,7 @@ members = [ "runtime-modules/token-minting", "runtime-modules/versioned-store", "runtime-modules/versioned-store-permissions", + "node", + "utils/chain-spec-builder/" ] diff --git a/node/Cargo.lock b/node/Cargo.lock deleted file mode 100644 index d78e8d849a..0000000000 --- a/node/Cargo.lock +++ /dev/null @@ -1,6356 +0,0 @@ -# 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" - -[[package]] -name = "aes-ctr" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "aes-soft" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "aesni" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ahash" -version = "0.2.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "const-random 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "aho-corasick" -version = "0.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ansi_term" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "app_dirs" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "arc-swap" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "arrayref" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "arrayvec" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "arrayvec" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "asn1_der" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "asn1_der_derive" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "autocfg" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "autocfg" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "backtrace" -version = "0.3.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "backtrace-sys 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "backtrace-sys" -version = "0.1.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "base58" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "base64" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "bindgen" -version = "0.47.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "bitflags" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "bitmask" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "bitvec" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "blake2" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "blake2-rfc" -version = "0.2.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "block-buffer" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "block-cipher-trait" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "block-padding" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "bs58" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "bs58" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "bstr" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "bumpalo" -version = "3.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "byte-slice-cast" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "byte-tools" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "byteorder" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "byteorder" -version = "1.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "bytes" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "bytes" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "c2-chacha" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "c_linked_list" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "cc" -version = "1.0.50" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cexpr" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "chrono" -version = "0.4.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "clang-sys" -version = "0.26.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "clap" -version = "2.33.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "clear_on_drop" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cloudabi" -version = "0.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "const-random" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "const-random-macro 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "const-random-macro" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "constant_time_eq" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "crc32fast" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-channel" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-deque" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-queue" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-utils" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crossbeam-utils" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "crunchy" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "crypto-mac" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ct-logs" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ctr" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ctrlc" -version = "3.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "nix 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cuckoofilter" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "curve25519-dalek" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "curve25519-dalek" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "data-encoding" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "derive_more" -version = "0.14.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "derive_more" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "digest" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "dns-parser" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "doc-comment" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "ed25519-dalek" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ed25519-dalek" -version = "1.0.0-pre.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "either" -version = "1.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "elastic-array" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "env_logger" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "env_logger" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "environmental" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "erased-serde" -version = "0.3.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "exit-future" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "failure" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "failure_derive" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fake-simd" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "fdlimit" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "finality-grandpa" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fixed-hash" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fixedbitset" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "flate2" -version = "1.0.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fnv" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "fork-tree" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fs-swap" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fuchsia-cprng" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures" -version = "0.1.29" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-channel" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-channel-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-core" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures-core-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures-cpupool" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-executor" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-executor-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-io" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures-io-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures-macro" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-sink" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures-sink-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures-task" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futures-timer" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-util" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "futures-util-preview" -version = "0.3.0-alpha.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "gcc" -version = "0.3.55" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "generic-array" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "get_if_addrs" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "get_if_addrs-sys" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "getrandom" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "glob" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "globset" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "aho-corasick 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", - "bstr 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "h2" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hash-db" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "hash256-std-hasher" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hashbrown" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hashbrown" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "heapsize" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "heck" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hermit-abi" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hex" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "hex" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "hex-literal" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hex-literal" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hex-literal-impl" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hex-literal-impl" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hmac" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hmac-drbg" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "http" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "http-body" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "httparse" -version = "1.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "humantime" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hyper" -version = "0.12.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hyper-rustls" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "idna" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "idna" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "impl-codec" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "impl-serde" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "impl-serde" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "impl-trait-for-tuples" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "indexmap" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "integer-sqrt" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "interleaved-ordered" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "iovec" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ipnet" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "itertools" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "itoa" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "jobserver" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "joystream-node" -version = "2.1.3" -dependencies = [ - "ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", - "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "joystream-node-runtime" -version = "6.8.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "js-sys" -version = "0.3.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-client-transports" -version = "14.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-core" -version = "13.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-core" -version = "14.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-core-client" -version = "14.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-derive" -version = "14.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-http-server" -version = "14.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-pubsub" -version = "14.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-server-utils" -version = "14.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "jsonrpc-ws-server" -version = "14.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "keccak" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "kernel32-sys" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "kvdb" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" -dependencies = [ - "elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", -] - -[[package]] -name = "kvdb-memorydb" -version = "0.1.0" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" -dependencies = [ - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "kvdb-rocksdb" -version = "0.1.4" -source = "git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d#b0317f649ab2c665b7987b8475878fc4d2e1f81d" -dependencies = [ - "elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "lazycell" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "libc" -version = "0.2.67" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "libloading" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core-derive 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-deflate 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-dns 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-floodsub 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-identify 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-kad 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mdns 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-mplex 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-noise 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-ping 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-plaintext 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-secio 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-tcp 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-uds 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-wasm-ext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-websocket 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-yamux 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-core" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 1.0.0-pre.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "multistream-select 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-core-derive" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-deflate" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-dns" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-floodsub" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-identify" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-kad" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-mdns" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-udp 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-mplex" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-noise" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", - "snow 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-ping" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-plaintext" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-secio" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-swarm" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-tcp" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "ipnet 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-uds" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-uds 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-wasm-ext" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-websocket" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libp2p-yamux" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "librocksdb-sys" -version = "5.18.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", - "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libsecp256k1" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libz-sys" -version = "1.0.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", - "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "linked-hash-map" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "linked_hash_set" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "lock_api" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "owning_ref 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "lock_api" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "lock_api" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "log" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "lru-cache" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "malloc_size_of_derive" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "matches" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "maybe-uninit" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "memchr" -version = "2.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "memoffset" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "memory-db" -version = "0.15.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "memory_units" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "merlin" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "miniz_oxide" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "mio" -version = "0.6.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "mio-extras" -version = "2.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "mio-uds" -version = "0.6.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "miow" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "multimap" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "multistream-select" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "names" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "net2" -version = "0.2.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "nix" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "nodrop" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "nohash-hasher" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "nom" -version = "4.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-bigint" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-integer" -version = "0.1.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-rational" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-traits" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num_cpus" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ole32-sys" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "once_cell" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "once_cell" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "opaque-debug" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "owning_ref" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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" -dependencies = [ - "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-multiaddr" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-multihash" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-multihash" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-scale-codec" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-slice-cast 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec-derive 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-scale-codec-derive" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-send-wrapper" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "parity-util-mem" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parity-wasm" -version = "0.40.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "parking_lot" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot_core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot_core" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot_core" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot_core" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "parking_lot_core" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "paste" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "paste-impl 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "paste-impl" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "pbkdf2" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "pdqselect" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "peeking_take_while" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "percent-encoding" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "percent-encoding" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "petgraph" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "pin-utils" -version = "0.1.0-alpha.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "pkg-config" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "ppv-lite86" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "primitive-types" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "fixed-hash 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "proc-macro-crate" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "proc-macro-error" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "proc-macro-hack" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "proc-macro-hack" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "proc-macro-hack-impl" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "proc-macro-nested" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "proc-macro2" -version = "0.4.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "proc-macro2" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "prost" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "prost-build" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", - "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "prost-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "prost-derive" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "prost-types" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "protobuf" -version = "2.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "quote" -version = "0.6.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "quote" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand" -version = "0.3.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_chacha" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_chacha" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_core" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "rand_core" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_hc" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_hc" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_isaac" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_jitter" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_os" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_pcg" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand_xorshift" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rayon" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rayon-core" -version = "1.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rdrand" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "redox_syscall" -version = "0.1.56" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "regex" -version = "1.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "aho-corasick 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "regex-syntax" -version = "0.6.16" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "remove_dir_all" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ring" -version = "0.16.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rocksdb" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rpassword" -version = "4.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rustc-demangle" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "rustc-hex" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "rustc_version" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rustls" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rw-stream-sink" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ryu" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "safe-mix" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "schnorrkel" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "scopeguard" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "scopeguard" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "sct" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "semver" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "semver-parser" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "send_wrapper" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "serde" -version = "1.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "serde_derive" -version = "1.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "serde_json" -version = "1.0.48" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "sha-1" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "sha1" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "sha2" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "sha3" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "shell32-sys" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "slab" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "slog" -version = "2.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "slog-async" -version = "2.3.0" -source = "git+https://github.com/paritytech/slog-async#107848e7ded5e80dc43f6296c2b96039eb92c0a5" -dependencies = [ - "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "slog-json" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "slog-scope" -version = "4.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "slog_derive" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "smallvec" -version = "0.6.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "smallvec" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "snow" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "soketto" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "sr-api-macros" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "sr-arithmetic" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "integer-sqrt 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "sr-io" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "sr-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "sr-staking-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "sr-std" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-authority-discovery" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-authorship" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-balances" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-executive" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-grandpa" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-im-online" -version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-indices" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-metadata" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-offences" -version = "1.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-session" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-staking" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "srml-sudo" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-support" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "srml-system" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-timestamp" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "srml-transaction-payment" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "stable_deref_trait" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "static_assertions" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "stream-cipher" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "string" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "strsim" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "structopt" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "structopt-derive" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "strum" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "strum_macros" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-application-crypto" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-basic-authorship" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-bip39" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "fdlimit 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rpassword 4.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-client-db" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)", - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-common-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "merlin 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "num-rational 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-consensus-slots" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-consensus-uncles" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-content-working-group-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[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.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-externalities" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "environmental 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-finality-grandpa" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-forum-module" -version = "1.1.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-governance-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-header-metadata" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-hiring-module" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[package]] -name = "substrate-inherents" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-keyring" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-membership-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-memo-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[package]] -name = "substrate-network" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-offchain" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-offchain-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-panic-handler" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-peerset" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-phragmen" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-recurring-reward-module" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[package]] -name = "substrate-roles-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[package]] -name = "substrate-rpc" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-core-client 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-derive 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-rpc-primitives" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-http-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-ws-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-serializer" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", - "target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-service-discovery-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[package]] -name = "substrate-session" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-stake-module" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-state-db" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-state-machine" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-storage-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[package]] -name = "substrate-telemetry" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)", - "slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-token-mint-module" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[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 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-trie" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "memory-db 0.15.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "substrate-versioned-store" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", -] - -[[package]] -name = "substrate-versioned-store-permissions-module" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", - "sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)", - "substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)", -] - -[[package]] -name = "substrate-wasm-builder-runner" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "substrate-wasm-interface" -version = "2.0.0" -source = "git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8#c37bb08535c49a12320af7facfd555ce05cce2e8" -dependencies = [ - "wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "subtle" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "subtle" -version = "2.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "syn" -version = "0.15.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "syn" -version = "1.0.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "synstructure" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "sysinfo" -version = "0.9.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "doc-comment 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "take_mut" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "target_info" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "tempfile" -version = "3.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", - "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "termcolor" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "textwrap" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "thread_local" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "thread_local" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "threadpool" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "time" -version = "0.1.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tiny-bip39" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", - "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tiny-keccak" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio" -version = "0.1.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-current-thread 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-fs 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-udp 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-uds 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-buf" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-codec" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-current-thread" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-dns-unofficial" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-executor" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-fs" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-io" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-reactor" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-sync 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-rustls" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-sync" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-tcp" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-threadpool" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-timer" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-udp" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tokio-uds" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "toml" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "trie-db" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)", - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "trie-root" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "try-lock" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "twofish" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "twox-hash" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "typenum" -version = "1.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "uint" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "unicase" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "unicode-bidi" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "unicode-normalization" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "unicode-segmentation" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "unicode-width" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "unicode-xid" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "unicode-xid" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "unsigned-varint" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "unsigned-varint" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "untrusted" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "url" -version = "1.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "url" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "vcpkg" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "vec_map" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "vergen" -version = "3.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "version_check" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "version_check" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "void" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "want" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasi" -version = "0.9.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "wasm-bindgen" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.3.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-macro-support 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-backend 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "wasm-timer" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", - "send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", - "web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasmi" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", - "memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "num-rational 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "wasmi-validation" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "web-sys" -version = "0.3.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)", - "wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "webpki" -version = "0.21.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)", - "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "webpki-roots" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "webpki-roots" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "which" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "winapi" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "winapi" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "winapi-build" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "winapi-util" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "ws" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "mio-extras 2.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ws2_32-sys" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "x25519-dalek" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "xdg" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "yamux" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "nohash-hasher 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "zeroize" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "zeroize" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "zeroize" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "zeroize_derive 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "zeroize_derive" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[metadata] -"checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2" -"checksum aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2e5b0458ea3beae0d1d8c0f3946564f8e10f90646cf78c06b4351052058d1ee" -"checksum aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d" -"checksum aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100" -"checksum ahash 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3" -"checksum aho-corasick 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)" = "d5e63fd144e18ba274ae7095c0197a870a7b9468abc801dd62f190d80817d2ec" -"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" -"checksum ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -"checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" -"checksum arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff" -"checksum arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" -"checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" -"checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" -"checksum asn1_der 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638" -"checksum asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502" -"checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" -"checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" -"checksum backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)" = "ad235dabf00f36301792cfe82499880ba54c6486be094d1047b02bacb67c14e8" -"checksum backtrace-sys 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)" = "e17b52e737c40a7d75abca20b29a19a0eb7ba9fc72c5a72dd282a0a3c2c0dc35" -"checksum base58 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83" -"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" -"checksum bindgen 0.47.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df683a55b54b41d5ea8ebfaebb5aa7e6b84e3f3006a78f010dadc9ca88469260" -"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -"checksum bitmask 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead" -"checksum bitvec 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" -"checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330" -"checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" -"checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" -"checksum block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" -"checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" -"checksum bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188" -"checksum bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae" -"checksum bstr 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "502ae1441a0a5adb8fbd38a5955a6416b9493e92b465de5e4a9bde6a539c2c48" -"checksum bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1f359dc14ff8911330a51ef78022d376f25ed00248912803b58f00cb1c27f742" -"checksum byte-slice-cast 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3" -"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" -"checksum byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855" -"checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" -"checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -"checksum bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1" -"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" -"checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" -"checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd" -"checksum cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fce5b5fb86b0c57c20c834c1b412fd09c77c8a59b9473f86272709e78874cd1d" -"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" -"checksum chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2" -"checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4" -"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" -"checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17" -"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -"checksum const-random 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a" -"checksum const-random-macro 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a" -"checksum constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" -"checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" -"checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa" -"checksum crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285" -"checksum crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" -"checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db" -"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" -"checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" -"checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" -"checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" -"checksum ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113" -"checksum ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "022cd691704491df67d25d006fe8eca083098253c4d43516c2206479c58c6736" -"checksum ctrlc 3.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7a4ba686dff9fa4c1c9636ce1010b0cf98ceb421361b0bb3d6faeec43bd217a7" -"checksum cuckoofilter 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f" -"checksum curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8b7dcd30ba50cdf88b55b033456138b7c0ac4afdc436d82e1b79f370f24cc66d" -"checksum curve25519-dalek 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "26778518a7f6cffa1d25a44b602b62b979bd88adb9e99ffec546998cf3404839" -"checksum data-encoding 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11c0346158a19b3627234e15596f5e465c360fcdb97d817bcb255e0510f5a788" -"checksum derive_more 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6d944ac6003ed268757ef1ee686753b57efc5fcf0ebe7b64c9fc81e7e32ff839" -"checksum derive_more 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a141330240c921ec6d074a3e188a7c7ef95668bb95e7d44fa0e5778ec2a7afe" -"checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" -"checksum dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" -"checksum doc-comment 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "807e5847c39ad6a11eac66de492ed1406f76a260eb8656e8740cad9eabc69c27" -"checksum ed25519-dalek 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d07e8b8a8386c3b89a7a4b329fdfa4cb545de2545e9e2ebbc3dd3929253e426" -"checksum ed25519-dalek 1.0.0-pre.3 (registry+https://github.com/rust-lang/crates.io-index)" = "978710b352437433c97b2bff193f2fb1dfd58a093f863dd95e225a19baa599a2" -"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" -"checksum elastic-array 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)" = "580f3768bd6465780d063f5b8213a2ebd506e139b345e4a81eb301ceae3d61e1" -"checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" -"checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" -"checksum environmental 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "516aa8d7a71cb00a1c4146f0798549b93d083d4f189b3ced8f3de6b8f11ee6c4" -"checksum erased-serde 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)" = "cd7d80305c9bd8cd78e3c753eb9fb110f83621e5211f1a3afffcc812b104daf9" -"checksum exit-future 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d8013f441e38e31c670e7f34ec8f1d5d3a2bd9d303c1ff83976ca886005e8f48" -"checksum failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b8529c2421efa3066a5cbd8063d2244603824daccb6936b079010bb2aa89464b" -"checksum failure_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "030a733c8287d6213886dd487564ff5c8f6aae10278b3588ed177f9d18f8d231" -"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" -"checksum fdlimit 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9084c55bb76efb1496328976db88320fe7d9ee86e649e83c4ecce3ba7a9a35d1" -"checksum finality-grandpa 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "34754852da8d86bc509715292c73140a5b678656d0b16132acd6737bdb5fd5f8" -"checksum fixed-hash 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3367952ceb191f4ab95dd5685dc163ac539e36202f9fcfd0cb22f9f9c542fefc" -"checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" -"checksum flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f" -"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" -"checksum fork-tree 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum fs-swap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "921d332c89b3b61a826de38c61ee5b6e02c56806cade1b0e5d81bd71f57a71bb" -"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" -"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" -"checksum futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5c329ae8753502fb44ae4fc2b622fa2a94652c41e795143765ba0927f92ab780" -"checksum futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8" -"checksum futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a" -"checksum futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a" -"checksum futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a" -"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" -"checksum futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f674f3e1bcb15b37284a90cedf55afdba482ab061c407a9c0ebbd0f3109741ba" -"checksum futures-executor-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "75236e88bd9fe88e5e8bfcd175b665d0528fe03ca4c5207fabc028c8f9d93e98" -"checksum futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6" -"checksum futures-io-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "f4914ae450db1921a56c91bde97a27846287d062087d4a652efc09bb3a01ebda" -"checksum futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "9a5081aa3de1f7542a794a397cde100ed903b0630152d0973479018fd85423a7" -"checksum futures-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "3b1dce2a0267ada5c6ff75a8ba864b4e679a9e2aa44262af7a3b5516d530d76e" -"checksum futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6" -"checksum futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "86f148ef6b69f75bb610d4f9a2336d4fc88c4b5b67129d1a340dd0fd362efeec" -"checksum futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27" -"checksum futures-timer 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "878f1d2fc31355fa02ed2372e741b0c17e58373341e6a122569b4623a14a7d33" -"checksum futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5" -"checksum futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d" -"checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" -"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" -"checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" -"checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" -"checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" -"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" -"checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" -"checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" -"checksum hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" -"checksum hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" -"checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da" -"checksum hashbrown 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead" -"checksum heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" -"checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" -"checksum hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" -"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" -"checksum hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35" -"checksum hex-literal 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc2928beef125e519d69ae1baa8c37ea2e0d3848545217f6db0179c5eb1d639" -"checksum hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0" -"checksum hex-literal-impl 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "520870c3213943eb8d7803e80180d12a6c7ceb4ae74602544529d1643dc4ddda" -"checksum hex-literal-impl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9d4c5c844e2fee0bf673d54c2c177f1713b3d2af2ff6e666b49cb7572e6cf42d" -"checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695" -"checksum hmac-drbg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b" -"checksum http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" -"checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" -"checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" -"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" -"checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6" -"checksum hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)" = "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952" -"checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" -"checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" -"checksum impl-codec 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53" -"checksum impl-serde 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "58e3cae7e99c7ff5a995da2cf78dd0a5383740eda71d98cf7b1910c301ac69b8" -"checksum impl-serde 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5bbe9ea9b182f0fb1cabbd61f4ff9b7b7b9197955e95a7e4c27de5055eb29ff8" -"checksum impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d" -"checksum indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292" -"checksum integer-sqrt 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f65877bf7d44897a473350b1046277941cee20b263397e90869c50b6e766088b" -"checksum interleaved-ordered 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "141340095b15ed7491bd3d4ced9d20cebfb826174b6bb03386381f62b01e3d77" -"checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -"checksum ipnet 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a859057dc563d1388c1e816f98a1892629075fc046ed06e845b883bb8b2916fb" -"checksum itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" -"checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e" -"checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" -"checksum joystream-node-runtime 6.8.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum js-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" -"checksum jsonrpc-client-transports 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9ae166c4d1f702d297cd76d4b55758ace80272ffc6dbb139fdc1bf810de40b" -"checksum jsonrpc-core 13.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91d767c183a7e58618a609499d359ce3820700b3ebb4823a18c343b4a2a41a0d" -"checksum jsonrpc-core 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fe3b688648f1ef5d5072229e2d672ecb92cbff7d1c79bcf3fd5898f3f3df0970" -"checksum jsonrpc-core-client 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "080dc110be17701097df238fad3c816d4a478a1899dfbcf8ec8957dd40ec7304" -"checksum jsonrpc-derive 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8609af8f63b626e8e211f52441fcdb6ec54f1a446606b10d5c89ae9bf8a20058" -"checksum jsonrpc-http-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "816d63997ea45d3634608edbef83ddb35e661f7c0b27b5b72f237e321f0e9807" -"checksum jsonrpc-pubsub 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5b31c9b90731276fdd24d896f31bb10aecf2e5151733364ae81123186643d939" -"checksum jsonrpc-server-utils 14.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95b7635e618a0edbbe0d2a2bbbc69874277c49383fcf6c3c0414491cfb517d22" -"checksum jsonrpc-ws-server 14.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b94e5773b2ae66e0e02c80775ce6bbba6f15d5bb47c14ec36a36fcf94f8df851" -"checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" -"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -"checksum kvdb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum kvdb-memorydb 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum kvdb-rocksdb 0.1.4 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" -"checksum libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)" = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018" -"checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" -"checksum libp2p 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9b4674c6738fdd8b1cf7104dd046abcef78dc932fe25f8eb40f3a8e71341717d" -"checksum libp2p-core 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "01efc769c392d0d8863a7160d266f9b9f794968554f87490c8af4aa34ccaa94f" -"checksum libp2p-core-derive 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1eeb2704ac14c60f31967e351ed928b848526a5fc6db4104520020665012826f" -"checksum libp2p-deflate 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef2b0bf5d37692ac90e2bffa436bec26c0b0def6c0cab7ea85ff67a353d58aaa" -"checksum libp2p-dns 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3175fb0fc9016c95c8517a297bbdb5fb6bfbd5665bacd2eb23495d1cbdeb033" -"checksum libp2p-floodsub 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b360bbaad2560d6b8a905bd63528273d933fe54475a44def47f31e23108b3683" -"checksum libp2p-identify 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c087bcd044a6f67a994573a92a109487a902a31555e4e63bcc4ae144c45594fe" -"checksum libp2p-kad 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dcaf76a5b33b6c0203e85d450ae1855cae6860dc82eb0174ac1fee8bf68f7af5" -"checksum libp2p-mdns 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c4c2e225a7dfc571c3ad77a0a5ecccc9537afe42d72289ac9f19768567cd677d" -"checksum libp2p-mplex 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2fe584816d993dc0f893396521a3c93191d78a6f28a892b150baa714a12c3e5" -"checksum libp2p-noise 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d50494fcba7cdab08390d72b3cb9d2c72fcf178e6a0c1043855ab259d818b972" -"checksum libp2p-ping 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5b975ad345eb9bb29ddc64670664a50a8ab3e66e28357abb0f83cfc0a9ca2d78" -"checksum libp2p-plaintext 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6f07be6983e1c00e8f6a5676da54ed3a8cae7fb50f1fb6ea163414613ca656cc" -"checksum libp2p-secio 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04aa6d67a5fb2b36241a1ba54037a13deb2594cf141e43b597ce379521d530a8" -"checksum libp2p-swarm 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cd55bc9f5f9eac2bb1ff24ca3c8a655810a566ac38c7a6ee1f30aced5a62905b" -"checksum libp2p-tcp 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "234a7093d05651ab5630db926a4a42ca8978a65bab8c27c2ce2b66b200c76989" -"checksum libp2p-uds 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1e2fe0648967da3e56e4a55055c857c8c48326b66be0047d0e04c8ca60d34630" -"checksum libp2p-wasm-ext 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f7b8f2bd81fb356e81352d4513856bc21215ecf91502aa1f55b6449642a9acf" -"checksum libp2p-websocket 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d74d4fc229ad7e8d1a973178786bdcd5dadbdd7b9822c4477c8687df6f82f66" -"checksum libp2p-yamux 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1913eb7dd6eb5515957b6f1770296f6921968db87bc9b985f0e974b6657e1003" -"checksum librocksdb-sys 5.18.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d19778314deaa7048f2ea7d07b8aa12e1c227acebe975a37eeab6d2f8c74e41b" -"checksum libsecp256k1 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962" -"checksum libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe" -"checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" -"checksum linked_hash_set 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3c7c91c4c7bbeb4f2f7c4e5be11e6a05bd6830bc37249c47ce1ad86ad453ff9c" -"checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" -"checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" -"checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b" -"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" -"checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" -"checksum malloc_size_of_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" -"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" -"checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" -"checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400" -"checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" -"checksum memory-db 0.15.3 (registry+https://github.com/rust-lang/crates.io-index)" = "5dabfe0a8c69954ae3bcfc5fc14260a85fb80e1bf9f86a155f668d10a67e93dd" -"checksum memory_units 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" -"checksum merlin 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2b0942b357c1b4d0dc43ba724674ec89c3218e6ca2b3e8269e7cb53bcecd2f6e" -"checksum miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5" -"checksum mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f" -"checksum mio-extras 2.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" -"checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" -"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151" -"checksum multistream-select 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fc3ef54aab1b2e37e911bcb99e376dbe4c1e0710afcdb8428608e4f993b39c47" -"checksum names 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da" -"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" -"checksum nix 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363" -"checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" -"checksum nohash-hasher 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "721a2bf1c26159ebf17e0a980bc4ce61f4b2fec5ec3b42d42fddd7a84a9e538f" -"checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -"checksum num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" -"checksum num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba" -"checksum num-rational 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "da4dc79f9e6c81bef96148c8f6b8e72ad4541caa4a24373e900a36da07de03a3" -"checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096" -"checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" -"checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" -"checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" -"checksum once_cell 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d584f08c2d717d5c23a6414fc2822b71c651560713e54fa7eace675f758a355e" -"checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" -"checksum owning_ref 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" -"checksum parity-bytes 0.1.0 (git+https://github.com/paritytech/parity-common?rev=b0317f649ab2c665b7987b8475878fc4d2e1f81d)" = "" -"checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7" -"checksum parity-multiaddr 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82afcb7461eae5d122543d8be1c57d306ed89af2d6ff7f8b0f5a3cc8f7e511bc" -"checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3" -"checksum parity-multihash 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7a1cd2ba02391b81367bec529fb209019d718684fdc8ad6a712c2b536e46f775" -"checksum parity-scale-codec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f509c5e67ca0605ee17dcd3f91ef41cadd685c75a298fb6261b781a5acb3f910" -"checksum parity-scale-codec-derive 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a0ec292e92e8ec7c58e576adacc1e3f399c597c8f263c42f18420abe58e7245" -"checksum parity-send-wrapper 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" -"checksum parity-util-mem 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "570093f39f786beea92dcc09e45d8aae7841516ac19a50431953ac82a0e8f85c" -"checksum parity-wasm 0.40.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1e39faaa292a687ea15120b1ac31899b13586446521df6c149e46f1584671e0f" -"checksum parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc" -"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" -"checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" -"checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" -"checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" -"checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" -"checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" -"checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" -"checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" -"checksum parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1" -"checksum paste 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "63e1afe738d71b1ebab5f1207c055054015427dbfc7bbe9ee1266894156ec046" -"checksum paste-impl 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc4a7f6f743211c5aab239640a65091535d97d43d92a52bca435a640892bb" -"checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9" -"checksum pdqselect 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27" -"checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" -"checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" -"checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" -"checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" -"checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" -"checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" -"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" -"checksum primitive-types 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e4336f4f5d5524fa60bcbd6fe626f9223d8142a50e7053e979acdf0da41ab975" -"checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e" -"checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" -"checksum proc-macro-hack 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b" -"checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" -"checksum proc-macro-hack-impl 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842" -"checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" -"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -"checksum proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" -"checksum prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96d14b1c185652833d24aaad41c5832b0be5616a590227c1fbff57c616754b23" -"checksum prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eb788126ea840817128183f8f603dce02cb7aea25c2a0b764359d8e20010702e" -"checksum prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e7dc378b94ac374644181a2247cebf59a6ec1c88b49ac77f3a94b86b79d0e11" -"checksum prost-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1de482a366941c8d56d19b650fac09ca08508f2a696119ee7513ad590c8bac6f" -"checksum protobuf 2.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40361836defdd5871ff7e84096c6f6444af7fc157f8ef1789f54f147687caa20" -"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" -"checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" -"checksum quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f" -"checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" -"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" -"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" -"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -"checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" -"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" -"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" -"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" -"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" -"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" -"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" -"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" -"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" -"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" -"checksum regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8" -"checksum regex-syntax 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "1132f845907680735a84409c3bebc64d1364a5683ffbce899550cd09d5eaefc1" -"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" -"checksum ring 0.16.11 (registry+https://github.com/rust-lang/crates.io-index)" = "741ba1704ae21999c00942f9f5944f801e977f54302af346b596287599ad1862" -"checksum rocksdb 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f1651697fefd273bfb4fd69466cc2a9d20de557a0213b97233b22b5e95924b5e" -"checksum rpassword 4.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "99371657d3c8e4d816fb6221db98fa408242b0b53bac08f8676a41f8554fe99f" -"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" -"checksum rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" -"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -"checksum rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b25a18b1bf7387f0145e7f8324e700805aade3842dd3db2e74e4cdeb4677c09e" -"checksum rw-stream-sink 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9cbe61c20455d3015b2bb7be39e1872310283b8e5a52f5b242b0ac7581fe78" -"checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" -"checksum safe-mix 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c" -"checksum schnorrkel 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eacd8381b3c37840c9c9f40472af529e49975bdcbc24f83c31059fd6539023d3" -"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" -"checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" -"checksum sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c" -"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum send_wrapper 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0eddf2e8f50ced781f288c19f18621fa72a3779e3cb58dbf23b07469b0abeb4" -"checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" -"checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" -"checksum serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)" = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25" -"checksum sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" -"checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" -"checksum sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "27044adfd2e1f077f649f59deb9490d3941d674002f7d062870a60ebe9bd47a0" -"checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf" -"checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" -"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" -"checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" -"checksum slog-async 2.3.0 (git+https://github.com/paritytech/slog-async)" = "" -"checksum slog-json 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a" -"checksum slog-scope 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6" -"checksum slog_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eff3b513cf2e0d1a60e1aba152dc72bedc5b05585722bb3cebd7bcb1e31b98f" -"checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" -"checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" -"checksum snow 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "afb767eee7d257ba202f0b9b08673bc13b22281632ef45267b19f13100accd2f" -"checksum soketto 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bceb1a3a15232d013d9a3b7cac9e5ce8e2313f348f01d4bc1097e5e53aa07095" -"checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" -"checksum sr-api-macros 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum sr-arithmetic 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum sr-io 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum sr-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum sr-staking-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum sr-std 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum sr-version 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-authority-discovery 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-authorship 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-balances 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-executive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-finality-tracker 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-im-online 0.1.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-indices 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-offences 1.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-randomness-collective-flip 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-staking 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-staking-reward-curve 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-sudo 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-support 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-support-procedural 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-support-procedural-tools 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-support-procedural-tools-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-system 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-system-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-timestamp 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-transaction-payment 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum srml-transaction-payment-rpc-runtime-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" -"checksum static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" -"checksum stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8131256a5896cabcf5eb04f4d6dacbe1aefda854b0d9896e09cb58829ec5638c" -"checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" -"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -"checksum structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf" -"checksum structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e" -"checksum strum 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5d1c33039533f051704951680f1adfd468fd37ac46816ded0d9ee068e60f05f" -"checksum strum_macros 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47cd23f5c7dee395a00fa20135e2ec0fffcdfa151c56182966d7a3261343432e" -"checksum substrate-application-crypto 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-authority-discovery 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-authority-discovery-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-basic-authorship 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-bip39 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3be511be555a3633e71739a79e4ddff6a6aaa6579fa6114182a51d72c3eb93c5" -"checksum substrate-chain-spec 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-chain-spec-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-cli 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-client 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-client-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-common-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-consensus-babe 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-consensus-babe-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-consensus-common 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-consensus-slots 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-consensus-uncles 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-content-working-group-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-debug-derive 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-executor 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-externalities 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-finality-grandpa 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-finality-grandpa-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-forum-module 1.1.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-governance-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-header-metadata 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-hiring-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-inherents 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-keyring 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-keystore 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-membership-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-memo-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-network 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-offchain 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-offchain-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-panic-handler 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-peerset 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-phragmen 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-primitives-storage 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-recurring-reward-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-roles-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-rpc 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-rpc-api 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-rpc-primitives 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-rpc-servers 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-serializer 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-service 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-service-discovery-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-session 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-stake-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-state-db 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-state-machine 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-storage-module 1.0.0 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-telemetry 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-token-mint-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-transaction-graph 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-transaction-pool 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-trie 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum substrate-versioned-store 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-versioned-store-permissions-module 1.0.1 (git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0)" = "" -"checksum substrate-wasm-builder-runner 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e30c70de7e7d5fd404fe26db1e7a4d6b553e2760b1ac490f249c04a960c483b8" -"checksum substrate-wasm-interface 2.0.0 (git+https://github.com/paritytech/substrate.git?rev=c37bb08535c49a12320af7facfd555ce05cce2e8)" = "" -"checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" -"checksum subtle 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c65d530b10ccaeac294f349038a597e435b18fb456aadd0840a623f83b9e941" -"checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" -"checksum syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859" -"checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" -"checksum sysinfo 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4b2468c629cffba39c0a4425849ab3cdb03d9dfacba69684609aea04d08ff9" -"checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" -"checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" -"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" -"checksum termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" -"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" -"checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" -"checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" -"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" -"checksum tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c5676413eaeb1ea35300a0224416f57abc3bd251657e0fafc12c47ff98c060" -"checksum tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2" -"checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" -"checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" -"checksum tokio-codec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b" -"checksum tokio-current-thread 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e" -"checksum tokio-dns-unofficial 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "82c65483db54eb91b4ef3a9389a3364558590faf30ce473141707c0e16fda975" -"checksum tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" -"checksum tokio-fs 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4" -"checksum tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" -"checksum tokio-reactor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" -"checksum tokio-rustls 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2d7cf08f990090abd6c6a73cab46fed62f85e8aef8b99e4b918a9f4a637f0676" -"checksum tokio-sync 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" -"checksum tokio-tcp 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" -"checksum tokio-threadpool 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89" -"checksum tokio-timer 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296" -"checksum tokio-udp 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82" -"checksum tokio-uds 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5076db410d6fdc6523df7595447629099a1fdc47b3d9f896220780fa48faf798" -"checksum toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a" -"checksum trie-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0b62d27e8aa1c07414549ac872480ac82380bab39e730242ab08d82d7cc098a" -"checksum trie-root 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b779f7c1c8fe9276365d9d5be5c4b5adeacf545117bb3f64c974305789c5c0b" -"checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" -"checksum twofish 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d261e83e727c8e2dbb75dacac67c36e35db36a958ee504f2164fc052434e1" -"checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56" -"checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9" -"checksum uint 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e75a4cdd7b87b28840dba13c483b9a88ee6bbf16ba5c951ee1ecfcf723078e0d" -"checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" -"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" -"checksum unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4" -"checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" -"checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" -"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" -"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" -"checksum unsigned-varint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f0023a96687fe169081e8adce3f65e3874426b7886e9234d490af2dc077959" -"checksum unsigned-varint 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f38e01ad4b98f042e166c1bf9a13f9873a99d79eaa171ce7ca81e6dd0f895d8a" -"checksum untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60369ef7a31de49bcb3f6ca728d4ba7300d9a1658f94c727d4cab8c8d9f4aece" -"checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" -"checksum url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb" -"checksum vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168" -"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" -"checksum vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba" -"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" -"checksum version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" -"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" -"checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" -"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" -"checksum wasm-bindgen 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "3557c397ab5a8e347d434782bcd31fc1483d927a6826804cec05cc792ee2519d" -"checksum wasm-bindgen-backend 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "e0da9c9a19850d3af6df1cb9574970b566d617ecfaf36eb0b706b6f3ef9bd2f8" -"checksum wasm-bindgen-futures 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c" -"checksum wasm-bindgen-macro 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "0f6fde1d36e75a714b5fe0cffbb78978f222ea6baebb726af13c78869fdb4205" -"checksum wasm-bindgen-macro-support 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "25bda4168030a6412ea8a047e27238cadf56f0e53516e1e83fec0a8b7c786f6d" -"checksum wasm-bindgen-shared 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "fc9f36ad51f25b0219a3d4d13b90eb44cd075dff8b6280cca015775d7acaddd8" -"checksum wasm-timer 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa3e01d234bb71760e685cfafa5e2c96f8ad877c161a721646356651069e26ac" -"checksum wasmi 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f31d26deb2d9a37e6cfed420edce3ed604eab49735ba89035e13c98f9a528313" -"checksum wasmi-validation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc0356e3df56e639fc7f7d8a99741915531e27ed735d911ed83d7e1339c8188" -"checksum web-sys 0.3.36 (registry+https://github.com/rust-lang/crates.io-index)" = "721c6263e2c66fd44501cc5efbfa2b7dfa775d13e4ea38c46299646ed1f9c70a" -"checksum webpki 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1f50e1972865d6b1adb54167d1c8ed48606004c2c9d0ea5f1eeb34d95e863ef" -"checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" -"checksum webpki-roots 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4" -"checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164" -"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" -"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" -"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -"checksum winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" -"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -"checksum ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a2c47b5798ccc774ffb93ff536aec7c4275d722fd9c740c83cdd1af1f2d94" -"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -"checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538" -"checksum xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" -"checksum yamux 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2758f29014c1cb7a6e74c1b1160ac8c8203be342d35b73462fc6a13cc6385423" -"checksum zeroize 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4090487fa66630f7b166fba2bbb525e247a5449f41c468cc1d98f8ae6ac03120" -"checksum zeroize 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86" -"checksum zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3cbac2ed2ba24cc90f5e06485ac8c7c1e5449fe8911aef4d8877218af021a5b8" -"checksum zeroize_derive 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de251eec69fc7c1bc3923403d18ececb929380e016afe103da75f396704f8ca2" diff --git a/node/Cargo.toml b/node/Cargo.toml index 023417ebf0..12aa4b4890 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -32,12 +32,7 @@ hex = '0.4' [dependencies.node-runtime] package = 'joystream-node-runtime' -git = 'https://github.com/joystream/substrate-runtime-joystream' -tag = 'v6.8.0' -# rev = '620094ef5f393180284aab2e5516f854694f009b' # development branch: v6.8.0 -# branch = 'development' -# local development... -# path = '/Users/mokhtar/joystream/runtime' +path = '../runtime' [dependencies.substrate-basic-authorship] git = 'https://github.com/paritytech/substrate.git' @@ -157,8 +152,5 @@ rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' version = '0.13.2' default-features = false -[profile.release] -panic = 'unwind' - [build-dependencies] vergen = '3' diff --git a/node/chain-spec-builder/Cargo.lock b/node/chain-spec-builder/Cargo.lock deleted file mode 100644 index 5eb302a58a..0000000000 --- a/node/chain-spec-builder/Cargo.lock +++ /dev/null @@ -1,6258 +0,0 @@ -# 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.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7b8a9123b8027467bce0099fe556c628a53c8d83df0507084c31e9ba2e39aff" - -[[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.16", -] - -[[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.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad235dabf00f36301792cfe82499880ba54c6486be094d1047b02bacb67c14e8" -dependencies = [ - "backtrace-sys", - "cfg-if", - "libc", - "rustc-demangle", -] - -[[package]] -name = "backtrace-sys" -version = "0.1.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca797db0057bae1a7aa2eef3283a874695455cecf08a43bfb8507ee0ebc1ed69" -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.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" - -[[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.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f359dc14ff8911330a51ef78022d376f25ed00248912803b58f00cb1c27f742" - -[[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.11", -] - -[[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.11", -] - -[[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 = "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 = "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.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "807e5847c39ad6a11eac66de492ed1406f76a260eb8656e8740cad9eabc69c27" - -[[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.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7d80305c9bd8cd78e3c753eb9fb110f83621e5211f1a3afffcc812b104daf9" -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.9", - "quote 1.0.3", - "syn 1.0.16", - "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.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f" -dependencies = [ - "cfg-if", - "crc32fast", - "futures 0.1.29", - "libc", - "libz-sys", - "miniz_oxide", - "tokio-io", -] - -[[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 = "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.11", - "proc-macro2 1.0.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.11", - "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.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" -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.11", -] - -[[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.11", -] - -[[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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.2" -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.8.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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-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.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" -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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.67" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018" - -[[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.9", - "syn 1.0.16", - "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.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" -dependencies = [ - "rustc_version", -] - -[[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 = "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 = "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.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da4dc79f9e6c81bef96148c8f6b8e72ad4541caa4a24373e900a36da07de03a3" -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 = "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.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f509c5e67ca0605ee17dcd3f91ef41cadd685c75a298fb6261b781a5acb3f910" -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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63e1afe738d71b1ebab5f1207c055054015427dbfc7bbe9ee1266894156ec046" -dependencies = [ - "paste-impl", - "proc-macro-hack 0.5.11", -] - -[[package]] -name = "paste-impl" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d4dc4a7f6f743211c5aab239640a65091535d97d43d92a52bca435a640892bb" -dependencies = [ - "proc-macro-hack 0.5.11", - "proc-macro2 1.0.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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 = "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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" -dependencies = [ - "proc-macro2 1.0.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" - -[[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.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" -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.9", -] - -[[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.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8900ebc1363efa7ea1c399ccc32daed870b4002651e0bed86e72d501ebbe0048" -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.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "741ba1704ae21999c00942f9f5944f801e977f54302af346b596287599ad1862" -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.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" -dependencies = [ - "proc-macro2 1.0.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[package]] -name = "serde_json" -version = "1.0.48" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25" -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#107848e7ded5e80dc43f6296c2b96039eb92c0a5" -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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.9", - "quote 1.0.3", - "sr-api-macros", - "srml-support-procedural-tools", - "syn 1.0.16", -] - -[[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.9", - "quote 1.0.3", - "srml-support-procedural-tools-derive", - "syn 1.0.16", -] - -[[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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec", - "serde", - "sr-primitives", - "sr-std", - "srml-support", - "srml-system", - "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.9", - "quote 1.0.3", - "syn 1.0.16", -] - -[[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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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", -] - -[[package]] -name = "substrate-governance-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec", - "serde", - "sr-primitives", - "sr-std", - "srml-support", - "srml-system", - "srml-timestamp", - "substrate-common-module", - "substrate-membership-module", - "substrate-primitives", -] - -[[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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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-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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec", - "serde", - "sr-primitives", - "sr-std", - "srml-support", - "srml-system", - "srml-timestamp", - "substrate-common-module", - "substrate-primitives", -] - -[[package]] -name = "substrate-memo-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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-recurring-reward-module" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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-token-mint-module", -] - -[[package]] -name = "substrate-roles-module" -version = "1.0.0" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec", - "serde", - "sr-primitives", - "sr-std", - "srml-support", - "srml-system", - "substrate-common-module", - "substrate-membership-module", -] - -[[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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec", - "serde", - "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 = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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", -] - -[[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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -dependencies = [ - "parity-scale-codec", - "serde", - "sr-primitives", - "sr-std", - "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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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", -] - -[[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" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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", -] - -[[package]] -name = "substrate-versioned-store-permissions-module" -version = "1.0.1" -source = "git+https://github.com/joystream/substrate-runtime-joystream?tag=v6.8.0#251840fee6c8f29792dec6b1e11dc0406132d176" -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-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.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859" -dependencies = [ - "proc-macro2 1.0.9", - "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.9", - "quote 1.0.3", - "syn 1.0.16", - "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 = "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.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3557c397ab5a8e347d434782bcd31fc1483d927a6826804cec05cc792ee2519d" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0da9c9a19850d3af6df1cb9574970b566d617ecfaf36eb0b706b6f3ef9bd2f8" -dependencies = [ - "bumpalo", - "lazy_static", - "log", - "proc-macro2 1.0.9", - "quote 1.0.3", - "syn 1.0.16", - "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.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f6fde1d36e75a714b5fe0cffbb78978f222ea6baebb726af13c78869fdb4205" -dependencies = [ - "quote 1.0.3", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25bda4168030a6412ea8a047e27238cadf56f0e53516e1e83fec0a8b7c786f6d" -dependencies = [ - "proc-macro2 1.0.9", - "quote 1.0.3", - "syn 1.0.16", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc9f36ad51f25b0219a3d4d13b90eb44cd075dff8b6280cca015775d7acaddd8" - -[[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.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721c6263e2c66fd44501cc5efbfa2b7dfa775d13e4ea38c46299646ed1f9c70a" -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.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" -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.9", - "quote 1.0.3", - "syn 1.0.16", - "synstructure", -] diff --git a/node/chain-spec-builder/Cargo.toml b/utils/chain-spec-builder/Cargo.toml similarity index 93% rename from node/chain-spec-builder/Cargo.toml rename to utils/chain-spec-builder/Cargo.toml index 8872edf95f..fb344bad93 100644 --- a/node/chain-spec-builder/Cargo.toml +++ b/utils/chain-spec-builder/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate/" ansi_term = "0.12.1" rand = "0.7.2" structopt = "0.3.5" -joystream-node = { version = "2.1.2", path = "../" } +joystream-node = { version = "2.1.2", path = "../../node" } [dependencies.sr-keystore] git = 'https://github.com/paritytech/substrate.git' diff --git a/node/chain-spec-builder/build.rs b/utils/chain-spec-builder/build.rs similarity index 100% rename from node/chain-spec-builder/build.rs rename to utils/chain-spec-builder/build.rs diff --git a/node/chain-spec-builder/src/main.rs b/utils/chain-spec-builder/src/main.rs similarity index 100% rename from node/chain-spec-builder/src/main.rs rename to utils/chain-spec-builder/src/main.rs From 1fce5d2649d64c3744c46ba8602c9760653d4d99 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 03:08:37 +0400 Subject: [PATCH 322/350] configure profile in root package --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 62ef6a5869..f2195200f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,3 +20,6 @@ members = [ "utils/chain-spec-builder/" ] +[profile.release] +# Substrate runtime requires unwinding. +panic = "unwind" \ No newline at end of file From 999b1627af07366c46281937150d2e90943520f6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 03:09:27 +0400 Subject: [PATCH 323/350] remove unnecessary steps in setup.sh --- setup.sh | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/setup.sh b/setup.sh index 8e0f5cf287..3d90874871 100755 --- a/setup.sh +++ b/setup.sh @@ -2,18 +2,10 @@ set -e -# Install OS dependencies +# If OS is supported will install: +# - build tools and any other dependencies required for rust +# - rustup - rust insaller +# - rust compiler and toolchains +# - skips installing substrate and subkey curl https://getsubstrate.io -sSf | bash -s -- --fast -echo "*** Initialising WASM build environment" - -if [ -z $CI_PROJECT_NAME ] ; then - rustup update nightly - rustup update stable -fi - -rustup target add wasm32-unknown-unknown --toolchain nightly - -# Install wasm-gc. It's useful for stripping slimming down wasm binaries. -command -v wasm-gc || \ - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force From 187f05853b730418feff7d57553b315997a21398 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 03:23:58 +0400 Subject: [PATCH 324/350] udpate .gitignore files --- .gitignore | 3 ++- node/.gitignore | 11 ----------- 2 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 node/.gitignore diff --git a/.gitignore b/.gitignore index 2d38b3a5a7..58b9ee32cb 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,5 @@ joystream_runtime.wasm # Vim .*.sw* -**/Cargo.lock \ No newline at end of file +# Visual Studio Code +.vscode diff --git a/node/.gitignore b/node/.gitignore deleted file mode 100644 index 8b81eb1741..0000000000 --- a/node/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -# Generated by Cargo -# will have compiled files and executables -**/target/ - -# These are backup files generated by rustfmt -**/*.rs.bk - -# JetBrains IDEs -.idea - -substrate-runtime-joystream From 4c4b986217adff972095e4b64e64cfc232a0441b Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 03:24:13 +0400 Subject: [PATCH 325/350] include Cargo.lock now that we have binaries --- Cargo.lock | 6360 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 6360 insertions(+) create mode 100644 Cargo.lock diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000000..cc4b914ad6 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,6360 @@ +# 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.16", +] + +[[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.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad235dabf00f36301792cfe82499880ba54c6486be094d1047b02bacb67c14e8" +dependencies = [ + "backtrace-sys", + "cfg-if", + "libc", + "rustc-demangle", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca797db0057bae1a7aa2eef3283a874695455cecf08a43bfb8507ee0ebc1ed69" +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.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a993f74b4c99c1908d156b8d2e0fb6277736b0ecbd833982fd1241d39b2766a6" + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f359dc14ff8911330a51ef78022d376f25ed00248912803b58f00cb1c27f742" + +[[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.12", +] + +[[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.12", +] + +[[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 = "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.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd7d80305c9bd8cd78e3c753eb9fb110f83621e5211f1a3afffcc812b104daf9" +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.9", + "quote 1.0.3", + "syn 1.0.16", + "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.12", + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.12", + "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.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" +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.12", +] + +[[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.12", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.3" +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.8.1" +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-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.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cb931d43e71f560c81badb0191596562bafad2be06a3f9025b845c847c60df5" +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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "syn 1.0.16", + "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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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 = "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.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f509c5e67ca0605ee17dcd3f91ef41cadd685c75a298fb6261b781a5acb3f910" +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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e1afe738d71b1ebab5f1207c055054015427dbfc7bbe9ee1266894156ec046" +dependencies = [ + "paste-impl", + "proc-macro-hack 0.5.12", +] + +[[package]] +name = "paste-impl" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d4dc4a7f6f743211c5aab239640a65091535d97d43d92a52bca435a640892bb" +dependencies = [ + "proc-macro-hack 0.5.12", + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f918f2b601f93baa836c1c2945faef682ba5b6d4828ecb45eeb7cc3c71b811b4" +dependencies = [ + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435" +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.9", +] + +[[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.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8900ebc1363efa7ea1c399ccc32daed870b4002651e0bed86e72d501ebbe0048" +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.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "741ba1704ae21999c00942f9f5944f801e977f54302af346b596287599ad1862" +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.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" +dependencies = [ + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[package]] +name = "serde_json" +version = "1.0.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25" +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#107848e7ded5e80dc43f6296c2b96039eb92c0a5" +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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "sr-api-macros", + "srml-support-procedural-tools", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "srml-support-procedural-tools-derive", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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.9", + "quote 1.0.3", + "syn 1.0.16", +] + +[[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", +] + +[[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-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.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859" +dependencies = [ + "proc-macro2 1.0.9", + "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.9", + "quote 1.0.3", + "syn 1.0.16", + "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.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3557c397ab5a8e347d434782bcd31fc1483d927a6826804cec05cc792ee2519d" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0da9c9a19850d3af6df1cb9574970b566d617ecfaf36eb0b706b6f3ef9bd2f8" +dependencies = [ + "bumpalo", + "lazy_static", + "log", + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", + "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.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f6fde1d36e75a714b5fe0cffbb78978f222ea6baebb726af13c78869fdb4205" +dependencies = [ + "quote 1.0.3", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25bda4168030a6412ea8a047e27238cadf56f0e53516e1e83fec0a8b7c786f6d" +dependencies = [ + "proc-macro2 1.0.9", + "quote 1.0.3", + "syn 1.0.16", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc9f36ad51f25b0219a3d4d13b90eb44cd075dff8b6280cca015775d7acaddd8" + +[[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.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "721c6263e2c66fd44501cc5efbfa2b7dfa775d13e4ea38c46299646ed1f9c70a" +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.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" +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.9", + "quote 1.0.3", + "syn 1.0.16", + "synstructure", +] From 630fd878109af30d5c55f203a5c129b49aee81ba Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 19:00:08 +0400 Subject: [PATCH 326/350] update travis to test runtime and build joystream-node --- .travis.yml | 100 +++++++++++++++++++++++++++++++++++++++-------- node/.travis.yml | 89 ----------------------------------------- 2 files changed, 84 insertions(+), 105 deletions(-) delete mode 100644 node/.travis.yml diff --git a/.travis.yml b/.travis.yml index 8667c5f4f2..77a88988ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,23 +1,91 @@ language: rust rust: - - 1.41.1 -# 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 + - 1.42.0 -before_script: - - rustup component add rustfmt --toolchain 1.41.1-x86_64-unknown-linux-gnu - - rustup update nightly - - rustup target add wasm32-unknown-unknown --toolchain nightly - - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force +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 -script: - # Ensure all checked in code is cargo-fmt'ed +before_install: + - rustup component add rustfmt - cargo fmt --all -- --check - # Native build and unit tests check + # Tests do not depend on nightly or was targets. We do them + # here so the arm build doesn't proceed unless tests pass - cargo test --verbose --all - # WASM build check - - cargo build + +install: + - | + if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ] + then + docker pull joystream/rust-raspberry + else + rustup update nightly + rustup target add ${TARGET} + rustup target add wasm32-unknown-unknown --toolchain nightly + fi + +script: + - | + 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/node/.travis.yml b/node/.travis.yml deleted file mode 100644 index 1df1126bc1..0000000000 --- a/node/.travis.yml +++ /dev/null @@ -1,89 +0,0 @@ -language: rust - -rust: - - 1.41.1 - -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 - -install: - - | - if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ] - then - docker pull joystream/rust-raspberry - else - rustup update nightly - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly - rustup show - fi - -script: - - | - 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 From c1dd4302533d4a8b181a6c44dc63115a42c2e50d Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 19:21:03 +0400 Subject: [PATCH 327/350] travis: keep rust 1.41.1 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 77a88988ff..5a3f756d98 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: rust rust: - - 1.42.0 + - 1.41.1 matrix: include: From 4319fc37345ed22cf200e10705312d1699b9e7bd Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 21 Mar 2020 19:37:16 +0400 Subject: [PATCH 328/350] travis: cargo test does require nightly --- .travis.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5a3f756d98..315c14c9ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,8 +16,9 @@ matrix: before_install: - rustup component add rustfmt - cargo fmt --all -- --check - # Tests do not depend on nightly or was targets. We do them - # here so the arm build doesn't proceed unless tests pass + - rustup default stable + - rustup update nightly + - rustup target add wasm32-unknown-unknown --toolchain nightly - cargo test --verbose --all install: @@ -25,10 +26,6 @@ install: if [ "$TARGET" = "arm-unknown-linux-gnueabihf" ] then docker pull joystream/rust-raspberry - else - rustup update nightly - rustup target add ${TARGET} - rustup target add wasm32-unknown-unknown --toolchain nightly fi script: From bc0b5115ff0a3a2400fc8a531eccb414eca4d703 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sun, 22 Mar 2020 23:18:48 +0400 Subject: [PATCH 329/350] reorganize scripts and docker files --- .dockerignore | 2 +- build-with-docker.sh | 20 ------------------- .../dockerfiles/node-and-runtime}/Dockerfile | 3 ++- .../node-and-runtime}/Dockerfile_experimental | 0 devops/dockerfiles/rust-builder/Dockerfile | 8 ++++++++ node/.dockerignore | 1 - node/README.md | 2 +- node/build-clean-start.sh | 5 ----- node/raspberry-cross-build.sh | 13 ------------ node/setup.sh | 19 ------------------ CHANGELOG.md => runtime/CHANGELOG.md | 3 +++ README.md => runtime/README.md | 0 banner_new.svg => runtime/banner_new.svg | 0 runtime_dockerfile | 12 ----------- scripts/build-joystream-node-docker-image.sh | 7 +++++++ scripts/build-rust-builder-docker-image.sh | 7 +++++++ scripts/compute-runtime-blob-hash.sh | 16 +++++++++++++++ scripts/raspberry-cross-build.sh | 19 ++++++++++++++++++ scripts/run-dev-chain-as-container.sh | 3 +++ scripts/run-dev-chain.sh | 10 ++++++++++ setup.sh | 7 +++++-- wasm_dockerfile | 10 ---------- 22 files changed, 82 insertions(+), 85 deletions(-) delete mode 100755 build-with-docker.sh rename {node => devops/dockerfiles/node-and-runtime}/Dockerfile (78%) rename {node => devops/dockerfiles/node-and-runtime}/Dockerfile_experimental (100%) create mode 100644 devops/dockerfiles/rust-builder/Dockerfile delete mode 100644 node/.dockerignore delete mode 100755 node/build-clean-start.sh delete mode 100644 node/raspberry-cross-build.sh delete mode 100755 node/setup.sh rename CHANGELOG.md => runtime/CHANGELOG.md (98%) rename README.md => runtime/README.md (100%) rename banner_new.svg => runtime/banner_new.svg (100%) delete mode 100644 runtime_dockerfile create mode 100755 scripts/build-joystream-node-docker-image.sh create mode 100755 scripts/build-rust-builder-docker-image.sh create mode 100755 scripts/compute-runtime-blob-hash.sh create mode 100755 scripts/raspberry-cross-build.sh create mode 100755 scripts/run-dev-chain-as-container.sh create mode 100755 scripts/run-dev-chain.sh delete mode 100644 wasm_dockerfile 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/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/node/Dockerfile b/devops/dockerfiles/node-and-runtime/Dockerfile similarity index 78% rename from node/Dockerfile rename to devops/dockerfiles/node-and-runtime/Dockerfile index e92cbc38ca..ed0a8c1ce3 100644 --- a/node/Dockerfile +++ b/devops/dockerfiles/node-and-runtime/Dockerfile @@ -1,5 +1,5 @@ FROM joystream/rust-builder AS builder -LABEL description="compiles and caches dependencies, artifacts and node" +LABEL description="Compiles all workspace artifacts" WORKDIR /joystream COPY . /joystream @@ -9,6 +9,7 @@ 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 diff --git a/node/Dockerfile_experimental b/devops/dockerfiles/node-and-runtime/Dockerfile_experimental similarity index 100% rename from node/Dockerfile_experimental rename to devops/dockerfiles/node-and-runtime/Dockerfile_experimental diff --git a/devops/dockerfiles/rust-builder/Dockerfile b/devops/dockerfiles/rust-builder/Dockerfile new file mode 100644 index 0000000000..6b0be39af4 --- /dev/null +++ b/devops/dockerfiles/rust-builder/Dockerfile @@ -0,0 +1,8 @@ +FROM liuchong/rustup:1.41.1 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/node/.dockerignore b/node/.dockerignore deleted file mode 100644 index 2f7896d1d1..0000000000 --- a/node/.dockerignore +++ /dev/null @@ -1 +0,0 @@ -target/ diff --git a/node/README.md b/node/README.md index d8d57b83e1..ba89cb525b 100644 --- a/node/README.md +++ b/node/README.md @@ -11,7 +11,7 @@ For setting up a full node and valiador review the [advanced guide from the help ## Binary releases -The latest pre build binaries can be downloads from the [releases](https://github.com/Joystream/substrate-node-joystream/releases) page. +The latest pre build binaries can be downloads from the [releases](https://github.com/Joystream/substrate-runtime-joystream/releases) page. ## Building from source diff --git a/node/build-clean-start.sh b/node/build-clean-start.sh deleted file mode 100755 index 17595d2909..0000000000 --- a/node/build-clean-start.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -cargo build -cargo run -- purge-chain --dev -cargo run -- --dev diff --git a/node/raspberry-cross-build.sh b/node/raspberry-cross-build.sh deleted file mode 100644 index ef74ff4e6d..0000000000 --- a/node/raspberry-cross-build.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -### Cross build for Raspberry Pi - using docker ### -docker pull joystream/rust-raspberry - -docker run \ - --volume ${PWD}/:/home/cross/project \ - --volume ${HOME}/.cargo/registry:/home/cross/.cargo/registry \ - joystream/rust-raspberry \ - build --release - -# output will be in project folder: -# target/arm-unknown-linux-gnueabihf/joystream-node diff --git a/node/setup.sh b/node/setup.sh deleted file mode 100755 index 97e4280f30..0000000000 --- a/node/setup.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -set -e - -# Install OS dependencies -curl https://getsubstrate.io -sSf | bash -s -- --fast - -echo "*** Initialising WASM build environment" - -if [ -z $CI_PROJECT_NAME ] ; then - rustup update nightly - rustup update stable -fi - -rustup target add wasm32-unknown-unknown --toolchain nightly - -# Install wasm-gc. It's useful for stripping slimming down wasm binaries. -command -v wasm-gc || \ - cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force \ No newline at end of file diff --git a/CHANGELOG.md b/runtime/CHANGELOG.md similarity index 98% rename from CHANGELOG.md rename to runtime/CHANGELOG.md index 44ee948855..72fbf612df 100644 --- a/CHANGELOG.md +++ b/runtime/CHANGELOG.md @@ -1,3 +1,6 @@ +### Version 6.9.1 +... + ### Version 6.8.0 (Rome release) - March 9th 2020 - New versioned and permissioned content mangement system that powers a new media experience. - Content Working Group - introduces staked content curator roles to maintain quality of content and ensure that is meets the platform's terms of service. diff --git a/README.md b/runtime/README.md similarity index 100% rename from README.md rename to runtime/README.md diff --git a/banner_new.svg b/runtime/banner_new.svg similarity index 100% rename from banner_new.svg rename to runtime/banner_new.svg diff --git a/runtime_dockerfile b/runtime_dockerfile deleted file mode 100644 index a8b9c820d3..0000000000 --- a/runtime_dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -# use toolchain image from: https://cloud.docker.com/repository/docker/mokhtargz/wasm-toolchain/general -FROM mokhtargz/wasm-toolchain -LABEL description="Joystream substrate runtime build" - -WORKDIR /runtime -COPY . /runtime -ENV TERM=xterm - -RUN rustup show - -# Build the runtime -RUN cargo test && cargo build --release diff --git a/scripts/build-joystream-node-docker-image.sh b/scripts/build-joystream-node-docker-image.sh new file mode 100755 index 0000000000..068642caef --- /dev/null +++ b/scripts/build-joystream-node-docker-image.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Build the node and runtime image +docker build --tag joystream/node \ + --file ./devops/dockerfiles/node-and-runtime/Dockerfile \ + . + diff --git a/scripts/build-rust-builder-docker-image.sh b/scripts/build-rust-builder-docker-image.sh new file mode 100755 index 0000000000..1b97661d04 --- /dev/null +++ b/scripts/build-rust-builder-docker-image.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Build the joystream/rust-builder image +docker build --tag joystream/rust-builder \ + --file ./devops/dockerfiles/rust-builder/Dockerfile \ + . + diff --git a/scripts/compute-runtime-blob-hash.sh b/scripts/compute-runtime-blob-hash.sh new file mode 100755 index 0000000000..c197fbce6d --- /dev/null +++ b/scripts/compute-runtime-blob-hash.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +# Create a non running container from joystream/node +docker create --name temp-container-joystream-node joystream/node + +# Copy the compiled wasm blob from the docker container to our host +docker cp temp-container-joystream-node:/joystream/runtime.compact.wasm joystream_runtime.wasm +docker rm temp-container-joystream-node + +# 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 +# TODO: add install of b2sum to setup.sh +b2sum -l 256 joystream_runtime.wasm +rm joystream_runtime.wasm diff --git a/scripts/raspberry-cross-build.sh b/scripts/raspberry-cross-build.sh new file mode 100755 index 0000000000..69b2665528 --- /dev/null +++ b/scripts/raspberry-cross-build.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +# Run this script from the crago workspace root + +# Cross compiles release build of joystream-node +# for Raspberry Pi - using docker + +# joystream/rust-raspberry image was built from: +# https://github.com/mnaamani/rust-on-raspberry-docker/commit/8536508b743d55c8573043c4082c62da3b4fd3e2 +docker pull joystream/rust-raspberry + +docker run \ + --volume ${PWD}/:/home/cross/project \ + --volume ${HOME}/.cargo/registry:/home/cross/.cargo/registry \ + joystream/rust-raspberry \ + build --release -p joystream-node + +# artifacts will be relative to the working directory: +# target/arm-unknown-linux-gnueabihf/joystream-node diff --git a/scripts/run-dev-chain-as-container.sh b/scripts/run-dev-chain-as-container.sh new file mode 100755 index 0000000000..2b23d631a2 --- /dev/null +++ b/scripts/run-dev-chain-as-container.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +docker run -p 9944:9944 joystream/node --dev --ws-external \ No newline at end of file diff --git a/scripts/run-dev-chain.sh b/scripts/run-dev-chain.sh new file mode 100755 index 0000000000..cd3310e77e --- /dev/null +++ b/scripts/run-dev-chain.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +# Build release binary +cargo build --release -p joystream-node + +# Purge existing local chain +yes | cargo run --release -p joystream-node -- purge-chain --dev + +# Run local development chain +cargo run --release -p joystream-node -- --dev diff --git a/setup.sh b/setup.sh index 3d90874871..32157661a0 100755 --- a/setup.sh +++ b/setup.sh @@ -3,9 +3,12 @@ set -e # If OS is supported will install: -# - build tools and any other dependencies required for rust +# - build tools and any other dependencies required for rust and substrate # - rustup - rust insaller # - rust compiler and toolchains # - skips installing substrate and subkey -curl https://getsubstrate.io -sSf | bash -s -- --fast +curl https://getsubstrate.io -sSf | bash -s -- --fast \ + && rustup component add rustfmt +# TODO: Install additional tools... +# - b2sum \ No newline at end of file diff --git a/wasm_dockerfile b/wasm_dockerfile deleted file mode 100644 index 435df0170f..0000000000 --- a/wasm_dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -FROM liuchong/rustup:1.41.1 AS builder -LABEL description="Joystream wasm toolchain image" - -ENV TERM=xterm - -WORKDIR /setup -COPY ./setup.sh /setup/ -ENV TERM=xterm - -RUN ./setup.sh From 2a532261d6216625f69b0173714b851dfc0f24e6 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Mon, 23 Mar 2020 14:54:59 +0400 Subject: [PATCH 330/350] update README --- README.md | 141 ++++++++++++++++++ .../using-docker/building-node-and-runtime.md | 40 +++++ node/README.md | 115 -------------- ...node_new.svg => validator-node-banner.svg} | 0 runtime/README.md | 92 ------------ .../{banner_new.svg => runtime-banner.svg} | 0 6 files changed, 181 insertions(+), 207 deletions(-) create mode 100644 README.md create mode 100644 docs/using-docker/building-node-and-runtime.md delete mode 100644 node/README.md rename node/{validator-node_new.svg => validator-node-banner.svg} (100%) delete mode 100644 runtime/README.md rename runtime/{banner_new.svg => runtime-banner.svg} (100%) diff --git a/README.md b/README.md new file mode 100644 index 0000000000..a2cf5663eb --- /dev/null +++ b/README.md @@ -0,0 +1,141 @@ +# Joystream + +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 repository is currently just a cargo workspace, but eventually will also contain yarn workspaces, and possibly other project type workspaces. + +## 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. + + +## Validator +![ Nodes for Joystream](./node/validator-node-banner.svg) + +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. + + +### Building from source + +Clone the repository and install build tools: + +```bash +git clone https://github.com/Joystream/substrate-runtime-joystream.git + +cd substrate-runtime-joystream/ + +./setup.sh +``` + +### Building + +```bash +cargo build --release +``` + +### Running a public node on the Rome testnet + +Run the node and connect to the public testnet. + +```bash +cargo run --release -- --chain ./rome-tesnet.json +``` + +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) + + +### 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 install joystream-node --path node/ +``` + +Now you can run + +```bash +joystream-node --chain rome-testnet.json +``` + +### Local development + +This will build and run a fresh new local development chain purging existing one: + +```bash +./scripts/run-dev-chain.sh +``` + +### Unit tests + +```bash +cargo test +``` + + +## Joystream Runtime + +![Joystream Runtime](./runtime/runtime-banner.svg) + + +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. + +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) + + +## 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. + +## License + +This project is licensed under the GPLv3 License - see the [LICENSE](LICENSE) file for details + +## 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/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/README.md b/node/README.md deleted file mode 100644 index ba89cb525b..0000000000 --- a/node/README.md +++ /dev/null @@ -1,115 +0,0 @@ -![ Nodes for Joystream](./validator-node_new.svg) - -# Joystream Full Node - -Joystream node built with [Substrate](https://github.com/paritytech/substrate). - -Follow the instructions below to download the software or build it from source. - -For setting up a full node and valiador review the [advanced guide from the helpdesk](https://github.com/Joystream/helpdesk/tree/master/roles/validators). - - -## Binary releases - -The latest pre build binaries can be downloads from the [releases](https://github.com/Joystream/substrate-runtime-joystream/releases) page. - - -## Building from source - -### Initial setup -If you want to build from source you will need the [Rust toolchain](https://rustup.rs/), openssl and llvm/libclang. You can install the required dependencies with: - -```bash -git clone https://github.com/Joystream/substrate-node-joystream.git -cd substrate-node-joystream/ -git checkout v2.1.2 -./setup.sh -``` - -If you are familiar with docker see the [building with docker section](#Docker). - -### Building - -```bash -cargo build --release -``` - -### Running a public node on the Rome testnet - -Run the node and connect to the public testnet. - -```bash -cargo run --release -- --chain ./rome-tesnet.json -``` - -The `rome-testnet.json` chain file can be ontained from the [release page](https://github.com/Joystream/substrate-node-joystream/releases/tag/v2.1.2) - - -### 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 install --path ./ -``` - -Now you can run - -```bash -joystream-node --chain rome-testnet.json -``` - -## Development - -### Running a local development node - -```bash -cargo run --release -- --dev -``` - -### Cleaning development chain data -When making changes to the runtime library remember to purge the chain after rebuilding the node to test the new runtime. - -```bash -cargo run --release -- purge-chain --dev -``` - -### 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/validator-node_new.svg b/node/validator-node-banner.svg similarity index 100% rename from node/validator-node_new.svg rename to node/validator-node-banner.svg diff --git a/runtime/README.md b/runtime/README.md deleted file mode 100644 index 70168f45de..0000000000 --- a/runtime/README.md +++ /dev/null @@ -1,92 +0,0 @@ -![Joystream Runtime](./banner_new.svg) - -# Joystream Runtime - -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 joystream runtime 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 - -## Getting Started - Building the WASM runtime - -```bash -# Clone repository -git clone https://github.com/Joystream/substrate-runtime-joystream -cd substrate-runtime-joystream/ - -# Install Pre-requisits -./setup.sh -cargo build --release -``` - -This produces the WASM "blob" output in: - -`target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm` - -See deployment for notes on how to deploy this runtime on a live system. - -## 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 `conesnsus::setCode()`. This can be done either from the UI/extrinsics app, or directly with an admin script. - -## Running the tests - -```bash -cargo test -``` - -## Coding style - -We use `rustfmt` to format the source code for consistency. - -[rustfmt](https://github.com/rust-lang/rustfmt) can be installed with rustup: - -``` -rustup component add rustfmt -``` - -Running rustfmt can be applied to all source files recursing subfolders: - -``` -rustfmt src/*.* -``` - -## 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. - -## Built With - -* [Substrate](https://github.com/paritytech/substrate) - -## 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. - -## 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) - - -## Authors - -See also the list of [contributors](./CONTRIBUTORS) who participated in this project. - -## License - -This project is licensed under the GPLv3 License - see the [LICENSE](LICENSE) file for details - -## 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/runtime/banner_new.svg b/runtime/runtime-banner.svg similarity index 100% rename from runtime/banner_new.svg rename to runtime/runtime-banner.svg From 2cb5391df2741ac7935b33c538cec2144bb6fa78 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Tue, 24 Mar 2020 10:51:02 +0400 Subject: [PATCH 331/350] bump traivs and docker files to use rust 1.42.0 --- .travis.yml | 2 +- devops/dockerfiles/rust-builder/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 315c14c9ef..5798a3f78a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: rust rust: - - 1.41.1 + - 1.42.0 matrix: include: diff --git a/devops/dockerfiles/rust-builder/Dockerfile b/devops/dockerfiles/rust-builder/Dockerfile index 6b0be39af4..26e35b69ab 100644 --- a/devops/dockerfiles/rust-builder/Dockerfile +++ b/devops/dockerfiles/rust-builder/Dockerfile @@ -1,4 +1,4 @@ -FROM liuchong/rustup:1.41.1 AS builder +FROM liuchong/rustup:1.42.0 AS builder LABEL description="Rust and WASM build environment for joystream and substrate" WORKDIR /setup From 7daf806ab7add9392c3ceaa83b342a116657d6e2 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 25 Mar 2020 21:26:31 +0400 Subject: [PATCH 332/350] content working group: added set_mint_capacity dispatchable and tests --- .../content-working-group/src/genesis.rs | 6 +- .../content-working-group/src/lib.rs | 45 ++++++++++++- .../content-working-group/src/mock.rs | 9 ++- .../content-working-group/src/tests.rs | 66 ++++++++++++++++++- 4 files changed, 119 insertions(+), 7 deletions(-) diff --git a/runtime-modules/content-working-group/src/genesis.rs b/runtime-modules/content-working-group/src/genesis.rs index fcc4a4396b..6cf74f39c1 100644 --- a/runtime-modules/content-working-group/src/genesis.rs +++ b/runtime-modules/content-working-group/src/genesis.rs @@ -43,11 +43,11 @@ pub struct GenesisConfigBuilder { } impl GenesisConfigBuilder { - /* - pub fn set_mint(mut self, mint: ::MintId) -> Self { - self.mint = mint; + pub fn with_mint_capacity(mut self, capacity: minting::BalanceOf) -> Self { + self.mint_capacity = capacity; self } + /* pub fn set_channel_handle_constraint(mut self, constraint: InputValidationLengthConstraint) -> Self { self.channel_description_constraint = constraint; self diff --git a/runtime-modules/content-working-group/src/lib.rs b/runtime-modules/content-working-group/src/lib.rs index b0c6aeea93..d8e2d8f81d 100755 --- a/runtime-modules/content-working-group/src/lib.rs +++ b/runtime-modules/content-working-group/src/lib.rs @@ -1080,7 +1080,9 @@ decl_event! { CuratorApplicationId = CuratorApplicationId, CuratorId = CuratorId, CuratorApplicationIdToCuratorIdMap = CuratorApplicationIdToCuratorIdMap, + MintBalanceOf = minting::BalanceOf, ::AccountId, + ::MintId, { ChannelCreated(ChannelId), ChannelOwnershipTransferred(ChannelId), @@ -1100,6 +1102,8 @@ decl_event! { CuratorRewardAccountUpdated(CuratorId, AccountId), ChannelUpdatedByCurationActor(ChannelId), ChannelCreationEnabledUpdated(bool), + MintCapacityIncreased(MintId, MintBalanceOf, MintBalanceOf), + MintCapacityDecreased(MintId, MintBalanceOf, MintBalanceOf), } } @@ -2022,7 +2026,11 @@ decl_module! { Self::deposit_event(RawEvent::ChannelCreationEnabledUpdated(enabled)); } - /// Add to capacity of current acive mint + /// Add to capacity of current acive mint. + /// This may be deprecated in the future, since set_mint_capacity is sufficient to + /// both increase and decrease capacity. Although when considering that it may be executed + /// by a proposal, given the temporal delay in approving a proposal, it might be more suitable + /// than set_mint_capacity? pub fn increase_mint_capacity( origin, additional_capacity: minting::BalanceOf @@ -2033,6 +2041,41 @@ decl_module! { let mint = >::mints(mint_id); // must exist let new_capacity = mint.capacity() + additional_capacity; let _ = >::set_mint_capacity(mint_id, new_capacity); + + Self::deposit_event(RawEvent::MintCapacityIncreased( + mint_id, additional_capacity, new_capacity + )); + } + + /// Sets the capacity of the current active mint + pub fn set_mint_capacity( + origin, + new_capacity: minting::BalanceOf + ) { + ensure_root(origin)?; + + let mint_id = Self::mint(); + + // Mint must exist - it is set at genesis + let mint = >::mints(mint_id); + + let current_capacity = mint.capacity(); + + if new_capacity != current_capacity { + // Cannot fail if mint exists + let _ = >::set_mint_capacity(mint_id, new_capacity); + + if new_capacity > current_capacity { + Self::deposit_event(RawEvent::MintCapacityIncreased( + mint_id, new_capacity - current_capacity, new_capacity + )); + } else { + Self::deposit_event(RawEvent::MintCapacityDecreased( + mint_id, current_capacity - new_capacity, new_capacity + )); + } + } + } } } diff --git a/runtime-modules/content-working-group/src/mock.rs b/runtime-modules/content-working-group/src/mock.rs index 3f2f4a57f3..d99e240cf2 100644 --- a/runtime-modules/content-working-group/src/mock.rs +++ b/runtime-modules/content-working-group/src/mock.rs @@ -68,7 +68,9 @@ pub type RawLibTestEvent = RawEvent< CuratorApplicationId, CuratorId, CuratorApplicationIdToCuratorIdMap, + minting::BalanceOf, ::AccountId, + ::MintId, >; pub fn get_last_event_or_panic() -> RawLibTestEvent { @@ -220,11 +222,13 @@ impl TestExternalitiesBuilder { self.membership_config = Some(membership_config); self } - pub fn set_content_wg_config(mut self, conteng_wg_config: GenesisConfig) -> Self { + */ + + pub fn with_content_wg_config(mut self, conteng_wg_config: GenesisConfig) -> Self { self.content_wg_config = Some(conteng_wg_config); self } - */ + pub fn build(self) -> runtime_io::TestExternalities { // Add system let mut t = self @@ -260,3 +264,4 @@ impl TestExternalitiesBuilder { pub type System = system::Module; pub type Balances = balances::Module; pub type ContentWorkingGroup = Module; +pub type Minting = minting::Module; diff --git a/runtime-modules/content-working-group/src/tests.rs b/runtime-modules/content-working-group/src/tests.rs index 03cc88e36d..cb177f3bfd 100644 --- a/runtime-modules/content-working-group/src/tests.rs +++ b/runtime-modules/content-working-group/src/tests.rs @@ -1,6 +1,6 @@ #![cfg(test)] -//use super::genesis; +use super::genesis; use super::mock::{self, *}; //use crate::membership; use hiring; @@ -2184,3 +2184,67 @@ pub fn generate_too_short_length_buffer(constraint: &InputValidationLengthConstr pub fn generate_too_long_length_buffer(constraint: &InputValidationLengthConstraint) -> Vec { generate_text((constraint.max() + 1) as usize) } + +#[test] +fn setting_mint_capacity() { + const MINT_CAPACITY: u64 = 50000; + + TestExternalitiesBuilder::::default() + .with_content_wg_config( + genesis::GenesisConfigBuilder::::default() + .with_mint_capacity(MINT_CAPACITY) + .build(), + ) + .build() + .execute_with(|| {}); +} + +#[test] +fn setting_mint_capacity() { + const MINT_CAPACITY: u64 = 50000; + + TestExternalitiesBuilder::::default() + .with_content_wg_config( + genesis::GenesisConfigBuilder::::default() + .with_mint_capacity(MINT_CAPACITY) + .build(), + ) + .build() + .execute_with(|| { + let mint_id = ContentWorkingGroup::mint(); + let mint = Minting::mints(mint_id); + assert_eq!(mint.capacity(), MINT_CAPACITY); + + // Decreasing mint capacity + let new_lower_capacity = 10000; + let decrease = MINT_CAPACITY - new_lower_capacity; + assert_ok!(ContentWorkingGroup::set_mint_capacity( + Origin::ROOT, + new_lower_capacity + )); + // Correct event after decreasing + assert_eq!( + get_last_event_or_panic(), + crate::RawEvent::MintCapacityDecreased(mint_id, decrease, new_lower_capacity) + ); + // Correct value of capacity after decreasing + let mint = Minting::mints(mint_id); + assert_eq!(mint.capacity(), new_lower_capacity); + + // Increasing mint capacity + let new_higher_capacity = 25000; + let increase = new_higher_capacity - mint.capacity(); + assert_ok!(ContentWorkingGroup::set_mint_capacity( + Origin::ROOT, + new_higher_capacity + )); + // Excpected event after increasing + assert_eq!( + get_last_event_or_panic(), + crate::RawEvent::MintCapacityIncreased(mint_id, increase, new_higher_capacity) + ); + // Excpected value of capacity after increasing + let mint = Minting::mints(mint_id); + assert_eq!(mint.capacity(), new_higher_capacity); + }); +} From 06b397fa0f649d443ed96eeac71142cd5593076a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 25 Mar 2020 21:44:36 +0400 Subject: [PATCH 333/350] content working group: test for increase_mint_capacity --- .../content-working-group/src/tests.rs | 24 +++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/runtime-modules/content-working-group/src/tests.rs b/runtime-modules/content-working-group/src/tests.rs index cb177f3bfd..8d8f6f8198 100644 --- a/runtime-modules/content-working-group/src/tests.rs +++ b/runtime-modules/content-working-group/src/tests.rs @@ -2186,7 +2186,7 @@ pub fn generate_too_long_length_buffer(constraint: &InputValidationLengthConstra } #[test] -fn setting_mint_capacity() { +fn increasing_mint_capacity() { const MINT_CAPACITY: u64 = 50000; TestExternalitiesBuilder::::default() @@ -2196,7 +2196,27 @@ fn setting_mint_capacity() { .build(), ) .build() - .execute_with(|| {}); + .execute_with(|| { + let mint_id = ContentWorkingGroup::mint(); + let mint = Minting::mints(mint_id); + assert_eq!(mint.capacity(), MINT_CAPACITY); + + let increase = 25000; + // Increasing mint capacity + let expected_new_capacity = MINT_CAPACITY + increase; + assert_ok!(ContentWorkingGroup::increase_mint_capacity( + Origin::ROOT, + increase + )); + // Excpected event after increasing + assert_eq!( + get_last_event_or_panic(), + crate::RawEvent::MintCapacityIncreased(mint_id, increase, expected_new_capacity) + ); + // Excpected value of capacity after increasing + let mint = Minting::mints(mint_id); + assert_eq!(mint.capacity(), expected_new_capacity); + }); } #[test] From 3254ef1a1b38179739c6c65b844c3805c007a525 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Wed, 25 Mar 2020 21:45:00 +0400 Subject: [PATCH 334/350] bumpp runtime spec 9 since we added methods to the public api --- Cargo.lock | 2 +- runtime/Cargo.toml | 2 +- runtime/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc4b914ad6..eea76befb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1599,7 +1599,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "6.8.1" +version = "6.9.0" dependencies = [ "parity-scale-codec", "safe-mix", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 25c158357d..6ff953659c 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -5,7 +5,7 @@ edition = '2018' name = 'joystream-node-runtime' # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1 # {Authoring}.{Spec}.{Impl} of the RuntimeVersion -version = '6.8.1' +version = '6.9.0' [features] default = ['std'] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index d8ed411c8c..92c4bbb9f0 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -115,7 +115,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("joystream-node"), impl_name: create_runtime_str!("joystream-node"), authoring_version: 6, - spec_version: 8, + spec_version: 9, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; From 0ad43e5cf9fa3d074c3a5dbedcf78780a09ca5be Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 26 Mar 2020 17:46:20 +0400 Subject: [PATCH 335/350] council election: set_election_parameters() replacing individual calls for each parameter --- runtime-modules/governance/src/election.rs | 130 +++++++++++------- .../governance/src/election_params.rs | 45 ++++++ runtime-modules/governance/src/lib.rs | 1 + 3 files changed, 128 insertions(+), 48 deletions(-) create mode 100644 runtime-modules/governance/src/election_params.rs diff --git a/runtime-modules/governance/src/election.rs b/runtime-modules/governance/src/election.rs index 7e8c5dcf82..0c82a1def9 100644 --- a/runtime-modules/governance/src/election.rs +++ b/runtime-modules/governance/src/election.rs @@ -14,6 +14,7 @@ use super::sealed_vote::SealedVote; use super::stake::Stake; use super::council; +use crate::election_params::{self, ElectionParameters}; pub use common::currency::{BalanceOf, GovernanceCurrency}; pub trait Trait: @@ -24,6 +25,8 @@ pub trait Trait: type CouncilElected: CouncilElected>, Self::BlockNumber>; } +pub static MSG_CANNOT_CHANGE_PARAMS_DURING_ELECTION: &str = "CannotChangeParamsDuringElection"; + #[derive(Clone, Copy, Encode, Decode)] pub enum ElectionStage { Announcing(BlockNumber), @@ -106,8 +109,23 @@ decl_storage! { // TODO value type of this map looks scary, is there any way to simplify the notation? Votes get(votes): map T::Hash => SealedVote, T::Hash, T::AccountId>; - // Current Election Parameters - default "zero" values are not meaningful. Running an election without - // settings reasonable values is a bad idea. Parameters can be set in the TriggerElection hook. + // Current Election Parameters. + // Should we replace all the individual values with a single ElectionParameters type? + // Having them individually makes it more flexible to add and remove new parameters in future + // without dealing with migration issues. + + // We don't currently handle zero periods, zero council term, zero council size and candidacy + // limit in any special way. The behaviour in such cases: + // Setting any period to 0 will mean the election getting stuck in that stage, until force changing + // the state. + // Council Size of 0 - no limit to size of council, all applicants that move beyond + // announcing stage would become council members, so effectively the candidacy limit will + // be the size of the council, voting and revealing have no impact on final results. + // If candidacy limit is zero and council size > 0, council_size number of applicants will reach the voting stage. + // and become council members, voting will have no impact on final results. + // If both candidacy limit and council size are zero then all applicant become council members + // since no filtering occurs at end of announcing stage. + // We only guard against these edge cases in the set_election_parameters() call. AnnouncingPeriod get(announcing_period) config(): T::BlockNumber = T::BlockNumber::from(100); VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::from(100); RevealingPeriod get(revealing_period) config(): T::BlockNumber = T::BlockNumber::from(100); @@ -195,7 +213,7 @@ impl Module { // Take snapshot of seat and backing stakes of an existing council // Its important to note that the election system takes ownership of these stakes, and is responsible - // to return any unused stake to original owners and the end of the election. + // to return any unused stake to original owners at the end of the election. Self::initialize_transferable_stakes(current_council); Self::deposit_event(RawEvent::ElectionStarted()); @@ -803,52 +821,19 @@ decl_module! { >::put(ElectionStage::Voting(ends_at)); } - fn set_param_announcing_period(origin, period: T::BlockNumber) { - ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!period.is_zero(), "period cannot be zero"); - >::put(period); - } - fn set_param_voting_period(origin, period: T::BlockNumber) { - ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!period.is_zero(), "period cannot be zero"); - >::put(period); - } - fn set_param_revealing_period(origin, period: T::BlockNumber) { - ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!period.is_zero(), "period cannot be zero"); - >::put(period); - } - fn set_param_min_council_stake(origin, amount: BalanceOf) { - ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - >::put(amount); - } - fn set_param_new_term_duration(origin, duration: T::BlockNumber) { + fn set_election_parameters(origin, params: ElectionParameters, T::BlockNumber>) { ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(!duration.is_zero(), "new term duration cannot be zero"); - >::put(duration); - } - fn set_param_council_size(origin, council_size: u32) { - ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(council_size > 0, "council size cannot be zero"); - ensure!(council_size <= Self::candidacy_limit(), "council size cannot greater than candidacy limit"); - CouncilSize::put(council_size); - } - fn set_param_candidacy_limit(origin, limit: u32) { - ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - ensure!(limit >= Self::council_size(), "candidacy limit cannot be less than council size"); - CandidacyLimit::put(limit); - } - fn set_param_min_voting_stake(origin, amount: BalanceOf) { - ensure_root(origin)?; - ensure!(!Self::is_election_running(), "cannot change params during election"); - >::put(amount); + ensure!(!Self::is_election_running(), MSG_CANNOT_CHANGE_PARAMS_DURING_ELECTION); + params.ensure_valid()?; + + >::put(params.announcing_period); + >::put(params.voting_period); + >::put(params.revealing_period); + >::put(params.min_council_stake); + >::put(params.new_term_duration); + CouncilSize::put(params.council_size); + CandidacyLimit::put(params.candidacy_limit); + >::put(params.min_voting_stake); } fn force_stop_election(origin) { @@ -2042,4 +2027,53 @@ mod tests { assert_ok!(Election::start_election(vec![])); }); } + + #[test] + fn setting_election_parameters() { + initial_test_ext().execute_with(|| { + let default_parameters: ElectionParameters = ElectionParameters::default(); + // default all zeros is invalid + assert!(default_parameters.ensure_valid().is_err()); + + let new_parameters = ElectionParameters { + announcing_period: 1, + voting_period: 2, + revealing_period: 3, + council_size: 4, + candidacy_limit: 5, + min_voting_stake: 6, + min_council_stake: 7, + new_term_duration: 8, + }; + + assert_ok!(Election::set_election_parameters( + Origin::ROOT, + new_parameters + )); + + assert_eq!( + >::get(), + new_parameters.announcing_period + ); + assert_eq!(>::get(), new_parameters.voting_period); + assert_eq!( + >::get(), + new_parameters.revealing_period + ); + assert_eq!( + >::get(), + new_parameters.min_council_stake + ); + assert_eq!( + >::get(), + new_parameters.new_term_duration + ); + assert_eq!(CouncilSize::get(), new_parameters.council_size); + assert_eq!(CandidacyLimit::get(), new_parameters.candidacy_limit); + assert_eq!( + >::get(), + new_parameters.min_voting_stake + ); + }); + } } diff --git a/runtime-modules/governance/src/election_params.rs b/runtime-modules/governance/src/election_params.rs new file mode 100644 index 0000000000..99d4404b49 --- /dev/null +++ b/runtime-modules/governance/src/election_params.rs @@ -0,0 +1,45 @@ +use codec::{Decode, Encode}; +use sr_primitives::traits::Zero; +use srml_support::{dispatch::Result, ensure}; + +pub static MSG_PERIOD_CANNOT_BE_ZERO: &str = "PeriodCannotBeZero"; +pub static MSG_COUNCIL_SIZE_CANNOT_BE_ZERO: &str = "CouncilSizeCannotBeZero"; +pub static MSG_CANDIDACY_LIMIT_WAS_LOWER_THAN_COUNCIL_SIZE: &str = + "CandidacyWasLessThanCouncilSize"; + +/// Combined Election parameters, as argument for set_election_parameters +#[derive(Clone, Copy, Encode, Decode, Default, PartialEq, Debug)] +pub struct ElectionParameters { + pub announcing_period: BlockNumber, + pub voting_period: BlockNumber, + pub revealing_period: BlockNumber, + pub council_size: u32, + pub candidacy_limit: u32, + pub new_term_duration: BlockNumber, + pub min_council_stake: Balance, + pub min_voting_stake: Balance, +} + +impl ElectionParameters { + pub fn ensure_valid(&self) -> Result { + self.ensure_periods_are_valid()?; + self.ensure_council_size_and_candidacy_limit_are_valid()?; + Ok(()) + } + + fn ensure_periods_are_valid(&self) -> Result { + ensure!(!self.announcing_period.is_zero(), MSG_PERIOD_CANNOT_BE_ZERO); + ensure!(!self.voting_period.is_zero(), MSG_PERIOD_CANNOT_BE_ZERO); + ensure!(!self.revealing_period.is_zero(), MSG_PERIOD_CANNOT_BE_ZERO); + Ok(()) + } + + fn ensure_council_size_and_candidacy_limit_are_valid(&self) -> Result { + ensure!(self.council_size > 0, MSG_COUNCIL_SIZE_CANNOT_BE_ZERO); + ensure!( + self.council_size <= self.candidacy_limit, + MSG_CANDIDACY_LIMIT_WAS_LOWER_THAN_COUNCIL_SIZE + ); + Ok(()) + } +} diff --git a/runtime-modules/governance/src/lib.rs b/runtime-modules/governance/src/lib.rs index 9e1d712f8b..9b39780d8a 100644 --- a/runtime-modules/governance/src/lib.rs +++ b/runtime-modules/governance/src/lib.rs @@ -3,6 +3,7 @@ pub mod council; pub mod election; +pub mod election_params; pub mod proposals; mod sealed_vote; From 34b149afbcf3fd939526f87c8dae5df632050a38 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 26 Mar 2020 18:03:20 +0400 Subject: [PATCH 336/350] bump runtime spec to 10, bump node to v2.1.4 --- Cargo.lock | 4 ++-- node/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- runtime/src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc4b914ad6..4fd6571eb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1554,7 +1554,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "2.1.3" +version = "2.1.4" dependencies = [ "ctrlc", "derive_more 0.14.1", @@ -1599,7 +1599,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "6.8.1" +version = "6.10.0" dependencies = [ "parity-scale-codec", "safe-mix", diff --git a/node/Cargo.toml b/node/Cargo.toml index 12aa4b4890..62394af5a0 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -3,7 +3,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '2.1.3' +version = '2.1.4' default-run = "joystream-node" [[bin]] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 25c158357d..74b1a68aa3 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -5,7 +5,7 @@ edition = '2018' name = 'joystream-node-runtime' # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1 # {Authoring}.{Spec}.{Impl} of the RuntimeVersion -version = '6.8.1' +version = '6.10.0' [features] default = ['std'] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index d8ed411c8c..5829a0b3b3 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -115,7 +115,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("joystream-node"), impl_name: create_runtime_str!("joystream-node"), authoring_version: 6, - spec_version: 8, + spec_version: 10, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; From f97d3c8451df426870c1477ed2ab5681ffa7bfbb Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 26 Mar 2020 18:10:13 +0400 Subject: [PATCH 337/350] fix compiler warning --- runtime-modules/governance/src/election.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime-modules/governance/src/election.rs b/runtime-modules/governance/src/election.rs index 0c82a1def9..bcb4bf4185 100644 --- a/runtime-modules/governance/src/election.rs +++ b/runtime-modules/governance/src/election.rs @@ -14,7 +14,7 @@ use super::sealed_vote::SealedVote; use super::stake::Stake; use super::council; -use crate::election_params::{self, ElectionParameters}; +use crate::election_params::ElectionParameters; pub use common::currency::{BalanceOf, GovernanceCurrency}; pub trait Trait: From 1d115a84a74548faa113f678570de987e90417b4 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 26 Mar 2020 18:21:00 +0400 Subject: [PATCH 338/350] do not ignore result value when calling set_mint_capacity --- runtime-modules/content-working-group/src/lib.rs | 4 ++-- runtime-modules/token-minting/src/lib.rs | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/runtime-modules/content-working-group/src/lib.rs b/runtime-modules/content-working-group/src/lib.rs index d8e2d8f81d..482a4a49c3 100755 --- a/runtime-modules/content-working-group/src/lib.rs +++ b/runtime-modules/content-working-group/src/lib.rs @@ -2040,7 +2040,7 @@ decl_module! { let mint_id = Self::mint(); let mint = >::mints(mint_id); // must exist let new_capacity = mint.capacity() + additional_capacity; - let _ = >::set_mint_capacity(mint_id, new_capacity); + >::set_mint_capacity(mint_id, new_capacity)?; Self::deposit_event(RawEvent::MintCapacityIncreased( mint_id, additional_capacity, new_capacity @@ -2063,7 +2063,7 @@ decl_module! { if new_capacity != current_capacity { // Cannot fail if mint exists - let _ = >::set_mint_capacity(mint_id, new_capacity); + >::set_mint_capacity(mint_id, new_capacity)?; if new_capacity > current_capacity { Self::deposit_event(RawEvent::MintCapacityIncreased( diff --git a/runtime-modules/token-minting/src/lib.rs b/runtime-modules/token-minting/src/lib.rs index b84237708e..df9c6fef91 100755 --- a/runtime-modules/token-minting/src/lib.rs +++ b/runtime-modules/token-minting/src/lib.rs @@ -73,6 +73,15 @@ impl From for TransferError { } } +impl From for &'static str { + fn from(err: GeneralError) -> &'static str { + match err { + GeneralError::MintNotFound => "MintNotFound", + GeneralError::NextAdjustmentInPast => "NextAdjustmentInPast", + } + } +} + #[derive(Encode, Decode, Copy, Clone, Debug, Eq, PartialEq)] pub enum Adjustment { // First adjustment will be after AdjustOnInterval.block_interval From e44bfe1a24cded345ac4bdc400c10f7af6934388 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 26 Mar 2020 20:24:33 +0400 Subject: [PATCH 339/350] content working group: replace_lead in place of set_lead, unset_lead --- .../content-working-group/src/lib.rs | 198 ++++++++++-------- .../content-working-group/src/tests.rs | 12 +- 2 files changed, 112 insertions(+), 98 deletions(-) diff --git a/runtime-modules/content-working-group/src/lib.rs b/runtime-modules/content-working-group/src/lib.rs index b0c6aeea93..94939750ef 100755 --- a/runtime-modules/content-working-group/src/lib.rs +++ b/runtime-modules/content-working-group/src/lib.rs @@ -1906,103 +1906,23 @@ decl_module! { ); } - /* - * Root origin routines for managing lead. - */ - - - /// Introduce a lead when one is not currently set. - pub fn set_lead(origin, member: T::MemberId, role_account: T::AccountId) { - + /// Replace the current lead. First unsets the active lead if there is one. + /// If a value is provided for new_lead it will then set that new lead. + /// It is responsibility of the caller to ensure the new lead can be set + /// to avoid the lead role being vacant at the end of the call. + pub fn replace_lead(origin, new_lead: Option<(T::MemberId, T::AccountId)>) { // Ensure root is origin ensure_root(origin)?; - // Ensure there is no current lead - ensure!( - >::get().is_none(), - MSG_CURRENT_LEAD_ALREADY_SET - ); - - // Ensure that member can actually become lead - let new_lead_id = >::get(); - - let new_lead_role = - role_types::ActorInRole::new(role_types::Role::CuratorLead, new_lead_id); - - let _profile = >::can_register_role_on_member( - &member, - &role_types::ActorInRole::new(role_types::Role::CuratorLead, new_lead_id), - )?; - - // - // == MUTATION SAFE == - // - - // Construct lead - let new_lead = Lead { - role_account: role_account.clone(), - reward_relationship: None, - inducted: >::block_number(), - stage: LeadRoleState::Active, - }; - - // Store lead - >::insert(new_lead_id, new_lead); - - // Update current lead - >::put(new_lead_id); // Some(new_lead_id) - - // Update next lead counter - >::mutate(|id| *id += as One>::one()); - - // Register in role - let registered_role = - >::register_role_on_member(member, &new_lead_role).is_ok(); - - assert!(registered_role); - - // Trigger event - Self::deposit_event(RawEvent::LeadSet(new_lead_id)); - } - - /// Evict the currently unset lead - pub fn unset_lead(origin) { - - // Ensure root is origin - ensure_root(origin)?; - - // Ensure there is a lead set - let (lead_id,lead) = Self::ensure_lead_is_set()?; - - // - // == MUTATION SAFE == - // - - // Unregister from role in membership model - let current_lead_role = role_types::ActorInRole{ - role: role_types::Role::CuratorLead, - actor_id: lead_id - }; - - let unregistered_role = >::unregister_role(current_lead_role).is_ok(); - - assert!(unregistered_role); - - // Update lead stage as exited - let current_block = >::block_number(); - - let new_lead = Lead{ - stage: LeadRoleState::Exited(ExitedLeadRole { initiated_at_block_number: current_block}), - ..lead - }; - - >::insert(lead_id, new_lead); - - // Update current lead - >::take(); // None + // Unset current lead first + if Self::ensure_lead_is_set().is_ok() { + Self::unset_lead()?; + } - // Trigger event - Self::deposit_event(RawEvent::LeadUnset(lead_id)); + // Try to set new lead + if let Some((member_id, role_account)) = new_lead { + Self::set_lead(member_id, role_account)?; + } } /// Add an opening for a curator role. @@ -2079,6 +1999,98 @@ impl versioned_store_permissions::CredentialChecker for Module { } impl Module { + /// Introduce a lead when one is not currently set. + fn set_lead(member: T::MemberId, role_account: T::AccountId) -> dispatch::Result { + // Ensure there is no current lead + ensure!( + >::get().is_none(), + MSG_CURRENT_LEAD_ALREADY_SET + ); + + // Ensure that member can actually become lead + let new_lead_id = >::get(); + + let new_lead_role = + role_types::ActorInRole::new(role_types::Role::CuratorLead, new_lead_id); + + let _profile = >::can_register_role_on_member( + &member, + &role_types::ActorInRole::new(role_types::Role::CuratorLead, new_lead_id), + )?; + + // + // == MUTATION SAFE == + // + + // Construct lead + let new_lead = Lead { + role_account: role_account.clone(), + reward_relationship: None, + inducted: >::block_number(), + stage: LeadRoleState::Active, + }; + + // Store lead + >::insert(new_lead_id, new_lead); + + // Update current lead + >::put(new_lead_id); // Some(new_lead_id) + + // Update next lead counter + >::mutate(|id| *id += as One>::one()); + + // Register in role + let registered_role = + >::register_role_on_member(member, &new_lead_role).is_ok(); + + assert!(registered_role); + + // Trigger event + Self::deposit_event(RawEvent::LeadSet(new_lead_id)); + + Ok(()) + } + + /// Evict the currently set lead + fn unset_lead() -> dispatch::Result { + // Ensure there is a lead set + let (lead_id, lead) = Self::ensure_lead_is_set()?; + + // + // == MUTATION SAFE == + // + + // Unregister from role in membership model + let current_lead_role = role_types::ActorInRole { + role: role_types::Role::CuratorLead, + actor_id: lead_id, + }; + + let unregistered_role = >::unregister_role(current_lead_role).is_ok(); + + assert!(unregistered_role); + + // Update lead stage as exited + let current_block = >::block_number(); + + let new_lead = Lead { + stage: LeadRoleState::Exited(ExitedLeadRole { + initiated_at_block_number: current_block, + }), + ..lead + }; + + >::insert(lead_id, new_lead); + + // Update current lead + >::take(); // None + + // Trigger event + Self::deposit_event(RawEvent::LeadUnset(lead_id)); + + Ok(()) + } + fn ensure_member_has_no_active_application_on_opening( curator_applications: CuratorApplicationIdSet, member_id: T::MemberId, diff --git a/runtime-modules/content-working-group/src/tests.rs b/runtime-modules/content-working-group/src/tests.rs index 03cc88e36d..acf19b10aa 100644 --- a/runtime-modules/content-working-group/src/tests.rs +++ b/runtime-modules/content-working-group/src/tests.rs @@ -1160,7 +1160,10 @@ struct SetLeadFixture { impl SetLeadFixture { fn call(&self) -> Result<(), &'static str> { - ContentWorkingGroup::set_lead(self.origin.clone(), self.member_id, self.new_role_account) + ContentWorkingGroup::replace_lead( + self.origin.clone(), + Some((self.member_id, self.new_role_account)), + ) } pub fn call_and_assert_success(&self) { @@ -1221,7 +1224,7 @@ struct UnsetLeadFixture { impl UnsetLeadFixture { fn call(&self) -> Result<(), &'static str> { - ContentWorkingGroup::unset_lead(self.origin.clone()) + ContentWorkingGroup::replace_lead(self.origin.clone(), None) } pub fn call_and_assert_success(&self) { @@ -2121,10 +2124,9 @@ pub fn set_lead( // Set lead assert_eq!( - ContentWorkingGroup::set_lead( + ContentWorkingGroup::replace_lead( mock::Origin::system(system::RawOrigin::Root), - member_id, - new_role_account + Some((member_id, new_role_account)) ) .unwrap(), () From 1ef9f9d63240631ddf08b75b9ac477e170c418af Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Thu, 26 Mar 2020 20:25:11 +0400 Subject: [PATCH 340/350] bump runtime spec to 11, node version to v2.1.5 --- Cargo.lock | 4 ++-- node/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- runtime/src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc4b914ad6..3051b32eda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1554,7 +1554,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "2.1.3" +version = "2.1.5" dependencies = [ "ctrlc", "derive_more 0.14.1", @@ -1599,7 +1599,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "6.8.1" +version = "6.11.0" dependencies = [ "parity-scale-codec", "safe-mix", diff --git a/node/Cargo.toml b/node/Cargo.toml index 12aa4b4890..134bad64a6 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -3,7 +3,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '2.1.3' +version = '2.1.5' default-run = "joystream-node" [[bin]] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 25c158357d..eeba50dd15 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -5,7 +5,7 @@ edition = '2018' name = 'joystream-node-runtime' # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1 # {Authoring}.{Spec}.{Impl} of the RuntimeVersion -version = '6.8.1' +version = '6.11.0' [features] default = ['std'] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index d8ed411c8c..bf1581d52f 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -115,7 +115,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("joystream-node"), impl_name: create_runtime_str!("joystream-node"), authoring_version: 6, - spec_version: 8, + spec_version: 11, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; From 3df8a4d224d64cea065e26a9296aa01b1e19074a Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 11:33:22 +0400 Subject: [PATCH 341/350] add mint to council --- Cargo.lock | 5 +++-- node/Cargo.toml | 2 +- runtime-modules/governance/Cargo.toml | 8 ++++++- runtime-modules/governance/src/council.rs | 24 +++++++++++++++++--- runtime-modules/governance/src/election.rs | 19 +++++++++------- runtime-modules/governance/src/mock.rs | 5 ++++- runtime-modules/governance/src/proposals.rs | 24 ++++++++++++-------- runtime/Cargo.toml | 2 +- runtime/src/lib.rs | 2 +- runtime/src/migration.rs | 25 +++++++++------------ 10 files changed, 74 insertions(+), 42 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eea76befb9..232c102310 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1554,7 +1554,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "2.1.3" +version = "2.1.6" dependencies = [ "ctrlc", "derive_more 0.14.1", @@ -1599,7 +1599,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "6.9.0" +version = "6.12.0" dependencies = [ "parity-scale-codec", "safe-mix", @@ -4796,6 +4796,7 @@ dependencies = [ "substrate-common-module", "substrate-membership-module", "substrate-primitives", + "substrate-token-mint-module", ] [[package]] diff --git a/node/Cargo.toml b/node/Cargo.toml index 12aa4b4890..bb6930245e 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -3,7 +3,7 @@ authors = ['Joystream'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '2.1.3' +version = '2.1.6' default-run = "joystream-node" [[bin]] diff --git a/runtime-modules/governance/Cargo.toml b/runtime-modules/governance/Cargo.toml index 61cce493b9..d3314bd0db 100644 --- a/runtime-modules/governance/Cargo.toml +++ b/runtime-modules/governance/Cargo.toml @@ -17,6 +17,7 @@ std = [ 'rstd/std', 'common/std', 'membership/std', + 'minting/std', ] [dependencies.sr-primitives] @@ -86,4 +87,9 @@ rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' default_features = false git = 'https://github.com/paritytech/substrate.git' package = 'srml-balances' -rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' \ No newline at end of file +rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8' + +[dependencies.minting] +default_features = false +package = 'substrate-token-mint-module' +path = '../token-minting' \ No newline at end of file diff --git a/runtime-modules/governance/src/council.rs b/runtime-modules/governance/src/council.rs index 792977f073..71b3e6419d 100644 --- a/runtime-modules/governance/src/council.rs +++ b/runtime-modules/governance/src/council.rs @@ -21,7 +21,7 @@ impl CouncilTermEnded for (X,) { } } -pub trait Trait: system::Trait + GovernanceCurrency { +pub trait Trait: system::Trait + minting::Trait + GovernanceCurrency { type Event: From> + Into<::Event>; type CouncilTermEnded: CouncilTermEnded; @@ -29,8 +29,14 @@ pub trait Trait: system::Trait + GovernanceCurrency { decl_storage! { trait Store for Module as Council { - ActiveCouncil get(active_council) config(): Seats>; - TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::from(1); + pub ActiveCouncil get(active_council) config(): Seats>; + + pub TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::from(1); + + /// The mint that funds council member rewards and spending proposals budget. + pub Mint get(mint) build(|_config: &GenesisConfig| { + >::initialize_mint() + }): ::MintId; } } @@ -60,6 +66,12 @@ impl Module { pub fn is_councilor(sender: &T::AccountId) -> bool { Self::active_council().iter().any(|c| c.member == *sender) } + + // Initializes a new mint + pub fn initialize_mint() -> T::MintId { + >::add_mint(minting::BalanceOf::::zero(), None) + .expect("Failed to create a mint for the council") + } } decl_module! { @@ -118,6 +130,12 @@ decl_module! { ensure!(ends_at > >::block_number(), "must set future block number"); >::put(ends_at); } + + fn set_mint_capacity(origin, new_capacity: minting::BalanceOf) { + ensure_root(origin)?; + let mint_id = Self::mint(); + minting::Module::::set_mint_capacity(mint_id, new_capacity)?; + } } } diff --git a/runtime-modules/governance/src/election.rs b/runtime-modules/governance/src/election.rs index 7e8c5dcf82..db1b90b606 100644 --- a/runtime-modules/governance/src/election.rs +++ b/runtime-modules/governance/src/election.rs @@ -156,7 +156,7 @@ impl Module { } fn can_participate(sender: &T::AccountId) -> bool { - !T::Currency::free_balance(sender).is_zero() + !::Currency::free_balance(sender).is_zero() && >::is_member_account(sender) } @@ -356,7 +356,10 @@ impl Module { for stakeholder in Self::existing_stake_holders().iter() { let stake = Self::transferable_stakes(stakeholder); if !stake.seat.is_zero() || !stake.backing.is_zero() { - T::Currency::unreserve(stakeholder, stake.seat + stake.backing); + ::Currency::unreserve( + stakeholder, + stake.seat + stake.backing, + ); } } } @@ -381,7 +384,7 @@ impl Module { // return new stake to account's free balance if !stake.new.is_zero() { - T::Currency::unreserve(applicant, stake.new); + ::Currency::unreserve(applicant, stake.new); } // return unused transferable stake @@ -435,7 +438,7 @@ impl Module { // return new stake to account's free balance let SealedVote { voter, stake, .. } = sealed_vote; if !stake.new.is_zero() { - T::Currency::unreserve(voter, stake.new); + ::Currency::unreserve(voter, stake.new); } // return unused transferable stake @@ -626,12 +629,12 @@ impl Module { let new_stake = Self::new_stake_reusing_transferable(&mut transferable_stake.seat, stake); ensure!( - T::Currency::can_reserve(&applicant, new_stake.new), + ::Currency::can_reserve(&applicant, new_stake.new), "not enough free balance to reserve" ); ensure!( - T::Currency::reserve(&applicant, new_stake.new).is_ok(), + ::Currency::reserve(&applicant, new_stake.new).is_ok(), "failed to reserve applicant stake!" ); @@ -662,12 +665,12 @@ impl Module { Self::new_stake_reusing_transferable(&mut transferable_stake.backing, stake); ensure!( - T::Currency::can_reserve(&voter, vote_stake.new), + ::Currency::can_reserve(&voter, vote_stake.new), "not enough free balance to reserve" ); ensure!( - T::Currency::reserve(&voter, vote_stake.new).is_ok(), + ::Currency::reserve(&voter, vote_stake.new).is_ok(), "failed to reserve voting stake!" ); diff --git a/runtime-modules/governance/src/mock.rs b/runtime-modules/governance/src/mock.rs index 5e6dc33dbe..8d13c511fe 100644 --- a/runtime-modules/governance/src/mock.rs +++ b/runtime-modules/governance/src/mock.rs @@ -70,7 +70,10 @@ impl membership::members::Trait for Test { type ActorId = u32; type InitialMembersBalance = InitialMembersBalance; } - +impl minting::Trait for Test { + type Currency = Balances; + type MintId = u64; +} parameter_types! { pub const ExistentialDeposit: u32 = 0; pub const TransferFee: u32 = 0; diff --git a/runtime-modules/governance/src/proposals.rs b/runtime-modules/governance/src/proposals.rs index e681e51d6c..64a177a6fd 100644 --- a/runtime-modules/governance/src/proposals.rs +++ b/runtime-modules/governance/src/proposals.rs @@ -244,7 +244,7 @@ decl_module! { ensure!(wasm_code.len() as u32 <= Self::wasm_code_max_len(), MSG_TOO_LONG_WASM_CODE); // Lock proposer's stake: - T::Currency::reserve(&proposer, stake) + ::Currency::reserve(&proposer, stake) .map_err(|_| MSG_STAKE_IS_GREATER_THAN_BALANCE)?; let proposal_id = Self::proposal_count() + 1; @@ -312,11 +312,11 @@ decl_module! { // Spend some minimum fee on proposer's balance for canceling a proposal let fee = Self::cancellation_fee(); - let _ = T::Currency::slash_reserved(&proposer, fee); + let _ = ::Currency::slash_reserved(&proposer, fee); // Return unspent part of remaining staked deposit (after taking some fee) let left_stake = proposal.stake - fee; - let _ = T::Currency::unreserve(&proposer, left_stake); + let _ = ::Currency::unreserve(&proposer, left_stake); Self::_update_proposal_status(proposal_id, Cancelled)?; Self::deposit_event(RawEvent::ProposalCanceled(proposer, proposal_id)); @@ -336,7 +336,7 @@ decl_module! { let proposal = Self::proposals(proposal_id); ensure!(proposal.status == Active, MSG_PROPOSAL_FINALIZED); - let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); + let _ = ::Currency::unreserve(&proposal.proposer, proposal.stake); Self::_update_proposal_status(proposal_id, Cancelled)?; @@ -357,7 +357,7 @@ impl Module { } fn can_participate(sender: &T::AccountId) -> bool { - !T::Currency::free_balance(sender).is_zero() + !::Currency::free_balance(sender).is_zero() && >::is_member_account(sender) } @@ -513,7 +513,8 @@ impl Module { let proposal = Self::proposals(proposal_id); // Slash proposer's stake: - let _ = T::Currency::slash_reserved(&proposal.proposer, proposal.stake); + let _ = + ::Currency::slash_reserved(&proposal.proposer, proposal.stake); Ok(()) } @@ -525,11 +526,11 @@ impl Module { // Spend some minimum fee on proposer's balance to prevent spamming attacks: let fee = Self::rejection_fee(); - let _ = T::Currency::slash_reserved(&proposer, fee); + let _ = ::Currency::slash_reserved(&proposer, fee); // Return unspent part of remaining staked deposit (after taking some fee): let left_stake = proposal.stake - fee; - let _ = T::Currency::unreserve(&proposer, left_stake); + let _ = ::Currency::unreserve(&proposer, left_stake); Ok(()) } @@ -540,7 +541,7 @@ impl Module { let wasm_code = Self::wasm_code_by_hash(proposal.wasm_hash); // Return staked deposit to proposer: - let _ = T::Currency::unreserve(&proposal.proposer, proposal.stake); + let _ = ::Currency::unreserve(&proposal.proposer, proposal.stake); // Update wasm code of node's runtime: >::set_code(system::RawOrigin::Root.into(), wasm_code)?; @@ -649,6 +650,11 @@ mod tests { type InitialMembersBalance = InitialMembersBalance; } + impl minting::Trait for Test { + type Currency = balances::Module; + type MintId = u64; + } + impl Trait for Test { type Event = (); } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 6ff953659c..c0eee0a3cf 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -5,7 +5,7 @@ edition = '2018' name = 'joystream-node-runtime' # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1 # {Authoring}.{Spec}.{Impl} of the RuntimeVersion -version = '6.9.0' +version = '6.12.0' [features] default = ['std'] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 92c4bbb9f0..13a2701388 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -115,7 +115,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("joystream-node"), impl_name: create_runtime_str!("joystream-node"), authoring_version: 6, - spec_version: 9, + spec_version: 12, impl_version: 0, apis: RUNTIME_API_VERSIONS, }; diff --git a/runtime/src/migration.rs b/runtime/src/migration.rs index fc4bd421a9..a26468b3f7 100644 --- a/runtime/src/migration.rs +++ b/runtime/src/migration.rs @@ -4,25 +4,19 @@ use srml_support::{decl_event, decl_module, decl_storage}; use sudo; use system; -// When preparing a new major runtime release version bump this value to match it and update -// the initialization code in runtime_initialization(). Because of the way substrate runs runtime code -// the runtime doesn't need to maintain any logic for old migrations. All knowledge about state of the chain and runtime -// prior to the new runtime taking over is implicit in the migration code implementation. If assumptions are incorrect -// behaviour is undefined. -const MIGRATION_FOR_SPEC_VERSION: u32 = 0; - impl Module { - fn runtime_initialization() { - if VERSION.spec_version != MIGRATION_FOR_SPEC_VERSION { - return; - } - - print("running runtime initializers"); + fn runtime_upgraded() { + print("running runtime initializers..."); // ... - // add initialization of other modules introduced in this runtime + // add initialization of modules introduced in new runtime release. This + // would be any new storage values that need an initial value which would not + // have been initialized with config() or build() mechanism. // ... + // Create the Council mint + governance::council::Module::::initialize_mint(); + Self::deposit_event(RawEvent::Migrated( >::block_number(), VERSION.spec_version, @@ -36,6 +30,7 @@ pub trait Trait: + storage::data_object_storage_registry::Trait + forum::Trait + sudo::Trait + + governance::council::Trait { type Event: From> + Into<::Event>; } @@ -64,7 +59,7 @@ decl_module! { SpecVersion::put(VERSION.spec_version); // run migrations and store initializers - Self::runtime_initialization(); + Self::runtime_upgraded(); } } } From d4c1c944eca58afc0e8eae2e8dc9072204fc202e Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 11:59:46 +0400 Subject: [PATCH 342/350] council: add set_council_mint_capacity() and spend_from_council_mint() --- runtime-modules/governance/src/council.rs | 24 ++++++++++++++++------- runtime-modules/token-minting/src/lib.rs | 9 +++++++++ runtime/src/migration.rs | 2 +- 3 files changed, 27 insertions(+), 8 deletions(-) diff --git a/runtime-modules/governance/src/council.rs b/runtime-modules/governance/src/council.rs index 71b3e6419d..2f6fc41a1f 100644 --- a/runtime-modules/governance/src/council.rs +++ b/runtime-modules/governance/src/council.rs @@ -34,8 +34,8 @@ decl_storage! { pub TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::from(1); /// The mint that funds council member rewards and spending proposals budget. - pub Mint get(mint) build(|_config: &GenesisConfig| { - >::initialize_mint() + pub CouncilMint get(council_mint) build(|_config: &GenesisConfig| { + >::create_new_council_mint() }): ::MintId; } } @@ -68,9 +68,11 @@ impl Module { } // Initializes a new mint - pub fn initialize_mint() -> T::MintId { - >::add_mint(minting::BalanceOf::::zero(), None) - .expect("Failed to create a mint for the council") + pub fn create_new_council_mint() -> T::MintId { + let mint_id = >::add_mint(minting::BalanceOf::::zero(), None) + .expect("Failed to create a mint for the council"); + CouncilMint::::put(mint_id); + mint_id } } @@ -131,11 +133,19 @@ decl_module! { >::put(ends_at); } - fn set_mint_capacity(origin, new_capacity: minting::BalanceOf) { + /// Sets the capacity of the the council mint + fn set_council_mint_capacity(origin, new_capacity: minting::BalanceOf) { ensure_root(origin)?; - let mint_id = Self::mint(); + let mint_id = Self::council_mint(); minting::Module::::set_mint_capacity(mint_id, new_capacity)?; } + + /// Attempts to mint and transfer amount to destination account + fn spend_from_council_mint(origin, amount: minting::BalanceOf, destination: T::AccountId) { + ensure_root(origin)?; + let mint_id = Self::council_mint(); + minting::Module::::transfer_tokens(mint_id, amount, &destination)?; + } } } diff --git a/runtime-modules/token-minting/src/lib.rs b/runtime-modules/token-minting/src/lib.rs index df9c6fef91..20388f2fda 100755 --- a/runtime-modules/token-minting/src/lib.rs +++ b/runtime-modules/token-minting/src/lib.rs @@ -82,6 +82,15 @@ impl From for &'static str { } } +impl From for &'static str { + fn from(err: TransferError) -> &'static str { + match err { + TransferError::MintNotFound => "MintNotFound", + TransferError::NotEnoughCapacity => "NotEnoughCapacity", + } + } +} + #[derive(Encode, Decode, Copy, Clone, Debug, Eq, PartialEq)] pub enum Adjustment { // First adjustment will be after AdjustOnInterval.block_interval diff --git a/runtime/src/migration.rs b/runtime/src/migration.rs index a26468b3f7..fcfd32263d 100644 --- a/runtime/src/migration.rs +++ b/runtime/src/migration.rs @@ -15,7 +15,7 @@ impl Module { // ... // Create the Council mint - governance::council::Module::::initialize_mint(); + governance::council::Module::::create_new_council_mint(); Self::deposit_event(RawEvent::Migrated( >::block_number(), From e4f57a28617fb9b66734164f9707ad5dd110e4be Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 16:08:01 +0400 Subject: [PATCH 343/350] remove use of assert in set_lead and unset_lead --- runtime-modules/content-working-group/src/lib.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/runtime-modules/content-working-group/src/lib.rs b/runtime-modules/content-working-group/src/lib.rs index 94939750ef..eb0b451fcd 100755 --- a/runtime-modules/content-working-group/src/lib.rs +++ b/runtime-modules/content-working-group/src/lib.rs @@ -2040,10 +2040,7 @@ impl Module { >::mutate(|id| *id += as One>::one()); // Register in role - let registered_role = - >::register_role_on_member(member, &new_lead_role).is_ok(); - - assert!(registered_role); + >::register_role_on_member(member, &new_lead_role)?; // Trigger event Self::deposit_event(RawEvent::LeadSet(new_lead_id)); @@ -2066,9 +2063,7 @@ impl Module { actor_id: lead_id, }; - let unregistered_role = >::unregister_role(current_lead_role).is_ok(); - - assert!(unregistered_role); + >::unregister_role(current_lead_role)?; // Update lead stage as exited let current_block = >::block_number(); From 74617592076f0f0599505693e72338f22452af71 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 16:49:28 +0400 Subject: [PATCH 344/350] fix broken Cargo.lock after merge conflic resolution --- Cargo.lock | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3e354d830b..3051b32eda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1554,11 +1554,7 @@ dependencies = [ [[package]] name = "joystream-node" -<<<<<<< HEAD version = "2.1.5" -======= -version = "2.1.4" ->>>>>>> development dependencies = [ "ctrlc", "derive_more 0.14.1", From d4a21042541501782df2c0fad15f94ba16472c1c Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 16:50:11 +0400 Subject: [PATCH 345/350] call register_role_on_member() before mutating, also drop call to can_register_role_on_member() it is called by register_role_on_member() --- runtime-modules/content-working-group/src/lib.rs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/runtime-modules/content-working-group/src/lib.rs b/runtime-modules/content-working-group/src/lib.rs index 0d465a46c5..9972ef0b55 100755 --- a/runtime-modules/content-working-group/src/lib.rs +++ b/runtime-modules/content-working-group/src/lib.rs @@ -2050,21 +2050,18 @@ impl Module { MSG_CURRENT_LEAD_ALREADY_SET ); - // Ensure that member can actually become lead let new_lead_id = >::get(); let new_lead_role = role_types::ActorInRole::new(role_types::Role::CuratorLead, new_lead_id); - let _profile = >::can_register_role_on_member( - &member, - &role_types::ActorInRole::new(role_types::Role::CuratorLead, new_lead_id), - )?; - // // == MUTATION SAFE == // + // Register in role - will fail if member cannot become lead + members::Module::::register_role_on_member(member, &new_lead_role)?; + // Construct lead let new_lead = Lead { role_account: role_account.clone(), @@ -2082,9 +2079,6 @@ impl Module { // Update next lead counter >::mutate(|id| *id += as One>::one()); - // Register in role - >::register_role_on_member(member, &new_lead_role)?; - // Trigger event Self::deposit_event(RawEvent::LeadSet(new_lead_id)); From 76b240a9465ff6caf788bf1ab3e474e01d5b2409 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 19:48:19 +0400 Subject: [PATCH 346/350] council mint: make it an Option and avoid panics even when constructing genesis --- runtime-modules/governance/src/council.rs | 40 ++++++++++++++--------- runtime/src/migration.rs | 8 +++-- 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/runtime-modules/governance/src/council.rs b/runtime-modules/governance/src/council.rs index 2f6fc41a1f..518285f3ed 100644 --- a/runtime-modules/governance/src/council.rs +++ b/runtime-modules/governance/src/council.rs @@ -33,10 +33,10 @@ decl_storage! { pub TermEndsAt get(term_ends_at) config() : T::BlockNumber = T::BlockNumber::from(1); - /// The mint that funds council member rewards and spending proposals budget. - pub CouncilMint get(council_mint) build(|_config: &GenesisConfig| { - >::create_new_council_mint() - }): ::MintId; + /// The mint that funds council member rewards and spending proposals budget. It is an Option + /// because it was introduced in a runtime upgrade. It will be automatically created when + /// a successful call to set_council_mint_capacity() is made. + pub CouncilMint get(council_mint) : Option<::MintId>; } } @@ -67,12 +67,13 @@ impl Module { Self::active_council().iter().any(|c| c.member == *sender) } - // Initializes a new mint - pub fn create_new_council_mint() -> T::MintId { - let mint_id = >::add_mint(minting::BalanceOf::::zero(), None) - .expect("Failed to create a mint for the council"); + // Initializes a new mint, discarding previous mint if it existed. + pub fn create_new_council_mint( + capacity: minting::BalanceOf, + ) -> Result { + let mint_id = >::add_mint(capacity, None)?; CouncilMint::::put(mint_id); - mint_id + Ok(mint_id) } } @@ -133,18 +134,27 @@ decl_module! { >::put(ends_at); } - /// Sets the capacity of the the council mint - fn set_council_mint_capacity(origin, new_capacity: minting::BalanceOf) { + /// Sets the capacity of the the council mint, if it doesn't exist, attempts to + /// create a new one. + fn set_council_mint_capacity(origin, capacity: minting::BalanceOf) { ensure_root(origin)?; - let mint_id = Self::council_mint(); - minting::Module::::set_mint_capacity(mint_id, new_capacity)?; + + if let Some(mint_id) = Self::council_mint() { + minting::Module::::set_mint_capacity(mint_id, capacity)?; + } else { + Self::create_new_council_mint(capacity)?; + } } /// Attempts to mint and transfer amount to destination account fn spend_from_council_mint(origin, amount: minting::BalanceOf, destination: T::AccountId) { ensure_root(origin)?; - let mint_id = Self::council_mint(); - minting::Module::::transfer_tokens(mint_id, amount, &destination)?; + + if let Some(mint_id) = Self::council_mint() { + minting::Module::::transfer_tokens(mint_id, amount, &destination)?; + } else { + return Err("CouncilHashNoMint") + } } } } diff --git a/runtime/src/migration.rs b/runtime/src/migration.rs index fcfd32263d..e0b144429a 100644 --- a/runtime/src/migration.rs +++ b/runtime/src/migration.rs @@ -1,5 +1,5 @@ use crate::VERSION; -use sr_primitives::print; +use sr_primitives::{print, traits::Zero}; use srml_support::{decl_event, decl_module, decl_storage}; use sudo; use system; @@ -14,8 +14,10 @@ impl Module { // have been initialized with config() or build() mechanism. // ... - // Create the Council mint - governance::council::Module::::create_new_council_mint(); + // Create the Council mint. If it fails, we can't do anything about it here. + let _ = governance::council::Module::::create_new_council_mint( + minting::BalanceOf::::zero(), + ); Self::deposit_event(RawEvent::Migrated( >::block_number(), From 0a34d74febbb2713cab23748fdb639c3bfdba194 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 20:00:31 +0400 Subject: [PATCH 347/350] council mint: doc --- runtime-modules/governance/src/council.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime-modules/governance/src/council.rs b/runtime-modules/governance/src/council.rs index 518285f3ed..21b84c60ed 100644 --- a/runtime-modules/governance/src/council.rs +++ b/runtime-modules/governance/src/council.rs @@ -67,7 +67,7 @@ impl Module { Self::active_council().iter().any(|c| c.member == *sender) } - // Initializes a new mint, discarding previous mint if it existed. + /// Initializes a new mint, discarding previous mint if it existed. pub fn create_new_council_mint( capacity: minting::BalanceOf, ) -> Result { From 5150cfb00bbb7842fbffd791e84cee7b4d5b73ca Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 21:11:16 +0400 Subject: [PATCH 348/350] validate ElectionParameters at genesis --- node/src/chain_spec.rs | 24 +++++----- runtime-modules/governance/src/election.rs | 44 ++++++++++++------- .../governance/src/election_params.rs | 5 ++- runtime/src/lib.rs | 1 + 4 files changed, 45 insertions(+), 29 deletions(-) diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 5bc2015558..99271c8c83 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -18,9 +18,9 @@ use node_runtime::{ versioned_store::InputValidationLengthConstraint as VsInputValidation, ActorsConfig, AuthorityDiscoveryConfig, BabeConfig, Balance, BalancesConfig, ContentWorkingGroupConfig, CouncilConfig, CouncilElectionConfig, DataObjectStorageRegistryConfig, - DataObjectTypeRegistryConfig, GrandpaConfig, ImOnlineConfig, IndicesConfig, MembersConfig, - Perbill, ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, StakingConfig, - SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, + DataObjectTypeRegistryConfig, ElectionParameters, GrandpaConfig, ImOnlineConfig, IndicesConfig, + MembersConfig, Perbill, ProposalsConfig, SessionConfig, SessionKeys, Signature, StakerStatus, + StakingConfig, SudoConfig, SystemConfig, VersionedStoreConfig, DAYS, WASM_BINARY, }; pub use node_runtime::{AccountId, GenesisConfig}; use primitives::{sr25519, Pair, Public}; @@ -235,14 +235,16 @@ pub fn testnet_genesis( }), election: Some(CouncilElectionConfig { auto_start: true, - 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, + 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, + }, }), proposals: Some(ProposalsConfig { approval_quorum: 66, diff --git a/runtime-modules/governance/src/election.rs b/runtime-modules/governance/src/election.rs index bcb4bf4185..b969c15785 100644 --- a/runtime-modules/governance/src/election.rs +++ b/runtime-modules/governance/src/election.rs @@ -126,14 +126,21 @@ decl_storage! { // If both candidacy limit and council size are zero then all applicant become council members // since no filtering occurs at end of announcing stage. // We only guard against these edge cases in the set_election_parameters() call. - AnnouncingPeriod get(announcing_period) config(): T::BlockNumber = T::BlockNumber::from(100); - VotingPeriod get(voting_period) config(): T::BlockNumber = T::BlockNumber::from(100); - RevealingPeriod get(revealing_period) config(): T::BlockNumber = T::BlockNumber::from(100); - CouncilSize get(council_size) config(): u32 = 10; - CandidacyLimit get (candidacy_limit) config(): u32 = 20; - MinCouncilStake get(min_council_stake) config(): BalanceOf = BalanceOf::::from(100); - NewTermDuration get(new_term_duration) config(): T::BlockNumber = T::BlockNumber::from(1000); - MinVotingStake get(min_voting_stake) config(): BalanceOf = BalanceOf::::from(10); + AnnouncingPeriod get(announcing_period): T::BlockNumber; + VotingPeriod get(voting_period): T::BlockNumber; + RevealingPeriod get(revealing_period): T::BlockNumber; + CouncilSize get(council_size): u32; + CandidacyLimit get (candidacy_limit): u32; + MinCouncilStake get(min_council_stake): BalanceOf; + NewTermDuration get(new_term_duration): T::BlockNumber; + MinVotingStake get(min_voting_stake): BalanceOf; + } + add_extra_genesis { + config(election_parameters): ElectionParameters, T::BlockNumber>; + build(|config: &GenesisConfig| { + config.election_parameters.ensure_valid().expect("Invalid Election Parameters"); + Module::::set_verified_election_parameters(config.election_parameters); + }); } } @@ -731,6 +738,17 @@ impl Module { Ok(()) } + + fn set_verified_election_parameters(params: ElectionParameters, T::BlockNumber>) { + >::put(params.announcing_period); + >::put(params.voting_period); + >::put(params.revealing_period); + >::put(params.min_council_stake); + >::put(params.new_term_duration); + CouncilSize::put(params.council_size); + CandidacyLimit::put(params.candidacy_limit); + >::put(params.min_voting_stake); + } } decl_module! { @@ -825,15 +843,7 @@ decl_module! { ensure_root(origin)?; ensure!(!Self::is_election_running(), MSG_CANNOT_CHANGE_PARAMS_DURING_ELECTION); params.ensure_valid()?; - - >::put(params.announcing_period); - >::put(params.voting_period); - >::put(params.revealing_period); - >::put(params.min_council_stake); - >::put(params.new_term_duration); - CouncilSize::put(params.council_size); - CandidacyLimit::put(params.candidacy_limit); - >::put(params.min_voting_stake); + Self::set_verified_election_parameters(params); } fn force_stop_election(origin) { diff --git a/runtime-modules/governance/src/election_params.rs b/runtime-modules/governance/src/election_params.rs index 99d4404b49..f5050860bd 100644 --- a/runtime-modules/governance/src/election_params.rs +++ b/runtime-modules/governance/src/election_params.rs @@ -1,4 +1,6 @@ use codec::{Decode, Encode}; +#[cfg(feature = "std")] +use serde::{Deserialize, Serialize}; use sr_primitives::traits::Zero; use srml_support::{dispatch::Result, ensure}; @@ -8,7 +10,8 @@ pub static MSG_CANDIDACY_LIMIT_WAS_LOWER_THAN_COUNCIL_SIZE: &str = "CandidacyWasLessThanCouncilSize"; /// Combined Election parameters, as argument for set_election_parameters -#[derive(Clone, Copy, Encode, Decode, Default, PartialEq, Debug)] +#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] +#[derive(Clone, Copy, Encode, Decode, Default, PartialEq)] pub struct ElectionParameters { pub announcing_period: BlockNumber, pub voting_period: BlockNumber, diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index bf1581d52f..a2a1739202 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -396,6 +396,7 @@ impl finality_tracker::Trait for Runtime { } pub use forum; +pub use governance::election_params::ElectionParameters; use governance::{council, election, proposals}; use membership::members; use storage::{data_directory, data_object_storage_registry, data_object_type_registry}; From 61aad966748175ed621484e94cbb690f438acb6e Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Fri, 27 Mar 2020 21:20:40 +0400 Subject: [PATCH 349/350] council election parameters derive Debug --- runtime-modules/governance/src/election_params.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime-modules/governance/src/election_params.rs b/runtime-modules/governance/src/election_params.rs index f5050860bd..f34646e608 100644 --- a/runtime-modules/governance/src/election_params.rs +++ b/runtime-modules/governance/src/election_params.rs @@ -10,8 +10,8 @@ pub static MSG_CANDIDACY_LIMIT_WAS_LOWER_THAN_COUNCIL_SIZE: &str = "CandidacyWasLessThanCouncilSize"; /// Combined Election parameters, as argument for set_election_parameters -#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))] -#[derive(Clone, Copy, Encode, Decode, Default, PartialEq)] +#[cfg_attr(feature = "std", derive(Serialize, Deserialize))] +#[derive(Clone, Copy, Encode, Decode, Default, PartialEq, Debug)] pub struct ElectionParameters { pub announcing_period: BlockNumber, pub voting_period: BlockNumber, From 01df9ce39d9b87deebc7e5f0ad328741914f4aa2 Mon Sep 17 00:00:00 2001 From: Mokhtar Naamani Date: Sat, 28 Mar 2020 10:05:33 +0400 Subject: [PATCH 350/350] election parameters: doc --- runtime-modules/governance/src/election.rs | 43 +++++++++++++++------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/runtime-modules/governance/src/election.rs b/runtime-modules/governance/src/election.rs index b969c15785..d5a91b784a 100644 --- a/runtime-modules/governance/src/election.rs +++ b/runtime-modules/governance/src/election.rs @@ -1,3 +1,26 @@ +//! Council Elections Manager +//! +//! # Election Parameters: +//! We don't currently handle zero periods, zero council term, zero council size and candidacy +//! limit in any special way. The behaviour in such cases: +//! +//! - Setting any period to 0 will mean the election getting stuck in that stage, until force changing +//! the state. +//! +//! - Council Size of 0 - no limit to size of council, all applicants that move beyond +//! announcing stage would become council members, so effectively the candidacy limit will +//! be the size of the council, voting and revealing have no impact on final results. +//! +//! - If candidacy limit is zero and council size > 0, council_size number of applicants will reach the voting stage. +//! and become council members, voting will have no impact on final results. +//! +//! - If both candidacy limit and council size are zero then all applicant become council members +//! since no filtering occurs at end of announcing stage. +//! +//! We only guard against these edge cases in the [`set_election_parameters`] call. +//! +//! [`set_election_parameters`]: struct.Module.html#method.set_election_parameters + use rstd::prelude::*; use srml_support::traits::{Currency, ReservableCurrency}; use srml_support::{decl_event, decl_module, decl_storage, dispatch::Result, ensure}; @@ -113,19 +136,6 @@ decl_storage! { // Should we replace all the individual values with a single ElectionParameters type? // Having them individually makes it more flexible to add and remove new parameters in future // without dealing with migration issues. - - // We don't currently handle zero periods, zero council term, zero council size and candidacy - // limit in any special way. The behaviour in such cases: - // Setting any period to 0 will mean the election getting stuck in that stage, until force changing - // the state. - // Council Size of 0 - no limit to size of council, all applicants that move beyond - // announcing stage would become council members, so effectively the candidacy limit will - // be the size of the council, voting and revealing have no impact on final results. - // If candidacy limit is zero and council size > 0, council_size number of applicants will reach the voting stage. - // and become council members, voting will have no impact on final results. - // If both candidacy limit and council size are zero then all applicant become council members - // since no filtering occurs at end of announcing stage. - // We only guard against these edge cases in the set_election_parameters() call. AnnouncingPeriod get(announcing_period): T::BlockNumber; VotingPeriod get(voting_period): T::BlockNumber; RevealingPeriod get(revealing_period): T::BlockNumber; @@ -839,7 +849,12 @@ decl_module! { >::put(ElectionStage::Voting(ends_at)); } - fn set_election_parameters(origin, params: ElectionParameters, T::BlockNumber>) { + /// Sets new election parameters. Some combination of parameters that are not desirable, so + /// the parameters are checked for validity. + /// The call will fail if an election is in progress. If a council is not being elected for some + /// reaon after multiple rounds, force_stop_election() can be called to stop elections and followed by + /// set_election_parameters(). + pub fn set_election_parameters(origin, params: ElectionParameters, T::BlockNumber>) { ensure_root(origin)?; ensure!(!Self::is_election_running(), MSG_CANNOT_CHANGE_PARAMS_DURING_ELECTION); params.ensure_valid()?;